diff --git a/.gitignore b/.gitignore index a81c8ee..789bfd0 100644 --- a/.gitignore +++ b/.gitignore @@ -136,3 +136,5 @@ dmypy.json # Cython debug symbols cython_debug/ + +lookml diff --git a/tests/resources/dbt_project.yml b/tests/resources/dbt_project.yml new file mode 100644 index 0000000..077ed5d --- /dev/null +++ b/tests/resources/dbt_project.yml @@ -0,0 +1,154 @@ +analysis-paths: +- analyses +clean-targets: +- target +- dbt_modules +- dbt_packages +config-version: 2 +dispatch: +- macro_namespace: spark_utils + search_order: + - yoda + - spark_utils +- macro_namespace: dbt_utils + search_order: + - yoda + - spark_utils + - dbt_utils +docs-paths: +- docs +- models +macro-paths: +- macros +model-paths: +- models +models: + +on_schema_change: append_new_columns + +quote_columns: true + yoda: + +file_format: delta + +post-hook: '{{ dbt_data_applications.recreate_cicd_views() }}' + analytics: + +tags: analytics + cs: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + delivery: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + email: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + finance: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + gtm: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + loyalty: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + marketing: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + new_revenue: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + partners: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + platform: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + salesforce: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + sms: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + subscriptions: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + synergies: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + ugc: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + utils: + +tags: analytics + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + communication: + +tags: communication + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + email: + +tags: email + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + infra: + +tags: infra + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + loyalty: + +tags: loyalty + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + north_bound: + +tags: north_bound + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + platform: + +tags: platform + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + sms: + +tags: sms + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + source: null + staging: null + subscriptions: + +tags: subscriptions + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + support: + +tags: support + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' + ugc: + +tags: ugc + marts: + +materialized: '{{ ''table'' if target.name == ''prod'' else ''view'' }}' +name: yoda +profile: default +seed-paths: +- data +- unit_test_mocks +seeds: + +file_format: delta +snapshot-paths: +- snapshots +target-path: target +test-paths: +- tests +vars: + dbt_command: '{{ env_var(''CURRENT_DBT_COMMAND'') }}' + dbt_materialize_table: 'False' +version: 2.0.0 diff --git a/tests/resources/expected_lookml/email__daily_total_email_campaigns.model.lkml b/tests/resources/expected_lookml/email__daily_total_email_campaigns.model.lkml new file mode 100644 index 0000000..3aecc2f --- /dev/null +++ b/tests/resources/expected_lookml/email__daily_total_email_campaigns.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: email__daily_total_email_campaigns { + description: "Email Marketing total campaigns per day in utc time" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/email__daily_total_emails_by_source_name.model.lkml b/tests/resources/expected_lookml/email__daily_total_emails_by_source_name.model.lkml new file mode 100644 index 0000000..9e7c0a9 --- /dev/null +++ b/tests/resources/expected_lookml/email__daily_total_emails_by_source_name.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: email__daily_delivered_emails_by_source_name { + description: "dailey delivered email by source name in utc" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/email__email_events_by_source_and_isp.model.lkml b/tests/resources/expected_lookml/email__email_events_by_source_and_isp.model.lkml new file mode 100644 index 0000000..055c5b0 --- /dev/null +++ b/tests/resources/expected_lookml/email__email_events_by_source_and_isp.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: email__email_events_per_source_id_and_isp { + description: "email events per source id and isp" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/email__email_events_by_source_and_pool.model.lkml b/tests/resources/expected_lookml/email__email_events_by_source_and_pool.model.lkml new file mode 100644 index 0000000..36f3fd6 --- /dev/null +++ b/tests/resources/expected_lookml/email__email_events_by_source_and_pool.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: email__email_events_per_source_id_and_ip_pool { + description: "email events per source id and pool id" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/email__email_events_by_source_pool_isp_eng.model.lkml b/tests/resources/expected_lookml/email__email_events_by_source_pool_isp_eng.model.lkml new file mode 100644 index 0000000..2176931 --- /dev/null +++ b/tests/resources/expected_lookml/email__email_events_by_source_pool_isp_eng.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: email__email_events_source_id_per_isp_ip_pool_eng_level { + description: "email events per source id and pool id isp and eng level" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/email__email_failed_rejected_reasons.model.lkml b/tests/resources/expected_lookml/email__email_failed_rejected_reasons.model.lkml new file mode 100644 index 0000000..5bccc65 --- /dev/null +++ b/tests/resources/expected_lookml/email__email_failed_rejected_reasons.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: email__email_failed_rejected_reasons { + description: "email failures and rejexted raeson" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__aws_cost_overview.model.lkml b/tests/resources/expected_lookml/infra__aws_cost_overview.model.lkml new file mode 100644 index 0000000..1e1fec7 --- /dev/null +++ b/tests/resources/expected_lookml/infra__aws_cost_overview.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__aws_cost_overview { + description: "infra__aws_cost_overview" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__contract_estimations.model.lkml b/tests/resources/expected_lookml/infra__contract_estimations.model.lkml new file mode 100644 index 0000000..738eedc --- /dev/null +++ b/tests/resources/expected_lookml/infra__contract_estimations.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__contracts_burn_estimations { + description: "infra__contracts_burn_estimations" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__contract_info.model.lkml b/tests/resources/expected_lookml/infra__contract_info.model.lkml new file mode 100644 index 0000000..2439840 --- /dev/null +++ b/tests/resources/expected_lookml/infra__contract_info.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__vendor_contracts { + description: "infra__vendor_contracts" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__contract_status.model.lkml b/tests/resources/expected_lookml/infra__contract_status.model.lkml new file mode 100644 index 0000000..d3f88ec --- /dev/null +++ b/tests/resources/expected_lookml/infra__contract_status.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__contracts_burn_status { + description: "infra__contracts_burn_status" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__cost_budget.model.lkml b/tests/resources/expected_lookml/infra__cost_budget.model.lkml new file mode 100644 index 0000000..1bb9cc7 --- /dev/null +++ b/tests/resources/expected_lookml/infra__cost_budget.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__cost_budget { + description: "infra__cost_budget" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__cost_budget_history.model.lkml b/tests/resources/expected_lookml/infra__cost_budget_history.model.lkml new file mode 100644 index 0000000..4154aae --- /dev/null +++ b/tests/resources/expected_lookml/infra__cost_budget_history.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra_stg__team_budget { + description: "infra__cost_budget_history" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__databricks_costs.model.lkml b/tests/resources/expected_lookml/infra__databricks_costs.model.lkml new file mode 100644 index 0000000..cb430ff --- /dev/null +++ b/tests/resources/expected_lookml/infra__databricks_costs.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__databricks_costs { + description: "Databricks and aws combined costs for analysis" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__ec2_cost.model.lkml b/tests/resources/expected_lookml/infra__ec2_cost.model.lkml new file mode 100644 index 0000000..a571569 --- /dev/null +++ b/tests/resources/expected_lookml/infra__ec2_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__ec2_cost { + description: "infra__ec2_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__elasticcache_cost.model.lkml b/tests/resources/expected_lookml/infra__elasticcache_cost.model.lkml new file mode 100644 index 0000000..6bc6c3a --- /dev/null +++ b/tests/resources/expected_lookml/infra__elasticcache_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__elasticcache_cost { + description: "infra__elasticcache_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__elasticsearch_cost.model.lkml b/tests/resources/expected_lookml/infra__elasticsearch_cost.model.lkml new file mode 100644 index 0000000..efd34da --- /dev/null +++ b/tests/resources/expected_lookml/infra__elasticsearch_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__elasticsearch_cost { + description: "infra__elasticsearch_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__github_workflow_runs.model.lkml b/tests/resources/expected_lookml/infra__github_workflow_runs.model.lkml new file mode 100644 index 0000000..2c15e6d --- /dev/null +++ b/tests/resources/expected_lookml/infra__github_workflow_runs.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__git_actions_runs { + description: "" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__groups_and_teams.model.lkml b/tests/resources/expected_lookml/infra__groups_and_teams.model.lkml new file mode 100644 index 0000000..26afaf9 --- /dev/null +++ b/tests/resources/expected_lookml/infra__groups_and_teams.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__groups_and_teams { + description: "infra__groups_and_teams" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__infra_metrics_model.model.lkml b/tests/resources/expected_lookml/infra__infra_metrics_model.model.lkml new file mode 100644 index 0000000..c6dd582 --- /dev/null +++ b/tests/resources/expected_lookml/infra__infra_metrics_model.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__infra_metrics { + description: "a looker expusre over infra metricsw" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__kubernetes_cost.model.lkml b/tests/resources/expected_lookml/infra__kubernetes_cost.model.lkml new file mode 100644 index 0000000..517aaaa --- /dev/null +++ b/tests/resources/expected_lookml/infra__kubernetes_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__kubernetes_cost { + description: "infra__kubernetes_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__msk_cost.model.lkml b/tests/resources/expected_lookml/infra__msk_cost.model.lkml new file mode 100644 index 0000000..2db8b67 --- /dev/null +++ b/tests/resources/expected_lookml/infra__msk_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__msk_cost { + description: "infra__msk_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__opensearch_cost.model.lkml b/tests/resources/expected_lookml/infra__opensearch_cost.model.lkml new file mode 100644 index 0000000..a373f9f --- /dev/null +++ b/tests/resources/expected_lookml/infra__opensearch_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__opensearch_cost { + description: "infra__opensearch_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__opsgenie_alerts.model.lkml b/tests/resources/expected_lookml/infra__opsgenie_alerts.model.lkml new file mode 100644 index 0000000..0a9b5ce --- /dev/null +++ b/tests/resources/expected_lookml/infra__opsgenie_alerts.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__opsgenie_alerts { + description: "OpsGenie Alerts" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__opsgenie_incidents.model.lkml b/tests/resources/expected_lookml/infra__opsgenie_incidents.model.lkml new file mode 100644 index 0000000..987f5f3 --- /dev/null +++ b/tests/resources/expected_lookml/infra__opsgenie_incidents.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__opsgenie_incidents { + description: "OpsGenie Incidents" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__rds_cost.model.lkml b/tests/resources/expected_lookml/infra__rds_cost.model.lkml new file mode 100644 index 0000000..58c914a --- /dev/null +++ b/tests/resources/expected_lookml/infra__rds_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__rds_cost { + description: "infra__rds_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__rivery_contract_statistics.model.lkml b/tests/resources/expected_lookml/infra__rivery_contract_statistics.model.lkml new file mode 100644 index 0000000..8b2c7d7 --- /dev/null +++ b/tests/resources/expected_lookml/infra__rivery_contract_statistics.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__rivery_contract_statistics { + description: "Rivery Contract Statistics" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__rivery_usage_model.model.lkml b/tests/resources/expected_lookml/infra__rivery_usage_model.model.lkml new file mode 100644 index 0000000..988da46 --- /dev/null +++ b/tests/resources/expected_lookml/infra__rivery_usage_model.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__rivery_daily_usage { + description: "Rivery Usage model" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__s3_cost.model.lkml b/tests/resources/expected_lookml/infra__s3_cost.model.lkml new file mode 100644 index 0000000..bea7e64 --- /dev/null +++ b/tests/resources/expected_lookml/infra__s3_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__s3_cost { + description: "infra__s3_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__s3_prefix_aggregations.model.lkml b/tests/resources/expected_lookml/infra__s3_prefix_aggregations.model.lkml new file mode 100644 index 0000000..996c6dc --- /dev/null +++ b/tests/resources/expected_lookml/infra__s3_prefix_aggregations.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__s3_prefix_aggregations { + description: "infra__s3_prefix_aggregations" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__s3_storage_data_summary.model.lkml b/tests/resources/expected_lookml/infra__s3_storage_data_summary.model.lkml new file mode 100644 index 0000000..e4e1e03 --- /dev/null +++ b/tests/resources/expected_lookml/infra__s3_storage_data_summary.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__s3_storage_data_summary { + description: "infra__s3_storage_data_summary" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__snowflake_automatic_clustering_cost.model.lkml b/tests/resources/expected_lookml/infra__snowflake_automatic_clustering_cost.model.lkml new file mode 100644 index 0000000..d9681cf --- /dev/null +++ b/tests/resources/expected_lookml/infra__snowflake_automatic_clustering_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__snowflake_automatic_clustering_cost { + description: "infra__snowflake_automatic_clustering_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__snowflake_cost_summary.model.lkml b/tests/resources/expected_lookml/infra__snowflake_cost_summary.model.lkml new file mode 100644 index 0000000..e380e10 --- /dev/null +++ b/tests/resources/expected_lookml/infra__snowflake_cost_summary.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__snowflake_cost_summary { + description: "infra__snowflake_cost_summary" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__snowflake_daily_cost.model.lkml b/tests/resources/expected_lookml/infra__snowflake_daily_cost.model.lkml new file mode 100644 index 0000000..8d8970d --- /dev/null +++ b/tests/resources/expected_lookml/infra__snowflake_daily_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__snowflake_daily_cost { + description: "infra__snowflake_daily_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__snowflake_monthly_cost.model.lkml b/tests/resources/expected_lookml/infra__snowflake_monthly_cost.model.lkml new file mode 100644 index 0000000..f7bd6f1 --- /dev/null +++ b/tests/resources/expected_lookml/infra__snowflake_monthly_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__snowflake_monthly_cost { + description: "infra__snowflake_monthly_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__snowflake_query_statistics.model.lkml b/tests/resources/expected_lookml/infra__snowflake_query_statistics.model.lkml new file mode 100644 index 0000000..b4a91b6 --- /dev/null +++ b/tests/resources/expected_lookml/infra__snowflake_query_statistics.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__snowflake_query_statistics { + description: "infra__snowflake_query_statistics" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__snowflake_storage_cost.model.lkml b/tests/resources/expected_lookml/infra__snowflake_storage_cost.model.lkml new file mode 100644 index 0000000..e705eaf --- /dev/null +++ b/tests/resources/expected_lookml/infra__snowflake_storage_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__snowflake_storage_cost { + description: "infra__snowflake_storage_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__snowflake_views_cost.model.lkml b/tests/resources/expected_lookml/infra__snowflake_views_cost.model.lkml new file mode 100644 index 0000000..28a9ce6 --- /dev/null +++ b/tests/resources/expected_lookml/infra__snowflake_views_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__snowflake_views_cost { + description: "infra__snowflake_views_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__snowflake_warehouse_cost.model.lkml b/tests/resources/expected_lookml/infra__snowflake_warehouse_cost.model.lkml new file mode 100644 index 0000000..76da4c1 --- /dev/null +++ b/tests/resources/expected_lookml/infra__snowflake_warehouse_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__snowflake_warehouse_cost { + description: "infra__snowflake_warehouse_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__snowflake_warehouse_statistics.model.lkml b/tests/resources/expected_lookml/infra__snowflake_warehouse_statistics.model.lkml new file mode 100644 index 0000000..ec7204e --- /dev/null +++ b/tests/resources/expected_lookml/infra__snowflake_warehouse_statistics.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__snowflake_warehouse_statistics { + description: "infra__snowflake_warehouse_statistics" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__spark_jobs.model.lkml b/tests/resources/expected_lookml/infra__spark_jobs.model.lkml new file mode 100644 index 0000000..db7e859 --- /dev/null +++ b/tests/resources/expected_lookml/infra__spark_jobs.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__spark_jobs { + description: "infra__spark_jobs" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__sqs_cost.model.lkml b/tests/resources/expected_lookml/infra__sqs_cost.model.lkml new file mode 100644 index 0000000..adfa1a1 --- /dev/null +++ b/tests/resources/expected_lookml/infra__sqs_cost.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__sqs_cost { + description: "infra__sqs_cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__sub_departments_monthly_budget_cur.model.lkml b/tests/resources/expected_lookml/infra__sub_departments_monthly_budget_cur.model.lkml new file mode 100644 index 0000000..dcf171f --- /dev/null +++ b/tests/resources/expected_lookml/infra__sub_departments_monthly_budget_cur.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra__sub_departments_monthly_budget_cur { + description: "infra__sub_departments_monthly_budget_cur" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/infra__sub_departments_monthly_budget_history.model.lkml b/tests/resources/expected_lookml/infra__sub_departments_monthly_budget_history.model.lkml new file mode 100644 index 0000000..3ca8e35 --- /dev/null +++ b/tests/resources/expected_lookml/infra__sub_departments_monthly_budget_history.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: infra_stg__sub_departments_monthly_budget { + description: "infra__sub_departments_monthly_budget_history" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/platform__integrations_adoption_per_application_profile.model.lkml b/tests/resources/expected_lookml/platform__integrations_adoption_per_application_profile.model.lkml new file mode 100644 index 0000000..cbfae82 --- /dev/null +++ b/tests/resources/expected_lookml/platform__integrations_adoption_per_application_profile.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: platform__integrations_adoption_per_application { + description: "Shows installation statistics per application per week" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/platform__integrations_adoption_per_store_profile.model.lkml b/tests/resources/expected_lookml/platform__integrations_adoption_per_store_profile.model.lkml new file mode 100644 index 0000000..8b760c8 --- /dev/null +++ b/tests/resources/expected_lookml/platform__integrations_adoption_per_store_profile.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: platform__integrations_adoption_per_store { + description: "Shows installation statistics per store per week" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/platform__integrations_adoption_profile.model.lkml b/tests/resources/expected_lookml/platform__integrations_adoption_profile.model.lkml new file mode 100644 index 0000000..649e47a --- /dev/null +++ b/tests/resources/expected_lookml/platform__integrations_adoption_profile.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: platform__integrations_adoption { + description: "Show integrations statuses for each day" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/platform__singas_cdp_streaming_aggregated_events.model.lkml b/tests/resources/expected_lookml/platform__singas_cdp_streaming_aggregated_events.model.lkml new file mode 100644 index 0000000..c107142 --- /dev/null +++ b/tests/resources/expected_lookml/platform__singas_cdp_streaming_aggregated_events.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: platform__cdp_streaming_aggregated_events { + description: "" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/sms__revenue_model.model.lkml b/tests/resources/expected_lookml/sms__revenue_model.model.lkml new file mode 100644 index 0000000..bd39cb1 --- /dev/null +++ b/tests/resources/expected_lookml/sms__revenue_model.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: sms__daily_revenue { + description: "sms daily cost" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/subscriptions__store_customers_exports.model.lkml b/tests/resources/expected_lookml/subscriptions__store_customers_exports.model.lkml new file mode 100644 index 0000000..5bde4d2 --- /dev/null +++ b/tests/resources/expected_lookml/subscriptions__store_customers_exports.model.lkml @@ -0,0 +1,6 @@ +connection: "yoda" +include: "views/*" + +explore: subscriptions__store_customers_exports { + description: "Exposure for subscriptions analytics endpoint to be scrapped by whales" +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/ugc__shopper_experience_aggregation.model.lkml b/tests/resources/expected_lookml/ugc__shopper_experience_aggregation.model.lkml new file mode 100644 index 0000000..84b2263 --- /dev/null +++ b/tests/resources/expected_lookml/ugc__shopper_experience_aggregation.model.lkml @@ -0,0 +1,24 @@ +connection: "databricks-sql-ugc-reporting" +include: "views/*" + +explore: ugc__shopper_experience_store_aggregation { + description: "" + + join: ugc__shopper_experience_order_aggregation { + type: left_outer + relationship: one_to_many + sql_on: ${ugc__shopper_experience_store_aggregation.date} = ${ugc__shopper_experience_order_aggregation.date} AND ${ugc__shopper_experience_store_aggregation.app_key} = ${ugc__shopper_experience_order_aggregation.app_key} ;; + } + + join: ugc__shopper_experience_widget_engagement_aggregation { + type: left_outer + relationship: one_to_many + sql_on: ${ref('ugc__shopper_experience_store_aggregation).date} = ${ugc__shopper_experience_widget_engagement_aggregation.date} AND ${ugc__shopper_experience_store_aggregation.app_key} = ${ref('ugc__shopper_experience_widget_engagement_aggregation).app_key} ;; + } + + join: ugc__shopper_experience_widget_order_aggregation { + type: left_outer + relationship: one_to_many + sql_on: ${'ugc__shopper_experience_store_aggregation').date} = ${ugc__shopper_experience_widget_order_aggregation.date} AND ${ugc__shopper_experience_store_aggregation.app_key} = ${ugc__shopper_experience_widget_order_aggregation.app_key} ;; + } +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/views/infra__databricks_costs.view.lkml b/tests/resources/expected_lookml/views/infra__databricks_costs.view.lkml new file mode 100644 index 0000000..a83350e --- /dev/null +++ b/tests/resources/expected_lookml/views/infra__databricks_costs.view.lkml @@ -0,0 +1,139 @@ +view: infra__databricks_costs { + sql_table_name: dev_dkruh1.infra__databricks_costs ;; + + dimension_group: date { + type: time + sql: ${TABLE}.date ;; + description: "TODO: Update Column {col_name} Information" + datatype: datetime + timeframes: [ + raw, + time, + hour, + date, + week, + month, + quarter, + year, + ] + } + + dimension: name { + type: string + sql: ${TABLE}.name ;; + description: "TODO: Update Table Description" + } + + dimension: product_line { + type: string + sql: ${TABLE}.product_line ;; + description: "TODO: Update Table Description" + } + + dimension: instance_type { + type: string + sql: ${TABLE}.instance_type ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: instance_count { + type: number + sql: ${TABLE}.instance_count ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: dbus { + type: number + sql: ${TABLE}.dbus ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: machinehours { + type: number + sql: ${TABLE}.machinehours ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: databricks_cost { + type: number + sql: ${TABLE}.databricks_cost ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: aws_cost { + type: number + sql: ${TABLE}.aws_cost ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: product_product_family { + type: string + sql: ${TABLE}.product_product_family ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: pricing_term { + type: string + sql: ${TABLE}.pricing_term ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: sku { + type: string + sql: ${TABLE}.sku ;; + description: "TODO: Update Table Description" + } + + dimension: is_photon { + type: yesno + sql: ${TABLE}.is_photon ;; + description: "TODO: Update Table Description" + } + + dimension: type { + type: string + sql: ${TABLE}.type ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: clustername { + type: string + sql: ${TABLE}.clustername ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: component { + type: string + sql: ${TABLE}.component ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: availability_zones { + type: string + sql: ${TABLE}.availability_zones ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: resource_tags_user_group { + type: string + sql: ${TABLE}.resource_tags_user_group ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: resource_tags_user_team { + type: string + sql: ${TABLE}.resource_tags_user_team ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: resource_tags_user_feature { + type: string + sql: ${TABLE}.resource_tags_user_feature ;; + description: "TODO: Update Column {col_name} Information" + } + + measure: count { + type: count + description: "Default count measure" + } +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/views/infra__ec2_cost.view.lkml b/tests/resources/expected_lookml/views/infra__ec2_cost.view.lkml new file mode 100644 index 0000000..97bc4f3 --- /dev/null +++ b/tests/resources/expected_lookml/views/infra__ec2_cost.view.lkml @@ -0,0 +1,150 @@ +view: infra__ec2_cost { + sql_table_name: dev_dkruh1.infra__ec2_cost ;; + + dimension_group: billing_period { + type: time + sql: ${TABLE}.billing_period ;; + description: "Billing start period (monthly)" + datatype: timestamp + timeframes: [ + raw, + time, + hour, + date, + week, + month, + quarter, + year, + ] + } + + dimension_group: bill_start_date { + type: time + sql: ${TABLE}.bill_start_date ;; + description: "Billing start time (daily)" + datatype: timestamp + timeframes: [ + raw, + time, + hour, + date, + week, + month, + quarter, + year, + ] + } + + dimension: bill_payer_account_id { + type: string + sql: ${TABLE}.bill_payer_account_id ;; + description: "Account ID (identical to line_item_usage_account_id)" + } + + dimension: account_name { + type: string + sql: ${TABLE}.account_name ;; + description: "AWS account" + } + + dimension: product_line { + type: string + sql: ${TABLE}.product_line ;; + description: "Product line attached to the ec2" + } + + dimension: line_item_line_item_type { + type: string + sql: ${TABLE}.line_item_line_item_type ;; + description: "Cost type (Credit, Usage, Tax)" + } + + dimension: product_product_family { + type: string + sql: ${TABLE}.product_product_family ;; + description: "Type of the charged service (Storage, Compute, etc)" + } + + dimension: product_region { + type: string + sql: ${TABLE}.product_region ;; + description: "AWS Region" + } + + dimension: pricing_term { + type: string + sql: ${TABLE}.pricing_term ;; + description: "On demand, spot or reserved" + } + + dimension: product_instance_type { + type: string + sql: ${TABLE}.product_instance_type ;; + description: "Instance type" + } + + dimension: resource_tags_user_sub_component { + type: string + sql: ${TABLE}.resource_tags_user_sub_component ;; + description: "Custom tag for sub component" + } + + dimension: resource_tags_user_component { + type: string + sql: ${TABLE}.resource_tags_user_component ;; + description: "Custom tag for component" + } + + dimension: resource_tags_user_environment { + type: string + sql: ${TABLE}.resource_tags_user_environment ;; + description: "Custom tag for environment" + } + + dimension: unblended_cost { + type: number + sql: ${TABLE}.unblended_cost ;; + description: "Unblended cost (includes the discounts in a single period and not across the period it was given)" + } + + dimension: amortized_cost { + type: number + sql: ${TABLE}.amortized_cost ;; + description: "Amortized cost equals usage plus the portion of upfront fees applicable to the period (both used and unused)" + } + + dimension: resource_tags_user_group { + type: string + sql: ${TABLE}.resource_tags_user_group ;; + description: "User tag" + } + + dimension: resource_tags_user_team { + type: string + sql: ${TABLE}.resource_tags_user_team ;; + description: "Team tag" + } + + dimension: resource_tags_user_feature { + type: string + sql: ${TABLE}.resource_tags_user_feature ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: ags { + type: string + sql: ${TABLE}.ags ;; + description: "Auto-Scaling Group (typo)" + } + + dimension: is_managed_by_cast_ai { + type: yesno + sql: ${TABLE}.is_managed_by_cast_ai ;; + description: "Whether the EC2 is managed by Cast.AI" + } + + measure: count { + type: count + description: "Default count measure" + } +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/views/infra__infra_metrics.view.lkml b/tests/resources/expected_lookml/views/infra__infra_metrics.view.lkml new file mode 100644 index 0000000..fbb2802 --- /dev/null +++ b/tests/resources/expected_lookml/views/infra__infra_metrics.view.lkml @@ -0,0 +1,74 @@ +view: infra__infra_metrics { + sql_table_name: dev_dkruh1.infra__infra_metrics ;; + + dimension_group: ts { + type: time + sql: ${TABLE}.ts ;; + description: "the timestamp the metric was taken" + datatype: timestamp + timeframes: [ + raw, + time, + hour, + date, + week, + month, + quarter, + year, + ] + } + + dimension: product_line { + type: string + sql: ${TABLE}.product_line ;; + description: "metric value" + } + + dimension: source { + type: string + sql: ${TABLE}.source ;; + description: "the source of the metric (i.e github)" + } + + dimension: component { + type: string + sql: ${TABLE}.component ;; + description: "the component this metric refers to (i.e git repo name)" + } + + dimension: key { + type: string + sql: ${TABLE}.key ;; + description: "metric key" + } + + dimension: value { + type: number + sql: ${TABLE}.value ;; + description: "the metric's value" + } + + dimension: custom_properties { + type: string + sql: ${TABLE}.custom_properties ;; + description: "any custom porerties in addition to the key value of the metrics" + } + + dimension: row_number { + type: number + sql: ${TABLE}.row_number ;; + description: "Row number basted on partitioning key and component" + } + + measure: sum_of_values { + type: sum + description: "the metric's value" + sql: ${TABLE}.value ;; + value_format_name: decimal_0 + } + + measure: count { + type: count + description: "Default count measure" + } +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/views/infra__kubernetes_cost.view.lkml b/tests/resources/expected_lookml/views/infra__kubernetes_cost.view.lkml new file mode 100644 index 0000000..fe81058 --- /dev/null +++ b/tests/resources/expected_lookml/views/infra__kubernetes_cost.view.lkml @@ -0,0 +1,235 @@ +view: infra__kubernetes_cost { + sql_table_name: dev_dkruh1.infra__kubernetes_cost ;; + + dimension_group: billing_day { + type: time + sql: ${TABLE}.billing_day ;; + description: "TODO: Update Column {col_name} Information" + datatype: datetime + timeframes: [ + raw, + time, + hour, + date, + week, + month, + quarter, + year, + ] + } + + dimension: ec2_id { + type: string + sql: ${TABLE}.ec2_id ;; + description: "EC Instace id that ran the pod" + } + + dimension: service { + type: string + sql: ${TABLE}.service ;; + description: "Service name (e.g. spark, airflow, flink...). The default is taken from kubecost -> properties.container" + } + + dimension: productline { + type: string + sql: ${TABLE}.productline ;; + description: "Product line using the service. The default is taken from kubecost -> properties.labels.productline/product_line" + } + + dimension: sub_service { + type: string + sql: ${TABLE}.sub_service ;; + description: "Sub service (e.g. worker, executor). The default is taken from kubecost -> properties.container" + } + + dimension: release_name { + type: string + sql: ${TABLE}.release_name ;; + description: "Application running the service. The default is taken from kubecost -> properties.labels.app" + } + + dimension: cluster { + type: string + sql: ${TABLE}.cluster ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: namespace { + type: string + sql: ${TABLE}.namespace ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: run_id { + type: string + sql: ${TABLE}.run_id ;; + description: "Pod name" + } + + dimension: cpucost { + type: number + sql: ${TABLE}.cpucost ;; + description: "Total CPU cost of the pod" + } + + dimension: pvcost { + type: number + sql: ${TABLE}.pvcost ;; + description: "Total Storage cost for a given service" + } + + dimension: networkcost { + type: number + sql: ${TABLE}.networkcost ;; + description: "Total network cost for a given service" + } + + dimension: ramcost { + type: number + sql: ${TABLE}.ramcost ;; + description: "Total Memory cost for a given service" + } + + dimension: totalcost { + type: number + sql: ${TABLE}.totalcost ;; + description: "Total service cost" + } + + dimension: totalefficiency { + type: number + sql: ${TABLE}.totalefficiency ;; + description: "Memory and CPU efficiency" + } + + dimension: cpuefficiency { + type: number + sql: ${TABLE}.cpuefficiency ;; + description: "CPU average usage divided by the requested" + } + + dimension: cpucorehours { + type: number + sql: ${TABLE}.cpucorehours ;; + description: "Total CPU hours of the pod" + } + + dimension: cpucorerequestaverage { + type: number + sql: ${TABLE}.cpucorerequestaverage ;; + description: "Average Cores requested by the pod" + } + + dimension: cpucoreusageaverage { + type: number + sql: ${TABLE}.cpucoreusageaverage ;; + description: "Average Cores used by the pod" + } + + dimension: cpucores { + type: number + sql: ${TABLE}.cpucores ;; + description: "Total Cores requested by the pod" + } + + dimension: cpucoreusagemax { + type: number + sql: ${TABLE}.cpucoreusagemax ;; + description: "Maximum CPU usage of the pod" + } + + dimension: networktransferbytes { + type: number + sql: ${TABLE}.networktransferbytes ;; + description: "Total amount of transferred bytes from the pod" + } + + dimension: networkreceivebytes { + type: number + sql: ${TABLE}.networkreceivebytes ;; + description: "Total amount of received bytes by the pod" + } + + dimension: ramefficiency { + type: number + sql: ${TABLE}.ramefficiency ;; + description: "Average amount of used bytes divided by bytes requested" + } + + dimension: rambyteusagemax { + type: number + sql: ${TABLE}.rambyteusagemax ;; + description: "Maximum amount of actual memory usage" + } + + dimension: rambytehours { + type: number + sql: ${TABLE}.rambytehours ;; + description: "Hourly amount of memory used" + } + + dimension: rambyteusageaverage { + type: number + sql: ${TABLE}.rambyteusageaverage ;; + description: "Average amount of bytes used by the pod" + } + + dimension: rambyterequestaverage { + type: number + sql: ${TABLE}.rambyterequestaverage ;; + description: "Average amount of memory used by the pod" + } + + dimension: rambytes { + type: number + sql: ${TABLE}.rambytes ;; + description: "Memory requested in bytes" + } + + dimension: minutes { + type: number + sql: ${TABLE}.minutes ;; + description: "Amount of minutes the pod ran" + } + + dimension: year { + type: number + sql: ${TABLE}.year ;; + description: "Year" + } + + dimension: month { + type: number + sql: ${TABLE}.month ;; + description: "Month" + } + + dimension: day { + type: number + sql: ${TABLE}.day ;; + description: "Day of the week" + } + + dimension: name { + type: string + sql: ${TABLE}.name ;; + description: "Name of the continaer (for debugging)" + } + + dimension: group { + type: string + sql: ${TABLE}.group ;; + description: "TODO: Update Column {col_name} Information" + } + + dimension: team { + type: string + sql: ${TABLE}.team ;; + description: "TODO: Update Column {col_name} Information" + } + + measure: count { + type: count + description: "Default count measure" + } +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/views/infra__spark_jobs.view.lkml b/tests/resources/expected_lookml/views/infra__spark_jobs.view.lkml new file mode 100644 index 0000000..74473e0 --- /dev/null +++ b/tests/resources/expected_lookml/views/infra__spark_jobs.view.lkml @@ -0,0 +1,403 @@ +view: infra__spark_jobs { + sql_table_name: dev_dkruh1.infra__spark_jobs ;; + + dimension_group: run_date { + type: time + sql: ${TABLE}.run_date ;; + description: "Date format of the job execution" + datatype: datetime + timeframes: [ + raw, + time, + hour, + date, + week, + month, + quarter, + year, + ] + } + + dimension: run_id { + type: string + sql: ${TABLE}.run_id ;; + description: "The unique job id" + } + + dimension: year { + type: number + sql: ${TABLE}.year ;; + description: "The year the job ran on" + } + + dimension: month { + type: number + sql: ${TABLE}.month ;; + description: "The month the job ran on" + } + + dimension: day { + type: number + sql: ${TABLE}.day ;; + description: "Day of the spark job" + } + + dimension: product_line { + type: string + sql: ${TABLE}.product_line ;; + description: "Product line" + } + + dimension: group { + type: string + sql: ${TABLE}.group ;; + description: "Group name" + } + + dimension: team { + type: string + sql: ${TABLE}.team ;; + description: "Team" + } + + dimension: total_network_transfer_in_bytes { + type: number + sql: ${TABLE}.total_network_transfer_in_bytes ;; + description: "Total amounts of bytes transferred to the different components of the job" + } + + dimension: total_network_received_in_bytes { + type: number + sql: ${TABLE}.total_network_received_in_bytes ;; + description: "Total amounts of bytes received from the different components of the job" + } + + dimension: cost { + type: number + sql: ${TABLE}.cost ;; + description: "Total cost for a given spark job (computation resources only)" + } + + dimension: cpucost { + type: number + sql: ${TABLE}.cpucost ;; + description: "Total cpu cost for a given run" + } + + dimension: pvcost { + type: number + sql: ${TABLE}.pvcost ;; + description: "The amount of kubernetes storage (PV) cost for the specific job" + } + + dimension: networkcost { + type: number + sql: ${TABLE}.networkcost ;; + description: "The amount of network cost for the specific job" + } + + dimension: ramcost { + type: number + sql: ${TABLE}.ramcost ;; + description: "The amount of memory cost for the specific job" + } + + dimension: cpucorehours { + type: number + sql: ${TABLE}.cpucorehours ;; + description: "Total cpu hours for a given run" + } + + dimension: rambytehours { + type: number + sql: ${TABLE}.rambytehours ;; + description: "The amount of ram hours the job has consumed" + } + + dimension: productline_instance_tag { + type: string + sql: ${TABLE}.productline_instance_tag ;; + description: "The product line the EC2 instance is tagged to" + } + + dimension: is_multi_az_cost { + type: yesno + sql: ${TABLE}.is_multi_az_cost ;; + description: "Whether the job ran on mutiple AZ (and therefore will intorduce data transfer cost)" + } + + dimension: region { + type: string + sql: ${TABLE}.region ;; + description: "The region the job ran on" + } + + dimension: release_name { + type: string + sql: ${TABLE}.release_name ;; + description: "The name of the job" + } + + dimension: duration { + type: number + sql: ${TABLE}.duration ;; + description: "Job duration in minutes" + } + + dimension: driver_cores { + type: number + sql: ${TABLE}.driver_cores ;; + description: "Amount of cores the driver requested" + } + + dimension: driver_memory_in_bytes { + type: number + sql: ${TABLE}.driver_memory_in_bytes ;; + description: "The amount of memory the driver has requested" + } + + dimension: driver_avg_network_transfer_in_bytes { + type: number + sql: ${TABLE}.driver_avg_network_transfer_in_bytes ;; + description: "Total average amount of bytes trasferred from the driver for a given job" + } + + dimension: driver_avg_network_received_in_bytes { + type: number + sql: ${TABLE}.driver_avg_network_received_in_bytes ;; + description: "Total average amount of bytes received by the driver for a given job" + } + + dimension: driver_max_core_usage { + type: number + sql: ${TABLE}.driver_max_core_usage ;; + description: "The maximum amount of cores which was used for a give job" + } + + dimension: driver_max_memory_usage { + type: number + sql: ${TABLE}.driver_max_memory_usage ;; + description: "The maximum amount of memory which was used for a give job" + } + + dimension: driver_instance_types { + type: string + sql: ${TABLE}.driver_instance_types ;; + description: "EC2 Instance type which the driver ran on" + } + + dimension: driver_instance_vcpu { + type: string + sql: ${TABLE}.driver_instance_vcpu ;; + description: "The amount of virtual cpus the EC2 instance which ran the driver has" + } + + dimension: driver_instance_memory { + type: string + sql: ${TABLE}.driver_instance_memory ;; + description: "The amount of memory the EC2 instance which ran the driver has" + } + + dimension: driver_instance_network_performance { + type: string + sql: ${TABLE}.driver_instance_network_performance ;; + description: "The network performance the EC2 instance which ran the driver has" + } + + dimension: driver_instance_pricing_term { + type: string + sql: ${TABLE}.driver_instance_pricing_term ;; + description: "Whether the EC2 instance that ran the driver is spot, on demand or reserved" + } + + dimension: driver_availability_zone { + type: string + sql: ${TABLE}.driver_availability_zone ;; + description: "The AZ which the driver was provisioned in" + } + + dimension: driver_product_storage { + type: string + sql: ${TABLE}.driver_product_storage ;; + description: "Whether the instance provisioned has storage or requires EBS" + } + + dimension: driver_ram_efficiency { + type: number + sql: ${TABLE}.driver_ram_efficiency ;; + description: "The average amount of memory divided by the memory requested by the driver" + } + + dimension: driver_ram_efficiency_by_max { + type: number + sql: ${TABLE}.driver_ram_efficiency_by_max ;; + description: "The maximum amount of memory divided by the memory requested by the driver" + } + + dimension: driver_cpu_efficiency { + type: number + sql: ${TABLE}.driver_cpu_efficiency ;; + description: "Driver CPU average usage devided by the requested CPU" + } + + dimension: driver_cpu_efficiency_by_max { + type: number + sql: ${TABLE}.driver_cpu_efficiency_by_max ;; + description: "Driver CPU max usage devided by the requested CPU" + } + + dimension: driver_cost { + type: number + sql: ${TABLE}.driver_cost ;; + description: "Total cost only for the driver" + } + + dimension: is_driver_od_candidate { + type: yesno + sql: ${TABLE}.is_driver_od_candidate ;; + description: "Whether the driver is a candidate to be replaced with spot (based on the amount of minutes the job ran)" + } + + dimension: avg_executor_duration { + type: number + sql: ${TABLE}.avg_executor_duration ;; + description: "Average executors duration in minutes" + } + + dimension: max_executor_duration { + type: number + sql: ${TABLE}.max_executor_duration ;; + description: "The maximum amount of executor duration" + } + + dimension: min_executor_duration { + type: number + sql: ${TABLE}.min_executor_duration ;; + description: "The minimum amount of executor duration" + } + + dimension: total_executors_duration { + type: number + sql: ${TABLE}.total_executors_duration ;; + description: "The total amounts of minutes of the executors" + } + + dimension: executors_count { + type: number + sql: ${TABLE}.executors_count ;; + description: "Total amount of executors which participated in the job" + } + + dimension: executor_cores { + type: number + sql: ${TABLE}.executor_cores ;; + description: "Cores requested by the executor" + } + + dimension: executor_memory_in_bytes { + type: number + sql: ${TABLE}.executor_memory_in_bytes ;; + description: "Memory requested by the executor in bytes" + } + + dimension: executor_max_core_usage { + type: number + sql: ${TABLE}.executor_max_core_usage ;; + description: "Maximum used core across all executors" + } + + dimension: executor_max_memory_usage { + type: number + sql: ${TABLE}.executor_max_memory_usage ;; + description: "Maximum used memory across all executors" + } + + dimension: executor_avg_network_transfer_in_bytes { + type: number + sql: ${TABLE}.executor_avg_network_transfer_in_bytes ;; + description: "Total average amount of bytes transferred from the driver for a given job" + } + + dimension: executor_avg_network_received_in_bytes { + type: number + sql: ${TABLE}.executor_avg_network_received_in_bytes ;; + description: "Total average amount of bytes received by the execotors for a given job" + } + + dimension: executors_instance_types { + type: string + sql: ${TABLE}.executors_instance_types ;; + description: "Collection of instance types across all executors" + } + + dimension: executors_vcpu { + type: string + sql: ${TABLE}.executors_vcpu ;; + description: "The amount of virtual cpus the instaces that ran the executor has" + } + + dimension: executors_memory { + type: string + sql: ${TABLE}.executors_memory ;; + description: "The amount of memory the executed request" + } + + dimension: executor_network_performance { + type: string + sql: ${TABLE}.executor_network_performance ;; + description: "The network performance of the EC2 instance which ran the driver" + } + + dimension: executor_pricing_term { + type: string + sql: ${TABLE}.executor_pricing_term ;; + description: "Whether the EC2 instance that ran the executor is spot, on demand or reserved" + } + + dimension: executors_availability_zone { + type: string + sql: ${TABLE}.executors_availability_zone ;; + description: "Collection of all the AZ across all executors" + } + + dimension: executors_product_storage { + type: string + sql: ${TABLE}.executors_product_storage ;; + description: "Whether the instance comes with storage or if requires an EBS" + } + + dimension: executor_ram_efficiency { + type: number + sql: ${TABLE}.executor_ram_efficiency ;; + description: "The average amount of memory the executor used" + } + + dimension: executor_ram_efficiency_by_max { + type: number + sql: ${TABLE}.executor_ram_efficiency_by_max ;; + description: "The maximum amount of memory the executor used" + } + + dimension: executor_cpu_efficiency { + type: number + sql: ${TABLE}.executor_cpu_efficiency ;; + description: "Executor CPU average usage devided by the requested CPU" + } + + dimension: executor_cpu_efficiency_by_max { + type: number + sql: ${TABLE}.executor_cpu_efficiency_by_max ;; + description: "Executor CPU max usage devided by the requested CPU" + } + + dimension: executors_cost { + type: number + sql: ${TABLE}.executors_cost ;; + description: "Total cost of all executors" + } + + measure: count { + type: count + description: "Default count measure" + } +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/views/ugc__shopper_experience_order_aggregation.view.lkml b/tests/resources/expected_lookml/views/ugc__shopper_experience_order_aggregation.view.lkml new file mode 100644 index 0000000..5165d89 --- /dev/null +++ b/tests/resources/expected_lookml/views/ugc__shopper_experience_order_aggregation.view.lkml @@ -0,0 +1,85 @@ +view: ugc__shopper_experience_order_aggregation { + sql_table_name: dev_dkruh1.ugc__shopper_experience_order_aggregation ;; + + dimension_group: date { + type: time + sql: ${TABLE}.date ;; + description: "Date" + datatype: datetime + timeframes: [ + raw, + time, + hour, + date, + week, + month, + quarter, + year, + ] + } + + dimension: app_key { + type: string + sql: ${TABLE}.app_key ;; + description: "App key" + } + + dimension: currency { + type: string + sql: ${TABLE}.currency ;; + description: "Currency" + } + + dimension: orders_sum_of_interacted_users { + type: number + sql: ${TABLE}.orders_sum_of_interacted_users ;; + description: "Sum of the orders of interacted users per currency" + } + + dimension: orders_count_of_interacted_users { + type: number + sql: ${TABLE}.orders_count_of_interacted_users ;; + description: "Total orders of interacted users per currency" + } + + dimension: interacted_users_with_orders { + type: number + sql: ${TABLE}.interacted_users_with_orders ;; + description: "Amount of interacted users that placed an order per currency" + } + + dimension: interacted_users_without_orders { + type: number + sql: ${TABLE}.interacted_users_without_orders ;; + description: "Amount of interacted users that did not place an order per currency" + } + + dimension: orders_sum_of_non_interacted_users { + type: number + sql: ${TABLE}.orders_sum_of_non_interacted_users ;; + description: "Sum of the orders of non interacted users per currency" + } + + dimension: orders_count_of_non_interacted_users { + type: number + sql: ${TABLE}.orders_count_of_non_interacted_users ;; + description: "Total orders of non interacted users per currency" + } + + dimension: non_interacted_users_with_orders { + type: number + sql: ${TABLE}.non_interacted_users_with_orders ;; + description: "Amount of non interacted users that placed an order per currency" + } + + dimension: non_interacted_users_without_orders { + type: number + sql: ${TABLE}.non_interacted_users_without_orders ;; + description: "Amount of non interacted users that did not place an order per currency" + } + + measure: count { + type: count + description: "Default count measure" + } +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/views/ugc__shopper_experience_store_aggregation.view.lkml b/tests/resources/expected_lookml/views/ugc__shopper_experience_store_aggregation.view.lkml new file mode 100644 index 0000000..83cf35a --- /dev/null +++ b/tests/resources/expected_lookml/views/ugc__shopper_experience_store_aggregation.view.lkml @@ -0,0 +1,79 @@ +view: ugc__shopper_experience_store_aggregation { + sql_table_name: dev_dkruh1.ugc__shopper_experience_store_aggregation ;; + + dimension_group: date { + type: time + sql: ${TABLE}.date ;; + description: "Date" + datatype: datetime + timeframes: [ + raw, + time, + hour, + date, + week, + month, + quarter, + year, + ] + } + + dimension: app_key { + type: string + sql: ${TABLE}.app_key ;; + description: "App key" + } + + dimension: total_users { + type: number + sql: ${TABLE}.total_users ;; + description: "Amount of all unique users" + } + + dimension: interacted_users { + type: number + sql: ${TABLE}.interacted_users ;; + description: "Amount of unique users that interacted with at least one widget" + } + + dimension: non_interacted_users { + type: number + sql: ${TABLE}.non_interacted_users ;; + description: "Amount of unique users that did not interact with any widget" + } + + dimension: interacted_users_with_orders { + type: number + sql: ${TABLE}.interacted_users_with_orders ;; + description: "Amount of unique users that interacted with at least one widget and placed at least one order" + } + + dimension: interacted_users_without_orders { + type: number + sql: ${TABLE}.interacted_users_without_orders ;; + description: "Amount of unique users that interacted with at least one widget and did not place any order" + } + + dimension: non_interacted_users_with_orders { + type: number + sql: ${TABLE}.non_interacted_users_with_orders ;; + description: "Amount of unique users that did not interact with any widget and placed at least one order" + } + + dimension: non_interacted_users_without_orders { + type: number + sql: ${TABLE}.non_interacted_users_without_orders ;; + description: "Amount of unique users that did not interact with any widget and did not place any order" + } + + measure: engagement { + description: "" + type: number + sql: (SUM(${ugc__shopper_experience_store_aggregation.interacted_users} )/SUM( ${ugc__shopper_experience_store_aggregation.total_users})) ;; + } + + measure: count { + type: count + description: "Default count measure" + } +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/views/ugc__shopper_experience_widget_engagement_aggregation.view.lkml b/tests/resources/expected_lookml/views/ugc__shopper_experience_widget_engagement_aggregation.view.lkml new file mode 100644 index 0000000..5c15bf0 --- /dev/null +++ b/tests/resources/expected_lookml/views/ugc__shopper_experience_widget_engagement_aggregation.view.lkml @@ -0,0 +1,49 @@ +view: ugc__shopper_experience_widget_engagement_aggregation { + sql_table_name: dev_dkruh1.ugc__shopper_experience_widget_engagement_aggregation ;; + + dimension_group: date { + type: time + sql: ${TABLE}.date ;; + description: "Date" + datatype: datetime + timeframes: [ + raw, + time, + hour, + date, + week, + month, + quarter, + year, + ] + } + + dimension: app_key { + type: string + sql: ${TABLE}.app_key ;; + description: "App key" + } + + dimension: widget { + type: string + sql: ${TABLE}.widget ;; + description: "Widget name" + } + + dimension: total_interacted_users { + type: number + sql: ${TABLE}.total_interacted_users ;; + description: "Amount of interacted users per widget" + } + + dimension: total_non_interacted_users { + type: number + sql: ${TABLE}.total_non_interacted_users ;; + description: "Amount of non interacted users per widget" + } + + measure: count { + type: count + description: "Default count measure" + } +} \ No newline at end of file diff --git a/tests/resources/expected_lookml/views/ugc__shopper_experience_widget_order_aggregation.view.lkml b/tests/resources/expected_lookml/views/ugc__shopper_experience_widget_order_aggregation.view.lkml new file mode 100644 index 0000000..a895d39 --- /dev/null +++ b/tests/resources/expected_lookml/views/ugc__shopper_experience_widget_order_aggregation.view.lkml @@ -0,0 +1,73 @@ +view: ugc__shopper_experience_widget_order_aggregation { + sql_table_name: dev_dkruh1.ugc__shopper_experience_widget_order_aggregation ;; + + dimension_group: date { + type: time + sql: ${TABLE}.date ;; + description: "Date" + datatype: datetime + timeframes: [ + raw, + time, + hour, + date, + week, + month, + quarter, + year, + ] + } + + dimension: app_key { + type: string + sql: ${TABLE}.app_key ;; + description: "App key" + } + + dimension: widget { + type: string + sql: ${TABLE}.widget ;; + description: "Widget name" + } + + dimension: currency { + type: string + sql: ${TABLE}.currency ;; + description: "Currency" + } + + dimension: orders_count { + type: number + sql: ${TABLE}.orders_count ;; + description: "Amount of all orders per widget per currency" + } + + dimension: orders_sum_interacted_users { + type: number + sql: ${TABLE}.orders_sum_interacted_users ;; + description: "Orders sum of interacted users per widget per currency" + } + + dimension: orders_count_of_interacted_users { + type: number + sql: ${TABLE}.orders_count_of_interacted_users ;; + description: "Orders amount of interacted users per widget per currency" + } + + dimension: orders_sum_non_interacted_users { + type: number + sql: ${TABLE}.orders_sum_non_interacted_users ;; + description: "Orders sum of non interacted users per widget per currency" + } + + dimension: orders_count_of_non_interacted_users { + type: number + sql: ${TABLE}.orders_count_of_non_interacted_users ;; + description: "Orders amount of non interacted users per widget per currency" + } + + measure: count { + type: count + description: "Default count measure" + } +} \ No newline at end of file diff --git a/tests/resources/test_target/catalog.json b/tests/resources/test_target/catalog.json new file mode 100644 index 0000000..22158ae --- /dev/null +++ b/tests/resources/test_target/catalog.json @@ -0,0 +1 @@ +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.5.4", "generated_at": "2023-11-15T21:19:36.761769Z", "invocation_id": "8650ffd3-7372-4f27-b66a-85fb06499297", "env": {}}, "nodes": {"model.yoda.analytics___finance__zuora_account": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___finance__zuora_account", "database": null, "comment": null, "owner": "root"}, "columns": {"account_id": {"type": "string", "index": 0, "name": "account_id", "comment": null}, "account_name": {"type": "string", "index": 1, "name": "account_name", "comment": null}, "organization_key": {"type": "string", "index": 2, "name": "organization_key", "comment": null}, "organization_id": {"type": "long", "index": 3, "name": "organization_id", "comment": null}, "account_number": {"type": "string", "index": 4, "name": "account_number", "comment": null}, "sf_account_id": {"type": "string", "index": 5, "name": "sf_account_id", "comment": null}, "parent_organization_key": {"type": "string", "index": 6, "name": "parent_organization_key", "comment": null}, "child_organization_key": {"type": "string", "index": 7, "name": "child_organization_key", "comment": null}, "account_status": {"type": "string", "index": 8, "name": "account_status", "comment": null}, "account_currency": {"type": "string", "index": 9, "name": "account_currency", "comment": null}, "bill_to_contact_id": {"type": "string", "index": 10, "name": "bill_to_contact_id", "comment": null}, "yotpo_legal_entity": {"type": "string", "index": 11, "name": "yotpo_legal_entity", "comment": null}, "payment_terms": {"type": "string", "index": 12, "name": "payment_terms", "comment": null}, "default_payment_method_id": {"type": "string", "index": 13, "name": "default_payment_method_id", "comment": null}, "communication_profile_id": {"type": "string", "index": 14, "name": "communication_profile_id", "comment": null}, "account_segment": {"type": "string", "index": 15, "name": "account_segment", "comment": null}, "is_deleted": {"type": "short", "index": 16, "name": "is_deleted", "comment": null}, "is_test_account": {"type": "integer", "index": 17, "name": "is_test_account", "comment": null}, "is_parent_account": {"type": "integer", "index": 18, "name": "is_parent_account", "comment": null}, "created_at": {"type": "timestamp", "index": 19, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 20, "name": "updated_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 21, "name": "dwh_updated_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.yoda.analytics___finance__zuora_account"}, "model.yoda.analytics___finance_stg__account": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___finance_stg__account", "database": null, "comment": null, "owner": "root"}, "columns": {"accountnumber": {"type": "string", "index": 0, "name": "accountnumber", "comment": null}, "additionalemailaddresses": {"type": "string", "index": 1, "name": "additionalemailaddresses", "comment": null}, "allowinvoiceedit": {"type": "boolean", "index": 2, "name": "allowinvoiceedit", "comment": null}, "appkey__c": {"type": "string", "index": 3, "name": "appkey__c", "comment": null}, "autopay": {"type": "boolean", "index": 4, "name": "autopay", "comment": null}, "balance": {"type": "double", "index": 5, "name": "balance", "comment": null}, "batch": {"type": "string", "index": 6, "name": "batch", "comment": null}, "bcdsettingoption": {"type": "string", "index": 7, "name": "bcdsettingoption", "comment": null}, "billcycleday": {"type": "long", "index": 8, "name": "billcycleday", "comment": null}, "billtocontactid": {"type": "string", "index": 9, "name": "billtocontactid", "comment": null}, "class__ns": {"type": "string", "index": 10, "name": "class__ns", "comment": null}, "communicationprofileid": {"type": "string", "index": 11, "name": "communicationprofileid", "comment": null}, "createdbyid": {"type": "string", "index": 12, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 13, "name": "createddate", "comment": null}, "creditbalance": {"type": "long", "index": 14, "name": "creditbalance", "comment": null}, "crmid": {"type": "string", "index": 15, "name": "crmid", "comment": null}, "currency": {"type": "string", "index": 16, "name": "currency", "comment": null}, "customerid__ns": {"type": "string", "index": 17, "name": "customerid__ns", "comment": null}, "customerservicerepname": {"type": "string", "index": 18, "name": "customerservicerepname", "comment": null}, "customertype__ns": {"type": "string", "index": 19, "name": "customertype__ns", "comment": null}, "defaultpaymentmethodid": {"type": "string", "index": 20, "name": "defaultpaymentmethodid", "comment": null}, "deleted": {"type": "boolean", "index": 21, "name": "deleted", "comment": null}, "department__ns": {"type": "string", "index": 22, "name": "department__ns", "comment": null}, "id": {"type": "string", "index": 23, "name": "id", "comment": null}, "integrationid__ns": {"type": "string", "index": 24, "name": "integrationid__ns", "comment": null}, "integrationstatus__ns": {"type": "string", "index": 25, "name": "integrationstatus__ns", "comment": null}, "intercompany__c": {"type": "string", "index": 26, "name": "intercompany__c", "comment": null}, "invoicedeliveryprefsemail": {"type": "boolean", "index": 27, "name": "invoicedeliveryprefsemail", "comment": null}, "invoicedeliveryprefsprint": {"type": "boolean", "index": 28, "name": "invoicedeliveryprefsprint", "comment": null}, "invoicetemplateid": {"type": "string", "index": 29, "name": "invoicetemplateid", "comment": null}, "lastinvoicedate": {"type": "string", "index": 30, "name": "lastinvoicedate", "comment": null}, "legalentity__c": {"type": "string", "index": 31, "name": "legalentity__c", "comment": null}, "location__ns": {"type": "string", "index": 32, "name": "location__ns", "comment": null}, "merchantid__c": {"type": "string", "index": 33, "name": "merchantid__c", "comment": null}, "mrr": {"type": "double", "index": 34, "name": "mrr", "comment": null}, "name": {"type": "string", "index": 35, "name": "name", "comment": null}, "notes": {"type": "string", "index": 36, "name": "notes", "comment": null}, "organisationkey__c": {"type": "string", "index": 37, "name": "organisationkey__c", "comment": null}, "parentaccountid": {"type": "string", "index": 38, "name": "parentaccountid", "comment": null}, "parentaccount__c": {"type": "string", "index": 39, "name": "parentaccount__c", "comment": null}, "parentid": {"type": "string", "index": 40, "name": "parentid", "comment": null}, "paymentgateway": {"type": "string", "index": 41, "name": "paymentgateway", "comment": null}, "paymentterm": {"type": "string", "index": 42, "name": "paymentterm", "comment": null}, "purchaseordernumber": {"type": "string", "index": 43, "name": "purchaseordernumber", "comment": null}, "referrer__c": {"type": "string", "index": 44, "name": "referrer__c", "comment": null}, "sf_accountid__c": {"type": "string", "index": 45, "name": "sf_accountid__c", "comment": null}, "salesrepname": {"type": "string", "index": 46, "name": "salesrepname", "comment": null}, "sequencesetid": {"type": "string", "index": 47, "name": "sequencesetid", "comment": null}, "soldtocontactid": {"type": "string", "index": 48, "name": "soldtocontactid", "comment": null}, "status": {"type": "string", "index": 49, "name": "status", "comment": null}, "subsidiary__ns": {"type": "string", "index": 50, "name": "subsidiary__ns", "comment": null}, "syncdate__ns": {"type": "string", "index": 51, "name": "syncdate__ns", "comment": null}, "synctonetsuite__ns": {"type": "string", "index": 52, "name": "synctonetsuite__ns", "comment": null}, "taxcompanycode": {"type": "string", "index": 53, "name": "taxcompanycode", "comment": null}, "taxexemptcertificateid": {"type": "string", "index": 54, "name": "taxexemptcertificateid", "comment": null}, "taxexemptcertificatetype": {"type": "string", "index": 55, "name": "taxexemptcertificatetype", "comment": null}, "taxexemptdescription": {"type": "string", "index": 56, "name": "taxexemptdescription", "comment": null}, "taxexemptentityusecode": {"type": "string", "index": 57, "name": "taxexemptentityusecode", "comment": null}, "taxexemptissuingjurisdiction": {"type": "string", "index": 58, "name": "taxexemptissuingjurisdiction", "comment": null}, "taxexemptstatus": {"type": "string", "index": 59, "name": "taxexemptstatus", "comment": null}, "testaccount__c": {"type": "string", "index": 60, "name": "testaccount__c", "comment": null}, "totaldebitmemobalance": {"type": "double", "index": 61, "name": "totaldebitmemobalance", "comment": null}, "totalinvoicebalance": {"type": "double", "index": 62, "name": "totalinvoicebalance", "comment": null}, "unappliedbalance": {"type": "double", "index": 63, "name": "unappliedbalance", "comment": null}, "unappliedcreditmemoamount": {"type": "double", "index": 64, "name": "unappliedcreditmemoamount", "comment": null}, "updatedbyid": {"type": "string", "index": 65, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 66, "name": "updateddate", "comment": null}, "vatid": {"type": "string", "index": 67, "name": "vatid", "comment": null}, "segment__c": {"type": "string", "index": 68, "name": "segment__c", "comment": null}}, "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.yoda.analytics___finance_stg__account"}, "model.yoda.analytics___finance_stg__zuora_account": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_account", "database": null, "comment": null, "owner": "root"}, "columns": {"account_id": {"type": "string", "index": 0, "name": "account_id", "comment": null}, "account_name": {"type": "string", "index": 1, "name": "account_name", "comment": null}, "organization_key": {"type": "string", "index": 2, "name": "organization_key", "comment": null}, "account_number": {"type": "string", "index": 3, "name": "account_number", "comment": null}, "sf_account_id": {"type": "string", "index": 4, "name": "sf_account_id", "comment": null}, "parent_organization_key": {"type": "string", "index": 5, "name": "parent_organization_key", "comment": null}, "child_organization_key": {"type": "string", "index": 6, "name": "child_organization_key", "comment": null}, "account_status": {"type": "string", "index": 7, "name": "account_status", "comment": null}, "account_currency": {"type": "string", "index": 8, "name": "account_currency", "comment": null}, "bill_to_contact_id": {"type": "string", "index": 9, "name": "bill_to_contact_id", "comment": null}, "yotpo_legal_entity": {"type": "string", "index": 10, "name": "yotpo_legal_entity", "comment": null}, "payment_terms": {"type": "string", "index": 11, "name": "payment_terms", "comment": null}, "default_payment_method_id": {"type": "string", "index": 12, "name": "default_payment_method_id", "comment": null}, "communication_profile_id": {"type": "string", "index": 13, "name": "communication_profile_id", "comment": null}, "account_segment": {"type": "string", "index": 14, "name": "account_segment", "comment": null}, "is_deleted": {"type": "short", "index": 15, "name": "is_deleted", "comment": null}, "is_test_account": {"type": "integer", "index": 16, "name": "is_test_account", "comment": null}, "is_parent_account": {"type": "integer", "index": 17, "name": "is_parent_account", "comment": null}, "created_at": {"type": "timestamp", "index": 18, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 19, "name": "updated_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 20, "name": "dwh_updated_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.yoda.analytics___finance_stg__zuora_account"}, "model.yoda.analytics___loyalty__daily_merchant": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty__daily_merchant", "database": null, "comment": null, "owner": "root"}, "columns": {"merchant_id": {"type": "long", "index": 0, "name": "merchant_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "is_rewards_installed": {"type": "short", "index": 2, "name": "is_rewards_installed", "comment": null}, "is_analytics_installed": {"type": "short", "index": 3, "name": "is_analytics_installed", "comment": null}, "is_widget_enabled": {"type": "short", "index": 4, "name": "is_widget_enabled", "comment": null}, "is_redemptions_enabled": {"type": "short", "index": 5, "name": "is_redemptions_enabled", "comment": null}, "is_program_live": {"type": "short", "index": 6, "name": "is_program_live", "comment": null}, "is_can_generate_coupons": {"type": "short", "index": 7, "name": "is_can_generate_coupons", "comment": null}, "is_storefront_css_included": {"type": "short", "index": 8, "name": "is_storefront_css_included", "comment": null}, "date": {"type": "date", "index": 9, "name": "date", "comment": null}}, "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.yoda.analytics___loyalty__daily_merchant"}, "model.yoda.analytics___loyalty__merchant": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant", "database": null, "comment": null, "owner": "root"}, "columns": {"merchant_id": {"type": "long", "index": 0, "name": "merchant_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "organization_key": {"type": "string", "index": 2, "name": "organization_key", "comment": null}, "merchant_created_at": {"type": "timestamp", "index": 3, "name": "merchant_created_at", "comment": null}, "company_name": {"type": "string", "index": 4, "name": "company_name", "comment": null}, "from_email": {"type": "string", "index": 5, "name": "from_email", "comment": null}, "website": {"type": "string", "index": 6, "name": "website", "comment": null}, "logo_url": {"type": "string", "index": 7, "name": "logo_url", "comment": null}, "currency": {"type": "string", "index": 8, "name": "currency", "comment": null}, "is_approved": {"type": "short", "index": 9, "name": "is_approved", "comment": null}, "is_widget_enabled": {"type": "short", "index": 10, "name": "is_widget_enabled", "comment": null}, "platform": {"type": "string", "index": 11, "name": "platform", "comment": null}, "has_store": {"type": "boolean", "index": 12, "name": "has_store", "comment": null}, "is_rewards_installed": {"type": "short", "index": 13, "name": "is_rewards_installed", "comment": null}, "installed_rewards_at": {"type": "timestamp", "index": 14, "name": "installed_rewards_at", "comment": null}, "uninstalled_rewards_at": {"type": "timestamp", "index": 15, "name": "uninstalled_rewards_at", "comment": null}, "is_analytics_installed": {"type": "short", "index": 16, "name": "is_analytics_installed", "comment": null}, "installed_analytics_at": {"type": "timestamp", "index": 17, "name": "installed_analytics_at", "comment": null}, "uninstalled_analytics_at": {"type": "timestamp", "index": 18, "name": "uninstalled_analytics_at", "comment": null}, "is_completed_profile": {"type": "short", "index": 19, "name": "is_completed_profile", "comment": null}, "is_redemptions_enabled": {"type": "short", "index": 20, "name": "is_redemptions_enabled", "comment": null}, "plan_name": {"type": "string", "index": 21, "name": "plan_name", "comment": null}, "program_first_activated_date": {"type": "date", "index": 22, "name": "program_first_activated_date", "comment": null}, "is_shipping_included": {"type": "short", "index": 23, "name": "is_shipping_included", "comment": null}, "is_program_live": {"type": "short", "index": 24, "name": "is_program_live", "comment": null}, "is_cross_origin_store_accounts": {"type": "short", "index": 25, "name": "is_cross_origin_store_accounts", "comment": null}, "install_order_volume": {"type": "integer", "index": 26, "name": "install_order_volume", "comment": null}, "contact_email": {"type": "string", "index": 27, "name": "contact_email", "comment": null}, "value_per_subscriber_cents": {"type": "integer", "index": 28, "name": "value_per_subscriber_cents", "comment": null}, "is_weekly_digest_enabled": {"type": "short", "index": 29, "name": "is_weekly_digest_enabled", "comment": null}, "free_trial_expires_at": {"type": "timestamp", "index": 30, "name": "free_trial_expires_at", "comment": null}, "is_on_free_trial": {"type": "short", "index": 31, "name": "is_on_free_trial", "comment": null}, "is_program_locked": {"type": "short", "index": 32, "name": "is_program_locked", "comment": null}, "is_free_products_enabled": {"type": "short", "index": 33, "name": "is_free_products_enabled", "comment": null}, "process_refund_status": {"type": "string", "index": 34, "name": "process_refund_status", "comment": null}, "process_order_status": {"type": "string", "index": 35, "name": "process_order_status", "comment": null}, "platform_engine": {"type": "string", "index": 36, "name": "platform_engine", "comment": null}, "points_reminder_delay_days": {"type": "integer", "index": 37, "name": "points_reminder_delay_days", "comment": null}, "source": {"type": "string", "index": 38, "name": "source", "comment": null}, "is_setup_rewards_page": {"type": "short", "index": 39, "name": "is_setup_rewards_page", "comment": null}, "is_sync_fields_with_processor": {"type": "short", "index": 40, "name": "is_sync_fields_with_processor", "comment": null}, "is_vip_tiers_job_running": {"type": "short", "index": 41, "name": "is_vip_tiers_job_running", "comment": null}, "is_can_generate_coupons": {"type": "short", "index": 42, "name": "is_can_generate_coupons", "comment": null}, "referral_reminder_days": {"type": "integer", "index": 43, "name": "referral_reminder_days", "comment": null}, "merchant_guid": {"type": "string", "index": 44, "name": "merchant_guid", "comment": null}, "facebook_app_id": {"type": "string", "index": 45, "name": "facebook_app_id", "comment": null}, "is_completed_onboarding": {"type": "short", "index": 46, "name": "is_completed_onboarding", "comment": null}, "is_first_time_referral_discounts_enable_flag": {"type": "short", "index": 47, "name": "is_first_time_referral_discounts_enable_flag", "comment": null}, "is_discount_code_based_referral_program_enabled": {"type": "short", "index": 48, "name": "is_discount_code_based_referral_program_enabled", "comment": null}, "is_verified_email_domain": {"type": "short", "index": 49, "name": "is_verified_email_domain", "comment": null}, "is_test_account": {"type": "short", "index": 50, "name": "is_test_account", "comment": null}, "is_dev_account": {"type": "short", "index": 51, "name": "is_dev_account", "comment": null}, "time_zone": {"type": "string", "index": 52, "name": "time_zone", "comment": null}, "loyalty_opt_in_strategy": {"type": "integer", "index": 53, "name": "loyalty_opt_in_strategy", "comment": null}, "referral_opt_in_strategy": {"type": "integer", "index": 54, "name": "referral_opt_in_strategy", "comment": null}, "round_discounts_strategy": {"type": "integer", "index": 55, "name": "round_discounts_strategy", "comment": null}, "is_delete_used_coupons_enable": {"type": "short", "index": 56, "name": "is_delete_used_coupons_enable", "comment": null}, "is_storefront_css_included": {"type": "short", "index": 57, "name": "is_storefront_css_included", "comment": null}, "group_id": {"type": "string", "index": 58, "name": "group_id", "comment": null}, "vip_type": {"type": "string", "index": 59, "name": "vip_type", "comment": null}, "is_vip_enabled": {"type": "integer", "index": 60, "name": "is_vip_enabled", "comment": null}, "dwh_updated_date": {"type": "date", "index": 61, "name": "dwh_updated_date", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 62, "name": "dwh_updated_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.yoda.analytics___loyalty__merchant"}, "model.yoda.analytics___loyalty__merchant_activeness_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_activeness_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "merchant_id": {"type": "long", "index": 1, "name": "merchant_id", "comment": null}, "app_key": {"type": "string", "index": 2, "name": "app_key", "comment": null}, "is_active2": {"type": "integer", "index": 3, "name": "is_active2", "comment": null}, "is_active2_1": {"type": "integer", "index": 4, "name": "is_active2_1", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 5, "name": "dwh_updated_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.yoda.analytics___loyalty__merchant_activeness_daily"}, "model.yoda.analytics___loyalty__merchant_metrics_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_metrics_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"merchant_id": {"type": "long", "index": 0, "name": "merchant_id", "comment": null}, "date": {"type": "date", "index": 1, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 2, "name": "app_key", "comment": null}, "is_rewards_installed": {"type": "short", "index": 3, "name": "is_rewards_installed", "comment": null}, "is_analytics_installed": {"type": "short", "index": 4, "name": "is_analytics_installed", "comment": null}, "is_widget_enabled": {"type": "short", "index": 5, "name": "is_widget_enabled", "comment": null}, "is_redemptions_enabled": {"type": "short", "index": 6, "name": "is_redemptions_enabled", "comment": null}, "is_program_live": {"type": "short", "index": 7, "name": "is_program_live", "comment": null}, "is_can_generate_coupons": {"type": "short", "index": 8, "name": "is_can_generate_coupons", "comment": null}, "is_storefront_css_included": {"type": "short", "index": 9, "name": "is_storefront_css_included", "comment": null}, "is_active2": {"type": "integer", "index": 10, "name": "is_active2", "comment": null}, "is_active2_1": {"type": "integer", "index": 11, "name": "is_active2_1", "comment": null}}, "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.yoda.analytics___loyalty__merchant_metrics_daily"}, "model.yoda.analytics___loyalty__merchant_plan_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_plan_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "merchant_id": {"type": "long", "index": 1, "name": "merchant_id", "comment": null}, "user_created_date": {"type": "date", "index": 2, "name": "user_created_date", "comment": null}, "app_key": {"type": "string", "index": 3, "name": "app_key", "comment": null}, "website": {"type": "string", "index": 4, "name": "website", "comment": null}, "program_first_activated_date": {"type": "date", "index": 5, "name": "program_first_activated_date", "comment": null}, "company_name": {"type": "string", "index": 6, "name": "company_name", "comment": null}, "is_install": {"type": "integer", "index": 7, "name": "is_install", "comment": null}, "is_uninstall_date": {"type": "integer", "index": 8, "name": "is_uninstall_date", "comment": null}, "is_install_date": {"type": "integer", "index": 9, "name": "is_install_date", "comment": null}, "is_program_live": {"type": "short", "index": 10, "name": "is_program_live", "comment": null}, "platform": {"type": "string", "index": 11, "name": "platform", "comment": null}, "is_dev_account": {"type": "short", "index": 12, "name": "is_dev_account", "comment": null}, "is_start_day": {"type": "integer", "index": 13, "name": "is_start_day", "comment": null}, "is_active2": {"type": "integer", "index": 14, "name": "is_active2", "comment": null}, "is_active2_1": {"type": "integer", "index": 15, "name": "is_active2_1", "comment": null}, "is_ht_ss": {"type": "short", "index": 16, "name": "is_ht_ss", "comment": null}, "first_plan_ever": {"type": "string", "index": 17, "name": "first_plan_ever", "comment": null}, "plan_name": {"type": "string", "index": 18, "name": "plan_name", "comment": null}, "plan_id": {"type": "long", "index": 19, "name": "plan_id", "comment": null}, "did_upgrade_first_day": {"type": "integer", "index": 20, "name": "did_upgrade_first_day", "comment": null}, "changes": {"type": "string", "index": 21, "name": "changes", "comment": null}, "plan_prior_to_change": {"type": "string", "index": 22, "name": "plan_prior_to_change", "comment": null}, "plan_id_prior_to_change": {"type": "long", "index": 23, "name": "plan_id_prior_to_change", "comment": null}, "merchant_acc_unique_redemptions_w_order_cnt": {"type": "long", "index": 24, "name": "merchant_acc_unique_redemptions_w_order_cnt", "comment": null}, "merchant_acc_unique_purchasers_cnt": {"type": "long", "index": 25, "name": "merchant_acc_unique_purchasers_cnt", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 26, "name": "dwh_updated_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.yoda.analytics___loyalty__merchant_plan_daily"}, "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_plan_metrics_cohort", "database": null, "comment": null, "owner": "root"}, "columns": {"merchant_id": {"type": "long", "index": 0, "name": "merchant_id", "comment": null}, "plan_name": {"type": "string", "index": 1, "name": "plan_name", "comment": null}, "first_time_plan": {"type": "date", "index": 2, "name": "first_time_plan", "comment": null}, "first_plan_ever": {"type": "string", "index": 3, "name": "first_plan_ever", "comment": null}, "platform": {"type": "string", "index": 4, "name": "platform", "comment": null}, "user_created_date": {"type": "date", "index": 5, "name": "user_created_date", "comment": null}, "user_creation_month": {"type": "date", "index": 6, "name": "user_creation_month", "comment": null}, "program_first_activated_date": {"type": "date", "index": 7, "name": "program_first_activated_date", "comment": null}, "time_to_program_activation_from_creation": {"type": "integer", "index": 8, "name": "time_to_program_activation_from_creation", "comment": null}, "time_to_active1_from_creation": {"type": "integer", "index": 9, "name": "time_to_active1_from_creation", "comment": null}, "time_to_active1_from_subscription": {"type": "integer", "index": 10, "name": "time_to_active1_from_subscription", "comment": null}, "time_to_active2_from_creation": {"type": "integer", "index": 11, "name": "time_to_active2_from_creation", "comment": null}, "time_to_active2_from_subscription": {"type": "integer", "index": 12, "name": "time_to_active2_from_subscription", "comment": null}, "time_to_active2_1_from_creation": {"type": "integer", "index": 13, "name": "time_to_active2_1_from_creation", "comment": null}, "time_to_active2_1_from_subscription": {"type": "integer", "index": 14, "name": "time_to_active2_1_from_subscription", "comment": null}, "time_to_active3_from_creation": {"type": "integer", "index": 15, "name": "time_to_active3_from_creation", "comment": null}, "time_to_active3_from_subscription": {"type": "integer", "index": 16, "name": "time_to_active3_from_subscription", "comment": null}, "time_to_free": {"type": "integer", "index": 17, "name": "time_to_free", "comment": null}, "time_to_bronze": {"type": "integer", "index": 18, "name": "time_to_bronze", "comment": null}, "time_to_silver": {"type": "integer", "index": 19, "name": "time_to_silver", "comment": null}, "time_to_gold": {"type": "integer", "index": 20, "name": "time_to_gold", "comment": null}, "time_to_platinum": {"type": "integer", "index": 21, "name": "time_to_platinum", "comment": null}, "time_to_enterprise": {"type": "integer", "index": 22, "name": "time_to_enterprise", "comment": null}, "is_ht_ss": {"type": "short", "index": 23, "name": "is_ht_ss", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 24, "name": "dwh_updated_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.yoda.analytics___loyalty__merchant_plan_metrics_cohort"}, "model.yoda.analytics___loyalty__redemption_details": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty__redemption_details", "database": null, "comment": null, "owner": "root"}, "columns": {"redemption_option_id": {"type": "long", "index": 0, "name": "redemption_option_id", "comment": null}, "merchant_id": {"type": "long", "index": 1, "name": "merchant_id", "comment": null}, "app_key": {"type": "string", "index": 2, "name": "app_key", "comment": null}, "redemption_method": {"type": "string", "index": 3, "name": "redemption_method", "comment": null}, "redemption_option_created_at": {"type": "timestamp", "index": 4, "name": "redemption_option_created_at", "comment": null}, "amount_in_usd": {"type": "long", "index": 5, "name": "amount_in_usd", "comment": null}, "discount_amount_cents": {"type": "long", "index": 6, "name": "discount_amount_cents", "comment": null}, "discount_percentage": {"type": "long", "index": 7, "name": "discount_percentage", "comment": null}, "is_applies_once": {"type": "short", "index": 8, "name": "is_applies_once", "comment": null}, "applies_to_id": {"type": "string", "index": 9, "name": "applies_to_id", "comment": null}, "applies_to_product_type": {"type": "string", "index": 10, "name": "applies_to_product_type", "comment": null}, "discount_type": {"type": "string", "index": 11, "name": "discount_type", "comment": null}, "redempation_option_is_deleted": {"type": "short", "index": 12, "name": "redempation_option_is_deleted", "comment": null}, "is_admin": {"type": "short", "index": 13, "name": "is_admin", "comment": null}, "point_redemption_id": {"type": "long", "index": 14, "name": "point_redemption_id", "comment": null}, "point_redemption_created_at": {"type": "timestamp", "index": 15, "name": "point_redemption_created_at", "comment": null}, "customer_id": {"type": "long", "index": 16, "name": "customer_id", "comment": null}, "perk_id": {"type": "long", "index": 17, "name": "perk_id", "comment": null}, "earning_rule_id": {"type": "long", "index": 18, "name": "earning_rule_id", "comment": null}, "referral_id": {"type": "long", "index": 19, "name": "referral_id", "comment": null}, "is_reversed": {"type": "short", "index": 20, "name": "is_reversed", "comment": null}, "is_checkout": {"type": "short", "index": 21, "name": "is_checkout", "comment": null}, "point_redemption_is_deleted": {"type": "short", "index": 22, "name": "point_redemption_is_deleted", "comment": null}, "is_visible": {"type": "short", "index": 23, "name": "is_visible", "comment": null}, "amount_redeemed_usd": {"type": "double", "index": 24, "name": "amount_redeemed_usd", "comment": null}, "is_direct_rewarded": {"type": "integer", "index": 25, "name": "is_direct_rewarded", "comment": null}, "point_redemption_orders_cnt": {"type": "long", "index": 26, "name": "point_redemption_orders_cnt", "comment": null}, "point_redemption_first_order_date": {"type": "date", "index": 27, "name": "point_redemption_first_order_date", "comment": null}, "point_redemption_last_order_date": {"type": "date", "index": 28, "name": "point_redemption_last_order_date", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 29, "name": "dwh_updated_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.yoda.analytics___loyalty__redemption_details"}, "model.yoda.analytics___loyalty_stg__loyalty_account": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__loyalty_account", "database": null, "comment": null, "owner": "root"}, "columns": {"app_key": {"type": "string", "index": 0, "name": "app_key", "comment": null}, "merchant_id": {"type": "long", "index": 1, "name": "merchant_id", "comment": null}, "organization_key": {"type": "string", "index": 2, "name": "organization_key", "comment": null}, "created_at": {"type": "timestamp", "index": 3, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 4, "name": "updated_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.yoda.analytics___loyalty_stg__loyalty_account"}, "model.yoda.analytics___loyalty_stg__loyalty_plan": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__loyalty_plan", "database": null, "comment": null, "owner": "root"}, "columns": {"plan_id": {"type": "long", "index": 0, "name": "plan_id", "comment": null}, "plan_name": {"type": "string", "index": 1, "name": "plan_name", "comment": null}, "base_price_cents": {"type": "long", "index": 2, "name": "base_price_cents", "comment": null}, "capped_amount_cents": {"type": "long", "index": 3, "name": "capped_amount_cents", "comment": null}, "included_orders": {"type": "long", "index": 4, "name": "included_orders", "comment": null}, "per_order_price_cents": {"type": "long", "index": 5, "name": "per_order_price_cents", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 6, "name": "dwh_updated_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.yoda.analytics___loyalty_stg__loyalty_plan"}, "model.yoda.analytics___loyalty_stg__loyalty_subscription": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__loyalty_subscription", "database": null, "comment": null, "owner": "root"}, "columns": {"subscription_id": {"type": "long", "index": 0, "name": "subscription_id", "comment": null}, "merchant_id": {"type": "long", "index": 1, "name": "merchant_id", "comment": null}, "plan_id": {"type": "long", "index": 2, "name": "plan_id", "comment": null}, "base_price_cents": {"type": "long", "index": 3, "name": "base_price_cents", "comment": null}, "billing_provider": {"type": "string", "index": 4, "name": "billing_provider", "comment": null}, "included_orders": {"type": "long", "index": 5, "name": "included_orders", "comment": null}, "last_usage_charge_at": {"type": "timestamp", "index": 6, "name": "last_usage_charge_at", "comment": null}, "per_order_price_cents": {"type": "long", "index": 7, "name": "per_order_price_cents", "comment": null}, "percentage_of_redemptions": {"type": "long", "index": 8, "name": "percentage_of_redemptions", "comment": null}, "percentage_of_referrals": {"type": "long", "index": 9, "name": "percentage_of_referrals", "comment": null}, "is_current": {"type": "boolean", "index": 10, "name": "is_current", "comment": null}, "is_overdue": {"type": "boolean", "index": 11, "name": "is_overdue", "comment": null}, "is_pending": {"type": "boolean", "index": 12, "name": "is_pending", "comment": null}, "is_was_current": {"type": "boolean", "index": 13, "name": "is_was_current", "comment": null}, "charge_status": {"type": "string", "index": 14, "name": "charge_status", "comment": null}, "recurring_charge_id": {"type": "string", "index": 15, "name": "recurring_charge_id", "comment": null}, "manual_price_cents": {"type": "long", "index": 16, "name": "manual_price_cents", "comment": null}, "updated_at": {"type": "timestamp", "index": 17, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 18, "name": "created_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 19, "name": "dwh_updated_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.yoda.analytics___loyalty_stg__loyalty_subscription"}, "model.yoda.analytics___loyalty_stg__merchant": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__merchant", "database": null, "comment": null, "owner": "root"}, "columns": {"merchant_id": {"type": "long", "index": 0, "name": "merchant_id", "comment": null}, "company_name": {"type": "string", "index": 1, "name": "company_name", "comment": null}, "from_email": {"type": "string", "index": 2, "name": "from_email", "comment": null}, "website": {"type": "string", "index": 3, "name": "website", "comment": null}, "logo_url": {"type": "string", "index": 4, "name": "logo_url", "comment": null}, "currency": {"type": "string", "index": 5, "name": "currency", "comment": null}, "is_approved": {"type": "short", "index": 6, "name": "is_approved", "comment": null}, "is_widget_enabled": {"type": "short", "index": 7, "name": "is_widget_enabled", "comment": null}, "platform": {"type": "string", "index": 8, "name": "platform", "comment": null}, "has_store": {"type": "boolean", "index": 9, "name": "has_store", "comment": null}, "is_rewards_installed": {"type": "short", "index": 10, "name": "is_rewards_installed", "comment": null}, "installed_rewards_at": {"type": "timestamp", "index": 11, "name": "installed_rewards_at", "comment": null}, "uninstalled_rewards_at": {"type": "timestamp", "index": 12, "name": "uninstalled_rewards_at", "comment": null}, "is_analytics_installed": {"type": "short", "index": 13, "name": "is_analytics_installed", "comment": null}, "installed_analytics_at": {"type": "timestamp", "index": 14, "name": "installed_analytics_at", "comment": null}, "uninstalled_analytics_at": {"type": "timestamp", "index": 15, "name": "uninstalled_analytics_at", "comment": null}, "is_completed_profile": {"type": "short", "index": 16, "name": "is_completed_profile", "comment": null}, "is_redemptions_enabled": {"type": "short", "index": 17, "name": "is_redemptions_enabled", "comment": null}, "plan_name": {"type": "string", "index": 18, "name": "plan_name", "comment": null}, "program_first_activated_date": {"type": "date", "index": 19, "name": "program_first_activated_date", "comment": null}, "is_shipping_included": {"type": "short", "index": 20, "name": "is_shipping_included", "comment": null}, "is_program_live": {"type": "short", "index": 21, "name": "is_program_live", "comment": null}, "is_cross_origin_store_accounts": {"type": "short", "index": 22, "name": "is_cross_origin_store_accounts", "comment": null}, "install_order_volume": {"type": "integer", "index": 23, "name": "install_order_volume", "comment": null}, "contact_email": {"type": "string", "index": 24, "name": "contact_email", "comment": null}, "value_per_subscriber_cents": {"type": "integer", "index": 25, "name": "value_per_subscriber_cents", "comment": null}, "is_weekly_digest_enabled": {"type": "short", "index": 26, "name": "is_weekly_digest_enabled", "comment": null}, "free_trial_expires_at": {"type": "timestamp", "index": 27, "name": "free_trial_expires_at", "comment": null}, "is_on_free_trial": {"type": "short", "index": 28, "name": "is_on_free_trial", "comment": null}, "is_program_locked": {"type": "short", "index": 29, "name": "is_program_locked", "comment": null}, "is_free_products_enabled": {"type": "short", "index": 30, "name": "is_free_products_enabled", "comment": null}, "process_refund_status": {"type": "string", "index": 31, "name": "process_refund_status", "comment": null}, "process_order_status": {"type": "string", "index": 32, "name": "process_order_status", "comment": null}, "platform_engine": {"type": "string", "index": 33, "name": "platform_engine", "comment": null}, "points_reminder_delay_days": {"type": "integer", "index": 34, "name": "points_reminder_delay_days", "comment": null}, "source": {"type": "string", "index": 35, "name": "source", "comment": null}, "is_setup_rewards_page": {"type": "short", "index": 36, "name": "is_setup_rewards_page", "comment": null}, "is_sync_fields_with_processor": {"type": "short", "index": 37, "name": "is_sync_fields_with_processor", "comment": null}, "is_vip_tiers_job_running": {"type": "short", "index": 38, "name": "is_vip_tiers_job_running", "comment": null}, "is_can_generate_coupons": {"type": "short", "index": 39, "name": "is_can_generate_coupons", "comment": null}, "referral_reminder_days": {"type": "integer", "index": 40, "name": "referral_reminder_days", "comment": null}, "merchant_guid": {"type": "string", "index": 41, "name": "merchant_guid", "comment": null}, "facebook_app_id": {"type": "string", "index": 42, "name": "facebook_app_id", "comment": null}, "is_completed_onboarding": {"type": "short", "index": 43, "name": "is_completed_onboarding", "comment": null}, "is_first_time_referral_discounts_enable_flag": {"type": "short", "index": 44, "name": "is_first_time_referral_discounts_enable_flag", "comment": null}, "is_discount_code_based_referral_program_enabled": {"type": "short", "index": 45, "name": "is_discount_code_based_referral_program_enabled", "comment": null}, "is_verified_email_domain": {"type": "short", "index": 46, "name": "is_verified_email_domain", "comment": null}, "is_dev_account": {"type": "short", "index": 47, "name": "is_dev_account", "comment": null}, "is_test_account": {"type": "short", "index": 48, "name": "is_test_account", "comment": null}, "time_zone": {"type": "string", "index": 49, "name": "time_zone", "comment": null}, "loyalty_opt_in_strategy": {"type": "integer", "index": 50, "name": "loyalty_opt_in_strategy", "comment": null}, "referral_opt_in_strategy": {"type": "integer", "index": 51, "name": "referral_opt_in_strategy", "comment": null}, "round_discounts_strategy": {"type": "integer", "index": 52, "name": "round_discounts_strategy", "comment": null}, "is_delete_used_coupons_enable": {"type": "short", "index": 53, "name": "is_delete_used_coupons_enable", "comment": null}, "is_storefront_css_included": {"type": "short", "index": 54, "name": "is_storefront_css_included", "comment": null}, "group_id": {"type": "string", "index": 55, "name": "group_id", "comment": null}, "merchant_created_at": {"type": "timestamp", "index": 56, "name": "merchant_created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 57, "name": "updated_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 58, "name": "dwh_updated_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.yoda.analytics___loyalty_stg__merchant"}, "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__merchant_segment_event_over_time", "database": null, "comment": null, "owner": "root"}, "columns": {"merchant_id": {"type": "long", "index": 0, "name": "merchant_id", "comment": null}, "event_type": {"type": "string", "index": 1, "name": "event_type", "comment": null}, "from_time": {"type": "timestamp", "index": 2, "name": "from_time", "comment": null}, "to_time": {"type": "timestamp", "index": 3, "name": "to_time", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 4, "name": "dwh_updated_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.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"}, "model.yoda.analytics___loyalty_stg__perk": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__perk", "database": null, "comment": null, "owner": "root"}, "columns": {"perk_id": {"type": "long", "index": 0, "name": "perk_id", "comment": null}, "earning_rule_id": {"type": "long", "index": 1, "name": "earning_rule_id", "comment": null}, "customer_id": {"type": "long", "index": 2, "name": "customer_id", "comment": null}, "merchant_id": {"type": "long", "index": 3, "name": "merchant_id", "comment": null}, "redemption_option_id": {"type": "long", "index": 4, "name": "redemption_option_id", "comment": null}, "is_awarded": {"type": "short", "index": 5, "name": "is_awarded", "comment": null}, "is_admin_only": {"type": "short", "index": 6, "name": "is_admin_only", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "awarded_at": {"type": "timestamp", "index": 9, "name": "awarded_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.yoda.analytics___loyalty_stg__perk"}, "model.yoda.analytics___loyalty_stg__point_redemption": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__point_redemption", "database": null, "comment": null, "owner": "root"}, "columns": {"point_redemption_id": {"type": "long", "index": 0, "name": "point_redemption_id", "comment": null}, "amount_redeemed": {"type": "long", "index": 1, "name": "amount_redeemed", "comment": null}, "refunded_amount": {"type": "long", "index": 2, "name": "refunded_amount", "comment": null}, "point_redemption_currency": {"type": "string", "index": 3, "name": "point_redemption_currency", "comment": null}, "amount_redeemed_usd": {"type": "double", "index": 4, "name": "amount_redeemed_usd", "comment": null}, "merchant_id": {"type": "long", "index": 5, "name": "merchant_id", "comment": null}, "customer_id": {"type": "long", "index": 6, "name": "customer_id", "comment": null}, "redemption_option_id": {"type": "long", "index": 7, "name": "redemption_option_id", "comment": null}, "referral_id": {"type": "long", "index": 8, "name": "referral_id", "comment": null}, "perk_id": {"type": "long", "index": 9, "name": "perk_id", "comment": null}, "is_checkout": {"type": "short", "index": 10, "name": "is_checkout", "comment": null}, "is_admin": {"type": "short", "index": 11, "name": "is_admin", "comment": null}, "is_approved": {"type": "short", "index": 12, "name": "is_approved", "comment": null}, "is_pos": {"type": "short", "index": 13, "name": "is_pos", "comment": null}, "is_visible": {"type": "short", "index": 14, "name": "is_visible", "comment": null}, "is_deleted": {"type": "short", "index": 15, "name": "is_deleted", "comment": null}, "is_reversed": {"type": "short", "index": 16, "name": "is_reversed", "comment": null}, "reward_title": {"type": "string", "index": 17, "name": "reward_title", "comment": null}, "reward_text": {"type": "string", "index": 18, "name": "reward_text", "comment": null}, "point_transactions": {"type": "string", "index": 19, "name": "point_transactions", "comment": null}, "point_redemption_date": {"type": "date", "index": 20, "name": "point_redemption_date", "comment": null}, "created_at": {"type": "timestamp", "index": 21, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 22, "name": "updated_at", "comment": null}, "approved_at": {"type": "timestamp", "index": 23, "name": "approved_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 24, "name": "dwh_updated_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.yoda.analytics___loyalty_stg__point_redemption"}, "model.yoda.analytics___loyalty_stg__purchase": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__purchase", "database": null, "comment": null, "owner": "root"}, "columns": {"purchase_id": {"type": "long", "index": 0, "name": "purchase_id", "comment": null}, "purchase_at": {"type": "timestamp", "index": 1, "name": "purchase_at", "comment": null}, "purchase_date": {"type": "date", "index": 2, "name": "purchase_date", "comment": null}, "amount_cents": {"type": "long", "index": 3, "name": "amount_cents", "comment": null}, "purchase_currency": {"type": "string", "index": 4, "name": "purchase_currency", "comment": null}, "discount_amount_in_cents": {"type": "long", "index": 5, "name": "discount_amount_in_cents", "comment": null}, "referral_discount_code_id": {"type": "long", "index": 6, "name": "referral_discount_code_id", "comment": null}, "order_id": {"type": "string", "index": 7, "name": "order_id", "comment": null}, "processor_id": {"type": "long", "index": 8, "name": "processor_id", "comment": null}, "merchant_id": {"type": "long", "index": 9, "name": "merchant_id", "comment": null}, "customer_id": {"type": "long", "index": 10, "name": "customer_id", "comment": null}, "referral_id": {"type": "long", "index": 11, "name": "referral_id", "comment": null}, "user_agent_id": {"type": "long", "index": 12, "name": "user_agent_id", "comment": null}, "redemption_code_id": {"type": "long", "index": 13, "name": "redemption_code_id", "comment": null}, "is_before_swell_acquisition": {"type": "short", "index": 14, "name": "is_before_swell_acquisition", "comment": null}, "is_applied_to_campaigns": {"type": "short", "index": 15, "name": "is_applied_to_campaigns", "comment": null}, "is_fraud_review": {"type": "short", "index": 16, "name": "is_fraud_review", "comment": null}, "is_swell_user": {"type": "short", "index": 17, "name": "is_swell_user", "comment": null}, "is_move_merchant_to_new_tier": {"type": "short", "index": 18, "name": "is_move_merchant_to_new_tier", "comment": null}, "is_refunded": {"type": "short", "index": 19, "name": "is_refunded", "comment": null}, "billing_country_code": {"type": "string", "index": 20, "name": "billing_country_code", "comment": null}, "billing_city": {"type": "string", "index": 21, "name": "billing_city", "comment": null}, "shipping_country_code": {"type": "string", "index": 22, "name": "shipping_country_code", "comment": null}, "shipping_city": {"type": "string", "index": 23, "name": "shipping_city", "comment": null}, "customer_ip_address": {"type": "string", "index": 24, "name": "customer_ip_address", "comment": null}, "browser_country_code": {"type": "string", "index": 25, "name": "browser_country_code", "comment": null}, "store_address": {"type": "string", "index": 26, "name": "store_address", "comment": null}, "store_city": {"type": "string", "index": 27, "name": "store_city", "comment": null}, "store_state": {"type": "string", "index": 28, "name": "store_state", "comment": null}, "updated_at": {"type": "timestamp", "index": 29, "name": "updated_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 30, "name": "dwh_updated_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.yoda.analytics___loyalty_stg__purchase"}, "model.yoda.analytics___loyalty_stg__purchase_redemption": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__purchase_redemption", "database": null, "comment": null, "owner": "root"}, "columns": {"purchase_redemption_id": {"type": "long", "index": 0, "name": "purchase_redemption_id", "comment": null}, "purchase_id": {"type": "long", "index": 1, "name": "purchase_id", "comment": null}, "redemption_id": {"type": "long", "index": 2, "name": "redemption_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 3, "name": "dwh_updated_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.yoda.analytics___loyalty_stg__purchase_redemption"}, "model.yoda.analytics___loyalty_stg__redemption_option": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__redemption_option", "database": null, "comment": null, "owner": "root"}, "columns": {"redemption_option_id": {"type": "long", "index": 0, "name": "redemption_option_id", "comment": null}, "merchant_id": {"type": "long", "index": 1, "name": "merchant_id", "comment": null}, "redemption_method": {"type": "string", "index": 2, "name": "redemption_method", "comment": null}, "amount": {"type": "long", "index": 3, "name": "amount", "comment": null}, "redemption_option_currency": {"type": "string", "index": 4, "name": "redemption_option_currency", "comment": null}, "amount_usd": {"type": "double", "index": 5, "name": "amount_usd", "comment": null}, "discount_type": {"type": "string", "index": 6, "name": "discount_type", "comment": null}, "discount_amount_cents": {"type": "long", "index": 7, "name": "discount_amount_cents", "comment": null}, "discount_percentage": {"type": "long", "index": 8, "name": "discount_percentage", "comment": null}, "discount_rate_cents": {"type": "long", "index": 9, "name": "discount_rate_cents", "comment": null}, "applies_to_id": {"type": "string", "index": 10, "name": "applies_to_id", "comment": null}, "applies_to_product_type": {"type": "string", "index": 11, "name": "applies_to_product_type", "comment": null}, "is_pos": {"type": "short", "index": 12, "name": "is_pos", "comment": null}, "is_deleted": {"type": "short", "index": 13, "name": "is_deleted", "comment": null}, "is_applies_once": {"type": "short", "index": 14, "name": "is_applies_once", "comment": null}, "is_display_in_popup": {"type": "short", "index": 15, "name": "is_display_in_popup", "comment": null}, "redemption_condition": {"type": "string", "index": 16, "name": "redemption_condition", "comment": null}, "created_at": {"type": "timestamp", "index": 17, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 18, "name": "updated_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 19, "name": "dwh_updated_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.yoda.analytics___loyalty_stg__redemption_option"}, "model.yoda.analytics___loyalty_stg__segment_install_event_details": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__segment_install_event_details", "database": null, "comment": null, "owner": "root"}, "columns": {"merchant_id": {"type": "long", "index": 0, "name": "merchant_id", "comment": null}, "partition_date": {"type": "date", "index": 1, "name": "partition_date", "comment": null}, "install_at": {"type": "timestamp", "index": 2, "name": "install_at", "comment": null}, "user_id": {"type": "string", "index": 3, "name": "user_id", "comment": null}, "appkey": {"type": "string", "index": 4, "name": "appkey", "comment": null}, "package": {"type": "string", "index": 5, "name": "package", "comment": null}, "platform": {"type": "string", "index": 6, "name": "platform", "comment": null}, "product": {"type": "string", "index": 7, "name": "product", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 8, "name": "dwh_updated_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.yoda.analytics___loyalty_stg__segment_install_event_details"}, "model.yoda.analytics___loyalty_stg__segment_uninstall": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__segment_uninstall", "database": null, "comment": null, "owner": "root"}, "columns": {"merchant_id": {"type": "long", "index": 0, "name": "merchant_id", "comment": null}, "partition_date": {"type": "date", "index": 1, "name": "partition_date", "comment": null}, "uninstall_at": {"type": "timestamp", "index": 2, "name": "uninstall_at", "comment": null}, "user_id": {"type": "string", "index": 3, "name": "user_id", "comment": null}, "appkey": {"type": "string", "index": 4, "name": "appkey", "comment": null}, "package": {"type": "string", "index": 5, "name": "package", "comment": null}, "platform": {"type": "string", "index": 6, "name": "platform", "comment": null}, "product": {"type": "string", "index": 7, "name": "product", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 8, "name": "dwh_updated_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.yoda.analytics___loyalty_stg__segment_uninstall"}, "model.yoda.analytics___platform__organization": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform__organization", "database": null, "comment": null, "owner": "root"}, "columns": {"organization_id": {"type": "long", "index": 0, "name": "organization_id", "comment": null}, "organization_key": {"type": "string", "index": 1, "name": "organization_key", "comment": null}, "organization_name": {"type": "string", "index": 2, "name": "organization_name", "comment": null}, "organization_created_at": {"type": "timestamp", "index": 3, "name": "organization_created_at", "comment": null}, "organization_updated_at": {"type": "timestamp", "index": 4, "name": "organization_updated_at", "comment": null}, "parent_organization_id": {"type": "long", "index": 5, "name": "parent_organization_id", "comment": null}, "parent_organization_key": {"type": "string", "index": 6, "name": "parent_organization_key", "comment": null}, "admin_email": {"type": "string", "index": 7, "name": "admin_email", "comment": null}, "registered_at": {"type": "timestamp", "index": 8, "name": "registered_at", "comment": null}, "is_test_organization": {"type": "short", "index": 9, "name": "is_test_organization", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 10, "name": "dwh_updated_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.yoda.analytics___platform__organization"}, "model.yoda.analytics___platform__store": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform__store", "database": null, "comment": null, "owner": "root"}, "columns": {"store_id": {"type": "long", "index": 0, "name": "store_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "organization_id": {"type": "long", "index": 2, "name": "organization_id", "comment": null}, "organization_key": {"type": "string", "index": 3, "name": "organization_key", "comment": null}, "store_name": {"type": "string", "index": 4, "name": "store_name", "comment": null}, "store_api_name": {"type": "string", "index": 5, "name": "store_api_name", "comment": null}, "is_test": {"type": "short", "index": 6, "name": "is_test", "comment": null}, "is_active": {"type": "short", "index": 7, "name": "is_active", "comment": null}, "is_supports_pull_orders": {"type": "short", "index": 8, "name": "is_supports_pull_orders", "comment": null}, "is_supports_past_orders": {"type": "short", "index": 9, "name": "is_supports_past_orders", "comment": null}, "store_created_at": {"type": "timestamp", "index": 10, "name": "store_created_at", "comment": null}, "store_created_date": {"type": "date", "index": 11, "name": "store_created_date", "comment": null}, "is_valid_credentials": {"type": "short", "index": 12, "name": "is_valid_credentials", "comment": null}, "platform_name": {"type": "string", "index": 13, "name": "platform_name", "comment": null}, "platform_description": {"type": "string", "index": 14, "name": "platform_description", "comment": null}, "platform_plan_name": {"type": "string", "index": 15, "name": "platform_plan_name", "comment": null}, "store_language": {"type": "string", "index": 16, "name": "store_language", "comment": null}, "industry": {"type": "string", "index": 17, "name": "industry", "comment": null}, "sms_enablement_date": {"type": "date", "index": 18, "name": "sms_enablement_date", "comment": null}, "loyalty_enablement_date": {"type": "date", "index": 19, "name": "loyalty_enablement_date", "comment": null}, "reviews_enablement_date": {"type": "date", "index": 20, "name": "reviews_enablement_date", "comment": null}, "store_category": {"type": "string", "index": 21, "name": "store_category", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 22, "name": "dwh_updated_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.yoda.analytics___platform__store"}, "model.yoda.analytics___platform__store_metrics_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform__store_metrics_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "platform_name": {"type": "string", "index": 2, "name": "platform_name", "comment": null}, "parent_organization_id": {"type": "long", "index": 3, "name": "parent_organization_id", "comment": null}, "parent_organization_key": {"type": "string", "index": 4, "name": "parent_organization_key", "comment": null}, "organization_id": {"type": "long", "index": 5, "name": "organization_id", "comment": null}, "organization_key": {"type": "string", "index": 6, "name": "organization_key", "comment": null}, "account_id": {"type": "string", "index": 7, "name": "account_id", "comment": null}, "industry": {"type": "string", "index": 8, "name": "industry", "comment": null}, "store_created_at": {"type": "timestamp", "index": 9, "name": "store_created_at", "comment": null}, "loyalty_enablement_date": {"type": "date", "index": 10, "name": "loyalty_enablement_date", "comment": null}, "sms_enablement_date": {"type": "date", "index": 11, "name": "sms_enablement_date", "comment": null}, "reviews_enablement_date": {"type": "date", "index": 12, "name": "reviews_enablement_date", "comment": null}, "orders_cnt": {"type": "long", "index": 13, "name": "orders_cnt", "comment": null}, "fulfilled_orders_cnt": {"type": "long", "index": 14, "name": "fulfilled_orders_cnt", "comment": null}, "orders_amount_in_usd_sum": {"type": "double", "index": 15, "name": "orders_amount_in_usd_sum", "comment": null}, "fulfilled_orders_amount_in_usd_sum": {"type": "double", "index": 16, "name": "fulfilled_orders_amount_in_usd_sum", "comment": null}, "orders_in_usd_aov": {"type": "double", "index": 17, "name": "orders_in_usd_aov", "comment": null}, "fulfilled_orders_in_usd_aov": {"type": "double", "index": 18, "name": "fulfilled_orders_in_usd_aov", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 19, "name": "dwh_updated_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.yoda.analytics___platform__store_metrics_daily"}, "model.yoda.analytics___platform__store_metrics_monthly": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform__store_metrics_monthly", "database": null, "comment": null, "owner": "root"}, "columns": {"store_monthly_id": {"type": "string", "index": 0, "name": "store_monthly_id", "comment": null}, "month": {"type": "date", "index": 1, "name": "month", "comment": null}, "app_key": {"type": "string", "index": 2, "name": "app_key", "comment": null}, "platform_name": {"type": "string", "index": 3, "name": "platform_name", "comment": null}, "parent_organization_id": {"type": "long", "index": 4, "name": "parent_organization_id", "comment": null}, "parent_organization_key": {"type": "string", "index": 5, "name": "parent_organization_key", "comment": null}, "organization_id": {"type": "long", "index": 6, "name": "organization_id", "comment": null}, "organization_key": {"type": "string", "index": 7, "name": "organization_key", "comment": null}, "account_id": {"type": "string", "index": 8, "name": "account_id", "comment": null}, "industry": {"type": "string", "index": 9, "name": "industry", "comment": null}, "store_created_at": {"type": "timestamp", "index": 10, "name": "store_created_at", "comment": null}, "reviews_enablement_date": {"type": "date", "index": 11, "name": "reviews_enablement_date", "comment": null}, "loyalty_enablement_date": {"type": "date", "index": 12, "name": "loyalty_enablement_date", "comment": null}, "sms_enablement_date": {"type": "date", "index": 13, "name": "sms_enablement_date", "comment": null}, "orders_cnt": {"type": "long", "index": 14, "name": "orders_cnt", "comment": null}, "fulfilled_orders_cnt": {"type": "long", "index": 15, "name": "fulfilled_orders_cnt", "comment": null}, "orders_amount_in_usd_sum": {"type": "double", "index": 16, "name": "orders_amount_in_usd_sum", "comment": null}, "fulfilled_orders_amount_in_usd_sum": {"type": "double", "index": 17, "name": "fulfilled_orders_amount_in_usd_sum", "comment": null}, "orders_aov": {"type": "double", "index": 18, "name": "orders_aov", "comment": null}, "fulfilled_orders_aov": {"type": "double", "index": 19, "name": "fulfilled_orders_aov", "comment": null}, "last_month_orders_cnt": {"type": "long", "index": 20, "name": "last_month_orders_cnt", "comment": null}, "2m_ago_orders_cnt": {"type": "long", "index": 21, "name": "2m_ago_orders_cnt", "comment": null}, "3m_ago_orders_cnt": {"type": "long", "index": 22, "name": "3m_ago_orders_cnt", "comment": null}, "12m_ago_orders_cnt": {"type": "long", "index": 23, "name": "12m_ago_orders_cnt", "comment": null}, "avg_orders_cnt_l3m": {"type": "double", "index": 24, "name": "avg_orders_cnt_l3m", "comment": null}, "avg_fulfilled_orders_l3m": {"type": "double", "index": 25, "name": "avg_fulfilled_orders_l3m", "comment": null}, "avg_orders_amount_in_usd_l3m": {"type": "double", "index": 26, "name": "avg_orders_amount_in_usd_l3m", "comment": null}, "avg_orders_cnt_l12m": {"type": "double", "index": 27, "name": "avg_orders_cnt_l12m", "comment": null}, "quarter_orders_cnt": {"type": "long", "index": 28, "name": "quarter_orders_cnt", "comment": null}, "last_quarter_orders_cnt": {"type": "long", "index": 29, "name": "last_quarter_orders_cnt", "comment": null}, "last_2_quarter_orders_cnt": {"type": "long", "index": 30, "name": "last_2_quarter_orders_cnt", "comment": null}, "last_12m_orders_cnt": {"type": "long", "index": 31, "name": "last_12m_orders_cnt", "comment": null}, "last_13m_to_24m_orders_cnt": {"type": "long", "index": 32, "name": "last_13m_to_24m_orders_cnt", "comment": null}, "yotpo_tenure_year_count": {"type": "long", "index": 33, "name": "yotpo_tenure_year_count", "comment": null}, "orders_bucket": {"type": "string", "index": 34, "name": "orders_bucket", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 35, "name": "dwh_updated_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.yoda.analytics___platform__store_metrics_monthly"}, "model.yoda.analytics___platform__store_order_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform__store_order_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"app_key": {"type": "string", "index": 0, "name": "app_key", "comment": null}, "order_date": {"type": "date", "index": 1, "name": "order_date", "comment": null}, "order_month": {"type": "date", "index": 2, "name": "order_month", "comment": null}, "orders_cnt": {"type": "long", "index": 3, "name": "orders_cnt", "comment": null}, "fulfilled_orders_cnt": {"type": "long", "index": 4, "name": "fulfilled_orders_cnt", "comment": null}, "orders_amount_in_usd_sum": {"type": "double", "index": 5, "name": "orders_amount_in_usd_sum", "comment": null}, "fulfilled_orders_amount_in_usd_sum": {"type": "double", "index": 6, "name": "fulfilled_orders_amount_in_usd_sum", "comment": null}, "orders_in_usd_aov": {"type": "double", "index": 7, "name": "orders_in_usd_aov", "comment": null}, "fulfilled_orders_in_usd_aov": {"type": "double", "index": 8, "name": "fulfilled_orders_in_usd_aov", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 9, "name": "dwh_updated_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.yoda.analytics___platform__store_order_daily"}, "model.yoda.analytics___platform__store_pixel_metrics_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform__store_pixel_metrics_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"pixel_metrics_id": {"type": "string", "index": 0, "name": "pixel_metrics_id", "comment": null}, "product_name": {"type": "string", "index": 1, "name": "product_name", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 3, "name": "app_key", "comment": null}, "widget_version_type": {"type": "integer", "index": 4, "name": "widget_version_type", "comment": null}, "action": {"type": "string", "index": 5, "name": "action", "comment": null}, "widget_element": {"type": "string", "index": 6, "name": "widget_element", "comment": null}, "medium": {"type": "string", "index": 7, "name": "medium", "comment": null}, "source": {"type": "string", "index": 8, "name": "source", "comment": null}, "is_mobile": {"type": "integer", "index": 9, "name": "is_mobile", "comment": null}, "metric": {"type": "string", "index": 10, "name": "metric", "comment": null}, "value": {"type": "double", "index": 11, "name": "value", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 12, "name": "dwh_updated_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.yoda.analytics___platform__store_pixel_metrics_daily"}, "model.yoda.analytics___platform_stg__account": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__account", "database": null, "comment": null, "owner": "root"}, "columns": {"account_id": {"type": "long", "index": 0, "name": "account_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "organization_id": {"type": "long", "index": 2, "name": "organization_id", "comment": null}, "account_domain": {"type": "string", "index": 3, "name": "account_domain", "comment": null}, "is_test": {"type": "short", "index": 4, "name": "is_test", "comment": null}, "is_active": {"type": "short", "index": 5, "name": "is_active", "comment": null}, "account_name": {"type": "string", "index": 6, "name": "account_name", "comment": null}, "store_language": {"type": "string", "index": 7, "name": "store_language", "comment": null}, "category_id": {"type": "long", "index": 8, "name": "category_id", "comment": null}, "account_created_at": {"type": "timestamp", "index": 9, "name": "account_created_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 10, "name": "dwh_updated_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.yoda.analytics___platform_stg__account"}, "model.yoda.analytics___platform_stg__account_platform": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__account_platform", "database": null, "comment": null, "owner": "root"}, "columns": {"account_platform_id": {"type": "long", "index": 0, "name": "account_platform_id", "comment": null}, "account_id": {"type": "long", "index": 1, "name": "account_id", "comment": null}, "platform_type_id": {"type": "long", "index": 2, "name": "platform_type_id", "comment": null}, "platform_plan_name": {"type": "string", "index": 3, "name": "platform_plan_name", "comment": null}, "store_api_name": {"type": "string", "index": 4, "name": "store_api_name", "comment": null}, "external_shop_domain": {"type": "string", "index": 5, "name": "external_shop_domain", "comment": null}, "external_account_id": {"type": "string", "index": 6, "name": "external_account_id", "comment": null}, "is_valid_credentials": {"type": "short", "index": 7, "name": "is_valid_credentials", "comment": null}, "account_platform_created_at": {"type": "timestamp", "index": 8, "name": "account_platform_created_at", "comment": null}, "account_platform_updated_at": {"type": "timestamp", "index": 9, "name": "account_platform_updated_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.yoda.analytics___platform_stg__account_platform"}, "model.yoda.analytics___platform_stg__category": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__category", "database": null, "comment": null, "owner": "root"}, "columns": {"category_id": {"type": "long", "index": 0, "name": "category_id", "comment": null}, "store_category": {"type": "string", "index": 1, "name": "store_category", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 2, "name": "dwh_updated_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.yoda.analytics___platform_stg__category"}, "model.yoda.analytics___platform_stg__currency_exchange_rate": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__currency_exchange_rate", "database": null, "comment": null, "owner": "root"}, "columns": {"currency_exchange_date": {"type": "date", "index": 0, "name": "currency_exchange_date", "comment": null}, "from_currency_symbol": {"type": "string", "index": 1, "name": "from_currency_symbol", "comment": null}, "to_currency_symbol": {"type": "string", "index": 2, "name": "to_currency_symbol", "comment": null}, "conversion_rate": {"type": "double", "index": 3, "name": "conversion_rate", "comment": null}}, "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.yoda.analytics___platform_stg__currency_exchange_rate"}, "model.yoda.analytics___platform_stg__feature": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__feature", "database": null, "comment": null, "owner": "root"}, "columns": {"feature_id": {"type": "long", "index": 0, "name": "feature_id", "comment": null}, "feature_name": {"type": "string", "index": 1, "name": "feature_name", "comment": null}, "description": {"type": "string", "index": 2, "name": "description", "comment": null}, "owner_type": {"type": "string", "index": 3, "name": "owner_type", "comment": null}, "default_user_enabled": {"type": "long", "index": 4, "name": "default_user_enabled", "comment": null}, "is_default_user_enabled": {"type": "short", "index": 5, "name": "is_default_user_enabled", "comment": null}, "new": {"type": "long", "index": 6, "name": "new", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "feature_key": {"type": "string", "index": 9, "name": "feature_key", "comment": null}}, "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.yoda.analytics___platform_stg__feature"}, "model.yoda.analytics___platform_stg__fulfillment": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__fulfillment", "database": null, "comment": null, "owner": "root"}, "columns": {"fulfillment_id": {"type": "long", "index": 0, "name": "fulfillment_id", "comment": null}, "external_id": {"type": "string", "index": 1, "name": "external_id", "comment": null}, "order_id": {"type": "long", "index": 2, "name": "order_id", "comment": null}, "fulfillment_at": {"type": "timestamp", "index": 3, "name": "fulfillment_at", "comment": null}, "fulfillment_date": {"type": "date", "index": 4, "name": "fulfillment_date", "comment": null}, "fulfillment_status_type_id": {"type": "long", "index": 5, "name": "fulfillment_status_type_id", "comment": null}, "shipment_status_type_id": {"type": "long", "index": 6, "name": "shipment_status_type_id", "comment": null}, "tracking_company": {"type": "string", "index": 7, "name": "tracking_company", "comment": null}, "tracking_url": {"type": "string", "index": 8, "name": "tracking_url", "comment": null}, "tracking_number": {"type": "string", "index": 9, "name": "tracking_number", "comment": null}, "created_at": {"type": "timestamp", "index": 10, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_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.yoda.analytics___platform_stg__fulfillment"}, "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__loyalty_pixel_widget_v_three", "database": null, "comment": null, "owner": "root"}, "columns": {"event_id": {"type": "string", "index": 0, "name": "event_id", "comment": null}, "event_row_rank": {"type": "integer", "index": 1, "name": "event_row_rank", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "guid": {"type": "string", "index": 3, "name": "guid", "comment": null}, "category": {"type": "string", "index": 4, "name": "category", "comment": null}, "action": {"type": "string", "index": 5, "name": "action", "comment": null}, "property": {"type": "string", "index": 6, "name": "property", "comment": null}, "fingerprint": {"type": "string", "index": 7, "name": "fingerprint", "comment": null}, "domain_user_id": {"type": "string", "index": 8, "name": "domain_user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three"}, "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__loyalty_pixel_widget_v_two", "database": null, "comment": null, "owner": "root"}, "columns": {"event_id": {"type": "string", "index": 0, "name": "event_id", "comment": null}, "event_row_rank": {"type": "integer", "index": 1, "name": "event_row_rank", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "guid": {"type": "string", "index": 3, "name": "guid", "comment": null}, "category": {"type": "string", "index": 4, "name": "category", "comment": null}, "action": {"type": "string", "index": 5, "name": "action", "comment": null}, "fingerprint": {"type": "string", "index": 6, "name": "fingerprint", "comment": null}, "domain_user_id": {"type": "string", "index": 7, "name": "domain_user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two"}, "model.yoda.analytics___platform_stg__organization": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__organization", "database": null, "comment": null, "owner": "root"}, "columns": {"organization_id": {"type": "long", "index": 0, "name": "organization_id", "comment": null}, "organization_key": {"type": "string", "index": 1, "name": "organization_key", "comment": null}, "organization_name": {"type": "string", "index": 2, "name": "organization_name", "comment": null}, "organization_created_at": {"type": "timestamp", "index": 3, "name": "organization_created_at", "comment": null}, "organization_updated_at": {"type": "timestamp", "index": 4, "name": "organization_updated_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.yoda.analytics___platform_stg__organization"}, "model.yoda.analytics___platform_stg__owner_feature": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__owner_feature", "database": null, "comment": null, "owner": "root"}, "columns": {"owner_feature_id": {"type": "long", "index": 0, "name": "owner_feature_id", "comment": null}, "owner_id": {"type": "long", "index": 1, "name": "owner_id", "comment": null}, "feature_id": {"type": "long", "index": 2, "name": "feature_id", "comment": null}, "owner_type": {"type": "string", "index": 3, "name": "owner_type", "comment": null}, "disabled": {"type": "long", "index": 4, "name": "disabled", "comment": null}, "user_enabled": {"type": "long", "index": 5, "name": "user_enabled", "comment": null}, "floating": {"type": "long", "index": 6, "name": "floating", "comment": null}, "is_disabled": {"type": "short", "index": 7, "name": "is_disabled", "comment": null}, "is_user_enabled": {"type": "short", "index": 8, "name": "is_user_enabled", "comment": null}, "is_floating": {"type": "short", "index": 9, "name": "is_floating", "comment": null}, "is_organization_owner": {"type": "short", "index": 10, "name": "is_organization_owner", "comment": null}, "is_user_owner": {"type": "short", "index": 11, "name": "is_user_owner", "comment": null}, "is_store_owner": {"type": "short", "index": 12, "name": "is_store_owner", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 14, "name": "updated_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.yoda.analytics___platform_stg__owner_feature"}, "model.yoda.analytics___platform_stg__phone_code_country_mapping": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__phone_code_country_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"phone_code": {"type": "string", "index": 0, "name": "phone_code", "comment": null}, "country_name": {"type": "string", "index": 1, "name": "country_name", "comment": null}, "area_code": {"type": "string", "index": 2, "name": "area_code", "comment": null}, "iso_country_code": {"type": "string", "index": 3, "name": "iso_country_code", "comment": null}, "region_name": {"type": "string", "index": 4, "name": "region_name", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 5, "name": "dwh_updated_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.yoda.analytics___platform_stg__phone_code_country_mapping"}, "model.yoda.analytics___platform_stg__pixel_action_mapping": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__pixel_action_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"product": {"type": "string", "index": 0, "name": "product", "comment": null}, "action": {"type": "string", "index": 1, "name": "action", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 2, "name": "dwh_updated_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.yoda.analytics___platform_stg__pixel_action_mapping"}, "model.yoda.analytics___platform_stg__pixel_category_mapping": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__pixel_category_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"product": {"type": "string", "index": 0, "name": "product", "comment": null}, "widget_version_type": {"type": "short", "index": 1, "name": "widget_version_type", "comment": null}, "category": {"type": "string", "index": 2, "name": "category", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 3, "name": "dwh_updated_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.yoda.analytics___platform_stg__pixel_category_mapping"}, "model.yoda.analytics___platform_stg__pixel_duration_mapping": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__pixel_duration_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"from_seconds": {"type": "decimal(4,2)", "index": 0, "name": "from_seconds", "comment": null}, "to_seconds": {"type": "decimal(4,2)", "index": 1, "name": "to_seconds", "comment": null}, "metric": {"type": "string", "index": 2, "name": "metric", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 3, "name": "dwh_updated_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.yoda.analytics___platform_stg__pixel_duration_mapping"}, "model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__pixel_os_family_mobile_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"os_family_name": {"type": "string", "index": 0, "name": "os_family_name", "comment": null}, "is_mobile": {"type": "short", "index": 1, "name": "is_mobile", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 2, "name": "dwh_updated_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.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping"}, "model.yoda.analytics___platform_stg__platform_type": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__platform_type", "database": null, "comment": null, "owner": "root"}, "columns": {"platform_id": {"type": "long", "index": 0, "name": "platform_id", "comment": null}, "platform_name": {"type": "string", "index": 1, "name": "platform_name", "comment": null}, "platform_description": {"type": "string", "index": 2, "name": "platform_description", "comment": null}, "is_supports_pull_orders": {"type": "short", "index": 3, "name": "is_supports_pull_orders", "comment": null}, "is_supports_past_orders": {"type": "short", "index": 4, "name": "is_supports_past_orders", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 5, "name": "dwh_updated_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.yoda.analytics___platform_stg__platform_type"}, "model.yoda.analytics___platform_stg__product": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__product", "database": null, "comment": null, "owner": "root"}, "columns": {"product_id": {"type": "long", "index": 0, "name": "product_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "product_name": {"type": "string", "index": 2, "name": "product_name", "comment": null}, "group_id": {"type": "long", "index": 3, "name": "group_id", "comment": null}, "status": {"type": "string", "index": 4, "name": "status", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 6, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_at", "comment": null}, "updated_date": {"type": "date", "index": 8, "name": "updated_date", "comment": null}}, "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.yoda.analytics___platform_stg__product"}, "model.yoda.analytics___platform_stg__similar_store": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__similar_store", "database": null, "comment": null, "owner": "root"}, "columns": {"app_key": {"type": "string", "index": 0, "name": "app_key", "comment": null}, "domain": {"type": "string", "index": 1, "name": "domain", "comment": null}, "industry": {"type": "string", "index": 2, "name": "industry", "comment": null}}, "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.yoda.analytics___platform_stg__similar_store"}, "model.yoda.analytics___platform_stg__similar_stores": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__similar_stores", "database": null, "comment": null, "owner": "root"}, "columns": {"store_id": {"type": "string", "index": 0, "name": "store_id", "comment": null}, "cluster_id": {"type": "integer", "index": 1, "name": "cluster_id", "comment": null}, "domain": {"type": "string", "index": 2, "name": "domain", "comment": null}, "manual_category": {"type": "string", "index": 3, "name": "manual_category", "comment": null}, "predicted_category": {"type": "string", "index": 4, "name": "predicted_category", "comment": null}, "category": {"type": "string", "index": 5, "name": "category", "comment": null}, "similar_stores": {"type": "array", "index": 6, "name": "similar_stores", "comment": null}, "store_embedding": {"type": "array", "index": 7, "name": "store_embedding", "comment": null}}, "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.yoda.analytics___platform_stg__similar_stores"}, "model.yoda.analytics___platform_stg__store_order": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__store_order", "database": null, "comment": null, "owner": "root"}, "columns": {"order_id": {"type": "long", "index": 0, "name": "order_id", "comment": null}, "external_order_id": {"type": "string", "index": 1, "name": "external_order_id", "comment": null}, "order_at": {"type": "timestamp", "index": 2, "name": "order_at", "comment": null}, "order_date": {"type": "date", "index": 3, "name": "order_date", "comment": null}, "order_update_at": {"type": "timestamp", "index": 4, "name": "order_update_at", "comment": null}, "order_update_date": {"type": "date", "index": 5, "name": "order_update_date", "comment": null}, "email": {"type": "string", "index": 6, "name": "email", "comment": null}, "platform": {"type": "string", "index": 7, "name": "platform", "comment": null}, "external_order_display_name": {"type": "string", "index": 8, "name": "external_order_display_name", "comment": null}, "billing_address_id": {"type": "long", "index": 9, "name": "billing_address_id", "comment": null}, "shipping_address_id": {"type": "long", "index": 10, "name": "shipping_address_id", "comment": null}, "external_customer_id": {"type": "string", "index": 11, "name": "external_customer_id", "comment": null}, "first_name": {"type": "string", "index": 12, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 13, "name": "last_name", "comment": null}, "full_name": {"type": "string", "index": 14, "name": "full_name", "comment": null}, "phone_number": {"type": "string", "index": 15, "name": "phone_number", "comment": null}, "landing_site_url": {"type": "string", "index": 16, "name": "landing_site_url", "comment": null}, "checkout_token": {"type": "string", "index": 17, "name": "checkout_token", "comment": null}, "payment_method": {"type": "string", "index": 18, "name": "payment_method", "comment": null}, "payment_status_id": {"type": "long", "index": 19, "name": "payment_status_id", "comment": null}, "custom_properties": {"type": "string", "index": 20, "name": "custom_properties", "comment": null}, "source": {"type": "string", "index": 21, "name": "source", "comment": null}, "external_id": {"type": "string", "index": 22, "name": "external_id", "comment": null}, "order_amount": {"type": "double", "index": 23, "name": "order_amount", "comment": null}, "order_amount_currency": {"type": "string", "index": 24, "name": "order_amount_currency", "comment": null}, "order_account_amount": {"type": "double", "index": 25, "name": "order_account_amount", "comment": null}, "order_account_amount_currency": {"type": "string", "index": 26, "name": "order_account_amount_currency", "comment": null}, "total_price": {"type": "double", "index": 27, "name": "total_price", "comment": null}, "app_key": {"type": "string", "index": 28, "name": "app_key", "comment": null}, "is_buyer_accepts_sms_marketing": {"type": "short", "index": 29, "name": "is_buyer_accepts_sms_marketing", "comment": null}, "is_buyer_accepts_email_marketing": {"type": "short", "index": 30, "name": "is_buyer_accepts_email_marketing", "comment": null}, "is_buyer_accepts_marketing": {"type": "short", "index": 31, "name": "is_buyer_accepts_marketing", "comment": null}, "created_at": {"type": "timestamp", "index": 32, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 33, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 34, "name": "updated_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.yoda.analytics___platform_stg__store_order"}, "model.yoda.analytics___platform_stg__store_user_mapping": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__store_user_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"store_user_mapping_id": {"type": "long", "index": 0, "name": "store_user_mapping_id", "comment": null}, "user_id": {"type": "long", "index": 1, "name": "user_id", "comment": null}, "store_id": {"type": "long", "index": 2, "name": "store_id", "comment": null}, "moderator_role_id": {"type": "long", "index": 3, "name": "moderator_role_id", "comment": null}, "is_store_admin": {"type": "short", "index": 4, "name": "is_store_admin", "comment": null}, "created_date": {"type": "date", "index": 5, "name": "created_date", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_date": {"type": "date", "index": 7, "name": "updated_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.analytics___platform_stg__store_user_mapping"}, "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__subscriptions_pixel_widget_v_three", "database": null, "comment": null, "owner": "root"}, "columns": {"event_id": {"type": "string", "index": 0, "name": "event_id", "comment": null}, "event_row_rank": {"type": "integer", "index": 1, "name": "event_row_rank", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 3, "name": "app_key", "comment": null}, "category": {"type": "string", "index": 4, "name": "category", "comment": null}, "action": {"type": "string", "index": 5, "name": "action", "comment": null}, "label": {"type": "string", "index": 6, "name": "label", "comment": null}, "fingerprint": {"type": "string", "index": 7, "name": "fingerprint", "comment": null}, "domain_user_id": {"type": "string", "index": 8, "name": "domain_user_id", "comment": null}, "page_url_path": {"type": "string", "index": 9, "name": "page_url_path", "comment": null}, "calculated_user_and_url_id": {"type": "string", "index": 10, "name": "calculated_user_and_url_id", "comment": null}, "medium": {"type": "string", "index": 11, "name": "medium", "comment": null}, "source": {"type": "string", "index": 12, "name": "source", "comment": null}, "os_family": {"type": "string", "index": 13, "name": "os_family", "comment": null}, "calculated_source": {"type": "string", "index": 14, "name": "calculated_source", "comment": null}, "context_mobile": {"type": "string", "index": 15, "name": "context_mobile", "comment": null}}, "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.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"}, "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__ugc_pixel_widget_v_three", "database": null, "comment": null, "owner": "root"}, "columns": {"event_id": {"type": "string", "index": 0, "name": "event_id", "comment": null}, "event_row_rank": {"type": "integer", "index": 1, "name": "event_row_rank", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 3, "name": "app_key", "comment": null}, "category": {"type": "string", "index": 4, "name": "category", "comment": null}, "action": {"type": "string", "index": 5, "name": "action", "comment": null}, "label": {"type": "string", "index": 6, "name": "label", "comment": null}, "domain_user_id": {"type": "string", "index": 7, "name": "domain_user_id", "comment": null}, "context_custom_questions": {"type": "integer", "index": 8, "name": "context_custom_questions", "comment": null}, "context_smart_topics": {"type": "integer", "index": 9, "name": "context_smart_topics", "comment": null}, "context_widget_placement": {"type": "string", "index": 10, "name": "context_widget_placement", "comment": null}, "context_duration_time_from_widget_mark_in_sec": {"type": "double", "index": 11, "name": "context_duration_time_from_widget_mark_in_sec", "comment": null}}, "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.yoda.analytics___platform_stg__ugc_pixel_widget_v_three"}, "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__ugc_pixel_widget_v_two", "database": null, "comment": null, "owner": "root"}, "columns": {"event_id": {"type": "string", "index": 0, "name": "event_id", "comment": null}, "event_row_rank": {"type": "integer", "index": 1, "name": "event_row_rank", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 3, "name": "app_key", "comment": null}, "category": {"type": "string", "index": 4, "name": "category", "comment": null}, "action": {"type": "string", "index": 5, "name": "action", "comment": null}, "label": {"type": "string", "index": 6, "name": "label", "comment": null}, "domain_user_id": {"type": "string", "index": 7, "name": "domain_user_id", "comment": null}, "context_desktop_topics_count": {"type": "integer", "index": 8, "name": "context_desktop_topics_count", "comment": null}, "context_cta": {"type": "string", "index": 9, "name": "context_cta", "comment": null}, "context_custom_fields_count": {"type": "integer", "index": 10, "name": "context_custom_fields_count", "comment": null}, "context_free_text_included": {"type": "string", "index": 11, "name": "context_free_text_included", "comment": null}, "context_filter_field_type": {"type": "string", "index": 12, "name": "context_filter_field_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.yoda.analytics___platform_stg__ugc_pixel_widget_v_two"}, "model.yoda.analytics___platform_stg__user": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___platform_stg__user", "database": null, "comment": null, "owner": "root"}, "columns": {"user_id": {"type": "long", "index": 0, "name": "user_id", "comment": null}, "email": {"type": "string", "index": 1, "name": "email", "comment": null}}, "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.yoda.analytics___platform_stg__user"}, "model.yoda.analytics___salesforce__account": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce__account", "database": null, "comment": null, "owner": "root"}, "columns": {"account_id": {"type": "string", "index": 0, "name": "account_id", "comment": null}, "organization_id": {"type": "long", "index": 1, "name": "organization_id", "comment": null}, "organization_key": {"type": "string", "index": 2, "name": "organization_key", "comment": null}, "owner_id": {"type": "string", "index": 3, "name": "owner_id", "comment": null}, "app_key": {"type": "string", "index": 4, "name": "app_key", "comment": null}, "type": {"type": "string", "index": 5, "name": "type", "comment": null}, "account_name": {"type": "string", "index": 6, "name": "account_name", "comment": null}, "description": {"type": "string", "index": 7, "name": "description", "comment": null}, "main_csm_sf_user_id": {"type": "string", "index": 8, "name": "main_csm_sf_user_id", "comment": null}, "csm_sf_user_id": {"type": "string", "index": 9, "name": "csm_sf_user_id", "comment": null}, "latest_opportunity_id": {"type": "string", "index": 10, "name": "latest_opportunity_id", "comment": null}, "referrer_type": {"type": "string", "index": 11, "name": "referrer_type", "comment": null}, "primary_sales_channel": {"type": "string", "index": 12, "name": "primary_sales_channel", "comment": null}, "sales_territory": {"type": "string", "index": 13, "name": "sales_territory", "comment": null}, "country_region": {"type": "string", "index": 14, "name": "country_region", "comment": null}, "sales_region": {"type": "string", "index": 15, "name": "sales_region", "comment": null}, "cs_estimated_aov": {"type": "integer", "index": 16, "name": "cs_estimated_aov", "comment": null}, "cs_estimated_annual_sales": {"type": "integer", "index": 17, "name": "cs_estimated_annual_sales", "comment": null}, "extensions": {"type": "string", "index": 18, "name": "extensions", "comment": null}, "estimated_monthly_orders_volume": {"type": "string", "index": 19, "name": "estimated_monthly_orders_volume", "comment": null}, "ugc_acv": {"type": "decimal(11,2)", "index": 20, "name": "ugc_acv", "comment": null}, "loyalty_acv": {"type": "decimal(10,2)", "index": 21, "name": "loyalty_acv", "comment": null}, "loyalty_contract_renewal_date": {"type": "date", "index": 22, "name": "loyalty_contract_renewal_date", "comment": null}, "closest_contract_renewal_date": {"type": "date", "index": 23, "name": "closest_contract_renewal_date", "comment": null}, "cs_segment": {"type": "string", "index": 24, "name": "cs_segment", "comment": null}, "influenced_by_agency_id": {"type": "string", "index": 25, "name": "influenced_by_agency_id", "comment": null}, "agency_services": {"type": "string", "index": 26, "name": "agency_services", "comment": null}, "sms_csm_sf_user_id": {"type": "string", "index": 27, "name": "sms_csm_sf_user_id", "comment": null}, "cs_tags": {"type": "string", "index": 28, "name": "cs_tags", "comment": null}, "iap_tier": {"type": "string", "index": 29, "name": "iap_tier", "comment": null}, "sms_strategist": {"type": "string", "index": 30, "name": "sms_strategist", "comment": null}, "country": {"type": "string", "index": 31, "name": "country", "comment": null}, "lead_id": {"type": "string", "index": 32, "name": "lead_id", "comment": null}, "annual_revenue": {"type": "string", "index": 33, "name": "annual_revenue", "comment": null}, "status": {"type": "string", "index": 34, "name": "status", "comment": null}, "domain": {"type": "string", "index": 35, "name": "domain", "comment": null}, "email": {"type": "string", "index": 36, "name": "email", "comment": null}, "plan_name": {"type": "string", "index": 37, "name": "plan_name", "comment": null}, "country_code": {"type": "string", "index": 38, "name": "country_code", "comment": null}, "total_acv": {"type": "decimal(10,2)", "index": 39, "name": "total_acv", "comment": null}, "merchant_id": {"type": "string", "index": 40, "name": "merchant_id", "comment": null}, "platform": {"type": "string", "index": 41, "name": "platform", "comment": null}, "packages": {"type": "string", "index": 42, "name": "packages", "comment": null}, "referred_by_agency_id": {"type": "string", "index": 43, "name": "referred_by_agency_id", "comment": null}, "parent_account_id": {"type": "string", "index": 44, "name": "parent_account_id", "comment": null}, "db_package_category": {"type": "string", "index": 45, "name": "db_package_category", "comment": null}, "package_category": {"type": "string", "index": 46, "name": "package_category", "comment": null}, "sms_annualized_usage_rev": {"type": "double", "index": 47, "name": "sms_annualized_usage_rev", "comment": null}, "sms_acv": {"type": "decimal(10,2)", "index": 48, "name": "sms_acv", "comment": null}, "industry": {"type": "string", "index": 49, "name": "industry", "comment": null}, "industry_name": {"type": "string", "index": 50, "name": "industry_name", "comment": null}, "sub_industry_name": {"type": "string", "index": 51, "name": "sub_industry_name", "comment": null}, "yotpo_industry_confidence_level": {"type": "string", "index": 52, "name": "yotpo_industry_confidence_level", "comment": null}, "order_limit_roll_up": {"type": "integer", "index": 53, "name": "order_limit_roll_up", "comment": null}, "reviews_first_opportunity": {"type": "string", "index": 54, "name": "reviews_first_opportunity", "comment": null}, "vms_first_opportunity": {"type": "string", "index": 55, "name": "vms_first_opportunity", "comment": null}, "loyalty_first_opportunity": {"type": "string", "index": 56, "name": "loyalty_first_opportunity", "comment": null}, "sms_first_opportunity": {"type": "string", "index": 57, "name": "sms_first_opportunity", "comment": null}, "sales_segment": {"type": "string", "index": 58, "name": "sales_segment", "comment": null}, "time_zone": {"type": "string", "index": 59, "name": "time_zone", "comment": null}, "sms_usage_cancellation_date": {"type": "date", "index": 60, "name": "sms_usage_cancellation_date", "comment": null}, "sms_total_arr": {"type": "double", "index": 61, "name": "sms_total_arr", "comment": null}, "agency_employee_bucket": {"type": "string", "index": 62, "name": "agency_employee_bucket", "comment": null}, "products_in_tam_list": {"type": "string", "index": 63, "name": "products_in_tam_list", "comment": null}, "agency_clients_level_account": {"type": "string", "index": 64, "name": "agency_clients_level_account", "comment": null}, "current_contract_cnt": {"type": "integer", "index": 65, "name": "current_contract_cnt", "comment": null}, "has_a_community_member": {"type": "integer", "index": 66, "name": "has_a_community_member", "comment": null}, "account_owner_full_name": {"type": "string", "index": 67, "name": "account_owner_full_name", "comment": null}, "account_owner_role": {"type": "string", "index": 68, "name": "account_owner_role", "comment": null}, "is_original_dem_gen_partners": {"type": "short", "index": 69, "name": "is_original_dem_gen_partners", "comment": null}, "is_original_dem_gen_marketing": {"type": "short", "index": 70, "name": "is_original_dem_gen_marketing", "comment": null}, "is_original_dem_gen_osdr": {"type": "short", "index": 71, "name": "is_original_dem_gen_osdr", "comment": null}, "is_original_dem_gen_other": {"type": "short", "index": 72, "name": "is_original_dem_gen_other", "comment": null}, "is_account_data_excluded": {"type": "short", "index": 73, "name": "is_account_data_excluded", "comment": null}, "is_annual_account": {"type": "short", "index": 74, "name": "is_annual_account", "comment": null}, "is_partner_account": {"type": "short", "index": 75, "name": "is_partner_account", "comment": null}, "is_test_account": {"type": "short", "index": 76, "name": "is_test_account", "comment": null}, "is_deleted_account": {"type": "short", "index": 77, "name": "is_deleted_account", "comment": null}, "registered_at": {"type": "string", "index": 78, "name": "registered_at", "comment": null}, "created_date": {"type": "date", "index": 79, "name": "created_date", "comment": null}, "last_modified_date": {"type": "date", "index": 80, "name": "last_modified_date", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 81, "name": "dwh_updated_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.yoda.analytics___salesforce__account"}, "model.yoda.analytics___salesforce__opportunity": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce__opportunity", "database": null, "comment": null, "owner": "root"}, "columns": {"opportunity_id": {"type": "string", "index": 0, "name": "opportunity_id", "comment": null}, "account_id": {"type": "string", "index": 1, "name": "account_id", "comment": null}, "opportunity_name": {"type": "string", "index": 2, "name": "opportunity_name", "comment": null}, "start_date": {"type": "date", "index": 3, "name": "start_date", "comment": null}, "close_date": {"type": "date", "index": 4, "name": "close_date", "comment": null}, "entered_demo_date": {"type": "date", "index": 5, "name": "entered_demo_date", "comment": null}, "actual_end_date": {"type": "date", "index": 6, "name": "actual_end_date", "comment": null}, "cs_comp_paid_date": {"type": "date", "index": 7, "name": "cs_comp_paid_date", "comment": null}, "contract_renewal_date": {"type": "date", "index": 8, "name": "contract_renewal_date", "comment": null}, "last_stage_change_date": {"type": "date", "index": 9, "name": "last_stage_change_date", "comment": null}, "type": {"type": "string", "index": 10, "name": "type", "comment": null}, "stage": {"type": "string", "index": 11, "name": "stage", "comment": null}, "deal_type": {"type": "string", "index": 12, "name": "deal_type", "comment": null}, "deal_type_as_per_deal_summary": {"type": "string", "index": 13, "name": "deal_type_as_per_deal_summary", "comment": null}, "estimated_monthly_order_range": {"type": "string", "index": 14, "name": "estimated_monthly_order_range", "comment": null}, "description": {"type": "string", "index": 15, "name": "description", "comment": null}, "owner_id": {"type": "string", "index": 16, "name": "owner_id", "comment": null}, "loyalty_csm_upon_closed": {"type": "string", "index": 17, "name": "loyalty_csm_upon_closed", "comment": null}, "loyalty_csm_team_upon_closed": {"type": "string", "index": 18, "name": "loyalty_csm_team_upon_closed", "comment": null}, "ugc_csm_upon_closed": {"type": "string", "index": 19, "name": "ugc_csm_upon_closed", "comment": null}, "ugc_csm_team_upon_closed": {"type": "string", "index": 20, "name": "ugc_csm_team_upon_closed", "comment": null}, "primary_csm_upon_closed": {"type": "string", "index": 21, "name": "primary_csm_upon_closed", "comment": null}, "primary_csm_team_upon_closed": {"type": "string", "index": 22, "name": "primary_csm_team_upon_closed", "comment": null}, "sms_csm_upon_closed": {"type": "string", "index": 23, "name": "sms_csm_upon_closed", "comment": null}, "sms_csm_team_upon_closed": {"type": "string", "index": 24, "name": "sms_csm_team_upon_closed", "comment": null}, "subscriptions_seller_id": {"type": "string", "index": 25, "name": "subscriptions_seller_id", "comment": null}, "original_owner_role": {"type": "string", "index": 26, "name": "original_owner_role", "comment": null}, "secondary_seller_id": {"type": "string", "index": 27, "name": "secondary_seller_id", "comment": null}, "created_by_sf_user_id": {"type": "string", "index": 28, "name": "created_by_sf_user_id", "comment": null}, "sdr_sf_user_id": {"type": "string", "index": 29, "name": "sdr_sf_user_id", "comment": null}, "original_currency": {"type": "string", "index": 30, "name": "original_currency", "comment": null}, "sms_commitment_term": {"type": "string", "index": 31, "name": "sms_commitment_term", "comment": null}, "sms_first_commitment_value": {"type": "double", "index": 32, "name": "sms_first_commitment_value", "comment": null}, "sms_second_commitment_value": {"type": "double", "index": 33, "name": "sms_second_commitment_value", "comment": null}, "record_type_name": {"type": "string", "index": 34, "name": "record_type_name", "comment": null}, "record_type_id": {"type": "string", "index": 35, "name": "record_type_id", "comment": null}, "sales_region": {"type": "string", "index": 36, "name": "sales_region", "comment": null}, "order_sales_segment": {"type": "string", "index": 37, "name": "order_sales_segment", "comment": null}, "num_of_end_of_contract_extension_month": {"type": "integer", "index": 38, "name": "num_of_end_of_contract_extension_month", "comment": null}, "num_of_csm_extension_month": {"type": "integer", "index": 39, "name": "num_of_csm_extension_month", "comment": null}, "discount_rate": {"type": "double", "index": 40, "name": "discount_rate", "comment": null}, "delta_booking": {"type": "double", "index": 41, "name": "delta_booking", "comment": null}, "sms_delta_earr": {"type": "double", "index": 42, "name": "sms_delta_earr", "comment": null}, "subscriptions_delta_earr": {"type": "double", "index": 43, "name": "subscriptions_delta_earr", "comment": null}, "delta_acv_in_usd": {"type": "double", "index": 44, "name": "delta_acv_in_usd", "comment": null}, "conversion_rate": {"type": "decimal(10,2)", "index": 45, "name": "conversion_rate", "comment": null}, "estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 46, "name": "estimated_arr_in_usd", "comment": null}, "sms_estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 47, "name": "sms_estimated_arr_in_usd", "comment": null}, "email_estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 48, "name": "email_estimated_arr_in_usd", "comment": null}, "subscriptions_estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 49, "name": "subscriptions_estimated_arr_in_usd", "comment": null}, "prime_estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 50, "name": "prime_estimated_arr_in_usd", "comment": null}, "gold_estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 51, "name": "gold_estimated_arr_in_usd", "comment": null}, "created_pipeline_in_usd": {"type": "double", "index": 52, "name": "created_pipeline_in_usd", "comment": null}, "pre_opp_ht_product_list": {"type": "string", "index": 53, "name": "pre_opp_ht_product_list", "comment": null}, "product_list": {"type": "string", "index": 54, "name": "product_list", "comment": null}, "provisioned_plan_list": {"type": "string", "index": 55, "name": "provisioned_plan_list", "comment": null}, "reviews_acv_in_usd_sum": {"type": "decimal(22,2)", "index": 56, "name": "reviews_acv_in_usd_sum", "comment": null}, "reviews_acv_in_original_currency_sum": {"type": "decimal(22,2)", "index": 57, "name": "reviews_acv_in_original_currency_sum", "comment": null}, "vms_acv_in_usd_sum": {"type": "decimal(22,2)", "index": 58, "name": "vms_acv_in_usd_sum", "comment": null}, "vms_acv_in_original_currency_sum": {"type": "decimal(22,2)", "index": 59, "name": "vms_acv_in_original_currency_sum", "comment": null}, "insights_acv_in_usd_sum": {"type": "decimal(22,2)", "index": 60, "name": "insights_acv_in_usd_sum", "comment": null}, "insights_acv_in_original_currency_sum": {"type": "decimal(22,2)", "index": 61, "name": "insights_acv_in_original_currency_sum", "comment": null}, "loyalty_acv_in_usd_sum": {"type": "decimal(22,2)", "index": 62, "name": "loyalty_acv_in_usd_sum", "comment": null}, "loyalty_acv_in_original_currency_sum": {"type": "decimal(22,2)", "index": 63, "name": "loyalty_acv_in_original_currency_sum", "comment": null}, "sms_acv_in_usd_sum": {"type": "decimal(22,2)", "index": 64, "name": "sms_acv_in_usd_sum", "comment": null}, "sms_acv_in_original_currency_sum": {"type": "decimal(22,2)", "index": 65, "name": "sms_acv_in_original_currency_sum", "comment": null}, "subscriptions_acv_in_usd_sum": {"type": "decimal(22,2)", "index": 66, "name": "subscriptions_acv_in_usd_sum", "comment": null}, "subscriptions_acv_in_original_currency_sum": {"type": "decimal(22,2)", "index": 67, "name": "subscriptions_acv_in_original_currency_sum", "comment": null}, "is_reviews": {"type": "short", "index": 68, "name": "is_reviews", "comment": null}, "is_vms": {"type": "short", "index": 69, "name": "is_vms", "comment": null}, "is_insights": {"type": "short", "index": 70, "name": "is_insights", "comment": null}, "is_loyalty": {"type": "short", "index": 71, "name": "is_loyalty", "comment": null}, "is_sms": {"type": "short", "index": 72, "name": "is_sms", "comment": null}, "is_subscriptions": {"type": "short", "index": 73, "name": "is_subscriptions", "comment": null}, "is_email_intent": {"type": "short", "index": 74, "name": "is_email_intent", "comment": null}, "is_closed": {"type": "short", "index": 75, "name": "is_closed", "comment": null}, "is_excluded_from_compensation": {"type": "short", "index": 76, "name": "is_excluded_from_compensation", "comment": null}, "is_current_contract": {"type": "short", "index": 77, "name": "is_current_contract", "comment": null}, "is_company_expansion": {"type": "short", "index": 78, "name": "is_company_expansion", "comment": null}, "is_sal": {"type": "short", "index": 79, "name": "is_sal", "comment": null}, "is_won_sale": {"type": "short", "index": 80, "name": "is_won_sale", "comment": null}, "is_lost": {"type": "short", "index": 81, "name": "is_lost", "comment": null}, "is_lost_after_won": {"type": "short", "index": 82, "name": "is_lost_after_won", "comment": null}, "lost_reason": {"type": "string", "index": 83, "name": "lost_reason", "comment": null}, "lost_sub_reason": {"type": "string", "index": 84, "name": "lost_sub_reason", "comment": null}, "lost_reason_details": {"type": "string", "index": 85, "name": "lost_reason_details", "comment": null}, "lost_after_won_reason": {"type": "string", "index": 86, "name": "lost_after_won_reason", "comment": null}, "is_new_account_opportunity": {"type": "short", "index": 87, "name": "is_new_account_opportunity", "comment": null}, "is_marketing": {"type": "short", "index": 88, "name": "is_marketing", "comment": null}, "is_osdr": {"type": "short", "index": 89, "name": "is_osdr", "comment": null}, "is_bundle": {"type": "short", "index": 90, "name": "is_bundle", "comment": null}, "is_scsm_deal": {"type": "short", "index": 91, "name": "is_scsm_deal", "comment": null}, "is_partner_upsell": {"type": "short", "index": 92, "name": "is_partner_upsell", "comment": null}, "is_created_mtd": {"type": "short", "index": 93, "name": "is_created_mtd", "comment": null}, "is_created_qtd": {"type": "short", "index": 94, "name": "is_created_qtd", "comment": null}, "is_entered_demo_mtd": {"type": "short", "index": 95, "name": "is_entered_demo_mtd", "comment": null}, "is_entered_demo_qtd": {"type": "short", "index": 96, "name": "is_entered_demo_qtd", "comment": null}, "is_closed_mtd": {"type": "short", "index": 97, "name": "is_closed_mtd", "comment": null}, "is_closed_qtd": {"type": "short", "index": 98, "name": "is_closed_qtd", "comment": null}, "partner_engagement_id": {"type": "string", "index": 99, "name": "partner_engagement_id", "comment": null}, "referral_type": {"type": "string", "index": 100, "name": "referral_type", "comment": null}, "original_referrer_id": {"type": "string", "index": 101, "name": "original_referrer_id", "comment": null}, "contract_duration_months": {"type": "integer", "index": 102, "name": "contract_duration_months", "comment": null}, "contract_actual_duration_months": {"type": "double", "index": 103, "name": "contract_actual_duration_months", "comment": null}, "original_referrer_owner": {"type": "string", "index": 104, "name": "original_referrer_owner", "comment": null}, "referrer_owner_name": {"type": "string", "index": 105, "name": "referrer_owner_name", "comment": null}, "partner_account_name": {"type": "string", "index": 106, "name": "partner_account_name", "comment": null}, "partner_account_type": {"type": "string", "index": 107, "name": "partner_account_type", "comment": null}, "partner_account_referral_type": {"type": "string", "index": 108, "name": "partner_account_referral_type", "comment": null}, "won_sale_probability": {"type": "decimal(10,2)", "index": 109, "name": "won_sale_probability", "comment": null}, "upsell_acv_in_usd": {"type": "double", "index": 110, "name": "upsell_acv_in_usd", "comment": null}, "weighted_subscriptions_estimated_arr_in_usd": {"type": "decimal(21,4)", "index": 111, "name": "weighted_subscriptions_estimated_arr_in_usd", "comment": null}, "weighted_sms_estimated_arr_in_usd": {"type": "decimal(21,4)", "index": 112, "name": "weighted_sms_estimated_arr_in_usd", "comment": null}, "weighted_email_estimated_arr_in_usd": {"type": "decimal(21,4)", "index": 113, "name": "weighted_email_estimated_arr_in_usd", "comment": null}, "weighted_prime_estimated_arr_in_usd": {"type": "decimal(21,4)", "index": 114, "name": "weighted_prime_estimated_arr_in_usd", "comment": null}, "weighted_gold_estimated_arr_in_usd": {"type": "decimal(21,4)", "index": 115, "name": "weighted_gold_estimated_arr_in_usd", "comment": null}, "won_subscriptions_estimated_arr_in_usd": {"type": "decimal(12,2)", "index": 116, "name": "won_subscriptions_estimated_arr_in_usd", "comment": null}, "won_sms_estimated_arr_in_usd": {"type": "decimal(12,2)", "index": 117, "name": "won_sms_estimated_arr_in_usd", "comment": null}, "won_email_estimated_arr_in_usd": {"type": "decimal(12,2)", "index": 118, "name": "won_email_estimated_arr_in_usd", "comment": null}, "won_prime_estimated_arr_in_usd": {"type": "decimal(12,2)", "index": 119, "name": "won_prime_estimated_arr_in_usd", "comment": null}, "won_gold_estimated_arr_in_usd": {"type": "decimal(12,2)", "index": 120, "name": "won_gold_estimated_arr_in_usd", "comment": null}, "won_reviews_acv_in_usd_sum": {"type": "decimal(22,2)", "index": 121, "name": "won_reviews_acv_in_usd_sum", "comment": null}, "won_loyalty_acv_in_usd_sum": {"type": "decimal(22,2)", "index": 122, "name": "won_loyalty_acv_in_usd_sum", "comment": null}, "won_sms_acv_in_usd_sum": {"type": "decimal(22,2)", "index": 123, "name": "won_sms_acv_in_usd_sum", "comment": null}, "won_subscriptions_acv_in_usd_sum": {"type": "decimal(22,2)", "index": 124, "name": "won_subscriptions_acv_in_usd_sum", "comment": null}, "won_vms_acv_in_usd_sum": {"type": "decimal(22,2)", "index": 125, "name": "won_vms_acv_in_usd_sum", "comment": null}, "won_upsell_acv_in_usd": {"type": "double", "index": 126, "name": "won_upsell_acv_in_usd", "comment": null}, "weighted_delta_acv_in_usd": {"type": "double", "index": 127, "name": "weighted_delta_acv_in_usd", "comment": null}, "won_delta_acv_in_usd": {"type": "double", "index": 128, "name": "won_delta_acv_in_usd", "comment": null}, "is_partner_opportunity": {"type": "short", "index": 129, "name": "is_partner_opportunity", "comment": null}, "is_other_demand_gen_channel": {"type": "short", "index": 130, "name": "is_other_demand_gen_channel", "comment": null}, "prediction_reviews_previous_acv": {"type": "decimal(14,2)", "index": 131, "name": "prediction_reviews_previous_acv", "comment": null}, "prediction_reviews_current_acv": {"type": "decimal(14,2)", "index": 132, "name": "prediction_reviews_current_acv", "comment": null}, "prediction_reviews_certainty": {"type": "decimal(14,2)", "index": 133, "name": "prediction_reviews_certainty", "comment": null}, "prediction_predicted_reviews_acv": {"type": "decimal(14,2)", "index": 134, "name": "prediction_predicted_reviews_acv", "comment": null}, "prediction_reviews_current_hedged_acv": {"type": "decimal(14,2)", "index": 135, "name": "prediction_reviews_current_hedged_acv", "comment": null}, "prediction_reviews_risk_buckets": {"type": "string", "index": 136, "name": "prediction_reviews_risk_buckets", "comment": null}, "prediction_loyalty_previous_acv": {"type": "decimal(14,2)", "index": 137, "name": "prediction_loyalty_previous_acv", "comment": null}, "prediction_loyalty_current_acv": {"type": "decimal(14,2)", "index": 138, "name": "prediction_loyalty_current_acv", "comment": null}, "prediction_loyalty_certainty": {"type": "decimal(14,2)", "index": 139, "name": "prediction_loyalty_certainty", "comment": null}, "prediction_predicted_loyalty_acv": {"type": "decimal(14,2)", "index": 140, "name": "prediction_predicted_loyalty_acv", "comment": null}, "prediction_loyalty_current_hedged_acv": {"type": "decimal(14,2)", "index": 141, "name": "prediction_loyalty_current_hedged_acv", "comment": null}, "prediction_loyalty_risk_buckets": {"type": "string", "index": 142, "name": "prediction_loyalty_risk_buckets", "comment": null}, "renewal_to_opportunity_id": {"type": "string", "index": 143, "name": "renewal_to_opportunity_id", "comment": null}, "previous_ugc_renewals_cnt": {"type": "long", "index": 144, "name": "previous_ugc_renewals_cnt", "comment": null}, "previous_loyalty_renewals_cnt": {"type": "long", "index": 145, "name": "previous_loyalty_renewals_cnt", "comment": null}, "previous_sms_renewals_cnt": {"type": "long", "index": 146, "name": "previous_sms_renewals_cnt", "comment": null}, "previous_renewals_cnt": {"type": "long", "index": 147, "name": "previous_renewals_cnt", "comment": null}, "is_ht_ss": {"type": "short", "index": 148, "name": "is_ht_ss", "comment": null}, "is_deleted": {"type": "short", "index": 149, "name": "is_deleted", "comment": null}, "created_date": {"type": "date", "index": 150, "name": "created_date", "comment": null}, "created_at": {"type": "timestamp", "index": 151, "name": "created_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 152, "name": "dwh_updated_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.yoda.analytics___salesforce__opportunity"}, "model.yoda.analytics___salesforce__opportunity_line_item": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce__opportunity_line_item", "database": null, "comment": null, "owner": "root"}, "columns": {"line_item_id": {"type": "string", "index": 0, "name": "line_item_id", "comment": null}, "opportunity_id": {"type": "string", "index": 1, "name": "opportunity_id", "comment": null}, "line_item_product": {"type": "string", "index": 2, "name": "line_item_product", "comment": null}, "line_item_plan": {"type": "string", "index": 3, "name": "line_item_plan", "comment": null}, "provisioned_plan_name": {"type": "string", "index": 4, "name": "provisioned_plan_name", "comment": null}, "price_in_original_currency": {"type": "decimal(10,2)", "index": 5, "name": "price_in_original_currency", "comment": null}, "price_in_usd": {"type": "decimal(10,2)", "index": 6, "name": "price_in_usd", "comment": null}, "zuora_product_rate_plan_id": {"type": "string", "index": 7, "name": "zuora_product_rate_plan_id", "comment": null}, "is_reviews": {"type": "short", "index": 8, "name": "is_reviews", "comment": null}, "is_vms": {"type": "short", "index": 9, "name": "is_vms", "comment": null}, "is_insights": {"type": "short", "index": 10, "name": "is_insights", "comment": null}, "is_loyalty": {"type": "short", "index": 11, "name": "is_loyalty", "comment": null}, "is_sms": {"type": "short", "index": 12, "name": "is_sms", "comment": null}, "is_subscriptions": {"type": "short", "index": 13, "name": "is_subscriptions", "comment": null}, "is_deleted": {"type": "short", "index": 14, "name": "is_deleted", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 15, "name": "dwh_updated_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.yoda.analytics___salesforce__opportunity_line_item"}, "model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce__store_product_metrics_snapshot_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"store_metric_id": {"type": "string", "index": 0, "name": "store_metric_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "organization_key": {"type": "string", "index": 2, "name": "organization_key", "comment": null}, "metric": {"type": "string", "index": 3, "name": "metric", "comment": null}, "metric_date": {"type": "date", "index": 4, "name": "metric_date", "comment": null}, "product_name": {"type": "string", "index": 5, "name": "product_name", "comment": null}, "value": {"type": "double", "index": 6, "name": "value", "comment": null}, "is_indicator": {"type": "short", "index": 7, "name": "is_indicator", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 8, "name": "dwh_updated_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.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"}, "model.yoda.analytics___salesforce_stg__account_full": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__account_full", "database": null, "comment": null, "owner": "root"}, "columns": {"ACV_to_next_tier__c": {"type": "double", "index": 0, "name": "ACV_to_next_tier__c", "comment": null}, "Account_Email__c": {"type": "string", "index": 1, "name": "Account_Email__c", "comment": null}, "Account_Stage__c": {"type": "string", "index": 2, "name": "Account_Stage__c", "comment": null}, "Account_Territory__c": {"type": "string", "index": 3, "name": "Account_Territory__c", "comment": null}, "Account_Tier__c": {"type": "string", "index": 4, "name": "Account_Tier__c", "comment": null}, "Active_Leads_Referred__c": {"type": "double", "index": 5, "name": "Active_Leads_Referred__c", "comment": null}, "Ads_Provider__c": {"type": "string", "index": 6, "name": "Ads_Provider__c", "comment": null}, "Agency_Lost_Reason__c": {"type": "string", "index": 7, "name": "Agency_Lost_Reason__c", "comment": null}, "Agency_Potential__c": {"type": "string", "index": 8, "name": "Agency_Potential__c", "comment": null}, "Agency_Segment__c": {"type": "string", "index": 9, "name": "Agency_Segment__c", "comment": null}, "Agency_Services__c": {"type": "string", "index": 10, "name": "Agency_Services__c", "comment": null}, "Agency_Stage__c": {"type": "string", "index": 11, "name": "Agency_Stage__c", "comment": null}, "Agency_Supported_Platforms_Account__c": {"type": "string", "index": 12, "name": "Agency_Supported_Platforms_Account__c", "comment": null}, "Alexa_Rank__c": {"type": "double", "index": 13, "name": "Alexa_Rank__c", "comment": null}, "Annual_Account_Indication__c": {"type": "string", "index": 14, "name": "Annual_Account_Indication__c", "comment": null}, "Annual_Revenue__c": {"type": "string", "index": 15, "name": "Annual_Revenue__c", "comment": null}, "App_Key__c": {"type": "string", "index": 16, "name": "App_Key__c", "comment": null}, "BillingCity": {"type": "string", "index": 17, "name": "BillingCity", "comment": null}, "BillingCountry": {"type": "string", "index": 18, "name": "BillingCountry", "comment": null}, "BillingCountryCode": {"type": "string", "index": 19, "name": "BillingCountryCode", "comment": null}, "BillingPostalCode": {"type": "string", "index": 20, "name": "BillingPostalCode", "comment": null}, "BillingState": {"type": "string", "index": 21, "name": "BillingState", "comment": null}, "BillingStateCode": {"type": "string", "index": 22, "name": "BillingStateCode", "comment": null}, "BillingStreet": {"type": "string", "index": 23, "name": "BillingStreet", "comment": null}, "CDP_Provider__c": {"type": "string", "index": 24, "name": "CDP_Provider__c", "comment": null}, "CSM_Lookup__c": {"type": "string", "index": 25, "name": "CSM_Lookup__c", "comment": null}, "CS_Estimated_AOV__c": {"type": "double", "index": 26, "name": "CS_Estimated_AOV__c", "comment": null}, "CS_Estimated_Annual_Sales__c": {"type": "double", "index": 27, "name": "CS_Estimated_Annual_Sales__c", "comment": null}, "CS_Segment__c": {"type": "string", "index": 28, "name": "CS_Segment__c", "comment": null}, "CS_Tags__c": {"type": "string", "index": 29, "name": "CS_Tags__c", "comment": null}, "Chat_bots_Provider__c": {"type": "string", "index": 30, "name": "Chat_bots_Provider__c", "comment": null}, "Client_s_Agency2__c": {"type": "string", "index": 31, "name": "Client_s_Agency2__c", "comment": null}, "Closest_Contract_Renewal__c": {"type": "string", "index": 32, "name": "Closest_Contract_Renewal__c", "comment": null}, "Confidence_Level_Account__c": {"type": "string", "index": 33, "name": "Confidence_Level_Account__c", "comment": null}, "Country_Region__c": {"type": "string", "index": 34, "name": "Country_Region__c", "comment": null}, "CreatedDate": {"type": "string", "index": 35, "name": "CreatedDate", "comment": null}, "Cross_Sell_Status__c": {"type": "string", "index": 36, "name": "Cross_Sell_Status__c", "comment": null}, "Cross_sell_Type__c": {"type": "string", "index": 37, "name": "Cross_sell_Type__c", "comment": null}, "Customer_Type__c": {"type": "string", "index": 38, "name": "Customer_Type__c", "comment": null}, "DB_Package_Category__c": {"type": "string", "index": 39, "name": "DB_Package_Category__c", "comment": null}, "Datanayze_Current_Curation_Solution__c": {"type": "string", "index": 40, "name": "Datanayze_Current_Curation_Solution__c", "comment": null}, "Datanayze_Monthly_Tech_Spend__c": {"type": "string", "index": 41, "name": "Datanayze_Monthly_Tech_Spend__c", "comment": null}, "Datanyze_Funding__c": {"type": "string", "index": 42, "name": "Datanyze_Funding__c", "comment": null}, "Description": {"type": "string", "index": 43, "name": "Description", "comment": null}, "Domain__c": {"type": "string", "index": 44, "name": "Domain__c", "comment": null}, "Email_CSM_Name__c": {"type": "string", "index": 45, "name": "Email_CSM_Name__c", "comment": null}, "Email_Service_Provider_ESP__c": {"type": "string", "index": 46, "name": "Email_Service_Provider_ESP__c", "comment": null}, "Engagement_Level__c": {"type": "string", "index": 47, "name": "Engagement_Level__c", "comment": null}, "Enterprise_Account__c": {"type": "boolean", "index": 48, "name": "Enterprise_Account__c", "comment": null}, "Has_A_Community_member__c": {"type": "boolean", "index": 49, "name": "Has_A_Community_member__c", "comment": null}, "Help_Desk_Provider__c": {"type": "string", "index": 50, "name": "Help_Desk_Provider__c", "comment": null}, "IAP_Tier__c": {"type": "string", "index": 51, "name": "IAP_Tier__c", "comment": null}, "Id": {"type": "string", "index": 52, "name": "Id", "comment": null}, "Industry": {"type": "string", "index": 53, "name": "Industry", "comment": null}, "Influencer__c": {"type": "string", "index": 54, "name": "Influencer__c", "comment": null}, "IsDeleted": {"type": "boolean", "index": 55, "name": "IsDeleted", "comment": null}, "Junk_Reason__c": {"type": "string", "index": 56, "name": "Junk_Reason__c", "comment": null}, "LastModifiedDate": {"type": "string", "index": 57, "name": "LastModifiedDate", "comment": null}, "Last_AE__c": {"type": "string", "index": 58, "name": "Last_AE__c", "comment": null}, "Last_SDR__c": {"type": "string", "index": 59, "name": "Last_SDR__c", "comment": null}, "Latest_Opportunity__c": {"type": "string", "index": 60, "name": "Latest_Opportunity__c", "comment": null}, "Lead_ID__c": {"type": "string", "index": 61, "name": "Lead_ID__c", "comment": null}, "Lead_Referred_Date__c": {"type": "string", "index": 62, "name": "Lead_Referred_Date__c", "comment": null}, "Loyalty_Referral_Provider__c": {"type": "string", "index": 63, "name": "Loyalty_Referral_Provider__c", "comment": null}, "MAP_Limit_Roll_Up__c": {"type": "double", "index": 64, "name": "MAP_Limit_Roll_Up__c", "comment": null}, "MS_Churn_Date__c": {"type": "string", "index": 65, "name": "MS_Churn_Date__c", "comment": null}, "MS_Inbound_Outbound__c": {"type": "string", "index": 66, "name": "MS_Inbound_Outbound__c", "comment": null}, "MS_Live_Date__c": {"type": "string", "index": 67, "name": "MS_Live_Date__c", "comment": null}, "Main_CSM__c": {"type": "string", "index": 68, "name": "Main_CSM__c", "comment": null}, "Managed_Services_Agency__c": {"type": "string", "index": 69, "name": "Managed_Services_Agency__c", "comment": null}, "Merchant_ID__c": {"type": "string", "index": 70, "name": "Merchant_ID__c", "comment": null}, "Multi_Product_Account__c": {"type": "boolean", "index": 71, "name": "Multi_Product_Account__c", "comment": null}, "Name": {"type": "string", "index": 72, "name": "Name", "comment": null}, "Next_Partner_Tier__c": {"type": "string", "index": 73, "name": "Next_Partner_Tier__c", "comment": null}, "Number_of_Employees__c": {"type": "string", "index": 74, "name": "Number_of_Employees__c", "comment": null}, "Nurturing_Reason__c": {"type": "string", "index": 75, "name": "Nurturing_Reason__c", "comment": null}, "Organization_Key__c": {"type": "string", "index": 76, "name": "Organization_Key__c", "comment": null}, "OwnerId": {"type": "string", "index": 77, "name": "OwnerId", "comment": null}, "POS_Provider__c": {"type": "string", "index": 78, "name": "POS_Provider__c", "comment": null}, "Package_Base__c": {"type": "string", "index": 79, "name": "Package_Base__c", "comment": null}, "Package_Category__c": {"type": "string", "index": 80, "name": "Package_Category__c", "comment": null}, "Package_Extensions__c": {"type": "string", "index": 81, "name": "Package_Extensions__c", "comment": null}, "Package__c": {"type": "string", "index": 82, "name": "Package__c", "comment": null}, "ParentId": {"type": "string", "index": 83, "name": "ParentId", "comment": null}, "Partner_Influencer_Referrer_Type__c": {"type": "string", "index": 84, "name": "Partner_Influencer_Referrer_Type__c", "comment": null}, "Partner_Tier__c": {"type": "string", "index": 85, "name": "Partner_Tier__c", "comment": null}, "Payment_Provider__c": {"type": "string", "index": 86, "name": "Payment_Provider__c", "comment": null}, "Personalization_Provider__c": {"type": "string", "index": 87, "name": "Personalization_Provider__c", "comment": null}, "Platform__c": {"type": "string", "index": 88, "name": "Platform__c", "comment": null}, "Primary_Sales_Channel__c": {"type": "string", "index": 89, "name": "Primary_Sales_Channel__c", "comment": null}, "Rating": {"type": "string", "index": 90, "name": "Rating", "comment": null}, "Referral_Agreement_Signed__c": {"type": "boolean", "index": 91, "name": "Referral_Agreement_Signed__c", "comment": null}, "Referrer_Type_Sub_Category__c": {"type": "string", "index": 92, "name": "Referrer_Type_Sub_Category__c", "comment": null}, "Referrer_Type__c": {"type": "string", "index": 93, "name": "Referrer_Type__c", "comment": null}, "Referrer__c": {"type": "string", "index": 94, "name": "Referrer__c", "comment": null}, "Registration_Date__c": {"type": "string", "index": 95, "name": "Registration_Date__c", "comment": null}, "Renewal_Cycle__c": {"type": "double", "index": 96, "name": "Renewal_Cycle__c", "comment": null}, "Reviews_Provider_List__c": {"type": "string", "index": 97, "name": "Reviews_Provider_List__c", "comment": null}, "SAL_to_next_tier__c": {"type": "double", "index": 98, "name": "SAL_to_next_tier__c", "comment": null}, "Sales_Region_new__c": {"type": "string", "index": 99, "name": "Sales_Region_new__c", "comment": null}, "SDR_Owner__c": {"type": "string", "index": 100, "name": "SDR_Owner__c", "comment": null}, "SMS_ACV__c": {"type": "double", "index": 101, "name": "SMS_ACV__c", "comment": null}, "SMS_Annualized_Usage_Rev__c": {"type": "double", "index": 102, "name": "SMS_Annualized_Usage_Rev__c", "comment": null}, "SMS_CSM__c": {"type": "string", "index": 103, "name": "SMS_CSM__c", "comment": null}, "SMS_Provider__c": {"type": "string", "index": 104, "name": "SMS_Provider__c", "comment": null}, "SMS_Strategist__c": {"type": "string", "index": 105, "name": "SMS_Strategist__c", "comment": null}, "SMS_Total_ARR__c": {"type": "double", "index": 106, "name": "SMS_Total_ARR__c", "comment": null}, "SMS_Usage_Cancellation_Date__c": {"type": "string", "index": 107, "name": "SMS_Usage_Cancellation_Date__c", "comment": null}, "SMS_User_ID__c": {"type": "double", "index": 108, "name": "SMS_User_ID__c", "comment": null}, "Sales_Estimated_Monthly_Orders__c": {"type": "string", "index": 109, "name": "Sales_Estimated_Monthly_Orders__c", "comment": null}, "Sales_Estimated_Subscribers__c": {"type": "string", "index": 110, "name": "Sales_Estimated_Subscribers__c", "comment": null}, "Sales_Segment__c": {"type": "string", "index": 111, "name": "Sales_Segment__c", "comment": null}, "Sales_Territory__c": {"type": "string", "index": 112, "name": "Sales_Territory__c", "comment": null}, "Search_Provider__c": {"type": "string", "index": 113, "name": "Search_Provider__c", "comment": null}, "SimilarWeb_Traffic__c": {"type": "double", "index": 114, "name": "SimilarWeb_Traffic__c", "comment": null}, "State_Region__c": {"type": "string", "index": 115, "name": "State_Region__c", "comment": null}, "Status__c": {"type": "string", "index": 116, "name": "Status__c", "comment": null}, "Strategic_Priority__c": {"type": "boolean", "index": 117, "name": "Strategic_Priority__c", "comment": null}, "Sub_Nurturing_Reason__c": {"type": "string", "index": 118, "name": "Sub_Nurturing_Reason__c", "comment": null}, "Subscription_Seller__c": {"type": "string", "index": 119, "name": "Subscription_Seller__c", "comment": null}, "Subscriptions_CSM__c": {"type": "string", "index": 120, "name": "Subscriptions_CSM__c", "comment": null}, "Swell_ACV__c": {"type": "double", "index": 121, "name": "Swell_ACV__c", "comment": null}, "Swell_CSM__c": {"type": "string", "index": 122, "name": "Swell_CSM__c", "comment": null}, "Swell_Contract_Renewal_Date__c": {"type": "string", "index": 123, "name": "Swell_Contract_Renewal_Date__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 124, "name": "SystemModstamp", "comment": null}, "Test_Account__c": {"type": "boolean", "index": 125, "name": "Test_Account__c", "comment": null}, "Time_Zone__c": {"type": "string", "index": 126, "name": "Time_Zone__c", "comment": null}, "Total_ACV__c": {"type": "double", "index": 127, "name": "Total_ACV__c", "comment": null}, "UTM_Campaign__c": {"type": "string", "index": 128, "name": "UTM_Campaign__c", "comment": null}, "UTM_Content__c": {"type": "string", "index": 129, "name": "UTM_Content__c", "comment": null}, "UTM_Medium__c": {"type": "string", "index": 130, "name": "UTM_Medium__c", "comment": null}, "UTM_Source__c": {"type": "string", "index": 131, "name": "UTM_Source__c", "comment": null}, "UTM_Term__c": {"type": "string", "index": 132, "name": "UTM_Term__c", "comment": null}, "VMS_ACV__c": {"type": "double", "index": 133, "name": "VMS_ACV__c", "comment": null}, "VMS_Contract_Renewal_Date__c": {"type": "string", "index": 134, "name": "VMS_Contract_Renewal_Date__c", "comment": null}, "Yotpo_ACV__c": {"type": "double", "index": 135, "name": "Yotpo_ACV__c", "comment": null}, "Yotpo_Contract_Renewal_Date__c": {"type": "string", "index": 136, "name": "Yotpo_Contract_Renewal_Date__c", "comment": null}, "Yotpo_Industry_Account__c": {"type": "string", "index": 137, "name": "Yotpo_Industry_Account__c", "comment": null}, "Yotpo_Industry_Verified_Account__c": {"type": "boolean", "index": 138, "name": "Yotpo_Industry_Verified_Account__c", "comment": null}, "Yotpo_Sub_Industry_Account__c": {"type": "string", "index": 139, "name": "Yotpo_Sub_Industry_Account__c", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 140, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 141, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 142, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 143, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 144, "name": "_sdc_table_version", "comment": null}, "rn": {"type": "integer", "index": 145, "name": "rn", "comment": null}, "Agency_No_of_Employees_Account__c": {"type": "string", "index": 146, "name": "Agency_No_of_Employees_Account__c", "comment": null}, "Products_In_The_TAM_New__c": {"type": "string", "index": 147, "name": "Products_In_The_TAM_New__c", "comment": null}, "Agency_Clients_Level_Account__c": {"type": "string", "index": 148, "name": "Agency_Clients_Level_Account__c", "comment": null}, "of_Current_Contracts__c": {"type": "double", "index": 149, "name": "of_Current_Contracts__c", "comment": null}}, "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.yoda.analytics___salesforce_stg__account_full"}, "model.yoda.analytics___salesforce_stg__dim_sf_users_scd": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__dim_sf_users_scd", "database": null, "comment": null, "owner": "root"}, "columns": {"sf_user_gk": {"type": "integer", "index": 0, "name": "sf_user_gk", "comment": null}, "sf_user_id": {"type": "string", "index": 1, "name": "sf_user_id", "comment": null}, "sf_user_name": {"type": "string", "index": 2, "name": "sf_user_name", "comment": null}, "sf_user_last_name": {"type": "string", "index": 3, "name": "sf_user_last_name", "comment": null}, "sf_user_first_name": {"type": "string", "index": 4, "name": "sf_user_first_name", "comment": null}, "sf_user_full_name": {"type": "string", "index": 5, "name": "sf_user_full_name", "comment": null}, "sf_user_title": {"type": "string", "index": 6, "name": "sf_user_title", "comment": null}, "sf_user_email": {"type": "string", "index": 7, "name": "sf_user_email", "comment": null}, "sf_user_role": {"type": "string", "index": 8, "name": "sf_user_role", "comment": null}, "sf_user_role_id": {"type": "string", "index": 9, "name": "sf_user_role_id", "comment": null}, "is_sales_rep_role": {"type": "short", "index": 10, "name": "is_sales_rep_role", "comment": null}, "is_partner_role": {"type": "short", "index": 11, "name": "is_partner_role", "comment": null}, "sf_user_alias": {"type": "string", "index": 12, "name": "sf_user_alias", "comment": null}, "manager_sf_user_id": {"type": "string", "index": 13, "name": "manager_sf_user_id", "comment": null}, "manager_full_name": {"type": "string", "index": 14, "name": "manager_full_name", "comment": null}, "second_level_manager_sf_user_id": {"type": "string", "index": 15, "name": "second_level_manager_sf_user_id", "comment": null}, "second_level_manager_full_name": {"type": "string", "index": 16, "name": "second_level_manager_full_name", "comment": null}, "sf_user_is_active": {"type": "short", "index": 17, "name": "sf_user_is_active", "comment": null}, "sf_user_last_login_date": {"type": "timestamp", "index": 18, "name": "sf_user_last_login_date", "comment": null}, "sf_user_created_at": {"type": "timestamp", "index": 19, "name": "sf_user_created_at", "comment": null}, "sf_user_updated_at": {"type": "timestamp", "index": 20, "name": "sf_user_updated_at", "comment": null}, "sf_user_created_by_sf_user_id": {"type": "string", "index": 21, "name": "sf_user_created_by_sf_user_id", "comment": null}, "sf_user_updated_by_sf_user_id": {"type": "string", "index": 22, "name": "sf_user_updated_by_sf_user_id", "comment": null}, "from_time": {"type": "timestamp", "index": 23, "name": "from_time", "comment": null}, "to_time": {"type": "timestamp", "index": 24, "name": "to_time", "comment": null}, "scd_cur_ind": {"type": "short", "index": 25, "name": "scd_cur_ind", "comment": null}, "sf_user_location": {"type": "string", "index": 26, "name": "sf_user_location", "comment": null}, "is_super_csm": {"type": "short", "index": 27, "name": "is_super_csm", "comment": null}, "csm_team": {"type": "string", "index": 28, "name": "csm_team", "comment": null}, "is_exclude_from_tracking": {"type": "short", "index": 29, "name": "is_exclude_from_tracking", "comment": null}, "is_marketing_activity_user": {"type": "short", "index": 30, "name": "is_marketing_activity_user", "comment": null}, "is_integration": {"type": "short", "index": 31, "name": "is_integration", "comment": null}, "queue_type": {"type": "string", "index": 32, "name": "queue_type", "comment": null}, "is_queue": {"type": "short", "index": 33, "name": "is_queue", "comment": null}, "dwh_created_at": {"type": "timestamp", "index": 34, "name": "dwh_created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.analytics___salesforce_stg__dim_sf_users_scd"}, "model.yoda.analytics___salesforce_stg__mc_account": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_account", "database": null, "comment": null, "owner": "root"}, "columns": {"account_id": {"type": "string", "index": 0, "name": "account_id", "comment": null}, "organization_key": {"type": "string", "index": 1, "name": "organization_key", "comment": null}, "type": {"type": "string", "index": 2, "name": "type", "comment": null}, "app_key": {"type": "string", "index": 3, "name": "app_key", "comment": null}, "account_name": {"type": "string", "index": 4, "name": "account_name", "comment": null}, "rating": {"type": "string", "index": 5, "name": "rating", "comment": null}, "created_date": {"type": "date", "index": 6, "name": "created_date", "comment": null}, "description": {"type": "string", "index": 7, "name": "description", "comment": null}, "main_csm_sf_user_id": {"type": "string", "index": 8, "name": "main_csm_sf_user_id", "comment": null}, "csm_sf_user_id": {"type": "string", "index": 9, "name": "csm_sf_user_id", "comment": null}, "last_modified_date": {"type": "date", "index": 10, "name": "last_modified_date", "comment": null}, "num_of_active_leads_referred_by_agency": {"type": "decimal(10,2)", "index": 11, "name": "num_of_active_leads_referred_by_agency", "comment": null}, "agency_lost_reason": {"type": "string", "index": 12, "name": "agency_lost_reason", "comment": null}, "agency_potential": {"type": "string", "index": 13, "name": "agency_potential", "comment": null}, "agency_stage": {"type": "string", "index": 14, "name": "agency_stage", "comment": null}, "agency_segment": {"type": "string", "index": 15, "name": "agency_segment", "comment": null}, "industry": {"type": "string", "index": 16, "name": "industry", "comment": null}, "referred_by_agency_id": {"type": "string", "index": 17, "name": "referred_by_agency_id", "comment": null}, "time_zone": {"type": "string", "index": 18, "name": "time_zone", "comment": null}, "id_15_digits": {"type": "string", "index": 19, "name": "id_15_digits", "comment": null}, "country": {"type": "string", "index": 20, "name": "country", "comment": null}, "is_deleted_account": {"type": "short", "index": 21, "name": "is_deleted_account", "comment": null}, "lead_id": {"type": "string", "index": 22, "name": "lead_id", "comment": null}, "utm_campaign": {"type": "string", "index": 23, "name": "utm_campaign", "comment": null}, "utm_content": {"type": "string", "index": 24, "name": "utm_content", "comment": null}, "utm_medium": {"type": "string", "index": 25, "name": "utm_medium", "comment": null}, "utm_source": {"type": "string", "index": 26, "name": "utm_source", "comment": null}, "utm_term": {"type": "string", "index": 27, "name": "utm_term", "comment": null}, "latest_opportunity_id": {"type": "string", "index": 28, "name": "latest_opportunity_id", "comment": null}, "tier": {"type": "string", "index": 29, "name": "tier", "comment": null}, "referrer_type": {"type": "string", "index": 30, "name": "referrer_type", "comment": null}, "agency_engagement_level": {"type": "string", "index": 31, "name": "agency_engagement_level", "comment": null}, "is_referral_agreement_signed": {"type": "short", "index": 32, "name": "is_referral_agreement_signed", "comment": null}, "is_enterprise_account": {"type": "short", "index": 33, "name": "is_enterprise_account", "comment": null}, "lead_referred_date": {"type": "date", "index": 34, "name": "lead_referred_date", "comment": null}, "stage": {"type": "string", "index": 35, "name": "stage", "comment": null}, "primary_sales_channel": {"type": "string", "index": 36, "name": "primary_sales_channel", "comment": null}, "industry_name": {"type": "string", "index": 37, "name": "industry_name", "comment": null}, "sub_industry_name": {"type": "string", "index": 38, "name": "sub_industry_name", "comment": null}, "yotpo_industry_confidence_level": {"type": "string", "index": 39, "name": "yotpo_industry_confidence_level", "comment": null}, "is_yotpo_industry_verified": {"type": "short", "index": 40, "name": "is_yotpo_industry_verified", "comment": null}, "annual_revenue": {"type": "string", "index": 41, "name": "annual_revenue", "comment": null}, "sales_territory": {"type": "string", "index": 42, "name": "sales_territory", "comment": null}, "number_of_employees": {"type": "string", "index": 43, "name": "number_of_employees", "comment": null}, "alexa_rank": {"type": "string", "index": 44, "name": "alexa_rank", "comment": null}, "country_region": {"type": "string", "index": 45, "name": "country_region", "comment": null}, "state_region": {"type": "string", "index": 46, "name": "state_region", "comment": null}, "sales_region": {"type": "string", "index": 47, "name": "sales_region", "comment": null}, "funding": {"type": "string", "index": 48, "name": "funding", "comment": null}, "status": {"type": "string", "index": 49, "name": "status", "comment": null}, "nurturing_reason": {"type": "string", "index": 50, "name": "nurturing_reason", "comment": null}, "sub_nurturing_reason": {"type": "string", "index": 51, "name": "sub_nurturing_reason", "comment": null}, "junk_reason": {"type": "string", "index": 52, "name": "junk_reason", "comment": null}, "domain": {"type": "string", "index": 53, "name": "domain", "comment": null}, "is_account_data_excluded": {"type": "short", "index": 54, "name": "is_account_data_excluded", "comment": null}, "renewal_cycle": {"type": "integer", "index": 55, "name": "renewal_cycle", "comment": null}, "managing_agency_id": {"type": "string", "index": 56, "name": "managing_agency_id", "comment": null}, "cs_estimated_aov": {"type": "integer", "index": 57, "name": "cs_estimated_aov", "comment": null}, "cs_estimated_annual_sales": {"type": "integer", "index": 58, "name": "cs_estimated_annual_sales", "comment": null}, "email": {"type": "string", "index": 59, "name": "email", "comment": null}, "plan_name": {"type": "string", "index": 60, "name": "plan_name", "comment": null}, "extensions": {"type": "string", "index": 61, "name": "extensions", "comment": null}, "city": {"type": "string", "index": 62, "name": "city", "comment": null}, "country_code": {"type": "string", "index": 63, "name": "country_code", "comment": null}, "state": {"type": "string", "index": 64, "name": "state", "comment": null}, "state_code": {"type": "string", "index": 65, "name": "state_code", "comment": null}, "street": {"type": "string", "index": 66, "name": "street", "comment": null}, "postal_code": {"type": "string", "index": 67, "name": "postal_code", "comment": null}, "estimated_monthly_orders_volume": {"type": "string", "index": 68, "name": "estimated_monthly_orders_volume", "comment": null}, "ugc_acv": {"type": "decimal(11,2)", "index": 69, "name": "ugc_acv", "comment": null}, "loyalty_acv": {"type": "decimal(10,2)", "index": 70, "name": "loyalty_acv", "comment": null}, "loyalty_contract_renewal_date": {"type": "date", "index": 71, "name": "loyalty_contract_renewal_date", "comment": null}, "yotpo_contract_renewal_date": {"type": "date", "index": 72, "name": "yotpo_contract_renewal_date", "comment": null}, "vms_contract_renewal_date": {"type": "date", "index": 73, "name": "vms_contract_renewal_date", "comment": null}, "total_acv": {"type": "decimal(10,2)", "index": 74, "name": "total_acv", "comment": null}, "closest_contract_renewal_date": {"type": "date", "index": 75, "name": "closest_contract_renewal_date", "comment": null}, "cross_sale_status": {"type": "string", "index": 76, "name": "cross_sale_status", "comment": null}, "last_sdr_id": {"type": "string", "index": 77, "name": "last_sdr_id", "comment": null}, "last_ae_id": {"type": "string", "index": 78, "name": "last_ae_id", "comment": null}, "merchant_id": {"type": "string", "index": 79, "name": "merchant_id", "comment": null}, "swell_csm_sf_user_id": {"type": "string", "index": 80, "name": "swell_csm_sf_user_id", "comment": null}, "agency_supported_platforms": {"type": "string", "index": 81, "name": "agency_supported_platforms", "comment": null}, "platform": {"type": "string", "index": 82, "name": "platform", "comment": null}, "is_annual_account": {"type": "short", "index": 83, "name": "is_annual_account", "comment": null}, "is_partner_account": {"type": "short", "index": 84, "name": "is_partner_account", "comment": null}, "sdr_owner_id": {"type": "string", "index": 85, "name": "sdr_owner_id", "comment": null}, "cs_segment": {"type": "string", "index": 86, "name": "cs_segment", "comment": null}, "search_provider": {"type": "string", "index": 87, "name": "search_provider", "comment": null}, "reviews_provider": {"type": "string", "index": 88, "name": "reviews_provider", "comment": null}, "loyalty_provider": {"type": "string", "index": 89, "name": "loyalty_provider", "comment": null}, "curation_provider": {"type": "string", "index": 90, "name": "curation_provider", "comment": null}, "email_marketing_provider": {"type": "string", "index": 91, "name": "email_marketing_provider", "comment": null}, "cross_sell_type": {"type": "string", "index": 92, "name": "cross_sell_type", "comment": null}, "influenced_by_agency_id": {"type": "string", "index": 93, "name": "influenced_by_agency_id", "comment": null}, "territory": {"type": "string", "index": 94, "name": "territory", "comment": null}, "is_test_account": {"type": "short", "index": 95, "name": "is_test_account", "comment": null}, "agency_services": {"type": "string", "index": 96, "name": "agency_services", "comment": null}, "package_category": {"type": "string", "index": 97, "name": "package_category", "comment": null}, "personalization_provider": {"type": "string", "index": 98, "name": "personalization_provider", "comment": null}, "payment_provider": {"type": "string", "index": 99, "name": "payment_provider", "comment": null}, "help_desk_provider": {"type": "string", "index": 100, "name": "help_desk_provider", "comment": null}, "pos_provider": {"type": "string", "index": 101, "name": "pos_provider", "comment": null}, "cdp_provider": {"type": "string", "index": 102, "name": "cdp_provider", "comment": null}, "chat_bots_provider": {"type": "string", "index": 103, "name": "chat_bots_provider", "comment": null}, "ads_provider": {"type": "string", "index": 104, "name": "ads_provider", "comment": null}, "sms_acv": {"type": "decimal(10,2)", "index": 105, "name": "sms_acv", "comment": null}, "datanayze_monthly_tech_spend": {"type": "string", "index": 106, "name": "datanayze_monthly_tech_spend", "comment": null}, "sms_csm_sf_user_id": {"type": "string", "index": 107, "name": "sms_csm_sf_user_id", "comment": null}, "partner_influencer_referrer_type": {"type": "string", "index": 108, "name": "partner_influencer_referrer_type", "comment": null}, "partner_referral_referrer_type": {"type": "string", "index": 109, "name": "partner_referral_referrer_type", "comment": null}, "is_strategic_priority": {"type": "short", "index": 110, "name": "is_strategic_priority", "comment": null}, "similarweb_traffic": {"type": "integer", "index": 111, "name": "similarweb_traffic", "comment": null}, "cs_tags": {"type": "string", "index": 112, "name": "cs_tags", "comment": null}, "sms_strategist": {"type": "string", "index": 113, "name": "sms_strategist", "comment": null}, "sms_provider": {"type": "string", "index": 114, "name": "sms_provider", "comment": null}, "parent_account_id": {"type": "string", "index": 115, "name": "parent_account_id", "comment": null}, "order_limit_roll_up": {"type": "integer", "index": 116, "name": "order_limit_roll_up", "comment": null}, "is_multi_product_account": {"type": "short", "index": 117, "name": "is_multi_product_account", "comment": null}, "sales_segment": {"type": "string", "index": 118, "name": "sales_segment", "comment": null}, "managed_services_agency_id": {"type": "string", "index": 119, "name": "managed_services_agency_id", "comment": null}, "ms_account_live_date": {"type": "date", "index": 120, "name": "ms_account_live_date", "comment": null}, "ms_account_churn_date": {"type": "date", "index": 121, "name": "ms_account_churn_date", "comment": null}, "ms_account_source": {"type": "string", "index": 122, "name": "ms_account_source", "comment": null}, "ms_sms_user_id": {"type": "integer", "index": 123, "name": "ms_sms_user_id", "comment": null}, "partner_tier": {"type": "string", "index": 124, "name": "partner_tier", "comment": null}, "owner_id": {"type": "string", "index": 125, "name": "owner_id", "comment": null}, "sal_to_next_tier": {"type": "integer", "index": 126, "name": "sal_to_next_tier", "comment": null}, "acv_to_next_tier": {"type": "decimal(18,2)", "index": 127, "name": "acv_to_next_tier", "comment": null}, "next_partner_tier": {"type": "string", "index": 128, "name": "next_partner_tier", "comment": null}, "iap_tier": {"type": "string", "index": 129, "name": "iap_tier", "comment": null}, "partner_type_sub_category": {"type": "string", "index": 130, "name": "partner_type_sub_category", "comment": null}, "subscription_seller": {"type": "string", "index": 131, "name": "subscription_seller", "comment": null}, "sales_estimated_subscribers": {"type": "string", "index": 132, "name": "sales_estimated_subscribers", "comment": null}, "registered_at": {"type": "string", "index": 133, "name": "registered_at", "comment": null}, "packages": {"type": "string", "index": 134, "name": "packages", "comment": null}, "max_days_invoice_in_dunning": {"type": "double", "index": 135, "name": "max_days_invoice_in_dunning", "comment": null}, "num_of_dunning_invoices": {"type": "double", "index": 136, "name": "num_of_dunning_invoices", "comment": null}, "dunning_invoices_balance": {"type": "double", "index": 137, "name": "dunning_invoices_balance", "comment": null}, "db_package_category": {"type": "string", "index": 138, "name": "db_package_category", "comment": null}, "sms_annualized_usage_rev": {"type": "double", "index": 139, "name": "sms_annualized_usage_rev", "comment": null}, "sms_total_arr": {"type": "double", "index": 140, "name": "sms_total_arr", "comment": null}, "has_a_community_member": {"type": "integer", "index": 141, "name": "has_a_community_member", "comment": null}, "sms_usage_cancellation_date": {"type": "date", "index": 142, "name": "sms_usage_cancellation_date", "comment": null}, "agency_employee_bucket": {"type": "string", "index": 143, "name": "agency_employee_bucket", "comment": null}, "products_in_tam_list": {"type": "string", "index": 144, "name": "products_in_tam_list", "comment": null}, "agency_clients_level_account": {"type": "string", "index": 145, "name": "agency_clients_level_account", "comment": null}, "current_contract_cnt": {"type": "integer", "index": 146, "name": "current_contract_cnt", "comment": null}}, "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.yoda.analytics___salesforce_stg__mc_account"}, "model.yoda.analytics___salesforce_stg__mc_opportunity": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_opportunity", "database": null, "comment": null, "owner": "root"}, "columns": {"opportunity_id": {"type": "string", "index": 0, "name": "opportunity_id", "comment": null}, "account_id": {"type": "string", "index": 1, "name": "account_id", "comment": null}, "opportunity_name": {"type": "string", "index": 2, "name": "opportunity_name", "comment": null}, "start_date": {"type": "date", "index": 3, "name": "start_date", "comment": null}, "close_date": {"type": "date", "index": 4, "name": "close_date", "comment": null}, "entered_demo_date": {"type": "date", "index": 5, "name": "entered_demo_date", "comment": null}, "actual_end_date": {"type": "date", "index": 6, "name": "actual_end_date", "comment": null}, "sales_region": {"type": "string", "index": 7, "name": "sales_region", "comment": null}, "order_sales_segment": {"type": "string", "index": 8, "name": "order_sales_segment", "comment": null}, "secondary_seller_id": {"type": "string", "index": 9, "name": "secondary_seller_id", "comment": null}, "created_by_sf_user_id": {"type": "string", "index": 10, "name": "created_by_sf_user_id", "comment": null}, "sdr_sf_user_id": {"type": "string", "index": 11, "name": "sdr_sf_user_id", "comment": null}, "type": {"type": "string", "index": 12, "name": "type", "comment": null}, "stage": {"type": "string", "index": 13, "name": "stage", "comment": null}, "deal_type": {"type": "string", "index": 14, "name": "deal_type", "comment": null}, "deal_type_as_per_deal_summary": {"type": "string", "index": 15, "name": "deal_type_as_per_deal_summary", "comment": null}, "plan_name": {"type": "string", "index": 16, "name": "plan_name", "comment": null}, "record_type_name": {"type": "string", "index": 17, "name": "record_type_name", "comment": null}, "record_type_id": {"type": "string", "index": 18, "name": "record_type_id", "comment": null}, "description": {"type": "string", "index": 19, "name": "description", "comment": null}, "owner_id": {"type": "string", "index": 20, "name": "owner_id", "comment": null}, "subscriptions_seller_id": {"type": "string", "index": 21, "name": "subscriptions_seller_id", "comment": null}, "original_owner_role": {"type": "string", "index": 22, "name": "original_owner_role", "comment": null}, "original_currency": {"type": "string", "index": 23, "name": "original_currency", "comment": null}, "discount_rate": {"type": "double", "index": 24, "name": "discount_rate", "comment": null}, "delta_booking": {"type": "double", "index": 25, "name": "delta_booking", "comment": null}, "sms_delta_earr": {"type": "double", "index": 26, "name": "sms_delta_earr", "comment": null}, "subscriptions_delta_earr": {"type": "double", "index": 27, "name": "subscriptions_delta_earr", "comment": null}, "delta_acv_in_usd": {"type": "double", "index": 28, "name": "delta_acv_in_usd", "comment": null}, "won_sale_probability": {"type": "decimal(10,2)", "index": 29, "name": "won_sale_probability", "comment": null}, "conversion_rate": {"type": "decimal(10,2)", "index": 30, "name": "conversion_rate", "comment": null}, "estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 31, "name": "estimated_arr_in_usd", "comment": null}, "sms_estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 32, "name": "sms_estimated_arr_in_usd", "comment": null}, "email_estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 33, "name": "email_estimated_arr_in_usd", "comment": null}, "subscriptions_estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 34, "name": "subscriptions_estimated_arr_in_usd", "comment": null}, "prime_estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 35, "name": "prime_estimated_arr_in_usd", "comment": null}, "gold_estimated_arr_in_usd": {"type": "decimal(10,2)", "index": 36, "name": "gold_estimated_arr_in_usd", "comment": null}, "estimated_monthly_order_range": {"type": "string", "index": 37, "name": "estimated_monthly_order_range", "comment": null}, "num_of_end_of_contract_extension_month": {"type": "integer", "index": 38, "name": "num_of_end_of_contract_extension_month", "comment": null}, "num_of_csm_extension_month": {"type": "integer", "index": 39, "name": "num_of_csm_extension_month", "comment": null}, "sms_commitment_term": {"type": "string", "index": 40, "name": "sms_commitment_term", "comment": null}, "merged_to_opportunity_id": {"type": "string", "index": 41, "name": "merged_to_opportunity_id", "comment": null}, "is_email_intent": {"type": "short", "index": 42, "name": "is_email_intent", "comment": null}, "contract_duration_months": {"type": "integer", "index": 43, "name": "contract_duration_months", "comment": null}, "contract_actual_duration_months": {"type": "double", "index": 44, "name": "contract_actual_duration_months", "comment": null}, "original_referrer_owner": {"type": "string", "index": 45, "name": "original_referrer_owner", "comment": null}, "is_closed": {"type": "short", "index": 46, "name": "is_closed", "comment": null}, "is_excluded_from_compensation": {"type": "short", "index": 47, "name": "is_excluded_from_compensation", "comment": null}, "is_marketing": {"type": "short", "index": 48, "name": "is_marketing", "comment": null}, "is_osdr": {"type": "short", "index": 49, "name": "is_osdr", "comment": null}, "is_bundle": {"type": "short", "index": 50, "name": "is_bundle", "comment": null}, "is_company_expansion": {"type": "short", "index": 51, "name": "is_company_expansion", "comment": null}, "is_current_contract": {"type": "short", "index": 52, "name": "is_current_contract", "comment": null}, "is_sal": {"type": "short", "index": 53, "name": "is_sal", "comment": null}, "is_won_sale": {"type": "short", "index": 54, "name": "is_won_sale", "comment": null}, "is_lost": {"type": "short", "index": 55, "name": "is_lost", "comment": null}, "is_lost_after_won": {"type": "short", "index": 56, "name": "is_lost_after_won", "comment": null}, "is_new_account_opportunity": {"type": "short", "index": 57, "name": "is_new_account_opportunity", "comment": null}, "is_partner_upsell": {"type": "short", "index": 58, "name": "is_partner_upsell", "comment": null}, "is_ht_ss": {"type": "short", "index": 59, "name": "is_ht_ss", "comment": null}, "partner_engagement_id": {"type": "string", "index": 60, "name": "partner_engagement_id", "comment": null}, "original_referrer_id": {"type": "string", "index": 61, "name": "original_referrer_id", "comment": null}, "referral_type": {"type": "string", "index": 62, "name": "referral_type", "comment": null}, "referrer_owner_id": {"type": "string", "index": 63, "name": "referrer_owner_id", "comment": null}, "upsell_acv_in_usd": {"type": "double", "index": 64, "name": "upsell_acv_in_usd", "comment": null}, "loyalty_csm_upon_closed": {"type": "string", "index": 65, "name": "loyalty_csm_upon_closed", "comment": null}, "loyalty_csm_team_upon_closed": {"type": "string", "index": 66, "name": "loyalty_csm_team_upon_closed", "comment": null}, "ugc_csm_upon_closed": {"type": "string", "index": 67, "name": "ugc_csm_upon_closed", "comment": null}, "ugc_csm_team_upon_closed": {"type": "string", "index": 68, "name": "ugc_csm_team_upon_closed", "comment": null}, "primary_csm_upon_closed": {"type": "string", "index": 69, "name": "primary_csm_upon_closed", "comment": null}, "primary_csm_team_upon_closed": {"type": "string", "index": 70, "name": "primary_csm_team_upon_closed", "comment": null}, "sms_csm_upon_closed": {"type": "string", "index": 71, "name": "sms_csm_upon_closed", "comment": null}, "sms_csm_team_upon_closed": {"type": "string", "index": 72, "name": "sms_csm_team_upon_closed", "comment": null}, "cs_comp_paid_date": {"type": "date", "index": 73, "name": "cs_comp_paid_date", "comment": null}, "is_scsm_deal": {"type": "short", "index": 74, "name": "is_scsm_deal", "comment": null}, "contract_renewal_date": {"type": "date", "index": 75, "name": "contract_renewal_date", "comment": null}, "lost_reason": {"type": "string", "index": 76, "name": "lost_reason", "comment": null}, "lost_sub_reason": {"type": "string", "index": 77, "name": "lost_sub_reason", "comment": null}, "lost_reason_details": {"type": "string", "index": 78, "name": "lost_reason_details", "comment": null}, "lost_after_won_reason": {"type": "string", "index": 79, "name": "lost_after_won_reason", "comment": null}, "pre_opp_ht_product_list": {"type": "string", "index": 80, "name": "pre_opp_ht_product_list", "comment": null}, "sms_first_commitment_value": {"type": "double", "index": 81, "name": "sms_first_commitment_value", "comment": null}, "sms_second_commitment_value": {"type": "double", "index": 82, "name": "sms_second_commitment_value", "comment": null}, "renewal_to_opportunity_id": {"type": "string", "index": 83, "name": "renewal_to_opportunity_id", "comment": null}, "is_deleted": {"type": "short", "index": 84, "name": "is_deleted", "comment": null}, "created_date": {"type": "date", "index": 85, "name": "created_date", "comment": null}, "created_at": {"type": "timestamp", "index": 86, "name": "created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.analytics___salesforce_stg__mc_opportunity"}, "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_opportunity_field_history", "database": null, "comment": null, "owner": "root"}, "columns": {"sf_event_id": {"type": "string", "index": 0, "name": "sf_event_id", "comment": null}, "opportunity_id": {"type": "string", "index": 1, "name": "opportunity_id", "comment": null}, "created_by_sf_user_id": {"type": "string", "index": 2, "name": "created_by_sf_user_id", "comment": null}, "field_name": {"type": "string", "index": 3, "name": "field_name", "comment": null}, "old_value": {"type": "string", "index": 4, "name": "old_value", "comment": null}, "new_value": {"type": "string", "index": 5, "name": "new_value", "comment": null}, "data_type": {"type": "string", "index": 6, "name": "data_type", "comment": null}, "is_deleted": {"type": "short", "index": 7, "name": "is_deleted", "comment": null}, "created_date": {"type": "date", "index": 8, "name": "created_date", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"}, "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_opportunity_line_item", "database": null, "comment": null, "owner": "root"}, "columns": {"line_item_id": {"type": "string", "index": 0, "name": "line_item_id", "comment": null}, "opportunity_id": {"type": "string", "index": 1, "name": "opportunity_id", "comment": null}, "line_item_product": {"type": "string", "index": 2, "name": "line_item_product", "comment": null}, "line_item_plan": {"type": "string", "index": 3, "name": "line_item_plan", "comment": null}, "provisioned_plan_name": {"type": "string", "index": 4, "name": "provisioned_plan_name", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "last_modified_at": {"type": "timestamp", "index": 6, "name": "last_modified_at", "comment": null}, "zuora_product_rate_plan_id": {"type": "string", "index": 7, "name": "zuora_product_rate_plan_id", "comment": null}, "price_in_original_currency": {"type": "decimal(10,2)", "index": 8, "name": "price_in_original_currency", "comment": null}, "is_reviews": {"type": "short", "index": 9, "name": "is_reviews", "comment": null}, "is_vms": {"type": "short", "index": 10, "name": "is_vms", "comment": null}, "is_insights": {"type": "short", "index": 11, "name": "is_insights", "comment": null}, "is_loyalty": {"type": "short", "index": 12, "name": "is_loyalty", "comment": null}, "is_sms": {"type": "short", "index": 13, "name": "is_sms", "comment": null}, "is_subscriptions": {"type": "short", "index": 14, "name": "is_subscriptions", "comment": null}, "is_deleted": {"type": "short", "index": 15, "name": "is_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"}, "model.yoda.analytics___salesforce_stg__opportunity_full": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__opportunity_full", "database": null, "comment": null, "owner": "root"}, "columns": {"ACV_Expectancy__c": {"type": "double", "index": 0, "name": "ACV_Expectancy__c", "comment": null}, "ACV_USD__c": {"type": "double", "index": 1, "name": "ACV_USD__c", "comment": null}, "ACV__c": {"type": "double", "index": 2, "name": "ACV__c", "comment": null}, "AE_Forecast_Category__c": {"type": "string", "index": 3, "name": "AE_Forecast_Category__c", "comment": null}, "AM_Age__c": {"type": "double", "index": 4, "name": "AM_Age__c", "comment": null}, "APP_KEY_account__c": {"type": "string", "index": 5, "name": "APP_KEY_account__c", "comment": null}, "AR_Helper_Order_Exclusion__c": {"type": "double", "index": 6, "name": "AR_Helper_Order_Exclusion__c", "comment": null}, "AccountId": {"type": "string", "index": 7, "name": "AccountId", "comment": null}, "Account_Address_Valid__c": {"type": "boolean", "index": 8, "name": "Account_Address_Valid__c", "comment": null}, "Account_CSM_Super__c": {"type": "boolean", "index": 9, "name": "Account_CSM_Super__c", "comment": null}, "Account_Manager_Assignment_Date__c": {"type": "string", "index": 10, "name": "Account_Manager_Assignment_Date__c", "comment": null}, "Account_Master_Opp_Id__c": {"type": "string", "index": 11, "name": "Account_Master_Opp_Id__c", "comment": null}, "Account_Name_Formula__c": {"type": "string", "index": 12, "name": "Account_Name_Formula__c", "comment": null}, "Account_Name__c": {"type": "string", "index": 13, "name": "Account_Name__c", "comment": null}, "Account_Referrer__c": {"type": "string", "index": 14, "name": "Account_Referrer__c", "comment": null}, "Account_from_Opportunity__c": {"type": "string", "index": 15, "name": "Account_from_Opportunity__c", "comment": null}, "Account_in_Zuora__c": {"type": "boolean", "index": 16, "name": "Account_in_Zuora__c", "comment": null}, "ActivityMetricId": {"type": "string", "index": 17, "name": "ActivityMetricId", "comment": null}, "ActivityMetricRollupId": {"type": "string", "index": 18, "name": "ActivityMetricRollupId", "comment": null}, "Actual_Contract_Duration__c": {"type": "double", "index": 19, "name": "Actual_Contract_Duration__c", "comment": null}, "Actual_Duration_New__c": {"type": "double", "index": 20, "name": "Actual_Duration_New__c", "comment": null}, "Actual_End_Date_New__c": {"type": "string", "index": 21, "name": "Actual_End_Date_New__c", "comment": null}, "Actual_End_Date__c": {"type": "string", "index": 22, "name": "Actual_End_Date__c", "comment": null}, "Add_Auto_Renew_Clause__c": {"type": "boolean", "index": 23, "name": "Add_Auto_Renew_Clause__c", "comment": null}, "Add_On_Product__c": {"type": "string", "index": 24, "name": "Add_On_Product__c", "comment": null}, "Add_to_Winback_Process__c": {"type": "string", "index": 25, "name": "Add_to_Winback_Process__c", "comment": null}, "Added_Extra_Seats__c": {"type": "double", "index": 26, "name": "Added_Extra_Seats__c", "comment": null}, "Added_to_Lockdown_Process_Date__c": {"type": "string", "index": 27, "name": "Added_to_Lockdown_Process_Date__c", "comment": null}, "Additional_Context__c": {"type": "string", "index": 28, "name": "Additional_Context__c", "comment": null}, "Address_validation_needed__c": {"type": "boolean", "index": 29, "name": "Address_validation_needed__c", "comment": null}, "Agency_Involvement_Throughout_Deployment__c": {"type": "string", "index": 30, "name": "Agency_Involvement_Throughout_Deployment__c", "comment": null}, "Align_with_Original_Contract_Renewal__c": {"type": "string", "index": 31, "name": "Align_with_Original_Contract_Renewal__c", "comment": null}, "Amount": {"type": "double", "index": 32, "name": "Amount", "comment": null}, "Annual_Products__c": {"type": "string", "index": 33, "name": "Annual_Products__c", "comment": null}, "Annual_Reviews_for_Syndication__c": {"type": "double", "index": 34, "name": "Annual_Reviews_for_Syndication__c", "comment": null}, "Ask_to_Renew__c": {"type": "boolean", "index": 35, "name": "Ask_to_Renew__c", "comment": null}, "Attribution_Channel__c": {"type": "string", "index": 36, "name": "Attribution_Channel__c", "comment": null}, "Auto_Closed_by_AR__c": {"type": "boolean", "index": 37, "name": "Auto_Closed_by_AR__c", "comment": null}, "Auto_Renewal_Contact_Name__c": {"type": "string", "index": 38, "name": "Auto_Renewal_Contact_Name__c", "comment": null}, "Auto_Renewal_Customer_Choice__c": {"type": "string", "index": 39, "name": "Auto_Renewal_Customer_Choice__c", "comment": null}, "Auto_Renewal_Exclusion_Reason__c": {"type": "string", "index": 40, "name": "Auto_Renewal_Exclusion_Reason__c", "comment": null}, "Auto_Renewal_Request_Type__c": {"type": "string", "index": 41, "name": "Auto_Renewal_Request_Type__c", "comment": null}, "Bill_To__c": {"type": "string", "index": 42, "name": "Bill_To__c", "comment": null}, "Billing_Contract_Duration_Days__c": {"type": "double", "index": 43, "name": "Billing_Contract_Duration_Days__c", "comment": null}, "Billing_Frequency__c": {"type": "string", "index": 44, "name": "Billing_Frequency__c", "comment": null}, "Bundle_Total__c": {"type": "double", "index": 45, "name": "Bundle_Total__c", "comment": null}, "COVID_implications__c": {"type": "string", "index": 46, "name": "COVID_implications__c", "comment": null}, "CSM_Free_Months_Value__c": {"type": "double", "index": 47, "name": "CSM_Free_Months_Value__c", "comment": null}, "CSM_Owner_Role__c": {"type": "string", "index": 48, "name": "CSM_Owner_Role__c", "comment": null}, "CSM_Team_Leader__c": {"type": "string", "index": 49, "name": "CSM_Team_Leader__c", "comment": null}, "CS_Comp_Paid__c": {"type": "string", "index": 50, "name": "CS_Comp_Paid__c", "comment": null}, "CTP_Code__c": {"type": "string", "index": 51, "name": "CTP_Code__c", "comment": null}, "CampaignId": {"type": "string", "index": 52, "name": "CampaignId", "comment": null}, "Cancellation_Date__c": {"type": "string", "index": 53, "name": "Cancellation_Date__c", "comment": null}, "Cancelled_during_trial__c": {"type": "boolean", "index": 54, "name": "Cancelled_during_trial__c", "comment": null}, "Change_Currency_Flag__c": {"type": "boolean", "index": 55, "name": "Change_Currency_Flag__c", "comment": null}, "Client_s_Agency__c": {"type": "string", "index": 56, "name": "Client_s_Agency__c", "comment": null}, "CloseDate": {"type": "string", "index": 57, "name": "CloseDate", "comment": null}, "Close_Date_Day_Less_Than_Today_Day__c": {"type": "double", "index": 58, "name": "Close_Date_Day_Less_Than_Today_Day__c", "comment": null}, "Close_Date_Pushed__c": {"type": "double", "index": 59, "name": "Close_Date_Pushed__c", "comment": null}, "Close_Month__c": {"type": "string", "index": 60, "name": "Close_Month__c", "comment": null}, "Combined_Opportunities_EARR__c": {"type": "double", "index": 61, "name": "Combined_Opportunities_EARR__c", "comment": null}, "Commercial_Contact_Email__c": {"type": "string", "index": 62, "name": "Commercial_Contact_Email__c", "comment": null}, "Commercial_Contact__c": {"type": "string", "index": 63, "name": "Commercial_Contact__c", "comment": null}, "Company_Expansion__c": {"type": "boolean", "index": 64, "name": "Company_Expansion__c", "comment": null}, "Compelling_Event_del__c": {"type": "string", "index": 65, "name": "Compelling_Event_del__c", "comment": null}, "Concession_Reason__c": {"type": "string", "index": 66, "name": "Concession_Reason__c", "comment": null}, "Conga_CSM_Notes__c": {"type": "string", "index": 67, "name": "Conga_CSM_Notes__c", "comment": null}, "Conga_Culture_Currency__c": {"type": "string", "index": 68, "name": "Conga_Culture_Currency__c", "comment": null}, "Conga_Payment_Terms_Days__c": {"type": "double", "index": 69, "name": "Conga_Payment_Terms_Days__c", "comment": null}, "Conga_RemindIn__c": {"type": "double", "index": 70, "name": "Conga_RemindIn__c", "comment": null}, "Conga_Reminder__c": {"type": "double", "index": 71, "name": "Conga_Reminder__c", "comment": null}, "Conga_Seats_Info__c": {"type": "string", "index": 72, "name": "Conga_Seats_Info__c", "comment": null}, "ContactId": {"type": "string", "index": 73, "name": "ContactId", "comment": null}, "Contains_Dedicated_CSM__c": {"type": "string", "index": 74, "name": "Contains_Dedicated_CSM__c", "comment": null}, "ContractId": {"type": "string", "index": 75, "name": "ContractId", "comment": null}, "Contract_Duration_Days__c": {"type": "double", "index": 76, "name": "Contract_Duration_Days__c", "comment": null}, "Contract_Duration_Months__c": {"type": "double", "index": 77, "name": "Contract_Duration_Months__c", "comment": null}, "Contract_Duration__c": {"type": "string", "index": 78, "name": "Contract_Duration__c", "comment": null}, "Contract_Renewal_Date__c": {"type": "string", "index": 79, "name": "Contract_Renewal_Date__c", "comment": null}, "Contract_Renewal_Helpe_Number__c": {"type": "double", "index": 80, "name": "Contract_Renewal_Helpe_Number__c", "comment": null}, "Contract_Renewal_Helper_Number_Year__c": {"type": "double", "index": 81, "name": "Contract_Renewal_Helper_Number_Year__c", "comment": null}, "Contract_Renewal_Helper_Record_Type__c": {"type": "string", "index": 82, "name": "Contract_Renewal_Helper_Record_Type__c", "comment": null}, "Contract_Renewal_Manual__c": {"type": "string", "index": 83, "name": "Contract_Renewal_Manual__c", "comment": null}, "Conversion_Rate_Raw__c": {"type": "double", "index": 84, "name": "Conversion_Rate_Raw__c", "comment": null}, "Conversion_Rate__c": {"type": "double", "index": 85, "name": "Conversion_Rate__c", "comment": null}, "Converted__c": {"type": "boolean", "index": 86, "name": "Converted__c", "comment": null}, "Create_Date_Day_Less_Than_Today_Day__c": {"type": "double", "index": 87, "name": "Create_Date_Day_Less_Than_Today_Day__c", "comment": null}, "Create_Potential_Opportunity__c": {"type": "boolean", "index": 88, "name": "Create_Potential_Opportunity__c", "comment": null}, "CreatedById": {"type": "string", "index": 89, "name": "CreatedById", "comment": null}, "CreatedDate": {"type": "string", "index": 90, "name": "CreatedDate", "comment": null}, "Created_from_CS_Lead__c": {"type": "string", "index": 91, "name": "Created_from_CS_Lead__c", "comment": null}, "Critical_Event__c": {"type": "string", "index": 92, "name": "Critical_Event__c", "comment": null}, "CurrencyIsoCode": {"type": "string", "index": 93, "name": "CurrencyIsoCode", "comment": null}, "Current_ACV_For_Retention_USD_Loyalty__c": {"type": "double", "index": 94, "name": "Current_ACV_For_Retention_USD_Loyalty__c", "comment": null}, "Current_ACV_For_Retention_USD_SMS__c": {"type": "double", "index": 95, "name": "Current_ACV_For_Retention_USD_SMS__c", "comment": null}, "Current_ACV_For_Retention_USD_UGC__c": {"type": "double", "index": 96, "name": "Current_ACV_For_Retention_USD_UGC__c", "comment": null}, "Current_Contact_Role__c": {"type": "string", "index": 97, "name": "Current_Contact_Role__c", "comment": null}, "Current_Contract__c": {"type": "boolean", "index": 98, "name": "Current_Contract__c", "comment": null}, "Current_Usage_Commitment_Term_End_Date__c": {"type": "string", "index": 99, "name": "Current_Usage_Commitment_Term_End_Date__c", "comment": null}, "Current_Usage_Commitment_Term_Start_Date__c": {"type": "string", "index": 100, "name": "Current_Usage_Commitment_Term_Start_Date__c", "comment": null}, "Customer_Refund_Required__c": {"type": "string", "index": 101, "name": "Customer_Refund_Required__c", "comment": null}, "Date_Of_Converting_Nurturing_Email__c": {"type": "string", "index": 102, "name": "Date_Of_Converting_Nurturing_Email__c", "comment": null}, "Days_From_Last_Activity__c": {"type": "double", "index": 103, "name": "Days_From_Last_Activity__c", "comment": null}, "Days_In_Current_Stage__c": {"type": "double", "index": 104, "name": "Days_In_Current_Stage__c", "comment": null}, "Days_Until_Contract_Renewal__c": {"type": "double", "index": 105, "name": "Days_Until_Contract_Renewal__c", "comment": null}, "Days_in_Contract_Signed__c": {"type": "double", "index": 106, "name": "Days_in_Contract_Signed__c", "comment": null}, "Days_in_Contracting__c": {"type": "double", "index": 107, "name": "Days_in_Contracting__c", "comment": null}, "Days_in_Demo__c": {"type": "double", "index": 108, "name": "Days_in_Demo__c", "comment": null}, "Days_in_Discovery__c": {"type": "double", "index": 109, "name": "Days_in_Discovery__c", "comment": null}, "Days_in_Evaluation__c": {"type": "double", "index": 110, "name": "Days_in_Evaluation__c", "comment": null}, "Days_in_Propose__c": {"type": "double", "index": 111, "name": "Days_in_Propose__c", "comment": null}, "Days_in_SAL__c": {"type": "double", "index": 112, "name": "Days_in_SAL__c", "comment": null}, "Days_to_Start_Date__c": {"type": "double", "index": 113, "name": "Days_to_Start_Date__c", "comment": null}, "Deal_Type_Filter_GS__c": {"type": "string", "index": 114, "name": "Deal_Type_Filter_GS__c", "comment": null}, "Deal_Type__c": {"type": "string", "index": 115, "name": "Deal_Type__c", "comment": null}, "Deal_Type_as_per_Deal_Summary__c": {"type": "string", "index": 116, "name": "Deal_Type_as_per_Deal_Summary__c", "comment": null}, "Dealhub_Additional_comments__c": {"type": "string", "index": 117, "name": "Dealhub_Additional_comments__c", "comment": null}, "Dealhub_Custom_Terms__c": {"type": "string", "index": 118, "name": "Dealhub_Custom_Terms__c", "comment": null}, "Dealhub_Domain_List__c": {"type": "string", "index": 119, "name": "Dealhub_Domain_List__c", "comment": null}, "Dealhub_End_Date__c": {"type": "string", "index": 120, "name": "Dealhub_End_Date__c", "comment": null}, "Dealhub_Main_Add_on_Discount__c": {"type": "double", "index": 121, "name": "Dealhub_Main_Add_on_Discount__c", "comment": null}, "Dealhub_Main_Add_on_List_Price__c": {"type": "double", "index": 122, "name": "Dealhub_Main_Add_on_List_Price__c", "comment": null}, "Dealhub_Main_Add_on_Total_Price__c": {"type": "double", "index": 123, "name": "Dealhub_Main_Add_on_Total_Price__c", "comment": null}, "Dealhub_New_Address__c": {"type": "string", "index": 124, "name": "Dealhub_New_Address__c", "comment": null}, "Dealhub_Quote_ID__c": {"type": "string", "index": 125, "name": "Dealhub_Quote_ID__c", "comment": null}, "Dealhub_SalesAllowLegacy__c": {"type": "boolean", "index": 126, "name": "Dealhub_SalesAllowLegacy__c", "comment": null}, "Dealhub_Signed_Date__c": {"type": "string", "index": 127, "name": "Dealhub_Signed_Date__c", "comment": null}, "Dealhub_Stage__c": {"type": "string", "index": 128, "name": "Dealhub_Stage__c", "comment": null}, "Dealhub_Total_Seats__c": {"type": "double", "index": 129, "name": "Dealhub_Total_Seats__c", "comment": null}, "Dealhub_URL__c": {"type": "string", "index": 130, "name": "Dealhub_URL__c", "comment": null}, "Decision_Maker_Job_Title__c": {"type": "string", "index": 131, "name": "Decision_Maker_Job_Title__c", "comment": null}, "Decision__c": {"type": "string", "index": 132, "name": "Decision__c", "comment": null}, "Delayed_Start_Date_Approved_Partners__c": {"type": "string", "index": 133, "name": "Delayed_Start_Date_Approved_Partners__c", "comment": null}, "Delta_ACV_USD_Loyalty__c": {"type": "double", "index": 134, "name": "Delta_ACV_USD_Loyalty__c", "comment": null}, "Delta_ACV_USD_SMS__c": {"type": "double", "index": 135, "name": "Delta_ACV_USD_SMS__c", "comment": null}, "Delta_ACV_USD_UGC__c": {"type": "double", "index": 136, "name": "Delta_ACV_USD_UGC__c", "comment": null}, "Delta_Booking__c": {"type": "double", "index": 137, "name": "Delta_Booking__c", "comment": null}, "Delta_eARR__c": {"type": "double", "index": 138, "name": "Delta_eARR__c", "comment": null}, "Delta_eARR_Subscriptions__c": {"type": "double", "index": 139, "name": "Delta_eARR_Subscriptions__c", "comment": null}, "Deprovisioning_Outcome__c": {"type": "string", "index": 140, "name": "Deprovisioning_Outcome__c", "comment": null}, "Description": {"type": "string", "index": 141, "name": "Description", "comment": null}, "Discount__c": {"type": "double", "index": 142, "name": "Discount__c", "comment": null}, "Do_not_update_territory__c": {"type": "boolean", "index": 143, "name": "Do_not_update_territory__c", "comment": null}, "Don_t_Recalculate_eARR__c": {"type": "boolean", "index": 144, "name": "Don_t_Recalculate_eARR__c", "comment": null}, "Done_t_Send_Auto_Renewal_Notification__c": {"type": "boolean", "index": 145, "name": "Done_t_Send_Auto_Renewal_Notification__c", "comment": null}, "Downgraded_Package__c": {"type": "string", "index": 146, "name": "Downgraded_Package__c", "comment": null}, "Downgraded_package_price__c": {"type": "double", "index": 147, "name": "Downgraded_package_price__c", "comment": null}, "Duration_for_Free_Months_Scenario__c": {"type": "double", "index": 148, "name": "Duration_for_Free_Months_Scenario__c", "comment": null}, "Effective_Date_Free_months_SB__c": {"type": "string", "index": 149, "name": "Effective_Date_Free_months_SB__c", "comment": null}, "Effective_Date_Free_months__c": {"type": "string", "index": 150, "name": "Effective_Date_Free_months__c", "comment": null}, "Email_Intent__c": {"type": "boolean", "index": 151, "name": "Email_Intent__c", "comment": null}, "Email_Service_Provider_ESP__c": {"type": "string", "index": 152, "name": "Email_Service_Provider_ESP__c", "comment": null}, "End_Date_Finance__c": {"type": "string", "index": 153, "name": "End_Date_Finance__c", "comment": null}, "End_Date__c": {"type": "string", "index": 154, "name": "End_Date__c", "comment": null}, "End_Of_Contract_Extension_Days__c": {"type": "double", "index": 155, "name": "End_Of_Contract_Extension_Days__c", "comment": null}, "End_Of_Contract_Extension_Month__c": {"type": "string", "index": 156, "name": "End_Of_Contract_Extension_Month__c", "comment": null}, "End_of_Opt_out_Period__c": {"type": "string", "index": 157, "name": "End_of_Opt_out_Period__c", "comment": null}, "Entered_Closed__c": {"type": "string", "index": 158, "name": "Entered_Closed__c", "comment": null}, "Entered_Contract_Signed__c": {"type": "string", "index": 159, "name": "Entered_Contract_Signed__c", "comment": null}, "Entered_Contracting__c": {"type": "string", "index": 160, "name": "Entered_Contracting__c", "comment": null}, "Entered_Demo__c": {"type": "string", "index": 161, "name": "Entered_Demo__c", "comment": null}, "Entered_Discovery__c": {"type": "string", "index": 162, "name": "Entered_Discovery__c", "comment": null}, "Entered_Evaluation__c": {"type": "string", "index": 163, "name": "Entered_Evaluation__c", "comment": null}, "Entered_Propose__c": {"type": "string", "index": 164, "name": "Entered_Propose__c", "comment": null}, "Entered_Quote_Email_Sent__c": {"type": "string", "index": 165, "name": "Entered_Quote_Email_Sent__c", "comment": null}, "Entered_to_Auto_Renewal_Process_Date__c": {"type": "string", "index": 166, "name": "Entered_to_Auto_Renewal_Process_Date__c", "comment": null}, "Entered_to_Renewal_Assist_Process_Date__c": {"type": "string", "index": 167, "name": "Entered_to_Renewal_Assist_Process_Date__c", "comment": null}, "Enterprise_Lead__c": {"type": "boolean", "index": 168, "name": "Enterprise_Lead__c", "comment": null}, "Estimated_AOV__c": {"type": "double", "index": 169, "name": "Estimated_AOV__c", "comment": null}, "Estimated_Review_Requests_Per_Month__c": {"type": "double", "index": 170, "name": "Estimated_Review_Requests_Per_Month__c", "comment": null}, "Estimated_vs_Include_Review_Requests__c": {"type": "double", "index": 171, "name": "Estimated_vs_Include_Review_Requests__c", "comment": null}, "Exclude_From_Feedback_Process__c": {"type": "boolean", "index": 172, "name": "Exclude_From_Feedback_Process__c", "comment": null}, "Exclude_from_Auto_Renewal_Process__c": {"type": "boolean", "index": 173, "name": "Exclude_from_Auto_Renewal_Process__c", "comment": null}, "Exclude_from_No_Touch_Process__c": {"type": "boolean", "index": 174, "name": "Exclude_from_No_Touch_Process__c", "comment": null}, "Exclude_from_Renewal_Reminder__c": {"type": "boolean", "index": 175, "name": "Exclude_from_Renewal_Reminder__c", "comment": null}, "Excluded_from_COMP_on__c": {"type": "boolean", "index": 176, "name": "Excluded_from_COMP_on__c", "comment": null}, "ExpectedRevenue": {"type": "double", "index": 177, "name": "ExpectedRevenue", "comment": null}, "Expiration_Date__c": {"type": "string", "index": 178, "name": "Expiration_Date__c", "comment": null}, "Extra_Domain_Pricing__c": {"type": "double", "index": 179, "name": "Extra_Domain_Pricing__c", "comment": null}, "Fiscal": {"type": "string", "index": 180, "name": "Fiscal", "comment": null}, "FiscalQuarter": {"type": "long", "index": 181, "name": "FiscalQuarter", "comment": null}, "FiscalYear": {"type": "long", "index": 182, "name": "FiscalYear", "comment": null}, "Follow_Up_In__c": {"type": "string", "index": 183, "name": "Follow_Up_In__c", "comment": null}, "Follow_up_date_2__c": {"type": "string", "index": 184, "name": "Follow_up_date_2__c", "comment": null}, "ForecastCategory": {"type": "string", "index": 185, "name": "ForecastCategory", "comment": null}, "ForecastCategoryName": {"type": "string", "index": 186, "name": "ForecastCategoryName", "comment": null}, "Free_Months_for_Contract_Alignment__c": {"type": "string", "index": 187, "name": "Free_Months_for_Contract_Alignment__c", "comment": null}, "Free_period_charge_flag__c": {"type": "string", "index": 188, "name": "Free_period_charge_flag__c", "comment": null}, "Full_Duration_Of_Contract__c": {"type": "double", "index": 189, "name": "Full_Duration_Of_Contract__c", "comment": null}, "Gong__CurrentGenerators__c": {"type": "string", "index": 190, "name": "Gong__CurrentGenerators__c", "comment": null}, "Gong__DeliveryInstallationStatus__c": {"type": "string", "index": 191, "name": "Gong__DeliveryInstallationStatus__c", "comment": null}, "Gong__Gong_Count__c": {"type": "double", "index": 192, "name": "Gong__Gong_Count__c", "comment": null}, "Gong__MainCompetitors__c": {"type": "string", "index": 193, "name": "Gong__MainCompetitors__c", "comment": null}, "Gong__OrderNumber__c": {"type": "string", "index": 194, "name": "Gong__OrderNumber__c", "comment": null}, "Gong__TrackingNumber__c": {"type": "string", "index": 195, "name": "Gong__TrackingNumber__c", "comment": null}, "Good_Fit_for_the_Annual_Plan_Opp__c": {"type": "string", "index": 196, "name": "Good_Fit_for_the_Annual_Plan_Opp__c", "comment": null}, "HasOpenActivity": {"type": "boolean", "index": 197, "name": "HasOpenActivity", "comment": null}, "HasOpportunityLineItem": {"type": "boolean", "index": 198, "name": "HasOpportunityLineItem", "comment": null}, "HasOverdueTask": {"type": "boolean", "index": 199, "name": "HasOverdueTask", "comment": null}, "Hidden_Lost_Reason_Values_Renewal_Opp__c": {"type": "string", "index": 200, "name": "Hidden_Lost_Reason_Values_Renewal_Opp__c", "comment": null}, "Hidden_Lost_Reason_Values__c": {"type": "string", "index": 201, "name": "Hidden_Lost_Reason_Values__c", "comment": null}, "Hybrid_Deal_HT_SS__c": {"type": "boolean", "index": 202, "name": "Hybrid_Deal_HT_SS__c", "comment": null}, "Id": {"type": "string", "index": 203, "name": "Id", "comment": null}, "Ignore_Legacy__c": {"type": "boolean", "index": 204, "name": "Ignore_Legacy__c", "comment": null}, "Impact__c": {"type": "string", "index": 205, "name": "Impact__c", "comment": null}, "Import_Products_to_Dealhub__c": {"type": "string", "index": 206, "name": "Import_Products_to_Dealhub__c", "comment": null}, "Include_Exclude_from_Auto_Renewal_Link__c": {"type": "string", "index": 207, "name": "Include_Exclude_from_Auto_Renewal_Link__c", "comment": null}, "Include_Exclude_from_No_Touch_Link__c": {"type": "string", "index": 208, "name": "Include_Exclude_from_No_Touch_Link__c", "comment": null}, "Include_In_No_Touch_Process__c": {"type": "boolean", "index": 209, "name": "Include_In_No_Touch_Process__c", "comment": null}, "Include_MR__c": {"type": "boolean", "index": 210, "name": "Include_MR__c", "comment": null}, "Include_in_Auto_Renewal_Process__c": {"type": "boolean", "index": 211, "name": "Include_in_Auto_Renewal_Process__c", "comment": null}, "Included_Seats__c": {"type": "double", "index": 212, "name": "Included_Seats__c", "comment": null}, "Includes_SMS_Product__c": {"type": "boolean", "index": 213, "name": "Includes_SMS_Product__c", "comment": null}, "Includes_Self_Service_Product__c": {"type": "boolean", "index": 214, "name": "Includes_Self_Service_Product__c", "comment": null}, "Includes_Syndication__c": {"type": "boolean", "index": 215, "name": "Includes_Syndication__c", "comment": null}, "Inherited_Lead_Source__c": {"type": "string", "index": 216, "name": "Inherited_Lead_Source__c", "comment": null}, "Initial_Account_Product_Process__c": {"type": "boolean", "index": 217, "name": "Initial_Account_Product_Process__c", "comment": null}, "Initial_Relevant_CSM_Update__c": {"type": "boolean", "index": 218, "name": "Initial_Relevant_CSM_Update__c", "comment": null}, "Initiate_Contract_Renewal_Datafix__c": {"type": "boolean", "index": 219, "name": "Initiate_Contract_Renewal_Datafix__c", "comment": null}, "Initiate_Credit_Notification__c": {"type": "boolean", "index": 220, "name": "Initiate_Credit_Notification__c", "comment": null}, "Initiate_Renewal_Opportunity_Creation__c": {"type": "boolean", "index": 221, "name": "Initiate_Renewal_Opportunity_Creation__c", "comment": null}, "Initiate_Rev_Share_Process_Temp__c": {"type": "boolean", "index": 222, "name": "Initiate_Rev_Share_Process_Temp__c", "comment": null}, "Initiate_TCV_Flow__c": {"type": "boolean", "index": 223, "name": "Initiate_TCV_Flow__c", "comment": null}, "Initiate_deal_Type_Calculation__c": {"type": "boolean", "index": 224, "name": "Initiate_deal_Type_Calculation__c", "comment": null}, "Insights_Product_Name__c": {"type": "string", "index": 225, "name": "Insights_Product_Name__c", "comment": null}, "Intiate_GBP_Conversion_Rate_Fix__c": {"type": "boolean", "index": 226, "name": "Intiate_GBP_Conversion_Rate_Fix__c", "comment": null}, "Invoices_In_Dunning__c": {"type": "double", "index": 227, "name": "Invoices_In_Dunning__c", "comment": null}, "IsClosed": {"type": "boolean", "index": 228, "name": "IsClosed", "comment": null}, "IsDeleted": {"type": "boolean", "index": 229, "name": "IsDeleted", "comment": null}, "IsPrivate": {"type": "boolean", "index": 230, "name": "IsPrivate", "comment": null}, "IsWon": {"type": "boolean", "index": 231, "name": "IsWon", "comment": null}, "Is_Active_Subscription__c": {"type": "boolean", "index": 232, "name": "Is_Active_Subscription__c", "comment": null}, "Is_Bundle__c": {"type": "boolean", "index": 233, "name": "Is_Bundle__c", "comment": null}, "Is_this_a_downgrade_to_a_monthly_plan__c": {"type": "string", "index": 234, "name": "Is_this_a_downgrade_to_a_monthly_plan__c", "comment": null}, "Key_Agency_Stakeholder_Contact__c": {"type": "string", "index": 235, "name": "Key_Agency_Stakeholder_Contact__c", "comment": null}, "LAW_Reason__c": {"type": "string", "index": 236, "name": "LAW_Reason__c", "comment": null}, "L_R_Orders_Included_Yearly__c": {"type": "double", "index": 237, "name": "L_R_Orders_Included_Yearly__c", "comment": null}, "LastActivityDate": {"type": "string", "index": 238, "name": "LastActivityDate", "comment": null}, "LastAmountChangedHistoryId": {"type": "string", "index": 239, "name": "LastAmountChangedHistoryId", "comment": null}, "LastCloseDateChangedHistoryId": {"type": "string", "index": 240, "name": "LastCloseDateChangedHistoryId", "comment": null}, "LastModifiedById": {"type": "string", "index": 241, "name": "LastModifiedById", "comment": null}, "LastModifiedDate": {"type": "string", "index": 242, "name": "LastModifiedDate", "comment": null}, "LastReferencedDate": {"type": "string", "index": 243, "name": "LastReferencedDate", "comment": null}, "LastStageChangeDate": {"type": "string", "index": 244, "name": "LastStageChangeDate", "comment": null}, "LastViewedDate": {"type": "string", "index": 245, "name": "LastViewedDate", "comment": null}, "Last_Activity_Date__c": {"type": "string", "index": 246, "name": "Last_Activity_Date__c", "comment": null}, "Last_Invoice_End_Date__c": {"type": "string", "index": 247, "name": "Last_Invoice_End_Date__c", "comment": null}, "Last_Invoice_Fully_Paid__c": {"type": "boolean", "index": 248, "name": "Last_Invoice_Fully_Paid__c", "comment": null}, "Last_Paid_Service_Date__c": {"type": "string", "index": 249, "name": "Last_Paid_Service_Date__c", "comment": null}, "LeadSource": {"type": "string", "index": 250, "name": "LeadSource", "comment": null}, "Lead_ID__c": {"type": "string", "index": 251, "name": "Lead_ID__c", "comment": null}, "Lead_Source_Desscription__c": {"type": "string", "index": 252, "name": "Lead_Source_Desscription__c", "comment": null}, "Legal_Entity__c": {"type": "string", "index": 253, "name": "Legal_Entity__c", "comment": null}, "Locked_Account__c": {"type": "boolean", "index": 254, "name": "Locked_Account__c", "comment": null}, "Loss_Reason_LR__c": {"type": "string", "index": 255, "name": "Loss_Reason_LR__c", "comment": null}, "Loss_Reason_Reviews__c": {"type": "string", "index": 256, "name": "Loss_Reason_Reviews__c", "comment": null}, "Loss_Reason_SMS__c": {"type": "string", "index": 257, "name": "Loss_Reason_SMS__c", "comment": null}, "Loss_Reason_Subscription__c": {"type": "string", "index": 258, "name": "Loss_Reason_Subscription__c", "comment": null}, "Loss_Reason_VMS__c": {"type": "string", "index": 259, "name": "Loss_Reason_VMS__c", "comment": null}, "Loss_to_Syndication__c": {"type": "boolean", "index": 260, "name": "Loss_to_Syndication__c", "comment": null}, "Lost_Details_Update_Date__c": {"type": "string", "index": 261, "name": "Lost_Details_Update_Date__c", "comment": null}, "Lost_Main_Products__c": {"type": "string", "index": 262, "name": "Lost_Main_Products__c", "comment": null}, "Lost_Opps_Products_Considered__c": {"type": "string", "index": 263, "name": "Lost_Opps_Products_Considered__c", "comment": null}, "Lost_Sub_Reason__c": {"type": "string", "index": 264, "name": "Lost_Sub_Reason__c", "comment": null}, "Lost_updated_through_Flow__c": {"type": "boolean", "index": 265, "name": "Lost_updated_through_Flow__c", "comment": null}, "Loyalty_And_Referrals_Competitors__c": {"type": "string", "index": 266, "name": "Loyalty_And_Referrals_Competitors__c", "comment": null}, "Loyalty_CSM_Team_Upon_Closed__c": {"type": "string", "index": 267, "name": "Loyalty_CSM_Team_Upon_Closed__c", "comment": null}, "Loyalty_CSM_Upon_Closed_Won__c": {"type": "string", "index": 268, "name": "Loyalty_CSM_Upon_Closed_Won__c", "comment": null}, "MCV__c": {"type": "double", "index": 269, "name": "MCV__c", "comment": null}, "MM_Renewal_Notification__c": {"type": "boolean", "index": 270, "name": "MM_Renewal_Notification__c", "comment": null}, "MRR__c": {"type": "double", "index": 271, "name": "MRR__c", "comment": null}, "MSA_Type__c": {"type": "string", "index": 272, "name": "MSA_Type__c", "comment": null}, "Main_CSM__c": {"type": "string", "index": 273, "name": "Main_CSM__c", "comment": null}, "Main_Package_Discount__c": {"type": "double", "index": 274, "name": "Main_Package_Discount__c", "comment": null}, "Main_Package_Prodcut__c": {"type": "string", "index": 275, "name": "Main_Package_Prodcut__c", "comment": null}, "Main_Product_Families__c": {"type": "string", "index": 276, "name": "Main_Product_Families__c", "comment": null}, "Manual_Team_Attribution__c": {"type": "boolean", "index": 277, "name": "Manual_Team_Attribution__c", "comment": null}, "Mark_as_Master__c": {"type": "string", "index": 278, "name": "Mark_as_Master__c", "comment": null}, "Memo__c": {"type": "string", "index": 279, "name": "Memo__c", "comment": null}, "Merge_to_Opportunity__c": {"type": "string", "index": 280, "name": "Merge_to_Opportunity__c", "comment": null}, "Merged_Contract__c": {"type": "boolean", "index": 281, "name": "Merged_Contract__c", "comment": null}, "Mid_Market_Pricing_Tier__c": {"type": "string", "index": 282, "name": "Mid_Market_Pricing_Tier__c", "comment": null}, "Migration_From_Monthly__c": {"type": "string", "index": 283, "name": "Migration_From_Monthly__c", "comment": null}, "Monthly_Budget__c": {"type": "string", "index": 284, "name": "Monthly_Budget__c", "comment": null}, "Most_Recent_Assignment_Bucket__c": {"type": "string", "index": 285, "name": "Most_Recent_Assignment_Bucket__c", "comment": null}, "Most_Recent_Assignment_Date__c": {"type": "string", "index": 286, "name": "Most_Recent_Assignment_Date__c", "comment": null}, "Most_Recent_Assignment_Reason__c": {"type": "string", "index": 287, "name": "Most_Recent_Assignment_Reason__c", "comment": null}, "Most_Recent_Assignment_Sub_Reason__c": {"type": "string", "index": 288, "name": "Most_Recent_Assignment_Sub_Reason__c", "comment": null}, "Must_Win__c": {"type": "boolean", "index": 289, "name": "Must_Win__c", "comment": null}, "My_Opp_SDR__c": {"type": "boolean", "index": 290, "name": "My_Opp_SDR__c", "comment": null}, "Name": {"type": "string", "index": 291, "name": "Name", "comment": null}, "New_ACV_Swell__c": {"type": "double", "index": 292, "name": "New_ACV_Swell__c", "comment": null}, "New_ACV_USD__c": {"type": "double", "index": 293, "name": "New_ACV_USD__c", "comment": null}, "New_ACV_Yotpo__c": {"type": "double", "index": 294, "name": "New_ACV_Yotpo__c", "comment": null}, "New_ACV__c": {"type": "double", "index": 295, "name": "New_ACV__c", "comment": null}, "NextStep": {"type": "string", "index": 296, "name": "NextStep", "comment": null}, "Next_Contact_Date__c": {"type": "string", "index": 297, "name": "Next_Contact_Date__c", "comment": null}, "Next_Contact_Type__c": {"type": "string", "index": 298, "name": "Next_Contact_Type__c", "comment": null}, "Next_Invoice_Start_Date_For_Free_Month__c": {"type": "string", "index": 299, "name": "Next_Invoice_Start_Date_For_Free_Month__c", "comment": null}, "Next_Invoice_Start_Date__c": {"type": "string", "index": 300, "name": "Next_Invoice_Start_Date__c", "comment": null}, "Next_Rounded_Months_From_Start_Date__c": {"type": "string", "index": 301, "name": "Next_Rounded_Months_From_Start_Date__c", "comment": null}, "No_Dedicated_CSM__c": {"type": "double", "index": 302, "name": "No_Dedicated_CSM__c", "comment": null}, "No_Touch_Exclusion_Reason__c": {"type": "string", "index": 303, "name": "No_Touch_Exclusion_Reason__c", "comment": null}, "No_Touch_Notification_Date__c": {"type": "string", "index": 304, "name": "No_Touch_Notification_Date__c", "comment": null}, "Num_of_Extra_Domain_Products__c": {"type": "double", "index": 305, "name": "Num_of_Extra_Domain_Products__c", "comment": null}, "Number_of_Add_Ons__c": {"type": "double", "index": 306, "name": "Number_of_Add_Ons__c", "comment": null}, "Number_of_Extra_Domains__c": {"type": "double", "index": 307, "name": "Number_of_Extra_Domains__c", "comment": null}, "Number_of_Insights_Products__c": {"type": "double", "index": 308, "name": "Number_of_Insights_Products__c", "comment": null}, "Number_of_Main_Products__c": {"type": "double", "index": 309, "name": "Number_of_Main_Products__c", "comment": null}, "Number_of_Professional_Services__c": {"type": "double", "index": 310, "name": "Number_of_Professional_Services__c", "comment": null}, "Number_of_Trial_Products__c": {"type": "double", "index": 311, "name": "Number_of_Trial_Products__c", "comment": null}, "Number_of_Whitelabel_Products__c": {"type": "double", "index": 312, "name": "Number_of_Whitelabel_Products__c", "comment": null}, "Omnichannel_Deal__c": {"type": "boolean", "index": 313, "name": "Omnichannel_Deal__c", "comment": null}, "Opp_ID_18_Digit__c": {"type": "string", "index": 314, "name": "Opp_ID_18_Digit__c", "comment": null}, "Opp_Products_Contain_Discount__c": {"type": "double", "index": 315, "name": "Opp_Products_Contain_Discount__c", "comment": null}, "Opportunity_Age__c": {"type": "double", "index": 316, "name": "Opportunity_Age__c", "comment": null}, "Opportunity_Alert__c": {"type": "string", "index": 317, "name": "Opportunity_Alert__c", "comment": null}, "Opportunity_Assignment__c": {"type": "string", "index": 318, "name": "Opportunity_Assignment__c", "comment": null}, "Opportunity_Count__c": {"type": "double", "index": 319, "name": "Opportunity_Count__c", "comment": null}, "Opportunity_Insights_Total_Amount__c": {"type": "double", "index": 320, "name": "Opportunity_Insights_Total_Amount__c", "comment": null}, "Opportunity_Loyalty_Total_Amount__c": {"type": "double", "index": 321, "name": "Opportunity_Loyalty_Total_Amount__c", "comment": null}, "Opportunity_Reviews_Total_Amount__c": {"type": "double", "index": 322, "name": "Opportunity_Reviews_Total_Amount__c", "comment": null}, "Opportunity_SMS_Total_Amount__c": {"type": "double", "index": 323, "name": "Opportunity_SMS_Total_Amount__c", "comment": null}, "Opportunity_VMS_Total_Amount__c": {"type": "double", "index": 324, "name": "Opportunity_VMS_Total_Amount__c", "comment": null}, "Opt_out_Clause__c": {"type": "boolean", "index": 325, "name": "Opt_out_Clause__c", "comment": null}, "Optout_Duration__c": {"type": "double", "index": 326, "name": "Optout_Duration__c", "comment": null}, "Order_Comments__c": {"type": "string", "index": 327, "name": "Order_Comments__c", "comment": null}, "Order_Internal_Comments__c": {"type": "string", "index": 328, "name": "Order_Internal_Comments__c", "comment": null}, "Orders_Included_L_R__c": {"type": "double", "index": 329, "name": "Orders_Included_L_R__c", "comment": null}, "Orders_Included__c": {"type": "double", "index": 330, "name": "Orders_Included__c", "comment": null}, "Original_Curation_Provider__c": {"type": "string", "index": 331, "name": "Original_Curation_Provider__c", "comment": null}, "Original_IAP_Tier__c": {"type": "string", "index": 332, "name": "Original_IAP_Tier__c", "comment": null}, "Original_Loyalty_Referral_Provider_M__c": {"type": "string", "index": 333, "name": "Original_Loyalty_Referral_Provider_M__c", "comment": null}, "Original_Owner_Role__c": {"type": "string", "index": 334, "name": "Original_Owner_Role__c", "comment": null}, "Original_Referrer_Owner__c": {"type": "string", "index": 335, "name": "Original_Referrer_Owner__c", "comment": null}, "Original_Referrer__c": {"type": "string", "index": 336, "name": "Original_Referrer__c", "comment": null}, "Original_Referrer_text__c": {"type": "string", "index": 337, "name": "Original_Referrer_text__c", "comment": null}, "Original_Review_Provider__c": {"type": "string", "index": 338, "name": "Original_Review_Provider__c", "comment": null}, "Original_SDR_Role__c": {"type": "string", "index": 339, "name": "Original_SDR_Role__c", "comment": null}, "Other__c": {"type": "string", "index": 340, "name": "Other__c", "comment": null}, "Overlay_AE__c": {"type": "string", "index": 341, "name": "Overlay_AE__c", "comment": null}, "OwnerId": {"type": "string", "index": 342, "name": "OwnerId", "comment": null}, "Owner_Manager_Email__c": {"type": "string", "index": 343, "name": "Owner_Manager_Email__c", "comment": null}, "Owner_Role_Custom__c": {"type": "string", "index": 344, "name": "Owner_Role_Custom__c", "comment": null}, "Owns_By_Group__c": {"type": "string", "index": 345, "name": "Owns_By_Group__c", "comment": null}, "POS_Provider__c": {"type": "string", "index": 346, "name": "POS_Provider__c", "comment": null}, "PS_Cost__c": {"type": "double", "index": 347, "name": "PS_Cost__c", "comment": null}, "PS_Products_Flag__c": {"type": "boolean", "index": 348, "name": "PS_Products_Flag__c", "comment": null}, "Package_Category__c": {"type": "string", "index": 349, "name": "Package_Category__c", "comment": null}, "Package__c": {"type": "string", "index": 350, "name": "Package__c", "comment": null}, "Pain__c": {"type": "string", "index": 351, "name": "Pain__c", "comment": null}, "Parent_Account_Billing__c": {"type": "string", "index": 352, "name": "Parent_Account_Billing__c", "comment": null}, "Parent_Account__c": {"type": "string", "index": 353, "name": "Parent_Account__c", "comment": null}, "PartnerAccountId": {"type": "string", "index": 354, "name": "PartnerAccountId", "comment": null}, "Partner_Commission_Percentage__c": {"type": "string", "index": 355, "name": "Partner_Commission_Percentage__c", "comment": null}, "Partner_Involvement_in_Onboarding__c": {"type": "string", "index": 356, "name": "Partner_Involvement_in_Onboarding__c", "comment": null}, "Partner_Referral_Referrer_Type__c": {"type": "string", "index": 357, "name": "Partner_Referral_Referrer_Type__c", "comment": null}, "Partner_Referral__c": {"type": "string", "index": 358, "name": "Partner_Referral__c", "comment": null}, "Partner_Upsell__c": {"type": "boolean", "index": 359, "name": "Partner_Upsell__c", "comment": null}, "Partner_referral_text__c": {"type": "string", "index": 360, "name": "Partner_referral_text__c", "comment": null}, "Per_Installment__c": {"type": "double", "index": 361, "name": "Per_Installment__c", "comment": null}, "Platform__c": {"type": "string", "index": 362, "name": "Platform__c", "comment": null}, "Pre_Lost_Status__c": {"type": "string", "index": 363, "name": "Pre_Lost_Status__c", "comment": null}, "Prevent_Sync__c": {"type": "boolean", "index": 364, "name": "Prevent_Sync__c", "comment": null}, "Prevent_downgrading__c": {"type": "boolean", "index": 365, "name": "Prevent_downgrading__c", "comment": null}, "Previous_ACV_USD_Loyalty__c": {"type": "double", "index": 366, "name": "Previous_ACV_USD_Loyalty__c", "comment": null}, "Previous_ACV_USD_SMS__c": {"type": "double", "index": 367, "name": "Previous_ACV_USD_SMS__c", "comment": null}, "Previous_ACV_USD_UGC__c": {"type": "double", "index": 368, "name": "Previous_ACV_USD_UGC__c", "comment": null}, "Previous_Opp_Package__c": {"type": "string", "index": 369, "name": "Previous_Opp_Package__c", "comment": null}, "Previous_Opp_Total_Discount__c": {"type": "double", "index": 370, "name": "Previous_Opp_Total_Discount__c", "comment": null}, "Price_Per_Installment_USD__c": {"type": "double", "index": 371, "name": "Price_Per_Installment_USD__c", "comment": null}, "Price_per_Installment__c": {"type": "double", "index": 372, "name": "Price_per_Installment__c", "comment": null}, "Pricebook2Id": {"type": "string", "index": 373, "name": "Pricebook2Id", "comment": null}, "Primary_CSM_Team_Upon_Closed__c": {"type": "string", "index": 374, "name": "Primary_CSM_Team_Upon_Closed__c", "comment": null}, "Primary_CSM_Upon_Closed__c": {"type": "string", "index": 375, "name": "Primary_CSM_Upon_Closed__c", "comment": null}, "Probability": {"type": "double", "index": 376, "name": "Probability", "comment": null}, "Product_Interest__c": {"type": "string", "index": 377, "name": "Product_Interest__c", "comment": null}, "Purchase_Order_Expiration_Date__c": {"type": "string", "index": 378, "name": "Purchase_Order_Expiration_Date__c", "comment": null}, "Purchase_Order_Number__c": {"type": "string", "index": 379, "name": "Purchase_Order_Number__c", "comment": null}, "Purchased_as_MR__c": {"type": "boolean", "index": 380, "name": "Purchased_as_MR__c", "comment": null}, "Push_as_New_Sale__c": {"type": "boolean", "index": 381, "name": "Push_as_New_Sale__c", "comment": null}, "Recalculate_Deal_Type__c": {"type": "boolean", "index": 382, "name": "Recalculate_Deal_Type__c", "comment": null}, "Recent_Source__c": {"type": "string", "index": 383, "name": "Recent_Source__c", "comment": null}, "RecordTypeId": {"type": "string", "index": 384, "name": "RecordTypeId", "comment": null}, "Record_Type_Name__c": {"type": "string", "index": 385, "name": "Record_Type_Name__c", "comment": null}, "Referral_Date__c": {"type": "string", "index": 386, "name": "Referral_Date__c", "comment": null}, "Referral_Type__c": {"type": "string", "index": 387, "name": "Referral_Type__c", "comment": null}, "Referrer_Owner__c": {"type": "string", "index": 388, "name": "Referrer_Owner__c", "comment": null}, "Relevant_App_keys_for_SMS__c": {"type": "string", "index": 389, "name": "Relevant_App_keys_for_SMS__c", "comment": null}, "Relevant_CSM_Id_Helper__c": {"type": "string", "index": 390, "name": "Relevant_CSM_Id_Helper__c", "comment": null}, "Relevant_CSM_for_CS_Outreach_First_Name__c": {"type": "string", "index": 391, "name": "Relevant_CSM_for_CS_Outreach_First_Name__c", "comment": null}, "Relevant_CSM_for_CS_Outreach__c": {"type": "string", "index": 392, "name": "Relevant_CSM_for_CS_Outreach__c", "comment": null}, "Remove_Auto_Renew_Clause__c": {"type": "boolean", "index": 393, "name": "Remove_Auto_Renew_Clause__c", "comment": null}, "Remove_from_AL_Process__c": {"type": "boolean", "index": 394, "name": "Remove_from_AL_Process__c", "comment": null}, "Remove_from_NT_Process__c": {"type": "string", "index": 395, "name": "Remove_from_NT_Process__c", "comment": null}, "Remove_from_No_Touch__c": {"type": "string", "index": 396, "name": "Remove_from_No_Touch__c", "comment": null}, "Renewal_Opportunity_Package__c": {"type": "string", "index": 397, "name": "Renewal_Opportunity_Package__c", "comment": null}, "Renewal_Opportunity__c": {"type": "string", "index": 398, "name": "Renewal_Opportunity__c", "comment": null}, "Renewal_To_Opp_Won_Sale__c": {"type": "boolean", "index": 399, "name": "Renewal_To_Opp_Won_Sale__c", "comment": null}, "Requested_Feature__c": {"type": "string", "index": 400, "name": "Requested_Feature__c", "comment": null}, "Retention_CSM_Free_Days__c": {"type": "double", "index": 401, "name": "Retention_CSM_Free_Days__c", "comment": null}, "Retention_CSM_Free_Months_Reason__c": {"type": "string", "index": 402, "name": "Retention_CSM_Free_Months_Reason__c", "comment": null}, "Retention_CSM_Free_Months__c": {"type": "string", "index": 403, "name": "Retention_CSM_Free_Months__c", "comment": null}, "Retention_Goal_by_viewer__c": {"type": "double", "index": 404, "name": "Retention_Goal_by_viewer__c", "comment": null}, "Rev_Share_Rate__c": {"type": "string", "index": 405, "name": "Rev_Share_Rate__c", "comment": null}, "Reviews_Annual_Included_Orders__c": {"type": "double", "index": 406, "name": "Reviews_Annual_Included_Orders__c", "comment": null}, "Reviews_CSM_Team_Upon_Closed__c": {"type": "string", "index": 407, "name": "Reviews_CSM_Team_Upon_Closed__c", "comment": null}, "Reviews_CSM_Upon_Closed__c": {"type": "string", "index": 408, "name": "Reviews_CSM_Upon_Closed__c", "comment": null}, "Reviews_Competitor_Price__c": {"type": "string", "index": 409, "name": "Reviews_Competitor_Price__c", "comment": null}, "Reviews_Competitor__c": {"type": "string", "index": 410, "name": "Reviews_Competitor__c", "comment": null}, "Run_PB2__c": {"type": "boolean", "index": 411, "name": "Run_PB2__c", "comment": null}, "Run_PB__c": {"type": "boolean", "index": 412, "name": "Run_PB__c", "comment": null}, "SAAS_Amount__c": {"type": "double", "index": 413, "name": "SAAS_Amount__c", "comment": null}, "SAAS_CSMS_teams_upon_closed__c": {"type": "string", "index": 414, "name": "SAAS_CSMS_teams_upon_closed__c", "comment": null}, "SAAS_CSMS_upon_closed__c": {"type": "string", "index": 415, "name": "SAAS_CSMS_upon_closed__c", "comment": null}, "SAAS_Extra_Domain_w_Disc__c": {"type": "double", "index": 416, "name": "SAAS_Extra_Domain_w_Disc__c", "comment": null}, "SAAS_WL_Amount__c": {"type": "double", "index": 417, "name": "SAAS_WL_Amount__c", "comment": null}, "SAL_MTD__c": {"type": "boolean", "index": 418, "name": "SAL_MTD__c", "comment": null}, "SAL__c": {"type": "boolean", "index": 419, "name": "SAL__c", "comment": null}, "SCSM_Deal__c": {"type": "boolean", "index": 420, "name": "SCSM_Deal__c", "comment": null}, "SDR_ID__c": {"type": "string", "index": 421, "name": "SDR_ID__c", "comment": null}, "SDR_Lookup__c": {"type": "string", "index": 422, "name": "SDR_Lookup__c", "comment": null}, "SDR_Role__c": {"type": "string", "index": 423, "name": "SDR_Role__c", "comment": null}, "SDR_Role_old__c": {"type": "string", "index": 424, "name": "SDR_Role_old__c", "comment": null}, "SDR__c": {"type": "string", "index": 425, "name": "SDR__c", "comment": null}, "SLA_Status__c": {"type": "string", "index": 426, "name": "SLA_Status__c", "comment": null}, "SMS_ACV__c": {"type": "double", "index": 427, "name": "SMS_ACV__c", "comment": null}, "SMS_CSM_Team_Upon_Closed__c": {"type": "string", "index": 428, "name": "SMS_CSM_Team_Upon_Closed__c", "comment": null}, "SMS_CSM_Upon_Closed__c": {"type": "string", "index": 429, "name": "SMS_CSM_Upon_Closed__c", "comment": null}, "SMS_Commitment_Term__c": {"type": "string", "index": 430, "name": "SMS_Commitment_Term__c", "comment": null}, "SMS_Commitment_Value__c": {"type": "double", "index": 431, "name": "SMS_Commitment_Value__c", "comment": null}, "SMS_Second_Commitment_Value__c": {"type": "double", "index": 432, "name": "SMS_Second_Commitment_Value__c", "comment": null}, "SMS_Usage_Cancellation_Date__c": {"type": "string", "index": 433, "name": "SMS_Usage_Cancellation_Date__c", "comment": null}, "SQL_Assignment__c": {"type": "string", "index": 434, "name": "SQL_Assignment__c", "comment": null}, "SQL_MTD__c": {"type": "boolean", "index": 435, "name": "SQL_MTD__c", "comment": null}, "SalesLoft1__Most_Recent_Cadence_Name__c": {"type": "string", "index": 436, "name": "SalesLoft1__Most_Recent_Cadence_Name__c", "comment": null}, "SalesLoft1__Most_Recent_Last_Completed_Step__c": {"type": "double", "index": 437, "name": "SalesLoft1__Most_Recent_Last_Completed_Step__c", "comment": null}, "SalesLoft1__Primary_Contact__c": {"type": "string", "index": 438, "name": "SalesLoft1__Primary_Contact__c", "comment": null}, "Sales_Accepted_Date__c": {"type": "string", "index": 439, "name": "Sales_Accepted_Date__c", "comment": null}, "Sales_Demo_Feedback__c": {"type": "string", "index": 440, "name": "Sales_Demo_Feedback__c", "comment": null}, "Sales_Enginieer__c": {"type": "string", "index": 441, "name": "Sales_Enginieer__c", "comment": null}, "Sales_Estimated_Monthly_Orders__c": {"type": "string", "index": 442, "name": "Sales_Estimated_Monthly_Orders__c", "comment": null}, "Sales_Estimated_Subscribers__c": {"type": "string", "index": 443, "name": "Sales_Estimated_Subscribers__c", "comment": null}, "Sales_Free_Months_Value__c": {"type": "double", "index": 444, "name": "Sales_Free_Months_Value__c", "comment": null}, "Sales_Region__c": {"type": "string", "index": 445, "name": "Sales_Region__c", "comment": null}, "Sales_Segment__c": {"type": "string", "index": 446, "name": "Sales_Segment__c", "comment": null}, "Sales_Segment_old__c": {"type": "string", "index": 447, "name": "Sales_Segment_old__c", "comment": null}, "Secondary_Sales_Engineer__c": {"type": "string", "index": 448, "name": "Secondary_Sales_Engineer__c", "comment": null}, "Secondary_Seller_Role__c": {"type": "string", "index": 449, "name": "Secondary_Seller_Role__c", "comment": null}, "Secondary_Seller__c": {"type": "string", "index": 450, "name": "Secondary_Seller__c", "comment": null}, "Segment_for_BI__c": {"type": "string", "index": 451, "name": "Segment_for_BI__c", "comment": null}, "Selected_Product_ID_Conversion__c": {"type": "string", "index": 452, "name": "Selected_Product_ID_Conversion__c", "comment": null}, "Selected_Product_for_Lead_Conversion__c": {"type": "string", "index": 453, "name": "Selected_Product_for_Lead_Conversion__c", "comment": null}, "Show_Discount_Percentage__c": {"type": "string", "index": 454, "name": "Show_Discount_Percentage__c", "comment": null}, "Signed_with_Auto_Renewal_Clause__c": {"type": "boolean", "index": 455, "name": "Signed_with_Auto_Renewal_Clause__c", "comment": null}, "Situation__c": {"type": "string", "index": 456, "name": "Situation__c", "comment": null}, "StageName": {"type": "string", "index": 457, "name": "StageName", "comment": null}, "Standalone_Insights__c": {"type": "string", "index": 458, "name": "Standalone_Insights__c", "comment": null}, "Start_Date_Difference_Today__c": {"type": "boolean", "index": 459, "name": "Start_Date_Difference_Today__c", "comment": null}, "Start_Date_Week_Day_Name__c": {"type": "string", "index": 460, "name": "Start_Date_Week_Day_Name__c", "comment": null}, "Start_Date__c": {"type": "string", "index": 461, "name": "Start_Date__c", "comment": null}, "Start_Paid_Service_Date__c": {"type": "string", "index": 462, "name": "Start_Paid_Service_Date__c", "comment": null}, "Strategic_Investment__c": {"type": "string", "index": 463, "name": "Strategic_Investment__c", "comment": null}, "Submitted_Ads_LP_form__c": {"type": "boolean", "index": 464, "name": "Submitted_Ads_LP_form__c", "comment": null}, "Subscription_Number__c": {"type": "string", "index": 465, "name": "Subscription_Number__c", "comment": null}, "Sum_of_Sales_price__c": {"type": "double", "index": 466, "name": "Sum_of_Sales_price__c", "comment": null}, "Swell_ACV__c": {"type": "double", "index": 467, "name": "Swell_ACV__c", "comment": null}, "Swell_Orders__c": {"type": "double", "index": 468, "name": "Swell_Orders__c", "comment": null}, "SyncedQuoteId": {"type": "string", "index": 469, "name": "SyncedQuoteId", "comment": null}, "Syndication_Domains__c": {"type": "string", "index": 470, "name": "Syndication_Domains__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 471, "name": "SystemModstamp", "comment": null}, "TCV__c": {"type": "double", "index": 472, "name": "TCV__c", "comment": null}, "Talk_to_CSM__c": {"type": "boolean", "index": 473, "name": "Talk_to_CSM__c", "comment": null}, "Technical_Contact_Email__c": {"type": "string", "index": 474, "name": "Technical_Contact_Email__c", "comment": null}, "Technical_Contact_First_Name__c": {"type": "string", "index": 475, "name": "Technical_Contact_First_Name__c", "comment": null}, "Technical_Contact_Last_Name__c": {"type": "string", "index": 476, "name": "Technical_Contact_Last_Name__c", "comment": null}, "Technical_Contact_Phone__c": {"type": "string", "index": 477, "name": "Technical_Contact_Phone__c", "comment": null}, "Template_ID_TEST__c": {"type": "string", "index": 478, "name": "Template_ID_TEST__c", "comment": null}, "Template_ID__c": {"type": "string", "index": 479, "name": "Template_ID__c", "comment": null}, "Temporary_AR_process_Include__c": {"type": "boolean", "index": 480, "name": "Temporary_AR_process_Include__c", "comment": null}, "Territory_New__c": {"type": "string", "index": 481, "name": "Territory_New__c", "comment": null}, "Tertiary_Seller__c": {"type": "string", "index": 482, "name": "Tertiary_Seller__c", "comment": null}, "Test_Account__c": {"type": "boolean", "index": 483, "name": "Test_Account__c", "comment": null}, "Time_of_AM_Ownership__c": {"type": "string", "index": 484, "name": "Time_of_AM_Ownership__c", "comment": null}, "Time_willing_to_commit_of_months__c": {"type": "string", "index": 485, "name": "Time_willing_to_commit_of_months__c", "comment": null}, "Timestamp_Billing_Frequency__c": {"type": "string", "index": 486, "name": "Timestamp_Billing_Frequency__c", "comment": null}, "Timestamp_Retention_CSM_Free_Months__c": {"type": "string", "index": 487, "name": "Timestamp_Retention_CSM_Free_Months__c", "comment": null}, "Timestamp_Sales_Free_Months__c": {"type": "string", "index": 488, "name": "Timestamp_Sales_Free_Months__c", "comment": null}, "Today_s_Date__c": {"type": "string", "index": 489, "name": "Today_s_Date__c", "comment": null}, "TotalOpportunityQuantity": {"type": "double", "index": 490, "name": "TotalOpportunityQuantity", "comment": null}, "Total_Current_ACV__c": {"type": "double", "index": 491, "name": "Total_Current_ACV__c", "comment": null}, "Total_Discount_For_Matan_and_Adi__c": {"type": "double", "index": 492, "name": "Total_Discount_For_Matan_and_Adi__c", "comment": null}, "Total_Discount__c": {"type": "double", "index": 493, "name": "Total_Discount__c", "comment": null}, "Total_Domains_LR__c": {"type": "double", "index": 494, "name": "Total_Domains_LR__c", "comment": null}, "Total_Domains_SMS__c": {"type": "double", "index": 495, "name": "Total_Domains_SMS__c", "comment": null}, "Total_Domains_VMS__c": {"type": "double", "index": 496, "name": "Total_Domains_VMS__c", "comment": null}, "Total_Domains__c": {"type": "double", "index": 497, "name": "Total_Domains__c", "comment": null}, "Total_Ds_Delta_ACV__c": {"type": "double", "index": 498, "name": "Total_Ds_Delta_ACV__c", "comment": null}, "Total_Paid_by_UPS__c": {"type": "boolean", "index": 499, "name": "Total_Paid_by_UPS__c", "comment": null}, "Total_Previous_ACV__c": {"type": "double", "index": 500, "name": "Total_Previous_ACV__c", "comment": null}, "Total_Rev_Share_Paid__c": {"type": "double", "index": 501, "name": "Total_Rev_Share_Paid__c", "comment": null}, "Total_Seats__c": {"type": "double", "index": 502, "name": "Total_Seats__c", "comment": null}, "Total_Yotpo_ACV__c": {"type": "double", "index": 503, "name": "Total_Yotpo_ACV__c", "comment": null}, "Type": {"type": "string", "index": 504, "name": "Type", "comment": null}, "UPS_ACV__c": {"type": "double", "index": 505, "name": "UPS_ACV__c", "comment": null}, "UPS_Account__c": {"type": "string", "index": 506, "name": "UPS_Account__c", "comment": null}, "UPS_Deal__c": {"type": "boolean", "index": 507, "name": "UPS_Deal__c", "comment": null}, "UPS_Subscription_Number__c": {"type": "string", "index": 508, "name": "UPS_Subscription_Number__c", "comment": null}, "USER_is_CSM__c": {"type": "double", "index": 509, "name": "USER_is_CSM__c", "comment": null}, "USER_is_from_CSM_team__c": {"type": "double", "index": 510, "name": "USER_is_from_CSM_team__c", "comment": null}, "UTM_Content__c": {"type": "string", "index": 511, "name": "UTM_Content__c", "comment": null}, "UTM_Term__c": {"type": "string", "index": 512, "name": "UTM_Term__c", "comment": null}, "Upsell_Opportunity__c": {"type": "string", "index": 513, "name": "Upsell_Opportunity__c", "comment": null}, "Usage_Opportunity__c": {"type": "boolean", "index": 514, "name": "Usage_Opportunity__c", "comment": null}, "Usage_Team_Attribution__c": {"type": "string", "index": 515, "name": "Usage_Team_Attribution__c", "comment": null}, "VMS_ACV__c": {"type": "double", "index": 516, "name": "VMS_ACV__c", "comment": null}, "VMS_Competitor_Price__c": {"type": "string", "index": 517, "name": "VMS_Competitor_Price__c", "comment": null}, "VMS_Competitor__c": {"type": "string", "index": 518, "name": "VMS_Competitor__c", "comment": null}, "Value_Proposition__c": {"type": "string", "index": 519, "name": "Value_Proposition__c", "comment": null}, "Viewed_Yotpo_Ads_LP__c": {"type": "boolean", "index": 520, "name": "Viewed_Yotpo_Ads_LP__c", "comment": null}, "Visible_Name_for_Migration__c": {"type": "string", "index": 521, "name": "Visible_Name_for_Migration__c", "comment": null}, "Web_Traffic__c": {"type": "string", "index": 522, "name": "Web_Traffic__c", "comment": null}, "Which_Renewal_Process__c": {"type": "string", "index": 523, "name": "Which_Renewal_Process__c", "comment": null}, "Why_Lost__c": {"type": "string", "index": 524, "name": "Why_Lost__c", "comment": null}, "Why_bad_timing__c": {"type": "string", "index": 525, "name": "Why_bad_timing__c", "comment": null}, "Why_do_you_think_they_didn_t_respond__c": {"type": "string", "index": 526, "name": "Why_do_you_think_they_didn_t_respond__c", "comment": null}, "Why_lost_Description__c": {"type": "string", "index": 527, "name": "Why_lost_Description__c", "comment": null}, "Winback_Date__c": {"type": "string", "index": 528, "name": "Winback_Date__c", "comment": null}, "Winback_Notes__c": {"type": "string", "index": 529, "name": "Winback_Notes__c", "comment": null}, "Winback_Opportunity__c": {"type": "string", "index": 530, "name": "Winback_Opportunity__c", "comment": null}, "Winback_Reason__c": {"type": "string", "index": 531, "name": "Winback_Reason__c", "comment": null}, "Won_Opp__c": {"type": "double", "index": 532, "name": "Won_Opp__c", "comment": null}, "Wrong_Field_Do_Not_Touch__c": {"type": "boolean", "index": 533, "name": "Wrong_Field_Do_Not_Touch__c", "comment": null}, "X6sense_Attribution__c": {"type": "boolean", "index": 534, "name": "X6sense_Attribution__c", "comment": null}, "Yotpo_ACV__c": {"type": "double", "index": 535, "name": "Yotpo_ACV__c", "comment": null}, "Zuora_Bill_Cycle_Day__c": {"type": "double", "index": 536, "name": "Zuora_Bill_Cycle_Day__c", "comment": null}, "Zuora_CSM_Free_Days_Delta__c": {"type": "double", "index": 537, "name": "Zuora_CSM_Free_Days_Delta__c", "comment": null}, "Zuora_CSM_Free_Days_Scenario_Price__c": {"type": "double", "index": 538, "name": "Zuora_CSM_Free_Days_Scenario_Price__c", "comment": null}, "Zuora_CSM_Free_Month_Price_Customer__c": {"type": "double", "index": 539, "name": "Zuora_CSM_Free_Month_Price_Customer__c", "comment": null}, "Zuora_CSM_Free_Month_Price_UPS__c": {"type": "double", "index": 540, "name": "Zuora_CSM_Free_Month_Price_UPS__c", "comment": null}, "Zuora_CSM_Free_Months_Delta__c": {"type": "double", "index": 541, "name": "Zuora_CSM_Free_Months_Delta__c", "comment": null}, "Zuora_Communication_Profile__c": {"type": "string", "index": 542, "name": "Zuora_Communication_Profile__c", "comment": null}, "Zuora_Contract_Duration__c": {"type": "double", "index": 543, "name": "Zuora_Contract_Duration__c", "comment": null}, "Zuora_Duration_for_Billing_Period__c": {"type": "double", "index": 544, "name": "Zuora_Duration_for_Billing_Period__c", "comment": null}, "Zuora_Free_Month_Scenario_Price__c": {"type": "double", "index": 545, "name": "Zuora_Free_Month_Scenario_Price__c", "comment": null}, "Zuora_Integration_Error__c": {"type": "string", "index": 546, "name": "Zuora_Integration_Error__c", "comment": null}, "Zuora_Last_Charge_Amount__c": {"type": "double", "index": 547, "name": "Zuora_Last_Charge_Amount__c", "comment": null}, "Zuora_Last_Charge_Date__c": {"type": "string", "index": 548, "name": "Zuora_Last_Charge_Date__c", "comment": null}, "Zuora_Payment_Method__c": {"type": "string", "index": 549, "name": "Zuora_Payment_Method__c", "comment": null}, "Zuora_Period_Change_Start_Date__c": {"type": "string", "index": 550, "name": "Zuora_Period_Change_Start_Date__c", "comment": null}, "Zuora_Period_Type__c": {"type": "string", "index": 551, "name": "Zuora_Period_Type__c", "comment": null}, "Zuora_Sales_Free_Days_Scenario_Price__c": {"type": "double", "index": 552, "name": "Zuora_Sales_Free_Days_Scenario_Price__c", "comment": null}, "Zuora_Sales_Free_Month_Delta__c": {"type": "double", "index": 553, "name": "Zuora_Sales_Free_Month_Delta__c", "comment": null}, "Zuora_Sales_Free_Month_Price_Customer__c": {"type": "double", "index": 554, "name": "Zuora_Sales_Free_Month_Price_Customer__c", "comment": null}, "Zuora_Sales_Free_Month_Price_UPS__c": {"type": "double", "index": 555, "name": "Zuora_Sales_Free_Month_Price_UPS__c", "comment": null}, "Zuora_Sales_Free_Month_Scenario_Price__c": {"type": "double", "index": 556, "name": "Zuora_Sales_Free_Month_Scenario_Price__c", "comment": null}, "Zuora_Subscription_Total_Charge__c": {"type": "double", "index": 557, "name": "Zuora_Subscription_Total_Charge__c", "comment": null}, "Zuora_Sync_Account__c": {"type": "string", "index": 558, "name": "Zuora_Sync_Account__c", "comment": null}, "Zuora_Sync_Batch_Update__c": {"type": "string", "index": 559, "name": "Zuora_Sync_Batch_Update__c", "comment": null}, "Zuora_Sync_Error_Reason__c": {"type": "string", "index": 560, "name": "Zuora_Sync_Error_Reason__c", "comment": null}, "Zuora_Sync_Free_Months__c": {"type": "string", "index": 561, "name": "Zuora_Sync_Free_Months__c", "comment": null}, "Zuora_Sync_Lost__c": {"type": "boolean", "index": 562, "name": "Zuora_Sync_Lost__c", "comment": null}, "Zuora_Sync_Manually__c": {"type": "boolean", "index": 563, "name": "Zuora_Sync_Manually__c", "comment": null}, "Zuora_Sync_Merge_Opportunity__c": {"type": "boolean", "index": 564, "name": "Zuora_Sync_Merge_Opportunity__c", "comment": null}, "Zuora_Sync_Opportunity__c": {"type": "string", "index": 565, "name": "Zuora_Sync_Opportunity__c", "comment": null}, "Zuora_Sync_POC_Extension__c": {"type": "string", "index": 566, "name": "Zuora_Sync_POC_Extension__c", "comment": null}, "Zuora_Sync_Sales_Free_Months__c": {"type": "string", "index": 567, "name": "Zuora_Sync_Sales_Free_Months__c", "comment": null}, "Zuora_Sync_UPS_CSM_Free_Months__c": {"type": "string", "index": 568, "name": "Zuora_Sync_UPS_CSM_Free_Months__c", "comment": null}, "Zuora_Sync_UPS_Lost__c": {"type": "boolean", "index": 569, "name": "Zuora_Sync_UPS_Lost__c", "comment": null}, "Zuora_Sync_UPS_Sales_Free_Months__c": {"type": "string", "index": 570, "name": "Zuora_Sync_UPS_Sales_Free_Months__c", "comment": null}, "Zuora_Tax_Region__c": {"type": "string", "index": 571, "name": "Zuora_Tax_Region__c", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 572, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 573, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 574, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 575, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 576, "name": "_sdc_table_version", "comment": null}, "ambition__timestamp_for_unittest__c": {"type": "string", "index": 577, "name": "ambition__timestamp_for_unittest__c", "comment": null}, "mkto_si__MarketoAnalyzer__c": {"type": "string", "index": 578, "name": "mkto_si__MarketoAnalyzer__c", "comment": null}, "of_Won_Child_Opps__c": {"type": "double", "index": 579, "name": "of_Won_Child_Opps__c", "comment": null}, "sign_test_udi__c": {"type": "string", "index": 580, "name": "sign_test_udi__c", "comment": null}, "user_id__c": {"type": "string", "index": 581, "name": "user_id__c", "comment": null}, "utm_campaign__c": {"type": "string", "index": 582, "name": "utm_campaign__c", "comment": null}, "utm_medium__c": {"type": "string", "index": 583, "name": "utm_medium__c", "comment": null}, "utm_source__c": {"type": "string", "index": 584, "name": "utm_source__c", "comment": null}, "Email_Marketing_eARR__c": {"type": "double", "index": 585, "name": "Email_Marketing_eARR__c", "comment": null}, "SMS_eARR_USD__c": {"type": "double", "index": 586, "name": "SMS_eARR_USD__c", "comment": null}, "Subscriptions_eARR_USD__c": {"type": "double", "index": 587, "name": "Subscriptions_eARR_USD__c", "comment": null}, "Total_eARR_USD__c": {"type": "double", "index": 588, "name": "Total_eARR_USD__c", "comment": null}, "Prime_eARR_USD__c": {"type": "double", "index": 589, "name": "Prime_eARR_USD__c", "comment": null}, "Gold_eARR_USD__c": {"type": "double", "index": 590, "name": "Gold_eARR_USD__c", "comment": null}, "rn": {"type": "integer", "index": 591, "name": "rn", "comment": null}}, "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.yoda.analytics___salesforce_stg__opportunity_full"}, "model.yoda.analytics___salesforce_stg__opportunity_prediction": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__opportunity_prediction", "database": null, "comment": null, "owner": "root"}, "columns": {"prediction_id": {"type": "string", "index": 0, "name": "prediction_id", "comment": null}, "opportunity_id": {"type": "string", "index": 1, "name": "opportunity_id", "comment": null}, "opportunity_prediction_created_by_sf_user_id": {"type": "string", "index": 2, "name": "opportunity_prediction_created_by_sf_user_id", "comment": null}, "opportunity_prediction_updated_by_sf_user_id": {"type": "string", "index": 3, "name": "opportunity_prediction_updated_by_sf_user_id", "comment": null}, "reviews_previous_acv": {"type": "decimal(14,2)", "index": 4, "name": "reviews_previous_acv", "comment": null}, "reviews_current_acv": {"type": "decimal(14,2)", "index": 5, "name": "reviews_current_acv", "comment": null}, "reviews_predictions_certainty_ratio": {"type": "decimal(14,2)", "index": 6, "name": "reviews_predictions_certainty_ratio", "comment": null}, "predicted_reviews_acv": {"type": "decimal(14,2)", "index": 7, "name": "predicted_reviews_acv", "comment": null}, "reviews_current_hedged_acv": {"type": "decimal(14,2)", "index": 8, "name": "reviews_current_hedged_acv", "comment": null}, "reviews_risk_buckets": {"type": "string", "index": 9, "name": "reviews_risk_buckets", "comment": null}, "loyalty_previous_acv": {"type": "decimal(14,2)", "index": 10, "name": "loyalty_previous_acv", "comment": null}, "loyalty_current_acv": {"type": "decimal(14,2)", "index": 11, "name": "loyalty_current_acv", "comment": null}, "loyalty_predictions_certainty_ratio": {"type": "decimal(14,2)", "index": 12, "name": "loyalty_predictions_certainty_ratio", "comment": null}, "predicted_loyalty_acv": {"type": "decimal(14,2)", "index": 13, "name": "predicted_loyalty_acv", "comment": null}, "loyalty_current_hedged_acv": {"type": "decimal(14,2)", "index": 14, "name": "loyalty_current_hedged_acv", "comment": null}, "loyalty_risk_buckets": {"type": "string", "index": 15, "name": "loyalty_risk_buckets", "comment": null}, "opportunity_prediction_created_at": {"type": "timestamp", "index": 16, "name": "opportunity_prediction_created_at", "comment": null}, "opportunity_prediction_updated_at": {"type": "timestamp", "index": 17, "name": "opportunity_prediction_updated_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 18, "name": "dwh_updated_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.yoda.analytics___salesforce_stg__opportunity_prediction"}, "model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__opportunity_prediction_c_full", "database": null, "comment": null, "owner": "root"}, "columns": {"AM_contribution_Assumption__c": {"type": "double", "index": 0, "name": "AM_contribution_Assumption__c", "comment": null}, "CSM_Loyalty_Risk__c": {"type": "boolean", "index": 1, "name": "CSM_Loyalty_Risk__c", "comment": null}, "CSM_Reviews_Risk__c": {"type": "boolean", "index": 2, "name": "CSM_Reviews_Risk__c", "comment": null}, "CreatedById": {"type": "string", "index": 3, "name": "CreatedById", "comment": null}, "CreatedDate": {"type": "string", "index": 4, "name": "CreatedDate", "comment": null}, "CurrencyIsoCode": {"type": "string", "index": 5, "name": "CurrencyIsoCode", "comment": null}, "Deal_Summary__c": {"type": "string", "index": 6, "name": "Deal_Summary__c", "comment": null}, "Forecast_Prediction_Notes__c": {"type": "string", "index": 7, "name": "Forecast_Prediction_Notes__c", "comment": null}, "Gross_account__c": {"type": "double", "index": 8, "name": "Gross_account__c", "comment": null}, "Id": {"type": "string", "index": 9, "name": "Id", "comment": null}, "IsDeleted": {"type": "boolean", "index": 10, "name": "IsDeleted", "comment": null}, "LastModifiedById": {"type": "string", "index": 11, "name": "LastModifiedById", "comment": null}, "LastModifiedDate": {"type": "string", "index": 12, "name": "LastModifiedDate", "comment": null}, "LastReferencedDate": {"type": "string", "index": 13, "name": "LastReferencedDate", "comment": null}, "LastViewedDate": {"type": "string", "index": 14, "name": "LastViewedDate", "comment": null}, "Logo_retention_account__c": {"type": "double", "index": 15, "name": "Logo_retention_account__c", "comment": null}, "Loyalty_CSM_Notes__c": {"type": "string", "index": 16, "name": "Loyalty_CSM_Notes__c", "comment": null}, "Loyalty_CSM_Notes_rich__c": {"type": "string", "index": 17, "name": "Loyalty_CSM_Notes_rich__c", "comment": null}, "Loyalty_Current_ACV__c": {"type": "double", "index": 18, "name": "Loyalty_Current_ACV__c", "comment": null}, "Loyalty_Current_Hedged_ACV__c": {"type": "double", "index": 19, "name": "Loyalty_Current_Hedged_ACV__c", "comment": null}, "Loyalty_Manager_Notes__c": {"type": "string", "index": 20, "name": "Loyalty_Manager_Notes__c", "comment": null}, "Loyalty_Manager_Notes_rich__c": {"type": "string", "index": 21, "name": "Loyalty_Manager_Notes_rich__c", "comment": null}, "Loyalty_Predictions_Certainty__c": {"type": "string", "index": 22, "name": "Loyalty_Predictions_Certainty__c", "comment": null}, "Loyalty_Previous_ACV__c": {"type": "double", "index": 23, "name": "Loyalty_Previous_ACV__c", "comment": null}, "Loyalty_Result_Type__c": {"type": "string", "index": 24, "name": "Loyalty_Result_Type__c", "comment": null}, "Loyalty_Risk_Buckets__c": {"type": "string", "index": 25, "name": "Loyalty_Risk_Buckets__c", "comment": null}, "Loyalty_logo_retainment_hedged__c": {"type": "double", "index": 26, "name": "Loyalty_logo_retainment_hedged__c", "comment": null}, "Loyalty_previous_ACV_with_ITC__c": {"type": "double", "index": 27, "name": "Loyalty_previous_ACV_with_ITC__c", "comment": null}, "Loyalty_result_type_hedged__c": {"type": "string", "index": 28, "name": "Loyalty_result_type_hedged__c", "comment": null}, "Manager_Notes__c": {"type": "string", "index": 29, "name": "Manager_Notes__c", "comment": null}, "Name": {"type": "string", "index": 30, "name": "Name", "comment": null}, "Opportunity__c": {"type": "string", "index": 31, "name": "Opportunity__c", "comment": null}, "Predicted_Loyalty_ACV__c": {"type": "double", "index": 32, "name": "Predicted_Loyalty_ACV__c", "comment": null}, "Predicted_Reviews_ACV__c": {"type": "double", "index": 33, "name": "Predicted_Reviews_ACV__c", "comment": null}, "Primary_CSM_Notes__c": {"type": "string", "index": 34, "name": "Primary_CSM_Notes__c", "comment": null}, "Primary_CSM_Notes_rich__c": {"type": "string", "index": 35, "name": "Primary_CSM_Notes_rich__c", "comment": null}, "Primary_Manager_Notes__c": {"type": "string", "index": 36, "name": "Primary_Manager_Notes__c", "comment": null}, "Primary_Manager_Notes_rich__c": {"type": "string", "index": 37, "name": "Primary_Manager_Notes_rich__c", "comment": null}, "Relevant_CSMS_teams_upon_closed__c": {"type": "string", "index": 38, "name": "Relevant_CSMS_teams_upon_closed__c", "comment": null}, "Relevant_CSMS_upon_closed__c": {"type": "string", "index": 39, "name": "Relevant_CSMS_upon_closed__c", "comment": null}, "Relevant_Loyalty_CSM_Team__c": {"type": "string", "index": 40, "name": "Relevant_Loyalty_CSM_Team__c", "comment": null}, "Relevant_Loyalty_CSM__c": {"type": "string", "index": 41, "name": "Relevant_Loyalty_CSM__c", "comment": null}, "Relevant_Reviews_CSM_Team__c": {"type": "string", "index": 42, "name": "Relevant_Reviews_CSM_Team__c", "comment": null}, "Relevant_Reviews_CSM__c": {"type": "string", "index": 43, "name": "Relevant_Reviews_CSM__c", "comment": null}, "Reviews_CSM_Notes__c": {"type": "string", "index": 44, "name": "Reviews_CSM_Notes__c", "comment": null}, "Reviews_CSM_Notes_rich__c": {"type": "string", "index": 45, "name": "Reviews_CSM_Notes_rich__c", "comment": null}, "Reviews_Current_ACV__c": {"type": "double", "index": 46, "name": "Reviews_Current_ACV__c", "comment": null}, "Reviews_Current_Hedged_ACV__c": {"type": "double", "index": 47, "name": "Reviews_Current_Hedged_ACV__c", "comment": null}, "Reviews_Manager_Notes__c": {"type": "string", "index": 48, "name": "Reviews_Manager_Notes__c", "comment": null}, "Reviews_Manager_Notes_rich__c": {"type": "string", "index": 49, "name": "Reviews_Manager_Notes_rich__c", "comment": null}, "Reviews_Predictions_Certainty__c": {"type": "string", "index": 50, "name": "Reviews_Predictions_Certainty__c", "comment": null}, "Reviews_Previous_ACV__c": {"type": "double", "index": 51, "name": "Reviews_Previous_ACV__c", "comment": null}, "Reviews_Result_Type__c": {"type": "string", "index": 52, "name": "Reviews_Result_Type__c", "comment": null}, "Reviews_Risk_Buckets__c": {"type": "string", "index": 53, "name": "Reviews_Risk_Buckets__c", "comment": null}, "Reviews_logo_retainment_hedged__c": {"type": "double", "index": 54, "name": "Reviews_logo_retainment_hedged__c", "comment": null}, "Reviews_previous_ACV_with_ITC__c": {"type": "double", "index": 55, "name": "Reviews_previous_ACV_with_ITC__c", "comment": null}, "Reviews_result_type_hedged__c": {"type": "string", "index": 56, "name": "Reviews_result_type_hedged__c", "comment": null}, "SMS_CSM_ACV_Prediction__c": {"type": "double", "index": 57, "name": "SMS_CSM_ACV_Prediction__c", "comment": null}, "SMS_CSM_Notes__c": {"type": "string", "index": 58, "name": "SMS_CSM_Notes__c", "comment": null}, "SMS_CSM_Renewal_Prediction__c": {"type": "boolean", "index": 59, "name": "SMS_CSM_Renewal_Prediction__c", "comment": null}, "SMS_Manager_Notes__c": {"type": "string", "index": 60, "name": "SMS_Manager_Notes__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 61, "name": "SystemModstamp", "comment": null}, "Total_Hedged_ACV_with_assumptions__c": {"type": "double", "index": 62, "name": "Total_Hedged_ACV_with_assumptions__c", "comment": null}, "Total_Previous_ACV_with_assumptions__c": {"type": "double", "index": 63, "name": "Total_Previous_ACV_with_assumptions__c", "comment": null}, "USER_is_from_relevant_CSM_team__c": {"type": "double", "index": 64, "name": "USER_is_from_relevant_CSM_team__c", "comment": null}, "USER_is_relevant_CSM__c": {"type": "double", "index": 65, "name": "USER_is_relevant_CSM__c", "comment": null}, "X2_Months_ACV_Prediction__c": {"type": "double", "index": 66, "name": "X2_Months_ACV_Prediction__c", "comment": null}, "X2_Months_Contract_Renewal_Prediction__c": {"type": "string", "index": 67, "name": "X2_Months_Contract_Renewal_Prediction__c", "comment": null}, "X4_Months_ACV_Prediction__c": {"type": "double", "index": 68, "name": "X4_Months_ACV_Prediction__c", "comment": null}, "X4_Months_Contract_Renewal_Prediction__c": {"type": "string", "index": 69, "name": "X4_Months_Contract_Renewal_Prediction__c", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 70, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 71, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 72, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 73, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 74, "name": "_sdc_table_version", "comment": null}, "rn": {"type": "integer", "index": 75, "name": "rn", "comment": null}}, "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.yoda.analytics___salesforce_stg__opportunity_prediction_c_full"}, "model.yoda.analytics___salesforce_stg__opportunityfieldhistory": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__opportunityfieldhistory", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 1, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 3, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 4, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 5, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 6, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 7, "name": "_sdc_table_version", "comment": null}, "createdbyid": {"type": "string", "index": 8, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 9, "name": "createddate", "comment": null}, "field": {"type": "string", "index": 10, "name": "field", "comment": null}, "id": {"type": "string", "index": 11, "name": "id", "comment": null}, "isdeleted": {"type": "boolean", "index": 12, "name": "isdeleted", "comment": null}, "newvalue": {"type": "string", "index": 13, "name": "newvalue", "comment": null}, "oldvalue": {"type": "string", "index": 14, "name": "oldvalue", "comment": null}, "opportunityid": {"type": "string", "index": 15, "name": "opportunityid", "comment": null}, "datatype": {"type": "string", "index": 16, "name": "datatype", "comment": null}}, "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.yoda.analytics___salesforce_stg__opportunityfieldhistory"}, "model.yoda.analytics___salesforce_stg__opportunitylineitem_full": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__opportunitylineitem_full", "database": null, "comment": null, "owner": "root"}, "columns": {"Add_On_Product__c": {"type": "boolean", "index": 0, "name": "Add_On_Product__c", "comment": null}, "Average_ACV_Free_Months_Scenario__c": {"type": "double", "index": 1, "name": "Average_ACV_Free_Months_Scenario__c", "comment": null}, "Average_ACV__c": {"type": "double", "index": 2, "name": "Average_ACV__c", "comment": null}, "Billing_Frequency__c": {"type": "string", "index": 3, "name": "Billing_Frequency__c", "comment": null}, "Billing_Frequency_in_number__c": {"type": "double", "index": 4, "name": "Billing_Frequency_in_number__c", "comment": null}, "Bundle_Description__c": {"type": "string", "index": 5, "name": "Bundle_Description__c", "comment": null}, "CreatedById": {"type": "string", "index": 6, "name": "CreatedById", "comment": null}, "CreatedDate": {"type": "string", "index": 7, "name": "CreatedDate", "comment": null}, "CurrencyIsoCode": {"type": "string", "index": 8, "name": "CurrencyIsoCode", "comment": null}, "Customer_Portion_from_List_Price__c": {"type": "double", "index": 9, "name": "Customer_Portion_from_List_Price__c", "comment": null}, "Customer_Portion_from_Total_Price__c": {"type": "double", "index": 10, "name": "Customer_Portion_from_Total_Price__c", "comment": null}, "Dealhub_Main_Add_on_Product__c": {"type": "boolean", "index": 11, "name": "Dealhub_Main_Add_on_Product__c", "comment": null}, "Description": {"type": "string", "index": 12, "name": "Description", "comment": null}, "Discount": {"type": "double", "index": 13, "name": "Discount", "comment": null}, "Docusign_AnchorTag_Helper__c": {"type": "double", "index": 14, "name": "Docusign_AnchorTag_Helper__c", "comment": null}, "Domain_Product__c": {"type": "boolean", "index": 15, "name": "Domain_Product__c", "comment": null}, "Estimated_Orders__c": {"type": "double", "index": 16, "name": "Estimated_Orders__c", "comment": null}, "Id": {"type": "string", "index": 17, "name": "Id", "comment": null}, "Included_Orders__c": {"type": "double", "index": 18, "name": "Included_Orders__c", "comment": null}, "Insight_Number_of_Order_Reviews__c": {"type": "double", "index": 19, "name": "Insight_Number_of_Order_Reviews__c", "comment": null}, "Insights_Dashboard__c": {"type": "boolean", "index": 20, "name": "Insights_Dashboard__c", "comment": null}, "Installment_Amount__c": {"type": "double", "index": 21, "name": "Installment_Amount__c", "comment": null}, "IsDeleted": {"type": "boolean", "index": 22, "name": "IsDeleted", "comment": null}, "Is_Add_On__c": {"type": "boolean", "index": 23, "name": "Is_Add_On__c", "comment": null}, "Is_Bundle__c": {"type": "boolean", "index": 24, "name": "Is_Bundle__c", "comment": null}, "LastModifiedById": {"type": "string", "index": 25, "name": "LastModifiedById", "comment": null}, "LastModifiedDate": {"type": "string", "index": 26, "name": "LastModifiedDate", "comment": null}, "Legacy_Product__c": {"type": "boolean", "index": 27, "name": "Legacy_Product__c", "comment": null}, "ListPrice": {"type": "double", "index": 28, "name": "ListPrice", "comment": null}, "Moderation_Service__c": {"type": "boolean", "index": 29, "name": "Moderation_Service__c", "comment": null}, "Name": {"type": "string", "index": 30, "name": "Name", "comment": null}, "No_CSM__c": {"type": "boolean", "index": 31, "name": "No_CSM__c", "comment": null}, "Number_of_Hours__c": {"type": "double", "index": 32, "name": "Number_of_Hours__c", "comment": null}, "Number_of_Included_Reviews__c": {"type": "double", "index": 33, "name": "Number_of_Included_Reviews__c", "comment": null}, "Number_of_Seats__c": {"type": "double", "index": 34, "name": "Number_of_Seats__c", "comment": null}, "OpportunityId": {"type": "string", "index": 35, "name": "OpportunityId", "comment": null}, "Opportunity_Merge_To_Id__c": {"type": "string", "index": 36, "name": "Opportunity_Merge_To_Id__c", "comment": null}, "Opportunity_Product_ID__c": {"type": "string", "index": 37, "name": "Opportunity_Product_ID__c", "comment": null}, "Overage_Charge__c": {"type": "double", "index": 38, "name": "Overage_Charge__c", "comment": null}, "Package_Name__c": {"type": "string", "index": 39, "name": "Package_Name__c", "comment": null}, "Package_Product__c": {"type": "boolean", "index": 40, "name": "Package_Product__c", "comment": null}, "Parent_Bundle_SKU__c": {"type": "string", "index": 41, "name": "Parent_Bundle_SKU__c", "comment": null}, "Parent_Bundle__c": {"type": "string", "index": 42, "name": "Parent_Bundle__c", "comment": null}, "Pre_Overage_Price__c": {"type": "double", "index": 43, "name": "Pre_Overage_Price__c", "comment": null}, "PricebookEntryId": {"type": "string", "index": 44, "name": "PricebookEntryId", "comment": null}, "Product2Id": {"type": "string", "index": 45, "name": "Product2Id", "comment": null}, "ProductCode": {"type": "string", "index": 46, "name": "ProductCode", "comment": null}, "Product_Category__c": {"type": "string", "index": 47, "name": "Product_Category__c", "comment": null}, "Product_Family__c": {"type": "string", "index": 48, "name": "Product_Family__c", "comment": null}, "Product_Included_Seats_Total__c": {"type": "double", "index": 49, "name": "Product_Included_Seats_Total__c", "comment": null}, "Product_Included_Seats__c": {"type": "double", "index": 50, "name": "Product_Included_Seats__c", "comment": null}, "Product_Line_MRR__c": {"type": "double", "index": 51, "name": "Product_Line_MRR__c", "comment": null}, "Product_Name__c": {"type": "string", "index": 52, "name": "Product_Name__c", "comment": null}, "Product_Proration_Today__c": {"type": "double", "index": 53, "name": "Product_Proration_Today__c", "comment": null}, "Product_Proration__c": {"type": "string", "index": 54, "name": "Product_Proration__c", "comment": null}, "Production_Rate_Paln_Id__c": {"type": "string", "index": 55, "name": "Production_Rate_Paln_Id__c", "comment": null}, "Production_Rate_Plan_Charge_Discount_Id__c": {"type": "string", "index": 56, "name": "Production_Rate_Plan_Charge_Discount_Id__c", "comment": null}, "Production_Rate_Plan_Charge_Recurring_Id__c": {"type": "string", "index": 57, "name": "Production_Rate_Plan_Charge_Recurring_Id__c", "comment": null}, "Professional_Service_Product__c": {"type": "boolean", "index": 58, "name": "Professional_Service_Product__c", "comment": null}, "Quantity": {"type": "double", "index": 59, "name": "Quantity", "comment": null}, "Rate_Paln_Id__c": {"type": "string", "index": 60, "name": "Rate_Paln_Id__c", "comment": null}, "Rate_Plan_Charge_Discount_Id__c": {"type": "string", "index": 61, "name": "Rate_Plan_Charge_Discount_Id__c", "comment": null}, "Rate_Plan_Charge_Recurring_Id__c": {"type": "string", "index": 62, "name": "Rate_Plan_Charge_Recurring_Id__c", "comment": null}, "Seat_License_Product__c": {"type": "boolean", "index": 63, "name": "Seat_License_Product__c", "comment": null}, "Self_Service__c": {"type": "boolean", "index": 64, "name": "Self_Service__c", "comment": null}, "ServiceDate": {"type": "string", "index": 65, "name": "ServiceDate", "comment": null}, "SortOrder": {"type": "long", "index": 66, "name": "SortOrder", "comment": null}, "Syndication_Product__c": {"type": "boolean", "index": 67, "name": "Syndication_Product__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 68, "name": "SystemModstamp", "comment": null}, "TotalPrice": {"type": "double", "index": 69, "name": "TotalPrice", "comment": null}, "Total_Discount_Amount__c": {"type": "double", "index": 70, "name": "Total_Discount_Amount__c", "comment": null}, "Total_List_Price__c": {"type": "double", "index": 71, "name": "Total_List_Price__c", "comment": null}, "Total_Price_No_Discount__c": {"type": "double", "index": 72, "name": "Total_Price_No_Discount__c", "comment": null}, "Total_Price_USD__c": {"type": "double", "index": 73, "name": "Total_Price_USD__c", "comment": null}, "Trial_Product__c": {"type": "boolean", "index": 74, "name": "Trial_Product__c", "comment": null}, "UPS_Portion_from_List_Price__c": {"type": "double", "index": 75, "name": "UPS_Portion_from_List_Price__c", "comment": null}, "UPS_Portion_from_Total_Price__c": {"type": "double", "index": 76, "name": "UPS_Portion_from_Total_Price__c", "comment": null}, "UnitPrice": {"type": "double", "index": 77, "name": "UnitPrice", "comment": null}, "Unit_Price_For_Free_Months_Scenario__c": {"type": "double", "index": 78, "name": "Unit_Price_For_Free_Months_Scenario__c", "comment": null}, "Whitelabel_Product__c": {"type": "boolean", "index": 79, "name": "Whitelabel_Product__c", "comment": null}, "Zuora_Charge_Model__c": {"type": "string", "index": 80, "name": "Zuora_Charge_Model__c", "comment": null}, "Zuora_applyToDiscount_Type__c": {"type": "string", "index": 81, "name": "Zuora_applyToDiscount_Type__c", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 82, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 83, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 84, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 85, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 86, "name": "_sdc_table_version", "comment": null}, "test__c": {"type": "string", "index": 87, "name": "test__c", "comment": null}, "rn": {"type": "integer", "index": 88, "name": "rn", "comment": null}}, "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.yoda.analytics___salesforce_stg__opportunitylineitem_full"}, "model.yoda.analytics___sms__store": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms__store", "database": null, "comment": null, "owner": "root"}, "columns": {"app_key": {"type": "string", "index": 0, "name": "app_key", "comment": null}, "sms_user_id": {"type": "long", "index": 1, "name": "sms_user_id", "comment": null}, "organization_id": {"type": "long", "index": 2, "name": "organization_id", "comment": null}, "organization_key": {"type": "string", "index": 3, "name": "organization_key", "comment": null}, "user_name": {"type": "string", "index": 4, "name": "user_name", "comment": null}, "store_user_array": {"type": "array", "index": 5, "name": "store_user_array", "comment": null}, "store_user_cnt": {"type": "long", "index": 6, "name": "store_user_cnt", "comment": null}, "email": {"type": "string", "index": 7, "name": "email", "comment": null}, "country_name": {"type": "string", "index": 8, "name": "country_name", "comment": null}, "region_name": {"type": "string", "index": 9, "name": "region_name", "comment": null}, "domain": {"type": "string", "index": 10, "name": "domain", "comment": null}, "name": {"type": "string", "index": 11, "name": "name", "comment": null}, "platform_name": {"type": "string", "index": 12, "name": "platform_name", "comment": null}, "plan_id": {"type": "long", "index": 13, "name": "plan_id", "comment": null}, "plan_name": {"type": "string", "index": 14, "name": "plan_name", "comment": null}, "plan_type_group": {"type": "string", "index": 15, "name": "plan_type_group", "comment": null}, "plan_type_ht_lt": {"type": "string", "index": 16, "name": "plan_type_ht_lt", "comment": null}, "plan_period": {"type": "string", "index": 17, "name": "plan_period", "comment": null}, "balance_in_usd": {"type": "decimal(12,4)", "index": 18, "name": "balance_in_usd", "comment": null}, "is_chat_enabled": {"type": "short", "index": 19, "name": "is_chat_enabled", "comment": null}, "is_active": {"type": "short", "index": 20, "name": "is_active", "comment": null}, "is_shopify_plus": {"type": "short", "index": 21, "name": "is_shopify_plus", "comment": null}, "is_auto_reload": {"type": "short", "index": 22, "name": "is_auto_reload", "comment": null}, "created_at": {"type": "timestamp", "index": 23, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 24, "name": "created_date", "comment": null}, "modified_at": {"type": "timestamp", "index": 25, "name": "modified_at", "comment": null}, "modified_date": {"type": "date", "index": 26, "name": "modified_date", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 27, "name": "dwh_updated_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.yoda.analytics___sms__store"}, "model.yoda.analytics___sms__store_activeness_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms__store_activeness_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"activeness_date": {"type": "date", "index": 0, "name": "activeness_date", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "is_app_installed": {"type": "integer", "index": 2, "name": "is_app_installed", "comment": null}, "is_store_open": {"type": "integer", "index": 3, "name": "is_store_open", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 4, "name": "dwh_updated_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.yoda.analytics___sms__store_activeness_daily"}, "model.yoda.analytics___sms__store_metrics_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms__store_metrics_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "sms_user_id": {"type": "long", "index": 2, "name": "sms_user_id", "comment": null}, "organization_id": {"type": "long", "index": 3, "name": "organization_id", "comment": null}, "organization_key": {"type": "string", "index": 4, "name": "organization_key", "comment": null}, "user_created_at": {"type": "timestamp", "index": 5, "name": "user_created_at", "comment": null}, "plan_name": {"type": "string", "index": 6, "name": "plan_name", "comment": null}, "plan_type": {"type": "string", "index": 7, "name": "plan_type", "comment": null}, "plan_type_ht_lt": {"type": "string", "index": 8, "name": "plan_type_ht_lt", "comment": null}, "is_installed": {"type": "short", "index": 9, "name": "is_installed", "comment": null}, "is_store_open": {"type": "short", "index": 10, "name": "is_store_open", "comment": null}, "orders_cnt": {"type": "long", "index": 11, "name": "orders_cnt", "comment": null}, "avg_orders_cnt_l3m": {"type": "double", "index": 12, "name": "avg_orders_cnt_l3m", "comment": null}, "subscriber_cnt": {"type": "long", "index": 13, "name": "subscriber_cnt", "comment": null}, "esp_subscriber_cnt": {"type": "long", "index": 14, "name": "esp_subscriber_cnt", "comment": null}, "non_esp_subscriber_cnt": {"type": "long", "index": 15, "name": "non_esp_subscriber_cnt", "comment": null}, "imported_subscriber_cnt": {"type": "long", "index": 16, "name": "imported_subscriber_cnt", "comment": null}, "new_subscriber_cnt": {"type": "long", "index": 17, "name": "new_subscriber_cnt", "comment": null}, "unsubscriber_cnt": {"type": "long", "index": 18, "name": "unsubscriber_cnt", "comment": null}, "credit_purchase_sum": {"type": "double", "index": 19, "name": "credit_purchase_sum", "comment": null}, "sms_usage_sum": {"type": "decimal(24,4)", "index": 20, "name": "sms_usage_sum", "comment": null}, "mms_usage_sum": {"type": "decimal(24,4)", "index": 21, "name": "mms_usage_sum", "comment": null}, "usage_sum": {"type": "decimal(22,4)", "index": 22, "name": "usage_sum", "comment": null}, "sms_message_cnt": {"type": "long", "index": 23, "name": "sms_message_cnt", "comment": null}, "sms_message_cnt_by_carrier": {"type": "long", "index": 24, "name": "sms_message_cnt_by_carrier", "comment": null}, "mms_message_cnt": {"type": "long", "index": 25, "name": "mms_message_cnt", "comment": null}, "mms_message_cnt_by_carrier": {"type": "long", "index": 26, "name": "mms_message_cnt_by_carrier", "comment": null}, "message_cnt": {"type": "long", "index": 27, "name": "message_cnt", "comment": null}, "message_cnt_by_carrier": {"type": "long", "index": 28, "name": "message_cnt_by_carrier", "comment": null}, "automation_usage_sum": {"type": "decimal(24,4)", "index": 29, "name": "automation_usage_sum", "comment": null}, "campaign_usage_sum": {"type": "decimal(24,4)", "index": 30, "name": "campaign_usage_sum", "comment": null}, "flow_usage_sum": {"type": "decimal(24,4)", "index": 31, "name": "flow_usage_sum", "comment": null}, "other_usage_sum": {"type": "decimal(24,4)", "index": 32, "name": "other_usage_sum", "comment": null}, "automation_message_cnt": {"type": "long", "index": 33, "name": "automation_message_cnt", "comment": null}, "automation_message_cnt_by_carrier": {"type": "long", "index": 34, "name": "automation_message_cnt_by_carrier", "comment": null}, "campaign_message_cnt": {"type": "long", "index": 35, "name": "campaign_message_cnt", "comment": null}, "campaign_message_cnt_by_carrier": {"type": "long", "index": 36, "name": "campaign_message_cnt_by_carrier", "comment": null}, "flow_message_cnt": {"type": "long", "index": 37, "name": "flow_message_cnt", "comment": null}, "flow_message_cnt_by_carrier": {"type": "long", "index": 38, "name": "flow_message_cnt_by_carrier", "comment": null}, "other_message_cnt": {"type": "long", "index": 39, "name": "other_message_cnt", "comment": null}, "other_message_cnt_by_carrier": {"type": "long", "index": 40, "name": "other_message_cnt_by_carrier", "comment": null}, "active_automation_cnt": {"type": "long", "index": 41, "name": "active_automation_cnt", "comment": null}, "active_campaign_cnt": {"type": "long", "index": 42, "name": "active_campaign_cnt", "comment": null}, "active_flow_cnt": {"type": "long", "index": 43, "name": "active_flow_cnt", "comment": null}, "revenue_in_usd_sum": {"type": "double", "index": 44, "name": "revenue_in_usd_sum", "comment": null}, "roi_spent_in_usd_sum": {"type": "double", "index": 45, "name": "roi_spent_in_usd_sum", "comment": null}, "automation_revenue_sum": {"type": "double", "index": 46, "name": "automation_revenue_sum", "comment": null}, "campaign_revenue_sum": {"type": "double", "index": 47, "name": "campaign_revenue_sum", "comment": null}, "flow_revenue_sum": {"type": "double", "index": 48, "name": "flow_revenue_sum", "comment": null}, "customer_cnt": {"type": "long", "index": 49, "name": "customer_cnt", "comment": null}, "new_customer_cnt": {"type": "long", "index": 50, "name": "new_customer_cnt", "comment": null}, "is_active": {"type": "short", "index": 51, "name": "is_active", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 52, "name": "dwh_updated_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.yoda.analytics___sms__store_metrics_daily"}, "model.yoda.analytics___sms__store_plan_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms__store_plan_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "plan_id": {"type": "long", "index": 2, "name": "plan_id", "comment": null}, "plan_name": {"type": "string", "index": 3, "name": "plan_name", "comment": null}, "plan_type": {"type": "string", "index": 4, "name": "plan_type", "comment": null}, "plan_type_ht_lt": {"type": "string", "index": 5, "name": "plan_type_ht_lt", "comment": null}, "plan_type_group": {"type": "string", "index": 6, "name": "plan_type_group", "comment": null}, "plan_period": {"type": "string", "index": 7, "name": "plan_period", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 8, "name": "dwh_updated_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.yoda.analytics___sms__store_plan_daily"}, "model.yoda.analytics___sms__store_plan_over_time": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms__store_plan_over_time", "database": null, "comment": null, "owner": "root"}, "columns": {"app_key": {"type": "string", "index": 0, "name": "app_key", "comment": null}, "from_time": {"type": "timestamp", "index": 1, "name": "from_time", "comment": null}, "to_time": {"type": "timestamp", "index": 2, "name": "to_time", "comment": null}, "row_ranking_for_store_and_created_date": {"type": "integer", "index": 3, "name": "row_ranking_for_store_and_created_date", "comment": null}, "sms_user_id": {"type": "long", "index": 4, "name": "sms_user_id", "comment": null}, "event_id": {"type": "long", "index": 5, "name": "event_id", "comment": null}, "event_name": {"type": "string", "index": 6, "name": "event_name", "comment": null}, "created_date": {"type": "date", "index": 7, "name": "created_date", "comment": null}, "plan_id": {"type": "long", "index": 8, "name": "plan_id", "comment": null}, "plan_name": {"type": "string", "index": 9, "name": "plan_name", "comment": null}, "plan_type": {"type": "string", "index": 10, "name": "plan_type", "comment": null}, "plan_type_ht_lt": {"type": "string", "index": 11, "name": "plan_type_ht_lt", "comment": null}, "plan_type_group": {"type": "string", "index": 12, "name": "plan_type_group", "comment": null}, "plan_period": {"type": "string", "index": 13, "name": "plan_period", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 14, "name": "dwh_updated_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.yoda.analytics___sms__store_plan_over_time"}, "model.yoda.analytics___sms_stg__analytics_data": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__analytics_data", "database": null, "comment": null, "owner": "root"}, "columns": {"analytics_data_id": {"type": "string", "index": 0, "name": "analytics_data_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "channel_name": {"type": "string", "index": 2, "name": "channel_name", "comment": null}, "source_type": {"type": "string", "index": 3, "name": "source_type", "comment": null}, "source_id": {"type": "string", "index": 4, "name": "source_id", "comment": null}, "sub_source_id": {"type": "string", "index": 5, "name": "sub_source_id", "comment": null}, "aggregated_at": {"type": "timestamp", "index": 6, "name": "aggregated_at", "comment": null}, "aggregated_date": {"type": "date", "index": 7, "name": "aggregated_date", "comment": null}, "source_trigger": {"type": "string", "index": 8, "name": "source_trigger", "comment": null}, "source_message": {"type": "string", "index": 9, "name": "source_message", "comment": null}, "source_name": {"type": "string", "index": 10, "name": "source_name", "comment": null}, "total_spent_in_usd": {"type": "double", "index": 11, "name": "total_spent_in_usd", "comment": null}, "total_revenue_in_usd": {"type": "double", "index": 12, "name": "total_revenue_in_usd", "comment": null}, "is_type_automation": {"type": "short", "index": 13, "name": "is_type_automation", "comment": null}, "is_type_campaign": {"type": "short", "index": 14, "name": "is_type_campaign", "comment": null}, "is_type_flow": {"type": "short", "index": 15, "name": "is_type_flow", "comment": null}, "is_channel_sms": {"type": "short", "index": 16, "name": "is_channel_sms", "comment": null}}, "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.yoda.analytics___sms_stg__analytics_data"}, "model.yoda.analytics___sms_stg__api_calls": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__api_calls", "database": null, "comment": null, "owner": "root"}, "columns": {"api_call_id": {"type": "long", "index": 0, "name": "api_call_id", "comment": null}, "sms_user_id": {"type": "long", "index": 1, "name": "sms_user_id", "comment": null}, "campaign_id": {"type": "long", "index": 2, "name": "campaign_id", "comment": null}, "event_id": {"type": "long", "index": 3, "name": "event_id", "comment": null}, "flow_id": {"type": "long", "index": 4, "name": "flow_id", "comment": null}, "message_id": {"type": "string", "index": 5, "name": "message_id", "comment": null}, "aggregator_name": {"type": "string", "index": 6, "name": "aggregator_name", "comment": null}, "sender_title": {"type": "string", "index": 7, "name": "sender_title", "comment": null}, "receiver_title": {"type": "string", "index": 8, "name": "receiver_title", "comment": null}, "message_parts_number": {"type": "long", "index": 9, "name": "message_parts_number", "comment": null}, "message_type": {"type": "string", "index": 10, "name": "message_type", "comment": null}, "message_status": {"type": "string", "index": 11, "name": "message_status", "comment": null}, "spot_user_balance_in_usd": {"type": "decimal(12,4)", "index": 12, "name": "spot_user_balance_in_usd", "comment": null}, "price_billed_in_usd": {"type": "decimal(12,4)", "index": 13, "name": "price_billed_in_usd", "comment": null}, "price_vendor_cost_in_usd": {"type": "decimal(12,4)", "index": 14, "name": "price_vendor_cost_in_usd", "comment": null}, "created_at": {"type": "timestamp", "index": 15, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 16, "name": "created_date", "comment": null}, "modified_at": {"type": "timestamp", "index": 17, "name": "modified_at", "comment": null}, "modified_date": {"type": "date", "index": 18, "name": "modified_date", "comment": null}, "is_logical_deleted": {"type": "short", "index": 19, "name": "is_logical_deleted", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 20, "name": "dwh_updated_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.yoda.analytics___sms_stg__api_calls"}, "model.yoda.analytics___sms_stg__bigcommerce_user": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__bigcommerce_user", "database": null, "comment": null, "owner": "root"}, "columns": {"bigcommerce_user_id": {"type": "long", "index": 0, "name": "bigcommerce_user_id", "comment": null}, "sms_user_id": {"type": "long", "index": 1, "name": "sms_user_id", "comment": null}, "store_name": {"type": "string", "index": 2, "name": "store_name", "comment": null}, "store_domain": {"type": "string", "index": 3, "name": "store_domain", "comment": null}, "bigcommerce_plan_name": {"type": "string", "index": 4, "name": "bigcommerce_plan_name", "comment": null}, "bigcommerce_plan_level": {"type": "string", "index": 5, "name": "bigcommerce_plan_level", "comment": null}, "abandoned_checkouts_sent": {"type": "long", "index": 6, "name": "abandoned_checkouts_sent", "comment": null}, "shop_data": {"type": "string", "index": 7, "name": "shop_data", "comment": null}, "is_access_token": {"type": "integer", "index": 8, "name": "is_access_token", "comment": null}, "is_connected": {"type": "short", "index": 9, "name": "is_connected", "comment": null}, "is_auto_reload": {"type": "long", "index": 10, "name": "is_auto_reload", "comment": null}, "is_active": {"type": "short", "index": 11, "name": "is_active", "comment": null}, "is_logical_deleted": {"type": "short", "index": 12, "name": "is_logical_deleted", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 14, "name": "created_date", "comment": null}, "modified_at": {"type": "timestamp", "index": 15, "name": "modified_at", "comment": null}, "modified_date": {"type": "date", "index": 16, "name": "modified_date", "comment": null}, "sms_user_id_row_rank": {"type": "integer", "index": 17, "name": "sms_user_id_row_rank", "comment": null}}, "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.yoda.analytics___sms_stg__bigcommerce_user"}, "model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__fact_agg_sms_user_profile_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "user_id": {"type": "long", "index": 1, "name": "user_id", "comment": null}, "total_subscribers": {"type": "long", "index": 2, "name": "total_subscribers", "comment": null}, "total_esp_subscribers": {"type": "long", "index": 3, "name": "total_esp_subscribers", "comment": null}, "total_non_esp_subscribers": {"type": "long", "index": 4, "name": "total_non_esp_subscribers", "comment": null}, "total_imported_subscribers": {"type": "long", "index": 5, "name": "total_imported_subscribers", "comment": null}, "total_new_subscribers": {"type": "long", "index": 6, "name": "total_new_subscribers", "comment": null}, "total_unsubscribers": {"type": "long", "index": 7, "name": "total_unsubscribers", "comment": null}}, "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.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily"}, "model.yoda.analytics___sms_stg__organization_identifier_conversion": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__organization_identifier_conversion", "database": null, "comment": null, "owner": "root"}, "columns": {"organization_id": {"type": "long", "index": 0, "name": "organization_id", "comment": null}, "organization_key": {"type": "string", "index": 1, "name": "organization_key", "comment": null}, "organization_name": {"type": "string", "index": 2, "name": "organization_name", "comment": null}, "is_logical_deleted": {"type": "short", "index": 3, "name": "is_logical_deleted", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 5, "name": "created_date", "comment": null}, "modified_at": {"type": "timestamp", "index": 6, "name": "modified_at", "comment": null}, "modified_date": {"type": "date", "index": 7, "name": "modified_date", "comment": null}}, "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.yoda.analytics___sms_stg__organization_identifier_conversion"}, "model.yoda.analytics___sms_stg__plan": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__plan", "database": null, "comment": null, "owner": "root"}, "columns": {"plan_id": {"type": "long", "index": 0, "name": "plan_id", "comment": null}, "plan_name": {"type": "string", "index": 1, "name": "plan_name", "comment": null}, "display_name": {"type": "string", "index": 2, "name": "display_name", "comment": null}, "plan_key": {"type": "string", "index": 3, "name": "plan_key", "comment": null}, "sub_title": {"type": "string", "index": 4, "name": "sub_title", "comment": null}, "platform_names": {"type": "string", "index": 5, "name": "platform_names", "comment": null}, "plan_type": {"type": "string", "index": 6, "name": "plan_type", "comment": null}, "plan_type_ht_lt": {"type": "string", "index": 7, "name": "plan_type_ht_lt", "comment": null}, "plan_type_group": {"type": "string", "index": 8, "name": "plan_type_group", "comment": null}, "plan_period": {"type": "string", "index": 9, "name": "plan_period", "comment": null}, "price_in_usd": {"type": "double", "index": 10, "name": "price_in_usd", "comment": null}, "bonus_credits_in_usd": {"type": "double", "index": 11, "name": "bonus_credits_in_usd", "comment": null}, "is_visible_app": {"type": "short", "index": 12, "name": "is_visible_app", "comment": null}, "is_visible_site": {"type": "short", "index": 13, "name": "is_visible_site", "comment": null}, "is_validation_status": {"type": "short", "index": 14, "name": "is_validation_status", "comment": null}, "is_logical_deleted": {"type": "short", "index": 15, "name": "is_logical_deleted", "comment": null}, "created_at": {"type": "timestamp", "index": 16, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 17, "name": "created_date", "comment": null}, "modified_at": {"type": "timestamp", "index": 18, "name": "modified_at", "comment": null}, "modified_date": {"type": "date", "index": 19, "name": "modified_date", "comment": null}}, "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.yoda.analytics___sms_stg__plan"}, "model.yoda.analytics___sms_stg__purchase": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__purchase", "database": null, "comment": null, "owner": "root"}, "columns": {"purchase_id": {"type": "long", "index": 0, "name": "purchase_id", "comment": null}, "sms_user_id": {"type": "long", "index": 1, "name": "sms_user_id", "comment": null}, "type": {"type": "string", "index": 2, "name": "type", "comment": null}, "purchase_source": {"type": "string", "index": 3, "name": "purchase_source", "comment": null}, "manual_action_type": {"type": "string", "index": 4, "name": "manual_action_type", "comment": null}, "notes": {"type": "string", "index": 5, "name": "notes", "comment": null}, "status": {"type": "string", "index": 6, "name": "status", "comment": null}, "platform_name": {"type": "string", "index": 7, "name": "platform_name", "comment": null}, "gateway": {"type": "string", "index": 8, "name": "gateway", "comment": null}, "amount_paid": {"type": "double", "index": 9, "name": "amount_paid", "comment": null}, "amount_added": {"type": "double", "index": 10, "name": "amount_added", "comment": null}, "is_logical_deleted": {"type": "long", "index": 11, "name": "is_logical_deleted", "comment": null}, "created_at": {"type": "timestamp", "index": 12, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 13, "name": "created_date", "comment": null}, "modifed_at": {"type": "timestamp", "index": 14, "name": "modifed_at", "comment": null}, "modified_date": {"type": "date", "index": 15, "name": "modified_date", "comment": null}, "is_purchase": {"type": "short", "index": 16, "name": "is_purchase", "comment": null}, "is_gateway_admin_manual": {"type": "short", "index": 17, "name": "is_gateway_admin_manual", "comment": null}, "is_status_paid": {"type": "short", "index": 18, "name": "is_status_paid", "comment": null}, "is_status_refund": {"type": "short", "index": 19, "name": "is_status_refund", "comment": null}, "is_activation_perk": {"type": "short", "index": 20, "name": "is_activation_perk", "comment": null}, "is_customer_marketing_bonus": {"type": "short", "index": 21, "name": "is_customer_marketing_bonus", "comment": null}, "is_saas_fee_bonus": {"type": "short", "index": 22, "name": "is_saas_fee_bonus", "comment": null}, "is_signup_bonus": {"type": "short", "index": 23, "name": "is_signup_bonus", "comment": null}, "is_admin_perk": {"type": "short", "index": 24, "name": "is_admin_perk", "comment": null}, "is_purchase_bonus": {"type": "short", "index": 25, "name": "is_purchase_bonus", "comment": null}}, "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.yoda.analytics___sms_stg__purchase"}, "model.yoda.analytics___sms_stg__shopify_campaign_order": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__shopify_campaign_order", "database": null, "comment": null, "owner": "root"}, "columns": {"order_attribution_id": {"type": "long", "index": 0, "name": "order_attribution_id", "comment": null}, "order_id": {"type": "string", "index": 1, "name": "order_id", "comment": null}, "sms_user_id": {"type": "long", "index": 2, "name": "sms_user_id", "comment": null}, "campaign_id": {"type": "long", "index": 3, "name": "campaign_id", "comment": null}, "channel": {"type": "string", "index": 4, "name": "channel", "comment": null}, "amount_in_usd": {"type": "double", "index": 5, "name": "amount_in_usd", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 7, "name": "created_date", "comment": null}, "modified_at": {"type": "timestamp", "index": 8, "name": "modified_at", "comment": null}, "modified_date": {"type": "date", "index": 9, "name": "modified_date", "comment": null}}, "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.yoda.analytics___sms_stg__shopify_campaign_order"}, "model.yoda.analytics___sms_stg__shopify_customer": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__shopify_customer", "database": null, "comment": null, "owner": "root"}, "columns": {"shopify_customer_internal_id": {"type": "long", "index": 0, "name": "shopify_customer_internal_id", "comment": null}, "sms_user_id": {"type": "long", "index": 1, "name": "sms_user_id", "comment": null}, "shopify_customer_external_id": {"type": "long", "index": 2, "name": "shopify_customer_external_id", "comment": null}, "phone_number": {"type": "string", "index": 3, "name": "phone_number", "comment": null}, "email": {"type": "string", "index": 4, "name": "email", "comment": null}, "is_logical_deleted": {"type": "long", "index": 5, "name": "is_logical_deleted", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 7, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "updated_date": {"type": "date", "index": 9, "name": "updated_date", "comment": null}}, "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.yoda.analytics___sms_stg__shopify_customer"}, "model.yoda.analytics___sms_stg__shopify_flow_order": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__shopify_flow_order", "database": null, "comment": null, "owner": "root"}, "columns": {"order_attribution_id": {"type": "long", "index": 0, "name": "order_attribution_id", "comment": null}, "order_id": {"type": "string", "index": 1, "name": "order_id", "comment": null}, "customer_id": {"type": "string", "index": 2, "name": "customer_id", "comment": null}, "sms_user_id": {"type": "long", "index": 3, "name": "sms_user_id", "comment": null}, "flow_id": {"type": "long", "index": 4, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 5, "name": "flow_step_id", "comment": null}, "attribution_source": {"type": "string", "index": 6, "name": "attribution_source", "comment": null}, "amount_in_usd": {"type": "double", "index": 7, "name": "amount_in_usd", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 9, "name": "created_date", "comment": null}, "modified_at": {"type": "timestamp", "index": 10, "name": "modified_at", "comment": null}, "modified_date": {"type": "date", "index": 11, "name": "modified_date", "comment": null}}, "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.yoda.analytics___sms_stg__shopify_flow_order"}, "model.yoda.analytics___sms_stg__shopify_orders": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__shopify_orders", "database": null, "comment": null, "owner": "root"}, "columns": {"order_line_id": {"type": "long", "index": 0, "name": "order_line_id", "comment": null}, "order_id": {"type": "long", "index": 1, "name": "order_id", "comment": null}, "sms_user_id": {"type": "long", "index": 2, "name": "sms_user_id", "comment": null}, "customer_id": {"type": "long", "index": 3, "name": "customer_id", "comment": null}, "financial_status": {"type": "string", "index": 4, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "string", "index": 5, "name": "fulfillment_status", "comment": null}, "cancel_reason": {"type": "string", "index": 6, "name": "cancel_reason", "comment": null}, "total_price_in_usd": {"type": "double", "index": 7, "name": "total_price_in_usd", "comment": null}, "is_buyer_accepts_marketing": {"type": "short", "index": 8, "name": "is_buyer_accepts_marketing", "comment": null}, "is_test": {"type": "short", "index": 9, "name": "is_test", "comment": null}, "is_logical_deleted": {"type": "short", "index": 10, "name": "is_logical_deleted", "comment": null}, "cancelled_at": {"type": "timestamp", "index": 11, "name": "cancelled_at", "comment": null}, "cancelled_date": {"type": "date", "index": 12, "name": "cancelled_date", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 14, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 15, "name": "updated_at", "comment": null}, "updated_date": {"type": "date", "index": 16, "name": "updated_date", "comment": null}}, "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.yoda.analytics___sms_stg__shopify_orders"}, "model.yoda.analytics___sms_stg__shopify_user": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__shopify_user", "database": null, "comment": null, "owner": "root"}, "columns": {"shopify_user_id": {"type": "long", "index": 0, "name": "shopify_user_id", "comment": null}, "sms_user_id": {"type": "long", "index": 1, "name": "sms_user_id", "comment": null}, "shopify_store_id": {"type": "string", "index": 2, "name": "shopify_store_id", "comment": null}, "store_name": {"type": "string", "index": 3, "name": "store_name", "comment": null}, "store_domain": {"type": "string", "index": 4, "name": "store_domain", "comment": null}, "platform_name": {"type": "string", "index": 5, "name": "platform_name", "comment": null}, "shopify_plan_name": {"type": "string", "index": 6, "name": "shopify_plan_name", "comment": null}, "abandoned_checkouts_sent": {"type": "long", "index": 7, "name": "abandoned_checkouts_sent", "comment": null}, "shop_data": {"type": "string", "index": 8, "name": "shop_data", "comment": null}, "is_access_token": {"type": "integer", "index": 9, "name": "is_access_token", "comment": null}, "is_connected": {"type": "short", "index": 10, "name": "is_connected", "comment": null}, "is_auto_reload": {"type": "long", "index": 11, "name": "is_auto_reload", "comment": null}, "is_sync_enabled": {"type": "short", "index": 12, "name": "is_sync_enabled", "comment": null}, "is_active": {"type": "short", "index": 13, "name": "is_active", "comment": null}, "is_shopify_plus": {"type": "short", "index": 14, "name": "is_shopify_plus", "comment": null}, "is_logical_deleted": {"type": "short", "index": 15, "name": "is_logical_deleted", "comment": null}, "created_at": {"type": "timestamp", "index": 16, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 17, "name": "created_date", "comment": null}, "modified_at": {"type": "timestamp", "index": 18, "name": "modified_at", "comment": null}, "modified_date": {"type": "date", "index": 19, "name": "modified_date", "comment": null}, "sms_user_id_row_rank": {"type": "integer", "index": 20, "name": "sms_user_id_row_rank", "comment": null}}, "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.yoda.analytics___sms_stg__shopify_user"}, "model.yoda.analytics___sms_stg__sms_user": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__sms_user", "database": null, "comment": null, "owner": "root"}, "columns": {"sms_user_id": {"type": "long", "index": 0, "name": "sms_user_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "organization_id": {"type": "long", "index": 2, "name": "organization_id", "comment": null}, "parent_id": {"type": "long", "index": 3, "name": "parent_id", "comment": null}, "phone_number": {"type": "string", "index": 4, "name": "phone_number", "comment": null}, "cleaned_phone_number": {"type": "string", "index": 5, "name": "cleaned_phone_number", "comment": null}, "email": {"type": "string", "index": 6, "name": "email", "comment": null}, "email_validation": {"type": "string", "index": 7, "name": "email_validation", "comment": null}, "user_name": {"type": "string", "index": 8, "name": "user_name", "comment": null}, "role_id": {"type": "long", "index": 9, "name": "role_id", "comment": null}, "role_name": {"type": "string", "index": 10, "name": "role_name", "comment": null}, "industry_name": {"type": "string", "index": 11, "name": "industry_name", "comment": null}, "platform_name": {"type": "string", "index": 12, "name": "platform_name", "comment": null}, "timezone": {"type": "string", "index": 13, "name": "timezone", "comment": null}, "partner_type": {"type": "string", "index": 14, "name": "partner_type", "comment": null}, "payment_gateway": {"type": "string", "index": 15, "name": "payment_gateway", "comment": null}, "plan_id": {"type": "long", "index": 16, "name": "plan_id", "comment": null}, "plan_name": {"type": "string", "index": 17, "name": "plan_name", "comment": null}, "plan_price_in_usd": {"type": "double", "index": 18, "name": "plan_price_in_usd", "comment": null}, "balance_in_usd": {"type": "decimal(12,4)", "index": 19, "name": "balance_in_usd", "comment": null}, "bonus_balance_in_usd": {"type": "decimal(12,4)", "index": 20, "name": "bonus_balance_in_usd", "comment": null}, "earnings_in_usd": {"type": "decimal(12,2)", "index": 21, "name": "earnings_in_usd", "comment": null}, "discounted_mms_price": {"type": "decimal(12,2)", "index": 22, "name": "discounted_mms_price", "comment": null}, "affiliate_commission": {"type": "decimal(12,2)", "index": 23, "name": "affiliate_commission", "comment": null}, "price_limit": {"type": "decimal(12,4)", "index": 24, "name": "price_limit", "comment": null}, "total_logins": {"type": "long", "index": 25, "name": "total_logins", "comment": null}, "is_partner": {"type": "short", "index": 26, "name": "is_partner", "comment": null}, "is_price_limit_enabled": {"type": "short", "index": 27, "name": "is_price_limit_enabled", "comment": null}, "is_chat_enabled": {"type": "short", "index": 28, "name": "is_chat_enabled", "comment": null}, "is_collect_checkout_subscribers": {"type": "short", "index": 29, "name": "is_collect_checkout_subscribers", "comment": null}, "is_ban_exclude": {"type": "short", "index": 30, "name": "is_ban_exclude", "comment": null}, "is_test": {"type": "short", "index": 31, "name": "is_test", "comment": null}, "is_subscribed": {"type": "short", "index": 32, "name": "is_subscribed", "comment": null}, "is_agreed_terms": {"type": "short", "index": 33, "name": "is_agreed_terms", "comment": null}, "is_onboarding_completed": {"type": "short", "index": 34, "name": "is_onboarding_completed", "comment": null}, "is_whitelisted": {"type": "short", "index": 35, "name": "is_whitelisted", "comment": null}, "is_logical_deleted": {"type": "short", "index": 36, "name": "is_logical_deleted", "comment": null}, "created_at": {"type": "timestamp", "index": 37, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 38, "name": "created_date", "comment": null}, "modified_at": {"type": "timestamp", "index": 39, "name": "modified_at", "comment": null}, "modified_date": {"type": "date", "index": 40, "name": "modified_date", "comment": null}, "row_ranking_for_store": {"type": "integer", "index": 41, "name": "row_ranking_for_store", "comment": null}}, "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.yoda.analytics___sms_stg__sms_user"}, "model.yoda.analytics___sms_stg__user_event_log": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___sms_stg__user_event_log", "database": null, "comment": null, "owner": "root"}, "columns": {"event_id": {"type": "long", "index": 0, "name": "event_id", "comment": null}, "platform_name": {"type": "string", "index": 1, "name": "platform_name", "comment": null}, "platform_user_id": {"type": "long", "index": 2, "name": "platform_user_id", "comment": null}, "sms_user_id": {"type": "long", "index": 3, "name": "sms_user_id", "comment": null}, "event_name": {"type": "string", "index": 4, "name": "event_name", "comment": null}, "event_type": {"type": "string", "index": 5, "name": "event_type", "comment": null}, "event_details": {"type": "string", "index": 6, "name": "event_details", "comment": null}, "is_logical_deleted": {"type": "short", "index": 7, "name": "is_logical_deleted", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 9, "name": "created_date", "comment": null}}, "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.yoda.analytics___sms_stg__user_event_log"}, "model.yoda.analytics___synergies__store_enablement_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___synergies__store_enablement_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"synergy_date": {"type": "date", "index": 0, "name": "synergy_date", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "synergy_id": {"type": "long", "index": 2, "name": "synergy_id", "comment": null}, "synergy_name": {"type": "string", "index": 3, "name": "synergy_name", "comment": null}, "is_enabled": {"type": "short", "index": 4, "name": "is_enabled", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 5, "name": "dwh_updated_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.yoda.analytics___synergies__store_enablement_daily"}, "model.yoda.analytics___synergies__store_enablement_over_time": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___synergies__store_enablement_over_time", "database": null, "comment": null, "owner": "root"}, "columns": {"app_key": {"type": "string", "index": 0, "name": "app_key", "comment": null}, "synergy_id": {"type": "long", "index": 1, "name": "synergy_id", "comment": null}, "from_time": {"type": "timestamp", "index": 2, "name": "from_time", "comment": null}, "to_time": {"type": "timestamp", "index": 3, "name": "to_time", "comment": null}, "synergy_name": {"type": "string", "index": 4, "name": "synergy_name", "comment": null}, "first_event_id": {"type": "long", "index": 5, "name": "first_event_id", "comment": null}, "is_enabled": {"type": "short", "index": 6, "name": "is_enabled", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 7, "name": "dwh_updated_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.yoda.analytics___synergies__store_enablement_over_time"}, "model.yoda.analytics___synergies_stg__enablement_event": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___synergies_stg__enablement_event", "database": null, "comment": null, "owner": "root"}, "columns": {"app_key": {"type": "string", "index": 0, "name": "app_key", "comment": null}, "widget_id": {"type": "long", "index": 1, "name": "widget_id", "comment": null}, "updated_at": {"type": "timestamp", "index": 2, "name": "updated_at", "comment": null}, "first_event_id": {"type": "long", "index": 3, "name": "first_event_id", "comment": null}, "is_enabled": {"type": "short", "index": 4, "name": "is_enabled", "comment": null}, "enablement_status": {"type": "string", "index": 5, "name": "enablement_status", "comment": null}, "store_widget_event_count": {"type": "long", "index": 6, "name": "store_widget_event_count", "comment": null}, "store_widget_row_ranking": {"type": "integer", "index": 7, "name": "store_widget_row_ranking", "comment": null}, "store_widget_row_ranking_backwards": {"type": "integer", "index": 8, "name": "store_widget_row_ranking_backwards", "comment": null}, "first_event_created_at": {"type": "timestamp", "index": 9, "name": "first_event_created_at", "comment": null}, "first_event_created_date": {"type": "date", "index": 10, "name": "first_event_created_date", "comment": null}, "updated_date": {"type": "date", "index": 11, "name": "updated_date", "comment": null}}, "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.yoda.analytics___synergies_stg__enablement_event"}, "model.yoda.analytics___synergies_stg__home_screen_section": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___synergies_stg__home_screen_section", "database": null, "comment": null, "owner": "root"}, "columns": {"section_id": {"type": "long", "index": 0, "name": "section_id", "comment": null}, "section_name": {"type": "string", "index": 1, "name": "section_name", "comment": null}, "created_at": {"type": "timestamp", "index": 2, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 3, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 4, "name": "updated_at", "comment": null}, "updated_date": {"type": "date", "index": 5, "name": "updated_date", "comment": null}}, "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.yoda.analytics___synergies_stg__home_screen_section"}, "model.yoda.analytics___synergies_stg__home_screen_widget": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___synergies_stg__home_screen_widget", "database": null, "comment": null, "owner": "root"}, "columns": {"widget_id": {"type": "long", "index": 0, "name": "widget_id", "comment": null}, "section_id": {"type": "long", "index": 1, "name": "section_id", "comment": null}, "widget_name": {"type": "string", "index": 2, "name": "widget_name", "comment": null}, "created_at": {"type": "timestamp", "index": 3, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 4, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 5, "name": "updated_at", "comment": null}, "updated_date": {"type": "date", "index": 6, "name": "updated_date", "comment": null}}, "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.yoda.analytics___synergies_stg__home_screen_widget"}, "model.yoda.analytics___ugc__review": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc__review", "database": null, "comment": null, "owner": "root"}, "columns": {"review_id": {"type": "long", "index": 0, "name": "review_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "store_id": {"type": "long", "index": 2, "name": "store_id", "comment": null}, "organization_id": {"type": "long", "index": 3, "name": "organization_id", "comment": null}, "source_review_id": {"type": "long", "index": 4, "name": "source_review_id", "comment": null}, "review_source_type_id": {"type": "long", "index": 5, "name": "review_source_type_id", "comment": null}, "review_type_id": {"type": "long", "index": 6, "name": "review_type_id", "comment": null}, "reviewer_id": {"type": "long", "index": 7, "name": "reviewer_id", "comment": null}, "reviewer_type": {"type": "string", "index": 8, "name": "reviewer_type", "comment": null}, "syndication_source_id": {"type": "string", "index": 9, "name": "syndication_source_id", "comment": null}, "product_array": {"type": "array", "index": 10, "name": "product_array", "comment": null}, "title_content": {"type": "string", "index": 11, "name": "title_content", "comment": null}, "content": {"type": "string", "index": 12, "name": "content", "comment": null}, "score": {"type": "integer", "index": 13, "name": "score", "comment": null}, "device_name": {"type": "string", "index": 14, "name": "device_name", "comment": null}, "device_type": {"type": "string", "index": 15, "name": "device_type", "comment": null}, "vote_up_cnt": {"type": "long", "index": 16, "name": "vote_up_cnt", "comment": null}, "vote_down_cnt": {"type": "long", "index": 17, "name": "vote_down_cnt", "comment": null}, "product_cnt": {"type": "long", "index": 18, "name": "product_cnt", "comment": null}, "comment_cnt": {"type": "long", "index": 19, "name": "comment_cnt", "comment": null}, "is_deleted": {"type": "short", "index": 20, "name": "is_deleted", "comment": null}, "is_published": {"type": "short", "index": 21, "name": "is_published", "comment": null}, "is_syndicated_review": {"type": "short", "index": 22, "name": "is_syndicated_review", "comment": null}, "created_at": {"type": "timestamp", "index": 23, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 24, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 25, "name": "updated_at", "comment": null}, "updated_date": {"type": "date", "index": 26, "name": "updated_date", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 27, "name": "dwh_updated_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.yoda.analytics___ugc__review"}, "model.yoda.analytics___ugc__store": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc__store", "database": null, "comment": null, "owner": "root"}, "columns": {"store_id": {"type": "long", "index": 0, "name": "store_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "organization_id": {"type": "long", "index": 2, "name": "organization_id", "comment": null}, "organization_key": {"type": "string", "index": 3, "name": "organization_key", "comment": null}, "store_domain": {"type": "string", "index": 4, "name": "store_domain", "comment": null}, "store_name": {"type": "string", "index": 5, "name": "store_name", "comment": null}, "platform_name": {"type": "string", "index": 6, "name": "platform_name", "comment": null}, "platform_group": {"type": "string", "index": 7, "name": "platform_group", "comment": null}, "sf_account_id": {"type": "string", "index": 8, "name": "sf_account_id", "comment": null}, "sf_account_cs_segment": {"type": "string", "index": 9, "name": "sf_account_cs_segment", "comment": null}, "reviews_enablement_date": {"type": "date", "index": 10, "name": "reviews_enablement_date", "comment": null}, "reviews_enablement_month": {"type": "date", "index": 11, "name": "reviews_enablement_month", "comment": null}, "is_orders_last_365d": {"type": "short", "index": 12, "name": "is_orders_last_365d", "comment": null}, "orders_last_365d_cnt": {"type": "long", "index": 13, "name": "orders_last_365d_cnt", "comment": null}, "latest_order_date": {"type": "date", "index": 14, "name": "latest_order_date", "comment": null}, "store_created_at": {"type": "timestamp", "index": 15, "name": "store_created_at", "comment": null}, "store_created_date": {"type": "date", "index": 16, "name": "store_created_date", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 17, "name": "dwh_updated_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.yoda.analytics___ugc__store"}, "model.yoda.analytics___ugc__store_feature_over_time": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc__store_feature_over_time", "database": null, "comment": null, "owner": "root"}, "columns": {"source_id": {"type": "long", "index": 0, "name": "source_id", "comment": null}, "source_id_type": {"type": "string", "index": 1, "name": "source_id_type", "comment": null}, "store_id": {"type": "long", "index": 2, "name": "store_id", "comment": null}, "app_key": {"type": "string", "index": 3, "name": "app_key", "comment": null}, "feature_id": {"type": "long", "index": 4, "name": "feature_id", "comment": null}, "feature_name": {"type": "string", "index": 5, "name": "feature_name", "comment": null}, "from_date": {"type": "date", "index": 6, "name": "from_date", "comment": null}, "to_date": {"type": "date", "index": 7, "name": "to_date", "comment": null}, "is_enabled": {"type": "integer", "index": 8, "name": "is_enabled", "comment": null}, "is_organization_owner": {"type": "integer", "index": 9, "name": "is_organization_owner", "comment": null}, "is_user_owner": {"type": "integer", "index": 10, "name": "is_user_owner", "comment": null}, "is_store_owner": {"type": "integer", "index": 11, "name": "is_store_owner", "comment": null}, "updated_at": {"type": "timestamp", "index": 12, "name": "updated_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.analytics___ugc__store_feature_over_time"}, "model.yoda.analytics___ugc__store_metrics_daily": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc__store_metrics_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"metric_date": {"type": "date", "index": 0, "name": "metric_date", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "organization_key": {"type": "string", "index": 2, "name": "organization_key", "comment": null}, "reviews_enablement_date": {"type": "date", "index": 3, "name": "reviews_enablement_date", "comment": null}, "review_cnt": {"type": "long", "index": 4, "name": "review_cnt", "comment": null}, "reviewer_cnt": {"type": "long", "index": 5, "name": "reviewer_cnt", "comment": null}, "review_rating_sum": {"type": "long", "index": 6, "name": "review_rating_sum", "comment": null}, "order_cnt": {"type": "long", "index": 7, "name": "order_cnt", "comment": null}, "review_request_sent_cnt": {"type": "long", "index": 8, "name": "review_request_sent_cnt", "comment": null}, "is_facebooksyndication_enabled": {"type": "short", "index": 9, "name": "is_facebooksyndication_enabled", "comment": null}, "is_coupons_enabled": {"type": "short", "index": 10, "name": "is_coupons_enabled", "comment": null}, "is_retailsyndicationwalmart_enabled": {"type": "short", "index": 11, "name": "is_retailsyndicationwalmart_enabled", "comment": null}, "is_widgetv3_enabled": {"type": "short", "index": 12, "name": "is_widgetv3_enabled", "comment": null}, "is_bottomlinesyndication_enabled": {"type": "short", "index": 13, "name": "is_bottomlinesyndication_enabled", "comment": null}, "is_googlefeed_enabled": {"type": "short", "index": 14, "name": "is_googlefeed_enabled", "comment": null}, "is_richsnippet_enabled": {"type": "short", "index": 15, "name": "is_richsnippet_enabled", "comment": null}, "is_reviewratingfields_enabled": {"type": "short", "index": 16, "name": "is_reviewratingfields_enabled", "comment": null}, "is_reviewwithpictures_enabled": {"type": "short", "index": 17, "name": "is_reviewwithpictures_enabled", "comment": null}, "is_sitereviewafterproductreview_enabled": {"type": "short", "index": 18, "name": "is_sitereviewafterproductreview_enabled", "comment": null}, "is_videosinreviews_enabled": {"type": "short", "index": 19, "name": "is_videosinreviews_enabled", "comment": null}, "is_customtranslations_enabled": {"type": "short", "index": 20, "name": "is_customtranslations_enabled", "comment": null}, "is_googlesellerrating_enabled": {"type": "short", "index": 21, "name": "is_googlesellerrating_enabled", "comment": null}, "is_cssversionededitor_enabled": {"type": "short", "index": 22, "name": "is_cssversionededitor_enabled", "comment": null}, "is_csseditor_enabled": {"type": "short", "index": 23, "name": "is_csseditor_enabled", "comment": null}, "is_map_enabled": {"type": "short", "index": 24, "name": "is_map_enabled", "comment": null}, "is_reminder_enabled": {"type": "short", "index": 25, "name": "is_reminder_enabled", "comment": null}, "is_reviews_widget_loaded": {"type": "short", "index": 26, "name": "is_reviews_widget_loaded", "comment": null}, "review_cnt_l30d": {"type": "long", "index": 27, "name": "review_cnt_l30d", "comment": null}, "order_cnt_l30d": {"type": "long", "index": 28, "name": "order_cnt_l30d", "comment": null}, "review_request_sent_cnt_l30d": {"type": "long", "index": 29, "name": "review_request_sent_cnt_l30d", "comment": null}, "is_map_enabled_l30d": {"type": "short", "index": 30, "name": "is_map_enabled_l30d", "comment": null}, "is_reviews_widget_loaded_l30d": {"type": "short", "index": 31, "name": "is_reviews_widget_loaded_l30d", "comment": null}, "is_googlefeed_enabled_l30d": {"type": "short", "index": 32, "name": "is_googlefeed_enabled_l30d", "comment": null}, "is_googlesellerrating_enabled_l30d": {"type": "short", "index": 33, "name": "is_googlesellerrating_enabled_l30d", "comment": null}, "is_sitereviewafterproductreview_enabled_l30d": {"type": "short", "index": 34, "name": "is_sitereviewafterproductreview_enabled_l30d", "comment": null}, "is_active_tier_0": {"type": "short", "index": 35, "name": "is_active_tier_0", "comment": null}, "is_active_tier_1": {"type": "short", "index": 36, "name": "is_active_tier_1", "comment": null}, "is_active_tier_2": {"type": "short", "index": 37, "name": "is_active_tier_2", "comment": null}, "is_active_tier_3": {"type": "short", "index": 38, "name": "is_active_tier_3", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 39, "name": "dwh_updated_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.yoda.analytics___ugc__store_metrics_daily"}, "model.yoda.analytics___ugc_stg__comment": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc_stg__comment", "database": null, "comment": null, "owner": "root"}, "columns": {"comment_id": {"type": "long", "index": 0, "name": "comment_id", "comment": null}, "commentable_id": {"type": "long", "index": 1, "name": "commentable_id", "comment": null}, "user_id": {"type": "string", "index": 2, "name": "user_id", "comment": null}, "source_comment_id": {"type": "long", "index": 3, "name": "source_comment_id", "comment": null}, "commentable_type": {"type": "string", "index": 4, "name": "commentable_type", "comment": null}, "content": {"type": "string", "index": 5, "name": "content", "comment": null}, "commenter_display_name": {"type": "string", "index": 6, "name": "commenter_display_name", "comment": null}, "is_public": {"type": "short", "index": 7, "name": "is_public", "comment": null}, "is_approved": {"type": "short", "index": 8, "name": "is_approved", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 10, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_at", "comment": null}, "updated_date": {"type": "date", "index": 12, "name": "updated_date", "comment": null}}, "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.yoda.analytics___ugc_stg__comment"}, "model.yoda.analytics___ugc_stg__email": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc_stg__email", "database": null, "comment": null, "owner": "root"}, "columns": {"email_analytics_id": {"type": "long", "index": 0, "name": "email_analytics_id", "comment": null}, "email_id": {"type": "string", "index": 1, "name": "email_id", "comment": null}, "app_key": {"type": "string", "index": 2, "name": "app_key", "comment": null}, "platform": {"type": "string", "index": 3, "name": "platform", "comment": null}, "review_form": {"type": "string", "index": 4, "name": "review_form", "comment": null}, "coupon_code": {"type": "string", "index": 5, "name": "coupon_code", "comment": null}, "review_type": {"type": "string", "index": 6, "name": "review_type", "comment": null}, "sku": {"type": "string", "index": 7, "name": "sku", "comment": null}, "product_id": {"type": "string", "index": 8, "name": "product_id", "comment": null}, "order_id": {"type": "string", "index": 9, "name": "order_id", "comment": null}, "email_type": {"type": "string", "index": 10, "name": "email_type", "comment": null}, "email_address": {"type": "string", "index": 11, "name": "email_address", "comment": null}, "batch_subject": {"type": "string", "index": 12, "name": "batch_subject", "comment": null}, "batch_id": {"type": "string", "index": 13, "name": "batch_id", "comment": null}, "reminder_num": {"type": "long", "index": 14, "name": "reminder_num", "comment": null}, "email_sent_date": {"type": "date", "index": 15, "name": "email_sent_date", "comment": null}, "email_sent_at": {"type": "timestamp", "index": 16, "name": "email_sent_at", "comment": null}, "invalid_address_at": {"type": "timestamp", "index": 17, "name": "invalid_address_at", "comment": null}, "failed_at": {"type": "timestamp", "index": 18, "name": "failed_at", "comment": null}, "marked_spam_at": {"type": "timestamp", "index": 19, "name": "marked_spam_at", "comment": null}, "arrived_early_at": {"type": "timestamp", "index": 20, "name": "arrived_early_at", "comment": null}, "clicked_through_at": {"type": "timestamp", "index": 21, "name": "clicked_through_at", "comment": null}, "unsubscribed_at": {"type": "timestamp", "index": 22, "name": "unsubscribed_at", "comment": null}, "content_creation_at": {"type": "timestamp", "index": 23, "name": "content_creation_at", "comment": null}, "opened_at": {"type": "timestamp", "index": 24, "name": "opened_at", "comment": null}, "order_at": {"type": "timestamp", "index": 25, "name": "order_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.yoda.analytics___ugc_stg__email"}, "model.yoda.analytics___ugc_stg__emails": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc_stg__emails", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "app_key": {"type": "string", "index": 2, "name": "app_key", "comment": null}, "arrived_early_timestamp": {"type": "timestamp", "index": 3, "name": "arrived_early_timestamp", "comment": null}, "batch_id": {"type": "string", "index": 4, "name": "batch_id", "comment": null}, "batch_subject": {"type": "string", "index": 5, "name": "batch_subject", "comment": null}, "clicked_through_timestamp": {"type": "timestamp", "index": 6, "name": "clicked_through_timestamp", "comment": null}, "content_creation_timestamp": {"type": "timestamp", "index": 7, "name": "content_creation_timestamp", "comment": null}, "coupon_code": {"type": "string", "index": 8, "name": "coupon_code", "comment": null}, "email_address": {"type": "string", "index": 9, "name": "email_address", "comment": null}, "email_id": {"type": "string", "index": 10, "name": "email_id", "comment": null}, "email_sent_date": {"type": "timestamp", "index": 11, "name": "email_sent_date", "comment": null}, "email_sent_timestamp": {"type": "timestamp", "index": 12, "name": "email_sent_timestamp", "comment": null}, "email_type": {"type": "string", "index": 13, "name": "email_type", "comment": null}, "failed_timestamp": {"type": "timestamp", "index": 14, "name": "failed_timestamp", "comment": null}, "id": {"type": "long", "index": 15, "name": "id", "comment": null}, "invalid_address_timestamp": {"type": "timestamp", "index": 16, "name": "invalid_address_timestamp", "comment": null}, "marked_spam_timestamp": {"type": "timestamp", "index": 17, "name": "marked_spam_timestamp", "comment": null}, "opened_timestamp": {"type": "timestamp", "index": 18, "name": "opened_timestamp", "comment": null}, "order_id": {"type": "string", "index": 19, "name": "order_id", "comment": null}, "order_timestamp": {"type": "timestamp", "index": 20, "name": "order_timestamp", "comment": null}, "platform": {"type": "string", "index": 21, "name": "platform", "comment": null}, "product_id": {"type": "string", "index": 22, "name": "product_id", "comment": null}, "reminder_num": {"type": "long", "index": 23, "name": "reminder_num", "comment": null}, "review_form": {"type": "string", "index": 24, "name": "review_form", "comment": null}, "review_type": {"type": "string", "index": 25, "name": "review_type", "comment": null}, "sku": {"type": "string", "index": 26, "name": "sku", "comment": null}, "unsubscribed_timestamp": {"type": "timestamp", "index": 27, "name": "unsubscribed_timestamp", "comment": null}, "is_deleted": {"type": "boolean", "index": 28, "name": "is_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.analytics___ugc_stg__emails"}, "model.yoda.analytics___ugc_stg__metadata_type": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc_stg__metadata_type", "database": null, "comment": null, "owner": "root"}, "columns": {"metadata_type_id": {"type": "integer", "index": 0, "name": "metadata_type_id", "comment": null}, "metadata_name": {"type": "string", "index": 1, "name": "metadata_name", "comment": null}, "created_at": {"type": "timestamp", "index": 2, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 3, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 4, "name": "updated_at", "comment": null}, "updated_date": {"type": "date", "index": 5, "name": "updated_date", "comment": null}}, "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.yoda.analytics___ugc_stg__metadata_type"}, "model.yoda.analytics___ugc_stg__owner_feature_enablement_event": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc_stg__owner_feature_enablement_event", "database": null, "comment": null, "owner": "root"}, "columns": {"owner_feature_id": {"type": "long", "index": 0, "name": "owner_feature_id", "comment": null}, "owner_id": {"type": "long", "index": 1, "name": "owner_id", "comment": null}, "feature_id": {"type": "long", "index": 2, "name": "feature_id", "comment": null}, "owner_type": {"type": "string", "index": 3, "name": "owner_type", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 5, "name": "updated_at", "comment": null}, "disabled": {"type": "long", "index": 6, "name": "disabled", "comment": null}, "user_enabled": {"type": "long", "index": 7, "name": "user_enabled", "comment": null}, "floating": {"type": "long", "index": 8, "name": "floating", "comment": null}, "is_disabled": {"type": "short", "index": 9, "name": "is_disabled", "comment": null}, "is_user_enabled": {"type": "short", "index": 10, "name": "is_user_enabled", "comment": null}, "is_floating": {"type": "short", "index": 11, "name": "is_floating", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 12, "name": "dwh_updated_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.yoda.analytics___ugc_stg__owner_feature_enablement_event"}, "model.yoda.analytics___ugc_stg__reminder": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc_stg__reminder", "database": null, "comment": null, "owner": "root"}, "columns": {"reminder_id": {"type": "long", "index": 0, "name": "reminder_id", "comment": null}, "store_id": {"type": "long", "index": 1, "name": "store_id", "comment": null}, "days_from_purchase": {"type": "long", "index": 2, "name": "days_from_purchase", "comment": null}, "subject": {"type": "string", "index": 3, "name": "subject", "comment": null}, "body": {"type": "string", "index": 4, "name": "body", "comment": null}, "header": {"type": "string", "index": 5, "name": "header", "comment": null}, "bottom": {"type": "string", "index": 6, "name": "bottom", "comment": null}, "mail_interval": {"type": "long", "index": 7, "name": "mail_interval", "comment": null}, "max_products": {"type": "long", "index": 8, "name": "max_products", "comment": null}, "didnt_get_product_link": {"type": "string", "index": 9, "name": "didnt_get_product_link", "comment": null}, "is_enabled": {"type": "short", "index": 10, "name": "is_enabled", "comment": null}, "email_submission_type_id": {"type": "long", "index": 11, "name": "email_submission_type_id", "comment": null}, "formless_call_to_action": {"type": "string", "index": 12, "name": "formless_call_to_action", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 14, "name": "updated_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.yoda.analytics___ugc_stg__reminder"}, "model.yoda.analytics___ugc_stg__reminder_snapshot": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc_stg__reminder_snapshot", "database": null, "comment": null, "owner": "root"}, "columns": {"store_id": {"type": "long", "index": 0, "name": "store_id", "comment": null}, "reminder_id": {"type": "long", "index": 1, "name": "reminder_id", "comment": null}, "max_products": {"type": "long", "index": 2, "name": "max_products", "comment": null}, "mail_interval": {"type": "long", "index": 3, "name": "mail_interval", "comment": null}, "is_enabled": {"type": "short", "index": 4, "name": "is_enabled", "comment": null}, "email_submission_type_id": {"type": "long", "index": 5, "name": "email_submission_type_id", "comment": null}, "subject": {"type": "string", "index": 6, "name": "subject", "comment": null}, "days_from_purchase": {"type": "long", "index": 7, "name": "days_from_purchase", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 9, "name": "dwh_updated_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.yoda.analytics___ugc_stg__reminder_snapshot"}, "model.yoda.analytics___ugc_stg__review": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review", "database": null, "comment": null, "owner": "root"}, "columns": {"review_id": {"type": "long", "index": 0, "name": "review_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "reviewer_id": {"type": "long", "index": 2, "name": "reviewer_id", "comment": null}, "source_review_id": {"type": "long", "index": 3, "name": "source_review_id", "comment": null}, "review_source_type_id": {"type": "long", "index": 4, "name": "review_source_type_id", "comment": null}, "review_type_id": {"type": "long", "index": 5, "name": "review_type_id", "comment": null}, "reviewer_type": {"type": "string", "index": 6, "name": "reviewer_type", "comment": null}, "title_content": {"type": "string", "index": 7, "name": "title_content", "comment": null}, "content": {"type": "string", "index": 8, "name": "content", "comment": null}, "reviewer_display_name": {"type": "string", "index": 9, "name": "reviewer_display_name", "comment": null}, "score": {"type": "integer", "index": 10, "name": "score", "comment": null}, "vote_up_cnt": {"type": "long", "index": 11, "name": "vote_up_cnt", "comment": null}, "vote_down_cnt": {"type": "long", "index": 12, "name": "vote_down_cnt", "comment": null}, "sentiment_ratio": {"type": "double", "index": 13, "name": "sentiment_ratio", "comment": null}, "is_deleted": {"type": "short", "index": 14, "name": "is_deleted", "comment": null}, "is_published": {"type": "short", "index": 15, "name": "is_published", "comment": null}, "is_syndicated_review": {"type": "short", "index": 16, "name": "is_syndicated_review", "comment": null}, "is_under_new_section_in_b2b": {"type": "short", "index": 17, "name": "is_under_new_section_in_b2b", "comment": null}, "is_under_archived_section_in_b2b": {"type": "short", "index": 18, "name": "is_under_archived_section_in_b2b", "comment": null}, "is_verified_buyer": {"type": "short", "index": 19, "name": "is_verified_buyer", "comment": null}, "is_shop_owner": {"type": "short", "index": 20, "name": "is_shop_owner", "comment": null}, "created_at": {"type": "timestamp", "index": 21, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 22, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 23, "name": "updated_at", "comment": null}, "updated_date": {"type": "date", "index": 24, "name": "updated_date", "comment": null}}, "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.yoda.analytics___ugc_stg__review"}, "model.yoda.analytics___ugc_stg__review_metadata": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review_metadata", "database": null, "comment": null, "owner": "root"}, "columns": {"review_metadata_id": {"type": "long", "index": 0, "name": "review_metadata_id", "comment": null}, "review_id": {"type": "long", "index": 1, "name": "review_id", "comment": null}, "metadata_type_id": {"type": "long", "index": 2, "name": "metadata_type_id", "comment": null}, "metadata_type_value": {"type": "string", "index": 3, "name": "metadata_type_value", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 5, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_at", "comment": null}, "updated_date": {"type": "date", "index": 7, "name": "updated_date", "comment": null}}, "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.yoda.analytics___ugc_stg__review_metadata"}, "model.yoda.analytics___ugc_stg__review_subject": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review_subject", "database": null, "comment": null, "owner": "root"}, "columns": {"review_subject_id": {"type": "long", "index": 0, "name": "review_subject_id", "comment": null}, "review_id": {"type": "long", "index": 1, "name": "review_id", "comment": null}, "account_id": {"type": "long", "index": 2, "name": "account_id", "comment": null}, "subject_entity_type": {"type": "string", "index": 3, "name": "subject_entity_type", "comment": null}, "subject_id": {"type": "long", "index": 4, "name": "subject_id", "comment": null}, "is_deactivated": {"type": "short", "index": 5, "name": "is_deactivated", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "created_date": {"type": "date", "index": 7, "name": "created_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "updated_date": {"type": "date", "index": 9, "name": "updated_date", "comment": null}}, "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.yoda.analytics___ugc_stg__review_subject"}, "model.yoda.email_stg__system_email_events": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "email_stg__system_email_events", "database": null, "comment": null, "owner": "root"}, "columns": {"processing_time": {"type": "timestamp", "index": 0, "name": "processing_time", "comment": null}, "context_reference_id": {"type": "string", "index": 1, "name": "context_reference_id", "comment": null}, "context_store_id": {"type": "string", "index": 2, "name": "context_store_id", "comment": null}, "context_source_id": {"type": "string", "index": 3, "name": "context_source_id", "comment": null}, "email_address": {"type": "string", "index": 4, "name": "email_address", "comment": null}, "context_source_name": {"type": "string", "index": 5, "name": "context_source_name", "comment": null}, "context_delivery_type": {"type": "string", "index": 6, "name": "context_delivery_type", "comment": null}, "event_issuer": {"type": "string", "index": 7, "name": "event_issuer", "comment": null}, "event_type": {"type": "string", "index": 8, "name": "event_type", "comment": null}, "timestamp": {"type": "timestamp", "index": 9, "name": "timestamp", "comment": null}, "error_message": {"type": "string", "index": 10, "name": "error_message", "comment": null}, "mailbox_provider": {"type": "string", "index": 11, "name": "mailbox_provider", "comment": null}, "external_attributes_raw_event": {"type": "string", "index": 12, "name": "external_attributes_raw_event", "comment": null}, "external_attributes_external_event_id": {"type": "string", "index": 13, "name": "external_attributes_external_event_id", "comment": null}, "delivery_data_ip": {"type": "string", "index": 14, "name": "delivery_data_ip", "comment": null}, "delivery_data_esp": {"type": "string", "index": 15, "name": "delivery_data_esp", "comment": null}, "engagement_data_ip": {"type": "string", "index": 16, "name": "engagement_data_ip", "comment": null}, "engagement_data_is_bot_event": {"type": "string", "index": 17, "name": "engagement_data_is_bot_event", "comment": null}, "engagement_data_machine_mpp_open": {"type": "string", "index": 18, "name": "engagement_data_machine_mpp_open", "comment": null}, "engagement_data_click_url": {"type": "string", "index": 19, "name": "engagement_data_click_url", "comment": null}, "engagement_data_user_agent_properties_device_type": {"type": "string", "index": 20, "name": "engagement_data_user_agent_properties_device_type", "comment": null}, "engagement_data_user_agent_properties_device": {"type": "string", "index": 21, "name": "engagement_data_user_agent_properties_device", "comment": null}, "engagement_data_user_agent_properties_browser": {"type": "string", "index": 22, "name": "engagement_data_user_agent_properties_browser", "comment": null}, "engagement_data_user_agent_properties_browser_version": {"type": "string", "index": 23, "name": "engagement_data_user_agent_properties_browser_version", "comment": null}, "engagement_data_user_agent_properties_os": {"type": "string", "index": 24, "name": "engagement_data_user_agent_properties_os", "comment": null}, "engagement_data_user_agent_properties_os_version": {"type": "string", "index": 25, "name": "engagement_data_user_agent_properties_os_version", "comment": null}, "engagement_data_user_agent_properties_user_agent_line": {"type": "string", "index": 26, "name": "engagement_data_user_agent_properties_user_agent_line", "comment": null}, "headers_is_replay": {"type": "string", "index": 27, "name": "headers_is_replay", "comment": null}, "headers_event_id": {"type": "string", "index": 28, "name": "headers_event_id", "comment": null}, "headers_event_type": {"type": "string", "index": 29, "name": "headers_event_type", "comment": null}, "headers_time_sent": {"type": "string", "index": 30, "name": "headers_time_sent", "comment": null}, "feedback_code": {"type": "string", "index": 31, "name": "feedback_code", "comment": null}, "productname": {"type": "string", "index": 32, "name": "productname", "comment": null}, "partition_date": {"type": "date", "index": 33, "name": "partition_date", "comment": null}, "ip_pool_name": {"type": "string", "index": 34, "name": "ip_pool_name", "comment": null}, "sub_user_name": {"type": "string", "index": 35, "name": "sub_user_name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.email_stg__system_email_events"}, "model.yoda.infra__databricks_costs": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra__databricks_costs", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "name": {"type": "string", "index": 1, "name": "name", "comment": null}, "product_line": {"type": "string", "index": 2, "name": "product_line", "comment": null}, "instance_type": {"type": "string", "index": 3, "name": "instance_type", "comment": null}, "instance_count": {"type": "long", "index": 4, "name": "instance_count", "comment": null}, "dbus": {"type": "double", "index": 5, "name": "dbus", "comment": null}, "machineHours": {"type": "double", "index": 6, "name": "machineHours", "comment": null}, "databricks_cost": {"type": "double", "index": 7, "name": "databricks_cost", "comment": null}, "aws_cost": {"type": "double", "index": 8, "name": "aws_cost", "comment": null}, "product_product_family": {"type": "string", "index": 9, "name": "product_product_family", "comment": null}, "pricing_term": {"type": "string", "index": 10, "name": "pricing_term", "comment": null}, "sku": {"type": "string", "index": 11, "name": "sku", "comment": null}, "is_photon": {"type": "boolean", "index": 12, "name": "is_photon", "comment": null}, "type": {"type": "string", "index": 13, "name": "type", "comment": null}, "clusterName": {"type": "string", "index": 14, "name": "clusterName", "comment": null}, "component": {"type": "string", "index": 15, "name": "component", "comment": null}, "availability_zones": {"type": "string", "index": 16, "name": "availability_zones", "comment": null}, "resource_tags_user_group": {"type": "string", "index": 17, "name": "resource_tags_user_group", "comment": null}, "resource_tags_user_team": {"type": "string", "index": 18, "name": "resource_tags_user_team", "comment": null}, "resource_tags_user_feature": {"type": "string", "index": 19, "name": "resource_tags_user_feature", "comment": null}}, "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.yoda.infra__databricks_costs"}, "model.yoda.infra__ec2_cost": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra__ec2_cost", "database": null, "comment": null, "owner": "root"}, "columns": {"billing_period": {"type": "timestamp", "index": 0, "name": "billing_period", "comment": null}, "bill_start_date": {"type": "timestamp", "index": 1, "name": "bill_start_date", "comment": null}, "bill_payer_account_id": {"type": "string", "index": 2, "name": "bill_payer_account_id", "comment": null}, "account_name": {"type": "string", "index": 3, "name": "account_name", "comment": null}, "product_line": {"type": "string", "index": 4, "name": "product_line", "comment": null}, "line_item_line_item_type": {"type": "string", "index": 5, "name": "line_item_line_item_type", "comment": null}, "product_product_family": {"type": "string", "index": 6, "name": "product_product_family", "comment": null}, "product_region": {"type": "string", "index": 7, "name": "product_region", "comment": null}, "pricing_term": {"type": "string", "index": 8, "name": "pricing_term", "comment": null}, "product_instance_type": {"type": "string", "index": 9, "name": "product_instance_type", "comment": null}, "resource_tags_user_sub_component": {"type": "string", "index": 10, "name": "resource_tags_user_sub_component", "comment": null}, "resource_tags_user_component": {"type": "string", "index": 11, "name": "resource_tags_user_component", "comment": null}, "resource_tags_user_environment": {"type": "string", "index": 12, "name": "resource_tags_user_environment", "comment": null}, "unblended_cost": {"type": "double", "index": 13, "name": "unblended_cost", "comment": null}, "amortized_cost": {"type": "double", "index": 14, "name": "amortized_cost", "comment": null}, "resource_tags_user_group": {"type": "string", "index": 15, "name": "resource_tags_user_group", "comment": null}, "resource_tags_user_team": {"type": "string", "index": 16, "name": "resource_tags_user_team", "comment": null}, "resource_tags_user_feature": {"type": "string", "index": 17, "name": "resource_tags_user_feature", "comment": null}, "ags": {"type": "string", "index": 18, "name": "ags", "comment": null}, "is_managed_by_cast_ai": {"type": "boolean", "index": 19, "name": "is_managed_by_cast_ai", "comment": null}}, "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.yoda.infra__ec2_cost"}, "model.yoda.infra__ec2_cost_cold": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra__ec2_cost_cold", "database": null, "comment": null, "owner": "root"}, "columns": {"billing_period": {"type": "timestamp", "index": 0, "name": "billing_period", "comment": null}, "bill_start_date": {"type": "timestamp", "index": 1, "name": "bill_start_date", "comment": null}, "bill_payer_account_id": {"type": "string", "index": 2, "name": "bill_payer_account_id", "comment": null}, "account_name": {"type": "string", "index": 3, "name": "account_name", "comment": null}, "product_line": {"type": "string", "index": 4, "name": "product_line", "comment": null}, "line_item_line_item_type": {"type": "string", "index": 5, "name": "line_item_line_item_type", "comment": null}, "product_product_family": {"type": "string", "index": 6, "name": "product_product_family", "comment": null}, "product_region": {"type": "string", "index": 7, "name": "product_region", "comment": null}, "pricing_term": {"type": "string", "index": 8, "name": "pricing_term", "comment": null}, "product_instance_type": {"type": "string", "index": 9, "name": "product_instance_type", "comment": null}, "resource_tags_user_sub_component": {"type": "string", "index": 10, "name": "resource_tags_user_sub_component", "comment": null}, "resource_tags_user_component": {"type": "string", "index": 11, "name": "resource_tags_user_component", "comment": null}, "resource_tags_user_environment": {"type": "string", "index": 12, "name": "resource_tags_user_environment", "comment": null}, "unblended_cost": {"type": "double", "index": 13, "name": "unblended_cost", "comment": null}, "amortized_cost": {"type": "double", "index": 14, "name": "amortized_cost", "comment": null}, "resource_tags_user_group": {"type": "string", "index": 15, "name": "resource_tags_user_group", "comment": null}, "resource_tags_user_team": {"type": "string", "index": 16, "name": "resource_tags_user_team", "comment": null}, "resource_tags_user_feature": {"type": "string", "index": 17, "name": "resource_tags_user_feature", "comment": null}, "ags": {"type": "string", "index": 18, "name": "ags", "comment": null}, "is_managed_by_cast_ai": {"type": "boolean", "index": 19, "name": "is_managed_by_cast_ai", "comment": null}}, "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.yoda.infra__ec2_cost_cold"}, "model.yoda.infra__ec2_cost_hot": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra__ec2_cost_hot", "database": null, "comment": null, "owner": "root"}, "columns": {"billing_period": {"type": "timestamp", "index": 0, "name": "billing_period", "comment": null}, "bill_start_date": {"type": "timestamp", "index": 1, "name": "bill_start_date", "comment": null}, "bill_payer_account_id": {"type": "string", "index": 2, "name": "bill_payer_account_id", "comment": null}, "account_name": {"type": "string", "index": 3, "name": "account_name", "comment": null}, "product_line": {"type": "string", "index": 4, "name": "product_line", "comment": null}, "line_item_line_item_type": {"type": "string", "index": 5, "name": "line_item_line_item_type", "comment": null}, "product_product_family": {"type": "string", "index": 6, "name": "product_product_family", "comment": null}, "product_region": {"type": "string", "index": 7, "name": "product_region", "comment": null}, "pricing_term": {"type": "string", "index": 8, "name": "pricing_term", "comment": null}, "product_instance_type": {"type": "string", "index": 9, "name": "product_instance_type", "comment": null}, "resource_tags_user_sub_component": {"type": "string", "index": 10, "name": "resource_tags_user_sub_component", "comment": null}, "resource_tags_user_component": {"type": "string", "index": 11, "name": "resource_tags_user_component", "comment": null}, "resource_tags_user_environment": {"type": "string", "index": 12, "name": "resource_tags_user_environment", "comment": null}, "unblended_cost": {"type": "double", "index": 13, "name": "unblended_cost", "comment": null}, "amortized_cost": {"type": "double", "index": 14, "name": "amortized_cost", "comment": null}, "resource_tags_user_group": {"type": "string", "index": 15, "name": "resource_tags_user_group", "comment": null}, "resource_tags_user_team": {"type": "string", "index": 16, "name": "resource_tags_user_team", "comment": null}, "resource_tags_user_feature": {"type": "string", "index": 17, "name": "resource_tags_user_feature", "comment": null}, "ags": {"type": "string", "index": 18, "name": "ags", "comment": null}, "is_managed_by_cast_ai": {"type": "boolean", "index": 19, "name": "is_managed_by_cast_ai", "comment": null}}, "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.yoda.infra__ec2_cost_hot"}, "model.yoda.infra__infra_metrics": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra__infra_metrics", "database": null, "comment": null, "owner": "root"}, "columns": {"ts": {"type": "timestamp", "index": 0, "name": "ts", "comment": null}, "product_line": {"type": "string", "index": 1, "name": "product_line", "comment": null}, "source": {"type": "string", "index": 2, "name": "source", "comment": null}, "component": {"type": "string", "index": 3, "name": "component", "comment": null}, "key": {"type": "string", "index": 4, "name": "key", "comment": null}, "value": {"type": "long", "index": 5, "name": "value", "comment": null}, "custom_properties": {"type": "string", "index": 6, "name": "custom_properties", "comment": null}, "row_number": {"type": "integer", "index": 7, "name": "row_number", "comment": null}}, "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.yoda.infra__infra_metrics"}, "model.yoda.infra__kubernetes_cost": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra__kubernetes_cost", "database": null, "comment": null, "owner": "root"}, "columns": {"cluster": {"type": "string", "index": 0, "name": "cluster", "comment": null}, "namespace": {"type": "string", "index": 1, "name": "namespace", "comment": null}, "service": {"type": "string", "index": 2, "name": "service", "comment": null}, "productline": {"type": "string", "index": 3, "name": "productline", "comment": null}, "sub_service": {"type": "string", "index": 4, "name": "sub_service", "comment": null}, "release_name": {"type": "string", "index": 5, "name": "release_name", "comment": null}, "cpucost": {"type": "double", "index": 6, "name": "cpucost", "comment": null}, "pvcost": {"type": "double", "index": 7, "name": "pvcost", "comment": null}, "networkcost": {"type": "double", "index": 8, "name": "networkcost", "comment": null}, "ramcost": {"type": "double", "index": 9, "name": "ramcost", "comment": null}, "totalcost": {"type": "double", "index": 10, "name": "totalcost", "comment": null}, "totalefficiency": {"type": "double", "index": 11, "name": "totalefficiency", "comment": null}, "cpuefficiency": {"type": "double", "index": 12, "name": "cpuefficiency", "comment": null}, "cpucorehours": {"type": "double", "index": 13, "name": "cpucorehours", "comment": null}, "cpucorerequestaverage": {"type": "double", "index": 14, "name": "cpucorerequestaverage", "comment": null}, "cpucoreusageaverage": {"type": "double", "index": 15, "name": "cpucoreusageaverage", "comment": null}, "cpucores": {"type": "double", "index": 16, "name": "cpucores", "comment": null}, "cpuCoreUsageMax": {"type": "double", "index": 17, "name": "cpuCoreUsageMax", "comment": null}, "networktransferbytes": {"type": "double", "index": 18, "name": "networktransferbytes", "comment": null}, "networkreceivebytes": {"type": "double", "index": 19, "name": "networkreceivebytes", "comment": null}, "ramefficiency": {"type": "double", "index": 20, "name": "ramefficiency", "comment": null}, "ramByteUsageMax": {"type": "long", "index": 21, "name": "ramByteUsageMax", "comment": null}, "rambytehours": {"type": "double", "index": 22, "name": "rambytehours", "comment": null}, "rambyteusageaverage": {"type": "double", "index": 23, "name": "rambyteusageaverage", "comment": null}, "rambyterequestaverage": {"type": "double", "index": 24, "name": "rambyterequestaverage", "comment": null}, "rambytes": {"type": "double", "index": 25, "name": "rambytes", "comment": null}, "run_id": {"type": "string", "index": 26, "name": "run_id", "comment": null}, "minutes": {"type": "double", "index": 27, "name": "minutes", "comment": null}, "year": {"type": "integer", "index": 28, "name": "year", "comment": null}, "month": {"type": "integer", "index": 29, "name": "month", "comment": null}, "day": {"type": "integer", "index": 30, "name": "day", "comment": null}, "billing_day": {"type": "date", "index": 31, "name": "billing_day", "comment": null}, "name": {"type": "string", "index": 32, "name": "name", "comment": null}, "ec2_id": {"type": "string", "index": 33, "name": "ec2_id", "comment": null}, "team": {"type": "string", "index": 34, "name": "team", "comment": null}, "group": {"type": "string", "index": 35, "name": "group", "comment": null}}, "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.yoda.infra__kubernetes_cost"}, "model.yoda.infra__pixel_onsite_v2": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra__pixel_onsite_v2", "database": null, "comment": null, "owner": "root"}, "columns": {"processing_time": {"type": "timestamp", "index": 0, "name": "processing_time", "comment": null}, "br_colordepth": {"type": "string", "index": 1, "name": "br_colordepth", "comment": null}, "br_cookies": {"type": "long", "index": 2, "name": "br_cookies", "comment": null}, "br_family": {"type": "string", "index": 3, "name": "br_family", "comment": null}, "br_features_director": {"type": "long", "index": 4, "name": "br_features_director", "comment": null}, "br_features_flash": {"type": "long", "index": 5, "name": "br_features_flash", "comment": null}, "br_features_gears": {"type": "long", "index": 6, "name": "br_features_gears", "comment": null}, "br_features_java": {"type": "long", "index": 7, "name": "br_features_java", "comment": null}, "br_features_pdf": {"type": "long", "index": 8, "name": "br_features_pdf", "comment": null}, "br_features_quicktime": {"type": "long", "index": 9, "name": "br_features_quicktime", "comment": null}, "br_features_realplayer": {"type": "long", "index": 10, "name": "br_features_realplayer", "comment": null}, "br_features_silverlight": {"type": "long", "index": 11, "name": "br_features_silverlight", "comment": null}, "br_features_windowsmedia": {"type": "long", "index": 12, "name": "br_features_windowsmedia", "comment": null}, "br_lang": {"type": "string", "index": 13, "name": "br_lang", "comment": null}, "br_major": {"type": "string", "index": 14, "name": "br_major", "comment": null}, "br_minor": {"type": "string", "index": 15, "name": "br_minor", "comment": null}, "br_viewheight": {"type": "long", "index": 16, "name": "br_viewheight", "comment": null}, "br_viewwidth": {"type": "long", "index": 17, "name": "br_viewwidth", "comment": null}, "collector_day": {"type": "string", "index": 18, "name": "collector_day", "comment": null}, "collector_epoch": {"type": "long", "index": 19, "name": "collector_epoch", "comment": null}, "collector_month": {"type": "string", "index": 20, "name": "collector_month", "comment": null}, "collector_tstamp": {"type": "string", "index": 21, "name": "collector_tstamp", "comment": null}, "collector_year": {"type": "string", "index": 22, "name": "collector_year", "comment": null}, "context": {"type": "string", "index": 23, "name": "context", "comment": null}, "device_family": {"type": "string", "index": 24, "name": "device_family", "comment": null}, "doc_charset": {"type": "string", "index": 25, "name": "doc_charset", "comment": null}, "doc_height": {"type": "long", "index": 26, "name": "doc_height", "comment": null}, "doc_width": {"type": "long", "index": 27, "name": "doc_width", "comment": null}, "domain_sessionidx": {"type": "long", "index": 28, "name": "domain_sessionidx", "comment": null}, "domain_userid": {"type": "string", "index": 29, "name": "domain_userid", "comment": null}, "dvce_screenheight": {"type": "long", "index": 30, "name": "dvce_screenheight", "comment": null}, "dvce_screenwidth": {"type": "long", "index": 31, "name": "dvce_screenwidth", "comment": null}, "dvce_tstamp": {"type": "string", "index": 32, "name": "dvce_tstamp", "comment": null}, "event_id": {"type": "string", "index": 33, "name": "event_id", "comment": null}, "event_vendor": {"type": "string", "index": 34, "name": "event_vendor", "comment": null}, "event": {"type": "string", "index": 35, "name": "event", "comment": null}, "geo_city": {"type": "string", "index": 36, "name": "geo_city", "comment": null}, "geo_country": {"type": "string", "index": 37, "name": "geo_country", "comment": null}, "geo_latitude": {"type": "double", "index": 38, "name": "geo_latitude", "comment": null}, "geo_longitude": {"type": "double", "index": 39, "name": "geo_longitude", "comment": null}, "geo_region": {"type": "string", "index": 40, "name": "geo_region", "comment": null}, "geo_zipcode": {"type": "string", "index": 41, "name": "geo_zipcode", "comment": null}, "mkt_campaign": {"type": "string", "index": 42, "name": "mkt_campaign", "comment": null}, "mkt_content": {"type": "string", "index": 43, "name": "mkt_content", "comment": null}, "mkt_medium": {"type": "string", "index": 44, "name": "mkt_medium", "comment": null}, "mkt_source": {"type": "string", "index": 45, "name": "mkt_source", "comment": null}, "mkt_term": {"type": "string", "index": 46, "name": "mkt_term", "comment": null}, "os_family": {"type": "string", "index": 47, "name": "os_family", "comment": null}, "os_major": {"type": "string", "index": 48, "name": "os_major", "comment": null}, "os_minor": {"type": "string", "index": 49, "name": "os_minor", "comment": null}, "os_timezone": {"type": "string", "index": 50, "name": "os_timezone", "comment": null}, "page_referrer": {"type": "string", "index": 51, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 52, "name": "page_title", "comment": null}, "page_urlfragment": {"type": "string", "index": 53, "name": "page_urlfragment", "comment": null}, "page_urlhost": {"type": "string", "index": 54, "name": "page_urlhost", "comment": null}, "page_urlpath": {"type": "string", "index": 55, "name": "page_urlpath", "comment": null}, "page_urlport": {"type": "long", "index": 56, "name": "page_urlport", "comment": null}, "page_urlquery": {"type": "string", "index": 57, "name": "page_urlquery", "comment": null}, "page_url": {"type": "string", "index": 58, "name": "page_url", "comment": null}, "page_urlscheme": {"type": "string", "index": 59, "name": "page_urlscheme", "comment": null}, "platform": {"type": "string", "index": 60, "name": "platform", "comment": null}, "pp_xoffset_max": {"type": "long", "index": 61, "name": "pp_xoffset_max", "comment": null}, "pp_xoffset_min": {"type": "long", "index": 62, "name": "pp_xoffset_min", "comment": null}, "pp_yoffset_max": {"type": "long", "index": 63, "name": "pp_yoffset_max", "comment": null}, "pp_yoffset_min": {"type": "long", "index": 64, "name": "pp_yoffset_min", "comment": null}, "refr_medium": {"type": "string", "index": 65, "name": "refr_medium", "comment": null}, "refr_source": {"type": "string", "index": 66, "name": "refr_source", "comment": null}, "refr_term": {"type": "string", "index": 67, "name": "refr_term", "comment": null}, "refr_urlfragment": {"type": "string", "index": 68, "name": "refr_urlfragment", "comment": null}, "refr_urlhost": {"type": "string", "index": 69, "name": "refr_urlhost", "comment": null}, "refr_urlpath": {"type": "string", "index": 70, "name": "refr_urlpath", "comment": null}, "refr_urlport": {"type": "long", "index": 71, "name": "refr_urlport", "comment": null}, "refr_urlquery": {"type": "string", "index": 72, "name": "refr_urlquery", "comment": null}, "refr_urlscheme": {"type": "string", "index": 73, "name": "refr_urlscheme", "comment": null}, "se_action": {"type": "string", "index": 74, "name": "se_action", "comment": null}, "se_category": {"type": "string", "index": 75, "name": "se_category", "comment": null}, "se_label": {"type": "string", "index": 76, "name": "se_label", "comment": null}, "se_page_sku": {"type": "string", "index": 77, "name": "se_page_sku", "comment": null}, "se_property": {"type": "string", "index": 78, "name": "se_property", "comment": null}, "se_testing_groups": {"type": "string", "index": 79, "name": "se_testing_groups", "comment": null}, "se_value": {"type": "string", "index": 80, "name": "se_value", "comment": null}, "tr_currency": {"type": "string", "index": 81, "name": "tr_currency", "comment": null}, "tr_orderid": {"type": "string", "index": 82, "name": "tr_orderid", "comment": null}, "tr_total": {"type": "string", "index": 83, "name": "tr_total", "comment": null}, "txn_id": {"type": "string", "index": 84, "name": "txn_id", "comment": null}, "user_fingerprint": {"type": "string", "index": 85, "name": "user_fingerprint", "comment": null}, "useragent": {"type": "string", "index": 86, "name": "useragent", "comment": null}, "v_collector": {"type": "string", "index": 87, "name": "v_collector", "comment": null}, "v_etl": {"type": "string", "index": 88, "name": "v_etl", "comment": null}, "v_tracker": {"type": "string", "index": 89, "name": "v_tracker", "comment": null}, "y_fingerprint": {"type": "string", "index": 90, "name": "y_fingerprint", "comment": null}, "user_id": {"type": "string", "index": 91, "name": "user_id", "comment": null}, "app_id": {"type": "string", "index": 92, "name": "app_id", "comment": null}, "partition_date": {"type": "string", "index": 93, "name": "partition_date", "comment": null}, "hour": {"type": "string", "index": 94, "name": "hour", "comment": null}}, "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.yoda.infra__pixel_onsite_v2"}, "model.yoda.infra__pixel_onsite_v3": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra__pixel_onsite_v3", "database": null, "comment": null, "owner": "root"}, "columns": {"processing_time": {"type": "timestamp", "index": 0, "name": "processing_time", "comment": null}, "br_colordepth": {"type": "string", "index": 1, "name": "br_colordepth", "comment": null}, "br_cookies": {"type": "long", "index": 2, "name": "br_cookies", "comment": null}, "br_family": {"type": "string", "index": 3, "name": "br_family", "comment": null}, "br_features_director": {"type": "long", "index": 4, "name": "br_features_director", "comment": null}, "br_features_flash": {"type": "long", "index": 5, "name": "br_features_flash", "comment": null}, "br_features_gears": {"type": "long", "index": 6, "name": "br_features_gears", "comment": null}, "br_features_java": {"type": "long", "index": 7, "name": "br_features_java", "comment": null}, "br_features_pdf": {"type": "long", "index": 8, "name": "br_features_pdf", "comment": null}, "br_features_quicktime": {"type": "long", "index": 9, "name": "br_features_quicktime", "comment": null}, "br_features_realplayer": {"type": "long", "index": 10, "name": "br_features_realplayer", "comment": null}, "br_features_silverlight": {"type": "long", "index": 11, "name": "br_features_silverlight", "comment": null}, "br_features_windowsmedia": {"type": "long", "index": 12, "name": "br_features_windowsmedia", "comment": null}, "br_lang": {"type": "string", "index": 13, "name": "br_lang", "comment": null}, "br_major": {"type": "string", "index": 14, "name": "br_major", "comment": null}, "br_minor": {"type": "string", "index": 15, "name": "br_minor", "comment": null}, "br_viewheight": {"type": "long", "index": 16, "name": "br_viewheight", "comment": null}, "br_viewwidth": {"type": "long", "index": 17, "name": "br_viewwidth", "comment": null}, "collector_day": {"type": "string", "index": 18, "name": "collector_day", "comment": null}, "collector_epoch": {"type": "long", "index": 19, "name": "collector_epoch", "comment": null}, "collector_month": {"type": "string", "index": 20, "name": "collector_month", "comment": null}, "collector_tstamp": {"type": "string", "index": 21, "name": "collector_tstamp", "comment": null}, "collector_year": {"type": "string", "index": 22, "name": "collector_year", "comment": null}, "context": {"type": "string", "index": 23, "name": "context", "comment": null}, "device_family": {"type": "string", "index": 24, "name": "device_family", "comment": null}, "doc_charset": {"type": "string", "index": 25, "name": "doc_charset", "comment": null}, "doc_height": {"type": "long", "index": 26, "name": "doc_height", "comment": null}, "doc_width": {"type": "long", "index": 27, "name": "doc_width", "comment": null}, "domain_sessionidx": {"type": "long", "index": 28, "name": "domain_sessionidx", "comment": null}, "domain_userid": {"type": "string", "index": 29, "name": "domain_userid", "comment": null}, "dvce_screenheight": {"type": "long", "index": 30, "name": "dvce_screenheight", "comment": null}, "dvce_screenwidth": {"type": "long", "index": 31, "name": "dvce_screenwidth", "comment": null}, "dvce_tstamp": {"type": "string", "index": 32, "name": "dvce_tstamp", "comment": null}, "event_id": {"type": "string", "index": 33, "name": "event_id", "comment": null}, "event_vendor": {"type": "string", "index": 34, "name": "event_vendor", "comment": null}, "event": {"type": "string", "index": 35, "name": "event", "comment": null}, "geo_city": {"type": "string", "index": 36, "name": "geo_city", "comment": null}, "geo_country": {"type": "string", "index": 37, "name": "geo_country", "comment": null}, "geo_latitude": {"type": "double", "index": 38, "name": "geo_latitude", "comment": null}, "geo_longitude": {"type": "double", "index": 39, "name": "geo_longitude", "comment": null}, "geo_region": {"type": "string", "index": 40, "name": "geo_region", "comment": null}, "geo_zipcode": {"type": "string", "index": 41, "name": "geo_zipcode", "comment": null}, "mkt_campaign": {"type": "string", "index": 42, "name": "mkt_campaign", "comment": null}, "mkt_content": {"type": "string", "index": 43, "name": "mkt_content", "comment": null}, "mkt_medium": {"type": "string", "index": 44, "name": "mkt_medium", "comment": null}, "mkt_source": {"type": "string", "index": 45, "name": "mkt_source", "comment": null}, "mkt_term": {"type": "string", "index": 46, "name": "mkt_term", "comment": null}, "os_family": {"type": "string", "index": 47, "name": "os_family", "comment": null}, "os_major": {"type": "string", "index": 48, "name": "os_major", "comment": null}, "os_minor": {"type": "string", "index": 49, "name": "os_minor", "comment": null}, "os_timezone": {"type": "string", "index": 50, "name": "os_timezone", "comment": null}, "page_referrer": {"type": "string", "index": 51, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 52, "name": "page_title", "comment": null}, "page_urlfragment": {"type": "string", "index": 53, "name": "page_urlfragment", "comment": null}, "page_urlhost": {"type": "string", "index": 54, "name": "page_urlhost", "comment": null}, "page_urlpath": {"type": "string", "index": 55, "name": "page_urlpath", "comment": null}, "page_urlport": {"type": "long", "index": 56, "name": "page_urlport", "comment": null}, "page_urlquery": {"type": "string", "index": 57, "name": "page_urlquery", "comment": null}, "page_url": {"type": "string", "index": 58, "name": "page_url", "comment": null}, "page_urlscheme": {"type": "string", "index": 59, "name": "page_urlscheme", "comment": null}, "platform": {"type": "string", "index": 60, "name": "platform", "comment": null}, "pp_xoffset_max": {"type": "long", "index": 61, "name": "pp_xoffset_max", "comment": null}, "pp_xoffset_min": {"type": "long", "index": 62, "name": "pp_xoffset_min", "comment": null}, "pp_yoffset_max": {"type": "long", "index": 63, "name": "pp_yoffset_max", "comment": null}, "pp_yoffset_min": {"type": "long", "index": 64, "name": "pp_yoffset_min", "comment": null}, "refr_medium": {"type": "string", "index": 65, "name": "refr_medium", "comment": null}, "refr_source": {"type": "string", "index": 66, "name": "refr_source", "comment": null}, "refr_term": {"type": "string", "index": 67, "name": "refr_term", "comment": null}, "refr_urlfragment": {"type": "string", "index": 68, "name": "refr_urlfragment", "comment": null}, "refr_urlhost": {"type": "string", "index": 69, "name": "refr_urlhost", "comment": null}, "refr_urlpath": {"type": "string", "index": 70, "name": "refr_urlpath", "comment": null}, "refr_urlport": {"type": "long", "index": 71, "name": "refr_urlport", "comment": null}, "refr_urlquery": {"type": "string", "index": 72, "name": "refr_urlquery", "comment": null}, "refr_urlscheme": {"type": "string", "index": 73, "name": "refr_urlscheme", "comment": null}, "se_action": {"type": "string", "index": 74, "name": "se_action", "comment": null}, "se_category": {"type": "string", "index": 75, "name": "se_category", "comment": null}, "se_label": {"type": "string", "index": 76, "name": "se_label", "comment": null}, "se_page_sku": {"type": "string", "index": 77, "name": "se_page_sku", "comment": null}, "se_property": {"type": "string", "index": 78, "name": "se_property", "comment": null}, "se_testing_groups": {"type": "string", "index": 79, "name": "se_testing_groups", "comment": null}, "se_value": {"type": "string", "index": 80, "name": "se_value", "comment": null}, "tr_currency": {"type": "string", "index": 81, "name": "tr_currency", "comment": null}, "tr_orderid": {"type": "string", "index": 82, "name": "tr_orderid", "comment": null}, "tr_total": {"type": "string", "index": 83, "name": "tr_total", "comment": null}, "txn_id": {"type": "string", "index": 84, "name": "txn_id", "comment": null}, "user_fingerprint": {"type": "string", "index": 85, "name": "user_fingerprint", "comment": null}, "useragent": {"type": "string", "index": 86, "name": "useragent", "comment": null}, "v_collector": {"type": "string", "index": 87, "name": "v_collector", "comment": null}, "v_etl": {"type": "string", "index": 88, "name": "v_etl", "comment": null}, "v_tracker": {"type": "string", "index": 89, "name": "v_tracker", "comment": null}, "y_fingerprint": {"type": "string", "index": 90, "name": "y_fingerprint", "comment": null}, "user_id": {"type": "string", "index": 91, "name": "user_id", "comment": null}, "app_id": {"type": "string", "index": 92, "name": "app_id", "comment": null}, "partition_date": {"type": "string", "index": 93, "name": "partition_date", "comment": null}, "hour": {"type": "string", "index": 94, "name": "hour", "comment": null}}, "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.yoda.infra__pixel_onsite_v3"}, "model.yoda.infra__spark_jobs": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra__spark_jobs", "database": null, "comment": null, "owner": "root"}, "columns": {"run_id": {"type": "string", "index": 0, "name": "run_id", "comment": null}, "year": {"type": "integer", "index": 1, "name": "year", "comment": null}, "month": {"type": "integer", "index": 2, "name": "month", "comment": null}, "day": {"type": "integer", "index": 3, "name": "day", "comment": null}, "product_line": {"type": "string", "index": 4, "name": "product_line", "comment": null}, "group": {"type": "string", "index": 5, "name": "group", "comment": null}, "team": {"type": "string", "index": 6, "name": "team", "comment": null}, "run_date": {"type": "date", "index": 7, "name": "run_date", "comment": null}, "total_network_transfer_in_bytes": {"type": "double", "index": 8, "name": "total_network_transfer_in_bytes", "comment": null}, "total_network_received_in_bytes": {"type": "double", "index": 9, "name": "total_network_received_in_bytes", "comment": null}, "cost": {"type": "double", "index": 10, "name": "cost", "comment": null}, "cpucost": {"type": "double", "index": 11, "name": "cpucost", "comment": null}, "pvcost": {"type": "double", "index": 12, "name": "pvcost", "comment": null}, "networkcost": {"type": "double", "index": 13, "name": "networkcost", "comment": null}, "ramcost": {"type": "double", "index": 14, "name": "ramcost", "comment": null}, "cpucorehours": {"type": "double", "index": 15, "name": "cpucorehours", "comment": null}, "rambytehours": {"type": "double", "index": 16, "name": "rambytehours", "comment": null}, "productline_instance_tag": {"type": "string", "index": 17, "name": "productline_instance_tag", "comment": null}, "is_multi_az_cost": {"type": "boolean", "index": 18, "name": "is_multi_az_cost", "comment": null}, "region": {"type": "string", "index": 19, "name": "region", "comment": null}, "release_name": {"type": "string", "index": 20, "name": "release_name", "comment": null}, "duration": {"type": "double", "index": 21, "name": "duration", "comment": null}, "driver_cores": {"type": "double", "index": 22, "name": "driver_cores", "comment": null}, "driver_memory_in_bytes": {"type": "double", "index": 23, "name": "driver_memory_in_bytes", "comment": null}, "driver_avg_network_transfer_in_bytes": {"type": "double", "index": 24, "name": "driver_avg_network_transfer_in_bytes", "comment": null}, "driver_avg_network_received_in_bytes": {"type": "double", "index": 25, "name": "driver_avg_network_received_in_bytes", "comment": null}, "driver_max_core_usage": {"type": "double", "index": 26, "name": "driver_max_core_usage", "comment": null}, "driver_max_memory_usage": {"type": "long", "index": 27, "name": "driver_max_memory_usage", "comment": null}, "driver_instance_types": {"type": "string", "index": 28, "name": "driver_instance_types", "comment": null}, "driver_instance_vcpu": {"type": "string", "index": 29, "name": "driver_instance_vcpu", "comment": null}, "driver_instance_memory": {"type": "string", "index": 30, "name": "driver_instance_memory", "comment": null}, "driver_instance_network_performance": {"type": "string", "index": 31, "name": "driver_instance_network_performance", "comment": null}, "driver_instance_pricing_term": {"type": "string", "index": 32, "name": "driver_instance_pricing_term", "comment": null}, "driver_availability_zone": {"type": "string", "index": 33, "name": "driver_availability_zone", "comment": null}, "driver_product_storage": {"type": "string", "index": 34, "name": "driver_product_storage", "comment": null}, "driver_ram_efficiency": {"type": "double", "index": 35, "name": "driver_ram_efficiency", "comment": null}, "driver_ram_efficiency_by_max": {"type": "double", "index": 36, "name": "driver_ram_efficiency_by_max", "comment": null}, "driver_cpu_efficiency": {"type": "double", "index": 37, "name": "driver_cpu_efficiency", "comment": null}, "driver_cpu_efficiency_by_max": {"type": "double", "index": 38, "name": "driver_cpu_efficiency_by_max", "comment": null}, "driver_cost": {"type": "double", "index": 39, "name": "driver_cost", "comment": null}, "is_driver_OD_candidate": {"type": "boolean", "index": 40, "name": "is_driver_OD_candidate", "comment": null}, "avg_executor_duration": {"type": "double", "index": 41, "name": "avg_executor_duration", "comment": null}, "max_executor_duration": {"type": "double", "index": 42, "name": "max_executor_duration", "comment": null}, "min_executor_duration": {"type": "double", "index": 43, "name": "min_executor_duration", "comment": null}, "total_executors_duration": {"type": "double", "index": 44, "name": "total_executors_duration", "comment": null}, "executors_count": {"type": "long", "index": 45, "name": "executors_count", "comment": null}, "executor_cores": {"type": "double", "index": 46, "name": "executor_cores", "comment": null}, "executor_memory_in_bytes": {"type": "double", "index": 47, "name": "executor_memory_in_bytes", "comment": null}, "executor_max_core_usage": {"type": "double", "index": 48, "name": "executor_max_core_usage", "comment": null}, "executor_max_memory_usage": {"type": "long", "index": 49, "name": "executor_max_memory_usage", "comment": null}, "executor_avg_network_transfer_in_bytes": {"type": "double", "index": 50, "name": "executor_avg_network_transfer_in_bytes", "comment": null}, "executor_avg_network_received_in_bytes": {"type": "double", "index": 51, "name": "executor_avg_network_received_in_bytes", "comment": null}, "executors_instance_types": {"type": "string", "index": 52, "name": "executors_instance_types", "comment": null}, "executors_vcpu": {"type": "string", "index": 53, "name": "executors_vcpu", "comment": null}, "executors_memory": {"type": "string", "index": 54, "name": "executors_memory", "comment": null}, "executor_network_performance": {"type": "string", "index": 55, "name": "executor_network_performance", "comment": null}, "executor_pricing_term": {"type": "string", "index": 56, "name": "executor_pricing_term", "comment": null}, "executors_availability_zone": {"type": "string", "index": 57, "name": "executors_availability_zone", "comment": null}, "executors_product_storage": {"type": "string", "index": 58, "name": "executors_product_storage", "comment": null}, "executor_ram_efficiency": {"type": "double", "index": 59, "name": "executor_ram_efficiency", "comment": null}, "executor_ram_efficiency_by_max": {"type": "double", "index": 60, "name": "executor_ram_efficiency_by_max", "comment": null}, "executor_cpu_efficiency": {"type": "double", "index": 61, "name": "executor_cpu_efficiency", "comment": null}, "executor_cpu_efficiency_by_max": {"type": "double", "index": 62, "name": "executor_cpu_efficiency_by_max", "comment": null}, "executors_cost": {"type": "double", "index": 63, "name": "executors_cost", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.infra__spark_jobs"}, "model.yoda.infra_stg__aws_payer_billing_report_raw": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra_stg__aws_payer_billing_report_raw", "database": null, "comment": null, "owner": "root"}, "columns": {"identity_line_item_id": {"type": "string", "index": 0, "name": "identity_line_item_id", "comment": null}, "identity_time_interval": {"type": "string", "index": 1, "name": "identity_time_interval", "comment": null}, "bill_invoice_id": {"type": "string", "index": 2, "name": "bill_invoice_id", "comment": null}, "bill_billing_entity": {"type": "string", "index": 3, "name": "bill_billing_entity", "comment": null}, "bill_bill_type": {"type": "string", "index": 4, "name": "bill_bill_type", "comment": null}, "bill_payer_account_id": {"type": "string", "index": 5, "name": "bill_payer_account_id", "comment": null}, "bill_billing_period_start_date": {"type": "timestamp", "index": 6, "name": "bill_billing_period_start_date", "comment": null}, "bill_billing_period_end_date": {"type": "timestamp", "index": 7, "name": "bill_billing_period_end_date", "comment": null}, "line_item_usage_account_id": {"type": "string", "index": 8, "name": "line_item_usage_account_id", "comment": null}, "line_item_line_item_type": {"type": "string", "index": 9, "name": "line_item_line_item_type", "comment": null}, "line_item_usage_start_date": {"type": "timestamp", "index": 10, "name": "line_item_usage_start_date", "comment": null}, "line_item_usage_end_date": {"type": "timestamp", "index": 11, "name": "line_item_usage_end_date", "comment": null}, "line_item_product_code": {"type": "string", "index": 12, "name": "line_item_product_code", "comment": null}, "line_item_usage_type": {"type": "string", "index": 13, "name": "line_item_usage_type", "comment": null}, "line_item_operation": {"type": "string", "index": 14, "name": "line_item_operation", "comment": null}, "line_item_availability_zone": {"type": "string", "index": 15, "name": "line_item_availability_zone", "comment": null}, "line_item_resource_id": {"type": "string", "index": 16, "name": "line_item_resource_id", "comment": null}, "line_item_usage_amount": {"type": "double", "index": 17, "name": "line_item_usage_amount", "comment": null}, "line_item_normalization_factor": {"type": "double", "index": 18, "name": "line_item_normalization_factor", "comment": null}, "line_item_normalized_usage_amount": {"type": "double", "index": 19, "name": "line_item_normalized_usage_amount", "comment": null}, "line_item_currency_code": {"type": "string", "index": 20, "name": "line_item_currency_code", "comment": null}, "line_item_unblended_rate": {"type": "string", "index": 21, "name": "line_item_unblended_rate", "comment": null}, "line_item_unblended_cost": {"type": "double", "index": 22, "name": "line_item_unblended_cost", "comment": null}, "line_item_blended_rate": {"type": "string", "index": 23, "name": "line_item_blended_rate", "comment": null}, "line_item_blended_cost": {"type": "double", "index": 24, "name": "line_item_blended_cost", "comment": null}, "line_item_line_item_description": {"type": "string", "index": 25, "name": "line_item_line_item_description", "comment": null}, "line_item_tax_type": {"type": "string", "index": 26, "name": "line_item_tax_type", "comment": null}, "line_item_net_unblended_rate": {"type": "string", "index": 27, "name": "line_item_net_unblended_rate", "comment": null}, "line_item_net_unblended_cost": {"type": "double", "index": 28, "name": "line_item_net_unblended_cost", "comment": null}, "line_item_legal_entity": {"type": "string", "index": 29, "name": "line_item_legal_entity", "comment": null}, "product_product_name": {"type": "string", "index": 30, "name": "product_product_name", "comment": null}, "product_purchase_option": {"type": "string", "index": 31, "name": "product_purchase_option", "comment": null}, "product_alarm_type": {"type": "string", "index": 32, "name": "product_alarm_type", "comment": null}, "product_availability": {"type": "string", "index": 33, "name": "product_availability", "comment": null}, "product_availability_zone": {"type": "string", "index": 34, "name": "product_availability_zone", "comment": null}, "product_bundle": {"type": "string", "index": 35, "name": "product_bundle", "comment": null}, "product_bundle_description": {"type": "string", "index": 36, "name": "product_bundle_description", "comment": null}, "product_bundle_group": {"type": "string", "index": 37, "name": "product_bundle_group", "comment": null}, "product_cache_engine": {"type": "string", "index": 38, "name": "product_cache_engine", "comment": null}, "product_capacitystatus": {"type": "string", "index": 39, "name": "product_capacitystatus", "comment": null}, "product_category": {"type": "string", "index": 40, "name": "product_category", "comment": null}, "product_clock_speed": {"type": "string", "index": 41, "name": "product_clock_speed", "comment": null}, "product_component": {"type": "string", "index": 42, "name": "product_component", "comment": null}, "product_compute_family": {"type": "string", "index": 43, "name": "product_compute_family", "comment": null}, "product_compute_type": {"type": "string", "index": 44, "name": "product_compute_type", "comment": null}, "product_concurrencyscalingfreeusage": {"type": "string", "index": 45, "name": "product_concurrencyscalingfreeusage", "comment": null}, "product_counts_against_quota": {"type": "string", "index": 46, "name": "product_counts_against_quota", "comment": null}, "product_cputype": {"type": "string", "index": 47, "name": "product_cputype", "comment": null}, "product_current_generation": {"type": "string", "index": 48, "name": "product_current_generation", "comment": null}, "product_data": {"type": "string", "index": 49, "name": "product_data", "comment": null}, "product_data_transfer_quota": {"type": "string", "index": 50, "name": "product_data_transfer_quota", "comment": null}, "product_database_engine": {"type": "string", "index": 51, "name": "product_database_engine", "comment": null}, "product_datastore_storagetype": {"type": "string", "index": 52, "name": "product_datastore_storagetype", "comment": null}, "product_dedicated_ebs_throughput": {"type": "string", "index": 53, "name": "product_dedicated_ebs_throughput", "comment": null}, "product_deployment_option": {"type": "string", "index": 54, "name": "product_deployment_option", "comment": null}, "product_description": {"type": "string", "index": 55, "name": "product_description", "comment": null}, "product_durability": {"type": "string", "index": 56, "name": "product_durability", "comment": null}, "product_ecu": {"type": "string", "index": 57, "name": "product_ecu", "comment": null}, "product_endpoint": {"type": "string", "index": 58, "name": "product_endpoint", "comment": null}, "product_endpoint_type": {"type": "string", "index": 59, "name": "product_endpoint_type", "comment": null}, "product_engine_code": {"type": "string", "index": 60, "name": "product_engine_code", "comment": null}, "product_enhanced_networking_supported": {"type": "string", "index": 61, "name": "product_enhanced_networking_supported", "comment": null}, "product_event_type": {"type": "string", "index": 62, "name": "product_event_type", "comment": null}, "product_execution_frequency": {"type": "string", "index": 63, "name": "product_execution_frequency", "comment": null}, "product_execution_location": {"type": "string", "index": 64, "name": "product_execution_location", "comment": null}, "product_fee_code": {"type": "string", "index": 65, "name": "product_fee_code", "comment": null}, "product_fee_description": {"type": "string", "index": 66, "name": "product_fee_description", "comment": null}, "product_free_overage": {"type": "string", "index": 67, "name": "product_free_overage", "comment": null}, "product_frequency_mode": {"type": "string", "index": 68, "name": "product_frequency_mode", "comment": null}, "product_from_location": {"type": "string", "index": 69, "name": "product_from_location", "comment": null}, "product_from_location_type": {"type": "string", "index": 70, "name": "product_from_location_type", "comment": null}, "product_gpu": {"type": "string", "index": 71, "name": "product_gpu", "comment": null}, "product_gpu_memory": {"type": "string", "index": 72, "name": "product_gpu_memory", "comment": null}, "product_granularity": {"type": "string", "index": 73, "name": "product_granularity", "comment": null}, "product_group": {"type": "string", "index": 74, "name": "product_group", "comment": null}, "product_group_description": {"type": "string", "index": 75, "name": "product_group_description", "comment": null}, "product_insightstype": {"type": "string", "index": 76, "name": "product_insightstype", "comment": null}, "product_instance_family": {"type": "string", "index": 77, "name": "product_instance_family", "comment": null}, "product_instance_name": {"type": "string", "index": 78, "name": "product_instance_name", "comment": null}, "product_instance_type": {"type": "string", "index": 79, "name": "product_instance_type", "comment": null}, "product_instance_type_family": {"type": "string", "index": 80, "name": "product_instance_type_family", "comment": null}, "product_intel_avx2_available": {"type": "string", "index": 81, "name": "product_intel_avx2_available", "comment": null}, "product_intel_avx_available": {"type": "string", "index": 82, "name": "product_intel_avx_available", "comment": null}, "product_intel_turbo_available": {"type": "string", "index": 83, "name": "product_intel_turbo_available", "comment": null}, "product_io": {"type": "string", "index": 84, "name": "product_io", "comment": null}, "product_license": {"type": "string", "index": 85, "name": "product_license", "comment": null}, "product_license_model": {"type": "string", "index": 86, "name": "product_license_model", "comment": null}, "product_location": {"type": "string", "index": 87, "name": "product_location", "comment": null}, "product_location_type": {"type": "string", "index": 88, "name": "product_location_type", "comment": null}, "product_logs_destination": {"type": "string", "index": 89, "name": "product_logs_destination", "comment": null}, "product_max_iops_burst_performance": {"type": "string", "index": 90, "name": "product_max_iops_burst_performance", "comment": null}, "product_max_iopsvolume": {"type": "string", "index": 91, "name": "product_max_iopsvolume", "comment": null}, "product_max_throughputvolume": {"type": "string", "index": 92, "name": "product_max_throughputvolume", "comment": null}, "product_max_volume_size": {"type": "string", "index": 93, "name": "product_max_volume_size", "comment": null}, "product_maximum_extended_storage": {"type": "string", "index": 94, "name": "product_maximum_extended_storage", "comment": null}, "product_memory": {"type": "string", "index": 95, "name": "product_memory", "comment": null}, "product_memory_gib": {"type": "string", "index": 96, "name": "product_memory_gib", "comment": null}, "product_memorytype": {"type": "string", "index": 97, "name": "product_memorytype", "comment": null}, "product_message_delivery_frequency": {"type": "string", "index": 98, "name": "product_message_delivery_frequency", "comment": null}, "product_message_delivery_order": {"type": "string", "index": 99, "name": "product_message_delivery_order", "comment": null}, "product_min_volume_size": {"type": "string", "index": 100, "name": "product_min_volume_size", "comment": null}, "product_network_performance": {"type": "string", "index": 101, "name": "product_network_performance", "comment": null}, "product_normalization_size_factor": {"type": "string", "index": 102, "name": "product_normalization_size_factor", "comment": null}, "product_operating_system": {"type": "string", "index": 103, "name": "product_operating_system", "comment": null}, "product_operation": {"type": "string", "index": 104, "name": "product_operation", "comment": null}, "product_overage_type": {"type": "string", "index": 105, "name": "product_overage_type", "comment": null}, "product_physical_cpu": {"type": "string", "index": 106, "name": "product_physical_cpu", "comment": null}, "product_physical_gpu": {"type": "string", "index": 107, "name": "product_physical_gpu", "comment": null}, "product_physical_processor": {"type": "string", "index": 108, "name": "product_physical_processor", "comment": null}, "product_pre_installed_sw": {"type": "string", "index": 109, "name": "product_pre_installed_sw", "comment": null}, "product_pricing_unit": {"type": "string", "index": 110, "name": "product_pricing_unit", "comment": null}, "product_processor_architecture": {"type": "string", "index": 111, "name": "product_processor_architecture", "comment": null}, "product_processor_features": {"type": "string", "index": 112, "name": "product_processor_features", "comment": null}, "product_product_family": {"type": "string", "index": 113, "name": "product_product_family", "comment": null}, "product_purchaseterm": {"type": "string", "index": 114, "name": "product_purchaseterm", "comment": null}, "product_queue_type": {"type": "string", "index": 115, "name": "product_queue_type", "comment": null}, "product_ratetype": {"type": "string", "index": 116, "name": "product_ratetype", "comment": null}, "product_region": {"type": "string", "index": 117, "name": "product_region", "comment": null}, "product_request_description": {"type": "string", "index": 118, "name": "product_request_description", "comment": null}, "product_request_type": {"type": "string", "index": 119, "name": "product_request_type", "comment": null}, "product_resource_endpoint": {"type": "string", "index": 120, "name": "product_resource_endpoint", "comment": null}, "product_resource_type": {"type": "string", "index": 121, "name": "product_resource_type", "comment": null}, "product_rootvolume": {"type": "string", "index": 122, "name": "product_rootvolume", "comment": null}, "product_routing_target": {"type": "string", "index": 123, "name": "product_routing_target", "comment": null}, "product_routing_type": {"type": "string", "index": 124, "name": "product_routing_type", "comment": null}, "product_running_mode": {"type": "string", "index": 125, "name": "product_running_mode", "comment": null}, "product_servicecode": {"type": "string", "index": 126, "name": "product_servicecode", "comment": null}, "product_servicename": {"type": "string", "index": 127, "name": "product_servicename", "comment": null}, "product_sku": {"type": "string", "index": 128, "name": "product_sku", "comment": null}, "product_software_included": {"type": "string", "index": 129, "name": "product_software_included", "comment": null}, "product_software_type": {"type": "string", "index": 130, "name": "product_software_type", "comment": null}, "product_standard_storage_retention_included": {"type": "string", "index": 131, "name": "product_standard_storage_retention_included", "comment": null}, "product_storage": {"type": "string", "index": 132, "name": "product_storage", "comment": null}, "product_storage_class": {"type": "string", "index": 133, "name": "product_storage_class", "comment": null}, "product_storage_family": {"type": "string", "index": 134, "name": "product_storage_family", "comment": null}, "product_storage_media": {"type": "string", "index": 135, "name": "product_storage_media", "comment": null}, "product_storage_type": {"type": "string", "index": 136, "name": "product_storage_type", "comment": null}, "product_tenancy": {"type": "string", "index": 137, "name": "product_tenancy", "comment": null}, "product_tiertype": {"type": "string", "index": 138, "name": "product_tiertype", "comment": null}, "product_to_location": {"type": "string", "index": 139, "name": "product_to_location", "comment": null}, "product_to_location_type": {"type": "string", "index": 140, "name": "product_to_location_type", "comment": null}, "product_transfer_type": {"type": "string", "index": 141, "name": "product_transfer_type", "comment": null}, "product_type": {"type": "string", "index": 142, "name": "product_type", "comment": null}, "product_usage_family": {"type": "string", "index": 143, "name": "product_usage_family", "comment": null}, "product_usagetype": {"type": "string", "index": 144, "name": "product_usagetype", "comment": null}, "product_uservolume": {"type": "string", "index": 145, "name": "product_uservolume", "comment": null}, "product_vcpu": {"type": "string", "index": 146, "name": "product_vcpu", "comment": null}, "product_version": {"type": "string", "index": 147, "name": "product_version", "comment": null}, "product_volume_api_name": {"type": "string", "index": 148, "name": "product_volume_api_name", "comment": null}, "product_volume_type": {"type": "string", "index": 149, "name": "product_volume_type", "comment": null}, "product_with_active_users": {"type": "string", "index": 150, "name": "product_with_active_users", "comment": null}, "pricing_lease_contract_length": {"type": "string", "index": 151, "name": "pricing_lease_contract_length", "comment": null}, "pricing_offering_class": {"type": "string", "index": 152, "name": "pricing_offering_class", "comment": null}, "pricing_purchase_option": {"type": "string", "index": 153, "name": "pricing_purchase_option", "comment": null}, "pricing_rate_code": {"type": "string", "index": 154, "name": "pricing_rate_code", "comment": null}, "pricing_rate_id": {"type": "string", "index": 155, "name": "pricing_rate_id", "comment": null}, "pricing_currency": {"type": "string", "index": 156, "name": "pricing_currency", "comment": null}, "pricing_public_on_demand_cost": {"type": "double", "index": 157, "name": "pricing_public_on_demand_cost", "comment": null}, "pricing_public_on_demand_rate": {"type": "string", "index": 158, "name": "pricing_public_on_demand_rate", "comment": null}, "pricing_term": {"type": "string", "index": 159, "name": "pricing_term", "comment": null}, "pricing_unit": {"type": "string", "index": 160, "name": "pricing_unit", "comment": null}, "reservation_amortized_upfront_cost_for_usage": {"type": "double", "index": 161, "name": "reservation_amortized_upfront_cost_for_usage", "comment": null}, "reservation_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 162, "name": "reservation_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_effective_cost": {"type": "double", "index": 163, "name": "reservation_effective_cost", "comment": null}, "reservation_end_time": {"type": "string", "index": 164, "name": "reservation_end_time", "comment": null}, "reservation_modification_status": {"type": "string", "index": 165, "name": "reservation_modification_status", "comment": null}, "reservation_net_amortized_upfront_cost_for_usage": {"type": "double", "index": 166, "name": "reservation_net_amortized_upfront_cost_for_usage", "comment": null}, "reservation_net_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 167, "name": "reservation_net_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_net_effective_cost": {"type": "double", "index": 168, "name": "reservation_net_effective_cost", "comment": null}, "reservation_net_recurring_fee_for_usage": {"type": "double", "index": 169, "name": "reservation_net_recurring_fee_for_usage", "comment": null}, "reservation_net_unused_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 170, "name": "reservation_net_unused_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_net_unused_recurring_fee": {"type": "double", "index": 171, "name": "reservation_net_unused_recurring_fee", "comment": null}, "reservation_net_upfront_value": {"type": "double", "index": 172, "name": "reservation_net_upfront_value", "comment": null}, "reservation_normalized_units_per_reservation": {"type": "string", "index": 173, "name": "reservation_normalized_units_per_reservation", "comment": null}, "reservation_number_of_reservations": {"type": "string", "index": 174, "name": "reservation_number_of_reservations", "comment": null}, "reservation_recurring_fee_for_usage": {"type": "double", "index": 175, "name": "reservation_recurring_fee_for_usage", "comment": null}, "reservation_reservation_a_r_n": {"type": "string", "index": 176, "name": "reservation_reservation_a_r_n", "comment": null}, "reservation_start_time": {"type": "string", "index": 177, "name": "reservation_start_time", "comment": null}, "reservation_subscription_id": {"type": "string", "index": 178, "name": "reservation_subscription_id", "comment": null}, "reservation_total_reserved_normalized_units": {"type": "string", "index": 179, "name": "reservation_total_reserved_normalized_units", "comment": null}, "reservation_total_reserved_units": {"type": "string", "index": 180, "name": "reservation_total_reserved_units", "comment": null}, "reservation_units_per_reservation": {"type": "string", "index": 181, "name": "reservation_units_per_reservation", "comment": null}, "reservation_unused_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 182, "name": "reservation_unused_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_unused_normalized_unit_quantity": {"type": "double", "index": 183, "name": "reservation_unused_normalized_unit_quantity", "comment": null}, "reservation_unused_quantity": {"type": "double", "index": 184, "name": "reservation_unused_quantity", "comment": null}, "reservation_unused_recurring_fee": {"type": "double", "index": 185, "name": "reservation_unused_recurring_fee", "comment": null}, "reservation_upfront_value": {"type": "double", "index": 186, "name": "reservation_upfront_value", "comment": null}, "discount_edp_discount": {"type": "double", "index": 187, "name": "discount_edp_discount", "comment": null}, "discount_private_rate_discount": {"type": "double", "index": 188, "name": "discount_private_rate_discount", "comment": null}, "discount_total_discount": {"type": "double", "index": 189, "name": "discount_total_discount", "comment": null}, "savings_plan_total_commitment_to_date": {"type": "double", "index": 190, "name": "savings_plan_total_commitment_to_date", "comment": null}, "savings_plan_savings_plan_a_r_n": {"type": "string", "index": 191, "name": "savings_plan_savings_plan_a_r_n", "comment": null}, "savings_plan_savings_plan_rate": {"type": "double", "index": 192, "name": "savings_plan_savings_plan_rate", "comment": null}, "savings_plan_used_commitment": {"type": "double", "index": 193, "name": "savings_plan_used_commitment", "comment": null}, "savings_plan_savings_plan_effective_cost": {"type": "double", "index": 194, "name": "savings_plan_savings_plan_effective_cost", "comment": null}, "savings_plan_amortized_upfront_commitment_for_billing_period": {"type": "double", "index": 195, "name": "savings_plan_amortized_upfront_commitment_for_billing_period", "comment": null}, "savings_plan_recurring_commitment_for_billing_period": {"type": "double", "index": 196, "name": "savings_plan_recurring_commitment_for_billing_period", "comment": null}, "savings_plan_start_time": {"type": "string", "index": 197, "name": "savings_plan_start_time", "comment": null}, "savings_plan_end_time": {"type": "string", "index": 198, "name": "savings_plan_end_time", "comment": null}, "savings_plan_instance_type_family": {"type": "string", "index": 199, "name": "savings_plan_instance_type_family", "comment": null}, "savings_plan_offering_type": {"type": "string", "index": 200, "name": "savings_plan_offering_type", "comment": null}, "savings_plan_payment_option": {"type": "string", "index": 201, "name": "savings_plan_payment_option", "comment": null}, "savings_plan_purchase_term": {"type": "string", "index": 202, "name": "savings_plan_purchase_term", "comment": null}, "savings_plan_region": {"type": "string", "index": 203, "name": "savings_plan_region", "comment": null}, "savings_plan_net_savings_plan_effective_cost": {"type": "double", "index": 204, "name": "savings_plan_net_savings_plan_effective_cost", "comment": null}, "savings_plan_net_amortized_upfront_commitment_for_billing_period": {"type": "double", "index": 205, "name": "savings_plan_net_amortized_upfront_commitment_for_billing_period", "comment": null}, "savings_plan_net_recurring_commitment_for_billing_period": {"type": "double", "index": 206, "name": "savings_plan_net_recurring_commitment_for_billing_period", "comment": null}, "resource_tags_aws_created_by": {"type": "string", "index": 207, "name": "resource_tags_aws_created_by", "comment": null}, "resource_tags_aws_elasticmapreduce_instance_group_role": {"type": "string", "index": 208, "name": "resource_tags_aws_elasticmapreduce_instance_group_role", "comment": null}, "resource_tags_aws_elasticmapreduce_job_flow_id": {"type": "string", "index": 209, "name": "resource_tags_aws_elasticmapreduce_job_flow_id", "comment": null}, "resource_tags_user_databricks_instance_pool_id": {"type": "string", "index": 210, "name": "resource_tags_user_databricks_instance_pool_id", "comment": null}, "resource_tags_user_docker_compose": {"type": "string", "index": 211, "name": "resource_tags_user_docker_compose", "comment": null}, "resource_tags_user_environment": {"type": "string", "index": 212, "name": "resource_tags_user_environment", "comment": null}, "resource_tags_user_name": {"type": "string", "index": 213, "name": "resource_tags_user_name", "comment": null}, "resource_tags_user_service": {"type": "string", "index": 214, "name": "resource_tags_user_service", "comment": null}, "resource_tags_user_account": {"type": "string", "index": 215, "name": "resource_tags_user_account", "comment": null}, "resource_tags_user_asg": {"type": "string", "index": 216, "name": "resource_tags_user_asg", "comment": null}, "resource_tags_user_cluster_name": {"type": "string", "index": 217, "name": "resource_tags_user_cluster_name", "comment": null}, "resource_tags_user_component": {"type": "string", "index": 218, "name": "resource_tags_user_component", "comment": null}, "resource_tags_user_product_line": {"type": "string", "index": 219, "name": "resource_tags_user_product_line", "comment": null}, "resource_tags_user_sub_componenet": {"type": "string", "index": 220, "name": "resource_tags_user_sub_componenet", "comment": null}, "resource_tags_user_sub_component": {"type": "string", "index": 221, "name": "resource_tags_user_sub_component", "comment": null}, "resource_tags_user_group": {"type": "string", "index": 222, "name": "resource_tags_user_group", "comment": null}, "resource_tags_user_iac": {"type": "string", "index": 223, "name": "resource_tags_user_iac", "comment": null}, "resource_tags_user_repository": {"type": "string", "index": 224, "name": "resource_tags_user_repository", "comment": null}, "resource_tags_user_team": {"type": "string", "index": 225, "name": "resource_tags_user_team", "comment": null}, "resource_tags_user_feature": {"type": "string", "index": 226, "name": "resource_tags_user_feature", "comment": null}, "resource_tags_user_cast_managed_by": {"type": "string", "index": 227, "name": "resource_tags_user_cast_managed_by", "comment": null}, "resource_tags_user_cast_cluster_id": {"type": "string", "index": 228, "name": "resource_tags_user_cast_cluster_id", "comment": null}, "resource_tags_user_cast_node_id": {"type": "string", "index": 229, "name": "resource_tags_user_cast_node_id", "comment": null}, "resource_tags_user_castai": {"type": "string", "index": 230, "name": "resource_tags_user_castai", "comment": null}, "is_managed_by_cast_ai": {"type": "boolean", "index": 231, "name": "is_managed_by_cast_ai", "comment": null}, "product_line": {"type": "string", "index": 232, "name": "product_line", "comment": null}, "product_name": {"type": "string", "index": 233, "name": "product_name", "comment": null}, "year": {"type": "integer", "index": 234, "name": "year", "comment": null}, "month": {"type": "integer", "index": 235, "name": "month", "comment": null}}, "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.yoda.infra_stg__aws_payer_billing_report_raw"}, "model.yoda.infra_stg__databricks_cost_raw": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra_stg__databricks_cost_raw", "database": null, "comment": null, "owner": "root"}, "columns": {"workspaceid": {"type": "string", "index": 0, "name": "workspaceid", "comment": null}, "timestamp": {"type": "date", "index": 1, "name": "timestamp", "comment": null}, "clusterid": {"type": "string", "index": 2, "name": "clusterid", "comment": null}, "clustername": {"type": "string", "index": 3, "name": "clustername", "comment": null}, "clusternodetype": {"type": "string", "index": 4, "name": "clusternodetype", "comment": null}, "clusterowneruserid": {"type": "string", "index": 5, "name": "clusterowneruserid", "comment": null}, "clustercustomtags": {"type": "string", "index": 6, "name": "clustercustomtags", "comment": null}, "sku": {"type": "string", "index": 7, "name": "sku", "comment": null}, "dbus": {"type": "float", "index": 8, "name": "dbus", "comment": null}, "machinehours": {"type": "float", "index": 9, "name": "machinehours", "comment": null}, "clusterownerusername": {"type": "string", "index": 10, "name": "clusterownerusername", "comment": null}, "tags": {"type": "string", "index": 11, "name": "tags", "comment": null}}, "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.yoda.infra_stg__databricks_cost_raw"}, "model.yoda.infra_stg__ec2_cost": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra_stg__ec2_cost", "database": null, "comment": null, "owner": "root"}, "columns": {"billing_period": {"type": "timestamp", "index": 0, "name": "billing_period", "comment": null}, "bill_start_date": {"type": "timestamp", "index": 1, "name": "bill_start_date", "comment": null}, "bill_payer_account_id": {"type": "string", "index": 2, "name": "bill_payer_account_id", "comment": null}, "account_name": {"type": "string", "index": 3, "name": "account_name", "comment": null}, "product_line": {"type": "string", "index": 4, "name": "product_line", "comment": null}, "line_item_line_item_type": {"type": "string", "index": 5, "name": "line_item_line_item_type", "comment": null}, "product_product_family": {"type": "string", "index": 6, "name": "product_product_family", "comment": null}, "product_region": {"type": "string", "index": 7, "name": "product_region", "comment": null}, "pricing_term": {"type": "string", "index": 8, "name": "pricing_term", "comment": null}, "product_instance_type": {"type": "string", "index": 9, "name": "product_instance_type", "comment": null}, "resource_tags_user_sub_component": {"type": "string", "index": 10, "name": "resource_tags_user_sub_component", "comment": null}, "resource_tags_user_component": {"type": "string", "index": 11, "name": "resource_tags_user_component", "comment": null}, "resource_tags_user_environment": {"type": "string", "index": 12, "name": "resource_tags_user_environment", "comment": null}, "resource_tags_user_group": {"type": "string", "index": 13, "name": "resource_tags_user_group", "comment": null}, "resource_tags_user_team": {"type": "string", "index": 14, "name": "resource_tags_user_team", "comment": null}, "resource_tags_user_feature": {"type": "string", "index": 15, "name": "resource_tags_user_feature", "comment": null}, "is_managed_by_cast_ai": {"type": "boolean", "index": 16, "name": "is_managed_by_cast_ai", "comment": null}, "ags": {"type": "string", "index": 17, "name": "ags", "comment": null}, "unblended_cost": {"type": "double", "index": 18, "name": "unblended_cost", "comment": null}, "amortized_cost": {"type": "double", "index": 19, "name": "amortized_cost", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.infra_stg__ec2_cost"}, "model.yoda.infra_stg__infra_metrics": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra_stg__infra_metrics", "database": null, "comment": null, "owner": "root"}, "columns": {"ts": {"type": "timestamp", "index": 0, "name": "ts", "comment": null}, "product_line": {"type": "string", "index": 1, "name": "product_line", "comment": null}, "source": {"type": "string", "index": 2, "name": "source", "comment": null}, "component": {"type": "string", "index": 3, "name": "component", "comment": null}, "key": {"type": "string", "index": 4, "name": "key", "comment": null}, "value": {"type": "integer", "index": 5, "name": "value", "comment": null}, "custom_properties": {"type": "string", "index": 6, "name": "custom_properties", "comment": null}}, "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.yoda.infra_stg__infra_metrics"}, "model.yoda.infra_stg__kubecost_delta": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra_stg__kubecost_delta", "database": null, "comment": null, "owner": "root"}, "columns": {"cpuCoreHours": {"type": "double", "index": 0, "name": "cpuCoreHours", "comment": null}, "cpuCoreRequestAverage": {"type": "double", "index": 1, "name": "cpuCoreRequestAverage", "comment": null}, "cpuCoreUsageAverage": {"type": "double", "index": 2, "name": "cpuCoreUsageAverage", "comment": null}, "cpuCores": {"type": "double", "index": 3, "name": "cpuCores", "comment": null}, "cpuCost": {"type": "double", "index": 4, "name": "cpuCost", "comment": null}, "cpuCostAdjustment": {"type": "double", "index": 5, "name": "cpuCostAdjustment", "comment": null}, "cpuEfficiency": {"type": "double", "index": 6, "name": "cpuEfficiency", "comment": null}, "end": {"type": "string", "index": 7, "name": "end", "comment": null}, "externalCost": {"type": "double", "index": 8, "name": "externalCost", "comment": null}, "gpuCost": {"type": "double", "index": 9, "name": "gpuCost", "comment": null}, "gpuCostAdjustment": {"type": "double", "index": 10, "name": "gpuCostAdjustment", "comment": null}, "gpuCount": {"type": "double", "index": 11, "name": "gpuCount", "comment": null}, "gpuHours": {"type": "double", "index": 12, "name": "gpuHours", "comment": null}, "loadBalancerCost": {"type": "double", "index": 13, "name": "loadBalancerCost", "comment": null}, "loadBalancerCostAdjustment": {"type": "double", "index": 14, "name": "loadBalancerCostAdjustment", "comment": null}, "minutes": {"type": "double", "index": 15, "name": "minutes", "comment": null}, "name": {"type": "string", "index": 16, "name": "name", "comment": null}, "networkCost": {"type": "double", "index": 17, "name": "networkCost", "comment": null}, "networkCostAdjustment": {"type": "double", "index": 18, "name": "networkCostAdjustment", "comment": null}, "networkReceiveBytes": {"type": "double", "index": 19, "name": "networkReceiveBytes", "comment": null}, "networkTransferBytes": {"type": "double", "index": 20, "name": "networkTransferBytes", "comment": null}, "properties": {"type": "struct", "index": 21, "name": "properties", "comment": null}, "pvByteHours": {"type": "double", "index": 22, "name": "pvByteHours", "comment": null}, "pvBytes": {"type": "double", "index": 23, "name": "pvBytes", "comment": null}, "pvCost": {"type": "double", "index": 24, "name": "pvCost", "comment": null}, "pvCostAdjustment": {"type": "double", "index": 25, "name": "pvCostAdjustment", "comment": null}, "pvs": {"type": "string", "index": 26, "name": "pvs", "comment": null}, "ramByteHours": {"type": "double", "index": 27, "name": "ramByteHours", "comment": null}, "ramByteRequestAverage": {"type": "double", "index": 28, "name": "ramByteRequestAverage", "comment": null}, "ramByteUsageAverage": {"type": "double", "index": 29, "name": "ramByteUsageAverage", "comment": null}, "ramBytes": {"type": "double", "index": 30, "name": "ramBytes", "comment": null}, "ramCost": {"type": "double", "index": 31, "name": "ramCost", "comment": null}, "ramCostAdjustment": {"type": "double", "index": 32, "name": "ramCostAdjustment", "comment": null}, "ramEfficiency": {"type": "double", "index": 33, "name": "ramEfficiency", "comment": null}, "rawAllocationOnly": {"type": "struct", "index": 34, "name": "rawAllocationOnly", "comment": null}, "sharedCost": {"type": "double", "index": 35, "name": "sharedCost", "comment": null}, "start": {"type": "string", "index": 36, "name": "start", "comment": null}, "totalCost": {"type": "double", "index": 37, "name": "totalCost", "comment": null}, "totalEfficiency": {"type": "double", "index": 38, "name": "totalEfficiency", "comment": null}, "window": {"type": "struct", "index": 39, "name": "window", "comment": null}, "year": {"type": "integer", "index": 40, "name": "year", "comment": null}, "month": {"type": "integer", "index": 41, "name": "month", "comment": null}, "day": {"type": "integer", "index": 42, "name": "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.yoda.infra_stg__kubecost_delta"}, "model.yoda.infra_stg__kubernetes_cost": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra_stg__kubernetes_cost", "database": null, "comment": null, "owner": "root"}, "columns": {"service": {"type": "string", "index": 0, "name": "service", "comment": null}, "productline": {"type": "string", "index": 1, "name": "productline", "comment": null}, "sub_service": {"type": "string", "index": 2, "name": "sub_service", "comment": null}, "release_name": {"type": "string", "index": 3, "name": "release_name", "comment": null}, "cluster": {"type": "string", "index": 4, "name": "cluster", "comment": null}, "namespace": {"type": "string", "index": 5, "name": "namespace", "comment": null}, "run_id": {"type": "string", "index": 6, "name": "run_id", "comment": null}, "cpucost": {"type": "double", "index": 7, "name": "cpucost", "comment": null}, "pvcost": {"type": "double", "index": 8, "name": "pvcost", "comment": null}, "networkcost": {"type": "double", "index": 9, "name": "networkcost", "comment": null}, "ramcost": {"type": "double", "index": 10, "name": "ramcost", "comment": null}, "totalcost": {"type": "double", "index": 11, "name": "totalcost", "comment": null}, "totalefficiency": {"type": "double", "index": 12, "name": "totalefficiency", "comment": null}, "cpuefficiency": {"type": "double", "index": 13, "name": "cpuefficiency", "comment": null}, "cpucorehours": {"type": "double", "index": 14, "name": "cpucorehours", "comment": null}, "cpucorerequestaverage": {"type": "double", "index": 15, "name": "cpucorerequestaverage", "comment": null}, "cpucoreusageaverage": {"type": "double", "index": 16, "name": "cpucoreusageaverage", "comment": null}, "cpucores": {"type": "double", "index": 17, "name": "cpucores", "comment": null}, "cpuCoreUsageMax": {"type": "double", "index": 18, "name": "cpuCoreUsageMax", "comment": null}, "networktransferbytes": {"type": "double", "index": 19, "name": "networktransferbytes", "comment": null}, "networkreceivebytes": {"type": "double", "index": 20, "name": "networkreceivebytes", "comment": null}, "ramefficiency": {"type": "double", "index": 21, "name": "ramefficiency", "comment": null}, "ramByteUsageMax": {"type": "long", "index": 22, "name": "ramByteUsageMax", "comment": null}, "rambytehours": {"type": "double", "index": 23, "name": "rambytehours", "comment": null}, "rambyteusageaverage": {"type": "double", "index": 24, "name": "rambyteusageaverage", "comment": null}, "rambyterequestaverage": {"type": "double", "index": 25, "name": "rambyterequestaverage", "comment": null}, "rambytes": {"type": "double", "index": 26, "name": "rambytes", "comment": null}, "minutes": {"type": "double", "index": 27, "name": "minutes", "comment": null}, "year": {"type": "integer", "index": 28, "name": "year", "comment": null}, "month": {"type": "integer", "index": 29, "name": "month", "comment": null}, "day": {"type": "integer", "index": 30, "name": "day", "comment": null}, "billing_day": {"type": "date", "index": 31, "name": "billing_day", "comment": null}, "ec2_id": {"type": "string", "index": 32, "name": "ec2_id", "comment": null}, "name": {"type": "string", "index": 33, "name": "name", "comment": null}, "group": {"type": "string", "index": 34, "name": "group", "comment": null}, "team": {"type": "string", "index": 35, "name": "team", "comment": null}}, "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.yoda.infra_stg__kubernetes_cost"}, "model.yoda.infra_stg__pixel_enrichment": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra_stg__pixel_enrichment", "database": null, "comment": null, "owner": "root"}, "columns": {"processing_time": {"type": "timestamp", "index": 0, "name": "processing_time", "comment": null}, "br_colordepth": {"type": "string", "index": 1, "name": "br_colordepth", "comment": null}, "br_cookies": {"type": "long", "index": 2, "name": "br_cookies", "comment": null}, "br_family": {"type": "string", "index": 3, "name": "br_family", "comment": null}, "br_features_director": {"type": "long", "index": 4, "name": "br_features_director", "comment": null}, "br_features_flash": {"type": "long", "index": 5, "name": "br_features_flash", "comment": null}, "br_features_gears": {"type": "long", "index": 6, "name": "br_features_gears", "comment": null}, "br_features_java": {"type": "long", "index": 7, "name": "br_features_java", "comment": null}, "br_features_pdf": {"type": "long", "index": 8, "name": "br_features_pdf", "comment": null}, "br_features_quicktime": {"type": "long", "index": 9, "name": "br_features_quicktime", "comment": null}, "br_features_realplayer": {"type": "long", "index": 10, "name": "br_features_realplayer", "comment": null}, "br_features_silverlight": {"type": "long", "index": 11, "name": "br_features_silverlight", "comment": null}, "br_features_windowsmedia": {"type": "long", "index": 12, "name": "br_features_windowsmedia", "comment": null}, "br_lang": {"type": "string", "index": 13, "name": "br_lang", "comment": null}, "br_major": {"type": "string", "index": 14, "name": "br_major", "comment": null}, "br_minor": {"type": "string", "index": 15, "name": "br_minor", "comment": null}, "br_viewheight": {"type": "long", "index": 16, "name": "br_viewheight", "comment": null}, "br_viewwidth": {"type": "long", "index": 17, "name": "br_viewwidth", "comment": null}, "collector_day": {"type": "string", "index": 18, "name": "collector_day", "comment": null}, "collector_epoch": {"type": "long", "index": 19, "name": "collector_epoch", "comment": null}, "collector_month": {"type": "string", "index": 20, "name": "collector_month", "comment": null}, "collector_tstamp": {"type": "string", "index": 21, "name": "collector_tstamp", "comment": null}, "collector_year": {"type": "string", "index": 22, "name": "collector_year", "comment": null}, "context": {"type": "string", "index": 23, "name": "context", "comment": null}, "device_family": {"type": "string", "index": 24, "name": "device_family", "comment": null}, "doc_charset": {"type": "string", "index": 25, "name": "doc_charset", "comment": null}, "doc_height": {"type": "long", "index": 26, "name": "doc_height", "comment": null}, "doc_width": {"type": "long", "index": 27, "name": "doc_width", "comment": null}, "domain_sessionidx": {"type": "long", "index": 28, "name": "domain_sessionidx", "comment": null}, "domain_userid": {"type": "string", "index": 29, "name": "domain_userid", "comment": null}, "dvce_screenheight": {"type": "long", "index": 30, "name": "dvce_screenheight", "comment": null}, "dvce_screenwidth": {"type": "long", "index": 31, "name": "dvce_screenwidth", "comment": null}, "dvce_tstamp": {"type": "string", "index": 32, "name": "dvce_tstamp", "comment": null}, "event_id": {"type": "string", "index": 33, "name": "event_id", "comment": null}, "event_vendor": {"type": "string", "index": 34, "name": "event_vendor", "comment": null}, "event": {"type": "string", "index": 35, "name": "event", "comment": null}, "geo_city": {"type": "string", "index": 36, "name": "geo_city", "comment": null}, "geo_country": {"type": "string", "index": 37, "name": "geo_country", "comment": null}, "geo_latitude": {"type": "double", "index": 38, "name": "geo_latitude", "comment": null}, "geo_longitude": {"type": "double", "index": 39, "name": "geo_longitude", "comment": null}, "geo_region": {"type": "string", "index": 40, "name": "geo_region", "comment": null}, "geo_zipcode": {"type": "string", "index": 41, "name": "geo_zipcode", "comment": null}, "mkt_campaign": {"type": "string", "index": 42, "name": "mkt_campaign", "comment": null}, "mkt_content": {"type": "string", "index": 43, "name": "mkt_content", "comment": null}, "mkt_medium": {"type": "string", "index": 44, "name": "mkt_medium", "comment": null}, "mkt_source": {"type": "string", "index": 45, "name": "mkt_source", "comment": null}, "mkt_term": {"type": "string", "index": 46, "name": "mkt_term", "comment": null}, "os_family": {"type": "string", "index": 47, "name": "os_family", "comment": null}, "os_major": {"type": "string", "index": 48, "name": "os_major", "comment": null}, "os_minor": {"type": "string", "index": 49, "name": "os_minor", "comment": null}, "os_timezone": {"type": "string", "index": 50, "name": "os_timezone", "comment": null}, "page_referrer": {"type": "string", "index": 51, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 52, "name": "page_title", "comment": null}, "page_urlfragment": {"type": "string", "index": 53, "name": "page_urlfragment", "comment": null}, "page_urlhost": {"type": "string", "index": 54, "name": "page_urlhost", "comment": null}, "page_urlpath": {"type": "string", "index": 55, "name": "page_urlpath", "comment": null}, "page_urlport": {"type": "long", "index": 56, "name": "page_urlport", "comment": null}, "page_urlquery": {"type": "string", "index": 57, "name": "page_urlquery", "comment": null}, "page_url": {"type": "string", "index": 58, "name": "page_url", "comment": null}, "page_urlscheme": {"type": "string", "index": 59, "name": "page_urlscheme", "comment": null}, "platform": {"type": "string", "index": 60, "name": "platform", "comment": null}, "pp_xoffset_max": {"type": "long", "index": 61, "name": "pp_xoffset_max", "comment": null}, "pp_xoffset_min": {"type": "long", "index": 62, "name": "pp_xoffset_min", "comment": null}, "pp_yoffset_max": {"type": "long", "index": 63, "name": "pp_yoffset_max", "comment": null}, "pp_yoffset_min": {"type": "long", "index": 64, "name": "pp_yoffset_min", "comment": null}, "refr_medium": {"type": "string", "index": 65, "name": "refr_medium", "comment": null}, "refr_source": {"type": "string", "index": 66, "name": "refr_source", "comment": null}, "refr_term": {"type": "string", "index": 67, "name": "refr_term", "comment": null}, "refr_urlfragment": {"type": "string", "index": 68, "name": "refr_urlfragment", "comment": null}, "refr_urlhost": {"type": "string", "index": 69, "name": "refr_urlhost", "comment": null}, "refr_urlpath": {"type": "string", "index": 70, "name": "refr_urlpath", "comment": null}, "refr_urlport": {"type": "long", "index": 71, "name": "refr_urlport", "comment": null}, "refr_urlquery": {"type": "string", "index": 72, "name": "refr_urlquery", "comment": null}, "refr_urlscheme": {"type": "string", "index": 73, "name": "refr_urlscheme", "comment": null}, "se_action": {"type": "string", "index": 74, "name": "se_action", "comment": null}, "se_category": {"type": "string", "index": 75, "name": "se_category", "comment": null}, "se_label": {"type": "string", "index": 76, "name": "se_label", "comment": null}, "se_page_sku": {"type": "string", "index": 77, "name": "se_page_sku", "comment": null}, "se_property": {"type": "string", "index": 78, "name": "se_property", "comment": null}, "se_testing_groups": {"type": "string", "index": 79, "name": "se_testing_groups", "comment": null}, "se_value": {"type": "string", "index": 80, "name": "se_value", "comment": null}, "tr_currency": {"type": "string", "index": 81, "name": "tr_currency", "comment": null}, "tr_orderid": {"type": "string", "index": 82, "name": "tr_orderid", "comment": null}, "tr_total": {"type": "string", "index": 83, "name": "tr_total", "comment": null}, "txn_id": {"type": "string", "index": 84, "name": "txn_id", "comment": null}, "user_fingerprint": {"type": "string", "index": 85, "name": "user_fingerprint", "comment": null}, "useragent": {"type": "string", "index": 86, "name": "useragent", "comment": null}, "v_collector": {"type": "string", "index": 87, "name": "v_collector", "comment": null}, "v_etl": {"type": "string", "index": 88, "name": "v_etl", "comment": null}, "v_tracker": {"type": "string", "index": 89, "name": "v_tracker", "comment": null}, "y_fingerprint": {"type": "string", "index": 90, "name": "y_fingerprint", "comment": null}, "user_id": {"type": "string", "index": 91, "name": "user_id", "comment": null}, "app_id": {"type": "string", "index": 92, "name": "app_id", "comment": null}, "partition_date": {"type": "string", "index": 93, "name": "partition_date", "comment": null}, "hour": {"type": "string", "index": 94, "name": "hour", "comment": null}}, "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.yoda.infra_stg__pixel_enrichment"}, "model.yoda.infra_stg__upsolver_outputs": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "infra_stg__upsolver_outputs", "database": null, "comment": null, "owner": "root"}, "columns": {"ts": {"type": "string", "index": 0, "name": "ts", "comment": null}, "databaseName": {"type": "string", "index": 1, "name": "databaseName", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "tableName": {"type": "string", "index": 3, "name": "tableName", "comment": null}, "workspaceName": {"type": "string", "index": 4, "name": "workspaceName", "comment": null}}, "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.yoda.infra_stg__upsolver_outputs"}, "model.yoda.loyalty__dim_customers_daily_snapshot": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__dim_customers_daily_snapshot", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "group_customer_id": {"type": "long", "index": 1, "name": "group_customer_id", "comment": null}, "group_id": {"type": "string", "index": 2, "name": "group_id", "comment": null}, "merchant_id": {"type": "long", "index": 3, "name": "merchant_id", "comment": null}, "first_name": {"type": "string", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 5, "name": "last_name", "comment": null}, "name": {"type": "string", "index": 6, "name": "name", "comment": null}, "email": {"type": "string", "index": 7, "name": "email", "comment": null}, "phone_number": {"type": "string", "index": 8, "name": "phone_number", "comment": null}, "store_account_id": {"type": "string", "index": 9, "name": "store_account_id", "comment": null}, "points_balance": {"type": "long", "index": 10, "name": "points_balance", "comment": null}, "points_earned": {"type": "long", "index": 11, "name": "points_earned", "comment": null}, "referred_by_customer_id": {"type": "long", "index": 12, "name": "referred_by_customer_id", "comment": null}, "vip_tier_id": {"type": "long", "index": 13, "name": "vip_tier_id", "comment": null}, "tier_expiration_date": {"type": "timestamp", "index": 14, "name": "tier_expiration_date", "comment": null}, "tier_entry_date": {"type": "timestamp", "index": 15, "name": "tier_entry_date", "comment": null}, "last_purchase_at": {"type": "timestamp", "index": 16, "name": "last_purchase_at", "comment": null}, "email_sent_count": {"type": "long", "index": 17, "name": "email_sent_count", "comment": null}, "state": {"type": "string", "index": 18, "name": "state", "comment": null}, "created_at": {"type": "timestamp", "index": 19, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 20, "name": "updated_at", "comment": null}, "is_member": {"type": "boolean", "index": 21, "name": "is_member", "comment": null}, "exclude_from_reports": {"type": "boolean", "index": 22, "name": "exclude_from_reports", "comment": null}, "last_seen_at": {"type": "timestamp", "index": 23, "name": "last_seen_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 24, "name": "dwh_updated_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.yoda.loyalty__dim_customers_daily_snapshot"}, "model.yoda.loyalty__dim_merchants_daily_snapshot": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__dim_merchants_daily_snapshot", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "guid": {"type": "string", "index": 1, "name": "guid", "comment": null}, "website": {"type": "string", "index": 2, "name": "website", "comment": null}, "company_name": {"type": "string", "index": 3, "name": "company_name", "comment": null}, "on_free_trial": {"type": "boolean", "index": 4, "name": "on_free_trial", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_at", "comment": null}, "platform": {"type": "string", "index": 7, "name": "platform", "comment": null}, "currency": {"type": "string", "index": 8, "name": "currency", "comment": null}, "account_yotpo_industry": {"type": "string", "index": 9, "name": "account_yotpo_industry", "comment": null}, "account_yotpo_sub_industry": {"type": "string", "index": 10, "name": "account_yotpo_sub_industry", "comment": null}, "account_yotpo_industry_confidence_level": {"type": "string", "index": 11, "name": "account_yotpo_industry_confidence_level", "comment": null}, "is_account_data_excluded": {"type": "short", "index": 12, "name": "is_account_data_excluded", "comment": null}, "test_account": {"type": "boolean", "index": 13, "name": "test_account", "comment": null}, "app_key": {"type": "string", "index": 14, "name": "app_key", "comment": null}, "group_id": {"type": "string", "index": 15, "name": "group_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 16, "name": "dwh_updated_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.yoda.loyalty__dim_merchants_daily_snapshot"}, "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "org_key": {"type": "string", "index": 2, "name": "org_key", "comment": null}, "merchant_id": {"type": "long", "index": 3, "name": "merchant_id", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 5, "name": "updated_at", "comment": null}, "has_secret": {"type": "integer", "index": 6, "name": "has_secret", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 7, "name": "dwh_updated_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.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot"}, "model.yoda.loyalty__fact_purchases_daily_snapshot": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__fact_purchases_daily_snapshot", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "customer_id": {"type": "long", "index": 1, "name": "customer_id", "comment": null}, "merchant_id": {"type": "long", "index": 2, "name": "merchant_id", "comment": null}, "billing_country_code": {"type": "string", "index": 3, "name": "billing_country_code", "comment": null}, "billing_city": {"type": "string", "index": 4, "name": "billing_city", "comment": null}, "shipping_country_code": {"type": "string", "index": 5, "name": "shipping_country_code", "comment": null}, "shipping_city": {"type": "string", "index": 6, "name": "shipping_city", "comment": null}, "applied_to_campaigns": {"type": "boolean", "index": 7, "name": "applied_to_campaigns", "comment": null}, "order_id": {"type": "string", "index": 8, "name": "order_id", "comment": null}, "amount_cents": {"type": "long", "index": 9, "name": "amount_cents", "comment": null}, "currency": {"type": "string", "index": 10, "name": "currency", "comment": null}, "shopper_currency_exchange_rate_to_usd": {"type": "double", "index": 11, "name": "shopper_currency_exchange_rate_to_usd", "comment": null}, "base_currency_exchange_rate_to_usd": {"type": "double", "index": 12, "name": "base_currency_exchange_rate_to_usd", "comment": null}, "base_currency": {"type": "string", "index": 13, "name": "base_currency", "comment": null}, "referral_id": {"type": "long", "index": 14, "name": "referral_id", "comment": null}, "referral_discount_code_id": {"type": "long", "index": 15, "name": "referral_discount_code_id", "comment": null}, "created_at": {"type": "timestamp", "index": 16, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 17, "name": "updated_at", "comment": null}, "swell_discount_cost_cents": {"type": "long", "index": 18, "name": "swell_discount_cost_cents", "comment": null}, "user_agent": {"type": "string", "index": 19, "name": "user_agent", "comment": null}, "swell_discount_cost_usd": {"type": "double", "index": 20, "name": "swell_discount_cost_usd", "comment": null}, "swell_discount_cost_on_base_currency": {"type": "double", "index": 21, "name": "swell_discount_cost_on_base_currency", "comment": null}, "swell_discount_cost": {"type": "double", "index": 22, "name": "swell_discount_cost", "comment": null}, "processor_type": {"type": "string", "index": 23, "name": "processor_type", "comment": null}, "is_refunded": {"type": "boolean", "index": 24, "name": "is_refunded", "comment": null}, "total_refunds": {"type": "long", "index": 25, "name": "total_refunds", "comment": null}, "amount_refunded_cents": {"type": "long", "index": 26, "name": "amount_refunded_cents", "comment": null}, "amount_refunded_usd": {"type": "double", "index": 27, "name": "amount_refunded_usd", "comment": null}, "amount_refunded": {"type": "double", "index": 28, "name": "amount_refunded", "comment": null}, "amount_refunded_on_base_currency": {"type": "double", "index": 29, "name": "amount_refunded_on_base_currency", "comment": null}, "purchase_amount_usd": {"type": "float", "index": 30, "name": "purchase_amount_usd", "comment": null}, "purchase_amount_on_base_currency": {"type": "float", "index": 31, "name": "purchase_amount_on_base_currency", "comment": null}, "purchase_amount": {"type": "double", "index": 32, "name": "purchase_amount", "comment": null}, "is_member": {"type": "long", "index": 33, "name": "is_member", "comment": null}, "is_customer_opt_in": {"type": "boolean", "index": 34, "name": "is_customer_opt_in", "comment": null}, "customer_opted_in_at": {"type": "timestamp", "index": 35, "name": "customer_opted_in_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 36, "name": "dwh_updated_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.yoda.loyalty__fact_purchases_daily_snapshot"}, "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__fact_purchases_redemptions_daily_snapshot", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "purchase_id": {"type": "long", "index": 1, "name": "purchase_id", "comment": null}, "redemption_id": {"type": "long", "index": 2, "name": "redemption_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 3, "name": "dwh_updated_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.yoda.loyalty__fact_purchases_redemptions_daily_snapshot"}, "model.yoda.loyalty__fact_redemptions_daily_snapshot": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__fact_redemptions_daily_snapshot", "database": null, "comment": null, "owner": "root"}, "columns": {"point_redemptions_id": {"type": "long", "index": 0, "name": "point_redemptions_id", "comment": null}, "redemption_codes_id": {"type": "long", "index": 1, "name": "redemption_codes_id", "comment": null}, "redemption_option_id": {"type": "long", "index": 2, "name": "redemption_option_id", "comment": null}, "merchant_id": {"type": "long", "index": 3, "name": "merchant_id", "comment": null}, "customer_id": {"type": "long", "index": 4, "name": "customer_id", "comment": null}, "amount_deducted_points": {"type": "long", "index": 5, "name": "amount_deducted_points", "comment": null}, "amount_deducted_usd": {"type": "double", "index": 6, "name": "amount_deducted_usd", "comment": null}, "amount_deducted": {"type": "double", "index": 7, "name": "amount_deducted", "comment": null}, "amount_deducted_cents": {"type": "long", "index": 8, "name": "amount_deducted_cents", "comment": null}, "discount_type": {"type": "string", "index": 9, "name": "discount_type", "comment": null}, "created_at": {"type": "timestamp", "index": 10, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_at", "comment": null}, "code": {"type": "string", "index": 12, "name": "code", "comment": null}, "uses": {"type": "long", "index": 13, "name": "uses", "comment": null}, "is_referred_redemption": {"type": "boolean", "index": 14, "name": "is_referred_redemption", "comment": null}, "is_referring_redemption": {"type": "boolean", "index": 15, "name": "is_referring_redemption", "comment": null}, "discount_percentage": {"type": "long", "index": 16, "name": "discount_percentage", "comment": null}, "is_delayed_redemption": {"type": "boolean", "index": 17, "name": "is_delayed_redemption", "comment": null}, "is_redemption_points_deducted": {"type": "boolean", "index": 18, "name": "is_redemption_points_deducted", "comment": null}, "redemption_option_currnecy": {"type": "string", "index": 19, "name": "redemption_option_currnecy", "comment": null}, "redemption_source": {"type": "string", "index": 20, "name": "redemption_source", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 21, "name": "dwh_updated_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.yoda.loyalty__fact_redemptions_daily_snapshot"}, "model.yoda.loyalty__fact_refunds_daily_snapshot": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__fact_refunds_daily_snapshot", "database": null, "comment": null, "owner": "root"}, "columns": {"refund_id": {"type": "long", "index": 0, "name": "refund_id", "comment": null}, "purchase_id": {"type": "long", "index": 1, "name": "purchase_id", "comment": null}, "refund_amount_usd": {"type": "double", "index": 2, "name": "refund_amount_usd", "comment": null}, "refund_amount": {"type": "double", "index": 3, "name": "refund_amount", "comment": null}, "refund_currency": {"type": "string", "index": 4, "name": "refund_currency", "comment": null}, "amount_cents": {"type": "long", "index": 5, "name": "amount_cents", "comment": null}, "refunded_at": {"type": "timestamp", "index": 6, "name": "refunded_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 7, "name": "dwh_updated_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.yoda.loyalty__fact_refunds_daily_snapshot"}, "model.yoda.loyalty__fact_user_agents_daily_snapshot": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__fact_user_agents_daily_snapshot", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "user_agent": {"type": "string", "index": 1, "name": "user_agent", "comment": null}, "user_agent_hash": {"type": "string", "index": 2, "name": "user_agent_hash", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 3, "name": "dwh_updated_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.yoda.loyalty__fact_user_agents_daily_snapshot"}, "model.yoda.loyalty__opted_in_customers": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__opted_in_customers", "database": null, "comment": null, "owner": "root"}, "columns": {"customer_id": {"type": "long", "index": 0, "name": "customer_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "opted_in_at": {"type": "timestamp", "index": 2, "name": "opted_in_at", "comment": null}, "customer_external_id": {"type": "string", "index": 3, "name": "customer_external_id", "comment": null}, "customer_email": {"type": "string", "index": 4, "name": "customer_email", "comment": null}}, "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.yoda.loyalty__opted_in_customers"}, "model.yoda.loyalty__redeemed_purchases": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__redeemed_purchases", "database": null, "comment": null, "owner": "root"}, "columns": {"app_key": {"type": "string", "index": 0, "name": "app_key", "comment": null}, "external_customer_id": {"type": "string", "index": 1, "name": "external_customer_id", "comment": null}, "customer_email": {"type": "string", "index": 2, "name": "customer_email", "comment": null}, "order_total": {"type": "double", "index": 3, "name": "order_total", "comment": null}, "external_order_id": {"type": "string", "index": 4, "name": "external_order_id", "comment": null}, "redemption_option_id": {"type": "long", "index": 5, "name": "redemption_option_id", "comment": null}, "redemption_id": {"type": "long", "index": 6, "name": "redemption_id", "comment": null}, "amount_deducted_points": {"type": "long", "index": 7, "name": "amount_deducted_points", "comment": null}, "order_date": {"type": "date", "index": 8, "name": "order_date", "comment": null}}, "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.yoda.loyalty__redeemed_purchases"}, "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__redeemed_purchases_with_subs_redemption_option", "database": null, "comment": null, "owner": "root"}, "columns": {"order_id": {"type": "string", "index": 0, "name": "order_id", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "amount": {"type": "long", "index": 2, "name": "amount", "comment": null}, "app_key": {"type": "string", "index": 3, "name": "app_key", "comment": null}}, "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.yoda.loyalty__redeemed_purchases_with_subs_redemption_option"}, "model.yoda.loyalty__review_earning_rule_loyalty": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__review_earning_rule_loyalty", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "customer_email": {"type": "string", "index": 1, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 2, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "string", "index": 3, "name": "customer_external_id", "comment": null}, "app_key": {"type": "string", "index": 4, "name": "app_key", "comment": null}, "action_id": {"type": "string", "index": 5, "name": "action_id", "comment": null}, "synergy_id": {"type": "integer", "index": 6, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 7, "name": "source_type", "comment": null}, "source_id": {"type": "long", "index": 8, "name": "source_id", "comment": null}, "action_type": {"type": "string", "index": 9, "name": "action_type", "comment": null}, "order_id": {"type": "long", "index": 10, "name": "order_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 11, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 12, "name": "action_attribute_value", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.loyalty__review_earning_rule_loyalty"}, "model.yoda.loyalty__sms_earning_rule_loyalty": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty__sms_earning_rule_loyalty", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "customer_email": {"type": "string", "index": 1, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 2, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "string", "index": 3, "name": "customer_external_id", "comment": null}, "app_key": {"type": "string", "index": 4, "name": "app_key", "comment": null}, "action_id": {"type": "long", "index": 5, "name": "action_id", "comment": null}, "synergy_id": {"type": "integer", "index": 6, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 7, "name": "source_type", "comment": null}, "source_id": {"type": "long", "index": 8, "name": "source_id", "comment": null}, "order_id": {"type": "long", "index": 9, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 10, "name": "action_type", "comment": null}, "action_attribute_type": {"type": "string", "index": 11, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 12, "name": "action_attribute_value", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.loyalty__sms_earning_rule_loyalty"}, "model.yoda.loyalty_stg__campaigns": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__campaigns", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "activated_at": {"type": "timestamp", "index": 2, "name": "activated_at", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "admin_display_name": {"type": "string", "index": 4, "name": "admin_display_name", "comment": null}, "admin_only": {"type": "boolean", "index": 5, "name": "admin_only", "comment": null}, "already_completed": {"type": "string", "index": 6, "name": "already_completed", "comment": null}, "archived": {"type": "boolean", "index": 7, "name": "archived", "comment": null}, "ask_year": {"type": "long", "index": 8, "name": "ask_year", "comment": null}, "campaign_codes_count": {"type": "long", "index": 9, "name": "campaign_codes_count", "comment": null}, "cta_text": {"type": "string", "index": 10, "name": "cta_text", "comment": null}, "currency": {"type": "string", "index": 11, "name": "currency", "comment": null}, "days_until_next_action": {"type": "string", "index": 12, "name": "days_until_next_action", "comment": null}, "default_email_subject": {"type": "string", "index": 13, "name": "default_email_subject", "comment": null}, "default_share_text_header": {"type": "string", "index": 14, "name": "default_share_text_header", "comment": null}, "default_share_text": {"type": "string", "index": 15, "name": "default_share_text", "comment": null}, "default_sms_text": {"type": "string", "index": 16, "name": "default_sms_text", "comment": null}, "delay_reward_days": {"type": "long", "index": 17, "name": "delay_reward_days", "comment": null}, "delay_reward": {"type": "long", "index": 18, "name": "delay_reward", "comment": null}, "details": {"type": "string", "index": 19, "name": "details", "comment": null}, "display_order": {"type": "long", "index": 20, "name": "display_order", "comment": null}, "exclude_customer_tags": {"type": "boolean", "index": 21, "name": "exclude_customer_tags", "comment": null}, "exclude_order_tags": {"type": "long", "index": 22, "name": "exclude_order_tags", "comment": null}, "expired": {"type": "boolean", "index": 23, "name": "expired", "comment": null}, "extra_copy1": {"type": "string", "index": 24, "name": "extra_copy1", "comment": null}, "extra_copy2": {"type": "string", "index": 25, "name": "extra_copy2", "comment": null}, "extra_copy3": {"type": "string", "index": 26, "name": "extra_copy3", "comment": null}, "hidden": {"type": "boolean", "index": 27, "name": "hidden", "comment": null}, "hours_until_next_action": {"type": "string", "index": 28, "name": "hours_until_next_action", "comment": null}, "icon": {"type": "string", "index": 29, "name": "icon", "comment": null}, "id": {"type": "long", "index": 30, "name": "id", "comment": null}, "include_audience_ids": {"type": "string", "index": 31, "name": "include_audience_ids", "comment": null}, "merchant_id": {"type": "long", "index": 32, "name": "merchant_id", "comment": null}, "min_actions_required": {"type": "long", "index": 33, "name": "min_actions_required", "comment": null}, "min_spend_cents": {"type": "long", "index": 34, "name": "min_spend_cents", "comment": null}, "must_be_customer": {"type": "boolean", "index": 35, "name": "must_be_customer", "comment": null}, "overflow_enabled": {"type": "long", "index": 36, "name": "overflow_enabled", "comment": null}, "product_map_strategy": {"type": "string", "index": 37, "name": "product_map_strategy", "comment": null}, "product_restrictions_reward": {"type": "string", "index": 38, "name": "product_restrictions_reward", "comment": null}, "referral_auto_apply_coupon": {"type": "boolean", "index": 39, "name": "referral_auto_apply_coupon", "comment": null}, "referral_host": {"type": "string", "index": 40, "name": "referral_host", "comment": null}, "requires_referral_code": {"type": "long", "index": 41, "name": "requires_referral_code", "comment": null}, "reward_percentage": {"type": "long", "index": 42, "name": "reward_percentage", "comment": null}, "reward_points": {"type": "long", "index": 43, "name": "reward_points", "comment": null}, "reward_text": {"type": "string", "index": 44, "name": "reward_text", "comment": null}, "reward_type": {"type": "string", "index": 45, "name": "reward_type", "comment": null}, "show_in_admin": {"type": "boolean", "index": 46, "name": "show_in_admin", "comment": null}, "show_in_rewards_popup": {"type": "long", "index": 47, "name": "show_in_rewards_popup", "comment": null}, "title": {"type": "string", "index": 48, "name": "title", "comment": null}, "type": {"type": "string", "index": 49, "name": "type", "comment": null}, "use_account_creation_date": {"type": "boolean", "index": 50, "name": "use_account_creation_date", "comment": null}, "use_custom_url": {"type": "boolean", "index": 51, "name": "use_custom_url", "comment": null}, "use_oauth": {"type": "long", "index": 52, "name": "use_oauth", "comment": null}, "max_perks_per_user": {"type": "long", "index": 53, "name": "max_perks_per_user", "comment": null}, "goal_spend_cents": {"type": "long", "index": 54, "name": "goal_spend_cents", "comment": null}, "required_order_comparison": {"type": "string", "index": 55, "name": "required_order_comparison", "comment": null}, "reward_product_id_map": {"type": "string", "index": 56, "name": "reward_product_id_map", "comment": null}, "background_image_id": {"type": "long", "index": 57, "name": "background_image_id", "comment": null}, "campaign_tiers": {"type": "string", "index": 58, "name": "campaign_tiers", "comment": null}, "customer_tags": {"type": "string", "index": 59, "name": "customer_tags", "comment": null}, "exclude_product_by_types": {"type": "string", "index": 60, "name": "exclude_product_by_types", "comment": null}, "order_tags": {"type": "string", "index": 61, "name": "order_tags", "comment": null}, "require_product_by_ids": {"type": "string", "index": 62, "name": "require_product_by_ids", "comment": null}, "require_product_by_types": {"type": "string", "index": 63, "name": "require_product_by_types", "comment": null}, "action_name": {"type": "string", "index": 64, "name": "action_name", "comment": null}, "default_email_body": {"type": "string", "index": 65, "name": "default_email_body", "comment": null}, "facebook_description": {"type": "string", "index": 66, "name": "facebook_description", "comment": null}, "redemption_option_id": {"type": "long", "index": 67, "name": "redemption_option_id", "comment": null}, "referral_query_params": {"type": "string", "index": 68, "name": "referral_query_params", "comment": null}, "referral_redemption_option_id": {"type": "long", "index": 69, "name": "referral_redemption_option_id", "comment": null}, "referral_redirect_url": {"type": "string", "index": 70, "name": "referral_redirect_url", "comment": null}, "referral_reward_points": {"type": "long", "index": 71, "name": "referral_reward_points", "comment": null}, "referred_user_target_campaign_id": {"type": "long", "index": 72, "name": "referred_user_target_campaign_id", "comment": null}, "referrer_target_campaign_id": {"type": "long", "index": 73, "name": "referrer_target_campaign_id", "comment": null}, "expired_at": {"type": "timestamp", "index": 74, "name": "expired_at", "comment": null}, "max_perks_total": {"type": "long", "index": 75, "name": "max_perks_total", "comment": null}, "url": {"type": "string", "index": 76, "name": "url", "comment": null}, "require_product_by_tags": {"type": "string", "index": 77, "name": "require_product_by_tags", "comment": null}, "goal_purchases": {"type": "long", "index": 78, "name": "goal_purchases", "comment": null}, "entity_id": {"type": "string", "index": 79, "name": "entity_id", "comment": null}, "username": {"type": "string", "index": 80, "name": "username", "comment": null}, "answer": {"type": "string", "index": 81, "name": "answer", "comment": null}, "minutes_between_perks": {"type": "long", "index": 82, "name": "minutes_between_perks", "comment": null}, "question": {"type": "string", "index": 83, "name": "question", "comment": null}, "vip_tier_id": {"type": "long", "index": 84, "name": "vip_tier_id", "comment": null}, "api_key": {"type": "string", "index": 85, "name": "api_key", "comment": null}, "reward_media_filter": {"type": "long", "index": 86, "name": "reward_media_filter", "comment": null}, "action_filter": {"type": "string", "index": 87, "name": "action_filter", "comment": null}, "share_image_id": {"type": "long", "index": 88, "name": "share_image_id", "comment": null}, "minutes_between_actions": {"type": "long", "index": 89, "name": "minutes_between_actions", "comment": null}, "custom_url": {"type": "string", "index": 90, "name": "custom_url", "comment": null}, "image_id": {"type": "long", "index": 91, "name": "image_id", "comment": null}, "share_header": {"type": "string", "index": 92, "name": "share_header", "comment": null}, "share_text": {"type": "string", "index": 93, "name": "share_text", "comment": null}, "required_order_count": {"type": "long", "index": 94, "name": "required_order_count", "comment": null}, "api_secret": {"type": "string", "index": 95, "name": "api_secret", "comment": null}, "last_scanned_review_id": {"type": "string", "index": 96, "name": "last_scanned_review_id", "comment": null}, "exclude_audience_ids": {"type": "string", "index": 97, "name": "exclude_audience_ids", "comment": null}, "receipts_escalation_email": {"type": "string", "index": 98, "name": "receipts_escalation_email", "comment": null}, "receipts_notification_email": {"type": "string", "index": 99, "name": "receipts_notification_email", "comment": null}}, "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.yoda.loyalty_stg__campaigns"}, "model.yoda.loyalty_stg__currency_rates": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__currency_rates", "database": null, "comment": null, "owner": "root"}, "columns": {"base": {"type": "string", "index": 0, "name": "base", "comment": null}, "day_of_currency_exchange": {"type": "string", "index": 1, "name": "day_of_currency_exchange", "comment": null}, "date": {"type": "string", "index": 2, "name": "date", "comment": null}, "country": {"type": "string", "index": 3, "name": "country", "comment": null}, "currency": {"type": "double", "index": 4, "name": "currency", "comment": null}}, "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.yoda.loyalty_stg__currency_rates"}, "model.yoda.loyalty_stg__customers": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__customers", "database": null, "comment": null, "owner": "root"}, "columns": {"last_purchase_at": {"type": "timestamp", "index": 0, "name": "last_purchase_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 2, "name": "updated_at", "comment": null}, "accepts_marketing": {"type": "long", "index": 3, "name": "accepts_marketing", "comment": null}, "currency": {"type": "string", "index": 4, "name": "currency", "comment": null}, "first_name": {"type": "string", "index": 5, "name": "first_name", "comment": null}, "group_customer_id": {"type": "long", "index": 6, "name": "group_customer_id", "comment": null}, "has_provided_tax_details": {"type": "long", "index": 7, "name": "has_provided_tax_details", "comment": null}, "identity_id": {"type": "long", "index": 8, "name": "identity_id", "comment": null}, "id": {"type": "long", "index": 9, "name": "id", "comment": null}, "is_locked": {"type": "long", "index": 10, "name": "is_locked", "comment": null}, "is_member": {"type": "long", "index": 11, "name": "is_member", "comment": null}, "last_name": {"type": "string", "index": 12, "name": "last_name", "comment": null}, "merchant_id": {"type": "long", "index": 13, "name": "merchant_id", "comment": null}, "name": {"type": "string", "index": 14, "name": "name", "comment": null}, "perks_redeemed": {"type": "long", "index": 15, "name": "perks_redeemed", "comment": null}, "phone_number": {"type": "string", "index": 16, "name": "phone_number", "comment": null}, "processor_id": {"type": "long", "index": 17, "name": "processor_id", "comment": null}, "referral_code_id": {"type": "long", "index": 18, "name": "referral_code_id", "comment": null}, "referred_by_customer_id": {"type": "long", "index": 19, "name": "referred_by_customer_id", "comment": null}, "source": {"type": "string", "index": 20, "name": "source", "comment": null}, "store_account_id": {"type": "string", "index": 21, "name": "store_account_id", "comment": null}, "tags": {"type": "string", "index": 22, "name": "tags", "comment": null}, "total_purchases": {"type": "long", "index": 23, "name": "total_purchases", "comment": null}, "total_spend_cents": {"type": "long", "index": 24, "name": "total_spend_cents", "comment": null}, "user_id": {"type": "long", "index": 25, "name": "user_id", "comment": null}, "pos_account_id": {"type": "string", "index": 26, "name": "pos_account_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.loyalty_stg__customers"}, "model.yoda.loyalty_stg__customers_opt_in": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__customers_opt_in", "database": null, "comment": null, "owner": "root"}, "columns": {"created_at": {"type": "timestamp", "index": 0, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 1, "name": "updated_at", "comment": null}, "opted_in_at": {"type": "timestamp", "index": 2, "name": "opted_in_at", "comment": null}, "customer_id": {"type": "long", "index": 3, "name": "customer_id", "comment": null}, "id": {"type": "long", "index": 4, "name": "id", "comment": null}, "merchant_id": {"type": "long", "index": 5, "name": "merchant_id", "comment": null}, "source_type": {"type": "long", "index": 6, "name": "source_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.yoda.loyalty_stg__customers_opt_in"}, "model.yoda.loyalty_stg__customers_vip_tiers": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__customers_vip_tiers", "database": null, "comment": null, "owner": "root"}, "columns": {"tier_entry_date": {"type": "timestamp", "index": 0, "name": "tier_entry_date", "comment": null}, "tier_expiration_date": {"type": "timestamp", "index": 1, "name": "tier_expiration_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 2, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 3, "name": "created_at", "comment": null}, "customer_id": {"type": "long", "index": 4, "name": "customer_id", "comment": null}, "history_id": {"type": "long", "index": 5, "name": "history_id", "comment": null}, "id": {"type": "long", "index": 6, "name": "id", "comment": null}, "merchant_id": {"type": "long", "index": 7, "name": "merchant_id", "comment": null}, "state": {"type": "string", "index": 8, "name": "state", "comment": null}, "tier_id": {"type": "long", "index": 9, "name": "tier_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.loyalty_stg__customers_vip_tiers"}, "model.yoda.loyalty_stg__email_campaign_emails": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__email_campaign_emails", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "bounced": {"type": "boolean", "index": 2, "name": "bounced", "comment": null}, "clicked": {"type": "boolean", "index": 3, "name": "clicked", "comment": null}, "customer_id": {"type": "long", "index": 4, "name": "customer_id", "comment": null}, "delayed": {"type": "boolean", "index": 5, "name": "delayed", "comment": null}, "email_campaign_id": {"type": "long", "index": 6, "name": "email_campaign_id", "comment": null}, "id": {"type": "long", "index": 7, "name": "id", "comment": null}, "marked_as_spam": {"type": "boolean", "index": 8, "name": "marked_as_spam", "comment": null}, "merchant_id": {"type": "long", "index": 9, "name": "merchant_id", "comment": null}, "opened_at": {"type": "timestamp", "index": 10, "name": "opened_at", "comment": null}, "opened": {"type": "boolean", "index": 11, "name": "opened", "comment": null}, "rejected": {"type": "boolean", "index": 12, "name": "rejected", "comment": null}, "sent_at": {"type": "timestamp", "index": 13, "name": "sent_at", "comment": null}, "sent": {"type": "boolean", "index": 14, "name": "sent", "comment": null}, "soft_bounced": {"type": "boolean", "index": 15, "name": "soft_bounced", "comment": null}, "unsubscribed": {"type": "boolean", "index": 16, "name": "unsubscribed", "comment": null}, "clicked_at": {"type": "timestamp", "index": 17, "name": "clicked_at", "comment": null}, "delayed_at": {"type": "timestamp", "index": 18, "name": "delayed_at", "comment": null}, "bounced_at": {"type": "timestamp", "index": 19, "name": "bounced_at", "comment": null}, "unsubscribed_at": {"type": "timestamp", "index": 20, "name": "unsubscribed_at", "comment": null}, "rejected_at": {"type": "timestamp", "index": 21, "name": "rejected_at", "comment": null}, "marked_as_spam_at": {"type": "timestamp", "index": 22, "name": "marked_as_spam_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.yoda.loyalty_stg__email_campaign_emails"}, "model.yoda.loyalty_stg__enriched_customers": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__enriched_customers", "database": null, "comment": null, "owner": "root"}, "columns": {"customer_id": {"type": "long", "index": 0, "name": "customer_id", "comment": null}, "group_customer_id": {"type": "long", "index": 1, "name": "group_customer_id", "comment": null}, "merchant_id": {"type": "long", "index": 2, "name": "merchant_id", "comment": null}, "phone_number": {"type": "string", "index": 3, "name": "phone_number", "comment": null}, "store_account_id": {"type": "string", "index": 4, "name": "store_account_id", "comment": null}, "group_id": {"type": "string", "index": 5, "name": "group_id", "comment": null}, "first_name": {"type": "string", "index": 6, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 7, "name": "last_name", "comment": null}, "name": {"type": "string", "index": 8, "name": "name", "comment": null}, "email": {"type": "string", "index": 9, "name": "email", "comment": null}, "points_balance": {"type": "long", "index": 10, "name": "points_balance", "comment": null}, "points_earned": {"type": "long", "index": 11, "name": "points_earned", "comment": null}, "referred_by_customer_id": {"type": "long", "index": 12, "name": "referred_by_customer_id", "comment": null}, "last_purchase_at": {"type": "timestamp", "index": 13, "name": "last_purchase_at", "comment": null}, "created_at": {"type": "timestamp", "index": 14, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 15, "name": "updated_at", "comment": null}, "is_member": {"type": "boolean", "index": 16, "name": "is_member", "comment": null}, "exclude_from_reports": {"type": "boolean", "index": 17, "name": "exclude_from_reports", "comment": null}, "last_seen_at": {"type": "timestamp", "index": 18, "name": "last_seen_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.yoda.loyalty_stg__enriched_customers"}, "model.yoda.loyalty_stg__group_customers": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__group_customers", "database": null, "comment": null, "owner": "root"}, "columns": {"last_seen_at": {"type": "timestamp", "index": 0, "name": "last_seen_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 1, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 2, "name": "created_at", "comment": null}, "email": {"type": "string", "index": 3, "name": "email", "comment": null}, "exclude_from_reports": {"type": "boolean", "index": 4, "name": "exclude_from_reports", "comment": null}, "group_id": {"type": "string", "index": 5, "name": "group_id", "comment": null}, "id": {"type": "long", "index": 6, "name": "id", "comment": null}, "points_balance": {"type": "long", "index": 7, "name": "points_balance", "comment": null}, "points_earned": {"type": "long", "index": 8, "name": "points_earned", "comment": null}, "points_expire_at": {"type": "timestamp", "index": 9, "name": "points_expire_at", "comment": null}, "subscribed": {"type": "boolean", "index": 10, "name": "subscribed", "comment": null}}, "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.yoda.loyalty_stg__group_customers"}, "model.yoda.loyalty_stg__install_loyalty": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__install_loyalty", "database": null, "comment": null, "owner": "root"}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "violated_event": {"type": "boolean", "index": 17, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 18, "name": "event_name", "comment": null}, "accountid": {"type": "long", "index": 19, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 20, "name": "adminname", "comment": null}, "appkey": {"type": "string", "index": 21, "name": "appkey", "comment": null}, "company_name": {"type": "string", "index": 22, "name": "company_name", "comment": null}, "createdat": {"type": "string", "index": 23, "name": "createdat", "comment": null}, "currentplan": {"type": "string", "index": 24, "name": "currentplan", "comment": null}, "email": {"type": "string", "index": 25, "name": "email", "comment": null}, "groupid": {"type": "string", "index": 26, "name": "groupid", "comment": null}, "initialnumoforders": {"type": "long", "index": 27, "name": "initialnumoforders", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 28, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 29, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 30, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 31, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 32, "name": "isusingpackagesservice", "comment": null}, "loyaltyemail": {"type": "string", "index": 33, "name": "loyaltyemail", "comment": null}, "loyaltypackage": {"type": "string", "index": 34, "name": "loyaltypackage", "comment": null}, "merchant_id": {"type": "long", "index": 35, "name": "merchant_id", "comment": null}, "name": {"type": "string", "index": 36, "name": "name", "comment": null}, "owner": {"type": "string", "index": 37, "name": "owner", "comment": null}, "packagecategories": {"type": "string", "index": 38, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 39, "name": "package", "comment": null}, "platform_plan": {"type": "string", "index": 40, "name": "platform_plan", "comment": null}, "platform": {"type": "string", "index": 41, "name": "platform", "comment": null}, "product": {"type": "string", "index": 42, "name": "product", "comment": null}, "role": {"type": "string", "index": 43, "name": "role", "comment": null}, "storecount": {"type": "long", "index": 44, "name": "storecount", "comment": null}, "storedomain": {"type": "string", "index": 45, "name": "storedomain", "comment": null}, "traits_email": {"type": "string", "index": 46, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 47, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 48, "name": "traits_plan", "comment": null}, "userid": {"type": "long", "index": 49, "name": "userid", "comment": null}, "website": {"type": "string", "index": 50, "name": "website", "comment": null}, "yotpoip": {"type": "string", "index": 51, "name": "yotpoip", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 52, "name": "rrmonthlylimit", "comment": null}, "pendingrrs": {"type": "long", "index": 53, "name": "pendingrrs", "comment": null}, "planname": {"type": "string", "index": 54, "name": "planname", "comment": null}, "signupcountry": {"type": "string", "index": 55, "name": "signupcountry", "comment": null}, "signuputmcampaign": {"type": "string", "index": 56, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 57, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 58, "name": "signuputmsource", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 59, "name": "isinvalidfacebooktoken", "comment": null}, "lastconversionordertime": {"type": "string", "index": 60, "name": "lastconversionordertime", "comment": null}, "phone": {"type": "string", "index": 61, "name": "phone", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 62, "name": "signupmonthlyorderscount", "comment": null}, "signupphone": {"type": "string", "index": 63, "name": "signupphone", "comment": null}, "billingproviders": {"type": "array", "index": 64, "name": "billingproviders", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 65, "name": "daysinvalidfacebooktoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 66, "name": "isinvalidfacebooktokendate", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 67, "name": "isinvalidtwittertoken", "comment": null}, "packageextensions": {"type": "string", "index": 68, "name": "packageextensions", "comment": null}, "chargeid": {"type": "long", "index": 69, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 70, "name": "chargeprice", "comment": null}, "subscriptionstate": {"type": "string", "index": 71, "name": "subscriptionstate", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 72, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 73, "name": "isinvalidtwittertokendate", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 74, "name": "isinvalidpinteresttoken", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 75, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 76, "name": "isinvalidpinteresttokendate", "comment": null}}, "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.yoda.loyalty_stg__install_loyalty"}, "model.yoda.loyalty_stg__merchants": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__merchants", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "affiliate_include_shipping": {"type": "boolean", "index": 2, "name": "affiliate_include_shipping", "comment": null}, "affiliate_order_price_setting": {"type": "long", "index": 3, "name": "affiliate_order_price_setting", "comment": null}, "allow_program_overwrite": {"type": "boolean", "index": 4, "name": "allow_program_overwrite", "comment": null}, "api_access_enabled": {"type": "boolean", "index": 5, "name": "api_access_enabled", "comment": null}, "api_key": {"type": "string", "index": 6, "name": "api_key", "comment": null}, "bricknmortar": {"type": "boolean", "index": 7, "name": "bricknmortar", "comment": null}, "can_generate_coupons": {"type": "boolean", "index": 8, "name": "can_generate_coupons", "comment": null}, "cash_payout_setting": {"type": "string", "index": 9, "name": "cash_payout_setting", "comment": null}, "code_based_referral_program_on_demand": {"type": "boolean", "index": 10, "name": "code_based_referral_program_on_demand", "comment": null}, "company_name": {"type": "string", "index": 11, "name": "company_name", "comment": null}, "completed_onboarding": {"type": "boolean", "index": 12, "name": "completed_onboarding", "comment": null}, "completed_profile": {"type": "boolean", "index": 13, "name": "completed_profile", "comment": null}, "contact_email": {"type": "string", "index": 14, "name": "contact_email", "comment": null}, "cross_origin_store_accounts": {"type": "boolean", "index": 15, "name": "cross_origin_store_accounts", "comment": null}, "currency": {"type": "string", "index": 16, "name": "currency", "comment": null}, "default_payout_percentage": {"type": "double", "index": 17, "name": "default_payout_percentage", "comment": null}, "default_paypal_email_subject": {"type": "string", "index": 18, "name": "default_paypal_email_subject", "comment": null}, "delete_used_coupons_enable": {"type": "boolean", "index": 19, "name": "delete_used_coupons_enable", "comment": null}, "discount_code_based_referral_program_enabled": {"type": "boolean", "index": 20, "name": "discount_code_based_referral_program_enabled", "comment": null}, "discount_code_generation_strategy": {"type": "string", "index": 21, "name": "discount_code_generation_strategy", "comment": null}, "email_header_width": {"type": "long", "index": 22, "name": "email_header_width", "comment": null}, "email_layout": {"type": "string", "index": 23, "name": "email_layout", "comment": null}, "exclude_customer_tags": {"type": "boolean", "index": 24, "name": "exclude_customer_tags", "comment": null}, "facebook_app_id": {"type": "string", "index": 25, "name": "facebook_app_id", "comment": null}, "featured": {"type": "boolean", "index": 26, "name": "featured", "comment": null}, "first_time_referral_discounts_enable_flag": {"type": "boolean", "index": 27, "name": "first_time_referral_discounts_enable_flag", "comment": null}, "force_store_accounts": {"type": "boolean", "index": 28, "name": "force_store_accounts", "comment": null}, "free_products_enabled": {"type": "boolean", "index": 29, "name": "free_products_enabled", "comment": null}, "from_email": {"type": "string", "index": 30, "name": "from_email", "comment": null}, "from_name": {"type": "string", "index": 31, "name": "from_name", "comment": null}, "group_id": {"type": "string", "index": 32, "name": "group_id", "comment": null}, "guid": {"type": "string", "index": 33, "name": "guid", "comment": null}, "has_analytics_installed": {"type": "boolean", "index": 34, "name": "has_analytics_installed", "comment": null}, "has_rewards_installed": {"type": "boolean", "index": 35, "name": "has_rewards_installed", "comment": null}, "has_store": {"type": "boolean", "index": 36, "name": "has_store", "comment": null}, "id": {"type": "long", "index": 37, "name": "id", "comment": null}, "include_purchases_with_details": {"type": "boolean", "index": 38, "name": "include_purchases_with_details", "comment": null}, "include_shipping": {"type": "boolean", "index": 39, "name": "include_shipping", "comment": null}, "include_storefront_css": {"type": "boolean", "index": 40, "name": "include_storefront_css", "comment": null}, "install_order_volume": {"type": "long", "index": 41, "name": "install_order_volume", "comment": null}, "installed_analytics_at": {"type": "timestamp", "index": 42, "name": "installed_analytics_at", "comment": null}, "installed_rewards_at": {"type": "timestamp", "index": 43, "name": "installed_rewards_at", "comment": null}, "invoice_job_id": {"type": "string", "index": 44, "name": "invoice_job_id", "comment": null}, "is_approved": {"type": "boolean", "index": 45, "name": "is_approved", "comment": null}, "limit_redemptions": {"type": "boolean", "index": 46, "name": "limit_redemptions", "comment": null}, "loyalty_opt_in_strategy": {"type": "long", "index": 47, "name": "loyalty_opt_in_strategy", "comment": null}, "manual_adjustment_admin_only": {"type": "boolean", "index": 48, "name": "manual_adjustment_admin_only", "comment": null}, "metafield_namespace": {"type": "string", "index": 49, "name": "metafield_namespace", "comment": null}, "oauth_app_id": {"type": "string", "index": 50, "name": "oauth_app_id", "comment": null}, "on_free_trial": {"type": "boolean", "index": 51, "name": "on_free_trial", "comment": null}, "order_price_setting": {"type": "long", "index": 52, "name": "order_price_setting", "comment": null}, "owner_id": {"type": "long", "index": 53, "name": "owner_id", "comment": null}, "plan": {"type": "string", "index": 54, "name": "plan", "comment": null}, "platform": {"type": "string", "index": 55, "name": "platform", "comment": null}, "points_per_dollar": {"type": "long", "index": 56, "name": "points_per_dollar", "comment": null}, "points_reminder_delay_days": {"type": "long", "index": 57, "name": "points_reminder_delay_days", "comment": null}, "process_discounts_webhook": {"type": "string", "index": 58, "name": "process_discounts_webhook", "comment": null}, "process_order_webhook": {"type": "string", "index": 59, "name": "process_order_webhook", "comment": null}, "program_live": {"type": "boolean", "index": 60, "name": "program_live", "comment": null}, "program_locked": {"type": "boolean", "index": 61, "name": "program_locked", "comment": null}, "referral_avoid_ip_and_user_agent": {"type": "boolean", "index": 62, "name": "referral_avoid_ip_and_user_agent", "comment": null}, "referral_opt_in_strategy": {"type": "long", "index": 63, "name": "referral_opt_in_strategy", "comment": null}, "referral_reminder_days": {"type": "long", "index": 64, "name": "referral_reminder_days", "comment": null}, "round_discounts_strategy": {"type": "long", "index": 65, "name": "round_discounts_strategy", "comment": null}, "security_level": {"type": "long", "index": 66, "name": "security_level", "comment": null}, "setup_rewards_page": {"type": "boolean", "index": 67, "name": "setup_rewards_page", "comment": null}, "show_billing_information": {"type": "boolean", "index": 68, "name": "show_billing_information", "comment": null}, "slug": {"type": "string", "index": 69, "name": "slug", "comment": null}, "source": {"type": "string", "index": 70, "name": "source", "comment": null}, "store_account_login_url": {"type": "string", "index": 71, "name": "store_account_login_url", "comment": null}, "store_account_registration_url": {"type": "string", "index": 72, "name": "store_account_registration_url", "comment": null}, "store_id": {"type": "string", "index": 73, "name": "store_id", "comment": null}, "swell_redemptions_enabled": {"type": "boolean", "index": 74, "name": "swell_redemptions_enabled", "comment": null}, "sync_fields_with_processor": {"type": "boolean", "index": 75, "name": "sync_fields_with_processor", "comment": null}, "sync_newsletter_with_platform": {"type": "boolean", "index": 76, "name": "sync_newsletter_with_platform", "comment": null}, "sync_tiers_with_platform": {"type": "boolean", "index": 77, "name": "sync_tiers_with_platform", "comment": null}, "test_account": {"type": "boolean", "index": 78, "name": "test_account", "comment": null}, "third_party_id": {"type": "string", "index": 79, "name": "third_party_id", "comment": null}, "time_zone": {"type": "string", "index": 80, "name": "time_zone", "comment": null}, "value_per_subscriber_cents": {"type": "long", "index": 81, "name": "value_per_subscriber_cents", "comment": null}, "verified_email_domain": {"type": "boolean", "index": 82, "name": "verified_email_domain", "comment": null}, "vip_tiers_job_running": {"type": "boolean", "index": 83, "name": "vip_tiers_job_running", "comment": null}, "website": {"type": "string", "index": 84, "name": "website", "comment": null}, "weekly_digest_enabled": {"type": "boolean", "index": 85, "name": "weekly_digest_enabled", "comment": null}, "widget_bg_color": {"type": "string", "index": 86, "name": "widget_bg_color", "comment": null}, "widget_brand_color": {"type": "string", "index": 87, "name": "widget_brand_color", "comment": null}, "widget_distance_from_end": {"type": "long", "index": 88, "name": "widget_distance_from_end", "comment": null}, "widget_enabled": {"type": "boolean", "index": 89, "name": "widget_enabled", "comment": null}, "widget_expanded_by_default": {"type": "boolean", "index": 90, "name": "widget_expanded_by_default", "comment": null}, "widget_header_text": {"type": "string", "index": 91, "name": "widget_header_text", "comment": null}, "widget_height": {"type": "long", "index": 92, "name": "widget_height", "comment": null}, "widget_location_mobile": {"type": "string", "index": 93, "name": "widget_location_mobile", "comment": null}, "widget_location": {"type": "string", "index": 94, "name": "widget_location", "comment": null}, "widget_mobile": {"type": "boolean", "index": 95, "name": "widget_mobile", "comment": null}, "widget_rounded": {"type": "boolean", "index": 96, "name": "widget_rounded", "comment": null}, "widget_text_color": {"type": "string", "index": 97, "name": "widget_text_color", "comment": null}, "widget_text": {"type": "string", "index": 98, "name": "widget_text", "comment": null}, "widget_theme": {"type": "string", "index": 99, "name": "widget_theme", "comment": null}, "description": {"type": "string", "index": 100, "name": "description", "comment": null}, "logo_url": {"type": "string", "index": 101, "name": "logo_url", "comment": null}, "nav_exclusions": {"type": "string", "index": 102, "name": "nav_exclusions", "comment": null}, "order_paid_status": {"type": "string", "index": 103, "name": "order_paid_status", "comment": null}, "process_order_status": {"type": "string", "index": 104, "name": "process_order_status", "comment": null}, "stripe_customer_id": {"type": "string", "index": 105, "name": "stripe_customer_id", "comment": null}, "webhook_token": {"type": "string", "index": 106, "name": "webhook_token", "comment": null}, "webhook_url": {"type": "string", "index": 107, "name": "webhook_url", "comment": null}, "collection_exclusions": {"type": "string", "index": 108, "name": "collection_exclusions", "comment": null}, "customer_tags": {"type": "string", "index": 109, "name": "customer_tags", "comment": null}, "product_exclusions": {"type": "string", "index": 110, "name": "product_exclusions", "comment": null}, "email_layout_html": {"type": "string", "index": 111, "name": "email_layout_html", "comment": null}, "email_header_image_content_type": {"type": "string", "index": 112, "name": "email_header_image_content_type", "comment": null}, "email_header_image_file_name": {"type": "string", "index": 113, "name": "email_header_image_file_name", "comment": null}, "email_header_image_file_size": {"type": "long", "index": 114, "name": "email_header_image_file_size", "comment": null}, "email_header_image_updated_at": {"type": "timestamp", "index": 115, "name": "email_header_image_updated_at", "comment": null}, "usage_charge_job_id": {"type": "string", "index": 116, "name": "usage_charge_job_id", "comment": null}, "uninstalled_analytics_at": {"type": "timestamp", "index": 117, "name": "uninstalled_analytics_at", "comment": null}, "uninstalled_rewards_at": {"type": "timestamp", "index": 118, "name": "uninstalled_rewards_at", "comment": null}, "order_paid_state": {"type": "string", "index": 119, "name": "order_paid_state", "comment": null}, "process_order_state": {"type": "string", "index": 120, "name": "process_order_state", "comment": null}, "used_coupons_delete_after_days": {"type": "long", "index": 121, "name": "used_coupons_delete_after_days", "comment": null}, "process_refund_status": {"type": "string", "index": 122, "name": "process_refund_status", "comment": null}, "free_trial_expiration_job_id": {"type": "string", "index": 123, "name": "free_trial_expiration_job_id", "comment": null}, "free_trial_expires_at": {"type": "timestamp", "index": 124, "name": "free_trial_expires_at", "comment": null}, "platform_engine": {"type": "string", "index": 125, "name": "platform_engine", "comment": null}, "logo_content_type": {"type": "string", "index": 126, "name": "logo_content_type", "comment": null}, "logo_file_name": {"type": "string", "index": 127, "name": "logo_file_name", "comment": null}, "logo_file_size": {"type": "long", "index": 128, "name": "logo_file_size", "comment": null}, "logo_updated_at": {"type": "timestamp", "index": 129, "name": "logo_updated_at", "comment": null}, "widget_font_family": {"type": "string", "index": 130, "name": "widget_font_family", "comment": null}, "widget_font_url": {"type": "string", "index": 131, "name": "widget_font_url", "comment": null}, "custom_chat_group": {"type": "string", "index": 132, "name": "custom_chat_group", "comment": null}, "custom_script_url": {"type": "string", "index": 133, "name": "custom_script_url", "comment": null}, "program_first_activated_at": {"type": "date", "index": 134, "name": "program_first_activated_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.yoda.loyalty_stg__merchants"}, "model.yoda.loyalty_stg__perks": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__perks", "database": null, "comment": null, "owner": "root"}, "columns": {"created_at": {"type": "timestamp", "index": 0, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 1, "name": "updated_at", "comment": null}, "awarded_at": {"type": "timestamp", "index": 2, "name": "awarded_at", "comment": null}, "original_awarded_at": {"type": "timestamp", "index": 3, "name": "original_awarded_at", "comment": null}, "completed_at": {"type": "timestamp", "index": 4, "name": "completed_at", "comment": null}, "admin_only": {"type": "boolean", "index": 5, "name": "admin_only", "comment": null}, "award_job_id": {"type": "string", "index": 6, "name": "award_job_id", "comment": null}, "awarded": {"type": "boolean", "index": 7, "name": "awarded", "comment": null}, "balance_only": {"type": "boolean", "index": 8, "name": "balance_only", "comment": null}, "campaign_id": {"type": "long", "index": 9, "name": "campaign_id", "comment": null}, "completed_action": {"type": "string", "index": 10, "name": "completed_action", "comment": null}, "completed": {"type": "boolean", "index": 11, "name": "completed", "comment": null}, "currency": {"type": "string", "index": 12, "name": "currency", "comment": null}, "customer_id": {"type": "long", "index": 13, "name": "customer_id", "comment": null}, "expiration_job_id": {"type": "string", "index": 14, "name": "expiration_job_id", "comment": null}, "expired_at": {"type": "timestamp", "index": 15, "name": "expired_at", "comment": null}, "expired": {"type": "boolean", "index": 16, "name": "expired", "comment": null}, "expires_at": {"type": "timestamp", "index": 17, "name": "expires_at", "comment": null}, "hidden": {"type": "boolean", "index": 18, "name": "hidden", "comment": null}, "history_title": {"type": "string", "index": 19, "name": "history_title", "comment": null}, "identity_id": {"type": "long", "index": 20, "name": "identity_id", "comment": null}, "id": {"type": "long", "index": 21, "name": "id", "comment": null}, "merchant_id": {"type": "long", "index": 22, "name": "merchant_id", "comment": null}, "pending": {"type": "boolean", "index": 23, "name": "pending", "comment": null}, "redeemable": {"type": "boolean", "index": 24, "name": "redeemable", "comment": null}, "redemption_option_id": {"type": "long", "index": 25, "name": "redemption_option_id", "comment": null}, "referral_id": {"type": "long", "index": 26, "name": "referral_id", "comment": null}, "reversed_at": {"type": "timestamp", "index": 27, "name": "reversed_at", "comment": null}, "reversed": {"type": "boolean", "index": 28, "name": "reversed", "comment": null}, "reward_points": {"type": "long", "index": 29, "name": "reward_points", "comment": null}, "points_multiplier": {"type": "double", "index": 30, "name": "points_multiplier", "comment": null}, "points_transactions": {"type": "string", "index": 31, "name": "points_transactions", "comment": null}, "point_transactions": {"type": "string", "index": 32, "name": "point_transactions", "comment": null}}, "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.yoda.loyalty_stg__perks"}, "model.yoda.loyalty_stg__plans": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__plans", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "base_price_cents": {"type": "long", "index": 2, "name": "base_price_cents", "comment": null}, "capped_amount_cents": {"type": "long", "index": 3, "name": "capped_amount_cents", "comment": null}, "id": {"type": "long", "index": 4, "name": "id", "comment": null}, "included_orders": {"type": "long", "index": 5, "name": "included_orders", "comment": null}, "name": {"type": "string", "index": 6, "name": "name", "comment": null}, "per_order_price_cents": {"type": "long", "index": 7, "name": "per_order_price_cents", "comment": null}}, "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.yoda.loyalty_stg__plans"}, "model.yoda.loyalty_stg__point_redemptions": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__point_redemptions", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "approved_at": {"type": "timestamp", "index": 2, "name": "approved_at", "comment": null}, "approved": {"type": "boolean", "index": 3, "name": "approved", "comment": null}, "at_checkout": {"type": "boolean", "index": 4, "name": "at_checkout", "comment": null}, "cost_cents": {"type": "long", "index": 5, "name": "cost_cents", "comment": null}, "currency": {"type": "string", "index": 6, "name": "currency", "comment": null}, "customer_id": {"type": "long", "index": 7, "name": "customer_id", "comment": null}, "deleted": {"type": "boolean", "index": 8, "name": "deleted", "comment": null}, "id": {"type": "long", "index": 9, "name": "id", "comment": null}, "is_admin": {"type": "boolean", "index": 10, "name": "is_admin", "comment": null}, "is_pos": {"type": "boolean", "index": 11, "name": "is_pos", "comment": null}, "merchant_id": {"type": "long", "index": 12, "name": "merchant_id", "comment": null}, "redemption_option_id": {"type": "long", "index": 13, "name": "redemption_option_id", "comment": null}, "refunded_amount": {"type": "long", "index": 14, "name": "refunded_amount", "comment": null}, "reversed": {"type": "boolean", "index": 15, "name": "reversed", "comment": null}, "reward_text": {"type": "string", "index": 16, "name": "reward_text", "comment": null}, "reward_title": {"type": "string", "index": 17, "name": "reward_title", "comment": null}, "value_cents": {"type": "long", "index": 18, "name": "value_cents", "comment": null}, "visible": {"type": "boolean", "index": 19, "name": "visible", "comment": null}, "cart_id": {"type": "string", "index": 20, "name": "cart_id", "comment": null}, "identity_id": {"type": "long", "index": 21, "name": "identity_id", "comment": null}, "perk_id": {"type": "long", "index": 22, "name": "perk_id", "comment": null}, "amount": {"type": "long", "index": 23, "name": "amount", "comment": null}, "referral_id": {"type": "long", "index": 24, "name": "referral_id", "comment": null}, "third_party_order_id": {"type": "string", "index": 25, "name": "third_party_order_id", "comment": null}, "point_transactions": {"type": "string", "index": 26, "name": "point_transactions", "comment": null}, "api_version": {"type": "string", "index": 27, "name": "api_version", "comment": null}, "redemption_source": {"type": "string", "index": 28, "name": "redemption_source", "comment": null}}, "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.yoda.loyalty_stg__point_redemptions"}, "model.yoda.loyalty_stg__processors": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__processors", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "guid": {"type": "string", "index": 2, "name": "guid", "comment": null}, "has_authorized": {"type": "boolean", "index": 3, "name": "has_authorized", "comment": null}, "id": {"type": "long", "index": 4, "name": "id", "comment": null}, "import_completed": {"type": "boolean", "index": 5, "name": "import_completed", "comment": null}, "import_records_processed": {"type": "long", "index": 6, "name": "import_records_processed", "comment": null}, "import_started": {"type": "boolean", "index": 7, "name": "import_started", "comment": null}, "import_total_records": {"type": "long", "index": 8, "name": "import_total_records", "comment": null}, "last_fetch_at": {"type": "timestamp", "index": 9, "name": "last_fetch_at", "comment": null}, "last_page_number": {"type": "long", "index": 10, "name": "last_page_number", "comment": null}, "merchant_id": {"type": "long", "index": 11, "name": "merchant_id", "comment": null}, "name": {"type": "string", "index": 12, "name": "name", "comment": null}, "oauth_token_id": {"type": "long", "index": 13, "name": "oauth_token_id", "comment": null}, "paused": {"type": "boolean", "index": 14, "name": "paused", "comment": null}, "type": {"type": "string", "index": 15, "name": "type", "comment": null}, "permissions": {"type": "string", "index": 16, "name": "permissions", "comment": null}}, "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.yoda.loyalty_stg__processors"}, "model.yoda.loyalty_stg__purchases": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__purchases", "database": null, "comment": null, "owner": "root"}, "columns": {"created_at": {"type": "timestamp", "index": 0, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 1, "name": "updated_at", "comment": null}, "amount_cents": {"type": "long", "index": 2, "name": "amount_cents", "comment": null}, "applied_to_campaigns": {"type": "boolean", "index": 3, "name": "applied_to_campaigns", "comment": null}, "avs_postal_match": {"type": "string", "index": 4, "name": "avs_postal_match", "comment": null}, "avs_result_code": {"type": "string", "index": 5, "name": "avs_result_code", "comment": null}, "avs_street_match": {"type": "string", "index": 6, "name": "avs_street_match", "comment": null}, "before_swellrewards": {"type": "boolean", "index": 7, "name": "before_swellrewards", "comment": null}, "billing_address1": {"type": "string", "index": 8, "name": "billing_address1", "comment": null}, "billing_address2": {"type": "string", "index": 9, "name": "billing_address2", "comment": null}, "billing_city": {"type": "string", "index": 10, "name": "billing_city", "comment": null}, "billing_country_code": {"type": "string", "index": 11, "name": "billing_country_code", "comment": null}, "billing_first_name": {"type": "string", "index": 12, "name": "billing_first_name", "comment": null}, "billing_last_name": {"type": "string", "index": 13, "name": "billing_last_name", "comment": null}, "billing_phone": {"type": "string", "index": 14, "name": "billing_phone", "comment": null}, "billing_zip": {"type": "string", "index": 15, "name": "billing_zip", "comment": null}, "browser_country_code": {"type": "string", "index": 16, "name": "browser_country_code", "comment": null}, "chargeback_protection": {"type": "string", "index": 17, "name": "chargeback_protection", "comment": null}, "credit_card_bin": {"type": "string", "index": 18, "name": "credit_card_bin", "comment": null}, "credit_card_company": {"type": "string", "index": 19, "name": "credit_card_company", "comment": null}, "credit_card_number": {"type": "string", "index": 20, "name": "credit_card_number", "comment": null}, "currency": {"type": "string", "index": 21, "name": "currency", "comment": null}, "customer_id": {"type": "long", "index": 22, "name": "customer_id", "comment": null}, "cvv_result_code": {"type": "string", "index": 23, "name": "cvv_result_code", "comment": null}, "eligible_for_vip_tiers": {"type": "boolean", "index": 24, "name": "eligible_for_vip_tiers", "comment": null}, "fraud_review": {"type": "string", "index": 25, "name": "fraud_review", "comment": null}, "gateway": {"type": "string", "index": 26, "name": "gateway", "comment": null}, "has_swell_user": {"type": "boolean", "index": 27, "name": "has_swell_user", "comment": null}, "id": {"type": "long", "index": 28, "name": "id", "comment": null}, "ip_address": {"type": "string", "index": 29, "name": "ip_address", "comment": null}, "is_refunded": {"type": "boolean", "index": 30, "name": "is_refunded", "comment": null}, "is_repeat": {"type": "boolean", "index": 31, "name": "is_repeat", "comment": null}, "landing_site": {"type": "string", "index": 32, "name": "landing_site", "comment": null}, "merchant_id": {"type": "long", "index": 33, "name": "merchant_id", "comment": null}, "order_id": {"type": "string", "index": 34, "name": "order_id", "comment": null}, "processor_id": {"type": "long", "index": 35, "name": "processor_id", "comment": null}, "redemption_code_id": {"type": "long", "index": 36, "name": "redemption_code_id", "comment": null}, "referral_id": {"type": "long", "index": 37, "name": "referral_id", "comment": null}, "referring_site": {"type": "string", "index": 38, "name": "referring_site", "comment": null}, "sender_email": {"type": "string", "index": 39, "name": "sender_email", "comment": null}, "shipping_address1": {"type": "string", "index": 40, "name": "shipping_address1", "comment": null}, "shipping_address2": {"type": "string", "index": 41, "name": "shipping_address2", "comment": null}, "shipping_city": {"type": "string", "index": 42, "name": "shipping_city", "comment": null}, "shipping_country_code": {"type": "string", "index": 43, "name": "shipping_country_code", "comment": null}, "shipping_first_name": {"type": "string", "index": 44, "name": "shipping_first_name", "comment": null}, "shipping_last_name": {"type": "string", "index": 45, "name": "shipping_last_name", "comment": null}, "shipping_phone": {"type": "string", "index": 46, "name": "shipping_phone", "comment": null}, "shipping_zip": {"type": "string", "index": 47, "name": "shipping_zip", "comment": null}, "store_account_id": {"type": "string", "index": 48, "name": "store_account_id", "comment": null}, "swell_discount_cost_cents": {"type": "long", "index": 49, "name": "swell_discount_cost_cents", "comment": null}, "synced_to_analytics": {"type": "boolean", "index": 50, "name": "synced_to_analytics", "comment": null}, "user_agent_id": {"type": "long", "index": 51, "name": "user_agent_id", "comment": null}, "user_agent": {"type": "string", "index": 52, "name": "user_agent", "comment": null}, "user_id": {"type": "long", "index": 53, "name": "user_id", "comment": null}, "fee_amount_cents": {"type": "long", "index": 54, "name": "fee_amount_cents", "comment": null}, "transaction_id": {"type": "string", "index": 55, "name": "transaction_id", "comment": null}, "affiliate_amount": {"type": "double", "index": 56, "name": "affiliate_amount", "comment": null}, "referral_discount_code_id": {"type": "long", "index": 57, "name": "referral_discount_code_id", "comment": null}, "transaction_hash": {"type": "string", "index": 58, "name": "transaction_hash", "comment": null}, "vip_tier_eligibility_job_id": {"type": "string", "index": 59, "name": "vip_tier_eligibility_job_id", "comment": null}, "channel_type": {"type": "string", "index": 60, "name": "channel_type", "comment": null}, "store_address": {"type": "string", "index": 61, "name": "store_address", "comment": null}, "clerk_name": {"type": "string", "index": 62, "name": "clerk_name", "comment": null}, "store_city": {"type": "string", "index": 63, "name": "store_city", "comment": null}, "store_state": {"type": "string", "index": 64, "name": "store_state", "comment": null}, "clerk_employee_id": {"type": "string", "index": 65, "name": "clerk_employee_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.loyalty_stg__purchases"}, "model.yoda.loyalty_stg__purchases_redemptions": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__purchases_redemptions", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "id": {"type": "long", "index": 2, "name": "id", "comment": null}, "purchase_id": {"type": "long", "index": 3, "name": "purchase_id", "comment": null}, "redemption_id": {"type": "long", "index": 4, "name": "redemption_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.loyalty_stg__purchases_redemptions"}, "model.yoda.loyalty_stg__purchases_with_currency": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__purchases_with_currency", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "amount_cents": {"type": "long", "index": 2, "name": "amount_cents", "comment": null}, "currency_symbol": {"type": "string", "index": 3, "name": "currency_symbol", "comment": null}, "external_exchange_rate": {"type": "long", "index": 4, "name": "external_exchange_rate", "comment": null}, "id": {"type": "long", "index": 5, "name": "id", "comment": null}, "loyalty_exchange_rate": {"type": "double", "index": 6, "name": "loyalty_exchange_rate", "comment": null}, "merchant_id": {"type": "long", "index": 7, "name": "merchant_id", "comment": null}, "purchase_id": {"type": "long", "index": 8, "name": "purchase_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.loyalty_stg__purchases_with_currency"}, "model.yoda.loyalty_stg__redemption_codes": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__redemption_codes", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "amount_used_cents": {"type": "long", "index": 2, "name": "amount_used_cents", "comment": null}, "code": {"type": "string", "index": 3, "name": "code", "comment": null}, "id": {"type": "long", "index": 4, "name": "id", "comment": null}, "merchant_id": {"type": "long", "index": 5, "name": "merchant_id", "comment": null}, "point_redemption_id": {"type": "long", "index": 6, "name": "point_redemption_id", "comment": null}, "redemption_option_id": {"type": "long", "index": 7, "name": "redemption_option_id", "comment": null}, "third_party_id": {"type": "string", "index": 8, "name": "third_party_id", "comment": null}, "third_party_rule_id": {"type": "string", "index": 9, "name": "third_party_rule_id", "comment": null}, "used": {"type": "boolean", "index": 10, "name": "used", "comment": null}, "uses": {"type": "long", "index": 11, "name": "uses", "comment": null}, "recharge_third_party_id": {"type": "string", "index": 12, "name": "recharge_third_party_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.loyalty_stg__redemption_codes"}, "model.yoda.loyalty_stg__redemption_options": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__redemption_options", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "amount": {"type": "long", "index": 2, "name": "amount", "comment": null}, "applies_once": {"type": "boolean", "index": 3, "name": "applies_once", "comment": null}, "applies_to_any_or_all_attributes": {"type": "string", "index": 4, "name": "applies_to_any_or_all_attributes", "comment": null}, "applies_to_id": {"type": "string", "index": 5, "name": "applies_to_id", "comment": null}, "applies_to_product_type": {"type": "string", "index": 6, "name": "applies_to_product_type", "comment": null}, "applies_to_resource": {"type": "string", "index": 7, "name": "applies_to_resource", "comment": null}, "automatically_apply": {"type": "boolean", "index": 8, "name": "automatically_apply", "comment": null}, "charset": {"type": "string", "index": 9, "name": "charset", "comment": null}, "code_length": {"type": "long", "index": 10, "name": "code_length", "comment": null}, "cost_text": {"type": "string", "index": 11, "name": "cost_text", "comment": null}, "coupon_cancellation_url": {"type": "string", "index": 12, "name": "coupon_cancellation_url", "comment": null}, "coupons_pool_amount": {"type": "long", "index": 13, "name": "coupons_pool_amount", "comment": null}, "currency": {"type": "string", "index": 14, "name": "currency", "comment": null}, "deleted": {"type": "boolean", "index": 15, "name": "deleted", "comment": null}, "description": {"type": "string", "index": 16, "name": "description", "comment": null}, "discount_amount_cents": {"type": "long", "index": 17, "name": "discount_amount_cents", "comment": null}, "discount_percentage": {"type": "long", "index": 18, "name": "discount_percentage", "comment": null}, "discount_rate_cents": {"type": "long", "index": 19, "name": "discount_rate_cents", "comment": null}, "discount_type": {"type": "string", "index": 20, "name": "discount_type", "comment": null}, "display_in_admin": {"type": "long", "index": 21, "name": "display_in_admin", "comment": null}, "display_in_popup": {"type": "boolean", "index": 22, "name": "display_in_popup", "comment": null}, "display_order": {"type": "long", "index": 23, "name": "display_order", "comment": null}, "duration": {"type": "string", "index": 24, "name": "duration", "comment": null}, "expires_after": {"type": "string", "index": 25, "name": "expires_after", "comment": null}, "free_product_cost_cents": {"type": "long", "index": 26, "name": "free_product_cost_cents", "comment": null}, "free_shipping_less_than_cents": {"type": "long", "index": 27, "name": "free_shipping_less_than_cents", "comment": null}, "generic_url": {"type": "string", "index": 28, "name": "generic_url", "comment": null}, "icon": {"type": "string", "index": 29, "name": "icon", "comment": null}, "id": {"type": "long", "index": 30, "name": "id", "comment": null}, "image": {"type": "string", "index": 31, "name": "image", "comment": null}, "is_offline": {"type": "boolean", "index": 32, "name": "is_offline", "comment": null}, "is_pos": {"type": "boolean", "index": 33, "name": "is_pos", "comment": null}, "merchant_id": {"type": "long", "index": 34, "name": "merchant_id", "comment": null}, "name": {"type": "string", "index": 35, "name": "name", "comment": null}, "once_per_customer": {"type": "boolean", "index": 36, "name": "once_per_customer", "comment": null}, "prefix": {"type": "string", "index": 37, "name": "prefix", "comment": null}, "quantity": {"type": "long", "index": 38, "name": "quantity", "comment": null}, "restrict_to_redeeming_customer": {"type": "boolean", "index": 39, "name": "restrict_to_redeeming_customer", "comment": null}, "reward_intro": {"type": "string", "index": 40, "name": "reward_intro", "comment": null}, "secret": {"type": "string", "index": 41, "name": "secret", "comment": null}, "show_online": {"type": "boolean", "index": 42, "name": "show_online", "comment": null}, "single_use": {"type": "boolean", "index": 43, "name": "single_use", "comment": null}, "skip_platform_create": {"type": "boolean", "index": 44, "name": "skip_platform_create", "comment": null}, "title": {"type": "string", "index": 45, "name": "title", "comment": null}, "type": {"type": "string", "index": 46, "name": "type", "comment": null}, "usage_limit": {"type": "long", "index": 47, "name": "usage_limit", "comment": null}, "value_cents": {"type": "long", "index": 48, "name": "value_cents", "comment": null}, "third_party_id": {"type": "string", "index": 49, "name": "third_party_id", "comment": null}, "background_image_id": {"type": "long", "index": 50, "name": "background_image_id", "comment": null}, "saved_search_ids": {"type": "string", "index": 51, "name": "saved_search_ids", "comment": null}, "applies_to_attributes": {"type": "string", "index": 52, "name": "applies_to_attributes", "comment": null}, "applies_to_values": {"type": "string", "index": 53, "name": "applies_to_values", "comment": null}, "cart_greater_than_cents": {"type": "long", "index": 54, "name": "cart_greater_than_cents", "comment": null}, "customer_ids": {"type": "string", "index": 55, "name": "customer_ids", "comment": null}, "custom_coupon_cost_cents": {"type": "long", "index": 56, "name": "custom_coupon_cost_cents", "comment": null}, "product_ids": {"type": "string", "index": 57, "name": "product_ids", "comment": null}, "variant_ids": {"type": "string", "index": 58, "name": "variant_ids", "comment": null}, "collection_ids": {"type": "string", "index": 59, "name": "collection_ids", "comment": null}, "segment_ids": {"type": "string", "index": 60, "name": "segment_ids", "comment": null}, "redemption_codes_webhook_threshold": {"type": "long", "index": 61, "name": "redemption_codes_webhook_threshold", "comment": null}, "min_amount": {"type": "long", "index": 62, "name": "min_amount", "comment": null}, "group_ids": {"type": "string", "index": 63, "name": "group_ids", "comment": null}}, "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.yoda.loyalty_stg__redemption_options"}, "model.yoda.loyalty_stg__refunds": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__refunds", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "amount_cents_in_shopper_currency": {"type": "long", "index": 2, "name": "amount_cents_in_shopper_currency", "comment": null}, "amount_cents": {"type": "long", "index": 3, "name": "amount_cents", "comment": null}, "currency": {"type": "string", "index": 4, "name": "currency", "comment": null}, "gift_card_amount": {"type": "double", "index": 5, "name": "gift_card_amount", "comment": null}, "gift_card_cents": {"type": "long", "index": 6, "name": "gift_card_cents", "comment": null}, "id": {"type": "long", "index": 7, "name": "id", "comment": null}, "purchase_id": {"type": "long", "index": 8, "name": "purchase_id", "comment": null}, "refund_id": {"type": "string", "index": 9, "name": "refund_id", "comment": null}, "swell_gift_card_amount": {"type": "double", "index": 10, "name": "swell_gift_card_amount", "comment": null}, "swell_gift_card_cents": {"type": "long", "index": 11, "name": "swell_gift_card_cents", "comment": null}, "total_amount": {"type": "double", "index": 12, "name": "total_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.loyalty_stg__refunds"}, "model.yoda.loyalty_stg__subscriptions": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__subscriptions", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "base_price_cents": {"type": "long", "index": 2, "name": "base_price_cents", "comment": null}, "billing_provider": {"type": "string", "index": 3, "name": "billing_provider", "comment": null}, "current": {"type": "boolean", "index": 4, "name": "current", "comment": null}, "id": {"type": "long", "index": 5, "name": "id", "comment": null}, "included_orders": {"type": "long", "index": 6, "name": "included_orders", "comment": null}, "last_usage_charge_at": {"type": "timestamp", "index": 7, "name": "last_usage_charge_at", "comment": null}, "merchant_id": {"type": "long", "index": 8, "name": "merchant_id", "comment": null}, "overdue": {"type": "boolean", "index": 9, "name": "overdue", "comment": null}, "pending": {"type": "boolean", "index": 10, "name": "pending", "comment": null}, "per_order_price_cents": {"type": "long", "index": 11, "name": "per_order_price_cents", "comment": null}, "percentage_of_redemptions": {"type": "long", "index": 12, "name": "percentage_of_redemptions", "comment": null}, "percentage_of_referrals": {"type": "long", "index": 13, "name": "percentage_of_referrals", "comment": null}, "plan_id": {"type": "long", "index": 14, "name": "plan_id", "comment": null}, "was_current": {"type": "boolean", "index": 15, "name": "was_current", "comment": null}, "charge_status": {"type": "string", "index": 16, "name": "charge_status", "comment": null}, "recurring_charge_id": {"type": "string", "index": 17, "name": "recurring_charge_id", "comment": null}, "manual_price_cents": {"type": "long", "index": 18, "name": "manual_price_cents", "comment": null}}, "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.yoda.loyalty_stg__subscriptions"}, "model.yoda.loyalty_stg__swell_vip_tiers_settings": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__swell_vip_tiers_settings", "database": null, "comment": null, "owner": "root"}, "columns": {"merchant_id": {"type": "long", "index": 0, "name": "merchant_id", "comment": null}, "type": {"type": "string", "index": 1, "name": "type", "comment": null}, "last_enabled_type": {"type": "string", "index": 2, "name": "last_enabled_type", "comment": null}, "entry_fulfillment_timeframe": {"type": "long", "index": 3, "name": "entry_fulfillment_timeframe", "comment": null}, "custom_start_date": {"type": "timestamp", "index": 4, "name": "custom_start_date", "comment": null}, "is_vip_enabled": {"type": "integer", "index": 5, "name": "is_vip_enabled", "comment": null}, "dropping_policy": {"type": "long", "index": 6, "name": "dropping_policy", "comment": null}, "sync_to_platform": {"type": "boolean", "index": 7, "name": "sync_to_platform", "comment": null}, "delay_purchase_eligibility_enabled": {"type": "boolean", "index": 8, "name": "delay_purchase_eligibility_enabled", "comment": null}, "delay_purchase_eligibility_days": {"type": "long", "index": 9, "name": "delay_purchase_eligibility_days", "comment": null}, "include_actions_pre_opt_in": {"type": "boolean", "index": 10, "name": "include_actions_pre_opt_in", "comment": null}, "created_at": {"type": "timestamp", "index": 11, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 12, "name": "updated_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.yoda.loyalty_stg__swell_vip_tiers_settings"}, "model.yoda.loyalty_stg__uninstall_loyalty": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__uninstall_loyalty", "database": null, "comment": null, "owner": "root"}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 2, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 3, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 4, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 5, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 6, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 7, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 8, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 9, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 10, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 11, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 12, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 13, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 14, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 15, "name": "is_desktop", "comment": null}, "violated_event": {"type": "boolean", "index": 16, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 17, "name": "event_name", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 18, "name": "rrmonthlylimit", "comment": null}, "accountid": {"type": "long", "index": 19, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 20, "name": "adminname", "comment": null}, "appkey": {"type": "string", "index": 21, "name": "appkey", "comment": null}, "company_name": {"type": "string", "index": 22, "name": "company_name", "comment": null}, "createdat": {"type": "string", "index": 23, "name": "createdat", "comment": null}, "currentplan": {"type": "string", "index": 24, "name": "currentplan", "comment": null}, "email": {"type": "string", "index": 25, "name": "email", "comment": null}, "groupid": {"type": "string", "index": 26, "name": "groupid", "comment": null}, "initialbucketnumoforders": {"type": "string", "index": 27, "name": "initialbucketnumoforders", "comment": null}, "initialnumoforders": {"type": "long", "index": 28, "name": "initialnumoforders", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 29, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 30, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 31, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 32, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 33, "name": "isusingpackagesservice", "comment": null}, "last30daysbucketorder": {"type": "string", "index": 34, "name": "last30daysbucketorder", "comment": null}, "last30daysorder": {"type": "long", "index": 35, "name": "last30daysorder", "comment": null}, "loyaltyemail": {"type": "string", "index": 36, "name": "loyaltyemail", "comment": null}, "loyaltypackage": {"type": "string", "index": 37, "name": "loyaltypackage", "comment": null}, "merchant_id": {"type": "long", "index": 38, "name": "merchant_id", "comment": null}, "name": {"type": "string", "index": 39, "name": "name", "comment": null}, "owner": {"type": "string", "index": 40, "name": "owner", "comment": null}, "packagecategories": {"type": "string", "index": 41, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 42, "name": "package", "comment": null}, "planname": {"type": "string", "index": 43, "name": "planname", "comment": null}, "platform_plan": {"type": "string", "index": 44, "name": "platform_plan", "comment": null}, "platform": {"type": "string", "index": 45, "name": "platform", "comment": null}, "product": {"type": "string", "index": 46, "name": "product", "comment": null}, "role": {"type": "string", "index": 47, "name": "role", "comment": null}, "signupcountry": {"type": "string", "index": 48, "name": "signupcountry", "comment": null}, "signuputmcampaign": {"type": "string", "index": 49, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 50, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 51, "name": "signuputmsource", "comment": null}, "storecount": {"type": "long", "index": 52, "name": "storecount", "comment": null}, "storedomain": {"type": "string", "index": 53, "name": "storedomain", "comment": null}, "traits_email": {"type": "string", "index": 54, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 55, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 56, "name": "traits_plan", "comment": null}, "userid": {"type": "long", "index": 57, "name": "userid", "comment": null}, "website": {"type": "string", "index": 58, "name": "website", "comment": null}, "yotpoip": {"type": "string", "index": 59, "name": "yotpoip", "comment": null}, "pendingrrs": {"type": "long", "index": 60, "name": "pendingrrs", "comment": null}, "phone": {"type": "string", "index": 61, "name": "phone", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 62, "name": "signupmonthlyorderscount", "comment": null}, "signupphone": {"type": "string", "index": 63, "name": "signupphone", "comment": null}, "billingproviders": {"type": "array", "index": 64, "name": "billingproviders", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 65, "name": "isinvalidfacebooktoken", "comment": null}, "lastconversionordertime": {"type": "string", "index": 66, "name": "lastconversionordertime", "comment": null}, "packageextensions": {"type": "string", "index": 67, "name": "packageextensions", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 68, "name": "daysinvalidfacebooktoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 69, "name": "isinvalidfacebooktokendate", "comment": null}, "chargeid": {"type": "long", "index": 70, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 71, "name": "chargeprice", "comment": null}, "subscriptionstate": {"type": "string", "index": 72, "name": "subscriptionstate", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 73, "name": "isinvalidtwittertoken", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 74, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 75, "name": "isinvalidtwittertokendate", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 76, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 77, "name": "isinvalidpinteresttokendate", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 78, "name": "isinvalidpinteresttoken", "comment": null}}, "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.yoda.loyalty_stg__uninstall_loyalty"}, "model.yoda.loyalty_stg__user_actions": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__user_actions", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "applied_to_campaigns": {"type": "boolean", "index": 2, "name": "applied_to_campaigns", "comment": null}, "campaign_id": {"type": "long", "index": 3, "name": "campaign_id", "comment": null}, "customer_id": {"type": "long", "index": 4, "name": "customer_id", "comment": null}, "email": {"type": "string", "index": 5, "name": "email", "comment": null}, "has_swell_user": {"type": "boolean", "index": 6, "name": "has_swell_user", "comment": null}, "history_title": {"type": "string", "index": 7, "name": "history_title", "comment": null}, "id": {"type": "long", "index": 8, "name": "id", "comment": null}, "ip_address": {"type": "string", "index": 9, "name": "ip_address", "comment": null}, "merchant_id": {"type": "long", "index": 10, "name": "merchant_id", "comment": null}, "metadata": {"type": "string", "index": 11, "name": "metadata", "comment": null}, "name": {"type": "string", "index": 12, "name": "name", "comment": null}, "parent_perk_id": {"type": "long", "index": 13, "name": "parent_perk_id", "comment": null}, "referral_id": {"type": "long", "index": 14, "name": "referral_id", "comment": null}, "reward_points": {"type": "long", "index": 15, "name": "reward_points", "comment": null}, "synced_to_analytics": {"type": "boolean", "index": 16, "name": "synced_to_analytics", "comment": null}, "third_party_id": {"type": "string", "index": 17, "name": "third_party_id", "comment": null}, "type": {"type": "string", "index": 18, "name": "type", "comment": null}, "user_agent_id": {"type": "long", "index": 19, "name": "user_agent_id", "comment": null}, "user_id": {"type": "long", "index": 20, "name": "user_id", "comment": null}, "action_creation_time": {"type": "timestamp", "index": 21, "name": "action_creation_time", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.loyalty_stg__user_actions"}, "model.yoda.loyalty_stg__user_agents": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__user_agents", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "id": {"type": "long", "index": 2, "name": "id", "comment": null}, "user_agent_hash": {"type": "string", "index": 3, "name": "user_agent_hash", "comment": null}, "user_agent": {"type": "string", "index": 4, "name": "user_agent", "comment": null}}, "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.yoda.loyalty_stg__user_agents"}, "model.yoda.loyalty_stg__yotpo_platform_accounts": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "loyalty_stg__yotpo_platform_accounts", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "app_key": {"type": "string", "index": 2, "name": "app_key", "comment": null}, "app_secret": {"type": "string", "index": 3, "name": "app_secret", "comment": null}, "id": {"type": "long", "index": 4, "name": "id", "comment": null}, "merchant_id": {"type": "long", "index": 5, "name": "merchant_id", "comment": null}, "org_key": {"type": "string", "index": 6, "name": "org_key", "comment": null}}, "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.yoda.loyalty_stg__yotpo_platform_accounts"}, "model.yoda.platform_stg__account_platforms": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__account_platforms", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "account_id": {"type": "long", "index": 4, "name": "account_id", "comment": null}, "shop_token": {"type": "string", "index": 5, "name": "shop_token", "comment": null}, "shop_domain": {"type": "string", "index": 6, "name": "shop_domain", "comment": null}, "plan_name": {"type": "string", "index": 7, "name": "plan_name", "comment": null}, "platform_type_id": {"type": "long", "index": 8, "name": "platform_type_id", "comment": null}, "deleted": {"type": "long", "index": 9, "name": "deleted", "comment": null}, "shop_user_name": {"type": "string", "index": 10, "name": "shop_user_name", "comment": null}, "created_at": {"type": "timestamp", "index": 11, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 12, "name": "updated_at", "comment": null}, "valid_credentials": {"type": "long", "index": 13, "name": "valid_credentials", "comment": null}, "secondary_recurring_charge_id": {"type": "string", "index": 14, "name": "secondary_recurring_charge_id", "comment": null}, "secondary_activated_charge_at": {"type": "timestamp", "index": 15, "name": "secondary_activated_charge_at", "comment": null}, "secondary_cancelled_charge_at": {"type": "timestamp", "index": 16, "name": "secondary_cancelled_charge_at", "comment": null}, "encrypted_data": {"type": "string", "index": 17, "name": "encrypted_data", "comment": null}, "failed_attempts": {"type": "long", "index": 18, "name": "failed_attempts", "comment": null}, "shop_currency": {"type": "string", "index": 19, "name": "shop_currency", "comment": null}, "external_shop_domain": {"type": "string", "index": 20, "name": "external_shop_domain", "comment": null}, "external_account_id": {"type": "string", "index": 21, "name": "external_account_id", "comment": null}, "version": {"type": "string", "index": 22, "name": "version", "comment": null}, "plugin_version": {"type": "string", "index": 23, "name": "plugin_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.platform_stg__account_platforms"}, "model.yoda.platform_stg__accounts": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__accounts", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "domain": {"type": "string", "index": 2, "name": "domain", "comment": null}, "minisite_subdomain": {"type": "string", "index": 3, "name": "minisite_subdomain", "comment": null}, "minisite_cname": {"type": "string", "index": 4, "name": "minisite_cname", "comment": null}, "minisite_website": {"type": "string", "index": 5, "name": "minisite_website", "comment": null}, "minisite_website_name": {"type": "string", "index": 6, "name": "minisite_website_name", "comment": null}, "referal": {"type": "string", "index": 7, "name": "referal", "comment": null}, "is_active": {"type": "long", "index": 8, "name": "is_active", "comment": null}, "is_auto_publish": {"type": "long", "index": 9, "name": "is_auto_publish", "comment": null}, "minisite_subdomain_active": {"type": "long", "index": 10, "name": "minisite_subdomain_active", "comment": null}, "account_type_id": {"type": "long", "index": 11, "name": "account_type_id", "comment": null}, "created_at": {"type": "timestamp", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 13, "name": "updated_at", "comment": null}, "custom_design": {"type": "long", "index": 14, "name": "custom_design", "comment": null}, "auto_login_popup": {"type": "long", "index": 15, "name": "auto_login_popup", "comment": null}, "partner_key": {"type": "string", "index": 16, "name": "partner_key", "comment": null}, "name": {"type": "string", "index": 17, "name": "name", "comment": null}, "url": {"type": "string", "index": 18, "name": "url", "comment": null}, "support_url": {"type": "string", "index": 19, "name": "support_url", "comment": null}, "callback_url": {"type": "string", "index": 20, "name": "callback_url", "comment": null}, "secret": {"type": "string", "index": 21, "name": "secret", "comment": null}, "customer_language": {"type": "string", "index": 22, "name": "customer_language", "comment": null}, "bottom_line_installed": {"type": "long", "index": 23, "name": "bottom_line_installed", "comment": null}, "install_step": {"type": "string", "index": 24, "name": "install_step", "comment": null}, "auto_social_push": {"type": "long", "index": 25, "name": "auto_social_push", "comment": null}, "customer_mails_sender_name": {"type": "string", "index": 26, "name": "customer_mails_sender_name", "comment": null}, "slug": {"type": "string", "index": 27, "name": "slug", "comment": null}, "reviews_me_account_name": {"type": "string", "index": 28, "name": "reviews_me_account_name", "comment": null}, "reviews_me_account_description": {"type": "string", "index": 29, "name": "reviews_me_account_description", "comment": null}, "reviews_me_crawlable": {"type": "long", "index": 30, "name": "reviews_me_crawlable", "comment": null}, "coupons_expiration_date": {"type": "timestamp", "index": 31, "name": "coupons_expiration_date", "comment": null}, "map_up_sell_title": {"type": "string", "index": 32, "name": "map_up_sell_title", "comment": null}, "custom_platform_name": {"type": "string", "index": 33, "name": "custom_platform_name", "comment": null}, "category_id": {"type": "long", "index": 34, "name": "category_id", "comment": null}, "organization_id": {"type": "long", "index": 35, "name": "organization_id", "comment": null}, "is_test": {"type": "long", "index": 36, "name": "is_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.yoda.platform_stg__accounts"}, "model.yoda.platform_stg__apps": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__apps", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_at", "comment": null}, "account_id": {"type": "long", "index": 7, "name": "account_id", "comment": null}, "moderator_role_id": {"type": "long", "index": 8, "name": "moderator_role_id", "comment": null}, "disabled": {"type": "long", "index": 9, "name": "disabled", "comment": null}}, "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.yoda.platform_stg__apps"}, "model.yoda.platform_stg__attribute_sets": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__attribute_sets", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "attributable_type": {"type": "string", "index": 4, "name": "attributable_type", "comment": null}, "attributable_id": {"type": "long", "index": 5, "name": "attributable_id", "comment": null}, "mpn": {"type": "string", "index": 6, "name": "mpn", "comment": null}, "brand": {"type": "string", "index": 7, "name": "brand", "comment": null}, "sku": {"type": "string", "index": 8, "name": "sku", "comment": null}, "external_sku": {"type": "string", "index": 9, "name": "external_sku", "comment": null}, "created_at": {"type": "timestamp", "index": 10, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_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.yoda.platform_stg__attribute_sets"}, "model.yoda.platform_stg__categories": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__categories", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "allow_multiple_packages": {"type": "long", "index": 5, "name": "allow_multiple_packages", "comment": null}}, "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.yoda.platform_stg__categories"}, "model.yoda.platform_stg__currency_rates": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__currency_rates", "database": null, "comment": null, "owner": "root"}, "columns": {"base": {"type": "string", "index": 0, "name": "base", "comment": null}, "day_of_currency_exchange": {"type": "string", "index": 1, "name": "day_of_currency_exchange", "comment": null}, "date": {"type": "string", "index": 2, "name": "date", "comment": null}, "country": {"type": "string", "index": 3, "name": "country", "comment": null}, "currency": {"type": "double", "index": 4, "name": "currency", "comment": null}}, "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.yoda.platform_stg__currency_rates"}, "model.yoda.platform_stg__custom_attributes": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__custom_attributes", "database": null, "comment": null, "owner": "root"}, "columns": {"partitioning_time": {"type": "date", "index": 0, "name": "partitioning_time", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 2, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 3, "name": "processing_time", "comment": null}, "attributable_id": {"type": "long", "index": 4, "name": "attributable_id", "comment": null}, "attributable_type": {"type": "string", "index": 5, "name": "attributable_type", "comment": null}, "boolean_value": {"type": "long", "index": 6, "name": "boolean_value", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "key": {"type": "string", "index": 8, "name": "key", "comment": null}, "namespace": {"type": "string", "index": 9, "name": "namespace", "comment": null}, "string_value": {"type": "string", "index": 10, "name": "string_value", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_at", "comment": null}, "value_type": {"type": "string", "index": 12, "name": "value_type", "comment": null}, "ts_ms": {"type": "timestamp", "index": 13, "name": "ts_ms", "comment": null}}, "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.yoda.platform_stg__custom_attributes"}, "model.yoda.platform_stg__dim_calendar": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__dim_calendar", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "integer", "index": 0, "name": "id", "comment": null}, "date": {"type": "date", "index": 1, "name": "date", "comment": null}, "year": {"type": "integer", "index": 2, "name": "year", "comment": null}, "month": {"type": "integer", "index": 3, "name": "month", "comment": null}, "day": {"type": "integer", "index": 4, "name": "day", "comment": null}, "quarter": {"type": "integer", "index": 5, "name": "quarter", "comment": null}, "week": {"type": "integer", "index": 6, "name": "week", "comment": null}, "day_name": {"type": "string", "index": 7, "name": "day_name", "comment": null}, "month_name": {"type": "string", "index": 8, "name": "month_name", "comment": null}, "holiday_flag": {"type": "boolean", "index": 9, "name": "holiday_flag", "comment": null}, "weekend_flag": {"type": "boolean", "index": 10, "name": "weekend_flag", "comment": null}}, "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.yoda.platform_stg__dim_calendar"}, "model.yoda.platform_stg__features": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__features", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 2, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 3, "name": "name", "comment": null}, "description": {"type": "string", "index": 4, "name": "description", "comment": null}, "owner_type": {"type": "string", "index": 5, "name": "owner_type", "comment": null}, "default_user_enabled": {"type": "long", "index": 6, "name": "default_user_enabled", "comment": null}, "new": {"type": "long", "index": 7, "name": "new", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "feature_key": {"type": "string", "index": 10, "name": "feature_key", "comment": null}}, "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.yoda.platform_stg__features"}, "model.yoda.platform_stg__fulfillments": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__fulfillments", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "external_id": {"type": "string", "index": 1, "name": "external_id", "comment": null}, "order_id": {"type": "long", "index": 2, "name": "order_id", "comment": null}, "fulfillment_at": {"type": "timestamp", "index": 3, "name": "fulfillment_at", "comment": null}, "fulfillment_date": {"type": "date", "index": 4, "name": "fulfillment_date", "comment": null}, "fulfillment_status_type_id": {"type": "long", "index": 5, "name": "fulfillment_status_type_id", "comment": null}, "shipment_status_type_id": {"type": "long", "index": 6, "name": "shipment_status_type_id", "comment": null}, "tracking_company": {"type": "string", "index": 7, "name": "tracking_company", "comment": null}, "tracking_url": {"type": "string", "index": 8, "name": "tracking_url", "comment": null}, "tracking_number": {"type": "string", "index": 9, "name": "tracking_number", "comment": null}, "created_at": {"type": "timestamp", "index": 10, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_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.yoda.platform_stg__fulfillments"}, "model.yoda.platform_stg__gtins": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__gtins", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "gtinable_type": {"type": "string", "index": 4, "name": "gtinable_type", "comment": null}, "gtinable_id": {"type": "long", "index": 5, "name": "gtinable_id", "comment": null}, "declared_type": {"type": "string", "index": 6, "name": "declared_type", "comment": null}, "detected_type": {"type": "string", "index": 7, "name": "detected_type", "comment": null}, "value": {"type": "string", "index": 8, "name": "value", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_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.yoda.platform_stg__gtins"}, "model.yoda.platform_stg__onsite_v2": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__onsite_v2", "database": null, "comment": null, "owner": "root"}, "columns": {"partition_date": {"type": "string", "index": 0, "name": "partition_date", "comment": null}, "hour": {"type": "string", "index": 1, "name": "hour", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "br_colordepth": {"type": "string", "index": 3, "name": "br_colordepth", "comment": null}, "br_cookies": {"type": "long", "index": 4, "name": "br_cookies", "comment": null}, "br_family": {"type": "string", "index": 5, "name": "br_family", "comment": null}, "br_features_director": {"type": "long", "index": 6, "name": "br_features_director", "comment": null}, "br_features_flash": {"type": "long", "index": 7, "name": "br_features_flash", "comment": null}, "br_features_gears": {"type": "long", "index": 8, "name": "br_features_gears", "comment": null}, "br_features_java": {"type": "long", "index": 9, "name": "br_features_java", "comment": null}, "br_features_pdf": {"type": "long", "index": 10, "name": "br_features_pdf", "comment": null}, "br_features_quicktime": {"type": "long", "index": 11, "name": "br_features_quicktime", "comment": null}, "br_features_realplayer": {"type": "long", "index": 12, "name": "br_features_realplayer", "comment": null}, "br_features_silverlight": {"type": "long", "index": 13, "name": "br_features_silverlight", "comment": null}, "br_features_windowsmedia": {"type": "long", "index": 14, "name": "br_features_windowsmedia", "comment": null}, "br_lang": {"type": "string", "index": 15, "name": "br_lang", "comment": null}, "br_major": {"type": "string", "index": 16, "name": "br_major", "comment": null}, "br_minor": {"type": "string", "index": 17, "name": "br_minor", "comment": null}, "br_viewheight": {"type": "long", "index": 18, "name": "br_viewheight", "comment": null}, "br_viewwidth": {"type": "long", "index": 19, "name": "br_viewwidth", "comment": null}, "collector_day": {"type": "string", "index": 20, "name": "collector_day", "comment": null}, "collector_epoch": {"type": "long", "index": 21, "name": "collector_epoch", "comment": null}, "collector_month": {"type": "string", "index": 22, "name": "collector_month", "comment": null}, "collector_tstamp": {"type": "string", "index": 23, "name": "collector_tstamp", "comment": null}, "collector_year": {"type": "string", "index": 24, "name": "collector_year", "comment": null}, "context": {"type": "string", "index": 25, "name": "context", "comment": null}, "device_family": {"type": "string", "index": 26, "name": "device_family", "comment": null}, "doc_charset": {"type": "string", "index": 27, "name": "doc_charset", "comment": null}, "doc_height": {"type": "long", "index": 28, "name": "doc_height", "comment": null}, "doc_width": {"type": "long", "index": 29, "name": "doc_width", "comment": null}, "domain_sessionidx": {"type": "long", "index": 30, "name": "domain_sessionidx", "comment": null}, "domain_userid": {"type": "string", "index": 31, "name": "domain_userid", "comment": null}, "dvce_screenheight": {"type": "long", "index": 32, "name": "dvce_screenheight", "comment": null}, "dvce_screenwidth": {"type": "long", "index": 33, "name": "dvce_screenwidth", "comment": null}, "dvce_tstamp": {"type": "string", "index": 34, "name": "dvce_tstamp", "comment": null}, "event_id": {"type": "string", "index": 35, "name": "event_id", "comment": null}, "event_vendor": {"type": "string", "index": 36, "name": "event_vendor", "comment": null}, "event": {"type": "string", "index": 37, "name": "event", "comment": null}, "geo_city": {"type": "string", "index": 38, "name": "geo_city", "comment": null}, "geo_country": {"type": "string", "index": 39, "name": "geo_country", "comment": null}, "geo_latitude": {"type": "double", "index": 40, "name": "geo_latitude", "comment": null}, "geo_longitude": {"type": "double", "index": 41, "name": "geo_longitude", "comment": null}, "geo_region": {"type": "string", "index": 42, "name": "geo_region", "comment": null}, "geo_zipcode": {"type": "string", "index": 43, "name": "geo_zipcode", "comment": null}, "mkt_campaign": {"type": "string", "index": 44, "name": "mkt_campaign", "comment": null}, "mkt_content": {"type": "string", "index": 45, "name": "mkt_content", "comment": null}, "mkt_medium": {"type": "string", "index": 46, "name": "mkt_medium", "comment": null}, "mkt_source": {"type": "string", "index": 47, "name": "mkt_source", "comment": null}, "mkt_term": {"type": "string", "index": 48, "name": "mkt_term", "comment": null}, "os_family": {"type": "string", "index": 49, "name": "os_family", "comment": null}, "os_major": {"type": "string", "index": 50, "name": "os_major", "comment": null}, "os_minor": {"type": "string", "index": 51, "name": "os_minor", "comment": null}, "os_timezone": {"type": "string", "index": 52, "name": "os_timezone", "comment": null}, "page_referrer": {"type": "string", "index": 53, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 54, "name": "page_title", "comment": null}, "page_urlfragment": {"type": "string", "index": 55, "name": "page_urlfragment", "comment": null}, "page_urlhost": {"type": "string", "index": 56, "name": "page_urlhost", "comment": null}, "page_urlpath": {"type": "string", "index": 57, "name": "page_urlpath", "comment": null}, "page_urlport": {"type": "long", "index": 58, "name": "page_urlport", "comment": null}, "page_urlquery": {"type": "string", "index": 59, "name": "page_urlquery", "comment": null}, "page_url": {"type": "string", "index": 60, "name": "page_url", "comment": null}, "page_urlscheme": {"type": "string", "index": 61, "name": "page_urlscheme", "comment": null}, "platform": {"type": "string", "index": 62, "name": "platform", "comment": null}, "pp_xoffset_max": {"type": "long", "index": 63, "name": "pp_xoffset_max", "comment": null}, "pp_xoffset_min": {"type": "long", "index": 64, "name": "pp_xoffset_min", "comment": null}, "pp_yoffset_max": {"type": "long", "index": 65, "name": "pp_yoffset_max", "comment": null}, "pp_yoffset_min": {"type": "long", "index": 66, "name": "pp_yoffset_min", "comment": null}, "refr_medium": {"type": "string", "index": 67, "name": "refr_medium", "comment": null}, "refr_source": {"type": "string", "index": 68, "name": "refr_source", "comment": null}, "refr_term": {"type": "string", "index": 69, "name": "refr_term", "comment": null}, "refr_urlfragment": {"type": "string", "index": 70, "name": "refr_urlfragment", "comment": null}, "refr_urlhost": {"type": "string", "index": 71, "name": "refr_urlhost", "comment": null}, "refr_urlpath": {"type": "string", "index": 72, "name": "refr_urlpath", "comment": null}, "refr_urlport": {"type": "long", "index": 73, "name": "refr_urlport", "comment": null}, "refr_urlquery": {"type": "string", "index": 74, "name": "refr_urlquery", "comment": null}, "refr_urlscheme": {"type": "string", "index": 75, "name": "refr_urlscheme", "comment": null}, "se_action": {"type": "string", "index": 76, "name": "se_action", "comment": null}, "se_category": {"type": "string", "index": 77, "name": "se_category", "comment": null}, "se_label": {"type": "string", "index": 78, "name": "se_label", "comment": null}, "se_page_sku": {"type": "string", "index": 79, "name": "se_page_sku", "comment": null}, "se_property": {"type": "string", "index": 80, "name": "se_property", "comment": null}, "se_testing_groups": {"type": "string", "index": 81, "name": "se_testing_groups", "comment": null}, "se_value": {"type": "string", "index": 82, "name": "se_value", "comment": null}, "tr_currency": {"type": "string", "index": 83, "name": "tr_currency", "comment": null}, "tr_orderid": {"type": "string", "index": 84, "name": "tr_orderid", "comment": null}, "tr_total": {"type": "string", "index": 85, "name": "tr_total", "comment": null}, "txn_id": {"type": "string", "index": 86, "name": "txn_id", "comment": null}, "user_fingerprint": {"type": "string", "index": 87, "name": "user_fingerprint", "comment": null}, "useragent": {"type": "string", "index": 88, "name": "useragent", "comment": null}, "v_collector": {"type": "string", "index": 89, "name": "v_collector", "comment": null}, "v_etl": {"type": "string", "index": 90, "name": "v_etl", "comment": null}, "v_tracker": {"type": "string", "index": 91, "name": "v_tracker", "comment": null}, "y_fingerprint": {"type": "string", "index": 92, "name": "y_fingerprint", "comment": null}, "user_id": {"type": "string", "index": 93, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.platform_stg__onsite_v2"}, "model.yoda.platform_stg__onsite_v3": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__onsite_v3", "database": null, "comment": null, "owner": "root"}, "columns": {"partition_date": {"type": "string", "index": 0, "name": "partition_date", "comment": null}, "hour": {"type": "string", "index": 1, "name": "hour", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "br_colordepth": {"type": "string", "index": 3, "name": "br_colordepth", "comment": null}, "br_cookies": {"type": "long", "index": 4, "name": "br_cookies", "comment": null}, "br_family": {"type": "string", "index": 5, "name": "br_family", "comment": null}, "br_features_director": {"type": "long", "index": 6, "name": "br_features_director", "comment": null}, "br_features_flash": {"type": "long", "index": 7, "name": "br_features_flash", "comment": null}, "br_features_gears": {"type": "long", "index": 8, "name": "br_features_gears", "comment": null}, "br_features_java": {"type": "long", "index": 9, "name": "br_features_java", "comment": null}, "br_features_pdf": {"type": "long", "index": 10, "name": "br_features_pdf", "comment": null}, "br_features_quicktime": {"type": "long", "index": 11, "name": "br_features_quicktime", "comment": null}, "br_features_realplayer": {"type": "long", "index": 12, "name": "br_features_realplayer", "comment": null}, "br_features_silverlight": {"type": "long", "index": 13, "name": "br_features_silverlight", "comment": null}, "br_features_windowsmedia": {"type": "long", "index": 14, "name": "br_features_windowsmedia", "comment": null}, "br_lang": {"type": "string", "index": 15, "name": "br_lang", "comment": null}, "br_major": {"type": "string", "index": 16, "name": "br_major", "comment": null}, "br_minor": {"type": "string", "index": 17, "name": "br_minor", "comment": null}, "br_viewheight": {"type": "long", "index": 18, "name": "br_viewheight", "comment": null}, "br_viewwidth": {"type": "long", "index": 19, "name": "br_viewwidth", "comment": null}, "collector_day": {"type": "string", "index": 20, "name": "collector_day", "comment": null}, "collector_epoch": {"type": "long", "index": 21, "name": "collector_epoch", "comment": null}, "collector_month": {"type": "string", "index": 22, "name": "collector_month", "comment": null}, "collector_tstamp": {"type": "string", "index": 23, "name": "collector_tstamp", "comment": null}, "collector_year": {"type": "string", "index": 24, "name": "collector_year", "comment": null}, "context": {"type": "string", "index": 25, "name": "context", "comment": null}, "device_family": {"type": "string", "index": 26, "name": "device_family", "comment": null}, "doc_charset": {"type": "string", "index": 27, "name": "doc_charset", "comment": null}, "doc_height": {"type": "long", "index": 28, "name": "doc_height", "comment": null}, "doc_width": {"type": "long", "index": 29, "name": "doc_width", "comment": null}, "domain_sessionidx": {"type": "long", "index": 30, "name": "domain_sessionidx", "comment": null}, "domain_userid": {"type": "string", "index": 31, "name": "domain_userid", "comment": null}, "dvce_screenheight": {"type": "long", "index": 32, "name": "dvce_screenheight", "comment": null}, "dvce_screenwidth": {"type": "long", "index": 33, "name": "dvce_screenwidth", "comment": null}, "dvce_tstamp": {"type": "string", "index": 34, "name": "dvce_tstamp", "comment": null}, "event_id": {"type": "string", "index": 35, "name": "event_id", "comment": null}, "event_vendor": {"type": "string", "index": 36, "name": "event_vendor", "comment": null}, "event": {"type": "string", "index": 37, "name": "event", "comment": null}, "geo_city": {"type": "string", "index": 38, "name": "geo_city", "comment": null}, "geo_country": {"type": "string", "index": 39, "name": "geo_country", "comment": null}, "geo_latitude": {"type": "double", "index": 40, "name": "geo_latitude", "comment": null}, "geo_longitude": {"type": "double", "index": 41, "name": "geo_longitude", "comment": null}, "geo_region": {"type": "string", "index": 42, "name": "geo_region", "comment": null}, "geo_zipcode": {"type": "string", "index": 43, "name": "geo_zipcode", "comment": null}, "mkt_campaign": {"type": "string", "index": 44, "name": "mkt_campaign", "comment": null}, "mkt_content": {"type": "string", "index": 45, "name": "mkt_content", "comment": null}, "mkt_medium": {"type": "string", "index": 46, "name": "mkt_medium", "comment": null}, "mkt_source": {"type": "string", "index": 47, "name": "mkt_source", "comment": null}, "mkt_term": {"type": "string", "index": 48, "name": "mkt_term", "comment": null}, "os_family": {"type": "string", "index": 49, "name": "os_family", "comment": null}, "os_major": {"type": "string", "index": 50, "name": "os_major", "comment": null}, "os_minor": {"type": "string", "index": 51, "name": "os_minor", "comment": null}, "os_timezone": {"type": "string", "index": 52, "name": "os_timezone", "comment": null}, "page_referrer": {"type": "string", "index": 53, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 54, "name": "page_title", "comment": null}, "page_urlfragment": {"type": "string", "index": 55, "name": "page_urlfragment", "comment": null}, "page_urlhost": {"type": "string", "index": 56, "name": "page_urlhost", "comment": null}, "page_urlpath": {"type": "string", "index": 57, "name": "page_urlpath", "comment": null}, "page_urlport": {"type": "long", "index": 58, "name": "page_urlport", "comment": null}, "page_urlquery": {"type": "string", "index": 59, "name": "page_urlquery", "comment": null}, "page_url": {"type": "string", "index": 60, "name": "page_url", "comment": null}, "page_urlscheme": {"type": "string", "index": 61, "name": "page_urlscheme", "comment": null}, "platform": {"type": "string", "index": 62, "name": "platform", "comment": null}, "refr_medium": {"type": "string", "index": 63, "name": "refr_medium", "comment": null}, "refr_source": {"type": "string", "index": 64, "name": "refr_source", "comment": null}, "refr_term": {"type": "string", "index": 65, "name": "refr_term", "comment": null}, "refr_urlfragment": {"type": "string", "index": 66, "name": "refr_urlfragment", "comment": null}, "refr_urlhost": {"type": "string", "index": 67, "name": "refr_urlhost", "comment": null}, "refr_urlpath": {"type": "string", "index": 68, "name": "refr_urlpath", "comment": null}, "refr_urlport": {"type": "long", "index": 69, "name": "refr_urlport", "comment": null}, "refr_urlquery": {"type": "string", "index": 70, "name": "refr_urlquery", "comment": null}, "refr_urlscheme": {"type": "string", "index": 71, "name": "refr_urlscheme", "comment": null}, "se_action": {"type": "string", "index": 72, "name": "se_action", "comment": null}, "se_category": {"type": "string", "index": 73, "name": "se_category", "comment": null}, "se_label": {"type": "string", "index": 74, "name": "se_label", "comment": null}, "se_property": {"type": "string", "index": 75, "name": "se_property", "comment": null}, "se_value": {"type": "string", "index": 76, "name": "se_value", "comment": null}, "txn_id": {"type": "string", "index": 77, "name": "txn_id", "comment": null}, "user_fingerprint": {"type": "string", "index": 78, "name": "user_fingerprint", "comment": null}, "useragent": {"type": "string", "index": 79, "name": "useragent", "comment": null}, "v_collector": {"type": "string", "index": 80, "name": "v_collector", "comment": null}, "v_etl": {"type": "string", "index": 81, "name": "v_etl", "comment": null}, "v_tracker": {"type": "string", "index": 82, "name": "v_tracker", "comment": null}, "y_fingerprint": {"type": "string", "index": 83, "name": "y_fingerprint", "comment": null}}, "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.yoda.platform_stg__onsite_v3"}, "model.yoda.platform_stg__order_lines": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__order_lines", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "order_id": {"type": "long", "index": 4, "name": "order_id", "comment": null}, "product_id": {"type": "long", "index": 5, "name": "product_id", "comment": null}, "external_variant_id": {"type": "string", "index": 6, "name": "external_variant_id", "comment": null}, "cost": {"type": "double", "index": 7, "name": "cost", "comment": null}, "coupon_used": {"type": "long", "index": 8, "name": "coupon_used", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "quantity": {"type": "long", "index": 11, "name": "quantity", "comment": null}, "subtotal_price": {"type": "double", "index": 12, "name": "subtotal_price", "comment": null}, "custom_properties": {"type": "string", "index": 13, "name": "custom_properties", "comment": null}, "coupon_code": {"type": "string", "index": 14, "name": "coupon_code", "comment": null}, "external_id": {"type": "string", "index": 15, "name": "external_id", "comment": null}, "variant_id": {"type": "long", "index": 16, "name": "variant_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.platform_stg__order_lines"}, "model.yoda.platform_stg__orders": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__orders", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 2, "name": "ts_ms", "comment": null}, "app_key": {"type": "string", "index": 3, "name": "app_key", "comment": null}, "order_date": {"type": "timestamp", "index": 4, "name": "order_date", "comment": null}, "external_order_id": {"type": "string", "index": 5, "name": "external_order_id", "comment": null}, "email": {"type": "string", "index": 6, "name": "email", "comment": null}, "platform_type": {"type": "string", "index": 7, "name": "platform_type", "comment": null}, "external_order_display_name": {"type": "string", "index": 8, "name": "external_order_display_name", "comment": null}, "order_update_date": {"type": "timestamp", "index": 9, "name": "order_update_date", "comment": null}, "order_sum_order_currency": {"type": "double", "index": 10, "name": "order_sum_order_currency", "comment": null}, "order_currency_iso": {"type": "string", "index": 11, "name": "order_currency_iso", "comment": null}, "order_sum_account_currency": {"type": "double", "index": 12, "name": "order_sum_account_currency", "comment": null}, "account_currency_iso": {"type": "string", "index": 13, "name": "account_currency_iso", "comment": null}, "created_at": {"type": "timestamp", "index": 14, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 15, "name": "updated_at", "comment": null}, "billing_address_id": {"type": "long", "index": 16, "name": "billing_address_id", "comment": null}, "shipping_address_id": {"type": "long", "index": 17, "name": "shipping_address_id", "comment": null}, "external_customer_id": {"type": "string", "index": 18, "name": "external_customer_id", "comment": null}, "first_name": {"type": "string", "index": 19, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 20, "name": "last_name", "comment": null}, "phone_number": {"type": "string", "index": 21, "name": "phone_number", "comment": null}, "total_price": {"type": "double", "index": 22, "name": "total_price", "comment": null}, "landing_site_url": {"type": "string", "index": 23, "name": "landing_site_url", "comment": null}, "checkout_token": {"type": "string", "index": 24, "name": "checkout_token", "comment": null}, "payment_method": {"type": "string", "index": 25, "name": "payment_method", "comment": null}, "payment_status_id": {"type": "long", "index": 26, "name": "payment_status_id", "comment": null}, "buyer_accepts_sms_marketing": {"type": "long", "index": 27, "name": "buyer_accepts_sms_marketing", "comment": null}, "buyer_accepts_email_marketing": {"type": "long", "index": 28, "name": "buyer_accepts_email_marketing", "comment": null}, "custom_properties": {"type": "string", "index": 29, "name": "custom_properties", "comment": null}, "source": {"type": "string", "index": 30, "name": "source", "comment": null}, "buyer_accepts_marketing": {"type": "long", "index": 31, "name": "buyer_accepts_marketing", "comment": null}, "external_id": {"type": "string", "index": 32, "name": "external_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.platform_stg__orders"}, "model.yoda.platform_stg__organizations": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__organizations", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "created_at": {"type": "timestamp", "index": 1, "name": "created_at", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "organization_key": {"type": "string", "index": 3, "name": "organization_key", "comment": null}, "updated_at": {"type": "timestamp", "index": 4, "name": "updated_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.yoda.platform_stg__organizations"}, "model.yoda.platform_stg__owners_features": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__owners_features", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 2, "name": "ts_ms", "comment": null}, "created_at": {"type": "timestamp", "index": 3, "name": "created_at", "comment": null}, "disabled": {"type": "long", "index": 4, "name": "disabled", "comment": null}, "feature_id": {"type": "long", "index": 5, "name": "feature_id", "comment": null}, "floating": {"type": "long", "index": 6, "name": "floating", "comment": null}, "owner_id": {"type": "long", "index": 7, "name": "owner_id", "comment": null}, "owner_type": {"type": "string", "index": 8, "name": "owner_type", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "user_enabled": {"type": "long", "index": 10, "name": "user_enabled", "comment": null}}, "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.yoda.platform_stg__owners_features"}, "model.yoda.platform_stg__platform_types": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__platform_types", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "platform_name": {"type": "string", "index": 1, "name": "platform_name", "comment": null}, "description": {"type": "string", "index": 2, "name": "description", "comment": null}, "is_supports_pull_orders": {"type": "long", "index": 3, "name": "is_supports_pull_orders", "comment": null}, "is_supports_past_orders": {"type": "long", "index": 4, "name": "is_supports_past_orders", "comment": null}, "updated_at": {"type": "timestamp", "index": 5, "name": "updated_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.yoda.platform_stg__platform_types"}, "model.yoda.platform_stg__products": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__products", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 2, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 3, "name": "store_id", "comment": null}, "external_id": {"type": "string", "index": 4, "name": "external_id", "comment": null}, "name": {"type": "string", "index": 5, "name": "name", "comment": null}, "description": {"type": "string", "index": 6, "name": "description", "comment": null}, "url": {"type": "string", "index": 7, "name": "url", "comment": null}, "is_valid_url_format": {"type": "long", "index": 8, "name": "is_valid_url_format", "comment": null}, "price": {"type": "double", "index": 9, "name": "price", "comment": null}, "currency": {"type": "string", "index": 10, "name": "currency", "comment": null}, "inventory_quantity": {"type": "long", "index": 11, "name": "inventory_quantity", "comment": null}, "is_discontinued": {"type": "long", "index": 12, "name": "is_discontinued", "comment": null}, "handle": {"type": "string", "index": 13, "name": "handle", "comment": null}, "group_id": {"type": "long", "index": 14, "name": "group_id", "comment": null}, "custom_properties": {"type": "string", "index": 15, "name": "custom_properties", "comment": null}, "external_created_at": {"type": "timestamp", "index": 16, "name": "external_created_at", "comment": null}, "external_updated_at": {"type": "timestamp", "index": 17, "name": "external_updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 18, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 19, "name": "updated_at", "comment": null}, "status": {"type": "string", "index": 20, "name": "status", "comment": null}, "compare_at_price": {"type": "double", "index": 21, "name": "compare_at_price", "comment": null}, "sku": {"type": "string", "index": 22, "name": "sku", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.platform_stg__products"}, "model.yoda.platform_stg__sections": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__sections", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_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.yoda.platform_stg__sections"}, "model.yoda.platform_stg__synergies_crud": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__synergies_crud", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "op": {"type": "string", "index": 2, "name": "op", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "widget_id": {"type": "long", "index": 5, "name": "widget_id", "comment": null}, "status": {"type": "string", "index": 6, "name": "status", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 9, "name": "upsolver_schema_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.platform_stg__synergies_crud"}, "model.yoda.platform_stg__synergy_product_mapping": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__synergy_product_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"synergy_id": {"type": "integer", "index": 0, "name": "synergy_id", "comment": null}, "synergy_name": {"type": "string", "index": 1, "name": "synergy_name", "comment": null}, "product_name": {"type": "string", "index": 2, "name": "product_name", "comment": null}, "is_action_product": {"type": "short", "index": 3, "name": "is_action_product", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 4, "name": "dwh_updated_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.yoda.platform_stg__synergy_product_mapping"}, "model.yoda.platform_stg__synergy_start_date_mapping": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__synergy_start_date_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"synergy_id": {"type": "integer", "index": 0, "name": "synergy_id", "comment": null}, "synergy_name": {"type": "string", "index": 1, "name": "synergy_name", "comment": null}, "start_date": {"type": "date", "index": 2, "name": "start_date", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 3, "name": "dwh_updated_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.yoda.platform_stg__synergy_start_date_mapping"}, "model.yoda.platform_stg__timezone_country_mapping": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__timezone_country_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"timezone": {"type": "string", "index": 0, "name": "timezone", "comment": null}, "country_code": {"type": "string", "index": 1, "name": "country_code", "comment": null}, "country_name": {"type": "string", "index": 2, "name": "country_name", "comment": null}, "region_name": {"type": "string", "index": 3, "name": "region_name", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 4, "name": "dwh_updated_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.yoda.platform_stg__timezone_country_mapping"}, "model.yoda.platform_stg__widgets": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "platform_stg__widgets", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "product_line_id": {"type": "long", "index": 4, "name": "product_line_id", "comment": null}, "section_id": {"type": "long", "index": 5, "name": "section_id", "comment": null}, "product_line_section_id": {"type": "long", "index": 6, "name": "product_line_section_id", "comment": null}, "widget_key": {"type": "string", "index": 7, "name": "widget_key", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_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.yoda.platform_stg__widgets"}, "model.yoda.sms__flows_links_clicks": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms__flows_links_clicks", "database": null, "comment": null, "owner": "root"}, "columns": {"sms_id": {"type": "long", "index": 0, "name": "sms_id", "comment": null}, "number": {"type": "string", "index": 1, "name": "number", "comment": null}, "clicks_count": {"type": "long", "index": 2, "name": "clicks_count", "comment": null}, "processing_time": {"type": "timestamp", "index": 3, "name": "processing_time", "comment": null}, "link": {"type": "string", "index": 4, "name": "link", "comment": null}, "flow_trigger": {"type": "string", "index": 5, "name": "flow_trigger", "comment": null}}, "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.yoda.sms__flows_links_clicks"}, "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 2, "name": "source_type", "comment": null}, "source_id": {"type": "string", "index": 3, "name": "source_id", "comment": null}, "order_id": {"type": "long", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "string", "index": 12, "name": "customer_external_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 2, "name": "source_type", "comment": null}, "source_id": {"type": "long", "index": 3, "name": "source_id", "comment": null}, "order_id": {"type": "long", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "long", "index": 12, "name": "customer_external_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "model.yoda.sms__loyalty_sms_flows_email_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms__loyalty_sms_flows_email_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 2, "name": "source_type", "comment": null}, "source_id": {"type": "string", "index": 3, "name": "source_id", "comment": null}, "order_id": {"type": "string", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "string", "index": 12, "name": "customer_external_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.sms__loyalty_sms_flows_email_kpi"}, "model.yoda.sms__loyalty_sms_flows_sms_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms__loyalty_sms_flows_sms_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 2, "name": "source_type", "comment": null}, "source_id": {"type": "long", "index": 3, "name": "source_id", "comment": null}, "order_id": {"type": "string", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "string", "index": 12, "name": "customer_external_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.sms__loyalty_sms_flows_sms_kpi"}, "model.yoda.sms__reviews_sms_flows_email_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms__reviews_sms_flows_email_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 2, "name": "source_type", "comment": null}, "source_id": {"type": "string", "index": 3, "name": "source_id", "comment": null}, "order_id": {"type": "string", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "string", "index": 12, "name": "customer_external_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.sms__reviews_sms_flows_email_kpi"}, "model.yoda.sms__reviews_sms_flows_sms_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms__reviews_sms_flows_sms_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 2, "name": "source_type", "comment": null}, "source_id": {"type": "long", "index": 3, "name": "source_id", "comment": null}, "order_id": {"type": "string", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "string", "index": 12, "name": "customer_external_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.sms__reviews_sms_flows_sms_kpi"}, "model.yoda.sms__social_proof_flows_email_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms__social_proof_flows_email_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 2, "name": "source_type", "comment": null}, "source_id": {"type": "string", "index": 3, "name": "source_id", "comment": null}, "order_id": {"type": "string", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "string", "index": 12, "name": "customer_external_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.sms__social_proof_flows_email_kpi"}, "model.yoda.sms__social_proof_flows_sms_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms__social_proof_flows_sms_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 2, "name": "source_type", "comment": null}, "source_id": {"type": "long", "index": 3, "name": "source_id", "comment": null}, "order_id": {"type": "string", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "string", "index": 12, "name": "customer_external_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.sms__social_proof_flows_sms_kpi"}, "model.yoda.sms_stg__apicalls": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__apicalls", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "request_id": {"type": "long", "index": 4, "name": "request_id", "comment": null}, "queue_id": {"type": "long", "index": 5, "name": "queue_id", "comment": null}, "app_id": {"type": "long", "index": 6, "name": "app_id", "comment": null}, "user_id": {"type": "long", "index": 7, "name": "user_id", "comment": null}, "campaign_id": {"type": "long", "index": 8, "name": "campaign_id", "comment": null}, "event_id": {"type": "long", "index": 9, "name": "event_id", "comment": null}, "flow_id": {"type": "long", "index": 10, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 11, "name": "flow_step_id", "comment": null}, "apikey": {"type": "string", "index": 12, "name": "apikey", "comment": null}, "from": {"type": "string", "index": 13, "name": "from", "comment": null}, "to": {"type": "string", "index": 14, "name": "to", "comment": null}, "type": {"type": "string", "index": 15, "name": "type", "comment": null}, "status": {"type": "string", "index": 16, "name": "status", "comment": null}, "platform": {"type": "string", "index": 17, "name": "platform", "comment": null}, "media": {"type": "string", "index": 18, "name": "media", "comment": null}, "spot_user_balance": {"type": "double", "index": 19, "name": "spot_user_balance", "comment": null}, "vendor_name_used": {"type": "string", "index": 20, "name": "vendor_name_used", "comment": null}, "price_billed": {"type": "double", "index": 21, "name": "price_billed", "comment": null}, "price_vendor_cost": {"type": "double", "index": 22, "name": "price_vendor_cost", "comment": null}, "parts": {"type": "long", "index": 23, "name": "parts", "comment": null}, "price_currency": {"type": "string", "index": 24, "name": "price_currency", "comment": null}, "method": {"type": "string", "index": 25, "name": "method", "comment": null}, "message_id": {"type": "string", "index": 26, "name": "message_id", "comment": null}, "message_id_int": {"type": "long", "index": 27, "name": "message_id_int", "comment": null}, "message_uuid": {"type": "string", "index": 28, "name": "message_uuid", "comment": null}, "ip": {"type": "string", "index": 29, "name": "ip", "comment": null}, "ip_forward": {"type": "string", "index": 30, "name": "ip_forward", "comment": null}, "referer": {"type": "string", "index": 31, "name": "referer", "comment": null}, "message": {"type": "string", "index": 32, "name": "message", "comment": null}, "sender_type": {"type": "string", "index": 33, "name": "sender_type", "comment": null}, "country_iso": {"type": "string", "index": 34, "name": "country_iso", "comment": null}, "message_notification_type": {"type": "string", "index": 35, "name": "message_notification_type", "comment": null}, "created": {"type": "timestamp", "index": 36, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 37, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 38, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__apicalls"}, "model.yoda.sms_stg__bigcommerce_users": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__bigcommerce_users", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store": {"type": "string", "index": 4, "name": "store", "comment": null}, "domain": {"type": "string", "index": 5, "name": "domain", "comment": null}, "store_hash": {"type": "string", "index": 6, "name": "store_hash", "comment": null}, "access_token": {"type": "string", "index": 7, "name": "access_token", "comment": null}, "shop_data": {"type": "string", "index": 8, "name": "shop_data", "comment": null}, "app_data": {"type": "string", "index": 9, "name": "app_data", "comment": null}, "user_id": {"type": "long", "index": 10, "name": "user_id", "comment": null}, "plan_name": {"type": "string", "index": 11, "name": "plan_name", "comment": null}, "plan_level": {"type": "string", "index": 12, "name": "plan_level", "comment": null}, "auto_reload": {"type": "long", "index": 13, "name": "auto_reload", "comment": null}, "auto_reload_threshold": {"type": "long", "index": 14, "name": "auto_reload_threshold", "comment": null}, "auto_reload_amount": {"type": "long", "index": 15, "name": "auto_reload_amount", "comment": null}, "auto_reload_cap": {"type": "long", "index": 16, "name": "auto_reload_cap", "comment": null}, "abandoned_checkouts_sent": {"type": "long", "index": 17, "name": "abandoned_checkouts_sent", "comment": null}, "connected": {"type": "long", "index": 18, "name": "connected", "comment": null}, "sync_enabled": {"type": "long", "index": 19, "name": "sync_enabled", "comment": null}, "notes": {"type": "string", "index": 20, "name": "notes", "comment": null}, "pinned_navigation": {"type": "long", "index": 21, "name": "pinned_navigation", "comment": null}, "created": {"type": "timestamp", "index": 22, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 23, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 24, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__bigcommerce_users"}, "model.yoda.sms_stg__campaign_lists": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__campaign_lists", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "campaign_id": {"type": "long", "index": 5, "name": "campaign_id", "comment": null}, "list_id": {"type": "long", "index": 6, "name": "list_id", "comment": null}, "exclude": {"type": "long", "index": 7, "name": "exclude", "comment": null}, "scheduled": {"type": "timestamp", "index": 8, "name": "scheduled", "comment": null}}, "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.yoda.sms_stg__campaign_lists"}, "model.yoda.sms_stg__campaign_relations": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__campaign_relations", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "campaign_id": {"type": "long", "index": 5, "name": "campaign_id", "comment": null}, "resource_id": {"type": "long", "index": 6, "name": "resource_id", "comment": null}, "resource_type": {"type": "string", "index": 7, "name": "resource_type", "comment": null}, "created": {"type": "timestamp", "index": 8, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 9, "name": "modified", "comment": null}}, "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.yoda.sms_stg__campaign_relations"}, "model.yoda.sms_stg__campaigns": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__campaigns", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "title": {"type": "string", "index": 5, "name": "title", "comment": null}, "message": {"type": "string", "index": 6, "name": "message", "comment": null}, "list_id": {"type": "long", "index": 7, "name": "list_id", "comment": null}, "total_sent": {"type": "long", "index": 8, "name": "total_sent", "comment": null}, "sent": {"type": "long", "index": 9, "name": "sent", "comment": null}, "ab_testing_id": {"type": "string", "index": 10, "name": "ab_testing_id", "comment": null}, "scheduled": {"type": "timestamp", "index": 11, "name": "scheduled", "comment": null}, "approved": {"type": "long", "index": 12, "name": "approved", "comment": null}, "is_repopulated": {"type": "long", "index": 13, "name": "is_repopulated", "comment": null}, "status": {"type": "string", "index": 14, "name": "status", "comment": null}, "channel": {"type": "string", "index": 15, "name": "channel", "comment": null}, "created": {"type": "timestamp", "index": 16, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 17, "name": "modified", "comment": null}, "request": {"type": "string", "index": 18, "name": "request", "comment": null}, "is_logical_deleted": {"type": "long", "index": 19, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__campaigns"}, "model.yoda.sms_stg__comm_analytics_data": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__comm_analytics_data", "database": null, "comment": null, "owner": "root"}, "columns": {"store_id": {"type": "string", "index": 0, "name": "store_id", "comment": null}, "channel": {"type": "string", "index": 1, "name": "channel", "comment": null}, "source_status": {"type": "string", "index": 2, "name": "source_status", "comment": null}, "source_type": {"type": "string", "index": 3, "name": "source_type", "comment": null}, "source_id": {"type": "string", "index": 4, "name": "source_id", "comment": null}, "sub_source_type": {"type": "string", "index": 5, "name": "sub_source_type", "comment": null}, "source_trigger": {"type": "string", "index": 6, "name": "source_trigger", "comment": null}, "source_message": {"type": "string", "index": 7, "name": "source_message", "comment": null}, "sub_source_id": {"type": "string", "index": 8, "name": "sub_source_id", "comment": null}, "source_name": {"type": "string", "index": 9, "name": "source_name", "comment": null}, "converted_flow_id": {"type": "string", "index": 10, "name": "converted_flow_id", "comment": null}, "source_execution_date": {"type": "timestamp", "index": 11, "name": "source_execution_date", "comment": null}, "source_creation_date": {"type": "timestamp", "index": 12, "name": "source_creation_date", "comment": null}, "aggregation_date": {"type": "timestamp", "index": 13, "name": "aggregation_date", "comment": null}, "total_unsubscribed": {"type": "long", "index": 14, "name": "total_unsubscribed", "comment": null}, "total_sent": {"type": "long", "index": 15, "name": "total_sent", "comment": null}, "message_count": {"type": "long", "index": 16, "name": "message_count", "comment": null}, "total_spent": {"type": "double", "index": 17, "name": "total_spent", "comment": null}, "total_clicks": {"type": "long", "index": 18, "name": "total_clicks", "comment": null}, "total_orders": {"type": "long", "index": 19, "name": "total_orders", "comment": null}, "total_revenue": {"type": "double", "index": 20, "name": "total_revenue", "comment": null}, "total_subscriptions": {"type": "integer", "index": 21, "name": "total_subscriptions", "comment": null}, "total_active_subscriptions": {"type": "long", "index": 22, "name": "total_active_subscriptions", "comment": null}, "total_delivered": {"type": "long", "index": 23, "name": "total_delivered", "comment": null}, "total_processed": {"type": "long", "index": 24, "name": "total_processed", "comment": null}, "total_open": {"type": "long", "index": 25, "name": "total_open", "comment": null}, "total_deferred": {"type": "long", "index": 26, "name": "total_deferred", "comment": null}, "total_spam": {"type": "long", "index": 27, "name": "total_spam", "comment": null}, "total_failed": {"type": "long", "index": 28, "name": "total_failed", "comment": null}, "total_skipped": {"type": "long", "index": 29, "name": "total_skipped", "comment": null}, "total_smart_sending": {"type": "long", "index": 30, "name": "total_smart_sending", "comment": null}, "total_restricted": {"type": "long", "index": 31, "name": "total_restricted", "comment": null}, "total_suppressed": {"type": "long", "index": 32, "name": "total_suppressed", "comment": null}, "total_bounce": {"type": "long", "index": 33, "name": "total_bounce", "comment": null}, "total_soft_bounce": {"type": "long", "index": 34, "name": "total_soft_bounce", "comment": null}, "total_hard_bounce": {"type": "long", "index": 35, "name": "total_hard_bounce", "comment": null}, "total_drop": {"type": "long", "index": 36, "name": "total_drop", "comment": null}, "transactional_messages": {"type": "long", "index": 37, "name": "transactional_messages", "comment": null}, "marketing_messages": {"type": "long", "index": 38, "name": "marketing_messages", "comment": null}}, "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.yoda.sms_stg__comm_analytics_data"}, "model.yoda.sms_stg__customers": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__customers", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "smsbump_user_id": {"type": "long", "index": 4, "name": "smsbump_user_id", "comment": null}, "customer_id": {"type": "long", "index": 5, "name": "customer_id", "comment": null}, "email": {"type": "string", "index": 6, "name": "email", "comment": null}, "accepts_marketing": {"type": "long", "index": 7, "name": "accepts_marketing", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "first_name": {"type": "string", "index": 10, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 11, "name": "last_name", "comment": null}, "orders_count": {"type": "long", "index": 12, "name": "orders_count", "comment": null}, "state": {"type": "string", "index": 13, "name": "state", "comment": null}, "total_spent": {"type": "double", "index": 14, "name": "total_spent", "comment": null}, "last_order_id": {"type": "long", "index": 15, "name": "last_order_id", "comment": null}, "verified_email": {"type": "long", "index": 16, "name": "verified_email", "comment": null}, "phone": {"type": "string", "index": 17, "name": "phone", "comment": null}, "phone_formatted": {"type": "string", "index": 18, "name": "phone_formatted", "comment": null}, "last_order_name": {"type": "string", "index": 19, "name": "last_order_name", "comment": null}, "default_address": {"type": "long", "index": 20, "name": "default_address", "comment": null}, "timezone": {"type": "string", "index": 21, "name": "timezone", "comment": null}, "deleted": {"type": "long", "index": 22, "name": "deleted", "comment": null}, "is_logical_deleted": {"type": "long", "index": 23, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__customers"}, "model.yoda.sms_stg__customers_addresses": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__customers_addresses", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "address1": {"type": "string", "index": 4, "name": "address1", "comment": null}, "address2": {"type": "string", "index": 5, "name": "address2", "comment": null}, "address_id": {"type": "long", "index": 6, "name": "address_id", "comment": null}, "city": {"type": "string", "index": 7, "name": "city", "comment": null}, "company": {"type": "string", "index": 8, "name": "company", "comment": null}, "country": {"type": "string", "index": 9, "name": "country", "comment": null}, "country_code": {"type": "string", "index": 10, "name": "country_code", "comment": null}, "country_name": {"type": "string", "index": 11, "name": "country_name", "comment": null}, "customer_id": {"type": "long", "index": 12, "name": "customer_id", "comment": null}, "default": {"type": "long", "index": 13, "name": "default", "comment": null}, "deleted": {"type": "long", "index": 14, "name": "deleted", "comment": null}, "first_name": {"type": "string", "index": 15, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 16, "name": "last_name", "comment": null}, "name": {"type": "string", "index": 17, "name": "name", "comment": null}, "phone": {"type": "string", "index": 18, "name": "phone", "comment": null}, "phone_formatted": {"type": "string", "index": 19, "name": "phone_formatted", "comment": null}, "province": {"type": "string", "index": 20, "name": "province", "comment": null}, "province_code": {"type": "string", "index": 21, "name": "province_code", "comment": null}, "smsbump_customer_id": {"type": "long", "index": 22, "name": "smsbump_customer_id", "comment": null}, "smsbump_user_id": {"type": "long", "index": 23, "name": "smsbump_user_id", "comment": null}, "zip": {"type": "long", "index": 24, "name": "zip", "comment": null}}, "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.yoda.sms_stg__customers_addresses"}, "model.yoda.sms_stg__default_predefined_messages": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__default_predefined_messages", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "type": {"type": "string", "index": 4, "name": "type", "comment": null}, "trigger": {"type": "string", "index": 5, "name": "trigger", "comment": null}, "default_message": {"type": "string", "index": 6, "name": "default_message", "comment": null}, "category": {"type": "string", "index": 7, "name": "category", "comment": null}, "sub_category": {"type": "string", "index": 8, "name": "sub_category", "comment": null}, "active": {"type": "long", "index": 9, "name": "active", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 11, "name": "modified", "comment": null}}, "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.yoda.sms_stg__default_predefined_messages"}, "model.yoda.sms_stg__flow_link_clicks": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__flow_link_clicks", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "number": {"type": "string", "index": 5, "name": "number", "comment": null}, "clicks_count": {"type": "long", "index": 6, "name": "clicks_count", "comment": null}, "flow_id": {"type": "long", "index": 7, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 8, "name": "flow_step_id", "comment": null}, "link_id": {"type": "long", "index": 9, "name": "link_id", "comment": null}, "ua": {"type": "string", "index": 10, "name": "ua", "comment": null}, "created": {"type": "timestamp", "index": 11, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 12, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 13, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__flow_link_clicks"}, "model.yoda.sms_stg__flow_links": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__flow_links", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "flow_id": {"type": "long", "index": 4, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 5, "name": "flow_step_id", "comment": null}, "ab_entity_id": {"type": "long", "index": 6, "name": "ab_entity_id", "comment": null}, "clicks_count": {"type": "long", "index": 7, "name": "clicks_count", "comment": null}, "link": {"type": "string", "index": 8, "name": "link", "comment": null}, "created": {"type": "timestamp", "index": 9, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 10, "name": "modified", "comment": null}}, "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.yoda.sms_stg__flow_links"}, "model.yoda.sms_stg__flows": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__flows", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "user_id": {"type": "long", "index": 5, "name": "user_id", "comment": null}, "flow_trigger": {"type": "string", "index": 6, "name": "flow_trigger", "comment": null}, "flow_settings": {"type": "string", "index": 7, "name": "flow_settings", "comment": null}, "platform": {"type": "string", "index": 8, "name": "platform", "comment": null}, "status": {"type": "long", "index": 9, "name": "status", "comment": null}, "snapshot_id": {"type": "long", "index": 10, "name": "snapshot_id", "comment": null}, "created": {"type": "timestamp", "index": 11, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 12, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 13, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__flows"}, "model.yoda.sms_stg__link_clicks": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__link_clicks", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "number": {"type": "string", "index": 5, "name": "number", "comment": null}, "clicks_count": {"type": "long", "index": 6, "name": "clicks_count", "comment": null}, "campaign_id": {"type": "long", "index": 7, "name": "campaign_id", "comment": null}, "event_id": {"type": "long", "index": 8, "name": "event_id", "comment": null}, "link_id": {"type": "long", "index": 9, "name": "link_id", "comment": null}, "ua": {"type": "string", "index": 10, "name": "ua", "comment": null}, "created": {"type": "timestamp", "index": 11, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 12, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 13, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__link_clicks"}, "model.yoda.sms_stg__lists": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__lists", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "list_name": {"type": "string", "index": 4, "name": "list_name", "comment": null}, "count": {"type": "long", "index": 5, "name": "count", "comment": null}, "segment_id": {"type": "long", "index": 6, "name": "segment_id", "comment": null}, "user_id": {"type": "long", "index": 7, "name": "user_id", "comment": null}, "is_hidden": {"type": "long", "index": 8, "name": "is_hidden", "comment": null}, "is_email_list": {"type": "long", "index": 9, "name": "is_email_list", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 11, "name": "modified", "comment": null}}, "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.yoda.sms_stg__lists"}, "model.yoda.sms_stg__one_click_campaigns_subscriptions": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__one_click_campaigns_subscriptions", "database": null, "comment": null, "owner": "root"}, "columns": {"customer_id": {"type": "long", "index": 0, "name": "customer_id", "comment": null}, "product_id": {"type": "string", "index": 1, "name": "product_id", "comment": null}, "store_id": {"type": "string", "index": 2, "name": "store_id", "comment": null}, "clicks_count": {"type": "long", "index": 3, "name": "clicks_count", "comment": null}, "sent_time": {"type": "timestamp", "index": 4, "name": "sent_time", "comment": null}, "sms_id": {"type": "long", "index": 5, "name": "sms_id", "comment": null}, "customer_email": {"type": "string", "index": 6, "name": "customer_email", "comment": null}, "customer_phone": {"type": "string", "index": 7, "name": "customer_phone", "comment": null}}, "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.yoda.sms_stg__one_click_campaigns_subscriptions"}, "model.yoda.sms_stg__orders": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__orders", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "smsbump_user_id": {"type": "long", "index": 4, "name": "smsbump_user_id", "comment": null}, "order_id": {"type": "long", "index": 5, "name": "order_id", "comment": null}, "customer_id": {"type": "long", "index": 6, "name": "customer_id", "comment": null}, "email": {"type": "string", "index": 7, "name": "email", "comment": null}, "closed_at": {"type": "timestamp", "index": 8, "name": "closed_at", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "number": {"type": "long", "index": 11, "name": "number", "comment": null}, "note": {"type": "string", "index": 12, "name": "note", "comment": null}, "token": {"type": "string", "index": 13, "name": "token", "comment": null}, "gateway": {"type": "string", "index": 14, "name": "gateway", "comment": null}, "test": {"type": "long", "index": 15, "name": "test", "comment": null}, "total_price": {"type": "double", "index": 16, "name": "total_price", "comment": null}, "subtotal_price": {"type": "double", "index": 17, "name": "subtotal_price", "comment": null}, "total_weight": {"type": "double", "index": 18, "name": "total_weight", "comment": null}, "total_tax": {"type": "double", "index": 19, "name": "total_tax", "comment": null}, "taxes_included": {"type": "long", "index": 20, "name": "taxes_included", "comment": null}, "currency": {"type": "string", "index": 21, "name": "currency", "comment": null}, "financial_status": {"type": "string", "index": 22, "name": "financial_status", "comment": null}, "confirmed": {"type": "long", "index": 23, "name": "confirmed", "comment": null}, "total_discounts": {"type": "double", "index": 24, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double", "index": 25, "name": "total_line_items_price", "comment": null}, "cart_token": {"type": "string", "index": 26, "name": "cart_token", "comment": null}, "buyer_accepts_marketing": {"type": "long", "index": 27, "name": "buyer_accepts_marketing", "comment": null}, "name": {"type": "string", "index": 28, "name": "name", "comment": null}, "referring_site": {"type": "string", "index": 29, "name": "referring_site", "comment": null}, "landing_site": {"type": "string", "index": 30, "name": "landing_site", "comment": null}, "cancelled_at": {"type": "timestamp", "index": 31, "name": "cancelled_at", "comment": null}, "cancel_reason": {"type": "string", "index": 32, "name": "cancel_reason", "comment": null}, "total_price_usd": {"type": "double", "index": 33, "name": "total_price_usd", "comment": null}, "checkout_token": {"type": "string", "index": 34, "name": "checkout_token", "comment": null}, "reference": {"type": "string", "index": 35, "name": "reference", "comment": null}, "user_id": {"type": "long", "index": 36, "name": "user_id", "comment": null}, "location_id": {"type": "long", "index": 37, "name": "location_id", "comment": null}, "source_identifier": {"type": "string", "index": 38, "name": "source_identifier", "comment": null}, "source_url": {"type": "string", "index": 39, "name": "source_url", "comment": null}, "processed_at": {"type": "timestamp", "index": 40, "name": "processed_at", "comment": null}, "device_id": {"type": "long", "index": 41, "name": "device_id", "comment": null}, "phone": {"type": "string", "index": 42, "name": "phone", "comment": null}, "phone_formatted": {"type": "string", "index": 43, "name": "phone_formatted", "comment": null}, "customer_locale": {"type": "string", "index": 44, "name": "customer_locale", "comment": null}, "app_id": {"type": "long", "index": 45, "name": "app_id", "comment": null}, "browser_ip": {"type": "string", "index": 46, "name": "browser_ip", "comment": null}, "landing_site_ref": {"type": "string", "index": 47, "name": "landing_site_ref", "comment": null}, "order_number": {"type": "long", "index": 48, "name": "order_number", "comment": null}, "processing_method": {"type": "string", "index": 49, "name": "processing_method", "comment": null}, "checkout_id": {"type": "long", "index": 50, "name": "checkout_id", "comment": null}, "source_name": {"type": "string", "index": 51, "name": "source_name", "comment": null}, "fulfillment_status": {"type": "string", "index": 52, "name": "fulfillment_status", "comment": null}, "tags": {"type": "string", "index": 53, "name": "tags", "comment": null}, "contact_email": {"type": "string", "index": 54, "name": "contact_email", "comment": null}, "order_status_url": {"type": "string", "index": 55, "name": "order_status_url", "comment": null}, "is_logical_deleted": {"type": "long", "index": 56, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__orders"}, "model.yoda.sms_stg__packages": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__packages", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "display_name": {"type": "string", "index": 5, "name": "display_name", "comment": null}, "payment_key": {"type": "string", "index": 6, "name": "payment_key", "comment": null}, "plan_key": {"type": "string", "index": 7, "name": "plan_key", "comment": null}, "sub_title": {"type": "string", "index": 8, "name": "sub_title", "comment": null}, "description": {"type": "string", "index": 9, "name": "description", "comment": null}, "platform": {"type": "string", "index": 10, "name": "platform", "comment": null}, "type": {"type": "string", "index": 11, "name": "type", "comment": null}, "period": {"type": "string", "index": 12, "name": "period", "comment": null}, "price": {"type": "double", "index": 13, "name": "price", "comment": null}, "bonus_credits": {"type": "double", "index": 14, "name": "bonus_credits", "comment": null}, "visible_app": {"type": "long", "index": 15, "name": "visible_app", "comment": null}, "visible_site": {"type": "long", "index": 16, "name": "visible_site", "comment": null}, "status": {"type": "long", "index": 17, "name": "status", "comment": null}, "created": {"type": "timestamp", "index": 18, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 19, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 20, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__packages"}, "model.yoda.sms_stg__purchases": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__purchases", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "long", "index": 4, "name": "store_id", "comment": null}, "number": {"type": "string", "index": 5, "name": "number", "comment": null}, "status": {"type": "string", "index": 6, "name": "status", "comment": null}, "type": {"type": "string", "index": 7, "name": "type", "comment": null}, "reason": {"type": "string", "index": 8, "name": "reason", "comment": null}, "platform": {"type": "string", "index": 9, "name": "platform", "comment": null}, "gateway": {"type": "string", "index": 10, "name": "gateway", "comment": null}, "amount_paid": {"type": "double", "index": 11, "name": "amount_paid", "comment": null}, "amount_added": {"type": "double", "index": 12, "name": "amount_added", "comment": null}, "notes": {"type": "string", "index": 13, "name": "notes", "comment": null}, "purchase_info": {"type": "string", "index": 14, "name": "purchase_info", "comment": null}, "cart": {"type": "string", "index": 15, "name": "cart", "comment": null}, "discount_code": {"type": "string", "index": 16, "name": "discount_code", "comment": null}, "invoice": {"type": "string", "index": 17, "name": "invoice", "comment": null}, "ipnlog": {"type": "string", "index": 18, "name": "ipnlog", "comment": null}, "shopify_charge_response": {"type": "string", "index": 19, "name": "shopify_charge_response", "comment": null}, "user_id": {"type": "long", "index": 20, "name": "user_id", "comment": null}, "affiliate_id": {"type": "long", "index": 21, "name": "affiliate_id", "comment": null}, "vendor_id": {"type": "long", "index": 22, "name": "vendor_id", "comment": null}, "product_id": {"type": "string", "index": 23, "name": "product_id", "comment": null}, "product": {"type": "string", "index": 24, "name": "product", "comment": null}, "licenses": {"type": "string", "index": 25, "name": "licenses", "comment": null}, "purchased_on": {"type": "timestamp", "index": 26, "name": "purchased_on", "comment": null}, "last_downloaded": {"type": "timestamp", "index": 27, "name": "last_downloaded", "comment": null}, "downloads_history": {"type": "string", "index": 28, "name": "downloads_history", "comment": null}, "purchased_from": {"type": "string", "index": 29, "name": "purchased_from", "comment": null}, "reminders": {"type": "string", "index": 30, "name": "reminders", "comment": null}, "rating": {"type": "long", "index": 31, "name": "rating", "comment": null}, "created": {"type": "timestamp", "index": 32, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 33, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 34, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__purchases"}, "model.yoda.sms_stg__shopify_analytics_orders": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__shopify_analytics_orders", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "customer_id": {"type": "long", "index": 5, "name": "customer_id", "comment": null}, "order_id": {"type": "long", "index": 6, "name": "order_id", "comment": null}, "amount": {"type": "double", "index": 7, "name": "amount", "comment": null}, "campaign_id": {"type": "long", "index": 8, "name": "campaign_id", "comment": null}, "event_id": {"type": "long", "index": 9, "name": "event_id", "comment": null}, "flow_id": {"type": "long", "index": 10, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 11, "name": "flow_step_id", "comment": null}, "flow_snapshot_id": {"type": "long", "index": 12, "name": "flow_snapshot_id", "comment": null}, "ab_campaign_id": {"type": "long", "index": 13, "name": "ab_campaign_id", "comment": null}, "channel": {"type": "string", "index": 14, "name": "channel", "comment": null}, "created": {"type": "timestamp", "index": 15, "name": "created", "comment": null}, "country_iso": {"type": "string", "index": 16, "name": "country_iso", "comment": null}, "type": {"type": "string", "index": 17, "name": "type", "comment": null}, "store_id": {"type": "string", "index": 18, "name": "store_id", "comment": null}, "ref_campaign_id": {"type": "long", "index": 19, "name": "ref_campaign_id", "comment": null}, "is_logical_deleted": {"type": "long", "index": 20, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__shopify_analytics_orders"}, "model.yoda.sms_stg__shopify_campaign_orders": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__shopify_campaign_orders", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "order_id": {"type": "string", "index": 4, "name": "order_id", "comment": null}, "phone": {"type": "string", "index": 5, "name": "phone", "comment": null}, "campaign_id": {"type": "long", "index": 6, "name": "campaign_id", "comment": null}, "ab_campaign_id": {"type": "long", "index": 7, "name": "ab_campaign_id", "comment": null}, "user_id": {"type": "long", "index": 8, "name": "user_id", "comment": null}, "channel": {"type": "string", "index": 9, "name": "channel", "comment": null}, "amount": {"type": "double", "index": 10, "name": "amount", "comment": null}, "created": {"type": "timestamp", "index": 11, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 12, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 13, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__shopify_campaign_orders"}, "model.yoda.sms_stg__shopify_flows_orders": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__shopify_flows_orders", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "flow_id": {"type": "long", "index": 5, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 6, "name": "flow_step_id", "comment": null}, "flow_snapshot_id": {"type": "long", "index": 7, "name": "flow_snapshot_id", "comment": null}, "ab_entity_id": {"type": "long", "index": 8, "name": "ab_entity_id", "comment": null}, "shopify_customer_id": {"type": "string", "index": 9, "name": "shopify_customer_id", "comment": null}, "phone": {"type": "string", "index": 10, "name": "phone", "comment": null}, "order_id": {"type": "string", "index": 11, "name": "order_id", "comment": null}, "amount": {"type": "double", "index": 12, "name": "amount", "comment": null}, "recovered": {"type": "long", "index": 13, "name": "recovered", "comment": null}, "conversion_source": {"type": "string", "index": 14, "name": "conversion_source", "comment": null}, "created": {"type": "timestamp", "index": 15, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 16, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 17, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__shopify_flows_orders"}, "model.yoda.sms_stg__shopify_segments": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__shopify_segments", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "segment_rules": {"type": "string", "index": 4, "name": "segment_rules", "comment": null}, "user_id": {"type": "long", "index": 5, "name": "user_id", "comment": null}, "platform": {"type": "string", "index": 6, "name": "platform", "comment": null}, "last_updated": {"type": "timestamp", "index": 7, "name": "last_updated", "comment": null}, "status": {"type": "string", "index": 8, "name": "status", "comment": null}, "created": {"type": "timestamp", "index": 9, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 10, "name": "modified", "comment": null}, "used_in_unomi": {"type": "long", "index": 11, "name": "used_in_unomi", "comment": null}}, "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.yoda.sms_stg__shopify_segments"}, "model.yoda.sms_stg__shopify_users": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__shopify_users", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store": {"type": "string", "index": 4, "name": "store", "comment": null}, "domain": {"type": "string", "index": 5, "name": "domain", "comment": null}, "access_token": {"type": "string", "index": 6, "name": "access_token", "comment": null}, "shop_data": {"type": "string", "index": 7, "name": "shop_data", "comment": null}, "app_data": {"type": "string", "index": 8, "name": "app_data", "comment": null}, "user_id": {"type": "long", "index": 9, "name": "user_id", "comment": null}, "platform": {"type": "string", "index": 10, "name": "platform", "comment": null}, "plan": {"type": "string", "index": 11, "name": "plan", "comment": null}, "shopify_store_id": {"type": "string", "index": 12, "name": "shopify_store_id", "comment": null}, "associated_user": {"type": "string", "index": 13, "name": "associated_user", "comment": null}, "auto_reload": {"type": "long", "index": 14, "name": "auto_reload", "comment": null}, "auto_reload_threshold": {"type": "long", "index": 15, "name": "auto_reload_threshold", "comment": null}, "auto_reload_amount": {"type": "long", "index": 16, "name": "auto_reload_amount", "comment": null}, "auto_reload_cap": {"type": "long", "index": 17, "name": "auto_reload_cap", "comment": null}, "abandoned_checkouts_sent": {"type": "long", "index": 18, "name": "abandoned_checkouts_sent", "comment": null}, "connected": {"type": "long", "index": 19, "name": "connected", "comment": null}, "sync_enabled": {"type": "long", "index": 20, "name": "sync_enabled", "comment": null}, "back_fill_completed": {"type": "long", "index": 21, "name": "back_fill_completed", "comment": null}, "notes": {"type": "string", "index": 22, "name": "notes", "comment": null}, "pinned_navigation": {"type": "long", "index": 23, "name": "pinned_navigation", "comment": null}, "created": {"type": "timestamp", "index": 24, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 25, "name": "modified", "comment": null}, "consent_webhook_enabled": {"type": "long", "index": 26, "name": "consent_webhook_enabled", "comment": null}, "is_logical_deleted": {"type": "long", "index": 27, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__shopify_users"}, "model.yoda.sms_stg__sms_loyalty_campaigns": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__sms_loyalty_campaigns", "database": null, "comment": null, "owner": "root"}, "columns": {"user_id": {"type": "long", "index": 0, "name": "user_id", "comment": null}, "store_id": {"type": "string", "index": 1, "name": "store_id", "comment": null}, "campaign_id": {"type": "long", "index": 2, "name": "campaign_id", "comment": null}, "synergy_id": {"type": "integer", "index": 3, "name": "synergy_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__sms_loyalty_campaigns"}, "model.yoda.sms_stg__sms_loyalty_campaigns_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__sms_loyalty_campaigns_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"synergy_id": {"type": "integer", "index": 0, "name": "synergy_id", "comment": null}, "campaign_id": {"type": "long", "index": 1, "name": "campaign_id", "comment": null}, "order_id": {"type": "string", "index": 2, "name": "order_id", "comment": null}, "channel": {"type": "string", "index": 3, "name": "channel", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "external_customer_id": {"type": "string", "index": 11, "name": "external_customer_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "model.yoda.sms_stg__sms_loyalty_custom_campaigns": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__sms_loyalty_custom_campaigns", "database": null, "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "long", "index": 0, "name": "campaign_id", "comment": null}, "user_id": {"type": "long", "index": 1, "name": "user_id", "comment": null}, "store_id": {"type": "string", "index": 2, "name": "store_id", "comment": null}, "synergy_id": {"type": "integer", "index": 3, "name": "synergy_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__sms_loyalty_custom_campaigns"}, "model.yoda.sms_stg__sms_loyalty_flows_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__sms_loyalty_flows_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"order_created": {"type": "timestamp", "index": 0, "name": "order_created", "comment": null}, "flow_id": {"type": "long", "index": 1, "name": "flow_id", "comment": null}, "user_id": {"type": "long", "index": 2, "name": "user_id", "comment": null}, "synergy_id": {"type": "integer", "index": 3, "name": "synergy_id", "comment": null}, "order_id": {"type": "string", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "string", "index": 12, "name": "customer_external_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__sms_loyalty_flows_kpi"}, "model.yoda.sms_stg__sms_reviews_flows_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__sms_reviews_flows_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"synergy_id": {"type": "integer", "index": 0, "name": "synergy_id", "comment": null}, "order_id": {"type": "string", "index": 1, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 2, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 3, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 4, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 5, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 6, "name": "app_key", "comment": null}, "customer_phone_number": {"type": "string", "index": 7, "name": "customer_phone_number", "comment": null}, "customer_email": {"type": "string", "index": 8, "name": "customer_email", "comment": null}, "customer_external_id": {"type": "string", "index": 9, "name": "customer_external_id", "comment": null}, "flow_id": {"type": "long", "index": 10, "name": "flow_id", "comment": null}, "queue_id": {"type": "long", "index": 11, "name": "queue_id", "comment": null}, "user_id": {"type": "long", "index": 12, "name": "user_id", "comment": null}, "order_date": {"type": "timestamp", "index": 13, "name": "order_date", "comment": null}}, "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.yoda.sms_stg__sms_reviews_flows_kpi"}, "model.yoda.sms_stg__social_proof_flows_kpi": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__social_proof_flows_kpi", "database": null, "comment": null, "owner": "root"}, "columns": {"store_id": {"type": "string", "index": 0, "name": "store_id", "comment": null}, "user_id": {"type": "long", "index": 1, "name": "user_id", "comment": null}, "flow_id": {"type": "long", "index": 2, "name": "flow_id", "comment": null}, "customer_phone_number": {"type": "string", "index": 3, "name": "customer_phone_number", "comment": null}, "order_id": {"type": "string", "index": 4, "name": "order_id", "comment": null}, "customer_external_id": {"type": "string", "index": 5, "name": "customer_external_id", "comment": null}, "customer_email": {"type": "string", "index": 6, "name": "customer_email", "comment": null}, "order_created": {"type": "timestamp", "index": 7, "name": "order_created", "comment": null}, "synergy_id": {"type": "integer", "index": 8, "name": "synergy_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__social_proof_flows_kpi"}, "model.yoda.sms_stg__users": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__users", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "parent_id": {"type": "long", "index": 4, "name": "parent_id", "comment": null}, "store_id": {"type": "string", "index": 5, "name": "store_id", "comment": null}, "vendor_id": {"type": "long", "index": 6, "name": "vendor_id", "comment": null}, "support_level_id": {"type": "long", "index": 7, "name": "support_level_id", "comment": null}, "balance": {"type": "double", "index": 8, "name": "balance", "comment": null}, "bonus_balance": {"type": "double", "index": 9, "name": "bonus_balance", "comment": null}, "credits": {"type": "long", "index": 10, "name": "credits", "comment": null}, "earnings": {"type": "double", "index": 11, "name": "earnings", "comment": null}, "points": {"type": "long", "index": 12, "name": "points", "comment": null}, "role": {"type": "string", "index": 13, "name": "role", "comment": null}, "role_id": {"type": "long", "index": 14, "name": "role_id", "comment": null}, "partner": {"type": "long", "index": 15, "name": "partner", "comment": null}, "partner_info": {"type": "string", "index": 16, "name": "partner_info", "comment": null}, "partner_nexmo_price_multiply": {"type": "double", "index": 17, "name": "partner_nexmo_price_multiply", "comment": null}, "plan": {"type": "string", "index": 18, "name": "plan", "comment": null}, "plan_price": {"type": "double", "index": 19, "name": "plan_price", "comment": null}, "package_id": {"type": "long", "index": 20, "name": "package_id", "comment": null}, "yotpo_app_key": {"type": "string", "index": 21, "name": "yotpo_app_key", "comment": null}, "yotpo_app_secret": {"type": "string", "index": 22, "name": "yotpo_app_secret", "comment": null}, "yotpo_organization_id": {"type": "long", "index": 23, "name": "yotpo_organization_id", "comment": null}, "payment_gateway": {"type": "string", "index": 24, "name": "payment_gateway", "comment": null}, "provision_calls_count": {"type": "long", "index": 25, "name": "provision_calls_count", "comment": null}, "platform_unique_id": {"type": "string", "index": 26, "name": "platform_unique_id", "comment": null}, "discount_data": {"type": "string", "index": 27, "name": "discount_data", "comment": null}, "plan_trial_until": {"type": "timestamp", "index": 28, "name": "plan_trial_until", "comment": null}, "discounted_mms_price": {"type": "double", "index": 29, "name": "discounted_mms_price", "comment": null}, "affiliate_commission": {"type": "double", "index": 30, "name": "affiliate_commission", "comment": null}, "amploa": {"type": "string", "index": 31, "name": "amploa", "comment": null}, "email": {"type": "string", "index": 32, "name": "email", "comment": null}, "email_is_valid": {"type": "string", "index": 33, "name": "email_is_valid", "comment": null}, "password": {"type": "string", "index": 34, "name": "password", "comment": null}, "old_passwords": {"type": "string", "index": 35, "name": "old_passwords", "comment": null}, "tfa_enabled": {"type": "long", "index": 36, "name": "tfa_enabled", "comment": null}, "preferred_vendor": {"type": "string", "index": 37, "name": "preferred_vendor", "comment": null}, "partner_type": {"type": "string", "index": 38, "name": "partner_type", "comment": null}, "delivery_route": {"type": "string", "index": 39, "name": "delivery_route", "comment": null}, "hash": {"type": "string", "index": 40, "name": "hash", "comment": null}, "name": {"type": "string", "index": 41, "name": "name", "comment": null}, "phone_number": {"type": "string", "index": 42, "name": "phone_number", "comment": null}, "platform": {"type": "string", "index": 43, "name": "platform", "comment": null}, "main_subscription_list_id": {"type": "long", "index": 44, "name": "main_subscription_list_id", "comment": null}, "double_opt_in": {"type": "long", "index": 45, "name": "double_opt_in", "comment": null}, "double_opt_in_level": {"type": "string", "index": 46, "name": "double_opt_in_level", "comment": null}, "timezone": {"type": "string", "index": 47, "name": "timezone", "comment": null}, "dnd": {"type": "long", "index": 48, "name": "dnd", "comment": null}, "dnd_from": {"type": "long", "index": 49, "name": "dnd_from", "comment": null}, "dnd_to": {"type": "long", "index": 50, "name": "dnd_to", "comment": null}, "smart_sending_value": {"type": "long", "index": 51, "name": "smart_sending_value", "comment": null}, "smart_sending_ignore_transac_email": {"type": "long", "index": 52, "name": "smart_sending_ignore_transac_email", "comment": null}, "strict_marketing_check": {"type": "long", "index": 53, "name": "strict_marketing_check", "comment": null}, "price_limit_enabled": {"type": "long", "index": 54, "name": "price_limit_enabled", "comment": null}, "price_limit": {"type": "double", "index": 55, "name": "price_limit", "comment": null}, "chat_enabled": {"type": "long", "index": 56, "name": "chat_enabled", "comment": null}, "chat_settings": {"type": "string", "index": 57, "name": "chat_settings", "comment": null}, "collect_checkout_subscribers": {"type": "long", "index": 58, "name": "collect_checkout_subscribers", "comment": null}, "country": {"type": "string", "index": 59, "name": "country", "comment": null}, "countries_limitation_mode": {"type": "string", "index": 60, "name": "countries_limitation_mode", "comment": null}, "countries_limitation_values": {"type": "string", "index": 61, "name": "countries_limitation_values", "comment": null}, "state": {"type": "string", "index": 62, "name": "state", "comment": null}, "city": {"type": "string", "index": 63, "name": "city", "comment": null}, "zipcode": {"type": "string", "index": 64, "name": "zipcode", "comment": null}, "address": {"type": "string", "index": 65, "name": "address", "comment": null}, "vat_number": {"type": "string", "index": 66, "name": "vat_number", "comment": null}, "paypal_email": {"type": "string", "index": 67, "name": "paypal_email", "comment": null}, "google_user_id": {"type": "string", "index": 68, "name": "google_user_id", "comment": null}, "facebook_id": {"type": "string", "index": 69, "name": "facebook_id", "comment": null}, "facebook_info": {"type": "string", "index": 70, "name": "facebook_info", "comment": null}, "gplusurl": {"type": "string", "index": 71, "name": "gplusurl", "comment": null}, "picture": {"type": "string", "index": 72, "name": "picture", "comment": null}, "cookie_related_users": {"type": "string", "index": 73, "name": "cookie_related_users", "comment": null}, "all_ip": {"type": "string", "index": 74, "name": "all_ip", "comment": null}, "last_ip": {"type": "string", "index": 75, "name": "last_ip", "comment": null}, "last_available": {"type": "timestamp", "index": 76, "name": "last_available", "comment": null}, "total_logins": {"type": "long", "index": 77, "name": "total_logins", "comment": null}, "total_downloads": {"type": "long", "index": 78, "name": "total_downloads", "comment": null}, "abuser_status": {"type": "long", "index": 79, "name": "abuser_status", "comment": null}, "abuser_notes": {"type": "string", "index": 80, "name": "abuser_notes", "comment": null}, "free_keywords_available_count": {"type": "long", "index": 81, "name": "free_keywords_available_count", "comment": null}, "ban_exclude": {"type": "long", "index": 82, "name": "ban_exclude", "comment": null}, "is_test": {"type": "long", "index": 83, "name": "is_test", "comment": null}, "subscribed": {"type": "long", "index": 84, "name": "subscribed", "comment": null}, "subscribed_to_forum": {"type": "long", "index": 85, "name": "subscribed_to_forum", "comment": null}, "unsubscribe_reason": {"type": "string", "index": 86, "name": "unsubscribe_reason", "comment": null}, "notes": {"type": "string", "index": 87, "name": "notes", "comment": null}, "upload_lists_enabled": {"type": "long", "index": 88, "name": "upload_lists_enabled", "comment": null}, "notes_modified": {"type": "timestamp", "index": 89, "name": "notes_modified", "comment": null}, "agreed_terms": {"type": "long", "index": 90, "name": "agreed_terms", "comment": null}, "signed_promo_id": {"type": "long", "index": 91, "name": "signed_promo_id", "comment": null}, "signup_source": {"type": "string", "index": 92, "name": "signup_source", "comment": null}, "contact_card_name": {"type": "string", "index": 93, "name": "contact_card_name", "comment": null}, "contact_card_logo": {"type": "string", "index": 94, "name": "contact_card_logo", "comment": null}, "contact_card_path": {"type": "string", "index": 95, "name": "contact_card_path", "comment": null}, "contact_card_message": {"type": "string", "index": 96, "name": "contact_card_message", "comment": null}, "system_messages_payer": {"type": "string", "index": 97, "name": "system_messages_payer", "comment": null}, "compliance_accepted_date": {"type": "timestamp", "index": 98, "name": "compliance_accepted_date", "comment": null}, "affiliate_payout_pref": {"type": "string", "index": 99, "name": "affiliate_payout_pref", "comment": null}, "affiliate_payout_email": {"type": "string", "index": 100, "name": "affiliate_payout_email", "comment": null}, "last_payout": {"type": "timestamp", "index": 101, "name": "last_payout", "comment": null}, "automatic_transliteration": {"type": "long", "index": 102, "name": "automatic_transliteration", "comment": null}, "use_local_number_for_subscription": {"type": "long", "index": 103, "name": "use_local_number_for_subscription", "comment": null}, "onboarding_completed": {"type": "long", "index": 104, "name": "onboarding_completed", "comment": null}, "industry": {"type": "string", "index": 105, "name": "industry", "comment": null}, "language": {"type": "string", "index": 106, "name": "language", "comment": null}, "created": {"type": "timestamp", "index": 107, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 108, "name": "modified", "comment": null}, "whitelisted": {"type": "long", "index": 109, "name": "whitelisted", "comment": null}, "shaft_status": {"type": "long", "index": 110, "name": "shaft_status", "comment": null}, "is_logical_deleted": {"type": "long", "index": 111, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__users"}, "model.yoda.sms_stg__users_events_log": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__users_events_log", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "platform": {"type": "string", "index": 4, "name": "platform", "comment": null}, "platform_user_id": {"type": "long", "index": 5, "name": "platform_user_id", "comment": null}, "user_id": {"type": "long", "index": 6, "name": "user_id", "comment": null}, "event": {"type": "string", "index": 7, "name": "event", "comment": null}, "event_type": {"type": "string", "index": 8, "name": "event_type", "comment": null}, "event_details": {"type": "string", "index": 9, "name": "event_details", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}, "is_logical_deleted": {"type": "long", "index": 11, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__users_events_log"}, "model.yoda.sms_stg__yotpo_organizations": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__yotpo_organizations", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "organization_key": {"type": "string", "index": 4, "name": "organization_key", "comment": null}, "organization_name": {"type": "string", "index": 5, "name": "organization_name", "comment": null}, "ac_requests_id": {"type": "long", "index": 6, "name": "ac_requests_id", "comment": null}, "created": {"type": "timestamp", "index": 7, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 8, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 9, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.sms_stg__yotpo_organizations"}, "model.yoda.sms_stg__yotpo_status_updates": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "sms_stg__yotpo_status_updates", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "queue_id": {"type": "long", "index": 4, "name": "queue_id", "comment": null}, "user_id": {"type": "long", "index": 5, "name": "user_id", "comment": null}, "event_id": {"type": "long", "index": 6, "name": "event_id", "comment": null}, "flow_id": {"type": "long", "index": 7, "name": "flow_id", "comment": null}, "from": {"type": "string", "index": 8, "name": "from", "comment": null}, "to": {"type": "string", "index": 9, "name": "to", "comment": null}, "uuid": {"type": "string", "index": 10, "name": "uuid", "comment": null}, "status": {"type": "string", "index": 11, "name": "status", "comment": null}, "created": {"type": "timestamp", "index": 12, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 13, "name": "modified", "comment": null}}, "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.yoda.sms_stg__yotpo_status_updates"}, "model.yoda.subscriptions__synergy_kpi_one_click_campaign": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "subscriptions__synergy_kpi_one_click_campaign", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 2, "name": "source_type", "comment": null}, "source_id": {"type": "long", "index": 3, "name": "source_id", "comment": null}, "order_id": {"type": "long", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "string", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "long", "index": 12, "name": "customer_external_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.subscriptions__synergy_kpi_one_click_campaign"}, "model.yoda.subscriptions__synergy_kpi_redeemed_points": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "subscriptions__synergy_kpi_redeemed_points", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 2, "name": "source_type", "comment": null}, "source_id": {"type": "long", "index": 3, "name": "source_id", "comment": null}, "order_id": {"type": "string", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "long", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "long", "index": 12, "name": "customer_external_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.subscriptions__synergy_kpi_redeemed_points"}, "model.yoda.subscriptions__synergy_kpi_sms_payment_failure": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "subscriptions__synergy_kpi_sms_payment_failure", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}, "source_type": {"type": "string", "index": 2, "name": "source_type", "comment": null}, "source_id": {"type": "long", "index": 3, "name": "source_id", "comment": null}, "order_id": {"type": "long", "index": 4, "name": "order_id", "comment": null}, "action_type": {"type": "string", "index": 5, "name": "action_type", "comment": null}, "action_id": {"type": "string", "index": 6, "name": "action_id", "comment": null}, "action_attribute_type": {"type": "string", "index": 7, "name": "action_attribute_type", "comment": null}, "action_attribute_value": {"type": "long", "index": 8, "name": "action_attribute_value", "comment": null}, "app_key": {"type": "string", "index": 9, "name": "app_key", "comment": null}, "customer_email": {"type": "string", "index": 10, "name": "customer_email", "comment": null}, "customer_phone_number": {"type": "string", "index": 11, "name": "customer_phone_number", "comment": null}, "customer_external_id": {"type": "string", "index": 12, "name": "customer_external_id", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_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.yoda.subscriptions__synergy_kpi_sms_payment_failure"}, "model.yoda.subscriptions_stg__billing_attempt_response": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "subscriptions_stg__billing_attempt_response", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "external_id": {"type": "long", "index": 5, "name": "external_id", "comment": null}, "external_order_id": {"type": "long", "index": 6, "name": "external_order_id", "comment": null}, "external_subscription_contract_id": {"type": "long", "index": 7, "name": "external_subscription_contract_id", "comment": null}, "status": {"type": "long", "index": 8, "name": "status", "comment": null}, "idempotency_key": {"type": "long", "index": 9, "name": "idempotency_key", "comment": null}, "ready": {"type": "boolean", "index": 10, "name": "ready", "comment": null}, "error_message": {"type": "string", "index": 11, "name": "error_message", "comment": null}, "created_at": {"type": "timestamp", "index": 12, "name": "created_at", "comment": null}, "is_logical_deleted": {"type": "long", "index": 13, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.subscriptions_stg__billing_attempt_response"}, "model.yoda.subscriptions_stg__subscription_contract": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "subscriptions_stg__subscription_contract", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "external_id": {"type": "long", "index": 5, "name": "external_id", "comment": null}, "status": {"type": "long", "index": 6, "name": "status", "comment": null}, "delivery_policy_interval": {"type": "long", "index": 7, "name": "delivery_policy_interval", "comment": null}, "delivery_policy_interval_count": {"type": "long", "index": 8, "name": "delivery_policy_interval_count", "comment": null}, "billing_policy_interval": {"type": "long", "index": 9, "name": "billing_policy_interval", "comment": null}, "billing_policy_interval_count": {"type": "long", "index": 10, "name": "billing_policy_interval_count", "comment": null}, "original_order_external_id": {"type": "long", "index": 11, "name": "original_order_external_id", "comment": null}, "external_customer_id": {"type": "long", "index": 12, "name": "external_customer_id", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 14, "name": "updated_at", "comment": null}, "status_last_updated_at": {"type": "timestamp", "index": 15, "name": "status_last_updated_at", "comment": null}, "is_logical_deleted": {"type": "long", "index": 16, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.subscriptions_stg__subscription_contract"}, "model.yoda.subscriptions_stg__synergy_sms_payment_failure": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "subscriptions_stg__synergy_sms_payment_failure", "database": null, "comment": null, "owner": "root"}, "columns": {"sms_id": {"type": "long", "index": 0, "name": "sms_id", "comment": null}, "number": {"type": "string", "index": 1, "name": "number", "comment": null}, "clicks_count": {"type": "long", "index": 2, "name": "clicks_count", "comment": null}, "processing_time": {"type": "timestamp", "index": 3, "name": "processing_time", "comment": null}, "app_key": {"type": "string", "index": 4, "name": "app_key", "comment": null}, "customer_id": {"type": "string", "index": 5, "name": "customer_id", "comment": null}, "contract_id": {"type": "string", "index": 6, "name": "contract_id", "comment": null}, "email": {"type": "string", "index": 7, "name": "email", "comment": null}}, "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.yoda.subscriptions_stg__synergy_sms_payment_failure"}, "model.yoda.subscriptions_stg__synergy_subs_payment_failure": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "subscriptions_stg__synergy_subs_payment_failure", "database": null, "comment": null, "owner": "root"}, "columns": {"sms_id": {"type": "long", "index": 0, "name": "sms_id", "comment": null}, "number": {"type": "string", "index": 1, "name": "number", "comment": null}, "clicks_count": {"type": "long", "index": 2, "name": "clicks_count", "comment": null}, "processing_time": {"type": "timestamp", "index": 3, "name": "processing_time", "comment": null}, "app_key": {"type": "string", "index": 4, "name": "app_key", "comment": null}, "customer_id": {"type": "string", "index": 5, "name": "customer_id", "comment": null}, "contract_id": {"type": "string", "index": 6, "name": "contract_id", "comment": null}, "email": {"type": "string", "index": 7, "name": "email", "comment": null}, "order_id": {"type": "long", "index": 8, "name": "order_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.subscriptions_stg__synergy_subs_payment_failure"}, "model.yoda.ugc__export_reviews": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc__export_reviews", "database": null, "comment": null, "owner": "root"}, "columns": {"app_key": {"type": "string", "index": 0, "name": "app_key", "comment": null}, "review_id": {"type": "long", "index": 1, "name": "review_id", "comment": null}, "review_creation_date": {"type": "timestamp", "index": 2, "name": "review_creation_date", "comment": null}, "review_type": {"type": "string", "index": 3, "name": "review_type", "comment": null}, "status": {"type": "string", "index": 4, "name": "status", "comment": null}, "status_details": {"type": "string", "index": 5, "name": "status_details", "comment": null}, "review_source": {"type": "string", "index": 6, "name": "review_source", "comment": null}, "review_score": {"type": "long", "index": 7, "name": "review_score", "comment": null}, "review_title": {"type": "string", "index": 8, "name": "review_title", "comment": null}, "review_content": {"type": "string", "index": 9, "name": "review_content", "comment": null}, "sentiment_score": {"type": "double", "index": 10, "name": "sentiment_score", "comment": null}, "profanity_flag": {"type": "boolean", "index": 11, "name": "profanity_flag", "comment": null}, "published_image_urls": {"type": "string", "index": 12, "name": "published_image_urls", "comment": null}, "unpublished_image_urls": {"type": "string", "index": 13, "name": "unpublished_image_urls", "comment": null}, "published_video_urls": {"type": "string", "index": 14, "name": "published_video_urls", "comment": null}, "unpublished_video_urls": {"type": "string", "index": 15, "name": "unpublished_video_urls", "comment": null}, "comment_date": {"type": "timestamp", "index": 16, "name": "comment_date", "comment": null}, "comment_content": {"type": "string", "index": 17, "name": "comment_content", "comment": null}, "comment_public": {"type": "long", "index": 18, "name": "comment_public", "comment": null}, "review_tags": {"type": "string", "index": 19, "name": "review_tags", "comment": null}, "review_tag_ids": {"type": "array", "index": 20, "name": "review_tag_ids", "comment": null}, "votes_up": {"type": "long", "index": 21, "name": "votes_up", "comment": null}, "votes_down": {"type": "long", "index": 22, "name": "votes_down", "comment": null}, "order_id": {"type": "string", "index": 23, "name": "order_id", "comment": null}, "order_date": {"type": "timestamp", "index": 24, "name": "order_date", "comment": null}, "pushed_to_social": {"type": "string", "index": 25, "name": "pushed_to_social", "comment": null}, "reviewer_display_name": {"type": "string", "index": 26, "name": "reviewer_display_name", "comment": null}, "reviewer_email": {"type": "string", "index": 27, "name": "reviewer_email", "comment": null}, "user_type": {"type": "string", "index": 28, "name": "user_type", "comment": null}, "country_code": {"type": "string", "index": 29, "name": "country_code", "comment": null}, "device_type": {"type": "string", "index": 30, "name": "device_type", "comment": null}, "product_id": {"type": "string", "index": 31, "name": "product_id", "comment": null}, "product_title": {"type": "string", "index": 32, "name": "product_title", "comment": null}, "product_description": {"type": "string", "index": 33, "name": "product_description", "comment": null}, "product_url": {"type": "string", "index": 34, "name": "product_url", "comment": null}, "product_image_url": {"type": "string", "index": 35, "name": "product_image_url", "comment": null}, "product_handle": {"type": "string", "index": 36, "name": "product_handle", "comment": null}, "product_created_at": {"type": "timestamp", "index": 37, "name": "product_created_at", "comment": null}, "product_group_id": {"type": "long", "index": 38, "name": "product_group_id", "comment": null}, "product_category": {"type": "string", "index": 39, "name": "product_category", "comment": null}, "product_upc": {"type": "string", "index": 40, "name": "product_upc", "comment": null}, "product_sku": {"type": "string", "index": 41, "name": "product_sku", "comment": null}, "product_brand": {"type": "string", "index": 42, "name": "product_brand", "comment": null}, "product_mpn": {"type": "string", "index": 43, "name": "product_mpn", "comment": null}, "product_isbn": {"type": "string", "index": 44, "name": "product_isbn", "comment": null}, "product_internal_id": {"type": "long", "index": 45, "name": "product_internal_id", "comment": null}, "incentivized_flag": {"type": "boolean", "index": 46, "name": "incentivized_flag", "comment": null}}, "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.yoda.ugc__export_reviews"}, "model.yoda.ugc__shopper_experience_order_aggregation": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc__shopper_experience_order_aggregation", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "currency": {"type": "string", "index": 2, "name": "currency", "comment": null}, "orders_sum_of_interacted_users": {"type": "double", "index": 3, "name": "orders_sum_of_interacted_users", "comment": null}, "orders_count_of_interacted_users": {"type": "long", "index": 4, "name": "orders_count_of_interacted_users", "comment": null}, "interacted_users_with_orders": {"type": "long", "index": 5, "name": "interacted_users_with_orders", "comment": null}, "interacted_users_without_orders": {"type": "long", "index": 6, "name": "interacted_users_without_orders", "comment": null}, "orders_sum_of_non_interacted_users": {"type": "double", "index": 7, "name": "orders_sum_of_non_interacted_users", "comment": null}, "orders_count_of_non_interacted_users": {"type": "long", "index": 8, "name": "orders_count_of_non_interacted_users", "comment": null}, "non_interacted_users_with_orders": {"type": "long", "index": 9, "name": "non_interacted_users_with_orders", "comment": null}, "non_interacted_users_without_orders": {"type": "long", "index": 10, "name": "non_interacted_users_without_orders", "comment": null}}, "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.yoda.ugc__shopper_experience_order_aggregation"}, "model.yoda.ugc__shopper_experience_store_aggregation": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc__shopper_experience_store_aggregation", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "total_users": {"type": "long", "index": 2, "name": "total_users", "comment": null}, "interacted_users": {"type": "long", "index": 3, "name": "interacted_users", "comment": null}, "non_interacted_users": {"type": "long", "index": 4, "name": "non_interacted_users", "comment": null}, "interacted_users_with_orders": {"type": "long", "index": 5, "name": "interacted_users_with_orders", "comment": null}, "interacted_users_without_orders": {"type": "long", "index": 6, "name": "interacted_users_without_orders", "comment": null}, "non_interacted_users_with_orders": {"type": "long", "index": 7, "name": "non_interacted_users_with_orders", "comment": null}, "non_interacted_users_without_orders": {"type": "long", "index": 8, "name": "non_interacted_users_without_orders", "comment": null}}, "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.yoda.ugc__shopper_experience_store_aggregation"}, "model.yoda.ugc__shopper_experience_widget_engagement_aggregation": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc__shopper_experience_widget_engagement_aggregation", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "widget": {"type": "string", "index": 2, "name": "widget", "comment": null}, "total_interacted_users": {"type": "long", "index": 3, "name": "total_interacted_users", "comment": null}, "total_non_interacted_users": {"type": "long", "index": 4, "name": "total_non_interacted_users", "comment": null}}, "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.yoda.ugc__shopper_experience_widget_engagement_aggregation"}, "model.yoda.ugc__shopper_experience_widget_order_aggregation": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc__shopper_experience_widget_order_aggregation", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "widget": {"type": "string", "index": 2, "name": "widget", "comment": null}, "currency": {"type": "string", "index": 3, "name": "currency", "comment": null}, "orders_count": {"type": "long", "index": 4, "name": "orders_count", "comment": null}, "orders_sum_interacted_users": {"type": "double", "index": 5, "name": "orders_sum_interacted_users", "comment": null}, "orders_count_of_interacted_users": {"type": "long", "index": 6, "name": "orders_count_of_interacted_users", "comment": null}, "orders_sum_non_interacted_users": {"type": "double", "index": 7, "name": "orders_sum_non_interacted_users", "comment": null}, "orders_count_of_non_interacted_users": {"type": "long", "index": 8, "name": "orders_count_of_non_interacted_users", "comment": null}}, "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.yoda.ugc__shopper_experience_widget_order_aggregation"}, "model.yoda.ugc_stg__anonymous_users": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__anonymous_users", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "email": {"type": "string", "index": 4, "name": "email", "comment": null}, "display_name": {"type": "string", "index": 5, "name": "display_name", "comment": null}, "token": {"type": "string", "index": 6, "name": "token", "comment": null}, "user_id": {"type": "long", "index": 7, "name": "user_id", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_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.yoda.ugc_stg__anonymous_users"}, "model.yoda.ugc_stg__comments": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__comments", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "commentable_id": {"type": "long", "index": 4, "name": "commentable_id", "comment": null}, "content": {"type": "string", "index": 5, "name": "content", "comment": null}, "commenter_display_name": {"type": "string", "index": 6, "name": "commenter_display_name", "comment": null}, "public": {"type": "long", "index": 7, "name": "public", "comment": null}, "source_comment_id": {"type": "long", "index": 8, "name": "source_comment_id", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "commentable_type": {"type": "string", "index": 11, "name": "commentable_type", "comment": null}, "user_type": {"type": "string", "index": 12, "name": "user_type", "comment": null}, "user_id": {"type": "string", "index": 13, "name": "user_id", "comment": null}, "approved": {"type": "long", "index": 14, "name": "approved", "comment": null}}, "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.yoda.ugc_stg__comments"}, "model.yoda.ugc_stg__dirty_words": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__dirty_words", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "model_type": {"type": "string", "index": 4, "name": "model_type", "comment": null}, "model_id": {"type": "long", "index": 5, "name": "model_id", "comment": null}, "words": {"type": "string", "index": 6, "name": "words", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.ugc_stg__dirty_words"}, "model.yoda.ugc_stg__images": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__images", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "image_file_name": {"type": "string", "index": 5, "name": "image_file_name", "comment": null}, "image_content_type": {"type": "string", "index": 6, "name": "image_content_type", "comment": null}, "image_file_size": {"type": "long", "index": 7, "name": "image_file_size", "comment": null}, "image_updated_at": {"type": "timestamp", "index": 8, "name": "image_updated_at", "comment": null}, "image_width": {"type": "long", "index": 9, "name": "image_width", "comment": null}, "image_height": {"type": "long", "index": 10, "name": "image_height", "comment": null}, "imageable_id": {"type": "long", "index": 11, "name": "imageable_id", "comment": null}, "imageable_type": {"type": "string", "index": 12, "name": "imageable_type", "comment": null}, "yotpo_resource_id": {"type": "long", "index": 13, "name": "yotpo_resource_id", "comment": null}, "created_at": {"type": "timestamp", "index": 14, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 15, "name": "updated_at", "comment": null}, "kind": {"type": "string", "index": 16, "name": "kind", "comment": null}, "image_fingerprint": {"type": "string", "index": 17, "name": "image_fingerprint", "comment": null}, "url": {"type": "string", "index": 18, "name": "url", "comment": null}, "published": {"type": "long", "index": 19, "name": "published", "comment": null}}, "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.yoda.ugc_stg__images"}, "model.yoda.ugc_stg__metadata_types": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__metadata_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "value": {"type": "string", "index": 4, "name": "value", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_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.yoda.ugc_stg__metadata_types"}, "model.yoda.ugc_stg__moderation_audits": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__moderation_audits", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_id": {"type": "long", "index": 4, "name": "review_id", "comment": null}, "email": {"type": "string", "index": 5, "name": "email", "comment": null}, "display_name": {"type": "string", "index": 6, "name": "display_name", "comment": null}, "action_type": {"type": "string", "index": 7, "name": "action_type", "comment": null}, "reason": {"type": "string", "index": 8, "name": "reason", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_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.yoda.ugc_stg__moderation_audits"}, "model.yoda.ugc_stg__mongo_gallery_media": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__mongo_gallery_media", "database": null, "comment": null, "owner": "root"}, "columns": {"_id": {"type": "string", "index": 0, "name": "_id", "comment": null}, "created_at": {"type": "string", "index": 1, "name": "created_at", "comment": null}, "entry_id": {"type": "string", "index": 2, "name": "entry_id", "comment": null}, "gallery_id": {"type": "string", "index": 3, "name": "gallery_id", "comment": null}, "media_id": {"type": "string", "index": 4, "name": "media_id", "comment": null}, "media_type": {"type": "string", "index": 5, "name": "media_type", "comment": null}, "mention": {"type": "struct", "index": 6, "name": "mention", "comment": null}, "origin_gm_id": {"type": "string", "index": 7, "name": "origin_gm_id", "comment": null}, "permission_request": {"type": "struct", "index": 8, "name": "permission_request", "comment": null}, "published_at": {"type": "string", "index": 9, "name": "published_at", "comment": null}, "review_syndication": {"type": "string", "index": 10, "name": "review_syndication", "comment": null}, "show_in_new": {"type": "string", "index": 11, "name": "show_in_new", "comment": null}, "source_account_app_key": {"type": "string", "index": 12, "name": "source_account_app_key", "comment": null}, "starred": {"type": "string", "index": 13, "name": "starred", "comment": null}, "status": {"type": "string", "index": 14, "name": "status", "comment": null}, "syndicated_image_id": {"type": "string", "index": 15, "name": "syndicated_image_id", "comment": null}, "tagged_products": {"type": "array", "index": 16, "name": "tagged_products", "comment": null}, "text": {"type": "string", "index": 17, "name": "text", "comment": null}, "thumbs_down": {"type": "string", "index": 18, "name": "thumbs_down", "comment": null}, "thumbs_up": {"type": "string", "index": 19, "name": "thumbs_up", "comment": null}, "updated_at": {"type": "string", "index": 20, "name": "updated_at", "comment": null}, "video": {"type": "struct", "index": 21, "name": "video", "comment": null}, "vms_syndication": {"type": "string", "index": 22, "name": "vms_syndication", "comment": null}}, "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.yoda.ugc_stg__mongo_gallery_media"}, "model.yoda.ugc_stg__relevant_reviews_subject": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__relevant_reviews_subject", "database": null, "comment": null, "owner": "root"}, "columns": {"review_id": {"type": "long", "index": 0, "name": "review_id", "comment": null}, "subject_id": {"type": "long", "index": 1, "name": "subject_id", "comment": null}, "subject_entity_type": {"type": "string", "index": 2, "name": "subject_entity_type", "comment": null}, "deactivated": {"type": "long", "index": 3, "name": "deactivated", "comment": null}, "updated_at": {"type": "timestamp", "index": 4, "name": "updated_at", "comment": null}, "account_id": {"type": "long", "index": 5, "name": "account_id", "comment": null}, "app_key": {"type": "string", "index": 6, "name": "app_key", "comment": null}, "review_type": {"type": "string", "index": 7, "name": "review_type", "comment": null}, "review_source": {"type": "string", "index": 8, "name": "review_source", "comment": null}, "review_title": {"type": "string", "index": 9, "name": "review_title", "comment": null}, "review_content": {"type": "string", "index": 10, "name": "review_content", "comment": null}, "review_score": {"type": "long", "index": 11, "name": "review_score", "comment": null}, "review_date": {"type": "timestamp", "index": 12, "name": "review_date", "comment": null}, "archived": {"type": "long", "index": 13, "name": "archived", "comment": null}, "escalated": {"type": "long", "index": 14, "name": "escalated", "comment": null}, "sentiment_score": {"type": "double", "index": 15, "name": "sentiment_score", "comment": null}, "reviewer_display_name": {"type": "string", "index": 16, "name": "reviewer_display_name", "comment": null}, "status": {"type": "string", "index": 17, "name": "status", "comment": null}, "pushed_to_social": {"type": "string", "index": 18, "name": "pushed_to_social", "comment": null}, "user_id": {"type": "long", "index": 19, "name": "user_id", "comment": null}, "user_type": {"type": "string", "index": 20, "name": "user_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.yoda.ugc_stg__relevant_reviews_subject"}, "model.yoda.ugc_stg__reminders": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__reminders", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "account_id": {"type": "long", "index": 4, "name": "account_id", "comment": null}, "days_from_purchase": {"type": "long", "index": 5, "name": "days_from_purchase", "comment": null}, "subject": {"type": "string", "index": 6, "name": "subject", "comment": null}, "body": {"type": "string", "index": 7, "name": "body", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "header": {"type": "string", "index": 10, "name": "header", "comment": null}, "bottom": {"type": "string", "index": 11, "name": "bottom", "comment": null}, "mail_interval": {"type": "long", "index": 12, "name": "mail_interval", "comment": null}, "max_products": {"type": "long", "index": 13, "name": "max_products", "comment": null}, "didnt_get_product_link": {"type": "string", "index": 14, "name": "didnt_get_product_link", "comment": null}, "enabled": {"type": "long", "index": 15, "name": "enabled", "comment": null}, "email_submission_type_id": {"type": "long", "index": 16, "name": "email_submission_type_id", "comment": null}, "formless_call_to_action": {"type": "string", "index": 17, "name": "formless_call_to_action", "comment": null}}, "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.yoda.ugc_stg__reminders"}, "model.yoda.ugc_stg__review_metadatas": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__review_metadatas", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_id": {"type": "long", "index": 4, "name": "review_id", "comment": null}, "metadata_type_id": {"type": "long", "index": 5, "name": "metadata_type_id", "comment": null}, "metadata_type_value": {"type": "string", "index": 6, "name": "metadata_type_value", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.ugc_stg__review_metadatas"}, "model.yoda.ugc_stg__review_order_line": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__review_order_line", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_id": {"type": "long", "index": 4, "name": "review_id", "comment": null}, "order_line_id": {"type": "long", "index": 5, "name": "order_line_id", "comment": null}, "product_app_variant_id": {"type": "long", "index": 6, "name": "product_app_variant_id", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.ugc_stg__review_order_line"}, "model.yoda.ugc_stg__review_request_tokens": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__review_request_tokens", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "token": {"type": "string", "index": 4, "name": "token", "comment": null}, "caller_type": {"type": "string", "index": 5, "name": "caller_type", "comment": null}, "caller_id": {"type": "long", "index": 6, "name": "caller_id", "comment": null}, "repliable_type": {"type": "string", "index": 7, "name": "repliable_type", "comment": null}, "repliable_identifier": {"type": "long", "index": 8, "name": "repliable_identifier", "comment": null}, "review_source_type_id": {"type": "long", "index": 9, "name": "review_source_type_id", "comment": null}, "review_id": {"type": "long", "index": 10, "name": "review_id", "comment": null}, "created_at": {"type": "timestamp", "index": 11, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 12, "name": "updated_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.yoda.ugc_stg__review_request_tokens"}, "model.yoda.ugc_stg__review_source_types": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__review_source_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_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.yoda.ugc_stg__review_source_types"}, "model.yoda.ugc_stg__review_tags": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__review_tags", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "account_id": {"type": "long", "index": 4, "name": "account_id", "comment": null}, "name": {"type": "string", "index": 5, "name": "name", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_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.yoda.ugc_stg__review_tags"}, "model.yoda.ugc_stg__review_types": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__review_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "description": {"type": "string", "index": 5, "name": "description", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_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.yoda.ugc_stg__review_types"}, "model.yoda.ugc_stg__reviews": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__reviews", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "source_app_key": {"type": "string", "index": 4, "name": "source_app_key", "comment": null}, "title": {"type": "string", "index": 5, "name": "title", "comment": null}, "reviewer_display_name": {"type": "string", "index": 6, "name": "reviewer_display_name", "comment": null}, "content": {"type": "string", "index": 7, "name": "content", "comment": null}, "user_id": {"type": "long", "index": 8, "name": "user_id", "comment": null}, "score": {"type": "long", "index": 9, "name": "score", "comment": null}, "deleted": {"type": "long", "index": 10, "name": "deleted", "comment": null}, "app_key": {"type": "string", "index": 11, "name": "app_key", "comment": null}, "created_at": {"type": "timestamp", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 13, "name": "updated_at", "comment": null}, "new": {"type": "long", "index": 14, "name": "new", "comment": null}, "user_type": {"type": "string", "index": 15, "name": "user_type", "comment": null}, "verified_buyer": {"type": "long", "index": 16, "name": "verified_buyer", "comment": null}, "archived": {"type": "long", "index": 17, "name": "archived", "comment": null}, "shop_owner": {"type": "long", "index": 18, "name": "shop_owner", "comment": null}, "twitter_pushed": {"type": "long", "index": 19, "name": "twitter_pushed", "comment": null}, "facebook_pushed": {"type": "long", "index": 20, "name": "facebook_pushed", "comment": null}, "review_source_type_id": {"type": "long", "index": 21, "name": "review_source_type_id", "comment": null}, "votes_up": {"type": "long", "index": 22, "name": "votes_up", "comment": null}, "votes_down": {"type": "long", "index": 23, "name": "votes_down", "comment": null}, "review_type_id": {"type": "long", "index": 24, "name": "review_type_id", "comment": null}, "source_review_id": {"type": "long", "index": 25, "name": "source_review_id", "comment": null}, "sentiment": {"type": "double", "index": 26, "name": "sentiment", "comment": null}, "escalated": {"type": "long", "index": 27, "name": "escalated", "comment": null}}, "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.yoda.ugc_stg__reviews"}, "model.yoda.ugc_stg__reviews_incentivized": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__reviews_incentivized", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 2, "name": "ts_ms", "comment": null}, "review_id": {"type": "long", "index": 3, "name": "review_id", "comment": null}, "reviews_incentivized_type_id": {"type": "long", "index": 4, "name": "reviews_incentivized_type_id", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_at", "comment": null}}, "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.yoda.ugc_stg__reviews_incentivized"}, "model.yoda.ugc_stg__reviews_subjects": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__reviews_subjects", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_id": {"type": "long", "index": 4, "name": "review_id", "comment": null}, "account_id": {"type": "long", "index": 5, "name": "account_id", "comment": null}, "subject_entity_type": {"type": "string", "index": 6, "name": "subject_entity_type", "comment": null}, "subject_id": {"type": "long", "index": 7, "name": "subject_id", "comment": null}, "deactivated": {"type": "long", "index": 8, "name": "deactivated", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_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.yoda.ugc_stg__reviews_subjects"}, "model.yoda.ugc_stg__tags_to_reviews": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__tags_to_reviews", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_tag_id": {"type": "long", "index": 4, "name": "review_tag_id", "comment": null}, "review_id": {"type": "long", "index": 5, "name": "review_id", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.yoda.ugc_stg__tags_to_reviews"}, "model.yoda.ugc_stg__users": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__users", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "first_name": {"type": "string", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 5, "name": "last_name", "comment": null}, "display_name": {"type": "string", "index": 6, "name": "display_name", "comment": null}, "email": {"type": "string", "index": 7, "name": "email", "comment": null}, "bio": {"type": "string", "index": 8, "name": "bio", "comment": null}, "privilege_type_id": {"type": "long", "index": 9, "name": "privilege_type_id", "comment": null}, "active": {"type": "long", "index": 10, "name": "active", "comment": null}, "slug": {"type": "string", "index": 11, "name": "slug", "comment": null}, "temp_email": {"type": "string", "index": 12, "name": "temp_email", "comment": null}, "featured_image_id": {"type": "long", "index": 13, "name": "featured_image_id", "comment": null}, "social_image": {"type": "string", "index": 14, "name": "social_image", "comment": null}, "created_at": {"type": "timestamp", "index": 15, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 16, "name": "updated_at", "comment": null}, "social_score": {"type": "double", "index": 17, "name": "social_score", "comment": null}, "yotpo_score": {"type": "double", "index": 18, "name": "yotpo_score", "comment": null}, "company": {"type": "string", "index": 19, "name": "company", "comment": null}, "position": {"type": "string", "index": 20, "name": "position", "comment": null}, "encrypted_password": {"type": "string", "index": 21, "name": "encrypted_password", "comment": null}, "reset_password_token": {"type": "string", "index": 22, "name": "reset_password_token", "comment": null}, "reset_password_sent_at": {"type": "timestamp", "index": 23, "name": "reset_password_sent_at", "comment": null}, "remember_created_at": {"type": "timestamp", "index": 24, "name": "remember_created_at", "comment": null}, "sign_in_count": {"type": "long", "index": 25, "name": "sign_in_count", "comment": null}, "current_sign_in_at": {"type": "timestamp", "index": 26, "name": "current_sign_in_at", "comment": null}, "last_sign_in_at": {"type": "timestamp", "index": 27, "name": "last_sign_in_at", "comment": null}, "current_sign_in_ip": {"type": "string", "index": 28, "name": "current_sign_in_ip", "comment": null}, "last_sign_in_ip": {"type": "string", "index": 29, "name": "last_sign_in_ip", "comment": null}, "confirmation_token": {"type": "string", "index": 30, "name": "confirmation_token", "comment": null}, "confirmed_at": {"type": "timestamp", "index": 31, "name": "confirmed_at", "comment": null}, "confirmation_sent_at": {"type": "timestamp", "index": 32, "name": "confirmation_sent_at", "comment": null}, "unconfirmed_email": {"type": "string", "index": 33, "name": "unconfirmed_email", "comment": null}, "failed_attempts": {"type": "long", "index": 34, "name": "failed_attempts", "comment": null}, "unlock_token": {"type": "string", "index": 35, "name": "unlock_token", "comment": null}, "locked_at": {"type": "timestamp", "index": 36, "name": "locked_at", "comment": null}, "phone": {"type": "string", "index": 37, "name": "phone", "comment": null}, "sign_up_ip": {"type": "string", "index": 38, "name": "sign_up_ip", "comment": null}, "sign_up_country": {"type": "string", "index": 39, "name": "sign_up_country", "comment": null}, "masked_pii": {"type": "long", "index": 40, "name": "masked_pii", "comment": null}, "password_updated_at": {"type": "timestamp", "index": 41, "name": "password_updated_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.yoda.ugc_stg__users"}, "model.yoda.ugc_stg__videos": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__videos", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "videoable_id": {"type": "long", "index": 4, "name": "videoable_id", "comment": null}, "videoable_type": {"type": "string", "index": 5, "name": "videoable_type", "comment": null}, "video_key": {"type": "string", "index": 6, "name": "video_key", "comment": null}, "published": {"type": "long", "index": 7, "name": "published", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_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.yoda.ugc_stg__videos"}, "model.yoda.ugc_stg__votes": {"metadata": {"type": "view", "schema": "dev_dkruh1", "name": "ugc_stg__votes", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "voteable_id": {"type": "long", "index": 5, "name": "voteable_id", "comment": null}, "vote": {"type": "long", "index": 6, "name": "vote", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "voteable_type": {"type": "string", "index": 9, "name": "voteable_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.yoda.ugc_stg__votes"}}, "sources": {"source.yoda.infra__infra_metrics.infra_raw_metrics": {"metadata": {"type": "table", "schema": "infra_metrics", "name": "infra_raw_metrics", "database": null, "comment": null, "owner": "root"}, "columns": {"ts": {"type": "timestamp", "index": 0, "name": "ts", "comment": null}, "product_line": {"type": "string", "index": 1, "name": "product_line", "comment": null}, "source": {"type": "string", "index": 2, "name": "source", "comment": null}, "component": {"type": "string", "index": 3, "name": "component", "comment": null}, "key": {"type": "string", "index": 4, "name": "key", "comment": null}, "value": {"type": "integer", "index": 5, "name": "value", "comment": null}, "custom_properties": {"type": "string", "index": 6, "name": "custom_properties", "comment": null}}, "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.yoda.infra__infra_metrics.infra_raw_metrics"}, "source.yoda.infra__infra_metrics.upsolver_raw_output": {"metadata": {"type": "table", "schema": "infra_metrics", "name": "upsolver_raw_output", "database": null, "comment": null, "owner": "root"}, "columns": {"name": {"type": "string", "index": 0, "name": "name", "comment": null}, "databaseName": {"type": "string", "index": 1, "name": "databaseName", "comment": null}, "tableName": {"type": "string", "index": 2, "name": "tableName", "comment": null}, "workspaceName": {"type": "string", "index": 3, "name": "workspaceName", "comment": null}, "ts": {"type": "string", "index": 4, "name": "ts", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 254615.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__infra_metrics.upsolver_raw_output"}, "source.yoda.platform__pixel.onsite_v2": {"metadata": {"type": "view", "schema": "pixel", "name": "onsite_v2", "database": null, "comment": null, "owner": "root"}, "columns": {"partition_date": {"type": "string", "index": 0, "name": "partition_date", "comment": null}, "hour": {"type": "string", "index": 1, "name": "hour", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "br_colordepth": {"type": "string", "index": 3, "name": "br_colordepth", "comment": null}, "br_cookies": {"type": "long", "index": 4, "name": "br_cookies", "comment": null}, "br_family": {"type": "string", "index": 5, "name": "br_family", "comment": null}, "br_features_director": {"type": "long", "index": 6, "name": "br_features_director", "comment": null}, "br_features_flash": {"type": "long", "index": 7, "name": "br_features_flash", "comment": null}, "br_features_gears": {"type": "long", "index": 8, "name": "br_features_gears", "comment": null}, "br_features_java": {"type": "long", "index": 9, "name": "br_features_java", "comment": null}, "br_features_pdf": {"type": "long", "index": 10, "name": "br_features_pdf", "comment": null}, "br_features_quicktime": {"type": "long", "index": 11, "name": "br_features_quicktime", "comment": null}, "br_features_realplayer": {"type": "long", "index": 12, "name": "br_features_realplayer", "comment": null}, "br_features_silverlight": {"type": "long", "index": 13, "name": "br_features_silverlight", "comment": null}, "br_features_windowsmedia": {"type": "long", "index": 14, "name": "br_features_windowsmedia", "comment": null}, "br_lang": {"type": "string", "index": 15, "name": "br_lang", "comment": null}, "br_major": {"type": "string", "index": 16, "name": "br_major", "comment": null}, "br_minor": {"type": "string", "index": 17, "name": "br_minor", "comment": null}, "br_viewheight": {"type": "long", "index": 18, "name": "br_viewheight", "comment": null}, "br_viewwidth": {"type": "long", "index": 19, "name": "br_viewwidth", "comment": null}, "collector_day": {"type": "string", "index": 20, "name": "collector_day", "comment": null}, "collector_epoch": {"type": "long", "index": 21, "name": "collector_epoch", "comment": null}, "collector_month": {"type": "string", "index": 22, "name": "collector_month", "comment": null}, "collector_tstamp": {"type": "string", "index": 23, "name": "collector_tstamp", "comment": null}, "collector_year": {"type": "string", "index": 24, "name": "collector_year", "comment": null}, "context": {"type": "string", "index": 25, "name": "context", "comment": null}, "device_family": {"type": "string", "index": 26, "name": "device_family", "comment": null}, "doc_charset": {"type": "string", "index": 27, "name": "doc_charset", "comment": null}, "doc_height": {"type": "long", "index": 28, "name": "doc_height", "comment": null}, "doc_width": {"type": "long", "index": 29, "name": "doc_width", "comment": null}, "domain_sessionidx": {"type": "long", "index": 30, "name": "domain_sessionidx", "comment": null}, "domain_userid": {"type": "string", "index": 31, "name": "domain_userid", "comment": null}, "dvce_screenheight": {"type": "long", "index": 32, "name": "dvce_screenheight", "comment": null}, "dvce_screenwidth": {"type": "long", "index": 33, "name": "dvce_screenwidth", "comment": null}, "dvce_tstamp": {"type": "string", "index": 34, "name": "dvce_tstamp", "comment": null}, "event_id": {"type": "string", "index": 35, "name": "event_id", "comment": null}, "event_vendor": {"type": "string", "index": 36, "name": "event_vendor", "comment": null}, "event": {"type": "string", "index": 37, "name": "event", "comment": null}, "geo_city": {"type": "string", "index": 38, "name": "geo_city", "comment": null}, "geo_country": {"type": "string", "index": 39, "name": "geo_country", "comment": null}, "geo_latitude": {"type": "double", "index": 40, "name": "geo_latitude", "comment": null}, "geo_longitude": {"type": "double", "index": 41, "name": "geo_longitude", "comment": null}, "geo_region": {"type": "string", "index": 42, "name": "geo_region", "comment": null}, "geo_zipcode": {"type": "string", "index": 43, "name": "geo_zipcode", "comment": null}, "mkt_campaign": {"type": "string", "index": 44, "name": "mkt_campaign", "comment": null}, "mkt_content": {"type": "string", "index": 45, "name": "mkt_content", "comment": null}, "mkt_medium": {"type": "string", "index": 46, "name": "mkt_medium", "comment": null}, "mkt_source": {"type": "string", "index": 47, "name": "mkt_source", "comment": null}, "mkt_term": {"type": "string", "index": 48, "name": "mkt_term", "comment": null}, "os_family": {"type": "string", "index": 49, "name": "os_family", "comment": null}, "os_major": {"type": "string", "index": 50, "name": "os_major", "comment": null}, "os_minor": {"type": "string", "index": 51, "name": "os_minor", "comment": null}, "os_timezone": {"type": "string", "index": 52, "name": "os_timezone", "comment": null}, "page_referrer": {"type": "string", "index": 53, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 54, "name": "page_title", "comment": null}, "page_urlfragment": {"type": "string", "index": 55, "name": "page_urlfragment", "comment": null}, "page_urlhost": {"type": "string", "index": 56, "name": "page_urlhost", "comment": null}, "page_urlpath": {"type": "string", "index": 57, "name": "page_urlpath", "comment": null}, "page_urlport": {"type": "long", "index": 58, "name": "page_urlport", "comment": null}, "page_urlquery": {"type": "string", "index": 59, "name": "page_urlquery", "comment": null}, "page_url": {"type": "string", "index": 60, "name": "page_url", "comment": null}, "page_urlscheme": {"type": "string", "index": 61, "name": "page_urlscheme", "comment": null}, "platform": {"type": "string", "index": 62, "name": "platform", "comment": null}, "pp_xoffset_max": {"type": "long", "index": 63, "name": "pp_xoffset_max", "comment": null}, "pp_xoffset_min": {"type": "long", "index": 64, "name": "pp_xoffset_min", "comment": null}, "pp_yoffset_max": {"type": "long", "index": 65, "name": "pp_yoffset_max", "comment": null}, "pp_yoffset_min": {"type": "long", "index": 66, "name": "pp_yoffset_min", "comment": null}, "refr_medium": {"type": "string", "index": 67, "name": "refr_medium", "comment": null}, "refr_source": {"type": "string", "index": 68, "name": "refr_source", "comment": null}, "refr_term": {"type": "string", "index": 69, "name": "refr_term", "comment": null}, "refr_urlfragment": {"type": "string", "index": 70, "name": "refr_urlfragment", "comment": null}, "refr_urlhost": {"type": "string", "index": 71, "name": "refr_urlhost", "comment": null}, "refr_urlpath": {"type": "string", "index": 72, "name": "refr_urlpath", "comment": null}, "refr_urlport": {"type": "long", "index": 73, "name": "refr_urlport", "comment": null}, "refr_urlquery": {"type": "string", "index": 74, "name": "refr_urlquery", "comment": null}, "refr_urlscheme": {"type": "string", "index": 75, "name": "refr_urlscheme", "comment": null}, "se_action": {"type": "string", "index": 76, "name": "se_action", "comment": null}, "se_category": {"type": "string", "index": 77, "name": "se_category", "comment": null}, "se_label": {"type": "string", "index": 78, "name": "se_label", "comment": null}, "se_page_sku": {"type": "string", "index": 79, "name": "se_page_sku", "comment": null}, "se_property": {"type": "string", "index": 80, "name": "se_property", "comment": null}, "se_testing_groups": {"type": "string", "index": 81, "name": "se_testing_groups", "comment": null}, "se_value": {"type": "string", "index": 82, "name": "se_value", "comment": null}, "tr_currency": {"type": "string", "index": 83, "name": "tr_currency", "comment": null}, "tr_orderid": {"type": "string", "index": 84, "name": "tr_orderid", "comment": null}, "tr_total": {"type": "string", "index": 85, "name": "tr_total", "comment": null}, "txn_id": {"type": "string", "index": 86, "name": "txn_id", "comment": null}, "user_fingerprint": {"type": "string", "index": 87, "name": "user_fingerprint", "comment": null}, "useragent": {"type": "string", "index": 88, "name": "useragent", "comment": null}, "v_collector": {"type": "string", "index": 89, "name": "v_collector", "comment": null}, "v_etl": {"type": "string", "index": 90, "name": "v_etl", "comment": null}, "v_tracker": {"type": "string", "index": 91, "name": "v_tracker", "comment": null}, "y_fingerprint": {"type": "string", "index": 92, "name": "y_fingerprint", "comment": null}, "user_id": {"type": "string", "index": 93, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__pixel.onsite_v2"}, "source.yoda.platform__pixel.onsite_v3": {"metadata": {"type": "view", "schema": "pixel", "name": "onsite_v3", "database": null, "comment": null, "owner": "root"}, "columns": {"partition_date": {"type": "string", "index": 0, "name": "partition_date", "comment": null}, "hour": {"type": "string", "index": 1, "name": "hour", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "br_colordepth": {"type": "string", "index": 3, "name": "br_colordepth", "comment": null}, "br_cookies": {"type": "long", "index": 4, "name": "br_cookies", "comment": null}, "br_family": {"type": "string", "index": 5, "name": "br_family", "comment": null}, "br_features_director": {"type": "long", "index": 6, "name": "br_features_director", "comment": null}, "br_features_flash": {"type": "long", "index": 7, "name": "br_features_flash", "comment": null}, "br_features_gears": {"type": "long", "index": 8, "name": "br_features_gears", "comment": null}, "br_features_java": {"type": "long", "index": 9, "name": "br_features_java", "comment": null}, "br_features_pdf": {"type": "long", "index": 10, "name": "br_features_pdf", "comment": null}, "br_features_quicktime": {"type": "long", "index": 11, "name": "br_features_quicktime", "comment": null}, "br_features_realplayer": {"type": "long", "index": 12, "name": "br_features_realplayer", "comment": null}, "br_features_silverlight": {"type": "long", "index": 13, "name": "br_features_silverlight", "comment": null}, "br_features_windowsmedia": {"type": "long", "index": 14, "name": "br_features_windowsmedia", "comment": null}, "br_lang": {"type": "string", "index": 15, "name": "br_lang", "comment": null}, "br_major": {"type": "string", "index": 16, "name": "br_major", "comment": null}, "br_minor": {"type": "string", "index": 17, "name": "br_minor", "comment": null}, "br_viewheight": {"type": "long", "index": 18, "name": "br_viewheight", "comment": null}, "br_viewwidth": {"type": "long", "index": 19, "name": "br_viewwidth", "comment": null}, "collector_day": {"type": "string", "index": 20, "name": "collector_day", "comment": null}, "collector_epoch": {"type": "long", "index": 21, "name": "collector_epoch", "comment": null}, "collector_month": {"type": "string", "index": 22, "name": "collector_month", "comment": null}, "collector_tstamp": {"type": "string", "index": 23, "name": "collector_tstamp", "comment": null}, "collector_year": {"type": "string", "index": 24, "name": "collector_year", "comment": null}, "context": {"type": "string", "index": 25, "name": "context", "comment": null}, "device_family": {"type": "string", "index": 26, "name": "device_family", "comment": null}, "doc_charset": {"type": "string", "index": 27, "name": "doc_charset", "comment": null}, "doc_height": {"type": "long", "index": 28, "name": "doc_height", "comment": null}, "doc_width": {"type": "long", "index": 29, "name": "doc_width", "comment": null}, "domain_sessionidx": {"type": "long", "index": 30, "name": "domain_sessionidx", "comment": null}, "domain_userid": {"type": "string", "index": 31, "name": "domain_userid", "comment": null}, "dvce_screenheight": {"type": "long", "index": 32, "name": "dvce_screenheight", "comment": null}, "dvce_screenwidth": {"type": "long", "index": 33, "name": "dvce_screenwidth", "comment": null}, "dvce_tstamp": {"type": "string", "index": 34, "name": "dvce_tstamp", "comment": null}, "event_id": {"type": "string", "index": 35, "name": "event_id", "comment": null}, "event_vendor": {"type": "string", "index": 36, "name": "event_vendor", "comment": null}, "event": {"type": "string", "index": 37, "name": "event", "comment": null}, "geo_city": {"type": "string", "index": 38, "name": "geo_city", "comment": null}, "geo_country": {"type": "string", "index": 39, "name": "geo_country", "comment": null}, "geo_latitude": {"type": "double", "index": 40, "name": "geo_latitude", "comment": null}, "geo_longitude": {"type": "double", "index": 41, "name": "geo_longitude", "comment": null}, "geo_region": {"type": "string", "index": 42, "name": "geo_region", "comment": null}, "geo_zipcode": {"type": "string", "index": 43, "name": "geo_zipcode", "comment": null}, "mkt_campaign": {"type": "string", "index": 44, "name": "mkt_campaign", "comment": null}, "mkt_content": {"type": "string", "index": 45, "name": "mkt_content", "comment": null}, "mkt_medium": {"type": "string", "index": 46, "name": "mkt_medium", "comment": null}, "mkt_source": {"type": "string", "index": 47, "name": "mkt_source", "comment": null}, "mkt_term": {"type": "string", "index": 48, "name": "mkt_term", "comment": null}, "os_family": {"type": "string", "index": 49, "name": "os_family", "comment": null}, "os_major": {"type": "string", "index": 50, "name": "os_major", "comment": null}, "os_minor": {"type": "string", "index": 51, "name": "os_minor", "comment": null}, "os_timezone": {"type": "string", "index": 52, "name": "os_timezone", "comment": null}, "page_referrer": {"type": "string", "index": 53, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 54, "name": "page_title", "comment": null}, "page_urlfragment": {"type": "string", "index": 55, "name": "page_urlfragment", "comment": null}, "page_urlhost": {"type": "string", "index": 56, "name": "page_urlhost", "comment": null}, "page_urlpath": {"type": "string", "index": 57, "name": "page_urlpath", "comment": null}, "page_urlport": {"type": "long", "index": 58, "name": "page_urlport", "comment": null}, "page_urlquery": {"type": "string", "index": 59, "name": "page_urlquery", "comment": null}, "page_url": {"type": "string", "index": 60, "name": "page_url", "comment": null}, "page_urlscheme": {"type": "string", "index": 61, "name": "page_urlscheme", "comment": null}, "platform": {"type": "string", "index": 62, "name": "platform", "comment": null}, "refr_medium": {"type": "string", "index": 63, "name": "refr_medium", "comment": null}, "refr_source": {"type": "string", "index": 64, "name": "refr_source", "comment": null}, "refr_term": {"type": "string", "index": 65, "name": "refr_term", "comment": null}, "refr_urlfragment": {"type": "string", "index": 66, "name": "refr_urlfragment", "comment": null}, "refr_urlhost": {"type": "string", "index": 67, "name": "refr_urlhost", "comment": null}, "refr_urlpath": {"type": "string", "index": 68, "name": "refr_urlpath", "comment": null}, "refr_urlport": {"type": "long", "index": 69, "name": "refr_urlport", "comment": null}, "refr_urlquery": {"type": "string", "index": 70, "name": "refr_urlquery", "comment": null}, "refr_urlscheme": {"type": "string", "index": 71, "name": "refr_urlscheme", "comment": null}, "se_action": {"type": "string", "index": 72, "name": "se_action", "comment": null}, "se_category": {"type": "string", "index": 73, "name": "se_category", "comment": null}, "se_label": {"type": "string", "index": 74, "name": "se_label", "comment": null}, "se_property": {"type": "string", "index": 75, "name": "se_property", "comment": null}, "se_value": {"type": "string", "index": 76, "name": "se_value", "comment": null}, "txn_id": {"type": "string", "index": 77, "name": "txn_id", "comment": null}, "user_fingerprint": {"type": "string", "index": 78, "name": "user_fingerprint", "comment": null}, "useragent": {"type": "string", "index": 79, "name": "useragent", "comment": null}, "v_collector": {"type": "string", "index": 80, "name": "v_collector", "comment": null}, "v_etl": {"type": "string", "index": 81, "name": "v_etl", "comment": null}, "v_tracker": {"type": "string", "index": 82, "name": "v_tracker", "comment": null}, "y_fingerprint": {"type": "string", "index": 83, "name": "y_fingerprint", "comment": null}}, "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.yoda.platform__pixel.onsite_v3"}, "source.yoda.loyalty__pixel.onsite_v3": {"metadata": {"type": "view", "schema": "pixel", "name": "onsite_v3", "database": null, "comment": null, "owner": "root"}, "columns": {"partition_date": {"type": "string", "index": 0, "name": "partition_date", "comment": null}, "hour": {"type": "string", "index": 1, "name": "hour", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "br_colordepth": {"type": "string", "index": 3, "name": "br_colordepth", "comment": null}, "br_cookies": {"type": "long", "index": 4, "name": "br_cookies", "comment": null}, "br_family": {"type": "string", "index": 5, "name": "br_family", "comment": null}, "br_features_director": {"type": "long", "index": 6, "name": "br_features_director", "comment": null}, "br_features_flash": {"type": "long", "index": 7, "name": "br_features_flash", "comment": null}, "br_features_gears": {"type": "long", "index": 8, "name": "br_features_gears", "comment": null}, "br_features_java": {"type": "long", "index": 9, "name": "br_features_java", "comment": null}, "br_features_pdf": {"type": "long", "index": 10, "name": "br_features_pdf", "comment": null}, "br_features_quicktime": {"type": "long", "index": 11, "name": "br_features_quicktime", "comment": null}, "br_features_realplayer": {"type": "long", "index": 12, "name": "br_features_realplayer", "comment": null}, "br_features_silverlight": {"type": "long", "index": 13, "name": "br_features_silverlight", "comment": null}, "br_features_windowsmedia": {"type": "long", "index": 14, "name": "br_features_windowsmedia", "comment": null}, "br_lang": {"type": "string", "index": 15, "name": "br_lang", "comment": null}, "br_major": {"type": "string", "index": 16, "name": "br_major", "comment": null}, "br_minor": {"type": "string", "index": 17, "name": "br_minor", "comment": null}, "br_viewheight": {"type": "long", "index": 18, "name": "br_viewheight", "comment": null}, "br_viewwidth": {"type": "long", "index": 19, "name": "br_viewwidth", "comment": null}, "collector_day": {"type": "string", "index": 20, "name": "collector_day", "comment": null}, "collector_epoch": {"type": "long", "index": 21, "name": "collector_epoch", "comment": null}, "collector_month": {"type": "string", "index": 22, "name": "collector_month", "comment": null}, "collector_tstamp": {"type": "string", "index": 23, "name": "collector_tstamp", "comment": null}, "collector_year": {"type": "string", "index": 24, "name": "collector_year", "comment": null}, "context": {"type": "string", "index": 25, "name": "context", "comment": null}, "device_family": {"type": "string", "index": 26, "name": "device_family", "comment": null}, "doc_charset": {"type": "string", "index": 27, "name": "doc_charset", "comment": null}, "doc_height": {"type": "long", "index": 28, "name": "doc_height", "comment": null}, "doc_width": {"type": "long", "index": 29, "name": "doc_width", "comment": null}, "domain_sessionidx": {"type": "long", "index": 30, "name": "domain_sessionidx", "comment": null}, "domain_userid": {"type": "string", "index": 31, "name": "domain_userid", "comment": null}, "dvce_screenheight": {"type": "long", "index": 32, "name": "dvce_screenheight", "comment": null}, "dvce_screenwidth": {"type": "long", "index": 33, "name": "dvce_screenwidth", "comment": null}, "dvce_tstamp": {"type": "string", "index": 34, "name": "dvce_tstamp", "comment": null}, "event_id": {"type": "string", "index": 35, "name": "event_id", "comment": null}, "event_vendor": {"type": "string", "index": 36, "name": "event_vendor", "comment": null}, "event": {"type": "string", "index": 37, "name": "event", "comment": null}, "geo_city": {"type": "string", "index": 38, "name": "geo_city", "comment": null}, "geo_country": {"type": "string", "index": 39, "name": "geo_country", "comment": null}, "geo_latitude": {"type": "double", "index": 40, "name": "geo_latitude", "comment": null}, "geo_longitude": {"type": "double", "index": 41, "name": "geo_longitude", "comment": null}, "geo_region": {"type": "string", "index": 42, "name": "geo_region", "comment": null}, "geo_zipcode": {"type": "string", "index": 43, "name": "geo_zipcode", "comment": null}, "mkt_campaign": {"type": "string", "index": 44, "name": "mkt_campaign", "comment": null}, "mkt_content": {"type": "string", "index": 45, "name": "mkt_content", "comment": null}, "mkt_medium": {"type": "string", "index": 46, "name": "mkt_medium", "comment": null}, "mkt_source": {"type": "string", "index": 47, "name": "mkt_source", "comment": null}, "mkt_term": {"type": "string", "index": 48, "name": "mkt_term", "comment": null}, "os_family": {"type": "string", "index": 49, "name": "os_family", "comment": null}, "os_major": {"type": "string", "index": 50, "name": "os_major", "comment": null}, "os_minor": {"type": "string", "index": 51, "name": "os_minor", "comment": null}, "os_timezone": {"type": "string", "index": 52, "name": "os_timezone", "comment": null}, "page_referrer": {"type": "string", "index": 53, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 54, "name": "page_title", "comment": null}, "page_urlfragment": {"type": "string", "index": 55, "name": "page_urlfragment", "comment": null}, "page_urlhost": {"type": "string", "index": 56, "name": "page_urlhost", "comment": null}, "page_urlpath": {"type": "string", "index": 57, "name": "page_urlpath", "comment": null}, "page_urlport": {"type": "long", "index": 58, "name": "page_urlport", "comment": null}, "page_urlquery": {"type": "string", "index": 59, "name": "page_urlquery", "comment": null}, "page_url": {"type": "string", "index": 60, "name": "page_url", "comment": null}, "page_urlscheme": {"type": "string", "index": 61, "name": "page_urlscheme", "comment": null}, "platform": {"type": "string", "index": 62, "name": "platform", "comment": null}, "refr_medium": {"type": "string", "index": 63, "name": "refr_medium", "comment": null}, "refr_source": {"type": "string", "index": 64, "name": "refr_source", "comment": null}, "refr_term": {"type": "string", "index": 65, "name": "refr_term", "comment": null}, "refr_urlfragment": {"type": "string", "index": 66, "name": "refr_urlfragment", "comment": null}, "refr_urlhost": {"type": "string", "index": 67, "name": "refr_urlhost", "comment": null}, "refr_urlpath": {"type": "string", "index": 68, "name": "refr_urlpath", "comment": null}, "refr_urlport": {"type": "long", "index": 69, "name": "refr_urlport", "comment": null}, "refr_urlquery": {"type": "string", "index": 70, "name": "refr_urlquery", "comment": null}, "refr_urlscheme": {"type": "string", "index": 71, "name": "refr_urlscheme", "comment": null}, "se_action": {"type": "string", "index": 72, "name": "se_action", "comment": null}, "se_category": {"type": "string", "index": 73, "name": "se_category", "comment": null}, "se_label": {"type": "string", "index": 74, "name": "se_label", "comment": null}, "se_property": {"type": "string", "index": 75, "name": "se_property", "comment": null}, "se_value": {"type": "string", "index": 76, "name": "se_value", "comment": null}, "txn_id": {"type": "string", "index": 77, "name": "txn_id", "comment": null}, "user_fingerprint": {"type": "string", "index": 78, "name": "user_fingerprint", "comment": null}, "useragent": {"type": "string", "index": 79, "name": "useragent", "comment": null}, "v_collector": {"type": "string", "index": 80, "name": "v_collector", "comment": null}, "v_etl": {"type": "string", "index": 81, "name": "v_etl", "comment": null}, "v_tracker": {"type": "string", "index": 82, "name": "v_tracker", "comment": null}, "y_fingerprint": {"type": "string", "index": 83, "name": "y_fingerprint", "comment": null}}, "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.yoda.loyalty__pixel.onsite_v3"}, "source.yoda.infra__pixel.pixel_enrichment": {"metadata": {"type": "view", "schema": "pixel", "name": "pixel_enrichment", "database": null, "comment": null, "owner": "root"}, "columns": {"processing_time": {"type": "timestamp", "index": 0, "name": "processing_time", "comment": null}, "br_colordepth": {"type": "string", "index": 1, "name": "br_colordepth", "comment": null}, "br_cookies": {"type": "long", "index": 2, "name": "br_cookies", "comment": null}, "br_family": {"type": "string", "index": 3, "name": "br_family", "comment": null}, "br_features_director": {"type": "long", "index": 4, "name": "br_features_director", "comment": null}, "br_features_flash": {"type": "long", "index": 5, "name": "br_features_flash", "comment": null}, "br_features_gears": {"type": "long", "index": 6, "name": "br_features_gears", "comment": null}, "br_features_java": {"type": "long", "index": 7, "name": "br_features_java", "comment": null}, "br_features_pdf": {"type": "long", "index": 8, "name": "br_features_pdf", "comment": null}, "br_features_quicktime": {"type": "long", "index": 9, "name": "br_features_quicktime", "comment": null}, "br_features_realplayer": {"type": "long", "index": 10, "name": "br_features_realplayer", "comment": null}, "br_features_silverlight": {"type": "long", "index": 11, "name": "br_features_silverlight", "comment": null}, "br_features_windowsmedia": {"type": "long", "index": 12, "name": "br_features_windowsmedia", "comment": null}, "br_lang": {"type": "string", "index": 13, "name": "br_lang", "comment": null}, "br_major": {"type": "string", "index": 14, "name": "br_major", "comment": null}, "br_minor": {"type": "string", "index": 15, "name": "br_minor", "comment": null}, "br_viewheight": {"type": "long", "index": 16, "name": "br_viewheight", "comment": null}, "br_viewwidth": {"type": "long", "index": 17, "name": "br_viewwidth", "comment": null}, "collector_day": {"type": "string", "index": 18, "name": "collector_day", "comment": null}, "collector_epoch": {"type": "long", "index": 19, "name": "collector_epoch", "comment": null}, "collector_month": {"type": "string", "index": 20, "name": "collector_month", "comment": null}, "collector_tstamp": {"type": "string", "index": 21, "name": "collector_tstamp", "comment": null}, "collector_year": {"type": "string", "index": 22, "name": "collector_year", "comment": null}, "context": {"type": "string", "index": 23, "name": "context", "comment": null}, "device_family": {"type": "string", "index": 24, "name": "device_family", "comment": null}, "doc_charset": {"type": "string", "index": 25, "name": "doc_charset", "comment": null}, "doc_height": {"type": "long", "index": 26, "name": "doc_height", "comment": null}, "doc_width": {"type": "long", "index": 27, "name": "doc_width", "comment": null}, "domain_sessionidx": {"type": "long", "index": 28, "name": "domain_sessionidx", "comment": null}, "domain_userid": {"type": "string", "index": 29, "name": "domain_userid", "comment": null}, "dvce_screenheight": {"type": "long", "index": 30, "name": "dvce_screenheight", "comment": null}, "dvce_screenwidth": {"type": "long", "index": 31, "name": "dvce_screenwidth", "comment": null}, "dvce_tstamp": {"type": "string", "index": 32, "name": "dvce_tstamp", "comment": null}, "event_id": {"type": "string", "index": 33, "name": "event_id", "comment": null}, "event_vendor": {"type": "string", "index": 34, "name": "event_vendor", "comment": null}, "event": {"type": "string", "index": 35, "name": "event", "comment": null}, "geo_city": {"type": "string", "index": 36, "name": "geo_city", "comment": null}, "geo_country": {"type": "string", "index": 37, "name": "geo_country", "comment": null}, "geo_latitude": {"type": "double", "index": 38, "name": "geo_latitude", "comment": null}, "geo_longitude": {"type": "double", "index": 39, "name": "geo_longitude", "comment": null}, "geo_region": {"type": "string", "index": 40, "name": "geo_region", "comment": null}, "geo_zipcode": {"type": "string", "index": 41, "name": "geo_zipcode", "comment": null}, "mkt_campaign": {"type": "string", "index": 42, "name": "mkt_campaign", "comment": null}, "mkt_content": {"type": "string", "index": 43, "name": "mkt_content", "comment": null}, "mkt_medium": {"type": "string", "index": 44, "name": "mkt_medium", "comment": null}, "mkt_source": {"type": "string", "index": 45, "name": "mkt_source", "comment": null}, "mkt_term": {"type": "string", "index": 46, "name": "mkt_term", "comment": null}, "os_family": {"type": "string", "index": 47, "name": "os_family", "comment": null}, "os_major": {"type": "string", "index": 48, "name": "os_major", "comment": null}, "os_minor": {"type": "string", "index": 49, "name": "os_minor", "comment": null}, "os_timezone": {"type": "string", "index": 50, "name": "os_timezone", "comment": null}, "page_referrer": {"type": "string", "index": 51, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 52, "name": "page_title", "comment": null}, "page_urlfragment": {"type": "string", "index": 53, "name": "page_urlfragment", "comment": null}, "page_urlhost": {"type": "string", "index": 54, "name": "page_urlhost", "comment": null}, "page_urlpath": {"type": "string", "index": 55, "name": "page_urlpath", "comment": null}, "page_urlport": {"type": "long", "index": 56, "name": "page_urlport", "comment": null}, "page_urlquery": {"type": "string", "index": 57, "name": "page_urlquery", "comment": null}, "page_url": {"type": "string", "index": 58, "name": "page_url", "comment": null}, "page_urlscheme": {"type": "string", "index": 59, "name": "page_urlscheme", "comment": null}, "platform": {"type": "string", "index": 60, "name": "platform", "comment": null}, "pp_xoffset_max": {"type": "long", "index": 61, "name": "pp_xoffset_max", "comment": null}, "pp_xoffset_min": {"type": "long", "index": 62, "name": "pp_xoffset_min", "comment": null}, "pp_yoffset_max": {"type": "long", "index": 63, "name": "pp_yoffset_max", "comment": null}, "pp_yoffset_min": {"type": "long", "index": 64, "name": "pp_yoffset_min", "comment": null}, "refr_medium": {"type": "string", "index": 65, "name": "refr_medium", "comment": null}, "refr_source": {"type": "string", "index": 66, "name": "refr_source", "comment": null}, "refr_term": {"type": "string", "index": 67, "name": "refr_term", "comment": null}, "refr_urlfragment": {"type": "string", "index": 68, "name": "refr_urlfragment", "comment": null}, "refr_urlhost": {"type": "string", "index": 69, "name": "refr_urlhost", "comment": null}, "refr_urlpath": {"type": "string", "index": 70, "name": "refr_urlpath", "comment": null}, "refr_urlport": {"type": "long", "index": 71, "name": "refr_urlport", "comment": null}, "refr_urlquery": {"type": "string", "index": 72, "name": "refr_urlquery", "comment": null}, "refr_urlscheme": {"type": "string", "index": 73, "name": "refr_urlscheme", "comment": null}, "se_action": {"type": "string", "index": 74, "name": "se_action", "comment": null}, "se_category": {"type": "string", "index": 75, "name": "se_category", "comment": null}, "se_label": {"type": "string", "index": 76, "name": "se_label", "comment": null}, "se_page_sku": {"type": "string", "index": 77, "name": "se_page_sku", "comment": null}, "se_property": {"type": "string", "index": 78, "name": "se_property", "comment": null}, "se_testing_groups": {"type": "string", "index": 79, "name": "se_testing_groups", "comment": null}, "se_value": {"type": "string", "index": 80, "name": "se_value", "comment": null}, "tr_currency": {"type": "string", "index": 81, "name": "tr_currency", "comment": null}, "tr_orderid": {"type": "string", "index": 82, "name": "tr_orderid", "comment": null}, "tr_total": {"type": "string", "index": 83, "name": "tr_total", "comment": null}, "txn_id": {"type": "string", "index": 84, "name": "txn_id", "comment": null}, "user_fingerprint": {"type": "string", "index": 85, "name": "user_fingerprint", "comment": null}, "useragent": {"type": "string", "index": 86, "name": "useragent", "comment": null}, "v_collector": {"type": "string", "index": 87, "name": "v_collector", "comment": null}, "v_etl": {"type": "string", "index": 88, "name": "v_etl", "comment": null}, "v_tracker": {"type": "string", "index": 89, "name": "v_tracker", "comment": null}, "y_fingerprint": {"type": "string", "index": 90, "name": "y_fingerprint", "comment": null}, "user_id": {"type": "string", "index": 91, "name": "user_id", "comment": null}, "app_id": {"type": "string", "index": 92, "name": "app_id", "comment": null}, "partition_date": {"type": "string", "index": 93, "name": "partition_date", "comment": null}, "hour": {"type": "string", "index": 94, "name": "hour", "comment": null}}, "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.yoda.infra__pixel.pixel_enrichment"}, "source.yoda.infra__infra.rivery_environments": {"metadata": {"type": "table", "schema": "infra", "name": "rivery_environments", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "name": {"type": "string", "index": 1, "name": "name", "comment": null}, "account_id": {"type": "string", "index": 2, "name": "account_id", "comment": null}, "is_deleted": {"type": "boolean", "index": 3, "name": "is_deleted", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 1631.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__infra.rivery_environments"}, "source.yoda.infra__infra.rivery_groups": {"metadata": {"type": "table", "schema": "infra", "name": "rivery_groups", "database": null, "comment": null, "owner": "root"}, "columns": {"account_id": {"type": "string", "index": 0, "name": "account_id", "comment": null}, "environment_id": {"type": "string", "index": 1, "name": "environment_id", "comment": null}, "id": {"type": "string", "index": 2, "name": "id", "comment": null}, "name": {"type": "string", "index": 3, "name": "name", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 2233.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__infra.rivery_groups"}, "source.yoda.infra__infra.rivery_rivers_usage": {"metadata": {"type": "table", "schema": "infra", "name": "rivery_rivers_usage", "database": null, "comment": null, "owner": "root"}, "columns": {"account_id": {"type": "string", "index": 0, "name": "account_id", "comment": null}, "environment_id": {"type": "string", "index": 1, "name": "environment_id", "comment": null}, "cross_id": {"type": "string", "index": 2, "name": "cross_id", "comment": null}, "river_id": {"type": "string", "index": 3, "name": "river_id", "comment": null}, "master_river_id": {"type": "string", "index": 4, "name": "master_river_id", "comment": null}, "river_name": {"type": "string", "index": 5, "name": "river_name", "comment": null}, "is_sub_river": {"type": "boolean", "index": 6, "name": "is_sub_river", "comment": null}, "is_master_river": {"type": "boolean", "index": 7, "name": "is_master_river", "comment": null}, "is_multi": {"type": "boolean", "index": 8, "name": "is_multi", "comment": null}, "is_deleted": {"type": "boolean", "index": 9, "name": "is_deleted", "comment": null}, "group_id": {"type": "string", "index": 10, "name": "group_id", "comment": null}, "is_scheduled": {"type": "boolean", "index": 11, "name": "is_scheduled", "comment": null}, "total_files": {"type": "integer", "index": 12, "name": "total_files", "comment": null}, "units": {"type": "double", "index": 13, "name": "units", "comment": null}, "total_size": {"type": "long", "index": 14, "name": "total_size", "comment": null}, "last_run": {"type": "long", "index": 15, "name": "last_run", "comment": null}, "pending": {"type": "integer", "index": 16, "name": "pending", "comment": null}, "failed": {"type": "integer", "index": 17, "name": "failed", "comment": null}, "running": {"type": "integer", "index": 18, "name": "running", "comment": null}, "succeeded": {"type": "integer", "index": 19, "name": "succeeded", "comment": null}, "canceled": {"type": "integer", "index": 20, "name": "canceled", "comment": null}, "datasource_id": {"type": "string", "index": 21, "name": "datasource_id", "comment": null}, "dry_runs": {"type": "integer", "index": 22, "name": "dry_runs", "comment": null}, "start_time": {"type": "string", "index": 23, "name": "start_time", "comment": null}, "end_time": {"type": "string", "index": 24, "name": "end_time", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 2078929.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__infra.rivery_rivers_usage"}, "source.yoda.analytics__zuora.account": {"metadata": {"type": "view", "schema": "zuora", "name": "account", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "accountnumber": {"type": "string", "index": 1, "name": "accountnumber", "comment": null}, "additionalemailaddresses": {"type": "string", "index": 2, "name": "additionalemailaddresses", "comment": null}, "allowinvoiceedit": {"type": "boolean", "index": 3, "name": "allowinvoiceedit", "comment": null}, "appkey__c": {"type": "string", "index": 4, "name": "appkey__c", "comment": null}, "autopay": {"type": "boolean", "index": 5, "name": "autopay", "comment": null}, "balance": {"type": "double", "index": 6, "name": "balance", "comment": null}, "batch": {"type": "string", "index": 7, "name": "batch", "comment": null}, "bcdsettingoption": {"type": "string", "index": 8, "name": "bcdsettingoption", "comment": null}, "billcycleday": {"type": "long", "index": 9, "name": "billcycleday", "comment": null}, "class__ns": {"type": "string", "index": 10, "name": "class__ns", "comment": null}, "communicationprofileid": {"type": "string", "index": 11, "name": "communicationprofileid", "comment": null}, "createdbyid": {"type": "string", "index": 12, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 13, "name": "createddate", "comment": null}, "creditbalance": {"type": "long", "index": 14, "name": "creditbalance", "comment": null}, "crmid": {"type": "string", "index": 15, "name": "crmid", "comment": null}, "currency": {"type": "string", "index": 16, "name": "currency", "comment": null}, "customerid__ns": {"type": "string", "index": 17, "name": "customerid__ns", "comment": null}, "customerservicerepname": {"type": "string", "index": 18, "name": "customerservicerepname", "comment": null}, "customertype__ns": {"type": "string", "index": 19, "name": "customertype__ns", "comment": null}, "department__ns": {"type": "string", "index": 20, "name": "department__ns", "comment": null}, "id": {"type": "string", "index": 21, "name": "id", "comment": null}, "integrationid__ns": {"type": "string", "index": 22, "name": "integrationid__ns", "comment": null}, "integrationstatus__ns": {"type": "string", "index": 23, "name": "integrationstatus__ns", "comment": null}, "intercompany__c": {"type": "string", "index": 24, "name": "intercompany__c", "comment": null}, "invoicedeliveryprefsemail": {"type": "boolean", "index": 25, "name": "invoicedeliveryprefsemail", "comment": null}, "invoicedeliveryprefsprint": {"type": "boolean", "index": 26, "name": "invoicedeliveryprefsprint", "comment": null}, "invoicetemplateid": {"type": "string", "index": 27, "name": "invoicetemplateid", "comment": null}, "is_e2e_test__c": {"type": "string", "index": 28, "name": "is_e2e_test__c", "comment": null}, "lastinvoicedate": {"type": "string", "index": 29, "name": "lastinvoicedate", "comment": null}, "legalentity__c": {"type": "string", "index": 30, "name": "legalentity__c", "comment": null}, "location__ns": {"type": "string", "index": 31, "name": "location__ns", "comment": null}, "merchantid__c": {"type": "string", "index": 32, "name": "merchantid__c", "comment": null}, "mrr": {"type": "double", "index": 33, "name": "mrr", "comment": null}, "name": {"type": "string", "index": 34, "name": "name", "comment": null}, "notes": {"type": "string", "index": 35, "name": "notes", "comment": null}, "organisationkey__c": {"type": "string", "index": 36, "name": "organisationkey__c", "comment": null}, "parentaccount__c": {"type": "string", "index": 37, "name": "parentaccount__c", "comment": null}, "parentid": {"type": "string", "index": 38, "name": "parentid", "comment": null}, "paymentgateway": {"type": "string", "index": 39, "name": "paymentgateway", "comment": null}, "paymentterm": {"type": "string", "index": 40, "name": "paymentterm", "comment": null}, "purchaseordernumber": {"type": "string", "index": 41, "name": "purchaseordernumber", "comment": null}, "referrer__c": {"type": "string", "index": 42, "name": "referrer__c", "comment": null}, "salesrepname": {"type": "string", "index": 43, "name": "salesrepname", "comment": null}, "segment__c": {"type": "string", "index": 44, "name": "segment__c", "comment": null}, "sequencesetid": {"type": "string", "index": 45, "name": "sequencesetid", "comment": null}, "sf_accountid__c": {"type": "string", "index": 46, "name": "sf_accountid__c", "comment": null}, "status": {"type": "string", "index": 47, "name": "status", "comment": null}, "subsidiary__ns": {"type": "string", "index": 48, "name": "subsidiary__ns", "comment": null}, "syncdate__ns": {"type": "string", "index": 49, "name": "syncdate__ns", "comment": null}, "synctonetsuite__ns": {"type": "string", "index": 50, "name": "synctonetsuite__ns", "comment": null}, "taxcompanycode": {"type": "string", "index": 51, "name": "taxcompanycode", "comment": null}, "taxexemptcertificateid": {"type": "string", "index": 52, "name": "taxexemptcertificateid", "comment": null}, "taxexemptcertificatetype": {"type": "string", "index": 53, "name": "taxexemptcertificatetype", "comment": null}, "taxexemptdescription": {"type": "string", "index": 54, "name": "taxexemptdescription", "comment": null}, "taxexemptentityusecode": {"type": "string", "index": 55, "name": "taxexemptentityusecode", "comment": null}, "taxexemptissuingjurisdiction": {"type": "string", "index": 56, "name": "taxexemptissuingjurisdiction", "comment": null}, "taxexemptstatus": {"type": "string", "index": 57, "name": "taxexemptstatus", "comment": null}, "testaccount__c": {"type": "string", "index": 58, "name": "testaccount__c", "comment": null}, "totaldebitmemobalance": {"type": "double", "index": 59, "name": "totaldebitmemobalance", "comment": null}, "totalinvoicebalance": {"type": "double", "index": 60, "name": "totalinvoicebalance", "comment": null}, "unappliedbalance": {"type": "double", "index": 61, "name": "unappliedbalance", "comment": null}, "unappliedcreditmemoamount": {"type": "double", "index": 62, "name": "unappliedcreditmemoamount", "comment": null}, "updatedbyid": {"type": "string", "index": 63, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 64, "name": "updateddate", "comment": null}, "vatid": {"type": "string", "index": 65, "name": "vatid", "comment": null}, "billtocontactid": {"type": "string", "index": 66, "name": "billtocontactid", "comment": null}, "defaultpaymentmethodid": {"type": "string", "index": 67, "name": "defaultpaymentmethodid", "comment": null}, "parentaccountid": {"type": "string", "index": 68, "name": "parentaccountid", "comment": null}, "soldtocontactid": {"type": "string", "index": 69, "name": "soldtocontactid", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 70, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 71, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 72, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 73, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 74, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 75, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 76, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 77, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.account"}, "source.yoda.analytics__zuora.contact": {"metadata": {"type": "view", "schema": "zuora", "name": "contact", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "accountid": {"type": "string", "index": 1, "name": "accountid", "comment": null}, "address1": {"type": "string", "index": 2, "name": "address1", "comment": null}, "address2": {"type": "string", "index": 3, "name": "address2", "comment": null}, "city": {"type": "string", "index": 4, "name": "city", "comment": null}, "country": {"type": "string", "index": 5, "name": "country", "comment": null}, "county": {"type": "string", "index": 6, "name": "county", "comment": null}, "createdbyid": {"type": "string", "index": 7, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 8, "name": "createddate", "comment": null}, "description": {"type": "string", "index": 9, "name": "description", "comment": null}, "fax": {"type": "string", "index": 10, "name": "fax", "comment": null}, "firstname": {"type": "string", "index": 11, "name": "firstname", "comment": null}, "homephone": {"type": "string", "index": 12, "name": "homephone", "comment": null}, "id": {"type": "string", "index": 13, "name": "id", "comment": null}, "lastname": {"type": "string", "index": 14, "name": "lastname", "comment": null}, "mobilephone": {"type": "string", "index": 15, "name": "mobilephone", "comment": null}, "nickname": {"type": "string", "index": 16, "name": "nickname", "comment": null}, "otherphonetype": {"type": "string", "index": 17, "name": "otherphonetype", "comment": null}, "otherphone": {"type": "string", "index": 18, "name": "otherphone", "comment": null}, "personalemail": {"type": "string", "index": 19, "name": "personalemail", "comment": null}, "postalcode": {"type": "string", "index": 20, "name": "postalcode", "comment": null}, "state": {"type": "string", "index": 21, "name": "state", "comment": null}, "taxregion": {"type": "string", "index": 22, "name": "taxregion", "comment": null}, "updatedbyid": {"type": "string", "index": 23, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 24, "name": "updateddate", "comment": null}, "workemail": {"type": "string", "index": 25, "name": "workemail", "comment": null}, "workphone": {"type": "string", "index": 26, "name": "workphone", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 27, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 28, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 29, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 30, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 31, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 32, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 33, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 34, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.contact"}, "source.yoda.analytics__zuora.invoice": {"metadata": {"type": "view", "schema": "zuora", "name": "invoice", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "accountid": {"type": "string", "index": 1, "name": "accountid", "comment": null}, "adjustmentamount": {"type": "long", "index": 2, "name": "adjustmentamount", "comment": null}, "amountwithouttax": {"type": "double", "index": 3, "name": "amountwithouttax", "comment": null}, "amount": {"type": "double", "index": 4, "name": "amount", "comment": null}, "autopay": {"type": "boolean", "index": 5, "name": "autopay", "comment": null}, "balance": {"type": "double", "index": 6, "name": "balance", "comment": null}, "billtocontactid": {"type": "string", "index": 7, "name": "billtocontactid", "comment": null}, "billtocontactsnapshotid": {"type": "string", "index": 8, "name": "billtocontactsnapshotid", "comment": null}, "comments": {"type": "string", "index": 9, "name": "comments", "comment": null}, "createdbyid": {"type": "string", "index": 10, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 11, "name": "createddate", "comment": null}, "creditbalanceadjustmentamount": {"type": "long", "index": 12, "name": "creditbalanceadjustmentamount", "comment": null}, "defaultpaymentmethodid": {"type": "string", "index": 13, "name": "defaultpaymentmethodid", "comment": null}, "duedate": {"type": "string", "index": 14, "name": "duedate", "comment": null}, "id": {"type": "string", "index": 15, "name": "id", "comment": null}, "includesonetime": {"type": "boolean", "index": 16, "name": "includesonetime", "comment": null}, "includesrecurring": {"type": "boolean", "index": 17, "name": "includesrecurring", "comment": null}, "includesusage": {"type": "boolean", "index": 18, "name": "includesusage", "comment": null}, "integrationid__ns": {"type": "string", "index": 19, "name": "integrationid__ns", "comment": null}, "integrationstatus__ns": {"type": "string", "index": 20, "name": "integrationstatus__ns", "comment": null}, "invoiceconversionamountbeforetax__c": {"type": "string", "index": 21, "name": "invoiceconversionamountbeforetax__c", "comment": null}, "invoiceconversionamount__c": {"type": "string", "index": 22, "name": "invoiceconversionamount__c", "comment": null}, "invoiceconversioncurrency__c": {"type": "string", "index": 23, "name": "invoiceconversioncurrency__c", "comment": null}, "invoiceconversionrate__c": {"type": "string", "index": 24, "name": "invoiceconversionrate__c", "comment": null}, "invoicedate": {"type": "string", "index": 25, "name": "invoicedate", "comment": null}, "invoicenumber": {"type": "string", "index": 26, "name": "invoicenumber", "comment": null}, "lastemailsentdate": {"type": "string", "index": 27, "name": "lastemailsentdate", "comment": null}, "parentaccountid": {"type": "string", "index": 28, "name": "parentaccountid", "comment": null}, "paymentamount": {"type": "double", "index": 29, "name": "paymentamount", "comment": null}, "postedby": {"type": "string", "index": 30, "name": "postedby", "comment": null}, "posteddate": {"type": "string", "index": 31, "name": "posteddate", "comment": null}, "refundamount": {"type": "long", "index": 32, "name": "refundamount", "comment": null}, "reversed": {"type": "boolean", "index": 33, "name": "reversed", "comment": null}, "soldtocontactid": {"type": "string", "index": 34, "name": "soldtocontactid", "comment": null}, "soldtocontactsnapshotid": {"type": "string", "index": 35, "name": "soldtocontactsnapshotid", "comment": null}, "sourceid": {"type": "string", "index": 36, "name": "sourceid", "comment": null}, "source": {"type": "string", "index": 37, "name": "source", "comment": null}, "status": {"type": "string", "index": 38, "name": "status", "comment": null}, "syncdate__ns": {"type": "string", "index": 39, "name": "syncdate__ns", "comment": null}, "targetdate": {"type": "string", "index": 40, "name": "targetdate", "comment": null}, "taxamount": {"type": "double", "index": 41, "name": "taxamount", "comment": null}, "taxexemptamount": {"type": "double", "index": 42, "name": "taxexemptamount", "comment": null}, "taxmessage": {"type": "string", "index": 43, "name": "taxmessage", "comment": null}, "taxstatus": {"type": "string", "index": 44, "name": "taxstatus", "comment": null}, "transferredtoaccounting": {"type": "string", "index": 45, "name": "transferredtoaccounting", "comment": null}, "updatedbyid": {"type": "string", "index": 46, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 47, "name": "updateddate", "comment": null}, "amountwithouttaxhomecurrency": {"type": "double", "index": 48, "name": "amountwithouttaxhomecurrency", "comment": null}, "amountwithouttaxcurrencyrounding": {"type": "double", "index": 49, "name": "amountwithouttaxcurrencyrounding", "comment": null}, "amounthomecurrency": {"type": "double", "index": 50, "name": "amounthomecurrency", "comment": null}, "amountcurrencyrounding": {"type": "double", "index": 51, "name": "amountcurrencyrounding", "comment": null}, "exchangerate": {"type": "double", "index": 52, "name": "exchangerate", "comment": null}, "exchangeratedate": {"type": "date", "index": 53, "name": "exchangeratedate", "comment": null}, "providerexchangeratedate": {"type": "date", "index": 54, "name": "providerexchangeratedate", "comment": null}, "homecurrency": {"type": "string", "index": 55, "name": "homecurrency", "comment": null}, "transactioncurrency": {"type": "string", "index": 56, "name": "transactioncurrency", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 57, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 58, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 59, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 60, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 61, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 62, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 63, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 64, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.invoice"}, "source.yoda.analytics__zuora.invoiceitem": {"metadata": {"type": "view", "schema": "zuora", "name": "invoiceitem", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "accountid": {"type": "string", "index": 1, "name": "accountid", "comment": null}, "accountreceivableaccountingcodeid": {"type": "string", "index": 2, "name": "accountreceivableaccountingcodeid", "comment": null}, "accountingcode": {"type": "string", "index": 3, "name": "accountingcode", "comment": null}, "accountingperiodid": {"type": "string", "index": 4, "name": "accountingperiodid", "comment": null}, "amendmentid": {"type": "string", "index": 5, "name": "amendmentid", "comment": null}, "appliedtoinvoiceitemid": {"type": "string", "index": 6, "name": "appliedtoinvoiceitemid", "comment": null}, "balance": {"type": "double", "index": 7, "name": "balance", "comment": null}, "billtocontactid": {"type": "string", "index": 8, "name": "billtocontactid", "comment": null}, "billtocontactsnapshotid": {"type": "string", "index": 9, "name": "billtocontactsnapshotid", "comment": null}, "chargeamount": {"type": "double", "index": 10, "name": "chargeamount", "comment": null}, "chargedate": {"type": "string", "index": 11, "name": "chargedate", "comment": null}, "chargename": {"type": "string", "index": 12, "name": "chargename", "comment": null}, "createdbyid": {"type": "string", "index": 13, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 14, "name": "createddate", "comment": null}, "defaultpaymentmethodid": {"type": "string", "index": 15, "name": "defaultpaymentmethodid", "comment": null}, "deferredrevenueaccountingcodeid": {"type": "string", "index": 16, "name": "deferredrevenueaccountingcodeid", "comment": null}, "id": {"type": "string", "index": 17, "name": "id", "comment": null}, "integrationid__ns": {"type": "string", "index": 18, "name": "integrationid__ns", "comment": null}, "integrationstatus__ns": {"type": "string", "index": 19, "name": "integrationstatus__ns", "comment": null}, "invoiceid": {"type": "string", "index": 20, "name": "invoiceid", "comment": null}, "journalentryid": {"type": "string", "index": 21, "name": "journalentryid", "comment": null}, "journalrunid": {"type": "string", "index": 22, "name": "journalrunid", "comment": null}, "parentaccountid": {"type": "string", "index": 23, "name": "parentaccountid", "comment": null}, "processingtype": {"type": "string", "index": 24, "name": "processingtype", "comment": null}, "productid": {"type": "string", "index": 25, "name": "productid", "comment": null}, "productrateplanchargeid": {"type": "string", "index": 26, "name": "productrateplanchargeid", "comment": null}, "productrateplanid": {"type": "string", "index": 27, "name": "productrateplanid", "comment": null}, "quantity": {"type": "long", "index": 28, "name": "quantity", "comment": null}, "rateplanchargeid": {"type": "string", "index": 29, "name": "rateplanchargeid", "comment": null}, "rateplanid": {"type": "string", "index": 30, "name": "rateplanid", "comment": null}, "recognizedrevenueaccountingcodeid": {"type": "string", "index": 31, "name": "recognizedrevenueaccountingcodeid", "comment": null}, "sku": {"type": "string", "index": 32, "name": "sku", "comment": null}, "serviceenddate": {"type": "string", "index": 33, "name": "serviceenddate", "comment": null}, "servicestartdate": {"type": "string", "index": 34, "name": "servicestartdate", "comment": null}, "soldtocontactid": {"type": "string", "index": 35, "name": "soldtocontactid", "comment": null}, "soldtocontactsnapshotid": {"type": "string", "index": 36, "name": "soldtocontactsnapshotid", "comment": null}, "subscriptionid": {"type": "string", "index": 37, "name": "subscriptionid", "comment": null}, "syncdate__ns": {"type": "string", "index": 38, "name": "syncdate__ns", "comment": null}, "taxamount": {"type": "double", "index": 39, "name": "taxamount", "comment": null}, "taxcode": {"type": "string", "index": 40, "name": "taxcode", "comment": null}, "taxexemptamount": {"type": "double", "index": 41, "name": "taxexemptamount", "comment": null}, "taxmode": {"type": "string", "index": 42, "name": "taxmode", "comment": null}, "uom": {"type": "string", "index": 43, "name": "uom", "comment": null}, "unitprice": {"type": "double", "index": 44, "name": "unitprice", "comment": null}, "updatedbyid": {"type": "string", "index": 45, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 46, "name": "updateddate", "comment": null}, "chargeamounthomecurrency": {"type": "double", "index": 47, "name": "chargeamounthomecurrency", "comment": null}, "chargeamountcurrencyrounding": {"type": "double", "index": 48, "name": "chargeamountcurrencyrounding", "comment": null}, "exchangerate": {"type": "double", "index": 49, "name": "exchangerate", "comment": null}, "exchangeratedate": {"type": "date", "index": 50, "name": "exchangeratedate", "comment": null}, "providerexchangeratedate": {"type": "date", "index": 51, "name": "providerexchangeratedate", "comment": null}, "homecurrency": {"type": "string", "index": 52, "name": "homecurrency", "comment": null}, "transactioncurrency": {"type": "string", "index": 53, "name": "transactioncurrency", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 54, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 55, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 56, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 57, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 58, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 59, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 60, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 61, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.invoiceitem"}, "source.yoda.analytics__zuora.order": {"metadata": {"type": "view", "schema": "zuora", "name": "order", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "accountid": {"type": "string", "index": 1, "name": "accountid", "comment": null}, "billtocontactid": {"type": "string", "index": 2, "name": "billtocontactid", "comment": null}, "createdbyid": {"type": "string", "index": 3, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 4, "name": "createddate", "comment": null}, "defaultpaymentmethodid": {"type": "string", "index": 5, "name": "defaultpaymentmethodid", "comment": null}, "description": {"type": "string", "index": 6, "name": "description", "comment": null}, "id": {"type": "string", "index": 7, "name": "id", "comment": null}, "orderdate": {"type": "string", "index": 8, "name": "orderdate", "comment": null}, "ordernumber": {"type": "string", "index": 9, "name": "ordernumber", "comment": null}, "parentaccountid": {"type": "string", "index": 10, "name": "parentaccountid", "comment": null}, "provisiondate__c": {"type": "string", "index": 11, "name": "provisiondate__c", "comment": null}, "soldtocontactid": {"type": "string", "index": 12, "name": "soldtocontactid", "comment": null}, "updatedbyid": {"type": "string", "index": 13, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 14, "name": "updateddate", "comment": null}, "category": {"type": "string", "index": 15, "name": "category", "comment": null}, "state": {"type": "string", "index": 16, "name": "state", "comment": null}, "status": {"type": "string", "index": 17, "name": "status", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 18, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 19, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 20, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 21, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 22, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 23, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 24, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 25, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.order"}, "source.yoda.analytics__zuora.orderaction": {"metadata": {"type": "view", "schema": "zuora", "name": "orderaction", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "accountid": {"type": "string", "index": 1, "name": "accountid", "comment": null}, "billtocontactid": {"type": "string", "index": 2, "name": "billtocontactid", "comment": null}, "contracteffectivedate": {"type": "string", "index": 3, "name": "contracteffectivedate", "comment": null}, "createdbyid": {"type": "string", "index": 4, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 5, "name": "createddate", "comment": null}, "customeracceptancedate": {"type": "string", "index": 6, "name": "customeracceptancedate", "comment": null}, "defaultpaymentmethodid": {"type": "string", "index": 7, "name": "defaultpaymentmethodid", "comment": null}, "downgradedpackage__c": {"type": "string", "index": 8, "name": "downgradedpackage__c", "comment": null}, "id": {"type": "string", "index": 9, "name": "id", "comment": null}, "orderid": {"type": "string", "index": 10, "name": "orderid", "comment": null}, "parentaccountid": {"type": "string", "index": 11, "name": "parentaccountid", "comment": null}, "provisiondone__c": {"type": "string", "index": 12, "name": "provisiondone__c", "comment": null}, "serviceactivationdate": {"type": "string", "index": 13, "name": "serviceactivationdate", "comment": null}, "serviceactivation__c": {"type": "string", "index": 14, "name": "serviceactivation__c", "comment": null}, "soldtocontactid": {"type": "string", "index": 15, "name": "soldtocontactid", "comment": null}, "subscriptionid": {"type": "string", "index": 16, "name": "subscriptionid", "comment": null}, "subscriptionversionamendmentid": {"type": "string", "index": 17, "name": "subscriptionversionamendmentid", "comment": null}, "type": {"type": "string", "index": 18, "name": "type", "comment": null}, "updatedbyid": {"type": "string", "index": 19, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 20, "name": "updateddate", "comment": null}, "addrateplanid": {"type": "string", "index": 21, "name": "addrateplanid", "comment": null}, "autogenerated": {"type": "boolean", "index": 22, "name": "autogenerated", "comment": null}, "autorenew": {"type": "boolean", "index": 23, "name": "autorenew", "comment": null}, "cancellationeffectivedate": {"type": "string", "index": 24, "name": "cancellationeffectivedate", "comment": null}, "changereason": {"type": "string", "index": 25, "name": "changereason", "comment": null}, "currenttermperiodtype": {"type": "string", "index": 26, "name": "currenttermperiodtype", "comment": null}, "currentterm": {"type": "long", "index": 27, "name": "currentterm", "comment": null}, "orderactionbilltoid": {"type": "string", "index": 28, "name": "orderactionbilltoid", "comment": null}, "paymentterm": {"type": "string", "index": 29, "name": "paymentterm", "comment": null}, "removerateplanid": {"type": "string", "index": 30, "name": "removerateplanid", "comment": null}, "renewsetting": {"type": "string", "index": 31, "name": "renewsetting", "comment": null}, "renewaltermperiodtype": {"type": "string", "index": 32, "name": "renewaltermperiodtype", "comment": null}, "renewalterm": {"type": "long", "index": 33, "name": "renewalterm", "comment": null}, "status": {"type": "string", "index": 34, "name": "status", "comment": null}, "subtype": {"type": "string", "index": 35, "name": "subtype", "comment": null}, "termstartdate": {"type": "string", "index": 36, "name": "termstartdate", "comment": null}, "termtype": {"type": "string", "index": 37, "name": "termtype", "comment": null}, "updaterateplanid": {"type": "string", "index": 38, "name": "updaterateplanid", "comment": null}, "downgradedstorepackage1__c": {"type": "string", "index": 39, "name": "downgradedstorepackage1__c", "comment": null}, "downgradedstorepackage2__c": {"type": "string", "index": 40, "name": "downgradedstorepackage2__c", "comment": null}, "downgradedstorepackage3__c": {"type": "string", "index": 41, "name": "downgradedstorepackage3__c", "comment": null}, "downgradedstorepackage4__c": {"type": "string", "index": 42, "name": "downgradedstorepackage4__c", "comment": null}, "downgradedstorepackage5__c": {"type": "string", "index": 43, "name": "downgradedstorepackage5__c", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 44, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 45, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 46, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 47, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 48, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 49, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 50, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 51, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.orderaction"}, "source.yoda.analytics__zuora.ordermrr": {"metadata": {"type": "view", "schema": "zuora", "name": "ordermrr", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "accountid": {"type": "string", "index": 1, "name": "accountid", "comment": null}, "amendmentid": {"type": "string", "index": 2, "name": "amendmentid", "comment": null}, "billtocontactid": {"type": "string", "index": 3, "name": "billtocontactid", "comment": null}, "createdbyid": {"type": "string", "index": 4, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 5, "name": "createddate", "comment": null}, "defaultpaymentmethodid": {"type": "string", "index": 6, "name": "defaultpaymentmethodid", "comment": null}, "discountchargeid": {"type": "string", "index": 7, "name": "discountchargeid", "comment": null}, "enddate": {"type": "string", "index": 8, "name": "enddate", "comment": null}, "id": {"type": "string", "index": 9, "name": "id", "comment": null}, "invoiceownerid": {"type": "string", "index": 10, "name": "invoiceownerid", "comment": null}, "orderactionid": {"type": "string", "index": 11, "name": "orderactionid", "comment": null}, "orderid": {"type": "string", "index": 12, "name": "orderid", "comment": null}, "parentaccountid": {"type": "string", "index": 13, "name": "parentaccountid", "comment": null}, "productid": {"type": "string", "index": 14, "name": "productid", "comment": null}, "productrateplanchargeid": {"type": "string", "index": 15, "name": "productrateplanchargeid", "comment": null}, "productrateplanid": {"type": "string", "index": 16, "name": "productrateplanid", "comment": null}, "rateplanchargeid": {"type": "string", "index": 17, "name": "rateplanchargeid", "comment": null}, "rateplanid": {"type": "string", "index": 18, "name": "rateplanid", "comment": null}, "soldtocontactid": {"type": "string", "index": 19, "name": "soldtocontactid", "comment": null}, "startdate": {"type": "string", "index": 20, "name": "startdate", "comment": null}, "subscriptionid": {"type": "string", "index": 21, "name": "subscriptionid", "comment": null}, "subscriptionownerid": {"type": "string", "index": 22, "name": "subscriptionownerid", "comment": null}, "subscriptionversionamendmentid": {"type": "string", "index": 23, "name": "subscriptionversionamendmentid", "comment": null}, "term": {"type": "long", "index": 24, "name": "term", "comment": null}, "type": {"type": "string", "index": 25, "name": "type", "comment": null}, "updatedbyid": {"type": "string", "index": 26, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 27, "name": "updateddate", "comment": null}, "value": {"type": "double", "index": 28, "name": "value", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 29, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 30, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 31, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 32, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 33, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 34, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 35, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 36, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.ordermrr"}, "source.yoda.analytics__zuora.product": {"metadata": {"type": "view", "schema": "zuora", "name": "product", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "allowfeaturechanges": {"type": "boolean", "index": 1, "name": "allowfeaturechanges", "comment": null}, "category": {"type": "string", "index": 2, "name": "category", "comment": null}, "createdbyid": {"type": "string", "index": 3, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 4, "name": "createddate", "comment": null}, "description": {"type": "string", "index": 5, "name": "description", "comment": null}, "effectiveenddate": {"type": "string", "index": 6, "name": "effectiveenddate", "comment": null}, "effectivestartdate": {"type": "string", "index": 7, "name": "effectivestartdate", "comment": null}, "id": {"type": "string", "index": 8, "name": "id", "comment": null}, "integrationid__ns": {"type": "string", "index": 9, "name": "integrationid__ns", "comment": null}, "integrationstatus__ns": {"type": "string", "index": 10, "name": "integrationstatus__ns", "comment": null}, "itemtype__ns": {"type": "string", "index": 11, "name": "itemtype__ns", "comment": null}, "name": {"type": "string", "index": 12, "name": "name", "comment": null}, "plan_metadata__c": {"type": "string", "index": 13, "name": "plan_metadata__c", "comment": null}, "productfamily__c": {"type": "string", "index": 14, "name": "productfamily__c", "comment": null}, "provisioned_package__c": {"type": "string", "index": 15, "name": "provisioned_package__c", "comment": null}, "provisionrequired__c": {"type": "string", "index": 16, "name": "provisionrequired__c", "comment": null}, "sku": {"type": "string", "index": 17, "name": "sku", "comment": null}, "syncdate__ns": {"type": "string", "index": 18, "name": "syncdate__ns", "comment": null}, "taxengine__c": {"type": "string", "index": 19, "name": "taxengine__c", "comment": null}, "updatedbyid": {"type": "string", "index": 20, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 21, "name": "updateddate", "comment": null}, "htltflag__c": {"type": "string", "index": 22, "name": "htltflag__c", "comment": null}, "corepackage__c": {"type": "string", "index": 23, "name": "corepackage__c", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 24, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 25, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 26, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 27, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 28, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 29, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 30, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 31, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.product"}, "source.yoda.analytics__zuora.productrateplan": {"metadata": {"type": "view", "schema": "zuora", "name": "productrateplan", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "id": {"type": "string", "index": 1, "name": "id", "comment": null}, "billingperiod__ns": {"type": "string", "index": 2, "name": "billingperiod__ns", "comment": null}, "class__ns": {"type": "string", "index": 3, "name": "class__ns", "comment": null}, "createdbyid": {"type": "string", "index": 4, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 5, "name": "createddate", "comment": null}, "department__ns": {"type": "string", "index": 6, "name": "department__ns", "comment": null}, "description": {"type": "string", "index": 7, "name": "description", "comment": null}, "effectiveenddate": {"type": "string", "index": 8, "name": "effectiveenddate", "comment": null}, "effectivestartdate": {"type": "string", "index": 9, "name": "effectivestartdate", "comment": null}, "includechildren__ns": {"type": "string", "index": 10, "name": "includechildren__ns", "comment": null}, "integrationid__ns": {"type": "string", "index": 11, "name": "integrationid__ns", "comment": null}, "integrationstatus__ns": {"type": "string", "index": 12, "name": "integrationstatus__ns", "comment": null}, "itemtype__ns": {"type": "string", "index": 13, "name": "itemtype__ns", "comment": null}, "location__ns": {"type": "string", "index": 14, "name": "location__ns", "comment": null}, "multicurrencyprice__ns": {"type": "string", "index": 15, "name": "multicurrencyprice__ns", "comment": null}, "name": {"type": "string", "index": 16, "name": "name", "comment": null}, "price__ns": {"type": "string", "index": 17, "name": "price__ns", "comment": null}, "productid": {"type": "string", "index": 18, "name": "productid", "comment": null}, "subsidiary__ns": {"type": "string", "index": 19, "name": "subsidiary__ns", "comment": null}, "syncdate__ns": {"type": "string", "index": 20, "name": "syncdate__ns", "comment": null}, "taxcode__ns": {"type": "string", "index": 21, "name": "taxcode__ns", "comment": null}, "updatedbyid": {"type": "string", "index": 22, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 23, "name": "updateddate", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 24, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 25, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 26, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 27, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 28, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 29, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 30, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 31, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.productrateplan"}, "source.yoda.analytics__zuora.productrateplancharge": {"metadata": {"type": "view", "schema": "zuora", "name": "productrateplancharge", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "id": {"type": "string", "index": 1, "name": "id", "comment": null}, "accountreceivableaccountingcodeid": {"type": "string", "index": 2, "name": "accountreceivableaccountingcodeid", "comment": null}, "accountingcode": {"type": "string", "index": 3, "name": "accountingcode", "comment": null}, "adjustmentliabilityaccountingcodeid": {"type": "string", "index": 4, "name": "adjustmentliabilityaccountingcodeid", "comment": null}, "adjustmentrevenueaccountingcodeid": {"type": "string", "index": 5, "name": "adjustmentrevenueaccountingcodeid", "comment": null}, "allocationeligible_zrev__c": {"type": "string", "index": 6, "name": "allocationeligible_zrev__c", "comment": null}, "applydiscountto": {"type": "string", "index": 7, "name": "applydiscountto", "comment": null}, "billcycletype": {"type": "string", "index": 8, "name": "billcycletype", "comment": null}, "billingperiodalignment": {"type": "string", "index": 9, "name": "billingperiodalignment", "comment": null}, "billingperiod": {"type": "string", "index": 10, "name": "billingperiod", "comment": null}, "billingtiming": {"type": "string", "index": 11, "name": "billingtiming", "comment": null}, "chargemodel": {"type": "string", "index": 12, "name": "chargemodel", "comment": null}, "chargetype": {"type": "string", "index": 13, "name": "chargetype", "comment": null}, "class__ns": {"type": "string", "index": 14, "name": "class__ns", "comment": null}, "contractassetaccountingcodeid": {"type": "string", "index": 15, "name": "contractassetaccountingcodeid", "comment": null}, "contractliabilityaccountingcodeid": {"type": "string", "index": 16, "name": "contractliabilityaccountingcodeid", "comment": null}, "contractrecognizedrevenueaccountingcodeid": {"type": "string", "index": 17, "name": "contractrecognizedrevenueaccountingcodeid", "comment": null}, "createdbyid": {"type": "string", "index": 18, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 19, "name": "createddate", "comment": null}, "defaultquantity": {"type": "long", "index": 20, "name": "defaultquantity", "comment": null}, "deferredrevaccount__ns": {"type": "string", "index": 21, "name": "deferredrevaccount__ns", "comment": null}, "deferredrevenueaccountingcodeid": {"type": "string", "index": 22, "name": "deferredrevenueaccountingcodeid", "comment": null}, "deferredrevenueaccount": {"type": "string", "index": 23, "name": "deferredrevenueaccount", "comment": null}, "department__ns": {"type": "string", "index": 24, "name": "department__ns", "comment": null}, "description": {"type": "string", "index": 25, "name": "description", "comment": null}, "discountclassid": {"type": "string", "index": 26, "name": "discountclassid", "comment": null}, "discountlevel": {"type": "string", "index": 27, "name": "discountlevel", "comment": null}, "enddatecondition": {"type": "string", "index": 28, "name": "enddatecondition", "comment": null}, "excludeitembillingfromrevenueaccounting": {"type": "boolean", "index": 29, "name": "excludeitembillingfromrevenueaccounting", "comment": null}, "excludeitembookingfromrevenueaccounting": {"type": "boolean", "index": 30, "name": "excludeitembookingfromrevenueaccounting", "comment": null}, "excludefromrevenue__c": {"type": "string", "index": 31, "name": "excludefromrevenue__c", "comment": null}, "includechildren__ns": {"type": "string", "index": 32, "name": "includechildren__ns", "comment": null}, "includedunits": {"type": "long", "index": 33, "name": "includedunits", "comment": null}, "integrationid__ns": {"type": "string", "index": 34, "name": "integrationid__ns", "comment": null}, "integrationstatus__ns": {"type": "string", "index": 35, "name": "integrationstatus__ns", "comment": null}, "itemtype__ns": {"type": "string", "index": 36, "name": "itemtype__ns", "comment": null}, "legacyrevenuereporting": {"type": "boolean", "index": 37, "name": "legacyrevenuereporting", "comment": null}, "listpricebase": {"type": "string", "index": 38, "name": "listpricebase", "comment": null}, "location__ns": {"type": "string", "index": 39, "name": "location__ns", "comment": null}, "name": {"type": "string", "index": 40, "name": "name", "comment": null}, "numberofperiod": {"type": "long", "index": 41, "name": "numberofperiod", "comment": null}, "overagecalculationoption": {"type": "string", "index": 42, "name": "overagecalculationoption", "comment": null}, "overageunusedunitscreditoption": {"type": "string", "index": 43, "name": "overageunusedunitscreditoption", "comment": null}, "pobidentifier_zrev__c": {"type": "string", "index": 44, "name": "pobidentifier_zrev__c", "comment": null}, "pricechangeoption": {"type": "string", "index": 45, "name": "pricechangeoption", "comment": null}, "priceincreasepercentage": {"type": "long", "index": 46, "name": "priceincreasepercentage", "comment": null}, "productid": {"type": "string", "index": 47, "name": "productid", "comment": null}, "productrateplanid": {"type": "string", "index": 48, "name": "productrateplanid", "comment": null}, "ratinggroup": {"type": "string", "index": 49, "name": "ratinggroup", "comment": null}, "recognizedrevaccount__ns": {"type": "string", "index": 50, "name": "recognizedrevaccount__ns", "comment": null}, "recognizedrevenueaccountingcodeid": {"type": "string", "index": 51, "name": "recognizedrevenueaccountingcodeid", "comment": null}, "recognizedrevenueaccount": {"type": "string", "index": 52, "name": "recognizedrevenueaccount", "comment": null}, "revreccode": {"type": "string", "index": 53, "name": "revreccode", "comment": null}, "revrecend__ns": {"type": "string", "index": 54, "name": "revrecend__ns", "comment": null}, "revrecstart__ns": {"type": "string", "index": 55, "name": "revrecstart__ns", "comment": null}, "revrectemplatetype__ns": {"type": "string", "index": 56, "name": "revrectemplatetype__ns", "comment": null}, "revrectriggercondition": {"type": "string", "index": 57, "name": "revrectriggercondition", "comment": null}, "revenuerecognitionrulename": {"type": "string", "index": 58, "name": "revenuerecognitionrulename", "comment": null}, "smoothingmodel": {"type": "string", "index": 59, "name": "smoothingmodel", "comment": null}, "subsidiary__ns": {"type": "string", "index": 60, "name": "subsidiary__ns", "comment": null}, "syncdate__ns": {"type": "string", "index": 61, "name": "syncdate__ns", "comment": null}, "taxcode": {"type": "string", "index": 62, "name": "taxcode", "comment": null}, "taxmode": {"type": "string", "index": 63, "name": "taxmode", "comment": null}, "taxable": {"type": "boolean", "index": 64, "name": "taxable", "comment": null}, "triggerevent": {"type": "string", "index": 65, "name": "triggerevent", "comment": null}, "uom": {"type": "string", "index": 66, "name": "uom", "comment": null}, "unbilledreceivablesaccountingcodeid": {"type": "string", "index": 67, "name": "unbilledreceivablesaccountingcodeid", "comment": null}, "uptoperiodstype": {"type": "string", "index": 68, "name": "uptoperiodstype", "comment": null}, "updatedbyid": {"type": "string", "index": 69, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 70, "name": "updateddate", "comment": null}, "usagerecordratingoption": {"type": "string", "index": 71, "name": "usagerecordratingoption", "comment": null}, "usediscountspecificaccountingcode": {"type": "boolean", "index": 72, "name": "usediscountspecificaccountingcode", "comment": null}, "usetenantdefaultforpricechange": {"type": "boolean", "index": 73, "name": "usetenantdefaultforpricechange", "comment": null}, "vceligible_zrev__c": {"type": "string", "index": 74, "name": "vceligible_zrev__c", "comment": null}, "weeklybillcycleday": {"type": "string", "index": 75, "name": "weeklybillcycleday", "comment": null}, "billcycleday": {"type": "long", "index": 76, "name": "billcycleday", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 77, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 78, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 79, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 80, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 81, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 82, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 83, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 84, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.productrateplancharge"}, "source.yoda.analytics__zuora.rateplan": {"metadata": {"type": "view", "schema": "zuora", "name": "rateplan", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "total_price__c": {"type": "string", "index": 1, "name": "total_price__c", "comment": null}, "accountid": {"type": "string", "index": 2, "name": "accountid", "comment": null}, "amendmentid": {"type": "string", "index": 3, "name": "amendmentid", "comment": null}, "amendmenttype": {"type": "string", "index": 4, "name": "amendmenttype", "comment": null}, "billtocontactid": {"type": "string", "index": 5, "name": "billtocontactid", "comment": null}, "createdbyid": {"type": "string", "index": 6, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 7, "name": "createddate", "comment": null}, "defaultpaymentmethodid": {"type": "string", "index": 8, "name": "defaultpaymentmethodid", "comment": null}, "id": {"type": "string", "index": 9, "name": "id", "comment": null}, "name": {"type": "string", "index": 10, "name": "name", "comment": null}, "parentaccountid": {"type": "string", "index": 11, "name": "parentaccountid", "comment": null}, "productid": {"type": "string", "index": 12, "name": "productid", "comment": null}, "productrateplanid": {"type": "string", "index": 13, "name": "productrateplanid", "comment": null}, "soldtocontactid": {"type": "string", "index": 14, "name": "soldtocontactid", "comment": null}, "subscriptionid": {"type": "string", "index": 15, "name": "subscriptionid", "comment": null}, "subscriptionversionamendmentid": {"type": "string", "index": 16, "name": "subscriptionversionamendmentid", "comment": null}, "updatedbyid": {"type": "string", "index": 17, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 18, "name": "updateddate", "comment": null}, "product_family__c": {"type": "string", "index": 19, "name": "product_family__c", "comment": null}, "bundlename__c": {"type": "string", "index": 20, "name": "bundlename__c", "comment": null}, "bundlesku__c": {"type": "string", "index": 21, "name": "bundlesku__c", "comment": null}, "originalrateplanid": {"type": "string", "index": 22, "name": "originalrateplanid", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 23, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 24, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 25, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 26, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 27, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 28, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 29, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 30, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.rateplan"}, "source.yoda.analytics__zuora.rateplancharge": {"metadata": {"type": "view", "schema": "zuora", "name": "rateplancharge", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "accountid": {"type": "string", "index": 1, "name": "accountid", "comment": null}, "accountreceivableaccountingcodeid": {"type": "string", "index": 2, "name": "accountreceivableaccountingcodeid", "comment": null}, "accountingcode": {"type": "string", "index": 3, "name": "accountingcode", "comment": null}, "amendmentid": {"type": "string", "index": 4, "name": "amendmentid", "comment": null}, "applydiscountto": {"type": "string", "index": 5, "name": "applydiscountto", "comment": null}, "billcycleday": {"type": "long", "index": 6, "name": "billcycleday", "comment": null}, "billcycletype": {"type": "string", "index": 7, "name": "billcycletype", "comment": null}, "billtocontactid": {"type": "string", "index": 8, "name": "billtocontactid", "comment": null}, "billingperiodalignment": {"type": "string", "index": 9, "name": "billingperiodalignment", "comment": null}, "billingperiod": {"type": "string", "index": 10, "name": "billingperiod", "comment": null}, "billingtiming": {"type": "string", "index": 11, "name": "billingtiming", "comment": null}, "chargemodel": {"type": "string", "index": 12, "name": "chargemodel", "comment": null}, "chargenumber": {"type": "string", "index": 13, "name": "chargenumber", "comment": null}, "chargetype": {"type": "string", "index": 14, "name": "chargetype", "comment": null}, "chargedthroughdate": {"type": "string", "index": 15, "name": "chargedthroughdate", "comment": null}, "createdbyid": {"type": "string", "index": 16, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 17, "name": "createddate", "comment": null}, "dmrc": {"type": "double", "index": 18, "name": "dmrc", "comment": null}, "dtcv": {"type": "double", "index": 19, "name": "dtcv", "comment": null}, "defaultpaymentmethodid": {"type": "string", "index": 20, "name": "defaultpaymentmethodid", "comment": null}, "deferredrevenueaccountingcodeid": {"type": "string", "index": 21, "name": "deferredrevenueaccountingcodeid", "comment": null}, "description": {"type": "string", "index": 22, "name": "description", "comment": null}, "discountlevel": {"type": "string", "index": 23, "name": "discountlevel", "comment": null}, "effectiveenddate": {"type": "string", "index": 24, "name": "effectiveenddate", "comment": null}, "effectivestartdate": {"type": "string", "index": 25, "name": "effectivestartdate", "comment": null}, "enddatecondition": {"type": "string", "index": 26, "name": "enddatecondition", "comment": null}, "id": {"type": "string", "index": 27, "name": "id", "comment": null}, "islastsegment": {"type": "boolean", "index": 28, "name": "islastsegment", "comment": null}, "isprocessed": {"type": "boolean", "index": 29, "name": "isprocessed", "comment": null}, "listpricebase": {"type": "string", "index": 30, "name": "listpricebase", "comment": null}, "mrr": {"type": "double", "index": 31, "name": "mrr", "comment": null}, "name": {"type": "string", "index": 32, "name": "name", "comment": null}, "numberofperiods": {"type": "long", "index": 33, "name": "numberofperiods", "comment": null}, "originalid": {"type": "string", "index": 34, "name": "originalid", "comment": null}, "overagecalculationoption": {"type": "string", "index": 35, "name": "overagecalculationoption", "comment": null}, "overageunusedunitscreditoption": {"type": "string", "index": 36, "name": "overageunusedunitscreditoption", "comment": null}, "parentaccountid": {"type": "string", "index": 37, "name": "parentaccountid", "comment": null}, "pricechangeoption": {"type": "string", "index": 38, "name": "pricechangeoption", "comment": null}, "priceincreasepercentage": {"type": "long", "index": 39, "name": "priceincreasepercentage", "comment": null}, "processedthroughdate": {"type": "string", "index": 40, "name": "processedthroughdate", "comment": null}, "productid": {"type": "string", "index": 41, "name": "productid", "comment": null}, "productrateplanchargeid": {"type": "string", "index": 42, "name": "productrateplanchargeid", "comment": null}, "productrateplanid": {"type": "string", "index": 43, "name": "productrateplanid", "comment": null}, "quantity": {"type": "long", "index": 44, "name": "quantity", "comment": null}, "rateplanid": {"type": "string", "index": 45, "name": "rateplanid", "comment": null}, "ratinggroup": {"type": "string", "index": 46, "name": "ratinggroup", "comment": null}, "recognizedrevenueaccountingcodeid": {"type": "string", "index": 47, "name": "recognizedrevenueaccountingcodeid", "comment": null}, "revreccode": {"type": "string", "index": 48, "name": "revreccode", "comment": null}, "revrectriggercondition": {"type": "string", "index": 49, "name": "revrectriggercondition", "comment": null}, "revenuerecognitionrulename": {"type": "string", "index": 50, "name": "revenuerecognitionrulename", "comment": null}, "segment": {"type": "long", "index": 51, "name": "segment", "comment": null}, "soldtocontactid": {"type": "string", "index": 52, "name": "soldtocontactid", "comment": null}, "subscriptionid": {"type": "string", "index": 53, "name": "subscriptionid", "comment": null}, "tcv": {"type": "double", "index": 54, "name": "tcv", "comment": null}, "triggerevent": {"type": "string", "index": 55, "name": "triggerevent", "comment": null}, "uom": {"type": "string", "index": 56, "name": "uom", "comment": null}, "uptoperiodstype": {"type": "string", "index": 57, "name": "uptoperiodstype", "comment": null}, "updatedbyid": {"type": "string", "index": 58, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 59, "name": "updateddate", "comment": null}, "version": {"type": "long", "index": 60, "name": "version", "comment": null}, "weeklybillcycleday": {"type": "string", "index": 61, "name": "weeklybillcycleday", "comment": null}, "excludeitembillingfromrevenueaccounting": {"type": "boolean", "index": 62, "name": "excludeitembillingfromrevenueaccounting", "comment": null}, "excludeitembookingfromrevenueaccounting": {"type": "boolean", "index": 63, "name": "excludeitembookingfromrevenueaccounting", "comment": null}, "freedayschargeflag__c": {"type": "string", "index": 64, "name": "freedayschargeflag__c", "comment": null}, "isprepaid": {"type": "boolean", "index": 65, "name": "isprepaid", "comment": null}, "optoutduration__c": {"type": "string", "index": 66, "name": "optoutduration__c", "comment": null}, "prepaidoperationtype": {"type": "string", "index": 67, "name": "prepaidoperationtype", "comment": null}, "prepaiduom": {"type": "string", "index": 68, "name": "prepaiduom", "comment": null}, "validityperiodtype": {"type": "string", "index": 69, "name": "validityperiodtype", "comment": null}, "amendedbyorderon": {"type": "string", "index": 70, "name": "amendedbyorderon", "comment": null}, "bundlename__c": {"type": "string", "index": 71, "name": "bundlename__c", "comment": null}, "bundlesku__c": {"type": "string", "index": 72, "name": "bundlesku__c", "comment": null}, "bundleyn__c": {"type": "string", "index": 73, "name": "bundleyn__c", "comment": null}, "bundleyesno__c": {"type": "string", "index": 74, "name": "bundleyesno__c", "comment": null}, "originalorderdate": {"type": "string", "index": 75, "name": "originalorderdate", "comment": null}, "dmrchomecurrency": {"type": "double", "index": 76, "name": "dmrchomecurrency", "comment": null}, "dmrccurrencyrounding": {"type": "integer", "index": 77, "name": "dmrccurrencyrounding", "comment": null}, "dtcvhomecurrency": {"type": "double", "index": 78, "name": "dtcvhomecurrency", "comment": null}, "dtcvcurrencyrounding": {"type": "long", "index": 79, "name": "dtcvcurrencyrounding", "comment": null}, "mrrhomecurrency": {"type": "double", "index": 80, "name": "mrrhomecurrency", "comment": null}, "mrrcurrencyrounding": {"type": "double", "index": 81, "name": "mrrcurrencyrounding", "comment": null}, "tcvhomecurrency": {"type": "double", "index": 82, "name": "tcvhomecurrency", "comment": null}, "tcvcurrencyrounding": {"type": "double", "index": 83, "name": "tcvcurrencyrounding", "comment": null}, "exchangerate": {"type": "double", "index": 84, "name": "exchangerate", "comment": null}, "exchangeratedate": {"type": "date", "index": 85, "name": "exchangeratedate", "comment": null}, "providerexchangeratedate": {"type": "date", "index": 86, "name": "providerexchangeratedate", "comment": null}, "homecurrency": {"type": "string", "index": 87, "name": "homecurrency", "comment": null}, "transactioncurrency": {"type": "string", "index": 88, "name": "transactioncurrency", "comment": null}, "bookingexchangerate": {"type": "double", "index": 89, "name": "bookingexchangerate", "comment": null}, "bookingexchangeratedate": {"type": "date", "index": 90, "name": "bookingexchangeratedate", "comment": null}, "bookingproviderexchangeratedate": {"type": "date", "index": 91, "name": "bookingproviderexchangeratedate", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 92, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 93, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 94, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 95, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 96, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 97, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 98, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 99, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.rateplancharge"}, "source.yoda.analytics__zuora.rateplanchargetier": {"metadata": {"type": "view", "schema": "zuora", "name": "rateplanchargetier", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "amendmentid": {"type": "string", "index": 1, "name": "amendmentid", "comment": null}, "createdbyid": {"type": "string", "index": 2, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 3, "name": "createddate", "comment": null}, "currency": {"type": "string", "index": 4, "name": "currency", "comment": null}, "discountpercentage": {"type": "double", "index": 5, "name": "discountpercentage", "comment": null}, "id": {"type": "string", "index": 6, "name": "id", "comment": null}, "includedunits": {"type": "long", "index": 7, "name": "includedunits", "comment": null}, "overageprice": {"type": "double", "index": 8, "name": "overageprice", "comment": null}, "priceformat": {"type": "string", "index": 9, "name": "priceformat", "comment": null}, "price": {"type": "double", "index": 10, "name": "price", "comment": null}, "productid": {"type": "string", "index": 11, "name": "productid", "comment": null}, "productrateplanchargeid": {"type": "string", "index": 12, "name": "productrateplanchargeid", "comment": null}, "productrateplanid": {"type": "string", "index": 13, "name": "productrateplanid", "comment": null}, "rateplanchargeid": {"type": "string", "index": 14, "name": "rateplanchargeid", "comment": null}, "rateplanid": {"type": "string", "index": 15, "name": "rateplanid", "comment": null}, "subscriptionid": {"type": "string", "index": 16, "name": "subscriptionid", "comment": null}, "tier": {"type": "long", "index": 17, "name": "tier", "comment": null}, "updatedbyid": {"type": "string", "index": 18, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 19, "name": "updateddate", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 20, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 21, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 22, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 23, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 24, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 25, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 26, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 27, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.rateplanchargetier"}, "source.yoda.analytics__zuora.subscription": {"metadata": {"type": "view", "schema": "zuora", "name": "subscription", "database": null, "comment": null, "owner": "root"}, "columns": {"deleted": {"type": "boolean", "index": 0, "name": "deleted", "comment": null}, "actual_contract_duration__c": {"type": "string", "index": 1, "name": "actual_contract_duration__c", "comment": null}, "appkey__c": {"type": "string", "index": 2, "name": "appkey__c", "comment": null}, "autorenew": {"type": "boolean", "index": 3, "name": "autorenew", "comment": null}, "cancelleddate": {"type": "string", "index": 4, "name": "cancelleddate", "comment": null}, "cancelreason": {"type": "string", "index": 5, "name": "cancelreason", "comment": null}, "contractacceptancedate": {"type": "string", "index": 6, "name": "contractacceptancedate", "comment": null}, "contracteffectivedate": {"type": "string", "index": 7, "name": "contracteffectivedate", "comment": null}, "cpqbundlejsonid__qt": {"type": "string", "index": 8, "name": "cpqbundlejsonid__qt", "comment": null}, "createdbyid": {"type": "string", "index": 9, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 10, "name": "createddate", "comment": null}, "creatoraccountid": {"type": "string", "index": 11, "name": "creatoraccountid", "comment": null}, "creatorinvoiceownerid": {"type": "string", "index": 12, "name": "creatorinvoiceownerid", "comment": null}, "csm_extension_months__c": {"type": "string", "index": 13, "name": "csm_extension_months__c", "comment": null}, "currentterm": {"type": "long", "index": 14, "name": "currentterm", "comment": null}, "currenttermperiodtype": {"type": "string", "index": 15, "name": "currenttermperiodtype", "comment": null}, "dashboardexcelusionreason__c": {"type": "string", "index": 16, "name": "dashboardexcelusionreason__c", "comment": null}, "downgraded__c": {"type": "string", "index": 17, "name": "downgraded__c", "comment": null}, "end_of_contract_extension_month__c": {"type": "string", "index": 18, "name": "end_of_contract_extension_month__c", "comment": null}, "exclude_from_dunning_until__c": {"type": "string", "index": 19, "name": "exclude_from_dunning_until__c", "comment": null}, "excludefromdashboards__c": {"type": "string", "index": 20, "name": "excludefromdashboards__c", "comment": null}, "excludefrommonitordashboard__c": {"type": "string", "index": 21, "name": "excludefrommonitordashboard__c", "comment": null}, "id": {"type": "string", "index": 22, "name": "id", "comment": null}, "includeinpastduefile__c": {"type": "string", "index": 23, "name": "includeinpastduefile__c", "comment": null}, "initialterm": {"type": "long", "index": 24, "name": "initialterm", "comment": null}, "initialtermperiodtype": {"type": "string", "index": 25, "name": "initialtermperiodtype", "comment": null}, "integrationid__ns": {"type": "string", "index": 26, "name": "integrationid__ns", "comment": null}, "integrationstatus__ns": {"type": "string", "index": 27, "name": "integrationstatus__ns", "comment": null}, "invoiceownerid": {"type": "string", "index": 28, "name": "invoiceownerid", "comment": null}, "isinvoiceseparate": {"type": "boolean", "index": 29, "name": "isinvoiceseparate", "comment": null}, "islatestversion": {"type": "boolean", "index": 30, "name": "islatestversion", "comment": null}, "ismigrationsubscription__c": {"type": "string", "index": 31, "name": "ismigrationsubscription__c", "comment": null}, "isstaggered__c": {"type": "string", "index": 32, "name": "isstaggered__c", "comment": null}, "name": {"type": "string", "index": 33, "name": "name", "comment": null}, "notes": {"type": "string", "index": 34, "name": "notes", "comment": null}, "opportunityname__qt": {"type": "string", "index": 35, "name": "opportunityname__qt", "comment": null}, "original_contract_duration__c": {"type": "string", "index": 36, "name": "original_contract_duration__c", "comment": null}, "originalcreateddate": {"type": "string", "index": 37, "name": "originalcreateddate", "comment": null}, "originalid": {"type": "string", "index": 38, "name": "originalid", "comment": null}, "originalrenewaldate__c": {"type": "string", "index": 39, "name": "originalrenewaldate__c", "comment": null}, "paymentterm": {"type": "string", "index": 40, "name": "paymentterm", "comment": null}, "previoussubscriptionid": {"type": "string", "index": 41, "name": "previoussubscriptionid", "comment": null}, "project__ns": {"type": "string", "index": 42, "name": "project__ns", "comment": null}, "quotebusinesstype__qt": {"type": "string", "index": 43, "name": "quotebusinesstype__qt", "comment": null}, "quotenumber__qt": {"type": "string", "index": 44, "name": "quotenumber__qt", "comment": null}, "quotetype__qt": {"type": "string", "index": 45, "name": "quotetype__qt", "comment": null}, "renewalfromsubscription__c": {"type": "string", "index": 46, "name": "renewalfromsubscription__c", "comment": null}, "renewalsetting": {"type": "string", "index": 47, "name": "renewalsetting", "comment": null}, "renewalterm": {"type": "long", "index": 48, "name": "renewalterm", "comment": null}, "renewaltermperiodtype": {"type": "string", "index": 49, "name": "renewaltermperiodtype", "comment": null}, "salesorder__ns": {"type": "string", "index": 50, "name": "salesorder__ns", "comment": null}, "segment__c": {"type": "string", "index": 51, "name": "segment__c", "comment": null}, "serviceactivationdate": {"type": "string", "index": 52, "name": "serviceactivationdate", "comment": null}, "sf_opportunityid__c": {"type": "string", "index": 53, "name": "sf_opportunityid__c", "comment": null}, "status": {"type": "string", "index": 54, "name": "status", "comment": null}, "storename__c": {"type": "string", "index": 55, "name": "storename__c", "comment": null}, "subscriptionenddate": {"type": "string", "index": 56, "name": "subscriptionenddate", "comment": null}, "subscriptionstartdate": {"type": "string", "index": 57, "name": "subscriptionstartdate", "comment": null}, "syncdate__ns": {"type": "string", "index": 58, "name": "syncdate__ns", "comment": null}, "termenddate": {"type": "string", "index": 59, "name": "termenddate", "comment": null}, "termstartdate": {"type": "string", "index": 60, "name": "termstartdate", "comment": null}, "termtype": {"type": "string", "index": 61, "name": "termtype", "comment": null}, "total_price__c": {"type": "string", "index": 62, "name": "total_price__c", "comment": null}, "updatedbyid": {"type": "string", "index": 63, "name": "updatedbyid", "comment": null}, "updateddate": {"type": "string", "index": 64, "name": "updateddate", "comment": null}, "upsctpcode__c": {"type": "string", "index": 65, "name": "upsctpcode__c", "comment": null}, "version": {"type": "long", "index": 66, "name": "version", "comment": null}, "billtocontactid": {"type": "string", "index": 67, "name": "billtocontactid", "comment": null}, "defaultpaymentmethodid": {"type": "string", "index": 68, "name": "defaultpaymentmethodid", "comment": null}, "parentaccountid": {"type": "string", "index": 69, "name": "parentaccountid", "comment": null}, "soldtocontactid": {"type": "string", "index": 70, "name": "soldtocontactid", "comment": null}, "subscriptionversionamendmentid": {"type": "string", "index": 71, "name": "subscriptionversionamendmentid", "comment": null}, "subscriptionbilltoid": {"type": "string", "index": 72, "name": "subscriptionbilltoid", "comment": null}, "accountid": {"type": "string", "index": 73, "name": "accountid", "comment": null}, "trialsubscription": {"type": "string", "index": 74, "name": "trialsubscription", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 75, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 76, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 77, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 78, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 79, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 80, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 81, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 82, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__zuora.subscription"}, "source.yoda.platform__integrationscenter.store_applications": {"metadata": {"type": "view", "schema": "integrationscenter", "name": "store_applications", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "application_id": {"type": "long", "index": 5, "name": "application_id", "comment": null}, "disconnected_at": {"type": "timestamp", "index": 6, "name": "disconnected_at", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "kong_token_id": {"type": "string", "index": 9, "name": "kong_token_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__integrationscenter.store_applications"}, "source.yoda.platform__packages.categories": {"metadata": {"type": "view", "schema": "packages", "name": "categories", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "allow_multiple_packages": {"type": "long", "index": 5, "name": "allow_multiple_packages", "comment": null}}, "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.yoda.platform__packages.categories"}, "source.yoda.platform__packages.owners_package_audits": {"metadata": {"type": "view", "schema": "packages", "name": "owners_package_audits", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "owner_id": {"type": "string", "index": 4, "name": "owner_id", "comment": null}, "owner_type": {"type": "string", "index": 5, "name": "owner_type", "comment": null}, "from_package_id": {"type": "long", "index": 6, "name": "from_package_id", "comment": null}, "to_package_id": {"type": "long", "index": 7, "name": "to_package_id", "comment": null}, "action": {"type": "string", "index": 8, "name": "action", "comment": null}, "reason": {"type": "string", "index": 9, "name": "reason", "comment": null}, "created_at": {"type": "timestamp", "index": 10, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_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.yoda.platform__packages.owners_package_audits"}, "source.yoda.platform__packages.owners_packages": {"metadata": {"type": "view", "schema": "packages", "name": "owners_packages", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "owner_id": {"type": "string", "index": 4, "name": "owner_id", "comment": null}, "package_id": {"type": "long", "index": 5, "name": "package_id", "comment": null}, "owner_type": {"type": "string", "index": 6, "name": "owner_type", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "started_at": {"type": "timestamp", "index": 9, "name": "started_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.yoda.platform__packages.owners_packages"}, "source.yoda.platform__packages.owners_packages_history": {"metadata": {"type": "view", "schema": "packages", "name": "owners_packages_history", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "owner_id": {"type": "string", "index": 4, "name": "owner_id", "comment": null}, "package_id": {"type": "long", "index": 5, "name": "package_id", "comment": null}, "owner_type": {"type": "string", "index": 6, "name": "owner_type", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "started_at": {"type": "timestamp", "index": 9, "name": "started_at", "comment": null}, "deleted_at": {"type": "timestamp", "index": 10, "name": "deleted_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.yoda.platform__packages.owners_packages_history"}, "source.yoda.platform__packages.package_feature_settings": {"metadata": {"type": "view", "schema": "packages", "name": "package_feature_settings", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "package_feature_id": {"type": "long", "index": 4, "name": "package_feature_id", "comment": null}, "key": {"type": "string", "index": 5, "name": "key", "comment": null}, "value": {"type": "string", "index": 6, "name": "value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__packages.package_feature_settings"}, "source.yoda.platform__packages.package_features": {"metadata": {"type": "view", "schema": "packages", "name": "package_features", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "package_id": {"type": "long", "index": 4, "name": "package_id", "comment": null}, "feature_key": {"type": "string", "index": 5, "name": "feature_key", "comment": null}, "promoted": {"type": "long", "index": 6, "name": "promoted", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "feature_name": {"type": "string", "index": 9, "name": "feature_name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__packages.package_features"}, "source.yoda.platform__packages.package_tag_types": {"metadata": {"type": "view", "schema": "packages", "name": "package_tag_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "tag_type": {"type": "string", "index": 4, "name": "tag_type", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_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.yoda.platform__packages.package_tag_types"}, "source.yoda.platform__packages.package_tags": {"metadata": {"type": "view", "schema": "packages", "name": "package_tags", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "package_id": {"type": "long", "index": 4, "name": "package_id", "comment": null}, "package_tag_type_id": {"type": "long", "index": 5, "name": "package_tag_type_id", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_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.yoda.platform__packages.package_tags"}, "source.yoda.platform__packages.packages": {"metadata": {"type": "view", "schema": "packages", "name": "packages", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "category_id": {"type": "long", "index": 5, "name": "category_id", "comment": null}, "display_name": {"type": "string", "index": 6, "name": "display_name", "comment": null}, "description": {"type": "string", "index": 7, "name": "description", "comment": null}, "downgrade_package_id": {"type": "long", "index": 8, "name": "downgrade_package_id", "comment": null}, "package_key": {"type": "string", "index": 9, "name": "package_key", "comment": null}, "old_package_id": {"type": "long", "index": 10, "name": "old_package_id", "comment": null}, "category_priority": {"type": "long", "index": 11, "name": "category_priority", "comment": null}}, "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.yoda.platform__packages.packages"}, "source.yoda.platform__packages.platform_package_features": {"metadata": {"type": "view", "schema": "packages", "name": "platform_package_features", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "platform_name": {"type": "string", "index": 4, "name": "platform_name", "comment": null}, "package_id": {"type": "long", "index": 5, "name": "package_id", "comment": null}, "feature_key": {"type": "string", "index": 6, "name": "feature_key", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.platform__packages.platform_package_features"}, "source.yoda.subscriptions__customer_journey.customer_journey_event": {"metadata": {"type": "view", "schema": "customer_journey", "name": "customer_journey_event", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "customer_id": {"type": "string", "index": 5, "name": "customer_id", "comment": null}, "source_domain": {"type": "string", "index": 6, "name": "source_domain", "comment": null}, "source_id": {"type": "string", "index": 7, "name": "source_id", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "event_type": {"type": "string", "index": 10, "name": "event_type", "comment": null}, "event_origin": {"type": "string", "index": 11, "name": "event_origin", "comment": null}, "event_initiator": {"type": "string", "index": 12, "name": "event_initiator", "comment": null}, "event_time": {"type": "timestamp", "index": 13, "name": "event_time", "comment": null}, "properties": {"type": "string", "index": 14, "name": "properties", "comment": null}}, "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.yoda.subscriptions__customer_journey.customer_journey_event"}, "source.yoda.platform__homescreen.sections": {"metadata": {"type": "view", "schema": "homescreen", "name": "sections", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_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.yoda.platform__homescreen.sections"}, "source.yoda.platform__homescreen.synergies_crud": {"metadata": {"type": "table", "schema": "homescreen", "name": "synergies_crud", "database": null, "comment": null, "owner": null}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "op": {"type": "string", "index": 2, "name": "op", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "widget_id": {"type": "long", "index": 5, "name": "widget_id", "comment": null}, "status": {"type": "string", "index": 6, "name": "status", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 9, "name": "upsolver_schema_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__homescreen.synergies_crud"}, "source.yoda.platform__homescreen.widget_configurations": {"metadata": {"type": "view", "schema": "homescreen", "name": "widget_configurations", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "widget_id": {"type": "long", "index": 4, "name": "widget_id", "comment": null}, "configuration_key": {"type": "string", "index": 5, "name": "configuration_key", "comment": null}, "value": {"type": "string", "index": 6, "name": "value", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.platform__homescreen.widget_configurations"}, "source.yoda.platform__homescreen.widgets": {"metadata": {"type": "view", "schema": "homescreen", "name": "widgets", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "product_line_id": {"type": "long", "index": 4, "name": "product_line_id", "comment": null}, "section_id": {"type": "long", "index": 5, "name": "section_id", "comment": null}, "product_line_section_id": {"type": "long", "index": 6, "name": "product_line_section_id", "comment": null}, "widget_key": {"type": "string", "index": 7, "name": "widget_key", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_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.yoda.platform__homescreen.widgets"}, "source.yoda.platform__yotpoapiprod.account_platforms": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "account_platforms", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "account_id": {"type": "long", "index": 4, "name": "account_id", "comment": null}, "shop_token": {"type": "string", "index": 5, "name": "shop_token", "comment": null}, "shop_domain": {"type": "string", "index": 6, "name": "shop_domain", "comment": null}, "plan_name": {"type": "string", "index": 7, "name": "plan_name", "comment": null}, "platform_type_id": {"type": "long", "index": 8, "name": "platform_type_id", "comment": null}, "deleted": {"type": "long", "index": 9, "name": "deleted", "comment": null}, "shop_user_name": {"type": "string", "index": 10, "name": "shop_user_name", "comment": null}, "created_at": {"type": "timestamp", "index": 11, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 12, "name": "updated_at", "comment": null}, "valid_credentials": {"type": "long", "index": 13, "name": "valid_credentials", "comment": null}, "secondary_recurring_charge_id": {"type": "string", "index": 14, "name": "secondary_recurring_charge_id", "comment": null}, "secondary_activated_charge_at": {"type": "timestamp", "index": 15, "name": "secondary_activated_charge_at", "comment": null}, "secondary_cancelled_charge_at": {"type": "timestamp", "index": 16, "name": "secondary_cancelled_charge_at", "comment": null}, "encrypted_data": {"type": "string", "index": 17, "name": "encrypted_data", "comment": null}, "failed_attempts": {"type": "long", "index": 18, "name": "failed_attempts", "comment": null}, "shop_currency": {"type": "string", "index": 19, "name": "shop_currency", "comment": null}, "external_shop_domain": {"type": "string", "index": 20, "name": "external_shop_domain", "comment": null}, "external_account_id": {"type": "string", "index": 21, "name": "external_account_id", "comment": null}, "version": {"type": "string", "index": 22, "name": "version", "comment": null}, "plugin_version": {"type": "string", "index": 23, "name": "plugin_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__yotpoapiprod.account_platforms"}, "source.yoda.platform__yotpoapiprod.accounts": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "accounts", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "app_key": {"type": "string", "index": 4, "name": "app_key", "comment": null}, "domain": {"type": "string", "index": 5, "name": "domain", "comment": null}, "minisite_subdomain": {"type": "string", "index": 6, "name": "minisite_subdomain", "comment": null}, "minisite_cname": {"type": "string", "index": 7, "name": "minisite_cname", "comment": null}, "minisite_website": {"type": "string", "index": 8, "name": "minisite_website", "comment": null}, "minisite_website_name": {"type": "string", "index": 9, "name": "minisite_website_name", "comment": null}, "referal": {"type": "string", "index": 10, "name": "referal", "comment": null}, "active": {"type": "long", "index": 11, "name": "active", "comment": null}, "auto_publish": {"type": "long", "index": 12, "name": "auto_publish", "comment": null}, "minisite_subdomain_active": {"type": "long", "index": 13, "name": "minisite_subdomain_active", "comment": null}, "account_type_id": {"type": "long", "index": 14, "name": "account_type_id", "comment": null}, "created_at": {"type": "timestamp", "index": 15, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 16, "name": "updated_at", "comment": null}, "custom_design": {"type": "long", "index": 17, "name": "custom_design", "comment": null}, "auto_login_popup": {"type": "long", "index": 18, "name": "auto_login_popup", "comment": null}, "partner_key": {"type": "string", "index": 19, "name": "partner_key", "comment": null}, "name": {"type": "string", "index": 20, "name": "name", "comment": null}, "url": {"type": "string", "index": 21, "name": "url", "comment": null}, "support_url": {"type": "string", "index": 22, "name": "support_url", "comment": null}, "callback_url": {"type": "string", "index": 23, "name": "callback_url", "comment": null}, "secret": {"type": "string", "index": 24, "name": "secret", "comment": null}, "customer_language": {"type": "string", "index": 25, "name": "customer_language", "comment": null}, "bottom_line_installed": {"type": "long", "index": 26, "name": "bottom_line_installed", "comment": null}, "install_step": {"type": "string", "index": 27, "name": "install_step", "comment": null}, "auto_social_push": {"type": "long", "index": 28, "name": "auto_social_push", "comment": null}, "customer_mails_sender_name": {"type": "string", "index": 29, "name": "customer_mails_sender_name", "comment": null}, "slug": {"type": "string", "index": 30, "name": "slug", "comment": null}, "reviews_me_account_name": {"type": "string", "index": 31, "name": "reviews_me_account_name", "comment": null}, "reviews_me_account_description": {"type": "string", "index": 32, "name": "reviews_me_account_description", "comment": null}, "reviews_me_crawlable": {"type": "long", "index": 33, "name": "reviews_me_crawlable", "comment": null}, "coupons_expiration_date": {"type": "timestamp", "index": 34, "name": "coupons_expiration_date", "comment": null}, "map_up_sell_title": {"type": "string", "index": 35, "name": "map_up_sell_title", "comment": null}, "custom_platform_name": {"type": "string", "index": 36, "name": "custom_platform_name", "comment": null}, "category_id": {"type": "long", "index": 37, "name": "category_id", "comment": null}, "organization_id": {"type": "long", "index": 38, "name": "organization_id", "comment": null}, "is_test": {"type": "long", "index": 39, "name": "is_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.yoda.platform__yotpoapiprod.accounts"}, "source.yoda.ugc__yotpoapiprod.anonymous_users": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "anonymous_users", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "email": {"type": "string", "index": 4, "name": "email", "comment": null}, "display_name": {"type": "string", "index": 5, "name": "display_name", "comment": null}, "token": {"type": "string", "index": 6, "name": "token", "comment": null}, "user_id": {"type": "long", "index": 7, "name": "user_id", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_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.yoda.ugc__yotpoapiprod.anonymous_users"}, "source.yoda.platform__yotpoapiprod.apps": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "apps", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_at", "comment": null}, "account_id": {"type": "long", "index": 7, "name": "account_id", "comment": null}, "moderator_role_id": {"type": "long", "index": 8, "name": "moderator_role_id", "comment": null}, "disabled": {"type": "long", "index": 9, "name": "disabled", "comment": null}}, "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.yoda.platform__yotpoapiprod.apps"}, "source.yoda.ugc__yotpoapiprod.comments": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "comments", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "commentable_id": {"type": "long", "index": 4, "name": "commentable_id", "comment": null}, "content": {"type": "string", "index": 5, "name": "content", "comment": null}, "commenter_display_name": {"type": "string", "index": 6, "name": "commenter_display_name", "comment": null}, "public": {"type": "long", "index": 7, "name": "public", "comment": null}, "source_comment_id": {"type": "long", "index": 8, "name": "source_comment_id", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "commentable_type": {"type": "string", "index": 11, "name": "commentable_type", "comment": null}, "user_type": {"type": "string", "index": 12, "name": "user_type", "comment": null}, "user_id": {"type": "string", "index": 13, "name": "user_id", "comment": null}, "approved": {"type": "long", "index": 14, "name": "approved", "comment": null}}, "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.yoda.ugc__yotpoapiprod.comments"}, "source.yoda.ugc__yotpoapiprod.dirty_words": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "dirty_words", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "model_type": {"type": "string", "index": 4, "name": "model_type", "comment": null}, "model_id": {"type": "long", "index": 5, "name": "model_id", "comment": null}, "words": {"type": "string", "index": 6, "name": "words", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.ugc__yotpoapiprod.dirty_words"}, "source.yoda.ugc__yotpoapiprod.email_authentications": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "email_authentications", "database": null, "comment": null, "owner": "root"}, "columns": {"partitioning_time": {"type": "date", "index": 0, "name": "partitioning_time", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 2, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 3, "name": "processing_time", "comment": null}, "caller_id": {"type": "long", "index": 4, "name": "caller_id", "comment": null}, "caller_type": {"type": "string", "index": 5, "name": "caller_type", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "repliable_id": {"type": "long", "index": 7, "name": "repliable_id", "comment": null}, "repliable_type": {"type": "string", "index": 8, "name": "repliable_type", "comment": null}, "token": {"type": "string", "index": 9, "name": "token", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "users_email_control_id": {"type": "long", "index": 11, "name": "users_email_control_id", "comment": null}, "ts_ms": {"type": "timestamp", "index": 12, "name": "ts_ms", "comment": null}}, "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.yoda.ugc__yotpoapiprod.email_authentications"}, "source.yoda.ugc__yotpoapiprod.email_types": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "email_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_at", "comment": null}, "require_authentication": {"type": "long", "index": 7, "name": "require_authentication", "comment": null}, "reply_type": {"type": "string", "index": 8, "name": "reply_type", "comment": null}, "b2c": {"type": "long", "index": 9, "name": "b2c", "comment": null}, "template": {"type": "string", "index": 10, "name": "template", "comment": null}}, "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.yoda.ugc__yotpoapiprod.email_types"}, "source.yoda.platform__yotpoapiprod.features": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "features", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "description": {"type": "string", "index": 5, "name": "description", "comment": null}, "owner_type": {"type": "string", "index": 6, "name": "owner_type", "comment": null}, "default_user_enabled": {"type": "long", "index": 7, "name": "default_user_enabled", "comment": null}, "new": {"type": "long", "index": 8, "name": "new", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "feature_key": {"type": "string", "index": 11, "name": "feature_key", "comment": null}}, "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.yoda.platform__yotpoapiprod.features"}, "source.yoda.ugc__yotpoapiprod.images": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "images", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "image_file_name": {"type": "string", "index": 5, "name": "image_file_name", "comment": null}, "image_content_type": {"type": "string", "index": 6, "name": "image_content_type", "comment": null}, "image_file_size": {"type": "long", "index": 7, "name": "image_file_size", "comment": null}, "image_updated_at": {"type": "timestamp", "index": 8, "name": "image_updated_at", "comment": null}, "image_width": {"type": "long", "index": 9, "name": "image_width", "comment": null}, "image_height": {"type": "long", "index": 10, "name": "image_height", "comment": null}, "imageable_id": {"type": "long", "index": 11, "name": "imageable_id", "comment": null}, "imageable_type": {"type": "string", "index": 12, "name": "imageable_type", "comment": null}, "yotpo_resource_id": {"type": "long", "index": 13, "name": "yotpo_resource_id", "comment": null}, "created_at": {"type": "timestamp", "index": 14, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 15, "name": "updated_at", "comment": null}, "kind": {"type": "string", "index": 16, "name": "kind", "comment": null}, "image_fingerprint": {"type": "string", "index": 17, "name": "image_fingerprint", "comment": null}, "url": {"type": "string", "index": 18, "name": "url", "comment": null}, "published": {"type": "long", "index": 19, "name": "published", "comment": null}}, "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.yoda.ugc__yotpoapiprod.images"}, "source.yoda.ugc__yotpoapiprod.moderation_audits": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "moderation_audits", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_id": {"type": "long", "index": 4, "name": "review_id", "comment": null}, "email": {"type": "string", "index": 5, "name": "email", "comment": null}, "display_name": {"type": "string", "index": 6, "name": "display_name", "comment": null}, "action_type": {"type": "string", "index": 7, "name": "action_type", "comment": null}, "reason": {"type": "string", "index": 8, "name": "reason", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_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.yoda.ugc__yotpoapiprod.moderation_audits"}, "source.yoda.platform__yotpoapiprod.organizations": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "organizations", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "name": {"type": "string", "index": 5, "name": "name", "comment": null}, "organization_key": {"type": "string", "index": 6, "name": "organization_key", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_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.yoda.platform__yotpoapiprod.organizations"}, "source.yoda.platform__yotpoapiprod.owner_feature_settings": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "owner_feature_settings", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "owners_feature_id": {"type": "long", "index": 4, "name": "owners_feature_id", "comment": null}, "key": {"type": "string", "index": 5, "name": "key", "comment": null}, "value": {"type": "string", "index": 6, "name": "value", "comment": null}, "floating": {"type": "long", "index": 7, "name": "floating", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_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.yoda.platform__yotpoapiprod.owner_feature_settings"}, "source.yoda.platform__yotpoapiprod.owners_features": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "owners_features", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "disabled": {"type": "long", "index": 5, "name": "disabled", "comment": null}, "feature_id": {"type": "long", "index": 6, "name": "feature_id", "comment": null}, "floating": {"type": "long", "index": 7, "name": "floating", "comment": null}, "owner_id": {"type": "long", "index": 8, "name": "owner_id", "comment": null}, "owner_type": {"type": "string", "index": 9, "name": "owner_type", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "user_enabled": {"type": "long", "index": 11, "name": "user_enabled", "comment": null}}, "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.yoda.platform__yotpoapiprod.owners_features"}, "source.yoda.platform__yotpoapiprod.platform_types": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "platform_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "description": {"type": "string", "index": 5, "name": "description", "comment": null}, "billable": {"type": "long", "index": 6, "name": "billable", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "supports_pull_orders": {"type": "long", "index": 9, "name": "supports_pull_orders", "comment": null}, "notifications_enabled": {"type": "long", "index": 10, "name": "notifications_enabled", "comment": null}, "supports_past_orders": {"type": "long", "index": 11, "name": "supports_past_orders", "comment": null}}, "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.yoda.platform__yotpoapiprod.platform_types"}, "source.yoda.platform__yotpoapiprod.questions": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "questions", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "account_id": {"type": "long", "index": 4, "name": "account_id", "comment": null}, "products_app_id": {"type": "long", "index": 5, "name": "products_app_id", "comment": null}, "content": {"type": "string", "index": 6, "name": "content", "comment": null}, "asker_display_name": {"type": "string", "index": 7, "name": "asker_display_name", "comment": null}, "user_id": {"type": "long", "index": 8, "name": "user_id", "comment": null}, "user_type": {"type": "string", "index": 9, "name": "user_type", "comment": null}, "allow_send": {"type": "long", "index": 10, "name": "allow_send", "comment": null}, "archived": {"type": "long", "index": 11, "name": "archived", "comment": null}, "source_type_id": {"type": "long", "index": 12, "name": "source_type_id", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 14, "name": "updated_at", "comment": null}, "source_question_id": {"type": "long", "index": 15, "name": "source_question_id", "comment": null}, "is_logical_deleted": {"type": "long", "index": 16, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__yotpoapiprod.questions"}, "source.yoda.ugc__yotpoapiprod.reminders": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "reminders", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "account_id": {"type": "long", "index": 4, "name": "account_id", "comment": null}, "days_from_purchase": {"type": "long", "index": 5, "name": "days_from_purchase", "comment": null}, "subject": {"type": "string", "index": 6, "name": "subject", "comment": null}, "body": {"type": "string", "index": 7, "name": "body", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "header": {"type": "string", "index": 10, "name": "header", "comment": null}, "bottom": {"type": "string", "index": 11, "name": "bottom", "comment": null}, "mail_interval": {"type": "long", "index": 12, "name": "mail_interval", "comment": null}, "max_products": {"type": "long", "index": 13, "name": "max_products", "comment": null}, "didnt_get_product_link": {"type": "string", "index": 14, "name": "didnt_get_product_link", "comment": null}, "enabled": {"type": "long", "index": 15, "name": "enabled", "comment": null}, "email_submission_type_id": {"type": "long", "index": 16, "name": "email_submission_type_id", "comment": null}, "formless_call_to_action": {"type": "string", "index": 17, "name": "formless_call_to_action", "comment": null}}, "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.yoda.ugc__yotpoapiprod.reminders"}, "source.yoda.ugc__yotpoapiprod.review_contents": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "review_contents", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_id": {"type": "long", "index": 4, "name": "review_id", "comment": null}, "review_form_field_id": {"type": "long", "index": 5, "name": "review_form_field_id", "comment": null}, "int_value": {"type": "long", "index": 6, "name": "int_value", "comment": null}, "string_value": {"type": "string", "index": 7, "name": "string_value", "comment": null}, "text_value": {"type": "string", "index": 8, "name": "text_value", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_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.yoda.ugc__yotpoapiprod.review_contents"}, "source.yoda.ugc__yotpoapiprod.review_form_field_types": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "review_form_field_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_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.yoda.ugc__yotpoapiprod.review_form_field_types"}, "source.yoda.ugc__yotpoapiprod.review_form_fields": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "review_form_fields", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "display_variant": {"type": "string", "index": 5, "name": "display_variant", "comment": null}, "guidelines": {"type": "string", "index": 6, "name": "guidelines", "comment": null}, "mandatory": {"type": "long", "index": 7, "name": "mandatory", "comment": null}, "options": {"type": "string", "index": 8, "name": "options", "comment": null}, "order": {"type": "long", "index": 9, "name": "order", "comment": null}, "review_form_field_type_id": {"type": "long", "index": 10, "name": "review_form_field_type_id", "comment": null}, "review_form_id": {"type": "long", "index": 11, "name": "review_form_id", "comment": null}, "slug": {"type": "string", "index": 12, "name": "slug", "comment": null}, "sub_title": {"type": "string", "index": 13, "name": "sub_title", "comment": null}, "title": {"type": "string", "index": 14, "name": "title", "comment": null}, "updated_at": {"type": "timestamp", "index": 15, "name": "updated_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.yoda.ugc__yotpoapiprod.review_form_fields"}, "source.yoda.ugc__yotpoapiprod.review_metadatas": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "review_metadatas", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_id": {"type": "long", "index": 4, "name": "review_id", "comment": null}, "metadata_type_id": {"type": "long", "index": 5, "name": "metadata_type_id", "comment": null}, "metadata_type_value": {"type": "string", "index": 6, "name": "metadata_type_value", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.ugc__yotpoapiprod.review_metadatas"}, "source.yoda.ugc__yotpoapiprod.review_order_line": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "review_order_line", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_id": {"type": "long", "index": 4, "name": "review_id", "comment": null}, "order_line_id": {"type": "long", "index": 5, "name": "order_line_id", "comment": null}, "product_app_variant_id": {"type": "long", "index": 6, "name": "product_app_variant_id", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.ugc__yotpoapiprod.review_order_line"}, "source.yoda.ugc__yotpoapiprod.review_request_emails": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "review_request_emails", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "app_key": {"type": "string", "index": 4, "name": "app_key", "comment": null}, "review_request_token": {"type": "string", "index": 5, "name": "review_request_token", "comment": null}, "user_name": {"type": "string", "index": 6, "name": "user_name", "comment": null}, "user_email": {"type": "string", "index": 7, "name": "user_email", "comment": null}, "email_type_id": {"type": "long", "index": 8, "name": "email_type_id", "comment": null}, "email_submission_type_id": {"type": "long", "index": 9, "name": "email_submission_type_id", "comment": null}, "caller_id": {"type": "long", "index": 10, "name": "caller_id", "comment": null}, "caller_type": {"type": "string", "index": 11, "name": "caller_type", "comment": null}, "products_app_id": {"type": "long", "index": 12, "name": "products_app_id", "comment": null}, "delivered_at": {"type": "timestamp", "index": 13, "name": "delivered_at", "comment": null}, "date_to_deliver": {"type": "timestamp", "index": 14, "name": "date_to_deliver", "comment": null}, "creation_context": {"type": "string", "index": 15, "name": "creation_context", "comment": null}, "created_at": {"type": "timestamp", "index": 16, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 17, "name": "updated_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.yoda.ugc__yotpoapiprod.review_request_emails"}, "source.yoda.ugc__yotpoapiprod.review_request_sms": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "review_request_sms", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "app_key": {"type": "string", "index": 4, "name": "app_key", "comment": null}, "review_request_token": {"type": "string", "index": 5, "name": "review_request_token", "comment": null}, "user_name": {"type": "string", "index": 6, "name": "user_name", "comment": null}, "user_email": {"type": "string", "index": 7, "name": "user_email", "comment": null}, "sms_type_id": {"type": "long", "index": 8, "name": "sms_type_id", "comment": null}, "caller_id": {"type": "long", "index": 9, "name": "caller_id", "comment": null}, "caller_type": {"type": "string", "index": 10, "name": "caller_type", "comment": null}, "delivered_at": {"type": "timestamp", "index": 11, "name": "delivered_at", "comment": null}, "sms_status_type_id": {"type": "long", "index": 12, "name": "sms_status_type_id", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 14, "name": "updated_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.yoda.ugc__yotpoapiprod.review_request_sms"}, "source.yoda.ugc__yotpoapiprod.review_request_tokens": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "review_request_tokens", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "token": {"type": "string", "index": 4, "name": "token", "comment": null}, "caller_type": {"type": "string", "index": 5, "name": "caller_type", "comment": null}, "caller_id": {"type": "long", "index": 6, "name": "caller_id", "comment": null}, "repliable_type": {"type": "string", "index": 7, "name": "repliable_type", "comment": null}, "repliable_identifier": {"type": "long", "index": 8, "name": "repliable_identifier", "comment": null}, "review_source_type_id": {"type": "long", "index": 9, "name": "review_source_type_id", "comment": null}, "review_id": {"type": "long", "index": 10, "name": "review_id", "comment": null}, "created_at": {"type": "timestamp", "index": 11, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 12, "name": "updated_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.yoda.ugc__yotpoapiprod.review_request_tokens"}, "source.yoda.ugc__yotpoapiprod.review_source_types": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "review_source_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_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.yoda.ugc__yotpoapiprod.review_source_types"}, "source.yoda.ugc__yotpoapiprod.review_tags": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "review_tags", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "account_id": {"type": "long", "index": 4, "name": "account_id", "comment": null}, "name": {"type": "string", "index": 5, "name": "name", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_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.yoda.ugc__yotpoapiprod.review_tags"}, "source.yoda.ugc__yotpoapiprod.review_types": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "review_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "description": {"type": "string", "index": 5, "name": "description", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_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.yoda.ugc__yotpoapiprod.review_types"}, "source.yoda.ugc__yotpoapiprod.reviews": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "reviews", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "source_app_key": {"type": "string", "index": 4, "name": "source_app_key", "comment": null}, "title": {"type": "string", "index": 5, "name": "title", "comment": null}, "reviewer_display_name": {"type": "string", "index": 6, "name": "reviewer_display_name", "comment": null}, "content": {"type": "string", "index": 7, "name": "content", "comment": null}, "user_id": {"type": "long", "index": 8, "name": "user_id", "comment": null}, "score": {"type": "long", "index": 9, "name": "score", "comment": null}, "deleted": {"type": "long", "index": 10, "name": "deleted", "comment": null}, "app_key": {"type": "string", "index": 11, "name": "app_key", "comment": null}, "created_at": {"type": "timestamp", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 13, "name": "updated_at", "comment": null}, "new": {"type": "long", "index": 14, "name": "new", "comment": null}, "user_type": {"type": "string", "index": 15, "name": "user_type", "comment": null}, "verified_buyer": {"type": "long", "index": 16, "name": "verified_buyer", "comment": null}, "archived": {"type": "long", "index": 17, "name": "archived", "comment": null}, "shop_owner": {"type": "long", "index": 18, "name": "shop_owner", "comment": null}, "twitter_pushed": {"type": "long", "index": 19, "name": "twitter_pushed", "comment": null}, "facebook_pushed": {"type": "long", "index": 20, "name": "facebook_pushed", "comment": null}, "review_source_type_id": {"type": "long", "index": 21, "name": "review_source_type_id", "comment": null}, "votes_up": {"type": "long", "index": 22, "name": "votes_up", "comment": null}, "votes_down": {"type": "long", "index": 23, "name": "votes_down", "comment": null}, "review_type_id": {"type": "long", "index": 24, "name": "review_type_id", "comment": null}, "source_review_id": {"type": "long", "index": 25, "name": "source_review_id", "comment": null}, "sentiment": {"type": "double", "index": 26, "name": "sentiment", "comment": null}, "escalated": {"type": "long", "index": 27, "name": "escalated", "comment": null}}, "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.yoda.ugc__yotpoapiprod.reviews"}, "source.yoda.ugc__yotpoapiprod.reviews_incentivized": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "reviews_incentivized", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_id": {"type": "long", "index": 4, "name": "review_id", "comment": null}, "reviews_incentivized_type_id": {"type": "long", "index": 5, "name": "reviews_incentivized_type_id", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_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.yoda.ugc__yotpoapiprod.reviews_incentivized"}, "source.yoda.ugc__yotpoapiprod.reviews_subjects": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "reviews_subjects", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_id": {"type": "long", "index": 4, "name": "review_id", "comment": null}, "account_id": {"type": "long", "index": 5, "name": "account_id", "comment": null}, "subject_entity_type": {"type": "string", "index": 6, "name": "subject_entity_type", "comment": null}, "subject_id": {"type": "long", "index": 7, "name": "subject_id", "comment": null}, "deactivated": {"type": "long", "index": 8, "name": "deactivated", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_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.yoda.ugc__yotpoapiprod.reviews_subjects"}, "source.yoda.ugc__yotpoapiprod.tags_to_reviews": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "tags_to_reviews", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_tag_id": {"type": "long", "index": 4, "name": "review_tag_id", "comment": null}, "review_id": {"type": "long", "index": 5, "name": "review_id", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.ugc__yotpoapiprod.tags_to_reviews"}, "source.yoda.ugc__yotpoapiprod.users": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "users", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "first_name": {"type": "string", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 5, "name": "last_name", "comment": null}, "display_name": {"type": "string", "index": 6, "name": "display_name", "comment": null}, "email": {"type": "string", "index": 7, "name": "email", "comment": null}, "bio": {"type": "string", "index": 8, "name": "bio", "comment": null}, "privilege_type_id": {"type": "long", "index": 9, "name": "privilege_type_id", "comment": null}, "active": {"type": "long", "index": 10, "name": "active", "comment": null}, "slug": {"type": "string", "index": 11, "name": "slug", "comment": null}, "temp_email": {"type": "string", "index": 12, "name": "temp_email", "comment": null}, "featured_image_id": {"type": "long", "index": 13, "name": "featured_image_id", "comment": null}, "social_image": {"type": "string", "index": 14, "name": "social_image", "comment": null}, "created_at": {"type": "timestamp", "index": 15, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 16, "name": "updated_at", "comment": null}, "social_score": {"type": "double", "index": 17, "name": "social_score", "comment": null}, "yotpo_score": {"type": "double", "index": 18, "name": "yotpo_score", "comment": null}, "company": {"type": "string", "index": 19, "name": "company", "comment": null}, "position": {"type": "string", "index": 20, "name": "position", "comment": null}, "encrypted_password": {"type": "string", "index": 21, "name": "encrypted_password", "comment": null}, "reset_password_token": {"type": "string", "index": 22, "name": "reset_password_token", "comment": null}, "reset_password_sent_at": {"type": "timestamp", "index": 23, "name": "reset_password_sent_at", "comment": null}, "remember_created_at": {"type": "timestamp", "index": 24, "name": "remember_created_at", "comment": null}, "sign_in_count": {"type": "long", "index": 25, "name": "sign_in_count", "comment": null}, "current_sign_in_at": {"type": "timestamp", "index": 26, "name": "current_sign_in_at", "comment": null}, "last_sign_in_at": {"type": "timestamp", "index": 27, "name": "last_sign_in_at", "comment": null}, "current_sign_in_ip": {"type": "string", "index": 28, "name": "current_sign_in_ip", "comment": null}, "last_sign_in_ip": {"type": "string", "index": 29, "name": "last_sign_in_ip", "comment": null}, "confirmation_token": {"type": "string", "index": 30, "name": "confirmation_token", "comment": null}, "confirmed_at": {"type": "timestamp", "index": 31, "name": "confirmed_at", "comment": null}, "confirmation_sent_at": {"type": "timestamp", "index": 32, "name": "confirmation_sent_at", "comment": null}, "unconfirmed_email": {"type": "string", "index": 33, "name": "unconfirmed_email", "comment": null}, "failed_attempts": {"type": "long", "index": 34, "name": "failed_attempts", "comment": null}, "unlock_token": {"type": "string", "index": 35, "name": "unlock_token", "comment": null}, "locked_at": {"type": "timestamp", "index": 36, "name": "locked_at", "comment": null}, "phone": {"type": "string", "index": 37, "name": "phone", "comment": null}, "sign_up_ip": {"type": "string", "index": 38, "name": "sign_up_ip", "comment": null}, "sign_up_country": {"type": "string", "index": 39, "name": "sign_up_country", "comment": null}, "masked_pii": {"type": "long", "index": 40, "name": "masked_pii", "comment": null}, "password_updated_at": {"type": "timestamp", "index": 41, "name": "password_updated_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.yoda.ugc__yotpoapiprod.users"}, "source.yoda.ugc__yotpoapiprod.users_email_controls": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "users_email_controls", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "account_id": {"type": "long", "index": 4, "name": "account_id", "comment": null}, "user_email": {"type": "string", "index": 5, "name": "user_email", "comment": null}, "user_name": {"type": "string", "index": 6, "name": "user_name", "comment": null}, "email_type_id": {"type": "long", "index": 7, "name": "email_type_id", "comment": null}, "formless": {"type": "long", "index": 8, "name": "formless", "comment": null}, "delivered_at": {"type": "timestamp", "index": 9, "name": "delivered_at", "comment": null}, "created_at": {"type": "timestamp", "index": 10, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_at", "comment": null}, "date_to_deliver": {"type": "timestamp", "index": 12, "name": "date_to_deliver", "comment": null}, "invalidated_at": {"type": "timestamp", "index": 13, "name": "invalidated_at", "comment": null}, "in_progress": {"type": "long", "index": 14, "name": "in_progress", "comment": null}}, "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.yoda.ugc__yotpoapiprod.users_email_controls"}, "source.yoda.platform__yotpoapiprod.users_organizations": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "users_organizations", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "add_to_future_stores": {"type": "long", "index": 4, "name": "add_to_future_stores", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "default_role_id": {"type": "long", "index": 6, "name": "default_role_id", "comment": null}, "deleted_from_organization": {"type": "long", "index": 7, "name": "deleted_from_organization", "comment": null}, "invites_counter": {"type": "long", "index": 8, "name": "invites_counter", "comment": null}, "organization_id": {"type": "long", "index": 9, "name": "organization_id", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "user_id": {"type": "long", "index": 11, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__yotpoapiprod.users_organizations"}, "source.yoda.ugc__yotpoapiprod.videos": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "videos", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "videoable_id": {"type": "long", "index": 4, "name": "videoable_id", "comment": null}, "videoable_type": {"type": "string", "index": 5, "name": "videoable_type", "comment": null}, "video_key": {"type": "string", "index": 6, "name": "video_key", "comment": null}, "published": {"type": "long", "index": 7, "name": "published", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_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.yoda.ugc__yotpoapiprod.videos"}, "source.yoda.ugc__yotpoapiprod.votes": {"metadata": {"type": "view", "schema": "yotpoapiprod", "name": "votes", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "voteable_id": {"type": "long", "index": 5, "name": "voteable_id", "comment": null}, "vote": {"type": "long", "index": 6, "name": "vote", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "voteable_type": {"type": "string", "index": 9, "name": "voteable_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.yoda.ugc__yotpoapiprod.votes"}, "source.yoda.loyalty__sources_loyalty.known_crawlers": {"metadata": {"type": "table", "schema": "sources_loyalty", "name": "known_crawlers", "database": null, "comment": null, "owner": "root"}, "columns": {"crawler_name": {"type": "string", "index": 0, "name": "crawler_name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__sources_loyalty.known_crawlers"}, "source.yoda.infra__github_info.repos": {"metadata": {"type": "table", "schema": "github_info", "name": "repos", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "node_id": {"type": "string", "index": 1, "name": "node_id", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "full_name": {"type": "string", "index": 3, "name": "full_name", "comment": null}, "description": {"type": "string", "index": 4, "name": "description", "comment": null}, "fork": {"type": "boolean", "index": 5, "name": "fork", "comment": null}, "private": {"type": "boolean", "index": 6, "name": "private", "comment": null}, "url": {"type": "string", "index": 7, "name": "url", "comment": null}, "forks_count": {"type": "long", "index": 8, "name": "forks_count", "comment": null}, "stargazers_count": {"type": "long", "index": 9, "name": "stargazers_count", "comment": null}, "watchers_count": {"type": "long", "index": 10, "name": "watchers_count", "comment": null}, "size": {"type": "long", "index": 11, "name": "size", "comment": null}, "default_branch": {"type": "string", "index": 12, "name": "default_branch", "comment": null}, "open_issues_count": {"type": "long", "index": 13, "name": "open_issues_count", "comment": null}, "is_template": {"type": "boolean", "index": 14, "name": "is_template", "comment": null}, "has_issues": {"type": "boolean", "index": 15, "name": "has_issues", "comment": null}, "has_projects": {"type": "boolean", "index": 16, "name": "has_projects", "comment": null}, "has_wiki": {"type": "boolean", "index": 17, "name": "has_wiki", "comment": null}, "has_pages": {"type": "boolean", "index": 18, "name": "has_pages", "comment": null}, "has_downloads": {"type": "boolean", "index": 19, "name": "has_downloads", "comment": null}, "has_discussions": {"type": "boolean", "index": 20, "name": "has_discussions", "comment": null}, "archived": {"type": "boolean", "index": 21, "name": "archived", "comment": null}, "disabled": {"type": "boolean", "index": 22, "name": "disabled", "comment": null}, "visibility": {"type": "string", "index": 23, "name": "visibility", "comment": null}, "pushed_at": {"type": "string", "index": 24, "name": "pushed_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 151534.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__github_info.repos"}, "source.yoda.infra__github_info.workflow_runs": {"metadata": {"type": "table", "schema": "github_info", "name": "workflow_runs", "database": null, "comment": null, "owner": "root"}, "columns": {"repo_name": {"type": "string", "index": 0, "name": "repo_name", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "node_id": {"type": "string", "index": 3, "name": "node_id", "comment": null}, "check_suite_id": {"type": "long", "index": 4, "name": "check_suite_id", "comment": null}, "check_suite_node_id": {"type": "string", "index": 5, "name": "check_suite_node_id", "comment": null}, "head_branch": {"type": "string", "index": 6, "name": "head_branch", "comment": null}, "head_sha": {"type": "string", "index": 7, "name": "head_sha", "comment": null}, "run_number": {"type": "long", "index": 8, "name": "run_number", "comment": null}, "event": {"type": "string", "index": 9, "name": "event", "comment": null}, "status": {"type": "string", "index": 10, "name": "status", "comment": null}, "conclusion": {"type": "string", "index": 11, "name": "conclusion", "comment": null}, "workflow_id": {"type": "long", "index": 12, "name": "workflow_id", "comment": null}, "url": {"type": "string", "index": 13, "name": "url", "comment": null}, "run_attempt": {"type": "long", "index": 14, "name": "run_attempt", "comment": null}, "run_started_at": {"type": "string", "index": 15, "name": "run_started_at", "comment": null}, "created_at": {"type": "string", "index": 16, "name": "created_at", "comment": null}, "updated_at": {"type": "string", "index": 17, "name": "updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 22887028.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__github_info.workflow_runs"}, "source.yoda.infra__github_info.workflows": {"metadata": {"type": "table", "schema": "github_info", "name": "workflows", "database": null, "comment": null, "owner": "root"}, "columns": {"repo_name": {"type": "string", "index": 0, "name": "repo_name", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "node_id": {"type": "string", "index": 2, "name": "node_id", "comment": null}, "name": {"type": "string", "index": 3, "name": "name", "comment": null}, "path": {"type": "string", "index": 4, "name": "path", "comment": null}, "state": {"type": "string", "index": 5, "name": "state", "comment": null}, "url": {"type": "string", "index": 6, "name": "url", "comment": null}, "created_at": {"type": "string", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "string", "index": 8, "name": "updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 87329.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__github_info.workflows"}, "source.yoda.sms__sms_shopify.customers": {"metadata": {"type": "view", "schema": "sms_shopify", "name": "customers", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "smsbump_user_id": {"type": "long", "index": 4, "name": "smsbump_user_id", "comment": null}, "customer_id": {"type": "long", "index": 5, "name": "customer_id", "comment": null}, "email": {"type": "string", "index": 6, "name": "email", "comment": null}, "accepts_marketing": {"type": "long", "index": 7, "name": "accepts_marketing", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "first_name": {"type": "string", "index": 10, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 11, "name": "last_name", "comment": null}, "orders_count": {"type": "long", "index": 12, "name": "orders_count", "comment": null}, "state": {"type": "string", "index": 13, "name": "state", "comment": null}, "total_spent": {"type": "double", "index": 14, "name": "total_spent", "comment": null}, "last_order_id": {"type": "long", "index": 15, "name": "last_order_id", "comment": null}, "verified_email": {"type": "long", "index": 16, "name": "verified_email", "comment": null}, "phone": {"type": "string", "index": 17, "name": "phone", "comment": null}, "phone_formatted": {"type": "string", "index": 18, "name": "phone_formatted", "comment": null}, "last_order_name": {"type": "string", "index": 19, "name": "last_order_name", "comment": null}, "default_address": {"type": "long", "index": 20, "name": "default_address", "comment": null}, "timezone": {"type": "string", "index": 21, "name": "timezone", "comment": null}, "deleted": {"type": "long", "index": 22, "name": "deleted", "comment": null}, "is_logical_deleted": {"type": "long", "index": 23, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms_shopify.customers"}, "source.yoda.sms__sms_shopify.customers_addresses": {"metadata": {"type": "view", "schema": "sms_shopify", "name": "customers_addresses", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "address1": {"type": "string", "index": 4, "name": "address1", "comment": null}, "address2": {"type": "string", "index": 5, "name": "address2", "comment": null}, "address_id": {"type": "long", "index": 6, "name": "address_id", "comment": null}, "city": {"type": "string", "index": 7, "name": "city", "comment": null}, "company": {"type": "string", "index": 8, "name": "company", "comment": null}, "country": {"type": "string", "index": 9, "name": "country", "comment": null}, "country_code": {"type": "string", "index": 10, "name": "country_code", "comment": null}, "country_name": {"type": "string", "index": 11, "name": "country_name", "comment": null}, "customer_id": {"type": "long", "index": 12, "name": "customer_id", "comment": null}, "default": {"type": "long", "index": 13, "name": "default", "comment": null}, "deleted": {"type": "long", "index": 14, "name": "deleted", "comment": null}, "first_name": {"type": "string", "index": 15, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 16, "name": "last_name", "comment": null}, "name": {"type": "string", "index": 17, "name": "name", "comment": null}, "phone": {"type": "string", "index": 18, "name": "phone", "comment": null}, "phone_formatted": {"type": "string", "index": 19, "name": "phone_formatted", "comment": null}, "province": {"type": "string", "index": 20, "name": "province", "comment": null}, "province_code": {"type": "string", "index": 21, "name": "province_code", "comment": null}, "smsbump_customer_id": {"type": "long", "index": 22, "name": "smsbump_customer_id", "comment": null}, "smsbump_user_id": {"type": "long", "index": 23, "name": "smsbump_user_id", "comment": null}, "zip": {"type": "long", "index": 24, "name": "zip", "comment": null}}, "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.yoda.sms__sms_shopify.customers_addresses"}, "source.yoda.communication__sms_shopify.orders": {"metadata": {"type": "view", "schema": "sms_shopify", "name": "orders", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "smsbump_user_id": {"type": "long", "index": 4, "name": "smsbump_user_id", "comment": null}, "order_id": {"type": "long", "index": 5, "name": "order_id", "comment": null}, "customer_id": {"type": "long", "index": 6, "name": "customer_id", "comment": null}, "email": {"type": "string", "index": 7, "name": "email", "comment": null}, "closed_at": {"type": "timestamp", "index": 8, "name": "closed_at", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "number": {"type": "long", "index": 11, "name": "number", "comment": null}, "note": {"type": "string", "index": 12, "name": "note", "comment": null}, "token": {"type": "string", "index": 13, "name": "token", "comment": null}, "gateway": {"type": "string", "index": 14, "name": "gateway", "comment": null}, "test": {"type": "long", "index": 15, "name": "test", "comment": null}, "total_price": {"type": "double", "index": 16, "name": "total_price", "comment": null}, "subtotal_price": {"type": "double", "index": 17, "name": "subtotal_price", "comment": null}, "total_weight": {"type": "double", "index": 18, "name": "total_weight", "comment": null}, "total_tax": {"type": "double", "index": 19, "name": "total_tax", "comment": null}, "taxes_included": {"type": "long", "index": 20, "name": "taxes_included", "comment": null}, "currency": {"type": "string", "index": 21, "name": "currency", "comment": null}, "financial_status": {"type": "string", "index": 22, "name": "financial_status", "comment": null}, "confirmed": {"type": "long", "index": 23, "name": "confirmed", "comment": null}, "total_discounts": {"type": "double", "index": 24, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double", "index": 25, "name": "total_line_items_price", "comment": null}, "cart_token": {"type": "string", "index": 26, "name": "cart_token", "comment": null}, "buyer_accepts_marketing": {"type": "long", "index": 27, "name": "buyer_accepts_marketing", "comment": null}, "name": {"type": "string", "index": 28, "name": "name", "comment": null}, "referring_site": {"type": "string", "index": 29, "name": "referring_site", "comment": null}, "landing_site": {"type": "string", "index": 30, "name": "landing_site", "comment": null}, "cancelled_at": {"type": "timestamp", "index": 31, "name": "cancelled_at", "comment": null}, "cancel_reason": {"type": "string", "index": 32, "name": "cancel_reason", "comment": null}, "total_price_usd": {"type": "double", "index": 33, "name": "total_price_usd", "comment": null}, "checkout_token": {"type": "string", "index": 34, "name": "checkout_token", "comment": null}, "reference": {"type": "string", "index": 35, "name": "reference", "comment": null}, "user_id": {"type": "long", "index": 36, "name": "user_id", "comment": null}, "location_id": {"type": "long", "index": 37, "name": "location_id", "comment": null}, "source_identifier": {"type": "string", "index": 38, "name": "source_identifier", "comment": null}, "source_url": {"type": "string", "index": 39, "name": "source_url", "comment": null}, "processed_at": {"type": "timestamp", "index": 40, "name": "processed_at", "comment": null}, "device_id": {"type": "long", "index": 41, "name": "device_id", "comment": null}, "phone": {"type": "string", "index": 42, "name": "phone", "comment": null}, "phone_formatted": {"type": "string", "index": 43, "name": "phone_formatted", "comment": null}, "customer_locale": {"type": "string", "index": 44, "name": "customer_locale", "comment": null}, "app_id": {"type": "long", "index": 45, "name": "app_id", "comment": null}, "browser_ip": {"type": "string", "index": 46, "name": "browser_ip", "comment": null}, "landing_site_ref": {"type": "string", "index": 47, "name": "landing_site_ref", "comment": null}, "order_number": {"type": "long", "index": 48, "name": "order_number", "comment": null}, "processing_method": {"type": "string", "index": 49, "name": "processing_method", "comment": null}, "checkout_id": {"type": "long", "index": 50, "name": "checkout_id", "comment": null}, "source_name": {"type": "string", "index": 51, "name": "source_name", "comment": null}, "fulfillment_status": {"type": "string", "index": 52, "name": "fulfillment_status", "comment": null}, "tags": {"type": "string", "index": 53, "name": "tags", "comment": null}, "contact_email": {"type": "string", "index": 54, "name": "contact_email", "comment": null}, "order_status_url": {"type": "string", "index": 55, "name": "order_status_url", "comment": null}, "is_logical_deleted": {"type": "long", "index": 56, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms_shopify.orders"}, "source.yoda.sms__sms_shopify.orders": {"metadata": {"type": "view", "schema": "sms_shopify", "name": "orders", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "smsbump_user_id": {"type": "long", "index": 4, "name": "smsbump_user_id", "comment": null}, "order_id": {"type": "long", "index": 5, "name": "order_id", "comment": null}, "customer_id": {"type": "long", "index": 6, "name": "customer_id", "comment": null}, "email": {"type": "string", "index": 7, "name": "email", "comment": null}, "closed_at": {"type": "timestamp", "index": 8, "name": "closed_at", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "number": {"type": "long", "index": 11, "name": "number", "comment": null}, "note": {"type": "string", "index": 12, "name": "note", "comment": null}, "token": {"type": "string", "index": 13, "name": "token", "comment": null}, "gateway": {"type": "string", "index": 14, "name": "gateway", "comment": null}, "test": {"type": "long", "index": 15, "name": "test", "comment": null}, "total_price": {"type": "double", "index": 16, "name": "total_price", "comment": null}, "subtotal_price": {"type": "double", "index": 17, "name": "subtotal_price", "comment": null}, "total_weight": {"type": "double", "index": 18, "name": "total_weight", "comment": null}, "total_tax": {"type": "double", "index": 19, "name": "total_tax", "comment": null}, "taxes_included": {"type": "long", "index": 20, "name": "taxes_included", "comment": null}, "currency": {"type": "string", "index": 21, "name": "currency", "comment": null}, "financial_status": {"type": "string", "index": 22, "name": "financial_status", "comment": null}, "confirmed": {"type": "long", "index": 23, "name": "confirmed", "comment": null}, "total_discounts": {"type": "double", "index": 24, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double", "index": 25, "name": "total_line_items_price", "comment": null}, "cart_token": {"type": "string", "index": 26, "name": "cart_token", "comment": null}, "buyer_accepts_marketing": {"type": "long", "index": 27, "name": "buyer_accepts_marketing", "comment": null}, "name": {"type": "string", "index": 28, "name": "name", "comment": null}, "referring_site": {"type": "string", "index": 29, "name": "referring_site", "comment": null}, "landing_site": {"type": "string", "index": 30, "name": "landing_site", "comment": null}, "cancelled_at": {"type": "timestamp", "index": 31, "name": "cancelled_at", "comment": null}, "cancel_reason": {"type": "string", "index": 32, "name": "cancel_reason", "comment": null}, "total_price_usd": {"type": "double", "index": 33, "name": "total_price_usd", "comment": null}, "checkout_token": {"type": "string", "index": 34, "name": "checkout_token", "comment": null}, "reference": {"type": "string", "index": 35, "name": "reference", "comment": null}, "user_id": {"type": "long", "index": 36, "name": "user_id", "comment": null}, "location_id": {"type": "long", "index": 37, "name": "location_id", "comment": null}, "source_identifier": {"type": "string", "index": 38, "name": "source_identifier", "comment": null}, "source_url": {"type": "string", "index": 39, "name": "source_url", "comment": null}, "processed_at": {"type": "timestamp", "index": 40, "name": "processed_at", "comment": null}, "device_id": {"type": "long", "index": 41, "name": "device_id", "comment": null}, "phone": {"type": "string", "index": 42, "name": "phone", "comment": null}, "phone_formatted": {"type": "string", "index": 43, "name": "phone_formatted", "comment": null}, "customer_locale": {"type": "string", "index": 44, "name": "customer_locale", "comment": null}, "app_id": {"type": "long", "index": 45, "name": "app_id", "comment": null}, "browser_ip": {"type": "string", "index": 46, "name": "browser_ip", "comment": null}, "landing_site_ref": {"type": "string", "index": 47, "name": "landing_site_ref", "comment": null}, "order_number": {"type": "long", "index": 48, "name": "order_number", "comment": null}, "processing_method": {"type": "string", "index": 49, "name": "processing_method", "comment": null}, "checkout_id": {"type": "long", "index": 50, "name": "checkout_id", "comment": null}, "source_name": {"type": "string", "index": 51, "name": "source_name", "comment": null}, "fulfillment_status": {"type": "string", "index": 52, "name": "fulfillment_status", "comment": null}, "tags": {"type": "string", "index": 53, "name": "tags", "comment": null}, "contact_email": {"type": "string", "index": 54, "name": "contact_email", "comment": null}, "order_status_url": {"type": "string", "index": 55, "name": "order_status_url", "comment": null}, "is_logical_deleted": {"type": "long", "index": 56, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms_shopify.orders"}, "source.yoda.infra__opsgenie.alerts": {"metadata": {"type": "table", "schema": "opsgenie", "name": "alerts", "database": null, "comment": null, "owner": "root"}, "columns": {"seen": {"type": "boolean", "index": 0, "name": "seen", "comment": null}, "id": {"type": "string", "index": 1, "name": "id", "comment": null}, "tinyid": {"type": "string", "index": 2, "name": "tinyid", "comment": null}, "alias": {"type": "string", "index": 3, "name": "alias", "comment": null}, "message": {"type": "string", "index": 4, "name": "message", "comment": null}, "status": {"type": "string", "index": 5, "name": "status", "comment": null}, "acknowledged": {"type": "boolean", "index": 6, "name": "acknowledged", "comment": null}, "isseen": {"type": "boolean", "index": 7, "name": "isseen", "comment": null}, "snoozed": {"type": "boolean", "index": 8, "name": "snoozed", "comment": null}, "count": {"type": "long", "index": 9, "name": "count", "comment": null}, "lastoccurredat": {"type": "string", "index": 10, "name": "lastoccurredat", "comment": null}, "createdat": {"type": "string", "index": 11, "name": "createdat", "comment": null}, "updatedat": {"type": "string", "index": 12, "name": "updatedat", "comment": null}, "source": {"type": "string", "index": 13, "name": "source", "comment": null}, "owner": {"type": "string", "index": 14, "name": "owner", "comment": null}, "priority": {"type": "string", "index": 15, "name": "priority", "comment": null}, "teams": {"type": "string", "index": 16, "name": "teams", "comment": null}, "responders": {"type": "string", "index": 17, "name": "responders", "comment": null}, "integration": {"type": "string", "index": 18, "name": "integration", "comment": null}, "report": {"type": "string", "index": 19, "name": "report", "comment": null}, "ownerteamid": {"type": "string", "index": 20, "name": "ownerteamid", "comment": null}, "tags": {"type": "string", "index": 21, "name": "tags", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 448985779.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__opsgenie.alerts"}, "source.yoda.infra__opsgenie.incidents": {"metadata": {"type": "table", "schema": "opsgenie", "name": "incidents", "database": null, "comment": null, "owner": "root"}, "columns": {"seen": {"type": "boolean", "index": 0, "name": "seen", "comment": null}, "id": {"type": "string", "index": 1, "name": "id", "comment": null}, "tinyid": {"type": "string", "index": 2, "name": "tinyid", "comment": null}, "alias": {"type": "string", "index": 3, "name": "alias", "comment": null}, "message": {"type": "string", "index": 4, "name": "message", "comment": null}, "status": {"type": "string", "index": 5, "name": "status", "comment": null}, "acknowledged": {"type": "boolean", "index": 6, "name": "acknowledged", "comment": null}, "isseen": {"type": "boolean", "index": 7, "name": "isseen", "comment": null}, "snoozed": {"type": "boolean", "index": 8, "name": "snoozed", "comment": null}, "count": {"type": "long", "index": 9, "name": "count", "comment": null}, "lastoccurredat": {"type": "string", "index": 10, "name": "lastoccurredat", "comment": null}, "createdat": {"type": "string", "index": 11, "name": "createdat", "comment": null}, "updatedat": {"type": "string", "index": 12, "name": "updatedat", "comment": null}, "source": {"type": "string", "index": 13, "name": "source", "comment": null}, "owner": {"type": "string", "index": 14, "name": "owner", "comment": null}, "teams": {"type": "string", "index": 15, "name": "teams", "comment": null}, "responders": {"type": "string", "index": 16, "name": "responders", "comment": null}, "integration": {"type": "string", "index": 17, "name": "integration", "comment": null}, "report": {"type": "string", "index": 18, "name": "report", "comment": null}, "ownerteamid": {"type": "string", "index": 19, "name": "ownerteamid", "comment": null}, "tags": {"type": "string", "index": 20, "name": "tags", "comment": null}, "description": {"type": "string", "index": 21, "name": "description", "comment": null}, "ownerteam": {"type": "string", "index": 22, "name": "ownerteam", "comment": null}, "extraproperties": {"type": "string", "index": 23, "name": "extraproperties", "comment": null}, "links": {"type": "string", "index": 24, "name": "links", "comment": null}, "impactstartdate": {"type": "string", "index": 25, "name": "impactstartdate", "comment": null}, "impactenddate": {"type": "string", "index": 26, "name": "impactenddate", "comment": null}, "impactedservices": {"type": "string", "index": 27, "name": "impactedservices", "comment": null}, "actions": {"type": "string", "index": 28, "name": "actions", "comment": null}, "priority": {"type": "string", "index": 29, "name": "priority", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 15389821.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__opsgenie.incidents"}, "source.yoda.infra__opsgenie.services": {"metadata": {"type": "table", "schema": "opsgenie", "name": "services", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "name": {"type": "string", "index": 1, "name": "name", "comment": null}, "description": {"type": "string", "index": 2, "name": "description", "comment": null}, "links": {"type": "string", "index": 3, "name": "links", "comment": null}, "teamid": {"type": "string", "index": 4, "name": "teamid", "comment": null}, "isexternal": {"type": "boolean", "index": 5, "name": "isexternal", "comment": null}, "tags": {"type": "string", "index": 6, "name": "tags", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 3590610.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__opsgenie.services"}, "source.yoda.infra__opsgenie.teams": {"metadata": {"type": "table", "schema": "opsgenie", "name": "teams", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "name": {"type": "string", "index": 1, "name": "name", "comment": null}, "description": {"type": "string", "index": 2, "name": "description", "comment": null}, "links": {"type": "string", "index": 3, "name": "links", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 2400265.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__opsgenie.teams"}, "source.yoda.sms__sms.apicalls": {"metadata": {"type": "view", "schema": "sms", "name": "apicalls", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "request_id": {"type": "long", "index": 4, "name": "request_id", "comment": null}, "queue_id": {"type": "long", "index": 5, "name": "queue_id", "comment": null}, "app_id": {"type": "long", "index": 6, "name": "app_id", "comment": null}, "user_id": {"type": "long", "index": 7, "name": "user_id", "comment": null}, "campaign_id": {"type": "long", "index": 8, "name": "campaign_id", "comment": null}, "event_id": {"type": "long", "index": 9, "name": "event_id", "comment": null}, "flow_id": {"type": "long", "index": 10, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 11, "name": "flow_step_id", "comment": null}, "apikey": {"type": "string", "index": 12, "name": "apikey", "comment": null}, "from": {"type": "string", "index": 13, "name": "from", "comment": null}, "to": {"type": "string", "index": 14, "name": "to", "comment": null}, "type": {"type": "string", "index": 15, "name": "type", "comment": null}, "status": {"type": "string", "index": 16, "name": "status", "comment": null}, "platform": {"type": "string", "index": 17, "name": "platform", "comment": null}, "media": {"type": "string", "index": 18, "name": "media", "comment": null}, "spot_user_balance": {"type": "double", "index": 19, "name": "spot_user_balance", "comment": null}, "vendor_name_used": {"type": "string", "index": 20, "name": "vendor_name_used", "comment": null}, "price_billed": {"type": "double", "index": 21, "name": "price_billed", "comment": null}, "price_vendor_cost": {"type": "double", "index": 22, "name": "price_vendor_cost", "comment": null}, "parts": {"type": "long", "index": 23, "name": "parts", "comment": null}, "price_currency": {"type": "string", "index": 24, "name": "price_currency", "comment": null}, "method": {"type": "string", "index": 25, "name": "method", "comment": null}, "message_id": {"type": "string", "index": 26, "name": "message_id", "comment": null}, "message_id_int": {"type": "long", "index": 27, "name": "message_id_int", "comment": null}, "message_uuid": {"type": "string", "index": 28, "name": "message_uuid", "comment": null}, "ip": {"type": "string", "index": 29, "name": "ip", "comment": null}, "ip_forward": {"type": "string", "index": 30, "name": "ip_forward", "comment": null}, "referer": {"type": "string", "index": 31, "name": "referer", "comment": null}, "message": {"type": "string", "index": 32, "name": "message", "comment": null}, "sender_type": {"type": "string", "index": 33, "name": "sender_type", "comment": null}, "country_iso": {"type": "string", "index": 34, "name": "country_iso", "comment": null}, "message_notification_type": {"type": "string", "index": 35, "name": "message_notification_type", "comment": null}, "created": {"type": "timestamp", "index": 36, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 37, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 38, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.apicalls"}, "source.yoda.communication__sms.apicalls": {"metadata": {"type": "view", "schema": "sms", "name": "apicalls", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "request_id": {"type": "long", "index": 4, "name": "request_id", "comment": null}, "queue_id": {"type": "long", "index": 5, "name": "queue_id", "comment": null}, "app_id": {"type": "long", "index": 6, "name": "app_id", "comment": null}, "user_id": {"type": "long", "index": 7, "name": "user_id", "comment": null}, "campaign_id": {"type": "long", "index": 8, "name": "campaign_id", "comment": null}, "event_id": {"type": "long", "index": 9, "name": "event_id", "comment": null}, "flow_id": {"type": "long", "index": 10, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 11, "name": "flow_step_id", "comment": null}, "apikey": {"type": "string", "index": 12, "name": "apikey", "comment": null}, "from": {"type": "string", "index": 13, "name": "from", "comment": null}, "to": {"type": "string", "index": 14, "name": "to", "comment": null}, "type": {"type": "string", "index": 15, "name": "type", "comment": null}, "status": {"type": "string", "index": 16, "name": "status", "comment": null}, "platform": {"type": "string", "index": 17, "name": "platform", "comment": null}, "media": {"type": "string", "index": 18, "name": "media", "comment": null}, "spot_user_balance": {"type": "double", "index": 19, "name": "spot_user_balance", "comment": null}, "vendor_name_used": {"type": "string", "index": 20, "name": "vendor_name_used", "comment": null}, "price_billed": {"type": "double", "index": 21, "name": "price_billed", "comment": null}, "price_vendor_cost": {"type": "double", "index": 22, "name": "price_vendor_cost", "comment": null}, "parts": {"type": "long", "index": 23, "name": "parts", "comment": null}, "price_currency": {"type": "string", "index": 24, "name": "price_currency", "comment": null}, "method": {"type": "string", "index": 25, "name": "method", "comment": null}, "message_id": {"type": "string", "index": 26, "name": "message_id", "comment": null}, "message_id_int": {"type": "long", "index": 27, "name": "message_id_int", "comment": null}, "message_uuid": {"type": "string", "index": 28, "name": "message_uuid", "comment": null}, "ip": {"type": "string", "index": 29, "name": "ip", "comment": null}, "ip_forward": {"type": "string", "index": 30, "name": "ip_forward", "comment": null}, "referer": {"type": "string", "index": 31, "name": "referer", "comment": null}, "message": {"type": "string", "index": 32, "name": "message", "comment": null}, "sender_type": {"type": "string", "index": 33, "name": "sender_type", "comment": null}, "country_iso": {"type": "string", "index": 34, "name": "country_iso", "comment": null}, "message_notification_type": {"type": "string", "index": 35, "name": "message_notification_type", "comment": null}, "created": {"type": "timestamp", "index": 36, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 37, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 38, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.apicalls"}, "source.yoda.sms__sms.bigcommerce_users": {"metadata": {"type": "view", "schema": "sms", "name": "bigcommerce_users", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store": {"type": "string", "index": 4, "name": "store", "comment": null}, "domain": {"type": "string", "index": 5, "name": "domain", "comment": null}, "store_hash": {"type": "string", "index": 6, "name": "store_hash", "comment": null}, "access_token": {"type": "string", "index": 7, "name": "access_token", "comment": null}, "shop_data": {"type": "string", "index": 8, "name": "shop_data", "comment": null}, "app_data": {"type": "string", "index": 9, "name": "app_data", "comment": null}, "user_id": {"type": "long", "index": 10, "name": "user_id", "comment": null}, "plan_name": {"type": "string", "index": 11, "name": "plan_name", "comment": null}, "plan_level": {"type": "string", "index": 12, "name": "plan_level", "comment": null}, "auto_reload": {"type": "long", "index": 13, "name": "auto_reload", "comment": null}, "auto_reload_threshold": {"type": "long", "index": 14, "name": "auto_reload_threshold", "comment": null}, "auto_reload_amount": {"type": "long", "index": 15, "name": "auto_reload_amount", "comment": null}, "auto_reload_cap": {"type": "long", "index": 16, "name": "auto_reload_cap", "comment": null}, "abandoned_checkouts_sent": {"type": "long", "index": 17, "name": "abandoned_checkouts_sent", "comment": null}, "connected": {"type": "long", "index": 18, "name": "connected", "comment": null}, "sync_enabled": {"type": "long", "index": 19, "name": "sync_enabled", "comment": null}, "notes": {"type": "string", "index": 20, "name": "notes", "comment": null}, "pinned_navigation": {"type": "long", "index": 21, "name": "pinned_navigation", "comment": null}, "created": {"type": "timestamp", "index": 22, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 23, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 24, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.bigcommerce_users"}, "source.yoda.communication__sms.bigcommerce_users": {"metadata": {"type": "view", "schema": "sms", "name": "bigcommerce_users", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store": {"type": "string", "index": 4, "name": "store", "comment": null}, "domain": {"type": "string", "index": 5, "name": "domain", "comment": null}, "store_hash": {"type": "string", "index": 6, "name": "store_hash", "comment": null}, "access_token": {"type": "string", "index": 7, "name": "access_token", "comment": null}, "shop_data": {"type": "string", "index": 8, "name": "shop_data", "comment": null}, "app_data": {"type": "string", "index": 9, "name": "app_data", "comment": null}, "user_id": {"type": "long", "index": 10, "name": "user_id", "comment": null}, "plan_name": {"type": "string", "index": 11, "name": "plan_name", "comment": null}, "plan_level": {"type": "string", "index": 12, "name": "plan_level", "comment": null}, "auto_reload": {"type": "long", "index": 13, "name": "auto_reload", "comment": null}, "auto_reload_threshold": {"type": "long", "index": 14, "name": "auto_reload_threshold", "comment": null}, "auto_reload_amount": {"type": "long", "index": 15, "name": "auto_reload_amount", "comment": null}, "auto_reload_cap": {"type": "long", "index": 16, "name": "auto_reload_cap", "comment": null}, "abandoned_checkouts_sent": {"type": "long", "index": 17, "name": "abandoned_checkouts_sent", "comment": null}, "connected": {"type": "long", "index": 18, "name": "connected", "comment": null}, "sync_enabled": {"type": "long", "index": 19, "name": "sync_enabled", "comment": null}, "notes": {"type": "string", "index": 20, "name": "notes", "comment": null}, "pinned_navigation": {"type": "long", "index": 21, "name": "pinned_navigation", "comment": null}, "created": {"type": "timestamp", "index": 22, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 23, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 24, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.bigcommerce_users"}, "source.yoda.sms__sms.campaign_lists": {"metadata": {"type": "view", "schema": "sms", "name": "campaign_lists", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "campaign_id": {"type": "long", "index": 5, "name": "campaign_id", "comment": null}, "list_id": {"type": "long", "index": 6, "name": "list_id", "comment": null}, "exclude": {"type": "long", "index": 7, "name": "exclude", "comment": null}, "scheduled": {"type": "timestamp", "index": 8, "name": "scheduled", "comment": null}}, "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.yoda.sms__sms.campaign_lists"}, "source.yoda.sms__sms.campaign_relations": {"metadata": {"type": "view", "schema": "sms", "name": "campaign_relations", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "campaign_id": {"type": "long", "index": 5, "name": "campaign_id", "comment": null}, "resource_id": {"type": "long", "index": 6, "name": "resource_id", "comment": null}, "resource_type": {"type": "string", "index": 7, "name": "resource_type", "comment": null}, "created": {"type": "timestamp", "index": 8, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 9, "name": "modified", "comment": null}}, "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.yoda.sms__sms.campaign_relations"}, "source.yoda.sms__sms.campaigns": {"metadata": {"type": "view", "schema": "sms", "name": "campaigns", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "title": {"type": "string", "index": 5, "name": "title", "comment": null}, "message": {"type": "string", "index": 6, "name": "message", "comment": null}, "list_id": {"type": "long", "index": 7, "name": "list_id", "comment": null}, "total_sent": {"type": "long", "index": 8, "name": "total_sent", "comment": null}, "sent": {"type": "long", "index": 9, "name": "sent", "comment": null}, "ab_testing_id": {"type": "string", "index": 10, "name": "ab_testing_id", "comment": null}, "scheduled": {"type": "timestamp", "index": 11, "name": "scheduled", "comment": null}, "approved": {"type": "long", "index": 12, "name": "approved", "comment": null}, "is_repopulated": {"type": "long", "index": 13, "name": "is_repopulated", "comment": null}, "status": {"type": "string", "index": 14, "name": "status", "comment": null}, "channel": {"type": "string", "index": 15, "name": "channel", "comment": null}, "created": {"type": "timestamp", "index": 16, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 17, "name": "modified", "comment": null}, "request": {"type": "string", "index": 18, "name": "request", "comment": null}, "is_logical_deleted": {"type": "long", "index": 19, "name": "is_logical_deleted", "comment": null}, "campaign_parent_id": {"type": "long", "index": 20, "name": "campaign_parent_id", "comment": null}, "drip_id": {"type": "string", "index": 21, "name": "drip_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.campaigns"}, "source.yoda.communication__sms.campaigns": {"metadata": {"type": "view", "schema": "sms", "name": "campaigns", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "title": {"type": "string", "index": 5, "name": "title", "comment": null}, "message": {"type": "string", "index": 6, "name": "message", "comment": null}, "list_id": {"type": "long", "index": 7, "name": "list_id", "comment": null}, "total_sent": {"type": "long", "index": 8, "name": "total_sent", "comment": null}, "sent": {"type": "long", "index": 9, "name": "sent", "comment": null}, "ab_testing_id": {"type": "string", "index": 10, "name": "ab_testing_id", "comment": null}, "scheduled": {"type": "timestamp", "index": 11, "name": "scheduled", "comment": null}, "approved": {"type": "long", "index": 12, "name": "approved", "comment": null}, "is_repopulated": {"type": "long", "index": 13, "name": "is_repopulated", "comment": null}, "status": {"type": "string", "index": 14, "name": "status", "comment": null}, "channel": {"type": "string", "index": 15, "name": "channel", "comment": null}, "created": {"type": "timestamp", "index": 16, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 17, "name": "modified", "comment": null}, "request": {"type": "string", "index": 18, "name": "request", "comment": null}, "is_logical_deleted": {"type": "long", "index": 19, "name": "is_logical_deleted", "comment": null}, "campaign_parent_id": {"type": "long", "index": 20, "name": "campaign_parent_id", "comment": null}, "drip_id": {"type": "string", "index": 21, "name": "drip_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.campaigns"}, "source.yoda.communication__sms.conversation_messages": {"metadata": {"type": "view", "schema": "sms", "name": "conversation_messages", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "conversation_id": {"type": "long", "index": 4, "name": "conversation_id", "comment": null}, "user_id": {"type": "long", "index": 5, "name": "user_id", "comment": null}, "direction": {"type": "string", "index": 6, "name": "direction", "comment": null}, "apicall_id": {"type": "long", "index": 7, "name": "apicall_id", "comment": null}, "type": {"type": "string", "index": 8, "name": "type", "comment": null}, "image_url": {"type": "string", "index": 9, "name": "image_url", "comment": null}, "image_caption": {"type": "string", "index": 10, "name": "image_caption", "comment": null}, "message": {"type": "string", "index": 11, "name": "message", "comment": null}, "read": {"type": "long", "index": 12, "name": "read", "comment": null}, "created": {"type": "timestamp", "index": 13, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 14, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 15, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.conversation_messages"}, "source.yoda.sms__sms.default_predefined_messages": {"metadata": {"type": "view", "schema": "sms", "name": "default_predefined_messages", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "type": {"type": "string", "index": 4, "name": "type", "comment": null}, "trigger": {"type": "string", "index": 5, "name": "trigger", "comment": null}, "default_message": {"type": "string", "index": 6, "name": "default_message", "comment": null}, "category": {"type": "string", "index": 7, "name": "category", "comment": null}, "sub_category": {"type": "string", "index": 8, "name": "sub_category", "comment": null}, "active": {"type": "long", "index": 9, "name": "active", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 11, "name": "modified", "comment": null}}, "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.yoda.sms__sms.default_predefined_messages"}, "source.yoda.sms__sms.email_charges": {"metadata": {"type": "view", "schema": "sms", "name": "email_charges", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "price": {"type": "double", "index": 5, "name": "price", "comment": null}, "currency": {"type": "string", "index": 6, "name": "currency", "comment": null}, "type": {"type": "string", "index": 7, "name": "type", "comment": null}, "total_emails": {"type": "long", "index": 8, "name": "total_emails", "comment": null}, "campaign_email_count": {"type": "long", "index": 9, "name": "campaign_email_count", "comment": null}, "flow_email_count": {"type": "long", "index": 10, "name": "flow_email_count", "comment": null}, "created": {"type": "timestamp", "index": 11, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 12, "name": "modified", "comment": null}}, "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.yoda.sms__sms.email_charges"}, "source.yoda.communication__sms.email_esp_events": {"metadata": {"type": "view", "schema": "sms", "name": "email_esp_events", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "email": {"type": "string", "index": 5, "name": "email", "comment": null}, "campaign_id": {"type": "long", "index": 6, "name": "campaign_id", "comment": null}, "flow_id": {"type": "long", "index": 7, "name": "flow_id", "comment": null}, "reference_id": {"type": "long", "index": 8, "name": "reference_id", "comment": null}, "event_type": {"type": "string", "index": 9, "name": "event_type", "comment": null}, "event_properties": {"type": "string", "index": 10, "name": "event_properties", "comment": null}, "reason": {"type": "string", "index": 11, "name": "reason", "comment": null}, "created": {"type": "timestamp", "index": 12, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 13, "name": "modified", "comment": null}}, "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.yoda.communication__sms.email_esp_events"}, "source.yoda.sms__sms.email_to_sms_campaigns": {"metadata": {"type": "view", "schema": "sms", "name": "email_to_sms_campaigns", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "sms_campaign_id": {"type": "long", "index": 4, "name": "sms_campaign_id", "comment": null}, "email_campaign_id": {"type": "long", "index": 5, "name": "email_campaign_id", "comment": null}, "created": {"type": "timestamp", "index": 6, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 7, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 8, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.email_to_sms_campaigns"}, "source.yoda.communication__sms.events": {"metadata": {"type": "view", "schema": "sms", "name": "events", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "user_id": {"type": "long", "index": 5, "name": "user_id", "comment": null}, "webhook": {"type": "string", "index": 6, "name": "webhook", "comment": null}, "settings": {"type": "string", "index": 7, "name": "settings", "comment": null}, "platform": {"type": "string", "index": 8, "name": "platform", "comment": null}, "status": {"type": "long", "index": 9, "name": "status", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 11, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 12, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.events"}, "source.yoda.sms__sms.events": {"metadata": {"type": "view", "schema": "sms", "name": "events", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "user_id": {"type": "long", "index": 5, "name": "user_id", "comment": null}, "webhook": {"type": "string", "index": 6, "name": "webhook", "comment": null}, "settings": {"type": "string", "index": 7, "name": "settings", "comment": null}, "platform": {"type": "string", "index": 8, "name": "platform", "comment": null}, "status": {"type": "long", "index": 9, "name": "status", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 11, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 12, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.events"}, "source.yoda.sms__sms.flow_link_clicks": {"metadata": {"type": "view", "schema": "sms", "name": "flow_link_clicks", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "number": {"type": "string", "index": 5, "name": "number", "comment": null}, "clicks_count": {"type": "long", "index": 6, "name": "clicks_count", "comment": null}, "flow_id": {"type": "long", "index": 7, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 8, "name": "flow_step_id", "comment": null}, "link_id": {"type": "long", "index": 9, "name": "link_id", "comment": null}, "ua": {"type": "string", "index": 10, "name": "ua", "comment": null}, "created": {"type": "timestamp", "index": 11, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 12, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 13, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.flow_link_clicks"}, "source.yoda.sms__sms.flow_links": {"metadata": {"type": "view", "schema": "sms", "name": "flow_links", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "flow_id": {"type": "long", "index": 4, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 5, "name": "flow_step_id", "comment": null}, "ab_entity_id": {"type": "long", "index": 6, "name": "ab_entity_id", "comment": null}, "clicks_count": {"type": "long", "index": 7, "name": "clicks_count", "comment": null}, "link": {"type": "string", "index": 8, "name": "link", "comment": null}, "created": {"type": "timestamp", "index": 9, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 10, "name": "modified", "comment": null}}, "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.yoda.sms__sms.flow_links"}, "source.yoda.sms__sms.flows": {"metadata": {"type": "view", "schema": "sms", "name": "flows", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "user_id": {"type": "long", "index": 5, "name": "user_id", "comment": null}, "flow_trigger": {"type": "string", "index": 6, "name": "flow_trigger", "comment": null}, "flow_settings": {"type": "string", "index": 7, "name": "flow_settings", "comment": null}, "platform": {"type": "string", "index": 8, "name": "platform", "comment": null}, "status": {"type": "long", "index": 9, "name": "status", "comment": null}, "snapshot_id": {"type": "long", "index": 10, "name": "snapshot_id", "comment": null}, "created": {"type": "timestamp", "index": 11, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 12, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 13, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.flows"}, "source.yoda.communication__sms.flows": {"metadata": {"type": "view", "schema": "sms", "name": "flows", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "user_id": {"type": "long", "index": 5, "name": "user_id", "comment": null}, "flow_trigger": {"type": "string", "index": 6, "name": "flow_trigger", "comment": null}, "flow_settings": {"type": "string", "index": 7, "name": "flow_settings", "comment": null}, "platform": {"type": "string", "index": 8, "name": "platform", "comment": null}, "status": {"type": "long", "index": 9, "name": "status", "comment": null}, "snapshot_id": {"type": "long", "index": 10, "name": "snapshot_id", "comment": null}, "created": {"type": "timestamp", "index": 11, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 12, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 13, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.flows"}, "source.yoda.communication__sms.forms": {"metadata": {"type": "view", "schema": "sms", "name": "forms", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "event_id": {"type": "long", "index": 5, "name": "event_id", "comment": null}, "flow_id": {"type": "long", "index": 6, "name": "flow_id", "comment": null}, "platform": {"type": "string", "index": 7, "name": "platform", "comment": null}, "type": {"type": "string", "index": 8, "name": "type", "comment": null}, "name": {"type": "string", "index": 9, "name": "name", "comment": null}, "settings": {"type": "string", "index": 10, "name": "settings", "comment": null}, "dynamic_popup": {"type": "long", "index": 11, "name": "dynamic_popup", "comment": null}, "status": {"type": "string", "index": 12, "name": "status", "comment": null}, "platform_script_id": {"type": "string", "index": 13, "name": "platform_script_id", "comment": null}, "created": {"type": "timestamp", "index": 14, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 15, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 16, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.forms"}, "source.yoda.sms__sms.forms": {"metadata": {"type": "view", "schema": "sms", "name": "forms", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "event_id": {"type": "long", "index": 5, "name": "event_id", "comment": null}, "flow_id": {"type": "long", "index": 6, "name": "flow_id", "comment": null}, "platform": {"type": "string", "index": 7, "name": "platform", "comment": null}, "type": {"type": "string", "index": 8, "name": "type", "comment": null}, "name": {"type": "string", "index": 9, "name": "name", "comment": null}, "settings": {"type": "string", "index": 10, "name": "settings", "comment": null}, "dynamic_popup": {"type": "long", "index": 11, "name": "dynamic_popup", "comment": null}, "status": {"type": "string", "index": 12, "name": "status", "comment": null}, "platform_script_id": {"type": "string", "index": 13, "name": "platform_script_id", "comment": null}, "created": {"type": "timestamp", "index": 14, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 15, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 16, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.forms"}, "source.yoda.sms__sms.free_credits_logs": {"metadata": {"type": "view", "schema": "sms", "name": "free_credits_logs", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "store_name": {"type": "string", "index": 5, "name": "store_name", "comment": null}, "source": {"type": "string", "index": 6, "name": "source", "comment": null}, "amount": {"type": "double", "index": 7, "name": "amount", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "is_logical_deleted": {"type": "long", "index": 9, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.free_credits_logs"}, "source.yoda.communication__sms.klaviyo_users": {"metadata": {"type": "view", "schema": "sms", "name": "klaviyo_users", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "api_key": {"type": "string", "index": 5, "name": "api_key", "comment": null}, "klaviyo_auto_sync": {"type": "long", "index": 6, "name": "klaviyo_auto_sync", "comment": null}, "smsbump_auto_sync": {"type": "long", "index": 7, "name": "smsbump_auto_sync", "comment": null}, "all_lists_sync": {"type": "long", "index": 8, "name": "all_lists_sync", "comment": null}, "auto_sync": {"type": "long", "index": 9, "name": "auto_sync", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 11, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 12, "name": "is_logical_deleted", "comment": null}, "klaviyo_metrics": {"type": "long", "index": 13, "name": "klaviyo_metrics", "comment": null}}, "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.yoda.communication__sms.klaviyo_users"}, "source.yoda.sms__sms.link_clicks": {"metadata": {"type": "view", "schema": "sms", "name": "link_clicks", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "number": {"type": "string", "index": 5, "name": "number", "comment": null}, "clicks_count": {"type": "long", "index": 6, "name": "clicks_count", "comment": null}, "campaign_id": {"type": "long", "index": 7, "name": "campaign_id", "comment": null}, "event_id": {"type": "long", "index": 8, "name": "event_id", "comment": null}, "link_id": {"type": "long", "index": 9, "name": "link_id", "comment": null}, "ua": {"type": "string", "index": 10, "name": "ua", "comment": null}, "created": {"type": "timestamp", "index": 11, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 12, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 13, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.link_clicks"}, "source.yoda.communication__sms.list_keywords": {"metadata": {"type": "view", "schema": "sms", "name": "list_keywords", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "keyword": {"type": "string", "index": 4, "name": "keyword", "comment": null}, "display_name": {"type": "string", "index": 5, "name": "display_name", "comment": null}, "list_id": {"type": "long", "index": 6, "name": "list_id", "comment": null}, "event_id": {"type": "long", "index": 7, "name": "event_id", "comment": null}, "user_id": {"type": "long", "index": 8, "name": "user_id", "comment": null}, "price": {"type": "double", "index": 9, "name": "price", "comment": null}, "last_billed": {"type": "timestamp", "index": 10, "name": "last_billed", "comment": null}, "status": {"type": "long", "index": 11, "name": "status", "comment": null}, "subscription_status": {"type": "long", "index": 12, "name": "subscription_status", "comment": null}, "max_messages": {"type": "long", "index": 13, "name": "max_messages", "comment": null}, "charge_attempts": {"type": "long", "index": 14, "name": "charge_attempts", "comment": null}, "created": {"type": "timestamp", "index": 15, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 16, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 17, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.list_keywords"}, "source.yoda.sms__sms.lists": {"metadata": {"type": "view", "schema": "sms", "name": "lists", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "list_name": {"type": "string", "index": 4, "name": "list_name", "comment": null}, "count": {"type": "long", "index": 5, "name": "count", "comment": null}, "segment_id": {"type": "long", "index": 6, "name": "segment_id", "comment": null}, "user_id": {"type": "long", "index": 7, "name": "user_id", "comment": null}, "is_hidden": {"type": "long", "index": 8, "name": "is_hidden", "comment": null}, "is_email_list": {"type": "long", "index": 9, "name": "is_email_list", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 11, "name": "modified", "comment": null}}, "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.yoda.sms__sms.lists"}, "source.yoda.sms__sms.loyalty_flows_data": {"metadata": {"type": "view", "schema": "sms", "name": "loyalty_flows_data", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "long", "index": 0, "name": "id", "comment": null}, "user_id": {"type": "long", "index": 1, "name": "user_id", "comment": null}, "shortcode": {"type": "string", "index": 2, "name": "shortcode", "comment": null}, "condition": {"type": "string", "index": 3, "name": "condition", "comment": null}, "flow_trigger": {"type": "string", "index": 4, "name": "flow_trigger", "comment": null}}, "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.yoda.sms__sms.loyalty_flows_data"}, "source.yoda.communication__sms.packages": {"metadata": {"type": "view", "schema": "sms", "name": "packages", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "display_name": {"type": "string", "index": 5, "name": "display_name", "comment": null}, "payment_key": {"type": "string", "index": 6, "name": "payment_key", "comment": null}, "plan_key": {"type": "string", "index": 7, "name": "plan_key", "comment": null}, "sub_title": {"type": "string", "index": 8, "name": "sub_title", "comment": null}, "description": {"type": "string", "index": 9, "name": "description", "comment": null}, "platform": {"type": "string", "index": 10, "name": "platform", "comment": null}, "type": {"type": "string", "index": 11, "name": "type", "comment": null}, "period": {"type": "string", "index": 12, "name": "period", "comment": null}, "price": {"type": "double", "index": 13, "name": "price", "comment": null}, "bonus_credits": {"type": "double", "index": 14, "name": "bonus_credits", "comment": null}, "visible_app": {"type": "long", "index": 15, "name": "visible_app", "comment": null}, "visible_site": {"type": "long", "index": 16, "name": "visible_site", "comment": null}, "status": {"type": "long", "index": 17, "name": "status", "comment": null}, "created": {"type": "timestamp", "index": 18, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 19, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 20, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.packages"}, "source.yoda.sms__sms.packages": {"metadata": {"type": "view", "schema": "sms", "name": "packages", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "display_name": {"type": "string", "index": 5, "name": "display_name", "comment": null}, "payment_key": {"type": "string", "index": 6, "name": "payment_key", "comment": null}, "plan_key": {"type": "string", "index": 7, "name": "plan_key", "comment": null}, "sub_title": {"type": "string", "index": 8, "name": "sub_title", "comment": null}, "description": {"type": "string", "index": 9, "name": "description", "comment": null}, "platform": {"type": "string", "index": 10, "name": "platform", "comment": null}, "type": {"type": "string", "index": 11, "name": "type", "comment": null}, "period": {"type": "string", "index": 12, "name": "period", "comment": null}, "price": {"type": "double", "index": 13, "name": "price", "comment": null}, "bonus_credits": {"type": "double", "index": 14, "name": "bonus_credits", "comment": null}, "visible_app": {"type": "long", "index": 15, "name": "visible_app", "comment": null}, "visible_site": {"type": "long", "index": 16, "name": "visible_site", "comment": null}, "status": {"type": "long", "index": 17, "name": "status", "comment": null}, "created": {"type": "timestamp", "index": 18, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 19, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 20, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.packages"}, "source.yoda.communication__sms.phone_to_list": {"metadata": {"type": "view", "schema": "sms", "name": "phone_to_list", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "list_id": {"type": "long", "index": 5, "name": "list_id", "comment": null}, "phone_id": {"type": "long", "index": 6, "name": "phone_id", "comment": null}, "phone_meta_id": {"type": "long", "index": 7, "name": "phone_meta_id", "comment": null}, "source": {"type": "string", "index": 8, "name": "source", "comment": null}, "status": {"type": "long", "index": 9, "name": "status", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 11, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 12, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.phone_to_list"}, "source.yoda.communication__sms.phones": {"metadata": {"type": "view", "schema": "sms", "name": "phones", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "phone": {"type": "string", "index": 4, "name": "phone", "comment": null}, "is_subscriber": {"type": "long", "index": 5, "name": "is_subscriber", "comment": null}, "country_iso": {"type": "string", "index": 6, "name": "country_iso", "comment": null}, "landline": {"type": "long", "index": 7, "name": "landline", "comment": null}, "network": {"type": "string", "index": 8, "name": "network", "comment": null}, "failed_count": {"type": "long", "index": 9, "name": "failed_count", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 11, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 12, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.phones"}, "source.yoda.communication__sms.phones_meta": {"metadata": {"type": "view", "schema": "sms", "name": "phones_meta", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "phone_id": {"type": "long", "index": 5, "name": "phone_id", "comment": null}, "is_subscriber": {"type": "long", "index": 6, "name": "is_subscriber", "comment": null}, "first_name": {"type": "string", "index": 7, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 8, "name": "last_name", "comment": null}, "email": {"type": "string", "index": 9, "name": "email", "comment": null}, "birth_date": {"type": "timestamp", "index": 10, "name": "birth_date", "comment": null}, "gender": {"type": "string", "index": 11, "name": "gender", "comment": null}, "timezone": {"type": "string", "index": 12, "name": "timezone", "comment": null}, "platform": {"type": "string", "index": 13, "name": "platform", "comment": null}, "initial_source": {"type": "string", "index": 14, "name": "initial_source", "comment": null}, "external_id": {"type": "string", "index": 15, "name": "external_id", "comment": null}, "created": {"type": "timestamp", "index": 16, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 17, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 18, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.phones_meta"}, "source.yoda.sms__sms.purchases": {"metadata": {"type": "view", "schema": "sms", "name": "purchases", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "long", "index": 4, "name": "store_id", "comment": null}, "number": {"type": "string", "index": 5, "name": "number", "comment": null}, "status": {"type": "string", "index": 6, "name": "status", "comment": null}, "type": {"type": "string", "index": 7, "name": "type", "comment": null}, "reason": {"type": "string", "index": 8, "name": "reason", "comment": null}, "platform": {"type": "string", "index": 9, "name": "platform", "comment": null}, "gateway": {"type": "string", "index": 10, "name": "gateway", "comment": null}, "amount_paid": {"type": "double", "index": 11, "name": "amount_paid", "comment": null}, "amount_added": {"type": "double", "index": 12, "name": "amount_added", "comment": null}, "notes": {"type": "string", "index": 13, "name": "notes", "comment": null}, "purchase_info": {"type": "string", "index": 14, "name": "purchase_info", "comment": null}, "cart": {"type": "string", "index": 15, "name": "cart", "comment": null}, "discount_code": {"type": "string", "index": 16, "name": "discount_code", "comment": null}, "invoice": {"type": "string", "index": 17, "name": "invoice", "comment": null}, "ipnlog": {"type": "string", "index": 18, "name": "ipnlog", "comment": null}, "shopify_charge_response": {"type": "string", "index": 19, "name": "shopify_charge_response", "comment": null}, "user_id": {"type": "long", "index": 20, "name": "user_id", "comment": null}, "affiliate_id": {"type": "long", "index": 21, "name": "affiliate_id", "comment": null}, "vendor_id": {"type": "long", "index": 22, "name": "vendor_id", "comment": null}, "product_id": {"type": "string", "index": 23, "name": "product_id", "comment": null}, "product": {"type": "string", "index": 24, "name": "product", "comment": null}, "licenses": {"type": "string", "index": 25, "name": "licenses", "comment": null}, "purchased_on": {"type": "timestamp", "index": 26, "name": "purchased_on", "comment": null}, "last_downloaded": {"type": "timestamp", "index": 27, "name": "last_downloaded", "comment": null}, "downloads_history": {"type": "string", "index": 28, "name": "downloads_history", "comment": null}, "purchased_from": {"type": "string", "index": 29, "name": "purchased_from", "comment": null}, "reminders": {"type": "string", "index": 30, "name": "reminders", "comment": null}, "rating": {"type": "long", "index": 31, "name": "rating", "comment": null}, "created": {"type": "timestamp", "index": 32, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 33, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 34, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.purchases"}, "source.yoda.sms__sms.shopify_analytics_orders": {"metadata": {"type": "view", "schema": "sms", "name": "shopify_analytics_orders", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "customer_id": {"type": "long", "index": 5, "name": "customer_id", "comment": null}, "order_id": {"type": "long", "index": 6, "name": "order_id", "comment": null}, "amount": {"type": "double", "index": 7, "name": "amount", "comment": null}, "campaign_id": {"type": "long", "index": 8, "name": "campaign_id", "comment": null}, "event_id": {"type": "long", "index": 9, "name": "event_id", "comment": null}, "flow_id": {"type": "long", "index": 10, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 11, "name": "flow_step_id", "comment": null}, "flow_snapshot_id": {"type": "long", "index": 12, "name": "flow_snapshot_id", "comment": null}, "ab_campaign_id": {"type": "long", "index": 13, "name": "ab_campaign_id", "comment": null}, "channel": {"type": "string", "index": 14, "name": "channel", "comment": null}, "created": {"type": "timestamp", "index": 15, "name": "created", "comment": null}, "country_iso": {"type": "string", "index": 16, "name": "country_iso", "comment": null}, "type": {"type": "string", "index": 17, "name": "type", "comment": null}, "store_id": {"type": "string", "index": 18, "name": "store_id", "comment": null}, "ref_campaign_id": {"type": "long", "index": 19, "name": "ref_campaign_id", "comment": null}, "is_logical_deleted": {"type": "long", "index": 20, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.shopify_analytics_orders"}, "source.yoda.communication__sms.shopify_analytics_orders": {"metadata": {"type": "view", "schema": "sms", "name": "shopify_analytics_orders", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "customer_id": {"type": "long", "index": 5, "name": "customer_id", "comment": null}, "order_id": {"type": "long", "index": 6, "name": "order_id", "comment": null}, "amount": {"type": "double", "index": 7, "name": "amount", "comment": null}, "campaign_id": {"type": "long", "index": 8, "name": "campaign_id", "comment": null}, "event_id": {"type": "long", "index": 9, "name": "event_id", "comment": null}, "flow_id": {"type": "long", "index": 10, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 11, "name": "flow_step_id", "comment": null}, "flow_snapshot_id": {"type": "long", "index": 12, "name": "flow_snapshot_id", "comment": null}, "ab_campaign_id": {"type": "long", "index": 13, "name": "ab_campaign_id", "comment": null}, "channel": {"type": "string", "index": 14, "name": "channel", "comment": null}, "created": {"type": "timestamp", "index": 15, "name": "created", "comment": null}, "country_iso": {"type": "string", "index": 16, "name": "country_iso", "comment": null}, "type": {"type": "string", "index": 17, "name": "type", "comment": null}, "store_id": {"type": "string", "index": 18, "name": "store_id", "comment": null}, "ref_campaign_id": {"type": "long", "index": 19, "name": "ref_campaign_id", "comment": null}, "is_logical_deleted": {"type": "long", "index": 20, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.shopify_analytics_orders"}, "source.yoda.sms__sms.shopify_campaign_discount_codes": {"metadata": {"type": "view", "schema": "sms", "name": "shopify_campaign_discount_codes", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "campaign_id": {"type": "long", "index": 5, "name": "campaign_id", "comment": null}, "ab_campaign_id": {"type": "long", "index": 6, "name": "ab_campaign_id", "comment": null}, "discount_code": {"type": "string", "index": 7, "name": "discount_code", "comment": null}, "auto_generated": {"type": "long", "index": 8, "name": "auto_generated", "comment": null}, "created": {"type": "timestamp", "index": 9, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 10, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 11, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.shopify_campaign_discount_codes"}, "source.yoda.sms__sms.shopify_campaign_orders": {"metadata": {"type": "view", "schema": "sms", "name": "shopify_campaign_orders", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "order_id": {"type": "string", "index": 4, "name": "order_id", "comment": null}, "phone": {"type": "string", "index": 5, "name": "phone", "comment": null}, "campaign_id": {"type": "long", "index": 6, "name": "campaign_id", "comment": null}, "ab_campaign_id": {"type": "long", "index": 7, "name": "ab_campaign_id", "comment": null}, "user_id": {"type": "long", "index": 8, "name": "user_id", "comment": null}, "channel": {"type": "string", "index": 9, "name": "channel", "comment": null}, "amount": {"type": "double", "index": 10, "name": "amount", "comment": null}, "created": {"type": "timestamp", "index": 11, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 12, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 13, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.shopify_campaign_orders"}, "source.yoda.sms__sms.shopify_flows_orders": {"metadata": {"type": "view", "schema": "sms", "name": "shopify_flows_orders", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "flow_id": {"type": "long", "index": 5, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 6, "name": "flow_step_id", "comment": null}, "flow_snapshot_id": {"type": "long", "index": 7, "name": "flow_snapshot_id", "comment": null}, "ab_entity_id": {"type": "long", "index": 8, "name": "ab_entity_id", "comment": null}, "shopify_customer_id": {"type": "string", "index": 9, "name": "shopify_customer_id", "comment": null}, "phone": {"type": "string", "index": 10, "name": "phone", "comment": null}, "order_id": {"type": "string", "index": 11, "name": "order_id", "comment": null}, "amount": {"type": "double", "index": 12, "name": "amount", "comment": null}, "recovered": {"type": "long", "index": 13, "name": "recovered", "comment": null}, "conversion_source": {"type": "string", "index": 14, "name": "conversion_source", "comment": null}, "created": {"type": "timestamp", "index": 15, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 16, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 17, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.shopify_flows_orders"}, "source.yoda.sms__sms.shopify_segments": {"metadata": {"type": "view", "schema": "sms", "name": "shopify_segments", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "segment_rules": {"type": "string", "index": 4, "name": "segment_rules", "comment": null}, "user_id": {"type": "long", "index": 5, "name": "user_id", "comment": null}, "platform": {"type": "string", "index": 6, "name": "platform", "comment": null}, "last_updated": {"type": "timestamp", "index": 7, "name": "last_updated", "comment": null}, "status": {"type": "string", "index": 8, "name": "status", "comment": null}, "created": {"type": "timestamp", "index": 9, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 10, "name": "modified", "comment": null}, "used_in_unomi": {"type": "long", "index": 11, "name": "used_in_unomi", "comment": null}}, "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.yoda.sms__sms.shopify_segments"}, "source.yoda.communication__sms.shopify_subscription_list_pages": {"metadata": {"type": "view", "schema": "sms", "name": "shopify_subscription_list_pages", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "list_id": {"type": "long", "index": 5, "name": "list_id", "comment": null}, "page_id": {"type": "string", "index": 6, "name": "page_id", "comment": null}, "handle": {"type": "string", "index": 7, "name": "handle", "comment": null}, "page_url": {"type": "string", "index": 8, "name": "page_url", "comment": null}, "page_short_url": {"type": "string", "index": 9, "name": "page_short_url", "comment": null}, "page_short_loyalty_url": {"type": "string", "index": 10, "name": "page_short_loyalty_url", "comment": null}, "source": {"type": "string", "index": 11, "name": "source", "comment": null}, "link_clicks": {"type": "long", "index": 12, "name": "link_clicks", "comment": null}, "link_subscribed": {"type": "long", "index": 13, "name": "link_subscribed", "comment": null}, "created": {"type": "timestamp", "index": 14, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 15, "name": "modified", "comment": null}}, "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.yoda.communication__sms.shopify_subscription_list_pages"}, "source.yoda.communication__sms.shopify_user_integrations": {"metadata": {"type": "view", "schema": "sms", "name": "shopify_user_integrations", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "integration_id": {"type": "long", "index": 5, "name": "integration_id", "comment": null}, "status": {"type": "long", "index": 6, "name": "status", "comment": null}, "created": {"type": "timestamp", "index": 7, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 8, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 9, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.shopify_user_integrations"}, "source.yoda.communication__sms.shopify_users": {"metadata": {"type": "view", "schema": "sms", "name": "shopify_users", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store": {"type": "string", "index": 4, "name": "store", "comment": null}, "domain": {"type": "string", "index": 5, "name": "domain", "comment": null}, "access_token": {"type": "string", "index": 6, "name": "access_token", "comment": null}, "shop_data": {"type": "string", "index": 7, "name": "shop_data", "comment": null}, "app_data": {"type": "string", "index": 8, "name": "app_data", "comment": null}, "user_id": {"type": "long", "index": 9, "name": "user_id", "comment": null}, "platform": {"type": "string", "index": 10, "name": "platform", "comment": null}, "plan": {"type": "string", "index": 11, "name": "plan", "comment": null}, "shopify_store_id": {"type": "string", "index": 12, "name": "shopify_store_id", "comment": null}, "associated_user": {"type": "string", "index": 13, "name": "associated_user", "comment": null}, "auto_reload": {"type": "long", "index": 14, "name": "auto_reload", "comment": null}, "auto_reload_threshold": {"type": "long", "index": 15, "name": "auto_reload_threshold", "comment": null}, "auto_reload_amount": {"type": "long", "index": 16, "name": "auto_reload_amount", "comment": null}, "auto_reload_cap": {"type": "long", "index": 17, "name": "auto_reload_cap", "comment": null}, "abandoned_checkouts_sent": {"type": "long", "index": 18, "name": "abandoned_checkouts_sent", "comment": null}, "connected": {"type": "long", "index": 19, "name": "connected", "comment": null}, "sync_enabled": {"type": "long", "index": 20, "name": "sync_enabled", "comment": null}, "back_fill_completed": {"type": "long", "index": 21, "name": "back_fill_completed", "comment": null}, "notes": {"type": "string", "index": 22, "name": "notes", "comment": null}, "pinned_navigation": {"type": "long", "index": 23, "name": "pinned_navigation", "comment": null}, "created": {"type": "timestamp", "index": 24, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 25, "name": "modified", "comment": null}, "consent_webhook_enabled": {"type": "long", "index": 26, "name": "consent_webhook_enabled", "comment": null}, "is_logical_deleted": {"type": "long", "index": 27, "name": "is_logical_deleted", "comment": null}, "auto_reload_segment_orders_count": {"type": "long", "index": 28, "name": "auto_reload_segment_orders_count", "comment": null}, "auto_reload_segment_suggestion": {"type": "string", "index": 29, "name": "auto_reload_segment_suggestion", "comment": null}, "auto_reload_segment_updated_at": {"type": "long", "index": 30, "name": "auto_reload_segment_updated_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.yoda.communication__sms.shopify_users"}, "source.yoda.sms__sms.shopify_users": {"metadata": {"type": "view", "schema": "sms", "name": "shopify_users", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store": {"type": "string", "index": 4, "name": "store", "comment": null}, "domain": {"type": "string", "index": 5, "name": "domain", "comment": null}, "access_token": {"type": "string", "index": 6, "name": "access_token", "comment": null}, "shop_data": {"type": "string", "index": 7, "name": "shop_data", "comment": null}, "app_data": {"type": "string", "index": 8, "name": "app_data", "comment": null}, "user_id": {"type": "long", "index": 9, "name": "user_id", "comment": null}, "platform": {"type": "string", "index": 10, "name": "platform", "comment": null}, "plan": {"type": "string", "index": 11, "name": "plan", "comment": null}, "shopify_store_id": {"type": "string", "index": 12, "name": "shopify_store_id", "comment": null}, "associated_user": {"type": "string", "index": 13, "name": "associated_user", "comment": null}, "auto_reload": {"type": "long", "index": 14, "name": "auto_reload", "comment": null}, "auto_reload_threshold": {"type": "long", "index": 15, "name": "auto_reload_threshold", "comment": null}, "auto_reload_amount": {"type": "long", "index": 16, "name": "auto_reload_amount", "comment": null}, "auto_reload_cap": {"type": "long", "index": 17, "name": "auto_reload_cap", "comment": null}, "abandoned_checkouts_sent": {"type": "long", "index": 18, "name": "abandoned_checkouts_sent", "comment": null}, "connected": {"type": "long", "index": 19, "name": "connected", "comment": null}, "sync_enabled": {"type": "long", "index": 20, "name": "sync_enabled", "comment": null}, "back_fill_completed": {"type": "long", "index": 21, "name": "back_fill_completed", "comment": null}, "notes": {"type": "string", "index": 22, "name": "notes", "comment": null}, "pinned_navigation": {"type": "long", "index": 23, "name": "pinned_navigation", "comment": null}, "created": {"type": "timestamp", "index": 24, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 25, "name": "modified", "comment": null}, "consent_webhook_enabled": {"type": "long", "index": 26, "name": "consent_webhook_enabled", "comment": null}, "is_logical_deleted": {"type": "long", "index": 27, "name": "is_logical_deleted", "comment": null}, "auto_reload_segment_orders_count": {"type": "long", "index": 28, "name": "auto_reload_segment_orders_count", "comment": null}, "auto_reload_segment_suggestion": {"type": "string", "index": 29, "name": "auto_reload_segment_suggestion", "comment": null}, "auto_reload_segment_updated_at": {"type": "long", "index": 30, "name": "auto_reload_segment_updated_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.yoda.sms__sms.shopify_users"}, "source.yoda.sms__sms.sms_loyalty_redemptions": {"metadata": {"type": "view", "schema": "sms", "name": "sms_loyalty_redemptions", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "campaign_id": {"type": "long", "index": 5, "name": "campaign_id", "comment": null}, "flow_id": {"type": "long", "index": 6, "name": "flow_id", "comment": null}, "flow_step_id": {"type": "long", "index": 7, "name": "flow_step_id", "comment": null}, "redemption_id": {"type": "long", "index": 8, "name": "redemption_id", "comment": null}, "redemption_option_id": {"type": "long", "index": 9, "name": "redemption_option_id", "comment": null}, "discount_code": {"type": "string", "index": 10, "name": "discount_code", "comment": null}, "created": {"type": "timestamp", "index": 11, "name": "created", "comment": null}}, "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.yoda.sms__sms.sms_loyalty_redemptions"}, "source.yoda.communication__sms.tmp_email_events": {"metadata": {"type": "view", "schema": "sms", "name": "tmp_email_events", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "button_name": {"type": "string", "index": 4, "name": "button_name", "comment": null}, "apperance": {"type": "long", "index": 5, "name": "apperance", "comment": null}, "app_key": {"type": "string", "index": 6, "name": "app_key", "comment": null}, "timestamp": {"type": "timestamp", "index": 7, "name": "timestamp", "comment": null}}, "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.yoda.communication__sms.tmp_email_events"}, "source.yoda.sms__sms.track_flows_adoption": {"metadata": {"type": "view", "schema": "sms", "name": "track_flows_adoption", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "flow_id": {"type": "long", "index": 5, "name": "flow_id", "comment": null}, "flow_type": {"type": "string", "index": 6, "name": "flow_type", "comment": null}, "flow_trigger": {"type": "string", "index": 7, "name": "flow_trigger", "comment": null}, "action": {"type": "string", "index": 8, "name": "action", "comment": null}, "changes": {"type": "string", "index": 9, "name": "changes", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}}, "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.yoda.sms__sms.track_flows_adoption"}, "source.yoda.communication__sms.users": {"metadata": {"type": "view", "schema": "sms", "name": "users", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "parent_id": {"type": "long", "index": 4, "name": "parent_id", "comment": null}, "store_id": {"type": "string", "index": 5, "name": "store_id", "comment": null}, "vendor_id": {"type": "long", "index": 6, "name": "vendor_id", "comment": null}, "support_level_id": {"type": "long", "index": 7, "name": "support_level_id", "comment": null}, "balance": {"type": "double", "index": 8, "name": "balance", "comment": null}, "bonus_balance": {"type": "double", "index": 9, "name": "bonus_balance", "comment": null}, "credits": {"type": "long", "index": 10, "name": "credits", "comment": null}, "earnings": {"type": "double", "index": 11, "name": "earnings", "comment": null}, "points": {"type": "long", "index": 12, "name": "points", "comment": null}, "role": {"type": "string", "index": 13, "name": "role", "comment": null}, "role_id": {"type": "long", "index": 14, "name": "role_id", "comment": null}, "partner": {"type": "long", "index": 15, "name": "partner", "comment": null}, "partner_info": {"type": "string", "index": 16, "name": "partner_info", "comment": null}, "partner_nexmo_price_multiply": {"type": "double", "index": 17, "name": "partner_nexmo_price_multiply", "comment": null}, "plan": {"type": "string", "index": 18, "name": "plan", "comment": null}, "plan_price": {"type": "double", "index": 19, "name": "plan_price", "comment": null}, "package_id": {"type": "long", "index": 20, "name": "package_id", "comment": null}, "yotpo_app_key": {"type": "string", "index": 21, "name": "yotpo_app_key", "comment": null}, "yotpo_app_secret": {"type": "string", "index": 22, "name": "yotpo_app_secret", "comment": null}, "yotpo_organization_id": {"type": "long", "index": 23, "name": "yotpo_organization_id", "comment": null}, "payment_gateway": {"type": "string", "index": 24, "name": "payment_gateway", "comment": null}, "provision_calls_count": {"type": "long", "index": 25, "name": "provision_calls_count", "comment": null}, "platform_unique_id": {"type": "string", "index": 26, "name": "platform_unique_id", "comment": null}, "discount_data": {"type": "string", "index": 27, "name": "discount_data", "comment": null}, "plan_trial_until": {"type": "timestamp", "index": 28, "name": "plan_trial_until", "comment": null}, "discounted_mms_price": {"type": "double", "index": 29, "name": "discounted_mms_price", "comment": null}, "affiliate_commission": {"type": "double", "index": 30, "name": "affiliate_commission", "comment": null}, "amploa": {"type": "string", "index": 31, "name": "amploa", "comment": null}, "email": {"type": "string", "index": 32, "name": "email", "comment": null}, "email_is_valid": {"type": "string", "index": 33, "name": "email_is_valid", "comment": null}, "password": {"type": "string", "index": 34, "name": "password", "comment": null}, "old_passwords": {"type": "string", "index": 35, "name": "old_passwords", "comment": null}, "tfa_enabled": {"type": "long", "index": 36, "name": "tfa_enabled", "comment": null}, "preferred_vendor": {"type": "string", "index": 37, "name": "preferred_vendor", "comment": null}, "partner_type": {"type": "string", "index": 38, "name": "partner_type", "comment": null}, "delivery_route": {"type": "string", "index": 39, "name": "delivery_route", "comment": null}, "hash": {"type": "string", "index": 40, "name": "hash", "comment": null}, "name": {"type": "string", "index": 41, "name": "name", "comment": null}, "phone_number": {"type": "string", "index": 42, "name": "phone_number", "comment": null}, "platform": {"type": "string", "index": 43, "name": "platform", "comment": null}, "main_subscription_list_id": {"type": "long", "index": 44, "name": "main_subscription_list_id", "comment": null}, "double_opt_in": {"type": "long", "index": 45, "name": "double_opt_in", "comment": null}, "double_opt_in_level": {"type": "string", "index": 46, "name": "double_opt_in_level", "comment": null}, "timezone": {"type": "string", "index": 47, "name": "timezone", "comment": null}, "dnd": {"type": "long", "index": 48, "name": "dnd", "comment": null}, "dnd_from": {"type": "long", "index": 49, "name": "dnd_from", "comment": null}, "dnd_to": {"type": "long", "index": 50, "name": "dnd_to", "comment": null}, "smart_sending_value": {"type": "long", "index": 51, "name": "smart_sending_value", "comment": null}, "smart_sending_ignore_transac_email": {"type": "long", "index": 52, "name": "smart_sending_ignore_transac_email", "comment": null}, "strict_marketing_check": {"type": "long", "index": 53, "name": "strict_marketing_check", "comment": null}, "price_limit_enabled": {"type": "long", "index": 54, "name": "price_limit_enabled", "comment": null}, "price_limit": {"type": "double", "index": 55, "name": "price_limit", "comment": null}, "chat_enabled": {"type": "long", "index": 56, "name": "chat_enabled", "comment": null}, "chat_settings": {"type": "string", "index": 57, "name": "chat_settings", "comment": null}, "collect_checkout_subscribers": {"type": "long", "index": 58, "name": "collect_checkout_subscribers", "comment": null}, "country": {"type": "string", "index": 59, "name": "country", "comment": null}, "countries_limitation_mode": {"type": "string", "index": 60, "name": "countries_limitation_mode", "comment": null}, "countries_limitation_values": {"type": "string", "index": 61, "name": "countries_limitation_values", "comment": null}, "state": {"type": "string", "index": 62, "name": "state", "comment": null}, "city": {"type": "string", "index": 63, "name": "city", "comment": null}, "zipcode": {"type": "string", "index": 64, "name": "zipcode", "comment": null}, "address": {"type": "string", "index": 65, "name": "address", "comment": null}, "vat_number": {"type": "string", "index": 66, "name": "vat_number", "comment": null}, "paypal_email": {"type": "string", "index": 67, "name": "paypal_email", "comment": null}, "google_user_id": {"type": "string", "index": 68, "name": "google_user_id", "comment": null}, "facebook_id": {"type": "string", "index": 69, "name": "facebook_id", "comment": null}, "facebook_info": {"type": "string", "index": 70, "name": "facebook_info", "comment": null}, "gplusurl": {"type": "string", "index": 71, "name": "gplusurl", "comment": null}, "picture": {"type": "string", "index": 72, "name": "picture", "comment": null}, "cookie_related_users": {"type": "string", "index": 73, "name": "cookie_related_users", "comment": null}, "all_ip": {"type": "string", "index": 74, "name": "all_ip", "comment": null}, "last_ip": {"type": "string", "index": 75, "name": "last_ip", "comment": null}, "last_available": {"type": "timestamp", "index": 76, "name": "last_available", "comment": null}, "total_logins": {"type": "long", "index": 77, "name": "total_logins", "comment": null}, "total_downloads": {"type": "long", "index": 78, "name": "total_downloads", "comment": null}, "abuser_status": {"type": "long", "index": 79, "name": "abuser_status", "comment": null}, "abuser_notes": {"type": "string", "index": 80, "name": "abuser_notes", "comment": null}, "free_keywords_available_count": {"type": "long", "index": 81, "name": "free_keywords_available_count", "comment": null}, "ban_exclude": {"type": "long", "index": 82, "name": "ban_exclude", "comment": null}, "is_test": {"type": "long", "index": 83, "name": "is_test", "comment": null}, "subscribed": {"type": "long", "index": 84, "name": "subscribed", "comment": null}, "subscribed_to_forum": {"type": "long", "index": 85, "name": "subscribed_to_forum", "comment": null}, "unsubscribe_reason": {"type": "string", "index": 86, "name": "unsubscribe_reason", "comment": null}, "notes": {"type": "string", "index": 87, "name": "notes", "comment": null}, "upload_lists_enabled": {"type": "long", "index": 88, "name": "upload_lists_enabled", "comment": null}, "notes_modified": {"type": "timestamp", "index": 89, "name": "notes_modified", "comment": null}, "agreed_terms": {"type": "long", "index": 90, "name": "agreed_terms", "comment": null}, "signed_promo_id": {"type": "long", "index": 91, "name": "signed_promo_id", "comment": null}, "signup_source": {"type": "string", "index": 92, "name": "signup_source", "comment": null}, "contact_card_name": {"type": "string", "index": 93, "name": "contact_card_name", "comment": null}, "contact_card_logo": {"type": "string", "index": 94, "name": "contact_card_logo", "comment": null}, "contact_card_path": {"type": "string", "index": 95, "name": "contact_card_path", "comment": null}, "contact_card_message": {"type": "string", "index": 96, "name": "contact_card_message", "comment": null}, "system_messages_payer": {"type": "string", "index": 97, "name": "system_messages_payer", "comment": null}, "compliance_accepted_date": {"type": "timestamp", "index": 98, "name": "compliance_accepted_date", "comment": null}, "affiliate_payout_pref": {"type": "string", "index": 99, "name": "affiliate_payout_pref", "comment": null}, "affiliate_payout_email": {"type": "string", "index": 100, "name": "affiliate_payout_email", "comment": null}, "last_payout": {"type": "timestamp", "index": 101, "name": "last_payout", "comment": null}, "automatic_transliteration": {"type": "long", "index": 102, "name": "automatic_transliteration", "comment": null}, "use_local_number_for_subscription": {"type": "long", "index": 103, "name": "use_local_number_for_subscription", "comment": null}, "onboarding_completed": {"type": "long", "index": 104, "name": "onboarding_completed", "comment": null}, "collect_subscribers_enabled": {"type": "long", "index": 105, "name": "collect_subscribers_enabled", "comment": null}, "pending_collect_subscribers_suspension": {"type": "long", "index": 106, "name": "pending_collect_subscribers_suspension", "comment": null}, "industry": {"type": "string", "index": 107, "name": "industry", "comment": null}, "language": {"type": "string", "index": 108, "name": "language", "comment": null}, "created": {"type": "timestamp", "index": 109, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 110, "name": "modified", "comment": null}, "whitelisted": {"type": "long", "index": 111, "name": "whitelisted", "comment": null}, "shaft_status": {"type": "long", "index": 112, "name": "shaft_status", "comment": null}, "is_logical_deleted": {"type": "long", "index": 113, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__sms.users"}, "source.yoda.sms__sms.users": {"metadata": {"type": "view", "schema": "sms", "name": "users", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "parent_id": {"type": "long", "index": 4, "name": "parent_id", "comment": null}, "store_id": {"type": "string", "index": 5, "name": "store_id", "comment": null}, "vendor_id": {"type": "long", "index": 6, "name": "vendor_id", "comment": null}, "support_level_id": {"type": "long", "index": 7, "name": "support_level_id", "comment": null}, "balance": {"type": "double", "index": 8, "name": "balance", "comment": null}, "bonus_balance": {"type": "double", "index": 9, "name": "bonus_balance", "comment": null}, "credits": {"type": "long", "index": 10, "name": "credits", "comment": null}, "earnings": {"type": "double", "index": 11, "name": "earnings", "comment": null}, "points": {"type": "long", "index": 12, "name": "points", "comment": null}, "role": {"type": "string", "index": 13, "name": "role", "comment": null}, "role_id": {"type": "long", "index": 14, "name": "role_id", "comment": null}, "partner": {"type": "long", "index": 15, "name": "partner", "comment": null}, "partner_info": {"type": "string", "index": 16, "name": "partner_info", "comment": null}, "partner_nexmo_price_multiply": {"type": "double", "index": 17, "name": "partner_nexmo_price_multiply", "comment": null}, "plan": {"type": "string", "index": 18, "name": "plan", "comment": null}, "plan_price": {"type": "double", "index": 19, "name": "plan_price", "comment": null}, "package_id": {"type": "long", "index": 20, "name": "package_id", "comment": null}, "yotpo_app_key": {"type": "string", "index": 21, "name": "yotpo_app_key", "comment": null}, "yotpo_app_secret": {"type": "string", "index": 22, "name": "yotpo_app_secret", "comment": null}, "yotpo_organization_id": {"type": "long", "index": 23, "name": "yotpo_organization_id", "comment": null}, "payment_gateway": {"type": "string", "index": 24, "name": "payment_gateway", "comment": null}, "provision_calls_count": {"type": "long", "index": 25, "name": "provision_calls_count", "comment": null}, "platform_unique_id": {"type": "string", "index": 26, "name": "platform_unique_id", "comment": null}, "discount_data": {"type": "string", "index": 27, "name": "discount_data", "comment": null}, "plan_trial_until": {"type": "timestamp", "index": 28, "name": "plan_trial_until", "comment": null}, "discounted_mms_price": {"type": "double", "index": 29, "name": "discounted_mms_price", "comment": null}, "affiliate_commission": {"type": "double", "index": 30, "name": "affiliate_commission", "comment": null}, "amploa": {"type": "string", "index": 31, "name": "amploa", "comment": null}, "email": {"type": "string", "index": 32, "name": "email", "comment": null}, "email_is_valid": {"type": "string", "index": 33, "name": "email_is_valid", "comment": null}, "password": {"type": "string", "index": 34, "name": "password", "comment": null}, "old_passwords": {"type": "string", "index": 35, "name": "old_passwords", "comment": null}, "tfa_enabled": {"type": "long", "index": 36, "name": "tfa_enabled", "comment": null}, "preferred_vendor": {"type": "string", "index": 37, "name": "preferred_vendor", "comment": null}, "partner_type": {"type": "string", "index": 38, "name": "partner_type", "comment": null}, "delivery_route": {"type": "string", "index": 39, "name": "delivery_route", "comment": null}, "hash": {"type": "string", "index": 40, "name": "hash", "comment": null}, "name": {"type": "string", "index": 41, "name": "name", "comment": null}, "phone_number": {"type": "string", "index": 42, "name": "phone_number", "comment": null}, "platform": {"type": "string", "index": 43, "name": "platform", "comment": null}, "main_subscription_list_id": {"type": "long", "index": 44, "name": "main_subscription_list_id", "comment": null}, "double_opt_in": {"type": "long", "index": 45, "name": "double_opt_in", "comment": null}, "double_opt_in_level": {"type": "string", "index": 46, "name": "double_opt_in_level", "comment": null}, "timezone": {"type": "string", "index": 47, "name": "timezone", "comment": null}, "dnd": {"type": "long", "index": 48, "name": "dnd", "comment": null}, "dnd_from": {"type": "long", "index": 49, "name": "dnd_from", "comment": null}, "dnd_to": {"type": "long", "index": 50, "name": "dnd_to", "comment": null}, "smart_sending_value": {"type": "long", "index": 51, "name": "smart_sending_value", "comment": null}, "smart_sending_ignore_transac_email": {"type": "long", "index": 52, "name": "smart_sending_ignore_transac_email", "comment": null}, "strict_marketing_check": {"type": "long", "index": 53, "name": "strict_marketing_check", "comment": null}, "price_limit_enabled": {"type": "long", "index": 54, "name": "price_limit_enabled", "comment": null}, "price_limit": {"type": "double", "index": 55, "name": "price_limit", "comment": null}, "chat_enabled": {"type": "long", "index": 56, "name": "chat_enabled", "comment": null}, "chat_settings": {"type": "string", "index": 57, "name": "chat_settings", "comment": null}, "collect_checkout_subscribers": {"type": "long", "index": 58, "name": "collect_checkout_subscribers", "comment": null}, "country": {"type": "string", "index": 59, "name": "country", "comment": null}, "countries_limitation_mode": {"type": "string", "index": 60, "name": "countries_limitation_mode", "comment": null}, "countries_limitation_values": {"type": "string", "index": 61, "name": "countries_limitation_values", "comment": null}, "state": {"type": "string", "index": 62, "name": "state", "comment": null}, "city": {"type": "string", "index": 63, "name": "city", "comment": null}, "zipcode": {"type": "string", "index": 64, "name": "zipcode", "comment": null}, "address": {"type": "string", "index": 65, "name": "address", "comment": null}, "vat_number": {"type": "string", "index": 66, "name": "vat_number", "comment": null}, "paypal_email": {"type": "string", "index": 67, "name": "paypal_email", "comment": null}, "google_user_id": {"type": "string", "index": 68, "name": "google_user_id", "comment": null}, "facebook_id": {"type": "string", "index": 69, "name": "facebook_id", "comment": null}, "facebook_info": {"type": "string", "index": 70, "name": "facebook_info", "comment": null}, "gplusurl": {"type": "string", "index": 71, "name": "gplusurl", "comment": null}, "picture": {"type": "string", "index": 72, "name": "picture", "comment": null}, "cookie_related_users": {"type": "string", "index": 73, "name": "cookie_related_users", "comment": null}, "all_ip": {"type": "string", "index": 74, "name": "all_ip", "comment": null}, "last_ip": {"type": "string", "index": 75, "name": "last_ip", "comment": null}, "last_available": {"type": "timestamp", "index": 76, "name": "last_available", "comment": null}, "total_logins": {"type": "long", "index": 77, "name": "total_logins", "comment": null}, "total_downloads": {"type": "long", "index": 78, "name": "total_downloads", "comment": null}, "abuser_status": {"type": "long", "index": 79, "name": "abuser_status", "comment": null}, "abuser_notes": {"type": "string", "index": 80, "name": "abuser_notes", "comment": null}, "free_keywords_available_count": {"type": "long", "index": 81, "name": "free_keywords_available_count", "comment": null}, "ban_exclude": {"type": "long", "index": 82, "name": "ban_exclude", "comment": null}, "is_test": {"type": "long", "index": 83, "name": "is_test", "comment": null}, "subscribed": {"type": "long", "index": 84, "name": "subscribed", "comment": null}, "subscribed_to_forum": {"type": "long", "index": 85, "name": "subscribed_to_forum", "comment": null}, "unsubscribe_reason": {"type": "string", "index": 86, "name": "unsubscribe_reason", "comment": null}, "notes": {"type": "string", "index": 87, "name": "notes", "comment": null}, "upload_lists_enabled": {"type": "long", "index": 88, "name": "upload_lists_enabled", "comment": null}, "notes_modified": {"type": "timestamp", "index": 89, "name": "notes_modified", "comment": null}, "agreed_terms": {"type": "long", "index": 90, "name": "agreed_terms", "comment": null}, "signed_promo_id": {"type": "long", "index": 91, "name": "signed_promo_id", "comment": null}, "signup_source": {"type": "string", "index": 92, "name": "signup_source", "comment": null}, "contact_card_name": {"type": "string", "index": 93, "name": "contact_card_name", "comment": null}, "contact_card_logo": {"type": "string", "index": 94, "name": "contact_card_logo", "comment": null}, "contact_card_path": {"type": "string", "index": 95, "name": "contact_card_path", "comment": null}, "contact_card_message": {"type": "string", "index": 96, "name": "contact_card_message", "comment": null}, "system_messages_payer": {"type": "string", "index": 97, "name": "system_messages_payer", "comment": null}, "compliance_accepted_date": {"type": "timestamp", "index": 98, "name": "compliance_accepted_date", "comment": null}, "affiliate_payout_pref": {"type": "string", "index": 99, "name": "affiliate_payout_pref", "comment": null}, "affiliate_payout_email": {"type": "string", "index": 100, "name": "affiliate_payout_email", "comment": null}, "last_payout": {"type": "timestamp", "index": 101, "name": "last_payout", "comment": null}, "automatic_transliteration": {"type": "long", "index": 102, "name": "automatic_transliteration", "comment": null}, "use_local_number_for_subscription": {"type": "long", "index": 103, "name": "use_local_number_for_subscription", "comment": null}, "onboarding_completed": {"type": "long", "index": 104, "name": "onboarding_completed", "comment": null}, "collect_subscribers_enabled": {"type": "long", "index": 105, "name": "collect_subscribers_enabled", "comment": null}, "pending_collect_subscribers_suspension": {"type": "long", "index": 106, "name": "pending_collect_subscribers_suspension", "comment": null}, "industry": {"type": "string", "index": 107, "name": "industry", "comment": null}, "language": {"type": "string", "index": 108, "name": "language", "comment": null}, "created": {"type": "timestamp", "index": 109, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 110, "name": "modified", "comment": null}, "whitelisted": {"type": "long", "index": 111, "name": "whitelisted", "comment": null}, "shaft_status": {"type": "long", "index": 112, "name": "shaft_status", "comment": null}, "is_logical_deleted": {"type": "long", "index": 113, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.users"}, "source.yoda.communication__sms.users_additional_flags": {"metadata": {"type": "view", "schema": "sms", "name": "users_additional_flags", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_id": {"type": "long", "index": 4, "name": "user_id", "comment": null}, "added_default_flows": {"type": "long", "index": 5, "name": "added_default_flows", "comment": null}, "added_default_segments": {"type": "long", "index": 6, "name": "added_default_segments", "comment": null}, "added_analytics_script": {"type": "long", "index": 7, "name": "added_analytics_script", "comment": null}, "app_version": {"type": "string", "index": 8, "name": "app_version", "comment": null}, "show_email": {"type": "long", "index": 9, "name": "show_email", "comment": null}, "shopify_sms_consent": {"type": "long", "index": 10, "name": "shopify_sms_consent", "comment": null}, "segment_events_backfill": {"type": "long", "index": 11, "name": "segment_events_backfill", "comment": null}, "show_sms_subscribers_from_unomi": {"type": "long", "index": 12, "name": "show_sms_subscribers_from_unomi", "comment": null}, "campaign_contacts_from_unomi": {"type": "long", "index": 13, "name": "campaign_contacts_from_unomi", "comment": null}, "show_subs_analytics_over_unomi": {"type": "long", "index": 14, "name": "show_subs_analytics_over_unomi", "comment": null}, "show_loyalty_reviews_filters": {"type": "long", "index": 15, "name": "show_loyalty_reviews_filters", "comment": null}, "show_loyalty_tier_placeholders": {"type": "long", "index": 16, "name": "show_loyalty_tier_placeholders", "comment": null}, "show_reviews_filters": {"type": "long", "index": 17, "name": "show_reviews_filters", "comment": null}, "new_attribution": {"type": "long", "index": 18, "name": "new_attribution", "comment": null}, "new_discount_logic": {"type": "long", "index": 19, "name": "new_discount_logic", "comment": null}, "generic_tags_available": {"type": "long", "index": 20, "name": "generic_tags_available", "comment": null}, "generic_products_available": {"type": "long", "index": 21, "name": "generic_products_available", "comment": null}, "generic_collections_available": {"type": "long", "index": 22, "name": "generic_collections_available", "comment": null}, "analytics_exports": {"type": "long", "index": 23, "name": "analytics_exports", "comment": null}, "yotpo_active": {"type": "long", "index": 24, "name": "yotpo_active", "comment": null}, "yotpo_status_last_check": {"type": "timestamp", "index": 25, "name": "yotpo_status_last_check", "comment": null}, "added_default_segments_v1": {"type": "long", "index": 26, "name": "added_default_segments_v1", "comment": null}, "added_default_segments_email": {"type": "long", "index": 27, "name": "added_default_segments_email", "comment": null}, "generated_revenue": {"type": "long", "index": 28, "name": "generated_revenue", "comment": null}, "show_impressions_conv_rate_subs_form": {"type": "long", "index": 29, "name": "show_impressions_conv_rate_subs_form", "comment": null}, "show_cs_analytics_subscription_form": {"type": "long", "index": 30, "name": "show_cs_analytics_subscription_form", "comment": null}, "show_cs_looker_subscription_form": {"type": "long", "index": 31, "name": "show_cs_looker_subscription_form", "comment": null}, "show_subscriber_collection_looker": {"type": "long", "index": 32, "name": "show_subscriber_collection_looker", "comment": null}, "show_sub_form_looker_ui": {"type": "long", "index": 33, "name": "show_sub_form_looker_ui", "comment": null}, "show_cs_analytics_page": {"type": "long", "index": 34, "name": "show_cs_analytics_page", "comment": null}, "show_cs_listing_subscribers_types": {"type": "long", "index": 35, "name": "show_cs_listing_subscribers_types", "comment": null}, "show_analytics_total_message_parts": {"type": "long", "index": 36, "name": "show_analytics_total_message_parts", "comment": null}, "new_dashboard_page": {"type": "long", "index": 37, "name": "new_dashboard_page", "comment": null}, "sms_payer_last_change": {"type": "timestamp", "index": 38, "name": "sms_payer_last_change", "comment": null}, "show_report": {"type": "long", "index": 39, "name": "show_report", "comment": null}, "enable_group_by_geo_report": {"type": "long", "index": 40, "name": "enable_group_by_geo_report", "comment": null}, "show_looker_analytics": {"type": "long", "index": 41, "name": "show_looker_analytics", "comment": null}, "new_subscribers_page": {"type": "long", "index": 42, "name": "new_subscribers_page", "comment": null}, "modified": {"type": "timestamp", "index": 43, "name": "modified", "comment": null}, "created": {"type": "timestamp", "index": 44, "name": "created", "comment": null}, "mandatory_opt_out_message": {"type": "long", "index": 45, "name": "mandatory_opt_out_message", "comment": null}, "hide_subscriber_opt_in_preference": {"type": "long", "index": 46, "name": "hide_subscriber_opt_in_preference", "comment": null}, "multiple_free_keywords": {"type": "long", "index": 47, "name": "multiple_free_keywords", "comment": null}, "new_klaviyo_sync_logic": {"type": "long", "index": 48, "name": "new_klaviyo_sync_logic", "comment": null}, "new_klaviyo_integration_page": {"type": "long", "index": 49, "name": "new_klaviyo_integration_page", "comment": null}, "use_tiptap_composer": {"type": "long", "index": 50, "name": "use_tiptap_composer", "comment": null}, "use_new_salesforce_version": {"type": "long", "index": 51, "name": "use_new_salesforce_version", "comment": null}, "show_tolstoy": {"type": "long", "index": 52, "name": "show_tolstoy", "comment": null}, "campaigns_multiple_segments": {"type": "long", "index": 53, "name": "campaigns_multiple_segments", "comment": null}, "targeted_campaigns_sequence": {"type": "long", "index": 54, "name": "targeted_campaigns_sequence", "comment": null}, "push_tags_to_shopify": {"type": "long", "index": 55, "name": "push_tags_to_shopify", "comment": null}, "recharge_set_user_timezone": {"type": "long", "index": 56, "name": "recharge_set_user_timezone", "comment": null}, "enable_auto_response_qr": {"type": "long", "index": 57, "name": "enable_auto_response_qr", "comment": null}, "enable_auto_response_social": {"type": "long", "index": 58, "name": "enable_auto_response_social", "comment": null}, "use_new_sidebar": {"type": "long", "index": 59, "name": "use_new_sidebar", "comment": null}, "edit_campaigns": {"type": "long", "index": 60, "name": "edit_campaigns", "comment": null}, "enable_new_analytics": {"type": "long", "index": 61, "name": "enable_new_analytics", "comment": null}, "enable_klaviyo_flow_conditions": {"type": "long", "index": 62, "name": "enable_klaviyo_flow_conditions", "comment": null}, "new_balance_logic": {"type": "long", "index": 63, "name": "new_balance_logic", "comment": null}, "enable_new_analytics_campaigns_listing": {"type": "long", "index": 64, "name": "enable_new_analytics_campaigns_listing", "comment": null}, "enable_new_analytics_campaign_overview": {"type": "long", "index": 65, "name": "enable_new_analytics_campaign_overview", "comment": null}, "resubscribe_user": {"type": "long", "index": 66, "name": "resubscribe_user", "comment": null}, "popup_enhancements": {"type": "long", "index": 67, "name": "popup_enhancements", "comment": null}, "exclude_generating_recipients_on_validating": {"type": "long", "index": 68, "name": "exclude_generating_recipients_on_validating", "comment": null}, "display_new_behavior_popup": {"type": "long", "index": 69, "name": "display_new_behavior_popup", "comment": null}, "new_request_data_modal": {"type": "long", "index": 70, "name": "new_request_data_modal", "comment": null}, "campaigns_auto_reload_credits": {"type": "long", "index": 71, "name": "campaigns_auto_reload_credits", "comment": null}, "import_without_country_code": {"type": "long", "index": 72, "name": "import_without_country_code", "comment": null}, "enable_listrak": {"type": "long", "index": 73, "name": "enable_listrak", "comment": null}, "automations_v2": {"type": "long", "index": 74, "name": "automations_v2", "comment": null}, "enable_integrations_test_mode": {"type": "long", "index": 75, "name": "enable_integrations_test_mode", "comment": null}, "unomi_campaigns_listing_fields": {"type": "long", "index": 76, "name": "unomi_campaigns_listing_fields", "comment": null}, "unomi_parallel_fetch": {"type": "long", "index": 77, "name": "unomi_parallel_fetch", "comment": null}, "click_to_buy": {"type": "long", "index": 78, "name": "click_to_buy", "comment": null}, "enable_klaviyo_new_consent": {"type": "long", "index": 79, "name": "enable_klaviyo_new_consent", "comment": null}, "use_loyalty_shortcodes": {"type": "long", "index": 80, "name": "use_loyalty_shortcodes", "comment": null}, "browse_abandonment_shortcodes": {"type": "long", "index": 81, "name": "browse_abandonment_shortcodes", "comment": null}, "use_review_shortcodes": {"type": "long", "index": 82, "name": "use_review_shortcodes", "comment": null}, "shopify_transactional_flows": {"type": "long", "index": 83, "name": "shopify_transactional_flows", "comment": null}, "hybrid_popup": {"type": "long", "index": 84, "name": "hybrid_popup", "comment": null}, "resource_feedback": {"type": "long", "index": 85, "name": "resource_feedback", "comment": null}, "display_hybrid_popup_migration_times_remaining": {"type": "long", "index": 86, "name": "display_hybrid_popup_migration_times_remaining", "comment": null}, "campaign_results": {"type": "long", "index": 87, "name": "campaign_results", "comment": null}, "use_queue_sdk": {"type": "long", "index": 88, "name": "use_queue_sdk", "comment": null}, "use_domestic_prices": {"type": "long", "index": 89, "name": "use_domestic_prices", "comment": null}, "campaign_microservice": {"type": "long", "index": 90, "name": "campaign_microservice", "comment": null}, "request_recipients_split": {"type": "long", "index": 91, "name": "request_recipients_split", "comment": null}, "flows_preview": {"type": "long", "index": 92, "name": "flows_preview", "comment": null}, "use_onboarding_v2": {"type": "long", "index": 93, "name": "use_onboarding_v2", "comment": null}, "allow_onboarding_email": {"type": "long", "index": 94, "name": "allow_onboarding_email", "comment": null}, "new_popup_editor": {"type": "long", "index": 95, "name": "new_popup_editor", "comment": null}, "new_loyalty_events": {"type": "long", "index": 96, "name": "new_loyalty_events", "comment": null}, "text_to_buy": {"type": "long", "index": 97, "name": "text_to_buy", "comment": null}, "use_onboarding_discount_setup": {"type": "long", "index": 98, "name": "use_onboarding_discount_setup", "comment": null}, "litigators_service_enabled": {"type": "long", "index": 99, "name": "litigators_service_enabled", "comment": null}, "flows_listing_redesign": {"type": "long", "index": 100, "name": "flows_listing_redesign", "comment": null}, "flows_library_redesign": {"type": "long", "index": 101, "name": "flows_library_redesign", "comment": null}, "flows_empty_state": {"type": "long", "index": 102, "name": "flows_empty_state", "comment": null}, "collect_checkouts_subscribers_without_events": {"type": "long", "index": 103, "name": "collect_checkouts_subscribers_without_events", "comment": null}, "use_message_routing_service": {"type": "long", "index": 104, "name": "use_message_routing_service", "comment": null}, "collect_subscribers_checkout": {"type": "long", "index": 105, "name": "collect_subscribers_checkout", "comment": null}, "automation_migration_popup": {"type": "long", "index": 106, "name": "automation_migration_popup", "comment": null}, "pulling_klavyio_email_sub": {"type": "long", "index": 107, "name": "pulling_klavyio_email_sub", "comment": null}, "back_in_stock": {"type": "long", "index": 108, "name": "back_in_stock", "comment": null}, "duplicate_form_logic": {"type": "long", "index": 109, "name": "duplicate_form_logic", "comment": null}, "cs_library_page": {"type": "long", "index": 110, "name": "cs_library_page", "comment": null}, "show_dashboard_tools": {"type": "long", "index": 111, "name": "show_dashboard_tools", "comment": null}, "product_recommendation_engine": {"type": "long", "index": 112, "name": "product_recommendation_engine", "comment": null}, "enable_analytics_benchmark": {"type": "long", "index": 113, "name": "enable_analytics_benchmark", "comment": null}, "additional_vip_tier_loyalty_markers": {"type": "long", "index": 114, "name": "additional_vip_tier_loyalty_markers", "comment": null}, "ignore_transactional_triggers": {"type": "long", "index": 115, "name": "ignore_transactional_triggers", "comment": null}, "cs_tools_looker_analytics": {"type": "long", "index": 116, "name": "cs_tools_looker_analytics", "comment": null}, "collect_subscribers_page_show_cvr_column": {"type": "long", "index": 117, "name": "collect_subscribers_page_show_cvr_column", "comment": null}, "welcome_msg_checkout": {"type": "long", "index": 118, "name": "welcome_msg_checkout", "comment": null}, "hide_cs_editor_store_view": {"type": "long", "index": 119, "name": "hide_cs_editor_store_view", "comment": null}, "enable_looker_realtime_campaign": {"type": "long", "index": 120, "name": "enable_looker_realtime_campaign", "comment": null}, "enable_looker_sources_reports": {"type": "long", "index": 121, "name": "enable_looker_sources_reports", "comment": null}, "subscription_flows": {"type": "long", "index": 122, "name": "subscription_flows", "comment": null}, "allow_webhooks_sms_list_segment_events": {"type": "long", "index": 123, "name": "allow_webhooks_sms_list_segment_events", "comment": null}, "transactional_is_sms_subscriber": {"type": "long", "index": 124, "name": "transactional_is_sms_subscriber", "comment": null}, "transactional_is_email_subscriber": {"type": "long", "index": 125, "name": "transactional_is_email_subscriber", "comment": null}, "use_user_service_messages": {"type": "long", "index": 126, "name": "use_user_service_messages", "comment": null}, "new_home_page_dashboard": {"type": "long", "index": 127, "name": "new_home_page_dashboard", "comment": null}, "cs_enhanced_unomi_profile_creation": {"type": "long", "index": 128, "name": "cs_enhanced_unomi_profile_creation", "comment": null}, "increase_customer_loyalty": {"type": "long", "index": 129, "name": "increase_customer_loyalty", "comment": null}, "automation_listing_redesign": {"type": "long", "index": 130, "name": "automation_listing_redesign", "comment": null}, "transactional_message_rules": {"type": "long", "index": 131, "name": "transactional_message_rules", "comment": null}, "use_new_vcard": {"type": "long", "index": 132, "name": "use_new_vcard", "comment": null}}, "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.yoda.communication__sms.users_additional_flags"}, "source.yoda.sms__sms.users_events_log": {"metadata": {"type": "view", "schema": "sms", "name": "users_events_log", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "platform": {"type": "string", "index": 4, "name": "platform", "comment": null}, "platform_user_id": {"type": "long", "index": 5, "name": "platform_user_id", "comment": null}, "user_id": {"type": "long", "index": 6, "name": "user_id", "comment": null}, "event": {"type": "string", "index": 7, "name": "event", "comment": null}, "event_type": {"type": "string", "index": 8, "name": "event_type", "comment": null}, "event_details": {"type": "string", "index": 9, "name": "event_details", "comment": null}, "created": {"type": "timestamp", "index": 10, "name": "created", "comment": null}, "is_logical_deleted": {"type": "long", "index": 11, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.users_events_log"}, "source.yoda.sms__sms.yotpo_organizations": {"metadata": {"type": "view", "schema": "sms", "name": "yotpo_organizations", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "organization_key": {"type": "string", "index": 4, "name": "organization_key", "comment": null}, "organization_name": {"type": "string", "index": 5, "name": "organization_name", "comment": null}, "ac_requests_id": {"type": "long", "index": 6, "name": "ac_requests_id", "comment": null}, "created": {"type": "timestamp", "index": 7, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 8, "name": "modified", "comment": null}, "is_logical_deleted": {"type": "long", "index": 9, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__sms.yotpo_organizations"}, "source.yoda.sms__sms.yotpo_status_updates": {"metadata": {"type": "view", "schema": "sms", "name": "yotpo_status_updates", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "queue_id": {"type": "long", "index": 4, "name": "queue_id", "comment": null}, "user_id": {"type": "long", "index": 5, "name": "user_id", "comment": null}, "event_id": {"type": "long", "index": 6, "name": "event_id", "comment": null}, "flow_id": {"type": "long", "index": 7, "name": "flow_id", "comment": null}, "from": {"type": "string", "index": 8, "name": "from", "comment": null}, "to": {"type": "string", "index": 9, "name": "to", "comment": null}, "uuid": {"type": "string", "index": 10, "name": "uuid", "comment": null}, "status": {"type": "string", "index": 11, "name": "status", "comment": null}, "created": {"type": "timestamp", "index": 12, "name": "created", "comment": null}, "modified": {"type": "timestamp", "index": 13, "name": "modified", "comment": null}}, "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.yoda.sms__sms.yotpo_status_updates"}, "source.yoda.subscriptions__subscriptions_retention.cancelation_intent_event": {"metadata": {"type": "view", "schema": "subscriptions_retention", "name": "cancelation_intent_event", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "event_origin": {"type": "string", "index": 4, "name": "event_origin", "comment": null}, "cancelation_reason_option_id": {"type": "long", "index": 5, "name": "cancelation_reason_option_id", "comment": null}, "subscription_id": {"type": "string", "index": 6, "name": "subscription_id", "comment": null}, "variant_id": {"type": "string", "index": 7, "name": "variant_id", "comment": null}, "product_id": {"type": "string", "index": 8, "name": "product_id", "comment": null}, "customer_id": {"type": "string", "index": 9, "name": "customer_id", "comment": null}, "comment": {"type": "string", "index": 10, "name": "comment", "comment": null}, "resolution": {"type": "string", "index": 11, "name": "resolution", "comment": null}, "created_at": {"type": "timestamp", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 13, "name": "updated_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.yoda.subscriptions__subscriptions_retention.cancelation_intent_event"}, "source.yoda.subscriptions__subscriptions_retention.cancelation_reason_option": {"metadata": {"type": "view", "schema": "subscriptions_retention", "name": "cancelation_reason_option", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "reason_text": {"type": "string", "index": 5, "name": "reason_text", "comment": null}, "is_active": {"type": "long", "index": 6, "name": "is_active", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.subscriptions__subscriptions_retention.cancelation_reason_option"}, "source.yoda.platform__segment.account_created": {"metadata": {"type": "view", "schema": "segment", "name": "account_created", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "accountid": {"type": "long", "index": 20, "name": "accountid", "comment": null}, "account_id": {"type": "long", "index": 21, "name": "account_id", "comment": null}, "adminname": {"type": "string", "index": 22, "name": "adminname", "comment": null}, "appkey": {"type": "string", "index": 23, "name": "appkey", "comment": null}, "createdat": {"type": "string", "index": 24, "name": "createdat", "comment": null}, "email": {"type": "string", "index": 25, "name": "email", "comment": null}, "groupid": {"type": "string", "index": 26, "name": "groupid", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 27, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 28, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 29, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 30, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 31, "name": "isusingpackagesservice", "comment": null}, "name": {"type": "string", "index": 32, "name": "name", "comment": null}, "packagecategories": {"type": "string", "index": 33, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 34, "name": "package", "comment": null}, "platform": {"type": "string", "index": 35, "name": "platform", "comment": null}, "productintent": {"type": "string", "index": 36, "name": "productintent", "comment": null}, "role": {"type": "string", "index": 37, "name": "role", "comment": null}, "signuputmcampaign": {"type": "string", "index": 38, "name": "signuputmcampaign", "comment": null}, "signuputmsource": {"type": "string", "index": 39, "name": "signuputmsource", "comment": null}, "storecount": {"type": "long", "index": 40, "name": "storecount", "comment": null}, "storedomain": {"type": "string", "index": 41, "name": "storedomain", "comment": null}, "traits_email": {"type": "string", "index": 42, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 43, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 44, "name": "traits_plan", "comment": null}, "userid": {"type": "long", "index": 45, "name": "userid", "comment": null}, "website": {"type": "string", "index": 46, "name": "website", "comment": null}, "signuputmmedium": {"type": "string", "index": 47, "name": "signuputmmedium", "comment": null}, "phone": {"type": "string", "index": 48, "name": "phone", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 49, "name": "signupmonthlyorderscount", "comment": null}, "planintent": {"type": "string", "index": 50, "name": "planintent", "comment": null}, "planname": {"type": "string", "index": 51, "name": "planname", "comment": null}, "signupcountry": {"type": "string", "index": 52, "name": "signupcountry", "comment": null}, "signupphone": {"type": "string", "index": 53, "name": "signupphone", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 54, "name": "rrmonthlylimit", "comment": null}, "billingproviders": {"type": "array", "index": 55, "name": "billingproviders", "comment": null}, "chargeid": {"type": "long", "index": 56, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 57, "name": "chargeprice", "comment": null}, "subscriptionstate": {"type": "string", "index": 58, "name": "subscriptionstate", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 59, "name": "isinvalidfacebooktoken", "comment": null}, "lastconversionordertime": {"type": "string", "index": 60, "name": "lastconversionordertime", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 61, "name": "isinvalidpinteresttoken", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 62, "name": "daysinvalidfacebooktoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 63, "name": "isinvalidfacebooktokendate", "comment": null}, "pendingrrs": {"type": "long", "index": 64, "name": "pendingrrs", "comment": null}, "packageextensions": {"type": "string", "index": 65, "name": "packageextensions", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 66, "name": "daysinvalidpinteresttoken", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 67, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 68, "name": "isinvalidpinteresttokendate", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 69, "name": "isinvalidtwittertokendate", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 70, "name": "isinvalidtwittertoken", "comment": null}, "adminusername": {"type": "string", "index": 71, "name": "adminusername", "comment": null}, "isinternaluser": {"type": "boolean", "index": 72, "name": "isinternaluser", "comment": null}, "isloyalty": {"type": "boolean", "index": 73, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 74, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 75, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 76, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 77, "name": "loyaltymerchantid", "comment": null}, "orgid": {"type": "long", "index": 78, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 79, "name": "orgkey", "comment": null}, "reviewspackage": {"type": "string", "index": 80, "name": "reviewspackage", "comment": null}, "smsuserid": {"type": "string", "index": 81, "name": "smsuserid", "comment": null}, "storeid": {"type": "string", "index": 82, "name": "storeid", "comment": null}, "useremail": {"type": "string", "index": 83, "name": "useremail", "comment": null}, "platformplan": {"type": "string", "index": 84, "name": "platformplan", "comment": null}, "storeplatformdomain": {"type": "string", "index": 85, "name": "storeplatformdomain", "comment": null}, "smspackage": {"type": "string", "index": 86, "name": "smspackage", "comment": null}, "loyaltypackage": {"type": "string", "index": 87, "name": "loyaltypackage", "comment": null}, "vugcpackage": {"type": "string", "index": 88, "name": "vugcpackage", "comment": null}, "isfirstaccount": {"type": "boolean", "index": 89, "name": "isfirstaccount", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 90, "name": "is_duplicated_2", "comment": null}}, "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.yoda.platform__segment.account_created"}, "source.yoda.platform__segment.activation_step": {"metadata": {"type": "view", "schema": "segment", "name": "activation_step", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 20, "name": "rrmonthlylimit", "comment": null}, "accountid": {"type": "long", "index": 21, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 22, "name": "adminname", "comment": null}, "appkey": {"type": "string", "index": 23, "name": "appkey", "comment": null}, "billingproviders": {"type": "array", "index": 24, "name": "billingproviders", "comment": null}, "createdat": {"type": "string", "index": 25, "name": "createdat", "comment": null}, "email": {"type": "string", "index": 26, "name": "email", "comment": null}, "groupid": {"type": "string", "index": 27, "name": "groupid", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 28, "name": "isinvalidfacebooktoken", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 29, "name": "isinvalidtwittertoken", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 30, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 31, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 32, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 33, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 34, "name": "isusingpackagesservice", "comment": null}, "name": {"type": "string", "index": 35, "name": "name", "comment": null}, "packagecategories": {"type": "string", "index": 36, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 37, "name": "package", "comment": null}, "path": {"type": "string", "index": 38, "name": "path", "comment": null}, "pendingrrs": {"type": "long", "index": 39, "name": "pendingrrs", "comment": null}, "phone": {"type": "string", "index": 40, "name": "phone", "comment": null}, "planname": {"type": "string", "index": 41, "name": "planname", "comment": null}, "platform": {"type": "string", "index": 42, "name": "platform", "comment": null}, "product": {"type": "string", "index": 43, "name": "product", "comment": null}, "role": {"type": "string", "index": 44, "name": "role", "comment": null}, "signupcountry": {"type": "string", "index": 45, "name": "signupcountry", "comment": null}, "signuputmcampaign": {"type": "string", "index": 46, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 47, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 48, "name": "signuputmsource", "comment": null}, "status": {"type": "string", "index": 49, "name": "status", "comment": null}, "stepname": {"type": "string", "index": 50, "name": "stepname", "comment": null}, "stepnum": {"type": "string", "index": 51, "name": "stepnum", "comment": null}, "storecount": {"type": "long", "index": 52, "name": "storecount", "comment": null}, "storedomain": {"type": "string", "index": 53, "name": "storedomain", "comment": null}, "title": {"type": "string", "index": 54, "name": "title", "comment": null}, "traits_email": {"type": "string", "index": 55, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 56, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 57, "name": "traits_plan", "comment": null}, "url": {"type": "string", "index": 58, "name": "url", "comment": null}, "userid": {"type": "string", "index": 59, "name": "userid", "comment": null}, "website": {"type": "string", "index": 60, "name": "website", "comment": null}, "yotpoip": {"type": "string", "index": 61, "name": "yotpoip", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 62, "name": "isinvalidpinteresttoken", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 63, "name": "signupmonthlyorderscount", "comment": null}, "signupphone": {"type": "string", "index": 64, "name": "signupphone", "comment": null}, "lastconversionordertime": {"type": "string", "index": 65, "name": "lastconversionordertime", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 66, "name": "daysinvalidfacebooktoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 67, "name": "isinvalidfacebooktokendate", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 68, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 69, "name": "isinvalidpinteresttokendate", "comment": null}, "packageextensions": {"type": "string", "index": 70, "name": "packageextensions", "comment": null}, "chargeid": {"type": "long", "index": 71, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 72, "name": "chargeprice", "comment": null}, "subscriptionstate": {"type": "string", "index": 73, "name": "subscriptionstate", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 74, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 75, "name": "isinvalidtwittertokendate", "comment": null}, "isskipped": {"type": "long", "index": 76, "name": "isskipped", "comment": null}, "numofinstagramphotos": {"type": "long", "index": 77, "name": "numofinstagramphotos", "comment": null}, "numofmanualphotos": {"type": "long", "index": 78, "name": "numofmanualphotos", "comment": null}, "numofreviewsphotos": {"type": "long", "index": 79, "name": "numofreviewsphotos", "comment": null}, "numoftotalphotos": {"type": "long", "index": 80, "name": "numoftotalphotos", "comment": null}, "isbuttonupdated": {"type": "boolean", "index": 81, "name": "isbuttonupdated", "comment": null}, "isspacingupdated": {"type": "boolean", "index": 82, "name": "isspacingupdated", "comment": null}, "layouttype": {"type": "string", "index": 83, "name": "layouttype", "comment": null}, "numofrowitems": {"type": "string", "index": 84, "name": "numofrowitems", "comment": null}, "objectposition": {"type": "string", "index": 85, "name": "objectposition", "comment": null}, "iscodecopy": {"type": "boolean", "index": 86, "name": "iscodecopy", "comment": null}, "isscriptcopy": {"type": "boolean", "index": 87, "name": "isscriptcopy", "comment": null}, "placementtype": {"type": "string", "index": 88, "name": "placementtype", "comment": null}, "adminusername": {"type": "string", "index": 89, "name": "adminusername", "comment": null}, "isloyalty": {"type": "boolean", "index": 90, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 91, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 92, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 93, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 94, "name": "loyaltymerchantid", "comment": null}, "orgid": {"type": "string", "index": 95, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 96, "name": "orgkey", "comment": null}, "reviewspackage": {"type": "string", "index": 97, "name": "reviewspackage", "comment": null}, "smspackage": {"type": "string", "index": 98, "name": "smspackage", "comment": null}, "smsuserid": {"type": "string", "index": 99, "name": "smsuserid", "comment": null}, "storeid": {"type": "string", "index": 100, "name": "storeid", "comment": null}, "vugcpackage": {"type": "string", "index": 101, "name": "vugcpackage", "comment": null}, "loyaltypackage": {"type": "string", "index": 102, "name": "loyaltypackage", "comment": null}, "platformplan": {"type": "string", "index": 103, "name": "platformplan", "comment": null}, "storeplatformdomain": {"type": "string", "index": 104, "name": "storeplatformdomain", "comment": null}, "os20": {"type": "boolean", "index": 105, "name": "os20", "comment": null}, "isdefaultupdated": {"type": "long", "index": 106, "name": "isdefaultupdated", "comment": null}, "isoptionsamountchanged": {"type": "long", "index": 107, "name": "isoptionsamountchanged", "comment": null}, "optionnum": {"type": "long", "index": 108, "name": "optionnum", "comment": null}, "sfchatused": {"type": "long", "index": 109, "name": "sfchatused", "comment": null}, "ismailpreviewed": {"type": "long", "index": 110, "name": "ismailpreviewed", "comment": null}, "issenderemailchanged": {"type": "long", "index": 111, "name": "issenderemailchanged", "comment": null}, "issendernamechanged": {"type": "long", "index": 112, "name": "issendernamechanged", "comment": null}, "paymentfailedenabled": {"type": "long", "index": 113, "name": "paymentfailedenabled", "comment": null}, "subscriptioncanceledenabled": {"type": "long", "index": 114, "name": "subscriptioncanceledenabled", "comment": null}, "subscriptionpurchasedenabled": {"type": "long", "index": 115, "name": "subscriptionpurchasedenabled", "comment": null}, "iscolorupdated": {"type": "long", "index": 116, "name": "iscolorupdated", "comment": null}, "isfontadded": {"type": "long", "index": 117, "name": "isfontadded", "comment": null}, "isfontupdated": {"type": "long", "index": 118, "name": "isfontupdated", "comment": null}, "isproductupdated": {"type": "long", "index": 119, "name": "isproductupdated", "comment": null}, "noresultsareshown": {"type": "long", "index": 120, "name": "noresultsareshown", "comment": null}, "ispreviewstore": {"type": "long", "index": 121, "name": "ispreviewstore", "comment": null}, "widgetlayout": {"type": "string", "index": 122, "name": "widgetlayout", "comment": null}, "isinternaluser": {"type": "boolean", "index": 123, "name": "isinternaluser", "comment": null}, "selectedindustry": {"type": "string", "index": 124, "name": "selectedindustry", "comment": null}, "selectedtemplate": {"type": "string", "index": 125, "name": "selectedtemplate", "comment": null}, "isautopublishenabled": {"type": "long", "index": 126, "name": "isautopublishenabled", "comment": null}, "isdesignupdated": {"type": "string", "index": 127, "name": "isdesignupdated", "comment": null}, "isbodyupdated": {"type": "long", "index": 128, "name": "isbodyupdated", "comment": null}, "isdomainupdated": {"type": "long", "index": 129, "name": "isdomainupdated", "comment": null}, "isenabledmap": {"type": "long", "index": 130, "name": "isenabledmap", "comment": null}, "isretroactivesend": {"type": "long", "index": 131, "name": "isretroactivesend", "comment": null}, "issubjectupdated": {"type": "long", "index": 132, "name": "issubjectupdated", "comment": null}, "numofdays": {"type": "long", "index": 133, "name": "numofdays", "comment": null}, "endscenario": {"type": "string", "index": 134, "name": "endscenario", "comment": null}, "useremail": {"type": "string", "index": 135, "name": "useremail", "comment": null}, "owner": {"type": "string", "index": 136, "name": "owner", "comment": null}, "source": {"type": "string", "index": 137, "name": "source", "comment": null}, "isabandonedcard": {"type": "long", "index": 138, "name": "isabandonedcard", "comment": null}, "iscustomerwinback": {"type": "long", "index": 139, "name": "iscustomerwinback", "comment": null}, "ispostpurchaseupsell": {"type": "long", "index": 140, "name": "ispostpurchaseupsell", "comment": null}, "isshopify2": {"type": "long", "index": 141, "name": "isshopify2", "comment": null}, "auth0userid": {"type": "string", "index": 142, "name": "auth0userid", "comment": null}, "isabandonedcart": {"type": "long", "index": 143, "name": "isabandonedcart", "comment": null}, "isdiscountincluded": {"type": "long", "index": 144, "name": "isdiscountincluded", "comment": null}, "iswidgetv3": {"type": "boolean", "index": 145, "name": "iswidgetv3", "comment": null}, "ismultipleproducts": {"type": "long", "index": 146, "name": "ismultipleproducts", "comment": null}, "issecondaryemailadded": {"type": "long", "index": 147, "name": "issecondaryemailadded", "comment": null}, "storehasklaviyopopup": {"type": "long", "index": 148, "name": "storehasklaviyopopup", "comment": null}, "subscriptionsemailactivateenabledsms": {"type": "long", "index": 149, "name": "subscriptionsemailactivateenabledsms", "comment": null}, "subscriptionsemailactivateenabled": {"type": "long", "index": 150, "name": "subscriptionsemailactivateenabled", "comment": null}, "subscriptionsemailbillingfailedenabledsms": {"type": "long", "index": 151, "name": "subscriptionsemailbillingfailedenabledsms", "comment": null}, "subscriptionsemailbillingfailedenabled": {"type": "long", "index": 152, "name": "subscriptionsemailbillingfailedenabled", "comment": null}, "subscriptionsemailcancelledenabledsms": {"type": "long", "index": 153, "name": "subscriptionsemailcancelledenabledsms", "comment": null}, "subscriptionsemailcancelledenabled": {"type": "long", "index": 154, "name": "subscriptionsemailcancelledenabled", "comment": null}, "subscriptionsemailmanagementenabledsms": {"type": "long", "index": 155, "name": "subscriptionsemailmanagementenabledsms", "comment": null}, "subscriptionsemailmanagementenabled": {"type": "long", "index": 156, "name": "subscriptionsemailmanagementenabled", "comment": null}, "subscriptionsemailupcomingbillingenabledsms": {"type": "long", "index": 157, "name": "subscriptionsemailupcomingbillingenabledsms", "comment": null}, "subscriptionsemailupcomingbillingenabled": {"type": "long", "index": 158, "name": "subscriptionsemailupcomingbillingenabled", "comment": null}, "appstate": {"type": "string", "index": 159, "name": "appstate", "comment": null}, "redemptionreminder": {"type": "boolean", "index": 160, "name": "redemptionreminder", "comment": null}, "rewardreceived": {"type": "boolean", "index": 161, "name": "rewardreceived", "comment": null}, "programstrategy": {"type": "string", "index": 162, "name": "programstrategy", "comment": null}, "rewardspackage": {"type": "string", "index": 163, "name": "rewardspackage", "comment": null}, "newfont": {"type": "string", "index": 164, "name": "newfont", "comment": null}, "newcolor": {"type": "string", "index": 165, "name": "newcolor", "comment": null}, "onboardingversion": {"type": "long", "index": 166, "name": "onboardingversion", "comment": null}, "widgetversion": {"type": "long", "index": 167, "name": "widgetversion", "comment": null}, "templatetype": {"type": "string", "index": 168, "name": "templatetype", "comment": null}, "islogoadded": {"type": "long", "index": 169, "name": "islogoadded", "comment": null}, "isfromnameupdated": {"type": "long", "index": 170, "name": "isfromnameupdated", "comment": null}, "arrnumofdays": {"type": "string", "index": 171, "name": "arrnumofdays", "comment": null}, "isenabledarr": {"type": "long", "index": 172, "name": "isenabledarr", "comment": null}, "retroactivesentnumofdays": {"type": "string", "index": 173, "name": "retroactivesentnumofdays", "comment": null}, "autoinstallavailable": {"type": "long", "index": 174, "name": "autoinstallavailable", "comment": null}, "installedplatformname": {"type": "string", "index": 175, "name": "installedplatformname", "comment": null}, "addedstarrating": {"type": "long", "index": 176, "name": "addedstarrating", "comment": null}, "isautoinstalled": {"type": "long", "index": 177, "name": "isautoinstalled", "comment": null}, "ismainwidgetautoinstalledsuccessfully": {"type": "long", "index": 178, "name": "ismainwidgetautoinstalledsuccessfully", "comment": null}, "isstarratingautoinstalledsuccessfully": {"type": "long", "index": 179, "name": "isstarratingautoinstalledsuccessfully", "comment": null}, "sentemailinstructions": {"type": "long", "index": 180, "name": "sentemailinstructions", "comment": null}, "ispointsreminder": {"type": "long", "index": 181, "name": "ispointsreminder", "comment": null}, "isproductreview": {"type": "long", "index": 182, "name": "isproductreview", "comment": null}, "isredemptionreminder": {"type": "long", "index": 183, "name": "isredemptionreminder", "comment": null}, "issubscriptionconfirmation": {"type": "long", "index": 184, "name": "issubscriptionconfirmation", "comment": null}, "issubscriptionrenewalreminder": {"type": "long", "index": 185, "name": "issubscriptionrenewalreminder", "comment": null}, "autoinstallmainwidgetavailable": {"type": "long", "index": 186, "name": "autoinstallmainwidgetavailable", "comment": null}, "autoinstallstarratingavailable": {"type": "long", "index": 187, "name": "autoinstallstarratingavailable", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 188, "name": "is_duplicated_2", "comment": null}, "arrtrigger": {"type": "string", "index": 189, "name": "arrtrigger", "comment": null}, "selectedmessage": {"type": "string", "index": 190, "name": "selectedmessage", "comment": null}}, "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.yoda.platform__segment.activation_step"}, "source.yoda.platform__segment.app_install_completed": {"metadata": {"type": "view", "schema": "segment", "name": "app_install_completed", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "adminusername": {"type": "string", "index": 20, "name": "adminusername", "comment": null}, "appkey": {"type": "string", "index": 21, "name": "appkey", "comment": null}, "isht": {"type": "boolean", "index": 22, "name": "isht", "comment": null}, "isloyalty": {"type": "boolean", "index": 23, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 24, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 25, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 26, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 27, "name": "loyaltymerchantid", "comment": null}, "loyaltypackage": {"type": "string", "index": 28, "name": "loyaltypackage", "comment": null}, "orgid": {"type": "string", "index": 29, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 30, "name": "orgkey", "comment": null}, "platform": {"type": "string", "index": 31, "name": "platform", "comment": null}, "product": {"type": "string", "index": 32, "name": "product", "comment": null}, "smsuserid": {"type": "string", "index": 33, "name": "smsuserid", "comment": null}, "storedomain": {"type": "string", "index": 34, "name": "storedomain", "comment": null}, "storeid": {"type": "string", "index": 35, "name": "storeid", "comment": null}, "userid": {"type": "string", "index": 36, "name": "userid", "comment": null}, "reviewspackage": {"type": "string", "index": 37, "name": "reviewspackage", "comment": null}, "smspackage": {"type": "string", "index": 38, "name": "smspackage", "comment": null}, "vugcpackage": {"type": "string", "index": 39, "name": "vugcpackage", "comment": null}, "storeplatformdomain": {"type": "string", "index": 40, "name": "storeplatformdomain", "comment": null}, "platformplan": {"type": "string", "index": 41, "name": "platformplan", "comment": null}, "actioncontext": {"type": "string", "index": 42, "name": "actioncontext", "comment": null}, "isadditionalaccount": {"type": "boolean", "index": 43, "name": "isadditionalaccount", "comment": null}, "isinternaluser": {"type": "boolean", "index": 44, "name": "isinternaluser", "comment": null}, "productintent": {"type": "string", "index": 45, "name": "productintent", "comment": null}, "context": {"type": "string", "index": 46, "name": "context", "comment": null}, "useremail": {"type": "string", "index": 47, "name": "useremail", "comment": null}, "flowtype": {"type": "string", "index": 48, "name": "flowtype", "comment": null}, "packagecategories": {"type": "string", "index": 49, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 50, "name": "package", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 51, "name": "is_duplicated_2", "comment": null}}, "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.yoda.platform__segment.app_install_completed"}, "source.yoda.platform__segment.app_uninstalled": {"metadata": {"type": "view", "schema": "segment", "name": "app_uninstalled", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "adminusername": {"type": "string", "index": 20, "name": "adminusername", "comment": null}, "appkey": {"type": "string", "index": 21, "name": "appkey", "comment": null}, "category": {"type": "string", "index": 22, "name": "category", "comment": null}, "isht": {"type": "boolean", "index": 23, "name": "isht", "comment": null}, "isinternaluser": {"type": "boolean", "index": 24, "name": "isinternaluser", "comment": null}, "isloyalty": {"type": "boolean", "index": 25, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 26, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 27, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 28, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 29, "name": "loyaltymerchantid", "comment": null}, "orgid": {"type": "long", "index": 30, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 31, "name": "orgkey", "comment": null}, "platform": {"type": "string", "index": 32, "name": "platform", "comment": null}, "smsuserid": {"type": "string", "index": 33, "name": "smsuserid", "comment": null}, "storedomain": {"type": "string", "index": 34, "name": "storedomain", "comment": null}, "storeid": {"type": "string", "index": 35, "name": "storeid", "comment": null}, "storeplatformdomain": {"type": "string", "index": 36, "name": "storeplatformdomain", "comment": null}, "userid": {"type": "long", "index": 37, "name": "userid", "comment": null}, "platformplan": {"type": "string", "index": 38, "name": "platformplan", "comment": null}, "product": {"type": "string", "index": 39, "name": "product", "comment": null}, "reviewspackage": {"type": "string", "index": 40, "name": "reviewspackage", "comment": null}, "smspackage": {"type": "string", "index": 41, "name": "smspackage", "comment": null}, "loyaltypackage": {"type": "string", "index": 42, "name": "loyaltypackage", "comment": null}, "vugcpackage": {"type": "string", "index": 43, "name": "vugcpackage", "comment": null}, "useremail": {"type": "string", "index": 44, "name": "useremail", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 45, "name": "rrmonthlylimit", "comment": null}, "accountappkey": {"type": "string", "index": 46, "name": "accountappkey", "comment": null}, "accountid": {"type": "long", "index": 47, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 48, "name": "adminname", "comment": null}, "appdevelopername": {"type": "string", "index": 49, "name": "appdevelopername", "comment": null}, "appid": {"type": "string", "index": 50, "name": "appid", "comment": null}, "appname": {"type": "string", "index": 51, "name": "appname", "comment": null}, "createdat": {"type": "string", "index": 52, "name": "createdat", "comment": null}, "email": {"type": "string", "index": 53, "name": "email", "comment": null}, "groupid": {"type": "string", "index": 54, "name": "groupid", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 55, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 56, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 57, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 58, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 59, "name": "isusingpackagesservice", "comment": null}, "lastconversionordertime": {"type": "string", "index": 60, "name": "lastconversionordertime", "comment": null}, "name": {"type": "string", "index": 61, "name": "name", "comment": null}, "packagecategories": {"type": "string", "index": 62, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 63, "name": "package", "comment": null}, "path": {"type": "string", "index": 64, "name": "path", "comment": null}, "pendingrrs": {"type": "long", "index": 65, "name": "pendingrrs", "comment": null}, "planname": {"type": "string", "index": 66, "name": "planname", "comment": null}, "role": {"type": "string", "index": 67, "name": "role", "comment": null}, "signuputmcampaign": {"type": "string", "index": 68, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 69, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 70, "name": "signuputmsource", "comment": null}, "storecount": {"type": "long", "index": 71, "name": "storecount", "comment": null}, "title": {"type": "string", "index": 72, "name": "title", "comment": null}, "traits_email": {"type": "string", "index": 73, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 74, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 75, "name": "traits_plan", "comment": null}, "url": {"type": "string", "index": 76, "name": "url", "comment": null}, "website": {"type": "string", "index": 77, "name": "website", "comment": null}, "yotpoip": {"type": "string", "index": 78, "name": "yotpoip", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 79, "name": "is_duplicated_2", "comment": null}}, "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.yoda.platform__segment.app_uninstalled"}, "source.yoda.platform__segment.b2b": {"metadata": {"type": "view", "schema": "segment", "name": "b2b", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "accountid": {"type": "long", "index": 20, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 21, "name": "adminname", "comment": null}, "appkey": {"type": "string", "index": 22, "name": "appkey", "comment": null}, "category": {"type": "string", "index": 23, "name": "category", "comment": null}, "createdat": {"type": "string", "index": 24, "name": "createdat", "comment": null}, "email": {"type": "string", "index": 25, "name": "email", "comment": null}, "groupid": {"type": "string", "index": 26, "name": "groupid", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 27, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 28, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 29, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 30, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 31, "name": "isusingpackagesservice", "comment": null}, "is_first_time": {"type": "boolean", "index": 32, "name": "is_first_time", "comment": null}, "name": {"type": "string", "index": 33, "name": "name", "comment": null}, "packagecategories": {"type": "string", "index": 34, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 35, "name": "package", "comment": null}, "path": {"type": "string", "index": 36, "name": "path", "comment": null}, "phone": {"type": "string", "index": 37, "name": "phone", "comment": null}, "platform": {"type": "string", "index": 38, "name": "platform", "comment": null}, "role": {"type": "string", "index": 39, "name": "role", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 40, "name": "signupmonthlyorderscount", "comment": null}, "signuputmcampaign": {"type": "string", "index": 41, "name": "signuputmcampaign", "comment": null}, "storecount": {"type": "long", "index": 42, "name": "storecount", "comment": null}, "title": {"type": "string", "index": 43, "name": "title", "comment": null}, "traits_email": {"type": "string", "index": 44, "name": "traits_email", "comment": null}, "traits_plan": {"type": "string", "index": 45, "name": "traits_plan", "comment": null}, "url": {"type": "string", "index": 46, "name": "url", "comment": null}, "userid": {"type": "long", "index": 47, "name": "userid", "comment": null}, "website": {"type": "string", "index": 48, "name": "website", "comment": null}, "yotpoip": {"type": "string", "index": 49, "name": "yotpoip", "comment": null}, "storedomain": {"type": "string", "index": 50, "name": "storedomain", "comment": null}, "traits_name": {"type": "string", "index": 51, "name": "traits_name", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 52, "name": "rrmonthlylimit", "comment": null}, "admin": {"type": "boolean", "index": 53, "name": "admin", "comment": null}, "pagecategory": {"type": "string", "index": 54, "name": "pagecategory", "comment": null}, "pagetitle": {"type": "string", "index": 55, "name": "pagetitle", "comment": null}, "planname": {"type": "string", "index": 56, "name": "planname", "comment": null}, "signupcountry": {"type": "string", "index": 57, "name": "signupcountry", "comment": null}, "signuputmmedium": {"type": "string", "index": 58, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 59, "name": "signuputmsource", "comment": null}, "uiversion": {"type": "string", "index": 60, "name": "uiversion", "comment": null}, "ctatype": {"type": "string", "index": 61, "name": "ctatype", "comment": null}, "packageextensions": {"type": "string", "index": 62, "name": "packageextensions", "comment": null}, "billingproviders": {"type": "array", "index": 63, "name": "billingproviders", "comment": null}, "signupphone": {"type": "string", "index": 64, "name": "signupphone", "comment": null}, "errortext": {"type": "string", "index": 65, "name": "errortext", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 66, "name": "isinvalidfacebooktoken", "comment": null}, "lastconversionordertime": {"type": "string", "index": 67, "name": "lastconversionordertime", "comment": null}, "pendingrrs": {"type": "long", "index": 68, "name": "pendingrrs", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 69, "name": "daysinvalidfacebooktoken", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 70, "name": "daysinvalidpinteresttoken", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 71, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 72, "name": "isinvalidfacebooktokendate", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 73, "name": "isinvalidpinteresttokendate", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 74, "name": "isinvalidpinteresttoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 75, "name": "isinvalidtwittertokendate", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 76, "name": "isinvalidtwittertoken", "comment": null}, "failedreviews": {"type": "long", "index": 77, "name": "failedreviews", "comment": null}, "importedreviews": {"type": "long", "index": 78, "name": "importedreviews", "comment": null}, "phasename": {"type": "string", "index": 79, "name": "phasename", "comment": null}, "chargeid": {"type": "long", "index": 80, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 81, "name": "chargeprice", "comment": null}, "subscriptionstate": {"type": "string", "index": 82, "name": "subscriptionstate", "comment": null}, "iscompleted": {"type": "boolean", "index": 83, "name": "iscompleted", "comment": null}, "tabname": {"type": "string", "index": 84, "name": "tabname", "comment": null}, "numoftasksdone": {"type": "long", "index": 85, "name": "numoftasksdone", "comment": null}, "dashboardmetricname": {"type": "string", "index": 86, "name": "dashboardmetricname", "comment": null}, "dashboardmetricvalue": {"type": "string", "index": 87, "name": "dashboardmetricvalue", "comment": null}, "numberoftips": {"type": "long", "index": 88, "name": "numberoftips", "comment": null}, "status": {"type": "string", "index": 89, "name": "status", "comment": null}, "dashboardtipname": {"type": "string", "index": 90, "name": "dashboardtipname", "comment": null}, "adminusername": {"type": "string", "index": 91, "name": "adminusername", "comment": null}, "isinternaluser": {"type": "boolean", "index": 92, "name": "isinternaluser", "comment": null}, "isloyalty": {"type": "boolean", "index": 93, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 94, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 95, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 96, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 97, "name": "loyaltymerchantid", "comment": null}, "loyaltypackage": {"type": "string", "index": 98, "name": "loyaltypackage", "comment": null}, "orgid": {"type": "long", "index": 99, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 100, "name": "orgkey", "comment": null}, "platformplan": {"type": "string", "index": 101, "name": "platformplan", "comment": null}, "reviewspackage": {"type": "string", "index": 102, "name": "reviewspackage", "comment": null}, "smsuserid": {"type": "string", "index": 103, "name": "smsuserid", "comment": null}, "storeid": {"type": "string", "index": 104, "name": "storeid", "comment": null}, "storeplatformdomain": {"type": "string", "index": 105, "name": "storeplatformdomain", "comment": null}, "vugcpackage": {"type": "string", "index": 106, "name": "vugcpackage", "comment": null}, "smspackage": {"type": "string", "index": 107, "name": "smspackage", "comment": null}, "useremail": {"type": "string", "index": 108, "name": "useremail", "comment": null}, "auth0userid": {"type": "string", "index": 109, "name": "auth0userid", "comment": null}, "ctacontext": {"type": "string", "index": 110, "name": "ctacontext", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 111, "name": "is_duplicated_2", "comment": null}}, "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.yoda.platform__segment.b2b"}, "source.yoda.platform__segment.file_exported": {"metadata": {"type": "view", "schema": "segment", "name": "file_exported", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "appkey": {"type": "string", "index": 20, "name": "appkey", "comment": null}, "email": {"type": "string", "index": 21, "name": "email", "comment": null}, "exportcontext": {"type": "string", "index": 22, "name": "exportcontext", "comment": null}, "exportgroup": {"type": "string", "index": 23, "name": "exportgroup", "comment": null}, "fileurl": {"type": "string", "index": 24, "name": "fileurl", "comment": null}, "numofrows": {"type": "long", "index": 25, "name": "numofrows", "comment": null}, "product": {"type": "string", "index": 26, "name": "product", "comment": null}, "state": {"type": "string", "index": 27, "name": "state", "comment": null}, "totalrows": {"type": "long", "index": 28, "name": "totalrows", "comment": null}, "urldaystimeframe": {"type": "long", "index": 29, "name": "urldaystimeframe", "comment": null}, "useremail": {"type": "string", "index": 30, "name": "useremail", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 31, "name": "rrmonthlylimit", "comment": null}, "accountid": {"type": "long", "index": 32, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 33, "name": "adminname", "comment": null}, "createdat": {"type": "string", "index": 34, "name": "createdat", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 35, "name": "daysinvalidfacebooktoken", "comment": null}, "expirationperiodindays": {"type": "string", "index": 36, "name": "expirationperiodindays", "comment": null}, "groupid": {"type": "string", "index": 37, "name": "groupid", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 38, "name": "isinvalidfacebooktokendate", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 39, "name": "isinvalidfacebooktoken", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 40, "name": "isinvalidtwittertoken", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 41, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 42, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 43, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 44, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 45, "name": "isusingpackagesservice", "comment": null}, "name": {"type": "string", "index": 46, "name": "name", "comment": null}, "packagecategories": {"type": "string", "index": 47, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 48, "name": "package", "comment": null}, "pendingrrs": {"type": "long", "index": 49, "name": "pendingrrs", "comment": null}, "planname": {"type": "string", "index": 50, "name": "planname", "comment": null}, "platform": {"type": "string", "index": 51, "name": "platform", "comment": null}, "role": {"type": "string", "index": 52, "name": "role", "comment": null}, "signupcountry": {"type": "string", "index": 53, "name": "signupcountry", "comment": null}, "signuputmcampaign": {"type": "string", "index": 54, "name": "signuputmcampaign", "comment": null}, "storecount": {"type": "long", "index": 55, "name": "storecount", "comment": null}, "storedomain": {"type": "string", "index": 56, "name": "storedomain", "comment": null}, "traits_email": {"type": "string", "index": 57, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 58, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 59, "name": "traits_plan", "comment": null}, "userid": {"type": "long", "index": 60, "name": "userid", "comment": null}, "website": {"type": "string", "index": 61, "name": "website", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 62, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 63, "name": "isinvalidtwittertokendate", "comment": null}, "packageextensions": {"type": "string", "index": 64, "name": "packageextensions", "comment": null}, "lastconversionordertime": {"type": "string", "index": 65, "name": "lastconversionordertime", "comment": null}, "signuputmsource": {"type": "string", "index": 66, "name": "signuputmsource", "comment": null}, "phone": {"type": "string", "index": 67, "name": "phone", "comment": null}, "signupphone": {"type": "string", "index": 68, "name": "signupphone", "comment": null}, "signuputmmedium": {"type": "string", "index": 69, "name": "signuputmmedium", "comment": null}, "billingproviders": {"type": "array", "index": 70, "name": "billingproviders", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 71, "name": "signupmonthlyorderscount", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 72, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 73, "name": "isinvalidpinteresttokendate", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 74, "name": "isinvalidpinteresttoken", "comment": null}, "exportformat": {"type": "string", "index": 75, "name": "exportformat", "comment": null}, "chargeid": {"type": "long", "index": 76, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 77, "name": "chargeprice", "comment": null}, "subscriptionstate": {"type": "string", "index": 78, "name": "subscriptionstate", "comment": null}, "failreason": {"type": "string", "index": 79, "name": "failreason", "comment": null}, "isempty": {"type": "string", "index": 80, "name": "isempty", "comment": null}, "isschedule": {"type": "string", "index": 81, "name": "isschedule", "comment": null}, "owner": {"type": "string", "index": 82, "name": "owner", "comment": null}, "reportname": {"type": "string", "index": 83, "name": "reportname", "comment": null}, "reporttype": {"type": "string", "index": 84, "name": "reporttype", "comment": null}, "createdbyemail": {"type": "string", "index": 85, "name": "createdbyemail", "comment": null}, "recipientemail": {"type": "string", "index": 86, "name": "recipientemail", "comment": null}, "frequency": {"type": "string", "index": 87, "name": "frequency", "comment": null}, "reporttimeframe": {"type": "string", "index": 88, "name": "reporttimeframe", "comment": null}, "reportweekday": {"type": "string", "index": 89, "name": "reportweekday", "comment": null}, "reportmonthday": {"type": "string", "index": 90, "name": "reportmonthday", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 91, "name": "is_duplicated_2", "comment": null}, "adminusername": {"type": "string", "index": 92, "name": "adminusername", "comment": null}, "isinternaluser": {"type": "boolean", "index": 93, "name": "isinternaluser", "comment": null}, "isloyalty": {"type": "boolean", "index": 94, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 95, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 96, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 97, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 98, "name": "loyaltymerchantid", "comment": null}, "loyaltypackage": {"type": "string", "index": 99, "name": "loyaltypackage", "comment": null}, "orgid": {"type": "long", "index": 100, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 101, "name": "orgkey", "comment": null}, "path": {"type": "string", "index": 102, "name": "path", "comment": null}, "platformplan": {"type": "string", "index": 103, "name": "platformplan", "comment": null}, "reviewspackage": {"type": "string", "index": 104, "name": "reviewspackage", "comment": null}, "smspackage": {"type": "string", "index": 105, "name": "smspackage", "comment": null}, "smsuserid": {"type": "string", "index": 106, "name": "smsuserid", "comment": null}, "storeid": {"type": "string", "index": 107, "name": "storeid", "comment": null}, "storeplatformdomain": {"type": "string", "index": 108, "name": "storeplatformdomain", "comment": null}, "title": {"type": "string", "index": 109, "name": "title", "comment": null}, "url": {"type": "string", "index": 110, "name": "url", "comment": null}, "vugcpackage": {"type": "string", "index": 111, "name": "vugcpackage", "comment": null}, "auth0userid": {"type": "string", "index": 112, "name": "auth0userid", "comment": null}, "dategranularity": {"type": "string", "index": 113, "name": "dategranularity", "comment": null}}, "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.yoda.platform__segment.file_exported"}, "source.yoda.infra__segment.group": {"metadata": {"type": "view", "schema": "segment", "name": "group", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "anonymous_id": {"type": "string", "index": 5, "name": "anonymous_id", "comment": null}, "user_id": {"type": "string", "index": 6, "name": "user_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "auth_0_user_id": {"type": "string", "index": 10, "name": "auth_0_user_id", "comment": null}, "group_id": {"type": "string", "index": 11, "name": "group_id", "comment": null}, "is_internal_user": {"type": "boolean", "index": 12, "name": "is_internal_user", "comment": null}, "org_billin_providers": {"type": "string", "index": 13, "name": "org_billin_providers", "comment": null}, "org_created_at": {"type": "string", "index": 14, "name": "org_created_at", "comment": null}, "org_email": {"type": "string", "index": 15, "name": "org_email", "comment": null}, "org_industry": {"type": "string", "index": 16, "name": "org_industry", "comment": null}, "org_is_loyalty": {"type": "boolean", "index": 17, "name": "org_is_loyalty", "comment": null}, "org_is_reviews": {"type": "boolean", "index": 18, "name": "org_is_reviews", "comment": null}, "org_is_sms": {"type": "boolean", "index": 19, "name": "org_is_sms", "comment": null}, "org_is_test": {"type": "boolean", "index": 20, "name": "org_is_test", "comment": null}, "org_is_vugc": {"type": "boolean", "index": 21, "name": "org_is_vugc", "comment": null}, "org_loyalty_monthly_price": {"type": "double", "index": 22, "name": "org_loyalty_monthly_price", "comment": null}, "org_loyalty_package": {"type": "string", "index": 23, "name": "org_loyalty_package", "comment": null}, "org_name": {"type": "string", "index": 24, "name": "org_name", "comment": null}, "org_organization_key": {"type": "string", "index": 25, "name": "org_organization_key", "comment": null}, "org_package_extensions": {"type": "string", "index": 26, "name": "org_package_extensions", "comment": null}, "org_reviews_monthly_price": {"type": "double", "index": 27, "name": "org_reviews_monthly_price", "comment": null}, "org_reviews_package": {"type": "string", "index": 28, "name": "org_reviews_package", "comment": null}, "org_signup_country": {"type": "string", "index": 29, "name": "org_signup_country", "comment": null}, "org_signup_utm_campaign": {"type": "string", "index": 30, "name": "org_signup_utm_campaign", "comment": null}, "org_signup_utm_source": {"type": "string", "index": 31, "name": "org_signup_utm_source", "comment": null}, "org_sms_monthly_price": {"type": "double", "index": 32, "name": "org_sms_monthly_price", "comment": null}, "org_sms_package": {"type": "string", "index": 33, "name": "org_sms_package", "comment": null}, "org_store_count": {"type": "double", "index": 34, "name": "org_store_count", "comment": null}, "org_store_limit": {"type": "double", "index": 35, "name": "org_store_limit", "comment": null}, "org_vugc_monthly_price": {"type": "double", "index": 36, "name": "org_vugc_monthly_price", "comment": null}, "org_vugc_package": {"type": "string", "index": 37, "name": "org_vugc_package", "comment": null}, "sms_bump_plan": {"type": "string", "index": 38, "name": "sms_bump_plan", "comment": null}, "store_app_key": {"type": "string", "index": 39, "name": "store_app_key", "comment": null}, "store_created_at": {"type": "string", "index": 40, "name": "store_created_at", "comment": null}, "store_domain": {"type": "string", "index": 41, "name": "store_domain", "comment": null}, "store_id": {"type": "double", "index": 42, "name": "store_id", "comment": null}, "store_is_test": {"type": "boolean", "index": 43, "name": "store_is_test", "comment": null}, "store_loyalty_merchant_id": {"type": "string", "index": 44, "name": "store_loyalty_merchant_id", "comment": null}, "store_name": {"type": "string", "index": 45, "name": "store_name", "comment": null}, "store_org_id": {"type": "double", "index": 46, "name": "store_org_id", "comment": null}, "store_org_key": {"type": "string", "index": 47, "name": "store_org_key", "comment": null}, "store_platform": {"type": "string", "index": 48, "name": "store_platform", "comment": null}, "store_platform_domain": {"type": "string", "index": 49, "name": "store_platform_domain", "comment": null}, "store_platform_plan": {"type": "string", "index": 50, "name": "store_platform_plan", "comment": null}, "store_reviews_is_valid_platform_credentials": {"type": "boolean", "index": 51, "name": "store_reviews_is_valid_platform_credentials", "comment": null}, "store_sms_user_id": {"type": "string", "index": 52, "name": "store_sms_user_id", "comment": null}, "store_users_count": {"type": "double", "index": 53, "name": "store_users_count", "comment": null}, "store_users_limit": {"type": "double", "index": 54, "name": "store_users_limit", "comment": null}, "admin_user_name": {"type": "string", "index": 55, "name": "admin_user_name", "comment": null}, "app_key": {"type": "string", "index": 56, "name": "app_key", "comment": null}, "is_loyalty": {"type": "boolean", "index": 57, "name": "is_loyalty", "comment": null}, "is_reviews": {"type": "boolean", "index": 58, "name": "is_reviews", "comment": null}, "is_sms": {"type": "boolean", "index": 59, "name": "is_sms", "comment": null}, "is_vugc": {"type": "boolean", "index": 60, "name": "is_vugc", "comment": null}, "loyalty_merchant_id": {"type": "string", "index": 61, "name": "loyalty_merchant_id", "comment": null}, "loyalty_package": {"type": "string", "index": 62, "name": "loyalty_package", "comment": null}, "org_id": {"type": "double", "index": 63, "name": "org_id", "comment": null}, "org_key": {"type": "string", "index": 64, "name": "org_key", "comment": null}, "platform": {"type": "string", "index": 65, "name": "platform", "comment": null}, "platform_plan": {"type": "string", "index": 66, "name": "platform_plan", "comment": null}, "reviews_package": {"type": "string", "index": 67, "name": "reviews_package", "comment": null}, "sms_package": {"type": "string", "index": 68, "name": "sms_package", "comment": null}, "sms_user_id": {"type": "string", "index": 69, "name": "sms_user_id", "comment": null}, "vugc_package": {"type": "string", "index": 70, "name": "vugc_package", "comment": null}, "platform_version": {"type": "string", "index": 71, "name": "platform_version", "comment": null}, "is_ht": {"type": "boolean", "index": 72, "name": "is_ht", "comment": null}, "page_url": {"type": "string", "index": 73, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 74, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 75, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 76, "name": "page_path", "comment": null}}, "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.yoda.infra__segment.group"}, "source.yoda.infra__segment.identify": {"metadata": {"type": "view", "schema": "segment", "name": "identify", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "message_id": {"type": "string", "index": 2, "name": "message_id", "comment": null}, "processing_time": {"type": "timestamp", "index": 3, "name": "processing_time", "comment": null}, "anonymous_id": {"type": "string", "index": 4, "name": "anonymous_id", "comment": null}, "timestamp": {"type": "timestamp", "index": 5, "name": "timestamp", "comment": null}, "user_id": {"type": "string", "index": 6, "name": "user_id", "comment": null}, "auth_0_user_id": {"type": "string", "index": 7, "name": "auth_0_user_id", "comment": null}, "is_internal_user": {"type": "boolean", "index": 8, "name": "is_internal_user", "comment": null}, "user_app_key": {"type": "string", "index": 9, "name": "user_app_key", "comment": null}, "user_created_at": {"type": "string", "index": 10, "name": "user_created_at", "comment": null}, "user_email": {"type": "string", "index": 11, "name": "user_email", "comment": null}, "user_is_admin": {"type": "boolean", "index": 12, "name": "user_is_admin", "comment": null}, "user_is_test": {"type": "boolean", "index": 13, "name": "user_is_test", "comment": null}, "user_org_id": {"type": "double", "index": 14, "name": "user_org_id", "comment": null}, "user_org_key": {"type": "string", "index": 15, "name": "user_org_key", "comment": null}, "user_phone": {"type": "string", "index": 16, "name": "user_phone", "comment": null}, "user_role": {"type": "string", "index": 17, "name": "user_role", "comment": null}, "user_store_id": {"type": "string", "index": 18, "name": "user_store_id", "comment": null}, "admin_user_name": {"type": "string", "index": 19, "name": "admin_user_name", "comment": null}, "app_key": {"type": "string", "index": 20, "name": "app_key", "comment": null}, "is_loyalty": {"type": "boolean", "index": 21, "name": "is_loyalty", "comment": null}, "is_reviews": {"type": "boolean", "index": 22, "name": "is_reviews", "comment": null}, "is_sms": {"type": "boolean", "index": 23, "name": "is_sms", "comment": null}, "is_vugc": {"type": "boolean", "index": 24, "name": "is_vugc", "comment": null}, "loyalty_merchant_id": {"type": "string", "index": 25, "name": "loyalty_merchant_id", "comment": null}, "loyalty_package": {"type": "string", "index": 26, "name": "loyalty_package", "comment": null}, "org_id": {"type": "double", "index": 27, "name": "org_id", "comment": null}, "org_key": {"type": "string", "index": 28, "name": "org_key", "comment": null}, "platform": {"type": "string", "index": 29, "name": "platform", "comment": null}, "platform_plan": {"type": "string", "index": 30, "name": "platform_plan", "comment": null}, "reviews_package": {"type": "string", "index": 31, "name": "reviews_package", "comment": null}, "sms_package": {"type": "string", "index": 32, "name": "sms_package", "comment": null}, "sms_user_id": {"type": "string", "index": 33, "name": "sms_user_id", "comment": null}, "store_domain": {"type": "string", "index": 34, "name": "store_domain", "comment": null}, "store_id": {"type": "string", "index": 35, "name": "store_id", "comment": null}, "vugc_package": {"type": "string", "index": 36, "name": "vugc_package", "comment": null}, "is_ht": {"type": "boolean", "index": 37, "name": "is_ht", "comment": null}, "platform_version": {"type": "string", "index": 38, "name": "platform_version", "comment": null}, "store_platform_domain": {"type": "string", "index": 39, "name": "store_platform_domain", "comment": null}, "page_url": {"type": "string", "index": 40, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 41, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 42, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 43, "name": "page_path", "comment": null}}, "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.yoda.infra__segment.identify"}, "source.yoda.loyalty__segment.install_loyalty": {"metadata": {"type": "view", "schema": "segment", "name": "install_loyalty", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "accountid": {"type": "long", "index": 20, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 21, "name": "adminname", "comment": null}, "appkey": {"type": "string", "index": 22, "name": "appkey", "comment": null}, "company_name": {"type": "string", "index": 23, "name": "company_name", "comment": null}, "createdat": {"type": "string", "index": 24, "name": "createdat", "comment": null}, "currentplan": {"type": "string", "index": 25, "name": "currentplan", "comment": null}, "email": {"type": "string", "index": 26, "name": "email", "comment": null}, "groupid": {"type": "string", "index": 27, "name": "groupid", "comment": null}, "initialnumoforders": {"type": "long", "index": 28, "name": "initialnumoforders", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 29, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 30, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 31, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 32, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 33, "name": "isusingpackagesservice", "comment": null}, "loyaltyemail": {"type": "string", "index": 34, "name": "loyaltyemail", "comment": null}, "loyaltypackage": {"type": "string", "index": 35, "name": "loyaltypackage", "comment": null}, "merchant_id": {"type": "long", "index": 36, "name": "merchant_id", "comment": null}, "name": {"type": "string", "index": 37, "name": "name", "comment": null}, "owner": {"type": "string", "index": 38, "name": "owner", "comment": null}, "packagecategories": {"type": "string", "index": 39, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 40, "name": "package", "comment": null}, "platform_plan": {"type": "string", "index": 41, "name": "platform_plan", "comment": null}, "platform": {"type": "string", "index": 42, "name": "platform", "comment": null}, "product": {"type": "string", "index": 43, "name": "product", "comment": null}, "role": {"type": "string", "index": 44, "name": "role", "comment": null}, "storecount": {"type": "long", "index": 45, "name": "storecount", "comment": null}, "storedomain": {"type": "string", "index": 46, "name": "storedomain", "comment": null}, "traits_email": {"type": "string", "index": 47, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 48, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 49, "name": "traits_plan", "comment": null}, "userid": {"type": "long", "index": 50, "name": "userid", "comment": null}, "website": {"type": "string", "index": 51, "name": "website", "comment": null}, "yotpoip": {"type": "string", "index": 52, "name": "yotpoip", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 53, "name": "rrmonthlylimit", "comment": null}, "pendingrrs": {"type": "long", "index": 54, "name": "pendingrrs", "comment": null}, "planname": {"type": "string", "index": 55, "name": "planname", "comment": null}, "signupcountry": {"type": "string", "index": 56, "name": "signupcountry", "comment": null}, "signuputmcampaign": {"type": "string", "index": 57, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 58, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 59, "name": "signuputmsource", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 60, "name": "isinvalidfacebooktoken", "comment": null}, "lastconversionordertime": {"type": "string", "index": 61, "name": "lastconversionordertime", "comment": null}, "phone": {"type": "string", "index": 62, "name": "phone", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 63, "name": "signupmonthlyorderscount", "comment": null}, "signupphone": {"type": "string", "index": 64, "name": "signupphone", "comment": null}, "billingproviders": {"type": "array", "index": 65, "name": "billingproviders", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 66, "name": "daysinvalidfacebooktoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 67, "name": "isinvalidfacebooktokendate", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 68, "name": "isinvalidtwittertoken", "comment": null}, "packageextensions": {"type": "string", "index": 69, "name": "packageextensions", "comment": null}, "chargeid": {"type": "long", "index": 70, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 71, "name": "chargeprice", "comment": null}, "subscriptionstate": {"type": "string", "index": 72, "name": "subscriptionstate", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 73, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 74, "name": "isinvalidtwittertokendate", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 75, "name": "isinvalidpinteresttoken", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 76, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 77, "name": "isinvalidpinteresttokendate", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 78, "name": "is_duplicated_2", "comment": null}}, "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.yoda.loyalty__segment.install_loyalty"}, "source.yoda.platform__segment.limit_reached": {"metadata": {"type": "view", "schema": "segment", "name": "limit_reached", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 20, "name": "rrmonthlylimit", "comment": null}, "accountid": {"type": "long", "index": 21, "name": "accountid", "comment": null}, "actualcount": {"type": "long", "index": 22, "name": "actualcount", "comment": null}, "adminname": {"type": "string", "index": 23, "name": "adminname", "comment": null}, "appkey": {"type": "string", "index": 24, "name": "appkey", "comment": null}, "cap": {"type": "string", "index": 25, "name": "cap", "comment": null}, "createdat": {"type": "string", "index": 26, "name": "createdat", "comment": null}, "email": {"type": "string", "index": 27, "name": "email", "comment": null}, "gap": {"type": "string", "index": 28, "name": "gap", "comment": null}, "groupid": {"type": "string", "index": 29, "name": "groupid", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 30, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 31, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 32, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 33, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 34, "name": "isusingpackagesservice", "comment": null}, "lastconversionordertime": {"type": "string", "index": 35, "name": "lastconversionordertime", "comment": null}, "limittype": {"type": "string", "index": 36, "name": "limittype", "comment": null}, "name": {"type": "string", "index": 37, "name": "name", "comment": null}, "packagecategories": {"type": "string", "index": 38, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 39, "name": "package", "comment": null}, "pctreached": {"type": "double", "index": 40, "name": "pctreached", "comment": null}, "pendingrrs": {"type": "long", "index": 41, "name": "pendingrrs", "comment": null}, "phone": {"type": "string", "index": 42, "name": "phone", "comment": null}, "planname": {"type": "string", "index": 43, "name": "planname", "comment": null}, "platform": {"type": "string", "index": 44, "name": "platform", "comment": null}, "product": {"type": "string", "index": 45, "name": "product", "comment": null}, "role": {"type": "string", "index": 46, "name": "role", "comment": null}, "signupcountry": {"type": "string", "index": 47, "name": "signupcountry", "comment": null}, "signuputmcampaign": {"type": "string", "index": 48, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 49, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 50, "name": "signuputmsource", "comment": null}, "storecount": {"type": "long", "index": 51, "name": "storecount", "comment": null}, "storedomain": {"type": "string", "index": 52, "name": "storedomain", "comment": null}, "traits_email": {"type": "string", "index": 53, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 54, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 55, "name": "traits_plan", "comment": null}, "userid": {"type": "long", "index": 56, "name": "userid", "comment": null}, "website": {"type": "string", "index": 57, "name": "website", "comment": null}, "billingproviders": {"type": "array", "index": 58, "name": "billingproviders", "comment": null}, "chargeid": {"type": "long", "index": 59, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 60, "name": "chargeprice", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 61, "name": "signupmonthlyorderscount", "comment": null}, "signupphone": {"type": "string", "index": 62, "name": "signupphone", "comment": null}, "subscriptionstate": {"type": "string", "index": 63, "name": "subscriptionstate", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 64, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 65, "name": "isinvalidfacebooktoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 66, "name": "isinvalidtwittertokendate", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 67, "name": "isinvalidtwittertoken", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 68, "name": "daysinvalidfacebooktoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 69, "name": "isinvalidfacebooktokendate", "comment": null}, "packageextensions": {"type": "string", "index": 70, "name": "packageextensions", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 71, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 72, "name": "isinvalidpinteresttokendate", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 73, "name": "isinvalidpinteresttoken", "comment": null}, "path": {"type": "string", "index": 74, "name": "path", "comment": null}, "title": {"type": "string", "index": 75, "name": "title", "comment": null}, "url": {"type": "string", "index": 76, "name": "url", "comment": null}, "yotpoip": {"type": "string", "index": 77, "name": "yotpoip", "comment": null}, "adminusername": {"type": "string", "index": 78, "name": "adminusername", "comment": null}, "isloyalty": {"type": "boolean", "index": 79, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 80, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 81, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 82, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 83, "name": "loyaltymerchantid", "comment": null}, "loyaltypackage": {"type": "string", "index": 84, "name": "loyaltypackage", "comment": null}, "orgid": {"type": "long", "index": 85, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 86, "name": "orgkey", "comment": null}, "reviewspackage": {"type": "string", "index": 87, "name": "reviewspackage", "comment": null}, "smspackage": {"type": "string", "index": 88, "name": "smspackage", "comment": null}, "smsuserid": {"type": "string", "index": 89, "name": "smsuserid", "comment": null}, "storeid": {"type": "string", "index": 90, "name": "storeid", "comment": null}, "storeplatformdomain": {"type": "string", "index": 91, "name": "storeplatformdomain", "comment": null}, "vugcpackage": {"type": "string", "index": 92, "name": "vugcpackage", "comment": null}, "isinternaluser": {"type": "boolean", "index": 93, "name": "isinternaluser", "comment": null}, "useremail": {"type": "string", "index": 94, "name": "useremail", "comment": null}, "platformplan": {"type": "string", "index": 95, "name": "platformplan", "comment": null}, "isht": {"type": "boolean", "index": 96, "name": "isht", "comment": null}, "auth0userid": {"type": "string", "index": 97, "name": "auth0userid", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 98, "name": "is_duplicated_2", "comment": null}}, "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.yoda.platform__segment.limit_reached"}, "source.yoda.platform__segment.onboarding": {"metadata": {"type": "view", "schema": "segment", "name": "onboarding", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "analytics_data_rrmonthlylimit": {"type": "long", "index": 20, "name": "analytics_data_rrmonthlylimit", "comment": null}, "analytics_data_rrssentinbillingcycle": {"type": "long", "index": 21, "name": "analytics_data_rrssentinbillingcycle", "comment": null}, "analytics_data_accountid": {"type": "long", "index": 22, "name": "analytics_data_accountid", "comment": null}, "analytics_data_adminname": {"type": "string", "index": 23, "name": "analytics_data_adminname", "comment": null}, "analytics_data_appkey": {"type": "string", "index": 24, "name": "analytics_data_appkey", "comment": null}, "analytics_data_billingprovider": {"type": "string", "index": 25, "name": "analytics_data_billingprovider", "comment": null}, "analytics_data_createdat": {"type": "string", "index": 26, "name": "analytics_data_createdat", "comment": null}, "analytics_data_email": {"type": "string", "index": 27, "name": "analytics_data_email", "comment": null}, "analytics_data_groupid": {"type": "string", "index": 28, "name": "analytics_data_groupid", "comment": null}, "analytics_data_intercomuserhash": {"type": "string", "index": 29, "name": "analytics_data_intercomuserhash", "comment": null}, "analytics_data_isautopublishenabled": {"type": "boolean", "index": 30, "name": "analytics_data_isautopublishenabled", "comment": null}, "analytics_data_isenabledcoupons": {"type": "boolean", "index": 31, "name": "analytics_data_isenabledcoupons", "comment": null}, "analytics_data_isenabledcustomreviews": {"type": "boolean", "index": 32, "name": "analytics_data_isenabledcustomreviews", "comment": null}, "analytics_data_isenabledgsr": {"type": "boolean", "index": 33, "name": "analytics_data_isenabledgsr", "comment": null}, "analytics_data_isenabledmap": {"type": "boolean", "index": 34, "name": "analytics_data_isenabledmap", "comment": null}, "analytics_data_isenabledpla": {"type": "boolean", "index": 35, "name": "analytics_data_isenabledpla", "comment": null}, "analytics_data_isenabledpromotedproductsemail": {"type": "boolean", "index": 36, "name": "analytics_data_isenabledpromotedproductsemail", "comment": null}, "analytics_data_isenabledpromotedproductswidget": {"type": "boolean", "index": 37, "name": "analytics_data_isenabledpromotedproductswidget", "comment": null}, "analytics_data_isenabledqna": {"type": "boolean", "index": 38, "name": "analytics_data_isenabledqna", "comment": null}, "analytics_data_isenabledrichsnippets": {"type": "boolean", "index": 39, "name": "analytics_data_isenabledrichsnippets", "comment": null}, "analytics_data_ishasbadge": {"type": "boolean", "index": 40, "name": "analytics_data_ishasbadge", "comment": null}, "analytics_data_ishascomments": {"type": "boolean", "index": 41, "name": "analytics_data_ishascomments", "comment": null}, "analytics_data_ishasconverttositereview": {"type": "boolean", "index": 42, "name": "analytics_data_ishasconverttositereview", "comment": null}, "analytics_data_ishascoupons": {"type": "boolean", "index": 43, "name": "analytics_data_ishascoupons", "comment": null}, "analytics_data_ishascsseditor": {"type": "boolean", "index": 44, "name": "analytics_data_ishascsseditor", "comment": null}, "analytics_data_ishascustomreviews": {"type": "boolean", "index": 45, "name": "analytics_data_ishascustomreviews", "comment": null}, "analytics_data_ishasdedicatedpage": {"type": "boolean", "index": 46, "name": "analytics_data_ishasdedicatedpage", "comment": null}, "analytics_data_ishasgsr": {"type": "boolean", "index": 47, "name": "analytics_data_ishasgsr", "comment": null}, "analytics_data_ishasnewmainwidgetlayout": {"type": "boolean", "index": 48, "name": "analytics_data_ishasnewmainwidgetlayout", "comment": null}, "analytics_data_ishaspla": {"type": "boolean", "index": 49, "name": "analytics_data_ishaspla", "comment": null}, "analytics_data_ishaspromotedproductsemail": {"type": "boolean", "index": 50, "name": "analytics_data_ishaspromotedproductsemail", "comment": null}, "analytics_data_ishaspromotedproductswidget": {"type": "boolean", "index": 51, "name": "analytics_data_ishaspromotedproductswidget", "comment": null}, "analytics_data_ishasqna": {"type": "boolean", "index": 52, "name": "analytics_data_ishasqna", "comment": null}, "analytics_data_ishasreviewscarousel": {"type": "boolean", "index": 53, "name": "analytics_data_ishasreviewscarousel", "comment": null}, "analytics_data_ishasreviewstab": {"type": "boolean", "index": 54, "name": "analytics_data_ishasreviewstab", "comment": null}, "analytics_data_ishasrichsnippets": {"type": "boolean", "index": 55, "name": "analytics_data_ishasrichsnippets", "comment": null}, "analytics_data_ishassentmai": {"type": "boolean", "index": 56, "name": "analytics_data_ishassentmai", "comment": null}, "analytics_data_ishassentmas": {"type": "boolean", "index": 57, "name": "analytics_data_ishassentmas", "comment": null}, "analytics_data_ishassentmap": {"type": "boolean", "index": 58, "name": "analytics_data_ishassentmap", "comment": null}, "analytics_data_ishassentsitereminder": {"type": "boolean", "index": 59, "name": "analytics_data_ishassentsitereminder", "comment": null}, "analytics_data_ishassenttpr": {"type": "boolean", "index": 60, "name": "analytics_data_ishassenttpr", "comment": null}, "analytics_data_ishassenttsr": {"type": "boolean", "index": 61, "name": "analytics_data_ishassenttsr", "comment": null}, "analytics_data_ishasshoppableinstagram": {"type": "boolean", "index": 62, "name": "analytics_data_ishasshoppableinstagram", "comment": null}, "analytics_data_ishassocialpush": {"type": "boolean", "index": 63, "name": "analytics_data_ishassocialpush", "comment": null}, "analytics_data_ishasstarrating": {"type": "boolean", "index": 64, "name": "analytics_data_ishasstarrating", "comment": null}, "analytics_data_ishastpr": {"type": "boolean", "index": 65, "name": "analytics_data_ishastpr", "comment": null}, "analytics_data_ishastsr": {"type": "boolean", "index": 66, "name": "analytics_data_ishastsr", "comment": null}, "analytics_data_isinvalidfacebooktoken": {"type": "long", "index": 67, "name": "analytics_data_isinvalidfacebooktoken", "comment": null}, "analytics_data_ismapcustomfieldsenabled": {"type": "boolean", "index": 68, "name": "analytics_data_ismapcustomfieldsenabled", "comment": null}, "analytics_data_isnewslettersubscribed": {"type": "boolean", "index": 69, "name": "analytics_data_isnewslettersubscribed", "comment": null}, "analytics_data_isreceivesentimentnotification": {"type": "boolean", "index": 70, "name": "analytics_data_isreceivesentimentnotification", "comment": null}, "analytics_data_isreviewswidgetinstalled": {"type": "boolean", "index": 71, "name": "analytics_data_isreviewswidgetinstalled", "comment": null}, "analytics_data_issystemnotificationssubscribed": {"type": "boolean", "index": 72, "name": "analytics_data_issystemnotificationssubscribed", "comment": null}, "analytics_data_isuserscountlimitreached": {"type": "boolean", "index": 73, "name": "analytics_data_isuserscountlimitreached", "comment": null}, "analytics_data_isusingpackagesservice": {"type": "boolean", "index": 74, "name": "analytics_data_isusingpackagesservice", "comment": null}, "analytics_data_name": {"type": "string", "index": 75, "name": "analytics_data_name", "comment": null}, "analytics_data_packagecategories": {"type": "string", "index": 76, "name": "analytics_data_packagecategories", "comment": null}, "analytics_data_package": {"type": "string", "index": 77, "name": "analytics_data_package", "comment": null}, "analytics_data_planname": {"type": "string", "index": 78, "name": "analytics_data_planname", "comment": null}, "analytics_data_platform": {"type": "string", "index": 79, "name": "analytics_data_platform", "comment": null}, "analytics_data_role": {"type": "string", "index": 80, "name": "analytics_data_role", "comment": null}, "analytics_data_signupcountry": {"type": "string", "index": 81, "name": "analytics_data_signupcountry", "comment": null}, "analytics_data_signuputmcampaign": {"type": "string", "index": 82, "name": "analytics_data_signuputmcampaign", "comment": null}, "analytics_data_signuputmmedium": {"type": "string", "index": 83, "name": "analytics_data_signuputmmedium", "comment": null}, "analytics_data_signuputmsource": {"type": "string", "index": 84, "name": "analytics_data_signuputmsource", "comment": null}, "analytics_data_storecount": {"type": "long", "index": 85, "name": "analytics_data_storecount", "comment": null}, "analytics_data_traits_email": {"type": "string", "index": 86, "name": "analytics_data_traits_email", "comment": null}, "analytics_data_traits_name": {"type": "string", "index": 87, "name": "analytics_data_traits_name", "comment": null}, "analytics_data_traits_plan": {"type": "string", "index": 88, "name": "analytics_data_traits_plan", "comment": null}, "analytics_data_userid": {"type": "long", "index": 89, "name": "analytics_data_userid", "comment": null}, "analytics_data_website": {"type": "string", "index": 90, "name": "analytics_data_website", "comment": null}, "analytics_data_yotpoip": {"type": "string", "index": 91, "name": "analytics_data_yotpoip", "comment": null}, "analytics_data_yotpoproductscorev2": {"type": "long", "index": 92, "name": "analytics_data_yotpoproductscorev2", "comment": null}, "category": {"type": "string", "index": 93, "name": "category", "comment": null}, "path": {"type": "string", "index": 94, "name": "path", "comment": null}, "phasename": {"type": "string", "index": 95, "name": "phasename", "comment": null}, "phase": {"type": "string", "index": 96, "name": "phase", "comment": null}, "status": {"type": "string", "index": 97, "name": "status", "comment": null}, "title": {"type": "string", "index": 98, "name": "title", "comment": null}, "url": {"type": "string", "index": 99, "name": "url", "comment": null}, "analytics_data_daysinvalidfacebooktoken": {"type": "long", "index": 100, "name": "analytics_data_daysinvalidfacebooktoken", "comment": null}, "analytics_data_isinvalidfacebooktokendate": {"type": "string", "index": 101, "name": "analytics_data_isinvalidfacebooktokendate", "comment": null}, "analytics_data_signupmonthlyorderscount": {"type": "string", "index": 102, "name": "analytics_data_signupmonthlyorderscount", "comment": null}, "analytics_data_chargeid": {"type": "long", "index": 103, "name": "analytics_data_chargeid", "comment": null}, "analytics_data_chargeprice": {"type": "string", "index": 104, "name": "analytics_data_chargeprice", "comment": null}, "analytics_data_nextchargedate": {"type": "string", "index": 105, "name": "analytics_data_nextchargedate", "comment": null}, "analytics_data_subscriptionstate": {"type": "string", "index": 106, "name": "analytics_data_subscriptionstate", "comment": null}, "analytics_data_chargifybalance": {"type": "long", "index": 107, "name": "analytics_data_chargifybalance", "comment": null}, "analytics_data_chargifyrevenue": {"type": "long", "index": 108, "name": "analytics_data_chargifyrevenue", "comment": null}, "analytics_data_daysindunning": {"type": "string", "index": 109, "name": "analytics_data_daysindunning", "comment": null}, "analytics_data_daystorenewal": {"type": "long", "index": 110, "name": "analytics_data_daystorenewal", "comment": null}, "analytics_data_isinvalidpinteresttoken": {"type": "long", "index": 111, "name": "analytics_data_isinvalidpinteresttoken", "comment": null}, "analytics_data_isinvalidtwittertoken": {"type": "long", "index": 112, "name": "analytics_data_isinvalidtwittertoken", "comment": null}, "analytics_data_lastconversionordertime": {"type": "string", "index": 113, "name": "analytics_data_lastconversionordertime", "comment": null}, "analytics_data_paysvia": {"type": "string", "index": 114, "name": "analytics_data_paysvia", "comment": null}, "analytics_data_pixelversion": {"type": "long", "index": 115, "name": "analytics_data_pixelversion", "comment": null}, "analytics_data_recurringpaymentinterval": {"type": "long", "index": 116, "name": "analytics_data_recurringpaymentinterval", "comment": null}, "analytics_data_renewaldate": {"type": "string", "index": 117, "name": "analytics_data_renewaldate", "comment": null}, "pagecategory": {"type": "string", "index": 118, "name": "pagecategory", "comment": null}, "analytics_data_phone": {"type": "string", "index": 119, "name": "analytics_data_phone", "comment": null}, "analytics_data_signupphone": {"type": "string", "index": 120, "name": "analytics_data_signupphone", "comment": null}, "analytics_data_daysinvalidpinteresttoken": {"type": "long", "index": 121, "name": "analytics_data_daysinvalidpinteresttoken", "comment": null}, "analytics_data_isinvalidpinteresttokendate": {"type": "string", "index": 122, "name": "analytics_data_isinvalidpinteresttokendate", "comment": null}, "analytics_data_packageextensions": {"type": "string", "index": 123, "name": "analytics_data_packageextensions", "comment": null}, "analytics_data_yotpoproductscore": {"type": "long", "index": 124, "name": "analytics_data_yotpoproductscore", "comment": null}, "analytics_data_pendingrrs": {"type": "long", "index": 125, "name": "analytics_data_pendingrrs", "comment": null}, "analytics_data_creditcardtype": {"type": "string", "index": 126, "name": "analytics_data_creditcardtype", "comment": null}, "analytics_data_nameoncreditcard": {"type": "string", "index": 127, "name": "analytics_data_nameoncreditcard", "comment": null}, "analytics_data_creditcardlast4digits": {"type": "string", "index": 128, "name": "analytics_data_creditcardlast4digits", "comment": null}, "analytics_data_daysinvalidtwittertoken": {"type": "long", "index": 129, "name": "analytics_data_daysinvalidtwittertoken", "comment": null}, "analytics_data_isinvalidtwittertokendate": {"type": "string", "index": 130, "name": "analytics_data_isinvalidtwittertokendate", "comment": null}, "analytics_data_billingproviders": {"type": "array", "index": 131, "name": "analytics_data_billingproviders", "comment": null}, "accountid": {"type": "long", "index": 132, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 133, "name": "adminname", "comment": null}, "appkey": {"type": "string", "index": 134, "name": "appkey", "comment": null}, "createdat": {"type": "string", "index": 135, "name": "createdat", "comment": null}, "email": {"type": "string", "index": 136, "name": "email", "comment": null}, "groupid": {"type": "string", "index": 137, "name": "groupid", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 138, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 139, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 140, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 141, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 142, "name": "isusingpackagesservice", "comment": null}, "name": {"type": "string", "index": 143, "name": "name", "comment": null}, "packagecategories": {"type": "string", "index": 144, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 145, "name": "package", "comment": null}, "platform": {"type": "string", "index": 146, "name": "platform", "comment": null}, "role": {"type": "string", "index": 147, "name": "role", "comment": null}, "storecount": {"type": "long", "index": 148, "name": "storecount", "comment": null}, "traits_email": {"type": "string", "index": 149, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 150, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 151, "name": "traits_plan", "comment": null}, "userid": {"type": "string", "index": 152, "name": "userid", "comment": null}, "website": {"type": "string", "index": 153, "name": "website", "comment": null}, "yotpoip": {"type": "string", "index": 154, "name": "yotpoip", "comment": null}, "value1": {"type": "array", "index": 155, "name": "value1", "comment": null}, "value2": {"type": "array", "index": 156, "name": "value2", "comment": null}, "value3": {"type": "array", "index": 157, "name": "value3", "comment": null}, "packageextensions": {"type": "string", "index": 158, "name": "packageextensions", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 159, "name": "rrmonthlylimit", "comment": null}, "billingproviders": {"type": "array", "index": 160, "name": "billingproviders", "comment": null}, "ctatext": {"type": "string", "index": 161, "name": "ctatext", "comment": null}, "isautopublishenabled": {"type": "boolean", "index": 162, "name": "isautopublishenabled", "comment": null}, "isbodyupdated": {"type": "boolean", "index": 163, "name": "isbodyupdated", "comment": null}, "isenabledmap": {"type": "boolean", "index": 164, "name": "isenabledmap", "comment": null}, "isprimarycolorupdated": {"type": "boolean", "index": 165, "name": "isprimarycolorupdated", "comment": null}, "ispullpastordersenabled": {"type": "boolean", "index": 166, "name": "ispullpastordersenabled", "comment": null}, "issignatureupdated": {"type": "boolean", "index": 167, "name": "issignatureupdated", "comment": null}, "isstarscolorupdated": {"type": "boolean", "index": 168, "name": "isstarscolorupdated", "comment": null}, "issubjectupdated": {"type": "boolean", "index": 169, "name": "issubjectupdated", "comment": null}, "iswidgetfontupdated": {"type": "boolean", "index": 170, "name": "iswidgetfontupdated", "comment": null}, "lastconversionordertime": {"type": "string", "index": 171, "name": "lastconversionordertime", "comment": null}, "numberorders": {"type": "string", "index": 172, "name": "numberorders", "comment": null}, "phone": {"type": "string", "index": 173, "name": "phone", "comment": null}, "planname": {"type": "string", "index": 174, "name": "planname", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 175, "name": "signupmonthlyorderscount", "comment": null}, "signupphone": {"type": "string", "index": 176, "name": "signupphone", "comment": null}, "signuputmcampaign": {"type": "string", "index": 177, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 178, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 179, "name": "signuputmsource", "comment": null}, "signupcountry": {"type": "string", "index": 180, "name": "signupcountry", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 181, "name": "isinvalidfacebooktoken", "comment": null}, "pendingrrs": {"type": "long", "index": 182, "name": "pendingrrs", "comment": null}, "chargeid": {"type": "long", "index": 183, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 184, "name": "chargeprice", "comment": null}, "subscriptionstate": {"type": "string", "index": 185, "name": "subscriptionstate", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 186, "name": "isinvalidtwittertoken", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 187, "name": "daysinvalidfacebooktoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 188, "name": "isinvalidfacebooktokendate", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 189, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 190, "name": "isinvalidpinteresttokendate", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 191, "name": "isinvalidpinteresttoken", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 192, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 193, "name": "isinvalidtwittertokendate", "comment": null}, "isreferralsselected": {"type": "boolean", "index": 194, "name": "isreferralsselected", "comment": null}, "accountselectedpoints": {"type": "long", "index": 195, "name": "accountselectedpoints", "comment": null}, "birthdayselectedpoints": {"type": "long", "index": 196, "name": "birthdayselectedpoints", "comment": null}, "purchaseselectedpoints": {"type": "long", "index": 197, "name": "purchaseselectedpoints", "comment": null}, "customerpoints": {"type": "long", "index": 198, "name": "customerpoints", "comment": null}, "frienddiscount": {"type": "long", "index": 199, "name": "frienddiscount", "comment": null}, "iscustomertabclicked": {"type": "boolean", "index": 200, "name": "iscustomertabclicked", "comment": null}, "isfriendtabclicked": {"type": "boolean", "index": 201, "name": "isfriendtabclicked", "comment": null}, "numofpoints": {"type": "long", "index": 202, "name": "numofpoints", "comment": null}, "issecondarycolorupdated": {"type": "boolean", "index": 203, "name": "issecondarycolorupdated", "comment": null}, "istabpositionupdated": {"type": "boolean", "index": 204, "name": "istabpositionupdated", "comment": null}, "storedomain": {"type": "string", "index": 205, "name": "storedomain", "comment": null}, "analytics_data_storedomain": {"type": "string", "index": 206, "name": "analytics_data_storedomain", "comment": null}, "ctaname": {"type": "string", "index": 207, "name": "ctaname", "comment": null}, "iscopycode": {"type": "boolean", "index": 208, "name": "iscopycode", "comment": null}, "issendcode": {"type": "boolean", "index": 209, "name": "issendcode", "comment": null}, "adminusername": {"type": "string", "index": 210, "name": "adminusername", "comment": null}, "isloyalty": {"type": "boolean", "index": 211, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 212, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 213, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 214, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 215, "name": "loyaltymerchantid", "comment": null}, "orgid": {"type": "string", "index": 216, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 217, "name": "orgkey", "comment": null}, "reviewspackage": {"type": "string", "index": 218, "name": "reviewspackage", "comment": null}, "smsuserid": {"type": "string", "index": 219, "name": "smsuserid", "comment": null}, "storeid": {"type": "string", "index": 220, "name": "storeid", "comment": null}, "vugcpackage": {"type": "string", "index": 221, "name": "vugcpackage", "comment": null}, "loyaltypackage": {"type": "string", "index": 222, "name": "loyaltypackage", "comment": null}, "smspackage": {"type": "string", "index": 223, "name": "smspackage", "comment": null}, "platformplan": {"type": "string", "index": 224, "name": "platformplan", "comment": null}, "storeplatformdomain": {"type": "string", "index": 225, "name": "storeplatformdomain", "comment": null}, "os20": {"type": "boolean", "index": 226, "name": "os20", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 227, "name": "is_duplicated_2", "comment": null}}, "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.yoda.platform__segment.onboarding"}, "source.yoda.infra__segment.page": {"metadata": {"type": "view", "schema": "segment", "name": "page", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "message_id": {"type": "string", "index": 5, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 6, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 7, "name": "anonymous_id", "comment": null}, "group_id": {"type": "string", "index": 8, "name": "group_id", "comment": null}, "channel": {"type": "string", "index": 9, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 10, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 11, "name": "locale", "comment": null}, "admin_user_name": {"type": "string", "index": 12, "name": "admin_user_name", "comment": null}, "app_key": {"type": "string", "index": 13, "name": "app_key", "comment": null}, "auth_0_user_id": {"type": "string", "index": 14, "name": "auth_0_user_id", "comment": null}, "is_ht": {"type": "boolean", "index": 15, "name": "is_ht", "comment": null}, "is_internal_user": {"type": "boolean", "index": 16, "name": "is_internal_user", "comment": null}, "is_loyalty": {"type": "boolean", "index": 17, "name": "is_loyalty", "comment": null}, "is_reviews": {"type": "boolean", "index": 18, "name": "is_reviews", "comment": null}, "is_sms": {"type": "boolean", "index": 19, "name": "is_sms", "comment": null}, "is_vugc": {"type": "boolean", "index": 20, "name": "is_vugc", "comment": null}, "loyalty_merchant_id": {"type": "string", "index": 21, "name": "loyalty_merchant_id", "comment": null}, "loyalty_package": {"type": "string", "index": 22, "name": "loyalty_package", "comment": null}, "org_id": {"type": "double", "index": 23, "name": "org_id", "comment": null}, "org_key": {"type": "string", "index": 24, "name": "org_key", "comment": null}, "platform": {"type": "string", "index": 25, "name": "platform", "comment": null}, "platform_plan": {"type": "string", "index": 26, "name": "platform_plan", "comment": null}, "platform_version": {"type": "string", "index": 27, "name": "platform_version", "comment": null}, "reviews_package": {"type": "string", "index": 28, "name": "reviews_package", "comment": null}, "sms_package": {"type": "string", "index": 29, "name": "sms_package", "comment": null}, "sms_user_id": {"type": "string", "index": 30, "name": "sms_user_id", "comment": null}, "store_domain": {"type": "string", "index": 31, "name": "store_domain", "comment": null}, "store_id": {"type": "string", "index": 32, "name": "store_id", "comment": null}, "store_platform_domain": {"type": "string", "index": 33, "name": "store_platform_domain", "comment": null}, "vugc_package": {"type": "string", "index": 34, "name": "vugc_package", "comment": null}, "page_context": {"type": "string", "index": 35, "name": "page_context", "comment": null}, "page_name": {"type": "string", "index": 36, "name": "page_name", "comment": null}, "page_sub_context": {"type": "string", "index": 37, "name": "page_sub_context", "comment": null}, "product": {"type": "string", "index": 38, "name": "product", "comment": null}, "category": {"type": "string", "index": 39, "name": "category", "comment": null}, "state": {"type": "string", "index": 40, "name": "state", "comment": null}, "tab_name": {"type": "string", "index": 41, "name": "tab_name", "comment": null}, "page_url": {"type": "string", "index": 42, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 43, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 44, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 45, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 46, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 47, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 48, "name": "is_desktop", "comment": null}, "campaign_source": {"type": "string", "index": 49, "name": "campaign_source", "comment": null}, "campaign_medium": {"type": "string", "index": 50, "name": "campaign_medium", "comment": null}, "campaign_content": {"type": "string", "index": 51, "name": "campaign_content", "comment": null}, "page_search": {"type": "string", "index": 52, "name": "page_search", "comment": null}, "session_id": {"type": "long", "index": 53, "name": "session_id", "comment": null}, "original_referrer": {"type": "string", "index": 54, "name": "original_referrer", "comment": null}, "violated_event": {"type": "boolean", "index": 55, "name": "violated_event", "comment": null}}, "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.yoda.infra__segment.page"}, "source.yoda.infra__segment.page_track": {"metadata": {"type": "view", "schema": "segment", "name": "page_track", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 20, "name": "rrmonthlylimit", "comment": null}, "rrssentinbillingcycle": {"type": "long", "index": 21, "name": "rrssentinbillingcycle", "comment": null}, "accountid": {"type": "long", "index": 22, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 23, "name": "adminname", "comment": null}, "admin": {"type": "string", "index": 24, "name": "admin", "comment": null}, "appkey": {"type": "string", "index": 25, "name": "appkey", "comment": null}, "billingprovider": {"type": "string", "index": 26, "name": "billingprovider", "comment": null}, "chargifybalance": {"type": "long", "index": 27, "name": "chargifybalance", "comment": null}, "chargifyrevenue": {"type": "long", "index": 28, "name": "chargifyrevenue", "comment": null}, "createdat": {"type": "string", "index": 29, "name": "createdat", "comment": null}, "daysindunning": {"type": "string", "index": 30, "name": "daysindunning", "comment": null}, "email": {"type": "string", "index": 31, "name": "email", "comment": null}, "groupid": {"type": "string", "index": 32, "name": "groupid", "comment": null}, "intercomuserhash": {"type": "string", "index": 33, "name": "intercomuserhash", "comment": null}, "isautopublishenabled": {"type": "boolean", "index": 34, "name": "isautopublishenabled", "comment": null}, "isenabledcoupons": {"type": "boolean", "index": 35, "name": "isenabledcoupons", "comment": null}, "isenabledcustomreviews": {"type": "boolean", "index": 36, "name": "isenabledcustomreviews", "comment": null}, "isenabledgsr": {"type": "boolean", "index": 37, "name": "isenabledgsr", "comment": null}, "isenabledmap": {"type": "boolean", "index": 38, "name": "isenabledmap", "comment": null}, "isenabledpla": {"type": "boolean", "index": 39, "name": "isenabledpla", "comment": null}, "isenabledpromotedproductsemail": {"type": "boolean", "index": 40, "name": "isenabledpromotedproductsemail", "comment": null}, "isenabledpromotedproductswidget": {"type": "boolean", "index": 41, "name": "isenabledpromotedproductswidget", "comment": null}, "isenabledqna": {"type": "boolean", "index": 42, "name": "isenabledqna", "comment": null}, "isenabledrichsnippets": {"type": "boolean", "index": 43, "name": "isenabledrichsnippets", "comment": null}, "ishasbadge": {"type": "boolean", "index": 44, "name": "ishasbadge", "comment": null}, "ishascomments": {"type": "boolean", "index": 45, "name": "ishascomments", "comment": null}, "ishasconverttositereview": {"type": "boolean", "index": 46, "name": "ishasconverttositereview", "comment": null}, "ishascoupons": {"type": "boolean", "index": 47, "name": "ishascoupons", "comment": null}, "ishascsseditor": {"type": "boolean", "index": 48, "name": "ishascsseditor", "comment": null}, "ishascustomreviews": {"type": "boolean", "index": 49, "name": "ishascustomreviews", "comment": null}, "ishasdedicatedpage": {"type": "boolean", "index": 50, "name": "ishasdedicatedpage", "comment": null}, "ishasgsr": {"type": "boolean", "index": 51, "name": "ishasgsr", "comment": null}, "ishasnewmainwidgetlayout": {"type": "boolean", "index": 52, "name": "ishasnewmainwidgetlayout", "comment": null}, "ishaspla": {"type": "boolean", "index": 53, "name": "ishaspla", "comment": null}, "ishaspromotedproductsemail": {"type": "boolean", "index": 54, "name": "ishaspromotedproductsemail", "comment": null}, "ishaspromotedproductswidget": {"type": "boolean", "index": 55, "name": "ishaspromotedproductswidget", "comment": null}, "ishasqna": {"type": "boolean", "index": 56, "name": "ishasqna", "comment": null}, "ishasreviewscarousel": {"type": "boolean", "index": 57, "name": "ishasreviewscarousel", "comment": null}, "ishasreviewstab": {"type": "boolean", "index": 58, "name": "ishasreviewstab", "comment": null}, "ishasrichsnippets": {"type": "boolean", "index": 59, "name": "ishasrichsnippets", "comment": null}, "ishassentmai": {"type": "boolean", "index": 60, "name": "ishassentmai", "comment": null}, "ishassentmas": {"type": "boolean", "index": 61, "name": "ishassentmas", "comment": null}, "ishassentmap": {"type": "boolean", "index": 62, "name": "ishassentmap", "comment": null}, "ishassentsitereminder": {"type": "boolean", "index": 63, "name": "ishassentsitereminder", "comment": null}, "ishassenttpr": {"type": "boolean", "index": 64, "name": "ishassenttpr", "comment": null}, "ishassenttsr": {"type": "boolean", "index": 65, "name": "ishassenttsr", "comment": null}, "ishasshoppableinstagram": {"type": "boolean", "index": 66, "name": "ishasshoppableinstagram", "comment": null}, "ishassocialpush": {"type": "boolean", "index": 67, "name": "ishassocialpush", "comment": null}, "ishasstarrating": {"type": "boolean", "index": 68, "name": "ishasstarrating", "comment": null}, "ishastpr": {"type": "boolean", "index": 69, "name": "ishastpr", "comment": null}, "ishastsr": {"type": "boolean", "index": 70, "name": "ishastsr", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 71, "name": "isinvalidfacebooktoken", "comment": null}, "ismapcustomfieldsenabled": {"type": "boolean", "index": 72, "name": "ismapcustomfieldsenabled", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 73, "name": "isnewslettersubscribed", "comment": null}, "isreceivesentimentnotification": {"type": "boolean", "index": 74, "name": "isreceivesentimentnotification", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 75, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 76, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 77, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 78, "name": "isusingpackagesservice", "comment": null}, "name": {"type": "string", "index": 79, "name": "name", "comment": null}, "packagecategories": {"type": "string", "index": 80, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 81, "name": "package", "comment": null}, "pagecategory": {"type": "string", "index": 82, "name": "pagecategory", "comment": null}, "path": {"type": "string", "index": 83, "name": "path", "comment": null}, "paysvia": {"type": "string", "index": 84, "name": "paysvia", "comment": null}, "planname": {"type": "string", "index": 85, "name": "planname", "comment": null}, "platform": {"type": "string", "index": 86, "name": "platform", "comment": null}, "recurringpaymentinterval": {"type": "long", "index": 87, "name": "recurringpaymentinterval", "comment": null}, "role": {"type": "string", "index": 88, "name": "role", "comment": null}, "signupcountry": {"type": "string", "index": 89, "name": "signupcountry", "comment": null}, "signuputmcampaign": {"type": "string", "index": 90, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 91, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 92, "name": "signuputmsource", "comment": null}, "storecount": {"type": "long", "index": 93, "name": "storecount", "comment": null}, "subscriptionstate": {"type": "string", "index": 94, "name": "subscriptionstate", "comment": null}, "title": {"type": "string", "index": 95, "name": "title", "comment": null}, "traits_email": {"type": "string", "index": 96, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 97, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 98, "name": "traits_plan", "comment": null}, "uiversion": {"type": "string", "index": 99, "name": "uiversion", "comment": null}, "url": {"type": "string", "index": 100, "name": "url", "comment": null}, "userid": {"type": "long", "index": 101, "name": "userid", "comment": null}, "website": {"type": "string", "index": 102, "name": "website", "comment": null}, "yotpoip": {"type": "string", "index": 103, "name": "yotpoip", "comment": null}, "yotpoproductscorev2": {"type": "long", "index": 104, "name": "yotpoproductscorev2", "comment": null}, "phone": {"type": "string", "index": 105, "name": "phone", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 106, "name": "signupmonthlyorderscount", "comment": null}, "signupphone": {"type": "string", "index": 107, "name": "signupphone", "comment": null}, "pendingrrs": {"type": "long", "index": 108, "name": "pendingrrs", "comment": null}, "creditcardtype": {"type": "string", "index": 109, "name": "creditcardtype", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 110, "name": "daysinvalidfacebooktoken", "comment": null}, "daystorenewal": {"type": "long", "index": 111, "name": "daystorenewal", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 112, "name": "isinvalidfacebooktokendate", "comment": null}, "lastconversionordertime": {"type": "string", "index": 113, "name": "lastconversionordertime", "comment": null}, "nameoncreditcard": {"type": "string", "index": 114, "name": "nameoncreditcard", "comment": null}, "nextchargedate": {"type": "string", "index": 115, "name": "nextchargedate", "comment": null}, "renewaldate": {"type": "string", "index": 116, "name": "renewaldate", "comment": null}, "yotpoproductscore": {"type": "long", "index": 117, "name": "yotpoproductscore", "comment": null}, "pixelversion": {"type": "long", "index": 118, "name": "pixelversion", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 119, "name": "isinvalidtwittertoken", "comment": null}, "chargeid": {"type": "long", "index": 120, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 121, "name": "chargeprice", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 122, "name": "isinvalidpinteresttoken", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 123, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 124, "name": "isinvalidtwittertokendate", "comment": null}, "packageextensions": {"type": "string", "index": 125, "name": "packageextensions", "comment": null}, "creditcardlast4digits": {"type": "string", "index": 126, "name": "creditcardlast4digits", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 127, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 128, "name": "isinvalidpinteresttokendate", "comment": null}, "billingproviders": {"type": "array", "index": 129, "name": "billingproviders", "comment": null}, "storedomain": {"type": "string", "index": 130, "name": "storedomain", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 131, "name": "is_duplicated_2", "comment": null}}, "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.yoda.infra__segment.page_track"}, "source.yoda.platform__segment.popup_displayed": {"metadata": {"type": "view", "schema": "segment", "name": "popup_displayed", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 20, "name": "rrmonthlylimit", "comment": null}, "accountid": {"type": "long", "index": 21, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 22, "name": "adminname", "comment": null}, "admin": {"type": "boolean", "index": 23, "name": "admin", "comment": null}, "appkey": {"type": "string", "index": 24, "name": "appkey", "comment": null}, "category": {"type": "string", "index": 25, "name": "category", "comment": null}, "createdat": {"type": "string", "index": 26, "name": "createdat", "comment": null}, "ctalocation": {"type": "string", "index": 27, "name": "ctalocation", "comment": null}, "email": {"type": "string", "index": 28, "name": "email", "comment": null}, "gallerytype": {"type": "string", "index": 29, "name": "gallerytype", "comment": null}, "groupid": {"type": "string", "index": 30, "name": "groupid", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 31, "name": "isinvalidfacebooktoken", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 32, "name": "isinvalidpinteresttoken", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 33, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 34, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 35, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 36, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 37, "name": "isusingpackagesservice", "comment": null}, "lastconversionordertime": {"type": "string", "index": 38, "name": "lastconversionordertime", "comment": null}, "name": {"type": "string", "index": 39, "name": "name", "comment": null}, "packagecategories": {"type": "string", "index": 40, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 41, "name": "package", "comment": null}, "path": {"type": "string", "index": 42, "name": "path", "comment": null}, "phone": {"type": "string", "index": 43, "name": "phone", "comment": null}, "planname": {"type": "string", "index": 44, "name": "planname", "comment": null}, "platform": {"type": "string", "index": 45, "name": "platform", "comment": null}, "popupcontext": {"type": "string", "index": 46, "name": "popupcontext", "comment": null}, "popupname": {"type": "string", "index": 47, "name": "popupname", "comment": null}, "role": {"type": "string", "index": 48, "name": "role", "comment": null}, "signupcountry": {"type": "string", "index": 49, "name": "signupcountry", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 50, "name": "signupmonthlyorderscount", "comment": null}, "signupphone": {"type": "string", "index": 51, "name": "signupphone", "comment": null}, "signuputmcampaign": {"type": "string", "index": 52, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 53, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 54, "name": "signuputmsource", "comment": null}, "storecount": {"type": "long", "index": 55, "name": "storecount", "comment": null}, "storedomain": {"type": "string", "index": 56, "name": "storedomain", "comment": null}, "title": {"type": "string", "index": 57, "name": "title", "comment": null}, "traits_email": {"type": "string", "index": 58, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 59, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 60, "name": "traits_plan", "comment": null}, "uiversion": {"type": "string", "index": 61, "name": "uiversion", "comment": null}, "url": {"type": "string", "index": 62, "name": "url", "comment": null}, "userid": {"type": "string", "index": 63, "name": "userid", "comment": null}, "website": {"type": "string", "index": 64, "name": "website", "comment": null}, "yotpoip": {"type": "string", "index": 65, "name": "yotpoip", "comment": null}, "billingproviders": {"type": "array", "index": 66, "name": "billingproviders", "comment": null}, "pendingrrs": {"type": "long", "index": 67, "name": "pendingrrs", "comment": null}, "popuplocation": {"type": "string", "index": 68, "name": "popuplocation", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 69, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 70, "name": "isinvalidtwittertokendate", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 71, "name": "isinvalidtwittertoken", "comment": null}, "packageextensions": {"type": "string", "index": 72, "name": "packageextensions", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 73, "name": "daysinvalidfacebooktoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 74, "name": "isinvalidfacebooktokendate", "comment": null}, "chargeid": {"type": "long", "index": 75, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 76, "name": "chargeprice", "comment": null}, "subscriptionstate": {"type": "string", "index": 77, "name": "subscriptionstate", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 78, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 79, "name": "isinvalidpinteresttokendate", "comment": null}, "product": {"type": "string", "index": 80, "name": "product", "comment": null}, "source": {"type": "string", "index": 81, "name": "source", "comment": null}, "iserror": {"type": "string", "index": 82, "name": "iserror", "comment": null}, "numoferrors": {"type": "long", "index": 83, "name": "numoferrors", "comment": null}, "numofformaterror": {"type": "long", "index": 84, "name": "numofformaterror", "comment": null}, "numofsizeerror": {"type": "long", "index": 85, "name": "numofsizeerror", "comment": null}, "adminusername": {"type": "string", "index": 86, "name": "adminusername", "comment": null}, "isloyalty": {"type": "boolean", "index": 87, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 88, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 89, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 90, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 91, "name": "loyaltymerchantid", "comment": null}, "orgid": {"type": "string", "index": 92, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 93, "name": "orgkey", "comment": null}, "reviewspackage": {"type": "string", "index": 94, "name": "reviewspackage", "comment": null}, "smsuserid": {"type": "string", "index": 95, "name": "smsuserid", "comment": null}, "storeid": {"type": "string", "index": 96, "name": "storeid", "comment": null}, "vugcpackage": {"type": "string", "index": 97, "name": "vugcpackage", "comment": null}, "loyaltypackage": {"type": "string", "index": 98, "name": "loyaltypackage", "comment": null}, "smspackage": {"type": "string", "index": 99, "name": "smspackage", "comment": null}, "storeplatformdomain": {"type": "string", "index": 100, "name": "storeplatformdomain", "comment": null}, "platformplan": {"type": "string", "index": 101, "name": "platformplan", "comment": null}, "os20": {"type": "boolean", "index": 102, "name": "os20", "comment": null}, "producturl": {"type": "string", "index": 103, "name": "producturl", "comment": null}, "isinternaluser": {"type": "boolean", "index": 104, "name": "isinternaluser", "comment": null}, "btncontext": {"type": "string", "index": 105, "name": "btncontext", "comment": null}, "btnlocation": {"type": "string", "index": 106, "name": "btnlocation", "comment": null}, "btnname": {"type": "string", "index": 107, "name": "btnname", "comment": null}, "btntext": {"type": "string", "index": 108, "name": "btntext", "comment": null}, "company_name": {"type": "string", "index": 109, "name": "company_name", "comment": null}, "featurename": {"type": "string", "index": 110, "name": "featurename", "comment": null}, "loyaltyemail": {"type": "string", "index": 111, "name": "loyaltyemail", "comment": null}, "merchant_id": {"type": "long", "index": 112, "name": "merchant_id", "comment": null}, "pagecontext": {"type": "string", "index": 113, "name": "pagecontext", "comment": null}, "pagename": {"type": "string", "index": 114, "name": "pagename", "comment": null}, "pagesubcontext": {"type": "string", "index": 115, "name": "pagesubcontext", "comment": null}, "platform_plan": {"type": "string", "index": 116, "name": "platform_plan", "comment": null}, "tabname": {"type": "string", "index": 117, "name": "tabname", "comment": null}, "thirty_day_order_volume": {"type": "long", "index": 118, "name": "thirty_day_order_volume", "comment": null}, "thirty_day_revenue_cents": {"type": "long", "index": 119, "name": "thirty_day_revenue_cents", "comment": null}, "traits_package": {"type": "string", "index": 120, "name": "traits_package", "comment": null}, "traits_platform": {"type": "string", "index": 121, "name": "traits_platform", "comment": null}, "actioncontext": {"type": "string", "index": 122, "name": "actioncontext", "comment": null}, "actionlocation": {"type": "string", "index": 123, "name": "actionlocation", "comment": null}, "actiontype": {"type": "string", "index": 124, "name": "actiontype", "comment": null}, "ctaname": {"type": "string", "index": 125, "name": "ctaname", "comment": null}, "ctatext": {"type": "string", "index": 126, "name": "ctatext", "comment": null}, "ctatype": {"type": "string", "index": 127, "name": "ctatype", "comment": null}, "eventtype": {"type": "string", "index": 128, "name": "eventtype", "comment": null}, "layout": {"type": "string", "index": 129, "name": "layout", "comment": null}, "mobiletabposition": {"type": "string", "index": 130, "name": "mobiletabposition", "comment": null}, "pagecategory": {"type": "string", "index": 131, "name": "pagecategory", "comment": null}, "tabposition": {"type": "string", "index": 132, "name": "tabposition", "comment": null}, "campaigntype": {"type": "string", "index": 133, "name": "campaigntype", "comment": null}, "isenabled": {"type": "boolean", "index": 134, "name": "isenabled", "comment": null}, "istargeted": {"type": "boolean", "index": 135, "name": "istargeted", "comment": null}, "count": {"type": "long", "index": 136, "name": "count", "comment": null}, "field": {"type": "string", "index": 137, "name": "field", "comment": null}, "reasons": {"type": "string", "index": 138, "name": "reasons", "comment": null}, "status": {"type": "string", "index": 139, "name": "status", "comment": null}, "popupsubcontext": {"type": "string", "index": 140, "name": "popupsubcontext", "comment": null}, "state": {"type": "string", "index": 141, "name": "state", "comment": null}, "useremail": {"type": "string", "index": 142, "name": "useremail", "comment": null}, "auth0userid": {"type": "string", "index": 143, "name": "auth0userid", "comment": null}, "numofformaterrors": {"type": "long", "index": 144, "name": "numofformaterrors", "comment": null}, "numofsizeerrors": {"type": "long", "index": 145, "name": "numofsizeerrors", "comment": null}, "owner": {"type": "string", "index": 146, "name": "owner", "comment": null}, "installedplatformname": {"type": "string", "index": 147, "name": "installedplatformname", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 148, "name": "is_duplicated_2", "comment": null}, "platformname": {"type": "string", "index": 149, "name": "platformname", "comment": null}, "actionrequired": {"type": "string", "index": 150, "name": "actionrequired", "comment": null}, "applicationid": {"type": "long", "index": 151, "name": "applicationid", "comment": null}, "applicationname": {"type": "string", "index": 152, "name": "applicationname", "comment": null}, "availableproductlines": {"type": "string", "index": 153, "name": "availableproductlines", "comment": null}, "installedproductlines": {"type": "string", "index": 154, "name": "installedproductlines", "comment": null}, "isexternal": {"type": "boolean", "index": 155, "name": "isexternal", "comment": null}, "authtype": {"type": "string", "index": 156, "name": "authtype", "comment": null}, "eventname": {"type": "string", "index": 157, "name": "eventname", "comment": null}, "productlineadmin": {"type": "string", "index": 158, "name": "productlineadmin", "comment": null}}, "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.yoda.platform__segment.popup_displayed"}, "source.yoda.platform__segment.product_enabled": {"metadata": {"type": "view", "schema": "segment", "name": "product_enabled", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 20, "name": "rrmonthlylimit", "comment": null}, "accountid": {"type": "long", "index": 21, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 22, "name": "adminname", "comment": null}, "appkey": {"type": "string", "index": 23, "name": "appkey", "comment": null}, "createdat": {"type": "string", "index": 24, "name": "createdat", "comment": null}, "email": {"type": "string", "index": 25, "name": "email", "comment": null}, "enablementlocation": {"type": "string", "index": 26, "name": "enablementlocation", "comment": null}, "enablementsource": {"type": "string", "index": 27, "name": "enablementsource", "comment": null}, "groupid": {"type": "string", "index": 28, "name": "groupid", "comment": null}, "isfirstproduct": {"type": "long", "index": 29, "name": "isfirstproduct", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 30, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 31, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 32, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 33, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 34, "name": "isusingpackagesservice", "comment": null}, "name": {"type": "string", "index": 35, "name": "name", "comment": null}, "newpackage": {"type": "string", "index": 36, "name": "newpackage", "comment": null}, "packagecategories": {"type": "string", "index": 37, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 38, "name": "package", "comment": null}, "phone": {"type": "string", "index": 39, "name": "phone", "comment": null}, "planname": {"type": "string", "index": 40, "name": "planname", "comment": null}, "platform": {"type": "string", "index": 41, "name": "platform", "comment": null}, "product": {"type": "string", "index": 42, "name": "product", "comment": null}, "reviewspackage": {"type": "string", "index": 43, "name": "reviewspackage", "comment": null}, "role": {"type": "string", "index": 44, "name": "role", "comment": null}, "signupcountry": {"type": "string", "index": 45, "name": "signupcountry", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 46, "name": "signupmonthlyorderscount", "comment": null}, "signupphone": {"type": "string", "index": 47, "name": "signupphone", "comment": null}, "signuputmcampaign": {"type": "string", "index": 48, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 49, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 50, "name": "signuputmsource", "comment": null}, "storecount": {"type": "long", "index": 51, "name": "storecount", "comment": null}, "storedomain": {"type": "string", "index": 52, "name": "storedomain", "comment": null}, "traits_email": {"type": "string", "index": 53, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 54, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 55, "name": "traits_plan", "comment": null}, "userid": {"type": "long", "index": 56, "name": "userid", "comment": null}, "vugcpackage": {"type": "string", "index": 57, "name": "vugcpackage", "comment": null}, "website": {"type": "string", "index": 58, "name": "website", "comment": null}, "smspackage": {"type": "string", "index": 59, "name": "smspackage", "comment": null}, "billingproviders": {"type": "array", "index": 60, "name": "billingproviders", "comment": null}, "lastconversionordertime": {"type": "string", "index": 61, "name": "lastconversionordertime", "comment": null}, "pendingrrs": {"type": "long", "index": 62, "name": "pendingrrs", "comment": null}, "subscriptionstate": {"type": "string", "index": 63, "name": "subscriptionstate", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 64, "name": "isinvalidfacebooktoken", "comment": null}, "loyaltypackage": {"type": "string", "index": 65, "name": "loyaltypackage", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 66, "name": "daysinvalidfacebooktoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 67, "name": "isinvalidfacebooktokendate", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 68, "name": "isinvalidtwittertoken", "comment": null}, "packageextensions": {"type": "string", "index": 69, "name": "packageextensions", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 70, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 71, "name": "isinvalidtwittertokendate", "comment": null}, "chargeid": {"type": "long", "index": 72, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 73, "name": "chargeprice", "comment": null}, "referrerproduct": {"type": "string", "index": 74, "name": "referrerproduct", "comment": null}, "referrercampaign": {"type": "string", "index": 75, "name": "referrercampaign", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 76, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 77, "name": "isinvalidpinteresttokendate", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 78, "name": "isinvalidpinteresttoken", "comment": null}, "adminusername": {"type": "string", "index": 79, "name": "adminusername", "comment": null}, "isinternaluser": {"type": "boolean", "index": 80, "name": "isinternaluser", "comment": null}, "isloyalty": {"type": "boolean", "index": 81, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 82, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 83, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 84, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 85, "name": "loyaltymerchantid", "comment": null}, "orgid": {"type": "long", "index": 86, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 87, "name": "orgkey", "comment": null}, "smsuserid": {"type": "string", "index": 88, "name": "smsuserid", "comment": null}, "storeid": {"type": "string", "index": 89, "name": "storeid", "comment": null}, "storeplatformdomain": {"type": "string", "index": 90, "name": "storeplatformdomain", "comment": null}, "useremail": {"type": "string", "index": 91, "name": "useremail", "comment": null}, "platformplan": {"type": "string", "index": 92, "name": "platformplan", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 93, "name": "is_duplicated_2", "comment": null}}, "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.yoda.platform__segment.product_enabled"}, "source.yoda.sms__segment.sms_campaign_created": {"metadata": {"type": "view", "schema": "segment", "name": "sms_campaign_created", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "adminusername": {"type": "string", "index": 20, "name": "adminusername", "comment": null}, "appkey": {"type": "string", "index": 21, "name": "appkey", "comment": null}, "audiencesize": {"type": "string", "index": 22, "name": "audiencesize", "comment": null}, "clicktobuyadded": {"type": "long", "index": 23, "name": "clicktobuyadded", "comment": null}, "contentedited": {"type": "long", "index": 24, "name": "contentedited", "comment": null}, "customname": {"type": "long", "index": 25, "name": "customname", "comment": null}, "discountadded": {"type": "long", "index": 26, "name": "discountadded", "comment": null}, "emojiadded": {"type": "long", "index": 27, "name": "emojiadded", "comment": null}, "imageadded": {"type": "long", "index": 28, "name": "imageadded", "comment": null}, "isabtesting": {"type": "long", "index": 29, "name": "isabtesting", "comment": null}, "isinternaluser": {"type": "boolean", "index": 30, "name": "isinternaluser", "comment": null}, "isloyalty": {"type": "boolean", "index": 31, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 32, "name": "isreviews", "comment": null}, "isscheduled": {"type": "long", "index": 33, "name": "isscheduled", "comment": null}, "issmartsending": {"type": "long", "index": 34, "name": "issmartsending", "comment": null}, "issms": {"type": "boolean", "index": 35, "name": "issms", "comment": null}, "istimezonebased": {"type": "long", "index": 36, "name": "istimezonebased", "comment": null}, "isvugc": {"type": "boolean", "index": 37, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 38, "name": "loyaltymerchantid", "comment": null}, "loyalyshortcodeadded": {"type": "long", "index": 39, "name": "loyalyshortcodeadded", "comment": null}, "orgid": {"type": "long", "index": 40, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 41, "name": "orgkey", "comment": null}, "path": {"type": "string", "index": 42, "name": "path", "comment": null}, "platformplan": {"type": "string", "index": 43, "name": "platformplan", "comment": null}, "platform": {"type": "string", "index": 44, "name": "platform", "comment": null}, "product": {"type": "string", "index": 45, "name": "product", "comment": null}, "reviewspackage": {"type": "string", "index": 46, "name": "reviewspackage", "comment": null}, "reviewsshortcodeadded": {"type": "long", "index": 47, "name": "reviewsshortcodeadded", "comment": null}, "smspackage": {"type": "string", "index": 48, "name": "smspackage", "comment": null}, "smsuserid": {"type": "string", "index": 49, "name": "smsuserid", "comment": null}, "storedomain": {"type": "string", "index": 50, "name": "storedomain", "comment": null}, "storeid": {"type": "string", "index": 51, "name": "storeid", "comment": null}, "storeplatformdomain": {"type": "string", "index": 52, "name": "storeplatformdomain", "comment": null}, "targetedaudience": {"type": "string", "index": 53, "name": "targetedaudience", "comment": null}, "texttobuyadded": {"type": "long", "index": 54, "name": "texttobuyadded", "comment": null}, "title": {"type": "string", "index": 55, "name": "title", "comment": null}, "url": {"type": "string", "index": 56, "name": "url", "comment": null}, "useremail": {"type": "string", "index": 57, "name": "useremail", "comment": null}, "userid": {"type": "long", "index": 58, "name": "userid", "comment": null}, "loyaltypackage": {"type": "string", "index": 59, "name": "loyaltypackage", "comment": null}, "vugcpackage": {"type": "string", "index": 60, "name": "vugcpackage", "comment": null}, "auth0userid": {"type": "string", "index": 61, "name": "auth0userid", "comment": null}, "abtestgroupsize": {"type": "string", "index": 62, "name": "abtestgroupsize", "comment": null}, "abtestperiod": {"type": "string", "index": 63, "name": "abtestperiod", "comment": null}, "abtestingnumberoftestgroups": {"type": "string", "index": 64, "name": "abtestingnumberoftestgroups", "comment": null}, "abwinningmetric": {"type": "string", "index": 65, "name": "abwinningmetric", "comment": null}, "campaignid": {"type": "string", "index": 66, "name": "campaignid", "comment": null}, "discountcodeadded": {"type": "long", "index": 67, "name": "discountcodeadded", "comment": null}, "discounturladded": {"type": "long", "index": 68, "name": "discounturladded", "comment": null}, "discountvalueadded": {"type": "long", "index": 69, "name": "discountvalueadded", "comment": null}, "excludedaudience": {"type": "long", "index": 70, "name": "excludedaudience", "comment": null}, "firstnameadded": {"type": "long", "index": 71, "name": "firstnameadded", "comment": null}, "haslists": {"type": "long", "index": 72, "name": "haslists", "comment": null}, "hasloyaltysegments": {"type": "long", "index": 73, "name": "hasloyaltysegments", "comment": null}, "haspredictivesegments": {"type": "boolean", "index": 74, "name": "haspredictivesegments", "comment": null}, "hasreviewssegments": {"type": "long", "index": 75, "name": "hasreviewssegments", "comment": null}, "lastnameadded": {"type": "long", "index": 76, "name": "lastnameadded", "comment": null}, "sitenameadded": {"type": "long", "index": 77, "name": "sitenameadded", "comment": null}, "siteurladded": {"type": "long", "index": 78, "name": "siteurladded", "comment": null}, "usedpredefinedsegments_activebuyers": {"type": "long", "index": 79, "name": "usedpredefinedsegments_activebuyers", "comment": null}, "usedpredefinedsegments_allemailsubscribers": {"type": "long", "index": 80, "name": "usedpredefinedsegments_allemailsubscribers", "comment": null}, "usedpredefinedsegments_churnrisk": {"type": "long", "index": 81, "name": "usedpredefinedsegments_churnrisk", "comment": null}, "usedpredefinedsegments_emailconvertedsubscriberslast7days": {"type": "long", "index": 82, "name": "usedpredefinedsegments_emailconvertedsubscriberslast7days", "comment": null}, "usedpredefinedsegments_enagagedemailsubscirberslast30days": {"type": "long", "index": 83, "name": "usedpredefinedsegments_enagagedemailsubscirberslast30days", "comment": null}, "usedpredefinedsegments_haventpurchasetsincelastmonth": {"type": "long", "index": 84, "name": "usedpredefinedsegments_haventpurchasetsincelastmonth", "comment": null}, "usedpredefinedsegments_potentialbuyers": {"type": "long", "index": 85, "name": "usedpredefinedsegments_potentialbuyers", "comment": null}, "usedpredefinedsegments_purchasesbyemailsubscriberslast30days": {"type": "long", "index": 86, "name": "usedpredefinedsegments_purchasesbyemailsubscriberslast30days", "comment": null}, "usedpredefinedsegments_repeatbuyers": {"type": "long", "index": 87, "name": "usedpredefinedsegments_repeatbuyers", "comment": null}, "usedpredefinedsegments_smsconvertedsubscriberslast7days": {"type": "long", "index": 88, "name": "usedpredefinedsegments_smsconvertedsubscriberslast7days", "comment": null}, "usedpredefinedsegments_smsengagedsubscribers": {"type": "long", "index": 89, "name": "usedpredefinedsegments_smsengagedsubscribers", "comment": null}, "usedpredefinedsegments_softbouncedsubscriberslast7days": {"type": "long", "index": 90, "name": "usedpredefinedsegments_softbouncedsubscriberslast7days", "comment": null}, "usedpredefinedsegments_subscribersnotpurchased": {"type": "long", "index": 91, "name": "usedpredefinedsegments_subscribersnotpurchased", "comment": null}, "usedpredefinedsegments_textmarketinglist": {"type": "long", "index": 92, "name": "usedpredefinedsegments_textmarketinglist", "comment": null}, "usedpredefinedsegments_top1sendedrs": {"type": "long", "index": 93, "name": "usedpredefinedsegments_top1sendedrs", "comment": null}, "usedpredefinedsegments_topsenders": {"type": "long", "index": 94, "name": "usedpredefinedsegments_topsenders", "comment": null}, "usedtemplate": {"type": "string", "index": 95, "name": "usedtemplate", "comment": null}, "usedpredefinedsegments_engagedemailsubscriberslast30days": {"type": "long", "index": 96, "name": "usedpredefinedsegments_engagedemailsubscriberslast30days", "comment": null}, "usedpredefinedsegments_haventpurchasedsincelastmonth": {"type": "long", "index": 97, "name": "usedpredefinedsegments_haventpurchasedsincelastmonth", "comment": null}, "usedpredefinedsegments_top1senders": {"type": "long", "index": 98, "name": "usedpredefinedsegments_top1senders", "comment": null}, "usedpredefinedsegments_top1spenders": {"type": "long", "index": 99, "name": "usedpredefinedsegments_top1spenders", "comment": null}, "usedpredefinedsegments_topspenders": {"type": "long", "index": 100, "name": "usedpredefinedsegments_topspenders", "comment": null}, "isdatechanged": {"type": "long", "index": 101, "name": "isdatechanged", "comment": null}, "timechosen": {"type": "string", "index": 102, "name": "timechosen", "comment": null}, "packagecategories": {"type": "string", "index": 103, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 104, "name": "package", "comment": null}, "dndcoveragepercentage": {"type": "long", "index": 105, "name": "dndcoveragepercentage", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 106, "name": "is_duplicated_2", "comment": null}, "usedaitemplate_aitemplateused": {"type": "long", "index": 107, "name": "usedaitemplate_aitemplateused", "comment": null}, "usedaitemplate_aicampaigntype": {"type": "string", "index": 108, "name": "usedaitemplate_aicampaigntype", "comment": null}, "usedaitemplate_aidiscountcode": {"type": "long", "index": 109, "name": "usedaitemplate_aidiscountcode", "comment": null}, "usedaitemplate_aidiscounttype": {"type": "string", "index": 110, "name": "usedaitemplate_aidiscounttype", "comment": null}, "usedaitemplate_aitoneofvoice": {"type": "string", "index": 111, "name": "usedaitemplate_aitoneofvoice", "comment": null}, "usedaitemplate_aiurgency": {"type": "string", "index": 112, "name": "usedaitemplate_aiurgency", "comment": null}, "hasactiveonsitesegment": {"type": "boolean", "index": 113, "name": "hasactiveonsitesegment", "comment": null}, "hasaddedtocartsegment": {"type": "boolean", "index": 114, "name": "hasaddedtocartsegment", "comment": null}, "hasproductviewedsegment": {"type": "boolean", "index": 115, "name": "hasproductviewedsegment", "comment": null}, "isaitemplate": {"type": "long", "index": 116, "name": "isaitemplate", "comment": null}, "isbrowsetemplates": {"type": "long", "index": 117, "name": "isbrowsetemplates", "comment": null}, "iscampaignplanner": {"type": "long", "index": 118, "name": "iscampaignplanner", "comment": null}, "iscreatenew": {"type": "long", "index": 119, "name": "iscreatenew", "comment": null}, "isduplicate": {"type": "long", "index": 120, "name": "isduplicate", "comment": null}, "ishomerecommendations": {"type": "long", "index": 121, "name": "ishomerecommendations", "comment": null}, "istopbarcreatesmscampaign": {"type": "long", "index": 122, "name": "istopbarcreatesmscampaign", "comment": null}, "source": {"type": "string", "index": 123, "name": "source", "comment": null}, "hasvirtualcontactcard": {"type": "long", "index": 124, "name": "hasvirtualcontactcard", "comment": null}}, "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.yoda.sms__segment.sms_campaign_created"}, "source.yoda.subscriptions__segment.subscription_ended_v2": {"metadata": {"type": "view", "schema": "segment", "name": "subscription_ended_v2", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "billingprovider": {"type": "string", "index": 20, "name": "billingprovider", "comment": null}, "chargecurrency": {"type": "string", "index": 21, "name": "chargecurrency", "comment": null}, "chargeprice": {"type": "string", "index": 22, "name": "chargeprice", "comment": null}, "groupid": {"type": "string", "index": 23, "name": "groupid", "comment": null}, "name": {"type": "string", "index": 24, "name": "name", "comment": null}, "newpackage": {"type": "string", "index": 25, "name": "newpackage", "comment": null}, "oldpackagemonthlyprice": {"type": "string", "index": 26, "name": "oldpackagemonthlyprice", "comment": null}, "oldpackage": {"type": "string", "index": 27, "name": "oldpackage", "comment": null}, "packagecategories": {"type": "string", "index": 28, "name": "packagecategories", "comment": null}, "product": {"type": "string", "index": 29, "name": "product", "comment": null}, "source": {"type": "string", "index": 30, "name": "source", "comment": null}, "zuorasubscriptionname": {"type": "string", "index": 31, "name": "zuorasubscriptionname", "comment": null}, "grouptype": {"type": "string", "index": 32, "name": "grouptype", "comment": null}, "orgcreatedat": {"type": "string", "index": 33, "name": "orgcreatedat", "comment": null}, "orgemail": {"type": "string", "index": 34, "name": "orgemail", "comment": null}, "orgisreviews": {"type": "boolean", "index": 35, "name": "orgisreviews", "comment": null}, "orgissms": {"type": "boolean", "index": 36, "name": "orgissms", "comment": null}, "orgistest": {"type": "boolean", "index": 37, "name": "orgistest", "comment": null}, "orgisvugc": {"type": "boolean", "index": 38, "name": "orgisvugc", "comment": null}, "orgloyaltymonthlyprice": {"type": "long", "index": 39, "name": "orgloyaltymonthlyprice", "comment": null}, "orgorganizationkey": {"type": "string", "index": 40, "name": "orgorganizationkey", "comment": null}, "orgreviewsmonthlyprice": {"type": "long", "index": 41, "name": "orgreviewsmonthlyprice", "comment": null}, "orgreviewspackage": {"type": "string", "index": 42, "name": "orgreviewspackage", "comment": null}, "orgsmsmonthlyprice": {"type": "long", "index": 43, "name": "orgsmsmonthlyprice", "comment": null}, "orgstorecount": {"type": "long", "index": 44, "name": "orgstorecount", "comment": null}, "orgstorelimit": {"type": "string", "index": 45, "name": "orgstorelimit", "comment": null}, "orgvugcmonthlyprice": {"type": "long", "index": 46, "name": "orgvugcmonthlyprice", "comment": null}, "org_isloyalty": {"type": "boolean", "index": 47, "name": "org_isloyalty", "comment": null}, "orgname": {"type": "string", "index": 48, "name": "orgname", "comment": null}, "orgsignupcountry": {"type": "string", "index": 49, "name": "orgsignupcountry", "comment": null}, "orgloyaltypackage": {"type": "string", "index": 50, "name": "orgloyaltypackage", "comment": null}, "orgbillingproviders": {"type": "array", "index": 51, "name": "orgbillingproviders", "comment": null}, "orgvugcpackage": {"type": "string", "index": 52, "name": "orgvugcpackage", "comment": null}, "orgsmspackage": {"type": "string", "index": 53, "name": "orgsmspackage", "comment": null}, "orgpackageextensions": {"type": "string", "index": 54, "name": "orgpackageextensions", "comment": null}, "adminusername": {"type": "string", "index": 55, "name": "adminusername", "comment": null}, "appkey": {"type": "string", "index": 56, "name": "appkey", "comment": null}, "category": {"type": "string", "index": 57, "name": "category", "comment": null}, "isinternaluser": {"type": "boolean", "index": 58, "name": "isinternaluser", "comment": null}, "isloyalty": {"type": "boolean", "index": 59, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 60, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 61, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 62, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 63, "name": "loyaltymerchantid", "comment": null}, "newpackageid": {"type": "long", "index": 64, "name": "newpackageid", "comment": null}, "oldpackageid": {"type": "long", "index": 65, "name": "oldpackageid", "comment": null}, "orgid": {"type": "long", "index": 66, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 67, "name": "orgkey", "comment": null}, "platformplan": {"type": "string", "index": 68, "name": "platformplan", "comment": null}, "platform": {"type": "string", "index": 69, "name": "platform", "comment": null}, "reviewspackage": {"type": "string", "index": 70, "name": "reviewspackage", "comment": null}, "smsuserid": {"type": "string", "index": 71, "name": "smsuserid", "comment": null}, "storedomain": {"type": "string", "index": 72, "name": "storedomain", "comment": null}, "storeid": {"type": "string", "index": 73, "name": "storeid", "comment": null}, "storeplatformdomain": {"type": "string", "index": 74, "name": "storeplatformdomain", "comment": null}, "userid": {"type": "long", "index": 75, "name": "userid", "comment": null}, "vugcpackage": {"type": "string", "index": 76, "name": "vugcpackage", "comment": null}, "loyaltypackage": {"type": "string", "index": 77, "name": "loyaltypackage", "comment": null}, "smspackage": {"type": "string", "index": 78, "name": "smspackage", "comment": null}, "useremail": {"type": "string", "index": 79, "name": "useremail", "comment": null}, "newpackagemonthlyprice": {"type": "long", "index": 80, "name": "newpackagemonthlyprice", "comment": null}, "isoldsubscriptionltannual": {"type": "boolean", "index": 81, "name": "isoldsubscriptionltannual", "comment": null}, "package": {"type": "string", "index": 82, "name": "package", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 83, "name": "is_duplicated_2", "comment": null}}, "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.yoda.subscriptions__segment.subscription_ended_v2"}, "source.yoda.subscriptions__segment.subscription_started_v2": {"metadata": {"type": "view", "schema": "segment", "name": "subscription_started_v2", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "billingprovider": {"type": "string", "index": 20, "name": "billingprovider", "comment": null}, "chargecurrency": {"type": "string", "index": 21, "name": "chargecurrency", "comment": null}, "chargeprice": {"type": "string", "index": 22, "name": "chargeprice", "comment": null}, "groupid": {"type": "string", "index": 23, "name": "groupid", "comment": null}, "name": {"type": "string", "index": 24, "name": "name", "comment": null}, "newpackagemonthlyprice": {"type": "string", "index": 25, "name": "newpackagemonthlyprice", "comment": null}, "newpackage": {"type": "string", "index": 26, "name": "newpackage", "comment": null}, "oldpackage": {"type": "string", "index": 27, "name": "oldpackage", "comment": null}, "packagecategories": {"type": "string", "index": 28, "name": "packagecategories", "comment": null}, "product": {"type": "string", "index": 29, "name": "product", "comment": null}, "source": {"type": "string", "index": 30, "name": "source", "comment": null}, "zuorasubscriptionname": {"type": "string", "index": 31, "name": "zuorasubscriptionname", "comment": null}, "grouptype": {"type": "string", "index": 32, "name": "grouptype", "comment": null}, "orgbillingproviders": {"type": "array", "index": 33, "name": "orgbillingproviders", "comment": null}, "orgcreatedat": {"type": "string", "index": 34, "name": "orgcreatedat", "comment": null}, "orgemail": {"type": "string", "index": 35, "name": "orgemail", "comment": null}, "orgisreviews": {"type": "boolean", "index": 36, "name": "orgisreviews", "comment": null}, "orgissms": {"type": "boolean", "index": 37, "name": "orgissms", "comment": null}, "orgistest": {"type": "boolean", "index": 38, "name": "orgistest", "comment": null}, "orgisvugc": {"type": "boolean", "index": 39, "name": "orgisvugc", "comment": null}, "orgloyaltymonthlyprice": {"type": "long", "index": 40, "name": "orgloyaltymonthlyprice", "comment": null}, "orgname": {"type": "string", "index": 41, "name": "orgname", "comment": null}, "orgorganizationkey": {"type": "string", "index": 42, "name": "orgorganizationkey", "comment": null}, "orgreviewsmonthlyprice": {"type": "long", "index": 43, "name": "orgreviewsmonthlyprice", "comment": null}, "orgreviewspackage": {"type": "string", "index": 44, "name": "orgreviewspackage", "comment": null}, "orgsignupcountry": {"type": "string", "index": 45, "name": "orgsignupcountry", "comment": null}, "orgsmsmonthlyprice": {"type": "long", "index": 46, "name": "orgsmsmonthlyprice", "comment": null}, "orgstorecount": {"type": "long", "index": 47, "name": "orgstorecount", "comment": null}, "orgstorelimit": {"type": "string", "index": 48, "name": "orgstorelimit", "comment": null}, "orgvugcmonthlyprice": {"type": "long", "index": 49, "name": "orgvugcmonthlyprice", "comment": null}, "org_isloyalty": {"type": "boolean", "index": 50, "name": "org_isloyalty", "comment": null}, "orgvugcpackage": {"type": "string", "index": 51, "name": "orgvugcpackage", "comment": null}, "orgsmspackage": {"type": "string", "index": 52, "name": "orgsmspackage", "comment": null}, "orgloyaltypackage": {"type": "string", "index": 53, "name": "orgloyaltypackage", "comment": null}, "adminusername": {"type": "string", "index": 54, "name": "adminusername", "comment": null}, "appkey": {"type": "string", "index": 55, "name": "appkey", "comment": null}, "isinternaluser": {"type": "boolean", "index": 56, "name": "isinternaluser", "comment": null}, "isloyalty": {"type": "boolean", "index": 57, "name": "isloyalty", "comment": null}, "isreviews": {"type": "boolean", "index": 58, "name": "isreviews", "comment": null}, "issms": {"type": "boolean", "index": 59, "name": "issms", "comment": null}, "isvugc": {"type": "boolean", "index": 60, "name": "isvugc", "comment": null}, "loyaltymerchantid": {"type": "string", "index": 61, "name": "loyaltymerchantid", "comment": null}, "orgid": {"type": "long", "index": 62, "name": "orgid", "comment": null}, "orgkey": {"type": "string", "index": 63, "name": "orgkey", "comment": null}, "platformplan": {"type": "string", "index": 64, "name": "platformplan", "comment": null}, "platform": {"type": "string", "index": 65, "name": "platform", "comment": null}, "reviewspackage": {"type": "string", "index": 66, "name": "reviewspackage", "comment": null}, "smspackage": {"type": "string", "index": 67, "name": "smspackage", "comment": null}, "smsuserid": {"type": "string", "index": 68, "name": "smsuserid", "comment": null}, "storedomain": {"type": "string", "index": 69, "name": "storedomain", "comment": null}, "storeid": {"type": "string", "index": 70, "name": "storeid", "comment": null}, "storeplatformdomain": {"type": "string", "index": 71, "name": "storeplatformdomain", "comment": null}, "userid": {"type": "long", "index": 72, "name": "userid", "comment": null}, "vugcpackage": {"type": "string", "index": 73, "name": "vugcpackage", "comment": null}, "loyaltypackage": {"type": "string", "index": 74, "name": "loyaltypackage", "comment": null}, "useremail": {"type": "string", "index": 75, "name": "useremail", "comment": null}, "isnewsubscriptionltannual": {"type": "boolean", "index": 76, "name": "isnewsubscriptionltannual", "comment": null}, "package": {"type": "string", "index": 77, "name": "package", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 78, "name": "is_duplicated_2", "comment": null}, "promotion_name": {"type": "string", "index": 79, "name": "promotion_name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.subscriptions__segment.subscription_started_v2"}, "source.yoda.loyalty__segment.uninstall_loyalty": {"metadata": {"type": "view", "schema": "segment", "name": "uninstall_loyalty", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "accountid": {"type": "long", "index": 20, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 21, "name": "adminname", "comment": null}, "appkey": {"type": "string", "index": 22, "name": "appkey", "comment": null}, "company_name": {"type": "string", "index": 23, "name": "company_name", "comment": null}, "createdat": {"type": "string", "index": 24, "name": "createdat", "comment": null}, "currentplan": {"type": "string", "index": 25, "name": "currentplan", "comment": null}, "email": {"type": "string", "index": 26, "name": "email", "comment": null}, "groupid": {"type": "string", "index": 27, "name": "groupid", "comment": null}, "initialbucketnumoforders": {"type": "string", "index": 28, "name": "initialbucketnumoforders", "comment": null}, "initialnumoforders": {"type": "long", "index": 29, "name": "initialnumoforders", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 30, "name": "isnewslettersubscribed", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 31, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 32, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 33, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 34, "name": "isusingpackagesservice", "comment": null}, "last30daysbucketorder": {"type": "string", "index": 35, "name": "last30daysbucketorder", "comment": null}, "last30daysorder": {"type": "long", "index": 36, "name": "last30daysorder", "comment": null}, "loyaltyemail": {"type": "string", "index": 37, "name": "loyaltyemail", "comment": null}, "loyaltypackage": {"type": "string", "index": 38, "name": "loyaltypackage", "comment": null}, "merchant_id": {"type": "long", "index": 39, "name": "merchant_id", "comment": null}, "name": {"type": "string", "index": 40, "name": "name", "comment": null}, "owner": {"type": "string", "index": 41, "name": "owner", "comment": null}, "packagecategories": {"type": "string", "index": 42, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 43, "name": "package", "comment": null}, "platform_plan": {"type": "string", "index": 44, "name": "platform_plan", "comment": null}, "platform": {"type": "string", "index": 45, "name": "platform", "comment": null}, "product": {"type": "string", "index": 46, "name": "product", "comment": null}, "role": {"type": "string", "index": 47, "name": "role", "comment": null}, "storecount": {"type": "long", "index": 48, "name": "storecount", "comment": null}, "storedomain": {"type": "string", "index": 49, "name": "storedomain", "comment": null}, "traits_email": {"type": "string", "index": 50, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 51, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 52, "name": "traits_plan", "comment": null}, "userid": {"type": "long", "index": 53, "name": "userid", "comment": null}, "website": {"type": "string", "index": 54, "name": "website", "comment": null}, "yotpoip": {"type": "string", "index": 55, "name": "yotpoip", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 56, "name": "rrmonthlylimit", "comment": null}, "lastconversionordertime": {"type": "string", "index": 57, "name": "lastconversionordertime", "comment": null}, "planname": {"type": "string", "index": 58, "name": "planname", "comment": null}, "signupcountry": {"type": "string", "index": 59, "name": "signupcountry", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 60, "name": "signupmonthlyorderscount", "comment": null}, "signuputmcampaign": {"type": "string", "index": 61, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 62, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 63, "name": "signuputmsource", "comment": null}, "billingproviders": {"type": "array", "index": 64, "name": "billingproviders", "comment": null}, "chargeid": {"type": "long", "index": 65, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 66, "name": "chargeprice", "comment": null}, "phone": {"type": "string", "index": 67, "name": "phone", "comment": null}, "signupphone": {"type": "string", "index": 68, "name": "signupphone", "comment": null}, "subscriptionstate": {"type": "string", "index": 69, "name": "subscriptionstate", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 70, "name": "daysinvalidfacebooktoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 71, "name": "isinvalidfacebooktokendate", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 72, "name": "isinvalidfacebooktoken", "comment": null}, "pendingrrs": {"type": "long", "index": 73, "name": "pendingrrs", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 74, "name": "isinvalidtwittertoken", "comment": null}, "packageextensions": {"type": "string", "index": 75, "name": "packageextensions", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 76, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 77, "name": "isinvalidtwittertokendate", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 78, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 79, "name": "isinvalidpinteresttokendate", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 80, "name": "isinvalidpinteresttoken", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 81, "name": "is_duplicated_2", "comment": null}}, "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.yoda.loyalty__segment.uninstall_loyalty"}, "source.yoda.platform__segment.uninstalled_yotpo": {"metadata": {"type": "view", "schema": "segment", "name": "uninstalled_yotpo", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "timestamp": {"type": "timestamp", "index": 3, "name": "timestamp", "comment": null}, "message_id": {"type": "string", "index": 4, "name": "message_id", "comment": null}, "user_id": {"type": "string", "index": 5, "name": "user_id", "comment": null}, "anonymous_id": {"type": "string", "index": 6, "name": "anonymous_id", "comment": null}, "channel": {"type": "string", "index": 7, "name": "channel", "comment": null}, "library_name": {"type": "string", "index": 8, "name": "library_name", "comment": null}, "locale": {"type": "string", "index": 9, "name": "locale", "comment": null}, "page_url": {"type": "string", "index": 10, "name": "page_url", "comment": null}, "page_referrer": {"type": "string", "index": 11, "name": "page_referrer", "comment": null}, "page_title": {"type": "string", "index": 12, "name": "page_title", "comment": null}, "page_path": {"type": "string", "index": 13, "name": "page_path", "comment": null}, "is_tablet": {"type": "boolean", "index": 14, "name": "is_tablet", "comment": null}, "is_mobile": {"type": "boolean", "index": 15, "name": "is_mobile", "comment": null}, "is_desktop": {"type": "boolean", "index": 16, "name": "is_desktop", "comment": null}, "session_id": {"type": "long", "index": 17, "name": "session_id", "comment": null}, "violated_event": {"type": "boolean", "index": 18, "name": "violated_event", "comment": null}, "event_name": {"type": "string", "index": 19, "name": "event_name", "comment": null}, "rrmonthlylimit": {"type": "long", "index": 20, "name": "rrmonthlylimit", "comment": null}, "rrssentinbillingcycle": {"type": "long", "index": 21, "name": "rrssentinbillingcycle", "comment": null}, "accountid": {"type": "long", "index": 22, "name": "accountid", "comment": null}, "adminname": {"type": "string", "index": 23, "name": "adminname", "comment": null}, "appkey": {"type": "string", "index": 24, "name": "appkey", "comment": null}, "billingprovider": {"type": "string", "index": 25, "name": "billingprovider", "comment": null}, "createdat": {"type": "string", "index": 26, "name": "createdat", "comment": null}, "email": {"type": "string", "index": 27, "name": "email", "comment": null}, "groupid": {"type": "string", "index": 28, "name": "groupid", "comment": null}, "intercomuserhash": {"type": "string", "index": 29, "name": "intercomuserhash", "comment": null}, "isautopublishenabled": {"type": "boolean", "index": 30, "name": "isautopublishenabled", "comment": null}, "isenabledcoupons": {"type": "boolean", "index": 31, "name": "isenabledcoupons", "comment": null}, "isenabledcustomreviews": {"type": "boolean", "index": 32, "name": "isenabledcustomreviews", "comment": null}, "isenabledgsr": {"type": "boolean", "index": 33, "name": "isenabledgsr", "comment": null}, "isenabledmap": {"type": "boolean", "index": 34, "name": "isenabledmap", "comment": null}, "isenabledpla": {"type": "boolean", "index": 35, "name": "isenabledpla", "comment": null}, "isenabledpromotedproductsemail": {"type": "boolean", "index": 36, "name": "isenabledpromotedproductsemail", "comment": null}, "isenabledpromotedproductswidget": {"type": "boolean", "index": 37, "name": "isenabledpromotedproductswidget", "comment": null}, "isenabledqna": {"type": "boolean", "index": 38, "name": "isenabledqna", "comment": null}, "isenabledrichsnippets": {"type": "boolean", "index": 39, "name": "isenabledrichsnippets", "comment": null}, "ishasbadge": {"type": "boolean", "index": 40, "name": "ishasbadge", "comment": null}, "ishascomments": {"type": "boolean", "index": 41, "name": "ishascomments", "comment": null}, "ishasconverttositereview": {"type": "boolean", "index": 42, "name": "ishasconverttositereview", "comment": null}, "ishascoupons": {"type": "boolean", "index": 43, "name": "ishascoupons", "comment": null}, "ishascsseditor": {"type": "boolean", "index": 44, "name": "ishascsseditor", "comment": null}, "ishascustomreviews": {"type": "boolean", "index": 45, "name": "ishascustomreviews", "comment": null}, "ishasdedicatedpage": {"type": "boolean", "index": 46, "name": "ishasdedicatedpage", "comment": null}, "ishasgsr": {"type": "boolean", "index": 47, "name": "ishasgsr", "comment": null}, "ishasnewmainwidgetlayout": {"type": "boolean", "index": 48, "name": "ishasnewmainwidgetlayout", "comment": null}, "ishaspla": {"type": "boolean", "index": 49, "name": "ishaspla", "comment": null}, "ishaspromotedproductsemail": {"type": "boolean", "index": 50, "name": "ishaspromotedproductsemail", "comment": null}, "ishaspromotedproductswidget": {"type": "boolean", "index": 51, "name": "ishaspromotedproductswidget", "comment": null}, "ishasqna": {"type": "boolean", "index": 52, "name": "ishasqna", "comment": null}, "ishasreviewscarousel": {"type": "boolean", "index": 53, "name": "ishasreviewscarousel", "comment": null}, "ishasreviewstab": {"type": "boolean", "index": 54, "name": "ishasreviewstab", "comment": null}, "ishasrichsnippets": {"type": "boolean", "index": 55, "name": "ishasrichsnippets", "comment": null}, "ishassentmai": {"type": "boolean", "index": 56, "name": "ishassentmai", "comment": null}, "ishassentmas": {"type": "boolean", "index": 57, "name": "ishassentmas", "comment": null}, "ishassentmap": {"type": "boolean", "index": 58, "name": "ishassentmap", "comment": null}, "ishassentsitereminder": {"type": "boolean", "index": 59, "name": "ishassentsitereminder", "comment": null}, "ishassenttpr": {"type": "boolean", "index": 60, "name": "ishassenttpr", "comment": null}, "ishassenttsr": {"type": "boolean", "index": 61, "name": "ishassenttsr", "comment": null}, "ishasshoppableinstagram": {"type": "boolean", "index": 62, "name": "ishasshoppableinstagram", "comment": null}, "ishassocialpush": {"type": "boolean", "index": 63, "name": "ishassocialpush", "comment": null}, "ishasstarrating": {"type": "boolean", "index": 64, "name": "ishasstarrating", "comment": null}, "ishastpr": {"type": "boolean", "index": 65, "name": "ishastpr", "comment": null}, "ishastsr": {"type": "boolean", "index": 66, "name": "ishastsr", "comment": null}, "ismapcustomfieldsenabled": {"type": "boolean", "index": 67, "name": "ismapcustomfieldsenabled", "comment": null}, "isnewslettersubscribed": {"type": "boolean", "index": 68, "name": "isnewslettersubscribed", "comment": null}, "isreceivesentimentnotification": {"type": "boolean", "index": 69, "name": "isreceivesentimentnotification", "comment": null}, "isreviewswidgetinstalled": {"type": "boolean", "index": 70, "name": "isreviewswidgetinstalled", "comment": null}, "issystemnotificationssubscribed": {"type": "boolean", "index": 71, "name": "issystemnotificationssubscribed", "comment": null}, "isuserscountlimitreached": {"type": "boolean", "index": 72, "name": "isuserscountlimitreached", "comment": null}, "isusingpackagesservice": {"type": "boolean", "index": 73, "name": "isusingpackagesservice", "comment": null}, "name": {"type": "string", "index": 74, "name": "name", "comment": null}, "packagecategories": {"type": "string", "index": 75, "name": "packagecategories", "comment": null}, "package": {"type": "string", "index": 76, "name": "package", "comment": null}, "phone": {"type": "string", "index": 77, "name": "phone", "comment": null}, "planname": {"type": "string", "index": 78, "name": "planname", "comment": null}, "platform": {"type": "string", "index": 79, "name": "platform", "comment": null}, "role": {"type": "string", "index": 80, "name": "role", "comment": null}, "signupcountry": {"type": "string", "index": 81, "name": "signupcountry", "comment": null}, "signupmonthlyorderscount": {"type": "string", "index": 82, "name": "signupmonthlyorderscount", "comment": null}, "signupphone": {"type": "string", "index": 83, "name": "signupphone", "comment": null}, "signuputmcampaign": {"type": "string", "index": 84, "name": "signuputmcampaign", "comment": null}, "signuputmmedium": {"type": "string", "index": 85, "name": "signuputmmedium", "comment": null}, "signuputmsource": {"type": "string", "index": 86, "name": "signuputmsource", "comment": null}, "storecount": {"type": "long", "index": 87, "name": "storecount", "comment": null}, "traits_email": {"type": "string", "index": 88, "name": "traits_email", "comment": null}, "traits_name": {"type": "string", "index": 89, "name": "traits_name", "comment": null}, "traits_plan": {"type": "string", "index": 90, "name": "traits_plan", "comment": null}, "uninstallsource": {"type": "string", "index": 91, "name": "uninstallsource", "comment": null}, "userid": {"type": "long", "index": 92, "name": "userid", "comment": null}, "website": {"type": "string", "index": 93, "name": "website", "comment": null}, "yotpoproductscorev2": {"type": "long", "index": 94, "name": "yotpoproductscorev2", "comment": null}, "isinvalidfacebooktoken": {"type": "long", "index": 95, "name": "isinvalidfacebooktoken", "comment": null}, "lastconversionordertime": {"type": "string", "index": 96, "name": "lastconversionordertime", "comment": null}, "pendingrrs": {"type": "long", "index": 97, "name": "pendingrrs", "comment": null}, "chargeid": {"type": "long", "index": 98, "name": "chargeid", "comment": null}, "chargeprice": {"type": "string", "index": 99, "name": "chargeprice", "comment": null}, "nextchargedate": {"type": "string", "index": 100, "name": "nextchargedate", "comment": null}, "subscriptionstate": {"type": "string", "index": 101, "name": "subscriptionstate", "comment": null}, "isinvalidtwittertoken": {"type": "long", "index": 102, "name": "isinvalidtwittertoken", "comment": null}, "pixelversion": {"type": "long", "index": 103, "name": "pixelversion", "comment": null}, "daysinvalidfacebooktoken": {"type": "long", "index": 104, "name": "daysinvalidfacebooktoken", "comment": null}, "isinvalidfacebooktokendate": {"type": "string", "index": 105, "name": "isinvalidfacebooktokendate", "comment": null}, "packageextensions": {"type": "string", "index": 106, "name": "packageextensions", "comment": null}, "chargifybalance": {"type": "long", "index": 107, "name": "chargifybalance", "comment": null}, "chargifyrevenue": {"type": "long", "index": 108, "name": "chargifyrevenue", "comment": null}, "creditcardlast4digits": {"type": "string", "index": 109, "name": "creditcardlast4digits", "comment": null}, "creditcardtype": {"type": "string", "index": 110, "name": "creditcardtype", "comment": null}, "daysindunning": {"type": "string", "index": 111, "name": "daysindunning", "comment": null}, "daystorenewal": {"type": "long", "index": 112, "name": "daystorenewal", "comment": null}, "nameoncreditcard": {"type": "string", "index": 113, "name": "nameoncreditcard", "comment": null}, "paysvia": {"type": "string", "index": 114, "name": "paysvia", "comment": null}, "recurringpaymentinterval": {"type": "long", "index": 115, "name": "recurringpaymentinterval", "comment": null}, "renewaldate": {"type": "string", "index": 116, "name": "renewaldate", "comment": null}, "yotpoproductscore": {"type": "long", "index": 117, "name": "yotpoproductscore", "comment": null}, "isinvalidpinteresttoken": {"type": "long", "index": 118, "name": "isinvalidpinteresttoken", "comment": null}, "daysinvalidtwittertoken": {"type": "long", "index": 119, "name": "daysinvalidtwittertoken", "comment": null}, "isinvalidtwittertokendate": {"type": "string", "index": 120, "name": "isinvalidtwittertokendate", "comment": null}, "daysinvalidpinteresttoken": {"type": "long", "index": 121, "name": "daysinvalidpinteresttoken", "comment": null}, "isinvalidpinteresttokendate": {"type": "string", "index": 122, "name": "isinvalidpinteresttokendate", "comment": null}, "billingproviders": {"type": "array", "index": 123, "name": "billingproviders", "comment": null}, "storedomain": {"type": "string", "index": 124, "name": "storedomain", "comment": null}, "is_duplicated_2": {"type": "boolean", "index": 125, "name": "is_duplicated_2", "comment": null}, "uninstalledproduct": {"type": "string", "index": 126, "name": "uninstalledproduct", "comment": null}}, "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.yoda.platform__segment.uninstalled_yotpo"}, "source.yoda.subscriptions__subscriptions.app_webhooks": {"metadata": {"type": "view", "schema": "subscriptions", "name": "app_webhooks", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "action": {"type": "string", "index": 5, "name": "action", "comment": null}, "message_time": {"type": "timestamp", "index": 6, "name": "message_time", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.subscriptions__subscriptions.app_webhooks"}, "source.yoda.subscriptions__subscriptions.billing_attempt_response": {"metadata": {"type": "view", "schema": "subscriptions", "name": "billing_attempt_response", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "external_id": {"type": "long", "index": 5, "name": "external_id", "comment": null}, "external_order_id": {"type": "long", "index": 6, "name": "external_order_id", "comment": null}, "external_subscription_contract_id": {"type": "long", "index": 7, "name": "external_subscription_contract_id", "comment": null}, "status": {"type": "long", "index": 8, "name": "status", "comment": null}, "idempotency_key": {"type": "long", "index": 9, "name": "idempotency_key", "comment": null}, "ready": {"type": "boolean", "index": 10, "name": "ready", "comment": null}, "error_message": {"type": "string", "index": 11, "name": "error_message", "comment": null}, "created_at": {"type": "timestamp", "index": 12, "name": "created_at", "comment": null}, "is_logical_deleted": {"type": "long", "index": 13, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.subscriptions__subscriptions.billing_attempt_response"}, "source.yoda.subscriptions__subscriptions.product": {"metadata": {"type": "view", "schema": "subscriptions", "name": "product", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "external_id": {"type": "string", "index": 4, "name": "external_id", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_at", "comment": null}}, "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.yoda.subscriptions__subscriptions.product"}, "source.yoda.subscriptions__subscriptions.recurrent_event_rule": {"metadata": {"type": "view", "schema": "subscriptions", "name": "recurrent_event_rule", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 5, "name": "updated_at", "comment": null}, "obj_id": {"type": "long", "index": 6, "name": "obj_id", "comment": null}, "obj_type": {"type": "long", "index": 7, "name": "obj_type", "comment": null}, "next_due_date": {"type": "timestamp", "index": 8, "name": "next_due_date", "comment": null}, "plan_interval": {"type": "long", "index": 9, "name": "plan_interval", "comment": null}, "interval_count": {"type": "long", "index": 10, "name": "interval_count", "comment": null}, "is_canceled": {"type": "boolean", "index": 11, "name": "is_canceled", "comment": null}, "is_logical_deleted": {"type": "long", "index": 12, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.subscriptions__subscriptions.recurrent_event_rule"}, "source.yoda.subscriptions__subscriptions.selling_plan": {"metadata": {"type": "view", "schema": "subscriptions", "name": "selling_plan", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "selling_plan_group_id": {"type": "long", "index": 4, "name": "selling_plan_group_id", "comment": null}, "pricing_policy_adjustment_type": {"type": "string", "index": 5, "name": "pricing_policy_adjustment_type", "comment": null}, "pricing_policy_value": {"type": "double", "index": 6, "name": "pricing_policy_value", "comment": null}, "recurring_pricing_policy_after_cycle": {"type": "long", "index": 7, "name": "recurring_pricing_policy_after_cycle", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "name": {"type": "string", "index": 10, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.subscriptions__subscriptions.selling_plan"}, "source.yoda.subscriptions__subscriptions.selling_plan_group": {"metadata": {"type": "view", "schema": "subscriptions", "name": "selling_plan_group", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "external_id": {"type": "string", "index": 4, "name": "external_id", "comment": null}, "store_id": {"type": "string", "index": 5, "name": "store_id", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_at", "comment": null}, "selling_plan_group_status": {"type": "string", "index": 8, "name": "selling_plan_group_status", "comment": null}}, "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.yoda.subscriptions__subscriptions.selling_plan_group"}, "source.yoda.subscriptions__subscriptions.selling_plan_group_product": {"metadata": {"type": "view", "schema": "subscriptions", "name": "selling_plan_group_product", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "selling_plan_group_id": {"type": "long", "index": 4, "name": "selling_plan_group_id", "comment": null}, "product_id": {"type": "long", "index": 5, "name": "product_id", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.subscriptions__subscriptions.selling_plan_group_product"}, "source.yoda.subscriptions__subscriptions.status": {"metadata": {"type": "view", "schema": "subscriptions", "name": "status", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "num": {"type": "long", "index": 4, "name": "num", "comment": null}, "text": {"type": "string", "index": 5, "name": "text", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_at", "comment": null}, "is_logical_deleted": {"type": "long", "index": 8, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.subscriptions__subscriptions.status"}, "source.yoda.subscriptions__subscriptions.store_customers_exports": {"metadata": {"type": "table", "schema": "subscriptions", "name": "store_customers_exports", "database": null, "comment": null, "owner": "root"}, "columns": {"BILLING_INTERVAL_FREQUENCY": {"type": "integer", "index": 0, "name": "BILLING_INTERVAL_FREQUENCY", "comment": null}, "BILLING_INTERVAL_UNIT": {"type": "string", "index": 1, "name": "BILLING_INTERVAL_UNIT", "comment": null}, "CANCELLED_AT": {"type": "timestamp", "index": 2, "name": "CANCELLED_AT", "comment": null}, "CREATED_AT": {"type": "timestamp", "index": 3, "name": "CREATED_AT", "comment": null}, "CURRENCY_CODE": {"type": "string", "index": 4, "name": "CURRENCY_CODE", "comment": null}, "CUSTOMER_EMAIL": {"type": "string", "index": 5, "name": "CUSTOMER_EMAIL", "comment": null}, "DELIVERY_PRICE": {"type": "float", "index": 6, "name": "DELIVERY_PRICE", "comment": null}, "EXPIRES_AFTER_NUM_BILLING_CYCLES": {"type": "integer", "index": 7, "name": "EXPIRES_AFTER_NUM_BILLING_CYCLES", "comment": null}, "EXTERNAL_CUSTOMER_ID": {"type": "long", "index": 8, "name": "EXTERNAL_CUSTOMER_ID", "comment": null}, "EXTERNAL_PRODUCT_ID": {"type": "long", "index": 9, "name": "EXTERNAL_PRODUCT_ID", "comment": null}, "EXTERNAL_SUBSCRIPTION_ID": {"type": "long", "index": 10, "name": "EXTERNAL_SUBSCRIPTION_ID", "comment": null}, "EXTERNAL_VARIANT_ID": {"type": "long", "index": 11, "name": "EXTERNAL_VARIANT_ID", "comment": null}, "NEXT_BILLING_DATE": {"type": "timestamp", "index": 12, "name": "NEXT_BILLING_DATE", "comment": null}, "ORDER_INTERVAL_FREQUENCY": {"type": "integer", "index": 13, "name": "ORDER_INTERVAL_FREQUENCY", "comment": null}, "ORDER_INTERVAL_UNIT": {"type": "string", "index": 14, "name": "ORDER_INTERVAL_UNIT", "comment": null}, "PRODUCT_TITLE": {"type": "string", "index": 15, "name": "PRODUCT_TITLE", "comment": null}, "QUANTITY": {"type": "integer", "index": 16, "name": "QUANTITY", "comment": null}, "RECURRING_PRICE": {"type": "float", "index": 17, "name": "RECURRING_PRICE", "comment": null}, "SHIPPING_ADDRESS_ADDRESS1": {"type": "string", "index": 18, "name": "SHIPPING_ADDRESS_ADDRESS1", "comment": null}, "SHIPPING_ADDRESS_ADDRESS2": {"type": "string", "index": 19, "name": "SHIPPING_ADDRESS_ADDRESS2", "comment": null}, "SHIPPING_ADDRESS_CITY": {"type": "string", "index": 20, "name": "SHIPPING_ADDRESS_CITY", "comment": null}, "SHIPPING_ADDRESS_COUNTRY": {"type": "string", "index": 21, "name": "SHIPPING_ADDRESS_COUNTRY", "comment": null}, "SHIPPING_ADDRESS_FIRST_NAME": {"type": "string", "index": 22, "name": "SHIPPING_ADDRESS_FIRST_NAME", "comment": null}, "SHIPPING_ADDRESS_LAST_NAME": {"type": "string", "index": 23, "name": "SHIPPING_ADDRESS_LAST_NAME", "comment": null}, "SHIPPING_ADDRESS_PHONE": {"type": "string", "index": 24, "name": "SHIPPING_ADDRESS_PHONE", "comment": null}, "SHIPPING_ADDRESS_PROVINCE_CODE": {"type": "string", "index": 25, "name": "SHIPPING_ADDRESS_PROVINCE_CODE", "comment": null}, "SHIPPING_ADDRESS_ZIP": {"type": "string", "index": 26, "name": "SHIPPING_ADDRESS_ZIP", "comment": null}, "SKIPPED_PRODUCT": {"type": "boolean", "index": 27, "name": "SKIPPED_PRODUCT", "comment": null}, "SKU": {"type": "string", "index": 28, "name": "SKU", "comment": null}, "STATUS": {"type": "string", "index": 29, "name": "STATUS", "comment": null}, "TOTAL_RECURRING_ORDERS": {"type": "integer", "index": 30, "name": "TOTAL_RECURRING_ORDERS", "comment": null}, "UPDATED_AT": {"type": "timestamp", "index": 31, "name": "UPDATED_AT", "comment": null}, "VARIANT_TITLE": {"type": "string", "index": 32, "name": "VARIANT_TITLE", "comment": null}}, "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.yoda.subscriptions__subscriptions.store_customers_exports"}, "source.yoda.subscriptions__subscriptions.subscription_contract": {"metadata": {"type": "view", "schema": "subscriptions", "name": "subscription_contract", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "external_id": {"type": "long", "index": 5, "name": "external_id", "comment": null}, "status": {"type": "long", "index": 6, "name": "status", "comment": null}, "delivery_policy_interval": {"type": "long", "index": 7, "name": "delivery_policy_interval", "comment": null}, "delivery_policy_interval_count": {"type": "long", "index": 8, "name": "delivery_policy_interval_count", "comment": null}, "billing_policy_interval": {"type": "long", "index": 9, "name": "billing_policy_interval", "comment": null}, "billing_policy_interval_count": {"type": "long", "index": 10, "name": "billing_policy_interval_count", "comment": null}, "original_order_external_id": {"type": "long", "index": 11, "name": "original_order_external_id", "comment": null}, "is_migrated": {"type": "long", "index": 12, "name": "is_migrated", "comment": null}, "external_customer_id": {"type": "long", "index": 13, "name": "external_customer_id", "comment": null}, "created_at": {"type": "timestamp", "index": 14, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 15, "name": "updated_at", "comment": null}, "status_last_updated_at": {"type": "timestamp", "index": 16, "name": "status_last_updated_at", "comment": null}, "is_logical_deleted": {"type": "long", "index": 17, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.subscriptions__subscriptions.subscription_contract"}, "source.yoda.subscriptions__subscriptions.subscription_contract_line": {"metadata": {"type": "view", "schema": "subscriptions", "name": "subscription_contract_line", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 5, "name": "updated_at", "comment": null}, "subscription_contract_id": {"type": "long", "index": 6, "name": "subscription_contract_id", "comment": null}, "product_external_id": {"type": "string", "index": 7, "name": "product_external_id", "comment": null}, "variant_external_id": {"type": "string", "index": 8, "name": "variant_external_id", "comment": null}, "quantity": {"type": "long", "index": 9, "name": "quantity", "comment": null}, "price": {"type": "double", "index": 10, "name": "price", "comment": null}, "discounted_price": {"type": "double", "index": 11, "name": "discounted_price", "comment": null}, "currency_code": {"type": "string", "index": 12, "name": "currency_code", "comment": null}, "external_line_id": {"type": "string", "index": 13, "name": "external_line_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.subscriptions__subscriptions.subscription_contract_line"}, "source.yoda.subscriptions__subscriptions.subscription_contract_order": {"metadata": {"type": "view", "schema": "subscriptions", "name": "subscription_contract_order", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "external_subscription_contract_id": {"type": "long", "index": 5, "name": "external_subscription_contract_id", "comment": null}, "external_order_id": {"type": "long", "index": 6, "name": "external_order_id", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "is_logical_deleted": {"type": "long", "index": 9, "name": "is_logical_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.subscriptions__subscriptions.subscription_contract_order"}, "source.yoda.subscriptions__subscriptions.subscription_creation_request": {"metadata": {"type": "view", "schema": "subscriptions", "name": "subscription_creation_request", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "request_status": {"type": "string", "index": 5, "name": "request_status", "comment": null}, "store_id": {"type": "string", "index": 6, "name": "store_id", "comment": null}, "contract_id": {"type": "string", "index": 7, "name": "contract_id", "comment": null}, "uploaded_file_id": {"type": "long", "index": 8, "name": "uploaded_file_id", "comment": null}, "line_number": {"type": "long", "index": 9, "name": "line_number", "comment": null}, "idempotency_key": {"type": "string", "index": 10, "name": "idempotency_key", "comment": null}, "next_billing_date": {"type": "string", "index": 11, "name": "next_billing_date", "comment": null}, "currency_code": {"type": "string", "index": 12, "name": "currency_code", "comment": null}, "subscription_status": {"type": "string", "index": 13, "name": "subscription_status", "comment": null}, "selling_plan_name": {"type": "string", "index": 14, "name": "selling_plan_name", "comment": null}, "delivery_price": {"type": "double", "index": 15, "name": "delivery_price", "comment": null}, "delivery_interval": {"type": "string", "index": 16, "name": "delivery_interval", "comment": null}, "delivery_interval_count": {"type": "long", "index": 17, "name": "delivery_interval_count", "comment": null}, "billing_interval": {"type": "string", "index": 18, "name": "billing_interval", "comment": null}, "billing_interval_count": {"type": "long", "index": 19, "name": "billing_interval_count", "comment": null}, "shipping_code": {"type": "string", "index": 20, "name": "shipping_code", "comment": null}, "payment_method_id": {"type": "string", "index": 21, "name": "payment_method_id", "comment": null}, "payment_provider_payment_method_id": {"type": "string", "index": 22, "name": "payment_provider_payment_method_id", "comment": null}, "payment_provider_customer_id": {"type": "string", "index": 23, "name": "payment_provider_customer_id", "comment": null}, "payment_provider_type": {"type": "string", "index": 24, "name": "payment_provider_type", "comment": null}, "updated_at": {"type": "timestamp", "index": 25, "name": "updated_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.yoda.subscriptions__subscriptions.subscription_creation_request"}, "source.yoda.subscriptions__subscriptions.subscription_line_action": {"metadata": {"type": "view", "schema": "subscriptions", "name": "subscription_line_action", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "external_subscription_contract_id": {"type": "string", "index": 5, "name": "external_subscription_contract_id", "comment": null}, "external_line_id": {"type": "string", "index": 6, "name": "external_line_id", "comment": null}, "external_variant_id": {"type": "string", "index": 7, "name": "external_variant_id", "comment": null}, "action_type": {"type": "string", "index": 8, "name": "action_type", "comment": null}, "action_status": {"type": "string", "index": 9, "name": "action_status", "comment": null}, "quantity": {"type": "string", "index": 10, "name": "quantity", "comment": null}, "total_price": {"type": "string", "index": 11, "name": "total_price", "comment": null}, "created_at": {"type": "timestamp", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 13, "name": "updated_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.yoda.subscriptions__subscriptions.subscription_line_action"}, "source.yoda.platform__singas.cdp_streaming_events": {"metadata": {"type": "table", "schema": "singas", "name": "cdp_streaming_events", "database": null, "comment": null, "owner": "root"}, "columns": {"partition": {"type": "integer", "index": 0, "name": "partition", "comment": null}, "offset": {"type": "long", "index": 1, "name": "offset", "comment": null}, "timestamp": {"type": "long", "index": 2, "name": "timestamp", "comment": null}, "key": {"type": "string", "index": 3, "name": "key", "comment": null}, "value": {"type": "string", "index": 4, "name": "value", "comment": null}, "headers": {"type": "map", "index": 5, "name": "headers", "comment": null}, "mode": {"type": "string", "index": 6, "name": "mode", "comment": null}, "topic": {"type": "string", "index": 7, "name": "topic", "comment": null}, "date": {"type": "string", "index": 8, "name": "date", "comment": null}}, "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.yoda.platform__singas.cdp_streaming_events"}, "source.yoda.platform__data_science.churn_prediction": {"metadata": {"type": "table", "schema": "data_science", "name": "churn_prediction", "database": null, "comment": null, "owner": "root"}, "columns": {"customer_id": {"type": "string", "index": 0, "name": "customer_id", "comment": null}, "likely_to_purchase": {"type": "string", "index": 1, "name": "likely_to_purchase", "comment": null}, "likely_to_purchase_rank": {"type": "byte", "index": 2, "name": "likely_to_purchase_rank", "comment": null}, "churn_risk": {"type": "string", "index": 3, "name": "churn_risk", "comment": null}, "churn_risk_rank": {"type": "byte", "index": 4, "name": "churn_risk_rank", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 14438066921.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__data_science.churn_prediction"}, "source.yoda.platform__data_science.customer_dataset_reduced": {"metadata": {"type": "table", "schema": "data_science", "name": "customer_dataset_reduced", "database": null, "comment": null, "owner": "root"}, "columns": {"profileId": {"type": "string", "index": 0, "name": "profileId", "comment": null}, "storeId": {"type": "string", "index": 1, "name": "storeId", "comment": null}, "lists": {"type": "array", "index": 2, "name": "lists", "comment": null}, "mergedWith": {"type": "string", "index": 3, "name": "mergedWith", "comment": null}, "systemProperties": {"type": "struct", "index": 4, "name": "systemProperties", "comment": null}, "properties": {"type": "struct", "index": 5, "name": "properties", "comment": null}, "orderUpdated": {"type": "map", "index": 6, "name": "orderUpdated", "comment": null}, "smsSubscribed": {"type": "map", "index": 7, "name": "smsSubscribed", "comment": null}, "smsPartOfCampaign": {"type": "map", "index": 8, "name": "smsPartOfCampaign", "comment": null}, "smsEngaged": {"type": "map", "index": 9, "name": "smsEngaged", "comment": null}, "smsUnsubscribed": {"type": "map", "index": 10, "name": "smsUnsubscribed", "comment": null}, "smsConverted": {"type": "map", "index": 11, "name": "smsConverted", "comment": null}, "reviewCreated": {"type": "map", "index": 12, "name": "reviewCreated", "comment": null}, "loyaltyCampaignStatusChanged": {"type": "map", "index": 13, "name": "loyaltyCampaignStatusChanged", "comment": null}, "loyaltyPointsChanged": {"type": "map", "index": 14, "name": "loyaltyPointsChanged", "comment": null}, "loyaltyTierChanged": {"type": "map", "index": 15, "name": "loyaltyTierChanged", "comment": null}}, "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.yoda.platform__data_science.customer_dataset_reduced"}, "source.yoda.platform__data_science.similar_stores": {"metadata": {"type": "table", "schema": "data_science", "name": "similar_stores", "database": null, "comment": null, "owner": "ahalatzi"}, "columns": {"store_id": {"type": "string", "index": 0, "name": "store_id", "comment": null}, "cluster_id": {"type": "integer", "index": 1, "name": "cluster_id", "comment": null}, "domain": {"type": "string", "index": 2, "name": "domain", "comment": null}, "manual_category": {"type": "string", "index": 3, "name": "manual_category", "comment": null}, "predicted_category": {"type": "string", "index": 4, "name": "predicted_category", "comment": null}, "category": {"type": "string", "index": 5, "name": "category", "comment": null}, "similar_stores": {"type": "array", "index": 6, "name": "similar_stores", "comment": null}, "store_embedding": {"type": "array", "index": 7, "name": "store_embedding", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 21359230292.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__data_science.similar_stores"}, "source.yoda.ugc__retailers_syndication.retailer": {"metadata": {"type": "view", "schema": "retailers_syndication", "name": "retailer", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "retailer_name": {"type": "string", "index": 4, "name": "retailer_name", "comment": null}, "file_name_format": {"type": "string", "index": 5, "name": "file_name_format", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_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.yoda.ugc__retailers_syndication.retailer"}, "source.yoda.ugc__retailers_syndication.syndicated_accounts": {"metadata": {"type": "view", "schema": "retailers_syndication", "name": "syndicated_accounts", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "retailer_id": {"type": "long", "index": 5, "name": "retailer_id", "comment": null}, "shop_domain": {"type": "string", "index": 6, "name": "shop_domain", "comment": null}, "last_incoming_feed_start_date": {"type": "timestamp", "index": 7, "name": "last_incoming_feed_start_date", "comment": null}, "last_incoming_feed_end_date": {"type": "timestamp", "index": 8, "name": "last_incoming_feed_end_date", "comment": null}, "last_uploaded_date": {"type": "timestamp", "index": 9, "name": "last_uploaded_date", "comment": null}, "last_full_feed_date": {"type": "timestamp", "index": 10, "name": "last_full_feed_date", "comment": null}, "last_full_feed_start_date": {"type": "timestamp", "index": 11, "name": "last_full_feed_start_date", "comment": null}, "account_status": {"type": "string", "index": 12, "name": "account_status", "comment": null}, "integration_start_date": {"type": "timestamp", "index": 13, "name": "integration_start_date", "comment": null}, "feed_ftp_upload_address": {"type": "string", "index": 14, "name": "feed_ftp_upload_address", "comment": null}, "report_ftp_download_address": {"type": "string", "index": 15, "name": "report_ftp_download_address", "comment": null}, "created_at": {"type": "timestamp", "index": 16, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 17, "name": "updated_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.yoda.ugc__retailers_syndication.syndicated_accounts"}, "source.yoda.loyalty__points.config_item": {"metadata": {"type": "view", "schema": "points", "name": "config_item", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "cursor_id": {"type": "long", "index": 1, "name": "cursor_id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "id": {"type": "string", "index": 4, "name": "id", "comment": null}, "_class": {"type": "string", "index": 5, "name": "_class", "comment": null}, "version": {"type": "long", "index": 6, "name": "version", "comment": null}, "data": {"type": "string", "index": 7, "name": "data", "comment": null}, "state": {"type": "string", "index": 8, "name": "state", "comment": null}, "tenant_id": {"type": "string", "index": 9, "name": "tenant_id", "comment": null}, "tenant_type": {"type": "string", "index": 10, "name": "tenant_type", "comment": null}, "updated_at": {"type": "string", "index": 11, "name": "updated_at", "comment": null}, "created_at": {"type": "string", "index": 12, "name": "created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__points.config_item"}, "source.yoda.loyalty__points.container_balance_usage": {"metadata": {"type": "view", "schema": "points", "name": "container_balance_usage", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "page_cursor": {"type": "long", "index": 1, "name": "page_cursor", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "points_transaction_id": {"type": "string", "index": 4, "name": "points_transaction_id", "comment": null}, "points_container_expiration_id": {"type": "string", "index": 5, "name": "points_container_expiration_id", "comment": null}, "group_id": {"type": "string", "index": 6, "name": "group_id", "comment": null}, "used_points": {"type": "long", "index": 7, "name": "used_points", "comment": null}, "created_at": {"type": "string", "index": 8, "name": "created_at", "comment": null}, "expiration_date": {"type": "string", "index": 9, "name": "expiration_date", "comment": null}}, "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.yoda.loyalty__points.container_balance_usage"}, "source.yoda.loyalty__points.points_container_expiration": {"metadata": {"type": "view", "schema": "points", "name": "points_container_expiration", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "string", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "page_cursor": {"type": "long", "index": 4, "name": "page_cursor", "comment": null}, "points_transaction_id": {"type": "string", "index": 5, "name": "points_transaction_id", "comment": null}, "group_id": {"type": "string", "index": 6, "name": "group_id", "comment": null}, "group_customer_id": {"type": "long", "index": 7, "name": "group_customer_id", "comment": null}, "expiration_policy_id": {"type": "string", "index": 8, "name": "expiration_policy_id", "comment": null}, "available_points": {"type": "long", "index": 9, "name": "available_points", "comment": null}, "expiration_date": {"type": "string", "index": 10, "name": "expiration_date", "comment": null}, "usable": {"type": "long", "index": 11, "name": "usable", "comment": null}, "created_at": {"type": "string", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "string", "index": 13, "name": "updated_at", "comment": null}, "version": {"type": "string", "index": 14, "name": "version", "comment": null}, "has_points": {"type": "boolean", "index": 15, "name": "has_points", "comment": null}}, "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.yoda.loyalty__points.points_container_expiration"}, "source.yoda.loyalty__points.points_state": {"metadata": {"type": "view", "schema": "points", "name": "points_state", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "version": {"type": "string", "index": 4, "name": "version", "comment": null}, "group_customer_id": {"type": "long", "index": 5, "name": "group_customer_id", "comment": null}, "group_id": {"type": "string", "index": 6, "name": "group_id", "comment": null}, "points_earned": {"type": "long", "index": 7, "name": "points_earned", "comment": null}, "points_balance": {"type": "long", "index": 8, "name": "points_balance", "comment": null}, "created_at": {"type": "string", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "string", "index": 10, "name": "updated_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.yoda.loyalty__points.points_state"}, "source.yoda.loyalty__points.points_transaction": {"metadata": {"type": "view", "schema": "points", "name": "points_transaction", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "string", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "page_cursor": {"type": "long", "index": 4, "name": "page_cursor", "comment": null}, "group_customer_id": {"type": "long", "index": 5, "name": "group_customer_id", "comment": null}, "caused_in_store_id": {"type": "string", "index": 6, "name": "caused_in_store_id", "comment": null}, "group_id": {"type": "string", "index": 7, "name": "group_id", "comment": null}, "amount": {"type": "long", "index": 8, "name": "amount", "comment": null}, "transaction_type": {"type": "string", "index": 9, "name": "transaction_type", "comment": null}, "reason_type": {"type": "string", "index": 10, "name": "reason_type", "comment": null}, "reason_description": {"type": "string", "index": 11, "name": "reason_description", "comment": null}, "original_transaction_id": {"type": "string", "index": 12, "name": "original_transaction_id", "comment": null}, "original_transaction_at": {"type": "string", "index": 13, "name": "original_transaction_at", "comment": null}, "debug_data": {"type": "string", "index": 14, "name": "debug_data", "comment": null}, "created_at": {"type": "string", "index": 15, "name": "created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__points.points_transaction"}, "source.yoda.analytics__static.calendar": {"metadata": {"type": "table", "schema": "static", "name": "calendar", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "integer", "index": 0, "name": "id", "comment": null}, "date": {"type": "date", "index": 1, "name": "date", "comment": null}, "year": {"type": "integer", "index": 2, "name": "year", "comment": null}, "month": {"type": "integer", "index": 3, "name": "month", "comment": null}, "day": {"type": "integer", "index": 4, "name": "day", "comment": null}, "quarter": {"type": "integer", "index": 5, "name": "quarter", "comment": null}, "week": {"type": "integer", "index": 6, "name": "week", "comment": null}, "day_name": {"type": "string", "index": 7, "name": "day_name", "comment": null}, "month_name": {"type": "string", "index": 8, "name": "month_name", "comment": null}, "holiday_flag": {"type": "boolean", "index": 9, "name": "holiday_flag", "comment": null}, "weekend_flag": {"type": "boolean", "index": 10, "name": "weekend_flag", "comment": null}}, "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.yoda.analytics__static.calendar"}, "source.yoda.analytics__static.calendar_with_closing_day": {"metadata": {"type": "table", "schema": "static", "name": "calendar_with_closing_day", "database": null, "comment": null, "owner": "root"}, "columns": {"day": {"type": "integer", "index": 0, "name": "day", "comment": null}, "date": {"type": "date", "index": 1, "name": "date", "comment": null}, "month": {"type": "integer", "index": 2, "name": "month", "comment": null}, "year": {"type": "integer", "index": 3, "name": "year", "comment": null}, "working_day_no": {"type": "integer", "index": 4, "name": "working_day_no", "comment": null}, "closing_date": {"type": "date", "index": 5, "name": "closing_date", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 72241.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.calendar_with_closing_day"}, "source.yoda.analytics__static.campaign_member_history_creation_records": {"metadata": {"type": "table", "schema": "static", "name": "campaign_member_history_creation_records", "database": null, "comment": null, "owner": "lior.shabi"}, "columns": {"parent_object_id": {"type": "string", "index": 0, "name": "parent_object_id", "comment": null}, "field_name": {"type": "string", "index": 1, "name": "field_name", "comment": null}, "created_at": {"type": "timestamp", "index": 2, "name": "created_at", "comment": null}, "sf_event_id": {"type": "string", "index": 3, "name": "sf_event_id", "comment": null}, "created_by_sf_user_id": {"type": "string", "index": 4, "name": "created_by_sf_user_id", "comment": null}, "new_value": {"type": "string", "index": 5, "name": "new_value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.campaign_member_history_creation_records"}, "source.yoda.analytics__static.chargify_organization_product_usage_revanue_daily": {"metadata": {"type": "table", "schema": "static", "name": "chargify_organization_product_usage_revanue_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"revenue_month": {"type": "date", "index": 0, "name": "revenue_month", "comment": null}, "organization_key": {"type": "string", "index": 1, "name": "organization_key", "comment": null}, "product_family": {"type": "string", "index": 2, "name": "product_family", "comment": null}, "plan_name": {"type": "string", "index": 3, "name": "plan_name", "comment": null}, "usage_revenue_in_usd": {"type": "double", "index": 4, "name": "usage_revenue_in_usd", "comment": null}, "shopify_billing_usage_revenue_in_usd": {"type": "double", "index": 5, "name": "shopify_billing_usage_revenue_in_usd", "comment": null}, "zuora_usage_revenue_in_usd": {"type": "double", "index": 6, "name": "zuora_usage_revenue_in_usd", "comment": null}, "chargify_usage_revenue_in_usd": {"type": "double", "index": 7, "name": "chargify_usage_revenue_in_usd", "comment": null}, "communication_usage_revenue_in_usd": {"type": "double", "index": 8, "name": "communication_usage_revenue_in_usd", "comment": null}, "communication_usage_in_usd": {"type": "double", "index": 9, "name": "communication_usage_in_usd", "comment": null}, "communication_free_credit_in_usd": {"type": "double", "index": 10, "name": "communication_free_credit_in_usd", "comment": null}, "additional_orders_cnt": {"type": "integer", "index": 11, "name": "additional_orders_cnt", "comment": null}, "is_self_service": {"type": "short", "index": 12, "name": "is_self_service", "comment": null}, "is_free": {"type": "short", "index": 13, "name": "is_free", "comment": null}, "is_full_service": {"type": "short", "index": 14, "name": "is_full_service", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 186983.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.chargify_organization_product_usage_revanue_daily"}, "source.yoda.platform__static.deprecated_packages": {"metadata": {"type": "table", "schema": "static", "name": "deprecated_packages", "database": null, "comment": null, "owner": "tomer.inbal"}, "columns": {"dwh_created_at": {"type": "string", "index": 0, "name": "dwh_created_at", "comment": null}, "plan_key": {"type": "string", "index": 1, "name": "plan_key", "comment": null}, "plan_id": {"type": "string", "index": 2, "name": "plan_id", "comment": null}, "plan_name": {"type": "string", "index": 3, "name": "plan_name", "comment": null}, "plan_display_name": {"type": "string", "index": 4, "name": "plan_display_name", "comment": null}, "plan_description": {"type": "string", "index": 5, "name": "plan_description", "comment": null}, "old_plan_id": {"type": "string", "index": 6, "name": "old_plan_id", "comment": null}, "category_id": {"type": "string", "index": 7, "name": "category_id", "comment": null}, "category_name": {"type": "string", "index": 8, "name": "category_name", "comment": null}, "is_sms_annual": {"type": "string", "index": 9, "name": "is_sms_annual", "comment": null}, "is_sms_ss": {"type": "string", "index": 10, "name": "is_sms_ss", "comment": null}, "is_sms_free": {"type": "string", "index": 11, "name": "is_sms_free", "comment": null}, "is_sms": {"type": "string", "index": 12, "name": "is_sms", "comment": null}, "is_reviews_annual": {"type": "string", "index": 13, "name": "is_reviews_annual", "comment": null}, "is_reviews_ss": {"type": "string", "index": 14, "name": "is_reviews_ss", "comment": null}, "is_reviews_free": {"type": "string", "index": 15, "name": "is_reviews_free", "comment": null}, "is_reviews": {"type": "string", "index": 16, "name": "is_reviews", "comment": null}, "is_vms_annual": {"type": "string", "index": 17, "name": "is_vms_annual", "comment": null}, "is_vms_ss": {"type": "string", "index": 18, "name": "is_vms_ss", "comment": null}, "is_vms_free": {"type": "string", "index": 19, "name": "is_vms_free", "comment": null}, "is_vms": {"type": "string", "index": 20, "name": "is_vms", "comment": null}, "is_loyalty_annual": {"type": "string", "index": 21, "name": "is_loyalty_annual", "comment": null}, "is_loyalty_ss": {"type": "string", "index": 22, "name": "is_loyalty_ss", "comment": null}, "is_loyalty_free": {"type": "string", "index": 23, "name": "is_loyalty_free", "comment": null}, "is_loyalty": {"type": "string", "index": 24, "name": "is_loyalty", "comment": null}, "is_insights_annual": {"type": "string", "index": 25, "name": "is_insights_annual", "comment": null}, "is_insights_ss": {"type": "string", "index": 26, "name": "is_insights_ss", "comment": null}, "is_insights_free": {"type": "string", "index": 27, "name": "is_insights_free", "comment": null}, "is_insights": {"type": "string", "index": 28, "name": "is_insights", "comment": null}, "is_subscriptions_annual": {"type": "string", "index": 29, "name": "is_subscriptions_annual", "comment": null}, "is_subscriptions_ss": {"type": "string", "index": 30, "name": "is_subscriptions_ss", "comment": null}, "is_subscriptions_free": {"type": "string", "index": 31, "name": "is_subscriptions_free", "comment": null}, "is_subscriptions": {"type": "string", "index": 32, "name": "is_subscriptions", "comment": null}, "is_annual": {"type": "string", "index": 33, "name": "is_annual", "comment": null}, "is_growth": {"type": "string", "index": 34, "name": "is_growth", "comment": null}, "is_premium": {"type": "string", "index": 35, "name": "is_premium", "comment": null}, "is_ss": {"type": "string", "index": 36, "name": "is_ss", "comment": null}, "is_free": {"type": "string", "index": 37, "name": "is_free", "comment": null}, "is_legacy": {"type": "string", "index": 38, "name": "is_legacy", "comment": null}, "is_prime": {"type": "string", "index": 39, "name": "is_prime", "comment": null}, "tags": {"type": "string", "index": 40, "name": "tags", "comment": null}, "full_tags": {"type": "string", "index": 41, "name": "full_tags", "comment": null}}, "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.yoda.platform__static.deprecated_packages"}, "source.yoda.analytics__static.fact_account_profile_daily": {"metadata": {"type": "table", "schema": "static", "name": "fact_account_profile_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "account_id": {"type": "string", "index": 1, "name": "account_id", "comment": null}, "account_name": {"type": "string", "index": 2, "name": "account_name", "comment": null}, "loyalty_csm_id": {"type": "string", "index": 3, "name": "loyalty_csm_id", "comment": null}, "loyalty_csm_name": {"type": "string", "index": 4, "name": "loyalty_csm_name", "comment": null}, "loyalty_csm_team": {"type": "string", "index": 5, "name": "loyalty_csm_team", "comment": null}, "ugc_csm_id": {"type": "string", "index": 6, "name": "ugc_csm_id", "comment": null}, "ugc_csm_name": {"type": "string", "index": 7, "name": "ugc_csm_name", "comment": null}, "ugc_csm_team": {"type": "string", "index": 8, "name": "ugc_csm_team", "comment": null}, "sms_csm_id": {"type": "string", "index": 9, "name": "sms_csm_id", "comment": null}, "sms_csm_name": {"type": "string", "index": 10, "name": "sms_csm_name", "comment": null}, "sms_csm_team": {"type": "string", "index": 11, "name": "sms_csm_team", "comment": null}, "primary_csm_id": {"type": "string", "index": 12, "name": "primary_csm_id", "comment": null}, "primary_csm_name": {"type": "string", "index": 13, "name": "primary_csm_name", "comment": null}, "primary_csm_team": {"type": "string", "index": 14, "name": "primary_csm_team", "comment": null}, "sms_strategist_id": {"type": "string", "index": 15, "name": "sms_strategist_id", "comment": null}, "sms_strategist_name": {"type": "string", "index": 16, "name": "sms_strategist_name", "comment": null}, "sms_strategist_team": {"type": "string", "index": 17, "name": "sms_strategist_team", "comment": null}, "subscription_csm_id": {"type": "string", "index": 18, "name": "subscription_csm_id", "comment": null}, "subscriptions_csm_name": {"type": "string", "index": 19, "name": "subscriptions_csm_name", "comment": null}, "subscriptions_csm_team": {"type": "string", "index": 20, "name": "subscriptions_csm_team", "comment": null}, "email_csm_id": {"type": "string", "index": 21, "name": "email_csm_id", "comment": null}, "email_csm_name": {"type": "string", "index": 22, "name": "email_csm_name", "comment": null}, "email_csm_team": {"type": "string", "index": 23, "name": "email_csm_team", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 24, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 93099326.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.fact_account_profile_daily"}, "source.yoda.analytics__static.free_credit_high_touch_bonus": {"metadata": {"type": "table", "schema": "static", "name": "free_credit_high_touch_bonus", "database": null, "comment": null, "owner": "root"}, "columns": {"credit_type": {"type": "string", "index": 0, "name": "credit_type", "comment": null}, "sms_user_id": {"type": "long", "index": 1, "name": "sms_user_id", "comment": null}, "created_at": {"type": "timestamp", "index": 2, "name": "created_at", "comment": null}, "bonus_amount": {"type": "float", "index": 3, "name": "bonus_amount", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 4, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 5434.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.free_credit_high_touch_bonus"}, "source.yoda.analytics__static.loyalty_earning_rule_types_for_synergy_activeness": {"metadata": {"type": "table", "schema": "static", "name": "loyalty_earning_rule_types_for_synergy_activeness", "database": null, "comment": null, "owner": "root"}, "columns": {"earning_rule_type": {"type": "string", "index": 0, "name": "earning_rule_type", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 3915.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.loyalty_earning_rule_types_for_synergy_activeness"}, "source.yoda.analytics__static.organization_onboarding_call_pre_2023_08_27": {"metadata": {"type": "table", "schema": "static", "name": "organization_onboarding_call_pre_2023_08_27", "database": null, "comment": null, "owner": "root"}, "columns": {"organization_key": {"type": "string", "index": 0, "name": "organization_key", "comment": null}, "account_id": {"type": "string", "index": 1, "name": "account_id", "comment": null}, "product_family_group": {"type": "string", "index": 2, "name": "product_family_group", "comment": null}, "onboarding_call_date": {"type": "date", "index": 3, "name": "onboarding_call_date", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 4, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 16815.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.organization_onboarding_call_pre_2023_08_27"}, "source.yoda.platform__static.phone_code_country_mapping": {"metadata": {"type": "table", "schema": "static", "name": "phone_code_country_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"phone_code": {"type": "string", "index": 0, "name": "phone_code", "comment": null}, "country_name": {"type": "string", "index": 1, "name": "country_name", "comment": null}, "area_code": {"type": "string", "index": 2, "name": "area_code", "comment": null}, "iso_country_code": {"type": "string", "index": 3, "name": "iso_country_code", "comment": null}, "region_name": {"type": "string", "index": 4, "name": "region_name", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 5, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 11272.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__static.phone_code_country_mapping"}, "source.yoda.platform__static.pixel_action_mapping": {"metadata": {"type": "table", "schema": "static", "name": "pixel_action_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"product": {"type": "string", "index": 0, "name": "product", "comment": null}, "action": {"type": "string", "index": 1, "name": "action", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 2, "name": "dwh_updated_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.yoda.platform__static.pixel_action_mapping"}, "source.yoda.platform__static.pixel_category_mapping": {"metadata": {"type": "table", "schema": "static", "name": "pixel_category_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"product": {"type": "string", "index": 0, "name": "product", "comment": null}, "widget_version_type": {"type": "short", "index": 1, "name": "widget_version_type", "comment": null}, "category": {"type": "string", "index": 2, "name": "category", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 3, "name": "dwh_updated_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.yoda.platform__static.pixel_category_mapping"}, "source.yoda.platform__static.pixel_duration_mapping": {"metadata": {"type": "table", "schema": "static", "name": "pixel_duration_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"from_seconds": {"type": "decimal(4,2)", "index": 0, "name": "from_seconds", "comment": null}, "to_seconds": {"type": "decimal(4,2)", "index": 1, "name": "to_seconds", "comment": null}, "metric": {"type": "string", "index": 2, "name": "metric", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 3, "name": "dwh_updated_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.yoda.platform__static.pixel_duration_mapping"}, "source.yoda.platform__static.pixel_os_family_mobile_mapping": {"metadata": {"type": "table", "schema": "static", "name": "pixel_os_family_mobile_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"os_family_name": {"type": "string", "index": 0, "name": "os_family_name", "comment": null}, "is_mobile": {"type": "short", "index": 1, "name": "is_mobile", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 2, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 1538.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__static.pixel_os_family_mobile_mapping"}, "source.yoda.analytics__static.product_plan_name_rank": {"metadata": {"type": "table", "schema": "static", "name": "product_plan_name_rank", "database": null, "comment": null, "owner": "root"}, "columns": {"product_family": {"type": "string", "index": 0, "name": "product_family", "comment": null}, "plan_group": {"type": "string", "index": 1, "name": "plan_group", "comment": null}, "plan_name": {"type": "string", "index": 2, "name": "plan_name", "comment": null}, "product_plan_rank": {"type": "integer", "index": 3, "name": "product_plan_rank", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 4, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 2869.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.product_plan_name_rank"}, "source.yoda.analytics__static.saas_organization_daily_history": {"metadata": {"type": "table", "schema": "static", "name": "saas_organization_daily_history", "database": null, "comment": null, "owner": "root"}, "columns": {"organization_key": {"type": "string", "index": 0, "name": "organization_key", "comment": null}, "date": {"type": "date", "index": 1, "name": "date", "comment": null}, "product_family": {"type": "string", "index": 2, "name": "product_family", "comment": null}, "plan_id": {"type": "integer", "index": 3, "name": "plan_id", "comment": null}, "plan_name": {"type": "string", "index": 4, "name": "plan_name", "comment": null}, "is_annual": {"type": "short", "index": 5, "name": "is_annual", "comment": null}, "is_self_service": {"type": "short", "index": 6, "name": "is_self_service", "comment": null}, "is_free": {"type": "short", "index": 7, "name": "is_free", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 8, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 78653137.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.saas_organization_daily_history"}, "source.yoda.platform__static.saas_store_plan_history": {"metadata": {"type": "table", "schema": "static", "name": "saas_store_plan_history", "database": null, "comment": null, "owner": "root"}, "columns": {"from_date": {"type": "date", "index": 0, "name": "from_date", "comment": null}, "to_date": {"type": "date", "index": 1, "name": "to_date", "comment": null}, "organization_key": {"type": "string", "index": 2, "name": "organization_key", "comment": null}, "app_key": {"type": "string", "index": 3, "name": "app_key", "comment": null}, "plan_id": {"type": "integer", "index": 4, "name": "plan_id", "comment": null}, "product_name": {"type": "string", "index": 5, "name": "product_name", "comment": null}, "plan_name": {"type": "string", "index": 6, "name": "plan_name", "comment": null}, "is_sales_attributed": {"type": "short", "index": 7, "name": "is_sales_attributed", "comment": null}, "is_core_plan": {"type": "short", "index": 8, "name": "is_core_plan", "comment": null}, "is_annual": {"type": "short", "index": 9, "name": "is_annual", "comment": null}, "is_ss": {"type": "short", "index": 10, "name": "is_ss", "comment": null}, "is_free": {"type": "short", "index": 11, "name": "is_free", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 12, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 5122106.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__static.saas_store_plan_history"}, "source.yoda.analytics__static.salesforce_object_prefix_id": {"metadata": {"type": "table", "schema": "static", "name": "salesforce_object_prefix_id", "database": null, "comment": null, "owner": "root"}, "columns": {"id_prefix": {"type": "string", "index": 0, "name": "id_prefix", "comment": null}, "object_name": {"type": "string", "index": 1, "name": "object_name", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 2, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 1572.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.salesforce_object_prefix_id"}, "source.yoda.analytics__static.shopify_billing_charge_plan_mapping": {"metadata": {"type": "table", "schema": "static", "name": "shopify_billing_charge_plan_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"product_family": {"type": "string", "index": 0, "name": "product_family", "comment": null}, "charge_name": {"type": "string", "index": 1, "name": "charge_name", "comment": null}, "plan_name": {"type": "string", "index": 2, "name": "plan_name", "comment": null}, "plan_id": {"type": "integer", "index": 3, "name": "plan_id", "comment": null}, "is_self_service": {"type": "short", "index": 4, "name": "is_self_service", "comment": null}, "is_free": {"type": "short", "index": 5, "name": "is_free", "comment": null}, "is_full_service": {"type": "short", "index": 6, "name": "is_full_service", "comment": null}, "is_reviews": {"type": "short", "index": 7, "name": "is_reviews", "comment": null}, "is_loyalty": {"type": "short", "index": 8, "name": "is_loyalty", "comment": null}, "is_vms": {"type": "short", "index": 9, "name": "is_vms", "comment": null}, "is_subscriptions": {"type": "short", "index": 10, "name": "is_subscriptions", "comment": null}, "is_sms": {"type": "short", "index": 11, "name": "is_sms", "comment": null}, "is_email": {"type": "short", "index": 12, "name": "is_email", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 13, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 5613.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.shopify_billing_charge_plan_mapping"}, "source.yoda.analytics__static.sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness": {"metadata": {"type": "table", "schema": "static", "name": "sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "database": null, "comment": null, "owner": "root"}, "columns": {"flow_settings": {"type": "string", "index": 0, "name": "flow_settings", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 6069.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness"}, "source.yoda.analytics__static.sms_flow_triggers_for_synergy_activeness": {"metadata": {"type": "table", "schema": "static", "name": "sms_flow_triggers_for_synergy_activeness", "database": null, "comment": null, "owner": "root"}, "columns": {"flow_trigger": {"type": "string", "index": 0, "name": "flow_trigger", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 8242.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.sms_flow_triggers_for_synergy_activeness"}, "source.yoda.analytics__static.sms_flow_triggers_to_filter_for_custom_loyalty_activeness": {"metadata": {"type": "table", "schema": "static", "name": "sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "database": null, "comment": null, "owner": "root"}, "columns": {"flow_trigger": {"type": "string", "index": 0, "name": "flow_trigger", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 4910.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.sms_flow_triggers_to_filter_for_custom_loyalty_activeness"}, "source.yoda.platform__static.sms_loyalty_synergy_mapping": {"metadata": {"type": "table", "schema": "static", "name": "sms_loyalty_synergy_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"synergy_category_name": {"type": "string", "index": 0, "name": "synergy_category_name", "comment": null}, "synergy_name": {"type": "string", "index": 1, "name": "synergy_name", "comment": null}, "source_value": {"type": "string", "index": 2, "name": "source_value", "comment": null}, "source_column_name": {"type": "string", "index": 3, "name": "source_column_name", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 4, "name": "dwh_updated_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.yoda.platform__static.sms_loyalty_synergy_mapping"}, "source.yoda.analytics__static.sms_predefined_message_sub_category_for_synergy_activeness": {"metadata": {"type": "table", "schema": "static", "name": "sms_predefined_message_sub_category_for_synergy_activeness", "database": null, "comment": null, "owner": "root"}, "columns": {"sub_category": {"type": "string", "index": 0, "name": "sub_category", "comment": null}, "synergy_id": {"type": "integer", "index": 1, "name": "synergy_id", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 4552.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__static.sms_predefined_message_sub_category_for_synergy_activeness"}, "source.yoda.analytics__static.subscription_contract_before_snapshot": {"metadata": {"type": "table", "schema": "static", "name": "subscription_contract_before_snapshot", "database": null, "comment": null, "owner": "root"}, "columns": {"subscription_contract_id": {"type": "long", "index": 0, "name": "subscription_contract_id", "comment": null}, "app_key": {"type": "string", "index": 1, "name": "app_key", "comment": null}, "subscription_contract_status": {"type": "long", "index": 2, "name": "subscription_contract_status", "comment": null}, "delivery_policy_interval": {"type": "long", "index": 3, "name": "delivery_policy_interval", "comment": null}, "delivery_policy_interval_count": {"type": "long", "index": 4, "name": "delivery_policy_interval_count", "comment": null}, "billing_policy_interval": {"type": "long", "index": 5, "name": "billing_policy_interval", "comment": null}, "billing_policy_interval_count": {"type": "long", "index": 6, "name": "billing_policy_interval_count", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 8, "name": "dwh_updated_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.yoda.analytics__static.subscription_contract_before_snapshot"}, "source.yoda.platform__static.subscriptions_contract_history": {"metadata": {"type": "table", "schema": "static", "name": "subscriptions_contract_history", "database": null, "comment": null, "owner": "root"}, "columns": {"from_time": {"type": "timestamp", "index": 0, "name": "from_time", "comment": null}, "to_time": {"type": "timestamp", "index": 1, "name": "to_time", "comment": null}, "app_key": {"type": "string", "index": 2, "name": "app_key", "comment": null}, "contract_id": {"type": "long", "index": 3, "name": "contract_id", "comment": null}, "status_id": {"type": "long", "index": 4, "name": "status_id", "comment": null}, "status_name": {"type": "string", "index": 5, "name": "status_name", "comment": null}, "status_started_at": {"type": "timestamp", "index": 6, "name": "status_started_at", "comment": null}, "delivery_frequency_interval": {"type": "long", "index": 7, "name": "delivery_frequency_interval", "comment": null}, "delivery_frequency_interval_count": {"type": "long", "index": 8, "name": "delivery_frequency_interval_count", "comment": null}, "delivery_frequency_interval_name": {"type": "string", "index": 9, "name": "delivery_frequency_interval_name", "comment": null}, "billing_frequency_interval": {"type": "long", "index": 10, "name": "billing_frequency_interval", "comment": null}, "billing_frequency_interval_count": {"type": "long", "index": 11, "name": "billing_frequency_interval_count", "comment": null}, "billing_frequency_interval_name": {"type": "string", "index": 12, "name": "billing_frequency_interval_name", "comment": null}, "is_migrated_contract": {"type": "short", "index": 13, "name": "is_migrated_contract", "comment": null}, "is_prepaid": {"type": "short", "index": 14, "name": "is_prepaid", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 7326265.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__static.subscriptions_contract_history"}, "source.yoda.platform__static.timezone_country_mapping": {"metadata": {"type": "table", "schema": "static", "name": "timezone_country_mapping", "database": null, "comment": null, "owner": "lior.shabi"}, "columns": {"timezone": {"type": "string", "index": 0, "name": "timezone", "comment": null}, "country_code": {"type": "string", "index": 1, "name": "country_code", "comment": null}, "country_name": {"type": "string", "index": 2, "name": "country_name", "comment": null}, "region_name": {"type": "string", "index": 3, "name": "region_name", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 4, "name": "dwh_updated_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.yoda.platform__static.timezone_country_mapping"}, "source.yoda.ugc__static.ugc_plan_group_change_mapping": {"metadata": {"type": "table", "schema": "static", "name": "ugc_plan_group_change_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"previous_day_plan_group": {"type": "string", "index": 0, "name": "previous_day_plan_group", "comment": null}, "current_day_plan_group": {"type": "string", "index": 1, "name": "current_day_plan_group", "comment": null}, "plan_group_change_type": {"type": "string", "index": 2, "name": "plan_group_change_type", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 3, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 1686.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.ugc__static.ugc_plan_group_change_mapping"}, "source.yoda.platform__products.attribute_sets": {"metadata": {"type": "view", "schema": "products", "name": "attribute_sets", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "attributable_type": {"type": "string", "index": 4, "name": "attributable_type", "comment": null}, "attributable_id": {"type": "long", "index": 5, "name": "attributable_id", "comment": null}, "mpn": {"type": "string", "index": 6, "name": "mpn", "comment": null}, "brand": {"type": "string", "index": 7, "name": "brand", "comment": null}, "sku": {"type": "string", "index": 8, "name": "sku", "comment": null}, "external_sku": {"type": "string", "index": 9, "name": "external_sku", "comment": null}, "created_at": {"type": "timestamp", "index": 10, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_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.yoda.platform__products.attribute_sets"}, "source.yoda.platform__products.custom_attributes": {"metadata": {"type": "view", "schema": "products", "name": "custom_attributes", "database": null, "comment": null, "owner": "root"}, "columns": {"partitioning_time": {"type": "date", "index": 0, "name": "partitioning_time", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 2, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 3, "name": "processing_time", "comment": null}, "attributable_id": {"type": "long", "index": 4, "name": "attributable_id", "comment": null}, "attributable_type": {"type": "string", "index": 5, "name": "attributable_type", "comment": null}, "boolean_value": {"type": "long", "index": 6, "name": "boolean_value", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "key": {"type": "string", "index": 8, "name": "key", "comment": null}, "namespace": {"type": "string", "index": 9, "name": "namespace", "comment": null}, "string_value": {"type": "string", "index": 10, "name": "string_value", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_at", "comment": null}, "value_type": {"type": "string", "index": 12, "name": "value_type", "comment": null}, "ts_ms": {"type": "timestamp", "index": 13, "name": "ts_ms", "comment": null}}, "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.yoda.platform__products.custom_attributes"}, "source.yoda.platform__products.groups": {"metadata": {"type": "view", "schema": "products", "name": "groups", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "name": {"type": "string", "index": 5, "name": "name", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_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.yoda.platform__products.groups"}, "source.yoda.platform__products.gtins": {"metadata": {"type": "view", "schema": "products", "name": "gtins", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "gtinable_type": {"type": "string", "index": 4, "name": "gtinable_type", "comment": null}, "gtinable_id": {"type": "long", "index": 5, "name": "gtinable_id", "comment": null}, "declared_type": {"type": "string", "index": 6, "name": "declared_type", "comment": null}, "detected_type": {"type": "string", "index": 7, "name": "detected_type", "comment": null}, "value": {"type": "string", "index": 8, "name": "value", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_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.yoda.platform__products.gtins"}, "source.yoda.platform__products.products": {"metadata": {"type": "view", "schema": "products", "name": "products", "database": null, "comment": null, "owner": "dporat"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "store_id": {"type": "string", "index": 4, "name": "store_id", "comment": null}, "external_id": {"type": "string", "index": 5, "name": "external_id", "comment": null}, "name": {"type": "string", "index": 6, "name": "name", "comment": null}, "description": {"type": "string", "index": 7, "name": "description", "comment": null}, "url": {"type": "string", "index": 8, "name": "url", "comment": null}, "is_valid_url_format": {"type": "long", "index": 9, "name": "is_valid_url_format", "comment": null}, "price": {"type": "double", "index": 10, "name": "price", "comment": null}, "currency": {"type": "string", "index": 11, "name": "currency", "comment": null}, "inventory_quantity": {"type": "long", "index": 12, "name": "inventory_quantity", "comment": null}, "is_discontinued": {"type": "long", "index": 13, "name": "is_discontinued", "comment": null}, "handle": {"type": "string", "index": 14, "name": "handle", "comment": null}, "group_id": {"type": "long", "index": 15, "name": "group_id", "comment": null}, "custom_properties": {"type": "string", "index": 16, "name": "custom_properties", "comment": null}, "external_created_at": {"type": "timestamp", "index": 17, "name": "external_created_at", "comment": null}, "external_updated_at": {"type": "timestamp", "index": 18, "name": "external_updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 19, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 20, "name": "updated_at", "comment": null}, "status": {"type": "string", "index": 21, "name": "status", "comment": null}, "compare_at_price": {"type": "double", "index": 22, "name": "compare_at_price", "comment": null}, "sku": {"type": "string", "index": 23, "name": "sku", "comment": null}, "tags": {"type": "string", "index": 24, "name": "tags", "comment": null}, "has_real_variants": {"type": "long", "index": 25, "name": "has_real_variants", "comment": null}}, "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.yoda.platform__products.products"}, "source.yoda.platform__products.variants": {"metadata": {"type": "view", "schema": "products", "name": "variants", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "product_id": {"type": "long", "index": 4, "name": "product_id", "comment": null}, "external_id": {"type": "string", "index": 5, "name": "external_id", "comment": null}, "sku": {"type": "string", "index": 6, "name": "sku", "comment": null}, "name": {"type": "string", "index": 7, "name": "name", "comment": null}, "description": {"type": "string", "index": 8, "name": "description", "comment": null}, "url": {"type": "string", "index": 9, "name": "url", "comment": null}, "is_valid_url_format": {"type": "long", "index": 10, "name": "is_valid_url_format", "comment": null}, "price": {"type": "double", "index": 11, "name": "price", "comment": null}, "currency": {"type": "string", "index": 12, "name": "currency", "comment": null}, "inventory_quantity": {"type": "long", "index": 13, "name": "inventory_quantity", "comment": null}, "is_discontinued": {"type": "long", "index": 14, "name": "is_discontinued", "comment": null}, "custom_properties": {"type": "string", "index": 15, "name": "custom_properties", "comment": null}, "external_created_at": {"type": "timestamp", "index": 16, "name": "external_created_at", "comment": null}, "external_updated_at": {"type": "timestamp", "index": 17, "name": "external_updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 18, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 19, "name": "updated_at", "comment": null}, "compare_at_price": {"type": "double", "index": 20, "name": "compare_at_price", "comment": null}}, "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.yoda.platform__products.variants"}, "source.yoda.analytics__salesforce.account_full": {"metadata": {"type": "view", "schema": "salesforce", "name": "account_full", "database": null, "comment": null, "owner": "root"}, "columns": {"ACV_to_next_tier__c": {"type": "double", "index": 0, "name": "ACV_to_next_tier__c", "comment": null}, "Account_Email__c": {"type": "string", "index": 1, "name": "Account_Email__c", "comment": null}, "Account_Stage__c": {"type": "string", "index": 2, "name": "Account_Stage__c", "comment": null}, "Account_Territory__c": {"type": "string", "index": 3, "name": "Account_Territory__c", "comment": null}, "Account_Tier__c": {"type": "string", "index": 4, "name": "Account_Tier__c", "comment": null}, "Active_Leads_Referred__c": {"type": "double", "index": 5, "name": "Active_Leads_Referred__c", "comment": null}, "Ads_Provider__c": {"type": "string", "index": 6, "name": "Ads_Provider__c", "comment": null}, "Agency_Lost_Reason__c": {"type": "string", "index": 7, "name": "Agency_Lost_Reason__c", "comment": null}, "Agency_Potential__c": {"type": "string", "index": 8, "name": "Agency_Potential__c", "comment": null}, "Agency_Segment__c": {"type": "string", "index": 9, "name": "Agency_Segment__c", "comment": null}, "Agency_Services__c": {"type": "string", "index": 10, "name": "Agency_Services__c", "comment": null}, "Agency_Stage__c": {"type": "string", "index": 11, "name": "Agency_Stage__c", "comment": null}, "Agency_Supported_Platforms_Account__c": {"type": "string", "index": 12, "name": "Agency_Supported_Platforms_Account__c", "comment": null}, "Alexa_Rank__c": {"type": "double", "index": 13, "name": "Alexa_Rank__c", "comment": null}, "Annual_Account_Indication__c": {"type": "string", "index": 14, "name": "Annual_Account_Indication__c", "comment": null}, "Annual_Revenue__c": {"type": "string", "index": 15, "name": "Annual_Revenue__c", "comment": null}, "App_Key__c": {"type": "string", "index": 16, "name": "App_Key__c", "comment": null}, "BillingCity": {"type": "string", "index": 17, "name": "BillingCity", "comment": null}, "BillingCountry": {"type": "string", "index": 18, "name": "BillingCountry", "comment": null}, "BillingCountryCode": {"type": "string", "index": 19, "name": "BillingCountryCode", "comment": null}, "BillingPostalCode": {"type": "string", "index": 20, "name": "BillingPostalCode", "comment": null}, "BillingState": {"type": "string", "index": 21, "name": "BillingState", "comment": null}, "BillingStateCode": {"type": "string", "index": 22, "name": "BillingStateCode", "comment": null}, "BillingStreet": {"type": "string", "index": 23, "name": "BillingStreet", "comment": null}, "CDP_Provider__c": {"type": "string", "index": 24, "name": "CDP_Provider__c", "comment": null}, "CSM_Lookup__c": {"type": "string", "index": 25, "name": "CSM_Lookup__c", "comment": null}, "CS_Estimated_AOV__c": {"type": "double", "index": 26, "name": "CS_Estimated_AOV__c", "comment": null}, "CS_Estimated_Annual_Sales__c": {"type": "double", "index": 27, "name": "CS_Estimated_Annual_Sales__c", "comment": null}, "CS_Estimated_Monthly_Orders__c": {"type": "double", "index": 28, "name": "CS_Estimated_Monthly_Orders__c", "comment": null}, "CS_Segment__c": {"type": "string", "index": 29, "name": "CS_Segment__c", "comment": null}, "CS_Tags__c": {"type": "string", "index": 30, "name": "CS_Tags__c", "comment": null}, "Chat_bots_Provider__c": {"type": "string", "index": 31, "name": "Chat_bots_Provider__c", "comment": null}, "Client_s_Agency2__c": {"type": "string", "index": 32, "name": "Client_s_Agency2__c", "comment": null}, "Closest_Contract_Renewal__c": {"type": "string", "index": 33, "name": "Closest_Contract_Renewal__c", "comment": null}, "Confidence_Level_Account__c": {"type": "string", "index": 34, "name": "Confidence_Level_Account__c", "comment": null}, "CreatedDate": {"type": "string", "index": 35, "name": "CreatedDate", "comment": null}, "Cross_Sell_Status__c": {"type": "string", "index": 36, "name": "Cross_Sell_Status__c", "comment": null}, "Cross_sell_Type__c": {"type": "string", "index": 37, "name": "Cross_sell_Type__c", "comment": null}, "Customer_Type__c": {"type": "string", "index": 38, "name": "Customer_Type__c", "comment": null}, "DB_Package_Category__c": {"type": "string", "index": 39, "name": "DB_Package_Category__c", "comment": null}, "Datanayze_Current_Curation_Solution__c": {"type": "string", "index": 40, "name": "Datanayze_Current_Curation_Solution__c", "comment": null}, "Datanayze_Monthly_Tech_Spend__c": {"type": "string", "index": 41, "name": "Datanayze_Monthly_Tech_Spend__c", "comment": null}, "Datanyze_Funding__c": {"type": "string", "index": 42, "name": "Datanyze_Funding__c", "comment": null}, "Description": {"type": "string", "index": 43, "name": "Description", "comment": null}, "Domain__c": {"type": "string", "index": 44, "name": "Domain__c", "comment": null}, "Email_CSM_Name__c": {"type": "string", "index": 45, "name": "Email_CSM_Name__c", "comment": null}, "Email_Service_Provider_ESP__c": {"type": "string", "index": 46, "name": "Email_Service_Provider_ESP__c", "comment": null}, "Engagement_Level__c": {"type": "string", "index": 47, "name": "Engagement_Level__c", "comment": null}, "Enterprise_Account__c": {"type": "boolean", "index": 48, "name": "Enterprise_Account__c", "comment": null}, "Has_A_Community_member__c": {"type": "boolean", "index": 49, "name": "Has_A_Community_member__c", "comment": null}, "Help_Desk_Provider__c": {"type": "string", "index": 50, "name": "Help_Desk_Provider__c", "comment": null}, "IAP_Tier__c": {"type": "string", "index": 51, "name": "IAP_Tier__c", "comment": null}, "Id": {"type": "string", "index": 52, "name": "Id", "comment": null}, "Industry": {"type": "string", "index": 53, "name": "Industry", "comment": null}, "Influencer__c": {"type": "string", "index": 54, "name": "Influencer__c", "comment": null}, "IsDeleted": {"type": "boolean", "index": 55, "name": "IsDeleted", "comment": null}, "Junk_Reason__c": {"type": "string", "index": 56, "name": "Junk_Reason__c", "comment": null}, "LastModifiedDate": {"type": "string", "index": 57, "name": "LastModifiedDate", "comment": null}, "Last_AE__c": {"type": "string", "index": 58, "name": "Last_AE__c", "comment": null}, "Last_AVG_3_Months_Orders__c": {"type": "double", "index": 59, "name": "Last_AVG_3_Months_Orders__c", "comment": null}, "Last_SDR__c": {"type": "string", "index": 60, "name": "Last_SDR__c", "comment": null}, "Latest_Opportunity__c": {"type": "string", "index": 61, "name": "Latest_Opportunity__c", "comment": null}, "Lead_ID__c": {"type": "string", "index": 62, "name": "Lead_ID__c", "comment": null}, "Lead_Referred_Date__c": {"type": "string", "index": 63, "name": "Lead_Referred_Date__c", "comment": null}, "Loyalty_Referral_Provider__c": {"type": "string", "index": 64, "name": "Loyalty_Referral_Provider__c", "comment": null}, "MAP_Limit_Roll_Up__c": {"type": "double", "index": 65, "name": "MAP_Limit_Roll_Up__c", "comment": null}, "MS_Churn_Date__c": {"type": "string", "index": 66, "name": "MS_Churn_Date__c", "comment": null}, "MS_Inbound_Outbound__c": {"type": "string", "index": 67, "name": "MS_Inbound_Outbound__c", "comment": null}, "MS_Live_Date__c": {"type": "string", "index": 68, "name": "MS_Live_Date__c", "comment": null}, "Main_CSM__c": {"type": "string", "index": 69, "name": "Main_CSM__c", "comment": null}, "Managed_Services_Agency__c": {"type": "string", "index": 70, "name": "Managed_Services_Agency__c", "comment": null}, "Merchant_ID__c": {"type": "string", "index": 71, "name": "Merchant_ID__c", "comment": null}, "Multi_Product_Account__c": {"type": "boolean", "index": 72, "name": "Multi_Product_Account__c", "comment": null}, "Name": {"type": "string", "index": 73, "name": "Name", "comment": null}, "Next_Partner_Tier__c": {"type": "string", "index": 74, "name": "Next_Partner_Tier__c", "comment": null}, "Number_of_Employees__c": {"type": "string", "index": 75, "name": "Number_of_Employees__c", "comment": null}, "Nurturing_Reason__c": {"type": "string", "index": 76, "name": "Nurturing_Reason__c", "comment": null}, "Organization_Key__c": {"type": "string", "index": 77, "name": "Organization_Key__c", "comment": null}, "OwnerId": {"type": "string", "index": 78, "name": "OwnerId", "comment": null}, "POS_Provider__c": {"type": "string", "index": 79, "name": "POS_Provider__c", "comment": null}, "Package_Base__c": {"type": "string", "index": 80, "name": "Package_Base__c", "comment": null}, "Package_Category__c": {"type": "string", "index": 81, "name": "Package_Category__c", "comment": null}, "Package_Extensions__c": {"type": "string", "index": 82, "name": "Package_Extensions__c", "comment": null}, "Package__c": {"type": "string", "index": 83, "name": "Package__c", "comment": null}, "ParentId": {"type": "string", "index": 84, "name": "ParentId", "comment": null}, "Partner_Influencer_Referrer_Type__c": {"type": "string", "index": 85, "name": "Partner_Influencer_Referrer_Type__c", "comment": null}, "Partner_Tier__c": {"type": "string", "index": 86, "name": "Partner_Tier__c", "comment": null}, "Payment_Provider__c": {"type": "string", "index": 87, "name": "Payment_Provider__c", "comment": null}, "Personalization_Provider__c": {"type": "string", "index": 88, "name": "Personalization_Provider__c", "comment": null}, "Platform__c": {"type": "string", "index": 89, "name": "Platform__c", "comment": null}, "Primary_Sales_Channel__c": {"type": "string", "index": 90, "name": "Primary_Sales_Channel__c", "comment": null}, "Rating": {"type": "string", "index": 91, "name": "Rating", "comment": null}, "Referral_Agreement_Signed__c": {"type": "boolean", "index": 92, "name": "Referral_Agreement_Signed__c", "comment": null}, "Referrer_Type_Sub_Category__c": {"type": "string", "index": 93, "name": "Referrer_Type_Sub_Category__c", "comment": null}, "Referrer_Type__c": {"type": "string", "index": 94, "name": "Referrer_Type__c", "comment": null}, "Referrer__c": {"type": "string", "index": 95, "name": "Referrer__c", "comment": null}, "Registration_Date__c": {"type": "string", "index": 96, "name": "Registration_Date__c", "comment": null}, "Renewal_Cycle__c": {"type": "double", "index": 97, "name": "Renewal_Cycle__c", "comment": null}, "Reviews_Provider_List__c": {"type": "string", "index": 98, "name": "Reviews_Provider_List__c", "comment": null}, "SAL_to_next_tier__c": {"type": "double", "index": 99, "name": "SAL_to_next_tier__c", "comment": null}, "SDR_Owner__c": {"type": "string", "index": 100, "name": "SDR_Owner__c", "comment": null}, "SMS_ACV__c": {"type": "double", "index": 101, "name": "SMS_ACV__c", "comment": null}, "SMS_Annualized_Usage_Rev__c": {"type": "double", "index": 102, "name": "SMS_Annualized_Usage_Rev__c", "comment": null}, "SMS_CSM__c": {"type": "string", "index": 103, "name": "SMS_CSM__c", "comment": null}, "SMS_Provider__c": {"type": "string", "index": 104, "name": "SMS_Provider__c", "comment": null}, "SMS_Strategist__c": {"type": "string", "index": 105, "name": "SMS_Strategist__c", "comment": null}, "SMS_Total_ARR__c": {"type": "double", "index": 106, "name": "SMS_Total_ARR__c", "comment": null}, "SMS_Usage_Cancellation_Date__c": {"type": "string", "index": 107, "name": "SMS_Usage_Cancellation_Date__c", "comment": null}, "SMS_User_ID__c": {"type": "double", "index": 108, "name": "SMS_User_ID__c", "comment": null}, "Sales_Estimated_Monthly_Orders__c": {"type": "string", "index": 109, "name": "Sales_Estimated_Monthly_Orders__c", "comment": null}, "Sales_Estimated_Subscribers__c": {"type": "string", "index": 110, "name": "Sales_Estimated_Subscribers__c", "comment": null}, "Sales_Segment__c": {"type": "string", "index": 111, "name": "Sales_Segment__c", "comment": null}, "Search_Provider__c": {"type": "string", "index": 112, "name": "Search_Provider__c", "comment": null}, "SimilarWeb_Traffic__c": {"type": "double", "index": 113, "name": "SimilarWeb_Traffic__c", "comment": null}, "Status__c": {"type": "string", "index": 114, "name": "Status__c", "comment": null}, "Strategic_Priority__c": {"type": "boolean", "index": 115, "name": "Strategic_Priority__c", "comment": null}, "Sub_Nurturing_Reason__c": {"type": "string", "index": 116, "name": "Sub_Nurturing_Reason__c", "comment": null}, "Subscription_Seller__c": {"type": "string", "index": 117, "name": "Subscription_Seller__c", "comment": null}, "Subscriptions_CSM__c": {"type": "string", "index": 118, "name": "Subscriptions_CSM__c", "comment": null}, "Swell_ACV__c": {"type": "double", "index": 119, "name": "Swell_ACV__c", "comment": null}, "Swell_CSM__c": {"type": "string", "index": 120, "name": "Swell_CSM__c", "comment": null}, "Swell_Contract_Renewal_Date__c": {"type": "string", "index": 121, "name": "Swell_Contract_Renewal_Date__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 122, "name": "SystemModstamp", "comment": null}, "Test_Account__c": {"type": "boolean", "index": 123, "name": "Test_Account__c", "comment": null}, "Time_Zone__c": {"type": "string", "index": 124, "name": "Time_Zone__c", "comment": null}, "Total_ACV__c": {"type": "double", "index": 125, "name": "Total_ACV__c", "comment": null}, "UTM_Campaign__c": {"type": "string", "index": 126, "name": "UTM_Campaign__c", "comment": null}, "UTM_Content__c": {"type": "string", "index": 127, "name": "UTM_Content__c", "comment": null}, "UTM_Medium__c": {"type": "string", "index": 128, "name": "UTM_Medium__c", "comment": null}, "UTM_Source__c": {"type": "string", "index": 129, "name": "UTM_Source__c", "comment": null}, "UTM_Term__c": {"type": "string", "index": 130, "name": "UTM_Term__c", "comment": null}, "VMS_ACV__c": {"type": "double", "index": 131, "name": "VMS_ACV__c", "comment": null}, "VMS_Contract_Renewal_Date__c": {"type": "string", "index": 132, "name": "VMS_Contract_Renewal_Date__c", "comment": null}, "previous_db_package__c": {"type": "string", "index": 133, "name": "previous_db_package__c", "comment": null}, "Yotpo_ACV__c": {"type": "double", "index": 134, "name": "Yotpo_ACV__c", "comment": null}, "Yotpo_Contract_Renewal_Date__c": {"type": "string", "index": 135, "name": "Yotpo_Contract_Renewal_Date__c", "comment": null}, "Yotpo_Industry_Account__c": {"type": "string", "index": 136, "name": "Yotpo_Industry_Account__c", "comment": null}, "Yotpo_Industry_Verified_Account__c": {"type": "boolean", "index": 137, "name": "Yotpo_Industry_Verified_Account__c", "comment": null}, "Yotpo_Sub_Industry_Account__c": {"type": "string", "index": 138, "name": "Yotpo_Sub_Industry_Account__c", "comment": null}, "Sales_Region_new__c": {"type": "string", "index": 139, "name": "Sales_Region_new__c", "comment": null}, "Agency_No_of_Employees_Account__c": {"type": "string", "index": 140, "name": "Agency_No_of_Employees_Account__c", "comment": null}, "Products_In_The_TAM_New__c": {"type": "string", "index": 141, "name": "Products_In_The_TAM_New__c", "comment": null}, "Agency_Clients_Level_Account__c": {"type": "string", "index": 142, "name": "Agency_Clients_Level_Account__c", "comment": null}, "of_Current_Contracts__c": {"type": "double", "index": 143, "name": "of_Current_Contracts__c", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 144, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 145, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 146, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 147, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 148, "name": "_sdc_table_version", "comment": null}, "rn": {"type": "integer", "index": 149, "name": "rn", "comment": null}}, "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.yoda.analytics__salesforce.account_full"}, "source.yoda.analytics__salesforce.account_product__c_full": {"metadata": {"type": "view", "schema": "salesforce", "name": "account_product__c_full", "database": null, "comment": null, "owner": "root"}, "columns": {"ACV_USD__c": {"type": "double", "index": 0, "name": "ACV_USD__c", "comment": null}, "Account_Product_CSM_Role__c": {"type": "string", "index": 1, "name": "Account_Product_CSM_Role__c", "comment": null}, "Account_Product_CSM_Team__c": {"type": "string", "index": 2, "name": "Account_Product_CSM_Team__c", "comment": null}, "Account_s_Product_CSM_Is_LT_SCSM__c": {"type": "boolean", "index": 3, "name": "Account_s_Product_CSM_Is_LT_SCSM__c", "comment": null}, "Contract_Renewal_Date__c": {"type": "string", "index": 4, "name": "Contract_Renewal_Date__c", "comment": null}, "Current_Contract__c": {"type": "boolean", "index": 5, "name": "Current_Contract__c", "comment": null}, "Current_Usage_Commitment_Credits_Spent__c": {"type": "double", "index": 6, "name": "Current_Usage_Commitment_Credits_Spent__c", "comment": null}, "Current_Usage_Commitment_Term_End_Date__c": {"type": "string", "index": 7, "name": "Current_Usage_Commitment_Term_End_Date__c", "comment": null}, "Current_Usage_Commitment_Term_Start_Date__c": {"type": "string", "index": 8, "name": "Current_Usage_Commitment_Term_Start_Date__c", "comment": null}, "Current_Usage_Commitment_Term__c": {"type": "string", "index": 9, "name": "Current_Usage_Commitment_Term__c", "comment": null}, "Current_Usage_Commitment_Value__c": {"type": "double", "index": 10, "name": "Current_Usage_Commitment_Value__c", "comment": null}, "Days_Until_Contract_Renewal__c": {"type": "double", "index": 11, "name": "Days_Until_Contract_Renewal__c", "comment": null}, "Delta_Current_Commitment__c": {"type": "double", "index": 12, "name": "Delta_Current_Commitment__c", "comment": null}, "Has_Met_Current_Usage_Commitment__c": {"type": "boolean", "index": 13, "name": "Has_Met_Current_Usage_Commitment__c", "comment": null}, "Id": {"type": "string", "index": 14, "name": "Id", "comment": null}, "Main_Product_Families__c": {"type": "string", "index": 15, "name": "Main_Product_Families__c", "comment": null}, "Onboarding_Completion_Date__c": {"type": "string", "index": 16, "name": "Onboarding_Completion_Date__c", "comment": null}, "Opportunity_Conversion_Rate__c": {"type": "double", "index": 17, "name": "Opportunity_Conversion_Rate__c", "comment": null}, "Opportunity_Start_Date__c": {"type": "string", "index": 18, "name": "Opportunity_Start_Date__c", "comment": null}, "Opportunity_Type__c": {"type": "string", "index": 19, "name": "Opportunity_Type__c", "comment": null}, "Product_Initial_Won_Date_Self_Service__c": {"type": "string", "index": 20, "name": "Product_Initial_Won_Date_Self_Service__c", "comment": null}, "Product_Initial_Won_Date__c": {"type": "string", "index": 21, "name": "Product_Initial_Won_Date__c", "comment": null}, "Strategic_Priority_Account__c": {"type": "boolean", "index": 22, "name": "Strategic_Priority_Account__c", "comment": null}, "Super_CSM_Account_Product__c": {"type": "boolean", "index": 23, "name": "Super_CSM_Account_Product__c", "comment": null}, "acv__c": {"type": "double", "index": 24, "name": "acv__c", "comment": null}, "account__c": {"type": "string", "index": 25, "name": "account__c", "comment": null}, "currencyisocode": {"type": "string", "index": 26, "name": "currencyisocode", "comment": null}, "date_of_live_on_site_loyalty__c": {"type": "string", "index": 27, "name": "date_of_live_on_site_loyalty__c", "comment": null}, "initially_won_opportunity__c": {"type": "string", "index": 28, "name": "initially_won_opportunity__c", "comment": null}, "initially_won_self_service_opportunity__c": {"type": "string", "index": 29, "name": "initially_won_self_service_opportunity__c", "comment": null}, "isdeleted": {"type": "boolean", "index": 30, "name": "isdeleted", "comment": null}, "live_date__c": {"type": "string", "index": 31, "name": "live_date__c", "comment": null}, "live_on_site_loyalty__c": {"type": "string", "index": 32, "name": "live_on_site_loyalty__c", "comment": null}, "name": {"type": "string", "index": 33, "name": "name", "comment": null}, "number_of_ob__c": {"type": "double", "index": 34, "name": "number_of_ob__c", "comment": null}, "onboarding_manager_csm_team__c": {"type": "string", "index": 35, "name": "onboarding_manager_csm_team__c", "comment": null}, "onboarding_manager__c": {"type": "string", "index": 36, "name": "onboarding_manager__c", "comment": null}, "opportunity__c": {"type": "string", "index": 37, "name": "opportunity__c", "comment": null}, "product_line__c": {"type": "string", "index": 38, "name": "product_line__c", "comment": null}, "product__c": {"type": "string", "index": 39, "name": "product__c", "comment": null}, "stage__c": {"type": "string", "index": 40, "name": "stage__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 41, "name": "SystemModstamp", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 42, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 43, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 44, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 45, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 46, "name": "_sdc_table_version", "comment": null}, "rn": {"type": "integer", "index": 47, "name": "rn", "comment": null}}, "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.yoda.analytics__salesforce.account_product__c_full"}, "source.yoda.analytics__salesforce.campaign": {"metadata": {"type": "view", "schema": "salesforce", "name": "campaign", "database": null, "comment": null, "owner": "root"}, "columns": {"actualcost": {"type": "double", "index": 0, "name": "actualcost", "comment": null}, "amountallopportunities": {"type": "double", "index": 1, "name": "amountallopportunities", "comment": null}, "amountwonopportunities": {"type": "double", "index": 2, "name": "amountwonopportunities", "comment": null}, "campaign_url__c": {"type": "string", "index": 3, "name": "campaign_url__c", "comment": null}, "createdbyid": {"type": "string", "index": 4, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 5, "name": "createddate", "comment": null}, "currencyisocode": {"type": "string", "index": 6, "name": "currencyisocode", "comment": null}, "description": {"type": "string", "index": 7, "name": "description", "comment": null}, "enddate": {"type": "string", "index": 8, "name": "enddate", "comment": null}, "expectedresponse": {"type": "long", "index": 9, "name": "expectedresponse", "comment": null}, "hierarchyactualcost": {"type": "double", "index": 10, "name": "hierarchyactualcost", "comment": null}, "hierarchyamountallopportunities": {"type": "double", "index": 11, "name": "hierarchyamountallopportunities", "comment": null}, "hierarchyamountwonopportunities": {"type": "double", "index": 12, "name": "hierarchyamountwonopportunities", "comment": null}, "hierarchybudgetedcost": {"type": "long", "index": 13, "name": "hierarchybudgetedcost", "comment": null}, "hierarchyexpectedrevenue": {"type": "long", "index": 14, "name": "hierarchyexpectedrevenue", "comment": null}, "hierarchynumberofcontacts": {"type": "long", "index": 15, "name": "hierarchynumberofcontacts", "comment": null}, "hierarchynumberofconvertedleads": {"type": "long", "index": 16, "name": "hierarchynumberofconvertedleads", "comment": null}, "hierarchynumberofleads": {"type": "long", "index": 17, "name": "hierarchynumberofleads", "comment": null}, "hierarchynumberofopportunities": {"type": "long", "index": 18, "name": "hierarchynumberofopportunities", "comment": null}, "hierarchynumberofresponses": {"type": "long", "index": 19, "name": "hierarchynumberofresponses", "comment": null}, "hierarchynumberofwonopportunities": {"type": "long", "index": 20, "name": "hierarchynumberofwonopportunities", "comment": null}, "hierarchynumbersent": {"type": "long", "index": 21, "name": "hierarchynumbersent", "comment": null}, "id": {"type": "string", "index": 22, "name": "id", "comment": null}, "isactive": {"type": "boolean", "index": 23, "name": "isactive", "comment": null}, "isdeleted": {"type": "boolean", "index": 24, "name": "isdeleted", "comment": null}, "lastactivitydate": {"type": "string", "index": 25, "name": "lastactivitydate", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 26, "name": "lastmodifiedbyid", "comment": null}, "lastmodifieddate": {"type": "string", "index": 27, "name": "lastmodifieddate", "comment": null}, "lastreferenceddate": {"type": "string", "index": 28, "name": "lastreferenceddate", "comment": null}, "lastvieweddate": {"type": "string", "index": 29, "name": "lastvieweddate", "comment": null}, "name": {"type": "string", "index": 30, "name": "name", "comment": null}, "numberofcontacts": {"type": "long", "index": 31, "name": "numberofcontacts", "comment": null}, "numberofconvertedleads": {"type": "long", "index": 32, "name": "numberofconvertedleads", "comment": null}, "numberofleads": {"type": "long", "index": 33, "name": "numberofleads", "comment": null}, "numberofopportunities": {"type": "long", "index": 34, "name": "numberofopportunities", "comment": null}, "numberofresponses": {"type": "long", "index": 35, "name": "numberofresponses", "comment": null}, "numberofwonopportunities": {"type": "long", "index": 36, "name": "numberofwonopportunities", "comment": null}, "numbersent": {"type": "long", "index": 37, "name": "numbersent", "comment": null}, "original_source__c": {"type": "string", "index": 38, "name": "original_source__c", "comment": null}, "ownerid": {"type": "string", "index": 39, "name": "ownerid", "comment": null}, "parentid": {"type": "string", "index": 40, "name": "parentid", "comment": null}, "related_products__c": {"type": "string", "index": 41, "name": "related_products__c", "comment": null}, "startdate": {"type": "string", "index": 42, "name": "startdate", "comment": null}, "status": {"type": "string", "index": 43, "name": "status", "comment": null}, "sub_type__c": {"type": "string", "index": 44, "name": "sub_type__c", "comment": null}, "systemmodstamp": {"type": "string", "index": 45, "name": "systemmodstamp", "comment": null}, "type": {"type": "string", "index": 46, "name": "type", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 47, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 48, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 49, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 50, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 51, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 52, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 53, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 54, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce.campaign"}, "source.yoda.analytics__salesforce.case_full": {"metadata": {"type": "view", "schema": "salesforce", "name": "case_full", "database": null, "comment": null, "owner": "root"}, "columns": {"AccountId": {"type": "string", "index": 0, "name": "AccountId", "comment": null}, "Bug_Actual_TTR__c": {"type": "double", "index": 1, "name": "Bug_Actual_TTR__c", "comment": null}, "Bug_Fix_Due_Date_Initial__c": {"type": "string", "index": 2, "name": "Bug_Fix_Due_Date_Initial__c", "comment": null}, "Bug_Fix_Due_Date__c": {"type": "string", "index": 3, "name": "Bug_Fix_Due_Date__c", "comment": null}, "Bug_Number__c": {"type": "string", "index": 4, "name": "Bug_Number__c", "comment": null}, "Bug_Status__c": {"type": "string", "index": 5, "name": "Bug_Status__c", "comment": null}, "Bug_number_days_in_delay_timer__c": {"type": "string", "index": 6, "name": "Bug_number_days_in_delay_timer__c", "comment": null}, "CaseNumber": {"type": "string", "index": 7, "name": "CaseNumber", "comment": null}, "Case_Group__c": {"type": "string", "index": 8, "name": "Case_Group__c", "comment": null}, "Case_Score__c": {"type": "double", "index": 9, "name": "Case_Score__c", "comment": null}, "Case_Team_Formula__c": {"type": "string", "index": 10, "name": "Case_Team_Formula__c", "comment": null}, "Case_Team__c": {"type": "string", "index": 11, "name": "Case_Team__c", "comment": null}, "ClosedDate": {"type": "string", "index": 12, "name": "ClosedDate", "comment": null}, "Counter_Agent_Replies__c": {"type": "double", "index": 13, "name": "Counter_Agent_Replies__c", "comment": null}, "Counter_Total_Replies__c": {"type": "double", "index": 14, "name": "Counter_Total_Replies__c", "comment": null}, "CreatedDate": {"type": "string", "index": 15, "name": "CreatedDate", "comment": null}, "De_escalated_At__c": {"type": "string", "index": 16, "name": "De_escalated_At__c", "comment": null}, "Description": {"type": "string", "index": 17, "name": "Description", "comment": null}, "Escalated_to_Tier_2_at__c": {"type": "string", "index": 18, "name": "Escalated_to_Tier_2_at__c", "comment": null}, "Escalation_Severity__c": {"type": "string", "index": 19, "name": "Escalation_Severity__c", "comment": null}, "Escalation_Type__c": {"type": "string", "index": 20, "name": "Escalation_Type__c", "comment": null}, "Feature__c": {"type": "string", "index": 21, "name": "Feature__c", "comment": null}, "First_Response_Date__c": {"type": "string", "index": 22, "name": "First_Response_Date__c", "comment": null}, "Id": {"type": "string", "index": 23, "name": "Id", "comment": null}, "Incident__c": {"type": "string", "index": 24, "name": "Incident__c", "comment": null}, "Inquiry_Type__c": {"type": "string", "index": 25, "name": "Inquiry_Type__c", "comment": null}, "IsClosed": {"type": "boolean", "index": 26, "name": "IsClosed", "comment": null}, "IsDeleted": {"type": "boolean", "index": 27, "name": "IsDeleted", "comment": null}, "IsEscalated": {"type": "boolean", "index": 28, "name": "IsEscalated", "comment": null}, "Live_Chat_End_Date__c": {"type": "string", "index": 29, "name": "Live_Chat_End_Date__c", "comment": null}, "Live_Chat_Start_Date__c": {"type": "string", "index": 30, "name": "Live_Chat_Start_Date__c", "comment": null}, "Organization_Key__c": {"type": "string", "index": 31, "name": "Organization_Key__c", "comment": null}, "Origin": {"type": "string", "index": 32, "name": "Origin", "comment": null}, "Product_Line__c": {"type": "string", "index": 33, "name": "Product_Line__c", "comment": null}, "RecordTypeId": {"type": "string", "index": 34, "name": "RecordTypeId", "comment": null}, "Requester_Email__c": {"type": "string", "index": 35, "name": "Requester_Email__c", "comment": null}, "SE_Time_in_Pending_R_D_hr__c": {"type": "double", "index": 36, "name": "SE_Time_in_Pending_R_D_hr__c", "comment": null}, "Severity_Score__c": {"type": "string", "index": 37, "name": "Severity_Score__c", "comment": null}, "Snapshot_Customer_Segment__c": {"type": "string", "index": 38, "name": "Snapshot_Customer_Segment__c", "comment": null}, "Status": {"type": "string", "index": 39, "name": "Status", "comment": null}, "Store_App_Key_Text__c": {"type": "string", "index": 40, "name": "Store_App_Key_Text__c", "comment": null}, "Subject": {"type": "string", "index": 41, "name": "Subject", "comment": null}, "Survey_Response_Date__c": {"type": "string", "index": 42, "name": "Survey_Response_Date__c", "comment": null}, "Survey_Score__c": {"type": "double", "index": 43, "name": "Survey_Score__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 44, "name": "SystemModstamp", "comment": null}, "Tier_2_First_Response_Date__c": {"type": "string", "index": 45, "name": "Tier_2_First_Response_Date__c", "comment": null}, "Time_to_First_Response_Tier_2_Min__c": {"type": "double", "index": 46, "name": "Time_to_First_Response_Tier_2_Min__c", "comment": null}, "Time_to_First_Response__c": {"type": "double", "index": 47, "name": "Time_to_First_Response__c", "comment": null}, "Time_to_Resolution__c": {"type": "double", "index": 48, "name": "Time_to_Resolution__c", "comment": null}, "Timer_Requester_Wait_Time_T1__c": {"type": "double", "index": 49, "name": "Timer_Requester_Wait_Time_T1__c", "comment": null}, "Timer_Requester_Wait_Time_T2__c": {"type": "double", "index": 50, "name": "Timer_Requester_Wait_Time_T2__c", "comment": null}, "Timer_Requester_Wait_Time__c": {"type": "double", "index": 51, "name": "Timer_Requester_Wait_Time__c", "comment": null}, "Timer_T1_Net_Support_RWT__c": {"type": "double", "index": 52, "name": "Timer_T1_Net_Support_RWT__c", "comment": null}, "Timer_T2_Net_Support_RWT__c": {"type": "double", "index": 53, "name": "Timer_T2_Net_Support_RWT__c", "comment": null}, "Timer_Time_In_Development__c": {"type": "double", "index": 54, "name": "Timer_Time_In_Development__c", "comment": null}, "Timer_Time_In_Pending_CSM__c": {"type": "double", "index": 55, "name": "Timer_Time_In_Pending_CSM__c", "comment": null}, "Timer_Time_in_P_Escalation_hr__c": {"type": "double", "index": 56, "name": "Timer_Time_in_P_Escalation_hr__c", "comment": null}, "Topic__c": {"type": "string", "index": 57, "name": "Topic__c", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 58, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 59, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 60, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 61, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 62, "name": "_sdc_table_version", "comment": null}, "rn": {"type": "integer", "index": 63, "name": "rn", "comment": null}}, "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.yoda.analytics__salesforce.case_full"}, "source.yoda.analytics__salesforce.contact": {"metadata": {"type": "view", "schema": "salesforce", "name": "contact", "database": null, "comment": null, "owner": "root"}, "columns": {"avg_traffic_6_months__c": {"type": "long", "index": 0, "name": "avg_traffic_6_months__c", "comment": null}, "accountid": {"type": "string", "index": 1, "name": "accountid", "comment": null}, "account_country__c": {"type": "string", "index": 2, "name": "account_country__c", "comment": null}, "account_db_package__c": {"type": "string", "index": 3, "name": "account_db_package__c", "comment": null}, "account_in_cross_sell_process__c": {"type": "boolean", "index": 4, "name": "account_in_cross_sell_process__c", "comment": null}, "account_name__c": {"type": "string", "index": 5, "name": "account_name__c", "comment": null}, "account_owner__c": {"type": "string", "index": 6, "name": "account_owner__c", "comment": null}, "account_sdr_owner__c": {"type": "string", "index": 7, "name": "account_sdr_owner__c", "comment": null}, "account_status__c": {"type": "string", "index": 8, "name": "account_status__c", "comment": null}, "account_territory__c": {"type": "string", "index": 9, "name": "account_territory__c", "comment": null}, "account_s_organization_key__c": {"type": "string", "index": 10, "name": "account_s_organization_key__c", "comment": null}, "active_community_member__c": {"type": "boolean", "index": 11, "name": "active_community_member__c", "comment": null}, "active_contact_14_days__c": {"type": "long", "index": 12, "name": "active_contact_14_days__c", "comment": null}, "additional_email_address__c": {"type": "string", "index": 13, "name": "additional_email_address__c", "comment": null}, "additional_email__c": {"type": "string", "index": 14, "name": "additional_email__c", "comment": null}, "additional_phone_number__c": {"type": "string", "index": 15, "name": "additional_phone_number__c", "comment": null}, "ads_provider__c": {"type": "string", "index": 16, "name": "ads_provider__c", "comment": null}, "agency_potential__c": {"type": "string", "index": 17, "name": "agency_potential__c", "comment": null}, "agency_stage__c": {"type": "string", "index": 18, "name": "agency_stage__c", "comment": null}, "annual_revenue__c": {"type": "string", "index": 19, "name": "annual_revenue__c", "comment": null}, "ask_to_renew__c": {"type": "boolean", "index": 20, "name": "ask_to_renew__c", "comment": null}, "automate_contact_status_timestamp__c": {"type": "string", "index": 21, "name": "automate_contact_status_timestamp__c", "comment": null}, "bounce_rate__c": {"type": "double", "index": 22, "name": "bounce_rate__c", "comment": null}, "cdp_provider__c": {"type": "string", "index": 23, "name": "cdp_provider__c", "comment": null}, "csm_email_re_engaged__c": {"type": "string", "index": 24, "name": "csm_email_re_engaged__c", "comment": null}, "champion__c": {"type": "boolean", "index": 25, "name": "champion__c", "comment": null}, "chat_bots_provider__c": {"type": "string", "index": 26, "name": "chat_bots_provider__c", "comment": null}, "comments__c": {"type": "string", "index": 27, "name": "comments__c", "comment": null}, "commonalities__c": {"type": "string", "index": 28, "name": "commonalities__c", "comment": null}, "community_user_my_account_s_contacts__c": {"type": "boolean", "index": 29, "name": "community_user_my_account_s_contacts__c", "comment": null}, "contact_count__c": {"type": "long", "index": 30, "name": "contact_count__c", "comment": null}, "contact_id_18__c": {"type": "string", "index": 31, "name": "contact_id_18__c", "comment": null}, "contact_last_campaign__c": {"type": "string", "index": 32, "name": "contact_last_campaign__c", "comment": null}, "contact_last_hubspot_engagement__c": {"type": "string", "index": 33, "name": "contact_last_hubspot_engagement__c", "comment": null}, "contact_notes__c": {"type": "string", "index": 34, "name": "contact_notes__c", "comment": null}, "contact_role__c": {"type": "string", "index": 35, "name": "contact_role__c", "comment": null}, "contact_status__c": {"type": "string", "index": 36, "name": "contact_status__c", "comment": null}, "contact_owner_not_account_owner__c": {"type": "boolean", "index": 37, "name": "contact_owner_not_account_owner__c", "comment": null}, "contacts_in_common__c": {"type": "string", "index": 38, "name": "contacts_in_common__c", "comment": null}, "converted_by_ringlead_webhook__c": {"type": "string", "index": 39, "name": "converted_by_ringlead_webhook__c", "comment": null}, "country_region__c": {"type": "string", "index": 40, "name": "country_region__c", "comment": null}, "createdbyid": {"type": "string", "index": 41, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 42, "name": "createddate", "comment": null}, "created_via_docusign__c": {"type": "boolean", "index": 43, "name": "created_via_docusign__c", "comment": null}, "critical_event__c": {"type": "string", "index": 44, "name": "critical_event__c", "comment": null}, "currencyisocode": {"type": "string", "index": 45, "name": "currencyisocode", "comment": null}, "current_curation_solution__c": {"type": "string", "index": 46, "name": "current_curation_solution__c", "comment": null}, "current_marketing_efforts__c": {"type": "string", "index": 47, "name": "current_marketing_efforts__c", "comment": null}, "dozisf__zoominfo_company_id__c": {"type": "string", "index": 48, "name": "dozisf__zoominfo_company_id__c", "comment": null}, "dozisf__zoominfo_first_updated__c": {"type": "string", "index": 49, "name": "dozisf__zoominfo_first_updated__c", "comment": null}, "dozisf__zoominfo_id__c": {"type": "string", "index": 50, "name": "dozisf__zoominfo_id__c", "comment": null}, "dozisf__zoominfo_last_updated__c": {"type": "string", "index": 51, "name": "dozisf__zoominfo_last_updated__c", "comment": null}, "ds_account_id__c": {"type": "string", "index": 52, "name": "ds_account_id__c", "comment": null}, "days_from_last_activity__c": {"type": "long", "index": 53, "name": "days_from_last_activity__c", "comment": null}, "days_since_last_activity_after_assign__c": {"type": "long", "index": 54, "name": "days_since_last_activity_after_assign__c", "comment": null}, "days_since_last_activity_after_engage__c": {"type": "long", "index": 55, "name": "days_since_last_activity_after_engage__c", "comment": null}, "days_since_last_activity_after_mql__c": {"type": "long", "index": 56, "name": "days_since_last_activity_after_mql__c", "comment": null}, "days_since_last_communicated__c": {"type": "long", "index": 57, "name": "days_since_last_communicated__c", "comment": null}, "days_from_last_assign_to_first_touch__c": {"type": "double", "index": 58, "name": "days_from_last_assign_to_first_touch__c", "comment": null}, "decision_maker__c": {"type": "boolean", "index": 59, "name": "decision_maker__c", "comment": null}, "department": {"type": "string", "index": 60, "name": "department", "comment": null}, "description": {"type": "string", "index": 61, "name": "description", "comment": null}, "direct_traffic_share__c": {"type": "double", "index": 62, "name": "direct_traffic_share__c", "comment": null}, "donotcall": {"type": "boolean", "index": 63, "name": "donotcall", "comment": null}, "doesn_t_work_here__c": {"type": "boolean", "index": 64, "name": "doesn_t_work_here__c", "comment": null}, "domain__c": {"type": "string", "index": 65, "name": "domain__c", "comment": null}, "domain_copy__c": {"type": "string", "index": 66, "name": "domain_copy__c", "comment": null}, "drift_assignee__c": {"type": "string", "index": 67, "name": "drift_assignee__c", "comment": null}, "effective_source__c": {"type": "string", "index": 68, "name": "effective_source__c", "comment": null}, "emailbounceddate": {"type": "string", "index": 69, "name": "emailbounceddate", "comment": null}, "emailbouncedreason": {"type": "string", "index": 70, "name": "emailbouncedreason", "comment": null}, "email_domain__c": {"type": "string", "index": 71, "name": "email_domain__c", "comment": null}, "email_validation__c": {"type": "string", "index": 72, "name": "email_validation__c", "comment": null}, "email": {"type": "string", "index": 73, "name": "email", "comment": null}, "enterprise_contact_formula__c": {"type": "boolean", "index": 74, "name": "enterprise_contact_formula__c", "comment": null}, "enterprise_contact__c": {"type": "boolean", "index": 75, "name": "enterprise_contact__c", "comment": null}, "estimated_aov__c": {"type": "double", "index": 76, "name": "estimated_aov__c", "comment": null}, "estimated_of_orders__c": {"type": "string", "index": 77, "name": "estimated_of_orders__c", "comment": null}, "fb_likes__c": {"type": "string", "index": 78, "name": "fb_likes__c", "comment": null}, "fax": {"type": "string", "index": 79, "name": "fax", "comment": null}, "features_to_focus_on__c": {"type": "string", "index": 80, "name": "features_to_focus_on__c", "comment": null}, "firstname": {"type": "string", "index": 81, "name": "firstname", "comment": null}, "first_activity_date__c": {"type": "string", "index": 82, "name": "first_activity_date__c", "comment": null}, "first_contact_on_account_indication__c": {"type": "boolean", "index": 83, "name": "first_contact_on_account_indication__c", "comment": null}, "follow_up_date__c": {"type": "string", "index": 84, "name": "follow_up_date__c", "comment": null}, "follow_up_in__c": {"type": "string", "index": 85, "name": "follow_up_in__c", "comment": null}, "follow_up_num_of_days__c": {"type": "long", "index": 86, "name": "follow_up_num_of_days__c", "comment": null}, "funding__c": {"type": "string", "index": 87, "name": "funding__c", "comment": null}, "global_rank__c": {"type": "long", "index": 88, "name": "global_rank__c", "comment": null}, "good_fit_for_the_annual_plan_contact__c": {"type": "string", "index": 89, "name": "good_fit_for_the_annual_plan_contact__c", "comment": null}, "google_click_id__c": {"type": "string", "index": 90, "name": "google_click_id__c", "comment": null}, "google_seller_rating__c": {"type": "string", "index": 91, "name": "google_seller_rating__c", "comment": null}, "hasoptedoutofemail": {"type": "boolean", "index": 92, "name": "hasoptedoutofemail", "comment": null}, "hasoptedoutoffax": {"type": "boolean", "index": 93, "name": "hasoptedoutoffax", "comment": null}, "help_desk_provider__c": {"type": "string", "index": 94, "name": "help_desk_provider__c", "comment": null}, "homephone": {"type": "string", "index": 95, "name": "homephone", "comment": null}, "hours_since_account_last_transfer__c": {"type": "double", "index": 96, "name": "hours_since_account_last_transfer__c", "comment": null}, "id": {"type": "string", "index": 97, "name": "id", "comment": null}, "import_reason__c": {"type": "string", "index": 98, "name": "import_reason__c", "comment": null}, "inbound_reason_for_interest_in_yotpo__c": {"type": "string", "index": 99, "name": "inbound_reason_for_interest_in_yotpo__c", "comment": null}, "integrations_email_marketing__c": {"type": "string", "index": 100, "name": "integrations_email_marketing__c", "comment": null}, "integrations_loyalty__c": {"type": "string", "index": 101, "name": "integrations_loyalty__c", "comment": null}, "integrations_onsite_engagement__c": {"type": "string", "index": 102, "name": "integrations_onsite_engagement__c", "comment": null}, "integrations_search__c": {"type": "string", "index": 103, "name": "integrations_search__c", "comment": null}, "internal_use__c": {"type": "boolean", "index": 104, "name": "internal_use__c", "comment": null}, "invalid_email_address_marketo__c": {"type": "boolean", "index": 105, "name": "invalid_email_address_marketo__c", "comment": null}, "isdeleted": {"type": "boolean", "index": 106, "name": "isdeleted", "comment": null}, "isemailbounced": {"type": "boolean", "index": 107, "name": "isemailbounced", "comment": null}, "jigsawcontactid": {"type": "string", "index": 108, "name": "jigsawcontactid", "comment": null}, "jigsaw": {"type": "string", "index": 109, "name": "jigsaw", "comment": null}, "junk_reason__c": {"type": "string", "index": 110, "name": "junk_reason__c", "comment": null}, "lnpath__c": {"type": "string", "index": 111, "name": "lnpath__c", "comment": null}, "lnstage__c": {"type": "string", "index": 112, "name": "lnstage__c", "comment": null}, "lnstatus__c": {"type": "string", "index": 113, "name": "lnstatus__c", "comment": null}, "ln_interest__c": {"type": "string", "index": 114, "name": "ln_interest__c", "comment": null}, "lastactivitydate": {"type": "string", "index": 115, "name": "lastactivitydate", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 116, "name": "lastmodifiedbyid", "comment": null}, "lastmodifieddate": {"type": "string", "index": 117, "name": "lastmodifieddate", "comment": null}, "lastname": {"type": "string", "index": 118, "name": "lastname", "comment": null}, "last_activity_date__c": {"type": "string", "index": 119, "name": "last_activity_date__c", "comment": null}, "last_call_date__c": {"type": "string", "index": 120, "name": "last_call_date__c", "comment": null}, "last_communication_date__c": {"type": "string", "index": 121, "name": "last_communication_date__c", "comment": null}, "last_nps_date__c": {"type": "string", "index": 122, "name": "last_nps_date__c", "comment": null}, "last_ringlead_merge_activity__c": {"type": "string", "index": 123, "name": "last_ringlead_merge_activity__c", "comment": null}, "latest_nps_score__c": {"type": "long", "index": 124, "name": "latest_nps_score__c", "comment": null}, "leadsource": {"type": "string", "index": 125, "name": "leadsource", "comment": null}, "lead_last_hubspot_engagement_mapped__c": {"type": "string", "index": 126, "name": "lead_last_hubspot_engagement_mapped__c", "comment": null}, "lead_source_type__c": {"type": "string", "index": 127, "name": "lead_source_type__c", "comment": null}, "linkedin__c": {"type": "string", "index": 128, "name": "linkedin__c", "comment": null}, "location__c": {"type": "string", "index": 129, "name": "location__c", "comment": null}, "mql_date__c": {"type": "string", "index": 130, "name": "mql_date__c", "comment": null}, "mail_traffic_share__c": {"type": "double", "index": 131, "name": "mail_traffic_share__c", "comment": null}, "mailingcity": {"type": "string", "index": 132, "name": "mailingcity", "comment": null}, "mailingcountrycode": {"type": "string", "index": 133, "name": "mailingcountrycode", "comment": null}, "mailingcountry": {"type": "string", "index": 134, "name": "mailingcountry", "comment": null}, "mailingpostalcode": {"type": "string", "index": 135, "name": "mailingpostalcode", "comment": null}, "mailingstatecode": {"type": "string", "index": 136, "name": "mailingstatecode", "comment": null}, "mailingstate": {"type": "string", "index": 137, "name": "mailingstate", "comment": null}, "mailingstreet": {"type": "string", "index": 138, "name": "mailingstreet", "comment": null}, "marketing_filter_hlql_date__c": {"type": "string", "index": 139, "name": "marketing_filter_hlql_date__c", "comment": null}, "marketing_filter_hql_date__c": {"type": "string", "index": 140, "name": "marketing_filter_hql_date__c", "comment": null}, "marketing_filter_lql_date__c": {"type": "string", "index": 141, "name": "marketing_filter_lql_date__c", "comment": null}, "marketing_filter_last_qualified_tier__c": {"type": "string", "index": 142, "name": "marketing_filter_last_qualified_tier__c", "comment": null}, "marketing_product_push_counter__c": {"type": "long", "index": 143, "name": "marketing_product_push_counter__c", "comment": null}, "marketo_fit_score_first_mql__c": {"type": "long", "index": 144, "name": "marketo_fit_score_first_mql__c", "comment": null}, "marketo_fit_score_last_mql__c": {"type": "long", "index": 145, "name": "marketo_fit_score_last_mql__c", "comment": null}, "marketo_fit_score__c": {"type": "long", "index": 146, "name": "marketo_fit_score__c", "comment": null}, "marketo_tier_last_mql__c": {"type": "string", "index": 147, "name": "marketo_tier_last_mql__c", "comment": null}, "marketo_tier_mql__c": {"type": "string", "index": 148, "name": "marketo_tier_mql__c", "comment": null}, "meeting_type_cp__c": {"type": "string", "index": 149, "name": "meeting_type_cp__c", "comment": null}, "merchant_id__c": {"type": "string", "index": 150, "name": "merchant_id__c", "comment": null}, "merged_contact__c": {"type": "boolean", "index": 151, "name": "merged_contact__c", "comment": null}, "mobilephone": {"type": "string", "index": 152, "name": "mobilephone", "comment": null}, "monthly_fb_ads_budget__c": {"type": "long", "index": 153, "name": "monthly_fb_ads_budget__c", "comment": null}, "most_recent_assignment_bucket__c": {"type": "string", "index": 154, "name": "most_recent_assignment_bucket__c", "comment": null}, "most_recent_assignment_date__c": {"type": "string", "index": 155, "name": "most_recent_assignment_date__c", "comment": null}, "most_recent_assignment_reason__c": {"type": "string", "index": 156, "name": "most_recent_assignment_reason__c", "comment": null}, "most_recent_assignment_sub_reason__c": {"type": "string", "index": 157, "name": "most_recent_assignment_sub_reason__c", "comment": null}, "most_recent_engagement_date__c": {"type": "string", "index": 158, "name": "most_recent_engagement_date__c", "comment": null}, "most_recent_engagement_reason__c": {"type": "string", "index": 159, "name": "most_recent_engagement_reason__c", "comment": null}, "move_to_nurture__c": {"type": "string", "index": 160, "name": "move_to_nurture__c", "comment": null}, "nps_response__c": {"type": "boolean", "index": 161, "name": "nps_response__c", "comment": null}, "name": {"type": "string", "index": 162, "name": "name", "comment": null}, "new_outbound_referral__c": {"type": "string", "index": 163, "name": "new_outbound_referral__c", "comment": null}, "number_of_accounts_s_open_opportunities__c": {"type": "long", "index": 164, "name": "number_of_accounts_s_open_opportunities__c", "comment": null}, "number_of_instagram_followers__c": {"type": "string", "index": 165, "name": "number_of_instagram_followers__c", "comment": null}, "nurturing_reason__c": {"type": "string", "index": 166, "name": "nurturing_reason__c", "comment": null}, "nurturing_to_new__c": {"type": "string", "index": 167, "name": "nurturing_to_new__c", "comment": null}, "opt_out_partner_marketing__c": {"type": "boolean", "index": 168, "name": "opt_out_partner_marketing__c", "comment": null}, "original_source__c": {"type": "string", "index": 169, "name": "original_source__c", "comment": null}, "otherphone": {"type": "string", "index": 170, "name": "otherphone", "comment": null}, "other_contact_notes__c": {"type": "string", "index": 171, "name": "other_contact_notes__c", "comment": null}, "owned_by_sdr_salesloft__c": {"type": "boolean", "index": 172, "name": "owned_by_sdr_salesloft__c", "comment": null}, "ownerid": {"type": "string", "index": 173, "name": "ownerid", "comment": null}, "owner_manager_email__c": {"type": "string", "index": 174, "name": "owner_manager_email__c", "comment": null}, "owner_is_active__c": {"type": "boolean", "index": 175, "name": "owner_is_active__c", "comment": null}, "owner_is_queue__c": {"type": "boolean", "index": 176, "name": "owner_is_queue__c", "comment": null}, "pos_provider__c": {"type": "string", "index": 177, "name": "pos_provider__c", "comment": null}, "package_base__c": {"type": "string", "index": 178, "name": "package_base__c", "comment": null}, "package_extensions__c": {"type": "string", "index": 179, "name": "package_extensions__c", "comment": null}, "package__c": {"type": "string", "index": 180, "name": "package__c", "comment": null}, "paid_referrals_traffic_share__c": {"type": "double", "index": 181, "name": "paid_referrals_traffic_share__c", "comment": null}, "pain_points__c": {"type": "string", "index": 182, "name": "pain_points__c", "comment": null}, "partner_outbound_referral__c": {"type": "string", "index": 183, "name": "partner_outbound_referral__c", "comment": null}, "payment_provider__c": {"type": "string", "index": 184, "name": "payment_provider__c", "comment": null}, "personalization_provider__c": {"type": "string", "index": 185, "name": "personalization_provider__c", "comment": null}, "phone_country_code_contact__c": {"type": "string", "index": 186, "name": "phone_country_code_contact__c", "comment": null}, "phone_extension__c": {"type": "string", "index": 187, "name": "phone_extension__c", "comment": null}, "phone": {"type": "string", "index": 188, "name": "phone", "comment": null}, "photourl": {"type": "string", "index": 189, "name": "photourl", "comment": null}, "platform__c": {"type": "string", "index": 190, "name": "platform__c", "comment": null}, "previous_companies__c": {"type": "string", "index": 191, "name": "previous_companies__c", "comment": null}, "previous_roles__c": {"type": "string", "index": 192, "name": "previous_roles__c", "comment": null}, "product_lead_engagement__c": {"type": "boolean", "index": 193, "name": "product_lead_engagement__c", "comment": null}, "prospect_fit_rank__c": {"type": "string", "index": 194, "name": "prospect_fit_rank__c", "comment": null}, "prospect_fit_reason__c": {"type": "string", "index": 195, "name": "prospect_fit_reason__c", "comment": null}, "prospect_intent_rank__c": {"type": "string", "index": 196, "name": "prospect_intent_rank__c", "comment": null}, "prospect_intent_reason__c": {"type": "string", "index": 197, "name": "prospect_intent_reason__c", "comment": null}, "prospect_role__c": {"type": "string", "index": 198, "name": "prospect_role__c", "comment": null}, "ready_for_routing__c": {"type": "boolean", "index": 199, "name": "ready_for_routing__c", "comment": null}, "referrals_traffic_share__c": {"type": "double", "index": 200, "name": "referrals_traffic_share__c", "comment": null}, "referrer_agency_potential__c": {"type": "string", "index": 201, "name": "referrer_agency_potential__c", "comment": null}, "referrer_type__c": {"type": "string", "index": 202, "name": "referrer_type__c", "comment": null}, "relevant_recent_social_media_posts__c": {"type": "string", "index": 203, "name": "relevant_recent_social_media_posts__c", "comment": null}, "relevant_yotpo_deployments__c": {"type": "string", "index": 204, "name": "relevant_yotpo_deployments__c", "comment": null}, "remove_from_primary__c": {"type": "string", "index": 205, "name": "remove_from_primary__c", "comment": null}, "reviews_provider__c": {"type": "string", "index": 206, "name": "reviews_provider__c", "comment": null}, "ringlead_dms_status__c": {"type": "string", "index": 207, "name": "ringlead_dms_status__c", "comment": null}, "sdr_email__c": {"type": "string", "index": 208, "name": "sdr_email__c", "comment": null}, "sdr_notes__c": {"type": "string", "index": 209, "name": "sdr_notes__c", "comment": null}, "sales_territory__c": {"type": "string", "index": 210, "name": "sales_territory__c", "comment": null}, "sales_tier_first_mql__c": {"type": "string", "index": 211, "name": "sales_tier_first_mql__c", "comment": null}, "sales_tier_routing__c": {"type": "string", "index": 212, "name": "sales_tier_routing__c", "comment": null}, "salutation": {"type": "string", "index": 213, "name": "salutation", "comment": null}, "search_traffic_share__c": {"type": "double", "index": 214, "name": "search_traffic_share__c", "comment": null}, "second_best_country__c": {"type": "string", "index": 215, "name": "second_best_country__c", "comment": null}, "segment_id__c": {"type": "string", "index": 216, "name": "segment_id__c", "comment": null}, "send_to_growth__c": {"type": "boolean", "index": 217, "name": "send_to_growth__c", "comment": null}, "similarweb_traffic_new__c": {"type": "long", "index": 218, "name": "similarweb_traffic_new__c", "comment": null}, "skype_id__c": {"type": "string", "index": 219, "name": "skype_id__c", "comment": null}, "social_traffic_share__c": {"type": "double", "index": 220, "name": "social_traffic_share__c", "comment": null}, "state_region__c": {"type": "string", "index": 221, "name": "state_region__c", "comment": null}, "subscribed_to_blog__c": {"type": "boolean", "index": 222, "name": "subscribed_to_blog__c", "comment": null}, "subscription_billing_provider__c": {"type": "string", "index": 223, "name": "subscription_billing_provider__c", "comment": null}, "super_csm_generic_account__c": {"type": "boolean", "index": 224, "name": "super_csm_generic_account__c", "comment": null}, "swell_engagement__c": {"type": "string", "index": 225, "name": "swell_engagement__c", "comment": null}, "swell_package__c": {"type": "string", "index": 226, "name": "swell_package__c", "comment": null}, "systemmodstamp": {"type": "string", "index": 227, "name": "systemmodstamp", "comment": null}, "talk_to_csm__c": {"type": "boolean", "index": 228, "name": "talk_to_csm__c", "comment": null}, "third_best_country__c": {"type": "string", "index": 229, "name": "third_best_country__c", "comment": null}, "time_at_company__c": {"type": "string", "index": 230, "name": "time_at_company__c", "comment": null}, "time_in_current_role__c": {"type": "string", "index": 231, "name": "time_in_current_role__c", "comment": null}, "title": {"type": "string", "index": 232, "name": "title", "comment": null}, "top_country__c": {"type": "string", "index": 233, "name": "top_country__c", "comment": null}, "top_organic_keyword__c": {"type": "string", "index": 234, "name": "top_organic_keyword__c", "comment": null}, "top_paid_keyword__c": {"type": "string", "index": 235, "name": "top_paid_keyword__c", "comment": null}, "user_id__c": {"type": "string", "index": 236, "name": "user_id__c", "comment": null}, "verify_as_primary__c": {"type": "string", "index": 237, "name": "verify_as_primary__c", "comment": null}, "wrong_number_indication_date__c": {"type": "string", "index": 238, "name": "wrong_number_indication_date__c", "comment": null}, "isdr_low_fit_qualification_date__c": {"type": "string", "index": 239, "name": "isdr_low_fit_qualification_date__c", "comment": null}, "isdr_low_fit_qualification_status__c": {"type": "string", "index": 240, "name": "isdr_low_fit_qualification_status__c", "comment": null}, "mkto2__acquisition_date__c": {"type": "string", "index": 241, "name": "mkto2__acquisition_date__c", "comment": null}, "mkto2__inferred_city__c": {"type": "string", "index": 242, "name": "mkto2__inferred_city__c", "comment": null}, "mkto2__inferred_company__c": {"type": "string", "index": 243, "name": "mkto2__inferred_company__c", "comment": null}, "mkto2__inferred_country__c": {"type": "string", "index": 244, "name": "mkto2__inferred_country__c", "comment": null}, "mkto2__inferred_metropolitan_area__c": {"type": "string", "index": 245, "name": "mkto2__inferred_metropolitan_area__c", "comment": null}, "mkto2__inferred_phone_area_code__c": {"type": "string", "index": 246, "name": "mkto2__inferred_phone_area_code__c", "comment": null}, "mkto2__inferred_postal_code__c": {"type": "string", "index": 247, "name": "mkto2__inferred_postal_code__c", "comment": null}, "mkto2__inferred_state_region__c": {"type": "string", "index": 248, "name": "mkto2__inferred_state_region__c", "comment": null}, "mkto2__lead_score__c": {"type": "long", "index": 249, "name": "mkto2__lead_score__c", "comment": null}, "mkto2__original_referrer__c": {"type": "string", "index": 250, "name": "mkto2__original_referrer__c", "comment": null}, "mkto2__original_search_engine__c": {"type": "string", "index": 251, "name": "mkto2__original_search_engine__c", "comment": null}, "mkto2__original_search_phrase__c": {"type": "string", "index": 252, "name": "mkto2__original_search_phrase__c", "comment": null}, "mkto2__original_source_info__c": {"type": "string", "index": 253, "name": "mkto2__original_source_info__c", "comment": null}, "mkto2__original_source_type__c": {"type": "string", "index": 254, "name": "mkto2__original_source_type__c", "comment": null}, "mkto71_acquisition_date__c": {"type": "string", "index": 255, "name": "mkto71_acquisition_date__c", "comment": null}, "mkto71_acquisition_program_id__c": {"type": "long", "index": 256, "name": "mkto71_acquisition_program_id__c", "comment": null}, "mkto71_acquisition_program__c": {"type": "string", "index": 257, "name": "mkto71_acquisition_program__c", "comment": null}, "mkto_si__add_to_marketo_campaign__c": {"type": "string", "index": 258, "name": "mkto_si__add_to_marketo_campaign__c", "comment": null}, "mkto_si__last_interesting_moment_date__c": {"type": "string", "index": 259, "name": "mkto_si__last_interesting_moment_date__c", "comment": null}, "mkto_si__last_interesting_moment_desc__c": {"type": "string", "index": 260, "name": "mkto_si__last_interesting_moment_desc__c", "comment": null}, "mkto_si__last_interesting_moment_source__c": {"type": "string", "index": 261, "name": "mkto_si__last_interesting_moment_source__c", "comment": null}, "mkto_si__last_interesting_moment_type__c": {"type": "string", "index": 262, "name": "mkto_si__last_interesting_moment_type__c", "comment": null}, "mkto_si__last_interesting_moment__c": {"type": "string", "index": 263, "name": "mkto_si__last_interesting_moment__c", "comment": null}, "mkto_si__priority__c": {"type": "long", "index": 264, "name": "mkto_si__priority__c", "comment": null}, "mkto_si__relative_score_value__c": {"type": "long", "index": 265, "name": "mkto_si__relative_score_value__c", "comment": null}, "mkto_si__relative_score__c": {"type": "string", "index": 266, "name": "mkto_si__relative_score__c", "comment": null}, "mkto_si__sales_insight__c": {"type": "string", "index": 267, "name": "mkto_si__sales_insight__c", "comment": null}, "mkto_si__urgency_value__c": {"type": "long", "index": 268, "name": "mkto_si__urgency_value__c", "comment": null}, "mkto_si__urgency__c": {"type": "string", "index": 269, "name": "mkto_si__urgency__c", "comment": null}, "mkto_si__view_in_marketo__c": {"type": "string", "index": 270, "name": "mkto_si__view_in_marketo__c", "comment": null}, "rcsfl__sendsms__c": {"type": "string", "index": 271, "name": "rcsfl__sendsms__c", "comment": null}, "company_profile__c": {"type": "string", "index": 272, "name": "company_profile__c", "comment": null}, "decision__c": {"type": "string", "index": 273, "name": "decision__c", "comment": null}, "good_fit_for_growth__c": {"type": "string", "index": 274, "name": "good_fit_for_growth__c", "comment": null}, "impact__c": {"type": "string", "index": 275, "name": "impact__c", "comment": null}, "last_in_person_meeting__c": {"type": "string", "index": 276, "name": "last_in_person_meeting__c", "comment": null}, "lost_opp_feedback_process__c": {"type": "string", "index": 277, "name": "lost_opp_feedback_process__c", "comment": null}, "mql_notification_engagement_type__c": {"type": "string", "index": 278, "name": "mql_notification_engagement_type__c", "comment": null}, "mql_notification_reason__c": {"type": "string", "index": 279, "name": "mql_notification_reason__c", "comment": null}, "othercity": {"type": "string", "index": 280, "name": "othercity", "comment": null}, "othercountrycode": {"type": "string", "index": 281, "name": "othercountrycode", "comment": null}, "othercountry": {"type": "string", "index": 282, "name": "othercountry", "comment": null}, "otherpostalcode": {"type": "string", "index": 283, "name": "otherpostalcode", "comment": null}, "otherstreet": {"type": "string", "index": 284, "name": "otherstreet", "comment": null}, "pain__c": {"type": "string", "index": 285, "name": "pain__c", "comment": null}, "partner_team_routing__c": {"type": "string", "index": 286, "name": "partner_team_routing__c", "comment": null}, "reportstoid": {"type": "string", "index": 287, "name": "reportstoid", "comment": null}, "salesloft_industry__c": {"type": "string", "index": 288, "name": "salesloft_industry__c", "comment": null}, "situation__c": {"type": "string", "index": 289, "name": "situation__c", "comment": null}, "partner_manager_email_referral_form__c": {"type": "string", "index": 290, "name": "partner_manager_email_referral_form__c", "comment": null}, "rating__c": {"type": "string", "index": 291, "name": "rating__c", "comment": null}, "referred_by_email_referral_form__c": {"type": "string", "index": 292, "name": "referred_by_email_referral_form__c", "comment": null}, "referred_by_referral_form__c": {"type": "string", "index": 293, "name": "referred_by_referral_form__c", "comment": null}, "referred_partner_code__c": {"type": "string", "index": 294, "name": "referred_partner_code__c", "comment": null}, "contact_assignment__c": {"type": "string", "index": 295, "name": "contact_assignment__c", "comment": null}, "referred_to_cross_sell_by__c": {"type": "string", "index": 296, "name": "referred_to_cross_sell_by__c", "comment": null}, "topics_to_avoid__c": {"type": "string", "index": 297, "name": "topics_to_avoid__c", "comment": null}, "added_to_self_service_by_role__c": {"type": "string", "index": 298, "name": "added_to_self_service_by_role__c", "comment": null}, "added_to_self_service_by__c": {"type": "string", "index": 299, "name": "added_to_self_service_by__c", "comment": null}, "mkto2__acquisition_program_id__c": {"type": "long", "index": 300, "name": "mkto2__acquisition_program_id__c", "comment": null}, "mkto2__acquisition_program__c": {"type": "string", "index": 301, "name": "mkto2__acquisition_program__c", "comment": null}, "marketo_triggered_mql__c": {"type": "string", "index": 302, "name": "marketo_triggered_mql__c", "comment": null}, "community_user_profile__c": {"type": "string", "index": 303, "name": "community_user_profile__c", "comment": null}, "community_user__c": {"type": "string", "index": 304, "name": "community_user__c", "comment": null}, "products_interest_referral_form__c": {"type": "string", "index": 305, "name": "products_interest_referral_form__c", "comment": null}, "community_user_last_login_date__c": {"type": "string", "index": 306, "name": "community_user_last_login_date__c", "comment": null}, "most_recent_growth_referral_account_name__c": {"type": "string", "index": 307, "name": "most_recent_growth_referral_account_name__c", "comment": null}, "engaged_with_cross_sell_campaign__c": {"type": "string", "index": 308, "name": "engaged_with_cross_sell_campaign__c", "comment": null}, "swell_assignee__c": {"type": "string", "index": 309, "name": "swell_assignee__c", "comment": null}, "birthdate": {"type": "string", "index": 310, "name": "birthdate", "comment": null}, "masterrecordid": {"type": "string", "index": 311, "name": "masterrecordid", "comment": null}, "lastreferenceddate": {"type": "string", "index": 312, "name": "lastreferenceddate", "comment": null}, "lastvieweddate": {"type": "string", "index": 313, "name": "lastvieweddate", "comment": null}, "most_recent_product_preference__c": {"type": "string", "index": 314, "name": "most_recent_product_preference__c", "comment": null}, "most_recent_session_starting_page__c": {"type": "string", "index": 315, "name": "most_recent_session_starting_page__c", "comment": null}, "top_of_funnel_touches__c": {"type": "long", "index": 316, "name": "top_of_funnel_touches__c", "comment": null}, "product_touches__c": {"type": "string", "index": 317, "name": "product_touches__c", "comment": null}, "top_of_funnel_sessions__c": {"type": "long", "index": 318, "name": "top_of_funnel_sessions__c", "comment": null}, "sales_estimated_product_preference__c": {"type": "string", "index": 319, "name": "sales_estimated_product_preference__c", "comment": null}, "bottom_of_funnel_sessions__c": {"type": "long", "index": 320, "name": "bottom_of_funnel_sessions__c", "comment": null}, "prospect_fit_score_test__c": {"type": "long", "index": 321, "name": "prospect_fit_score_test__c", "comment": null}, "next_steps__c": {"type": "string", "index": 322, "name": "next_steps__c", "comment": null}, "most_recent_engagement_sub_reason__c": {"type": "string", "index": 323, "name": "most_recent_engagement_sub_reason__c", "comment": null}, "recordval__rv2status__c": {"type": "string", "index": 324, "name": "recordval__rv2status__c", "comment": null}, "recordval__rv2validation__c": {"type": "string", "index": 325, "name": "recordval__rv2validation__c", "comment": null}, "send_docusign__c": {"type": "string", "index": 326, "name": "send_docusign__c", "comment": null}, "interested_in_sms__c": {"type": "boolean", "index": 327, "name": "interested_in_sms__c", "comment": null}, "interested_in_vms__c": {"type": "boolean", "index": 328, "name": "interested_in_vms__c", "comment": null}, "interested_in_loyalty__c": {"type": "boolean", "index": 329, "name": "interested_in_loyalty__c", "comment": null}, "interested_in_reviews__c": {"type": "boolean", "index": 330, "name": "interested_in_reviews__c", "comment": null}, "package_category__c": {"type": "string", "index": 331, "name": "package_category__c", "comment": null}, "contact_status_time_stamp__c": {"type": "string", "index": 332, "name": "contact_status_time_stamp__c", "comment": null}, "sales_segment__c": {"type": "string", "index": 333, "name": "sales_segment__c", "comment": null}, "partner_contact_role__c": {"type": "string", "index": 334, "name": "partner_contact_role__c", "comment": null}, "days_since_last_partner_portal_modify__c": {"type": "long", "index": 335, "name": "days_since_last_partner_portal_modify__c", "comment": null}, "partner_portal_status__c": {"type": "string", "index": 336, "name": "partner_portal_status__c", "comment": null}, "qualification_question_monthly_orders__c": {"type": "string", "index": 337, "name": "qualification_question_monthly_orders__c", "comment": null}, "partner_portal_last_modify__c": {"type": "string", "index": 338, "name": "partner_portal_last_modify__c", "comment": null}, "was_portal_inactive__c": {"type": "boolean", "index": 339, "name": "was_portal_inactive__c", "comment": null}, "customer_care_tagged__c": {"type": "string", "index": 340, "name": "customer_care_tagged__c", "comment": null}, "partner_claimed_rev_share__c": {"type": "boolean", "index": 341, "name": "partner_claimed_rev_share__c", "comment": null}, "lastproductoflastsubscriptionevent__c": {"type": "string", "index": 342, "name": "lastproductoflastsubscriptionevent__c", "comment": null}, "lastsubscriptioneventchange__c": {"type": "string", "index": 343, "name": "lastsubscriptioneventchange__c", "comment": null}, "booking_status_cp__c": {"type": "string", "index": 344, "name": "booking_status_cp__c", "comment": null}, "exclude_revshare__c": {"type": "boolean", "index": 345, "name": "exclude_revshare__c", "comment": null}, "discoverorg_person_country__c": {"type": "string", "index": 346, "name": "discoverorg_person_country__c", "comment": null}, "salesloft1__active_contact__c": {"type": "long", "index": 347, "name": "salesloft1__active_contact__c", "comment": null}, "community_member__c": {"type": "string", "index": 348, "name": "community_member__c", "comment": null}, "activitymetricid": {"type": "string", "index": 349, "name": "activitymetricid", "comment": null}, "activitymetricrollupid": {"type": "string", "index": 350, "name": "activitymetricrollupid", "comment": null}, "enable_email_to_case_ugc_prime__c": {"type": "boolean", "index": 351, "name": "enable_email_to_case_ugc_prime__c", "comment": null}, "salesloft1__most_recent_cadence_next_step_due_date__c": {"type": "string", "index": 352, "name": "salesloft1__most_recent_cadence_next_step_due_date__c", "comment": null}, "salesloft1__most_recent_last_completed_step__c": {"type": "long", "index": 353, "name": "salesloft1__most_recent_last_completed_step__c", "comment": null}, "salesloft1__most_recent_cadence_name__c": {"type": "string", "index": 354, "name": "salesloft1__most_recent_cadence_name__c", "comment": null}, "interested_in_subscription__c": {"type": "boolean", "index": 355, "name": "interested_in_subscription__c", "comment": null}, "mql_motion__c": {"type": "string", "index": 356, "name": "mql_motion__c", "comment": null}, "last_referral_via_the_portal__c": {"type": "string", "index": 357, "name": "last_referral_via_the_portal__c", "comment": null}, "last_login__c": {"type": "string", "index": 358, "name": "last_login__c", "comment": null}, "previous_login__c": {"type": "string", "index": 359, "name": "previous_login__c", "comment": null}, "first_login__c": {"type": "string", "index": 360, "name": "first_login__c", "comment": null}, "contact_role_primary__c": {"type": "boolean", "index": 361, "name": "contact_role_primary__c", "comment": null}, "pe_reassignment_date__c": {"type": "string", "index": 362, "name": "pe_reassignment_date__c", "comment": null}, "new_account_territory__c": {"type": "string", "index": 363, "name": "new_account_territory__c", "comment": null}, "contact_is_primary_sms__c": {"type": "boolean", "index": 364, "name": "contact_is_primary_sms__c", "comment": null}, "last_campaign_engagement_date__c": {"type": "string", "index": 365, "name": "last_campaign_engagement_date__c", "comment": null}, "zuora_id__c": {"type": "string", "index": 366, "name": "zuora_id__c", "comment": null}, "sales_estimated_monthly_orders__c": {"type": "string", "index": 367, "name": "sales_estimated_monthly_orders__c", "comment": null}, "mkto_si__sales_opt_out__c": {"type": "boolean", "index": 368, "name": "mkto_si__sales_opt_out__c", "comment": null}, "marketo_discovery_event__c": {"type": "string", "index": 369, "name": "marketo_discovery_event__c", "comment": null}, "rad_from_event_form__c": {"type": "string", "index": 370, "name": "rad_from_event_form__c", "comment": null}, "de_team_assignment__c": {"type": "string", "index": 371, "name": "de_team_assignment__c", "comment": null}, "account_type__c": {"type": "string", "index": 372, "name": "account_type__c", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 373, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 374, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 375, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 376, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 377, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 378, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 379, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 380, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce.contact"}, "source.yoda.analytics__salesforce.custom_field_history_tracking__c": {"metadata": {"type": "view", "schema": "salesforce", "name": "custom_field_history_tracking__c", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "account__c": {"type": "string", "index": 1, "name": "account__c", "comment": null}, "action__c": {"type": "string", "index": 2, "name": "action__c", "comment": null}, "createdbyid": {"type": "string", "index": 3, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 4, "name": "createddate", "comment": null}, "currencyisocode": {"type": "string", "index": 5, "name": "currencyisocode", "comment": null}, "isdeleted": {"type": "boolean", "index": 6, "name": "isdeleted", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 7, "name": "lastmodifiedbyid", "comment": null}, "lastmodifieddate": {"type": "string", "index": 8, "name": "lastmodifieddate", "comment": null}, "name": {"type": "string", "index": 9, "name": "name", "comment": null}, "new_value__c": {"type": "string", "index": 10, "name": "new_value__c", "comment": null}, "old_value__c": {"type": "string", "index": 11, "name": "old_value__c", "comment": null}, "ownerid": {"type": "string", "index": 12, "name": "ownerid", "comment": null}, "parent_object_id__c": {"type": "string", "index": 13, "name": "parent_object_id__c", "comment": null}, "systemmodstamp": {"type": "string", "index": 14, "name": "systemmodstamp", "comment": null}, "object_name__c": {"type": "string", "index": 15, "name": "object_name__c", "comment": null}, "count__c": {"type": "long", "index": 16, "name": "count__c", "comment": null}, "on_creation__c": {"type": "boolean", "index": 17, "name": "on_creation__c", "comment": null}, "onboarding_project__c": {"type": "string", "index": 18, "name": "onboarding_project__c", "comment": null}, "opportunity_prediction__c": {"type": "string", "index": 19, "name": "opportunity_prediction__c", "comment": null}, "record_count__c": {"type": "long", "index": 20, "name": "record_count__c", "comment": null}, "spend_time__c": {"type": "string", "index": 21, "name": "spend_time__c", "comment": null}, "start_date__c": {"type": "string", "index": 22, "name": "start_date__c", "comment": null}, "ticket__c": {"type": "string", "index": 23, "name": "ticket__c", "comment": null}, "end_date__c": {"type": "string", "index": 24, "name": "end_date__c", "comment": null}, "previous_record__c": {"type": "string", "index": 25, "name": "previous_record__c", "comment": null}, "parent_record_id__c": {"type": "string", "index": 26, "name": "parent_record_id__c", "comment": null}, "changed_field_name__c": {"type": "string", "index": 27, "name": "changed_field_name__c", "comment": null}, "delivery_services__c": {"type": "string", "index": 28, "name": "delivery_services__c", "comment": null}, "spend_time_number__c": {"type": "double", "index": 29, "name": "spend_time_number__c", "comment": null}, "error_message__c": {"type": "string", "index": 30, "name": "error_message__c", "comment": null}, "case__c": {"type": "string", "index": 31, "name": "case__c", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 32, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 33, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 34, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 35, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 36, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 37, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 38, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 39, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce.custom_field_history_tracking__c"}, "source.yoda.analytics__salesforce.datedconversionrate": {"metadata": {"type": "view", "schema": "salesforce", "name": "datedconversionrate", "database": null, "comment": null, "owner": "root"}, "columns": {"conversionrate": {"type": "double", "index": 0, "name": "conversionrate", "comment": null}, "createdbyid": {"type": "string", "index": 1, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 2, "name": "createddate", "comment": null}, "id": {"type": "string", "index": 3, "name": "id", "comment": null}, "isocode": {"type": "string", "index": 4, "name": "isocode", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 5, "name": "lastmodifiedbyid", "comment": null}, "lastmodifieddate": {"type": "string", "index": 6, "name": "lastmodifieddate", "comment": null}, "nextstartdate": {"type": "string", "index": 7, "name": "nextstartdate", "comment": null}, "startdate": {"type": "string", "index": 8, "name": "startdate", "comment": null}, "systemmodstamp": {"type": "string", "index": 9, "name": "systemmodstamp", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 10, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 11, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 12, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 13, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 14, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 15, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 16, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 17, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce.datedconversionrate"}, "source.yoda.analytics__salesforce.deal_summary_new__c_full": {"metadata": {"type": "view", "schema": "salesforce", "name": "deal_summary_new__c_full", "database": null, "comment": null, "owner": "root"}, "columns": {"Current_ACV_USD_Calculated__c": {"type": "double", "index": 0, "name": "Current_ACV_USD_Calculated__c", "comment": null}, "Current_ACV_USD__c": {"type": "double", "index": 1, "name": "Current_ACV_USD__c", "comment": null}, "Current_Acv_For_Retention__c": {"type": "double", "index": 2, "name": "Current_Acv_For_Retention__c", "comment": null}, "Current_Acv_For_Retention_original__c": {"type": "double", "index": 3, "name": "Current_Acv_For_Retention_original__c", "comment": null}, "Current_Acv__c": {"type": "double", "index": 4, "name": "Current_Acv__c", "comment": null}, "Deal_type__c": {"type": "string", "index": 5, "name": "Deal_type__c", "comment": null}, "Id": {"type": "string", "index": 6, "name": "Id", "comment": null}, "Line_Delta_ACV__c": {"type": "double", "index": 7, "name": "Line_Delta_ACV__c", "comment": null}, "Line_Delta_ACV_for_Retention__c": {"type": "double", "index": 8, "name": "Line_Delta_ACV_for_Retention__c", "comment": null}, "Previous_ACV_From_Opportunity_Product__c": {"type": "double", "index": 9, "name": "Previous_ACV_From_Opportunity_Product__c", "comment": null}, "Previous_ACV_USD_Calculated__c": {"type": "double", "index": 10, "name": "Previous_ACV_USD_Calculated__c", "comment": null}, "Previous_ACV_USD__c": {"type": "double", "index": 11, "name": "Previous_ACV_USD__c", "comment": null}, "Previous_ACV__c": {"type": "double", "index": 12, "name": "Previous_ACV__c", "comment": null}, "createdbyid": {"type": "string", "index": 13, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 14, "name": "createddate", "comment": null}, "currencyisocode": {"type": "string", "index": 15, "name": "currencyisocode", "comment": null}, "current_acv_controlling_for_conversion__c": {"type": "double", "index": 16, "name": "current_acv_controlling_for_conversion__c", "comment": null}, "current_acv_original_currency__c": {"type": "double", "index": 17, "name": "current_acv_original_currency__c", "comment": null}, "isdeleted": {"type": "boolean", "index": 18, "name": "isdeleted", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 19, "name": "lastmodifiedbyid", "comment": null}, "lastmodifieddate": {"type": "string", "index": 20, "name": "lastmodifieddate", "comment": null}, "opportunity_product__c": {"type": "string", "index": 21, "name": "opportunity_product__c", "comment": null}, "opportunity__c": {"type": "string", "index": 22, "name": "opportunity__c", "comment": null}, "package_product__c": {"type": "boolean", "index": 23, "name": "package_product__c", "comment": null}, "previous_acv_original_currency__c": {"type": "double", "index": 24, "name": "previous_acv_original_currency__c", "comment": null}, "product_family__c": {"type": "string", "index": 25, "name": "product_family__c", "comment": null}, "product__c": {"type": "string", "index": 26, "name": "product__c", "comment": null}, "renewal_from_opportunity_line__c": {"type": "string", "index": 27, "name": "renewal_from_opportunity_line__c", "comment": null}, "status__c": {"type": "string", "index": 28, "name": "status__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 29, "name": "SystemModstamp", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 30, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 31, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 32, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 33, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 34, "name": "_sdc_table_version", "comment": null}, "rn": {"type": "integer", "index": 35, "name": "rn", "comment": null}}, "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.yoda.analytics__salesforce.deal_summary_new__c_full"}, "source.yoda.analytics__salesforce.lead": {"metadata": {"type": "view", "schema": "salesforce", "name": "lead", "database": null, "comment": null, "owner": "root"}, "columns": {"aa__c": {"type": "string", "index": 0, "name": "aa__c", "comment": null}, "account_id__c": {"type": "string", "index": 1, "name": "account_id__c", "comment": null}, "account_phone__c": {"type": "string", "index": 2, "name": "account_phone__c", "comment": null}, "creation_date_time__c": {"type": "string", "index": 3, "name": "creation_date_time__c", "comment": null}, "no_specified_domain_com__c": {"type": "boolean", "index": 4, "name": "no_specified_domain_com__c", "comment": null}, "score__c": {"type": "long", "index": 5, "name": "score__c", "comment": null}, "score_type__c": {"type": "string", "index": 6, "name": "score_type__c", "comment": null}, "utm_campaign__c": {"type": "string", "index": 7, "name": "utm_campaign__c", "comment": null}, "utm_medium__c": {"type": "string", "index": 8, "name": "utm_medium__c", "comment": null}, "utm_source__c": {"type": "string", "index": 9, "name": "utm_source__c", "comment": null}, "ae_outbounding__c": {"type": "boolean", "index": 10, "name": "ae_outbounding__c", "comment": null}, "aov__c": {"type": "double", "index": 11, "name": "aov__c", "comment": null}, "account_email__c": {"type": "string", "index": 12, "name": "account_email__c", "comment": null}, "account_status__c": {"type": "string", "index": 13, "name": "account_status__c", "comment": null}, "active_lead__c": {"type": "long", "index": 14, "name": "active_lead__c", "comment": null}, "additional_domains__c": {"type": "string", "index": 15, "name": "additional_domains__c", "comment": null}, "additional_email__c": {"type": "string", "index": 16, "name": "additional_email__c", "comment": null}, "agency_clients_level_lead__c": {"type": "string", "index": 17, "name": "agency_clients_level_lead__c", "comment": null}, "agency_name__c": {"type": "string", "index": 18, "name": "agency_name__c", "comment": null}, "agency_no_of_clients_lead__c": {"type": "string", "index": 19, "name": "agency_no_of_clients_lead__c", "comment": null}, "agency_no_of_employees_lead__c": {"type": "string", "index": 20, "name": "agency_no_of_employees_lead__c", "comment": null}, "agency_pdr_lookup__c": {"type": "string", "index": 21, "name": "agency_pdr_lookup__c", "comment": null}, "agency_potential__c": {"type": "string", "index": 22, "name": "agency_potential__c", "comment": null}, "agency_sales_owner__c": {"type": "string", "index": 23, "name": "agency_sales_owner__c", "comment": null}, "agency_services__c": {"type": "string", "index": 24, "name": "agency_services__c", "comment": null}, "agency_of_e_commerce_clients_lead__c": {"type": "string", "index": 25, "name": "agency_of_e_commerce_clients_lead__c", "comment": null}, "alexa_rank__c": {"type": "long", "index": 26, "name": "alexa_rank__c", "comment": null}, "alexa_ranking_changed__c": {"type": "string", "index": 27, "name": "alexa_ranking_changed__c", "comment": null}, "alexa_ranking_old_value__c": {"type": "string", "index": 28, "name": "alexa_ranking_old_value__c", "comment": null}, "alexa__c": {"type": "long", "index": 29, "name": "alexa__c", "comment": null}, "annualrevenue": {"type": "long", "index": 30, "name": "annualrevenue", "comment": null}, "annual_revenue__c": {"type": "string", "index": 31, "name": "annual_revenue__c", "comment": null}, "app_key__c": {"type": "string", "index": 32, "name": "app_key__c", "comment": null}, "assigned_by_de__c": {"type": "string", "index": 33, "name": "assigned_by_de__c", "comment": null}, "automate_lead_status_timestamp__c": {"type": "string", "index": 34, "name": "automate_lead_status_timestamp__c", "comment": null}, "came_from_nurturing__c": {"type": "boolean", "index": 35, "name": "came_from_nurturing__c", "comment": null}, "cancellation_date__c": {"type": "string", "index": 36, "name": "cancellation_date__c", "comment": null}, "caseid__c": {"type": "string", "index": 37, "name": "caseid__c", "comment": null}, "city": {"type": "string", "index": 38, "name": "city", "comment": null}, "claim_status__c": {"type": "string", "index": 39, "name": "claim_status__c", "comment": null}, "client_s_agency2__c": {"type": "string", "index": 40, "name": "client_s_agency2__c", "comment": null}, "comments__c": {"type": "string", "index": 41, "name": "comments__c", "comment": null}, "commission_based_ads__c": {"type": "boolean", "index": 42, "name": "commission_based_ads__c", "comment": null}, "company_profile__c": {"type": "string", "index": 43, "name": "company_profile__c", "comment": null}, "company": {"type": "string", "index": 44, "name": "company", "comment": null}, "confidence_level_lead__c": {"type": "string", "index": 45, "name": "confidence_level_lead__c", "comment": null}, "contact_notes__c": {"type": "string", "index": 46, "name": "contact_notes__c", "comment": null}, "conversion_technology_score__c": {"type": "double", "index": 47, "name": "conversion_technology_score__c", "comment": null}, "conversion_code_installed__c": {"type": "boolean", "index": 48, "name": "conversion_code_installed__c", "comment": null}, "convert_to_existing_account__c": {"type": "boolean", "index": 49, "name": "convert_to_existing_account__c", "comment": null}, "convertedaccountid": {"type": "string", "index": 50, "name": "convertedaccountid", "comment": null}, "convertedcontactid": {"type": "string", "index": 51, "name": "convertedcontactid", "comment": null}, "converteddate": {"type": "string", "index": 52, "name": "converteddate", "comment": null}, "convertedopportunityid": {"type": "string", "index": 53, "name": "convertedopportunityid", "comment": null}, "countrycode": {"type": "string", "index": 54, "name": "countrycode", "comment": null}, "country_region_text__c": {"type": "string", "index": 55, "name": "country_region_text__c", "comment": null}, "country_region__c": {"type": "string", "index": 56, "name": "country_region__c", "comment": null}, "country": {"type": "string", "index": 57, "name": "country", "comment": null}, "createdbyid": {"type": "string", "index": 58, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 59, "name": "createddate", "comment": null}, "created_by_role__c": {"type": "string", "index": 60, "name": "created_by_role__c", "comment": null}, "created_date_day_less_than_today_day__c": {"type": "long", "index": 61, "name": "created_date_day_less_than_today_day__c", "comment": null}, "currencyisocode": {"type": "string", "index": 62, "name": "currencyisocode", "comment": null}, "current_cycle_calls_completed__c": {"type": "long", "index": 63, "name": "current_cycle_calls_completed__c", "comment": null}, "current_cycle_emails_sent__c": {"type": "long", "index": 64, "name": "current_cycle_emails_sent__c", "comment": null}, "current_cycle_first_call_email_date__c": {"type": "string", "index": 65, "name": "current_cycle_first_call_email_date__c", "comment": null}, "current_cycle_last_call_email_date__c": {"type": "string", "index": 66, "name": "current_cycle_last_call_email_date__c", "comment": null}, "current_cycle_total_activities__c": {"type": "long", "index": 67, "name": "current_cycle_total_activities__c", "comment": null}, "current_marketing_activities__c": {"type": "string", "index": 68, "name": "current_marketing_activities__c", "comment": null}, "current_marketing_efforts__c": {"type": "string", "index": 69, "name": "current_marketing_efforts__c", "comment": null}, "datanayze_annual_revenue_changed__c": {"type": "string", "index": 70, "name": "datanayze_annual_revenue_changed__c", "comment": null}, "datanayze_annual_revenue_old_value__c": {"type": "string", "index": 71, "name": "datanayze_annual_revenue_old_value__c", "comment": null}, "datanayze_annual_revenue__c": {"type": "string", "index": 72, "name": "datanayze_annual_revenue__c", "comment": null}, "datanayze_current_curation_solution__c": {"type": "string", "index": 73, "name": "datanayze_current_curation_solution__c", "comment": null}, "datanayze_monthly_tech_spend__c": {"type": "string", "index": 74, "name": "datanayze_monthly_tech_spend__c", "comment": null}, "datanyze_funding__c": {"type": "string", "index": 75, "name": "datanyze_funding__c", "comment": null}, "date_assigned_to_sdr__c": {"type": "string", "index": 76, "name": "date_assigned_to_sdr__c", "comment": null}, "days_between_nurture_to_new__c": {"type": "long", "index": 77, "name": "days_between_nurture_to_new__c", "comment": null}, "days_between_nurture_to_re_engagement__c": {"type": "long", "index": 78, "name": "days_between_nurture_to_re_engagement__c", "comment": null}, "days_from_last_activity__c": {"type": "long", "index": 79, "name": "days_from_last_activity__c", "comment": null}, "days_since_last_activity_after_engage__c": {"type": "long", "index": 80, "name": "days_since_last_activity_after_engage__c", "comment": null}, "days_since_last_activity_after_mql__c": {"type": "long", "index": 81, "name": "days_since_last_activity_after_mql__c", "comment": null}, "decision_maker__c": {"type": "boolean", "index": 82, "name": "decision_maker__c", "comment": null}, "demo_task_subject__c": {"type": "string", "index": 83, "name": "demo_task_subject__c", "comment": null}, "description": {"type": "string", "index": 84, "name": "description", "comment": null}, "donotcall": {"type": "boolean", "index": 85, "name": "donotcall", "comment": null}, "do_not_merge_ringlead__c": {"type": "boolean", "index": 86, "name": "do_not_merge_ringlead__c", "comment": null}, "doesn_t_work_here__c": {"type": "boolean", "index": 87, "name": "doesn_t_work_here__c", "comment": null}, "domain__c": {"type": "string", "index": 88, "name": "domain__c", "comment": null}, "drift_assignee__c": {"type": "string", "index": 89, "name": "drift_assignee__c", "comment": null}, "duplicate_record_filled_in_by_rep__c": {"type": "string", "index": 90, "name": "duplicate_record_filled_in_by_rep__c", "comment": null}, "duration_in_lead_status__c": {"type": "long", "index": 91, "name": "duration_in_lead_status__c", "comment": null}, "ecommerce_platform_score__c": {"type": "double", "index": 92, "name": "ecommerce_platform_score__c", "comment": null}, "effective_source__c": {"type": "string", "index": 93, "name": "effective_source__c", "comment": null}, "email_domain__c": {"type": "string", "index": 94, "name": "email_domain__c", "comment": null}, "email_marketing_score__c": {"type": "double", "index": 95, "name": "email_marketing_score__c", "comment": null}, "email_validation__c": {"type": "string", "index": 96, "name": "email_validation__c", "comment": null}, "email": {"type": "string", "index": 97, "name": "email", "comment": null}, "engagement_level__c": {"type": "string", "index": 98, "name": "engagement_level__c", "comment": null}, "enterprise_checkbox_formula__c": {"type": "boolean", "index": 99, "name": "enterprise_checkbox_formula__c", "comment": null}, "enterprise_contact__c": {"type": "boolean", "index": 100, "name": "enterprise_contact__c", "comment": null}, "enterprise_lead__c": {"type": "boolean", "index": 101, "name": "enterprise_lead__c", "comment": null}, "estimated_aov_in_usd__c": {"type": "double", "index": 102, "name": "estimated_aov_in_usd__c", "comment": null}, "exclude_lead_from_time_zone_vr__c": {"type": "boolean", "index": 103, "name": "exclude_lead_from_time_zone_vr__c", "comment": null}, "exists_in_salesloft__c": {"type": "boolean", "index": 104, "name": "exists_in_salesloft__c", "comment": null}, "fax": {"type": "string", "index": 105, "name": "fax", "comment": null}, "features_to_focus_on__c": {"type": "string", "index": 106, "name": "features_to_focus_on__c", "comment": null}, "firstname": {"type": "string", "index": 107, "name": "firstname", "comment": null}, "first_activity_date__c": {"type": "string", "index": 108, "name": "first_activity_date__c", "comment": null}, "first_campaign_name__c": {"type": "string", "index": 109, "name": "first_campaign_name__c", "comment": null}, "first_campaign_type__c": {"type": "string", "index": 110, "name": "first_campaign_type__c", "comment": null}, "first_campaign__c": {"type": "string", "index": 111, "name": "first_campaign__c", "comment": null}, "first_lead_from_agency__c": {"type": "boolean", "index": 112, "name": "first_lead_from_agency__c", "comment": null}, "follow_up_date__c": {"type": "string", "index": 113, "name": "follow_up_date__c", "comment": null}, "follow_up_in_num__c": {"type": "long", "index": 114, "name": "follow_up_in_num__c", "comment": null}, "follow_up_in__c": {"type": "string", "index": 115, "name": "follow_up_in__c", "comment": null}, "for_inbound_why_interested_in_yotpo__c": {"type": "string", "index": 116, "name": "for_inbound_why_interested_in_yotpo__c", "comment": null}, "funding__c": {"type": "string", "index": 117, "name": "funding__c", "comment": null}, "gclid__c": {"type": "string", "index": 118, "name": "gclid__c", "comment": null}, "good_fit_for_the_annual_plan_lead__c": {"type": "string", "index": 119, "name": "good_fit_for_the_annual_plan_lead__c", "comment": null}, "google_fake_lead__c": {"type": "boolean", "index": 120, "name": "google_fake_lead__c", "comment": null}, "growth_date__c": {"type": "string", "index": 121, "name": "growth_date__c", "comment": null}, "hasoptedoutofemail": {"type": "boolean", "index": 122, "name": "hasoptedoutofemail", "comment": null}, "hasoptedoutoffax": {"type": "boolean", "index": 123, "name": "hasoptedoutoffax", "comment": null}, "hot_lead_sales__c": {"type": "boolean", "index": 124, "name": "hot_lead_sales__c", "comment": null}, "hours_since_last_transfer__c": {"type": "double", "index": 125, "name": "hours_since_last_transfer__c", "comment": null}, "how_did_they_hear_about_yotpo__c": {"type": "string", "index": 126, "name": "how_did_they_hear_about_yotpo__c", "comment": null}, "id": {"type": "string", "index": 127, "name": "id", "comment": null}, "import_reason__c": {"type": "string", "index": 128, "name": "import_reason__c", "comment": null}, "incorrect_territory_reason__c": {"type": "string", "index": 129, "name": "incorrect_territory_reason__c", "comment": null}, "industry": {"type": "string", "index": 130, "name": "industry", "comment": null}, "influencer_owner__c": {"type": "string", "index": 131, "name": "influencer_owner__c", "comment": null}, "influencer__c": {"type": "string", "index": 132, "name": "influencer__c", "comment": null}, "instagram_followers__c": {"type": "string", "index": 133, "name": "instagram_followers__c", "comment": null}, "instagram_posts__c": {"type": "long", "index": 134, "name": "instagram_posts__c", "comment": null}, "integrations_email_marketing__c": {"type": "string", "index": 135, "name": "integrations_email_marketing__c", "comment": null}, "integrations_loyalty__c": {"type": "string", "index": 136, "name": "integrations_loyalty__c", "comment": null}, "integrations_onsite_engagement__c": {"type": "string", "index": 137, "name": "integrations_onsite_engagement__c", "comment": null}, "integrations_search__c": {"type": "string", "index": 138, "name": "integrations_search__c", "comment": null}, "invalid_email_address_marketo__c": {"type": "boolean", "index": 139, "name": "invalid_email_address_marketo__c", "comment": null}, "isconverted": {"type": "boolean", "index": 140, "name": "isconverted", "comment": null}, "isdeleted": {"type": "boolean", "index": 141, "name": "isdeleted", "comment": null}, "isunreadbyowner": {"type": "boolean", "index": 142, "name": "isunreadbyowner", "comment": null}, "job_role__c": {"type": "string", "index": 143, "name": "job_role__c", "comment": null}, "junk_reason__c": {"type": "string", "index": 144, "name": "junk_reason__c", "comment": null}, "keep_in_owner_name__c": {"type": "boolean", "index": 145, "name": "keep_in_owner_name__c", "comment": null}, "lninterest__c": {"type": "string", "index": 146, "name": "lninterest__c", "comment": null}, "lnpath__c": {"type": "string", "index": 147, "name": "lnpath__c", "comment": null}, "lnstage__c": {"type": "string", "index": 148, "name": "lnstage__c", "comment": null}, "lnstatus__c": {"type": "string", "index": 149, "name": "lnstatus__c", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 150, "name": "lastmodifiedbyid", "comment": null}, "lastmodifieddate": {"type": "string", "index": 151, "name": "lastmodifieddate", "comment": null}, "lastname": {"type": "string", "index": 152, "name": "lastname", "comment": null}, "laststatuschange__c": {"type": "string", "index": 153, "name": "laststatuschange__c", "comment": null}, "lasttransferdate": {"type": "string", "index": 154, "name": "lasttransferdate", "comment": null}, "last_30_days_maps_custom__c": {"type": "long", "index": 155, "name": "last_30_days_maps_custom__c", "comment": null}, "last_30_days_maps_total__c": {"type": "long", "index": 156, "name": "last_30_days_maps_total__c", "comment": null}, "last_30_days_review_requests__c": {"type": "long", "index": 157, "name": "last_30_days_review_requests__c", "comment": null}, "last_30_days_reviews__c": {"type": "long", "index": 158, "name": "last_30_days_reviews__c", "comment": null}, "last_30_days_mas__c": {"type": "long", "index": 159, "name": "last_30_days_mas__c", "comment": null}, "last_30_days_maps__c": {"type": "long", "index": 160, "name": "last_30_days_maps__c", "comment": null}, "last_30_days_orders__c": {"type": "long", "index": 161, "name": "last_30_days_orders__c", "comment": null}, "last_30_days_sales__c": {"type": "double", "index": 162, "name": "last_30_days_sales__c", "comment": null}, "last_30_days_tickets_zendesk__c": {"type": "long", "index": 163, "name": "last_30_days_tickets_zendesk__c", "comment": null}, "last_ae_team__c": {"type": "string", "index": 164, "name": "last_ae_team__c", "comment": null}, "last_ae__c": {"type": "string", "index": 165, "name": "last_ae__c", "comment": null}, "last_activity_date__c": {"type": "string", "index": 166, "name": "last_activity_date__c", "comment": null}, "last_lead_owner_email__c": {"type": "string", "index": 167, "name": "last_lead_owner_email__c", "comment": null}, "last_lead_owner_lookup__c": {"type": "string", "index": 168, "name": "last_lead_owner_lookup__c", "comment": null}, "last_lead_owner_phone__c": {"type": "string", "index": 169, "name": "last_lead_owner_phone__c", "comment": null}, "last_lead_owner_role__c": {"type": "string", "index": 170, "name": "last_lead_owner_role__c", "comment": null}, "last_lead_owner_without_queue__c": {"type": "string", "index": 171, "name": "last_lead_owner_without_queue__c", "comment": null}, "last_lead_owner__c": {"type": "string", "index": 172, "name": "last_lead_owner__c", "comment": null}, "last_nurture_reason__c": {"type": "string", "index": 173, "name": "last_nurture_reason__c", "comment": null}, "last_packaged_change_date__c": {"type": "string", "index": 174, "name": "last_packaged_change_date__c", "comment": null}, "last_ringlead_merge_activity__c": {"type": "string", "index": 175, "name": "last_ringlead_merge_activity__c", "comment": null}, "last_sdr_team__c": {"type": "string", "index": 176, "name": "last_sdr_team__c", "comment": null}, "last_sdr__c": {"type": "string", "index": 177, "name": "last_sdr__c", "comment": null}, "last_sign_in__c": {"type": "string", "index": 178, "name": "last_sign_in__c", "comment": null}, "last_sub_nurture_reason__c": {"type": "string", "index": 179, "name": "last_sub_nurture_reason__c", "comment": null}, "last_transfer_datetime_without_queue__c": {"type": "string", "index": 180, "name": "last_transfer_datetime_without_queue__c", "comment": null}, "last_transfer_date_date_time__c": {"type": "string", "index": 181, "name": "last_transfer_date_date_time__c", "comment": null}, "last_transfer_date_without_queue__c": {"type": "string", "index": 182, "name": "last_transfer_date_without_queue__c", "comment": null}, "leadsource": {"type": "string", "index": 183, "name": "leadsource", "comment": null}, "lead_bucket_when_referred__c": {"type": "string", "index": 184, "name": "lead_bucket_when_referred__c", "comment": null}, "lead_bucket__c": {"type": "string", "index": 185, "name": "lead_bucket__c", "comment": null}, "lead_creation_date__c": {"type": "string", "index": 186, "name": "lead_creation_date__c", "comment": null}, "lead_demo_completed__c": {"type": "long", "index": 187, "name": "lead_demo_completed__c", "comment": null}, "lead_demo_open__c": {"type": "long", "index": 188, "name": "lead_demo_open__c", "comment": null}, "lead_emails_sent__c": {"type": "long", "index": 189, "name": "lead_emails_sent__c", "comment": null}, "lead_exp_call_completed__c": {"type": "long", "index": 190, "name": "lead_exp_call_completed__c", "comment": null}, "lead_id_18_digit__c": {"type": "string", "index": 191, "name": "lead_id_18_digit__c", "comment": null}, "lead_id_map_to_opp__c": {"type": "string", "index": 192, "name": "lead_id_map_to_opp__c", "comment": null}, "lead_id__c": {"type": "string", "index": 193, "name": "lead_id__c", "comment": null}, "lead_influenced_by__c": {"type": "string", "index": 194, "name": "lead_influenced_by__c", "comment": null}, "lead_influenced_date__c": {"type": "string", "index": 195, "name": "lead_influenced_date__c", "comment": null}, "lead_last_campaign2__c": {"type": "string", "index": 196, "name": "lead_last_campaign2__c", "comment": null}, "lead_last_campaign_contact__c": {"type": "string", "index": 197, "name": "lead_last_campaign_contact__c", "comment": null}, "lead_last_campaign_name__c": {"type": "string", "index": 198, "name": "lead_last_campaign_name__c", "comment": null}, "lead_last_campaign_type__c": {"type": "string", "index": 199, "name": "lead_last_campaign_type__c", "comment": null}, "lead_last_hubspot_engagement__c": {"type": "string", "index": 200, "name": "lead_last_hubspot_engagement__c", "comment": null}, "lead_referred_by__c": {"type": "string", "index": 201, "name": "lead_referred_by__c", "comment": null}, "lead_referred_date__c": {"type": "string", "index": 202, "name": "lead_referred_date__c", "comment": null}, "lead_referred_through_prm__c": {"type": "boolean", "index": 203, "name": "lead_referred_through_prm__c", "comment": null}, "lead_source_type__c": {"type": "string", "index": 204, "name": "lead_source_type__c", "comment": null}, "lead_source__c": {"type": "string", "index": 205, "name": "lead_source__c", "comment": null}, "lead_territory__c": {"type": "string", "index": 206, "name": "lead_territory__c", "comment": null}, "lead_was_re_engaged__c": {"type": "boolean", "index": 207, "name": "lead_was_re_engaged__c", "comment": null}, "lead_type__c": {"type": "string", "index": 208, "name": "lead_type__c", "comment": null}, "leads_count__c": {"type": "long", "index": 209, "name": "leads_count__c", "comment": null}, "linkedin__c": {"type": "string", "index": 210, "name": "linkedin__c", "comment": null}, "locked_swell__c": {"type": "boolean", "index": 211, "name": "locked_swell__c", "comment": null}, "locked__c": {"type": "boolean", "index": 212, "name": "locked__c", "comment": null}, "mql_date__c": {"type": "string", "index": 213, "name": "mql_date__c", "comment": null}, "marketing_filter_hlql_date__c": {"type": "string", "index": 214, "name": "marketing_filter_hlql_date__c", "comment": null}, "marketing_filter_hql_date__c": {"type": "string", "index": 215, "name": "marketing_filter_hql_date__c", "comment": null}, "marketing_filter_lql_date__c": {"type": "string", "index": 216, "name": "marketing_filter_lql_date__c", "comment": null}, "marketing_filter_last_qualified_tier__c": {"type": "string", "index": 217, "name": "marketing_filter_last_qualified_tier__c", "comment": null}, "marketing_product_push_counter__c": {"type": "long", "index": 218, "name": "marketing_product_push_counter__c", "comment": null}, "marketo_fit_score_first_mql__c": {"type": "long", "index": 219, "name": "marketo_fit_score_first_mql__c", "comment": null}, "marketo_fit_score_grade__c": {"type": "string", "index": 220, "name": "marketo_fit_score_grade__c", "comment": null}, "marketo_fit_score_last_mql__c": {"type": "long", "index": 221, "name": "marketo_fit_score_last_mql__c", "comment": null}, "marketo_fit_score__c": {"type": "long", "index": 222, "name": "marketo_fit_score__c", "comment": null}, "marketo_tier_last_mql__c": {"type": "string", "index": 223, "name": "marketo_tier_last_mql__c", "comment": null}, "marketo_tier_mql__c": {"type": "string", "index": 224, "name": "marketo_tier_mql__c", "comment": null}, "matched_account_ring_lead__c": {"type": "string", "index": 225, "name": "matched_account_ring_lead__c", "comment": null}, "meeting_type_cp__c": {"type": "string", "index": 226, "name": "meeting_type_cp__c", "comment": null}, "mobilephone": {"type": "string", "index": 227, "name": "mobilephone", "comment": null}, "monthly_fb_ads_budget__c": {"type": "long", "index": 228, "name": "monthly_fb_ads_budget__c", "comment": null}, "move_to_nurture__c": {"type": "string", "index": 229, "name": "move_to_nurture__c", "comment": null}, "my_top_prospect__c": {"type": "boolean", "index": 230, "name": "my_top_prospect__c", "comment": null}, "name": {"type": "string", "index": 231, "name": "name", "comment": null}, "notify_new_owner__c": {"type": "boolean", "index": 232, "name": "notify_new_owner__c", "comment": null}, "numberofemployees": {"type": "long", "index": 233, "name": "numberofemployees", "comment": null}, "number_of_open_outreach_tasks__c": {"type": "long", "index": 234, "name": "number_of_open_outreach_tasks__c", "comment": null}, "number_of_employees_changed__c": {"type": "string", "index": 235, "name": "number_of_employees_changed__c", "comment": null}, "number_of_employees_old_value__c": {"type": "string", "index": 236, "name": "number_of_employees_old_value__c", "comment": null}, "number_of_employees__c": {"type": "string", "index": 237, "name": "number_of_employees__c", "comment": null}, "nurturing_reason__c": {"type": "string", "index": 238, "name": "nurturing_reason__c", "comment": null}, "nurturing_to_new__c": {"type": "string", "index": 239, "name": "nurturing_to_new__c", "comment": null}, "orders_month_estimate__c": {"type": "string", "index": 240, "name": "orders_month_estimate__c", "comment": null}, "organization_key__c": {"type": "string", "index": 241, "name": "organization_key__c", "comment": null}, "original_source__c": {"type": "string", "index": 242, "name": "original_source__c", "comment": null}, "owned_by_sdr_salesloft__c": {"type": "boolean", "index": 243, "name": "owned_by_sdr_salesloft__c", "comment": null}, "ownerid": {"type": "string", "index": 244, "name": "ownerid", "comment": null}, "owner_is_active__c": {"type": "boolean", "index": 245, "name": "owner_is_active__c", "comment": null}, "owner_is_queue__c": {"type": "boolean", "index": 246, "name": "owner_is_queue__c", "comment": null}, "pct_usage_reached__c": {"type": "double", "index": 247, "name": "pct_usage_reached__c", "comment": null}, "package_category__c": {"type": "string", "index": 248, "name": "package_category__c", "comment": null}, "package__c": {"type": "string", "index": 249, "name": "package__c", "comment": null}, "pain_points__c": {"type": "string", "index": 250, "name": "pain_points__c", "comment": null}, "phone_country_code_lead__c": {"type": "string", "index": 251, "name": "phone_country_code_lead__c", "comment": null}, "phone_extension__c": {"type": "string", "index": 252, "name": "phone_extension__c", "comment": null}, "phone": {"type": "string", "index": 253, "name": "phone", "comment": null}, "photourl": {"type": "string", "index": 254, "name": "photourl", "comment": null}, "platform__c": {"type": "string", "index": 255, "name": "platform__c", "comment": null}, "postalcode": {"type": "string", "index": 256, "name": "postalcode", "comment": null}, "previous_db_package__c": {"type": "string", "index": 257, "name": "previous_db_package__c", "comment": null}, "product_lead_engagement__c": {"type": "boolean", "index": 258, "name": "product_lead_engagement__c", "comment": null}, "prospect_fit_rank__c": {"type": "string", "index": 259, "name": "prospect_fit_rank__c", "comment": null}, "prospect_fit_reason__c": {"type": "string", "index": 260, "name": "prospect_fit_reason__c", "comment": null}, "prospect_intent_reason__c": {"type": "string", "index": 261, "name": "prospect_intent_reason__c", "comment": null}, "prospect_role_multi__c": {"type": "string", "index": 262, "name": "prospect_role_multi__c", "comment": null}, "prospecting_alexa_ranking__c": {"type": "long", "index": 263, "name": "prospecting_alexa_ranking__c", "comment": null}, "prospecting_fb_likes__c": {"type": "string", "index": 264, "name": "prospecting_fb_likes__c", "comment": null}, "prospecting_gsr__c": {"type": "string", "index": 265, "name": "prospecting_gsr__c", "comment": null}, "prospecting_google_ads_spent_spyfu__c": {"type": "double", "index": 266, "name": "prospecting_google_ads_spent_spyfu__c", "comment": null}, "rating": {"type": "string", "index": 267, "name": "rating", "comment": null}, "ready_for_routing__c": {"type": "boolean", "index": 268, "name": "ready_for_routing__c", "comment": null}, "recordtypeid": {"type": "string", "index": 269, "name": "recordtypeid", "comment": null}, "recycling_queue__c": {"type": "string", "index": 270, "name": "recycling_queue__c", "comment": null}, "recycling_status__c": {"type": "string", "index": 271, "name": "recycling_status__c", "comment": null}, "referrer_agency_potential__c": {"type": "string", "index": 272, "name": "referrer_agency_potential__c", "comment": null}, "referrer_name__c": {"type": "string", "index": 273, "name": "referrer_name__c", "comment": null}, "referrer_owner__c": {"type": "string", "index": 274, "name": "referrer_owner__c", "comment": null}, "referrer_type__c": {"type": "string", "index": 275, "name": "referrer_type__c", "comment": null}, "referrer__c": {"type": "string", "index": 276, "name": "referrer__c", "comment": null}, "registration_date__c": {"type": "string", "index": 277, "name": "registration_date__c", "comment": null}, "relevant_yotpo_deployments__c": {"type": "string", "index": 278, "name": "relevant_yotpo_deployments__c", "comment": null}, "replatforming_make_introduction_now__c": {"type": "boolean", "index": 279, "name": "replatforming_make_introduction_now__c", "comment": null}, "retention_territory__c": {"type": "boolean", "index": 280, "name": "retention_territory__c", "comment": null}, "review_requests_emails__c": {"type": "string", "index": 281, "name": "review_requests_emails__c", "comment": null}, "reviews_provider_from_list__c": {"type": "string", "index": 282, "name": "reviews_provider_from_list__c", "comment": null}, "ringlead_dms_status__c": {"type": "string", "index": 283, "name": "ringlead_dms_status__c", "comment": null}, "ringlead_merged_ids_leads__c": {"type": "string", "index": 284, "name": "ringlead_merged_ids_leads__c", "comment": null}, "sdr_notes__c": {"type": "string", "index": 285, "name": "sdr_notes__c", "comment": null}, "sdr_opp_attribution__c": {"type": "boolean", "index": 286, "name": "sdr_opp_attribution__c", "comment": null}, "sdr__c": {"type": "string", "index": 287, "name": "sdr__c", "comment": null}, "sla_status__c": {"type": "string", "index": 288, "name": "sla_status__c", "comment": null}, "sales_demo_feedback__c": {"type": "string", "index": 289, "name": "sales_demo_feedback__c", "comment": null}, "sales_estimated_monthly_orders__c": {"type": "string", "index": 290, "name": "sales_estimated_monthly_orders__c", "comment": null}, "sales_qualified_lead__c": {"type": "boolean", "index": 291, "name": "sales_qualified_lead__c", "comment": null}, "sales_territory__c": {"type": "string", "index": 292, "name": "sales_territory__c", "comment": null}, "sales_tier_first_mql__c": {"type": "string", "index": 293, "name": "sales_tier_first_mql__c", "comment": null}, "sales_tier_routing__c": {"type": "string", "index": 294, "name": "sales_tier_routing__c", "comment": null}, "salutation": {"type": "string", "index": 295, "name": "salutation", "comment": null}, "saw_demo__c": {"type": "boolean", "index": 296, "name": "saw_demo__c", "comment": null}, "segment_id__c": {"type": "string", "index": 297, "name": "segment_id__c", "comment": null}, "selected_product_for_lead_conversion__c": {"type": "string", "index": 298, "name": "selected_product_for_lead_conversion__c", "comment": null}, "send_to_training__c": {"type": "boolean", "index": 299, "name": "send_to_training__c", "comment": null}, "shopify_plan__c": {"type": "string", "index": 300, "name": "shopify_plan__c", "comment": null}, "sign_in_count__c": {"type": "long", "index": 301, "name": "sign_in_count__c", "comment": null}, "skype_id__c": {"type": "string", "index": 302, "name": "skype_id__c", "comment": null}, "source_type__c": {"type": "string", "index": 303, "name": "source_type__c", "comment": null}, "spyfu_data__c": {"type": "string", "index": 304, "name": "spyfu_data__c", "comment": null}, "star_rating_installed__c": {"type": "boolean", "index": 305, "name": "star_rating_installed__c", "comment": null}, "statecode": {"type": "string", "index": 306, "name": "statecode", "comment": null}, "state_region__c": {"type": "string", "index": 307, "name": "state_region__c", "comment": null}, "state": {"type": "string", "index": 308, "name": "state", "comment": null}, "status_before_convert__c": {"type": "string", "index": 309, "name": "status_before_convert__c", "comment": null}, "status": {"type": "string", "index": 310, "name": "status", "comment": null}, "street": {"type": "string", "index": 311, "name": "street", "comment": null}, "sub_nurturing_reason__c": {"type": "string", "index": 312, "name": "sub_nurturing_reason__c", "comment": null}, "subjective_score__c": {"type": "string", "index": 313, "name": "subjective_score__c", "comment": null}, "submitted_ads_lp_form__c": {"type": "boolean", "index": 314, "name": "submitted_ads_lp_form__c", "comment": null}, "subscribed_to_blog__c": {"type": "boolean", "index": 315, "name": "subscribed_to_blog__c", "comment": null}, "sync_with_zendesk__c": {"type": "string", "index": 316, "name": "sync_with_zendesk__c", "comment": null}, "systemmodstamp": {"type": "string", "index": 317, "name": "systemmodstamp", "comment": null}, "tw_followers__c": {"type": "long", "index": 318, "name": "tw_followers__c", "comment": null}, "territory_set_manually__c": {"type": "boolean", "index": 319, "name": "territory_set_manually__c", "comment": null}, "territory__c": {"type": "string", "index": 320, "name": "territory__c", "comment": null}, "time_to_mql_days__c": {"type": "long", "index": 321, "name": "time_to_mql_days__c", "comment": null}, "time_zone_formula__c": {"type": "string", "index": 322, "name": "time_zone_formula__c", "comment": null}, "time_zone_new__c": {"type": "string", "index": 323, "name": "time_zone_new__c", "comment": null}, "time_zone_not_in_use__c": {"type": "string", "index": 324, "name": "time_zone_not_in_use__c", "comment": null}, "title": {"type": "string", "index": 325, "name": "title", "comment": null}, "topics_to_avoid__c": {"type": "string", "index": 326, "name": "topics_to_avoid__c", "comment": null}, "total_fb_likes__c": {"type": "long", "index": 327, "name": "total_fb_likes__c", "comment": null}, "total_orders__c": {"type": "long", "index": 328, "name": "total_orders__c", "comment": null}, "total_revenue_from_yotpo__c": {"type": "long", "index": 329, "name": "total_revenue_from_yotpo__c", "comment": null}, "total_reviews__c": {"type": "long", "index": 330, "name": "total_reviews__c", "comment": null}, "total_sales__c": {"type": "double", "index": 331, "name": "total_sales__c", "comment": null}, "trial_start_date__c": {"type": "string", "index": 332, "name": "trial_start_date__c", "comment": null}, "twitter_followers__c": {"type": "long", "index": 333, "name": "twitter_followers__c", "comment": null}, "utm_campaign_account__c": {"type": "string", "index": 334, "name": "utm_campaign_account__c", "comment": null}, "utm_content_account__c": {"type": "string", "index": 335, "name": "utm_content_account__c", "comment": null}, "utm_content__c": {"type": "string", "index": 336, "name": "utm_content__c", "comment": null}, "utm_medium_account__c": {"type": "string", "index": 337, "name": "utm_medium_account__c", "comment": null}, "utm_source_account__c": {"type": "string", "index": 338, "name": "utm_source_account__c", "comment": null}, "utm_term_account__c": {"type": "string", "index": 339, "name": "utm_term_account__c", "comment": null}, "utm_term__c": {"type": "string", "index": 340, "name": "utm_term__c", "comment": null}, "unique_upload_sdr_leads_queue__c": {"type": "boolean", "index": 341, "name": "unique_upload_sdr_leads_queue__c", "comment": null}, "updated_manually_alexa_rank__c": {"type": "boolean", "index": 342, "name": "updated_manually_alexa_rank__c", "comment": null}, "updated_manually_annual_revenue__c": {"type": "boolean", "index": 343, "name": "updated_manually_annual_revenue__c", "comment": null}, "updated_manually_country__c": {"type": "boolean", "index": 344, "name": "updated_manually_country__c", "comment": null}, "updated_manually_funding__c": {"type": "boolean", "index": 345, "name": "updated_manually_funding__c", "comment": null}, "updated_manually_number_of_employees__c": {"type": "boolean", "index": 346, "name": "updated_manually_number_of_employees__c", "comment": null}, "user_id__c": {"type": "string", "index": 347, "name": "user_id__c", "comment": null}, "viewed_yotpo_ads_lp__c": {"type": "boolean", "index": 348, "name": "viewed_yotpo_ads_lp__c", "comment": null}, "was_this_a_good_lead__c": {"type": "string", "index": 349, "name": "was_this_a_good_lead__c", "comment": null}, "web_developer_consultant__c": {"type": "boolean", "index": 350, "name": "web_developer_consultant__c", "comment": null}, "web_traffic__c": {"type": "long", "index": 351, "name": "web_traffic__c", "comment": null}, "website_text__c": {"type": "string", "index": 352, "name": "website_text__c", "comment": null}, "website": {"type": "string", "index": 353, "name": "website", "comment": null}, "widget_on_mobile_installed__c": {"type": "boolean", "index": 354, "name": "widget_on_mobile_installed__c", "comment": null}, "x18_digits_id__c": {"type": "string", "index": 355, "name": "x18_digits_id__c", "comment": null}, "yotpo_industry_lead__c": {"type": "string", "index": 356, "name": "yotpo_industry_lead__c", "comment": null}, "yotpo_industry_verified_lead__c": {"type": "boolean", "index": 357, "name": "yotpo_industry_verified_lead__c", "comment": null}, "yotpo_product_score_v2__c": {"type": "long", "index": 358, "name": "yotpo_product_score_v2__c", "comment": null}, "yotpo_sub_industry_lead__c": {"type": "string", "index": 359, "name": "yotpo_sub_industry_lead__c", "comment": null}, "zendesk_sync__c": {"type": "string", "index": 360, "name": "zendesk_sync__c", "comment": null}, "isdr_low_fit_qualification_date__c": {"type": "string", "index": 361, "name": "isdr_low_fit_qualification_date__c", "comment": null}, "isdr_low_fit_qualification_status__c": {"type": "string", "index": 362, "name": "isdr_low_fit_qualification_status__c", "comment": null}, "lead_outreach_completed__c": {"type": "long", "index": 363, "name": "lead_outreach_completed__c", "comment": null}, "mkto2__acquisition_date__c": {"type": "string", "index": 364, "name": "mkto2__acquisition_date__c", "comment": null}, "mkto2__acquisition_program_id__c": {"type": "long", "index": 365, "name": "mkto2__acquisition_program_id__c", "comment": null}, "mkto2__acquisition_program__c": {"type": "string", "index": 366, "name": "mkto2__acquisition_program__c", "comment": null}, "mkto2__inferred_city__c": {"type": "string", "index": 367, "name": "mkto2__inferred_city__c", "comment": null}, "mkto2__inferred_company__c": {"type": "string", "index": 368, "name": "mkto2__inferred_company__c", "comment": null}, "mkto2__inferred_country__c": {"type": "string", "index": 369, "name": "mkto2__inferred_country__c", "comment": null}, "mkto2__inferred_metropolitan_area__c": {"type": "string", "index": 370, "name": "mkto2__inferred_metropolitan_area__c", "comment": null}, "mkto2__inferred_phone_area_code__c": {"type": "string", "index": 371, "name": "mkto2__inferred_phone_area_code__c", "comment": null}, "mkto2__inferred_postal_code__c": {"type": "string", "index": 372, "name": "mkto2__inferred_postal_code__c", "comment": null}, "mkto2__inferred_state_region__c": {"type": "string", "index": 373, "name": "mkto2__inferred_state_region__c", "comment": null}, "mkto2__lead_score__c": {"type": "long", "index": 374, "name": "mkto2__lead_score__c", "comment": null}, "mkto2__original_referrer__c": {"type": "string", "index": 375, "name": "mkto2__original_referrer__c", "comment": null}, "mkto2__original_search_engine__c": {"type": "string", "index": 376, "name": "mkto2__original_search_engine__c", "comment": null}, "mkto2__original_search_phrase__c": {"type": "string", "index": 377, "name": "mkto2__original_search_phrase__c", "comment": null}, "mkto2__original_source_info__c": {"type": "string", "index": 378, "name": "mkto2__original_source_info__c", "comment": null}, "mkto2__original_source_type__c": {"type": "string", "index": 379, "name": "mkto2__original_source_type__c", "comment": null}, "mkto71_acquisition_date__c": {"type": "string", "index": 380, "name": "mkto71_acquisition_date__c", "comment": null}, "mkto71_acquisition_program_id__c": {"type": "long", "index": 381, "name": "mkto71_acquisition_program_id__c", "comment": null}, "mkto71_acquisition_program__c": {"type": "string", "index": 382, "name": "mkto71_acquisition_program__c", "comment": null}, "mkto_si__add_to_marketo_campaign__c": {"type": "string", "index": 383, "name": "mkto_si__add_to_marketo_campaign__c", "comment": null}, "mkto_si__last_interesting_moment_date__c": {"type": "string", "index": 384, "name": "mkto_si__last_interesting_moment_date__c", "comment": null}, "mkto_si__last_interesting_moment_desc__c": {"type": "string", "index": 385, "name": "mkto_si__last_interesting_moment_desc__c", "comment": null}, "mkto_si__last_interesting_moment_source__c": {"type": "string", "index": 386, "name": "mkto_si__last_interesting_moment_source__c", "comment": null}, "mkto_si__last_interesting_moment_type__c": {"type": "string", "index": 387, "name": "mkto_si__last_interesting_moment_type__c", "comment": null}, "mkto_si__last_interesting_moment__c": {"type": "string", "index": 388, "name": "mkto_si__last_interesting_moment__c", "comment": null}, "mkto_si__priority__c": {"type": "long", "index": 389, "name": "mkto_si__priority__c", "comment": null}, "mkto_si__relative_score_value__c": {"type": "long", "index": 390, "name": "mkto_si__relative_score_value__c", "comment": null}, "mkto_si__relative_score__c": {"type": "string", "index": 391, "name": "mkto_si__relative_score__c", "comment": null}, "mkto_si__urgency_value__c": {"type": "long", "index": 392, "name": "mkto_si__urgency_value__c", "comment": null}, "mkto_si__urgency__c": {"type": "string", "index": 393, "name": "mkto_si__urgency__c", "comment": null}, "mkto_si__view_in_marketo__c": {"type": "string", "index": 394, "name": "mkto_si__view_in_marketo__c", "comment": null}, "of_import_requests_v2__c": {"type": "long", "index": 395, "name": "of_import_requests_v2__c", "comment": null}, "of_import_requests__c": {"type": "long", "index": 396, "name": "of_import_requests__c", "comment": null}, "agency_domain__c": {"type": "string", "index": 397, "name": "agency_domain__c", "comment": null}, "agency_supported_platforms_lead__c": {"type": "string", "index": 398, "name": "agency_supported_platforms_lead__c", "comment": null}, "annual_revenue_est__c": {"type": "double", "index": 399, "name": "annual_revenue_est__c", "comment": null}, "client_s_agency__c": {"type": "string", "index": 400, "name": "client_s_agency__c", "comment": null}, "pain2__c": {"type": "string", "index": 401, "name": "pain2__c", "comment": null}, "was_referred_by_the_agency__c": {"type": "string", "index": 402, "name": "was_referred_by_the_agency__c", "comment": null}, "widget_installed__c": {"type": "string", "index": 403, "name": "widget_installed__c", "comment": null}, "agency_type__c": {"type": "string", "index": 404, "name": "agency_type__c", "comment": null}, "map_to_review_rate__c": {"type": "long", "index": 405, "name": "map_to_review_rate__c", "comment": null}, "prospecting_organic_keywords__c": {"type": "string", "index": 406, "name": "prospecting_organic_keywords__c", "comment": null}, "prospecting_paid_keywords__c": {"type": "string", "index": 407, "name": "prospecting_paid_keywords__c", "comment": null}, "specifics__c": {"type": "string", "index": 408, "name": "specifics__c", "comment": null}, "why_closed_description__c": {"type": "string", "index": 409, "name": "why_closed_description__c", "comment": null}, "why_closed__c": {"type": "string", "index": 410, "name": "why_closed__c", "comment": null}, "agency_email__c": {"type": "string", "index": 411, "name": "agency_email__c", "comment": null}, "connect_with_partner_reason__c": {"type": "string", "index": 412, "name": "connect_with_partner_reason__c", "comment": null}, "connect_with_partner__c": {"type": "string", "index": 413, "name": "connect_with_partner__c", "comment": null}, "plan__c": {"type": "string", "index": 414, "name": "plan__c", "comment": null}, "process__c": {"type": "string", "index": 415, "name": "process__c", "comment": null}, "territory_previous__c": {"type": "string", "index": 416, "name": "territory_previous__c", "comment": null}, "agency_phone__c": {"type": "string", "index": 417, "name": "agency_phone__c", "comment": null}, "business_days_to_first_connect__c": {"type": "long", "index": 418, "name": "business_days_to_first_connect__c", "comment": null}, "business_days_to_first_touch__c": {"type": "long", "index": 419, "name": "business_days_to_first_touch__c", "comment": null}, "current_cycle_first_activity__c": {"type": "string", "index": 420, "name": "current_cycle_first_activity__c", "comment": null}, "current_cycle_first_connected_activity__c": {"type": "string", "index": 421, "name": "current_cycle_first_connected_activity__c", "comment": null}, "gray_area__c": {"type": "string", "index": 422, "name": "gray_area__c", "comment": null}, "hours_to_first_connect__c": {"type": "long", "index": 423, "name": "hours_to_first_connect__c", "comment": null}, "hours_to_first_touch__c": {"type": "long", "index": 424, "name": "hours_to_first_touch__c", "comment": null}, "package_base__c": {"type": "string", "index": 425, "name": "package_base__c", "comment": null}, "package_extensions__c": {"type": "string", "index": 426, "name": "package_extensions__c", "comment": null}, "days_from_last_assign_to_first_touch__c": {"type": "double", "index": 427, "name": "days_from_last_assign_to_first_touch__c", "comment": null}, "lastactivitydate": {"type": "string", "index": 428, "name": "lastactivitydate", "comment": null}, "last_30_days_swell_sales__c": {"type": "long", "index": 429, "name": "last_30_days_swell_sales__c", "comment": null}, "merchant_id__c": {"type": "string", "index": 430, "name": "merchant_id__c", "comment": null}, "most_recent_assignment_bucket__c": {"type": "string", "index": 431, "name": "most_recent_assignment_bucket__c", "comment": null}, "most_recent_assignment_date__c": {"type": "string", "index": 432, "name": "most_recent_assignment_date__c", "comment": null}, "most_recent_assignment_reason__c": {"type": "string", "index": 433, "name": "most_recent_assignment_reason__c", "comment": null}, "most_recent_assignment_sub_reason__c": {"type": "string", "index": 434, "name": "most_recent_assignment_sub_reason__c", "comment": null}, "prospect_intent_rank__c": {"type": "string", "index": 435, "name": "prospect_intent_rank__c", "comment": null}, "swell_engagement__c": {"type": "string", "index": 436, "name": "swell_engagement__c", "comment": null}, "swell_package__c": {"type": "string", "index": 437, "name": "swell_package__c", "comment": null}, "avg_traffic_6_months__c": {"type": "long", "index": 438, "name": "avg_traffic_6_months__c", "comment": null}, "bounce_rate__c": {"type": "double", "index": 439, "name": "bounce_rate__c", "comment": null}, "considering_replatforming_in_12_months__c": {"type": "string", "index": 440, "name": "considering_replatforming_in_12_months__c", "comment": null}, "direct_traffic_share__c": {"type": "double", "index": 441, "name": "direct_traffic_share__c", "comment": null}, "emailbounceddate": {"type": "string", "index": 442, "name": "emailbounceddate", "comment": null}, "emailbouncedreason": {"type": "string", "index": 443, "name": "emailbouncedreason", "comment": null}, "global_rank__c": {"type": "long", "index": 444, "name": "global_rank__c", "comment": null}, "mail_traffic_share__c": {"type": "double", "index": 445, "name": "mail_traffic_share__c", "comment": null}, "paid_referrals_traffic_share__c": {"type": "double", "index": 446, "name": "paid_referrals_traffic_share__c", "comment": null}, "platforms_considering__c": {"type": "string", "index": 447, "name": "platforms_considering__c", "comment": null}, "re_platform_notes__c": {"type": "string", "index": 448, "name": "re_platform_notes__c", "comment": null}, "referrals_traffic_share__c": {"type": "double", "index": 449, "name": "referrals_traffic_share__c", "comment": null}, "sdr_email__c": {"type": "string", "index": 450, "name": "sdr_email__c", "comment": null}, "sdr_owner__c": {"type": "string", "index": 451, "name": "sdr_owner__c", "comment": null}, "sdr_role__c": {"type": "string", "index": 452, "name": "sdr_role__c", "comment": null}, "search_traffic_share__c": {"type": "double", "index": 453, "name": "search_traffic_share__c", "comment": null}, "second_best_country__c": {"type": "string", "index": 454, "name": "second_best_country__c", "comment": null}, "similarweb_traffic_new__c": {"type": "long", "index": 455, "name": "similarweb_traffic_new__c", "comment": null}, "social_traffic_share__c": {"type": "double", "index": 456, "name": "social_traffic_share__c", "comment": null}, "third_best_country__c": {"type": "string", "index": 457, "name": "third_best_country__c", "comment": null}, "top_country__c": {"type": "string", "index": 458, "name": "top_country__c", "comment": null}, "top_organic_keyword__c": {"type": "string", "index": 459, "name": "top_organic_keyword__c", "comment": null}, "top_paid_keyword__c": {"type": "string", "index": 460, "name": "top_paid_keyword__c", "comment": null}, "critical_event__c": {"type": "string", "index": 461, "name": "critical_event__c", "comment": null}, "decision__c": {"type": "string", "index": 462, "name": "decision__c", "comment": null}, "discoverorg_company_employees__c": {"type": "string", "index": 463, "name": "discoverorg_company_employees__c", "comment": null}, "discoverorg_company_industry__c": {"type": "string", "index": 464, "name": "discoverorg_company_industry__c", "comment": null}, "discoverorg_company_revenue__c": {"type": "string", "index": 465, "name": "discoverorg_company_revenue__c", "comment": null}, "discoverorg_ecommerce_technologies__c": {"type": "string", "index": 466, "name": "discoverorg_ecommerce_technologies__c", "comment": null}, "discoverorg_person_country__c": {"type": "string", "index": 467, "name": "discoverorg_person_country__c", "comment": null}, "discoverorg_person_job_title__c": {"type": "string", "index": 468, "name": "discoverorg_person_job_title__c", "comment": null}, "discoverorg_person_phone__c": {"type": "string", "index": 469, "name": "discoverorg_person_phone__c", "comment": null}, "impact__c": {"type": "string", "index": 470, "name": "impact__c", "comment": null}, "is_using_loyalty_campaigns__c": {"type": "string", "index": 471, "name": "is_using_loyalty_campaigns__c", "comment": null}, "is_using_referral_campaigns__c": {"type": "string", "index": 472, "name": "is_using_referral_campaigns__c", "comment": null}, "last_30_days_swell_orders__c": {"type": "long", "index": 473, "name": "last_30_days_swell_orders__c", "comment": null}, "last_6_months_points_earned__c": {"type": "long", "index": 474, "name": "last_6_months_points_earned__c", "comment": null}, "last_6_months_points_redeemed__c": {"type": "long", "index": 475, "name": "last_6_months_points_redeemed__c", "comment": null}, "latest_partner_referral_influencer__c": {"type": "string", "index": 476, "name": "latest_partner_referral_influencer__c", "comment": null}, "latest_partner_referral__c": {"type": "string", "index": 477, "name": "latest_partner_referral__c", "comment": null}, "lead_referrer_owner_role__c": {"type": "string", "index": 478, "name": "lead_referrer_owner_role__c", "comment": null}, "most_recent_engagement_date__c": {"type": "string", "index": 479, "name": "most_recent_engagement_date__c", "comment": null}, "most_recent_engagement_reason__c": {"type": "string", "index": 480, "name": "most_recent_engagement_reason__c", "comment": null}, "pain__c": {"type": "string", "index": 481, "name": "pain__c", "comment": null}, "partner_team_routing_team__c": {"type": "string", "index": 482, "name": "partner_team_routing_team__c", "comment": null}, "referrer_owner_email__c": {"type": "string", "index": 483, "name": "referrer_owner_email__c", "comment": null}, "referrer_owner_new__c": {"type": "string", "index": 484, "name": "referrer_owner_new__c", "comment": null}, "salesloft_industry__c": {"type": "string", "index": 485, "name": "salesloft_industry__c", "comment": null}, "situation__c": {"type": "string", "index": 486, "name": "situation__c", "comment": null}, "status_swell__c": {"type": "string", "index": 487, "name": "status_swell__c", "comment": null}, "total_orders_swell__c": {"type": "long", "index": 488, "name": "total_orders_swell__c", "comment": null}, "total_orders_from_referral_links_shares__c": {"type": "long", "index": 489, "name": "total_orders_from_referral_links_shares__c", "comment": null}, "total_referrals_links_clickes__c": {"type": "long", "index": 490, "name": "total_referrals_links_clickes__c", "comment": null}, "total_referrals_links_shares__c": {"type": "long", "index": 491, "name": "total_referrals_links_shares__c", "comment": null}, "total_revenue_from_referral_links_shares__c": {"type": "double", "index": 492, "name": "total_revenue_from_referral_links_shares__c", "comment": null}, "additional_phone_number__c": {"type": "string", "index": 493, "name": "additional_phone_number__c", "comment": null}, "ads_provider__c": {"type": "string", "index": 494, "name": "ads_provider__c", "comment": null}, "cdp_provider__c": {"type": "string", "index": 495, "name": "cdp_provider__c", "comment": null}, "chat_bots_provider__c": {"type": "string", "index": 496, "name": "chat_bots_provider__c", "comment": null}, "dozisf__zoominfo_company_id__c": {"type": "string", "index": 497, "name": "dozisf__zoominfo_company_id__c", "comment": null}, "dozisf__zoominfo_first_updated__c": {"type": "string", "index": 498, "name": "dozisf__zoominfo_first_updated__c", "comment": null}, "dozisf__zoominfo_id__c": {"type": "string", "index": 499, "name": "dozisf__zoominfo_id__c", "comment": null}, "dozisf__zoominfo_last_updated__c": {"type": "string", "index": 500, "name": "dozisf__zoominfo_last_updated__c", "comment": null}, "help_desk_provider__c": {"type": "string", "index": 501, "name": "help_desk_provider__c", "comment": null}, "pos_provider__c": {"type": "string", "index": 502, "name": "pos_provider__c", "comment": null}, "partner_manager_email_referral_form__c": {"type": "string", "index": 503, "name": "partner_manager_email_referral_form__c", "comment": null}, "payment_provider__c": {"type": "string", "index": 504, "name": "payment_provider__c", "comment": null}, "personalization_provider__c": {"type": "string", "index": 505, "name": "personalization_provider__c", "comment": null}, "referred_by_email_referral_form__c": {"type": "string", "index": 506, "name": "referred_by_email_referral_form__c", "comment": null}, "referred_by_referral_form__c": {"type": "string", "index": 507, "name": "referred_by_referral_form__c", "comment": null}, "referred_partner_code__c": {"type": "string", "index": 508, "name": "referred_partner_code__c", "comment": null}, "sql_assignment__c": {"type": "string", "index": 509, "name": "sql_assignment__c", "comment": null}, "wrong_number_indication_date__c": {"type": "string", "index": 510, "name": "wrong_number_indication_date__c", "comment": null}, "additional_email_address__c": {"type": "string", "index": 511, "name": "additional_email_address__c", "comment": null}, "agency_segment__c": {"type": "string", "index": 512, "name": "agency_segment__c", "comment": null}, "swell_assignee__c": {"type": "string", "index": 513, "name": "swell_assignee__c", "comment": null}, "sms_provider__c": {"type": "string", "index": 514, "name": "sms_provider__c", "comment": null}, "active_automations_flows_3_months_avg__c": {"type": "double", "index": 515, "name": "active_automations_flows_3_months_avg__c", "comment": null}, "active_automations_flows_last_30_days__c": {"type": "long", "index": 516, "name": "active_automations_flows_last_30_days__c", "comment": null}, "active_campaigns__c": {"type": "long", "index": 517, "name": "active_campaigns__c", "comment": null}, "credits_used_last_30_days__c": {"type": "double", "index": 518, "name": "credits_used_last_30_days__c", "comment": null}, "credits_used_last_90_days__c": {"type": "double", "index": 519, "name": "credits_used_last_90_days__c", "comment": null}, "good_fit_for_growth__c": {"type": "string", "index": 520, "name": "good_fit_for_growth__c", "comment": null}, "incorrect_score_reason__c": {"type": "string", "index": 521, "name": "incorrect_score_reason__c", "comment": null}, "messages_sent_last_30_days__c": {"type": "long", "index": 522, "name": "messages_sent_last_30_days__c", "comment": null}, "messages_sent_last_90_days__c": {"type": "long", "index": 523, "name": "messages_sent_last_90_days__c", "comment": null}, "percent_subscribers_from_customers__c": {"type": "double", "index": 524, "name": "percent_subscribers_from_customers__c", "comment": null}, "num_of_subscribers__c": {"type": "long", "index": 525, "name": "num_of_subscribers__c", "comment": null}, "added_to_self_service_by_role__c": {"type": "string", "index": 526, "name": "added_to_self_service_by_role__c", "comment": null}, "added_to_self_service_by__c": {"type": "string", "index": 527, "name": "added_to_self_service_by__c", "comment": null}, "cs_tags__c": {"type": "string", "index": 528, "name": "cs_tags__c", "comment": null}, "sms_user_id__c": {"type": "string", "index": 529, "name": "sms_user_id__c", "comment": null}, "additional_details__c": {"type": "string", "index": 530, "name": "additional_details__c", "comment": null}, "managed_services_agency__c": {"type": "string", "index": 531, "name": "managed_services_agency__c", "comment": null}, "marketo_triggered_mql__c": {"type": "string", "index": 532, "name": "marketo_triggered_mql__c", "comment": null}, "partneraccountid": {"type": "string", "index": 533, "name": "partneraccountid", "comment": null}, "products_interest_referral_form__c": {"type": "string", "index": 534, "name": "products_interest_referral_form__c", "comment": null}, "jigsawcontactid": {"type": "string", "index": 535, "name": "jigsawcontactid", "comment": null}, "jigsaw": {"type": "string", "index": 536, "name": "jigsaw", "comment": null}, "sales_segment__c": {"type": "string", "index": 537, "name": "sales_segment__c", "comment": null}, "a_b_testing_provider__c": {"type": "string", "index": 538, "name": "a_b_testing_provider__c", "comment": null}, "payment__c": {"type": "string", "index": 539, "name": "payment__c", "comment": null}, "mql_notification_engagement_type__c": {"type": "string", "index": 540, "name": "mql_notification_engagement_type__c", "comment": null}, "mql_notification_reason__c": {"type": "string", "index": 541, "name": "mql_notification_reason__c", "comment": null}, "subscription_billing_provider__c": {"type": "string", "index": 542, "name": "subscription_billing_provider__c", "comment": null}, "masterrecordid": {"type": "string", "index": 543, "name": "masterrecordid", "comment": null}, "marketo_discovery_event__c": {"type": "string", "index": 544, "name": "marketo_discovery_event__c", "comment": null}, "most_recent_product_preference__c": {"type": "string", "index": 545, "name": "most_recent_product_preference__c", "comment": null}, "most_recent_session_starting_page__c": {"type": "string", "index": 546, "name": "most_recent_session_starting_page__c", "comment": null}, "top_of_funnel_touches__c": {"type": "long", "index": 547, "name": "top_of_funnel_touches__c", "comment": null}, "product_touches__c": {"type": "string", "index": 548, "name": "product_touches__c", "comment": null}, "top_of_funnel_sessions__c": {"type": "long", "index": 549, "name": "top_of_funnel_sessions__c", "comment": null}, "last_30_days_orders_sms__c": {"type": "long", "index": 550, "name": "last_30_days_orders_sms__c", "comment": null}, "sales_estimated_subscribers__c": {"type": "string", "index": 551, "name": "sales_estimated_subscribers__c", "comment": null}, "sms_enabled_automations__c": {"type": "long", "index": 552, "name": "sms_enabled_automations__c", "comment": null}, "sms_enabled_flows__c": {"type": "long", "index": 553, "name": "sms_enabled_flows__c", "comment": null}, "bottom_of_funnel_sessions__c": {"type": "long", "index": 554, "name": "bottom_of_funnel_sessions__c", "comment": null}, "prospect_fit_score_test__c": {"type": "long", "index": 555, "name": "prospect_fit_score_test__c", "comment": null}, "connect_with_a_yotpo_rep__c": {"type": "string", "index": 556, "name": "connect_with_a_yotpo_rep__c", "comment": null}, "platform_for_snr_form__c": {"type": "string", "index": 557, "name": "platform_for_snr_form__c", "comment": null}, "sales_estimated_monthly_ordfor_snr_form__c": {"type": "string", "index": 558, "name": "sales_estimated_monthly_ordfor_snr_form__c", "comment": null}, "sales_estimated_product_preference__c": {"type": "string", "index": 559, "name": "sales_estimated_product_preference__c", "comment": null}, "most_recent_engagement_sub_reason__c": {"type": "string", "index": 560, "name": "most_recent_engagement_sub_reason__c", "comment": null}, "lastreferenceddate": {"type": "string", "index": 561, "name": "lastreferenceddate", "comment": null}, "lastvieweddate": {"type": "string", "index": 562, "name": "lastvieweddate", "comment": null}, "recordval__rv2status__c": {"type": "string", "index": 563, "name": "recordval__rv2status__c", "comment": null}, "recordval__rv2validation__c": {"type": "string", "index": 564, "name": "recordval__rv2validation__c", "comment": null}, "interested_in_sms__c": {"type": "boolean", "index": 565, "name": "interested_in_sms__c", "comment": null}, "interested_in_vms__c": {"type": "boolean", "index": 566, "name": "interested_in_vms__c", "comment": null}, "interested_in_loyalty__c": {"type": "boolean", "index": 567, "name": "interested_in_loyalty__c", "comment": null}, "interested_in_reviews__c": {"type": "boolean", "index": 568, "name": "interested_in_reviews__c", "comment": null}, "lead_status_time_stamp__c": {"type": "string", "index": 569, "name": "lead_status_time_stamp__c", "comment": null}, "customer_care_tagged__c": {"type": "string", "index": 570, "name": "customer_care_tagged__c", "comment": null}, "interested_in_subscription__c": {"type": "boolean", "index": 571, "name": "interested_in_subscription__c", "comment": null}, "lastproductoflastsubscriptionevent__c": {"type": "string", "index": 572, "name": "lastproductoflastsubscriptionevent__c", "comment": null}, "lastsubscriptioneventchange__c": {"type": "string", "index": 573, "name": "lastsubscriptioneventchange__c", "comment": null}, "booking_status_cp__c": {"type": "string", "index": 574, "name": "booking_status_cp__c", "comment": null}, "salesloft1__active_lead__c": {"type": "long", "index": 575, "name": "salesloft1__active_lead__c", "comment": null}, "no_of_touchpoints_before_nurturing__c": {"type": "long", "index": 576, "name": "no_of_touchpoints_before_nurturing__c", "comment": null}, "activitymetricid": {"type": "string", "index": 577, "name": "activitymetricid", "comment": null}, "activitymetricrollupid": {"type": "string", "index": 578, "name": "activitymetricrollupid", "comment": null}, "salesloft1__most_recent_cadence_name__c": {"type": "string", "index": 579, "name": "salesloft1__most_recent_cadence_name__c", "comment": null}, "salesloft1__most_recent_cadence_next_step_due_date__c": {"type": "string", "index": 580, "name": "salesloft1__most_recent_cadence_next_step_due_date__c", "comment": null}, "salesloft1__most_recent_last_completed_step__c": {"type": "long", "index": 581, "name": "salesloft1__most_recent_last_completed_step__c", "comment": null}, "mql_motion__c": {"type": "string", "index": 582, "name": "mql_motion__c", "comment": null}, "partners_outbound_list__c": {"type": "string", "index": 583, "name": "partners_outbound_list__c", "comment": null}, "do_not_update_territory__c": {"type": "boolean", "index": 584, "name": "do_not_update_territory__c", "comment": null}, "region__c": {"type": "string", "index": 585, "name": "region__c", "comment": null}, "territory_new__c": {"type": "string", "index": 586, "name": "territory_new__c", "comment": null}, "pe_reassignment_date__c": {"type": "string", "index": 587, "name": "pe_reassignment_date__c", "comment": null}, "country_picklist_helper__c": {"type": "string", "index": 588, "name": "country_picklist_helper__c", "comment": null}, "last_enrichment_date__c": {"type": "string", "index": 589, "name": "last_enrichment_date__c", "comment": null}, "mkto_si__sales_insight__c": {"type": "string", "index": 590, "name": "mkto_si__sales_insight__c", "comment": null}, "mkto_si__sales_opt_out__c": {"type": "boolean", "index": 591, "name": "mkto_si__sales_opt_out__c", "comment": null}, "rad_from_event_form__c": {"type": "string", "index": 592, "name": "rad_from_event_form__c", "comment": null}, "referrer_account_name__c": {"type": "string", "index": 593, "name": "referrer_account_name__c", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 594, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 595, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 596, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 597, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 598, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 599, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 600, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 601, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce.lead"}, "source.yoda.analytics__salesforce.livechattranscript_full": {"metadata": {"type": "view", "schema": "salesforce", "name": "livechattranscript_full", "database": null, "comment": null, "owner": "root"}, "columns": {"Abandoned": {"type": "long", "index": 0, "name": "Abandoned", "comment": null}, "AccountId": {"type": "string", "index": 1, "name": "AccountId", "comment": null}, "App_Key__c": {"type": "string", "index": 2, "name": "App_Key__c", "comment": null}, "AverageResponseTimeOperator": {"type": "long", "index": 3, "name": "AverageResponseTimeOperator", "comment": null}, "AverageResponseTimeVisitor": {"type": "long", "index": 4, "name": "AverageResponseTimeVisitor", "comment": null}, "Body": {"type": "string", "index": 5, "name": "Body", "comment": null}, "Browser": {"type": "string", "index": 6, "name": "Browser", "comment": null}, "BrowserLanguage": {"type": "string", "index": 7, "name": "BrowserLanguage", "comment": null}, "Can_I_help_you_with_anything_else__c": {"type": "string", "index": 8, "name": "Can_I_help_you_with_anything_else__c", "comment": null}, "CaseId": {"type": "string", "index": 9, "name": "CaseId", "comment": null}, "ChatDuration": {"type": "long", "index": 10, "name": "ChatDuration", "comment": null}, "ChatKey": {"type": "string", "index": 11, "name": "ChatKey", "comment": null}, "Chat_Button__c": {"type": "string", "index": 12, "name": "Chat_Button__c", "comment": null}, "Choice_selected_Installing_Yotpo_UGC__c": {"type": "string", "index": 13, "name": "Choice_selected_Installing_Yotpo_UGC__c", "comment": null}, "Choice_selected__c": {"type": "string", "index": 14, "name": "Choice_selected__c", "comment": null}, "Concern_Addressed__c": {"type": "string", "index": 15, "name": "Concern_Addressed__c", "comment": null}, "Confused__c": {"type": "string", "index": 16, "name": "Confused__c", "comment": null}, "ContactId": {"type": "string", "index": 17, "name": "ContactId", "comment": null}, "CreatedById": {"type": "string", "index": 18, "name": "CreatedById", "comment": null}, "CreatedDate": {"type": "string", "index": 19, "name": "CreatedDate", "comment": null}, "CurrencyIsoCode": {"type": "string", "index": 20, "name": "CurrencyIsoCode", "comment": null}, "Dialog__c": {"type": "string", "index": 21, "name": "Dialog__c", "comment": null}, "EndTime": {"type": "string", "index": 22, "name": "EndTime", "comment": null}, "EndedBy": {"type": "string", "index": 23, "name": "EndedBy", "comment": null}, "Id": {"type": "string", "index": 24, "name": "Id", "comment": null}, "IpAddress": {"type": "string", "index": 25, "name": "IpAddress", "comment": null}, "IsChatbotSession": {"type": "boolean", "index": 26, "name": "IsChatbotSession", "comment": null}, "IsDeleted": {"type": "boolean", "index": 27, "name": "IsDeleted", "comment": null}, "LastModifiedById": {"type": "string", "index": 28, "name": "LastModifiedById", "comment": null}, "LastModifiedDate": {"type": "string", "index": 29, "name": "LastModifiedDate", "comment": null}, "LastReferencedDate": {"type": "string", "index": 30, "name": "LastReferencedDate", "comment": null}, "LastViewedDate": {"type": "string", "index": 31, "name": "LastViewedDate", "comment": null}, "LeadId": {"type": "string", "index": 32, "name": "LeadId", "comment": null}, "LiveChatButtonId": {"type": "string", "index": 33, "name": "LiveChatButtonId", "comment": null}, "LiveChatDeploymentId": {"type": "string", "index": 34, "name": "LiveChatDeploymentId", "comment": null}, "LiveChatVisitorId": {"type": "string", "index": 35, "name": "LiveChatVisitorId", "comment": null}, "Location": {"type": "string", "index": 36, "name": "Location", "comment": null}, "MaxResponseTimeOperator": {"type": "long", "index": 37, "name": "MaxResponseTimeOperator", "comment": null}, "MaxResponseTimeVisitor": {"type": "long", "index": 38, "name": "MaxResponseTimeVisitor", "comment": null}, "Merchant_ID__c": {"type": "string", "index": 39, "name": "Merchant_ID__c", "comment": null}, "Name": {"type": "string", "index": 40, "name": "Name", "comment": null}, "OperatorMessageCount": {"type": "long", "index": 41, "name": "OperatorMessageCount", "comment": null}, "OwnerId": {"type": "string", "index": 42, "name": "OwnerId", "comment": null}, "Platform": {"type": "string", "index": 43, "name": "Platform", "comment": null}, "ReferrerUri": {"type": "string", "index": 44, "name": "ReferrerUri", "comment": null}, "Reply_to_Email__c": {"type": "string", "index": 45, "name": "Reply_to_Email__c", "comment": null}, "RequestTime": {"type": "string", "index": 46, "name": "RequestTime", "comment": null}, "ScreenResolution": {"type": "string", "index": 47, "name": "ScreenResolution", "comment": null}, "SkillId": {"type": "string", "index": 48, "name": "SkillId", "comment": null}, "StartTime": {"type": "string", "index": 49, "name": "StartTime", "comment": null}, "Status": {"type": "string", "index": 50, "name": "Status", "comment": null}, "SupervisorTranscriptBody": {"type": "string", "index": 51, "name": "SupervisorTranscriptBody", "comment": null}, "SystemModstamp": {"type": "string", "index": 52, "name": "SystemModstamp", "comment": null}, "Topic__c": {"type": "string", "index": 53, "name": "Topic__c", "comment": null}, "UserAgent": {"type": "string", "index": 54, "name": "UserAgent", "comment": null}, "VisitorMessageCount": {"type": "long", "index": 55, "name": "VisitorMessageCount", "comment": null}, "VisitorNetwork": {"type": "string", "index": 56, "name": "VisitorNetwork", "comment": null}, "WaitTime": {"type": "long", "index": 57, "name": "WaitTime", "comment": null}, "Was_This_Result_Helpful_Text__c": {"type": "string", "index": 58, "name": "Was_This_Result_Helpful_Text__c", "comment": null}, "Was_this_resault_helpful__c": {"type": "string", "index": 59, "name": "Was_this_resault_helpful__c", "comment": null}, "Welcome_Dialog__c": {"type": "boolean", "index": 60, "name": "Welcome_Dialog__c", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 61, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 62, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 63, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 64, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 65, "name": "_sdc_table_version", "comment": null}, "rn": {"type": "integer", "index": 66, "name": "rn", "comment": null}}, "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.yoda.analytics__salesforce.livechattranscript_full"}, "source.yoda.analytics__salesforce.onboarding_project__c_full": {"metadata": {"type": "view", "schema": "salesforce", "name": "onboarding_project__c_full", "database": null, "comment": null, "owner": "root"}, "columns": {"APP_Key__c": {"type": "string", "index": 0, "name": "APP_Key__c", "comment": null}, "Account_ID__c": {"type": "string", "index": 1, "name": "Account_ID__c", "comment": null}, "Account_Name__c": {"type": "string", "index": 2, "name": "Account_Name__c", "comment": null}, "Account_Product_Currency__c": {"type": "string", "index": 3, "name": "Account_Product_Currency__c", "comment": null}, "Account_Product__c": {"type": "string", "index": 4, "name": "Account_Product__c", "comment": null}, "Account__c": {"type": "string", "index": 5, "name": "Account__c", "comment": null}, "Actual_Duration_NET__c": {"type": "double", "index": 6, "name": "Actual_Duration_NET__c", "comment": null}, "Agency__c": {"type": "string", "index": 7, "name": "Agency__c", "comment": null}, "Assign_SE__c": {"type": "string", "index": 8, "name": "Assign_SE__c", "comment": null}, "CSM_Email__c": {"type": "string", "index": 9, "name": "CSM_Email__c", "comment": null}, "CSM__c": {"type": "string", "index": 10, "name": "CSM__c", "comment": null}, "CS_Segment__c": {"type": "string", "index": 11, "name": "CS_Segment__c", "comment": null}, "Cancelled_Date__c": {"type": "string", "index": 12, "name": "Cancelled_Date__c", "comment": null}, "Cases_Report__c": {"type": "string", "index": 13, "name": "Cases_Report__c", "comment": null}, "Complexity_Score__c": {"type": "double", "index": 14, "name": "Complexity_Score__c", "comment": null}, "Contract_Start_Date__c": {"type": "string", "index": 15, "name": "Contract_Start_Date__c", "comment": null}, "CreatedById": {"type": "string", "index": 16, "name": "CreatedById", "comment": null}, "CreatedDate": {"type": "string", "index": 17, "name": "CreatedDate", "comment": null}, "Customer_Care_OB_project__c": {"type": "boolean", "index": 18, "name": "Customer_Care_OB_project__c", "comment": null}, "Customization_Level__c": {"type": "string", "index": 19, "name": "Customization_Level__c", "comment": null}, "Date_onboarding_completed__c": {"type": "string", "index": 20, "name": "Date_onboarding_completed__c", "comment": null}, "Days_Since_Onboarding_Creation__c": {"type": "double", "index": 21, "name": "Days_Since_Onboarding_Creation__c", "comment": null}, "Days_since_start_date__c": {"type": "double", "index": 22, "name": "Days_since_start_date__c", "comment": null}, "Domain__c": {"type": "string", "index": 23, "name": "Domain__c", "comment": null}, "Duration_SE_Kickoff_to_Completion__c": {"type": "double", "index": 24, "name": "Duration_SE_Kickoff_to_Completion__c", "comment": null}, "Gross_duration__c": {"type": "double", "index": 25, "name": "Gross_duration__c", "comment": null}, "Headless_platform__c": {"type": "boolean", "index": 26, "name": "Headless_platform__c", "comment": null}, "Id": {"type": "string", "index": 27, "name": "Id", "comment": null}, "IsDeleted": {"type": "boolean", "index": 28, "name": "IsDeleted", "comment": null}, "Is_Owner_is_the_current_User__c": {"type": "boolean", "index": 29, "name": "Is_Owner_is_the_current_User__c", "comment": null}, "KOC_Date__c": {"type": "string", "index": 30, "name": "KOC_Date__c", "comment": null}, "LastModifiedById": {"type": "string", "index": 31, "name": "LastModifiedById", "comment": null}, "LastModifiedDate": {"type": "string", "index": 32, "name": "LastModifiedDate", "comment": null}, "Merchant_Id__c": {"type": "string", "index": 33, "name": "Merchant_Id__c", "comment": null}, "Multi_Store__c": {"type": "boolean", "index": 34, "name": "Multi_Store__c", "comment": null}, "Multi_product__c": {"type": "string", "index": 35, "name": "Multi_product__c", "comment": null}, "Name": {"type": "string", "index": 36, "name": "Name", "comment": null}, "Net_duration__c": {"type": "double", "index": 37, "name": "Net_duration__c", "comment": null}, "Number_Of_Domains__c": {"type": "double", "index": 38, "name": "Number_Of_Domains__c", "comment": null}, "Onboarding_Manager_CSM_Team__c": {"type": "string", "index": 39, "name": "Onboarding_Manager_CSM_Team__c", "comment": null}, "Onboarding_completed__c": {"type": "string", "index": 40, "name": "Onboarding_completed__c", "comment": null}, "Onboarding_duration__c": {"type": "double", "index": 41, "name": "Onboarding_duration__c", "comment": null}, "Onboarding_start_date__c": {"type": "string", "index": 42, "name": "Onboarding_start_date__c", "comment": null}, "Opportunity_Package__c": {"type": "string", "index": 43, "name": "Opportunity_Package__c", "comment": null}, "Organization_Key__c": {"type": "string", "index": 44, "name": "Organization_Key__c", "comment": null}, "Owner_Role__c": {"type": "string", "index": 45, "name": "Owner_Role__c", "comment": null}, "Owner__c": {"type": "string", "index": 46, "name": "Owner__c", "comment": null}, "Paused_Duration__c": {"type": "double", "index": 47, "name": "Paused_Duration__c", "comment": null}, "Platform__c": {"type": "string", "index": 48, "name": "Platform__c", "comment": null}, "Process_Paused_Date__c": {"type": "string", "index": 49, "name": "Process_Paused_Date__c", "comment": null}, "Process_Resumed_Date__c": {"type": "string", "index": 50, "name": "Process_Resumed_Date__c", "comment": null}, "Product_Line_ACV__c": {"type": "double", "index": 51, "name": "Product_Line_ACV__c", "comment": null}, "Product_Line__c": {"type": "string", "index": 52, "name": "Product_Line__c", "comment": null}, "Proejct_Actual_duration_gross_Days__c": {"type": "double", "index": 53, "name": "Proejct_Actual_duration_gross_Days__c", "comment": null}, "Project_Completion_Date__c": {"type": "string", "index": 54, "name": "Project_Completion_Date__c", "comment": null}, "Project_Due_Date__c": {"type": "string", "index": 55, "name": "Project_Due_Date__c", "comment": null}, "Project_Planned_Duration_Days__c": {"type": "double", "index": 56, "name": "Project_Planned_Duration_Days__c", "comment": null}, "Project_Start_Date__c": {"type": "string", "index": 57, "name": "Project_Start_Date__c", "comment": null}, "Red_Flag_Date__c": {"type": "string", "index": 58, "name": "Red_Flag_Date__c", "comment": null}, "Red_Flag_Reason__c": {"type": "string", "index": 59, "name": "Red_Flag_Reason__c", "comment": null}, "Red_flag_Bucket__c": {"type": "string", "index": 60, "name": "Red_flag_Bucket__c", "comment": null}, "Red_flag_Notes__c": {"type": "string", "index": 61, "name": "Red_flag_Notes__c", "comment": null}, "SE_Needed__c": {"type": "boolean", "index": 62, "name": "SE_Needed__c", "comment": null}, "Stage__c": {"type": "string", "index": 63, "name": "Stage__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 64, "name": "SystemModstamp", "comment": null}, "Target_Launch_Date__c": {"type": "string", "index": 65, "name": "Target_Launch_Date__c", "comment": null}, "The_Reason_for_the_onboarding__c": {"type": "string", "index": 66, "name": "The_Reason_for_the_onboarding__c", "comment": null}, "Total_ACV__c": {"type": "double", "index": 67, "name": "Total_ACV__c", "comment": null}, "Total_Score__c": {"type": "double", "index": 68, "name": "Total_Score__c", "comment": null}, "X18_Digits_Id__c": {"type": "string", "index": 69, "name": "X18_Digits_Id__c", "comment": null}, "Relevant_Onboarding_Manager__c": {"type": "string", "index": 70, "name": "Relevant_Onboarding_Manager__c", "comment": null}, "Final_AP_initial_won_date__c": {"type": "string", "index": 71, "name": "Final_AP_initial_won_date__c", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 72, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 73, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 74, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 75, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 76, "name": "_sdc_table_version", "comment": null}, "rn": {"type": "integer", "index": 77, "name": "rn", "comment": null}}, "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.yoda.analytics__salesforce.onboarding_project__c_full"}, "source.yoda.analytics__salesforce.opportunity_prediction__c_full": {"metadata": {"type": "view", "schema": "salesforce", "name": "opportunity_prediction__c_full", "database": null, "comment": null, "owner": "root"}, "columns": {"AM_contribution_Assumption__c": {"type": "double", "index": 0, "name": "AM_contribution_Assumption__c", "comment": null}, "CSM_Loyalty_Risk__c": {"type": "boolean", "index": 1, "name": "CSM_Loyalty_Risk__c", "comment": null}, "CSM_Reviews_Risk__c": {"type": "boolean", "index": 2, "name": "CSM_Reviews_Risk__c", "comment": null}, "CreatedById": {"type": "string", "index": 3, "name": "CreatedById", "comment": null}, "CreatedDate": {"type": "string", "index": 4, "name": "CreatedDate", "comment": null}, "CurrencyIsoCode": {"type": "string", "index": 5, "name": "CurrencyIsoCode", "comment": null}, "Deal_Summary__c": {"type": "string", "index": 6, "name": "Deal_Summary__c", "comment": null}, "Forecast_Prediction_Notes__c": {"type": "string", "index": 7, "name": "Forecast_Prediction_Notes__c", "comment": null}, "Gross_account__c": {"type": "double", "index": 8, "name": "Gross_account__c", "comment": null}, "Id": {"type": "string", "index": 9, "name": "Id", "comment": null}, "IsDeleted": {"type": "boolean", "index": 10, "name": "IsDeleted", "comment": null}, "LastModifiedById": {"type": "string", "index": 11, "name": "LastModifiedById", "comment": null}, "LastModifiedDate": {"type": "string", "index": 12, "name": "LastModifiedDate", "comment": null}, "LastReferencedDate": {"type": "string", "index": 13, "name": "LastReferencedDate", "comment": null}, "LastViewedDate": {"type": "string", "index": 14, "name": "LastViewedDate", "comment": null}, "Logo_retention_account__c": {"type": "double", "index": 15, "name": "Logo_retention_account__c", "comment": null}, "Loyalty_CSM_Notes__c": {"type": "string", "index": 16, "name": "Loyalty_CSM_Notes__c", "comment": null}, "Loyalty_CSM_Notes_rich__c": {"type": "string", "index": 17, "name": "Loyalty_CSM_Notes_rich__c", "comment": null}, "Loyalty_Current_ACV__c": {"type": "double", "index": 18, "name": "Loyalty_Current_ACV__c", "comment": null}, "Loyalty_Current_Hedged_ACV__c": {"type": "double", "index": 19, "name": "Loyalty_Current_Hedged_ACV__c", "comment": null}, "Loyalty_Manager_Notes__c": {"type": "string", "index": 20, "name": "Loyalty_Manager_Notes__c", "comment": null}, "Loyalty_Manager_Notes_rich__c": {"type": "string", "index": 21, "name": "Loyalty_Manager_Notes_rich__c", "comment": null}, "Loyalty_Predictions_Certainty__c": {"type": "string", "index": 22, "name": "Loyalty_Predictions_Certainty__c", "comment": null}, "Loyalty_Previous_ACV__c": {"type": "double", "index": 23, "name": "Loyalty_Previous_ACV__c", "comment": null}, "Loyalty_Result_Type__c": {"type": "string", "index": 24, "name": "Loyalty_Result_Type__c", "comment": null}, "Loyalty_Risk_Buckets__c": {"type": "string", "index": 25, "name": "Loyalty_Risk_Buckets__c", "comment": null}, "Loyalty_logo_retainment_hedged__c": {"type": "double", "index": 26, "name": "Loyalty_logo_retainment_hedged__c", "comment": null}, "Loyalty_previous_ACV_with_ITC__c": {"type": "double", "index": 27, "name": "Loyalty_previous_ACV_with_ITC__c", "comment": null}, "Loyalty_result_type_hedged__c": {"type": "string", "index": 28, "name": "Loyalty_result_type_hedged__c", "comment": null}, "Manager_Notes__c": {"type": "string", "index": 29, "name": "Manager_Notes__c", "comment": null}, "Name": {"type": "string", "index": 30, "name": "Name", "comment": null}, "Opportunity__c": {"type": "string", "index": 31, "name": "Opportunity__c", "comment": null}, "Predicted_Loyalty_ACV__c": {"type": "double", "index": 32, "name": "Predicted_Loyalty_ACV__c", "comment": null}, "Predicted_Reviews_ACV__c": {"type": "double", "index": 33, "name": "Predicted_Reviews_ACV__c", "comment": null}, "Primary_CSM_Notes__c": {"type": "string", "index": 34, "name": "Primary_CSM_Notes__c", "comment": null}, "Primary_CSM_Notes_rich__c": {"type": "string", "index": 35, "name": "Primary_CSM_Notes_rich__c", "comment": null}, "Primary_Manager_Notes__c": {"type": "string", "index": 36, "name": "Primary_Manager_Notes__c", "comment": null}, "Primary_Manager_Notes_rich__c": {"type": "string", "index": 37, "name": "Primary_Manager_Notes_rich__c", "comment": null}, "Relevant_CSMS_teams_upon_closed__c": {"type": "string", "index": 38, "name": "Relevant_CSMS_teams_upon_closed__c", "comment": null}, "Relevant_CSMS_upon_closed__c": {"type": "string", "index": 39, "name": "Relevant_CSMS_upon_closed__c", "comment": null}, "Relevant_Loyalty_CSM_Team__c": {"type": "string", "index": 40, "name": "Relevant_Loyalty_CSM_Team__c", "comment": null}, "Relevant_Loyalty_CSM__c": {"type": "string", "index": 41, "name": "Relevant_Loyalty_CSM__c", "comment": null}, "Relevant_Reviews_CSM_Team__c": {"type": "string", "index": 42, "name": "Relevant_Reviews_CSM_Team__c", "comment": null}, "Relevant_Reviews_CSM__c": {"type": "string", "index": 43, "name": "Relevant_Reviews_CSM__c", "comment": null}, "Reviews_CSM_Notes__c": {"type": "string", "index": 44, "name": "Reviews_CSM_Notes__c", "comment": null}, "Reviews_CSM_Notes_rich__c": {"type": "string", "index": 45, "name": "Reviews_CSM_Notes_rich__c", "comment": null}, "Reviews_Current_ACV__c": {"type": "double", "index": 46, "name": "Reviews_Current_ACV__c", "comment": null}, "Reviews_Current_Hedged_ACV__c": {"type": "double", "index": 47, "name": "Reviews_Current_Hedged_ACV__c", "comment": null}, "Reviews_Manager_Notes__c": {"type": "string", "index": 48, "name": "Reviews_Manager_Notes__c", "comment": null}, "Reviews_Manager_Notes_rich__c": {"type": "string", "index": 49, "name": "Reviews_Manager_Notes_rich__c", "comment": null}, "Reviews_Predictions_Certainty__c": {"type": "string", "index": 50, "name": "Reviews_Predictions_Certainty__c", "comment": null}, "Reviews_Previous_ACV__c": {"type": "double", "index": 51, "name": "Reviews_Previous_ACV__c", "comment": null}, "Reviews_Result_Type__c": {"type": "string", "index": 52, "name": "Reviews_Result_Type__c", "comment": null}, "Reviews_Risk_Buckets__c": {"type": "string", "index": 53, "name": "Reviews_Risk_Buckets__c", "comment": null}, "Reviews_logo_retainment_hedged__c": {"type": "double", "index": 54, "name": "Reviews_logo_retainment_hedged__c", "comment": null}, "Reviews_previous_ACV_with_ITC__c": {"type": "double", "index": 55, "name": "Reviews_previous_ACV_with_ITC__c", "comment": null}, "Reviews_result_type_hedged__c": {"type": "string", "index": 56, "name": "Reviews_result_type_hedged__c", "comment": null}, "SMS_CSM_ACV_Prediction__c": {"type": "double", "index": 57, "name": "SMS_CSM_ACV_Prediction__c", "comment": null}, "SMS_CSM_Notes__c": {"type": "string", "index": 58, "name": "SMS_CSM_Notes__c", "comment": null}, "SMS_CSM_Renewal_Prediction__c": {"type": "boolean", "index": 59, "name": "SMS_CSM_Renewal_Prediction__c", "comment": null}, "SMS_Manager_Notes__c": {"type": "string", "index": 60, "name": "SMS_Manager_Notes__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 61, "name": "SystemModstamp", "comment": null}, "Total_Hedged_ACV_with_assumptions__c": {"type": "double", "index": 62, "name": "Total_Hedged_ACV_with_assumptions__c", "comment": null}, "Total_Previous_ACV_with_assumptions__c": {"type": "double", "index": 63, "name": "Total_Previous_ACV_with_assumptions__c", "comment": null}, "USER_is_from_relevant_CSM_team__c": {"type": "double", "index": 64, "name": "USER_is_from_relevant_CSM_team__c", "comment": null}, "USER_is_relevant_CSM__c": {"type": "double", "index": 65, "name": "USER_is_relevant_CSM__c", "comment": null}, "X2_Months_ACV_Prediction__c": {"type": "double", "index": 66, "name": "X2_Months_ACV_Prediction__c", "comment": null}, "X2_Months_Contract_Renewal_Prediction__c": {"type": "string", "index": 67, "name": "X2_Months_Contract_Renewal_Prediction__c", "comment": null}, "X4_Months_ACV_Prediction__c": {"type": "double", "index": 68, "name": "X4_Months_ACV_Prediction__c", "comment": null}, "X4_Months_Contract_Renewal_Prediction__c": {"type": "string", "index": 69, "name": "X4_Months_Contract_Renewal_Prediction__c", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 70, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 71, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 72, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 73, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 74, "name": "_sdc_table_version", "comment": null}, "rn": {"type": "integer", "index": 75, "name": "rn", "comment": null}}, "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.yoda.analytics__salesforce.opportunity_prediction__c_full"}, "source.yoda.analytics__salesforce.opportunityfieldhistory": {"metadata": {"type": "view", "schema": "salesforce", "name": "opportunityfieldhistory", "database": null, "comment": null, "owner": "root"}, "columns": {"createdbyid": {"type": "string", "index": 0, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 1, "name": "createddate", "comment": null}, "field": {"type": "string", "index": 2, "name": "field", "comment": null}, "id": {"type": "string", "index": 3, "name": "id", "comment": null}, "isdeleted": {"type": "boolean", "index": 4, "name": "isdeleted", "comment": null}, "newvalue": {"type": "string", "index": 5, "name": "newvalue", "comment": null}, "oldvalue": {"type": "string", "index": 6, "name": "oldvalue", "comment": null}, "opportunityid": {"type": "string", "index": 7, "name": "opportunityid", "comment": null}, "datatype": {"type": "string", "index": 8, "name": "datatype", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 9, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 10, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 11, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 12, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 13, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 14, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 15, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 16, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce.opportunityfieldhistory"}, "source.yoda.analytics__salesforce.opportunitylineitem_full": {"metadata": {"type": "view", "schema": "salesforce", "name": "opportunitylineitem_full", "database": null, "comment": null, "owner": "root"}, "columns": {"Add_On_Product__c": {"type": "boolean", "index": 0, "name": "Add_On_Product__c", "comment": null}, "Average_ACV__c": {"type": "double", "index": 1, "name": "Average_ACV__c", "comment": null}, "Billing_Frequency__c": {"type": "string", "index": 2, "name": "Billing_Frequency__c", "comment": null}, "Billing_Frequency_in_number__c": {"type": "double", "index": 3, "name": "Billing_Frequency_in_number__c", "comment": null}, "Bundle_Description__c": {"type": "string", "index": 4, "name": "Bundle_Description__c", "comment": null}, "CreatedById": {"type": "string", "index": 5, "name": "CreatedById", "comment": null}, "CreatedDate": {"type": "string", "index": 6, "name": "CreatedDate", "comment": null}, "CurrencyIsoCode": {"type": "string", "index": 7, "name": "CurrencyIsoCode", "comment": null}, "Customer_Portion_from_List_Price__c": {"type": "double", "index": 8, "name": "Customer_Portion_from_List_Price__c", "comment": null}, "Customer_Portion_from_Total_Price__c": {"type": "double", "index": 9, "name": "Customer_Portion_from_Total_Price__c", "comment": null}, "Dealhub_Main_Add_on_Product__c": {"type": "boolean", "index": 10, "name": "Dealhub_Main_Add_on_Product__c", "comment": null}, "Description": {"type": "string", "index": 11, "name": "Description", "comment": null}, "Discount": {"type": "double", "index": 12, "name": "Discount", "comment": null}, "Docusign_AnchorTag_Helper__c": {"type": "double", "index": 13, "name": "Docusign_AnchorTag_Helper__c", "comment": null}, "Domain_Product__c": {"type": "boolean", "index": 14, "name": "Domain_Product__c", "comment": null}, "Estimated_Orders__c": {"type": "double", "index": 15, "name": "Estimated_Orders__c", "comment": null}, "GMV__c": {"type": "double", "index": 16, "name": "GMV__c", "comment": null}, "Id": {"type": "string", "index": 17, "name": "Id", "comment": null}, "Included_Orders__c": {"type": "double", "index": 18, "name": "Included_Orders__c", "comment": null}, "Insight_Number_of_Order_Reviews__c": {"type": "double", "index": 19, "name": "Insight_Number_of_Order_Reviews__c", "comment": null}, "Insights_Dashboard__c": {"type": "boolean", "index": 20, "name": "Insights_Dashboard__c", "comment": null}, "Installment_Amount__c": {"type": "double", "index": 21, "name": "Installment_Amount__c", "comment": null}, "IsDeleted": {"type": "boolean", "index": 22, "name": "IsDeleted", "comment": null}, "Is_Add_On__c": {"type": "boolean", "index": 23, "name": "Is_Add_On__c", "comment": null}, "Is_Bundle__c": {"type": "boolean", "index": 24, "name": "Is_Bundle__c", "comment": null}, "LastModifiedById": {"type": "string", "index": 25, "name": "LastModifiedById", "comment": null}, "LastModifiedDate": {"type": "string", "index": 26, "name": "LastModifiedDate", "comment": null}, "Legacy_Product__c": {"type": "boolean", "index": 27, "name": "Legacy_Product__c", "comment": null}, "ListPrice": {"type": "double", "index": 28, "name": "ListPrice", "comment": null}, "Moderation_Service__c": {"type": "boolean", "index": 29, "name": "Moderation_Service__c", "comment": null}, "Name": {"type": "string", "index": 30, "name": "Name", "comment": null}, "No_CSM__c": {"type": "boolean", "index": 31, "name": "No_CSM__c", "comment": null}, "Number_of_Hours__c": {"type": "double", "index": 32, "name": "Number_of_Hours__c", "comment": null}, "Number_of_Included_Reviews__c": {"type": "double", "index": 33, "name": "Number_of_Included_Reviews__c", "comment": null}, "Number_of_Seats__c": {"type": "double", "index": 34, "name": "Number_of_Seats__c", "comment": null}, "OpportunityId": {"type": "string", "index": 35, "name": "OpportunityId", "comment": null}, "Opportunity_Merge_To_Id__c": {"type": "string", "index": 36, "name": "Opportunity_Merge_To_Id__c", "comment": null}, "Opportunity_Product_ID__c": {"type": "string", "index": 37, "name": "Opportunity_Product_ID__c", "comment": null}, "Overage_Charge__c": {"type": "double", "index": 38, "name": "Overage_Charge__c", "comment": null}, "Package_Name__c": {"type": "string", "index": 39, "name": "Package_Name__c", "comment": null}, "Package_Product__c": {"type": "boolean", "index": 40, "name": "Package_Product__c", "comment": null}, "Parent_Bundle_SKU__c": {"type": "string", "index": 41, "name": "Parent_Bundle_SKU__c", "comment": null}, "Parent_Bundle__c": {"type": "string", "index": 42, "name": "Parent_Bundle__c", "comment": null}, "Pre_Overage_Price__c": {"type": "double", "index": 43, "name": "Pre_Overage_Price__c", "comment": null}, "PricebookEntryId": {"type": "string", "index": 44, "name": "PricebookEntryId", "comment": null}, "Product2Id": {"type": "string", "index": 45, "name": "Product2Id", "comment": null}, "ProductCode": {"type": "string", "index": 46, "name": "ProductCode", "comment": null}, "Product_Category__c": {"type": "string", "index": 47, "name": "Product_Category__c", "comment": null}, "Product_Family__c": {"type": "string", "index": 48, "name": "Product_Family__c", "comment": null}, "Product_Included_Seats_Total__c": {"type": "double", "index": 49, "name": "Product_Included_Seats_Total__c", "comment": null}, "Product_Included_Seats__c": {"type": "double", "index": 50, "name": "Product_Included_Seats__c", "comment": null}, "Product_Line_MRR__c": {"type": "double", "index": 51, "name": "Product_Line_MRR__c", "comment": null}, "Product_Name__c": {"type": "string", "index": 52, "name": "Product_Name__c", "comment": null}, "Product_Proration_Today__c": {"type": "double", "index": 53, "name": "Product_Proration_Today__c", "comment": null}, "Product_Proration__c": {"type": "string", "index": 54, "name": "Product_Proration__c", "comment": null}, "Production_Rate_Paln_Id__c": {"type": "string", "index": 55, "name": "Production_Rate_Paln_Id__c", "comment": null}, "Production_Rate_Plan_Charge_Discount_Id__c": {"type": "string", "index": 56, "name": "Production_Rate_Plan_Charge_Discount_Id__c", "comment": null}, "Production_Rate_Plan_Charge_Recurring_Id__c": {"type": "string", "index": 57, "name": "Production_Rate_Plan_Charge_Recurring_Id__c", "comment": null}, "Professional_Service_Product__c": {"type": "boolean", "index": 58, "name": "Professional_Service_Product__c", "comment": null}, "Quantity": {"type": "double", "index": 59, "name": "Quantity", "comment": null}, "Rate_Paln_Id__c": {"type": "string", "index": 60, "name": "Rate_Paln_Id__c", "comment": null}, "Rate_Plan_Charge_Discount_Id__c": {"type": "string", "index": 61, "name": "Rate_Plan_Charge_Discount_Id__c", "comment": null}, "Rate_Plan_Charge_Recurring_Id__c": {"type": "string", "index": 62, "name": "Rate_Plan_Charge_Recurring_Id__c", "comment": null}, "Seat_License_Product__c": {"type": "boolean", "index": 63, "name": "Seat_License_Product__c", "comment": null}, "Self_Service__c": {"type": "boolean", "index": 64, "name": "Self_Service__c", "comment": null}, "ServiceDate": {"type": "string", "index": 65, "name": "ServiceDate", "comment": null}, "SortOrder": {"type": "long", "index": 66, "name": "SortOrder", "comment": null}, "start_date__c": {"type": "string", "index": 67, "name": "start_date__c", "comment": null}, "Syndication_Product__c": {"type": "boolean", "index": 68, "name": "Syndication_Product__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 69, "name": "SystemModstamp", "comment": null}, "TotalPrice": {"type": "double", "index": 70, "name": "TotalPrice", "comment": null}, "Total_Discount_Amount__c": {"type": "double", "index": 71, "name": "Total_Discount_Amount__c", "comment": null}, "Total_List_Price__c": {"type": "double", "index": 72, "name": "Total_List_Price__c", "comment": null}, "Total_Price_No_Discount__c": {"type": "double", "index": 73, "name": "Total_Price_No_Discount__c", "comment": null}, "Total_Price_USD__c": {"type": "double", "index": 74, "name": "Total_Price_USD__c", "comment": null}, "Trial_Product__c": {"type": "boolean", "index": 75, "name": "Trial_Product__c", "comment": null}, "UPS_Portion_from_List_Price__c": {"type": "double", "index": 76, "name": "UPS_Portion_from_List_Price__c", "comment": null}, "UPS_Portion_from_Total_Price__c": {"type": "double", "index": 77, "name": "UPS_Portion_from_Total_Price__c", "comment": null}, "UnitPrice": {"type": "double", "index": 78, "name": "UnitPrice", "comment": null}, "Unit_Price_For_Free_Months_Scenario__c": {"type": "double", "index": 79, "name": "Unit_Price_For_Free_Months_Scenario__c", "comment": null}, "Whitelabel_Product__c": {"type": "boolean", "index": 80, "name": "Whitelabel_Product__c", "comment": null}, "Zuora_Charge_Model__c": {"type": "string", "index": 81, "name": "Zuora_Charge_Model__c", "comment": null}, "Zuora_applyToDiscount_Type__c": {"type": "string", "index": 82, "name": "Zuora_applyToDiscount_Type__c", "comment": null}, "eARR_USD__c": {"type": "double", "index": 83, "name": "eARR_USD__c", "comment": null}, "test__c": {"type": "string", "index": 84, "name": "test__c", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 85, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 86, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 87, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 88, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 89, "name": "_sdc_table_version", "comment": null}, "rn": {"type": "integer", "index": 90, "name": "rn", "comment": null}}, "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.yoda.analytics__salesforce.opportunitylineitem_full"}, "source.yoda.analytics__salesforce.partner_referral__c_full": {"metadata": {"type": "view", "schema": "salesforce", "name": "partner_referral__c_full", "database": null, "comment": null, "owner": "root"}, "columns": {"Account_Referrer_Type__c": {"type": "string", "index": 0, "name": "Account_Referrer_Type__c", "comment": null}, "Additional_Context__c": {"type": "string", "index": 1, "name": "Additional_Context__c", "comment": null}, "Agency_Involvement_Throughout_Deployment__c": {"type": "string", "index": 2, "name": "Agency_Involvement_Throughout_Deployment__c", "comment": null}, "Annual_Revenue_Referred_Lead_Account__c": {"type": "string", "index": 3, "name": "Annual_Revenue_Referred_Lead_Account__c", "comment": null}, "CS_Tags__c": {"type": "string", "index": 4, "name": "CS_Tags__c", "comment": null}, "CreatedById": {"type": "string", "index": 5, "name": "CreatedById", "comment": null}, "CreatedDate": {"type": "string", "index": 6, "name": "CreatedDate", "comment": null}, "CurrencyIsoCode": {"type": "string", "index": 7, "name": "CurrencyIsoCode", "comment": null}, "Date_Changed_From_Heads_Up__c": {"type": "string", "index": 8, "name": "Date_Changed_From_Heads_Up__c", "comment": null}, "Days_Until_Heads_Up_Change__c": {"type": "double", "index": 9, "name": "Days_Until_Heads_Up_Change__c", "comment": null}, "Id": {"type": "string", "index": 10, "name": "Id", "comment": null}, "Imported_Datafix__c": {"type": "boolean", "index": 11, "name": "Imported_Datafix__c", "comment": null}, "Include_Renewals__c": {"type": "string", "index": 12, "name": "Include_Renewals__c", "comment": null}, "IsDeleted": {"type": "boolean", "index": 13, "name": "IsDeleted", "comment": null}, "LastActivityDate": {"type": "string", "index": 14, "name": "LastActivityDate", "comment": null}, "LastModifiedById": {"type": "string", "index": 15, "name": "LastModifiedById", "comment": null}, "LastModifiedDate": {"type": "string", "index": 16, "name": "LastModifiedDate", "comment": null}, "LastReferencedDate": {"type": "string", "index": 17, "name": "LastReferencedDate", "comment": null}, "LastViewedDate": {"type": "string", "index": 18, "name": "LastViewedDate", "comment": null}, "Managed_Services_Agency__c": {"type": "string", "index": 19, "name": "Managed_Services_Agency__c", "comment": null}, "Monthly_Budget__c": {"type": "string", "index": 20, "name": "Monthly_Budget__c", "comment": null}, "My_PE__c": {"type": "boolean", "index": 21, "name": "My_PE__c", "comment": null}, "Name": {"type": "string", "index": 22, "name": "Name", "comment": null}, "Original_Referrer_Owner_New__c": {"type": "string", "index": 23, "name": "Original_Referrer_Owner_New__c", "comment": null}, "Original_Referrer_Owner__c": {"type": "string", "index": 24, "name": "Original_Referrer_Owner__c", "comment": null}, "Outbound_Referral_Status__c": {"type": "string", "index": 25, "name": "Outbound_Referral_Status__c", "comment": null}, "OwnerId": {"type": "string", "index": 26, "name": "OwnerId", "comment": null}, "PM_Role__c": {"type": "string", "index": 27, "name": "PM_Role__c", "comment": null}, "Partner_Account_Community_Acc_Help__c": {"type": "boolean", "index": 28, "name": "Partner_Account_Community_Acc_Help__c", "comment": null}, "Partner_Account__c": {"type": "string", "index": 29, "name": "Partner_Account__c", "comment": null}, "Partner_Contact__c": {"type": "string", "index": 30, "name": "Partner_Contact__c", "comment": null}, "Partner_Involvement_in_Onboarding__c": {"type": "string", "index": 31, "name": "Partner_Involvement_in_Onboarding__c", "comment": null}, "Partner_Manger__c": {"type": "string", "index": 32, "name": "Partner_Manger__c", "comment": null}, "Partner_Marketing_Campaign__c": {"type": "string", "index": 33, "name": "Partner_Marketing_Campaign__c", "comment": null}, "Partner_Owner__c": {"type": "string", "index": 34, "name": "Partner_Owner__c", "comment": null}, "Partner_Referral_ID_18_Digit__c": {"type": "string", "index": 35, "name": "Partner_Referral_ID_18_Digit__c", "comment": null}, "Partner_Upsell__c": {"type": "boolean", "index": 36, "name": "Partner_Upsell__c", "comment": null}, "Partner_name_text__c": {"type": "string", "index": 37, "name": "Partner_name_text__c", "comment": null}, "Phase_2_Date__c": {"type": "string", "index": 38, "name": "Phase_2_Date__c", "comment": null}, "Phase_2_Notes__c": {"type": "string", "index": 39, "name": "Phase_2_Notes__c", "comment": null}, "Phase_2_Product_Interest__c": {"type": "string", "index": 40, "name": "Phase_2_Product_Interest__c", "comment": null}, "Platforms_Considering__c": {"type": "string", "index": 41, "name": "Platforms_Considering__c", "comment": null}, "Product_Interest__c": {"type": "string", "index": 42, "name": "Product_Interest__c", "comment": null}, "Referral_Claim_Duration__c": {"type": "string", "index": 43, "name": "Referral_Claim_Duration__c", "comment": null}, "Referral_Claim_Period_End_Date__c": {"type": "string", "index": 44, "name": "Referral_Claim_Period_End_Date__c", "comment": null}, "Referral_Date__c": {"type": "string", "index": 45, "name": "Referral_Date__c", "comment": null}, "Referral_Notes__c": {"type": "string", "index": 46, "name": "Referral_Notes__c", "comment": null}, "Referral_Source__c": {"type": "string", "index": 47, "name": "Referral_Source__c", "comment": null}, "Referral_Sub_Type__c": {"type": "string", "index": 48, "name": "Referral_Sub_Type__c", "comment": null}, "Referral_Type__c": {"type": "string", "index": 49, "name": "Referral_Type__c", "comment": null}, "Referred_Account__c": {"type": "string", "index": 50, "name": "Referred_Account__c", "comment": null}, "Referred_By_Email_Partner_Referral_Form__c": {"type": "string", "index": 51, "name": "Referred_By_Email_Partner_Referral_Form__c", "comment": null}, "Referred_By_Partner_Referral_Form__c": {"type": "string", "index": 52, "name": "Referred_By_Partner_Referral_Form__c", "comment": null}, "Referred_Contact__c": {"type": "string", "index": 53, "name": "Referred_Contact__c", "comment": null}, "Referred_Lead_Account_Owner__c": {"type": "string", "index": 54, "name": "Referred_Lead_Account_Owner__c", "comment": null}, "Referred_Lead_Account_Status__c": {"type": "string", "index": 55, "name": "Referred_Lead_Account_Status__c", "comment": null}, "Referred_Lead_Account__c": {"type": "string", "index": 56, "name": "Referred_Lead_Account__c", "comment": null}, "Referred_Lead_Contact_Annual_Revenue__c": {"type": "string", "index": 57, "name": "Referred_Lead_Contact_Annual_Revenue__c", "comment": null}, "Referred_Lead_Contact_Monthly_Orders__c": {"type": "string", "index": 58, "name": "Referred_Lead_Contact_Monthly_Orders__c", "comment": null}, "Referred_Lead_Contact_Platform__c": {"type": "string", "index": 59, "name": "Referred_Lead_Contact_Platform__c", "comment": null}, "Referred_Lead__c": {"type": "string", "index": 60, "name": "Referred_Lead__c", "comment": null}, "Referred_lead_Account_Name_Text__c": {"type": "string", "index": 61, "name": "Referred_lead_Account_Name_Text__c", "comment": null}, "Referred_to_Growth__c": {"type": "boolean", "index": 62, "name": "Referred_to_Growth__c", "comment": null}, "Renewal_Rev_Share_Rate__c": {"type": "string", "index": 63, "name": "Renewal_Rev_Share_Rate__c", "comment": null}, "Rev_Share_Rate__c": {"type": "string", "index": 64, "name": "Rev_Share_Rate__c", "comment": null}, "Solution_Needed__c": {"type": "string", "index": 65, "name": "Solution_Needed__c", "comment": null}, "SystemModstamp": {"type": "string", "index": 66, "name": "SystemModstamp", "comment": null}, "Trigger_Notification__c": {"type": "boolean", "index": 67, "name": "Trigger_Notification__c", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 68, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 69, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 70, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 71, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 72, "name": "_sdc_table_version", "comment": null}, "rn": {"type": "integer", "index": 73, "name": "rn", "comment": null}}, "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.yoda.analytics__salesforce.partner_referral__c_full"}, "source.yoda.analytics__salesforce.task": {"metadata": {"type": "view", "schema": "salesforce", "name": "task", "database": null, "comment": null, "owner": "root"}, "columns": {"accountid": {"type": "string", "index": 0, "name": "accountid", "comment": null}, "activitydate": {"type": "string", "index": 1, "name": "activitydate", "comment": null}, "activity_id_18_digit__c": {"type": "string", "index": 2, "name": "activity_id_18_digit__c", "comment": null}, "agency_event_stage__c": {"type": "string", "index": 3, "name": "agency_event_stage__c", "comment": null}, "automate_lead_status_hidden_field__c": {"type": "boolean", "index": 4, "name": "automate_lead_status_hidden_field__c", "comment": null}, "booked_by_prospect_c__c": {"type": "boolean", "index": 5, "name": "booked_by_prospect_c__c", "comment": null}, "call_status__c": {"type": "string", "index": 6, "name": "call_status__c", "comment": null}, "completion__c": {"type": "string", "index": 7, "name": "completion__c", "comment": null}, "connected_count__c": {"type": "long", "index": 8, "name": "connected_count__c", "comment": null}, "createdbyid": {"type": "string", "index": 9, "name": "createdbyid", "comment": null}, "createddate": {"type": "string", "index": 10, "name": "createddate", "comment": null}, "created_by_role__c": {"type": "string", "index": 11, "name": "created_by_role__c", "comment": null}, "created_by_flow__c": {"type": "boolean", "index": 12, "name": "created_by_flow__c", "comment": null}, "created_by_me__c": {"type": "boolean", "index": 13, "name": "created_by_me__c", "comment": null}, "currencyisocode": {"type": "string", "index": 14, "name": "currencyisocode", "comment": null}, "demo_assignment__c": {"type": "string", "index": 15, "name": "demo_assignment__c", "comment": null}, "demo_cancellation_reason__c": {"type": "string", "index": 16, "name": "demo_cancellation_reason__c", "comment": null}, "demo_status__c": {"type": "string", "index": 17, "name": "demo_status__c", "comment": null}, "demo_approval_status__c": {"type": "string", "index": 18, "name": "demo_approval_status__c", "comment": null}, "description": {"type": "string", "index": 19, "name": "description", "comment": null}, "during_dst__c": {"type": "boolean", "index": 20, "name": "during_dst__c", "comment": null}, "gong__gong_selected_process__c": {"type": "boolean", "index": 21, "name": "gong__gong_selected_process__c", "comment": null}, "id": {"type": "string", "index": 22, "name": "id", "comment": null}, "isarchived": {"type": "boolean", "index": 23, "name": "isarchived", "comment": null}, "isclosed": {"type": "boolean", "index": 24, "name": "isclosed", "comment": null}, "isdeleted": {"type": "boolean", "index": 25, "name": "isdeleted", "comment": null}, "ishighpriority": {"type": "boolean", "index": 26, "name": "ishighpriority", "comment": null}, "isrecurrence": {"type": "boolean", "index": 27, "name": "isrecurrence", "comment": null}, "isreminderset": {"type": "boolean", "index": 28, "name": "isreminderset", "comment": null}, "isvisibleinselfservice": {"type": "boolean", "index": 29, "name": "isvisibleinselfservice", "comment": null}, "is_task_from_external_system__c": {"type": "boolean", "index": 30, "name": "is_task_from_external_system__c", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 31, "name": "lastmodifiedbyid", "comment": null}, "lastmodifieddate": {"type": "string", "index": 32, "name": "lastmodifieddate", "comment": null}, "last_modified_date_for_report__c": {"type": "string", "index": 33, "name": "last_modified_date_for_report__c", "comment": null}, "lead_lookup__c": {"type": "string", "index": 34, "name": "lead_lookup__c", "comment": null}, "live_transfer_sdr__c": {"type": "boolean", "index": 35, "name": "live_transfer_sdr__c", "comment": null}, "medium__c": {"type": "string", "index": 36, "name": "medium__c", "comment": null}, "on_opp__c": {"type": "boolean", "index": 37, "name": "on_opp__c", "comment": null}, "ownerid": {"type": "string", "index": 38, "name": "ownerid", "comment": null}, "phase__c": {"type": "string", "index": 39, "name": "phase__c", "comment": null}, "priority": {"type": "string", "index": 40, "name": "priority", "comment": null}, "products_shown__c": {"type": "string", "index": 41, "name": "products_shown__c", "comment": null}, "recordtypeid": {"type": "string", "index": 42, "name": "recordtypeid", "comment": null}, "reminderdatetime": {"type": "string", "index": 43, "name": "reminderdatetime", "comment": null}, "reschedule__c": {"type": "boolean", "index": 44, "name": "reschedule__c", "comment": null}, "sdr_role__c": {"type": "string", "index": 45, "name": "sdr_role__c", "comment": null}, "sdr_role_old__c": {"type": "string", "index": 46, "name": "sdr_role_old__c", "comment": null}, "sdr__c": {"type": "string", "index": 47, "name": "sdr__c", "comment": null}, "sales_demo_feedback__c": {"type": "string", "index": 48, "name": "sales_demo_feedback__c", "comment": null}, "selected_product_for_lead_conversion__c": {"type": "string", "index": 49, "name": "selected_product_for_lead_conversion__c", "comment": null}, "social_activity__c": {"type": "boolean", "index": 50, "name": "social_activity__c", "comment": null}, "status": {"type": "string", "index": 51, "name": "status", "comment": null}, "subject": {"type": "string", "index": 52, "name": "subject", "comment": null}, "systemmodstamp": {"type": "string", "index": 53, "name": "systemmodstamp", "comment": null}, "tasksubtype": {"type": "string", "index": 54, "name": "tasksubtype", "comment": null}, "task_completion_date__c": {"type": "string", "index": 55, "name": "task_completion_date__c", "comment": null}, "task_creation_time_bucket__c": {"type": "long", "index": 56, "name": "task_creation_time_bucket__c", "comment": null}, "task_creation_time__c": {"type": "string", "index": 57, "name": "task_creation_time__c", "comment": null}, "voicemail_count__c": {"type": "long", "index": 58, "name": "voicemail_count__c", "comment": null}, "whatid": {"type": "string", "index": 59, "name": "whatid", "comment": null}, "whoid": {"type": "string", "index": 60, "name": "whoid", "comment": null}, "yeswareiscampaign__c": {"type": "boolean", "index": 61, "name": "yeswareiscampaign__c", "comment": null}, "yeswareismailmerge__c": {"type": "boolean", "index": 62, "name": "yeswareismailmerge__c", "comment": null}, "yesware_activitytype__c": {"type": "string", "index": 63, "name": "yesware_activitytype__c", "comment": null}, "yesware_activity_time__c": {"type": "string", "index": 64, "name": "yesware_activity_time__c", "comment": null}, "yesware_bounce__c": {"type": "long", "index": 65, "name": "yesware_bounce__c", "comment": null}, "yesware_connectcall__c": {"type": "boolean", "index": 66, "name": "yesware_connectcall__c", "comment": null}, "yesware_day__c": {"type": "string", "index": 67, "name": "yesware_day__c", "comment": null}, "yesware_link_click__c": {"type": "long", "index": 68, "name": "yesware_link_click__c", "comment": null}, "yesware_meeting__c": {"type": "long", "index": 69, "name": "yesware_meeting__c", "comment": null}, "yesware_open__c": {"type": "long", "index": 70, "name": "yesware_open__c", "comment": null}, "yesware_reply__c": {"type": "long", "index": 71, "name": "yesware_reply__c", "comment": null}, "yesware_sent__c": {"type": "long", "index": 72, "name": "yesware_sent__c", "comment": null}, "yesware_subject__c": {"type": "string", "index": 73, "name": "yesware_subject__c", "comment": null}, "yesware_template__c": {"type": "boolean", "index": 74, "name": "yesware_template__c", "comment": null}, "yesware_totalcall__c": {"type": "long", "index": 75, "name": "yesware_totalcall__c", "comment": null}, "calldurationinseconds": {"type": "long", "index": 76, "name": "calldurationinseconds", "comment": null}, "calltype": {"type": "string", "index": 77, "name": "calltype", "comment": null}, "salesloftreplycount__c": {"type": "long", "index": 78, "name": "salesloftreplycount__c", "comment": null}, "salesloft_cadence_id__c": {"type": "string", "index": 79, "name": "salesloft_cadence_id__c", "comment": null}, "salesloft_cadence_name__c": {"type": "string", "index": 80, "name": "salesloft_cadence_name__c", "comment": null}, "salesloft_clicked_count__c": {"type": "long", "index": 81, "name": "salesloft_clicked_count__c", "comment": null}, "salesloft_email_template_id__c": {"type": "string", "index": 82, "name": "salesloft_email_template_id__c", "comment": null}, "salesloft_email_template_title__c": {"type": "string", "index": 83, "name": "salesloft_email_template_title__c", "comment": null}, "salesloft_step_day_new__c": {"type": "long", "index": 84, "name": "salesloft_step_day_new__c", "comment": null}, "salesloft_step_id__c": {"type": "string", "index": 85, "name": "salesloft_step_id__c", "comment": null}, "salesloft_step_name__c": {"type": "string", "index": 86, "name": "salesloft_step_name__c", "comment": null}, "salesloft_step_type__c": {"type": "string", "index": 87, "name": "salesloft_step_type__c", "comment": null}, "salesloft_viewed_count__c": {"type": "long", "index": 88, "name": "salesloft_viewed_count__c", "comment": null}, "unique_click_count__c": {"type": "long", "index": 89, "name": "unique_click_count__c", "comment": null}, "unique_reply_count__c": {"type": "long", "index": 90, "name": "unique_reply_count__c", "comment": null}, "unique_view_count__c": {"type": "long", "index": 91, "name": "unique_view_count__c", "comment": null}, "yeswarecampaignid__c": {"type": "long", "index": 92, "name": "yeswarecampaignid__c", "comment": null}, "yeswarecampaignname__c": {"type": "string", "index": 93, "name": "yeswarecampaignname__c", "comment": null}, "yeswarecampaigntotaltouches__c": {"type": "long", "index": 94, "name": "yeswarecampaigntotaltouches__c", "comment": null}, "yeswarecampaigntouchnumber__c": {"type": "long", "index": 95, "name": "yeswarecampaigntouchnumber__c", "comment": null}, "yeswarecampaigntouchtype__c": {"type": "string", "index": 96, "name": "yeswarecampaigntouchtype__c", "comment": null}, "yeswaretemplateids__c": {"type": "string", "index": 97, "name": "yeswaretemplateids__c", "comment": null}, "yeswaretemplatenames__c": {"type": "string", "index": 98, "name": "yeswaretemplatenames__c", "comment": null}, "yesware_emailtype__c": {"type": "string", "index": 99, "name": "yesware_emailtype__c", "comment": null}, "medium_type__c": {"type": "string", "index": 100, "name": "medium_type__c", "comment": null}, "discovery_call_account_name__c": {"type": "string", "index": 101, "name": "discovery_call_account_name__c", "comment": null}, "discovery_call_contact_name__c": {"type": "string", "index": 102, "name": "discovery_call_contact_name__c", "comment": null}, "type": {"type": "string", "index": 103, "name": "type", "comment": null}, "yeswaremailmergename__c": {"type": "string", "index": 104, "name": "yeswaremailmergename__c", "comment": null}, "considering_replatforming_in_12_months__c": {"type": "string", "index": 105, "name": "considering_replatforming_in_12_months__c", "comment": null}, "sms_topics_discussed__c": {"type": "string", "index": 106, "name": "sms_topics_discussed__c", "comment": null}, "sms_user_id__c": {"type": "string", "index": 107, "name": "sms_user_id__c", "comment": null}, "call_sentiment__c": {"type": "string", "index": 108, "name": "call_sentiment__c", "comment": null}, "call_disposition__c": {"type": "string", "index": 109, "name": "call_disposition__c", "comment": null}, "platform_considering__c": {"type": "string", "index": 110, "name": "platform_considering__c", "comment": null}, "re_platform_notes__c": {"type": "string", "index": 111, "name": "re_platform_notes__c", "comment": null}, "calldisposition": {"type": "string", "index": 112, "name": "calldisposition", "comment": null}, "callobject": {"type": "string", "index": 113, "name": "callobject", "comment": null}, "rcsfl__call_unique_id__c": {"type": "string", "index": 114, "name": "rcsfl__call_unique_id__c", "comment": null}, "rcsfl__rc_logging_type__c": {"type": "string", "index": 115, "name": "rcsfl__rc_logging_type__c", "comment": null}, "rcsfl__external_whoid__c": {"type": "string", "index": 116, "name": "rcsfl__external_whoid__c", "comment": null}, "rcsfl__call_recording__c": {"type": "string", "index": 117, "name": "rcsfl__call_recording__c", "comment": null}, "rcsfl__recording_information__c": {"type": "string", "index": 118, "name": "rcsfl__recording_information__c", "comment": null}, "recurrenceactivityid": {"type": "string", "index": 119, "name": "recurrenceactivityid", "comment": null}, "recurrencedayofmonth": {"type": "long", "index": 120, "name": "recurrencedayofmonth", "comment": null}, "recurrencedayofweekmask": {"type": "long", "index": 121, "name": "recurrencedayofweekmask", "comment": null}, "recurrenceenddateonly": {"type": "string", "index": 122, "name": "recurrenceenddateonly", "comment": null}, "recurrenceinterval": {"type": "long", "index": 123, "name": "recurrenceinterval", "comment": null}, "recurrencestartdateonly": {"type": "string", "index": 124, "name": "recurrencestartdateonly", "comment": null}, "recurrencetimezonesidkey": {"type": "string", "index": 125, "name": "recurrencetimezonesidkey", "comment": null}, "recurrencetype": {"type": "string", "index": 126, "name": "recurrencetype", "comment": null}, "completeddatetime": {"type": "string", "index": 127, "name": "completeddatetime", "comment": null}, "whatcount": {"type": "long", "index": 128, "name": "whatcount", "comment": null}, "whocount": {"type": "long", "index": 129, "name": "whocount", "comment": null}, "main_goal__c": {"type": "string", "index": 130, "name": "main_goal__c", "comment": null}, "canceled_cp__c": {"type": "boolean", "index": 131, "name": "canceled_cp__c", "comment": null}, "no_show_cp__c": {"type": "boolean", "index": 132, "name": "no_show_cp__c", "comment": null}, "salesloft1__call_duration_in_minutes__c": {"type": "double", "index": 133, "name": "salesloft1__call_duration_in_minutes__c", "comment": null}, "salesloft1__salesloft_type__c": {"type": "string", "index": 134, "name": "salesloft1__salesloft_type__c", "comment": null}, "presentation_link__c": {"type": "string", "index": 135, "name": "presentation_link__c", "comment": null}, "last_qbr__c": {"type": "boolean", "index": 136, "name": "last_qbr__c", "comment": null}, "labsactionplans__taskaptask__c": {"type": "string", "index": 137, "name": "labsactionplans__taskaptask__c", "comment": null}, "send_cp_slack_communication__c": {"type": "boolean", "index": 138, "name": "send_cp_slack_communication__c", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 139, "name": "upsolver_schema_version", "comment": null}, "d": {"type": "string", "index": 140, "name": "d", "comment": null}, "processing_time": {"type": "timestamp", "index": 141, "name": "processing_time", "comment": null}, "_sdc_batched_at": {"type": "string", "index": 142, "name": "_sdc_batched_at", "comment": null}, "_sdc_extracted_at": {"type": "string", "index": 143, "name": "_sdc_extracted_at", "comment": null}, "_sdc_received_at": {"type": "string", "index": 144, "name": "_sdc_received_at", "comment": null}, "_sdc_sequence": {"type": "long", "index": 145, "name": "_sdc_sequence", "comment": null}, "_sdc_table_version": {"type": "long", "index": 146, "name": "_sdc_table_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce.task"}, "source.yoda.platform__orders.fulfillments": {"metadata": {"type": "view", "schema": "orders", "name": "fulfillments", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "external_id": {"type": "string", "index": 4, "name": "external_id", "comment": null}, "order_id": {"type": "long", "index": 5, "name": "order_id", "comment": null}, "fulfillment_date": {"type": "timestamp", "index": 6, "name": "fulfillment_date", "comment": null}, "fulfillment_status_type_id": {"type": "long", "index": 7, "name": "fulfillment_status_type_id", "comment": null}, "shipment_status_type_id": {"type": "long", "index": 8, "name": "shipment_status_type_id", "comment": null}, "tracking_company": {"type": "string", "index": 9, "name": "tracking_company", "comment": null}, "tracking_url": {"type": "string", "index": 10, "name": "tracking_url", "comment": null}, "tracking_number": {"type": "string", "index": 11, "name": "tracking_number", "comment": null}, "created_at": {"type": "timestamp", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 13, "name": "updated_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.yoda.platform__orders.fulfillments"}, "source.yoda.platform__orders.order_lines": {"metadata": {"type": "view", "schema": "orders", "name": "order_lines", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "order_id": {"type": "long", "index": 4, "name": "order_id", "comment": null}, "product_id": {"type": "long", "index": 5, "name": "product_id", "comment": null}, "external_variant_id": {"type": "string", "index": 6, "name": "external_variant_id", "comment": null}, "cost": {"type": "double", "index": 7, "name": "cost", "comment": null}, "coupon_used": {"type": "long", "index": 8, "name": "coupon_used", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "quantity": {"type": "long", "index": 11, "name": "quantity", "comment": null}, "subtotal_price": {"type": "double", "index": 12, "name": "subtotal_price", "comment": null}, "custom_properties": {"type": "string", "index": 13, "name": "custom_properties", "comment": null}, "coupon_code": {"type": "string", "index": 14, "name": "coupon_code", "comment": null}, "external_id": {"type": "string", "index": 15, "name": "external_id", "comment": null}, "variant_id": {"type": "long", "index": 16, "name": "variant_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__orders.order_lines"}, "source.yoda.platform__orders.orders": {"metadata": {"type": "view", "schema": "orders", "name": "orders", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "app_key": {"type": "string", "index": 4, "name": "app_key", "comment": null}, "order_date": {"type": "timestamp", "index": 5, "name": "order_date", "comment": null}, "external_order_id": {"type": "string", "index": 6, "name": "external_order_id", "comment": null}, "email": {"type": "string", "index": 7, "name": "email", "comment": null}, "platform_type": {"type": "string", "index": 8, "name": "platform_type", "comment": null}, "external_order_display_name": {"type": "string", "index": 9, "name": "external_order_display_name", "comment": null}, "order_update_date": {"type": "timestamp", "index": 10, "name": "order_update_date", "comment": null}, "order_sum_order_currency": {"type": "double", "index": 11, "name": "order_sum_order_currency", "comment": null}, "order_currency_iso": {"type": "string", "index": 12, "name": "order_currency_iso", "comment": null}, "order_sum_account_currency": {"type": "double", "index": 13, "name": "order_sum_account_currency", "comment": null}, "account_currency_iso": {"type": "string", "index": 14, "name": "account_currency_iso", "comment": null}, "created_at": {"type": "timestamp", "index": 15, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 16, "name": "updated_at", "comment": null}, "billing_address_id": {"type": "long", "index": 17, "name": "billing_address_id", "comment": null}, "shipping_address_id": {"type": "long", "index": 18, "name": "shipping_address_id", "comment": null}, "external_customer_id": {"type": "string", "index": 19, "name": "external_customer_id", "comment": null}, "first_name": {"type": "string", "index": 20, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 21, "name": "last_name", "comment": null}, "phone_number": {"type": "string", "index": 22, "name": "phone_number", "comment": null}, "total_price": {"type": "double", "index": 23, "name": "total_price", "comment": null}, "landing_site_url": {"type": "string", "index": 24, "name": "landing_site_url", "comment": null}, "checkout_token": {"type": "string", "index": 25, "name": "checkout_token", "comment": null}, "payment_method": {"type": "string", "index": 26, "name": "payment_method", "comment": null}, "payment_status_id": {"type": "long", "index": 27, "name": "payment_status_id", "comment": null}, "buyer_accepts_sms_marketing": {"type": "long", "index": 28, "name": "buyer_accepts_sms_marketing", "comment": null}, "buyer_accepts_email_marketing": {"type": "long", "index": 29, "name": "buyer_accepts_email_marketing", "comment": null}, "custom_properties": {"type": "string", "index": 30, "name": "custom_properties", "comment": null}, "source": {"type": "string", "index": 31, "name": "source", "comment": null}, "buyer_accepts_marketing": {"type": "long", "index": 32, "name": "buyer_accepts_marketing", "comment": null}, "external_id": {"type": "string", "index": 33, "name": "external_id", "comment": null}, "tags": {"type": "string", "index": 34, "name": "tags", "comment": null}, "app_id": {"type": "long", "index": 35, "name": "app_id", "comment": null}, "presentment_currency_iso": {"type": "string", "index": 36, "name": "presentment_currency_iso", "comment": null}, "total_discount_currency_amount": {"type": "double", "index": 37, "name": "total_discount_currency_amount", "comment": null}, "total_discount_presentment_currency_amount": {"type": "double", "index": 38, "name": "total_discount_presentment_currency_amount", "comment": null}, "total_shipping_currency_amount": {"type": "double", "index": 39, "name": "total_shipping_currency_amount", "comment": null}, "total_shipping_presentment_currency_amount": {"type": "double", "index": 40, "name": "total_shipping_presentment_currency_amount", "comment": null}, "total_tax_currency_amount": {"type": "double", "index": 41, "name": "total_tax_currency_amount", "comment": null}, "total_tax_presentment_currency_amount": {"type": "double", "index": 42, "name": "total_tax_presentment_currency_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__orders.orders"}, "source.yoda.platform__billing.billing_audits": {"metadata": {"type": "view", "schema": "billing", "name": "billing_audits", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "organization_key": {"type": "string", "index": 4, "name": "organization_key", "comment": null}, "app_key": {"type": "string", "index": 5, "name": "app_key", "comment": null}, "category_name": {"type": "string", "index": 6, "name": "category_name", "comment": null}, "action": {"type": "string", "index": 7, "name": "action", "comment": null}, "subscription_provider_id": {"type": "long", "index": 8, "name": "subscription_provider_id", "comment": null}, "date": {"type": "timestamp", "index": 9, "name": "date", "comment": null}, "source": {"type": "string", "index": 10, "name": "source", "comment": null}, "metadata": {"type": "string", "index": 11, "name": "metadata", "comment": null}}, "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.yoda.platform__billing.billing_audits"}, "source.yoda.platform__billing.package_provider_settings": {"metadata": {"type": "view", "schema": "billing", "name": "package_provider_settings", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "package_name": {"type": "string", "index": 4, "name": "package_name", "comment": null}, "provider_type_id": {"type": "long", "index": 5, "name": "provider_type_id", "comment": null}, "setting_type": {"type": "string", "index": 6, "name": "setting_type", "comment": null}, "value": {"type": "string", "index": 7, "name": "value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__billing.package_provider_settings"}, "source.yoda.platform__billing.package_usages_settings": {"metadata": {"type": "view", "schema": "billing", "name": "package_usages_settings", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "provider_type_id": {"type": "long", "index": 4, "name": "provider_type_id", "comment": null}, "package_name": {"type": "string", "index": 5, "name": "package_name", "comment": null}, "metric_name": {"type": "string", "index": 6, "name": "metric_name", "comment": null}, "per_unit_price": {"type": "double", "index": 7, "name": "per_unit_price", "comment": null}, "limit": {"type": "long", "index": 8, "name": "limit", "comment": null}, "created_at": {"type": "timestamp", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 10, "name": "updated_at", "comment": null}, "description": {"type": "string", "index": 11, "name": "description", "comment": null}, "term_text": {"type": "string", "index": 12, "name": "term_text", "comment": null}}, "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.yoda.platform__billing.package_usages_settings"}, "source.yoda.platform__billing.plan_settings": {"metadata": {"type": "view", "schema": "billing", "name": "plan_settings", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "plan_name": {"type": "string", "index": 4, "name": "plan_name", "comment": null}, "setting_type": {"type": "string", "index": 5, "name": "setting_type", "comment": null}, "value": {"type": "string", "index": 6, "name": "value", "comment": null}, "category_name": {"type": "string", "index": 7, "name": "category_name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__billing.plan_settings"}, "source.yoda.platform__billing.provider_types": {"metadata": {"type": "view", "schema": "billing", "name": "provider_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__billing.provider_types"}, "source.yoda.analytics__billing.shopify_billing_events": {"metadata": {"type": "view", "schema": "billing", "name": "shopify_billing_events", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "chargeid": {"type": "long", "index": 1, "name": "chargeid", "comment": null}, "occurredat": {"type": "timestamp", "index": 2, "name": "occurredat", "comment": null}, "eventtype": {"type": "string", "index": 3, "name": "eventtype", "comment": null}, "processing_time": {"type": "timestamp", "index": 4, "name": "processing_time", "comment": null}, "amount": {"type": "double", "index": 5, "name": "amount", "comment": null}, "appid": {"type": "long", "index": 6, "name": "appid", "comment": null}, "billedon": {"type": "timestamp", "index": 7, "name": "billedon", "comment": null}, "chargename": {"type": "string", "index": 8, "name": "chargename", "comment": null}, "platformtypename": {"type": "string", "index": 9, "name": "platformtypename", "comment": null}, "shopid": {"type": "long", "index": 10, "name": "shopid", "comment": null}, "shopname": {"type": "string", "index": 11, "name": "shopname", "comment": null}, "shopifydomain": {"type": "string", "index": 12, "name": "shopifydomain", "comment": null}}, "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.yoda.analytics__billing.shopify_billing_events"}, "source.yoda.platform__billing.subscription_cycle_usages": {"metadata": {"type": "view", "schema": "billing", "name": "subscription_cycle_usages", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "subscription_provider_id": {"type": "long", "index": 4, "name": "subscription_provider_id", "comment": null}, "billing_cycle_date": {"type": "timestamp", "index": 5, "name": "billing_cycle_date", "comment": null}, "usages_count": {"type": "long", "index": 6, "name": "usages_count", "comment": null}, "overages_cap": {"type": "long", "index": 7, "name": "overages_cap", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "package_usages_setting_id": {"type": "long", "index": 10, "name": "package_usages_setting_id", "comment": null}, "closed_at": {"type": "timestamp", "index": 11, "name": "closed_at", "comment": null}, "carried_paid_usages": {"type": "long", "index": 12, "name": "carried_paid_usages", "comment": null}}, "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.yoda.platform__billing.subscription_cycle_usages"}, "source.yoda.platform__billing.subscription_pending_usages": {"metadata": {"type": "view", "schema": "billing", "name": "subscription_pending_usages", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "usages_count": {"type": "long", "index": 4, "name": "usages_count", "comment": null}, "subscription_provider_id": {"type": "long", "index": 5, "name": "subscription_provider_id", "comment": null}, "package_usages_setting_id": {"type": "long", "index": 6, "name": "package_usages_setting_id", "comment": null}, "process_started_at": {"type": "timestamp", "index": 7, "name": "process_started_at", "comment": null}, "process_completed_at": {"type": "timestamp", "index": 8, "name": "process_completed_at", "comment": null}, "provider_charge_id": {"type": "string", "index": 9, "name": "provider_charge_id", "comment": null}, "created_at": {"type": "timestamp", "index": 10, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_at", "comment": null}, "uuid": {"type": "string", "index": 12, "name": "uuid", "comment": null}, "free_usages": {"type": "double", "index": 13, "name": "free_usages", "comment": null}, "paid_usages": {"type": "double", "index": 14, "name": "paid_usages", "comment": null}, "exceeded_usages": {"type": "double", "index": 15, "name": "exceeded_usages", "comment": null}, "paid_amount": {"type": "double", "index": 16, "name": "paid_amount", "comment": null}, "store_id": {"type": "string", "index": 17, "name": "store_id", "comment": null}, "usages_errors": {"type": "string", "index": 18, "name": "usages_errors", "comment": null}}, "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.yoda.platform__billing.subscription_pending_usages"}, "source.yoda.platform__billing.subscription_providers": {"metadata": {"type": "view", "schema": "billing", "name": "subscription_providers", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "organization_key": {"type": "string", "index": 4, "name": "organization_key", "comment": null}, "provider_type_id": {"type": "long", "index": 5, "name": "provider_type_id", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_at", "comment": null}, "category_name": {"type": "string", "index": 8, "name": "category_name", "comment": null}, "subscription_status_id": {"type": "long", "index": 9, "name": "subscription_status_id", "comment": null}, "external_subscription_metadata": {"type": "string", "index": 10, "name": "external_subscription_metadata", "comment": null}, "deleted_at": {"type": "timestamp", "index": 11, "name": "deleted_at", "comment": null}, "app_key": {"type": "string", "index": 12, "name": "app_key", "comment": null}}, "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.yoda.platform__billing.subscription_providers"}, "source.yoda.platform__billing.subscription_statuses": {"metadata": {"type": "view", "schema": "billing", "name": "subscription_statuses", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "status": {"type": "string", "index": 4, "name": "status", "comment": null}}, "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.yoda.platform__billing.subscription_statuses"}, "source.yoda.platform__billing.subscription_usages_settings": {"metadata": {"type": "view", "schema": "billing", "name": "subscription_usages_settings", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "subscription_provider_id": {"type": "long", "index": 4, "name": "subscription_provider_id", "comment": null}, "overages_cap": {"type": "long", "index": 5, "name": "overages_cap", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_at", "comment": null}, "metric_name": {"type": "string", "index": 8, "name": "metric_name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__billing.subscription_usages_settings"}, "source.yoda.platform__billing.usages": {"metadata": {"type": "view", "schema": "billing", "name": "usages", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "organization_key": {"type": "string", "index": 4, "name": "organization_key", "comment": null}, "store_id": {"type": "string", "index": 5, "name": "store_id", "comment": null}, "category_name": {"type": "string", "index": 6, "name": "category_name", "comment": null}, "metric_name": {"type": "string", "index": 7, "name": "metric_name", "comment": null}, "package_name": {"type": "string", "index": 8, "name": "package_name", "comment": null}, "units": {"type": "long", "index": 9, "name": "units", "comment": null}, "usage_external_id": {"type": "string", "index": 10, "name": "usage_external_id", "comment": null}, "backfill": {"type": "long", "index": 11, "name": "backfill", "comment": null}, "subscription_pending_usage_id": {"type": "long", "index": 12, "name": "subscription_pending_usage_id", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 14, "name": "updated_at", "comment": null}, "description": {"type": "string", "index": 15, "name": "description", "comment": null}}, "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.yoda.platform__billing.usages"}, "source.yoda.platform__billing.usages_history": {"metadata": {"type": "view", "schema": "billing", "name": "usages_history", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "organization_key": {"type": "string", "index": 4, "name": "organization_key", "comment": null}, "store_id": {"type": "string", "index": 5, "name": "store_id", "comment": null}, "category_name": {"type": "string", "index": 6, "name": "category_name", "comment": null}, "metric_name": {"type": "string", "index": 7, "name": "metric_name", "comment": null}, "package_name": {"type": "string", "index": 8, "name": "package_name", "comment": null}, "units": {"type": "long", "index": 9, "name": "units", "comment": null}, "usage_external_id": {"type": "string", "index": 10, "name": "usage_external_id", "comment": null}, "backfill": {"type": "long", "index": 11, "name": "backfill", "comment": null}, "subscription_pending_usage_id": {"type": "long", "index": 12, "name": "subscription_pending_usage_id", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 14, "name": "updated_at", "comment": null}, "description": {"type": "string", "index": 15, "name": "description", "comment": null}, "is_deleted": {"type": "boolean", "index": 16, "name": "is_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__billing.usages_history"}, "source.yoda.platform__billing.usages_tiers_settings": {"metadata": {"type": "view", "schema": "billing", "name": "usages_tiers_settings", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "package_usages_setting_id": {"type": "long", "index": 4, "name": "package_usages_setting_id", "comment": null}, "min_limit": {"type": "long", "index": 5, "name": "min_limit", "comment": null}, "max_limit": {"type": "long", "index": 6, "name": "max_limit", "comment": null}, "per_unit_price": {"type": "double", "index": 7, "name": "per_unit_price", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_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.yoda.platform__billing.usages_tiers_settings"}, "source.yoda.analytics__email_analytics.emails": {"metadata": {"type": "view", "schema": "email_analytics", "name": "emails", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "app_key": {"type": "string", "index": 2, "name": "app_key", "comment": null}, "arrived_early_timestamp": {"type": "timestamp", "index": 3, "name": "arrived_early_timestamp", "comment": null}, "batch_id": {"type": "string", "index": 4, "name": "batch_id", "comment": null}, "batch_subject": {"type": "string", "index": 5, "name": "batch_subject", "comment": null}, "clicked_through_timestamp": {"type": "timestamp", "index": 6, "name": "clicked_through_timestamp", "comment": null}, "content_creation_timestamp": {"type": "timestamp", "index": 7, "name": "content_creation_timestamp", "comment": null}, "coupon_code": {"type": "string", "index": 8, "name": "coupon_code", "comment": null}, "email_address": {"type": "string", "index": 9, "name": "email_address", "comment": null}, "email_id": {"type": "string", "index": 10, "name": "email_id", "comment": null}, "email_sent_date": {"type": "timestamp", "index": 11, "name": "email_sent_date", "comment": null}, "email_sent_timestamp": {"type": "timestamp", "index": 12, "name": "email_sent_timestamp", "comment": null}, "email_type": {"type": "string", "index": 13, "name": "email_type", "comment": null}, "failed_timestamp": {"type": "timestamp", "index": 14, "name": "failed_timestamp", "comment": null}, "id": {"type": "long", "index": 15, "name": "id", "comment": null}, "invalid_address_timestamp": {"type": "timestamp", "index": 16, "name": "invalid_address_timestamp", "comment": null}, "marked_spam_timestamp": {"type": "timestamp", "index": 17, "name": "marked_spam_timestamp", "comment": null}, "opened_timestamp": {"type": "timestamp", "index": 18, "name": "opened_timestamp", "comment": null}, "order_id": {"type": "string", "index": 19, "name": "order_id", "comment": null}, "order_timestamp": {"type": "timestamp", "index": 20, "name": "order_timestamp", "comment": null}, "platform": {"type": "string", "index": 21, "name": "platform", "comment": null}, "product_id": {"type": "string", "index": 22, "name": "product_id", "comment": null}, "reminder_num": {"type": "long", "index": 23, "name": "reminder_num", "comment": null}, "review_form": {"type": "string", "index": 24, "name": "review_form", "comment": null}, "review_type": {"type": "string", "index": 25, "name": "review_type", "comment": null}, "sku": {"type": "string", "index": 26, "name": "sku", "comment": null}, "unsubscribed_timestamp": {"type": "timestamp", "index": 27, "name": "unsubscribed_timestamp", "comment": null}, "is_deleted": {"type": "boolean", "index": 28, "name": "is_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__email_analytics.emails"}, "source.yoda.loyalty__chainperks.campaign_activation_histories": {"metadata": {"type": "view", "schema": "chainperks", "name": "campaign_activation_histories", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 5, "name": "updated_at", "comment": null}, "campaign_id": {"type": "long", "index": 6, "name": "campaign_id", "comment": null}, "active": {"type": "boolean", "index": 7, "name": "active", "comment": null}}, "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.yoda.loyalty__chainperks.campaign_activation_histories"}, "source.yoda.loyalty__chainperks.campaigns": {"metadata": {"type": "view", "schema": "chainperks", "name": "campaigns", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "merchant_id": {"type": "long", "index": 4, "name": "merchant_id", "comment": null}, "type": {"type": "string", "index": 5, "name": "type", "comment": null}, "reward_points": {"type": "long", "index": 6, "name": "reward_points", "comment": null}, "goal_spend_cents": {"type": "long", "index": 7, "name": "goal_spend_cents", "comment": null}, "min_spend_cents": {"type": "long", "index": 8, "name": "min_spend_cents", "comment": null}, "currency": {"type": "string", "index": 9, "name": "currency", "comment": null}, "show_in_rewards_popup": {"type": "long", "index": 10, "name": "show_in_rewards_popup", "comment": null}, "goal_purchases": {"type": "long", "index": 11, "name": "goal_purchases", "comment": null}, "min_purchases": {"type": "long", "index": 12, "name": "min_purchases", "comment": null}, "must_be_customer": {"type": "boolean", "index": 13, "name": "must_be_customer", "comment": null}, "active": {"type": "boolean", "index": 14, "name": "active", "comment": null}, "expired": {"type": "boolean", "index": 15, "name": "expired", "comment": null}, "days_since_last_purchase": {"type": "long", "index": 16, "name": "days_since_last_purchase", "comment": null}, "activated_at": {"type": "timestamp", "index": 17, "name": "activated_at", "comment": null}, "expired_at": {"type": "timestamp", "index": 18, "name": "expired_at", "comment": null}, "expires_at": {"type": "timestamp", "index": 19, "name": "expires_at", "comment": null}, "perks_expire_after_hours": {"type": "long", "index": 20, "name": "perks_expire_after_hours", "comment": null}, "headline": {"type": "string", "index": 21, "name": "headline", "comment": null}, "details": {"type": "string", "index": 22, "name": "details", "comment": null}, "expiration_job_id": {"type": "string", "index": 23, "name": "expiration_job_id", "comment": null}, "created_at": {"type": "timestamp", "index": 24, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 25, "name": "updated_at", "comment": null}, "username": {"type": "string", "index": 26, "name": "username", "comment": null}, "share_text": {"type": "string", "index": 27, "name": "share_text", "comment": null}, "entity_id": {"type": "string", "index": 28, "name": "entity_id", "comment": null}, "hashtags": {"type": "string", "index": 29, "name": "hashtags", "comment": null}, "url": {"type": "string", "index": 30, "name": "url", "comment": null}, "question": {"type": "string", "index": 31, "name": "question", "comment": null}, "answer": {"type": "string", "index": 32, "name": "answer", "comment": null}, "title": {"type": "string", "index": 33, "name": "title", "comment": null}, "archived": {"type": "boolean", "index": 34, "name": "archived", "comment": null}, "minutes_between_actions": {"type": "long", "index": 35, "name": "minutes_between_actions", "comment": null}, "max_perks_total": {"type": "long", "index": 36, "name": "max_perks_total", "comment": null}, "max_spend_cents": {"type": "long", "index": 37, "name": "max_spend_cents", "comment": null}, "min_actions_required": {"type": "long", "index": 38, "name": "min_actions_required", "comment": null}, "action_name": {"type": "string", "index": 39, "name": "action_name", "comment": null}, "action_requirement": {"type": "string", "index": 40, "name": "action_requirement", "comment": null}, "action_description": {"type": "string", "index": 41, "name": "action_description", "comment": null}, "max_perks_per_user": {"type": "long", "index": 42, "name": "max_perks_per_user", "comment": null}, "referrer_target_campaign_id": {"type": "long", "index": 43, "name": "referrer_target_campaign_id", "comment": null}, "referred_user_target_campaign_id": {"type": "long", "index": 44, "name": "referred_user_target_campaign_id", "comment": null}, "referral_reward_points": {"type": "long", "index": 45, "name": "referral_reward_points", "comment": null}, "referral_host": {"type": "string", "index": 46, "name": "referral_host", "comment": null}, "hidden": {"type": "boolean", "index": 47, "name": "hidden", "comment": null}, "default_share_text": {"type": "string", "index": 48, "name": "default_share_text", "comment": null}, "redemption_option_id": {"type": "long", "index": 49, "name": "redemption_option_id", "comment": null}, "referral_redemption_option_id": {"type": "long", "index": 50, "name": "referral_redemption_option_id", "comment": null}, "minutes_between_perks": {"type": "long", "index": 51, "name": "minutes_between_perks", "comment": null}, "default_email_subject": {"type": "string", "index": 52, "name": "default_email_subject", "comment": null}, "default_email_body": {"type": "string", "index": 53, "name": "default_email_body", "comment": null}, "display_order": {"type": "long", "index": 54, "name": "display_order", "comment": null}, "referral_query_params": {"type": "string", "index": 55, "name": "referral_query_params", "comment": null}, "referral_redirect_url": {"type": "string", "index": 56, "name": "referral_redirect_url", "comment": null}, "requires_referral_code": {"type": "long", "index": 57, "name": "requires_referral_code", "comment": null}, "reward_text": {"type": "string", "index": 58, "name": "reward_text", "comment": null}, "icon": {"type": "string", "index": 59, "name": "icon", "comment": null}, "cta_text": {"type": "string", "index": 60, "name": "cta_text", "comment": null}, "default_share_text_header": {"type": "string", "index": 61, "name": "default_share_text_header", "comment": null}, "reward_type": {"type": "string", "index": 62, "name": "reward_type", "comment": null}, "reward_product_id_map": {"type": "string", "index": 63, "name": "reward_product_id_map", "comment": null}, "reward_percentage": {"type": "long", "index": 64, "name": "reward_percentage", "comment": null}, "use_oauth": {"type": "long", "index": 65, "name": "use_oauth", "comment": null}, "days_until_next_action": {"type": "string", "index": 66, "name": "days_until_next_action", "comment": null}, "hours_until_next_action": {"type": "string", "index": 67, "name": "hours_until_next_action", "comment": null}, "completed_action": {"type": "string", "index": 68, "name": "completed_action", "comment": null}, "already_completed": {"type": "string", "index": 69, "name": "already_completed", "comment": null}, "delay_reward_days": {"type": "long", "index": 70, "name": "delay_reward_days", "comment": null}, "delay_reward": {"type": "long", "index": 71, "name": "delay_reward", "comment": null}, "create_perk_script": {"type": "string", "index": 72, "name": "create_perk_script", "comment": null}, "apply_action_script": {"type": "string", "index": 73, "name": "apply_action_script", "comment": null}, "apply_order_script": {"type": "string", "index": 74, "name": "apply_order_script", "comment": null}, "require_product_by_ids": {"type": "string", "index": 75, "name": "require_product_by_ids", "comment": null}, "require_product_by_tags": {"type": "string", "index": 76, "name": "require_product_by_tags", "comment": null}, "require_product_by_types": {"type": "string", "index": 77, "name": "require_product_by_types", "comment": null}, "referral_link_expiration_hours": {"type": "long", "index": 78, "name": "referral_link_expiration_hours", "comment": null}, "referral_link_expiration_reminder_hours": {"type": "long", "index": 79, "name": "referral_link_expiration_reminder_hours", "comment": null}, "referral_link_expiration_final_reminder_hours": {"type": "long", "index": 80, "name": "referral_link_expiration_final_reminder_hours", "comment": null}, "api_key": {"type": "string", "index": 81, "name": "api_key", "comment": null}, "api_secret": {"type": "string", "index": 82, "name": "api_secret", "comment": null}, "action_filter": {"type": "string", "index": 83, "name": "action_filter", "comment": null}, "image_id": {"type": "long", "index": 84, "name": "image_id", "comment": null}, "share_header": {"type": "string", "index": 85, "name": "share_header", "comment": null}, "extra_copy1": {"type": "string", "index": 86, "name": "extra_copy1", "comment": null}, "extra_copy2": {"type": "string", "index": 87, "name": "extra_copy2", "comment": null}, "extra_copy3": {"type": "string", "index": 88, "name": "extra_copy3", "comment": null}, "product_map_strategy": {"type": "string", "index": 89, "name": "product_map_strategy", "comment": null}, "exclude_customer_tags": {"type": "boolean", "index": 90, "name": "exclude_customer_tags", "comment": null}, "customer_tags": {"type": "string", "index": 91, "name": "customer_tags", "comment": null}, "share_image_id": {"type": "long", "index": 92, "name": "share_image_id", "comment": null}, "admin_only": {"type": "boolean", "index": 93, "name": "admin_only", "comment": null}, "background_image_id": {"type": "long", "index": 94, "name": "background_image_id", "comment": null}, "required_order_count": {"type": "long", "index": 95, "name": "required_order_count", "comment": null}, "required_order_comparison": {"type": "string", "index": 96, "name": "required_order_comparison", "comment": null}, "overflow_enabled": {"type": "long", "index": 97, "name": "overflow_enabled", "comment": null}, "campaign_tiers": {"type": "string", "index": 98, "name": "campaign_tiers", "comment": null}, "facebook_description": {"type": "string", "index": 99, "name": "facebook_description", "comment": null}, "vip_tier_id": {"type": "long", "index": 100, "name": "vip_tier_id", "comment": null}, "campaign_codes_count": {"type": "long", "index": 101, "name": "campaign_codes_count", "comment": null}, "product_restrictions_reward": {"type": "string", "index": 102, "name": "product_restrictions_reward", "comment": null}, "exclude_order_tags": {"type": "long", "index": 103, "name": "exclude_order_tags", "comment": null}, "order_tags": {"type": "string", "index": 104, "name": "order_tags", "comment": null}, "ask_year": {"type": "long", "index": 105, "name": "ask_year", "comment": null}, "default_sms_text": {"type": "string", "index": 106, "name": "default_sms_text", "comment": null}, "last_scanned_review_id": {"type": "string", "index": 107, "name": "last_scanned_review_id", "comment": null}, "reward_media_filter": {"type": "long", "index": 108, "name": "reward_media_filter", "comment": null}, "receipts_notification_email": {"type": "string", "index": 109, "name": "receipts_notification_email", "comment": null}, "show_in_admin": {"type": "boolean", "index": 110, "name": "show_in_admin", "comment": null}, "receipts_escalation_email": {"type": "string", "index": 111, "name": "receipts_escalation_email", "comment": null}, "use_account_creation_date": {"type": "boolean", "index": 112, "name": "use_account_creation_date", "comment": null}, "referral_auto_apply_coupon": {"type": "boolean", "index": 113, "name": "referral_auto_apply_coupon", "comment": null}, "exclude_product_by_types": {"type": "string", "index": 114, "name": "exclude_product_by_types", "comment": null}, "custom_url": {"type": "string", "index": 115, "name": "custom_url", "comment": null}, "use_custom_url": {"type": "boolean", "index": 116, "name": "use_custom_url", "comment": null}, "include_audience_ids": {"type": "string", "index": 117, "name": "include_audience_ids", "comment": null}, "exclude_audience_ids": {"type": "string", "index": 118, "name": "exclude_audience_ids", "comment": null}, "admin_display_name": {"type": "string", "index": 119, "name": "admin_display_name", "comment": null}, "referral_verification_method": {"type": "string", "index": 120, "name": "referral_verification_method", "comment": null}}, "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.yoda.loyalty__chainperks.campaigns"}, "source.yoda.loyalty__chainperks.customer_birthdays": {"metadata": {"type": "view", "schema": "chainperks", "name": "customer_birthdays", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "month": {"type": "long", "index": 4, "name": "month", "comment": null}, "day": {"type": "long", "index": 5, "name": "day", "comment": null}, "year": {"type": "long", "index": 6, "name": "year", "comment": null}, "last_sent": {"type": "timestamp", "index": 7, "name": "last_sent", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "group_customer_id": {"type": "long", "index": 10, "name": "group_customer_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.customer_birthdays"}, "source.yoda.loyalty__chainperks.customers": {"metadata": {"type": "view", "schema": "chainperks", "name": "customers", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"type": "string", "index": 2, "name": "data_primary_key_524fd5cd8814c3069c72dac0f300db96", "comment": null}, "last_purchase_at": {"type": "timestamp", "index": 3, "name": "last_purchase_at", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 5, "name": "updated_at", "comment": null}, "accepts_marketing": {"type": "long", "index": 6, "name": "accepts_marketing", "comment": null}, "currency": {"type": "string", "index": 7, "name": "currency", "comment": null}, "first_name": {"type": "string", "index": 8, "name": "first_name", "comment": null}, "group_customer_id": {"type": "long", "index": 9, "name": "group_customer_id", "comment": null}, "has_provided_tax_details": {"type": "long", "index": 10, "name": "has_provided_tax_details", "comment": null}, "identity_id": {"type": "long", "index": 11, "name": "identity_id", "comment": null}, "id": {"type": "long", "index": 12, "name": "id", "comment": null}, "is_locked": {"type": "long", "index": 13, "name": "is_locked", "comment": null}, "is_member": {"type": "long", "index": 14, "name": "is_member", "comment": null}, "last_name": {"type": "string", "index": 15, "name": "last_name", "comment": null}, "merchant_id": {"type": "long", "index": 16, "name": "merchant_id", "comment": null}, "name": {"type": "string", "index": 17, "name": "name", "comment": null}, "perks_redeemed": {"type": "long", "index": 18, "name": "perks_redeemed", "comment": null}, "phone_number": {"type": "string", "index": 19, "name": "phone_number", "comment": null}, "processor_id": {"type": "long", "index": 20, "name": "processor_id", "comment": null}, "referral_code_id": {"type": "long", "index": 21, "name": "referral_code_id", "comment": null}, "referred_by_customer_id": {"type": "long", "index": 22, "name": "referred_by_customer_id", "comment": null}, "source": {"type": "string", "index": 23, "name": "source", "comment": null}, "store_account_id": {"type": "string", "index": 24, "name": "store_account_id", "comment": null}, "tags": {"type": "string", "index": 25, "name": "tags", "comment": null}, "total_purchases": {"type": "long", "index": 26, "name": "total_purchases", "comment": null}, "total_spend_cents": {"type": "long", "index": 27, "name": "total_spend_cents", "comment": null}, "user_id": {"type": "long", "index": 28, "name": "user_id", "comment": null}, "pos_account_id": {"type": "string", "index": 29, "name": "pos_account_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.customers"}, "source.yoda.loyalty__chainperks.customers_opt_in": {"metadata": {"type": "view", "schema": "chainperks", "name": "customers_opt_in", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"type": "string", "index": 2, "name": "data_primary_key_524fd5cd8814c3069c72dac0f300db96", "comment": null}, "created_at": {"type": "timestamp", "index": 3, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 4, "name": "updated_at", "comment": null}, "opted_in_at": {"type": "timestamp", "index": 5, "name": "opted_in_at", "comment": null}, "customer_id": {"type": "long", "index": 6, "name": "customer_id", "comment": null}, "id": {"type": "long", "index": 7, "name": "id", "comment": null}, "merchant_id": {"type": "long", "index": 8, "name": "merchant_id", "comment": null}, "source_type": {"type": "long", "index": 9, "name": "source_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.yoda.loyalty__chainperks.customers_opt_in"}, "source.yoda.loyalty__chainperks.customers_platform_accounts": {"metadata": {"type": "view", "schema": "chainperks", "name": "customers_platform_accounts", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "merchant_id": {"type": "long", "index": 4, "name": "merchant_id", "comment": null}, "customer_id": {"type": "long", "index": 5, "name": "customer_id", "comment": null}, "platform_account_created_at": {"type": "timestamp", "index": 6, "name": "platform_account_created_at", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_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.yoda.loyalty__chainperks.customers_platform_accounts"}, "source.yoda.loyalty__chainperks.customers_vip_tiers": {"metadata": {"type": "view", "schema": "chainperks", "name": "customers_vip_tiers", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"type": "string", "index": 2, "name": "data_primary_key_524fd5cd8814c3069c72dac0f300db96", "comment": null}, "tier_entry_date": {"type": "timestamp", "index": 3, "name": "tier_entry_date", "comment": null}, "tier_expiration_date": {"type": "timestamp", "index": 4, "name": "tier_expiration_date", "comment": null}, "updated_at": {"type": "timestamp", "index": 5, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "customer_id": {"type": "long", "index": 7, "name": "customer_id", "comment": null}, "history_id": {"type": "long", "index": 8, "name": "history_id", "comment": null}, "id": {"type": "long", "index": 9, "name": "id", "comment": null}, "merchant_id": {"type": "long", "index": 10, "name": "merchant_id", "comment": null}, "state": {"type": "string", "index": 11, "name": "state", "comment": null}, "tier_id": {"type": "long", "index": 12, "name": "tier_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.customers_vip_tiers"}, "source.yoda.loyalty__chainperks.customers_vip_tiers_history": {"metadata": {"type": "view", "schema": "chainperks", "name": "customers_vip_tiers_history", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"type": "string", "index": 2, "name": "data_primary_key_524fd5cd8814c3069c72dac0f300db96", "comment": null}, "updated_at": {"type": "timestamp", "index": 3, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "action": {"type": "string", "index": 5, "name": "action", "comment": null}, "customer_id": {"type": "long", "index": 6, "name": "customer_id", "comment": null}, "expired_at": {"type": "timestamp", "index": 7, "name": "expired_at", "comment": null}, "id": {"type": "long", "index": 8, "name": "id", "comment": null}, "merchant_id": {"type": "long", "index": 9, "name": "merchant_id", "comment": null}, "tier_entry_date": {"type": "timestamp", "index": 10, "name": "tier_entry_date", "comment": null}, "tier_expiration_date": {"type": "timestamp", "index": 11, "name": "tier_expiration_date", "comment": null}, "tier_id": {"type": "long", "index": 12, "name": "tier_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.customers_vip_tiers_history"}, "source.yoda.loyalty__chainperks.email_campaign_emails": {"metadata": {"type": "view", "schema": "chainperks", "name": "email_campaign_emails", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "email_campaign_id": {"type": "long", "index": 4, "name": "email_campaign_id", "comment": null}, "customer_id": {"type": "long", "index": 5, "name": "customer_id", "comment": null}, "mid": {"type": "string", "index": 6, "name": "mid", "comment": null}, "sent": {"type": "boolean", "index": 7, "name": "sent", "comment": null}, "sent_at": {"type": "timestamp", "index": 8, "name": "sent_at", "comment": null}, "opened": {"type": "boolean", "index": 9, "name": "opened", "comment": null}, "opened_at": {"type": "timestamp", "index": 10, "name": "opened_at", "comment": null}, "clicked": {"type": "boolean", "index": 11, "name": "clicked", "comment": null}, "clicked_at": {"type": "timestamp", "index": 12, "name": "clicked_at", "comment": null}, "unsubscribed": {"type": "boolean", "index": 13, "name": "unsubscribed", "comment": null}, "unsubscribed_at": {"type": "timestamp", "index": 14, "name": "unsubscribed_at", "comment": null}, "bounced": {"type": "boolean", "index": 15, "name": "bounced", "comment": null}, "bounced_at": {"type": "timestamp", "index": 16, "name": "bounced_at", "comment": null}, "marked_as_spam": {"type": "boolean", "index": 17, "name": "marked_as_spam", "comment": null}, "marked_as_spam_at": {"type": "timestamp", "index": 18, "name": "marked_as_spam_at", "comment": null}, "rejected": {"type": "boolean", "index": 19, "name": "rejected", "comment": null}, "rejected_at": {"type": "timestamp", "index": 20, "name": "rejected_at", "comment": null}, "delayed": {"type": "boolean", "index": 21, "name": "delayed", "comment": null}, "delayed_at": {"type": "timestamp", "index": 22, "name": "delayed_at", "comment": null}, "soft_bounced": {"type": "boolean", "index": 23, "name": "soft_bounced", "comment": null}, "soft_bounced_at": {"type": "timestamp", "index": 24, "name": "soft_bounced_at", "comment": null}, "created_at": {"type": "timestamp", "index": 25, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 26, "name": "updated_at", "comment": null}, "merchant_id": {"type": "long", "index": 27, "name": "merchant_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.email_campaign_emails"}, "source.yoda.loyalty__chainperks.email_campaigns": {"metadata": {"type": "view", "schema": "chainperks", "name": "email_campaigns", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "campaign_id": {"type": "long", "index": 4, "name": "campaign_id", "comment": null}, "starts_at": {"type": "timestamp", "index": 5, "name": "starts_at", "comment": null}, "subject": {"type": "string", "index": 6, "name": "subject", "comment": null}, "body": {"type": "string", "index": 7, "name": "body", "comment": null}, "active": {"type": "boolean", "index": 8, "name": "active", "comment": null}, "type": {"type": "string", "index": 9, "name": "type", "comment": null}, "activated_at": {"type": "timestamp", "index": 10, "name": "activated_at", "comment": null}, "sent": {"type": "boolean", "index": 11, "name": "sent", "comment": null}, "sent_at": {"type": "timestamp", "index": 12, "name": "sent_at", "comment": null}, "start_job_id": {"type": "string", "index": 13, "name": "start_job_id", "comment": null}, "email_sent_count": {"type": "long", "index": 14, "name": "email_sent_count", "comment": null}, "email_opened_count": {"type": "long", "index": 15, "name": "email_opened_count", "comment": null}, "email_clicked_count": {"type": "long", "index": 16, "name": "email_clicked_count", "comment": null}, "email_bounced_count": {"type": "long", "index": 17, "name": "email_bounced_count", "comment": null}, "email_soft_bounced_count": {"type": "long", "index": 18, "name": "email_soft_bounced_count", "comment": null}, "email_rejected_count": {"type": "long", "index": 19, "name": "email_rejected_count", "comment": null}, "email_unsubscribed_count": {"type": "long", "index": 20, "name": "email_unsubscribed_count", "comment": null}, "email_marked_as_spam_count": {"type": "long", "index": 21, "name": "email_marked_as_spam_count", "comment": null}, "email_delayed_count": {"type": "long", "index": 22, "name": "email_delayed_count", "comment": null}, "created_at": {"type": "timestamp", "index": 23, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 24, "name": "updated_at", "comment": null}, "merchant_id": {"type": "long", "index": 25, "name": "merchant_id", "comment": null}, "delay_days": {"type": "long", "index": 26, "name": "delay_days", "comment": null}, "layout": {"type": "string", "index": 27, "name": "layout", "comment": null}, "show_recommendations": {"type": "boolean", "index": 28, "name": "show_recommendations", "comment": null}}, "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.yoda.loyalty__chainperks.email_campaigns"}, "source.yoda.loyalty__chainperks.group_customers": {"metadata": {"type": "view", "schema": "chainperks", "name": "group_customers", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"type": "string", "index": 2, "name": "data_primary_key_524fd5cd8814c3069c72dac0f300db96", "comment": null}, "last_seen_at": {"type": "timestamp", "index": 3, "name": "last_seen_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 4, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "email": {"type": "string", "index": 6, "name": "email", "comment": null}, "exclude_from_reports": {"type": "boolean", "index": 7, "name": "exclude_from_reports", "comment": null}, "group_id": {"type": "string", "index": 8, "name": "group_id", "comment": null}, "id": {"type": "long", "index": 9, "name": "id", "comment": null}, "points_balance": {"type": "long", "index": 10, "name": "points_balance", "comment": null}, "points_earned": {"type": "long", "index": 11, "name": "points_earned", "comment": null}, "points_expire_at": {"type": "timestamp", "index": 12, "name": "points_expire_at", "comment": null}, "subscribed": {"type": "boolean", "index": 13, "name": "subscribed", "comment": null}}, "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.yoda.loyalty__chainperks.group_customers"}, "source.yoda.loyalty__chainperks.merchants": {"metadata": {"type": "view", "schema": "chainperks", "name": "merchants", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "owner_id": {"type": "long", "index": 4, "name": "owner_id", "comment": null}, "guid": {"type": "string", "index": 5, "name": "guid", "comment": null}, "description": {"type": "string", "index": 6, "name": "description", "comment": null}, "tag_line": {"type": "string", "index": 7, "name": "tag_line", "comment": null}, "company_name": {"type": "string", "index": 8, "name": "company_name", "comment": null}, "from_name": {"type": "string", "index": 9, "name": "from_name", "comment": null}, "from_email": {"type": "string", "index": 10, "name": "from_email", "comment": null}, "website": {"type": "string", "index": 11, "name": "website", "comment": null}, "logo_url": {"type": "string", "index": 12, "name": "logo_url", "comment": null}, "currency": {"type": "string", "index": 13, "name": "currency", "comment": null}, "logo_file_name": {"type": "string", "index": 14, "name": "logo_file_name", "comment": null}, "logo_content_type": {"type": "string", "index": 15, "name": "logo_content_type", "comment": null}, "logo_file_size": {"type": "long", "index": 16, "name": "logo_file_size", "comment": null}, "logo_updated_at": {"type": "timestamp", "index": 17, "name": "logo_updated_at", "comment": null}, "api_key": {"type": "string", "index": 18, "name": "api_key", "comment": null}, "api_access_enabled": {"type": "boolean", "index": 19, "name": "api_access_enabled", "comment": null}, "is_approved": {"type": "boolean", "index": 20, "name": "is_approved", "comment": null}, "third_party_id": {"type": "string", "index": 21, "name": "third_party_id", "comment": null}, "store_id": {"type": "string", "index": 22, "name": "store_id", "comment": null}, "widget_enabled": {"type": "boolean", "index": 23, "name": "widget_enabled", "comment": null}, "widget_text": {"type": "string", "index": 24, "name": "widget_text", "comment": null}, "widget_bg_color": {"type": "string", "index": 25, "name": "widget_bg_color", "comment": null}, "widget_text_color": {"type": "string", "index": 26, "name": "widget_text_color", "comment": null}, "widget_expanded_by_default": {"type": "boolean", "index": 27, "name": "widget_expanded_by_default", "comment": null}, "created_at": {"type": "timestamp", "index": 28, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 29, "name": "updated_at", "comment": null}, "platform": {"type": "string", "index": 30, "name": "platform", "comment": null}, "widget_location": {"type": "string", "index": 31, "name": "widget_location", "comment": null}, "has_store": {"type": "boolean", "index": 32, "name": "has_store", "comment": null}, "email": {"type": "string", "index": 33, "name": "email", "comment": null}, "bricknmortar": {"type": "boolean", "index": 34, "name": "bricknmortar", "comment": null}, "featured": {"type": "boolean", "index": 35, "name": "featured", "comment": null}, "slug": {"type": "string", "index": 36, "name": "slug", "comment": null}, "has_rewards_installed": {"type": "boolean", "index": 37, "name": "has_rewards_installed", "comment": null}, "installed_rewards_at": {"type": "timestamp", "index": 38, "name": "installed_rewards_at", "comment": null}, "uninstalled_rewards_at": {"type": "timestamp", "index": 39, "name": "uninstalled_rewards_at", "comment": null}, "has_analytics_installed": {"type": "boolean", "index": 40, "name": "has_analytics_installed", "comment": null}, "installed_analytics_at": {"type": "timestamp", "index": 41, "name": "installed_analytics_at", "comment": null}, "uninstalled_analytics_at": {"type": "timestamp", "index": 42, "name": "uninstalled_analytics_at", "comment": null}, "completed_profile": {"type": "boolean", "index": 43, "name": "completed_profile", "comment": null}, "completed_profile_at": {"type": "timestamp", "index": 44, "name": "completed_profile_at", "comment": null}, "widget_theme": {"type": "string", "index": 45, "name": "widget_theme", "comment": null}, "widget_mobile": {"type": "boolean", "index": 46, "name": "widget_mobile", "comment": null}, "widget_rounded": {"type": "boolean", "index": 47, "name": "widget_rounded", "comment": null}, "widget_height": {"type": "long", "index": 48, "name": "widget_height", "comment": null}, "widget_distance_from_end": {"type": "long", "index": 49, "name": "widget_distance_from_end", "comment": null}, "widget_brand_color": {"type": "string", "index": 50, "name": "widget_brand_color", "comment": null}, "points_per_dollar": {"type": "long", "index": 51, "name": "points_per_dollar", "comment": null}, "swell_redemptions_enabled": {"type": "boolean", "index": 52, "name": "swell_redemptions_enabled", "comment": null}, "plan": {"type": "string", "index": 53, "name": "plan", "comment": null}, "widget_header_text": {"type": "string", "index": 54, "name": "widget_header_text", "comment": null}, "email_header_image_file_name": {"type": "string", "index": 55, "name": "email_header_image_file_name", "comment": null}, "email_header_image_content_type": {"type": "string", "index": 56, "name": "email_header_image_content_type", "comment": null}, "email_header_image_file_size": {"type": "long", "index": 57, "name": "email_header_image_file_size", "comment": null}, "email_header_image_updated_at": {"type": "timestamp", "index": 58, "name": "email_header_image_updated_at", "comment": null}, "email_header_width": {"type": "long", "index": 59, "name": "email_header_width", "comment": null}, "email_layout_html": {"type": "string", "index": 60, "name": "email_layout_html", "comment": null}, "email_layout": {"type": "string", "index": 61, "name": "email_layout", "comment": null}, "force_store_accounts": {"type": "boolean", "index": 62, "name": "force_store_accounts", "comment": null}, "store_account_registration_url": {"type": "string", "index": 63, "name": "store_account_registration_url", "comment": null}, "store_account_login_url": {"type": "string", "index": 64, "name": "store_account_login_url", "comment": null}, "widget_font_url": {"type": "string", "index": 65, "name": "widget_font_url", "comment": null}, "widget_font_family": {"type": "string", "index": 66, "name": "widget_font_family", "comment": null}, "include_shipping": {"type": "boolean", "index": 67, "name": "include_shipping", "comment": null}, "widget_location_mobile": {"type": "string", "index": 68, "name": "widget_location_mobile", "comment": null}, "program_live": {"type": "boolean", "index": 69, "name": "program_live", "comment": null}, "program_first_activated_at": {"type": "date", "index": 70, "name": "program_first_activated_at", "comment": null}, "cross_origin_store_accounts": {"type": "boolean", "index": 71, "name": "cross_origin_store_accounts", "comment": null}, "store_account_host": {"type": "string", "index": 72, "name": "store_account_host", "comment": null}, "install_order_volume": {"type": "long", "index": 73, "name": "install_order_volume", "comment": null}, "process_order_webhook": {"type": "string", "index": 74, "name": "process_order_webhook", "comment": null}, "product_exclusions": {"type": "string", "index": 75, "name": "product_exclusions", "comment": null}, "collection_exclusions": {"type": "string", "index": 76, "name": "collection_exclusions", "comment": null}, "contact_email": {"type": "string", "index": 77, "name": "contact_email", "comment": null}, "exclude_customer_tags": {"type": "boolean", "index": 78, "name": "exclude_customer_tags", "comment": null}, "customer_tags": {"type": "string", "index": 79, "name": "customer_tags", "comment": null}, "sync_newsletter_with_platform": {"type": "boolean", "index": 80, "name": "sync_newsletter_with_platform", "comment": null}, "oauth_app_id": {"type": "string", "index": 81, "name": "oauth_app_id", "comment": null}, "limit_redemptions": {"type": "boolean", "index": 82, "name": "limit_redemptions", "comment": null}, "max_redemptions_limit": {"type": "long", "index": 83, "name": "max_redemptions_limit", "comment": null}, "max_redemptions_limit_days": {"type": "long", "index": 84, "name": "max_redemptions_limit_days", "comment": null}, "value_per_subscriber_cents": {"type": "long", "index": 85, "name": "value_per_subscriber_cents", "comment": null}, "weekly_digest_enabled": {"type": "boolean", "index": 86, "name": "weekly_digest_enabled", "comment": null}, "usage_charge_job_id": {"type": "string", "index": 87, "name": "usage_charge_job_id", "comment": null}, "free_trial_expires_at": {"type": "timestamp", "index": 88, "name": "free_trial_expires_at", "comment": null}, "free_trial_expiration_job_id": {"type": "string", "index": 89, "name": "free_trial_expiration_job_id", "comment": null}, "on_free_trial": {"type": "boolean", "index": 90, "name": "on_free_trial", "comment": null}, "stripe_customer_id": {"type": "string", "index": 91, "name": "stripe_customer_id", "comment": null}, "program_locked": {"type": "boolean", "index": 92, "name": "program_locked", "comment": null}, "free_products_enabled": {"type": "boolean", "index": 93, "name": "free_products_enabled", "comment": null}, "process_refund_status": {"type": "string", "index": 94, "name": "process_refund_status", "comment": null}, "process_order_status": {"type": "string", "index": 95, "name": "process_order_status", "comment": null}, "platform_engine": {"type": "string", "index": 96, "name": "platform_engine", "comment": null}, "webhook_url": {"type": "string", "index": 97, "name": "webhook_url", "comment": null}, "points_reminder_delay_days": {"type": "long", "index": 98, "name": "points_reminder_delay_days", "comment": null}, "invoice_job_id": {"type": "string", "index": 99, "name": "invoice_job_id", "comment": null}, "source": {"type": "string", "index": 100, "name": "source", "comment": null}, "setup_rewards_page": {"type": "boolean", "index": 101, "name": "setup_rewards_page", "comment": null}, "sync_fields_with_processor": {"type": "boolean", "index": 102, "name": "sync_fields_with_processor", "comment": null}, "metafield_namespace": {"type": "string", "index": 103, "name": "metafield_namespace", "comment": null}, "vip_tiers_job_running": {"type": "boolean", "index": 104, "name": "vip_tiers_job_running", "comment": null}, "order_paid_status": {"type": "string", "index": 105, "name": "order_paid_status", "comment": null}, "can_generate_coupons": {"type": "boolean", "index": 106, "name": "can_generate_coupons", "comment": null}, "referral_reminder_days": {"type": "long", "index": 107, "name": "referral_reminder_days", "comment": null}, "order_paid_state": {"type": "string", "index": 108, "name": "order_paid_state", "comment": null}, "process_order_state": {"type": "string", "index": 109, "name": "process_order_state", "comment": null}, "process_refund_state": {"type": "string", "index": 110, "name": "process_refund_state", "comment": null}, "security_level": {"type": "long", "index": 111, "name": "security_level", "comment": null}, "include_purchases_with_details": {"type": "boolean", "index": 112, "name": "include_purchases_with_details", "comment": null}, "facebook_app_id": {"type": "string", "index": 113, "name": "facebook_app_id", "comment": null}, "process_discounts_webhook": {"type": "string", "index": 114, "name": "process_discounts_webhook", "comment": null}, "order_price_setting": {"type": "long", "index": 115, "name": "order_price_setting", "comment": null}, "order_price_eval": {"type": "string", "index": 116, "name": "order_price_eval", "comment": null}, "completed_onboarding": {"type": "boolean", "index": 117, "name": "completed_onboarding", "comment": null}, "include_storefront_css": {"type": "boolean", "index": 118, "name": "include_storefront_css", "comment": null}, "custom_script_url": {"type": "string", "index": 119, "name": "custom_script_url", "comment": null}, "nav_exclusions": {"type": "string", "index": 120, "name": "nav_exclusions", "comment": null}, "discount_code_generation_strategy": {"type": "string", "index": 121, "name": "discount_code_generation_strategy", "comment": null}, "first_time_referral_discounts_enable_flag": {"type": "boolean", "index": 122, "name": "first_time_referral_discounts_enable_flag", "comment": null}, "discount_code_based_referral_program_enabled": {"type": "boolean", "index": 123, "name": "discount_code_based_referral_program_enabled", "comment": null}, "cash_payout_setting": {"type": "string", "index": 124, "name": "cash_payout_setting", "comment": null}, "default_payout_percentage": {"type": "double", "index": 125, "name": "default_payout_percentage", "comment": null}, "default_paypal_email_subject": {"type": "string", "index": 126, "name": "default_paypal_email_subject", "comment": null}, "default_paypal_email_message": {"type": "string", "index": 127, "name": "default_paypal_email_message", "comment": null}, "affiliate_include_shipping": {"type": "boolean", "index": 128, "name": "affiliate_include_shipping", "comment": null}, "affiliate_order_price_setting": {"type": "long", "index": 129, "name": "affiliate_order_price_setting", "comment": null}, "manual_adjustment_admin_only": {"type": "boolean", "index": 130, "name": "manual_adjustment_admin_only", "comment": null}, "sync_tiers_with_platform": {"type": "boolean", "index": 131, "name": "sync_tiers_with_platform", "comment": null}, "verified_email_domain": {"type": "boolean", "index": 132, "name": "verified_email_domain", "comment": null}, "show_billing_information": {"type": "boolean", "index": 133, "name": "show_billing_information", "comment": null}, "code_based_referral_program_on_demand": {"type": "boolean", "index": 134, "name": "code_based_referral_program_on_demand", "comment": null}, "test_account": {"type": "boolean", "index": 135, "name": "test_account", "comment": null}, "custom_chat_group": {"type": "string", "index": 136, "name": "custom_chat_group", "comment": null}, "time_zone": {"type": "string", "index": 137, "name": "time_zone", "comment": null}, "loyalty_opt_in_strategy": {"type": "long", "index": 138, "name": "loyalty_opt_in_strategy", "comment": null}, "referral_opt_in_strategy": {"type": "long", "index": 139, "name": "referral_opt_in_strategy", "comment": null}, "round_discounts_strategy": {"type": "long", "index": 140, "name": "round_discounts_strategy", "comment": null}, "delete_used_coupons_enable": {"type": "boolean", "index": 141, "name": "delete_used_coupons_enable", "comment": null}, "used_coupons_delete_after_days": {"type": "long", "index": 142, "name": "used_coupons_delete_after_days", "comment": null}, "referral_avoid_ip_and_user_agent": {"type": "boolean", "index": 143, "name": "referral_avoid_ip_and_user_agent", "comment": null}, "allow_program_overwrite": {"type": "boolean", "index": 144, "name": "allow_program_overwrite", "comment": null}, "group_id": {"type": "string", "index": 145, "name": "group_id", "comment": null}, "webhook_token": {"type": "string", "index": 146, "name": "webhook_token", "comment": null}, "discount_stacking_order": {"type": "long", "index": 147, "name": "discount_stacking_order", "comment": null}, "discount_stacking_product": {"type": "long", "index": 148, "name": "discount_stacking_product", "comment": null}, "discount_stacking_shipping": {"type": "long", "index": 149, "name": "discount_stacking_shipping", "comment": null}, "after_tied_purchase_reward_by_time": {"type": "long", "index": 150, "name": "after_tied_purchase_reward_by_time", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.merchants"}, "source.yoda.loyalty__chainperks.perks": {"metadata": {"type": "view", "schema": "chainperks", "name": "perks", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"type": "string", "index": 2, "name": "data_primary_key_524fd5cd8814c3069c72dac0f300db96", "comment": null}, "created_at": {"type": "timestamp", "index": 3, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 4, "name": "updated_at", "comment": null}, "awarded_at": {"type": "timestamp", "index": 5, "name": "awarded_at", "comment": null}, "original_awarded_at": {"type": "timestamp", "index": 6, "name": "original_awarded_at", "comment": null}, "completed_at": {"type": "timestamp", "index": 7, "name": "completed_at", "comment": null}, "admin_only": {"type": "boolean", "index": 8, "name": "admin_only", "comment": null}, "award_job_id": {"type": "string", "index": 9, "name": "award_job_id", "comment": null}, "awarded": {"type": "boolean", "index": 10, "name": "awarded", "comment": null}, "balance_only": {"type": "boolean", "index": 11, "name": "balance_only", "comment": null}, "campaign_id": {"type": "long", "index": 12, "name": "campaign_id", "comment": null}, "completed_action": {"type": "string", "index": 13, "name": "completed_action", "comment": null}, "completed": {"type": "boolean", "index": 14, "name": "completed", "comment": null}, "currency": {"type": "string", "index": 15, "name": "currency", "comment": null}, "customer_id": {"type": "long", "index": 16, "name": "customer_id", "comment": null}, "expiration_job_id": {"type": "string", "index": 17, "name": "expiration_job_id", "comment": null}, "expired_at": {"type": "timestamp", "index": 18, "name": "expired_at", "comment": null}, "expired": {"type": "boolean", "index": 19, "name": "expired", "comment": null}, "expires_at": {"type": "timestamp", "index": 20, "name": "expires_at", "comment": null}, "hidden": {"type": "boolean", "index": 21, "name": "hidden", "comment": null}, "history_title": {"type": "string", "index": 22, "name": "history_title", "comment": null}, "identity_id": {"type": "long", "index": 23, "name": "identity_id", "comment": null}, "id": {"type": "long", "index": 24, "name": "id", "comment": null}, "merchant_id": {"type": "long", "index": 25, "name": "merchant_id", "comment": null}, "pending": {"type": "boolean", "index": 26, "name": "pending", "comment": null}, "point_transactions": {"type": "string", "index": 27, "name": "point_transactions", "comment": null}, "points_transactions": {"type": "string", "index": 28, "name": "points_transactions", "comment": null}, "redeemable": {"type": "boolean", "index": 29, "name": "redeemable", "comment": null}, "redemption_option_id": {"type": "long", "index": 30, "name": "redemption_option_id", "comment": null}, "referral_id": {"type": "long", "index": 31, "name": "referral_id", "comment": null}, "reversed_at": {"type": "timestamp", "index": 32, "name": "reversed_at", "comment": null}, "reversed": {"type": "boolean", "index": 33, "name": "reversed", "comment": null}, "reward_points": {"type": "long", "index": 34, "name": "reward_points", "comment": null}, "points_multiplier": {"type": "double", "index": 35, "name": "points_multiplier", "comment": null}}, "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.yoda.loyalty__chainperks.perks"}, "source.yoda.loyalty__chainperks.perks_user_actions": {"metadata": {"type": "view", "schema": "chainperks", "name": "perks_user_actions", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "primary_key": {"type": "string", "index": 2, "name": "primary_key", "comment": null}, "updated_at": {"type": "timestamp", "index": 3, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "perk_id": {"type": "long", "index": 5, "name": "perk_id", "comment": null}, "user_action_id": {"type": "long", "index": 6, "name": "user_action_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.perks_user_actions"}, "source.yoda.loyalty__chainperks.plans": {"metadata": {"type": "view", "schema": "chainperks", "name": "plans", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "base_price_cents": {"type": "long", "index": 5, "name": "base_price_cents", "comment": null}, "per_order_price_cents": {"type": "long", "index": 6, "name": "per_order_price_cents", "comment": null}, "included_orders": {"type": "long", "index": 7, "name": "included_orders", "comment": null}, "capped_amount_cents": {"type": "long", "index": 8, "name": "capped_amount_cents", "comment": null}}, "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.yoda.loyalty__chainperks.plans"}, "source.yoda.loyalty__chainperks.point_redemptions": {"metadata": {"type": "view", "schema": "chainperks", "name": "point_redemptions", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "amount": {"type": "long", "index": 4, "name": "amount", "comment": null}, "reward_title": {"type": "string", "index": 5, "name": "reward_title", "comment": null}, "redemption_option_id": {"type": "long", "index": 6, "name": "redemption_option_id", "comment": null}, "cost_cents": {"type": "long", "index": 7, "name": "cost_cents", "comment": null}, "value_cents": {"type": "long", "index": 8, "name": "value_cents", "comment": null}, "user_id": {"type": "long", "index": 9, "name": "user_id", "comment": null}, "approved": {"type": "boolean", "index": 10, "name": "approved", "comment": null}, "approved_at": {"type": "timestamp", "index": 11, "name": "approved_at", "comment": null}, "additional_information": {"type": "string", "index": 12, "name": "additional_information", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 14, "name": "updated_at", "comment": null}, "currency": {"type": "string", "index": 15, "name": "currency", "comment": null}, "external_url": {"type": "string", "index": 16, "name": "external_url", "comment": null}, "reward_text": {"type": "string", "index": 17, "name": "reward_text", "comment": null}, "identity_id": {"type": "long", "index": 18, "name": "identity_id", "comment": null}, "customer_id": {"type": "long", "index": 19, "name": "customer_id", "comment": null}, "merchant_id": {"type": "long", "index": 20, "name": "merchant_id", "comment": null}, "charge_id": {"type": "string", "index": 21, "name": "charge_id", "comment": null}, "is_pos": {"type": "boolean", "index": 22, "name": "is_pos", "comment": null}, "referral_id": {"type": "long", "index": 23, "name": "referral_id", "comment": null}, "perk_id": {"type": "long", "index": 24, "name": "perk_id", "comment": null}, "is_admin": {"type": "boolean", "index": 25, "name": "is_admin", "comment": null}, "at_checkout": {"type": "boolean", "index": 26, "name": "at_checkout", "comment": null}, "visible": {"type": "boolean", "index": 27, "name": "visible", "comment": null}, "third_party_order_id": {"type": "string", "index": 28, "name": "third_party_order_id", "comment": null}, "deleted": {"type": "boolean", "index": 29, "name": "deleted", "comment": null}, "reversed": {"type": "boolean", "index": 30, "name": "reversed", "comment": null}, "cart_id": {"type": "string", "index": 31, "name": "cart_id", "comment": null}, "refunded_amount": {"type": "long", "index": 32, "name": "refunded_amount", "comment": null}, "api_version": {"type": "string", "index": 33, "name": "api_version", "comment": null}, "points_transactions": {"type": "string", "index": 34, "name": "points_transactions", "comment": null}, "point_transactions": {"type": "string", "index": 35, "name": "point_transactions", "comment": null}, "redemption_source": {"type": "string", "index": 36, "name": "redemption_source", "comment": null}, "context_id": {"type": "string", "index": 37, "name": "context_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.point_redemptions"}, "source.yoda.loyalty__chainperks.processors": {"metadata": {"type": "view", "schema": "chainperks", "name": "processors", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "merchant_id": {"type": "long", "index": 4, "name": "merchant_id", "comment": null}, "oauth_token_id": {"type": "long", "index": 5, "name": "oauth_token_id", "comment": null}, "api_key": {"type": "string", "index": 6, "name": "api_key", "comment": null}, "type": {"type": "string", "index": 7, "name": "type", "comment": null}, "last_fetch_at": {"type": "timestamp", "index": 8, "name": "last_fetch_at", "comment": null}, "last_fetch_status": {"type": "string", "index": 9, "name": "last_fetch_status", "comment": null}, "last_page_number": {"type": "long", "index": 10, "name": "last_page_number", "comment": null}, "display_name": {"type": "string", "index": 11, "name": "display_name", "comment": null}, "has_authorized": {"type": "boolean", "index": 12, "name": "has_authorized", "comment": null}, "import_total_records": {"type": "long", "index": 13, "name": "import_total_records", "comment": null}, "import_records_processed": {"type": "long", "index": 14, "name": "import_records_processed", "comment": null}, "import_completed": {"type": "boolean", "index": 15, "name": "import_completed", "comment": null}, "import_started": {"type": "boolean", "index": 16, "name": "import_started", "comment": null}, "guid": {"type": "string", "index": 17, "name": "guid", "comment": null}, "created_at": {"type": "timestamp", "index": 18, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 19, "name": "updated_at", "comment": null}, "name": {"type": "string", "index": 20, "name": "name", "comment": null}, "paused": {"type": "boolean", "index": 21, "name": "paused", "comment": null}, "delay_order_processing_seconds": {"type": "long", "index": 22, "name": "delay_order_processing_seconds", "comment": null}, "permissions": {"type": "string", "index": 23, "name": "permissions", "comment": null}}, "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.yoda.loyalty__chainperks.processors"}, "source.yoda.loyalty__chainperks.purchase_items": {"metadata": {"type": "view", "schema": "chainperks", "name": "purchase_items", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"type": "string", "index": 2, "name": "data_primary_key_524fd5cd8814c3069c72dac0f300db96", "comment": null}, "updated_at": {"type": "timestamp", "index": 3, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "category_id": {"type": "long", "index": 5, "name": "category_id", "comment": null}, "currency": {"type": "string", "index": 6, "name": "currency", "comment": null}, "id": {"type": "long", "index": 7, "name": "id", "comment": null}, "price_cents": {"type": "long", "index": 8, "name": "price_cents", "comment": null}, "product_id": {"type": "string", "index": 9, "name": "product_id", "comment": null}, "purchase_id": {"type": "long", "index": 10, "name": "purchase_id", "comment": null}, "quantity": {"type": "long", "index": 11, "name": "quantity", "comment": null}, "third_party_id": {"type": "string", "index": 12, "name": "third_party_id", "comment": null}, "title": {"type": "string", "index": 13, "name": "title", "comment": null}, "vendor": {"type": "string", "index": 14, "name": "vendor", "comment": null}, "product_type": {"type": "string", "index": 15, "name": "product_type", "comment": null}, "tags": {"type": "string", "index": 16, "name": "tags", "comment": null}}, "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.yoda.loyalty__chainperks.purchase_items"}, "source.yoda.loyalty__chainperks.purchases": {"metadata": {"type": "view", "schema": "chainperks", "name": "purchases", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"type": "string", "index": 2, "name": "data_primary_key_524fd5cd8814c3069c72dac0f300db96", "comment": null}, "created_at": {"type": "timestamp", "index": 3, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 4, "name": "updated_at", "comment": null}, "amount_cents": {"type": "long", "index": 5, "name": "amount_cents", "comment": null}, "applied_to_campaigns": {"type": "boolean", "index": 6, "name": "applied_to_campaigns", "comment": null}, "avs_postal_match": {"type": "string", "index": 7, "name": "avs_postal_match", "comment": null}, "avs_result_code": {"type": "string", "index": 8, "name": "avs_result_code", "comment": null}, "avs_street_match": {"type": "string", "index": 9, "name": "avs_street_match", "comment": null}, "before_swellrewards": {"type": "boolean", "index": 10, "name": "before_swellrewards", "comment": null}, "billing_address1": {"type": "string", "index": 11, "name": "billing_address1", "comment": null}, "billing_address2": {"type": "string", "index": 12, "name": "billing_address2", "comment": null}, "billing_city": {"type": "string", "index": 13, "name": "billing_city", "comment": null}, "billing_country_code": {"type": "string", "index": 14, "name": "billing_country_code", "comment": null}, "billing_first_name": {"type": "string", "index": 15, "name": "billing_first_name", "comment": null}, "billing_last_name": {"type": "string", "index": 16, "name": "billing_last_name", "comment": null}, "billing_phone": {"type": "string", "index": 17, "name": "billing_phone", "comment": null}, "billing_zip": {"type": "string", "index": 18, "name": "billing_zip", "comment": null}, "browser_country_code": {"type": "string", "index": 19, "name": "browser_country_code", "comment": null}, "chargeback_protection": {"type": "string", "index": 20, "name": "chargeback_protection", "comment": null}, "credit_card_bin": {"type": "string", "index": 21, "name": "credit_card_bin", "comment": null}, "credit_card_company": {"type": "string", "index": 22, "name": "credit_card_company", "comment": null}, "credit_card_number": {"type": "string", "index": 23, "name": "credit_card_number", "comment": null}, "currency": {"type": "string", "index": 24, "name": "currency", "comment": null}, "customer_id": {"type": "long", "index": 25, "name": "customer_id", "comment": null}, "cvv_result_code": {"type": "string", "index": 26, "name": "cvv_result_code", "comment": null}, "eligible_for_vip_tiers": {"type": "boolean", "index": 27, "name": "eligible_for_vip_tiers", "comment": null}, "fraud_review": {"type": "string", "index": 28, "name": "fraud_review", "comment": null}, "gateway": {"type": "string", "index": 29, "name": "gateway", "comment": null}, "has_swell_user": {"type": "boolean", "index": 30, "name": "has_swell_user", "comment": null}, "id": {"type": "long", "index": 31, "name": "id", "comment": null}, "ip_address": {"type": "string", "index": 32, "name": "ip_address", "comment": null}, "is_refunded": {"type": "boolean", "index": 33, "name": "is_refunded", "comment": null}, "is_repeat": {"type": "boolean", "index": 34, "name": "is_repeat", "comment": null}, "landing_site": {"type": "string", "index": 35, "name": "landing_site", "comment": null}, "merchant_id": {"type": "long", "index": 36, "name": "merchant_id", "comment": null}, "order_id": {"type": "string", "index": 37, "name": "order_id", "comment": null}, "processor_id": {"type": "long", "index": 38, "name": "processor_id", "comment": null}, "redemption_code_id": {"type": "long", "index": 39, "name": "redemption_code_id", "comment": null}, "referral_id": {"type": "long", "index": 40, "name": "referral_id", "comment": null}, "referring_site": {"type": "string", "index": 41, "name": "referring_site", "comment": null}, "sender_email": {"type": "string", "index": 42, "name": "sender_email", "comment": null}, "shipping_address1": {"type": "string", "index": 43, "name": "shipping_address1", "comment": null}, "shipping_address2": {"type": "string", "index": 44, "name": "shipping_address2", "comment": null}, "shipping_city": {"type": "string", "index": 45, "name": "shipping_city", "comment": null}, "shipping_country_code": {"type": "string", "index": 46, "name": "shipping_country_code", "comment": null}, "shipping_first_name": {"type": "string", "index": 47, "name": "shipping_first_name", "comment": null}, "shipping_last_name": {"type": "string", "index": 48, "name": "shipping_last_name", "comment": null}, "shipping_phone": {"type": "string", "index": 49, "name": "shipping_phone", "comment": null}, "shipping_zip": {"type": "string", "index": 50, "name": "shipping_zip", "comment": null}, "store_account_id": {"type": "string", "index": 51, "name": "store_account_id", "comment": null}, "swell_discount_cost_cents": {"type": "long", "index": 52, "name": "swell_discount_cost_cents", "comment": null}, "synced_to_analytics": {"type": "boolean", "index": 53, "name": "synced_to_analytics", "comment": null}, "user_agent_id": {"type": "long", "index": 54, "name": "user_agent_id", "comment": null}, "user_agent": {"type": "string", "index": 55, "name": "user_agent", "comment": null}, "user_id": {"type": "long", "index": 56, "name": "user_id", "comment": null}, "fee_amount_cents": {"type": "long", "index": 57, "name": "fee_amount_cents", "comment": null}, "transaction_id": {"type": "string", "index": 58, "name": "transaction_id", "comment": null}, "affiliate_amount": {"type": "double", "index": 59, "name": "affiliate_amount", "comment": null}, "referral_discount_code_id": {"type": "long", "index": 60, "name": "referral_discount_code_id", "comment": null}, "transaction_hash": {"type": "string", "index": 61, "name": "transaction_hash", "comment": null}, "vip_tier_eligibility_job_id": {"type": "string", "index": 62, "name": "vip_tier_eligibility_job_id", "comment": null}, "channel_type": {"type": "string", "index": 63, "name": "channel_type", "comment": null}, "store_address": {"type": "string", "index": 64, "name": "store_address", "comment": null}, "clerk_name": {"type": "string", "index": 65, "name": "clerk_name", "comment": null}, "store_city": {"type": "string", "index": 66, "name": "store_city", "comment": null}, "store_state": {"type": "string", "index": 67, "name": "store_state", "comment": null}, "clerk_employee_id": {"type": "string", "index": 68, "name": "clerk_employee_id", "comment": null}, "discount_codes": {"type": "string", "index": 69, "name": "discount_codes", "comment": null}, "transactions": {"type": "string", "index": 70, "name": "transactions", "comment": null}}, "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.yoda.loyalty__chainperks.purchases"}, "source.yoda.loyalty__chainperks.purchases_redemptions": {"metadata": {"type": "view", "schema": "chainperks", "name": "purchases_redemptions", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "purchase_id": {"type": "long", "index": 4, "name": "purchase_id", "comment": null}, "redemption_id": {"type": "long", "index": 5, "name": "redemption_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.purchases_redemptions"}, "source.yoda.loyalty__chainperks.purchases_with_currency": {"metadata": {"type": "view", "schema": "chainperks", "name": "purchases_with_currency", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "purchase_id": {"type": "long", "index": 4, "name": "purchase_id", "comment": null}, "merchant_id": {"type": "long", "index": 5, "name": "merchant_id", "comment": null}, "amount_cents": {"type": "long", "index": 6, "name": "amount_cents", "comment": null}, "currency_symbol": {"type": "string", "index": 7, "name": "currency_symbol", "comment": null}, "loyalty_exchange_rate": {"type": "double", "index": 8, "name": "loyalty_exchange_rate", "comment": null}, "external_exchange_rate": {"type": "double", "index": 9, "name": "external_exchange_rate", "comment": null}, "created_at": {"type": "timestamp", "index": 10, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 11, "name": "updated_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.yoda.loyalty__chainperks.purchases_with_currency"}, "source.yoda.loyalty__chainperks.redemption_codes": {"metadata": {"type": "view", "schema": "chainperks", "name": "redemption_codes", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "redemption_option_id": {"type": "long", "index": 4, "name": "redemption_option_id", "comment": null}, "point_redemption_id": {"type": "long", "index": 5, "name": "point_redemption_id", "comment": null}, "merchant_id": {"type": "long", "index": 6, "name": "merchant_id", "comment": null}, "code": {"type": "string", "index": 7, "name": "code", "comment": null}, "pin": {"type": "string", "index": 8, "name": "pin", "comment": null}, "used": {"type": "boolean", "index": 9, "name": "used", "comment": null}, "uses": {"type": "long", "index": 10, "name": "uses", "comment": null}, "third_party_id": {"type": "string", "index": 11, "name": "third_party_id", "comment": null}, "amount_used_cents": {"type": "long", "index": 12, "name": "amount_used_cents", "comment": null}, "third_party_rule_id": {"type": "string", "index": 13, "name": "third_party_rule_id", "comment": null}, "recharge_third_party_id": {"type": "string", "index": 14, "name": "recharge_third_party_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.redemption_codes"}, "source.yoda.loyalty__chainperks.redemption_options": {"metadata": {"type": "view", "schema": "chainperks", "name": "redemption_options", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "title": {"type": "string", "index": 4, "name": "title", "comment": null}, "description": {"type": "string", "index": 5, "name": "description", "comment": null}, "category": {"type": "string", "index": 6, "name": "category", "comment": null}, "amount": {"type": "long", "index": 7, "name": "amount", "comment": null}, "value_cents": {"type": "long", "index": 8, "name": "value_cents", "comment": null}, "cost_cents": {"type": "long", "index": 9, "name": "cost_cents", "comment": null}, "image": {"type": "string", "index": 10, "name": "image", "comment": null}, "icon": {"type": "string", "index": 11, "name": "icon", "comment": null}, "currency": {"type": "string", "index": 12, "name": "currency", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 14, "name": "updated_at", "comment": null}, "external_id": {"type": "string", "index": 15, "name": "external_id", "comment": null}, "service_name": {"type": "string", "index": 16, "name": "service_name", "comment": null}, "external_amount": {"type": "long", "index": 17, "name": "external_amount", "comment": null}, "code": {"type": "string", "index": 18, "name": "code", "comment": null}, "name": {"type": "string", "index": 19, "name": "name", "comment": null}, "type": {"type": "string", "index": 20, "name": "type", "comment": null}, "merchant_id": {"type": "long", "index": 21, "name": "merchant_id", "comment": null}, "parent_option_id": {"type": "long", "index": 22, "name": "parent_option_id", "comment": null}, "discount_type": {"type": "string", "index": 23, "name": "discount_type", "comment": null}, "discount_amount_cents": {"type": "long", "index": 24, "name": "discount_amount_cents", "comment": null}, "discount_percentage": {"type": "long", "index": 25, "name": "discount_percentage", "comment": null}, "prefix": {"type": "string", "index": 26, "name": "prefix", "comment": null}, "charset": {"type": "string", "index": 27, "name": "charset", "comment": null}, "code_length": {"type": "long", "index": 28, "name": "code_length", "comment": null}, "single_use": {"type": "boolean", "index": 29, "name": "single_use", "comment": null}, "deleted": {"type": "boolean", "index": 30, "name": "deleted", "comment": null}, "display_in_popup": {"type": "boolean", "index": 31, "name": "display_in_popup", "comment": null}, "cost_text": {"type": "string", "index": 32, "name": "cost_text", "comment": null}, "reward_intro": {"type": "string", "index": 33, "name": "reward_intro", "comment": null}, "discount_rate_cents": {"type": "long", "index": 34, "name": "discount_rate_cents", "comment": null}, "applies_to_id": {"type": "string", "index": 35, "name": "applies_to_id", "comment": null}, "applies_to_resource": {"type": "string", "index": 36, "name": "applies_to_resource", "comment": null}, "applies_once": {"type": "boolean", "index": 37, "name": "applies_once", "comment": null}, "skip_platform_create": {"type": "boolean", "index": 38, "name": "skip_platform_create", "comment": null}, "background_image_id": {"type": "long", "index": 39, "name": "background_image_id", "comment": null}, "third_party_id": {"type": "string", "index": 40, "name": "third_party_id", "comment": null}, "applies_to_attribute": {"type": "string", "index": 41, "name": "applies_to_attribute", "comment": null}, "display_order": {"type": "long", "index": 42, "name": "display_order", "comment": null}, "product_ids": {"type": "string", "index": 43, "name": "product_ids", "comment": null}, "variant_ids": {"type": "string", "index": 44, "name": "variant_ids", "comment": null}, "collection_ids": {"type": "string", "index": 45, "name": "collection_ids", "comment": null}, "free_shipping_less_than_cents": {"type": "long", "index": 46, "name": "free_shipping_less_than_cents", "comment": null}, "cart_greater_than_cents": {"type": "long", "index": 47, "name": "cart_greater_than_cents", "comment": null}, "applies_to_attributes": {"type": "string", "index": 48, "name": "applies_to_attributes", "comment": null}, "applies_to_values": {"type": "string", "index": 49, "name": "applies_to_values", "comment": null}, "applies_to_any_or_all_attributes": {"type": "string", "index": 50, "name": "applies_to_any_or_all_attributes", "comment": null}, "is_pos": {"type": "boolean", "index": 51, "name": "is_pos", "comment": null}, "applies_to_product_type": {"type": "string", "index": 52, "name": "applies_to_product_type", "comment": null}, "duration": {"type": "string", "index": 53, "name": "duration", "comment": null}, "cash_amount": {"type": "double", "index": 54, "name": "cash_amount", "comment": null}, "usage_limit": {"type": "long", "index": 55, "name": "usage_limit", "comment": null}, "customer_ids": {"type": "string", "index": 56, "name": "customer_ids", "comment": null}, "saved_search_ids": {"type": "string", "index": 57, "name": "saved_search_ids", "comment": null}, "once_per_customer": {"type": "boolean", "index": 58, "name": "once_per_customer", "comment": null}, "expires_after": {"type": "string", "index": 59, "name": "expires_after", "comment": null}, "starts_after": {"type": "string", "index": 60, "name": "starts_after", "comment": null}, "restrict_to_redeeming_customer": {"type": "boolean", "index": 61, "name": "restrict_to_redeeming_customer", "comment": null}, "group_ids": {"type": "string", "index": 62, "name": "group_ids", "comment": null}, "automatically_apply": {"type": "boolean", "index": 63, "name": "automatically_apply", "comment": null}, "free_product_cost_cents": {"type": "long", "index": 64, "name": "free_product_cost_cents", "comment": null}, "redemption_codes_webhook_threshold": {"type": "long", "index": 65, "name": "redemption_codes_webhook_threshold", "comment": null}, "is_offline": {"type": "boolean", "index": 66, "name": "is_offline", "comment": null}, "custom_coupon_cost_cents": {"type": "long", "index": 67, "name": "custom_coupon_cost_cents", "comment": null}, "min_amount": {"type": "long", "index": 68, "name": "min_amount", "comment": null}, "generic_url": {"type": "string", "index": 69, "name": "generic_url", "comment": null}, "secret": {"type": "string", "index": 70, "name": "secret", "comment": null}, "coupon_cancellation_url": {"type": "string", "index": 71, "name": "coupon_cancellation_url", "comment": null}, "coupons_pool_amount": {"type": "long", "index": 72, "name": "coupons_pool_amount", "comment": null}, "show_online": {"type": "boolean", "index": 73, "name": "show_online", "comment": null}, "quantity": {"type": "long", "index": 74, "name": "quantity", "comment": null}, "variants_settings": {"type": "string", "index": 75, "name": "variants_settings", "comment": null}, "segment_ids": {"type": "string", "index": 76, "name": "segment_ids", "comment": null}, "display_in_admin": {"type": "long", "index": 77, "name": "display_in_admin", "comment": null}}, "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.yoda.loyalty__chainperks.redemption_options"}, "source.yoda.loyalty__chainperks.referral_codes": {"metadata": {"type": "view", "schema": "chainperks", "name": "referral_codes", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"type": "string", "index": 2, "name": "data_primary_key_524fd5cd8814c3069c72dac0f300db96", "comment": null}, "created_at": {"type": "timestamp", "index": 3, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 4, "name": "updated_at", "comment": null}, "amount_cents": {"type": "long", "index": 5, "name": "amount_cents", "comment": null}, "average_amount_cents": {"type": "long", "index": 6, "name": "average_amount_cents", "comment": null}, "campaign_id": {"type": "long", "index": 7, "name": "campaign_id", "comment": null}, "clicks": {"type": "long", "index": 8, "name": "clicks", "comment": null}, "code": {"type": "string", "index": 9, "name": "code", "comment": null}, "copy_link_shares": {"type": "long", "index": 10, "name": "copy_link_shares", "comment": null}, "customer_id": {"type": "long", "index": 11, "name": "customer_id", "comment": null}, "email_shares": {"type": "long", "index": 12, "name": "email_shares", "comment": null}, "emails_sent": {"type": "long", "index": 13, "name": "emails_sent", "comment": null}, "emails_viewed": {"type": "long", "index": 14, "name": "emails_viewed", "comment": null}, "expiration_final_reminder_job_id": {"type": "string", "index": 15, "name": "expiration_final_reminder_job_id", "comment": null}, "expiration_reminder_job_id": {"type": "string", "index": 16, "name": "expiration_reminder_job_id", "comment": null}, "expire_job_id": {"type": "string", "index": 17, "name": "expire_job_id", "comment": null}, "expired": {"type": "boolean", "index": 18, "name": "expired", "comment": null}, "expires_at": {"type": "timestamp", "index": 19, "name": "expires_at", "comment": null}, "facebook_messenger_shares": {"type": "long", "index": 20, "name": "facebook_messenger_shares", "comment": null}, "facebook_shares": {"type": "long", "index": 21, "name": "facebook_shares", "comment": null}, "identity_id": {"type": "long", "index": 22, "name": "identity_id", "comment": null}, "id": {"type": "long", "index": 23, "name": "id", "comment": null}, "invalid_clicks": {"type": "long", "index": 24, "name": "invalid_clicks", "comment": null}, "links_clicked_from_email": {"type": "long", "index": 25, "name": "links_clicked_from_email", "comment": null}, "links_clicked_from_facebook": {"type": "long", "index": 26, "name": "links_clicked_from_facebook", "comment": null}, "links_clicked_from_twitter": {"type": "long", "index": 27, "name": "links_clicked_from_twitter", "comment": null}, "links_clicked": {"type": "long", "index": 28, "name": "links_clicked", "comment": null}, "merchant_id": {"type": "long", "index": 29, "name": "merchant_id", "comment": null}, "orders": {"type": "long", "index": 30, "name": "orders", "comment": null}, "shares": {"type": "long", "index": 31, "name": "shares", "comment": null}, "sms_shares": {"type": "long", "index": 32, "name": "sms_shares", "comment": null}, "target_referrals": {"type": "long", "index": 33, "name": "target_referrals", "comment": null}, "twitter_shares": {"type": "long", "index": 34, "name": "twitter_shares", "comment": null}, "whatsapp_shares": {"type": "long", "index": 35, "name": "whatsapp_shares", "comment": null}, "personal_email_shares": {"type": "long", "index": 36, "name": "personal_email_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": "source.yoda.loyalty__chainperks.referral_codes"}, "source.yoda.loyalty__chainperks.referral_discount_codes": {"metadata": {"type": "view", "schema": "chainperks", "name": "referral_discount_codes", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "redemption_option_id": {"type": "long", "index": 4, "name": "redemption_option_id", "comment": null}, "campaign_id": {"type": "long", "index": 5, "name": "campaign_id", "comment": null}, "merchant_id": {"type": "long", "index": 6, "name": "merchant_id", "comment": null}, "customer_id": {"type": "long", "index": 7, "name": "customer_id", "comment": null}, "code": {"type": "string", "index": 8, "name": "code", "comment": null}, "pin": {"type": "string", "index": 9, "name": "pin", "comment": null}, "used": {"type": "boolean", "index": 10, "name": "used", "comment": null}, "uses": {"type": "long", "index": 11, "name": "uses", "comment": null}, "third_party_id": {"type": "string", "index": 12, "name": "third_party_id", "comment": null}, "amount_used_cents": {"type": "long", "index": 13, "name": "amount_used_cents", "comment": null}, "third_party_rule_id": {"type": "string", "index": 14, "name": "third_party_rule_id", "comment": null}, "amount_cents": {"type": "long", "index": 15, "name": "amount_cents", "comment": null}, "average_amount_cents": {"type": "long", "index": 16, "name": "average_amount_cents", "comment": null}, "orders": {"type": "long", "index": 17, "name": "orders", "comment": null}, "batch_id": {"type": "string", "index": 18, "name": "batch_id", "comment": null}, "created_at": {"type": "timestamp", "index": 19, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 20, "name": "updated_at", "comment": null}, "deleted": {"type": "boolean", "index": 21, "name": "deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.referral_discount_codes"}, "source.yoda.loyalty__chainperks.referral_receipts": {"metadata": {"type": "view", "schema": "chainperks", "name": "referral_receipts", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "referral_code_id": {"type": "long", "index": 4, "name": "referral_code_id", "comment": null}, "customer_id": {"type": "long", "index": 5, "name": "customer_id", "comment": null}, "merchant_id": {"type": "long", "index": 6, "name": "merchant_id", "comment": null}, "referred_customer_id": {"type": "long", "index": 7, "name": "referred_customer_id", "comment": null}, "signed_up_at": {"type": "timestamp", "index": 8, "name": "signed_up_at", "comment": null}, "purchased_at": {"type": "timestamp", "index": 9, "name": "purchased_at", "comment": null}, "completed_at": {"type": "timestamp", "index": 10, "name": "completed_at", "comment": null}, "source_host": {"type": "string", "index": 11, "name": "source_host", "comment": null}, "source": {"type": "string", "index": 12, "name": "source", "comment": null}, "email": {"type": "string", "index": 13, "name": "email", "comment": null}, "created_at": {"type": "timestamp", "index": 14, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 15, "name": "updated_at", "comment": null}, "referral_id": {"type": "long", "index": 16, "name": "referral_id", "comment": null}, "reminder_job_id": {"type": "string", "index": 17, "name": "reminder_job_id", "comment": null}, "referral_discount_code_id": {"type": "long", "index": 18, "name": "referral_discount_code_id", "comment": null}, "is_reversed": {"type": "boolean", "index": 19, "name": "is_reversed", "comment": null}}, "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.yoda.loyalty__chainperks.referral_receipts"}, "source.yoda.loyalty__chainperks.referral_shares": {"metadata": {"type": "view", "schema": "chainperks", "name": "referral_shares", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "referral_code_id": {"type": "long", "index": 4, "name": "referral_code_id", "comment": null}, "customer_id": {"type": "long", "index": 5, "name": "customer_id", "comment": null}, "merchant_id": {"type": "long", "index": 6, "name": "merchant_id", "comment": null}, "type": {"type": "string", "index": 7, "name": "type", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "ip_address": {"type": "string", "index": 10, "name": "ip_address", "comment": null}, "user_agent_id": {"type": "long", "index": 11, "name": "user_agent_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.referral_shares"}, "source.yoda.loyalty__chainperks.referral_snapshots": {"metadata": {"type": "view", "schema": "chainperks", "name": "referral_snapshots", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "merchant_id": {"type": "long", "index": 4, "name": "merchant_id", "comment": null}, "day": {"type": "date", "index": 5, "name": "day", "comment": null}, "shares": {"type": "long", "index": 6, "name": "shares", "comment": null}, "facebook_shares": {"type": "long", "index": 7, "name": "facebook_shares", "comment": null}, "twitter_shares": {"type": "long", "index": 8, "name": "twitter_shares", "comment": null}, "email_shares": {"type": "long", "index": 9, "name": "email_shares", "comment": null}, "emails_sent": {"type": "long", "index": 10, "name": "emails_sent", "comment": null}, "emails_viewed": {"type": "long", "index": 11, "name": "emails_viewed", "comment": null}, "links_clicked": {"type": "long", "index": 12, "name": "links_clicked", "comment": null}, "links_clicked_from_facebook": {"type": "long", "index": 13, "name": "links_clicked_from_facebook", "comment": null}, "links_clicked_from_twitter": {"type": "long", "index": 14, "name": "links_clicked_from_twitter", "comment": null}, "links_clicked_from_email": {"type": "long", "index": 15, "name": "links_clicked_from_email", "comment": null}, "orders": {"type": "long", "index": 16, "name": "orders", "comment": null}, "amount_cents": {"type": "long", "index": 17, "name": "amount_cents", "comment": null}, "average_amount_cents": {"type": "long", "index": 18, "name": "average_amount_cents", "comment": null}, "facebook_messenger_shares": {"type": "long", "index": 19, "name": "facebook_messenger_shares", "comment": null}, "sms_shares": {"type": "long", "index": 20, "name": "sms_shares", "comment": null}, "whatsapp_shares": {"type": "long", "index": 21, "name": "whatsapp_shares", "comment": null}, "personal_email_shares": {"type": "long", "index": 22, "name": "personal_email_shares", "comment": null}, "copy_link_shares": {"type": "long", "index": 23, "name": "copy_link_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": "source.yoda.loyalty__chainperks.referral_snapshots"}, "source.yoda.loyalty__chainperks.referrals": {"metadata": {"type": "view", "schema": "chainperks", "name": "referrals", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "referral_code_id": {"type": "long", "index": 4, "name": "referral_code_id", "comment": null}, "identity_id": {"type": "long", "index": 5, "name": "identity_id", "comment": null}, "referrer_perk_id": {"type": "long", "index": 6, "name": "referrer_perk_id", "comment": null}, "referred_user_perk_id": {"type": "long", "index": 7, "name": "referred_user_perk_id", "comment": null}, "customer_id": {"type": "long", "index": 8, "name": "customer_id", "comment": null}, "ip_address": {"type": "string", "index": 9, "name": "ip_address", "comment": null}, "user_agent_id": {"type": "long", "index": 10, "name": "user_agent_id", "comment": null}, "campaign_id": {"type": "long", "index": 11, "name": "campaign_id", "comment": null}, "merchant_id": {"type": "long", "index": 12, "name": "merchant_id", "comment": null}, "points_balance": {"type": "long", "index": 13, "name": "points_balance", "comment": null}, "points_earned": {"type": "long", "index": 14, "name": "points_earned", "comment": null}, "created_at": {"type": "timestamp", "index": 15, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 16, "name": "updated_at", "comment": null}, "referring_host": {"type": "string", "index": 17, "name": "referring_host", "comment": null}, "average_amount_cents": {"type": "long", "index": 18, "name": "average_amount_cents", "comment": null}, "amount_cents": {"type": "long", "index": 19, "name": "amount_cents", "comment": null}, "orders": {"type": "long", "index": 20, "name": "orders", "comment": null}, "currency": {"type": "string", "index": 21, "name": "currency", "comment": null}, "completed_at": {"type": "timestamp", "index": 22, "name": "completed_at", "comment": null}, "link_share_type": {"type": "string", "index": 23, "name": "link_share_type", "comment": null}, "manually_override_status": {"type": "long", "index": 24, "name": "manually_override_status", "comment": null}, "external_product_id": {"type": "string", "index": 25, "name": "external_product_id", "comment": null}, "is_apple_private_relay_ip": {"type": "boolean", "index": 26, "name": "is_apple_private_relay_ip", "comment": null}, "email": {"type": "string", "index": 27, "name": "email", "comment": null}}, "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.yoda.loyalty__chainperks.referrals"}, "source.yoda.loyalty__chainperks.refund_items": {"metadata": {"type": "view", "schema": "chainperks", "name": "refund_items", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "refund_id": {"type": "long", "index": 4, "name": "refund_id", "comment": null}, "purchase_item_id": {"type": "long", "index": 5, "name": "purchase_item_id", "comment": null}, "quantity": {"type": "long", "index": 6, "name": "quantity", "comment": null}, "third_party_id": {"type": "string", "index": 7, "name": "third_party_id", "comment": null}, "discount_allocation_amount_cents": {"type": "long", "index": 8, "name": "discount_allocation_amount_cents", "comment": null}}, "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.yoda.loyalty__chainperks.refund_items"}, "source.yoda.loyalty__chainperks.refunds": {"metadata": {"type": "view", "schema": "chainperks", "name": "refunds", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "purchase_id": {"type": "long", "index": 4, "name": "purchase_id", "comment": null}, "amount_cents": {"type": "long", "index": 5, "name": "amount_cents", "comment": null}, "refund_id": {"type": "string", "index": 6, "name": "refund_id", "comment": null}, "currency": {"type": "string", "index": 7, "name": "currency", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "total_amount": {"type": "double", "index": 10, "name": "total_amount", "comment": null}, "gift_card_cents": {"type": "long", "index": 11, "name": "gift_card_cents", "comment": null}, "swell_gift_card_cents": {"type": "long", "index": 12, "name": "swell_gift_card_cents", "comment": null}, "gift_card_amount": {"type": "double", "index": 13, "name": "gift_card_amount", "comment": null}, "swell_gift_card_amount": {"type": "double", "index": 14, "name": "swell_gift_card_amount", "comment": null}, "amount_cents_in_shopper_currency": {"type": "long", "index": 15, "name": "amount_cents_in_shopper_currency", "comment": null}}, "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.yoda.loyalty__chainperks.refunds"}, "source.yoda.loyalty__chainperks.subscriptions": {"metadata": {"type": "view", "schema": "chainperks", "name": "subscriptions", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "merchant_id": {"type": "long", "index": 4, "name": "merchant_id", "comment": null}, "plan_id": {"type": "long", "index": 5, "name": "plan_id", "comment": null}, "base_price_cents": {"type": "long", "index": 6, "name": "base_price_cents", "comment": null}, "per_order_price_cents": {"type": "long", "index": 7, "name": "per_order_price_cents", "comment": null}, "included_orders": {"type": "long", "index": 8, "name": "included_orders", "comment": null}, "recurring_charge_id": {"type": "string", "index": 9, "name": "recurring_charge_id", "comment": null}, "current": {"type": "boolean", "index": 10, "name": "current", "comment": null}, "overdue": {"type": "boolean", "index": 11, "name": "overdue", "comment": null}, "last_usage_charge_at": {"type": "timestamp", "index": 12, "name": "last_usage_charge_at", "comment": null}, "manual_price_cents": {"type": "long", "index": 13, "name": "manual_price_cents", "comment": null}, "billing_provider": {"type": "string", "index": 14, "name": "billing_provider", "comment": null}, "created_at": {"type": "timestamp", "index": 15, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 16, "name": "updated_at", "comment": null}, "was_current": {"type": "boolean", "index": 17, "name": "was_current", "comment": null}, "percentage_of_redemptions": {"type": "long", "index": 18, "name": "percentage_of_redemptions", "comment": null}, "percentage_of_referrals": {"type": "long", "index": 19, "name": "percentage_of_referrals", "comment": null}, "pending": {"type": "boolean", "index": 20, "name": "pending", "comment": null}, "charge_status": {"type": "string", "index": 21, "name": "charge_status", "comment": null}}, "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.yoda.loyalty__chainperks.subscriptions"}, "source.yoda.loyalty__chainperks.user_actions": {"metadata": {"type": "view", "schema": "chainperks", "name": "user_actions", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"type": "string", "index": 2, "name": "data_primary_key_524fd5cd8814c3069c72dac0f300db96", "comment": null}, "updated_at": {"type": "timestamp", "index": 3, "name": "updated_at", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "applied_to_campaigns": {"type": "boolean", "index": 5, "name": "applied_to_campaigns", "comment": null}, "campaign_id": {"type": "long", "index": 6, "name": "campaign_id", "comment": null}, "customer_id": {"type": "long", "index": 7, "name": "customer_id", "comment": null}, "email": {"type": "string", "index": 8, "name": "email", "comment": null}, "has_swell_user": {"type": "boolean", "index": 9, "name": "has_swell_user", "comment": null}, "history_title": {"type": "string", "index": 10, "name": "history_title", "comment": null}, "id": {"type": "long", "index": 11, "name": "id", "comment": null}, "ip_address": {"type": "string", "index": 12, "name": "ip_address", "comment": null}, "merchant_id": {"type": "long", "index": 13, "name": "merchant_id", "comment": null}, "metadata": {"type": "string", "index": 14, "name": "metadata", "comment": null}, "name": {"type": "string", "index": 15, "name": "name", "comment": null}, "parent_perk_id": {"type": "long", "index": 16, "name": "parent_perk_id", "comment": null}, "referral_id": {"type": "long", "index": 17, "name": "referral_id", "comment": null}, "reward_points": {"type": "long", "index": 18, "name": "reward_points", "comment": null}, "synced_to_analytics": {"type": "boolean", "index": 19, "name": "synced_to_analytics", "comment": null}, "third_party_id": {"type": "string", "index": 20, "name": "third_party_id", "comment": null}, "type": {"type": "string", "index": 21, "name": "type", "comment": null}, "user_agent_id": {"type": "long", "index": 22, "name": "user_agent_id", "comment": null}, "user_id": {"type": "long", "index": 23, "name": "user_id", "comment": null}, "action_creation_time": {"type": "timestamp", "index": 24, "name": "action_creation_time", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__chainperks.user_actions"}, "source.yoda.loyalty__chainperks.user_agents": {"metadata": {"type": "view", "schema": "chainperks", "name": "user_agents", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "user_agent": {"type": "string", "index": 4, "name": "user_agent", "comment": null}, "user_agent_hash": {"type": "string", "index": 5, "name": "user_agent_hash", "comment": null}}, "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.yoda.loyalty__chainperks.user_agents"}, "source.yoda.loyalty__chainperks.vip_tiers": {"metadata": {"type": "view", "schema": "chainperks", "name": "vip_tiers", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "merchant_id": {"type": "long", "index": 4, "name": "merchant_id", "comment": null}, "rank": {"type": "long", "index": 5, "name": "rank", "comment": null}, "name": {"type": "string", "index": 6, "name": "name", "comment": null}, "description": {"type": "string", "index": 7, "name": "description", "comment": null}, "currency": {"type": "string", "index": 8, "name": "currency", "comment": null}, "points_multiplier": {"type": "double", "index": 9, "name": "points_multiplier", "comment": null}, "redemption_option_id": {"type": "long", "index": 10, "name": "redemption_option_id", "comment": null}, "reward_points": {"type": "long", "index": 11, "name": "reward_points", "comment": null}, "earned_title": {"type": "string", "index": 12, "name": "earned_title", "comment": null}, "background_image_id": {"type": "long", "index": 13, "name": "background_image_id", "comment": null}, "should_mirror_entry": {"type": "boolean", "index": 14, "name": "should_mirror_entry", "comment": null}, "type": {"type": "string", "index": 15, "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.yoda.loyalty__chainperks.vip_tiers"}, "source.yoda.loyalty__chainperks.vip_tiers_settings": {"metadata": {"type": "view", "schema": "chainperks", "name": "vip_tiers_settings", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "merchant_id": {"type": "long", "index": 4, "name": "merchant_id", "comment": null}, "type": {"type": "string", "index": 5, "name": "type", "comment": null}, "last_enabled_type": {"type": "string", "index": 6, "name": "last_enabled_type", "comment": null}, "entry_fulfillment_timeframe": {"type": "long", "index": 7, "name": "entry_fulfillment_timeframe", "comment": null}, "custom_start_date": {"type": "timestamp", "index": 8, "name": "custom_start_date", "comment": null}, "is_enabled": {"type": "boolean", "index": 9, "name": "is_enabled", "comment": null}, "dropping_policy": {"type": "long", "index": 10, "name": "dropping_policy", "comment": null}, "at_risk_reminder_in_months": {"type": "long", "index": 11, "name": "at_risk_reminder_in_months", "comment": null}, "sync_to_platform": {"type": "boolean", "index": 12, "name": "sync_to_platform", "comment": null}, "delay_purchase_eligibility_enabled": {"type": "boolean", "index": 13, "name": "delay_purchase_eligibility_enabled", "comment": null}, "delay_purchase_eligibility_days": {"type": "long", "index": 14, "name": "delay_purchase_eligibility_days", "comment": null}, "include_actions_pre_opt_in": {"type": "boolean", "index": 15, "name": "include_actions_pre_opt_in", "comment": null}, "tier_expiring_reminder_days": {"type": "string", "index": 16, "name": "tier_expiring_reminder_days", "comment": null}, "created_at": {"type": "timestamp", "index": 17, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 18, "name": "updated_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.yoda.loyalty__chainperks.vip_tiers_settings"}, "source.yoda.loyalty__chainperks.vip_tiers_thresholds": {"metadata": {"type": "view", "schema": "chainperks", "name": "vip_tiers_thresholds", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "merchant_id": {"type": "long", "index": 4, "name": "merchant_id", "comment": null}, "tier_id": {"type": "long", "index": 5, "name": "tier_id", "comment": null}, "type": {"type": "string", "index": 6, "name": "type", "comment": null}, "purchases_made": {"type": "long", "index": 7, "name": "purchases_made", "comment": null}, "referrals_completed": {"type": "long", "index": 8, "name": "referrals_completed", "comment": null}, "points_earned": {"type": "long", "index": 9, "name": "points_earned", "comment": null}, "amount_spent_cents": {"type": "long", "index": 10, "name": "amount_spent_cents", "comment": null}, "campaign_completed": {"type": "long", "index": 11, "name": "campaign_completed", "comment": null}, "requirements_needed": {"type": "long", "index": 12, "name": "requirements_needed", "comment": null}, "created_at": {"type": "timestamp", "index": 13, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 14, "name": "updated_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.yoda.loyalty__chainperks.vip_tiers_thresholds"}, "source.yoda.loyalty__chainperks.yotpo_platform_accounts": {"metadata": {"type": "view", "schema": "chainperks", "name": "yotpo_platform_accounts", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "app_key": {"type": "string", "index": 4, "name": "app_key", "comment": null}, "org_key": {"type": "string", "index": 5, "name": "org_key", "comment": null}, "app_secret": {"type": "string", "index": 6, "name": "app_secret", "comment": null}, "merchant_id": {"type": "long", "index": 7, "name": "merchant_id", "comment": null}, "created_at": {"type": "timestamp", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_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.yoda.loyalty__chainperks.yotpo_platform_accounts"}, "source.yoda.analytics__bi_rivery.partner_manager_goals": {"metadata": {"type": "table", "schema": "bi_rivery", "name": "partner_manager_goals", "database": null, "comment": null, "owner": "root"}, "columns": {"quarter": {"type": "date", "index": 0, "name": "quarter", "comment": null}, "original_referrer_owner_id": {"type": "string", "index": 1, "name": "original_referrer_owner_id", "comment": null}, "booking_goal": {"type": "double", "index": 2, "name": "booking_goal", "comment": null}, "sal_goal": {"type": "double", "index": 3, "name": "sal_goal", "comment": null}, "partner_manager": {"type": "string", "index": 4, "name": "partner_manager", "comment": null}, "manager": {"type": "string", "index": 5, "name": "manager", "comment": null}, "second_level_manager": {"type": "string", "index": 6, "name": "second_level_manager", "comment": null}, "team": {"type": "string", "index": 7, "name": "team", "comment": null}, "river_run_time": {"type": "string", "index": 8, "name": "river_run_time", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__bi_rivery.partner_manager_goals"}, "source.yoda.analytics__bi_rivery.stg_nerd_acv_goals": {"metadata": {"type": "table", "schema": "bi_rivery", "name": "stg_nerd_acv_goals", "database": null, "comment": null, "owner": "root"}, "columns": {"month": {"type": "date", "index": 0, "name": "month", "comment": null}, "deal_type": {"type": "string", "index": 1, "name": "deal_type", "comment": null}, "revenue_stream": {"type": "string", "index": 2, "name": "revenue_stream", "comment": null}, "segment": {"type": "string", "index": 3, "name": "segment", "comment": null}, "region": {"type": "string", "index": 4, "name": "region", "comment": null}, "demand_gen_channel": {"type": "string", "index": 5, "name": "demand_gen_channel", "comment": null}, "product": {"type": "string", "index": 6, "name": "product", "comment": null}, "monthly_goal": {"type": "long", "index": 7, "name": "monthly_goal", "comment": null}, "forecast_goal": {"type": "long", "index": 8, "name": "forecast_goal", "comment": null}, "river_run_time": {"type": "timestamp", "index": 9, "name": "river_run_time", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__bi_rivery.stg_nerd_acv_goals"}, "source.yoda.analytics__bi_rivery.stg_nerd_sal_goals": {"metadata": {"type": "table", "schema": "bi_rivery", "name": "stg_nerd_sal_goals", "database": null, "comment": null, "owner": "root"}, "columns": {"month": {"type": "date", "index": 0, "name": "month", "comment": null}, "deal_type": {"type": "string", "index": 1, "name": "deal_type", "comment": null}, "revenue_stream": {"type": "string", "index": 2, "name": "revenue_stream", "comment": null}, "segment": {"type": "string", "index": 3, "name": "segment", "comment": null}, "region": {"type": "string", "index": 4, "name": "region", "comment": null}, "demand_gen_channel": {"type": "string", "index": 5, "name": "demand_gen_channel", "comment": null}, "product": {"type": "string", "index": 6, "name": "product", "comment": null}, "monthly_goal": {"type": "long", "index": 7, "name": "monthly_goal", "comment": null}, "forecast_goal": {"type": "long", "index": 8, "name": "forecast_goal", "comment": null}, "river_run_time": {"type": "timestamp", "index": 9, "name": "river_run_time", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__bi_rivery.stg_nerd_sal_goals"}, "source.yoda.communication__communication.billing_events": {"metadata": {"type": "table", "schema": "communication", "name": "billing_events", "database": null, "comment": null, "owner": null}, "columns": {"processing_time": {"type": "timestamp", "index": 0, "name": "processing_time", "comment": null}, "store_id": {"type": "string", "index": 1, "name": "store_id", "comment": null}, "source_id": {"type": "string", "index": 2, "name": "source_id", "comment": null}, "source_name": {"type": "string", "index": 3, "name": "source_name", "comment": null}, "operation_type": {"type": "string", "index": 4, "name": "operation_type", "comment": null}, "event_timestamp": {"type": "double", "index": 5, "name": "event_timestamp", "comment": null}, "requested_email_count": {"type": "double", "index": 6, "name": "requested_email_count", "comment": null}, "request_cost": {"type": "double", "index": 7, "name": "request_cost", "comment": null}, "total_email_count": {"type": "double", "index": 8, "name": "total_email_count", "comment": null}, "campaign_email_count": {"type": "double", "index": 9, "name": "campaign_email_count", "comment": null}, "flow_email_count": {"type": "double", "index": 10, "name": "flow_email_count", "comment": null}, "billing_cycle_end_date": {"type": "double", "index": 11, "name": "billing_cycle_end_date", "comment": null}, "price_plan_id": {"type": "double", "index": 12, "name": "price_plan_id", "comment": null}, "ext_price_plan_id": {"type": "string", "index": 13, "name": "ext_price_plan_id", "comment": null}, "discount": {"type": "double", "index": 14, "name": "discount", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 15, "name": "upsolver_schema_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.communication__communication.billing_events"}, "source.yoda.email__communication.campaign_events": {"metadata": {"type": "view", "schema": "communication", "name": "campaign_events", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 1, "name": "processing_time", "comment": null}, "id": {"type": "double", "index": 2, "name": "id", "comment": null}, "audiences": {"type": "array", "index": 3, "name": "audiences", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "reason": {"type": "string", "index": 5, "name": "reason", "comment": null}, "status": {"type": "string", "index": 6, "name": "status", "comment": null}, "channelsettings": {"type": "array", "index": 7, "name": "channelsettings", "comment": null}, "createdbyuserid": {"type": "long", "index": 8, "name": "createdbyuserid", "comment": null}, "createddate": {"type": "long", "index": 9, "name": "createddate", "comment": null}, "isarchived": {"type": "boolean", "index": 10, "name": "isarchived", "comment": null}, "lastupdatebyuserid": {"type": "long", "index": 11, "name": "lastupdatebyuserid", "comment": null}, "lastupdatedate": {"type": "long", "index": 12, "name": "lastupdatedate", "comment": null}, "sendstrategies": {"type": "array", "index": 13, "name": "sendstrategies", "comment": null}, "storeid": {"type": "string", "index": 14, "name": "storeid", "comment": null}, "execution_actualrecipients": {"type": "long", "index": 15, "name": "execution_actualrecipients", "comment": null}, "execution_startdatetime": {"type": "long", "index": 16, "name": "execution_startdatetime", "comment": null}, "execution_totaldelivered": {"type": "long", "index": 17, "name": "execution_totaldelivered", "comment": null}, "execution_totalfailed": {"type": "long", "index": 18, "name": "execution_totalfailed", "comment": null}, "execution_totalrecipients": {"type": "long", "index": 19, "name": "execution_totalrecipients", "comment": null}, "execution_totalskipped": {"type": "long", "index": 20, "name": "execution_totalskipped", "comment": null}, "completiontime": {"type": "long", "index": 21, "name": "completiontime", "comment": null}, "execution_enddatetime": {"type": "long", "index": 22, "name": "execution_enddatetime", "comment": null}, "substatusstate": {"type": "string", "index": 23, "name": "substatusstate", "comment": null}, "audiencesize": {"type": "long", "index": 24, "name": "audiencesize", "comment": null}, "isdeleted": {"type": "boolean", "index": 25, "name": "isdeleted", "comment": null}, "statusdescription": {"type": "string", "index": 26, "name": "statusdescription", "comment": null}, "isstopped": {"type": "boolean", "index": 27, "name": "isstopped", "comment": null}, "execution_totaldeliveredwhenstopped": {"type": "long", "index": 28, "name": "execution_totaldeliveredwhenstopped", "comment": null}, "emailsettings_fromemail": {"type": "string", "index": 29, "name": "emailsettings_fromemail", "comment": null}, "emailsettings_fromlabel": {"type": "string", "index": 30, "name": "emailsettings_fromlabel", "comment": null}, "emailsettings_id": {"type": "long", "index": 31, "name": "emailsettings_id", "comment": null}, "emailsettings_replytoemail": {"type": "string", "index": 32, "name": "emailsettings_replytoemail", "comment": null}, "emailsettings_subject": {"type": "string", "index": 33, "name": "emailsettings_subject", "comment": null}, "emailsettings_templateinstanceid": {"type": "long", "index": 34, "name": "emailsettings_templateinstanceid", "comment": null}, "emailsettings_previewtext": {"type": "string", "index": 35, "name": "emailsettings_previewtext", "comment": null}, "type": {"type": "string", "index": 36, "name": "type", "comment": null}, "campaignattributes": {"type": "array", "index": 37, "name": "campaignattributes", "comment": null}, "batches": {"type": "array", "index": 38, "name": "batches", "comment": null}, "sourcename": {"type": "string", "index": 39, "name": "sourcename", "comment": null}, "sourceid": {"type": "string", "index": 40, "name": "sourceid", "comment": null}, "audienceconditions": {"type": "array", "index": 41, "name": "audienceconditions", "comment": null}}, "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.yoda.email__communication.campaign_events"}, "source.yoda.sms__communication.comm_analytics_data": {"metadata": {"type": "table", "schema": "communication", "name": "comm_analytics_data", "database": null, "comment": null, "owner": "root"}, "columns": {"store_id": {"type": "string", "index": 0, "name": "store_id", "comment": null}, "channel": {"type": "string", "index": 1, "name": "channel", "comment": null}, "source_status": {"type": "string", "index": 2, "name": "source_status", "comment": null}, "source_type": {"type": "string", "index": 3, "name": "source_type", "comment": null}, "source_id": {"type": "string", "index": 4, "name": "source_id", "comment": null}, "sub_source_type": {"type": "string", "index": 5, "name": "sub_source_type", "comment": null}, "source_trigger": {"type": "string", "index": 6, "name": "source_trigger", "comment": null}, "source_message": {"type": "string", "index": 7, "name": "source_message", "comment": null}, "sub_source_id": {"type": "string", "index": 8, "name": "sub_source_id", "comment": null}, "source_name": {"type": "string", "index": 9, "name": "source_name", "comment": null}, "converted_flow_id": {"type": "string", "index": 10, "name": "converted_flow_id", "comment": null}, "source_execution_date": {"type": "timestamp", "index": 11, "name": "source_execution_date", "comment": null}, "source_creation_date": {"type": "timestamp", "index": 12, "name": "source_creation_date", "comment": null}, "aggregation_date": {"type": "timestamp", "index": 13, "name": "aggregation_date", "comment": null}, "total_unsubscribed": {"type": "long", "index": 14, "name": "total_unsubscribed", "comment": null}, "total_sent": {"type": "long", "index": 15, "name": "total_sent", "comment": null}, "message_count": {"type": "long", "index": 16, "name": "message_count", "comment": null}, "total_spent": {"type": "double", "index": 17, "name": "total_spent", "comment": null}, "total_clicks": {"type": "long", "index": 18, "name": "total_clicks", "comment": null}, "total_unique_clicks": {"type": "long", "index": 19, "name": "total_unique_clicks", "comment": null}, "total_orders": {"type": "long", "index": 20, "name": "total_orders", "comment": null}, "total_revenue": {"type": "double", "index": 21, "name": "total_revenue", "comment": null}, "total_subscriptions": {"type": "integer", "index": 22, "name": "total_subscriptions", "comment": null}, "total_active_subscriptions": {"type": "long", "index": 23, "name": "total_active_subscriptions", "comment": null}, "total_delivered": {"type": "long", "index": 24, "name": "total_delivered", "comment": null}, "total_processed": {"type": "long", "index": 25, "name": "total_processed", "comment": null}, "total_open": {"type": "long", "index": 26, "name": "total_open", "comment": null}, "total_unique_open": {"type": "long", "index": 27, "name": "total_unique_open", "comment": null}, "total_deferred": {"type": "long", "index": 28, "name": "total_deferred", "comment": null}, "total_spam": {"type": "long", "index": 29, "name": "total_spam", "comment": null}, "total_failed": {"type": "long", "index": 30, "name": "total_failed", "comment": null}, "total_skipped": {"type": "long", "index": 31, "name": "total_skipped", "comment": null}, "total_smart_sending": {"type": "long", "index": 32, "name": "total_smart_sending", "comment": null}, "total_restricted": {"type": "long", "index": 33, "name": "total_restricted", "comment": null}, "total_suppressed": {"type": "long", "index": 34, "name": "total_suppressed", "comment": null}, "total_bounce": {"type": "long", "index": 35, "name": "total_bounce", "comment": null}, "total_soft_bounce": {"type": "long", "index": 36, "name": "total_soft_bounce", "comment": null}, "total_hard_bounce": {"type": "long", "index": 37, "name": "total_hard_bounce", "comment": null}, "total_drop": {"type": "long", "index": 38, "name": "total_drop", "comment": null}, "transactional_messages": {"type": "long", "index": 39, "name": "transactional_messages", "comment": null}, "marketing_messages": {"type": "long", "index": 40, "name": "marketing_messages", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 1974879992.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__communication.comm_analytics_data"}, "source.yoda.email__communication.delivered_email": {"metadata": {"type": "view", "schema": "communication", "name": "delivered_email", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "delivered_email_id": {"type": "long", "index": 1, "name": "delivered_email_id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "created_date": {"type": "timestamp", "index": 4, "name": "created_date", "comment": null}, "email_address": {"type": "string", "index": 5, "name": "email_address", "comment": null}, "provider_id": {"type": "long", "index": 6, "name": "provider_id", "comment": null}, "reference_id": {"type": "string", "index": 7, "name": "reference_id", "comment": null}, "source_id": {"type": "string", "index": 8, "name": "source_id", "comment": null}, "delivery_status_id": {"type": "long", "index": 9, "name": "delivery_status_id", "comment": null}, "source_name": {"type": "string", "index": 10, "name": "source_name", "comment": null}, "delivery_type_id": {"type": "long", "index": 11, "name": "delivery_type_id", "comment": null}, "status_description": {"type": "string", "index": 12, "name": "status_description", "comment": null}, "sub_user_name": {"type": "string", "index": 13, "name": "sub_user_name", "comment": null}, "ip_pool_name": {"type": "string", "index": 14, "name": "ip_pool_name", "comment": null}, "hash_key": {"type": "string", "index": 15, "name": "hash_key", "comment": null}, "subject": {"type": "string", "index": 16, "name": "subject", "comment": null}, "from_email": {"type": "string", "index": 17, "name": "from_email", "comment": null}, "is_deleted": {"type": "boolean", "index": 18, "name": "is_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.email__communication.delivered_email"}, "source.yoda.email__communication.source_engagement_level_dry_run": {"metadata": {"type": "view", "schema": "communication", "name": "source_engagement_level_dry_run", "database": null, "comment": null, "owner": null}, "columns": {"partition_date": {"type": "date", "index": 0, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 1, "name": "upsolver_schema_version", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "engagement_level": {"type": "string", "index": 3, "name": "engagement_level", "comment": null}, "event_timestamp": {"type": "string", "index": 4, "name": "event_timestamp", "comment": null}, "excluded_audience_ids": {"type": "array", "index": 5, "name": "excluded_audience_ids", "comment": null}, "feature_name": {"type": "string", "index": 6, "name": "feature_name", "comment": null}, "included_audience_ids": {"type": "array", "index": 7, "name": "included_audience_ids", "comment": null}, "source_id": {"type": "string", "index": 8, "name": "source_id", "comment": null}, "store_id": {"type": "string", "index": 9, "name": "store_id", "comment": null}, "engaged_profiles_count": {"type": "long", "index": 10, "name": "engaged_profiles_count", "comment": null}, "total_profiles_count": {"type": "long", "index": 11, "name": "total_profiles_count", "comment": null}, "feature_version": {"type": "long", "index": 12, "name": "feature_version", "comment": null}, "store_on_boarding": {"type": "boolean", "index": 13, "name": "store_on_boarding", "comment": null}}, "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.yoda.email__communication.source_engagement_level_dry_run"}, "source.yoda.loyalty__communication.store_email_activity": {"metadata": {"type": "table", "schema": "communication", "name": "store_email_activity", "database": null, "comment": null, "owner": "root"}, "columns": {"store_id": {"type": "string", "index": 0, "name": "store_id", "comment": null}, "name": {"type": "string", "index": 1, "name": "name", "comment": null}, "start_date": {"type": "string", "index": 2, "name": "start_date", "comment": null}, "campaigns_emails_delivered": {"type": "long", "index": 3, "name": "campaigns_emails_delivered", "comment": null}, "flows_emails_delivered": {"type": "long", "index": 4, "name": "flows_emails_delivered", "comment": null}, "total_emails": {"type": "long", "index": 5, "name": "total_emails", "comment": null}, "test_emails": {"type": "long", "index": 6, "name": "test_emails", "comment": null}, "last_email_delivered": {"type": "string", "index": 7, "name": "last_email_delivered", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 3079783.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__communication.store_email_activity"}, "source.yoda.email__communication.system_email_events": {"metadata": {"type": "table", "schema": "communication", "name": "system_email_events", "database": null, "comment": null, "owner": null}, "columns": {"processing_time": {"type": "timestamp", "index": 0, "name": "processing_time", "comment": null}, "context_reference_id": {"type": "string", "index": 1, "name": "context_reference_id", "comment": null}, "context_store_id": {"type": "string", "index": 2, "name": "context_store_id", "comment": null}, "context_source_id": {"type": "string", "index": 3, "name": "context_source_id", "comment": null}, "email_address": {"type": "string", "index": 4, "name": "email_address", "comment": null}, "context_source_name": {"type": "string", "index": 5, "name": "context_source_name", "comment": null}, "context_delivery_type": {"type": "string", "index": 6, "name": "context_delivery_type", "comment": null}, "event_issuer": {"type": "string", "index": 7, "name": "event_issuer", "comment": null}, "event_type": {"type": "string", "index": 8, "name": "event_type", "comment": null}, "timestamp": {"type": "timestamp", "index": 9, "name": "timestamp", "comment": null}, "error_message": {"type": "string", "index": 10, "name": "error_message", "comment": null}, "mailbox_provider": {"type": "string", "index": 11, "name": "mailbox_provider", "comment": null}, "external_attributes_raw_event": {"type": "string", "index": 12, "name": "external_attributes_raw_event", "comment": null}, "external_attributes_external_event_id": {"type": "string", "index": 13, "name": "external_attributes_external_event_id", "comment": null}, "delivery_data_ip": {"type": "string", "index": 14, "name": "delivery_data_ip", "comment": null}, "delivery_data_esp": {"type": "string", "index": 15, "name": "delivery_data_esp", "comment": null}, "ip_pool_name": {"type": "string", "index": 16, "name": "ip_pool_name", "comment": null}, "sub_user_name": {"type": "string", "index": 17, "name": "sub_user_name", "comment": null}, "engagement_data_ip": {"type": "string", "index": 18, "name": "engagement_data_ip", "comment": null}, "engagement_data_is_bot_event": {"type": "string", "index": 19, "name": "engagement_data_is_bot_event", "comment": null}, "engagement_data_machine_mpp_open": {"type": "string", "index": 20, "name": "engagement_data_machine_mpp_open", "comment": null}, "engagement_data_click_url": {"type": "string", "index": 21, "name": "engagement_data_click_url", "comment": null}, "engagement_data_user_agent_properties_device_type": {"type": "string", "index": 22, "name": "engagement_data_user_agent_properties_device_type", "comment": null}, "engagement_data_user_agent_properties_device": {"type": "string", "index": 23, "name": "engagement_data_user_agent_properties_device", "comment": null}, "engagement_data_user_agent_properties_browser": {"type": "string", "index": 24, "name": "engagement_data_user_agent_properties_browser", "comment": null}, "engagement_data_user_agent_properties_browser_version": {"type": "string", "index": 25, "name": "engagement_data_user_agent_properties_browser_version", "comment": null}, "engagement_data_user_agent_properties_os": {"type": "string", "index": 26, "name": "engagement_data_user_agent_properties_os", "comment": null}, "engagement_data_user_agent_properties_os_version": {"type": "string", "index": 27, "name": "engagement_data_user_agent_properties_os_version", "comment": null}, "engagement_data_user_agent_properties_user_agent_line": {"type": "string", "index": 28, "name": "engagement_data_user_agent_properties_user_agent_line", "comment": null}, "headers_is_replay": {"type": "string", "index": 29, "name": "headers_is_replay", "comment": null}, "headers_event_id": {"type": "string", "index": 30, "name": "headers_event_id", "comment": null}, "headers_event_type": {"type": "string", "index": 31, "name": "headers_event_type", "comment": null}, "headers_time_sent": {"type": "string", "index": 32, "name": "headers_time_sent", "comment": null}, "feedback_code": {"type": "string", "index": 33, "name": "feedback_code", "comment": null}, "productname": {"type": "string", "index": 34, "name": "productname", "comment": null}, "client_attributes": {"type": "array", "index": 35, "name": "client_attributes", "comment": null}, "partition_date": {"type": "date", "index": 36, "name": "partition_date", "comment": null}, "upsolver_schema_version": {"type": "integer", "index": 37, "name": "upsolver_schema_version", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.email__communication.system_email_events"}, "source.yoda.email__communication.template_instance_events": {"metadata": {"type": "table", "schema": "communication", "name": "template_instance_events", "database": null, "comment": null, "owner": null}, "columns": {"processing_time": {"type": "timestamp", "index": 0, "name": "processing_time", "comment": null}, "store_id": {"type": "string", "index": 1, "name": "store_id", "comment": null}, "source_id": {"type": "string", "index": 2, "name": "source_id", "comment": null}, "source_name": {"type": "string", "index": 3, "name": "source_name", "comment": null}, "template_instance_id": {"type": "string", "index": 4, "name": "template_instance_id", "comment": null}, "event_type": {"type": "string", "index": 5, "name": "event_type", "comment": null}, "metadata": {"type": "struct", "index": 6, "name": "metadata", "comment": null}, "partition_date": {"type": "string", "index": 7, "name": "partition_date", "comment": null}}, "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.yoda.email__communication.template_instance_events"}, "source.yoda.email__delivery.authenticated_domain": {"metadata": {"type": "view", "schema": "delivery", "name": "authenticated_domain", "database": null, "comment": null, "owner": null}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "authenticated_domain_id": {"type": "long", "index": 1, "name": "authenticated_domain_id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "domain_name": {"type": "string", "index": 4, "name": "domain_name", "comment": null}, "subdomain": {"type": "string", "index": 5, "name": "subdomain", "comment": null}, "store_id": {"type": "string", "index": 6, "name": "store_id", "comment": null}, "product_id": {"type": "long", "index": 7, "name": "product_id", "comment": null}, "esp_domain_id": {"type": "long", "index": 8, "name": "esp_domain_id", "comment": null}, "domain_status_id": {"type": "long", "index": 9, "name": "domain_status_id", "comment": null}, "dns_records": {"type": "string", "index": 10, "name": "dns_records", "comment": null}}, "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.yoda.email__delivery.authenticated_domain"}, "source.yoda.loyalty__widgetrepodb.customizations": {"metadata": {"type": "view", "schema": "widgetrepodb", "name": "customizations", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "settings_resource_path": {"type": "string", "index": 4, "name": "settings_resource_path", "comment": null}, "css_resource_path": {"type": "string", "index": 5, "name": "css_resource_path", "comment": null}, "created_at": {"type": "string", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "string", "index": 7, "name": "updated_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.yoda.loyalty__widgetrepodb.customizations"}, "source.yoda.loyalty__widgetrepodb.instance_versions": {"metadata": {"type": "view", "schema": "widgetrepodb", "name": "instance_versions", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "instance_id": {"type": "long", "index": 4, "name": "instance_id", "comment": null}, "template_id": {"type": "long", "index": 5, "name": "template_id", "comment": null}, "customization_id": {"type": "long", "index": 6, "name": "customization_id", "comment": null}, "css_override_id": {"type": "long", "index": 7, "name": "css_override_id", "comment": null}, "static_content_id": {"type": "long", "index": 8, "name": "static_content_id", "comment": null}, "created_at": {"type": "string", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "string", "index": 10, "name": "updated_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.yoda.loyalty__widgetrepodb.instance_versions"}, "source.yoda.loyalty__widgetrepodb.instances": {"metadata": {"type": "view", "schema": "widgetrepodb", "name": "instances", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "widget_type_id": {"type": "long", "index": 4, "name": "widget_type_id", "comment": null}, "guid": {"type": "string", "index": 5, "name": "guid", "comment": null}, "name": {"type": "string", "index": 6, "name": "name", "comment": null}, "parent_instance_id": {"type": "long", "index": 7, "name": "parent_instance_id", "comment": null}, "active": {"type": "long", "index": 8, "name": "active", "comment": null}, "auto_update": {"type": "long", "index": 9, "name": "auto_update", "comment": null}, "deleted": {"type": "long", "index": 10, "name": "deleted", "comment": null}, "current_instance_version_id": {"type": "long", "index": 11, "name": "current_instance_version_id", "comment": null}, "created_at": {"type": "string", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "string", "index": 13, "name": "updated_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.yoda.loyalty__widgetrepodb.instances"}, "source.yoda.loyalty__widgetrepodb.static_contents": {"metadata": {"type": "view", "schema": "widgetrepodb", "name": "static_contents", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "resource_path": {"type": "string", "index": 4, "name": "resource_path", "comment": null}, "created_at": {"type": "string", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "string", "index": 6, "name": "updated_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.yoda.loyalty__widgetrepodb.static_contents"}, "source.yoda.loyalty__widgetrepodb.templates": {"metadata": {"type": "view", "schema": "widgetrepodb", "name": "templates", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "widget_type_id": {"type": "long", "index": 4, "name": "widget_type_id", "comment": null}, "resource_path": {"type": "string", "index": 5, "name": "resource_path", "comment": null}, "customization_schema_path": {"type": "string", "index": 6, "name": "customization_schema_path", "comment": null}, "version": {"type": "string", "index": 7, "name": "version", "comment": null}, "created_at": {"type": "string", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "string", "index": 9, "name": "updated_at", "comment": null}, "dependency_group_id": {"type": "long", "index": 10, "name": "dependency_group_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__widgetrepodb.templates"}, "source.yoda.loyalty__widgetrepodb.widget_types": {"metadata": {"type": "view", "schema": "widgetrepodb", "name": "widget_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "default_template_id": {"type": "long", "index": 5, "name": "default_template_id", "comment": null}, "default_customization_id": {"type": "long", "index": 6, "name": "default_customization_id", "comment": null}, "created_at": {"type": "string", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "string", "index": 8, "name": "updated_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.yoda.loyalty__widgetrepodb.widget_types"}, "source.yoda.infra__costpo.aws_billing_report_raw": {"metadata": {"type": "table", "schema": "costpo", "name": "aws_billing_report_raw", "database": null, "comment": null, "owner": "root"}, "columns": {"identity_line_item_id": {"type": "string", "index": 0, "name": "identity_line_item_id", "comment": null}, "identity_time_interval": {"type": "string", "index": 1, "name": "identity_time_interval", "comment": null}, "bill_invoice_id": {"type": "string", "index": 2, "name": "bill_invoice_id", "comment": null}, "bill_billing_entity": {"type": "string", "index": 3, "name": "bill_billing_entity", "comment": null}, "bill_bill_type": {"type": "string", "index": 4, "name": "bill_bill_type", "comment": null}, "bill_payer_account_id": {"type": "string", "index": 5, "name": "bill_payer_account_id", "comment": null}, "bill_billing_period_start_date": {"type": "timestamp", "index": 6, "name": "bill_billing_period_start_date", "comment": null}, "bill_billing_period_end_date": {"type": "timestamp", "index": 7, "name": "bill_billing_period_end_date", "comment": null}, "line_item_usage_account_id": {"type": "string", "index": 8, "name": "line_item_usage_account_id", "comment": null}, "line_item_line_item_type": {"type": "string", "index": 9, "name": "line_item_line_item_type", "comment": null}, "line_item_usage_start_date": {"type": "timestamp", "index": 10, "name": "line_item_usage_start_date", "comment": null}, "line_item_usage_end_date": {"type": "timestamp", "index": 11, "name": "line_item_usage_end_date", "comment": null}, "line_item_product_code": {"type": "string", "index": 12, "name": "line_item_product_code", "comment": null}, "line_item_usage_type": {"type": "string", "index": 13, "name": "line_item_usage_type", "comment": null}, "line_item_operation": {"type": "string", "index": 14, "name": "line_item_operation", "comment": null}, "line_item_availability_zone": {"type": "string", "index": 15, "name": "line_item_availability_zone", "comment": null}, "line_item_resource_id": {"type": "string", "index": 16, "name": "line_item_resource_id", "comment": null}, "line_item_usage_amount": {"type": "double", "index": 17, "name": "line_item_usage_amount", "comment": null}, "line_item_normalization_factor": {"type": "double", "index": 18, "name": "line_item_normalization_factor", "comment": null}, "line_item_normalized_usage_amount": {"type": "double", "index": 19, "name": "line_item_normalized_usage_amount", "comment": null}, "line_item_currency_code": {"type": "string", "index": 20, "name": "line_item_currency_code", "comment": null}, "line_item_unblended_rate": {"type": "string", "index": 21, "name": "line_item_unblended_rate", "comment": null}, "line_item_unblended_cost": {"type": "double", "index": 22, "name": "line_item_unblended_cost", "comment": null}, "line_item_blended_rate": {"type": "string", "index": 23, "name": "line_item_blended_rate", "comment": null}, "line_item_blended_cost": {"type": "double", "index": 24, "name": "line_item_blended_cost", "comment": null}, "line_item_line_item_description": {"type": "string", "index": 25, "name": "line_item_line_item_description", "comment": null}, "line_item_tax_type": {"type": "string", "index": 26, "name": "line_item_tax_type", "comment": null}, "line_item_net_unblended_rate": {"type": "string", "index": 27, "name": "line_item_net_unblended_rate", "comment": null}, "line_item_net_unblended_cost": {"type": "double", "index": 28, "name": "line_item_net_unblended_cost", "comment": null}, "line_item_legal_entity": {"type": "string", "index": 29, "name": "line_item_legal_entity", "comment": null}, "product_product_name": {"type": "string", "index": 30, "name": "product_product_name", "comment": null}, "product_purchase_option": {"type": "string", "index": 31, "name": "product_purchase_option", "comment": null}, "product_alarm_type": {"type": "string", "index": 32, "name": "product_alarm_type", "comment": null}, "product_availability": {"type": "string", "index": 33, "name": "product_availability", "comment": null}, "product_availability_zone": {"type": "string", "index": 34, "name": "product_availability_zone", "comment": null}, "product_bundle": {"type": "string", "index": 35, "name": "product_bundle", "comment": null}, "product_bundle_description": {"type": "string", "index": 36, "name": "product_bundle_description", "comment": null}, "product_bundle_group": {"type": "string", "index": 37, "name": "product_bundle_group", "comment": null}, "product_cache_engine": {"type": "string", "index": 38, "name": "product_cache_engine", "comment": null}, "product_capacitystatus": {"type": "string", "index": 39, "name": "product_capacitystatus", "comment": null}, "product_category": {"type": "string", "index": 40, "name": "product_category", "comment": null}, "product_clock_speed": {"type": "string", "index": 41, "name": "product_clock_speed", "comment": null}, "product_component": {"type": "string", "index": 42, "name": "product_component", "comment": null}, "product_compute_family": {"type": "string", "index": 43, "name": "product_compute_family", "comment": null}, "product_compute_type": {"type": "string", "index": 44, "name": "product_compute_type", "comment": null}, "product_concurrencyscalingfreeusage": {"type": "string", "index": 45, "name": "product_concurrencyscalingfreeusage", "comment": null}, "product_counts_against_quota": {"type": "string", "index": 46, "name": "product_counts_against_quota", "comment": null}, "product_cputype": {"type": "string", "index": 47, "name": "product_cputype", "comment": null}, "product_current_generation": {"type": "string", "index": 48, "name": "product_current_generation", "comment": null}, "product_data": {"type": "string", "index": 49, "name": "product_data", "comment": null}, "product_data_transfer_quota": {"type": "string", "index": 50, "name": "product_data_transfer_quota", "comment": null}, "product_database_engine": {"type": "string", "index": 51, "name": "product_database_engine", "comment": null}, "product_datastore_storagetype": {"type": "string", "index": 52, "name": "product_datastore_storagetype", "comment": null}, "product_dedicated_ebs_throughput": {"type": "string", "index": 53, "name": "product_dedicated_ebs_throughput", "comment": null}, "product_deployment_option": {"type": "string", "index": 54, "name": "product_deployment_option", "comment": null}, "product_description": {"type": "string", "index": 55, "name": "product_description", "comment": null}, "product_durability": {"type": "string", "index": 56, "name": "product_durability", "comment": null}, "product_ecu": {"type": "string", "index": 57, "name": "product_ecu", "comment": null}, "product_endpoint": {"type": "string", "index": 58, "name": "product_endpoint", "comment": null}, "product_endpoint_type": {"type": "string", "index": 59, "name": "product_endpoint_type", "comment": null}, "product_engine_code": {"type": "string", "index": 60, "name": "product_engine_code", "comment": null}, "product_enhanced_networking_supported": {"type": "string", "index": 61, "name": "product_enhanced_networking_supported", "comment": null}, "product_event_type": {"type": "string", "index": 62, "name": "product_event_type", "comment": null}, "product_execution_frequency": {"type": "string", "index": 63, "name": "product_execution_frequency", "comment": null}, "product_execution_location": {"type": "string", "index": 64, "name": "product_execution_location", "comment": null}, "product_fee_code": {"type": "string", "index": 65, "name": "product_fee_code", "comment": null}, "product_fee_description": {"type": "string", "index": 66, "name": "product_fee_description", "comment": null}, "product_free_overage": {"type": "string", "index": 67, "name": "product_free_overage", "comment": null}, "product_frequency_mode": {"type": "string", "index": 68, "name": "product_frequency_mode", "comment": null}, "product_from_location": {"type": "string", "index": 69, "name": "product_from_location", "comment": null}, "product_from_location_type": {"type": "string", "index": 70, "name": "product_from_location_type", "comment": null}, "product_gpu": {"type": "string", "index": 71, "name": "product_gpu", "comment": null}, "product_gpu_memory": {"type": "string", "index": 72, "name": "product_gpu_memory", "comment": null}, "product_granularity": {"type": "string", "index": 73, "name": "product_granularity", "comment": null}, "product_group": {"type": "string", "index": 74, "name": "product_group", "comment": null}, "product_group_description": {"type": "string", "index": 75, "name": "product_group_description", "comment": null}, "product_insightstype": {"type": "string", "index": 76, "name": "product_insightstype", "comment": null}, "product_instance_family": {"type": "string", "index": 77, "name": "product_instance_family", "comment": null}, "product_instance_name": {"type": "string", "index": 78, "name": "product_instance_name", "comment": null}, "product_instance_type": {"type": "string", "index": 79, "name": "product_instance_type", "comment": null}, "product_instance_type_family": {"type": "string", "index": 80, "name": "product_instance_type_family", "comment": null}, "product_intel_avx2_available": {"type": "string", "index": 81, "name": "product_intel_avx2_available", "comment": null}, "product_intel_avx_available": {"type": "string", "index": 82, "name": "product_intel_avx_available", "comment": null}, "product_intel_turbo_available": {"type": "string", "index": 83, "name": "product_intel_turbo_available", "comment": null}, "product_io": {"type": "string", "index": 84, "name": "product_io", "comment": null}, "product_license": {"type": "string", "index": 85, "name": "product_license", "comment": null}, "product_license_model": {"type": "string", "index": 86, "name": "product_license_model", "comment": null}, "product_location": {"type": "string", "index": 87, "name": "product_location", "comment": null}, "product_location_type": {"type": "string", "index": 88, "name": "product_location_type", "comment": null}, "product_logs_destination": {"type": "string", "index": 89, "name": "product_logs_destination", "comment": null}, "product_max_iops_burst_performance": {"type": "string", "index": 90, "name": "product_max_iops_burst_performance", "comment": null}, "product_max_iopsvolume": {"type": "string", "index": 91, "name": "product_max_iopsvolume", "comment": null}, "product_max_throughputvolume": {"type": "string", "index": 92, "name": "product_max_throughputvolume", "comment": null}, "product_max_volume_size": {"type": "string", "index": 93, "name": "product_max_volume_size", "comment": null}, "product_maximum_extended_storage": {"type": "string", "index": 94, "name": "product_maximum_extended_storage", "comment": null}, "product_memory": {"type": "string", "index": 95, "name": "product_memory", "comment": null}, "product_memory_gib": {"type": "string", "index": 96, "name": "product_memory_gib", "comment": null}, "product_memorytype": {"type": "string", "index": 97, "name": "product_memorytype", "comment": null}, "product_message_delivery_frequency": {"type": "string", "index": 98, "name": "product_message_delivery_frequency", "comment": null}, "product_message_delivery_order": {"type": "string", "index": 99, "name": "product_message_delivery_order", "comment": null}, "product_min_volume_size": {"type": "string", "index": 100, "name": "product_min_volume_size", "comment": null}, "product_network_performance": {"type": "string", "index": 101, "name": "product_network_performance", "comment": null}, "product_normalization_size_factor": {"type": "string", "index": 102, "name": "product_normalization_size_factor", "comment": null}, "product_operating_system": {"type": "string", "index": 103, "name": "product_operating_system", "comment": null}, "product_operation": {"type": "string", "index": 104, "name": "product_operation", "comment": null}, "product_overage_type": {"type": "string", "index": 105, "name": "product_overage_type", "comment": null}, "product_physical_cpu": {"type": "string", "index": 106, "name": "product_physical_cpu", "comment": null}, "product_physical_gpu": {"type": "string", "index": 107, "name": "product_physical_gpu", "comment": null}, "product_physical_processor": {"type": "string", "index": 108, "name": "product_physical_processor", "comment": null}, "product_pre_installed_sw": {"type": "string", "index": 109, "name": "product_pre_installed_sw", "comment": null}, "product_pricing_unit": {"type": "string", "index": 110, "name": "product_pricing_unit", "comment": null}, "product_processor_architecture": {"type": "string", "index": 111, "name": "product_processor_architecture", "comment": null}, "product_processor_features": {"type": "string", "index": 112, "name": "product_processor_features", "comment": null}, "product_product_family": {"type": "string", "index": 113, "name": "product_product_family", "comment": null}, "product_purchaseterm": {"type": "string", "index": 114, "name": "product_purchaseterm", "comment": null}, "product_queue_type": {"type": "string", "index": 115, "name": "product_queue_type", "comment": null}, "product_ratetype": {"type": "string", "index": 116, "name": "product_ratetype", "comment": null}, "product_region": {"type": "string", "index": 117, "name": "product_region", "comment": null}, "product_request_description": {"type": "string", "index": 118, "name": "product_request_description", "comment": null}, "product_request_type": {"type": "string", "index": 119, "name": "product_request_type", "comment": null}, "product_resource_endpoint": {"type": "string", "index": 120, "name": "product_resource_endpoint", "comment": null}, "product_resource_type": {"type": "string", "index": 121, "name": "product_resource_type", "comment": null}, "product_rootvolume": {"type": "string", "index": 122, "name": "product_rootvolume", "comment": null}, "product_routing_target": {"type": "string", "index": 123, "name": "product_routing_target", "comment": null}, "product_routing_type": {"type": "string", "index": 124, "name": "product_routing_type", "comment": null}, "product_running_mode": {"type": "string", "index": 125, "name": "product_running_mode", "comment": null}, "product_servicecode": {"type": "string", "index": 126, "name": "product_servicecode", "comment": null}, "product_servicename": {"type": "string", "index": 127, "name": "product_servicename", "comment": null}, "product_sku": {"type": "string", "index": 128, "name": "product_sku", "comment": null}, "product_software_included": {"type": "string", "index": 129, "name": "product_software_included", "comment": null}, "product_software_type": {"type": "string", "index": 130, "name": "product_software_type", "comment": null}, "product_standard_storage_retention_included": {"type": "string", "index": 131, "name": "product_standard_storage_retention_included", "comment": null}, "product_storage": {"type": "string", "index": 132, "name": "product_storage", "comment": null}, "product_storage_class": {"type": "string", "index": 133, "name": "product_storage_class", "comment": null}, "product_storage_family": {"type": "string", "index": 134, "name": "product_storage_family", "comment": null}, "product_storage_media": {"type": "string", "index": 135, "name": "product_storage_media", "comment": null}, "product_storage_type": {"type": "string", "index": 136, "name": "product_storage_type", "comment": null}, "product_tenancy": {"type": "string", "index": 137, "name": "product_tenancy", "comment": null}, "product_tiertype": {"type": "string", "index": 138, "name": "product_tiertype", "comment": null}, "product_to_location": {"type": "string", "index": 139, "name": "product_to_location", "comment": null}, "product_to_location_type": {"type": "string", "index": 140, "name": "product_to_location_type", "comment": null}, "product_transfer_type": {"type": "string", "index": 141, "name": "product_transfer_type", "comment": null}, "product_type": {"type": "string", "index": 142, "name": "product_type", "comment": null}, "product_usage_family": {"type": "string", "index": 143, "name": "product_usage_family", "comment": null}, "product_usagetype": {"type": "string", "index": 144, "name": "product_usagetype", "comment": null}, "product_uservolume": {"type": "string", "index": 145, "name": "product_uservolume", "comment": null}, "product_vcpu": {"type": "string", "index": 146, "name": "product_vcpu", "comment": null}, "product_version": {"type": "string", "index": 147, "name": "product_version", "comment": null}, "product_volume_api_name": {"type": "string", "index": 148, "name": "product_volume_api_name", "comment": null}, "product_volume_type": {"type": "string", "index": 149, "name": "product_volume_type", "comment": null}, "product_with_active_users": {"type": "string", "index": 150, "name": "product_with_active_users", "comment": null}, "pricing_lease_contract_length": {"type": "string", "index": 151, "name": "pricing_lease_contract_length", "comment": null}, "pricing_offering_class": {"type": "string", "index": 152, "name": "pricing_offering_class", "comment": null}, "pricing_purchase_option": {"type": "string", "index": 153, "name": "pricing_purchase_option", "comment": null}, "pricing_rate_code": {"type": "string", "index": 154, "name": "pricing_rate_code", "comment": null}, "pricing_rate_id": {"type": "string", "index": 155, "name": "pricing_rate_id", "comment": null}, "pricing_currency": {"type": "string", "index": 156, "name": "pricing_currency", "comment": null}, "pricing_public_on_demand_cost": {"type": "double", "index": 157, "name": "pricing_public_on_demand_cost", "comment": null}, "pricing_public_on_demand_rate": {"type": "string", "index": 158, "name": "pricing_public_on_demand_rate", "comment": null}, "pricing_term": {"type": "string", "index": 159, "name": "pricing_term", "comment": null}, "pricing_unit": {"type": "string", "index": 160, "name": "pricing_unit", "comment": null}, "reservation_amortized_upfront_cost_for_usage": {"type": "double", "index": 161, "name": "reservation_amortized_upfront_cost_for_usage", "comment": null}, "reservation_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 162, "name": "reservation_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_effective_cost": {"type": "double", "index": 163, "name": "reservation_effective_cost", "comment": null}, "reservation_end_time": {"type": "string", "index": 164, "name": "reservation_end_time", "comment": null}, "reservation_modification_status": {"type": "string", "index": 165, "name": "reservation_modification_status", "comment": null}, "reservation_net_amortized_upfront_cost_for_usage": {"type": "double", "index": 166, "name": "reservation_net_amortized_upfront_cost_for_usage", "comment": null}, "reservation_net_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 167, "name": "reservation_net_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_net_effective_cost": {"type": "double", "index": 168, "name": "reservation_net_effective_cost", "comment": null}, "reservation_net_recurring_fee_for_usage": {"type": "double", "index": 169, "name": "reservation_net_recurring_fee_for_usage", "comment": null}, "reservation_net_unused_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 170, "name": "reservation_net_unused_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_net_unused_recurring_fee": {"type": "double", "index": 171, "name": "reservation_net_unused_recurring_fee", "comment": null}, "reservation_net_upfront_value": {"type": "double", "index": 172, "name": "reservation_net_upfront_value", "comment": null}, "reservation_normalized_units_per_reservation": {"type": "string", "index": 173, "name": "reservation_normalized_units_per_reservation", "comment": null}, "reservation_number_of_reservations": {"type": "string", "index": 174, "name": "reservation_number_of_reservations", "comment": null}, "reservation_recurring_fee_for_usage": {"type": "double", "index": 175, "name": "reservation_recurring_fee_for_usage", "comment": null}, "reservation_reservation_a_r_n": {"type": "string", "index": 176, "name": "reservation_reservation_a_r_n", "comment": null}, "reservation_start_time": {"type": "string", "index": 177, "name": "reservation_start_time", "comment": null}, "reservation_subscription_id": {"type": "string", "index": 178, "name": "reservation_subscription_id", "comment": null}, "reservation_total_reserved_normalized_units": {"type": "string", "index": 179, "name": "reservation_total_reserved_normalized_units", "comment": null}, "reservation_total_reserved_units": {"type": "string", "index": 180, "name": "reservation_total_reserved_units", "comment": null}, "reservation_units_per_reservation": {"type": "string", "index": 181, "name": "reservation_units_per_reservation", "comment": null}, "reservation_unused_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 182, "name": "reservation_unused_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_unused_normalized_unit_quantity": {"type": "double", "index": 183, "name": "reservation_unused_normalized_unit_quantity", "comment": null}, "reservation_unused_quantity": {"type": "double", "index": 184, "name": "reservation_unused_quantity", "comment": null}, "reservation_unused_recurring_fee": {"type": "double", "index": 185, "name": "reservation_unused_recurring_fee", "comment": null}, "reservation_upfront_value": {"type": "double", "index": 186, "name": "reservation_upfront_value", "comment": null}, "discount_edp_discount": {"type": "double", "index": 187, "name": "discount_edp_discount", "comment": null}, "discount_private_rate_discount": {"type": "double", "index": 188, "name": "discount_private_rate_discount", "comment": null}, "discount_total_discount": {"type": "double", "index": 189, "name": "discount_total_discount", "comment": null}, "savings_plan_total_commitment_to_date": {"type": "double", "index": 190, "name": "savings_plan_total_commitment_to_date", "comment": null}, "savings_plan_savings_plan_a_r_n": {"type": "string", "index": 191, "name": "savings_plan_savings_plan_a_r_n", "comment": null}, "savings_plan_savings_plan_rate": {"type": "double", "index": 192, "name": "savings_plan_savings_plan_rate", "comment": null}, "savings_plan_used_commitment": {"type": "double", "index": 193, "name": "savings_plan_used_commitment", "comment": null}, "savings_plan_savings_plan_effective_cost": {"type": "double", "index": 194, "name": "savings_plan_savings_plan_effective_cost", "comment": null}, "savings_plan_amortized_upfront_commitment_for_billing_period": {"type": "double", "index": 195, "name": "savings_plan_amortized_upfront_commitment_for_billing_period", "comment": null}, "savings_plan_recurring_commitment_for_billing_period": {"type": "double", "index": 196, "name": "savings_plan_recurring_commitment_for_billing_period", "comment": null}, "savings_plan_start_time": {"type": "string", "index": 197, "name": "savings_plan_start_time", "comment": null}, "savings_plan_end_time": {"type": "string", "index": 198, "name": "savings_plan_end_time", "comment": null}, "savings_plan_instance_type_family": {"type": "string", "index": 199, "name": "savings_plan_instance_type_family", "comment": null}, "savings_plan_offering_type": {"type": "string", "index": 200, "name": "savings_plan_offering_type", "comment": null}, "savings_plan_payment_option": {"type": "string", "index": 201, "name": "savings_plan_payment_option", "comment": null}, "savings_plan_purchase_term": {"type": "string", "index": 202, "name": "savings_plan_purchase_term", "comment": null}, "savings_plan_region": {"type": "string", "index": 203, "name": "savings_plan_region", "comment": null}, "savings_plan_net_savings_plan_effective_cost": {"type": "double", "index": 204, "name": "savings_plan_net_savings_plan_effective_cost", "comment": null}, "savings_plan_net_amortized_upfront_commitment_for_billing_period": {"type": "double", "index": 205, "name": "savings_plan_net_amortized_upfront_commitment_for_billing_period", "comment": null}, "savings_plan_net_recurring_commitment_for_billing_period": {"type": "double", "index": 206, "name": "savings_plan_net_recurring_commitment_for_billing_period", "comment": null}, "resource_tags_aws_created_by": {"type": "string", "index": 207, "name": "resource_tags_aws_created_by", "comment": null}, "resource_tags_aws_elasticmapreduce_instance_group_role": {"type": "string", "index": 208, "name": "resource_tags_aws_elasticmapreduce_instance_group_role", "comment": null}, "resource_tags_aws_elasticmapreduce_job_flow_id": {"type": "string", "index": 209, "name": "resource_tags_aws_elasticmapreduce_job_flow_id", "comment": null}, "resource_tags_user_databricks_instance_pool_id": {"type": "string", "index": 210, "name": "resource_tags_user_databricks_instance_pool_id", "comment": null}, "resource_tags_user_docker_compose": {"type": "string", "index": 211, "name": "resource_tags_user_docker_compose", "comment": null}, "resource_tags_user_environment": {"type": "string", "index": 212, "name": "resource_tags_user_environment", "comment": null}, "resource_tags_user_name": {"type": "string", "index": 213, "name": "resource_tags_user_name", "comment": null}, "resource_tags_user_service": {"type": "string", "index": 214, "name": "resource_tags_user_service", "comment": null}, "resource_tags_user_account": {"type": "string", "index": 215, "name": "resource_tags_user_account", "comment": null}, "resource_tags_user_asg": {"type": "string", "index": 216, "name": "resource_tags_user_asg", "comment": null}, "resource_tags_user_cluster_name": {"type": "string", "index": 217, "name": "resource_tags_user_cluster_name", "comment": null}, "resource_tags_user_component": {"type": "string", "index": 218, "name": "resource_tags_user_component", "comment": null}, "resource_tags_user_product_line": {"type": "string", "index": 219, "name": "resource_tags_user_product_line", "comment": null}, "resource_tags_user_sub_componenet": {"type": "string", "index": 220, "name": "resource_tags_user_sub_componenet", "comment": null}, "resource_tags_user_sub_component": {"type": "string", "index": 221, "name": "resource_tags_user_sub_component", "comment": null}, "year": {"type": "integer", "index": 222, "name": "year", "comment": null}, "month": {"type": "integer", "index": 223, "name": "month", "comment": null}}, "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.yoda.infra__costpo.aws_billing_report_raw"}, "source.yoda.infra__costpo.aws_payer_billing_report_raw": {"metadata": {"type": "table", "schema": "costpo", "name": "aws_payer_billing_report_raw", "database": null, "comment": null, "owner": "root"}, "columns": {"identity_line_item_id": {"type": "string", "index": 0, "name": "identity_line_item_id", "comment": null}, "identity_time_interval": {"type": "string", "index": 1, "name": "identity_time_interval", "comment": null}, "bill_invoice_id": {"type": "string", "index": 2, "name": "bill_invoice_id", "comment": null}, "bill_billing_entity": {"type": "string", "index": 3, "name": "bill_billing_entity", "comment": null}, "bill_bill_type": {"type": "string", "index": 4, "name": "bill_bill_type", "comment": null}, "bill_payer_account_id": {"type": "string", "index": 5, "name": "bill_payer_account_id", "comment": null}, "bill_billing_period_start_date": {"type": "timestamp", "index": 6, "name": "bill_billing_period_start_date", "comment": null}, "bill_billing_period_end_date": {"type": "timestamp", "index": 7, "name": "bill_billing_period_end_date", "comment": null}, "line_item_usage_account_id": {"type": "string", "index": 8, "name": "line_item_usage_account_id", "comment": null}, "line_item_line_item_type": {"type": "string", "index": 9, "name": "line_item_line_item_type", "comment": null}, "line_item_usage_start_date": {"type": "timestamp", "index": 10, "name": "line_item_usage_start_date", "comment": null}, "line_item_usage_end_date": {"type": "timestamp", "index": 11, "name": "line_item_usage_end_date", "comment": null}, "line_item_product_code": {"type": "string", "index": 12, "name": "line_item_product_code", "comment": null}, "line_item_usage_type": {"type": "string", "index": 13, "name": "line_item_usage_type", "comment": null}, "line_item_operation": {"type": "string", "index": 14, "name": "line_item_operation", "comment": null}, "line_item_availability_zone": {"type": "string", "index": 15, "name": "line_item_availability_zone", "comment": null}, "line_item_resource_id": {"type": "string", "index": 16, "name": "line_item_resource_id", "comment": null}, "line_item_usage_amount": {"type": "double", "index": 17, "name": "line_item_usage_amount", "comment": null}, "line_item_normalization_factor": {"type": "double", "index": 18, "name": "line_item_normalization_factor", "comment": null}, "line_item_normalized_usage_amount": {"type": "double", "index": 19, "name": "line_item_normalized_usage_amount", "comment": null}, "line_item_currency_code": {"type": "string", "index": 20, "name": "line_item_currency_code", "comment": null}, "line_item_unblended_rate": {"type": "string", "index": 21, "name": "line_item_unblended_rate", "comment": null}, "line_item_unblended_cost": {"type": "double", "index": 22, "name": "line_item_unblended_cost", "comment": null}, "line_item_blended_rate": {"type": "string", "index": 23, "name": "line_item_blended_rate", "comment": null}, "line_item_blended_cost": {"type": "double", "index": 24, "name": "line_item_blended_cost", "comment": null}, "line_item_line_item_description": {"type": "string", "index": 25, "name": "line_item_line_item_description", "comment": null}, "line_item_tax_type": {"type": "string", "index": 26, "name": "line_item_tax_type", "comment": null}, "line_item_net_unblended_rate": {"type": "string", "index": 27, "name": "line_item_net_unblended_rate", "comment": null}, "line_item_net_unblended_cost": {"type": "double", "index": 28, "name": "line_item_net_unblended_cost", "comment": null}, "line_item_legal_entity": {"type": "string", "index": 29, "name": "line_item_legal_entity", "comment": null}, "product_product_name": {"type": "string", "index": 30, "name": "product_product_name", "comment": null}, "product_purchase_option": {"type": "string", "index": 31, "name": "product_purchase_option", "comment": null}, "product_alarm_type": {"type": "string", "index": 32, "name": "product_alarm_type", "comment": null}, "product_availability": {"type": "string", "index": 33, "name": "product_availability", "comment": null}, "product_availability_zone": {"type": "string", "index": 34, "name": "product_availability_zone", "comment": null}, "product_bundle": {"type": "string", "index": 35, "name": "product_bundle", "comment": null}, "product_bundle_description": {"type": "string", "index": 36, "name": "product_bundle_description", "comment": null}, "product_bundle_group": {"type": "string", "index": 37, "name": "product_bundle_group", "comment": null}, "product_cache_engine": {"type": "string", "index": 38, "name": "product_cache_engine", "comment": null}, "product_capacitystatus": {"type": "string", "index": 39, "name": "product_capacitystatus", "comment": null}, "product_category": {"type": "string", "index": 40, "name": "product_category", "comment": null}, "product_clock_speed": {"type": "string", "index": 41, "name": "product_clock_speed", "comment": null}, "product_component": {"type": "string", "index": 42, "name": "product_component", "comment": null}, "product_compute_family": {"type": "string", "index": 43, "name": "product_compute_family", "comment": null}, "product_compute_type": {"type": "string", "index": 44, "name": "product_compute_type", "comment": null}, "product_concurrencyscalingfreeusage": {"type": "string", "index": 45, "name": "product_concurrencyscalingfreeusage", "comment": null}, "product_counts_against_quota": {"type": "string", "index": 46, "name": "product_counts_against_quota", "comment": null}, "product_cputype": {"type": "string", "index": 47, "name": "product_cputype", "comment": null}, "product_current_generation": {"type": "string", "index": 48, "name": "product_current_generation", "comment": null}, "product_data": {"type": "string", "index": 49, "name": "product_data", "comment": null}, "product_data_transfer_quota": {"type": "string", "index": 50, "name": "product_data_transfer_quota", "comment": null}, "product_database_engine": {"type": "string", "index": 51, "name": "product_database_engine", "comment": null}, "product_datastore_storagetype": {"type": "string", "index": 52, "name": "product_datastore_storagetype", "comment": null}, "product_dedicated_ebs_throughput": {"type": "string", "index": 53, "name": "product_dedicated_ebs_throughput", "comment": null}, "product_deployment_option": {"type": "string", "index": 54, "name": "product_deployment_option", "comment": null}, "product_description": {"type": "string", "index": 55, "name": "product_description", "comment": null}, "product_durability": {"type": "string", "index": 56, "name": "product_durability", "comment": null}, "product_ecu": {"type": "string", "index": 57, "name": "product_ecu", "comment": null}, "product_endpoint": {"type": "string", "index": 58, "name": "product_endpoint", "comment": null}, "product_endpoint_type": {"type": "string", "index": 59, "name": "product_endpoint_type", "comment": null}, "product_engine_code": {"type": "string", "index": 60, "name": "product_engine_code", "comment": null}, "product_enhanced_networking_supported": {"type": "string", "index": 61, "name": "product_enhanced_networking_supported", "comment": null}, "product_event_type": {"type": "string", "index": 62, "name": "product_event_type", "comment": null}, "product_execution_frequency": {"type": "string", "index": 63, "name": "product_execution_frequency", "comment": null}, "product_execution_location": {"type": "string", "index": 64, "name": "product_execution_location", "comment": null}, "product_fee_code": {"type": "string", "index": 65, "name": "product_fee_code", "comment": null}, "product_fee_description": {"type": "string", "index": 66, "name": "product_fee_description", "comment": null}, "product_free_overage": {"type": "string", "index": 67, "name": "product_free_overage", "comment": null}, "product_frequency_mode": {"type": "string", "index": 68, "name": "product_frequency_mode", "comment": null}, "product_from_location": {"type": "string", "index": 69, "name": "product_from_location", "comment": null}, "product_from_location_type": {"type": "string", "index": 70, "name": "product_from_location_type", "comment": null}, "product_gpu": {"type": "string", "index": 71, "name": "product_gpu", "comment": null}, "product_gpu_memory": {"type": "string", "index": 72, "name": "product_gpu_memory", "comment": null}, "product_granularity": {"type": "string", "index": 73, "name": "product_granularity", "comment": null}, "product_group": {"type": "string", "index": 74, "name": "product_group", "comment": null}, "product_group_description": {"type": "string", "index": 75, "name": "product_group_description", "comment": null}, "product_insightstype": {"type": "string", "index": 76, "name": "product_insightstype", "comment": null}, "product_instance_family": {"type": "string", "index": 77, "name": "product_instance_family", "comment": null}, "product_instance_name": {"type": "string", "index": 78, "name": "product_instance_name", "comment": null}, "product_instance_type": {"type": "string", "index": 79, "name": "product_instance_type", "comment": null}, "product_instance_type_family": {"type": "string", "index": 80, "name": "product_instance_type_family", "comment": null}, "product_intel_avx2_available": {"type": "string", "index": 81, "name": "product_intel_avx2_available", "comment": null}, "product_intel_avx_available": {"type": "string", "index": 82, "name": "product_intel_avx_available", "comment": null}, "product_intel_turbo_available": {"type": "string", "index": 83, "name": "product_intel_turbo_available", "comment": null}, "product_io": {"type": "string", "index": 84, "name": "product_io", "comment": null}, "product_license": {"type": "string", "index": 85, "name": "product_license", "comment": null}, "product_license_model": {"type": "string", "index": 86, "name": "product_license_model", "comment": null}, "product_location": {"type": "string", "index": 87, "name": "product_location", "comment": null}, "product_location_type": {"type": "string", "index": 88, "name": "product_location_type", "comment": null}, "product_logs_destination": {"type": "string", "index": 89, "name": "product_logs_destination", "comment": null}, "product_max_iops_burst_performance": {"type": "string", "index": 90, "name": "product_max_iops_burst_performance", "comment": null}, "product_max_iopsvolume": {"type": "string", "index": 91, "name": "product_max_iopsvolume", "comment": null}, "product_max_throughputvolume": {"type": "string", "index": 92, "name": "product_max_throughputvolume", "comment": null}, "product_max_volume_size": {"type": "string", "index": 93, "name": "product_max_volume_size", "comment": null}, "product_maximum_extended_storage": {"type": "string", "index": 94, "name": "product_maximum_extended_storage", "comment": null}, "product_memory": {"type": "string", "index": 95, "name": "product_memory", "comment": null}, "product_memory_gib": {"type": "string", "index": 96, "name": "product_memory_gib", "comment": null}, "product_memorytype": {"type": "string", "index": 97, "name": "product_memorytype", "comment": null}, "product_message_delivery_frequency": {"type": "string", "index": 98, "name": "product_message_delivery_frequency", "comment": null}, "product_message_delivery_order": {"type": "string", "index": 99, "name": "product_message_delivery_order", "comment": null}, "product_min_volume_size": {"type": "string", "index": 100, "name": "product_min_volume_size", "comment": null}, "product_network_performance": {"type": "string", "index": 101, "name": "product_network_performance", "comment": null}, "product_normalization_size_factor": {"type": "string", "index": 102, "name": "product_normalization_size_factor", "comment": null}, "product_operating_system": {"type": "string", "index": 103, "name": "product_operating_system", "comment": null}, "product_operation": {"type": "string", "index": 104, "name": "product_operation", "comment": null}, "product_overage_type": {"type": "string", "index": 105, "name": "product_overage_type", "comment": null}, "product_physical_cpu": {"type": "string", "index": 106, "name": "product_physical_cpu", "comment": null}, "product_physical_gpu": {"type": "string", "index": 107, "name": "product_physical_gpu", "comment": null}, "product_physical_processor": {"type": "string", "index": 108, "name": "product_physical_processor", "comment": null}, "product_pre_installed_sw": {"type": "string", "index": 109, "name": "product_pre_installed_sw", "comment": null}, "product_pricing_unit": {"type": "string", "index": 110, "name": "product_pricing_unit", "comment": null}, "product_processor_architecture": {"type": "string", "index": 111, "name": "product_processor_architecture", "comment": null}, "product_processor_features": {"type": "string", "index": 112, "name": "product_processor_features", "comment": null}, "product_product_family": {"type": "string", "index": 113, "name": "product_product_family", "comment": null}, "product_purchaseterm": {"type": "string", "index": 114, "name": "product_purchaseterm", "comment": null}, "product_queue_type": {"type": "string", "index": 115, "name": "product_queue_type", "comment": null}, "product_ratetype": {"type": "string", "index": 116, "name": "product_ratetype", "comment": null}, "product_region": {"type": "string", "index": 117, "name": "product_region", "comment": null}, "product_request_description": {"type": "string", "index": 118, "name": "product_request_description", "comment": null}, "product_request_type": {"type": "string", "index": 119, "name": "product_request_type", "comment": null}, "product_resource_endpoint": {"type": "string", "index": 120, "name": "product_resource_endpoint", "comment": null}, "product_resource_type": {"type": "string", "index": 121, "name": "product_resource_type", "comment": null}, "product_rootvolume": {"type": "string", "index": 122, "name": "product_rootvolume", "comment": null}, "product_routing_target": {"type": "string", "index": 123, "name": "product_routing_target", "comment": null}, "product_routing_type": {"type": "string", "index": 124, "name": "product_routing_type", "comment": null}, "product_running_mode": {"type": "string", "index": 125, "name": "product_running_mode", "comment": null}, "product_servicecode": {"type": "string", "index": 126, "name": "product_servicecode", "comment": null}, "product_servicename": {"type": "string", "index": 127, "name": "product_servicename", "comment": null}, "product_sku": {"type": "string", "index": 128, "name": "product_sku", "comment": null}, "product_software_included": {"type": "string", "index": 129, "name": "product_software_included", "comment": null}, "product_software_type": {"type": "string", "index": 130, "name": "product_software_type", "comment": null}, "product_standard_storage_retention_included": {"type": "string", "index": 131, "name": "product_standard_storage_retention_included", "comment": null}, "product_storage": {"type": "string", "index": 132, "name": "product_storage", "comment": null}, "product_storage_class": {"type": "string", "index": 133, "name": "product_storage_class", "comment": null}, "product_storage_family": {"type": "string", "index": 134, "name": "product_storage_family", "comment": null}, "product_storage_media": {"type": "string", "index": 135, "name": "product_storage_media", "comment": null}, "product_storage_type": {"type": "string", "index": 136, "name": "product_storage_type", "comment": null}, "product_tenancy": {"type": "string", "index": 137, "name": "product_tenancy", "comment": null}, "product_tiertype": {"type": "string", "index": 138, "name": "product_tiertype", "comment": null}, "product_to_location": {"type": "string", "index": 139, "name": "product_to_location", "comment": null}, "product_to_location_type": {"type": "string", "index": 140, "name": "product_to_location_type", "comment": null}, "product_transfer_type": {"type": "string", "index": 141, "name": "product_transfer_type", "comment": null}, "product_type": {"type": "string", "index": 142, "name": "product_type", "comment": null}, "product_usage_family": {"type": "string", "index": 143, "name": "product_usage_family", "comment": null}, "product_usagetype": {"type": "string", "index": 144, "name": "product_usagetype", "comment": null}, "product_uservolume": {"type": "string", "index": 145, "name": "product_uservolume", "comment": null}, "product_vcpu": {"type": "string", "index": 146, "name": "product_vcpu", "comment": null}, "product_version": {"type": "string", "index": 147, "name": "product_version", "comment": null}, "product_volume_api_name": {"type": "string", "index": 148, "name": "product_volume_api_name", "comment": null}, "product_volume_type": {"type": "string", "index": 149, "name": "product_volume_type", "comment": null}, "product_with_active_users": {"type": "string", "index": 150, "name": "product_with_active_users", "comment": null}, "pricing_lease_contract_length": {"type": "string", "index": 151, "name": "pricing_lease_contract_length", "comment": null}, "pricing_offering_class": {"type": "string", "index": 152, "name": "pricing_offering_class", "comment": null}, "pricing_purchase_option": {"type": "string", "index": 153, "name": "pricing_purchase_option", "comment": null}, "pricing_rate_code": {"type": "string", "index": 154, "name": "pricing_rate_code", "comment": null}, "pricing_rate_id": {"type": "string", "index": 155, "name": "pricing_rate_id", "comment": null}, "pricing_currency": {"type": "string", "index": 156, "name": "pricing_currency", "comment": null}, "pricing_public_on_demand_cost": {"type": "double", "index": 157, "name": "pricing_public_on_demand_cost", "comment": null}, "pricing_public_on_demand_rate": {"type": "string", "index": 158, "name": "pricing_public_on_demand_rate", "comment": null}, "pricing_term": {"type": "string", "index": 159, "name": "pricing_term", "comment": null}, "pricing_unit": {"type": "string", "index": 160, "name": "pricing_unit", "comment": null}, "reservation_amortized_upfront_cost_for_usage": {"type": "double", "index": 161, "name": "reservation_amortized_upfront_cost_for_usage", "comment": null}, "reservation_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 162, "name": "reservation_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_effective_cost": {"type": "double", "index": 163, "name": "reservation_effective_cost", "comment": null}, "reservation_end_time": {"type": "string", "index": 164, "name": "reservation_end_time", "comment": null}, "reservation_modification_status": {"type": "string", "index": 165, "name": "reservation_modification_status", "comment": null}, "reservation_net_amortized_upfront_cost_for_usage": {"type": "double", "index": 166, "name": "reservation_net_amortized_upfront_cost_for_usage", "comment": null}, "reservation_net_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 167, "name": "reservation_net_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_net_effective_cost": {"type": "double", "index": 168, "name": "reservation_net_effective_cost", "comment": null}, "reservation_net_recurring_fee_for_usage": {"type": "double", "index": 169, "name": "reservation_net_recurring_fee_for_usage", "comment": null}, "reservation_net_unused_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 170, "name": "reservation_net_unused_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_net_unused_recurring_fee": {"type": "double", "index": 171, "name": "reservation_net_unused_recurring_fee", "comment": null}, "reservation_net_upfront_value": {"type": "double", "index": 172, "name": "reservation_net_upfront_value", "comment": null}, "reservation_normalized_units_per_reservation": {"type": "string", "index": 173, "name": "reservation_normalized_units_per_reservation", "comment": null}, "reservation_number_of_reservations": {"type": "string", "index": 174, "name": "reservation_number_of_reservations", "comment": null}, "reservation_recurring_fee_for_usage": {"type": "double", "index": 175, "name": "reservation_recurring_fee_for_usage", "comment": null}, "reservation_reservation_a_r_n": {"type": "string", "index": 176, "name": "reservation_reservation_a_r_n", "comment": null}, "reservation_start_time": {"type": "string", "index": 177, "name": "reservation_start_time", "comment": null}, "reservation_subscription_id": {"type": "string", "index": 178, "name": "reservation_subscription_id", "comment": null}, "reservation_total_reserved_normalized_units": {"type": "string", "index": 179, "name": "reservation_total_reserved_normalized_units", "comment": null}, "reservation_total_reserved_units": {"type": "string", "index": 180, "name": "reservation_total_reserved_units", "comment": null}, "reservation_units_per_reservation": {"type": "string", "index": 181, "name": "reservation_units_per_reservation", "comment": null}, "reservation_unused_amortized_upfront_fee_for_billing_period": {"type": "double", "index": 182, "name": "reservation_unused_amortized_upfront_fee_for_billing_period", "comment": null}, "reservation_unused_normalized_unit_quantity": {"type": "double", "index": 183, "name": "reservation_unused_normalized_unit_quantity", "comment": null}, "reservation_unused_quantity": {"type": "double", "index": 184, "name": "reservation_unused_quantity", "comment": null}, "reservation_unused_recurring_fee": {"type": "double", "index": 185, "name": "reservation_unused_recurring_fee", "comment": null}, "reservation_upfront_value": {"type": "double", "index": 186, "name": "reservation_upfront_value", "comment": null}, "discount_edp_discount": {"type": "double", "index": 187, "name": "discount_edp_discount", "comment": null}, "discount_private_rate_discount": {"type": "double", "index": 188, "name": "discount_private_rate_discount", "comment": null}, "discount_total_discount": {"type": "double", "index": 189, "name": "discount_total_discount", "comment": null}, "savings_plan_total_commitment_to_date": {"type": "double", "index": 190, "name": "savings_plan_total_commitment_to_date", "comment": null}, "savings_plan_savings_plan_a_r_n": {"type": "string", "index": 191, "name": "savings_plan_savings_plan_a_r_n", "comment": null}, "savings_plan_savings_plan_rate": {"type": "double", "index": 192, "name": "savings_plan_savings_plan_rate", "comment": null}, "savings_plan_used_commitment": {"type": "double", "index": 193, "name": "savings_plan_used_commitment", "comment": null}, "savings_plan_savings_plan_effective_cost": {"type": "double", "index": 194, "name": "savings_plan_savings_plan_effective_cost", "comment": null}, "savings_plan_amortized_upfront_commitment_for_billing_period": {"type": "double", "index": 195, "name": "savings_plan_amortized_upfront_commitment_for_billing_period", "comment": null}, "savings_plan_recurring_commitment_for_billing_period": {"type": "double", "index": 196, "name": "savings_plan_recurring_commitment_for_billing_period", "comment": null}, "savings_plan_start_time": {"type": "string", "index": 197, "name": "savings_plan_start_time", "comment": null}, "savings_plan_end_time": {"type": "string", "index": 198, "name": "savings_plan_end_time", "comment": null}, "savings_plan_instance_type_family": {"type": "string", "index": 199, "name": "savings_plan_instance_type_family", "comment": null}, "savings_plan_offering_type": {"type": "string", "index": 200, "name": "savings_plan_offering_type", "comment": null}, "savings_plan_payment_option": {"type": "string", "index": 201, "name": "savings_plan_payment_option", "comment": null}, "savings_plan_purchase_term": {"type": "string", "index": 202, "name": "savings_plan_purchase_term", "comment": null}, "savings_plan_region": {"type": "string", "index": 203, "name": "savings_plan_region", "comment": null}, "savings_plan_net_savings_plan_effective_cost": {"type": "double", "index": 204, "name": "savings_plan_net_savings_plan_effective_cost", "comment": null}, "savings_plan_net_amortized_upfront_commitment_for_billing_period": {"type": "double", "index": 205, "name": "savings_plan_net_amortized_upfront_commitment_for_billing_period", "comment": null}, "savings_plan_net_recurring_commitment_for_billing_period": {"type": "double", "index": 206, "name": "savings_plan_net_recurring_commitment_for_billing_period", "comment": null}, "resource_tags_aws_created_by": {"type": "string", "index": 207, "name": "resource_tags_aws_created_by", "comment": null}, "resource_tags_aws_elasticmapreduce_instance_group_role": {"type": "string", "index": 208, "name": "resource_tags_aws_elasticmapreduce_instance_group_role", "comment": null}, "resource_tags_aws_elasticmapreduce_job_flow_id": {"type": "string", "index": 209, "name": "resource_tags_aws_elasticmapreduce_job_flow_id", "comment": null}, "resource_tags_user_databricks_instance_pool_id": {"type": "string", "index": 210, "name": "resource_tags_user_databricks_instance_pool_id", "comment": null}, "resource_tags_user_docker_compose": {"type": "string", "index": 211, "name": "resource_tags_user_docker_compose", "comment": null}, "resource_tags_user_environment": {"type": "string", "index": 212, "name": "resource_tags_user_environment", "comment": null}, "resource_tags_user_name": {"type": "string", "index": 213, "name": "resource_tags_user_name", "comment": null}, "resource_tags_user_service": {"type": "string", "index": 214, "name": "resource_tags_user_service", "comment": null}, "resource_tags_user_account": {"type": "string", "index": 215, "name": "resource_tags_user_account", "comment": null}, "resource_tags_user_asg": {"type": "string", "index": 216, "name": "resource_tags_user_asg", "comment": null}, "resource_tags_user_cluster_name": {"type": "string", "index": 217, "name": "resource_tags_user_cluster_name", "comment": null}, "resource_tags_user_component": {"type": "string", "index": 218, "name": "resource_tags_user_component", "comment": null}, "resource_tags_user_product_line": {"type": "string", "index": 219, "name": "resource_tags_user_product_line", "comment": null}, "resource_tags_user_sub_componenet": {"type": "string", "index": 220, "name": "resource_tags_user_sub_componenet", "comment": null}, "resource_tags_user_sub_component": {"type": "string", "index": 221, "name": "resource_tags_user_sub_component", "comment": null}, "resource_tags_user_group": {"type": "string", "index": 222, "name": "resource_tags_user_group", "comment": null}, "resource_tags_user_iac": {"type": "string", "index": 223, "name": "resource_tags_user_iac", "comment": null}, "resource_tags_user_repository": {"type": "string", "index": 224, "name": "resource_tags_user_repository", "comment": null}, "resource_tags_user_team": {"type": "string", "index": 225, "name": "resource_tags_user_team", "comment": null}, "resource_tags_user_feature": {"type": "string", "index": 226, "name": "resource_tags_user_feature", "comment": null}, "resource_tags_user_cast_cluster_id": {"type": "string", "index": 227, "name": "resource_tags_user_cast_cluster_id", "comment": null}, "resource_tags_user_cast_managed_by": {"type": "string", "index": 228, "name": "resource_tags_user_cast_managed_by", "comment": null}, "resource_tags_user_cast_node_id": {"type": "string", "index": 229, "name": "resource_tags_user_cast_node_id", "comment": null}, "resource_tags_user_castai": {"type": "string", "index": 230, "name": "resource_tags_user_castai", "comment": null}, "year": {"type": "integer", "index": 231, "name": "year", "comment": null}, "month": {"type": "integer", "index": 232, "name": "month", "comment": null}}, "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.yoda.infra__costpo.aws_payer_billing_report_raw"}, "source.yoda.infra__costpo.budget": {"metadata": {"type": "table", "schema": "costpo", "name": "budget", "database": null, "comment": null, "owner": "root"}, "columns": {"product_line": {"type": "string", "index": 0, "name": "product_line", "comment": null}, "updated_at": {"type": "timestamp", "index": 1, "name": "updated_at", "comment": null}, "daily": {"type": "double", "index": 2, "name": "daily", "comment": null}}, "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.yoda.infra__costpo.budget"}, "source.yoda.infra__costpo.databricks_cost_raw": {"metadata": {"type": "table", "schema": "costpo", "name": "databricks_cost_raw", "database": null, "comment": null, "owner": "root"}, "columns": {"workspaceId": {"type": "string", "index": 0, "name": "workspaceId", "comment": null}, "timestamp": {"type": "date", "index": 1, "name": "timestamp", "comment": null}, "clusterId": {"type": "string", "index": 2, "name": "clusterId", "comment": null}, "clusterName": {"type": "string", "index": 3, "name": "clusterName", "comment": null}, "clusterNodeType": {"type": "string", "index": 4, "name": "clusterNodeType", "comment": null}, "clusterOwnerUserId": {"type": "string", "index": 5, "name": "clusterOwnerUserId", "comment": null}, "clusterCustomTags": {"type": "string", "index": 6, "name": "clusterCustomTags", "comment": null}, "sku": {"type": "string", "index": 7, "name": "sku", "comment": null}, "dbus": {"type": "float", "index": 8, "name": "dbus", "comment": null}, "machineHours": {"type": "float", "index": 9, "name": "machineHours", "comment": null}, "clusterOwnerUserName": {"type": "string", "index": 10, "name": "clusterOwnerUserName", "comment": null}, "tags": {"type": "string", "index": 11, "name": "tags", "comment": null}}, "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.yoda.infra__costpo.databricks_cost_raw"}, "source.yoda.infra__costpo.kubecost_delta": {"metadata": {"type": "table", "schema": "costpo", "name": "kubecost_delta", "database": null, "comment": null, "owner": "root"}, "columns": {"cpuCoreHours": {"type": "double", "index": 0, "name": "cpuCoreHours", "comment": null}, "cpuCoreRequestAverage": {"type": "double", "index": 1, "name": "cpuCoreRequestAverage", "comment": null}, "cpuCoreUsageAverage": {"type": "double", "index": 2, "name": "cpuCoreUsageAverage", "comment": null}, "cpuCores": {"type": "double", "index": 3, "name": "cpuCores", "comment": null}, "cpuCost": {"type": "double", "index": 4, "name": "cpuCost", "comment": null}, "cpuCostAdjustment": {"type": "double", "index": 5, "name": "cpuCostAdjustment", "comment": null}, "cpuEfficiency": {"type": "double", "index": 6, "name": "cpuEfficiency", "comment": null}, "end": {"type": "string", "index": 7, "name": "end", "comment": null}, "externalCost": {"type": "double", "index": 8, "name": "externalCost", "comment": null}, "gpuCost": {"type": "double", "index": 9, "name": "gpuCost", "comment": null}, "gpuCostAdjustment": {"type": "double", "index": 10, "name": "gpuCostAdjustment", "comment": null}, "gpuCount": {"type": "double", "index": 11, "name": "gpuCount", "comment": null}, "gpuHours": {"type": "double", "index": 12, "name": "gpuHours", "comment": null}, "loadBalancerCost": {"type": "double", "index": 13, "name": "loadBalancerCost", "comment": null}, "loadBalancerCostAdjustment": {"type": "double", "index": 14, "name": "loadBalancerCostAdjustment", "comment": null}, "minutes": {"type": "double", "index": 15, "name": "minutes", "comment": null}, "name": {"type": "string", "index": 16, "name": "name", "comment": null}, "networkCost": {"type": "double", "index": 17, "name": "networkCost", "comment": null}, "networkCostAdjustment": {"type": "double", "index": 18, "name": "networkCostAdjustment", "comment": null}, "networkReceiveBytes": {"type": "double", "index": 19, "name": "networkReceiveBytes", "comment": null}, "networkTransferBytes": {"type": "double", "index": 20, "name": "networkTransferBytes", "comment": null}, "properties": {"type": "struct", "index": 21, "name": "properties", "comment": null}, "pvByteHours": {"type": "double", "index": 22, "name": "pvByteHours", "comment": null}, "pvBytes": {"type": "double", "index": 23, "name": "pvBytes", "comment": null}, "pvCost": {"type": "double", "index": 24, "name": "pvCost", "comment": null}, "pvCostAdjustment": {"type": "double", "index": 25, "name": "pvCostAdjustment", "comment": null}, "pvs": {"type": "string", "index": 26, "name": "pvs", "comment": null}, "ramByteHours": {"type": "double", "index": 27, "name": "ramByteHours", "comment": null}, "ramByteRequestAverage": {"type": "double", "index": 28, "name": "ramByteRequestAverage", "comment": null}, "ramByteUsageAverage": {"type": "double", "index": 29, "name": "ramByteUsageAverage", "comment": null}, "ramBytes": {"type": "double", "index": 30, "name": "ramBytes", "comment": null}, "ramCost": {"type": "double", "index": 31, "name": "ramCost", "comment": null}, "ramCostAdjustment": {"type": "double", "index": 32, "name": "ramCostAdjustment", "comment": null}, "ramEfficiency": {"type": "double", "index": 33, "name": "ramEfficiency", "comment": null}, "rawAllocationOnly": {"type": "struct", "index": 34, "name": "rawAllocationOnly", "comment": null}, "sharedCost": {"type": "double", "index": 35, "name": "sharedCost", "comment": null}, "start": {"type": "string", "index": 36, "name": "start", "comment": null}, "totalCost": {"type": "double", "index": 37, "name": "totalCost", "comment": null}, "totalEfficiency": {"type": "double", "index": 38, "name": "totalEfficiency", "comment": null}, "window": {"type": "struct", "index": 39, "name": "window", "comment": null}, "year": {"type": "integer", "index": 40, "name": "year", "comment": null}, "month": {"type": "integer", "index": 41, "name": "month", "comment": null}, "day": {"type": "integer", "index": 42, "name": "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.yoda.infra__costpo.kubecost_delta"}, "source.yoda.infra__costpo.kubecost_raw": {"metadata": {"type": "table", "schema": "costpo", "name": "kubecost_raw", "database": null, "comment": null, "owner": "root"}, "columns": {"cpuCoreHours": {"type": "double", "index": 0, "name": "cpuCoreHours", "comment": null}, "cpuCoreRequestAverage": {"type": "double", "index": 1, "name": "cpuCoreRequestAverage", "comment": null}, "cpuCoreUsageAverage": {"type": "double", "index": 2, "name": "cpuCoreUsageAverage", "comment": null}, "cpuCores": {"type": "double", "index": 3, "name": "cpuCores", "comment": null}, "cpuCost": {"type": "double", "index": 4, "name": "cpuCost", "comment": null}, "cpuCostAdjustment": {"type": "double", "index": 5, "name": "cpuCostAdjustment", "comment": null}, "cpuEfficiency": {"type": "double", "index": 6, "name": "cpuEfficiency", "comment": null}, "end": {"type": "string", "index": 7, "name": "end", "comment": null}, "externalCost": {"type": "double", "index": 8, "name": "externalCost", "comment": null}, "gpuCost": {"type": "double", "index": 9, "name": "gpuCost", "comment": null}, "gpuCostAdjustment": {"type": "double", "index": 10, "name": "gpuCostAdjustment", "comment": null}, "gpuCount": {"type": "double", "index": 11, "name": "gpuCount", "comment": null}, "gpuHours": {"type": "double", "index": 12, "name": "gpuHours", "comment": null}, "loadBalancerCost": {"type": "double", "index": 13, "name": "loadBalancerCost", "comment": null}, "loadBalancerCostAdjustment": {"type": "double", "index": 14, "name": "loadBalancerCostAdjustment", "comment": null}, "minutes": {"type": "double", "index": 15, "name": "minutes", "comment": null}, "name": {"type": "string", "index": 16, "name": "name", "comment": null}, "networkCost": {"type": "double", "index": 17, "name": "networkCost", "comment": null}, "networkCostAdjustment": {"type": "double", "index": 18, "name": "networkCostAdjustment", "comment": null}, "networkReceiveBytes": {"type": "double", "index": 19, "name": "networkReceiveBytes", "comment": null}, "networkTransferBytes": {"type": "double", "index": 20, "name": "networkTransferBytes", "comment": null}, "properties": {"type": "struct", "index": 21, "name": "properties", "comment": null}, "pvByteHours": {"type": "double", "index": 22, "name": "pvByteHours", "comment": null}, "pvBytes": {"type": "double", "index": 23, "name": "pvBytes", "comment": null}, "pvCost": {"type": "double", "index": 24, "name": "pvCost", "comment": null}, "pvCostAdjustment": {"type": "double", "index": 25, "name": "pvCostAdjustment", "comment": null}, "pvs": {"type": "string", "index": 26, "name": "pvs", "comment": null}, "ramByteHours": {"type": "double", "index": 27, "name": "ramByteHours", "comment": null}, "ramByteRequestAverage": {"type": "double", "index": 28, "name": "ramByteRequestAverage", "comment": null}, "ramByteUsageAverage": {"type": "double", "index": 29, "name": "ramByteUsageAverage", "comment": null}, "ramBytes": {"type": "double", "index": 30, "name": "ramBytes", "comment": null}, "ramCost": {"type": "double", "index": 31, "name": "ramCost", "comment": null}, "ramCostAdjustment": {"type": "double", "index": 32, "name": "ramCostAdjustment", "comment": null}, "ramEfficiency": {"type": "double", "index": 33, "name": "ramEfficiency", "comment": null}, "rawAllocationOnly": {"type": "struct", "index": 34, "name": "rawAllocationOnly", "comment": null}, "sharedCost": {"type": "double", "index": 35, "name": "sharedCost", "comment": null}, "start": {"type": "string", "index": 36, "name": "start", "comment": null}, "totalCost": {"type": "double", "index": 37, "name": "totalCost", "comment": null}, "totalEfficiency": {"type": "double", "index": 38, "name": "totalEfficiency", "comment": null}, "window": {"type": "struct", "index": 39, "name": "window", "comment": null}, "year": {"type": "integer", "index": 40, "name": "year", "comment": null}, "month": {"type": "integer", "index": 41, "name": "month", "comment": null}, "day": {"type": "integer", "index": 42, "name": "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.yoda.infra__costpo.kubecost_raw"}, "source.yoda.infra__costpo.snowflake_automatic_clustering_history": {"metadata": {"type": "table", "schema": "costpo", "name": "snowflake_automatic_clustering_history", "database": null, "comment": null, "owner": "root"}, "columns": {"start_time": {"type": "timestamp", "index": 0, "name": "start_time", "comment": null}, "end_time": {"type": "timestamp", "index": 1, "name": "end_time", "comment": null}, "table_id": {"type": "double", "index": 2, "name": "table_id", "comment": null}, "credits_used": {"type": "double", "index": 3, "name": "credits_used", "comment": null}, "database_id": {"type": "integer", "index": 4, "name": "database_id", "comment": null}, "database_name": {"type": "string", "index": 5, "name": "database_name", "comment": null}, "num_bytes_reclustered": {"type": "double", "index": 6, "name": "num_bytes_reclustered", "comment": null}, "num_rows_reclustered": {"type": "double", "index": 7, "name": "num_rows_reclustered", "comment": null}, "schema_id": {"type": "double", "index": 8, "name": "schema_id", "comment": null}, "schema_name": {"type": "string", "index": 9, "name": "schema_name", "comment": null}, "table_name": {"type": "string", "index": 10, "name": "table_name", "comment": null}, "account": {"type": "string", "index": 11, "name": "account", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__costpo.snowflake_automatic_clustering_history"}, "source.yoda.infra__costpo.snowflake_database_storage_usage_history": {"metadata": {"type": "table", "schema": "costpo", "name": "snowflake_database_storage_usage_history", "database": null, "comment": null, "owner": "root"}, "columns": {"usage_date": {"type": "timestamp", "index": 0, "name": "usage_date", "comment": null}, "database_id": {"type": "integer", "index": 1, "name": "database_id", "comment": null}, "database_name": {"type": "string", "index": 2, "name": "database_name", "comment": null}, "deleted": {"type": "timestamp", "index": 3, "name": "deleted", "comment": null}, "average_database_bytes": {"type": "double", "index": 4, "name": "average_database_bytes", "comment": null}, "average_failsafe_bytes": {"type": "double", "index": 5, "name": "average_failsafe_bytes", "comment": null}, "account": {"type": "string", "index": 6, "name": "account", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__costpo.snowflake_database_storage_usage_history"}, "source.yoda.infra__costpo.snowflake_materialized_view_refresh_history": {"metadata": {"type": "table", "schema": "costpo", "name": "snowflake_materialized_view_refresh_history", "database": null, "comment": null, "owner": "root"}, "columns": {"start_time": {"type": "timestamp", "index": 0, "name": "start_time", "comment": null}, "end_time": {"type": "timestamp", "index": 1, "name": "end_time", "comment": null}, "credits_used": {"type": "double", "index": 2, "name": "credits_used", "comment": null}, "table_id": {"type": "integer", "index": 3, "name": "table_id", "comment": null}, "table_name": {"type": "string", "index": 4, "name": "table_name", "comment": null}, "schema_id": {"type": "double", "index": 5, "name": "schema_id", "comment": null}, "schema_name": {"type": "string", "index": 6, "name": "schema_name", "comment": null}, "database_id": {"type": "integer", "index": 7, "name": "database_id", "comment": null}, "database_name": {"type": "string", "index": 8, "name": "database_name", "comment": null}, "account": {"type": "string", "index": 9, "name": "account", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__costpo.snowflake_materialized_view_refresh_history"}, "source.yoda.infra__costpo.snowflake_queries_statistics": {"metadata": {"type": "table", "schema": "costpo", "name": "snowflake_queries_statistics", "database": null, "comment": null, "owner": "root"}, "columns": {"start_time": {"type": "timestamp", "index": 0, "name": "start_time", "comment": null}, "warehouse_name": {"type": "string", "index": 1, "name": "warehouse_name", "comment": null}, "query_type": {"type": "string", "index": 2, "name": "query_type", "comment": null}, "user_name": {"type": "string", "index": 3, "name": "user_name", "comment": null}, "warehouse_size": {"type": "string", "index": 4, "name": "warehouse_size", "comment": null}, "EXECUTION_STATUS": {"type": "string", "index": 5, "name": "EXECUTION_STATUS", "comment": null}, "total_queries": {"type": "integer", "index": 6, "name": "total_queries", "comment": null}, "min_cluster_cnt": {"type": "integer", "index": 7, "name": "min_cluster_cnt", "comment": null}, "max_cluster_cnt": {"type": "integer", "index": 8, "name": "max_cluster_cnt", "comment": null}, "total_elapsed_p25": {"type": "double", "index": 9, "name": "total_elapsed_p25", "comment": null}, "total_elapsed_p50": {"type": "double", "index": 10, "name": "total_elapsed_p50", "comment": null}, "total_elapsed_p75": {"type": "double", "index": 11, "name": "total_elapsed_p75", "comment": null}, "total_elapsed_p95": {"type": "double", "index": 12, "name": "total_elapsed_p95", "comment": null}, "total_elapsed_avg": {"type": "double", "index": 13, "name": "total_elapsed_avg", "comment": null}, "total_elapsed": {"type": "double", "index": 14, "name": "total_elapsed", "comment": null}, "compilation_time_p25": {"type": "double", "index": 15, "name": "compilation_time_p25", "comment": null}, "compilation_time_p50": {"type": "double", "index": 16, "name": "compilation_time_p50", "comment": null}, "compilation_time_p75": {"type": "double", "index": 17, "name": "compilation_time_p75", "comment": null}, "compilation_time_p95": {"type": "double", "index": 18, "name": "compilation_time_p95", "comment": null}, "compilation_time_avg": {"type": "double", "index": 19, "name": "compilation_time_avg", "comment": null}, "compilation_time": {"type": "double", "index": 20, "name": "compilation_time", "comment": null}, "execution_time_p25": {"type": "double", "index": 21, "name": "execution_time_p25", "comment": null}, "execution_time_p50": {"type": "double", "index": 22, "name": "execution_time_p50", "comment": null}, "execution_time_p75": {"type": "double", "index": 23, "name": "execution_time_p75", "comment": null}, "execution_time_p95": {"type": "double", "index": 24, "name": "execution_time_p95", "comment": null}, "execution_time_avg": {"type": "double", "index": 25, "name": "execution_time_avg", "comment": null}, "execution_time": {"type": "double", "index": 26, "name": "execution_time", "comment": null}, "queue_time_p25": {"type": "double", "index": 27, "name": "queue_time_p25", "comment": null}, "queue_time_p50": {"type": "double", "index": 28, "name": "queue_time_p50", "comment": null}, "queue_time_p75": {"type": "double", "index": 29, "name": "queue_time_p75", "comment": null}, "queue_time_p95": {"type": "double", "index": 30, "name": "queue_time_p95", "comment": null}, "queue_time_avg": {"type": "double", "index": 31, "name": "queue_time_avg", "comment": null}, "queue_time": {"type": "double", "index": 32, "name": "queue_time", "comment": null}, "blocked_time_p25": {"type": "double", "index": 33, "name": "blocked_time_p25", "comment": null}, "blocked_time_p50": {"type": "double", "index": 34, "name": "blocked_time_p50", "comment": null}, "blocked_time_p75": {"type": "double", "index": 35, "name": "blocked_time_p75", "comment": null}, "blocked_time_p95": {"type": "double", "index": 36, "name": "blocked_time_p95", "comment": null}, "blocked_time_avg": {"type": "double", "index": 37, "name": "blocked_time_avg", "comment": null}, "blocked_time": {"type": "double", "index": 38, "name": "blocked_time", "comment": null}, "spilled_to_local_cnt": {"type": "integer", "index": 39, "name": "spilled_to_local_cnt", "comment": null}, "spilled_to_remote_cnt": {"type": "integer", "index": 40, "name": "spilled_to_remote_cnt", "comment": null}, "scanned_from_cache_p25": {"type": "double", "index": 41, "name": "scanned_from_cache_p25", "comment": null}, "scanned_from_cache_p50": {"type": "double", "index": 42, "name": "scanned_from_cache_p50", "comment": null}, "scanned_from_cache_p75": {"type": "double", "index": 43, "name": "scanned_from_cache_p75", "comment": null}, "scanned_from_cache_p95": {"type": "double", "index": 44, "name": "scanned_from_cache_p95", "comment": null}, "scanned_from_cache_avg": {"type": "double", "index": 45, "name": "scanned_from_cache_avg", "comment": null}, "scanned_from_cache": {"type": "double", "index": 46, "name": "scanned_from_cache", "comment": null}, "inbound_data_p25": {"type": "double", "index": 47, "name": "inbound_data_p25", "comment": null}, "inbound_data_p50": {"type": "double", "index": 48, "name": "inbound_data_p50", "comment": null}, "inbound_data_p75": {"type": "double", "index": 49, "name": "inbound_data_p75", "comment": null}, "inbound_data_p95": {"type": "double", "index": 50, "name": "inbound_data_p95", "comment": null}, "inbound_data_avg": {"type": "double", "index": 51, "name": "inbound_data_avg", "comment": null}, "inbound_data": {"type": "double", "index": 52, "name": "inbound_data", "comment": null}, "outbound_data_p25": {"type": "double", "index": 53, "name": "outbound_data_p25", "comment": null}, "outbound_data_p50": {"type": "double", "index": 54, "name": "outbound_data_p50", "comment": null}, "outbound_data_p75": {"type": "double", "index": 55, "name": "outbound_data_p75", "comment": null}, "outbound_data_p95": {"type": "double", "index": 56, "name": "outbound_data_p95", "comment": null}, "outbound_data_avg": {"type": "double", "index": 57, "name": "outbound_data_avg", "comment": null}, "outbound_data": {"type": "double", "index": 58, "name": "outbound_data", "comment": null}, "queries_partition_proning_cnt": {"type": "integer", "index": 59, "name": "queries_partition_proning_cnt", "comment": null}}, "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.yoda.infra__costpo.snowflake_queries_statistics"}, "source.yoda.infra__costpo.snowflake_tag_references": {"metadata": {"type": "table", "schema": "costpo", "name": "snowflake_tag_references", "database": null, "comment": null, "owner": "root"}, "columns": {"column_id": {"type": "integer", "index": 0, "name": "column_id", "comment": null}, "column_name": {"type": "string", "index": 1, "name": "column_name", "comment": null}, "domain": {"type": "string", "index": 2, "name": "domain", "comment": null}, "object_database": {"type": "string", "index": 3, "name": "object_database", "comment": null}, "object_deleted": {"type": "timestamp", "index": 4, "name": "object_deleted", "comment": null}, "object_id": {"type": "integer", "index": 5, "name": "object_id", "comment": null}, "object_name": {"type": "string", "index": 6, "name": "object_name", "comment": null}, "object_schema": {"type": "string", "index": 7, "name": "object_schema", "comment": null}, "tag_database": {"type": "string", "index": 8, "name": "tag_database", "comment": null}, "tag_id": {"type": "string", "index": 9, "name": "tag_id", "comment": null}, "tag_name": {"type": "string", "index": 10, "name": "tag_name", "comment": null}, "tag_schema": {"type": "string", "index": 11, "name": "tag_schema", "comment": null}, "tag_value": {"type": "string", "index": 12, "name": "tag_value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__costpo.snowflake_tag_references"}, "source.yoda.infra__costpo.snowflake_warehouse_events": {"metadata": {"type": "table", "schema": "costpo", "name": "snowflake_warehouse_events", "database": null, "comment": null, "owner": "root"}, "columns": {"timestamp": {"type": "timestamp", "index": 0, "name": "timestamp", "comment": null}, "warehouse_name": {"type": "string", "index": 1, "name": "warehouse_name", "comment": null}, "cluster_number": {"type": "integer", "index": 2, "name": "cluster_number", "comment": null}, "event_name": {"type": "string", "index": 3, "name": "event_name", "comment": null}, "event_state": {"type": "string", "index": 4, "name": "event_state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__costpo.snowflake_warehouse_events"}, "source.yoda.infra__costpo.snowflake_warehouse_metering_history": {"metadata": {"type": "table", "schema": "costpo", "name": "snowflake_warehouse_metering_history", "database": null, "comment": null, "owner": "root"}, "columns": {"start_time": {"type": "timestamp", "index": 0, "name": "start_time", "comment": null}, "end_time": {"type": "timestamp", "index": 1, "name": "end_time", "comment": null}, "warehouse_id": {"type": "double", "index": 2, "name": "warehouse_id", "comment": null}, "warehouse_name": {"type": "string", "index": 3, "name": "warehouse_name", "comment": null}, "credits_used": {"type": "double", "index": 4, "name": "credits_used", "comment": null}, "credits_used_compute": {"type": "double", "index": 5, "name": "credits_used_compute", "comment": null}, "credits_used_cloud_services": {"type": "double", "index": 6, "name": "credits_used_cloud_services", "comment": null}, "account": {"type": "string", "index": 7, "name": "account", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__costpo.snowflake_warehouse_metering_history"}, "source.yoda.infra__costpo.sub_departments_monthly_budget": {"metadata": {"type": "table", "schema": "costpo", "name": "sub_departments_monthly_budget", "database": null, "comment": null, "owner": "root"}, "columns": {"department": {"type": "string", "index": 0, "name": "department", "comment": null}, "department_disply_name": {"type": "string", "index": 1, "name": "department_disply_name", "comment": null}, "change_date": {"type": "timestamp", "index": 2, "name": "change_date", "comment": null}, "budget": {"type": "double", "index": 3, "name": "budget", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__costpo.sub_departments_monthly_budget"}, "source.yoda.infra__costpo.sub_departments_monthyl_budget": {"metadata": {"type": "table", "schema": "costpo", "name": "sub_departments_monthyl_budget", "database": null, "comment": null, "owner": "root"}, "columns": {"department": {"type": "string", "index": 0, "name": "department", "comment": null}, "department_disply_name": {"type": "string", "index": 1, "name": "department_disply_name", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "budget": {"type": "double", "index": 3, "name": "budget", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__costpo.sub_departments_monthyl_budget"}, "source.yoda.infra__costpo.team_budget": {"metadata": {"type": "table", "schema": "costpo", "name": "team_budget", "database": null, "comment": null, "owner": "root"}, "columns": {"updated_at": {"type": "timestamp", "index": 0, "name": "updated_at", "comment": null}, "product_line": {"type": "string", "index": 1, "name": "product_line", "comment": null}, "group": {"type": "string", "index": 2, "name": "group", "comment": null}, "team": {"type": "string", "index": 3, "name": "team", "comment": null}, "budget": {"type": "double", "index": 4, "name": "budget", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.infra__costpo.team_budget"}, "source.yoda.communication__unomi.profiles": {"metadata": {"type": "table", "schema": "unomi", "name": "profiles", "database": null, "comment": null, "owner": "root"}, "columns": {"storeId": {"type": "string", "index": 0, "name": "storeId", "comment": null}, "itemId": {"type": "string", "index": 1, "name": "itemId", "comment": null}, "itemType": {"type": "string", "index": 2, "name": "itemType", "comment": null}, "lists": {"type": "array", "index": 3, "name": "lists", "comment": null}, "mergedWith": {"type": "string", "index": 4, "name": "mergedWith", "comment": null}, "systemProperties": {"type": "struct", "index": 5, "name": "systemProperties", "comment": null}, "properties": {"type": "struct", "index": 6, "name": "properties", "comment": null}}, "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.yoda.communication__unomi.profiles"}, "source.yoda.loyalty__default.currency_rates": {"metadata": {"type": "table", "schema": "default", "name": "currency_rates", "database": null, "comment": null, "owner": "root"}, "columns": {"base": {"type": "string", "index": 0, "name": "base", "comment": null}, "day_of_currency_exchange": {"type": "string", "index": 1, "name": "day_of_currency_exchange", "comment": null}, "date": {"type": "string", "index": 2, "name": "date", "comment": null}, "country": {"type": "string", "index": 3, "name": "country", "comment": null}, "currency": {"type": "double", "index": 4, "name": "currency", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 16221597.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.loyalty__default.currency_rates"}, "source.yoda.platform__default.currency_rates": {"metadata": {"type": "table", "schema": "default", "name": "currency_rates", "database": null, "comment": null, "owner": "root"}, "columns": {"base": {"type": "string", "index": 0, "name": "base", "comment": null}, "day_of_currency_exchange": {"type": "string", "index": 1, "name": "day_of_currency_exchange", "comment": null}, "date": {"type": "string", "index": 2, "name": "date", "comment": null}, "country": {"type": "string", "index": 3, "name": "country", "comment": null}, "currency": {"type": "double", "index": 4, "name": "currency", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 16221597.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.platform__default.currency_rates"}, "source.yoda.platform__default.dim_calendar": {"metadata": {"type": "table", "schema": "default", "name": "dim_calendar", "database": null, "comment": null, "owner": "hadoop"}, "columns": {"id": {"type": "integer", "index": 0, "name": "id", "comment": null}, "date": {"type": "date", "index": 1, "name": "date", "comment": null}, "year": {"type": "integer", "index": 2, "name": "year", "comment": null}, "month": {"type": "integer", "index": 3, "name": "month", "comment": null}, "day": {"type": "integer", "index": 4, "name": "day", "comment": null}, "quarter": {"type": "integer", "index": 5, "name": "quarter", "comment": null}, "week": {"type": "integer", "index": 6, "name": "week", "comment": null}, "day_name": {"type": "string", "index": 7, "name": "day_name", "comment": null}, "month_name": {"type": "string", "index": 8, "name": "month_name", "comment": null}, "holiday_flag": {"type": "boolean", "index": 9, "name": "holiday_flag", "comment": null}, "weekend_flag": {"type": "boolean", "index": 10, "name": "weekend_flag", "comment": null}}, "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.yoda.platform__default.dim_calendar"}, "source.yoda.analytics__default.dim_sf_campaign_member_mapping": {"metadata": {"type": "table", "schema": "default", "name": "dim_sf_campaign_member_mapping", "database": null, "comment": null, "owner": "root"}, "columns": {"campaign_member_mapping_id": {"type": "string", "index": 0, "name": "campaign_member_mapping_id", "comment": null}, "sf_campaign_id": {"type": "string", "index": 1, "name": "sf_campaign_id", "comment": null}, "who_id": {"type": "string", "index": 2, "name": "who_id", "comment": null}, "who_type": {"type": "string", "index": 3, "name": "who_type", "comment": null}, "campaign_member_status": {"type": "string", "index": 4, "name": "campaign_member_status", "comment": null}, "campaign_member_mapping_created_at": {"type": "timestamp", "index": 5, "name": "campaign_member_mapping_created_at", "comment": null}, "campaign_member_mapping_updated_at": {"type": "timestamp", "index": 6, "name": "campaign_member_mapping_updated_at", "comment": null}, "campaign_member_mapping_created_by_sf_user_gk": {"type": "integer", "index": 7, "name": "campaign_member_mapping_created_by_sf_user_gk", "comment": null}, "campaign_member_mapping_created_by_sf_user_id": {"type": "string", "index": 8, "name": "campaign_member_mapping_created_by_sf_user_id", "comment": null}, "campaign_member_mapping_updated_by_sf_user_gk": {"type": "integer", "index": 9, "name": "campaign_member_mapping_updated_by_sf_user_gk", "comment": null}, "campaign_member_mapping_updated_by_sf_user_id": {"type": "string", "index": 10, "name": "campaign_member_mapping_updated_by_sf_user_id", "comment": null}, "first_responded_by_member_date": {"type": "date", "index": 11, "name": "first_responded_by_member_date", "comment": null}, "is_responded_by_member": {"type": "short", "index": 12, "name": "is_responded_by_member", "comment": null}, "is_deleted": {"type": "short", "index": 13, "name": "is_deleted", "comment": null}, "campagin_member_added_at": {"type": "timestamp", "index": 14, "name": "campagin_member_added_at", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 15, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 442949583.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__default.dim_sf_campaign_member_mapping"}, "source.yoda.analytics__default.dim_sf_users_scd": {"metadata": {"type": "table", "schema": "default", "name": "dim_sf_users_scd", "database": null, "comment": null, "owner": "root"}, "columns": {"sf_user_gk": {"type": "integer", "index": 0, "name": "sf_user_gk", "comment": null}, "sf_user_id": {"type": "string", "index": 1, "name": "sf_user_id", "comment": null}, "sf_user_name": {"type": "string", "index": 2, "name": "sf_user_name", "comment": null}, "sf_user_last_name": {"type": "string", "index": 3, "name": "sf_user_last_name", "comment": null}, "sf_user_first_name": {"type": "string", "index": 4, "name": "sf_user_first_name", "comment": null}, "sf_user_full_name": {"type": "string", "index": 5, "name": "sf_user_full_name", "comment": null}, "sf_user_title": {"type": "string", "index": 6, "name": "sf_user_title", "comment": null}, "sf_user_email": {"type": "string", "index": 7, "name": "sf_user_email", "comment": null}, "sf_user_role": {"type": "string", "index": 8, "name": "sf_user_role", "comment": null}, "sf_user_role_id": {"type": "string", "index": 9, "name": "sf_user_role_id", "comment": null}, "is_sales_rep_role": {"type": "short", "index": 10, "name": "is_sales_rep_role", "comment": null}, "is_partner_role": {"type": "short", "index": 11, "name": "is_partner_role", "comment": null}, "sf_user_alias": {"type": "string", "index": 12, "name": "sf_user_alias", "comment": null}, "manager_sf_user_id": {"type": "string", "index": 13, "name": "manager_sf_user_id", "comment": null}, "manager_full_name": {"type": "string", "index": 14, "name": "manager_full_name", "comment": null}, "second_level_manager_sf_user_id": {"type": "string", "index": 15, "name": "second_level_manager_sf_user_id", "comment": null}, "second_level_manager_full_name": {"type": "string", "index": 16, "name": "second_level_manager_full_name", "comment": null}, "sf_user_is_active": {"type": "short", "index": 17, "name": "sf_user_is_active", "comment": null}, "sf_user_last_login_date": {"type": "timestamp", "index": 18, "name": "sf_user_last_login_date", "comment": null}, "sf_user_created_at": {"type": "timestamp", "index": 19, "name": "sf_user_created_at", "comment": null}, "sf_user_updated_at": {"type": "timestamp", "index": 20, "name": "sf_user_updated_at", "comment": null}, "sf_user_created_by_sf_user_id": {"type": "string", "index": 21, "name": "sf_user_created_by_sf_user_id", "comment": null}, "sf_user_updated_by_sf_user_id": {"type": "string", "index": 22, "name": "sf_user_updated_by_sf_user_id", "comment": null}, "from_time": {"type": "timestamp", "index": 23, "name": "from_time", "comment": null}, "to_time": {"type": "timestamp", "index": 24, "name": "to_time", "comment": null}, "scd_cur_ind": {"type": "short", "index": 25, "name": "scd_cur_ind", "comment": null}, "sf_user_location": {"type": "string", "index": 26, "name": "sf_user_location", "comment": null}, "is_super_csm": {"type": "short", "index": 27, "name": "is_super_csm", "comment": null}, "csm_team": {"type": "string", "index": 28, "name": "csm_team", "comment": null}, "is_exclude_from_tracking": {"type": "short", "index": 29, "name": "is_exclude_from_tracking", "comment": null}, "is_marketing_activity_user": {"type": "short", "index": 30, "name": "is_marketing_activity_user", "comment": null}, "is_integration": {"type": "short", "index": 31, "name": "is_integration", "comment": null}, "queue_type": {"type": "string", "index": 32, "name": "queue_type", "comment": null}, "is_queue": {"type": "short", "index": 33, "name": "is_queue", "comment": null}, "dwh_created_at": {"type": "timestamp", "index": 34, "name": "dwh_created_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 1618798.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__default.dim_sf_users_scd"}, "source.yoda.sms__default.fact_agg_sms_user_profile_daily": {"metadata": {"type": "table", "schema": "default", "name": "fact_agg_sms_user_profile_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "user_id": {"type": "long", "index": 1, "name": "user_id", "comment": null}, "user_created_at": {"type": "timestamp", "index": 2, "name": "user_created_at", "comment": null}, "plan": {"type": "string", "index": 3, "name": "plan", "comment": null}, "plan_type": {"type": "string", "index": 4, "name": "plan_type", "comment": null}, "account_id": {"type": "string", "index": 5, "name": "account_id", "comment": null}, "user_start_date_cohort": {"type": "integer", "index": 6, "name": "user_start_date_cohort", "comment": null}, "user_first_usage_date_cohort": {"type": "integer", "index": 7, "name": "user_first_usage_date_cohort", "comment": null}, "total_created_flows": {"type": "long", "index": 8, "name": "total_created_flows", "comment": null}, "total_active_flows": {"type": "long", "index": 9, "name": "total_active_flows", "comment": null}, "total_created_automations": {"type": "long", "index": 10, "name": "total_created_automations", "comment": null}, "total_active_automations": {"type": "long", "index": 11, "name": "total_active_automations", "comment": null}, "total_created_campaigns": {"type": "long", "index": 12, "name": "total_created_campaigns", "comment": null}, "total_active_campaigns": {"type": "long", "index": 13, "name": "total_active_campaigns", "comment": null}, "total_subscribers": {"type": "long", "index": 14, "name": "total_subscribers", "comment": null}, "total_esp_subscribers": {"type": "long", "index": 15, "name": "total_esp_subscribers", "comment": null}, "total_non_esp_subscribers": {"type": "long", "index": 16, "name": "total_non_esp_subscribers", "comment": null}, "total_imported_subscribers": {"type": "long", "index": 17, "name": "total_imported_subscribers", "comment": null}, "total_new_subscribers": {"type": "long", "index": 18, "name": "total_new_subscribers", "comment": null}, "total_unsubscribers": {"type": "long", "index": 19, "name": "total_unsubscribers", "comment": null}, "total_customers": {"type": "long", "index": 20, "name": "total_customers", "comment": null}, "total_new_customers": {"type": "long", "index": 21, "name": "total_new_customers", "comment": null}, "total_messages_sent": {"type": "long", "index": 22, "name": "total_messages_sent", "comment": null}, "total_messages_sent_by_carrier": {"type": "long", "index": 23, "name": "total_messages_sent_by_carrier", "comment": null}, "total_sms_sent": {"type": "long", "index": 24, "name": "total_sms_sent", "comment": null}, "total_sms_sent_by_carrier": {"type": "long", "index": 25, "name": "total_sms_sent_by_carrier", "comment": null}, "total_mms_sent": {"type": "long", "index": 26, "name": "total_mms_sent", "comment": null}, "total_mms_sent_by_carrier": {"type": "long", "index": 27, "name": "total_mms_sent_by_carrier", "comment": null}, "total_automations_messages": {"type": "long", "index": 28, "name": "total_automations_messages", "comment": null}, "total_automations_messages_by_carrier": {"type": "long", "index": 29, "name": "total_automations_messages_by_carrier", "comment": null}, "total_flows_messages": {"type": "long", "index": 30, "name": "total_flows_messages", "comment": null}, "total_flows_messages_by_carrier": {"type": "long", "index": 31, "name": "total_flows_messages_by_carrier", "comment": null}, "total_campaigns_messages": {"type": "long", "index": 32, "name": "total_campaigns_messages", "comment": null}, "total_campaigns_messages_by_carrier": {"type": "long", "index": 33, "name": "total_campaigns_messages_by_carrier", "comment": null}, "total_other_messages": {"type": "long", "index": 34, "name": "total_other_messages", "comment": null}, "total_other_messages_by_carrier": {"type": "long", "index": 35, "name": "total_other_messages_by_carrier", "comment": null}, "total_credits_used": {"type": "decimal(12,4)", "index": 36, "name": "total_credits_used", "comment": null}, "total_sms_credits_used": {"type": "decimal(12,4)", "index": 37, "name": "total_sms_credits_used", "comment": null}, "total_mms_credits_used": {"type": "decimal(12,4)", "index": 38, "name": "total_mms_credits_used", "comment": null}, "total_campaigns_credits_used": {"type": "decimal(12,4)", "index": 39, "name": "total_campaigns_credits_used", "comment": null}, "total_automations_credits_used": {"type": "decimal(12,4)", "index": 40, "name": "total_automations_credits_used", "comment": null}, "total_flows_credits_used": {"type": "decimal(12,4)", "index": 41, "name": "total_flows_credits_used", "comment": null}, "total_other_credits_used": {"type": "decimal(12,4)", "index": 42, "name": "total_other_credits_used", "comment": null}, "total_orders": {"type": "long", "index": 43, "name": "total_orders", "comment": null}, "total_avg_orders_l3m": {"type": "double", "index": 44, "name": "total_avg_orders_l3m", "comment": null}, "total_roi_spend": {"type": "decimal(12,4)", "index": 45, "name": "total_roi_spend", "comment": null}, "total_roi_revenue": {"type": "decimal(12,4)", "index": 46, "name": "total_roi_revenue", "comment": null}, "total_automations_revenue": {"type": "decimal(12,4)", "index": 47, "name": "total_automations_revenue", "comment": null}, "total_campaigns_revenue": {"type": "decimal(12,4)", "index": 48, "name": "total_campaigns_revenue", "comment": null}, "total_flows_revenue": {"type": "decimal(12,4)", "index": 49, "name": "total_flows_revenue", "comment": null}, "total_credits_purchased": {"type": "decimal(12,4)", "index": 50, "name": "total_credits_purchased", "comment": null}, "total_uninstall": {"type": "short", "index": 51, "name": "total_uninstall", "comment": null}, "total_install": {"type": "short", "index": 52, "name": "total_install", "comment": null}, "total_reopened_store": {"type": "short", "index": 53, "name": "total_reopened_store", "comment": null}, "total_closed_store": {"type": "short", "index": 54, "name": "total_closed_store", "comment": null}, "total_phone_verification": {"type": "short", "index": 55, "name": "total_phone_verification", "comment": null}, "total_roi": {"type": "decimal(12,4)", "index": 56, "name": "total_roi", "comment": null}, "total_automations_roi": {"type": "decimal(12,4)", "index": 57, "name": "total_automations_roi", "comment": null}, "total_flows_roi": {"type": "decimal(12,4)", "index": 58, "name": "total_flows_roi", "comment": null}, "total_campaigns_roi": {"type": "decimal(12,4)", "index": 59, "name": "total_campaigns_roi", "comment": null}, "is_active": {"type": "short", "index": 60, "name": "is_active", "comment": null}, "year": {"type": "integer", "index": 61, "name": "year", "comment": null}, "month": {"type": "integer", "index": 62, "name": "month", "comment": null}, "day": {"type": "integer", "index": 63, "name": "day", "comment": null}, "dwh_updated_at": {"type": "timestamp", "index": 64, "name": "dwh_updated_at", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 2943738311.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.sms__default.fact_agg_sms_user_profile_daily"}, "source.yoda.ugc__default.fact_reviews_stores_population_daily": {"metadata": {"type": "table", "schema": "default", "name": "fact_reviews_stores_population_daily", "database": null, "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 0, "name": "date", "comment": null}, "month": {"type": "string", "index": 1, "name": "month", "comment": null}, "app_key": {"type": "string", "index": 2, "name": "app_key", "comment": null}, "store_id": {"type": "integer", "index": 3, "name": "store_id", "comment": null}, "organization_id": {"type": "integer", "index": 4, "name": "organization_id", "comment": null}, "platform_name": {"type": "string", "index": 5, "name": "platform_name", "comment": null}, "platform_group": {"type": "string", "index": 6, "name": "platform_group", "comment": null}, "store_domain": {"type": "string", "index": 7, "name": "store_domain", "comment": null}, "store_name": {"type": "string", "index": 8, "name": "store_name", "comment": null}, "account_cs_segment": {"type": "string", "index": 9, "name": "account_cs_segment", "comment": null}, "account_main_csm_name": {"type": "string", "index": 10, "name": "account_main_csm_name", "comment": null}, "account_main_csm_sf_user_gk": {"type": "integer", "index": 11, "name": "account_main_csm_sf_user_gk", "comment": null}, "account_csm_name": {"type": "string", "index": 12, "name": "account_csm_name", "comment": null}, "account_csm_sf_user_gk": {"type": "integer", "index": 13, "name": "account_csm_sf_user_gk", "comment": null}, "is_orders_l365d": {"type": "integer", "index": 14, "name": "is_orders_l365d", "comment": null}, "latest_order_date": {"type": "date", "index": 15, "name": "latest_order_date", "comment": null}, "store_created_date": {"type": "date", "index": 16, "name": "store_created_date", "comment": null}, "store_reviews_enablement_date": {"type": "date", "index": 17, "name": "store_reviews_enablement_date", "comment": null}, "store_reviews_enablement_period": {"type": "string", "index": 18, "name": "store_reviews_enablement_period", "comment": null}, "uninstalled_date": {"type": "string", "index": 19, "name": "uninstalled_date", "comment": null}, "package": {"type": "string", "index": 20, "name": "package", "comment": null}, "package_group": {"type": "string", "index": 21, "name": "package_group", "comment": null}, "package_type": {"type": "string", "index": 22, "name": "package_type", "comment": null}, "package_category": {"type": "string", "index": 23, "name": "package_category", "comment": null}, "is_ss": {"type": "integer", "index": 24, "name": "is_ss", "comment": null}, "is_annual": {"type": "integer", "index": 25, "name": "is_annual", "comment": null}, "is_created_date": {"type": "integer", "index": 26, "name": "is_created_date", "comment": null}, "is_reviews_enablement_date": {"type": "integer", "index": 27, "name": "is_reviews_enablement_date", "comment": null}, "is_uninstalled_date": {"type": "integer", "index": 28, "name": "is_uninstalled_date", "comment": null}, "is_visited_b2b_page": {"type": "integer", "index": 29, "name": "is_visited_b2b_page", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 11993215507.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.ugc__default.fact_reviews_stores_population_daily"}, "source.yoda.ugc__default.metadata_types": {"metadata": {"type": "view", "schema": "default", "name": "metadata_types", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "value": {"type": "string", "index": 4, "name": "value", "comment": null}, "created_at": {"type": "timestamp", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 6, "name": "updated_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.yoda.ugc__default.metadata_types"}, "source.yoda.ugc__default.mongo_gallery_media": {"metadata": {"type": "table", "schema": "default", "name": "mongo_gallery_media", "database": null, "comment": null, "owner": "root"}, "columns": {"_id": {"type": "string", "index": 0, "name": "_id", "comment": null}, "created_at": {"type": "string", "index": 1, "name": "created_at", "comment": null}, "entry_id": {"type": "string", "index": 2, "name": "entry_id", "comment": null}, "gallery_id": {"type": "string", "index": 3, "name": "gallery_id", "comment": null}, "media_id": {"type": "string", "index": 4, "name": "media_id", "comment": null}, "media_type": {"type": "string", "index": 5, "name": "media_type", "comment": null}, "mention": {"type": "struct", "index": 6, "name": "mention", "comment": null}, "origin_gm_id": {"type": "string", "index": 7, "name": "origin_gm_id", "comment": null}, "permission_request": {"type": "struct", "index": 8, "name": "permission_request", "comment": null}, "published_at": {"type": "string", "index": 9, "name": "published_at", "comment": null}, "review_syndication": {"type": "string", "index": 10, "name": "review_syndication", "comment": null}, "show_in_new": {"type": "string", "index": 11, "name": "show_in_new", "comment": null}, "source_account_app_key": {"type": "string", "index": 12, "name": "source_account_app_key", "comment": null}, "starred": {"type": "string", "index": 13, "name": "starred", "comment": null}, "status": {"type": "string", "index": 14, "name": "status", "comment": null}, "syndicated_image_id": {"type": "string", "index": 15, "name": "syndicated_image_id", "comment": null}, "tagged_products": {"type": "array", "index": 16, "name": "tagged_products", "comment": null}, "text": {"type": "string", "index": 17, "name": "text", "comment": null}, "thumbs_down": {"type": "string", "index": 18, "name": "thumbs_down", "comment": null}, "thumbs_up": {"type": "string", "index": 19, "name": "thumbs_up", "comment": null}, "updated_at": {"type": "string", "index": 20, "name": "updated_at", "comment": null}, "video": {"type": "struct", "index": 21, "name": "video", "comment": null}, "vms_syndication": {"type": "string", "index": 22, "name": "vms_syndication", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 5909510216.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.ugc__default.mongo_gallery_media"}, "source.yoda.infra__default.s3_inventory": {"metadata": {"type": "view", "schema": "default", "name": "s3_inventory", "database": null, "comment": null, "owner": "root"}, "columns": {"bucket": {"type": "string", "index": 0, "name": "bucket", "comment": null}, "key": {"type": "string", "index": 1, "name": "key", "comment": null}, "size": {"type": "long", "index": 2, "name": "size", "comment": null}, "last_modified_date": {"type": "timestamp", "index": 3, "name": "last_modified_date", "comment": null}, "e_tag": {"type": "string", "index": 4, "name": "e_tag", "comment": null}, "storage_class": {"type": "string", "index": 5, "name": "storage_class", "comment": null}, "is_multipart_uploaded": {"type": "boolean", "index": 6, "name": "is_multipart_uploaded", "comment": null}, "replication_status": {"type": "string", "index": 7, "name": "replication_status", "comment": null}, "encryption_status": {"type": "string", "index": 8, "name": "encryption_status", "comment": null}, "object_lock_retain_until_date": {"type": "timestamp", "index": 9, "name": "object_lock_retain_until_date", "comment": null}, "object_lock_mode": {"type": "string", "index": 10, "name": "object_lock_mode", "comment": null}, "object_lock_legal_hold_status": {"type": "string", "index": 11, "name": "object_lock_legal_hold_status", "comment": null}, "intelligent_tiering_access_tier": {"type": "string", "index": 12, "name": "intelligent_tiering_access_tier", "comment": null}, "year": {"type": "integer", "index": 13, "name": "year", "comment": null}, "month": {"type": "integer", "index": 14, "name": "month", "comment": null}, "day": {"type": "integer", "index": 15, "name": "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.yoda.infra__default.s3_inventory"}, "source.yoda.ugc__default.shares": {"metadata": {"type": "view", "schema": "default", "name": "shares", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "review_id": {"type": "integer", "index": 4, "name": "review_id", "comment": null}, "post_id": {"type": "string", "index": 5, "name": "post_id", "comment": null}, "image_id": {"type": "integer", "index": 6, "name": "image_id", "comment": null}, "created_at": {"type": "timestamp", "index": 7, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 8, "name": "updated_at", "comment": null}, "social_network_id": {"type": "integer", "index": 9, "name": "social_network_id", "comment": null}, "metric1": {"type": "integer", "index": 10, "name": "metric1", "comment": null}, "metric2": {"type": "integer", "index": 11, "name": "metric2", "comment": null}, "metric3": {"type": "integer", "index": 12, "name": "metric3", "comment": null}, "social_push_type_id": {"type": "integer", "index": 13, "name": "social_push_type_id", "comment": null}, "signature": {"type": "string", "index": 14, "name": "signature", "comment": null}}, "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.yoda.ugc__default.shares"}, "source.yoda.loyalty__default.swell_vip_tiers_settings": {"metadata": {"type": "view", "schema": "default", "name": "swell_vip_tiers_settings", "database": null, "comment": null, "owner": "root"}, "columns": {"upsolver_schema_version": {"type": "integer", "index": 0, "name": "upsolver_schema_version", "comment": null}, "id": {"type": "long", "index": 1, "name": "id", "comment": null}, "processing_time": {"type": "timestamp", "index": 2, "name": "processing_time", "comment": null}, "ts_ms": {"type": "timestamp", "index": 3, "name": "ts_ms", "comment": null}, "merchant_id": {"type": "long", "index": 4, "name": "merchant_id", "comment": null}, "type": {"type": "string", "index": 5, "name": "type", "comment": null}, "last_enabled_type": {"type": "string", "index": 6, "name": "last_enabled_type", "comment": null}, "entry_fulfillment_timeframe": {"type": "long", "index": 7, "name": "entry_fulfillment_timeframe", "comment": null}, "custom_start_date": {"type": "timestamp", "index": 8, "name": "custom_start_date", "comment": null}, "is_enabled": {"type": "boolean", "index": 9, "name": "is_enabled", "comment": null}, "dropping_policy": {"type": "long", "index": 10, "name": "dropping_policy", "comment": null}, "at_risk_reminder_in_months": {"type": "long", "index": 11, "name": "at_risk_reminder_in_months", "comment": null}, "sync_to_platform": {"type": "boolean", "index": 12, "name": "sync_to_platform", "comment": null}, "delay_purchase_eligibility_enabled": {"type": "boolean", "index": 13, "name": "delay_purchase_eligibility_enabled", "comment": null}, "delay_purchase_eligibility_days": {"type": "long", "index": 14, "name": "delay_purchase_eligibility_days", "comment": null}, "include_actions_pre_opt_in": {"type": "boolean", "index": 15, "name": "include_actions_pre_opt_in", "comment": null}, "tier_expiring_reminder_days": {"type": "string", "index": 16, "name": "tier_expiring_reminder_days", "comment": null}, "created_at": {"type": "timestamp", "index": 17, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp", "index": 18, "name": "updated_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.yoda.loyalty__default.swell_vip_tiers_settings"}, "source.yoda.analytics__salesforce_rivery.cs_lead__c": {"metadata": {"type": "table", "schema": "salesforce_rivery", "name": "cs_lead__c", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "ownerid": {"type": "string", "index": 1, "name": "ownerid", "comment": null}, "isdeleted": {"type": "boolean", "index": 2, "name": "isdeleted", "comment": null}, "name": {"type": "string", "index": 3, "name": "name", "comment": null}, "currencyisocode": {"type": "string", "index": 4, "name": "currencyisocode", "comment": null}, "createddate": {"type": "timestamp", "index": 5, "name": "createddate", "comment": null}, "createdbyid": {"type": "string", "index": 6, "name": "createdbyid", "comment": null}, "lastmodifieddate": {"type": "timestamp", "index": 7, "name": "lastmodifieddate", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 8, "name": "lastmodifiedbyid", "comment": null}, "systemmodstamp": {"type": "timestamp", "index": 9, "name": "systemmodstamp", "comment": null}, "lastactivitydate": {"type": "string", "index": 10, "name": "lastactivitydate", "comment": null}, "lastvieweddate": {"type": "timestamp", "index": 11, "name": "lastvieweddate", "comment": null}, "lastreferenceddate": {"type": "timestamp", "index": 12, "name": "lastreferenceddate", "comment": null}, "am_rejection_reason__c": {"type": "string", "index": 13, "name": "am_rejection_reason__c", "comment": null}, "account_name__c": {"type": "string", "index": 14, "name": "account_name__c", "comment": null}, "account__c": {"type": "string", "index": 15, "name": "account__c", "comment": null}, "assignment_date__c": {"type": "string", "index": 16, "name": "assignment_date__c", "comment": null}, "csl_source__c": {"type": "string", "index": 17, "name": "csl_source__c", "comment": null}, "csm_comments__c": {"type": "string", "index": 18, "name": "csm_comments__c", "comment": null}, "csm_first_name__c": {"type": "string", "index": 19, "name": "csm_first_name__c", "comment": null}, "csm_rejection_reason__c": {"type": "string", "index": 20, "name": "csm_rejection_reason__c", "comment": null}, "csm__c": {"type": "string", "index": 21, "name": "csm__c", "comment": null}, "closest_renewal_date__c": {"type": "string", "index": 22, "name": "closest_renewal_date__c", "comment": null}, "converted_date__c": {"type": "string", "index": 23, "name": "converted_date__c", "comment": null}, "funding__c": {"type": "string", "index": 24, "name": "funding__c", "comment": null}, "industry__c": {"type": "string", "index": 25, "name": "industry__c", "comment": null}, "last_30_days_orders__c": {"type": "double", "index": 26, "name": "last_30_days_orders__c", "comment": null}, "lost_date__c": {"type": "string", "index": 27, "name": "lost_date__c", "comment": null}, "monthly_tech_spend__c": {"type": "string", "index": 28, "name": "monthly_tech_spend__c", "comment": null}, "number_of_employees__c": {"type": "string", "index": 29, "name": "number_of_employees__c", "comment": null}, "on_hold_due_date__c": {"type": "string", "index": 30, "name": "on_hold_due_date__c", "comment": null}, "contains_vms_mockup__c": {"type": "boolean", "index": 31, "name": "contains_vms_mockup__c", "comment": null}, "package__c": {"type": "string", "index": 32, "name": "package__c", "comment": null}, "platform__c": {"type": "string", "index": 33, "name": "platform__c", "comment": null}, "product_line__c": {"type": "string", "index": 34, "name": "product_line__c", "comment": null}, "related_contact__c": {"type": "string", "index": 35, "name": "related_contact__c", "comment": null}, "related_opportunity__c": {"type": "string", "index": 36, "name": "related_opportunity__c", "comment": null}, "related_store__c": {"type": "string", "index": 37, "name": "related_store__c", "comment": null}, "send_csm_notification__c": {"type": "boolean", "index": 38, "name": "send_csm_notification__c", "comment": null}, "status__c": {"type": "string", "index": 39, "name": "status__c", "comment": null}, "total_acv__c": {"type": "double", "index": 40, "name": "total_acv__c", "comment": null}, "related_opportunity_stage__c": {"type": "string", "index": 41, "name": "related_opportunity_stage__c", "comment": null}, "related_opp_closed__c": {"type": "boolean", "index": 42, "name": "related_opp_closed__c", "comment": null}, "rejected_date__c": {"type": "string", "index": 43, "name": "rejected_date__c", "comment": null}, "upsell_from_opportunity__c": {"type": "string", "index": 44, "name": "upsell_from_opportunity__c", "comment": null}, "account_cs_segment__c": {"type": "string", "index": 45, "name": "account_cs_segment__c", "comment": null}, "csm_office__c": {"type": "string", "index": 46, "name": "csm_office__c", "comment": null}, "qualify_csl__c": {"type": "string", "index": 47, "name": "qualify_csl__c", "comment": null}, "reject_csl__c": {"type": "string", "index": 48, "name": "reject_csl__c", "comment": null}, "csl_owner_manager__c": {"type": "string", "index": 49, "name": "csl_owner_manager__c", "comment": null}, "csm_manager__c": {"type": "string", "index": 50, "name": "csm_manager__c", "comment": null}, "am_notes__c": {"type": "string", "index": 51, "name": "am_notes__c", "comment": null}, "snoozed_in__c": {"type": "string", "index": 52, "name": "snoozed_in__c", "comment": null}, "snoozed_due_date__c": {"type": "string", "index": 53, "name": "snoozed_due_date__c", "comment": null}, "account_org_key__c": {"type": "string", "index": 54, "name": "account_org_key__c", "comment": null}, "csm_email__c": {"type": "string", "index": 55, "name": "csm_email__c", "comment": null}, "owner_email__c": {"type": "string", "index": 56, "name": "owner_email__c", "comment": null}, "owner_first_name__c": {"type": "string", "index": 57, "name": "owner_first_name__c", "comment": null}, "request_csm_intro__c": {"type": "boolean", "index": 58, "name": "request_csm_intro__c", "comment": null}, "intro_sent_at__c": {"type": "timestamp", "index": 59, "name": "intro_sent_at__c", "comment": null}, "send_custom_email__c": {"type": "string", "index": 60, "name": "send_custom_email__c", "comment": null}, "send_intro_email__c": {"type": "string", "index": 61, "name": "send_intro_email__c", "comment": null}, "mockup_priority__c": {"type": "double", "index": 62, "name": "mockup_priority__c", "comment": null}, "increase_mockup_priority__c": {"type": "boolean", "index": 63, "name": "increase_mockup_priority__c", "comment": null}, "swell_renewal_date__c": {"type": "string", "index": 64, "name": "swell_renewal_date__c", "comment": null}, "ugc_renewal_date__c": {"type": "string", "index": 65, "name": "ugc_renewal_date__c", "comment": null}, "ugc_csm_manager__c": {"type": "string", "index": 66, "name": "ugc_csm_manager__c", "comment": null}, "swell_csm_manager__c": {"type": "string", "index": 67, "name": "swell_csm_manager__c", "comment": null}, "vms_mockups_sent__c": {"type": "boolean", "index": 68, "name": "vms_mockups_sent__c", "comment": null}, "vms_mockups_sent_date__c": {"type": "string", "index": 69, "name": "vms_mockups_sent_date__c", "comment": null}, "product_source_location__c": {"type": "string", "index": 70, "name": "product_source_location__c", "comment": null}, "potential_acv__c": {"type": "double", "index": 71, "name": "potential_acv__c", "comment": null}, "days_to_convert__c": {"type": "double", "index": 72, "name": "days_to_convert__c", "comment": null}, "days_to_lost__c": {"type": "double", "index": 73, "name": "days_to_lost__c", "comment": null}, "demo_scheduled_date__c": {"type": "string", "index": 74, "name": "demo_scheduled_date__c", "comment": null}, "days_to_nurture__c": {"type": "double", "index": 75, "name": "days_to_nurture__c", "comment": null}, "follow_up_in_date__c": {"type": "string", "index": 76, "name": "follow_up_in_date__c", "comment": null}, "follow_up_in_helper__c": {"type": "double", "index": 77, "name": "follow_up_in_helper__c", "comment": null}, "follow_up_in_c__c": {"type": "string", "index": 78, "name": "follow_up_in_c__c", "comment": null}, "nurturing_date__c": {"type": "string", "index": 79, "name": "nurturing_date__c", "comment": null}, "nurturing_reason__c": {"type": "string", "index": 80, "name": "nurturing_reason__c", "comment": null}, "initiate__c": {"type": "string", "index": 81, "name": "initiate__c", "comment": null}, "csm_is_current_user__c": {"type": "boolean", "index": 82, "name": "csm_is_current_user__c", "comment": null}, "total_open_csls_under_account__c": {"type": "string", "index": 83, "name": "total_open_csls_under_account__c", "comment": null}, "another_open_csl__c": {"type": "string", "index": 84, "name": "another_open_csl__c", "comment": null}, "average_monthly_orders_last_3_months__c": {"type": "double", "index": 85, "name": "average_monthly_orders_last_3_months__c", "comment": null}, "engaged_with_campaign__c": {"type": "boolean", "index": 86, "name": "engaged_with_campaign__c", "comment": null}, "main_partner_manager__c": {"type": "string", "index": 87, "name": "main_partner_manager__c", "comment": null}, "test__c": {"type": "string", "index": 88, "name": "test__c", "comment": null}, "relevant_partner_manager_email__c": {"type": "string", "index": 89, "name": "relevant_partner_manager_email__c", "comment": null}, "relevant_partner_manager__c": {"type": "string", "index": 90, "name": "relevant_partner_manager__c", "comment": null}, "csl_score__c": {"type": "string", "index": 91, "name": "csl_score__c", "comment": null}, "lead_warmth__c": {"type": "string", "index": 92, "name": "lead_warmth__c", "comment": null}, "status_last_updated__c": {"type": "timestamp", "index": 93, "name": "status_last_updated__c", "comment": null}, "mql_notification_engagement_type__c": {"type": "string", "index": 94, "name": "mql_notification_engagement_type__c", "comment": null}, "in_progress_date__c": {"type": "string", "index": 95, "name": "in_progress_date__c", "comment": null}, "mql_notification_reason__c": {"type": "string", "index": 96, "name": "mql_notification_reason__c", "comment": null}, "primary_csm_at_time_of_csl_creation__c": {"type": "string", "index": 97, "name": "primary_csm_at_time_of_csl_creation__c", "comment": null}, "primary_csm_email_routing_notification__c": {"type": "string", "index": 98, "name": "primary_csm_email_routing_notification__c", "comment": null}, "lost_reason__c": {"type": "string", "index": 99, "name": "lost_reason__c", "comment": null}, "original_account_cs_segment__c": {"type": "string", "index": 100, "name": "original_account_cs_segment__c", "comment": null}, "partner_referral__c": {"type": "string", "index": 101, "name": "partner_referral__c", "comment": null}, "sdr_owner__c": {"type": "string", "index": 102, "name": "sdr_owner__c", "comment": null}, "cs_lead_owner_role__c": {"type": "string", "index": 103, "name": "cs_lead_owner_role__c", "comment": null}, "subscription_seller_csl__c": {"type": "string", "index": 104, "name": "subscription_seller_csl__c", "comment": null}, "usage_seller_csl__c": {"type": "string", "index": 105, "name": "usage_seller_csl__c", "comment": null}, "partner_contact__c": {"type": "string", "index": 106, "name": "partner_contact__c", "comment": null}, "partner_manager__c": {"type": "string", "index": 107, "name": "partner_manager__c", "comment": null}, "partner_name__c": {"type": "string", "index": 108, "name": "partner_name__c", "comment": null}, "referral_date__c": {"type": "string", "index": 109, "name": "referral_date__c", "comment": null}, "referral_type__c": {"type": "string", "index": 110, "name": "referral_type__c", "comment": null}, "all_relevant_products__c": {"type": "string", "index": 111, "name": "all_relevant_products__c", "comment": null}, "primary_csm_team_at_csl_creation__c": {"type": "string", "index": 112, "name": "primary_csm_team_at_csl_creation__c", "comment": null}, "temp_product_holder__c": {"type": "string", "index": 113, "name": "temp_product_holder__c", "comment": null}, "top_account__c": {"type": "boolean", "index": 114, "name": "top_account__c", "comment": null}, "_rivery_river_id": {"type": "string", "index": 115, "name": "_rivery_river_id", "comment": null}, "_rivery_run_id": {"type": "string", "index": 116, "name": "_rivery_run_id", "comment": null}, "_rivery_last_update": {"type": "timestamp", "index": 117, "name": "_rivery_last_update", "comment": null}, "last_avg_3_months_orders_swell__c": {"type": "double", "index": 118, "name": "last_avg_3_months_orders_swell__c", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 73400832.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce_rivery.cs_lead__c"}, "source.yoda.analytics__salesforce_rivery.cs_lead__c_full": {"metadata": {"type": "table", "schema": "salesforce_rivery", "name": "cs_lead__c_full", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "systemmodstamp": {"type": "timestamp", "index": 1, "name": "systemmodstamp", "comment": null}, "account_name__c": {"type": "string", "index": 2, "name": "account_name__c", "comment": null}, "csm_first_name__c": {"type": "string", "index": 3, "name": "csm_first_name__c", "comment": null}, "closest_renewal_date__c": {"type": "string", "index": 4, "name": "closest_renewal_date__c", "comment": null}, "funding__c": {"type": "string", "index": 5, "name": "funding__c", "comment": null}, "industry__c": {"type": "string", "index": 6, "name": "industry__c", "comment": null}, "last_30_days_orders__c": {"type": "double", "index": 7, "name": "last_30_days_orders__c", "comment": null}, "monthly_tech_spend__c": {"type": "string", "index": 8, "name": "monthly_tech_spend__c", "comment": null}, "number_of_employees__c": {"type": "string", "index": 9, "name": "number_of_employees__c", "comment": null}, "platform__c": {"type": "string", "index": 10, "name": "platform__c", "comment": null}, "total_acv__c": {"type": "double", "index": 11, "name": "total_acv__c", "comment": null}, "related_opportunity_stage__c": {"type": "string", "index": 12, "name": "related_opportunity_stage__c", "comment": null}, "related_opp_closed__c": {"type": "boolean", "index": 13, "name": "related_opp_closed__c", "comment": null}, "account_cs_segment__c": {"type": "string", "index": 14, "name": "account_cs_segment__c", "comment": null}, "csm_office__c": {"type": "string", "index": 15, "name": "csm_office__c", "comment": null}, "csl_owner_manager__c": {"type": "string", "index": 16, "name": "csl_owner_manager__c", "comment": null}, "csm_manager__c": {"type": "string", "index": 17, "name": "csm_manager__c", "comment": null}, "account_org_key__c": {"type": "string", "index": 18, "name": "account_org_key__c", "comment": null}, "csm_email__c": {"type": "string", "index": 19, "name": "csm_email__c", "comment": null}, "owner_email__c": {"type": "string", "index": 20, "name": "owner_email__c", "comment": null}, "owner_first_name__c": {"type": "string", "index": 21, "name": "owner_first_name__c", "comment": null}, "product_source_location__c": {"type": "string", "index": 22, "name": "product_source_location__c", "comment": null}, "days_to_convert__c": {"type": "double", "index": 23, "name": "days_to_convert__c", "comment": null}, "days_to_lost__c": {"type": "double", "index": 24, "name": "days_to_lost__c", "comment": null}, "days_to_nurture__c": {"type": "double", "index": 25, "name": "days_to_nurture__c", "comment": null}, "follow_up_in_date__c": {"type": "string", "index": 26, "name": "follow_up_in_date__c", "comment": null}, "all_relevant_products__c": {"type": "string", "index": 27, "name": "all_relevant_products__c", "comment": null}, "primary_csm_team_at_csl_creation__c": {"type": "string", "index": 28, "name": "primary_csm_team_at_csl_creation__c", "comment": null}, "temp_product_holder__c": {"type": "string", "index": 29, "name": "temp_product_holder__c", "comment": null}, "top_account__c": {"type": "boolean", "index": 30, "name": "top_account__c", "comment": null}, "_rivery_river_id": {"type": "string", "index": 31, "name": "_rivery_river_id", "comment": null}, "_rivery_run_id": {"type": "string", "index": 32, "name": "_rivery_run_id", "comment": null}, "_rivery_last_update": {"type": "timestamp", "index": 33, "name": "_rivery_last_update", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 2823450.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce_rivery.cs_lead__c_full"}, "source.yoda.analytics__salesforce_rivery.deal_summary_new__c": {"metadata": {"type": "table", "schema": "salesforce_rivery", "name": "deal_summary_new__c", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "isdeleted": {"type": "boolean", "index": 1, "name": "isdeleted", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "currencyisocode": {"type": "string", "index": 3, "name": "currencyisocode", "comment": null}, "createddate": {"type": "timestamp", "index": 4, "name": "createddate", "comment": null}, "createdbyid": {"type": "string", "index": 5, "name": "createdbyid", "comment": null}, "lastmodifieddate": {"type": "timestamp", "index": 6, "name": "lastmodifieddate", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 7, "name": "lastmodifiedbyid", "comment": null}, "systemmodstamp": {"type": "timestamp", "index": 8, "name": "systemmodstamp", "comment": null}, "lastactivitydate": {"type": "string", "index": 9, "name": "lastactivitydate", "comment": null}, "lastvieweddate": {"type": "timestamp", "index": 10, "name": "lastvieweddate", "comment": null}, "lastreferenceddate": {"type": "timestamp", "index": 11, "name": "lastreferenceddate", "comment": null}, "opportunity__c": {"type": "string", "index": 12, "name": "opportunity__c", "comment": null}, "current_acv_original_currency__c": {"type": "double", "index": 13, "name": "current_acv_original_currency__c", "comment": null}, "end_date__c": {"type": "string", "index": 14, "name": "end_date__c", "comment": null}, "oli_product_code__c": {"type": "string", "index": 15, "name": "oli_product_code__c", "comment": null}, "opportunity_product__c": {"type": "string", "index": 16, "name": "opportunity_product__c", "comment": null}, "override_current_acv_usd__c": {"type": "double", "index": 17, "name": "override_current_acv_usd__c", "comment": null}, "override_previous_acv_usd__c": {"type": "double", "index": 18, "name": "override_previous_acv_usd__c", "comment": null}, "package_product__c": {"type": "boolean", "index": 19, "name": "package_product__c", "comment": null}, "previous_acv_override__c": {"type": "double", "index": 20, "name": "previous_acv_override__c", "comment": null}, "previous_acv_original_currency__c": {"type": "double", "index": 21, "name": "previous_acv_original_currency__c", "comment": null}, "product_family__c": {"type": "string", "index": 22, "name": "product_family__c", "comment": null}, "product__c": {"type": "string", "index": 23, "name": "product__c", "comment": null}, "renewal_from_opportunity_line__c": {"type": "string", "index": 24, "name": "renewal_from_opportunity_line__c", "comment": null}, "start_date__c": {"type": "string", "index": 25, "name": "start_date__c", "comment": null}, "status__c": {"type": "string", "index": 26, "name": "status__c", "comment": null}, "copy_of_current_acv_for_retention__c": {"type": "double", "index": 27, "name": "copy_of_current_acv_for_retention__c", "comment": null}, "copy_of_previous_acv_usd_calculated__c": {"type": "double", "index": 28, "name": "copy_of_previous_acv_usd_calculated__c", "comment": null}, "deletion_date__c": {"type": "string", "index": 29, "name": "deletion_date__c", "comment": null}, "product_line_close_date__c": {"type": "string", "index": 30, "name": "product_line_close_date__c", "comment": null}, "owner_at_the_time_of_deletion__c": {"type": "string", "index": 31, "name": "owner_at_the_time_of_deletion__c", "comment": null}, "owner_role_at_the_time_of_deletion__c": {"type": "string", "index": 32, "name": "owner_role_at_the_time_of_deletion__c", "comment": null}, "p_line_owner_role__c": {"type": "string", "index": 33, "name": "p_line_owner_role__c", "comment": null}, "current_acv_controlling_for_conversion__c": {"type": "double", "index": 34, "name": "current_acv_controlling_for_conversion__c", "comment": null}, "current_acv_for_retention_original__c": {"type": "double", "index": 35, "name": "current_acv_for_retention_original__c", "comment": null}, "custom_earr__c": {"type": "double", "index": 36, "name": "custom_earr__c", "comment": null}, "earr_usd__c": {"type": "double", "index": 37, "name": "earr_usd__c", "comment": null}, "latest_ds__c": {"type": "boolean", "index": 38, "name": "latest_ds__c", "comment": null}, "pipeline_usd__c": {"type": "double", "index": 39, "name": "pipeline_usd__c", "comment": null}, "_rivery_river_id": {"type": "string", "index": 40, "name": "_rivery_river_id", "comment": null}, "_rivery_run_id": {"type": "string", "index": 41, "name": "_rivery_run_id", "comment": null}, "_rivery_last_update": {"type": "timestamp", "index": 42, "name": "_rivery_last_update", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 137624903.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce_rivery.deal_summary_new__c"}, "source.yoda.analytics__salesforce_rivery.deal_summary_new__c_full": {"metadata": {"type": "table", "schema": "salesforce_rivery", "name": "deal_summary_new__c_full", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "isdeleted": {"type": "boolean", "index": 1, "name": "isdeleted", "comment": null}, "currencyisocode": {"type": "string", "index": 2, "name": "currencyisocode", "comment": null}, "createddate": {"type": "timestamp", "index": 3, "name": "createddate", "comment": null}, "createdbyid": {"type": "string", "index": 4, "name": "createdbyid", "comment": null}, "lastmodifieddate": {"type": "timestamp", "index": 5, "name": "lastmodifieddate", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 6, "name": "lastmodifiedbyid", "comment": null}, "systemmodstamp": {"type": "timestamp", "index": 7, "name": "systemmodstamp", "comment": null}, "opportunity__c": {"type": "string", "index": 8, "name": "opportunity__c", "comment": null}, "current_acv_original_currency__c": {"type": "double", "index": 9, "name": "current_acv_original_currency__c", "comment": null}, "opportunity_product__c": {"type": "string", "index": 10, "name": "opportunity_product__c", "comment": null}, "package_product__c": {"type": "boolean", "index": 11, "name": "package_product__c", "comment": null}, "previous_acv_original_currency__c": {"type": "double", "index": 12, "name": "previous_acv_original_currency__c", "comment": null}, "product_family__c": {"type": "string", "index": 13, "name": "product_family__c", "comment": null}, "product__c": {"type": "string", "index": 14, "name": "product__c", "comment": null}, "renewal_from_opportunity_line__c": {"type": "string", "index": 15, "name": "renewal_from_opportunity_line__c", "comment": null}, "status__c": {"type": "string", "index": 16, "name": "status__c", "comment": null}, "current_acv_usd_calculated__c": {"type": "double", "index": 17, "name": "current_acv_usd_calculated__c", "comment": null}, "current_acv_usd__c": {"type": "double", "index": 18, "name": "current_acv_usd__c", "comment": null}, "current_acv_for_retention__c": {"type": "double", "index": 19, "name": "current_acv_for_retention__c", "comment": null}, "current_acv__c": {"type": "double", "index": 20, "name": "current_acv__c", "comment": null}, "deal_type__c": {"type": "string", "index": 21, "name": "deal_type__c", "comment": null}, "line_delta_acv__c": {"type": "double", "index": 22, "name": "line_delta_acv__c", "comment": null}, "line_delta_acv_for_retention__c": {"type": "double", "index": 23, "name": "line_delta_acv_for_retention__c", "comment": null}, "previous_acv_from_opportunity_product__c": {"type": "double", "index": 24, "name": "previous_acv_from_opportunity_product__c", "comment": null}, "previous_acv_usd_calculated__c": {"type": "double", "index": 25, "name": "previous_acv_usd_calculated__c", "comment": null}, "previous_acv_usd__c": {"type": "double", "index": 26, "name": "previous_acv_usd__c", "comment": null}, "previous_acv__c": {"type": "double", "index": 27, "name": "previous_acv__c", "comment": null}, "current_acv_controlling_for_conversion__c": {"type": "double", "index": 28, "name": "current_acv_controlling_for_conversion__c", "comment": null}, "current_acv_for_retention_original__c": {"type": "double", "index": 29, "name": "current_acv_for_retention_original__c", "comment": null}, "custom_earr__c": {"type": "double", "index": 30, "name": "custom_earr__c", "comment": null}, "earr_usd__c": {"type": "double", "index": 31, "name": "earr_usd__c", "comment": null}, "latest_ds__c": {"type": "boolean", "index": 32, "name": "latest_ds__c", "comment": null}, "pipeline_usd__c": {"type": "double", "index": 33, "name": "pipeline_usd__c", "comment": null}, "_rivery_river_id": {"type": "string", "index": 34, "name": "_rivery_river_id", "comment": null}, "_rivery_run_id": {"type": "string", "index": 35, "name": "_rivery_run_id", "comment": null}, "_rivery_last_update": {"type": "timestamp", "index": 36, "name": "_rivery_last_update", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 29144407.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce_rivery.deal_summary_new__c_full"}, "source.yoda.analytics__salesforce_rivery.event": {"metadata": {"type": "table", "schema": "salesforce_rivery", "name": "event", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "whoid": {"type": "string", "index": 1, "name": "whoid", "comment": null}, "whatid": {"type": "string", "index": 2, "name": "whatid", "comment": null}, "whocount": {"type": "integer", "index": 3, "name": "whocount", "comment": null}, "whatcount": {"type": "integer", "index": 4, "name": "whatcount", "comment": null}, "subject": {"type": "string", "index": 5, "name": "subject", "comment": null}, "location": {"type": "string", "index": 6, "name": "location", "comment": null}, "isalldayevent": {"type": "boolean", "index": 7, "name": "isalldayevent", "comment": null}, "activitydatetime": {"type": "timestamp", "index": 8, "name": "activitydatetime", "comment": null}, "activitydate": {"type": "string", "index": 9, "name": "activitydate", "comment": null}, "durationinminutes": {"type": "integer", "index": 10, "name": "durationinminutes", "comment": null}, "startdatetime": {"type": "timestamp", "index": 11, "name": "startdatetime", "comment": null}, "enddatetime": {"type": "timestamp", "index": 12, "name": "enddatetime", "comment": null}, "enddate": {"type": "string", "index": 13, "name": "enddate", "comment": null}, "description": {"type": "string", "index": 14, "name": "description", "comment": null}, "accountid": {"type": "string", "index": 15, "name": "accountid", "comment": null}, "ownerid": {"type": "string", "index": 16, "name": "ownerid", "comment": null}, "currencyisocode": {"type": "string", "index": 17, "name": "currencyisocode", "comment": null}, "type": {"type": "string", "index": 18, "name": "type", "comment": null}, "isprivate": {"type": "boolean", "index": 19, "name": "isprivate", "comment": null}, "showas": {"type": "string", "index": 20, "name": "showas", "comment": null}, "isdeleted": {"type": "boolean", "index": 21, "name": "isdeleted", "comment": null}, "ischild": {"type": "boolean", "index": 22, "name": "ischild", "comment": null}, "isgroupevent": {"type": "boolean", "index": 23, "name": "isgroupevent", "comment": null}, "groupeventtype": {"type": "string", "index": 24, "name": "groupeventtype", "comment": null}, "createddate": {"type": "timestamp", "index": 25, "name": "createddate", "comment": null}, "createdbyid": {"type": "string", "index": 26, "name": "createdbyid", "comment": null}, "lastmodifieddate": {"type": "timestamp", "index": 27, "name": "lastmodifieddate", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 28, "name": "lastmodifiedbyid", "comment": null}, "systemmodstamp": {"type": "timestamp", "index": 29, "name": "systemmodstamp", "comment": null}, "isarchived": {"type": "boolean", "index": 30, "name": "isarchived", "comment": null}, "isvisibleinselfservice": {"type": "boolean", "index": 31, "name": "isvisibleinselfservice", "comment": null}, "recurrenceactivityid": {"type": "string", "index": 32, "name": "recurrenceactivityid", "comment": null}, "isrecurrence": {"type": "boolean", "index": 33, "name": "isrecurrence", "comment": null}, "recurrencestartdatetime": {"type": "timestamp", "index": 34, "name": "recurrencestartdatetime", "comment": null}, "recurrenceenddateonly": {"type": "string", "index": 35, "name": "recurrenceenddateonly", "comment": null}, "recurrencetimezonesidkey": {"type": "string", "index": 36, "name": "recurrencetimezonesidkey", "comment": null}, "recurrencetype": {"type": "string", "index": 37, "name": "recurrencetype", "comment": null}, "recurrenceinterval": {"type": "long", "index": 38, "name": "recurrenceinterval", "comment": null}, "recurrencedayofweekmask": {"type": "long", "index": 39, "name": "recurrencedayofweekmask", "comment": null}, "recurrencedayofmonth": {"type": "long", "index": 40, "name": "recurrencedayofmonth", "comment": null}, "recurrenceinstance": {"type": "string", "index": 41, "name": "recurrenceinstance", "comment": null}, "recurrencemonthofyear": {"type": "string", "index": 42, "name": "recurrencemonthofyear", "comment": null}, "reminderdatetime": {"type": "timestamp", "index": 43, "name": "reminderdatetime", "comment": null}, "isreminderset": {"type": "boolean", "index": 44, "name": "isreminderset", "comment": null}, "eventsubtype": {"type": "string", "index": 45, "name": "eventsubtype", "comment": null}, "isrecurrence2exclusion": {"type": "boolean", "index": 46, "name": "isrecurrence2exclusion", "comment": null}, "recurrence2patterntext": {"type": "string", "index": 47, "name": "recurrence2patterntext", "comment": null}, "recurrence2patternversion": {"type": "string", "index": 48, "name": "recurrence2patternversion", "comment": null}, "isrecurrence2": {"type": "boolean", "index": 49, "name": "isrecurrence2", "comment": null}, "isrecurrence2exception": {"type": "boolean", "index": 50, "name": "isrecurrence2exception", "comment": null}, "recurrence2patternstartdate": {"type": "timestamp", "index": 51, "name": "recurrence2patternstartdate", "comment": null}, "recurrence2patterntimezone": {"type": "string", "index": 52, "name": "recurrence2patterntimezone", "comment": null}, "salesloft1__call_disposition__c": {"type": "string", "index": 53, "name": "salesloft1__call_disposition__c", "comment": null}, "del_yeswaretemplatenames__c": {"type": "string", "index": 54, "name": "del_yeswaretemplatenames__c", "comment": null}, "yeswarecampaignid__c": {"type": "double", "index": 55, "name": "yeswarecampaignid__c", "comment": null}, "yeswarecampaignname__c": {"type": "string", "index": 56, "name": "yeswarecampaignname__c", "comment": null}, "yeswarecampaigntotaltouches__c": {"type": "double", "index": 57, "name": "yeswarecampaigntotaltouches__c", "comment": null}, "yeswarecampaigntouchnumber__c": {"type": "double", "index": 58, "name": "yeswarecampaigntouchnumber__c", "comment": null}, "yeswarecampaigntouchtype__c": {"type": "string", "index": 59, "name": "yeswarecampaigntouchtype__c", "comment": null}, "yeswareiscampaign__c": {"type": "boolean", "index": 60, "name": "yeswareiscampaign__c", "comment": null}, "salesloft1__call_duration_in_minutes__c": {"type": "double", "index": 61, "name": "salesloft1__call_duration_in_minutes__c", "comment": null}, "salesloft1__call_sentiment__c": {"type": "string", "index": 62, "name": "salesloft1__call_sentiment__c", "comment": null}, "phase__c": {"type": "string", "index": 63, "name": "phase__c", "comment": null}, "salesloft1__salesloft_cadence_name__c": {"type": "string", "index": 64, "name": "salesloft1__salesloft_cadence_name__c", "comment": null}, "salesloft1__salesloft_clicked_count__c": {"type": "double", "index": 65, "name": "salesloft1__salesloft_clicked_count__c", "comment": null}, "salesloft1__salesloft_email_template_title__c": {"type": "string", "index": 66, "name": "salesloft1__salesloft_email_template_title__c", "comment": null}, "salesloftreplycount__c": {"type": "double", "index": 67, "name": "salesloftreplycount__c", "comment": null}, "salesloft_cadence_id__c": {"type": "string", "index": 68, "name": "salesloft_cadence_id__c", "comment": null}, "salesloft_cadence_name__c": {"type": "string", "index": 69, "name": "salesloft_cadence_name__c", "comment": null}, "salesloft_clicked_count__c": {"type": "double", "index": 70, "name": "salesloft_clicked_count__c", "comment": null}, "salesloft_email_template_id__c": {"type": "string", "index": 71, "name": "salesloft_email_template_id__c", "comment": null}, "salesloft_email_template_title__c": {"type": "string", "index": 72, "name": "salesloft_email_template_title__c", "comment": null}, "salesloft_external_identifier__c": {"type": "string", "index": 73, "name": "salesloft_external_identifier__c", "comment": null}, "salesloft_step_day_new__c": {"type": "double", "index": 74, "name": "salesloft_step_day_new__c", "comment": null}, "salesloft_step_id__c": {"type": "string", "index": 75, "name": "salesloft_step_id__c", "comment": null}, "salesloft_step_name__c": {"type": "string", "index": 76, "name": "salesloft_step_name__c", "comment": null}, "salesloft_step_type__c": {"type": "string", "index": 77, "name": "salesloft_step_type__c", "comment": null}, "salesloft_viewed_count__c": {"type": "double", "index": 78, "name": "salesloft_viewed_count__c", "comment": null}, "unique_click_count__c": {"type": "double", "index": 79, "name": "unique_click_count__c", "comment": null}, "unique_reply_count__c": {"type": "double", "index": 80, "name": "unique_reply_count__c", "comment": null}, "unique_view_count__c": {"type": "double", "index": 81, "name": "unique_view_count__c", "comment": null}, "salesloft1__salesloft_replies_count__c": {"type": "double", "index": 82, "name": "salesloft1__salesloft_replies_count__c", "comment": null}, "last_sdr_email__c": {"type": "string", "index": 83, "name": "last_sdr_email__c", "comment": null}, "ae_email__c": {"type": "string", "index": 84, "name": "ae_email__c", "comment": null}, "salesloft1__salesloft_step_day__c": {"type": "double", "index": 85, "name": "salesloft1__salesloft_step_day__c", "comment": null}, "canceled_cp__c": {"type": "boolean", "index": 86, "name": "canceled_cp__c", "comment": null}, "no_show_cp__c": {"type": "boolean", "index": 87, "name": "no_show_cp__c", "comment": null}, "rescheduled_cp__c": {"type": "double", "index": 88, "name": "rescheduled_cp__c", "comment": null}, "response_schedule_cp__c": {"type": "string", "index": 89, "name": "response_schedule_cp__c", "comment": null}, "yeswareismailmerge__c": {"type": "boolean", "index": 90, "name": "yeswareismailmerge__c", "comment": null}, "yeswaremailmergename__c": {"type": "string", "index": 91, "name": "yeswaremailmergename__c", "comment": null}, "yeswaretemplateids__c": {"type": "string", "index": 92, "name": "yeswaretemplateids__c", "comment": null}, "yesware_activitytype__c": {"type": "string", "index": 93, "name": "yesware_activitytype__c", "comment": null}, "medium__c": {"type": "string", "index": 94, "name": "medium__c", "comment": null}, "yeswaretemplatenames__c": {"type": "string", "index": 95, "name": "yeswaretemplatenames__c", "comment": null}, "yesware_activity_time__c": {"type": "string", "index": 96, "name": "yesware_activity_time__c", "comment": null}, "presentation_link__c": {"type": "string", "index": 97, "name": "presentation_link__c", "comment": null}, "yesware_call_duration_minutes__c": {"type": "double", "index": 98, "name": "yesware_call_duration_minutes__c", "comment": null}, "yesware_connectcall__c": {"type": "boolean", "index": 99, "name": "yesware_connectcall__c", "comment": null}, "yesware_day__c": {"type": "string", "index": 100, "name": "yesware_day__c", "comment": null}, "call_status__c": {"type": "string", "index": 101, "name": "call_status__c", "comment": null}, "demo_status__c": {"type": "string", "index": 102, "name": "demo_status__c", "comment": null}, "last_modified_date_for_report__c": {"type": "timestamp", "index": 103, "name": "last_modified_date_for_report__c", "comment": null}, "salesloft1__salesloft_type__c": {"type": "string", "index": 104, "name": "salesloft1__salesloft_type__c", "comment": null}, "agency_event_stage__c": {"type": "string", "index": 105, "name": "agency_event_stage__c", "comment": null}, "salesloft1__salesloft_view_count__c": {"type": "double", "index": 106, "name": "salesloft1__salesloft_view_count__c", "comment": null}, "is_task_from_external_system__c": {"type": "boolean", "index": 107, "name": "is_task_from_external_system__c", "comment": null}, "activity_id_18_digit__c": {"type": "string", "index": 108, "name": "activity_id_18_digit__c", "comment": null}, "task_completion_date__c": {"type": "timestamp", "index": 109, "name": "task_completion_date__c", "comment": null}, "demo_approval_status__c": {"type": "string", "index": 110, "name": "demo_approval_status__c", "comment": null}, "gong__gong_selected_process__c": {"type": "boolean", "index": 111, "name": "gong__gong_selected_process__c", "comment": null}, "yesware_emailtype__c": {"type": "string", "index": 112, "name": "yesware_emailtype__c", "comment": null}, "yesware_meeting__c": {"type": "double", "index": 113, "name": "yesware_meeting__c", "comment": null}, "sms_topics_discussed__c": {"type": "string", "index": 114, "name": "sms_topics_discussed__c", "comment": null}, "salesloft1__salesloft_connected_count__c": {"type": "double", "index": 115, "name": "salesloft1__salesloft_connected_count__c", "comment": null}, "created_by_role__c": {"type": "string", "index": 116, "name": "created_by_role__c", "comment": null}, "sdr__c": {"type": "string", "index": 117, "name": "sdr__c", "comment": null}, "salesloft1__salesloft_unique_click_count__c": {"type": "double", "index": 118, "name": "salesloft1__salesloft_unique_click_count__c", "comment": null}, "salesloft1__salesloft_unique_reply_count__c": {"type": "double", "index": 119, "name": "salesloft1__salesloft_unique_reply_count__c", "comment": null}, "selected_product_for_lead_conversion__c": {"type": "string", "index": 120, "name": "selected_product_for_lead_conversion__c", "comment": null}, "demo_cancellation_reason__c": {"type": "string", "index": 121, "name": "demo_cancellation_reason__c", "comment": null}, "salesloft1__salesloft_unique_view_count__c": {"type": "double", "index": 122, "name": "salesloft1__salesloft_unique_view_count__c", "comment": null}, "yesware_open__c": {"type": "double", "index": 123, "name": "yesware_open__c", "comment": null}, "workspacename_cp__c": {"type": "string", "index": 124, "name": "workspacename_cp__c", "comment": null}, "designated_assignee_cp__c": {"type": "string", "index": 125, "name": "designated_assignee_cp__c", "comment": null}, "main_goal__c": {"type": "string", "index": 126, "name": "main_goal__c", "comment": null}, "sales_demo_feedback__c": {"type": "string", "index": 127, "name": "sales_demo_feedback__c", "comment": null}, "labsactionplans__taskaptask__c": {"type": "string", "index": 128, "name": "labsactionplans__taskaptask__c", "comment": null}, "last_qbr__c": {"type": "boolean", "index": 129, "name": "last_qbr__c", "comment": null}, "lead_lookup__c": {"type": "string", "index": 130, "name": "lead_lookup__c", "comment": null}, "created_by_flow__c": {"type": "boolean", "index": 131, "name": "created_by_flow__c", "comment": null}, "send_cp_slack_communication__c": {"type": "boolean", "index": 132, "name": "send_cp_slack_communication__c", "comment": null}, "yesware_reply__c": {"type": "double", "index": 133, "name": "yesware_reply__c", "comment": null}, "yesware_sent__c": {"type": "double", "index": 134, "name": "yesware_sent__c", "comment": null}, "yesware_subject__c": {"type": "string", "index": 135, "name": "yesware_subject__c", "comment": null}, "yesware_template__c": {"type": "boolean", "index": 136, "name": "yesware_template__c", "comment": null}, "yesware_totalcall__c": {"type": "double", "index": 137, "name": "yesware_totalcall__c", "comment": null}, "meeting_type_cp__c": {"type": "string", "index": 138, "name": "meeting_type_cp__c", "comment": null}, "queue_name_cp__c": {"type": "string", "index": 139, "name": "queue_name_cp__c", "comment": null}, "assigned_to_role__c": {"type": "string", "index": 140, "name": "assigned_to_role__c", "comment": null}, "router_name_cp__c": {"type": "string", "index": 141, "name": "router_name_cp__c", "comment": null}, "transfer_to__c": {"type": "string", "index": 142, "name": "transfer_to__c", "comment": null}, "gong__canceled_gong__c": {"type": "boolean", "index": 143, "name": "gong__canceled_gong__c", "comment": null}, "products_shown__c": {"type": "string", "index": 144, "name": "products_shown__c", "comment": null}, "on_opp__c": {"type": "boolean", "index": 145, "name": "on_opp__c", "comment": null}, "gong__current_flow_id__c": {"type": "string", "index": 146, "name": "gong__current_flow_id__c", "comment": null}, "gong__current_flow_name__c": {"type": "string", "index": 147, "name": "gong__current_flow_name__c", "comment": null}, "gong__current_flow_step_number__c": {"type": "string", "index": 148, "name": "gong__current_flow_step_number__c", "comment": null}, "gong__flow_execution_id__c": {"type": "string", "index": 149, "name": "gong__flow_execution_id__c", "comment": null}, "gong__gong_participants_emails__c": {"type": "string", "index": 150, "name": "gong__gong_participants_emails__c", "comment": null}, "call_sentiment__c": {"type": "string", "index": 151, "name": "call_sentiment__c", "comment": null}, "created_by_me__c": {"type": "boolean", "index": 152, "name": "created_by_me__c", "comment": null}, "_rivery_river_id": {"type": "string", "index": 153, "name": "_rivery_river_id", "comment": null}, "_rivery_run_id": {"type": "string", "index": 154, "name": "_rivery_run_id", "comment": null}, "_rivery_last_update": {"type": "timestamp", "index": 155, "name": "_rivery_last_update", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 808983803.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce_rivery.event"}, "source.yoda.analytics__salesforce_rivery.mql__c": {"metadata": {"type": "table", "schema": "salesforce_rivery", "name": "mql__c", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "ownerid": {"type": "string", "index": 1, "name": "ownerid", "comment": null}, "isdeleted": {"type": "boolean", "index": 2, "name": "isdeleted", "comment": null}, "name": {"type": "string", "index": 3, "name": "name", "comment": null}, "currencyisocode": {"type": "string", "index": 4, "name": "currencyisocode", "comment": null}, "createddate": {"type": "timestamp", "index": 5, "name": "createddate", "comment": null}, "createdbyid": {"type": "string", "index": 6, "name": "createdbyid", "comment": null}, "lastmodifieddate": {"type": "timestamp", "index": 7, "name": "lastmodifieddate", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 8, "name": "lastmodifiedbyid", "comment": null}, "systemmodstamp": {"type": "timestamp", "index": 9, "name": "systemmodstamp", "comment": null}, "lastactivitydate": {"type": "string", "index": 10, "name": "lastactivitydate", "comment": null}, "lastvieweddate": {"type": "timestamp", "index": 11, "name": "lastvieweddate", "comment": null}, "lastreferenceddate": {"type": "timestamp", "index": 12, "name": "lastreferenceddate", "comment": null}, "contact_record__c": {"type": "string", "index": 13, "name": "contact_record__c", "comment": null}, "demand_gen_unit__c": {"type": "string", "index": 14, "name": "demand_gen_unit__c", "comment": null}, "domain__c": {"type": "string", "index": 15, "name": "domain__c", "comment": null}, "email_address__c": {"type": "string", "index": 16, "name": "email_address__c", "comment": null}, "lead_record__c": {"type": "string", "index": 17, "name": "lead_record__c", "comment": null}, "mql_country__c": {"type": "string", "index": 18, "name": "mql_country__c", "comment": null}, "most_recent_engagement_reason__c": {"type": "string", "index": 19, "name": "most_recent_engagement_reason__c", "comment": null}, "most_recent_engagement_sub_reason__c": {"type": "string", "index": 20, "name": "most_recent_engagement_sub_reason__c", "comment": null}, "prospect_fit_rank__c": {"type": "string", "index": 21, "name": "prospect_fit_rank__c", "comment": null}, "segment__c": {"type": "string", "index": 22, "name": "segment__c", "comment": null}, "status_upon_creation__c": {"type": "string", "index": 23, "name": "status_upon_creation__c", "comment": null}, "territory__c": {"type": "string", "index": 24, "name": "territory__c", "comment": null}, "mql_date__c": {"type": "timestamp", "index": 25, "name": "mql_date__c", "comment": null}, "activity_id__c": {"type": "string", "index": 26, "name": "activity_id__c", "comment": null}, "date_of_first_activity__c": {"type": "timestamp", "index": 27, "name": "date_of_first_activity__c", "comment": null}, "user_id__c": {"type": "string", "index": 28, "name": "user_id__c", "comment": null}, "mql_product_preference__c": {"type": "string", "index": 29, "name": "mql_product_preference__c", "comment": null}, "most_recent_assignment_bucket__c": {"type": "string", "index": 30, "name": "most_recent_assignment_bucket__c", "comment": null}, "most_recent_assignment_reason__c": {"type": "string", "index": 31, "name": "most_recent_assignment_reason__c", "comment": null}, "most_recent_assignment_sub_reason__c": {"type": "string", "index": 32, "name": "most_recent_assignment_sub_reason__c", "comment": null}, "package_category__c": {"type": "string", "index": 33, "name": "package_category__c", "comment": null}, "is_rad__c": {"type": "boolean", "index": 34, "name": "is_rad__c", "comment": null}, "is_self_service__c": {"type": "boolean", "index": 35, "name": "is_self_service__c", "comment": null}, "sdr_owner__c": {"type": "string", "index": 36, "name": "sdr_owner__c", "comment": null}, "number_of_touchpoints_before_nurturing__c": {"type": "double", "index": 37, "name": "number_of_touchpoints_before_nurturing__c", "comment": null}, "time_to_first_response__c": {"type": "double", "index": 38, "name": "time_to_first_response__c", "comment": null}, "lead_source__c": {"type": "string", "index": 39, "name": "lead_source__c", "comment": null}, "automation_created_by__c": {"type": "string", "index": 40, "name": "automation_created_by__c", "comment": null}, "number_of_touch_points__c": {"type": "double", "index": 41, "name": "number_of_touch_points__c", "comment": null}, "account_name__c": {"type": "string", "index": 42, "name": "account_name__c", "comment": null}, "last_30_days_swell_orders__c": {"type": "double", "index": 43, "name": "last_30_days_swell_orders__c", "comment": null}, "last_30_days_orders_sms__c": {"type": "double", "index": 44, "name": "last_30_days_orders_sms__c", "comment": null}, "last_30_days_orders__c": {"type": "double", "index": 45, "name": "last_30_days_orders__c", "comment": null}, "orders_month_estimate__c": {"type": "string", "index": 46, "name": "orders_month_estimate__c", "comment": null}, "platform__c": {"type": "string", "index": 47, "name": "platform__c", "comment": null}, "sales_estimated_monthly_orders__c": {"type": "string", "index": 48, "name": "sales_estimated_monthly_orders__c", "comment": null}, "similarweb_traffic_new__c": {"type": "double", "index": 49, "name": "similarweb_traffic_new__c", "comment": null}, "yotpo_industry__c": {"type": "string", "index": 50, "name": "yotpo_industry__c", "comment": null}, "sixsense_profile_fit__c": {"type": "string", "index": 51, "name": "sixsense_profile_fit__c", "comment": null}, "owner_role__c": {"type": "string", "index": 52, "name": "owner_role__c", "comment": null}, "mql_motion__c": {"type": "string", "index": 53, "name": "mql_motion__c", "comment": null}, "mql_manual_create__c": {"type": "boolean", "index": 54, "name": "mql_manual_create__c", "comment": null}, "territory_new__c": {"type": "string", "index": 55, "name": "territory_new__c", "comment": null}, "created_by_chili_piper__c": {"type": "boolean", "index": 56, "name": "created_by_chili_piper__c", "comment": null}, "product_qualified_lead__c": {"type": "boolean", "index": 57, "name": "product_qualified_lead__c", "comment": null}, "junk_nurturing_reason__c": {"type": "string", "index": 58, "name": "junk_nurturing_reason__c", "comment": null}, "product_source_location__c": {"type": "string", "index": 59, "name": "product_source_location__c", "comment": null}, "_rivery_river_id": {"type": "string", "index": 60, "name": "_rivery_river_id", "comment": null}, "_rivery_run_id": {"type": "string", "index": 61, "name": "_rivery_run_id", "comment": null}, "_rivery_last_update": {"type": "timestamp", "index": 62, "name": "_rivery_last_update", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 111370423.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce_rivery.mql__c"}, "source.yoda.analytics__salesforce_rivery.mql__c_full": {"metadata": {"type": "table", "schema": "salesforce_rivery", "name": "mql__c_full", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "systemmodstamp": {"type": "timestamp", "index": 1, "name": "systemmodstamp", "comment": null}, "lead_or_contact_current_territory__c": {"type": "string", "index": 2, "name": "lead_or_contact_current_territory__c", "comment": null}, "territory_new__c": {"type": "string", "index": 3, "name": "territory_new__c", "comment": null}, "created_by_chili_piper__c": {"type": "boolean", "index": 4, "name": "created_by_chili_piper__c", "comment": null}, "product_qualified_lead__c": {"type": "boolean", "index": 5, "name": "product_qualified_lead__c", "comment": null}, "junk_nurturing_reason__c": {"type": "string", "index": 6, "name": "junk_nurturing_reason__c", "comment": null}, "product_source_location__c": {"type": "string", "index": 7, "name": "product_source_location__c", "comment": null}, "_rivery_river_id": {"type": "string", "index": 8, "name": "_rivery_river_id", "comment": null}, "_rivery_run_id": {"type": "string", "index": 9, "name": "_rivery_run_id", "comment": null}, "_rivery_last_update": {"type": "timestamp", "index": 10, "name": "_rivery_last_update", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 1122952.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce_rivery.mql__c_full"}, "source.yoda.analytics__salesforce_rivery.opportunity": {"metadata": {"type": "table", "schema": "salesforce_rivery", "name": "opportunity", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "isdeleted": {"type": "boolean", "index": 1, "name": "isdeleted", "comment": null}, "accountid": {"type": "string", "index": 2, "name": "accountid", "comment": null}, "recordtypeid": {"type": "string", "index": 3, "name": "recordtypeid", "comment": null}, "isprivate": {"type": "boolean", "index": 4, "name": "isprivate", "comment": null}, "name": {"type": "string", "index": 5, "name": "name", "comment": null}, "description": {"type": "string", "index": 6, "name": "description", "comment": null}, "stagename": {"type": "string", "index": 7, "name": "stagename", "comment": null}, "amount": {"type": "double", "index": 8, "name": "amount", "comment": null}, "probability": {"type": "double", "index": 9, "name": "probability", "comment": null}, "expectedrevenue": {"type": "double", "index": 10, "name": "expectedrevenue", "comment": null}, "totalopportunityquantity": {"type": "double", "index": 11, "name": "totalopportunityquantity", "comment": null}, "closedate": {"type": "string", "index": 12, "name": "closedate", "comment": null}, "type": {"type": "string", "index": 13, "name": "type", "comment": null}, "nextstep": {"type": "string", "index": 14, "name": "nextstep", "comment": null}, "leadsource": {"type": "string", "index": 15, "name": "leadsource", "comment": null}, "isclosed": {"type": "boolean", "index": 16, "name": "isclosed", "comment": null}, "iswon": {"type": "boolean", "index": 17, "name": "iswon", "comment": null}, "forecastcategory": {"type": "string", "index": 18, "name": "forecastcategory", "comment": null}, "forecastcategoryname": {"type": "string", "index": 19, "name": "forecastcategoryname", "comment": null}, "currencyisocode": {"type": "string", "index": 20, "name": "currencyisocode", "comment": null}, "campaignid": {"type": "string", "index": 21, "name": "campaignid", "comment": null}, "hasopportunitylineitem": {"type": "boolean", "index": 22, "name": "hasopportunitylineitem", "comment": null}, "pricebook2id": {"type": "string", "index": 23, "name": "pricebook2id", "comment": null}, "ownerid": {"type": "string", "index": 24, "name": "ownerid", "comment": null}, "createddate": {"type": "timestamp", "index": 25, "name": "createddate", "comment": null}, "createdbyid": {"type": "string", "index": 26, "name": "createdbyid", "comment": null}, "lastmodifieddate": {"type": "timestamp", "index": 27, "name": "lastmodifieddate", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 28, "name": "lastmodifiedbyid", "comment": null}, "systemmodstamp": {"type": "timestamp", "index": 29, "name": "systemmodstamp", "comment": null}, "lastactivitydate": {"type": "string", "index": 30, "name": "lastactivitydate", "comment": null}, "fiscalquarter": {"type": "integer", "index": 31, "name": "fiscalquarter", "comment": null}, "fiscalyear": {"type": "integer", "index": 32, "name": "fiscalyear", "comment": null}, "fiscal": {"type": "string", "index": 33, "name": "fiscal", "comment": null}, "contactid": {"type": "string", "index": 34, "name": "contactid", "comment": null}, "lastvieweddate": {"type": "timestamp", "index": 35, "name": "lastvieweddate", "comment": null}, "lastreferenceddate": {"type": "timestamp", "index": 36, "name": "lastreferenceddate", "comment": null}, "partneraccountid": {"type": "string", "index": 37, "name": "partneraccountid", "comment": null}, "syncedquoteid": {"type": "string", "index": 38, "name": "syncedquoteid", "comment": null}, "contractid": {"type": "string", "index": 39, "name": "contractid", "comment": null}, "hasopenactivity": {"type": "boolean", "index": 40, "name": "hasopenactivity", "comment": null}, "hasoverduetask": {"type": "boolean", "index": 41, "name": "hasoverduetask", "comment": null}, "activitymetricid": {"type": "string", "index": 42, "name": "activitymetricid", "comment": null}, "activitymetricrollupid": {"type": "string", "index": 43, "name": "activitymetricrollupid", "comment": null}, "zuora_integration_error__c": {"type": "string", "index": 44, "name": "zuora_integration_error__c", "comment": null}, "email_intent__c": {"type": "boolean", "index": 45, "name": "email_intent__c", "comment": null}, "lead_source_desscription__c": {"type": "string", "index": 46, "name": "lead_source_desscription__c", "comment": null}, "why_lost__c": {"type": "string", "index": 47, "name": "why_lost__c", "comment": null}, "winback_reason__c": {"type": "string", "index": 48, "name": "winback_reason__c", "comment": null}, "cancelled_during_trial__c": {"type": "boolean", "index": 49, "name": "cancelled_during_trial__c", "comment": null}, "why_lost_description__c": {"type": "string", "index": 50, "name": "why_lost_description__c", "comment": null}, "account_from_opportunity__c": {"type": "string", "index": 51, "name": "account_from_opportunity__c", "comment": null}, "start_date__c": {"type": "string", "index": 52, "name": "start_date__c", "comment": null}, "utm_medium__c": {"type": "string", "index": 53, "name": "utm_medium__c", "comment": null}, "utm_campaign__c": {"type": "string", "index": 54, "name": "utm_campaign__c", "comment": null}, "utm_source__c": {"type": "string", "index": 55, "name": "utm_source__c", "comment": null}, "exclude_from_renewal_reminder__c": {"type": "boolean", "index": 56, "name": "exclude_from_renewal_reminder__c", "comment": null}, "custom_late_payment_interest__c": {"type": "double", "index": 57, "name": "custom_late_payment_interest__c", "comment": null}, "value_proposition__c": {"type": "string", "index": 58, "name": "value_proposition__c", "comment": null}, "submitted_ads_lp_form__c": {"type": "boolean", "index": 59, "name": "submitted_ads_lp_form__c", "comment": null}, "winback_notes__c": {"type": "string", "index": 60, "name": "winback_notes__c", "comment": null}, "winback_date__c": {"type": "string", "index": 61, "name": "winback_date__c", "comment": null}, "viewed_yotpo_ads_lp__c": {"type": "boolean", "index": 62, "name": "viewed_yotpo_ads_lp__c", "comment": null}, "is_active_subscription__c": {"type": "boolean", "index": 63, "name": "is_active_subscription__c", "comment": null}, "contract_duration__c": {"type": "string", "index": 64, "name": "contract_duration__c", "comment": null}, "expiration_date__c": {"type": "string", "index": 65, "name": "expiration_date__c", "comment": null}, "bfcm_23_fee__c": {"type": "double", "index": 66, "name": "bfcm_23_fee__c", "comment": null}, "discount__c": {"type": "double", "index": 67, "name": "discount__c", "comment": null}, "exclude_from_feedback_process__c": {"type": "boolean", "index": 68, "name": "exclude_from_feedback_process__c", "comment": null}, "package__c": {"type": "string", "index": 69, "name": "package__c", "comment": null}, "orders_included__c": {"type": "double", "index": 70, "name": "orders_included__c", "comment": null}, "gong__currentgenerators__c": {"type": "string", "index": 71, "name": "gong__currentgenerators__c", "comment": null}, "gong__deliveryinstallationstatus__c": {"type": "string", "index": 72, "name": "gong__deliveryinstallationstatus__c", "comment": null}, "order_comments__c": {"type": "string", "index": 73, "name": "order_comments__c", "comment": null}, "commercial_contact__c": {"type": "string", "index": 74, "name": "commercial_contact__c", "comment": null}, "order_internal_comments__c": {"type": "string", "index": 75, "name": "order_internal_comments__c", "comment": null}, "gong__maincompetitors__c": {"type": "string", "index": 76, "name": "gong__maincompetitors__c", "comment": null}, "lead_id__c": {"type": "string", "index": 77, "name": "lead_id__c", "comment": null}, "gong__ordernumber__c": {"type": "string", "index": 78, "name": "gong__ordernumber__c", "comment": null}, "enterprise_lead__c": {"type": "boolean", "index": 79, "name": "enterprise_lead__c", "comment": null}, "sms_commitment_value__c": {"type": "double", "index": 80, "name": "sms_commitment_value__c", "comment": null}, "cancellation_date__c": {"type": "string", "index": 81, "name": "cancellation_date__c", "comment": null}, "insights_product_name__c": {"type": "string", "index": 82, "name": "insights_product_name__c", "comment": null}, "sdr__c": {"type": "string", "index": 83, "name": "sdr__c", "comment": null}, "sms_commitment_term__c": {"type": "string", "index": 84, "name": "sms_commitment_term__c", "comment": null}, "retention_csm_free_days__c": {"type": "double", "index": 85, "name": "retention_csm_free_days__c", "comment": null}, "zuora_csm_free_days_delta__c": {"type": "double", "index": 86, "name": "zuora_csm_free_days_delta__c", "comment": null}, "prevent_downgrading__c": {"type": "boolean", "index": 87, "name": "prevent_downgrading__c", "comment": null}, "end_of_contract_extension_days__c": {"type": "double", "index": 88, "name": "end_of_contract_extension_days__c", "comment": null}, "optout_duration__c": {"type": "double", "index": 89, "name": "optout_duration__c", "comment": null}, "free_period_charge_flag__c": {"type": "string", "index": 90, "name": "free_period_charge_flag__c", "comment": null}, "tertiary_seller__c": {"type": "string", "index": 91, "name": "tertiary_seller__c", "comment": null}, "opportunity_insights_total_amount__c": {"type": "double", "index": 92, "name": "opportunity_insights_total_amount__c", "comment": null}, "ignore_legacy__c": {"type": "boolean", "index": 93, "name": "ignore_legacy__c", "comment": null}, "main_package_discount__c": {"type": "double", "index": 94, "name": "main_package_discount__c", "comment": null}, "wrong_field_do_not_touch__c": {"type": "boolean", "index": 95, "name": "wrong_field_do_not_touch__c", "comment": null}, "selected_product_id_conversion__c": {"type": "string", "index": 96, "name": "selected_product_id_conversion__c", "comment": null}, "retention_csm_free_months_reason__c": {"type": "string", "index": 97, "name": "retention_csm_free_months_reason__c", "comment": null}, "retention_csm_free_months__c": {"type": "string", "index": 98, "name": "retention_csm_free_months__c", "comment": null}, "partner_upsell__c": {"type": "boolean", "index": 99, "name": "partner_upsell__c", "comment": null}, "opportunity_loyalty_total_amount__c": {"type": "double", "index": 100, "name": "opportunity_loyalty_total_amount__c", "comment": null}, "current_contact_role__c": {"type": "string", "index": 101, "name": "current_contact_role__c", "comment": null}, "decision_maker_job_title__c": {"type": "string", "index": 102, "name": "decision_maker_job_title__c", "comment": null}, "estimated_aov__c": {"type": "double", "index": 103, "name": "estimated_aov__c", "comment": null}, "follow_up_in__c": {"type": "string", "index": 104, "name": "follow_up_in__c", "comment": null}, "follow_up_date_2__c": {"type": "string", "index": 105, "name": "follow_up_date_2__c", "comment": null}, "hidden_lost_reason_values__c": {"type": "string", "index": 106, "name": "hidden_lost_reason_values__c", "comment": null}, "strategic_investment__c": {"type": "string", "index": 107, "name": "strategic_investment__c", "comment": null}, "lost_updated_through_flow__c": {"type": "boolean", "index": 108, "name": "lost_updated_through_flow__c", "comment": null}, "monthly_budget__c": {"type": "string", "index": 109, "name": "monthly_budget__c", "comment": null}, "requested_feature__c": {"type": "string", "index": 110, "name": "requested_feature__c", "comment": null}, "reviews_competitor_price__c": {"type": "string", "index": 111, "name": "reviews_competitor_price__c", "comment": null}, "reviews_competitor__c": {"type": "string", "index": 112, "name": "reviews_competitor__c", "comment": null}, "time_willing_to_commit_of_months__c": {"type": "string", "index": 113, "name": "time_willing_to_commit_of_months__c", "comment": null}, "vms_competitor_price__c": {"type": "string", "index": 114, "name": "vms_competitor_price__c", "comment": null}, "vms_competitor__c": {"type": "string", "index": 115, "name": "vms_competitor__c", "comment": null}, "web_traffic__c": {"type": "string", "index": 116, "name": "web_traffic__c", "comment": null}, "why_bad_timing__c": {"type": "string", "index": 117, "name": "why_bad_timing__c", "comment": null}, "opportunity_reviews_total_amount__c": {"type": "double", "index": 118, "name": "opportunity_reviews_total_amount__c", "comment": null}, "end_of_contract_extension_month__c": {"type": "string", "index": 119, "name": "end_of_contract_extension_month__c", "comment": null}, "renewal_opportunity__c": {"type": "string", "index": 120, "name": "renewal_opportunity__c", "comment": null}, "last_activity_date__c": {"type": "string", "index": 121, "name": "last_activity_date__c", "comment": null}, "utm_term__c": {"type": "string", "index": 122, "name": "utm_term__c", "comment": null}, "why_do_you_think_they_didn_t_respond__c": {"type": "string", "index": 123, "name": "why_do_you_think_they_didn_t_respond__c", "comment": null}, "merged_contract__c": {"type": "boolean", "index": 124, "name": "merged_contract__c", "comment": null}, "initial_account_product_process__c": {"type": "boolean", "index": 125, "name": "initial_account_product_process__c", "comment": null}, "gong__trackingnumber__c": {"type": "string", "index": 126, "name": "gong__trackingnumber__c", "comment": null}, "dealhub_main_add_on_list_price__c": {"type": "double", "index": 127, "name": "dealhub_main_add_on_list_price__c", "comment": null}, "owner_manager_email__c": {"type": "string", "index": 128, "name": "owner_manager_email__c", "comment": null}, "pre_lost_status__c": {"type": "string", "index": 129, "name": "pre_lost_status__c", "comment": null}, "sdr_id__c": {"type": "string", "index": 130, "name": "sdr_id__c", "comment": null}, "bill_to__c": {"type": "string", "index": 131, "name": "bill_to__c", "comment": null}, "parent_account_billing__c": {"type": "string", "index": 132, "name": "parent_account_billing__c", "comment": null}, "zuora_sync_ups_sales_free_months__c": {"type": "string", "index": 133, "name": "zuora_sync_ups_sales_free_months__c", "comment": null}, "next_contact_date__c": {"type": "string", "index": 134, "name": "next_contact_date__c", "comment": null}, "next_contact_type__c": {"type": "string", "index": 135, "name": "next_contact_type__c", "comment": null}, "opportunity_sms_total_amount__c": {"type": "double", "index": 136, "name": "opportunity_sms_total_amount__c", "comment": null}, "upsell_opportunity__c": {"type": "string", "index": 137, "name": "upsell_opportunity__c", "comment": null}, "opportunity_vms_total_amount__c": {"type": "double", "index": 138, "name": "opportunity_vms_total_amount__c", "comment": null}, "pipeline_usd__c": {"type": "double", "index": 139, "name": "pipeline_usd__c", "comment": null}, "custom_earr__c": {"type": "double", "index": 140, "name": "custom_earr__c", "comment": null}, "date_of_converting_nurturing_email__c": {"type": "timestamp", "index": 141, "name": "date_of_converting_nurturing_email__c", "comment": null}, "sales_estimated_subscribers__c": {"type": "string", "index": 142, "name": "sales_estimated_subscribers__c", "comment": null}, "num_of_extra_domain_products__c": {"type": "double", "index": 143, "name": "num_of_extra_domain_products__c", "comment": null}, "sms_usage_cancellation_date__c": {"type": "string", "index": 144, "name": "sms_usage_cancellation_date__c", "comment": null}, "zuora_sync_ups_csm_free_months__c": {"type": "string", "index": 145, "name": "zuora_sync_ups_csm_free_months__c", "comment": null}, "compelling_event_del__c": {"type": "string", "index": 146, "name": "compelling_event_del__c", "comment": null}, "push_as_new_sale__c": {"type": "boolean", "index": 147, "name": "push_as_new_sale__c", "comment": null}, "secondary_seller__c": {"type": "string", "index": 148, "name": "secondary_seller__c", "comment": null}, "original_iap_tier__c": {"type": "string", "index": 149, "name": "original_iap_tier__c", "comment": null}, "secondary_seller_role__c": {"type": "string", "index": 150, "name": "secondary_seller_role__c", "comment": null}, "earr_usd__c": {"type": "double", "index": 151, "name": "earr_usd__c", "comment": null}, "end_date__c": {"type": "string", "index": 152, "name": "end_date__c", "comment": null}, "main_csm__c": {"type": "string", "index": 153, "name": "main_csm__c", "comment": null}, "law_reason__c": {"type": "string", "index": 154, "name": "law_reason__c", "comment": null}, "law_acv__c": {"type": "double", "index": 155, "name": "law_acv__c", "comment": null}, "opportunity_assignment__c": {"type": "string", "index": 156, "name": "opportunity_assignment__c", "comment": null}, "include_mr__c": {"type": "boolean", "index": 157, "name": "include_mr__c", "comment": null}, "usage_opportunity__c": {"type": "boolean", "index": 158, "name": "usage_opportunity__c", "comment": null}, "purchased_as_mr__c": {"type": "boolean", "index": 159, "name": "purchased_as_mr__c", "comment": null}, "number_of_extra_domains__c": {"type": "double", "index": 160, "name": "number_of_extra_domains__c", "comment": null}, "original_referrer__c": {"type": "string", "index": 161, "name": "original_referrer__c", "comment": null}, "added_extra_seats__c": {"type": "double", "index": 162, "name": "added_extra_seats__c", "comment": null}, "included_seats__c": {"type": "double", "index": 163, "name": "included_seats__c", "comment": null}, "no_dedicated_csm__c": {"type": "double", "index": 164, "name": "no_dedicated_csm__c", "comment": null}, "number_of_insights_products__c": {"type": "double", "index": 165, "name": "number_of_insights_products__c", "comment": null}, "ask_to_renew__c": {"type": "boolean", "index": 166, "name": "ask_to_renew__c", "comment": null}, "talk_to_csm__c": {"type": "boolean", "index": 167, "name": "talk_to_csm__c", "comment": null}, "exclude_from_auto_renewal_process__c": {"type": "boolean", "index": 168, "name": "exclude_from_auto_renewal_process__c", "comment": null}, "csm_team_leader__c": {"type": "string", "index": 169, "name": "csm_team_leader__c", "comment": null}, "original_owner_role__c": {"type": "string", "index": 170, "name": "original_owner_role__c", "comment": null}, "original_sdr_role__c": {"type": "string", "index": 171, "name": "original_sdr_role__c", "comment": null}, "referrer_owner__c": {"type": "string", "index": 172, "name": "referrer_owner__c", "comment": null}, "sales_demo_feedback__c": {"type": "string", "index": 173, "name": "sales_demo_feedback__c", "comment": null}, "dealhub_quote_id__c": {"type": "string", "index": 174, "name": "dealhub_quote_id__c", "comment": null}, "total_rev_share_paid__c": {"type": "double", "index": 175, "name": "total_rev_share_paid__c", "comment": null}, "initiate_rev_share_process_temp__c": {"type": "boolean", "index": 176, "name": "initiate_rev_share_process_temp__c", "comment": null}, "winback_opportunity__c": {"type": "string", "index": 177, "name": "winback_opportunity__c", "comment": null}, "add_to_winback_process__c": {"type": "string", "index": 178, "name": "add_to_winback_process__c", "comment": null}, "sales_estimated_monthly_orders__c": {"type": "string", "index": 179, "name": "sales_estimated_monthly_orders__c", "comment": null}, "auto_renewal_contact_name__c": {"type": "string", "index": 180, "name": "auto_renewal_contact_name__c", "comment": null}, "effective_date_free_months_sb__c": {"type": "string", "index": 181, "name": "effective_date_free_months_sb__c", "comment": null}, "selected_product_for_lead_conversion__c": {"type": "string", "index": 182, "name": "selected_product_for_lead_conversion__c", "comment": null}, "utm_content__c": {"type": "string", "index": 183, "name": "utm_content__c", "comment": null}, "billing_frequency__c": {"type": "string", "index": 184, "name": "billing_frequency__c", "comment": null}, "duplicate_product_family__c": {"type": "boolean", "index": 185, "name": "duplicate_product_family__c", "comment": null}, "estimated_subscriptions_gmv__c": {"type": "double", "index": 186, "name": "estimated_subscriptions_gmv__c", "comment": null}, "dealhub_main_add_on_total_price__c": {"type": "double", "index": 187, "name": "dealhub_main_add_on_total_price__c", "comment": null}, "add_on_product__c": {"type": "string", "index": 188, "name": "add_on_product__c", "comment": null}, "temporary_ar_process_include__c": {"type": "boolean", "index": 189, "name": "temporary_ar_process_include__c", "comment": null}, "estimated_review_requests_per_month__c": {"type": "double", "index": 190, "name": "estimated_review_requests_per_month__c", "comment": null}, "legacy_acv__c": {"type": "double", "index": 191, "name": "legacy_acv__c", "comment": null}, "main_package_prodcut__c": {"type": "string", "index": 192, "name": "main_package_prodcut__c", "comment": null}, "email_marketing_earr__c": {"type": "double", "index": 193, "name": "email_marketing_earr__c", "comment": null}, "number_of_add_ons__c": {"type": "double", "index": 194, "name": "number_of_add_ons__c", "comment": null}, "number_of_main_products__c": {"type": "double", "index": 195, "name": "number_of_main_products__c", "comment": null}, "opp_products_contain_discount__c": {"type": "double", "index": 196, "name": "opp_products_contain_discount__c", "comment": null}, "sum_of_sales_price__c": {"type": "double", "index": 197, "name": "sum_of_sales_price__c", "comment": null}, "rev_share_rate__c": {"type": "string", "index": 198, "name": "rev_share_rate__c", "comment": null}, "customer_refund_required__c": {"type": "string", "index": 199, "name": "customer_refund_required__c", "comment": null}, "good_fit_for_the_annual_plan_opp__c": {"type": "string", "index": 200, "name": "good_fit_for_the_annual_plan_opp__c", "comment": null}, "change_currency_flag__c": {"type": "boolean", "index": 201, "name": "change_currency_flag__c", "comment": null}, "conversion_rate_raw__c": {"type": "double", "index": 202, "name": "conversion_rate_raw__c", "comment": null}, "sales_enginieer__c": {"type": "string", "index": 203, "name": "sales_enginieer__c", "comment": null}, "invoices_in_dunning__c": {"type": "double", "index": 204, "name": "invoices_in_dunning__c", "comment": null}, "last_invoice_fully_paid__c": {"type": "boolean", "index": 205, "name": "last_invoice_fully_paid__c", "comment": null}, "ps_products_flag__c": {"type": "boolean", "index": 206, "name": "ps_products_flag__c", "comment": null}, "omnichannel_deal__c": {"type": "boolean", "index": 207, "name": "omnichannel_deal__c", "comment": null}, "number_of_professional_services__c": {"type": "double", "index": 208, "name": "number_of_professional_services__c", "comment": null}, "number_of_whitelabel_products__c": {"type": "double", "index": 209, "name": "number_of_whitelabel_products__c", "comment": null}, "ps_cost__c": {"type": "double", "index": 210, "name": "ps_cost__c", "comment": null}, "saas_amount__c": {"type": "double", "index": 211, "name": "saas_amount__c", "comment": null}, "saas_extra_domain_w_disc__c": {"type": "double", "index": 212, "name": "saas_extra_domain_w_disc__c", "comment": null}, "saas_wl_amount__c": {"type": "double", "index": 213, "name": "saas_wl_amount__c", "comment": null}, "dealhub_additional_comments__c": {"type": "string", "index": 214, "name": "dealhub_additional_comments__c", "comment": null}, "hidden_lost_reason_values_renewal_opp__c": {"type": "string", "index": 215, "name": "hidden_lost_reason_values_renewal_opp__c", "comment": null}, "lost_sub_reason__c": {"type": "string", "index": 216, "name": "lost_sub_reason__c", "comment": null}, "price_per_installment_usd__c": {"type": "double", "index": 217, "name": "price_per_installment_usd__c", "comment": null}, "mid_market_pricing_tier__c": {"type": "string", "index": 218, "name": "mid_market_pricing_tier__c", "comment": null}, "remove_auto_renew_clause__c": {"type": "boolean", "index": 219, "name": "remove_auto_renew_clause__c", "comment": null}, "partner_commission_percentage__c": {"type": "string", "index": 220, "name": "partner_commission_percentage__c", "comment": null}, "number_of_trial_products__c": {"type": "double", "index": 221, "name": "number_of_trial_products__c", "comment": null}, "zuora_sync_manually__c": {"type": "boolean", "index": 222, "name": "zuora_sync_manually__c", "comment": null}, "loss_reason_email__c": {"type": "string", "index": 223, "name": "loss_reason_email__c", "comment": null}, "swell_orders__c": {"type": "double", "index": 224, "name": "swell_orders__c", "comment": null}, "free_months_for_contract_alignment__c": {"type": "string", "index": 225, "name": "free_months_for_contract_alignment__c", "comment": null}, "actual_end_date__c": {"type": "string", "index": 226, "name": "actual_end_date__c", "comment": null}, "combined_opportunities_acv__c": {"type": "double", "index": 227, "name": "combined_opportunities_acv__c", "comment": null}, "contract_renewal_helpe_number__c": {"type": "double", "index": 228, "name": "contract_renewal_helpe_number__c", "comment": null}, "contract_renewal_helper_number_year__c": {"type": "double", "index": 229, "name": "contract_renewal_helper_number_year__c", "comment": null}, "contract_renewal_helper_record_type__c": {"type": "string", "index": 230, "name": "contract_renewal_helper_record_type__c", "comment": null}, "contract_renewal_manual__c": {"type": "string", "index": 231, "name": "contract_renewal_manual__c", "comment": null}, "merge_to_opportunity__c": {"type": "string", "index": 232, "name": "merge_to_opportunity__c", "comment": null}, "swell_acv__c": {"type": "double", "index": 233, "name": "swell_acv__c", "comment": null}, "of_won_child_opps__c": {"type": "double", "index": 234, "name": "of_won_child_opps__c", "comment": null}, "initiate_contract_renewal_datafix__c": {"type": "boolean", "index": 235, "name": "initiate_contract_renewal_datafix__c", "comment": null}, "dealhub_signed_date__c": {"type": "timestamp", "index": 236, "name": "dealhub_signed_date__c", "comment": null}, "dealhub_stage__c": {"type": "string", "index": 237, "name": "dealhub_stage__c", "comment": null}, "owner_name__c": {"type": "string", "index": 238, "name": "owner_name__c", "comment": null}, "technical_contact_first_name__c": {"type": "string", "index": 239, "name": "technical_contact_first_name__c", "comment": null}, "technical_contact_last_name__c": {"type": "string", "index": 240, "name": "technical_contact_last_name__c", "comment": null}, "loyalty_downgrade_to_a_monthly_plan__c": {"type": "string", "index": 241, "name": "loyalty_downgrade_to_a_monthly_plan__c", "comment": null}, "record_flags__c": {"type": "string", "index": 242, "name": "record_flags__c", "comment": null}, "user_s_territory__c": {"type": "string", "index": 243, "name": "user_s_territory__c", "comment": null}, "technical_contact_email__c": {"type": "string", "index": 244, "name": "technical_contact_email__c", "comment": null}, "technical_contact_phone__c": {"type": "string", "index": 245, "name": "technical_contact_phone__c", "comment": null}, "sms_second_commitment_value__c": {"type": "double", "index": 246, "name": "sms_second_commitment_value__c", "comment": null}, "client_s_agency__c": {"type": "string", "index": 247, "name": "client_s_agency__c", "comment": null}, "most_recent_assignment_reason__c": {"type": "string", "index": 248, "name": "most_recent_assignment_reason__c", "comment": null}, "most_recent_assignment_sub_reason__c": {"type": "string", "index": 249, "name": "most_recent_assignment_sub_reason__c", "comment": null}, "initiate_deal_type_calculation__c": {"type": "boolean", "index": 250, "name": "initiate_deal_type_calculation__c", "comment": null}, "deal_type__c": {"type": "string", "index": 251, "name": "deal_type__c", "comment": null}, "auto_closed_by_ar__c": {"type": "boolean", "index": 252, "name": "auto_closed_by_ar__c", "comment": null}, "most_recent_assignment_date__c": {"type": "timestamp", "index": 253, "name": "most_recent_assignment_date__c", "comment": null}, "include_in_auto_renewal_process__c": {"type": "boolean", "index": 254, "name": "include_in_auto_renewal_process__c", "comment": null}, "loss_to_syndication__c": {"type": "boolean", "index": 255, "name": "loss_to_syndication__c", "comment": null}, "added_to_lockdown_process_date__c": {"type": "timestamp", "index": 256, "name": "added_to_lockdown_process_date__c", "comment": null}, "loyalty_csm_team_upon_closed__c": {"type": "string", "index": 257, "name": "loyalty_csm_team_upon_closed__c", "comment": null}, "primary_contact_name__c": {"type": "string", "index": 258, "name": "primary_contact_name__c", "comment": null}, "total_yotpo_acv__c": {"type": "double", "index": 259, "name": "total_yotpo_acv__c", "comment": null}, "dealhub_end_date__c": {"type": "string", "index": 260, "name": "dealhub_end_date__c", "comment": null}, "scsm_deal__c": {"type": "boolean", "index": 261, "name": "scsm_deal__c", "comment": null}, "remove_from_al_process__c": {"type": "boolean", "index": 262, "name": "remove_from_al_process__c", "comment": null}, "dealhub_url__c": {"type": "string", "index": 263, "name": "dealhub_url__c", "comment": null}, "dealhub_new_address__c": {"type": "string", "index": 264, "name": "dealhub_new_address__c", "comment": null}, "dealhub_domain_list__c": {"type": "string", "index": 265, "name": "dealhub_domain_list__c", "comment": null}, "dealhub_custom_terms__c": {"type": "string", "index": 266, "name": "dealhub_custom_terms__c", "comment": null}, "signed_with_auto_renewal_clause__c": {"type": "boolean", "index": 267, "name": "signed_with_auto_renewal_clause__c", "comment": null}, "no_touch_notification_date__c": {"type": "string", "index": 268, "name": "no_touch_notification_date__c", "comment": null}, "loyalty_csm_upon_closed_won__c": {"type": "string", "index": 269, "name": "loyalty_csm_upon_closed_won__c", "comment": null}, "primary_csm_team_upon_closed__c": {"type": "string", "index": 270, "name": "primary_csm_team_upon_closed__c", "comment": null}, "primary_csm_upon_closed__c": {"type": "string", "index": 271, "name": "primary_csm_upon_closed__c", "comment": null}, "actual_end_date_new__c": {"type": "string", "index": 272, "name": "actual_end_date_new__c", "comment": null}, "reviews_csm_team_upon_closed__c": {"type": "string", "index": 273, "name": "reviews_csm_team_upon_closed__c", "comment": null}, "reviews_csm_upon_closed__c": {"type": "string", "index": 274, "name": "reviews_csm_upon_closed__c", "comment": null}, "loyalty_and_referrals_competitors__c": {"type": "string", "index": 275, "name": "loyalty_and_referrals_competitors__c", "comment": null}, "sms_csm_team_upon_closed__c": {"type": "string", "index": 276, "name": "sms_csm_team_upon_closed__c", "comment": null}, "delayed_start_date_approved_partners__c": {"type": "string", "index": 277, "name": "delayed_start_date_approved_partners__c", "comment": null}, "align_with_original_contract_renewal__c": {"type": "string", "index": 278, "name": "align_with_original_contract_renewal__c", "comment": null}, "create_potential_opportunity__c": {"type": "boolean", "index": 279, "name": "create_potential_opportunity__c", "comment": null}, "is_bundle__c": {"type": "boolean", "index": 280, "name": "is_bundle__c", "comment": null}, "locked_account__c": {"type": "boolean", "index": 281, "name": "locked_account__c", "comment": null}, "initiate_tcv_flow__c": {"type": "boolean", "index": 282, "name": "initiate_tcv_flow__c", "comment": null}, "total_domains__c": {"type": "double", "index": 283, "name": "total_domains__c", "comment": null}, "sdr_role__c": {"type": "string", "index": 284, "name": "sdr_role__c", "comment": null}, "remove_from_no_touch__c": {"type": "string", "index": 285, "name": "remove_from_no_touch__c", "comment": null}, "dealhub_total_seats__c": {"type": "double", "index": 286, "name": "dealhub_total_seats__c", "comment": null}, "sms_csm_upon_closed__c": {"type": "string", "index": 287, "name": "sms_csm_upon_closed__c", "comment": null}, "subscription_number__c": {"type": "string", "index": 288, "name": "subscription_number__c", "comment": null}, "loss_reason_lr__c": {"type": "string", "index": 289, "name": "loss_reason_lr__c", "comment": null}, "loss_reason_reviews__c": {"type": "string", "index": 290, "name": "loss_reason_reviews__c", "comment": null}, "initiate_renewal_opportunity_creation__c": {"type": "boolean", "index": 291, "name": "initiate_renewal_opportunity_creation__c", "comment": null}, "partner_referral__c": {"type": "string", "index": 292, "name": "partner_referral__c", "comment": null}, "created_from_cs_lead__c": {"type": "string", "index": 293, "name": "created_from_cs_lead__c", "comment": null}, "original_owner_manager__c": {"type": "string", "index": 294, "name": "original_owner_manager__c", "comment": null}, "last_invoice_end_date__c": {"type": "string", "index": 295, "name": "last_invoice_end_date__c", "comment": null}, "attribution_channel__c": {"type": "string", "index": 296, "name": "attribution_channel__c", "comment": null}, "sales_segment__c": {"type": "string", "index": 297, "name": "sales_segment__c", "comment": null}, "sales_region__c": {"type": "string", "index": 298, "name": "sales_region__c", "comment": null}, "free_month_for_usage_product__c": {"type": "double", "index": 299, "name": "free_month_for_usage_product__c", "comment": null}, "zuora_sync_free_months__c": {"type": "string", "index": 300, "name": "zuora_sync_free_months__c", "comment": null}, "original_curation_provider__c": {"type": "string", "index": 301, "name": "original_curation_provider__c", "comment": null}, "zuora_sync_lost__c": {"type": "boolean", "index": 302, "name": "zuora_sync_lost__c", "comment": null}, "zuora_sync_account__c": {"type": "string", "index": 303, "name": "zuora_sync_account__c", "comment": null}, "zuora_sync_opportunity__c": {"type": "string", "index": 304, "name": "zuora_sync_opportunity__c", "comment": null}, "growth_package_loyalty__c": {"type": "string", "index": 305, "name": "growth_package_loyalty__c", "comment": null}, "zuora_period_change_start_date__c": {"type": "string", "index": 306, "name": "zuora_period_change_start_date__c", "comment": null}, "approval_manager__c": {"type": "string", "index": 307, "name": "approval_manager__c", "comment": null}, "original_loyalty_referral_provider_m__c": {"type": "string", "index": 308, "name": "original_loyalty_referral_provider_m__c", "comment": null}, "original_review_provider__c": {"type": "string", "index": 309, "name": "original_review_provider__c", "comment": null}, "entered_discovery__c": {"type": "timestamp", "index": 310, "name": "entered_discovery__c", "comment": null}, "entered_demo__c": {"type": "timestamp", "index": 311, "name": "entered_demo__c", "comment": null}, "entered_evaluation__c": {"type": "timestamp", "index": 312, "name": "entered_evaluation__c", "comment": null}, "entered_propose__c": {"type": "timestamp", "index": 313, "name": "entered_propose__c", "comment": null}, "entered_contracting__c": {"type": "timestamp", "index": 314, "name": "entered_contracting__c", "comment": null}, "entered_contract_signed__c": {"type": "timestamp", "index": 315, "name": "entered_contract_signed__c", "comment": null}, "entered_closed__c": {"type": "timestamp", "index": 316, "name": "entered_closed__c", "comment": null}, "zuora_sync_merge_opportunity__c": {"type": "boolean", "index": 317, "name": "zuora_sync_merge_opportunity__c", "comment": null}, "sql_assignment__c": {"type": "string", "index": 318, "name": "sql_assignment__c", "comment": null}, "recent_source__c": {"type": "string", "index": 319, "name": "recent_source__c", "comment": null}, "most_recent_assignment_bucket__c": {"type": "string", "index": 320, "name": "most_recent_assignment_bucket__c", "comment": null}, "downgraded_package__c": {"type": "string", "index": 321, "name": "downgraded_package__c", "comment": null}, "is_this_a_downgrade_to_a_monthly_plan__c": {"type": "string", "index": 322, "name": "is_this_a_downgrade_to_a_monthly_plan__c", "comment": null}, "company_expansion__c": {"type": "boolean", "index": 323, "name": "company_expansion__c", "comment": null}, "account_manager_assignment_date__c": {"type": "timestamp", "index": 324, "name": "account_manager_assignment_date__c", "comment": null}, "combined_opportunities_earr__c": {"type": "double", "index": 325, "name": "combined_opportunities_earr__c", "comment": null}, "situation__c": {"type": "string", "index": 326, "name": "situation__c", "comment": null}, "pain__c": {"type": "string", "index": 327, "name": "pain__c", "comment": null}, "impact__c": {"type": "string", "index": 328, "name": "impact__c", "comment": null}, "critical_event__c": {"type": "string", "index": 329, "name": "critical_event__c", "comment": null}, "decision__c": {"type": "string", "index": 330, "name": "decision__c", "comment": null}, "relevant_csm_for_cs_outreach__c": {"type": "string", "index": 331, "name": "relevant_csm_for_cs_outreach__c", "comment": null}, "initial_relevant_csm_update__c": {"type": "boolean", "index": 332, "name": "initial_relevant_csm_update__c", "comment": null}, "zuora_sync_sales_free_months__c": {"type": "string", "index": 333, "name": "zuora_sync_sales_free_months__c", "comment": null}, "include_in_no_touch_process__c": {"type": "boolean", "index": 334, "name": "include_in_no_touch_process__c", "comment": null}, "exclude_from_no_touch_process__c": {"type": "boolean", "index": 335, "name": "exclude_from_no_touch_process__c", "comment": null}, "done_t_send_auto_renewal_notification__c": {"type": "boolean", "index": 336, "name": "done_t_send_auto_renewal_notification__c", "comment": null}, "zuora_sync_batch_update__c": {"type": "string", "index": 337, "name": "zuora_sync_batch_update__c", "comment": null}, "zuora_sales_free_month_delta__c": {"type": "double", "index": 338, "name": "zuora_sales_free_month_delta__c", "comment": null}, "zuora_csm_free_months_delta__c": {"type": "double", "index": 339, "name": "zuora_csm_free_months_delta__c", "comment": null}, "owns_by_group__c": {"type": "string", "index": 340, "name": "owns_by_group__c", "comment": null}, "initiate_credit_notification__c": {"type": "boolean", "index": 341, "name": "initiate_credit_notification__c", "comment": null}, "ar_helper_order_exclusion__c": {"type": "double", "index": 342, "name": "ar_helper_order_exclusion__c", "comment": null}, "mark_as_master__c": {"type": "string", "index": 343, "name": "mark_as_master__c", "comment": null}, "zuora_last_charge_amount__c": {"type": "double", "index": 344, "name": "zuora_last_charge_amount__c", "comment": null}, "zuora_last_charge_date__c": {"type": "string", "index": 345, "name": "zuora_last_charge_date__c", "comment": null}, "add_auto_renew_clause__c": {"type": "boolean", "index": 346, "name": "add_auto_renew_clause__c", "comment": null}, "total_sms_commitment_value__c": {"type": "double", "index": 347, "name": "total_sms_commitment_value__c", "comment": null}, "entered_to_renewal_assist_process_date__c": {"type": "timestamp", "index": 348, "name": "entered_to_renewal_assist_process_date__c", "comment": null}, "entered_to_auto_renewal_process_date__c": {"type": "timestamp", "index": 349, "name": "entered_to_auto_renewal_process_date__c", "comment": null}, "migration_from_monthly__c": {"type": "string", "index": 350, "name": "migration_from_monthly__c", "comment": null}, "package_category__c": {"type": "string", "index": 351, "name": "package_category__c", "comment": null}, "intiate_gbp_conversion_rate_fix__c": {"type": "boolean", "index": 352, "name": "intiate_gbp_conversion_rate_fix__c", "comment": null}, "sms_acv__c": {"type": "double", "index": 353, "name": "sms_acv__c", "comment": null}, "purchase_order_number__c": {"type": "string", "index": 354, "name": "purchase_order_number__c", "comment": null}, "lost_details_update_date__c": {"type": "timestamp", "index": 355, "name": "lost_details_update_date__c", "comment": null}, "main_product_families__c": {"type": "string", "index": 356, "name": "main_product_families__c", "comment": null}, "product_interest__c": {"type": "string", "index": 357, "name": "product_interest__c", "comment": null}, "covid_implications__c": {"type": "string", "index": 358, "name": "covid_implications__c", "comment": null}, "ae_forecast_category__c": {"type": "string", "index": 359, "name": "ae_forecast_category__c", "comment": null}, "zuora_sync_poc_extension__c": {"type": "string", "index": 360, "name": "zuora_sync_poc_extension__c", "comment": null}, "timestamp_retention_csm_free_months__c": {"type": "timestamp", "index": 361, "name": "timestamp_retention_csm_free_months__c", "comment": null}, "entered_quote_email_sent__c": {"type": "timestamp", "index": 362, "name": "entered_quote_email_sent__c", "comment": null}, "cs_comp_paid__c": {"type": "string", "index": 363, "name": "cs_comp_paid__c", "comment": null}, "converted__c": {"type": "boolean", "index": 364, "name": "converted__c", "comment": null}, "timestamp_billing_frequency__c": {"type": "timestamp", "index": 365, "name": "timestamp_billing_frequency__c", "comment": null}, "segment_for_bi__c": {"type": "string", "index": 366, "name": "segment_for_bi__c", "comment": null}, "overlay_ae__c": {"type": "string", "index": 367, "name": "overlay_ae__c", "comment": null}, "relevant_app_keys_for_sms__c": {"type": "string", "index": 368, "name": "relevant_app_keys_for_sms__c", "comment": null}, "includes_sms_product__c": {"type": "boolean", "index": 369, "name": "includes_sms_product__c", "comment": null}, "includes_self_service_product__c": {"type": "boolean", "index": 370, "name": "includes_self_service_product__c", "comment": null}, "excluded_from_comp_on__c": {"type": "boolean", "index": 371, "name": "excluded_from_comp_on__c", "comment": null}, "ups_acv__c": {"type": "double", "index": 372, "name": "ups_acv__c", "comment": null}, "loss_reason_sms__c": {"type": "string", "index": 373, "name": "loss_reason_sms__c", "comment": null}, "total_domains_lr__c": {"type": "double", "index": 374, "name": "total_domains_lr__c", "comment": null}, "total_domains_sms__c": {"type": "double", "index": 375, "name": "total_domains_sms__c", "comment": null}, "vms_acv__c": {"type": "double", "index": 376, "name": "vms_acv__c", "comment": null}, "loss_reason_vms__c": {"type": "string", "index": 377, "name": "loss_reason_vms__c", "comment": null}, "lost_opps_products_considered__c": {"type": "string", "index": 378, "name": "lost_opps_products_considered__c", "comment": null}, "ctp_code__c": {"type": "string", "index": 379, "name": "ctp_code__c", "comment": null}, "ups_account__c": {"type": "string", "index": 380, "name": "ups_account__c", "comment": null}, "zuora_sync_ups_lost__c": {"type": "boolean", "index": 381, "name": "zuora_sync_ups_lost__c", "comment": null}, "concession_reason__c": {"type": "string", "index": 382, "name": "concession_reason__c", "comment": null}, "ups_subscription_number__c": {"type": "string", "index": 383, "name": "ups_subscription_number__c", "comment": null}, "annual_reviews_for_syndication__c": {"type": "double", "index": 384, "name": "annual_reviews_for_syndication__c", "comment": null}, "total_domains_vms__c": {"type": "double", "index": 385, "name": "total_domains_vms__c", "comment": null}, "sdr_lookup__c": {"type": "string", "index": 386, "name": "sdr_lookup__c", "comment": null}, "includes_syndication__c": {"type": "boolean", "index": 387, "name": "includes_syndication__c", "comment": null}, "syndication_domains__c": {"type": "string", "index": 388, "name": "syndication_domains__c", "comment": null}, "timestamp_sales_free_months__c": {"type": "timestamp", "index": 389, "name": "timestamp_sales_free_months__c", "comment": null}, "deprovisioning_outcome__c": {"type": "string", "index": 390, "name": "deprovisioning_outcome__c", "comment": null}, "do_not_update_territory__c": {"type": "boolean", "index": 391, "name": "do_not_update_territory__c", "comment": null}, "territory_new__c": {"type": "string", "index": 392, "name": "territory_new__c", "comment": null}, "key_agency_stakeholder_contact__c": {"type": "string", "index": 393, "name": "key_agency_stakeholder_contact__c", "comment": null}, "close_date_pushed__c": {"type": "double", "index": 394, "name": "close_date_pushed__c", "comment": null}, "must_win__c": {"type": "boolean", "index": 395, "name": "must_win__c", "comment": null}, "lost_main_products__c": {"type": "string", "index": 396, "name": "lost_main_products__c", "comment": null}, "opt_out_clause__c": {"type": "boolean", "index": 397, "name": "opt_out_clause__c", "comment": null}, "end_of_opt_out_period__c": {"type": "string", "index": 398, "name": "end_of_opt_out_period__c", "comment": null}, "gold_earr_usd__c": {"type": "double", "index": 399, "name": "gold_earr_usd__c", "comment": null}, "prime_earr_usd__c": {"type": "double", "index": 400, "name": "prime_earr_usd__c", "comment": null}, "reviews_csm_manager_upon_closed__c": {"type": "string", "index": 401, "name": "reviews_csm_manager_upon_closed__c", "comment": null}, "sms_csm_manager_upon_closed__c": {"type": "string", "index": 402, "name": "sms_csm_manager_upon_closed__c", "comment": null}, "saas_csms_managers_upon_closed__c": {"type": "string", "index": 403, "name": "saas_csms_managers_upon_closed__c", "comment": null}, "l_r_number_of_total_orders_included__c": {"type": "double", "index": 404, "name": "l_r_number_of_total_orders_included__c", "comment": null}, "reviews_number_of_total_orders_included__c": {"type": "double", "index": 405, "name": "reviews_number_of_total_orders_included__c", "comment": null}, "moderation_escalation_email__c": {"type": "string", "index": 406, "name": "moderation_escalation_email__c", "comment": null}, "upsell_with_in_term_renewal__c": {"type": "boolean", "index": 407, "name": "upsell_with_in_term_renewal__c", "comment": null}, "reference_call__c": {"type": "boolean", "index": 408, "name": "reference_call__c", "comment": null}, "acv_earr__c": {"type": "double", "index": 409, "name": "acv_earr__c", "comment": null}, "last_3_month_avg_total_orders_stamping__c": {"type": "double", "index": 410, "name": "last_3_month_avg_total_orders_stamping__c", "comment": null}, "tcv_new__c": {"type": "double", "index": 411, "name": "tcv_new__c", "comment": null}, "domain__c": {"type": "string", "index": 412, "name": "domain__c", "comment": null}, "sms_synergies_only__c": {"type": "boolean", "index": 413, "name": "sms_synergies_only__c", "comment": null}, "approved_to_use_docusign__c": {"type": "boolean", "index": 414, "name": "approved_to_use_docusign__c", "comment": null}, "law_start_date__c": {"type": "string", "index": 415, "name": "law_start_date__c", "comment": null}, "reasons_for_using_docusign__c": {"type": "string", "index": 416, "name": "reasons_for_using_docusign__c", "comment": null}, "delta_earr_email__c": {"type": "double", "index": 417, "name": "delta_earr_email__c", "comment": null}, "of_emails_per_month__c": {"type": "double", "index": 418, "name": "of_emails_per_month__c", "comment": null}, "promotions__c": {"type": "string", "index": 419, "name": "promotions__c", "comment": null}, "memo__c": {"type": "string", "index": 420, "name": "memo__c", "comment": null}, "orders_included_l_r__c": {"type": "double", "index": 421, "name": "orders_included_l_r__c", "comment": null}, "other__c": {"type": "string", "index": 422, "name": "other__c", "comment": null}, "pos_provider__c": {"type": "string", "index": 423, "name": "pos_provider__c", "comment": null}, "renewal_to_opp_won_sale__c": {"type": "boolean", "index": 424, "name": "renewal_to_opp_won_sale__c", "comment": null}, "mrr__c": {"type": "double", "index": 425, "name": "mrr__c", "comment": null}, "number_of_products__c": {"type": "double", "index": 426, "name": "number_of_products__c", "comment": null}, "usage_team_attribution__c": {"type": "string", "index": 427, "name": "usage_team_attribution__c", "comment": null}, "x6sense_attribution__c": {"type": "boolean", "index": 428, "name": "x6sense_attribution__c", "comment": null}, "secondary_sales_engineer__c": {"type": "string", "index": 429, "name": "secondary_sales_engineer__c", "comment": null}, "ambition__timestamp_for_unittest__c": {"type": "timestamp", "index": 430, "name": "ambition__timestamp_for_unittest__c", "comment": null}, "salesloft1__most_recent_cadence_name__c": {"type": "string", "index": 431, "name": "salesloft1__most_recent_cadence_name__c", "comment": null}, "salesloft1__most_recent_last_completed_step__c": {"type": "double", "index": 432, "name": "salesloft1__most_recent_last_completed_step__c", "comment": null}, "salesloft1__primary_contact__c": {"type": "string", "index": 433, "name": "salesloft1__primary_contact__c", "comment": null}, "deal_type_as_per_deal_summary__c": {"type": "string", "index": 434, "name": "deal_type_as_per_deal_summary__c", "comment": null}, "msa_type__c": {"type": "string", "index": 435, "name": "msa_type__c", "comment": null}, "manual_team_attribution__c": {"type": "boolean", "index": 436, "name": "manual_team_attribution__c", "comment": null}, "purchase_order_expiration_date__c": {"type": "string", "index": 437, "name": "purchase_order_expiration_date__c", "comment": null}, "recalculate_deal_type__c": {"type": "boolean", "index": 438, "name": "recalculate_deal_type__c", "comment": null}, "show_discount_percentage__c": {"type": "string", "index": 439, "name": "show_discount_percentage__c", "comment": null}, "run_pb__c": {"type": "boolean", "index": 440, "name": "run_pb__c", "comment": null}, "run_pb2__c": {"type": "boolean", "index": 441, "name": "run_pb2__c", "comment": null}, "current_acv_for_retention_usd_loyalty__c": {"type": "double", "index": 442, "name": "current_acv_for_retention_usd_loyalty__c", "comment": null}, "current_acv_for_retention_usd_sms__c": {"type": "double", "index": 443, "name": "current_acv_for_retention_usd_sms__c", "comment": null}, "current_acv_for_retention_usd_ugc__c": {"type": "double", "index": 444, "name": "current_acv_for_retention_usd_ugc__c", "comment": null}, "previous_acv_usd_loyalty__c": {"type": "double", "index": 445, "name": "previous_acv_usd_loyalty__c", "comment": null}, "previous_acv_usd_sms__c": {"type": "double", "index": 446, "name": "previous_acv_usd_sms__c", "comment": null}, "previous_acv_usd_ugc__c": {"type": "double", "index": 447, "name": "previous_acv_usd_ugc__c", "comment": null}, "loyalty_csm_manager_upon_closed__c": {"type": "string", "index": 448, "name": "loyalty_csm_manager_upon_closed__c", "comment": null}, "l_r_orders_included_yearly__c": {"type": "double", "index": 449, "name": "l_r_orders_included_yearly__c", "comment": null}, "reviews_annual_included_orders__c": {"type": "double", "index": 450, "name": "reviews_annual_included_orders__c", "comment": null}, "annual_products__c": {"type": "string", "index": 451, "name": "annual_products__c", "comment": null}, "bundle_total__c": {"type": "double", "index": 452, "name": "bundle_total__c", "comment": null}, "don_t_recalculate_earr__c": {"type": "boolean", "index": 453, "name": "don_t_recalculate_earr__c", "comment": null}, "primary_csm_manager_upon_closed__c": {"type": "string", "index": 454, "name": "primary_csm_manager_upon_closed__c", "comment": null}, "retention_goal_by_viewer__c": {"type": "double", "index": 455, "name": "retention_goal_by_viewer__c", "comment": null}, "subscription_earr__c": {"type": "double", "index": 456, "name": "subscription_earr__c", "comment": null}, "loss_reason_subscription__c": {"type": "string", "index": 457, "name": "loss_reason_subscription__c", "comment": null}, "time_of_am_ownership__c": {"type": "string", "index": 458, "name": "time_of_am_ownership__c", "comment": null}, "gmv__c": {"type": "double", "index": 459, "name": "gmv__c", "comment": null}, "no_price_increase_upon_auto_renewal__c": {"type": "boolean", "index": 460, "name": "no_price_increase_upon_auto_renewal__c", "comment": null}, "opt_out_for_multi_year_deals__c": {"type": "boolean", "index": 461, "name": "opt_out_for_multi_year_deals__c", "comment": null}, "opt_out_without_refund_of_pre_paid__c": {"type": "boolean", "index": 462, "name": "opt_out_without_refund_of_pre_paid__c", "comment": null}, "price_cap_percentage_for_renewal__c": {"type": "double", "index": 463, "name": "price_cap_percentage_for_renewal__c", "comment": null}, "price_cap_applied__c": {"type": "boolean", "index": 464, "name": "price_cap_applied__c", "comment": null}, "sms_fourth_commitment_value__c": {"type": "double", "index": 465, "name": "sms_fourth_commitment_value__c", "comment": null}, "sms_third_commitment_value__c": {"type": "double", "index": 466, "name": "sms_third_commitment_value__c", "comment": null}, "subscription_customer_type__c": {"type": "string", "index": 467, "name": "subscription_customer_type__c", "comment": null}, "termination_for_convenience_no_refund__c": {"type": "boolean", "index": 468, "name": "termination_for_convenience_no_refund__c", "comment": null}, "sms_earr_usd__c": {"type": "double", "index": 469, "name": "sms_earr_usd__c", "comment": null}, "subscriptions_earr_usd__c": {"type": "double", "index": 470, "name": "subscriptions_earr_usd__c", "comment": null}, "opportunity_amount_usd__c": {"type": "double", "index": 471, "name": "opportunity_amount_usd__c", "comment": null}, "mkto_si__sales_insight__c": {"type": "string", "index": 472, "name": "mkto_si__sales_insight__c", "comment": null}, "mkto_si__current_sales_campaign__c": {"type": "string", "index": 473, "name": "mkto_si__current_sales_campaign__c", "comment": null}, "mkto_si__last_activity_by_sales__c": {"type": "timestamp", "index": 474, "name": "mkto_si__last_activity_by_sales__c", "comment": null}, "mkto_si__last_sales_engagement__c": {"type": "timestamp", "index": 475, "name": "mkto_si__last_sales_engagement__c", "comment": null}, "mkto_si__sales_last_replied__c": {"type": "timestamp", "index": 476, "name": "mkto_si__sales_last_replied__c", "comment": null}, "seller_region__c": {"type": "string", "index": 477, "name": "seller_region__c", "comment": null}, "missing_fields_for_quote_creation__c": {"type": "boolean", "index": 478, "name": "missing_fields_for_quote_creation__c", "comment": null}, "early_release_for_partners__c": {"type": "string", "index": 479, "name": "early_release_for_partners__c", "comment": null}, "early_release_from__c": {"type": "string", "index": 480, "name": "early_release_from__c", "comment": null}, "staggered_contract__c": {"type": "boolean", "index": 481, "name": "staggered_contract__c", "comment": null}, "account_primary_billing_contact__c": {"type": "string", "index": 482, "name": "account_primary_billing_contact__c", "comment": null}, "fixed_price_discount_percent_for_domains__c": {"type": "double", "index": 483, "name": "fixed_price_discount_percent_for_domains__c", "comment": null}, "number_of_months__c": {"type": "double", "index": 484, "name": "number_of_months__c", "comment": null}, "am_pipeline__c": {"type": "double", "index": 485, "name": "am_pipeline__c", "comment": null}, "pipeline_inspection_metric__c": {"type": "double", "index": 486, "name": "pipeline_inspection_metric__c", "comment": null}, "_rivery_river_id": {"type": "string", "index": 487, "name": "_rivery_river_id", "comment": null}, "_rivery_run_id": {"type": "string", "index": 488, "name": "_rivery_run_id", "comment": null}, "_rivery_last_update": {"type": "timestamp", "index": 489, "name": "_rivery_last_update", "comment": null}, "extra_domain_pricing__c": {"type": "double", "index": 490, "name": "extra_domain_pricing__c", "comment": null}, "days_in_sal__c": {"type": "double", "index": 491, "name": "days_in_sal__c", "comment": null}, "app_key_account__c": {"type": "string", "index": 492, "name": "app_key_account__c", "comment": null}, "account_referrer__c": {"type": "string", "index": 493, "name": "account_referrer__c", "comment": null}, "inherited_lead_source__c": {"type": "string", "index": 494, "name": "inherited_lead_source__c", "comment": null}, "acv_expectancy__c": {"type": "double", "index": 495, "name": "acv_expectancy__c", "comment": null}, "referral_date__c": {"type": "string", "index": 496, "name": "referral_date__c", "comment": null}, "referral_type__c": {"type": "string", "index": 497, "name": "referral_type__c", "comment": null}, "ups_deal__c": {"type": "boolean", "index": 498, "name": "ups_deal__c", "comment": null}, "deal_type_filter_gs__c": {"type": "string", "index": 499, "name": "deal_type_filter_gs__c", "comment": null}, "gong__gong_count__c": {"type": "double", "index": 500, "name": "gong__gong_count__c", "comment": null}, "acv__c": {"type": "double", "index": 501, "name": "acv__c", "comment": null}, "platform__c": {"type": "string", "index": 502, "name": "platform__c", "comment": null}, "close_date_day_less_than_today_day__c": {"type": "double", "index": 503, "name": "close_date_day_less_than_today_day__c", "comment": null}, "days_from_last_activity__c": {"type": "double", "index": 504, "name": "days_from_last_activity__c", "comment": null}, "actual_contract_duration__c": {"type": "double", "index": 505, "name": "actual_contract_duration__c", "comment": null}, "account_csm_super__c": {"type": "boolean", "index": 506, "name": "account_csm_super__c", "comment": null}, "conga_csm_notes__c": {"type": "string", "index": 507, "name": "conga_csm_notes__c", "comment": null}, "conga_seats_info__c": {"type": "string", "index": 508, "name": "conga_seats_info__c", "comment": null}, "contains_dedicated_csm__c": {"type": "string", "index": 509, "name": "contains_dedicated_csm__c", "comment": null}, "standalone_insights__c": {"type": "string", "index": 510, "name": "standalone_insights__c", "comment": null}, "total_seats__c": {"type": "double", "index": 511, "name": "total_seats__c", "comment": null}, "csm_free_months_value__c": {"type": "double", "index": 512, "name": "csm_free_months_value__c", "comment": null}, "mm_renewal_notification__c": {"type": "boolean", "index": 513, "name": "mm_renewal_notification__c", "comment": null}, "new_acv__c": {"type": "double", "index": 514, "name": "new_acv__c", "comment": null}, "contract_duration_months__c": {"type": "double", "index": 515, "name": "contract_duration_months__c", "comment": null}, "tcv__c": {"type": "double", "index": 516, "name": "tcv__c", "comment": null}, "account_name_formula__c": {"type": "string", "index": 517, "name": "account_name_formula__c", "comment": null}, "sign_test_udi__c": {"type": "string", "index": 518, "name": "sign_test_udi__c", "comment": null}, "estimated_vs_include_review_requests__c": {"type": "double", "index": 519, "name": "estimated_vs_include_review_requests__c", "comment": null}, "full_duration_of_contract__c": {"type": "double", "index": 520, "name": "full_duration_of_contract__c", "comment": null}, "per_installment__c": {"type": "double", "index": 521, "name": "per_installment__c", "comment": null}, "total_discount__c": {"type": "double", "index": 522, "name": "total_discount__c", "comment": null}, "conversion_rate__c": {"type": "double", "index": 523, "name": "conversion_rate__c", "comment": null}, "zuora_csm_free_days_scenario_price__c": {"type": "double", "index": 524, "name": "zuora_csm_free_days_scenario_price__c", "comment": null}, "opportunity_age__c": {"type": "double", "index": 525, "name": "opportunity_age__c", "comment": null}, "contract_renewal_date__c": {"type": "string", "index": 526, "name": "contract_renewal_date__c", "comment": null}, "current_contract__c": {"type": "boolean", "index": 527, "name": "current_contract__c", "comment": null}, "total_paid_by_ups__c": {"type": "boolean", "index": 528, "name": "total_paid_by_ups__c", "comment": null}, "commercial_contact_email__c": {"type": "string", "index": 529, "name": "commercial_contact_email__c", "comment": null}, "import_products_to_dealhub__c": {"type": "string", "index": 530, "name": "import_products_to_dealhub__c", "comment": null}, "new_acv_swell__c": {"type": "double", "index": 531, "name": "new_acv_swell__c", "comment": null}, "new_acv_yotpo__c": {"type": "double", "index": 532, "name": "new_acv_yotpo__c", "comment": null}, "start_date_week_day_name__c": {"type": "string", "index": 533, "name": "start_date_week_day_name__c", "comment": null}, "actual_duration_new__c": {"type": "double", "index": 534, "name": "actual_duration_new__c", "comment": null}, "legal_entity__c": {"type": "string", "index": 535, "name": "legal_entity__c", "comment": null}, "days_in_discovery__c": {"type": "double", "index": 536, "name": "days_in_discovery__c", "comment": null}, "days_in_demo__c": {"type": "double", "index": 537, "name": "days_in_demo__c", "comment": null}, "days_in_evaluation__c": {"type": "double", "index": 538, "name": "days_in_evaluation__c", "comment": null}, "days_in_propose__c": {"type": "double", "index": 539, "name": "days_in_propose__c", "comment": null}, "days_in_contracting__c": {"type": "double", "index": 540, "name": "days_in_contracting__c", "comment": null}, "days_in_contract_signed__c": {"type": "double", "index": 541, "name": "days_in_contract_signed__c", "comment": null}, "sal_mtd__c": {"type": "boolean", "index": 542, "name": "sal_mtd__c", "comment": null}, "relevant_csm_id_helper__c": {"type": "string", "index": 543, "name": "relevant_csm_id_helper__c", "comment": null}, "zuora_free_month_scenario_price__c": {"type": "double", "index": 544, "name": "zuora_free_month_scenario_price__c", "comment": null}, "today_s_date__c": {"type": "string", "index": 545, "name": "today_s_date__c", "comment": null}, "no_touch_exclusion_reason__c": {"type": "string", "index": 546, "name": "no_touch_exclusion_reason__c", "comment": null}, "remove_from_nt_process__c": {"type": "string", "index": 547, "name": "remove_from_nt_process__c", "comment": null}, "zuora_sales_free_month_scenario_price__c": {"type": "double", "index": 548, "name": "zuora_sales_free_month_scenario_price__c", "comment": null}, "include_exclude_from_no_touch_link__c": {"type": "string", "index": 549, "name": "include_exclude_from_no_touch_link__c", "comment": null}, "which_renewal_process__c": {"type": "string", "index": 550, "name": "which_renewal_process__c", "comment": null}, "effective_date_free_months__c": {"type": "string", "index": 551, "name": "effective_date_free_months__c", "comment": null}, "total_discount_for_matan_and_adi__c": {"type": "double", "index": 552, "name": "total_discount_for_matan_and_adi__c", "comment": null}, "relevant_csm_for_cs_outreach_first_name__c": {"type": "string", "index": 553, "name": "relevant_csm_for_cs_outreach_first_name__c", "comment": null}, "sales_accepted_date__c": {"type": "timestamp", "index": 554, "name": "sales_accepted_date__c", "comment": null}, "account_master_opp_id__c": {"type": "string", "index": 555, "name": "account_master_opp_id__c", "comment": null}, "sal__c": {"type": "boolean", "index": 556, "name": "sal__c", "comment": null}, "previous_opp_package__c": {"type": "string", "index": 557, "name": "previous_opp_package__c", "comment": null}, "previous_opp_total_discount__c": {"type": "double", "index": 558, "name": "previous_opp_total_discount__c", "comment": null}, "days_in_current_stage__c": {"type": "double", "index": 559, "name": "days_in_current_stage__c", "comment": null}, "delta_earr__c": {"type": "double", "index": 560, "name": "delta_earr__c", "comment": null}, "partner_referral_referrer_type__c": {"type": "string", "index": 561, "name": "partner_referral_referrer_type__c", "comment": null}, "account_in_zuora__c": {"type": "boolean", "index": 562, "name": "account_in_zuora__c", "comment": null}, "zuora_sales_free_days_scenario_price__c": {"type": "double", "index": 563, "name": "zuora_sales_free_days_scenario_price__c", "comment": null}, "prevent_sync__c": {"type": "boolean", "index": 564, "name": "prevent_sync__c", "comment": null}, "email_service_provider_esp__c": {"type": "string", "index": 565, "name": "email_service_provider_esp__c", "comment": null}, "sql_mtd__c": {"type": "boolean", "index": 566, "name": "sql_mtd__c", "comment": null}, "opportunity_alert__c": {"type": "string", "index": 567, "name": "opportunity_alert__c", "comment": null}, "test_account__c": {"type": "boolean", "index": 568, "name": "test_account__c", "comment": null}, "dealhub_salesallowlegacy__c": {"type": "boolean", "index": 569, "name": "dealhub_salesallowlegacy__c", "comment": null}, "zuora_sales_free_month_price_customer__c": {"type": "double", "index": 570, "name": "zuora_sales_free_month_price_customer__c", "comment": null}, "zuora_csm_free_month_price_ups__c": {"type": "double", "index": 571, "name": "zuora_csm_free_month_price_ups__c", "comment": null}, "zuora_csm_free_month_price_customer__c": {"type": "double", "index": 572, "name": "zuora_csm_free_month_price_customer__c", "comment": null}, "zuora_sales_free_month_price_ups__c": {"type": "double", "index": 573, "name": "zuora_sales_free_month_price_ups__c", "comment": null}, "end_date_finance__c": {"type": "string", "index": 574, "name": "end_date_finance__c", "comment": null}, "delta_earr_subscriptions__c": {"type": "double", "index": 575, "name": "delta_earr_subscriptions__c", "comment": null}, "billing_contract_duration_days__c": {"type": "double", "index": 576, "name": "billing_contract_duration_days__c", "comment": null}, "start_date_difference_today__c": {"type": "boolean", "index": 577, "name": "start_date_difference_today__c", "comment": null}, "close_month__c": {"type": "string", "index": 578, "name": "close_month__c", "comment": null}, "address_validation_needed__c": {"type": "boolean", "index": 579, "name": "address_validation_needed__c", "comment": null}, "hybrid_deal_ht_ss__c": {"type": "boolean", "index": 580, "name": "hybrid_deal_ht_ss__c", "comment": null}, "original_referrer_owner__c": {"type": "string", "index": 581, "name": "original_referrer_owner__c", "comment": null}, "saas_csms_teams_upon_closed__c": {"type": "string", "index": 582, "name": "saas_csms_teams_upon_closed__c", "comment": null}, "saas_csms_upon_closed__c": {"type": "string", "index": 583, "name": "saas_csms_upon_closed__c", "comment": null}, "user_is_csm__c": {"type": "double", "index": 584, "name": "user_is_csm__c", "comment": null}, "user_is_from_csm_team__c": {"type": "double", "index": 585, "name": "user_is_from_csm_team__c", "comment": null}, "current_usage_commitment_term_end_date__c": {"type": "string", "index": 586, "name": "current_usage_commitment_term_end_date__c", "comment": null}, "downgraded_package_price__c": {"type": "double", "index": 587, "name": "downgraded_package_price__c", "comment": null}, "total_ds_delta_acv__c": {"type": "double", "index": 588, "name": "total_ds_delta_acv__c", "comment": null}, "delta_acv_usd_loyalty__c": {"type": "double", "index": 589, "name": "delta_acv_usd_loyalty__c", "comment": null}, "delta_acv_usd_sms__c": {"type": "double", "index": 590, "name": "delta_acv_usd_sms__c", "comment": null}, "delta_acv_usd_ugc__c": {"type": "double", "index": 591, "name": "delta_acv_usd_ugc__c", "comment": null}, "total_current_acv__c": {"type": "double", "index": 592, "name": "total_current_acv__c", "comment": null}, "total_previous_acv__c": {"type": "double", "index": 593, "name": "total_previous_acv__c", "comment": null}, "partner_involvement_in_onboarding__c": {"type": "string", "index": 594, "name": "partner_involvement_in_onboarding__c", "comment": null}, "agency_involvement_throughout_deployment__c": {"type": "string", "index": 595, "name": "agency_involvement_throughout_deployment__c", "comment": null}, "additional_context__c": {"type": "string", "index": 596, "name": "additional_context__c", "comment": null}, "original_referrer_text__c": {"type": "string", "index": 597, "name": "original_referrer_text__c", "comment": null}, "sales_segment_old__c": {"type": "string", "index": 598, "name": "sales_segment_old__c", "comment": null}, "current_usage_commitment_term_start_date__c": {"type": "string", "index": 599, "name": "current_usage_commitment_term_start_date__c", "comment": null}, "partner_referral_text__c": {"type": "string", "index": 600, "name": "partner_referral_text__c", "comment": null}, "delta_booking__c": {"type": "double", "index": 601, "name": "delta_booking__c", "comment": null}, "am_age__c": {"type": "double", "index": 602, "name": "am_age__c", "comment": null}, "total_earr_usd__c": {"type": "double", "index": 603, "name": "total_earr_usd__c", "comment": null}, "start_paid_service_date__c": {"type": "string", "index": 604, "name": "start_paid_service_date__c", "comment": null}, "last_paid_service_date__c": {"type": "string", "index": 605, "name": "last_paid_service_date__c", "comment": null}, "next_invoice_start_date__c": {"type": "string", "index": 606, "name": "next_invoice_start_date__c", "comment": null}, "zuora_subscription_total_charge__c": {"type": "double", "index": 607, "name": "zuora_subscription_total_charge__c", "comment": null}, "total_bookings__c": {"type": "double", "index": 608, "name": "total_bookings__c", "comment": null}, "omit_rr_from_acv_and_order_form__c": {"type": "boolean", "index": 609, "name": "omit_rr_from_acv_and_order_form__c", "comment": null}, "renewal_opportunity_acv__c": {"type": "double", "index": 610, "name": "renewal_opportunity_acv__c", "comment": null}, "non_domain_product_acv__c": {"type": "double", "index": 611, "name": "non_domain_product_acv__c", "comment": null}, "new_acv_amount_tracked__c": {"type": "double", "index": 612, "name": "new_acv_amount_tracked__c", "comment": null}, "whitelabel_acv__c": {"type": "double", "index": 613, "name": "whitelabel_acv__c", "comment": null}, "covid_19_implication_lost_upsell_acv__c": {"type": "double", "index": 614, "name": "covid_19_implication_lost_upsell_acv__c", "comment": null}, "previous_opp_acv__c": {"type": "double", "index": 615, "name": "previous_opp_acv__c", "comment": null}, "acv_team_attribution__c": {"type": "string", "index": 616, "name": "acv_team_attribution__c", "comment": null}, "total_delta_acv__c": {"type": "double", "index": 617, "name": "total_delta_acv__c", "comment": null}, "user_id__c": {"type": "string", "index": 618, "name": "user_id__c", "comment": null}, "opportunity_count__c": {"type": "double", "index": 619, "name": "opportunity_count__c", "comment": null}, "price_per_installment__c": {"type": "double", "index": 620, "name": "price_per_installment__c", "comment": null}, "mkto_si__marketoanalyzer__c": {"type": "string", "index": 621, "name": "mkto_si__marketoanalyzer__c", "comment": null}, "opp_id_18_digit__c": {"type": "string", "index": 622, "name": "opp_id_18_digit__c", "comment": null}, "create_date_day_less_than_today_day__c": {"type": "double", "index": 623, "name": "create_date_day_less_than_today_day__c", "comment": null}, "owner_role_custom__c": {"type": "string", "index": 624, "name": "owner_role_custom__c", "comment": null}, "template_id__c": {"type": "string", "index": 625, "name": "template_id__c", "comment": null}, "account_name__c": {"type": "string", "index": 626, "name": "account_name__c", "comment": null}, "parent_account__c": {"type": "string", "index": 627, "name": "parent_account__c", "comment": null}, "renewal_opportunity_package__c": {"type": "string", "index": 628, "name": "renewal_opportunity_package__c", "comment": null}, "conga_payment_terms_days__c": {"type": "double", "index": 629, "name": "conga_payment_terms_days__c", "comment": null}, "conga_reminder__c": {"type": "double", "index": 630, "name": "conga_reminder__c", "comment": null}, "conga_remindin__c": {"type": "double", "index": 631, "name": "conga_remindin__c", "comment": null}, "csm_owner_role__c": {"type": "string", "index": 632, "name": "csm_owner_role__c", "comment": null}, "new_acv_usd__c": {"type": "double", "index": 633, "name": "new_acv_usd__c", "comment": null}, "sdr_role_old__c": {"type": "string", "index": 634, "name": "sdr_role_old__c", "comment": null}, "dealhub_main_add_on_discount__c": {"type": "double", "index": 635, "name": "dealhub_main_add_on_discount__c", "comment": null}, "raw_acv__c": {"type": "double", "index": 636, "name": "raw_acv__c", "comment": null}, "conga_culture_currency__c": {"type": "string", "index": 637, "name": "conga_culture_currency__c", "comment": null}, "sla_status__c": {"type": "string", "index": 638, "name": "sla_status__c", "comment": null}, "acv_usd__c": {"type": "double", "index": 639, "name": "acv_usd__c", "comment": null}, "auto_renewal_request_type__c": {"type": "string", "index": 640, "name": "auto_renewal_request_type__c", "comment": null}, "partner_commission_amount__c": {"type": "double", "index": 641, "name": "partner_commission_amount__c", "comment": null}, "record_type_name__c": {"type": "string", "index": 642, "name": "record_type_name__c", "comment": null}, "zuora_tax_region__c": {"type": "string", "index": 643, "name": "zuora_tax_region__c", "comment": null}, "template_id_test__c": {"type": "string", "index": 644, "name": "template_id_test__c", "comment": null}, "days_until_contract_renewal__c": {"type": "double", "index": 645, "name": "days_until_contract_renewal__c", "comment": null}, "visible_name_for_migration__c": {"type": "string", "index": 646, "name": "visible_name_for_migration__c", "comment": null}, "yotpo_acv__c": {"type": "double", "index": 647, "name": "yotpo_acv__c", "comment": null}, "days_to_start_date__c": {"type": "double", "index": 648, "name": "days_to_start_date__c", "comment": null}, "auto_renewal_exclusion_reason__c": {"type": "string", "index": 649, "name": "auto_renewal_exclusion_reason__c", "comment": null}, "include_exclude_from_auto_renewal_link__c": {"type": "string", "index": 650, "name": "include_exclude_from_auto_renewal_link__c", "comment": null}, "auto_renewal_customer_choice__c": {"type": "string", "index": 651, "name": "auto_renewal_customer_choice__c", "comment": null}, "mcv__c": {"type": "double", "index": 652, "name": "mcv__c", "comment": null}, "sales_free_months_value__c": {"type": "double", "index": 653, "name": "sales_free_months_value__c", "comment": null}, "average_acv__c": {"type": "double", "index": 654, "name": "average_acv__c", "comment": null}, "duration_for_free_months_scenario__c": {"type": "double", "index": 655, "name": "duration_for_free_months_scenario__c", "comment": null}, "next_rounded_months_from_start_date__c": {"type": "string", "index": 656, "name": "next_rounded_months_from_start_date__c", "comment": null}, "next_invoice_start_date_for_free_month__c": {"type": "string", "index": 657, "name": "next_invoice_start_date_for_free_month__c", "comment": null}, "account_address_valid__c": {"type": "boolean", "index": 658, "name": "account_address_valid__c", "comment": null}, "zuora_sync_error_reason__c": {"type": "string", "index": 659, "name": "zuora_sync_error_reason__c", "comment": null}, "zuora_bill_cycle_day__c": {"type": "double", "index": 660, "name": "zuora_bill_cycle_day__c", "comment": null}, "won_opp__c": {"type": "double", "index": 661, "name": "won_opp__c", "comment": null}, "contract_duration_days__c": {"type": "double", "index": 662, "name": "contract_duration_days__c", "comment": null}, "zuora_period_type__c": {"type": "string", "index": 663, "name": "zuora_period_type__c", "comment": null}, "zuora_contract_duration__c": {"type": "double", "index": 664, "name": "zuora_contract_duration__c", "comment": null}, "zuora_payment_method__c": {"type": "string", "index": 665, "name": "zuora_payment_method__c", "comment": null}, "zuora_duration_for_billing_period__c": {"type": "double", "index": 666, "name": "zuora_duration_for_billing_period__c", "comment": null}, "upsell_renewal_acv__c": {"type": "double", "index": 667, "name": "upsell_renewal_acv__c", "comment": null}, "my_opp_sdr__c": {"type": "boolean", "index": 668, "name": "my_opp_sdr__c", "comment": null}, "new_acv_gbp__c": {"type": "double", "index": 669, "name": "new_acv_gbp__c", "comment": null}, "zuora_communication_profile__c": {"type": "string", "index": 670, "name": "zuora_communication_profile__c", "comment": null}, "billing_contact_first_name__c": {"type": "string", "index": 671, "name": "billing_contact_first_name__c", "comment": null}, "billing_contact_last_name__c": {"type": "string", "index": 672, "name": "billing_contact_last_name__c", "comment": null}, "billing_contact_email__c": {"type": "string", "index": 673, "name": "billing_contact_email__c", "comment": null}, "billing_contact_phone__c": {"type": "string", "index": 674, "name": "billing_contact_phone__c", "comment": null}, "billing_contact__c": {"type": "string", "index": 675, "name": "billing_contact__c", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 691309571.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce_rivery.opportunity"}, "source.yoda.analytics__salesforce_rivery.opportunity_full": {"metadata": {"type": "table", "schema": "salesforce_rivery", "name": "opportunity_full", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "days_in_sal__c": {"type": "double", "index": 1, "name": "days_in_sal__c", "comment": null}, "user_id__c": {"type": "string", "index": 2, "name": "user_id__c", "comment": null}, "app_key_account__c": {"type": "string", "index": 3, "name": "app_key_account__c", "comment": null}, "account_referrer__c": {"type": "string", "index": 4, "name": "account_referrer__c", "comment": null}, "inherited_lead_source__c": {"type": "string", "index": 5, "name": "inherited_lead_source__c", "comment": null}, "acv_expectancy__c": {"type": "double", "index": 6, "name": "acv_expectancy__c", "comment": null}, "referral_date__c": {"type": "string", "index": 7, "name": "referral_date__c", "comment": null}, "opportunity_count__c": {"type": "double", "index": 8, "name": "opportunity_count__c", "comment": null}, "referral_type__c": {"type": "string", "index": 9, "name": "referral_type__c", "comment": null}, "ups_deal__c": {"type": "boolean", "index": 10, "name": "ups_deal__c", "comment": null}, "deal_type_filter_gs__c": {"type": "string", "index": 11, "name": "deal_type_filter_gs__c", "comment": null}, "bfcm_23_fee__c": {"type": "double", "index": 12, "name": "bfcm_23_fee__c", "comment": null}, "gong__gong_count__c": {"type": "double", "index": 13, "name": "gong__gong_count__c", "comment": null}, "acv__c": {"type": "double", "index": 14, "name": "acv__c", "comment": null}, "platform__c": {"type": "string", "index": 15, "name": "platform__c", "comment": null}, "close_date_day_less_than_today_day__c": {"type": "double", "index": 16, "name": "close_date_day_less_than_today_day__c", "comment": null}, "days_from_last_activity__c": {"type": "double", "index": 17, "name": "days_from_last_activity__c", "comment": null}, "actual_contract_duration__c": {"type": "double", "index": 18, "name": "actual_contract_duration__c", "comment": null}, "account_csm_super__c": {"type": "boolean", "index": 19, "name": "account_csm_super__c", "comment": null}, "conga_csm_notes__c": {"type": "string", "index": 20, "name": "conga_csm_notes__c", "comment": null}, "conga_seats_info__c": {"type": "string", "index": 21, "name": "conga_seats_info__c", "comment": null}, "contains_dedicated_csm__c": {"type": "string", "index": 22, "name": "contains_dedicated_csm__c", "comment": null}, "standalone_insights__c": {"type": "string", "index": 23, "name": "standalone_insights__c", "comment": null}, "total_seats__c": {"type": "double", "index": 24, "name": "total_seats__c", "comment": null}, "csm_free_months_value__c": {"type": "double", "index": 25, "name": "csm_free_months_value__c", "comment": null}, "mkto_si__marketoanalyzer__c": {"type": "string", "index": 26, "name": "mkto_si__marketoanalyzer__c", "comment": null}, "opp_id_18_digit__c": {"type": "string", "index": 27, "name": "opp_id_18_digit__c", "comment": null}, "create_date_day_less_than_today_day__c": {"type": "double", "index": 28, "name": "create_date_day_less_than_today_day__c", "comment": null}, "owner_role_custom__c": {"type": "string", "index": 29, "name": "owner_role_custom__c", "comment": null}, "mm_renewal_notification__c": {"type": "boolean", "index": 30, "name": "mm_renewal_notification__c", "comment": null}, "template_id__c": {"type": "string", "index": 31, "name": "template_id__c", "comment": null}, "account_name__c": {"type": "string", "index": 32, "name": "account_name__c", "comment": null}, "new_acv__c": {"type": "double", "index": 33, "name": "new_acv__c", "comment": null}, "pipeline_usd__c": {"type": "double", "index": 34, "name": "pipeline_usd__c", "comment": null}, "contract_duration_months__c": {"type": "double", "index": 35, "name": "contract_duration_months__c", "comment": null}, "parent_account__c": {"type": "string", "index": 36, "name": "parent_account__c", "comment": null}, "tcv__c": {"type": "double", "index": 37, "name": "tcv__c", "comment": null}, "account_name_formula__c": {"type": "string", "index": 38, "name": "account_name_formula__c", "comment": null}, "sign_test_udi__c": {"type": "string", "index": 39, "name": "sign_test_udi__c", "comment": null}, "renewal_opportunity_package__c": {"type": "string", "index": 40, "name": "renewal_opportunity_package__c", "comment": null}, "conga_payment_terms_days__c": {"type": "double", "index": 41, "name": "conga_payment_terms_days__c", "comment": null}, "conga_reminder__c": {"type": "double", "index": 42, "name": "conga_reminder__c", "comment": null}, "conga_remindin__c": {"type": "double", "index": 43, "name": "conga_remindin__c", "comment": null}, "csm_owner_role__c": {"type": "string", "index": 44, "name": "csm_owner_role__c", "comment": null}, "new_acv_usd__c": {"type": "double", "index": 45, "name": "new_acv_usd__c", "comment": null}, "sdr_role_old__c": {"type": "string", "index": 46, "name": "sdr_role_old__c", "comment": null}, "estimated_vs_include_review_requests__c": {"type": "double", "index": 47, "name": "estimated_vs_include_review_requests__c", "comment": null}, "full_duration_of_contract__c": {"type": "double", "index": 48, "name": "full_duration_of_contract__c", "comment": null}, "dealhub_main_add_on_discount__c": {"type": "double", "index": 49, "name": "dealhub_main_add_on_discount__c", "comment": null}, "per_installment__c": {"type": "double", "index": 50, "name": "per_installment__c", "comment": null}, "total_discount__c": {"type": "double", "index": 51, "name": "total_discount__c", "comment": null}, "conversion_rate__c": {"type": "double", "index": 52, "name": "conversion_rate__c", "comment": null}, "conga_culture_currency__c": {"type": "string", "index": 53, "name": "conga_culture_currency__c", "comment": null}, "sla_status__c": {"type": "string", "index": 54, "name": "sla_status__c", "comment": null}, "acv_usd__c": {"type": "double", "index": 55, "name": "acv_usd__c", "comment": null}, "price_per_installment_usd__c": {"type": "double", "index": 56, "name": "price_per_installment_usd__c", "comment": null}, "auto_renewal_request_type__c": {"type": "string", "index": 57, "name": "auto_renewal_request_type__c", "comment": null}, "record_type_name__c": {"type": "string", "index": 58, "name": "record_type_name__c", "comment": null}, "zuora_tax_region__c": {"type": "string", "index": 59, "name": "zuora_tax_region__c", "comment": null}, "template_id_test__c": {"type": "string", "index": 60, "name": "template_id_test__c", "comment": null}, "zuora_csm_free_days_scenario_price__c": {"type": "double", "index": 61, "name": "zuora_csm_free_days_scenario_price__c", "comment": null}, "loss_reason_email__c": {"type": "string", "index": 62, "name": "loss_reason_email__c", "comment": null}, "opportunity_age__c": {"type": "double", "index": 63, "name": "opportunity_age__c", "comment": null}, "contract_renewal_date__c": {"type": "string", "index": 64, "name": "contract_renewal_date__c", "comment": null}, "current_contract__c": {"type": "boolean", "index": 65, "name": "current_contract__c", "comment": null}, "days_until_contract_renewal__c": {"type": "double", "index": 66, "name": "days_until_contract_renewal__c", "comment": null}, "total_paid_by_ups__c": {"type": "boolean", "index": 67, "name": "total_paid_by_ups__c", "comment": null}, "visible_name_for_migration__c": {"type": "string", "index": 68, "name": "visible_name_for_migration__c", "comment": null}, "commercial_contact_email__c": {"type": "string", "index": 69, "name": "commercial_contact_email__c", "comment": null}, "import_products_to_dealhub__c": {"type": "string", "index": 70, "name": "import_products_to_dealhub__c", "comment": null}, "yotpo_acv__c": {"type": "double", "index": 71, "name": "yotpo_acv__c", "comment": null}, "days_to_start_date__c": {"type": "double", "index": 72, "name": "days_to_start_date__c", "comment": null}, "auto_renewal_exclusion_reason__c": {"type": "string", "index": 73, "name": "auto_renewal_exclusion_reason__c", "comment": null}, "include_exclude_from_auto_renewal_link__c": {"type": "string", "index": 74, "name": "include_exclude_from_auto_renewal_link__c", "comment": null}, "new_acv_swell__c": {"type": "double", "index": 75, "name": "new_acv_swell__c", "comment": null}, "new_acv_yotpo__c": {"type": "double", "index": 76, "name": "new_acv_yotpo__c", "comment": null}, "auto_renewal_customer_choice__c": {"type": "string", "index": 77, "name": "auto_renewal_customer_choice__c", "comment": null}, "start_date_week_day_name__c": {"type": "string", "index": 78, "name": "start_date_week_day_name__c", "comment": null}, "actual_duration_new__c": {"type": "double", "index": 79, "name": "actual_duration_new__c", "comment": null}, "mcv__c": {"type": "double", "index": 80, "name": "mcv__c", "comment": null}, "sales_free_months_value__c": {"type": "double", "index": 81, "name": "sales_free_months_value__c", "comment": null}, "legal_entity__c": {"type": "string", "index": 82, "name": "legal_entity__c", "comment": null}, "original_owner_manager__c": {"type": "string", "index": 83, "name": "original_owner_manager__c", "comment": null}, "next_rounded_months_from_start_date__c": {"type": "string", "index": 84, "name": "next_rounded_months_from_start_date__c", "comment": null}, "free_month_for_usage_product__c": {"type": "double", "index": 85, "name": "free_month_for_usage_product__c", "comment": null}, "account_address_valid__c": {"type": "boolean", "index": 86, "name": "account_address_valid__c", "comment": null}, "zuora_sync_error_reason__c": {"type": "string", "index": 87, "name": "zuora_sync_error_reason__c", "comment": null}, "zuora_bill_cycle_day__c": {"type": "double", "index": 88, "name": "zuora_bill_cycle_day__c", "comment": null}, "won_opp__c": {"type": "double", "index": 89, "name": "won_opp__c", "comment": null}, "contract_duration_days__c": {"type": "double", "index": 90, "name": "contract_duration_days__c", "comment": null}, "zuora_period_type__c": {"type": "string", "index": 91, "name": "zuora_period_type__c", "comment": null}, "zuora_contract_duration__c": {"type": "double", "index": 92, "name": "zuora_contract_duration__c", "comment": null}, "zuora_payment_method__c": {"type": "string", "index": 93, "name": "zuora_payment_method__c", "comment": null}, "zuora_duration_for_billing_period__c": {"type": "double", "index": 94, "name": "zuora_duration_for_billing_period__c", "comment": null}, "approval_manager__c": {"type": "string", "index": 95, "name": "approval_manager__c", "comment": null}, "days_in_discovery__c": {"type": "double", "index": 96, "name": "days_in_discovery__c", "comment": null}, "days_in_demo__c": {"type": "double", "index": 97, "name": "days_in_demo__c", "comment": null}, "days_in_evaluation__c": {"type": "double", "index": 98, "name": "days_in_evaluation__c", "comment": null}, "days_in_propose__c": {"type": "double", "index": 99, "name": "days_in_propose__c", "comment": null}, "days_in_contracting__c": {"type": "double", "index": 100, "name": "days_in_contracting__c", "comment": null}, "days_in_contract_signed__c": {"type": "double", "index": 101, "name": "days_in_contract_signed__c", "comment": null}, "my_opp_sdr__c": {"type": "boolean", "index": 102, "name": "my_opp_sdr__c", "comment": null}, "sal_mtd__c": {"type": "boolean", "index": 103, "name": "sal_mtd__c", "comment": null}, "zuora_communication_profile__c": {"type": "string", "index": 104, "name": "zuora_communication_profile__c", "comment": null}, "relevant_csm_id_helper__c": {"type": "string", "index": 105, "name": "relevant_csm_id_helper__c", "comment": null}, "zuora_free_month_scenario_price__c": {"type": "double", "index": 106, "name": "zuora_free_month_scenario_price__c", "comment": null}, "today_s_date__c": {"type": "string", "index": 107, "name": "today_s_date__c", "comment": null}, "no_touch_exclusion_reason__c": {"type": "string", "index": 108, "name": "no_touch_exclusion_reason__c", "comment": null}, "remove_from_nt_process__c": {"type": "string", "index": 109, "name": "remove_from_nt_process__c", "comment": null}, "zuora_sales_free_month_scenario_price__c": {"type": "double", "index": 110, "name": "zuora_sales_free_month_scenario_price__c", "comment": null}, "include_exclude_from_no_touch_link__c": {"type": "string", "index": 111, "name": "include_exclude_from_no_touch_link__c", "comment": null}, "which_renewal_process__c": {"type": "string", "index": 112, "name": "which_renewal_process__c", "comment": null}, "effective_date_free_months__c": {"type": "string", "index": 113, "name": "effective_date_free_months__c", "comment": null}, "total_discount_for_matan_and_adi__c": {"type": "double", "index": 114, "name": "total_discount_for_matan_and_adi__c", "comment": null}, "relevant_csm_for_cs_outreach_first_name__c": {"type": "string", "index": 115, "name": "relevant_csm_for_cs_outreach_first_name__c", "comment": null}, "total_sms_commitment_value__c": {"type": "double", "index": 116, "name": "total_sms_commitment_value__c", "comment": null}, "sales_accepted_date__c": {"type": "timestamp", "index": 117, "name": "sales_accepted_date__c", "comment": null}, "account_master_opp_id__c": {"type": "string", "index": 118, "name": "account_master_opp_id__c", "comment": null}, "sal__c": {"type": "boolean", "index": 119, "name": "sal__c", "comment": null}, "previous_opp_package__c": {"type": "string", "index": 120, "name": "previous_opp_package__c", "comment": null}, "previous_opp_total_discount__c": {"type": "double", "index": 121, "name": "previous_opp_total_discount__c", "comment": null}, "days_in_current_stage__c": {"type": "double", "index": 122, "name": "days_in_current_stage__c", "comment": null}, "delta_earr__c": {"type": "double", "index": 123, "name": "delta_earr__c", "comment": null}, "partner_referral_referrer_type__c": {"type": "string", "index": 124, "name": "partner_referral_referrer_type__c", "comment": null}, "account_in_zuora__c": {"type": "boolean", "index": 125, "name": "account_in_zuora__c", "comment": null}, "zuora_sales_free_days_scenario_price__c": {"type": "double", "index": 126, "name": "zuora_sales_free_days_scenario_price__c", "comment": null}, "prevent_sync__c": {"type": "boolean", "index": 127, "name": "prevent_sync__c", "comment": null}, "email_service_provider_esp__c": {"type": "string", "index": 128, "name": "email_service_provider_esp__c", "comment": null}, "sql_mtd__c": {"type": "boolean", "index": 129, "name": "sql_mtd__c", "comment": null}, "opportunity_alert__c": {"type": "string", "index": 130, "name": "opportunity_alert__c", "comment": null}, "test_account__c": {"type": "boolean", "index": 131, "name": "test_account__c", "comment": null}, "dealhub_salesallowlegacy__c": {"type": "boolean", "index": 132, "name": "dealhub_salesallowlegacy__c", "comment": null}, "zuora_sales_free_month_price_customer__c": {"type": "double", "index": 133, "name": "zuora_sales_free_month_price_customer__c", "comment": null}, "zuora_csm_free_month_price_ups__c": {"type": "double", "index": 134, "name": "zuora_csm_free_month_price_ups__c", "comment": null}, "zuora_csm_free_month_price_customer__c": {"type": "double", "index": 135, "name": "zuora_csm_free_month_price_customer__c", "comment": null}, "zuora_sales_free_month_price_ups__c": {"type": "double", "index": 136, "name": "zuora_sales_free_month_price_ups__c", "comment": null}, "end_date_finance__c": {"type": "string", "index": 137, "name": "end_date_finance__c", "comment": null}, "delta_earr_subscriptions__c": {"type": "double", "index": 138, "name": "delta_earr_subscriptions__c", "comment": null}, "reference_call__c": {"type": "boolean", "index": 139, "name": "reference_call__c", "comment": null}, "of_emails_per_month__c": {"type": "double", "index": 140, "name": "of_emails_per_month__c", "comment": null}, "promotions__c": {"type": "string", "index": 141, "name": "promotions__c", "comment": null}, "billing_contract_duration_days__c": {"type": "double", "index": 142, "name": "billing_contract_duration_days__c", "comment": null}, "start_date_difference_today__c": {"type": "boolean", "index": 143, "name": "start_date_difference_today__c", "comment": null}, "close_month__c": {"type": "string", "index": 144, "name": "close_month__c", "comment": null}, "address_validation_needed__c": {"type": "boolean", "index": 145, "name": "address_validation_needed__c", "comment": null}, "hybrid_deal_ht_ss__c": {"type": "boolean", "index": 146, "name": "hybrid_deal_ht_ss__c", "comment": null}, "original_referrer_owner__c": {"type": "string", "index": 147, "name": "original_referrer_owner__c", "comment": null}, "saas_csms_teams_upon_closed__c": {"type": "string", "index": 148, "name": "saas_csms_teams_upon_closed__c", "comment": null}, "saas_csms_upon_closed__c": {"type": "string", "index": 149, "name": "saas_csms_upon_closed__c", "comment": null}, "user_is_csm__c": {"type": "double", "index": 150, "name": "user_is_csm__c", "comment": null}, "user_is_from_csm_team__c": {"type": "double", "index": 151, "name": "user_is_from_csm_team__c", "comment": null}, "current_usage_commitment_term_end_date__c": {"type": "string", "index": 152, "name": "current_usage_commitment_term_end_date__c", "comment": null}, "downgraded_package_price__c": {"type": "double", "index": 153, "name": "downgraded_package_price__c", "comment": null}, "total_ds_delta_acv__c": {"type": "double", "index": 154, "name": "total_ds_delta_acv__c", "comment": null}, "delta_acv_usd_loyalty__c": {"type": "double", "index": 155, "name": "delta_acv_usd_loyalty__c", "comment": null}, "delta_acv_usd_sms__c": {"type": "double", "index": 156, "name": "delta_acv_usd_sms__c", "comment": null}, "delta_acv_usd_ugc__c": {"type": "double", "index": 157, "name": "delta_acv_usd_ugc__c", "comment": null}, "total_current_acv__c": {"type": "double", "index": 158, "name": "total_current_acv__c", "comment": null}, "total_previous_acv__c": {"type": "double", "index": 159, "name": "total_previous_acv__c", "comment": null}, "partner_involvement_in_onboarding__c": {"type": "string", "index": 160, "name": "partner_involvement_in_onboarding__c", "comment": null}, "agency_involvement_throughout_deployment__c": {"type": "string", "index": 161, "name": "agency_involvement_throughout_deployment__c", "comment": null}, "additional_context__c": {"type": "string", "index": 162, "name": "additional_context__c", "comment": null}, "original_referrer_text__c": {"type": "string", "index": 163, "name": "original_referrer_text__c", "comment": null}, "sales_segment_old__c": {"type": "string", "index": 164, "name": "sales_segment_old__c", "comment": null}, "current_usage_commitment_term_start_date__c": {"type": "string", "index": 165, "name": "current_usage_commitment_term_start_date__c", "comment": null}, "partner_referral_text__c": {"type": "string", "index": 166, "name": "partner_referral_text__c", "comment": null}, "delta_booking__c": {"type": "double", "index": 167, "name": "delta_booking__c", "comment": null}, "am_age__c": {"type": "double", "index": 168, "name": "am_age__c", "comment": null}, "total_earr_usd__c": {"type": "double", "index": 169, "name": "total_earr_usd__c", "comment": null}, "seller_region__c": {"type": "string", "index": 170, "name": "seller_region__c", "comment": null}, "_rivery_river_id": {"type": "string", "index": 171, "name": "_rivery_river_id", "comment": null}, "_rivery_run_id": {"type": "string", "index": 172, "name": "_rivery_run_id", "comment": null}, "_rivery_last_update": {"type": "timestamp", "index": 173, "name": "_rivery_last_update", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 64739481.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce_rivery.opportunity_full"}, "source.yoda.analytics__salesforce_rivery.user": {"metadata": {"type": "table", "schema": "salesforce_rivery", "name": "user", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "username": {"type": "string", "index": 1, "name": "username", "comment": null}, "lastname": {"type": "string", "index": 2, "name": "lastname", "comment": null}, "firstname": {"type": "string", "index": 3, "name": "firstname", "comment": null}, "name": {"type": "string", "index": 4, "name": "name", "comment": null}, "companyname": {"type": "string", "index": 5, "name": "companyname", "comment": null}, "division": {"type": "string", "index": 6, "name": "division", "comment": null}, "department": {"type": "string", "index": 7, "name": "department", "comment": null}, "title": {"type": "string", "index": 8, "name": "title", "comment": null}, "street": {"type": "string", "index": 9, "name": "street", "comment": null}, "city": {"type": "string", "index": 10, "name": "city", "comment": null}, "state": {"type": "string", "index": 11, "name": "state", "comment": null}, "postalcode": {"type": "string", "index": 12, "name": "postalcode", "comment": null}, "country": {"type": "string", "index": 13, "name": "country", "comment": null}, "statecode": {"type": "string", "index": 14, "name": "statecode", "comment": null}, "countrycode": {"type": "string", "index": 15, "name": "countrycode", "comment": null}, "latitude": {"type": "double", "index": 16, "name": "latitude", "comment": null}, "longitude": {"type": "double", "index": 17, "name": "longitude", "comment": null}, "geocodeaccuracy": {"type": "string", "index": 18, "name": "geocodeaccuracy", "comment": null}, "email": {"type": "string", "index": 19, "name": "email", "comment": null}, "emailpreferencesautobcc": {"type": "boolean", "index": 20, "name": "emailpreferencesautobcc", "comment": null}, "emailpreferencesautobccstayintouch": {"type": "boolean", "index": 21, "name": "emailpreferencesautobccstayintouch", "comment": null}, "emailpreferencesstayintouchreminder": {"type": "boolean", "index": 22, "name": "emailpreferencesstayintouchreminder", "comment": null}, "senderemail": {"type": "string", "index": 23, "name": "senderemail", "comment": null}, "sendername": {"type": "string", "index": 24, "name": "sendername", "comment": null}, "signature": {"type": "string", "index": 25, "name": "signature", "comment": null}, "stayintouchsubject": {"type": "string", "index": 26, "name": "stayintouchsubject", "comment": null}, "stayintouchsignature": {"type": "string", "index": 27, "name": "stayintouchsignature", "comment": null}, "stayintouchnote": {"type": "string", "index": 28, "name": "stayintouchnote", "comment": null}, "phone": {"type": "string", "index": 29, "name": "phone", "comment": null}, "fax": {"type": "string", "index": 30, "name": "fax", "comment": null}, "mobilephone": {"type": "string", "index": 31, "name": "mobilephone", "comment": null}, "alias": {"type": "string", "index": 32, "name": "alias", "comment": null}, "communitynickname": {"type": "string", "index": 33, "name": "communitynickname", "comment": null}, "badgetext": {"type": "string", "index": 34, "name": "badgetext", "comment": null}, "isactive": {"type": "boolean", "index": 35, "name": "isactive", "comment": null}, "timezonesidkey": {"type": "string", "index": 36, "name": "timezonesidkey", "comment": null}, "userroleid": {"type": "string", "index": 37, "name": "userroleid", "comment": null}, "localesidkey": {"type": "string", "index": 38, "name": "localesidkey", "comment": null}, "receivesinfoemails": {"type": "boolean", "index": 39, "name": "receivesinfoemails", "comment": null}, "receivesadmininfoemails": {"type": "boolean", "index": 40, "name": "receivesadmininfoemails", "comment": null}, "emailencodingkey": {"type": "string", "index": 41, "name": "emailencodingkey", "comment": null}, "defaultcurrencyisocode": {"type": "string", "index": 42, "name": "defaultcurrencyisocode", "comment": null}, "currencyisocode": {"type": "string", "index": 43, "name": "currencyisocode", "comment": null}, "profileid": {"type": "string", "index": 44, "name": "profileid", "comment": null}, "usertype": {"type": "string", "index": 45, "name": "usertype", "comment": null}, "languagelocalekey": {"type": "string", "index": 46, "name": "languagelocalekey", "comment": null}, "employeenumber": {"type": "string", "index": 47, "name": "employeenumber", "comment": null}, "delegatedapproverid": {"type": "string", "index": 48, "name": "delegatedapproverid", "comment": null}, "managerid": {"type": "string", "index": 49, "name": "managerid", "comment": null}, "lastlogindate": {"type": "timestamp", "index": 50, "name": "lastlogindate", "comment": null}, "lastpasswordchangedate": {"type": "timestamp", "index": 51, "name": "lastpasswordchangedate", "comment": null}, "createddate": {"type": "timestamp", "index": 52, "name": "createddate", "comment": null}, "createdbyid": {"type": "string", "index": 53, "name": "createdbyid", "comment": null}, "lastmodifieddate": {"type": "timestamp", "index": 54, "name": "lastmodifieddate", "comment": null}, "lastmodifiedbyid": {"type": "string", "index": 55, "name": "lastmodifiedbyid", "comment": null}, "systemmodstamp": {"type": "timestamp", "index": 56, "name": "systemmodstamp", "comment": null}, "numberoffailedlogins": {"type": "long", "index": 57, "name": "numberoffailedlogins", "comment": null}, "offlinetrialexpirationdate": {"type": "timestamp", "index": 58, "name": "offlinetrialexpirationdate", "comment": null}, "offlinepdatrialexpirationdate": {"type": "timestamp", "index": 59, "name": "offlinepdatrialexpirationdate", "comment": null}, "userpermissionsmarketinguser": {"type": "boolean", "index": 60, "name": "userpermissionsmarketinguser", "comment": null}, "userpermissionsofflineuser": {"type": "boolean", "index": 61, "name": "userpermissionsofflineuser", "comment": null}, "userpermissionscallcenterautologin": {"type": "boolean", "index": 62, "name": "userpermissionscallcenterautologin", "comment": null}, "userpermissionssfcontentuser": {"type": "boolean", "index": 63, "name": "userpermissionssfcontentuser", "comment": null}, "userpermissionsknowledgeuser": {"type": "boolean", "index": 64, "name": "userpermissionsknowledgeuser", "comment": null}, "userpermissionsinteractionuser": {"type": "boolean", "index": 65, "name": "userpermissionsinteractionuser", "comment": null}, "userpermissionssupportuser": {"type": "boolean", "index": 66, "name": "userpermissionssupportuser", "comment": null}, "userpermissionsliveagentuser": {"type": "boolean", "index": 67, "name": "userpermissionsliveagentuser", "comment": null}, "userpermissionschatteranswersuser": {"type": "boolean", "index": 68, "name": "userpermissionschatteranswersuser", "comment": null}, "forecastenabled": {"type": "boolean", "index": 69, "name": "forecastenabled", "comment": null}, "userpreferencesactivityreminderspopup": {"type": "boolean", "index": 70, "name": "userpreferencesactivityreminderspopup", "comment": null}, "userpreferenceseventreminderscheckboxdefault": {"type": "boolean", "index": 71, "name": "userpreferenceseventreminderscheckboxdefault", "comment": null}, "userpreferencestaskreminderscheckboxdefault": {"type": "boolean", "index": 72, "name": "userpreferencestaskreminderscheckboxdefault", "comment": null}, "userpreferencesremindersoundoff": {"type": "boolean", "index": 73, "name": "userpreferencesremindersoundoff", "comment": null}, "userpreferencesdisableallfeedsemail": {"type": "boolean", "index": 74, "name": "userpreferencesdisableallfeedsemail", "comment": null}, "userpreferencesdisablefollowersemail": {"type": "boolean", "index": 75, "name": "userpreferencesdisablefollowersemail", "comment": null}, "userpreferencesdisableprofilepostemail": {"type": "boolean", "index": 76, "name": "userpreferencesdisableprofilepostemail", "comment": null}, "userpreferencesdisablechangecommentemail": {"type": "boolean", "index": 77, "name": "userpreferencesdisablechangecommentemail", "comment": null}, "userpreferencesdisablelatercommentemail": {"type": "boolean", "index": 78, "name": "userpreferencesdisablelatercommentemail", "comment": null}, "userpreferencesdisprofpostcommentemail": {"type": "boolean", "index": 79, "name": "userpreferencesdisprofpostcommentemail", "comment": null}, "userpreferencescontentnoemail": {"type": "boolean", "index": 80, "name": "userpreferencescontentnoemail", "comment": null}, "userpreferencescontentemailasandwhen": {"type": "boolean", "index": 81, "name": "userpreferencescontentemailasandwhen", "comment": null}, "userpreferencesapexpagesdevelopermode": {"type": "boolean", "index": 82, "name": "userpreferencesapexpagesdevelopermode", "comment": null}, "userpreferencesreceivenonotificationsasapprover": {"type": "boolean", "index": 83, "name": "userpreferencesreceivenonotificationsasapprover", "comment": null}, "userpreferencesreceivenotificationsasdelegatedapprover": {"type": "boolean", "index": 84, "name": "userpreferencesreceivenotificationsasdelegatedapprover", "comment": null}, "userpreferenceshidecsngetchattermobiletask": {"type": "boolean", "index": 85, "name": "userpreferenceshidecsngetchattermobiletask", "comment": null}, "userpreferencesdisablementionspostemail": {"type": "boolean", "index": 86, "name": "userpreferencesdisablementionspostemail", "comment": null}, "userpreferencesdismentionscommentemail": {"type": "boolean", "index": 87, "name": "userpreferencesdismentionscommentemail", "comment": null}, "userpreferenceshidecsndesktoptask": {"type": "boolean", "index": 88, "name": "userpreferenceshidecsndesktoptask", "comment": null}, "userpreferenceshidechatteronboardingsplash": {"type": "boolean", "index": 89, "name": "userpreferenceshidechatteronboardingsplash", "comment": null}, "userpreferenceshidesecondchatteronboardingsplash": {"type": "boolean", "index": 90, "name": "userpreferenceshidesecondchatteronboardingsplash", "comment": null}, "userpreferencesdiscommentafterlikeemail": {"type": "boolean", "index": 91, "name": "userpreferencesdiscommentafterlikeemail", "comment": null}, "userpreferencesdisablelikeemail": {"type": "boolean", "index": 92, "name": "userpreferencesdisablelikeemail", "comment": null}, "userpreferencessortfeedbycomment": {"type": "boolean", "index": 93, "name": "userpreferencessortfeedbycomment", "comment": null}, "userpreferencesdisablemessageemail": {"type": "boolean", "index": 94, "name": "userpreferencesdisablemessageemail", "comment": null}, "userpreferencesdisablebookmarkemail": {"type": "boolean", "index": 95, "name": "userpreferencesdisablebookmarkemail", "comment": null}, "userpreferencesdisablesharepostemail": {"type": "boolean", "index": 96, "name": "userpreferencesdisablesharepostemail", "comment": null}, "userpreferencesenableautosubforfeeds": {"type": "boolean", "index": 97, "name": "userpreferencesenableautosubforfeeds", "comment": null}, "userpreferencesdisablefilesharenotificationsforapi": {"type": "boolean", "index": 98, "name": "userpreferencesdisablefilesharenotificationsforapi", "comment": null}, "userpreferencesshowtitletoexternalusers": {"type": "boolean", "index": 99, "name": "userpreferencesshowtitletoexternalusers", "comment": null}, "userpreferencesshowmanagertoexternalusers": {"type": "boolean", "index": 100, "name": "userpreferencesshowmanagertoexternalusers", "comment": null}, "userpreferencesshowemailtoexternalusers": {"type": "boolean", "index": 101, "name": "userpreferencesshowemailtoexternalusers", "comment": null}, "userpreferencesshowworkphonetoexternalusers": {"type": "boolean", "index": 102, "name": "userpreferencesshowworkphonetoexternalusers", "comment": null}, "userpreferencesshowmobilephonetoexternalusers": {"type": "boolean", "index": 103, "name": "userpreferencesshowmobilephonetoexternalusers", "comment": null}, "userpreferencesshowfaxtoexternalusers": {"type": "boolean", "index": 104, "name": "userpreferencesshowfaxtoexternalusers", "comment": null}, "userpreferencesshowstreetaddresstoexternalusers": {"type": "boolean", "index": 105, "name": "userpreferencesshowstreetaddresstoexternalusers", "comment": null}, "userpreferencesshowcitytoexternalusers": {"type": "boolean", "index": 106, "name": "userpreferencesshowcitytoexternalusers", "comment": null}, "userpreferencesshowstatetoexternalusers": {"type": "boolean", "index": 107, "name": "userpreferencesshowstatetoexternalusers", "comment": null}, "userpreferencesshowpostalcodetoexternalusers": {"type": "boolean", "index": 108, "name": "userpreferencesshowpostalcodetoexternalusers", "comment": null}, "userpreferencesshowcountrytoexternalusers": {"type": "boolean", "index": 109, "name": "userpreferencesshowcountrytoexternalusers", "comment": null}, "userpreferencesshowprofilepictoguestusers": {"type": "boolean", "index": 110, "name": "userpreferencesshowprofilepictoguestusers", "comment": null}, "userpreferencesshowtitletoguestusers": {"type": "boolean", "index": 111, "name": "userpreferencesshowtitletoguestusers", "comment": null}, "userpreferencesshowcitytoguestusers": {"type": "boolean", "index": 112, "name": "userpreferencesshowcitytoguestusers", "comment": null}, "userpreferencesshowstatetoguestusers": {"type": "boolean", "index": 113, "name": "userpreferencesshowstatetoguestusers", "comment": null}, "userpreferencesshowpostalcodetoguestusers": {"type": "boolean", "index": 114, "name": "userpreferencesshowpostalcodetoguestusers", "comment": null}, "userpreferencesshowcountrytoguestusers": {"type": "boolean", "index": 115, "name": "userpreferencesshowcountrytoguestusers", "comment": null}, "userpreferencespipelineviewhidehelppopover": {"type": "boolean", "index": 116, "name": "userpreferencespipelineviewhidehelppopover", "comment": null}, "userpreferenceshides1browserui": {"type": "boolean", "index": 117, "name": "userpreferenceshides1browserui", "comment": null}, "userpreferencesdisableendorsementemail": {"type": "boolean", "index": 118, "name": "userpreferencesdisableendorsementemail", "comment": null}, "userpreferencespathassistantcollapsed": {"type": "boolean", "index": 119, "name": "userpreferencespathassistantcollapsed", "comment": null}, "userpreferencescachediagnostics": {"type": "boolean", "index": 120, "name": "userpreferencescachediagnostics", "comment": null}, "userpreferencesshowemailtoguestusers": {"type": "boolean", "index": 121, "name": "userpreferencesshowemailtoguestusers", "comment": null}, "userpreferencesshowmanagertoguestusers": {"type": "boolean", "index": 122, "name": "userpreferencesshowmanagertoguestusers", "comment": null}, "userpreferencesshowworkphonetoguestusers": {"type": "boolean", "index": 123, "name": "userpreferencesshowworkphonetoguestusers", "comment": null}, "userpreferencesshowmobilephonetoguestusers": {"type": "boolean", "index": 124, "name": "userpreferencesshowmobilephonetoguestusers", "comment": null}, "userpreferencesshowfaxtoguestusers": {"type": "boolean", "index": 125, "name": "userpreferencesshowfaxtoguestusers", "comment": null}, "userpreferencesshowstreetaddresstoguestusers": {"type": "boolean", "index": 126, "name": "userpreferencesshowstreetaddresstoguestusers", "comment": null}, "userpreferenceslightningexperiencepreferred": {"type": "boolean", "index": 127, "name": "userpreferenceslightningexperiencepreferred", "comment": null}, "userpreferencespreviewlightning": {"type": "boolean", "index": 128, "name": "userpreferencespreviewlightning", "comment": null}, "userpreferenceshideenduseronboardingassistantmodal": {"type": "boolean", "index": 129, "name": "userpreferenceshideenduseronboardingassistantmodal", "comment": null}, "userpreferenceshidelightningmigrationmodal": {"type": "boolean", "index": 130, "name": "userpreferenceshidelightningmigrationmodal", "comment": null}, "userpreferenceshidesfxwelcomemat": {"type": "boolean", "index": 131, "name": "userpreferenceshidesfxwelcomemat", "comment": null}, "userpreferenceshidebiggerphotocallout": {"type": "boolean", "index": 132, "name": "userpreferenceshidebiggerphotocallout", "comment": null}, "userpreferencesglobalnavbarwtshown": {"type": "boolean", "index": 133, "name": "userpreferencesglobalnavbarwtshown", "comment": null}, "userpreferencesglobalnavgridmenuwtshown": {"type": "boolean", "index": 134, "name": "userpreferencesglobalnavgridmenuwtshown", "comment": null}, "userpreferencescreatelexappswtshown": {"type": "boolean", "index": 135, "name": "userpreferencescreatelexappswtshown", "comment": null}, "userpreferencesfavoriteswtshown": {"type": "boolean", "index": 136, "name": "userpreferencesfavoriteswtshown", "comment": null}, "userpreferencesrecordhomesectioncollapsewtshown": {"type": "boolean", "index": 137, "name": "userpreferencesrecordhomesectioncollapsewtshown", "comment": null}, "userpreferencesrecordhomereservedwtshown": {"type": "boolean", "index": 138, "name": "userpreferencesrecordhomereservedwtshown", "comment": null}, "userpreferencesfavoritesshowtopfavorites": {"type": "boolean", "index": 139, "name": "userpreferencesfavoritesshowtopfavorites", "comment": null}, "userpreferencesexcludemailappattachments": {"type": "boolean", "index": 140, "name": "userpreferencesexcludemailappattachments", "comment": null}, "userpreferencessuppresstasksfxreminders": {"type": "boolean", "index": 141, "name": "userpreferencessuppresstasksfxreminders", "comment": null}, "userpreferencessuppresseventsfxreminders": {"type": "boolean", "index": 142, "name": "userpreferencessuppresseventsfxreminders", "comment": null}, "userpreferencespreviewcustomtheme": {"type": "boolean", "index": 143, "name": "userpreferencespreviewcustomtheme", "comment": null}, "userpreferenceshascelebrationbadge": {"type": "boolean", "index": 144, "name": "userpreferenceshascelebrationbadge", "comment": null}, "userpreferencesuserdebugmodepref": {"type": "boolean", "index": 145, "name": "userpreferencesuserdebugmodepref", "comment": null}, "userpreferencessrhoverrideactivities": {"type": "boolean", "index": 146, "name": "userpreferencessrhoverrideactivities", "comment": null}, "userpreferencesnewlightningreportrunpageenabled": {"type": "boolean", "index": 147, "name": "userpreferencesnewlightningreportrunpageenabled", "comment": null}, "userpreferencesnativeemailclient": {"type": "boolean", "index": 148, "name": "userpreferencesnativeemailclient", "comment": null}, "contactid": {"type": "string", "index": 149, "name": "contactid", "comment": null}, "accountid": {"type": "string", "index": 150, "name": "accountid", "comment": null}, "callcenterid": {"type": "string", "index": 151, "name": "callcenterid", "comment": null}, "extension": {"type": "string", "index": 152, "name": "extension", "comment": null}, "portalrole": {"type": "string", "index": 153, "name": "portalrole", "comment": null}, "isportalenabled": {"type": "boolean", "index": 154, "name": "isportalenabled", "comment": null}, "federationidentifier": {"type": "string", "index": 155, "name": "federationidentifier", "comment": null}, "aboutme": {"type": "string", "index": 156, "name": "aboutme", "comment": null}, "fullphotourl": {"type": "string", "index": 157, "name": "fullphotourl", "comment": null}, "smallphotourl": {"type": "string", "index": 158, "name": "smallphotourl", "comment": null}, "isextindicatorvisible": {"type": "boolean", "index": 159, "name": "isextindicatorvisible", "comment": null}, "outofofficemessage": {"type": "string", "index": 160, "name": "outofofficemessage", "comment": null}, "mediumphotourl": {"type": "string", "index": 161, "name": "mediumphotourl", "comment": null}, "digestfrequency": {"type": "string", "index": 162, "name": "digestfrequency", "comment": null}, "defaultgroupnotificationfrequency": {"type": "string", "index": 163, "name": "defaultgroupnotificationfrequency", "comment": null}, "lastvieweddate": {"type": "timestamp", "index": 164, "name": "lastvieweddate", "comment": null}, "lastreferenceddate": {"type": "timestamp", "index": 165, "name": "lastreferenceddate", "comment": null}, "bannerphotourl": {"type": "string", "index": 166, "name": "bannerphotourl", "comment": null}, "smallbannerphotourl": {"type": "string", "index": 167, "name": "smallbannerphotourl", "comment": null}, "mediumbannerphotourl": {"type": "string", "index": 168, "name": "mediumbannerphotourl", "comment": null}, "isprofilephotoactive": {"type": "boolean", "index": 169, "name": "isprofilephotoactive", "comment": null}, "individualid": {"type": "string", "index": 170, "name": "individualid", "comment": null}, "low_touch_csm__c": {"type": "boolean", "index": 171, "name": "low_touch_csm__c", "comment": null}, "account_manager_csm_pod__c": {"type": "string", "index": 172, "name": "account_manager_csm_pod__c", "comment": null}, "exclude_from_assignment_tracking__c": {"type": "boolean", "index": 173, "name": "exclude_from_assignment_tracking__c", "comment": null}, "dsfs__dsprosfmembershipstatus__c": {"type": "string", "index": 174, "name": "dsfs__dsprosfmembershipstatus__c", "comment": null}, "dsfs__dsprosfpassword__c": {"type": "string", "index": 175, "name": "dsfs__dsprosfpassword__c", "comment": null}, "dsfs__dsprosfusername__c": {"type": "string", "index": 176, "name": "dsfs__dsprosfusername__c", "comment": null}, "mkto_si__iscachinganonwebactivitylist__c": {"type": "boolean", "index": 177, "name": "mkto_si__iscachinganonwebactivitylist__c", "comment": null}, "mkto_si__iscachingbestbets__c": {"type": "boolean", "index": 178, "name": "mkto_si__iscachingbestbets__c", "comment": null}, "mkto_si__iscachingemailactivitylist__c": {"type": "boolean", "index": 179, "name": "mkto_si__iscachingemailactivitylist__c", "comment": null}, "mkto_si__iscachinggroupedwebactivitylist__c": {"type": "boolean", "index": 180, "name": "mkto_si__iscachinggroupedwebactivitylist__c", "comment": null}, "mkto_si__iscachinginterestingmomentslist__c": {"type": "boolean", "index": 181, "name": "mkto_si__iscachinginterestingmomentslist__c", "comment": null}, "mkto_si__iscachingscoringlist__c": {"type": "boolean", "index": 182, "name": "mkto_si__iscachingscoringlist__c", "comment": null}, "mkto_si__iscachingstreamlist__c": {"type": "boolean", "index": 183, "name": "mkto_si__iscachingstreamlist__c", "comment": null}, "mkto_si__iscachingwatchlist__c": {"type": "boolean", "index": 184, "name": "mkto_si__iscachingwatchlist__c", "comment": null}, "mkto_si__iscachingwebactivitylist__c": {"type": "boolean", "index": 185, "name": "mkto_si__iscachingwebactivitylist__c", "comment": null}, "mkto_si__sales_insight_counter__c": {"type": "double", "index": 186, "name": "mkto_si__sales_insight_counter__c", "comment": null}, "calendar_link__c": {"type": "string", "index": 187, "name": "calendar_link__c", "comment": null}, "s4g_currencies__endpoint__c": {"type": "string", "index": 188, "name": "s4g_currencies__endpoint__c", "comment": null}, "user_currency__c": {"type": "string", "index": 189, "name": "user_currency__c", "comment": null}, "gmt__c": {"type": "double", "index": 190, "name": "gmt__c", "comment": null}, "x18_digits_id__c": {"type": "string", "index": 191, "name": "x18_digits_id__c", "comment": null}, "marketing_activity_user__c": {"type": "boolean", "index": 192, "name": "marketing_activity_user__c", "comment": null}, "ignore_claim__c": {"type": "boolean", "index": 193, "name": "ignore_claim__c", "comment": null}, "super_csm__c": {"type": "boolean", "index": 194, "name": "super_csm__c", "comment": null}, "csm_team__c": {"type": "string", "index": 195, "name": "csm_team__c", "comment": null}, "role_name__c": {"type": "string", "index": 196, "name": "role_name__c", "comment": null}, "team__c": {"type": "string", "index": 197, "name": "team__c", "comment": null}, "priority_escalation_permission__c": {"type": "boolean", "index": 198, "name": "priority_escalation_permission__c", "comment": null}, "isqueue__c": {"type": "boolean", "index": 199, "name": "isqueue__c", "comment": null}, "isintegration__c": {"type": "boolean", "index": 200, "name": "isintegration__c", "comment": null}, "queuetype__c": {"type": "string", "index": 201, "name": "queuetype__c", "comment": null}, "manager_text__c": {"type": "string", "index": 202, "name": "manager_text__c", "comment": null}, "full_name__c": {"type": "string", "index": 203, "name": "full_name__c", "comment": null}, "onboarding_assignee__c": {"type": "boolean", "index": 204, "name": "onboarding_assignee__c", "comment": null}, "multi_product_csm__c": {"type": "boolean", "index": 205, "name": "multi_product_csm__c", "comment": null}, "account_id__c": {"type": "string", "index": 206, "name": "account_id__c", "comment": null}, "account_s_owner__c": {"type": "string", "index": 207, "name": "account_s_owner__c", "comment": null}, "address_fields__c": {"type": "string", "index": 208, "name": "address_fields__c", "comment": null}, "business_email__c": {"type": "string", "index": 209, "name": "business_email__c", "comment": null}, "business_name__c": {"type": "string", "index": 210, "name": "business_name__c", "comment": null}, "company__c": {"type": "string", "index": 211, "name": "company__c", "comment": null}, "last_login_date_custom__c": {"type": "timestamp", "index": 212, "name": "last_login_date_custom__c", "comment": null}, "my_content__c": {"type": "boolean", "index": 213, "name": "my_content__c", "comment": null}, "prm_role__c": {"type": "string", "index": 214, "name": "prm_role__c", "comment": null}, "partner_manager__c": {"type": "string", "index": 215, "name": "partner_manager__c", "comment": null}, "paypal_account__c": {"type": "string", "index": 216, "name": "paypal_account__c", "comment": null}, "profile_formula__c": {"type": "string", "index": 217, "name": "profile_formula__c", "comment": null}, "website__c": {"type": "string", "index": 218, "name": "website__c", "comment": null}, "wire_details_del__c": {"type": "string", "index": 219, "name": "wire_details_del__c", "comment": null}, "login_user_member__c": {"type": "boolean", "index": 220, "name": "login_user_member__c", "comment": null}, "process_base_time_1_min__c": {"type": "timestamp", "index": 221, "name": "process_base_time_1_min__c", "comment": null}, "invitation_date__c": {"type": "string", "index": 222, "name": "invitation_date__c", "comment": null}, "wwid__c": {"type": "string", "index": 223, "name": "wwid__c", "comment": null}, "finance_department_description__c": {"type": "string", "index": 224, "name": "finance_department_description__c", "comment": null}, "type__c": {"type": "string", "index": 225, "name": "type__c", "comment": null}, "ticket_department__c": {"type": "string", "index": 226, "name": "ticket_department__c", "comment": null}, "recordval__rv2disableautovalidate__c": {"type": "boolean", "index": 227, "name": "recordval__rv2disableautovalidate__c", "comment": null}, "recordval__rv2disabletriggers__c": {"type": "boolean", "index": 228, "name": "recordval__rv2disabletriggers__c", "comment": null}, "dfsle__canmanageaccount__c": {"type": "boolean", "index": 229, "name": "dfsle__canmanageaccount__c", "comment": null}, "dfsle__provisioned__c": {"type": "string", "index": 230, "name": "dfsle__provisioned__c", "comment": null}, "dfsle__status__c": {"type": "string", "index": 231, "name": "dfsle__status__c", "comment": null}, "dfsle__username__c": {"type": "string", "index": 232, "name": "dfsle__username__c", "comment": null}, "subscription_seller__c": {"type": "string", "index": 233, "name": "subscription_seller__c", "comment": null}, "usage_seller__c": {"type": "string", "index": 234, "name": "usage_seller__c", "comment": null}, "quota__c": {"type": "double", "index": 235, "name": "quota__c", "comment": null}, "seller_s_capacity__c": {"type": "double", "index": 236, "name": "seller_s_capacity__c", "comment": null}, "us_smb_senior_ae__c": {"type": "boolean", "index": 237, "name": "us_smb_senior_ae__c", "comment": null}, "ambition__isambitionuser__c": {"type": "boolean", "index": 238, "name": "ambition__isambitionuser__c", "comment": null}, "retention_goal__c": {"type": "double", "index": 239, "name": "retention_goal__c", "comment": null}, "wwid_legacy__c": {"type": "string", "index": 240, "name": "wwid_legacy__c", "comment": null}, "slack_channel_id__c": {"type": "string", "index": 241, "name": "slack_channel_id__c", "comment": null}, "territory__c": {"type": "string", "index": 242, "name": "territory__c", "comment": null}, "_rivery_river_id": {"type": "string", "index": 243, "name": "_rivery_river_id", "comment": null}, "_rivery_run_id": {"type": "string", "index": 244, "name": "_rivery_run_id", "comment": null}, "_rivery_last_update": {"type": "timestamp", "index": 245, "name": "_rivery_last_update", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 26723785.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce_rivery.user"}, "source.yoda.analytics__salesforce_rivery.user_full": {"metadata": {"type": "table", "schema": "salesforce_rivery", "name": "user_full", "database": null, "comment": null, "owner": "root"}, "columns": {"id": {"type": "string", "index": 0, "name": "id", "comment": null}, "userroleid": {"type": "string", "index": 1, "name": "userroleid", "comment": null}, "systemmodstamp": {"type": "timestamp", "index": 2, "name": "systemmodstamp", "comment": null}, "csm_team__c": {"type": "string", "index": 3, "name": "csm_team__c", "comment": null}, "role_name__c": {"type": "string", "index": 4, "name": "role_name__c", "comment": null}, "manager_text__c": {"type": "string", "index": 5, "name": "manager_text__c", "comment": null}, "territory__c": {"type": "string", "index": 6, "name": "territory__c", "comment": null}, "_rivery_river_id": {"type": "string", "index": 7, "name": "_rivery_river_id", "comment": null}, "_rivery_run_id": {"type": "string", "index": 8, "name": "_rivery_run_id", "comment": null}, "_rivery_last_update": {"type": "timestamp", "index": 9, "name": "_rivery_last_update", "comment": null}}, "stats": {"bytes": {"id": "bytes", "label": "bytes", "value": 525397.0, "include": true, "description": null}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.yoda.analytics__salesforce_rivery.user_full"}}, "errors": null} \ No newline at end of file diff --git a/tests/resources/test_target/manifest.json b/tests/resources/test_target/manifest.json new file mode 100644 index 0000000..2a8c486 --- /dev/null +++ b/tests/resources/test_target/manifest.json @@ -0,0 +1 @@ +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/manifest/v9.json", "dbt_version": "1.5.4", "generated_at": "2023-11-15T21:09:14.666398Z", "invocation_id": "8650ffd3-7372-4f27-b66a-85fb06499297", "env": {}, "project_id": "8280de3ef89855b206c1d74510deb424", "user_id": "bd4e7ef5-e43e-4918-859b-ac096b88100f", "send_anonymous_usage_stats": true, "adapter_type": "spark"}, "nodes": {"model.yoda.analytics___cs__account_acv_metrics_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___cs__account_acv_metrics_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.sql", "unique_id": "model.yoda.analytics___cs__account_acv_metrics_daily", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__account_acv_metrics_daily", "analytics___cs__account_acv_metrics_daily"], "alias": "analytics___cs__account_acv_metrics_daily", "checksum": {"name": "sha256", "checksum": "a5148fa8019a1cb381f7f64a9b3148c9743aae30dca5ce427e978f91469f63c4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "Daily aggregated table for account won sale opportunities daily. \nCalculate contracts acv per product line & product family.\nGranularity: date|account_id", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_segment": {"name": "cs_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment": {"name": "order_sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_acv_in_usd_sum": {"name": "ugc_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "reviews_acv_in_usd_sum": {"name": "reviews_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "vms_acv_in_usd_sum": {"name": "vms_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "insights_acv_in_usd_sum": {"name": "insights_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "loyalty_acv_in_usd_sum": {"name": "loyalty_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "sms_acv_in_usd_sum": {"name": "sms_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "subscriptions_acv_in_usd_sum": {"name": "subscriptions_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "total_acv_in_usd_sum": {"name": "total_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(31,2)"}, "is_ugc": {"name": "is_ugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights": {"name": "is_insights", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "product_family_cnt": {"name": "product_family_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "ugc_product_lines_cnt": {"name": "ugc_product_lines_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082635.7313735, "relation_name": "dev_dkruh1.analytics___cs__account_acv_metrics_daily", "raw_code": "-- Import --\n\nWITH import_opportunity_won_sale_daily AS (\n SELECT * FROM {{ ref ('analytics___cs__opportunity_won_sale_daily') }}\n)\n\n-- Logic -- \n,account_acv_metrics_daily AS ( \n SELECT\n date,\n account_id,\n organization_id,\n organization_key,\n MIN(cs_segment) AS cs_segment,\n MIN(order_sales_segment) AS order_sales_segment,\n SUM(ugc_acv_in_usd_sum) AS ugc_acv_in_usd_sum,\n SUM(reviews_acv_in_usd_sum) AS reviews_acv_in_usd_sum,\n SUM(vms_acv_in_usd_sum) AS vms_acv_in_usd_sum,\n SUM(insights_acv_in_usd_sum) AS insights_acv_in_usd_sum,\n SUM(loyalty_acv_in_usd_sum) AS loyalty_acv_in_usd_sum, \n SUM(sms_acv_in_usd_sum) AS sms_acv_in_usd_sum,\n SUM(subscriptions_acv_in_usd_sum) AS subscriptions_acv_in_usd_sum,\n SUM(total_acv_in_usd_sum) AS total_acv_in_usd_sum,\n MAX(is_ugc) AS is_ugc,\n MAX(is_reviews) AS is_reviews,\n MAX(is_vms) AS is_vms,\n MAX(is_insights) AS is_insights,\n MAX(is_loyalty) AS is_loyalty,\n MAX(is_sms) AS is_sms,\n MAX(is_subscriptions) AS is_subscriptions,\n MAX(is_ugc) + MAX(is_loyalty) + MAX(is_sms) + MAX(is_subscriptions) AS product_family_cnt,\n MAX(is_reviews) + MAX(is_vms) + MAX(is_insights) AS ugc_product_lines_cnt\n FROM import_opportunity_won_sale_daily\n GROUP BY 1, 2, 3, 4\n)\n\n-- Results --\n\nSELECT * \nFROM account_acv_metrics_daily", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_sale_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___cs__opportunity_won_sale_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_opportunity_won_sale_daily AS (\n SELECT * FROM dev_dkruh1.analytics___cs__opportunity_won_sale_daily\n)\n\n-- Logic -- \n,account_acv_metrics_daily AS ( \n SELECT\n date,\n account_id,\n organization_id,\n organization_key,\n MIN(cs_segment) AS cs_segment,\n MIN(order_sales_segment) AS order_sales_segment,\n SUM(ugc_acv_in_usd_sum) AS ugc_acv_in_usd_sum,\n SUM(reviews_acv_in_usd_sum) AS reviews_acv_in_usd_sum,\n SUM(vms_acv_in_usd_sum) AS vms_acv_in_usd_sum,\n SUM(insights_acv_in_usd_sum) AS insights_acv_in_usd_sum,\n SUM(loyalty_acv_in_usd_sum) AS loyalty_acv_in_usd_sum, \n SUM(sms_acv_in_usd_sum) AS sms_acv_in_usd_sum,\n SUM(subscriptions_acv_in_usd_sum) AS subscriptions_acv_in_usd_sum,\n SUM(total_acv_in_usd_sum) AS total_acv_in_usd_sum,\n MAX(is_ugc) AS is_ugc,\n MAX(is_reviews) AS is_reviews,\n MAX(is_vms) AS is_vms,\n MAX(is_insights) AS is_insights,\n MAX(is_loyalty) AS is_loyalty,\n MAX(is_sms) AS is_sms,\n MAX(is_subscriptions) AS is_subscriptions,\n MAX(is_ugc) + MAX(is_loyalty) + MAX(is_sms) + MAX(is_subscriptions) AS product_family_cnt,\n MAX(is_reviews) + MAX(is_vms) + MAX(is_insights) AS ugc_product_lines_cnt\n FROM import_opportunity_won_sale_daily\n GROUP BY 1, 2, 3, 4\n)\n\n-- Results --\n\nSELECT * \nFROM account_acv_metrics_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___cs__onboarding_project": {"database": null, "schema": "dev_dkruh1", "name": "analytics___cs__onboarding_project", "resource_type": "model", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.sql", "unique_id": "model.yoda.analytics___cs__onboarding_project", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__onboarding_project", "analytics___cs__onboarding_project"], "alias": "analytics___cs__onboarding_project", "checksum": {"name": "sha256", "checksum": "e21d6b39bef83194afabf51dad8003f53cc8e9b1d81ce8788da4a86d1586afff"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "cs"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "cs"], "description": "Modeled table of CS onboarding projects, contains stages dates | PK and granularity: onboarding project ID", "columns": {"onboarding_project_id": {"name": "onboarding_project_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_product_id": {"name": "account_product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_project_name": {"name": "onboarding_project_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_stage": {"name": "onboarding_stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_manager": {"name": "onboarding_manager", "description": "this indicates who is the onboarding manager if the onboarding is closed or who is the csm if open", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_manager_team": {"name": "onboarding_manager_team", "description": "this indicates what is the onboarding manager team if the onboarding is closed or what is the csm team if open", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_csm_name": {"name": "onboarding_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_csm_email": {"name": "onboarding_csm_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_domain_cnt": {"name": "onboarding_domain_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "cs_segment": {"name": "cs_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_total_acv": {"name": "account_total_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "product_acv": {"name": "product_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_platform": {"name": "account_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_industry": {"name": "account_industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_time_zone": {"name": "account_time_zone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "koc_date": {"name": "koc_date", "description": "kick off call date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "onboarding_start_date": {"name": "onboarding_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "project_start_date": {"name": "project_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "process_paused_date": {"name": "process_paused_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "process_resumed_date": {"name": "process_resumed_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "due_date": {"name": "due_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "project_completion_date": {"name": "project_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "target_launch_date": {"name": "target_launch_date", "description": "when the account wants to launch the product, will influence prioritization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_initial_won_date": {"name": "product_initial_won_date", "description": "when this product was first won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_live_date": {"name": "product_live_date", "description": "unique product indication to indicate the product is live. \nREVIEWS - the date when reviews widget/ star-rating widget was first loaded \nVMS - the date when any VMS gallery was first loaded SMS - the date when $3 of credit were used \nLOYALTY - the date when there was a redemption of points by 10+ customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "onboarding_total_score": {"name": "onboarding_total_score", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "onboarding_complexity_score": {"name": "onboarding_complexity_score", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,0)"}, "onboarding_reason": {"name": "onboarding_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_paused_duration": {"name": "onboarding_paused_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "onboarding_planned_duration_days": {"name": "onboarding_planned_duration_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "onboarding_actual_duration_gross_days": {"name": "onboarding_actual_duration_gross_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "onboarding_actual_duration_net": {"name": "onboarding_actual_duration_net", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "onboarding_net_duration": {"name": "onboarding_net_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "onboarding_customization_level": {"name": "onboarding_customization_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_red_flag_bucket": {"name": "onboarding_red_flag_bucket", "description": "the bucket of risk the account is in within the onboarding project, the CSM will fill this when risk spotted.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_red_flag_notes": {"name": "onboarding_red_flag_notes", "description": "CSM comments on the red flag that they are raising", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_red_flag_date": {"name": "onboarding_red_flag_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "onboarding_red_flag_reason": {"name": "onboarding_red_flag_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "framework_min_completion_date": {"name": "framework_min_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "integrations_min_completion_date": {"name": "integrations_min_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "admin_configured_min_completion_date": {"name": "admin_configured_min_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "speedy_bb_form_min_completion_date": {"name": "speedy_bb_form_min_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "emails_min_completion_date": {"name": "emails_min_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "reset_admin_min_completion_date": {"name": "reset_admin_min_completion_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "qa_min_completion_date": {"name": "qa_min_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "points_import_min_completion_date": {"name": "points_import_min_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "tier_recalc_min_completion_date": {"name": "tier_recalc_min_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modules_min_completion_date": {"name": "modules_min_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_type": {"name": "opportunity_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_start_date": {"name": "opportunity_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_renewal_date": {"name": "opportunity_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_onboarding_completion_status": {"name": "product_onboarding_completion_status", "description": "csm filled indication for the completion of the onboarding", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_onboarding_completion_date": {"name": "product_onboarding_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_onboarding_project_cnt": {"name": "product_onboarding_project_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_stage": {"name": "product_stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_current_contract": {"name": "is_current_contract", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_headless_platform": {"name": "is_headless_platform", "description": "a type of store that requires different attention", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_multi_store": {"name": "is_multi_store", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_se_needed": {"name": "is_se_needed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_customer_care_project": {"name": "is_customer_care_project", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "project_created_at": {"name": "project_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "cs"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082635.8663666, "relation_name": "dev_dkruh1.analytics___cs__onboarding_project", "raw_code": "-- Import --\n\nWITH import_opportunity AS (\n SELECT * FROM {{ref('analytics___salesforce__opportunity')}}\n)\n,import_account AS (\n SELECT * FROM {{ref('analytics___salesforce__account')}}\n)\n,import_account_product AS (\n SELECT * FROM {{ref('analytics___salesforce__account_product')}}\n)\n,import_onboarding_project AS (\n SELECT * FROM {{ref('analytics___salesforce__onboarding_project')}}\n)\n,import_custom_field_history AS (\n SELECT * FROM {{ref('analytics___salesforce_stg__custom_field_history')}} \n)\n\n-- Logic --\n\n,stage_completion_dates_raw AS (\n SELECT \n onboarding_project.onboarding_project_id ,\n CASE WHEN LOWER(onboarding_project_stages.field_name) LIKE '%framework%' THEN 'Framework'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%integrations%' THEN 'Integrations'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%admin configured%' THEN 'Admin Configured'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%speedy bb form%' THEN 'Speedy BB Form'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%emails completed%' THEN 'Emails Completed'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%reset admin%' THEN 'Reset Admin'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%qa%' THEN 'QA'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%points import%' THEN 'Points Import'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%tier recalc%' THEN 'Tier Recalc'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%modules complete%' THEN 'Modules Complete' END AS name_group,\n IF(LOWER(onboarding_project_stages.new_value) LIKE '%completed%', DATE(onboarding_project_stages.created_at), null) AS project_completion_date\n FROM import_custom_field_history AS onboarding_project_stages\n INNER JOIN import_onboarding_project AS onboarding_project\n ON onboarding_project_stages.onboarding_project_id = onboarding_project.onboarding_project_id \n AND LOWER(product_line) = 'loyalty'\n WHERE onboarding_project_stages.created_at > '2022-05-01' \n AND (LOWER(onboarding_project_stages.field_name) LIKE '%framework%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%integrations%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%admin configured%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%speedy bb form%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%emails completed%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%reset admin%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%qa%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%points import%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%tier recalc%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%modules complete%')\n AND onboarding_project.is_deleted = 0 \n)\n\n,stages_res AS (\n SELECT\n onboarding_project_id,\n MIN(IF(name_group = 'Framework', project_completion_date, NULL)) AS framework_min_completion_date,\n MIN(IF(name_group = 'Integrations', project_completion_date, NULL)) AS integrations_min_completion_date,\n MIN(IF(name_group = 'Admin Configured', project_completion_date, NULL)) AS admin_configured_min_completion_date,\n MIN(IF(name_group = 'Speedy BB Form', project_completion_date, NULL)) AS speedy_bb_form_min_completion_date,\n MIN(IF(name_group = 'Emails Completed', project_completion_date, NULL)) AS emails_min_completion_date,\n MIN(IF(name_group = 'Reset Admin', project_completion_date, NULL)) AS reset_Admin_min_completion_date,\n MIN(IF(name_group = 'QA', project_completion_date, NULL)) AS qa_min_completion_date,\n MIN(IF(name_group = 'Points Import', project_completion_date, NULL)) AS points_import_min_completion_date,\n MIN(IF(name_group = 'Tier Recalc', project_completion_date, NULL)) AS tier_recalc_min_completion_date,\n MIN(IF(name_group = 'Modules Complete', project_completion_date, NULL)) AS modules_min_completion_date\n FROM stage_completion_dates_raw\n GROUP BY 1\n)\n\n,onboarding_data_source AS (\n SELECT \n onboarding_project.onboarding_project_id,\n onboarding_project.account_product_id,\n onboarding_project.account_id,\n onboarding_project.account_name,\n onboarding_project.organization_key,\n onboarding_project.onboarding_project_name,\n onboarding_project.stage AS onboarding_stage,\n onboarding_project.product_line, \n onboarding_project.onboarding_manager,\n onboarding_project.onboarding_manager_team,\n onboarding_project.csm_name AS onboarding_csm_name,\n onboarding_project.csm_email AS onboarding_csm_email,\n onboarding_project.number_of_domains AS onboarding_domain_cnt,\n account.cs_segment,\n account.country,\n account.total_acv AS account_total_acv,\n account_product.acv_in_usd AS product_acv,\n account.platform AS account_platform,\n account.industry_name AS account_industry,\n account.time_zone AS account_time_zone,\n onboarding_project.koc_date,\n onboarding_project.onboarding_start_date,\n onboarding_project.project_start_date,\n onboarding_project.process_paused_date,\n onboarding_project.process_resumed_date,\n onboarding_project.due_date,\n onboarding_project.project_completion_date,\n onboarding_project.target_launch_date,\n onboarding_project.product_initial_won_date,\n account_product.live_date as product_live_date,\n onboarding_project.total_score AS onboarding_total_score,\n onboarding_project.complexity_score AS onboarding_complexity_score,\n onboarding_project.onboarding_reason,\n onboarding_project.paused_duration AS onboarding_paused_duration,\n onboarding_project.planned_duration_days AS onboarding_planned_duration_days,\n onboarding_project.actual_duration_gross_days AS onboarding_actual_duration_gross_days,\n onboarding_project.actual_duration_net AS onboarding_actual_duration_net,\n onboarding_project.net_duration AS onboarding_net_duration,\n onboarding_project.customization_level AS onboarding_customization_level,\n onboarding_project.red_flag_bucket AS onboarding_red_flag_bucket ,\n onboarding_project.red_flag_notes AS onboarding_red_flag_notes,\n onboarding_project.red_flag_date AS onboarding_red_flag_date,\n onboarding_project.red_flag_reason AS onboarding_red_flag_reason,\n stage.framework_min_completion_date,\n stage.integrations_min_completion_date,\n stage.admin_configured_min_completion_date,\n stage.speedy_bb_form_min_completion_date,\n stage.emails_min_completion_date,\n stage.reset_admin_min_completion_date,\n stage.qa_min_completion_date,\n stage.points_import_min_completion_date,\n stage.tier_recalc_min_completion_date,\n stage.modules_min_completion_date,\n account_product.opportunity_id,\n account_product.opportunity_type,\n account_product.opportunity_start_date,\n account_product.opportunity_renewal_date,\n account_product.onboarding_completion_status AS product_onboarding_completion_status,\n account_product.onboarding_completion_date AS product_onboarding_completion_date,\n account_product.onboarding_project_cnt AS product_onboarding_project_cnt,\n account_product.product_stage AS product_stage,\n account_product.is_current_contract,\n onboarding_project.is_headless_platform,\n onboarding_project.is_multi_store,\n onboarding_project.is_se_needed,\n onboarding_project.is_customer_care_project,\n onboarding_project.project_created_at, \n CURRENT_TIMESTAMP AS dwh_updated_at\n\n FROM import_onboarding_project AS onboarding_project \n LEFT JOIN import_account_product AS account_product \n ON onboarding_project.account_product_id = account_product.account_product_id\n LEFT JOIN import_account AS account\n ON account.account_id = onboarding_project.account_id\n LEFT JOIN stages_res AS stage\n ON stage.onboarding_project_id = onboarding_project.onboarding_project_id\n)\n\n-- Results -- \n\nSELECT *\nFROM onboarding_data_source", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___salesforce__account_product", "package": null, "version": null}, {"name": "analytics___salesforce__onboarding_project", "package": null, "version": null}, {"name": "analytics___salesforce_stg__custom_field_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_product", "model.yoda.analytics___salesforce__onboarding_project", "model.yoda.analytics___salesforce_stg__custom_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_opportunity AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n)\n,import_account AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce__account\n)\n,import_account_product AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce__account_product\n)\n,import_onboarding_project AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce__onboarding_project\n)\n,import_custom_field_history AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__custom_field_history \n)\n\n-- Logic --\n\n,stage_completion_dates_raw AS (\n SELECT \n onboarding_project.onboarding_project_id ,\n CASE WHEN LOWER(onboarding_project_stages.field_name) LIKE '%framework%' THEN 'Framework'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%integrations%' THEN 'Integrations'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%admin configured%' THEN 'Admin Configured'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%speedy bb form%' THEN 'Speedy BB Form'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%emails completed%' THEN 'Emails Completed'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%reset admin%' THEN 'Reset Admin'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%qa%' THEN 'QA'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%points import%' THEN 'Points Import'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%tier recalc%' THEN 'Tier Recalc'\n WHEN LOWER(onboarding_project_stages.field_name) LIKE '%modules complete%' THEN 'Modules Complete' END AS name_group,\n IF(LOWER(onboarding_project_stages.new_value) LIKE '%completed%', DATE(onboarding_project_stages.created_at), null) AS project_completion_date\n FROM import_custom_field_history AS onboarding_project_stages\n INNER JOIN import_onboarding_project AS onboarding_project\n ON onboarding_project_stages.onboarding_project_id = onboarding_project.onboarding_project_id \n AND LOWER(product_line) = 'loyalty'\n WHERE onboarding_project_stages.created_at > '2022-05-01' \n AND (LOWER(onboarding_project_stages.field_name) LIKE '%framework%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%integrations%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%admin configured%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%speedy bb form%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%emails completed%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%reset admin%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%qa%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%points import%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%tier recalc%' OR\n LOWER(onboarding_project_stages.field_name) LIKE '%modules complete%')\n AND onboarding_project.is_deleted = 0 \n)\n\n,stages_res AS (\n SELECT\n onboarding_project_id,\n MIN(IF(name_group = 'Framework', project_completion_date, NULL)) AS framework_min_completion_date,\n MIN(IF(name_group = 'Integrations', project_completion_date, NULL)) AS integrations_min_completion_date,\n MIN(IF(name_group = 'Admin Configured', project_completion_date, NULL)) AS admin_configured_min_completion_date,\n MIN(IF(name_group = 'Speedy BB Form', project_completion_date, NULL)) AS speedy_bb_form_min_completion_date,\n MIN(IF(name_group = 'Emails Completed', project_completion_date, NULL)) AS emails_min_completion_date,\n MIN(IF(name_group = 'Reset Admin', project_completion_date, NULL)) AS reset_Admin_min_completion_date,\n MIN(IF(name_group = 'QA', project_completion_date, NULL)) AS qa_min_completion_date,\n MIN(IF(name_group = 'Points Import', project_completion_date, NULL)) AS points_import_min_completion_date,\n MIN(IF(name_group = 'Tier Recalc', project_completion_date, NULL)) AS tier_recalc_min_completion_date,\n MIN(IF(name_group = 'Modules Complete', project_completion_date, NULL)) AS modules_min_completion_date\n FROM stage_completion_dates_raw\n GROUP BY 1\n)\n\n,onboarding_data_source AS (\n SELECT \n onboarding_project.onboarding_project_id,\n onboarding_project.account_product_id,\n onboarding_project.account_id,\n onboarding_project.account_name,\n onboarding_project.organization_key,\n onboarding_project.onboarding_project_name,\n onboarding_project.stage AS onboarding_stage,\n onboarding_project.product_line, \n onboarding_project.onboarding_manager,\n onboarding_project.onboarding_manager_team,\n onboarding_project.csm_name AS onboarding_csm_name,\n onboarding_project.csm_email AS onboarding_csm_email,\n onboarding_project.number_of_domains AS onboarding_domain_cnt,\n account.cs_segment,\n account.country,\n account.total_acv AS account_total_acv,\n account_product.acv_in_usd AS product_acv,\n account.platform AS account_platform,\n account.industry_name AS account_industry,\n account.time_zone AS account_time_zone,\n onboarding_project.koc_date,\n onboarding_project.onboarding_start_date,\n onboarding_project.project_start_date,\n onboarding_project.process_paused_date,\n onboarding_project.process_resumed_date,\n onboarding_project.due_date,\n onboarding_project.project_completion_date,\n onboarding_project.target_launch_date,\n onboarding_project.product_initial_won_date,\n account_product.live_date as product_live_date,\n onboarding_project.total_score AS onboarding_total_score,\n onboarding_project.complexity_score AS onboarding_complexity_score,\n onboarding_project.onboarding_reason,\n onboarding_project.paused_duration AS onboarding_paused_duration,\n onboarding_project.planned_duration_days AS onboarding_planned_duration_days,\n onboarding_project.actual_duration_gross_days AS onboarding_actual_duration_gross_days,\n onboarding_project.actual_duration_net AS onboarding_actual_duration_net,\n onboarding_project.net_duration AS onboarding_net_duration,\n onboarding_project.customization_level AS onboarding_customization_level,\n onboarding_project.red_flag_bucket AS onboarding_red_flag_bucket ,\n onboarding_project.red_flag_notes AS onboarding_red_flag_notes,\n onboarding_project.red_flag_date AS onboarding_red_flag_date,\n onboarding_project.red_flag_reason AS onboarding_red_flag_reason,\n stage.framework_min_completion_date,\n stage.integrations_min_completion_date,\n stage.admin_configured_min_completion_date,\n stage.speedy_bb_form_min_completion_date,\n stage.emails_min_completion_date,\n stage.reset_admin_min_completion_date,\n stage.qa_min_completion_date,\n stage.points_import_min_completion_date,\n stage.tier_recalc_min_completion_date,\n stage.modules_min_completion_date,\n account_product.opportunity_id,\n account_product.opportunity_type,\n account_product.opportunity_start_date,\n account_product.opportunity_renewal_date,\n account_product.onboarding_completion_status AS product_onboarding_completion_status,\n account_product.onboarding_completion_date AS product_onboarding_completion_date,\n account_product.onboarding_project_cnt AS product_onboarding_project_cnt,\n account_product.product_stage AS product_stage,\n account_product.is_current_contract,\n onboarding_project.is_headless_platform,\n onboarding_project.is_multi_store,\n onboarding_project.is_se_needed,\n onboarding_project.is_customer_care_project,\n onboarding_project.project_created_at, \n CURRENT_TIMESTAMP AS dwh_updated_at\n\n FROM import_onboarding_project AS onboarding_project \n LEFT JOIN import_account_product AS account_product \n ON onboarding_project.account_product_id = account_product.account_product_id\n LEFT JOIN import_account AS account\n ON account.account_id = onboarding_project.account_id\n LEFT JOIN stages_res AS stage\n ON stage.onboarding_project_id = onboarding_project.onboarding_project_id\n)\n\n-- Results -- \n\nSELECT *\nFROM onboarding_data_source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___cs__opportunity_main_product_change": {"database": null, "schema": "dev_dkruh1", "name": "analytics___cs__opportunity_main_product_change", "resource_type": "model", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.sql", "unique_id": "model.yoda.analytics___cs__opportunity_main_product_change", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_main_product_change", "analytics___cs__opportunity_main_product_change"], "alias": "analytics___cs__opportunity_main_product_change", "checksum": {"name": "sha256", "checksum": "1764749e794b66e85ee247a84e32ee2847496032213a8a9fc6988edbf787f837"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "cs"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "cs"], "description": "Modeled Table of salesforce opportunity changes - Include pre add post opportunity HT products indicators and lists | \nPK & Granularity: opportunity_id | Main Products: reviews, loyalty, sms, subscriptions", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pre_opp_ht_core_product_list": {"name": "pre_opp_ht_core_product_list", "description": "Products prior to the opportunity from the following: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pre_opp_ht_core_product_cnt": {"name": "pre_opp_ht_core_product_cnt", "description": "Number of products prior to the opportunity from the following: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_multi_product_pre_opp": {"name": "is_multi_product_pre_opp", "description": "Did the account had more than one of the following products: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_sms_pre_opp": {"name": "is_annual_sms_pre_opp", "description": "If the account had SMS HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_loyalty_pre_opp": {"name": "is_annual_loyalty_pre_opp", "description": "If the account had loyalty HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_vms_pre_opp": {"name": "is_annual_vms_pre_opp", "description": "If the account had VMS HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_reviews_pre_opp": {"name": "is_annual_reviews_pre_opp", "description": "If the account had Reviews HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_ugc_pre_opp": {"name": "is_annual_ugc_pre_opp", "description": "If the account had UGC HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_subscriptions_pre_opp": {"name": "is_annual_subscriptions_pre_opp", "description": "If the account had Subscriptions HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "post_opp_ht_core_product_list": {"name": "post_opp_ht_core_product_list", "description": "Products post opportunity from the following: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "post_opp_ht_core_product_cnt": {"name": "post_opp_ht_core_product_cnt", "description": "Number of products post opportunity from the following: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_sms_post_opp": {"name": "is_annual_sms_post_opp", "description": "If the account had SMS HT post opportunity = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_loyalty_post_opp": {"name": "is_annual_loyalty_post_opp", "description": "If the account had loyalty HT post opportunity = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_reviews_post_opp": {"name": "is_annual_reviews_post_opp", "description": "If the account had Reviews HT post opportunity = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_ugc_post_opp": {"name": "is_annual_ugc_post_opp", "description": "If the account had UGC HT post opportunity = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_subscriptions_post_opp": {"name": "is_annual_subscriptions_post_opp", "description": "If the account had Subscriptions HT post opportunity = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "churned_product_list": {"name": "churned_product_list", "description": "Lost product list : can include reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "won_product_list": {"name": "won_product_list", "description": "Opportunity won products list from the following: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "cs"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082635.916059, "relation_name": "dev_dkruh1.analytics___cs__opportunity_main_product_change", "raw_code": "-- Import --\n\nWITH import_opportunity AS (\n SELECT * FROM {{ref('analytics___salesforce__opportunity')}}\n)\n, import_deal_summary_product AS (\n SELECT * FROM {{ref('analytics___salesforce__deal_summary_product')}}\n)\n\n-- Logic --\n\n, opportunity_main_product_change AS (\n SELECT \n opportunity_id, \n IFNULL(ARRAY_SORT(COLLECT_SET(IF(LOWER(deal_type) like '%churn%',LOWER(product),NULL))),ARRAY()) AS churned_product_array,\n IFNULL(ARRAY_SORT(COLLECT_SET(IF(LOWER(deal_type) like '%success%',LOWER(product),NULL))),ARRAY()) AS won_product_array\n FROM import_deal_summary_product AS deal_summary \n WHERE LOWER(product) IN ('loyalty','sms','reviews','subscriptions')\n GROUP BY 1 \n)\n, pre_post_opportunity_product AS (\n SELECT \n opportunity.opportunity_id, \n ARRAY_INTERSECT(opportunity.pre_opp_ht_product_list, ARRAY('loyalty','sms','reviews','subscriptions')) AS pre_opp_ht_core_product_array,\n IFNULL(product_change.churned_product_array, ARRAY()) AS churned_product_array,\n IFNULL(product_change.won_product_array, ARRAY()) AS won_product_array,\n ARRAY_UNION(ARRAY_EXCEPT(ARRAY_INTERSECT(opportunity.pre_opp_ht_product_list, ARRAY('loyalty','sms','reviews','subscriptions')), IFNULL(product_change.churned_product_array, ARRAY())),IFNULL(product_change.won_product_array, ARRAY())) AS post_opp_ht_core_product_array \n FROM import_opportunity AS opportunity\n LEFT JOIN opportunity_main_product_change AS product_change \n ON opportunity.opportunity_id = product_change.opportunity_id\n)\n, opportunity_main_product_change_res AS (\n SELECT opportunity.opportunity_id, \n CONCAT_WS(', ',product_list.pre_opp_ht_core_product_array) AS pre_opp_ht_core_product_list,\n SIZE(product_list.pre_opp_ht_core_product_array) AS pre_opp_ht_core_product_cnt,\n IF(SIZE(product_list.pre_opp_ht_core_product_array) > 1, 1, 0) AS is_multi_product_pre_opp, \n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'sms'), 1, 0) AS is_annual_sms_pre_opp,\n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'loyalty'), 1 ,0) AS is_annual_loyalty_pre_opp,\n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'vms'), 1, 0) AS is_annual_vms_pre_opp,\n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'reviews'), 1, 0) AS is_annual_reviews_pre_opp,\n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'reviews')\n OR ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'vms'), 1, 0) AS is_annual_ugc_pre_opp,\n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'subscriptions'), 1, 0) AS is_annual_subscriptions_pre_opp,\n CONCAT_WS(', ',product_list.post_opp_ht_core_product_array) AS post_opp_ht_core_product_list,\n SIZE(product_list.post_opp_ht_core_product_array) AS post_opp_ht_core_product_cnt,\n IF(ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'sms'), 1, 0) AS is_annual_sms_post_opp,\n IF(ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'loyalty'), 1, 0) AS is_annual_loyalty_post_opp,\n IF(ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'reviews'), 1, 0) AS is_annual_reviews_post_opp,\n IF(ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'vms') \n OR ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'reviews'), 1, 0) AS is_annual_ugc_post_opp,\n IF(ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'subscriptions'), 1, 0) AS is_annual_subscriptions_post_opp,\n CONCAT_WS(', ', product_list.churned_product_array) AS churned_product_list, \n CONCAT_WS(', ', product_list.won_product_array) AS won_product_list\n FROM import_opportunity AS opportunity\n LEFT JOIN pre_post_opportunity_product AS product_list\n ON opportunity.opportunity_id = product_list.opportunity_id\n)\n-- Results -- \n\nSELECT * \nFROM opportunity_main_product_change_res", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce__deal_summary_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__deal_summary_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_opportunity AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n)\n, import_deal_summary_product AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce__deal_summary_product\n)\n\n-- Logic --\n\n, opportunity_main_product_change AS (\n SELECT \n opportunity_id, \n IFNULL(ARRAY_SORT(COLLECT_SET(IF(LOWER(deal_type) like '%churn%',LOWER(product),NULL))),ARRAY()) AS churned_product_array,\n IFNULL(ARRAY_SORT(COLLECT_SET(IF(LOWER(deal_type) like '%success%',LOWER(product),NULL))),ARRAY()) AS won_product_array\n FROM import_deal_summary_product AS deal_summary \n WHERE LOWER(product) IN ('loyalty','sms','reviews','subscriptions')\n GROUP BY 1 \n)\n, pre_post_opportunity_product AS (\n SELECT \n opportunity.opportunity_id, \n ARRAY_INTERSECT(opportunity.pre_opp_ht_product_list, ARRAY('loyalty','sms','reviews','subscriptions')) AS pre_opp_ht_core_product_array,\n IFNULL(product_change.churned_product_array, ARRAY()) AS churned_product_array,\n IFNULL(product_change.won_product_array, ARRAY()) AS won_product_array,\n ARRAY_UNION(ARRAY_EXCEPT(ARRAY_INTERSECT(opportunity.pre_opp_ht_product_list, ARRAY('loyalty','sms','reviews','subscriptions')), IFNULL(product_change.churned_product_array, ARRAY())),IFNULL(product_change.won_product_array, ARRAY())) AS post_opp_ht_core_product_array \n FROM import_opportunity AS opportunity\n LEFT JOIN opportunity_main_product_change AS product_change \n ON opportunity.opportunity_id = product_change.opportunity_id\n)\n, opportunity_main_product_change_res AS (\n SELECT opportunity.opportunity_id, \n CONCAT_WS(', ',product_list.pre_opp_ht_core_product_array) AS pre_opp_ht_core_product_list,\n SIZE(product_list.pre_opp_ht_core_product_array) AS pre_opp_ht_core_product_cnt,\n IF(SIZE(product_list.pre_opp_ht_core_product_array) > 1, 1, 0) AS is_multi_product_pre_opp, \n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'sms'), 1, 0) AS is_annual_sms_pre_opp,\n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'loyalty'), 1 ,0) AS is_annual_loyalty_pre_opp,\n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'vms'), 1, 0) AS is_annual_vms_pre_opp,\n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'reviews'), 1, 0) AS is_annual_reviews_pre_opp,\n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'reviews')\n OR ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'vms'), 1, 0) AS is_annual_ugc_pre_opp,\n IF(ARRAY_CONTAINS(opportunity.pre_opp_ht_product_list, 'subscriptions'), 1, 0) AS is_annual_subscriptions_pre_opp,\n CONCAT_WS(', ',product_list.post_opp_ht_core_product_array) AS post_opp_ht_core_product_list,\n SIZE(product_list.post_opp_ht_core_product_array) AS post_opp_ht_core_product_cnt,\n IF(ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'sms'), 1, 0) AS is_annual_sms_post_opp,\n IF(ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'loyalty'), 1, 0) AS is_annual_loyalty_post_opp,\n IF(ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'reviews'), 1, 0) AS is_annual_reviews_post_opp,\n IF(ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'vms') \n OR ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'reviews'), 1, 0) AS is_annual_ugc_post_opp,\n IF(ARRAY_CONTAINS(product_list.post_opp_ht_core_product_array, 'subscriptions'), 1, 0) AS is_annual_subscriptions_post_opp,\n CONCAT_WS(', ', product_list.churned_product_array) AS churned_product_list, \n CONCAT_WS(', ', product_list.won_product_array) AS won_product_list\n FROM import_opportunity AS opportunity\n LEFT JOIN pre_post_opportunity_product AS product_list\n ON opportunity.opportunity_id = product_list.opportunity_id\n)\n-- Results -- \n\nSELECT * \nFROM opportunity_main_product_change_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___cs__opportunity_product": {"database": null, "schema": "dev_dkruh1", "name": "analytics___cs__opportunity_product", "resource_type": "model", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.sql", "unique_id": "model.yoda.analytics___cs__opportunity_product", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_product", "analytics___cs__opportunity_product"], "alias": "analytics___cs__opportunity_product", "checksum": {"name": "sha256", "checksum": "81db1c71883abfd978123eeaa8d5f7e43e51dc76baef5c2a0c129a1f2d90f135"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "cs"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "cs"], "description": "Modeled Table CS opportunities - present data from opportunity and deal summary level - include only End term renewal, In term renewal, Upsell, Winback | PK & Granularity: opportunity_id, product line", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_sf_url": {"name": "opportunity_sf_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_name": {"name": "opportunity_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "close_date": {"name": "close_date", "description": "Opportunity close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "start_date": {"name": "start_date", "description": "Opportunity Start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "actual_end_date": {"name": "actual_end_date", "description": "Opportunity actual end date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "contract_start_date": {"name": "contract_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_staggered_contract": {"name": "is_staggered_contract", "description": "If the opportunity contains staggered contract -> 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "start_month": {"name": "start_month", "description": "Opportunity Start Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "contract_renewal_date": {"name": "contract_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "stage": {"name": "stage", "description": "Opportunity Stage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "Opportunity type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_closed": {"name": "is_closed", "description": "An opportunity will be closed if the stage is one of the following: Won - Sale, Lost After Won, Lost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_won_opportunity": {"name": "is_won_opportunity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opportunity_sales_segment": {"name": "opportunity_sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_comp_paid_date": {"name": "cs_comp_paid_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "lost_reason": {"name": "lost_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_sub_reason": {"name": "lost_sub_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_duration_with_extension_months": {"name": "contract_duration_with_extension_months", "description": "Number of months between contract renewal date and start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_actual_duration_months": {"name": "contract_actual_duration_months", "description": "contract duration + free months + csm extention months, actual duration is NULL unless in opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "num_of_csm_extension_month": {"name": "num_of_csm_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_of_end_of_contract_extension_month": {"name": "num_of_end_of_contract_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "pre_opp_ht_product_list": {"name": "pre_opp_ht_product_list", "description": "list of all HT products prior to the opportunity start date - From SF", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "opportunity_primary_csm_name_upon_closed": {"name": "opportunity_primary_csm_name_upon_closed", "description": "primary csm name upon closed - from opportunity level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_loyalty_csm_name_upon_closed": {"name": "opportunity_loyalty_csm_name_upon_closed", "description": "loyalty csm name upon closed - from opportunity level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_ugc_csm_name_upon_closed": {"name": "opportunity_ugc_csm_name_upon_closed", "description": "UGC csm name upon closed - from opportunity level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_sms_csm_name_upon_closed": {"name": "opportunity_sms_csm_name_upon_closed", "description": "sms csm name upon closed - from opportunity level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_delta_earr": {"name": "sms_delta_earr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_delta_earr": {"name": "subscriptions_delta_earr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opportunity_record_type": {"name": "opportunity_record_type", "description": "opportunity record type: Standart, Self service, Enterprise", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_owner_name": {"name": "opportunity_owner_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_owner_role": {"name": "opportunity_owner_role", "description": "n", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "downgraded_to": {"name": "downgraded_to", "description": "Reflect the self service plan If an account downgraded to self service plan in the period of month prior the opportunity and two month after", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "downgrade_acv_in_usd": {"name": "downgrade_acv_in_usd", "description": "Reflect the ACV If an account downgraded to self service plan in the period of month prior the opportunity and two month after", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_renewals_cnt": {"name": "product_renewals_cnt", "description": "Number of renewal the account had per product prior to the opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "prediction_previous_acv": {"name": "prediction_previous_acv", "description": "the renewal ACV of the product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_current_acv": {"name": "prediction_current_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_predicted_acv": {"name": "prediction_predicted_acv", "description": "the csm prediction of ACV - if it is open, if closed-> shows the actual closed acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_risk_buckets": {"name": "prediction_risk_buckets", "description": "this field is used to bucket accounts that are within risk buckets such as 'not responsive' 'change in business' etc", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prediction_current_hedged_acv": {"name": "prediction_current_hedged_acv", "description": "We use a hedging formula to take into consideration the certainty level: \n0% certainty->acv*0.2\n25% certainty->acv*0.5 \n50% certainty->acv*0.8 \n75% certainty and above ->acv*1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_certainty": {"name": "prediction_certainty", "description": "a field that is changed by the CSM to express the certainty level in the prediction", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "product_line": {"name": "product_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency_iso_code": {"name": "currency_iso_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_deal_type": {"name": "opportunity_deal_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type": {"name": "deal_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plans_added": {"name": "plans_added", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plans_removed": {"name": "plans_removed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_acv": {"name": "current_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "previous_acv": {"name": "previous_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(20,2)"}, "current_acv_original_currency": {"name": "current_acv_original_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "previous_acv_original_currency": {"name": "previous_acv_original_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(20,2)"}, "opp_rate_in_original_currency": {"name": "opp_rate_in_original_currency", "description": "IF current ACV = 0 --> churn, \nIF delta acv between -500 and 500 --> same rate\nIF current acv - previous acv > 500 --> upsell\nIF current acv - previous acv < -500 --> downgrade", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opp_rate_in_usd": {"name": "opp_rate_in_usd", "description": "IF current ACV = 0 --> churn, \nIF delta acv between -$500 and $500 --> same rate\nIF current acv - previous acv > $500 --> upsell\nIF current acv - previous acv < -$500 --> downgrade", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_acv_controlling_in_usd": {"name": "current_acv_controlling_in_usd", "description": "Prediction of current acv controlling currency rate:\n(current_acv_original_currency / previous_acv_original_currency) * previous_acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(35,2)"}, "delta_acv": {"name": "delta_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(20,2)"}, "previous_plans": {"name": "previous_plans", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_plans": {"name": "current_plans", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_company_expansion": {"name": "is_company_expansion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_product_won": {"name": "is_product_won", "description": "If deal type contains successful then 1, if lost or churn then 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_crossell": {"name": "is_crossell", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_segment": {"name": "cs_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_won_opportunity": {"name": "first_won_opportunity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_annual_account": {"name": "is_annual_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_original_dem_gen_marketing": {"name": "is_original_dem_gen_marketing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_original_dem_gen_partners": {"name": "is_original_dem_gen_partners", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_original_dem_gen_osdr": {"name": "is_original_dem_gen_osdr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_original_dem_gen_other": {"name": "is_original_dem_gen_other", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closest_contract_renewal_date": {"name": "closest_contract_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "time_zone": {"name": "time_zone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry_name": {"name": "industry_name", "description": "Field to hold the account industry. Values were generated by Product team.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_industry_name": {"name": "sub_industry_name", "description": "Holds the Sub Industry of the lead. Values were generated by the Product Team.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_sales_channel": {"name": "primary_sales_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_a_community_member": {"name": "has_a_community_member", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "daily_tracking_primary_csm": {"name": "daily_tracking_primary_csm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daily_tracking_loyalty_csm": {"name": "daily_tracking_loyalty_csm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daily_tracking_ugc_csm": {"name": "daily_tracking_ugc_csm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daily_tracking_sms_csm": {"name": "daily_tracking_sms_csm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_csm_name_upon_close": {"name": "product_csm_name_upon_close", "description": "If product csm name upon closed from opportunity level is not null --> product csm name upon closed from opportunity level\nELSE --> product csm name upon closed from daily tracking table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_csm_team_upon_close": {"name": "product_csm_team_upon_close", "description": "If product csm team upon closed from opportunity level is not null --> product csm team upon closed from opportunity level\nELSE --> product csm team upon closed from daily tracking table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_name_upon_closed": {"name": "primary_csm_name_upon_closed", "description": "If primary csm name upon closed from opportunity level is not null --> primary csm name upon closed from opportunity level\nELSE --> primary csm name upon closed from daily tracking table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team_upon_closed": {"name": "primary_csm_team_upon_closed", "description": "If primary csm team upon closed from opportunity level is not null --> primary csm team upon closed from opportunity level\nELSE --> primary csm team upon closed from daily tracking table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opp_based_cs_segment": {"name": "opp_based_cs_segment", "description": "opportunity cs segment based on the primary CSM team upon close.\nIF primary csm team = MM team --> MM\nELSE --> SMB", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_partner_name": {"name": "original_partner_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_id": {"name": "original_referrer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager": {"name": "partner_manager", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pre_opp_ht_core_product_list": {"name": "pre_opp_ht_core_product_list", "description": "Products prior to the opportunity from the following: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pre_opp_ht_core_product_cnt": {"name": "pre_opp_ht_core_product_cnt", "description": "Number of products prior to the opportunity from the following: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_multi_product_pre_opp": {"name": "is_multi_product_pre_opp", "description": "Did the account had more than one of the following products: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_sms_pre_opp": {"name": "is_annual_sms_pre_opp", "description": "If the account had SMS HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_loyalty_pre_opp": {"name": "is_annual_loyalty_pre_opp", "description": "If the account had loyalty HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_vms_pre_opp": {"name": "is_annual_vms_pre_opp", "description": "If the account had VMS HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_reviews_pre_opp": {"name": "is_annual_reviews_pre_opp", "description": "If the account had Reviews HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_ugc_pre_opp": {"name": "is_annual_ugc_pre_opp", "description": "If the account had UGC HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_subscriptions_pre_opp": {"name": "is_annual_subscriptions_pre_opp", "description": "If the account had Subscriptions HT the day prior to the opportunity start date = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "post_opp_ht_core_product_list": {"name": "post_opp_ht_core_product_list", "description": "Products post opportunity from the following: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "post_opp_ht_core_product_cnt": {"name": "post_opp_ht_core_product_cnt", "description": "Number of products post opportunity from the following: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_sms_post_opp": {"name": "is_annual_sms_post_opp", "description": "If the account had SMS HT post opportunity = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_loyalty_post_opp": {"name": "is_annual_loyalty_post_opp", "description": "If the account had loyalty HT post opportunity = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_reviews_post_opp": {"name": "is_annual_reviews_post_opp", "description": "If the account had Reviews HT post opportunity = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_ugc_post_opp": {"name": "is_annual_ugc_post_opp", "description": "If the account had UGC HT post opportunity = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_subscriptions_post_opp": {"name": "is_annual_subscriptions_post_opp", "description": "If the account had Subscriptions HT post opportunity = 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "churned_product_list": {"name": "churned_product_list", "description": "Lost product list : can include reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "won_product_list": {"name": "won_product_list", "description": "Opportunity won products list from the following: reviews, loyslty, sms, subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "l3m_usage_pre_opp_start_date": {"name": "l3m_usage_pre_opp_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,4)"}, "l6m_usage_pre_opp_start_date": {"name": "l6m_usage_pre_opp_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,4)"}, "l12m_usage_pre_opp_start_date": {"name": "l12m_usage_pre_opp_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,4)"}, "last_12_to_24_months_usage_pre_opp_start_date": {"name": "last_12_to_24_months_usage_pre_opp_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,4)"}, "orders_3_months_prior_opp_start_date": {"name": "orders_3_months_prior_opp_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_12_months_prior_opp_start_date": {"name": "orders_12_months_prior_opp_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_bucket": {"name": "order_bucket", "description": "Order bucket based on avg 12 month prior to opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_actual_duration_over_6_months": {"name": "is_actual_duration_over_6_months", "description": "If Opportunity type = 'end term renewal' and contract duration with extension month < 6 --> False\nElse --> True", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "onboarding_completion_date": {"name": "onboarding_completion_date", "description": "indication for the date of completion of the onboarding according to CSM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "live_date": {"name": "live_date", "description": "unique product indication to indicate the product is live.\nREVIEWS - the date when reviews widget/ star-rating widget was first loaded\nVMS - the date when any VMS gallery was first loaded\nSMS - the date when $3 of credit were used\nLOYALTY - the date when there was a redemption of points by 10+ customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_initial_won_date": {"name": "product_initial_won_date", "description": "when this product was first won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_tenure": {"name": "product_tenure", "description": "Number of years between the product first Won opportunity start date and current opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "cs"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082636.0406792, "relation_name": "dev_dkruh1.analytics___cs__opportunity_product", "raw_code": "-- Import --\n\nWITH import_opportunity AS (\n SELECT * FROM {{ref('analytics___salesforce__opportunity')}}\n)\n, import_deal_summary_product AS (\n SELECT * FROM {{ref('analytics___salesforce__deal_summary_product')}}\n)\n, import_sf_accounts AS (\n SELECT * FROM {{ref('analytics___salesforce__account')}}\n)\n, import_account_product AS (\n SELECT * FROM {{ref('analytics___salesforce__account_product')}}\n)\n, import_organization_product_revenue_monthly AS (\n SELECT * FROM {{ref('analytics___finance__organization_product_revenue_monthly')}}\n)\n, import_sf_users AS (\n SELECT * FROM {{ref('analytics___salesforce_stg__dim_sf_users_scd')}}\n)\n, import_account_daily_tracking AS (\n SELECT * FROM {{ref('analytics___salesforce__account_tracking_daily')}}\n)\n, import_sms_users AS (\n SELECT * FROM {{ref('analytics___sms__store')}}\n)\n, import_sms_monthly_metrics AS (\n SELECT * FROM {{ref('analytics___sms__store_metrics_monthly')}}\n)\n, import_monthly_metrics AS (\n SELECT * FROM {{ref('analytics___platform__organization_metrics_monthly')}}\n)\n, import_product_change AS (\n SELECT * FROM {{ref('analytics___cs__opportunity_main_product_change')}}\n)\n\n-- Logic --\n\n, downgrades_with_mrr AS (\n SELECT \n revenue_monthly.month,\n revenue_monthly.organization_key,\n account.account_id,\n IF(revenue_monthly.product_family_group = 'UGC', 'Reviews', revenue_monthly.product_family_group) AS product_line,\n revenue_monthly.closing_plan_group AS downgraded_to,\n IFNULL(revenue_monthly.closing_saas_mrr_in_usd,0) * 12 AS downgrade_arr_in_usd\n FROM import_organization_product_revenue_monthly AS revenue_monthly\n LEFT JOIN import_sf_accounts AS account\n ON revenue_monthly.organization_key = account.organization_key\n WHERE revenue_monthly.opening_is_full_service = 1\n AND revenue_monthly.closing_is_self_service = 1\n AND revenue_monthly.closing_saas_mrr_in_usd > 0\n)\n\n, sms_usage AS (\n SELECT \n account.account_id,\n sms_monthly.month,\n SUM(sms_monthly.usage_sum) AS monthly_usage\n FROM import_sms_monthly_metrics AS sms_monthly\n INNER JOIN import_sf_accounts AS account\n ON sms_monthly.organization_key = account.organization_key\n GROUP BY 1, 2\n)\n\n, sms_usage_agg AS (\n SELECT \n opportunity.account_id,\n opportunity.opportunity_id,\n SUM(IF(FLOOR(MONTHS_BETWEEN(opportunity.start_date,sms_usage.month)) BETWEEN 1 AND 3,sms_usage.monthly_usage, 0)) AS l3m_usage_pre_opp_start_date,\n SUM(IF(FLOOR(MONTHS_BETWEEN(opportunity.start_date,sms_usage.month)) BETWEEN 1 AND 6,sms_usage.monthly_usage, 0)) AS l6m_usage_pre_opp_start_date,\n SUM(IF(FLOOR(MONTHS_BETWEEN(opportunity.start_date,sms_usage.month)) BETWEEN 1 AND 12,sms_usage.monthly_usage, 0)) AS l12m_usage_pre_opp_start_date,\n SUM(IF(FLOOR(MONTHS_BETWEEN(opportunity.start_date,sms_usage.month)) BETWEEN 13 AND 24,sms_usage.monthly_usage, 0)) AS last_12_to_24_months_usage_pre_opp_start_date\n FROM import_opportunity AS opportunity\n LEFT JOIN sms_usage\n ON opportunity.account_id = sms_usage.account_id \n AND sms_usage.month >= TRUNC(ADD_MONTHS(opportunity.start_date, -24),'MONTH')\n WHERE opportunity.start_date < CURRENT_DATE\n GROUP BY 1, 2\n)\n\n, onboarding_details AS (\n SELECT \n account_id,\n product_line AS onboarding_product_line,\n MIN(product_initial_won_date) AS product_initial_won_date,\n MIN(DATE(onboarding_completion_date)) AS onboarding_completion_date,\n MIN(DATE(live_date)) AS live_date\n FROM import_account_product\n GROUP BY 1, 2\n)\n\n, opportunity_product AS (\n SELECT \n ------- Opportunity -------\n opportunity.opportunity_id,\n opportunity_sf_url, \n opportunity.opportunity_name,\n opportunity.close_date,\n opportunity.start_date,\n opportunity.actual_end_date,\n deal_summary.contract_start_date,\n opportunity.is_staggered_contract,\n TRUNC(opportunity.start_date,'MONTH') AS start_month,\n opportunity.contract_renewal_date,\n opportunity.stage,\n opportunity.type,\n opportunity.is_closed,\n opportunity.is_won_sale AS is_won_opportunity,\n opportunity.order_sales_segment AS opportunity_sales_segment,\n opportunity.cs_comp_paid_date,\n opportunity.lost_reason,\n opportunity.lost_sub_reason, \n opportunity.contract_duration_with_extension_months, \n opportunity.contract_actual_duration_months, \n IFNULL(CEIL(opportunity.num_of_csm_extension_month), 0) AS num_of_csm_extension_month,\n IFNULL(opportunity.num_of_end_of_contract_extension_month,0) AS num_of_end_of_contract_extension_month,\n opportunity.pre_opp_ht_product_list, \n opportunity.primary_csm_upon_closed AS opportunity_primary_csm_name_upon_closed,\n opportunity.loyalty_csm_upon_closed AS opportunity_loyalty_csm_name_upon_closed,\n opportunity.ugc_csm_upon_closed AS opportunity_ugc_csm_name_upon_closed,\n opportunity.sms_csm_upon_closed AS opportunity_sms_csm_name_upon_closed, \n opportunity.sms_delta_earr,\n opportunity.subscriptions_delta_earr,\n opportunity.record_type_name AS opportunity_record_type,\n opp_owner.sf_user_full_name AS opportunity_owner_name,\n opp_owner.sf_user_role AS opportunity_owner_role,\n \n ------- Self Service Downgrades -------\n IF(LOWER(deal_summary.deal_type) LIKE '%churn%' AND LOWER(deal_summary.product) IN ('reviews','loyalty') ,ss_downgrade.downgraded_to,NULL) AS downgraded_to,\n IFNULL(IF(LOWER(deal_summary.deal_type) LIKE '%churn%' AND LOWER(deal_summary.product) IN ('reviews','loyalty') ,ss_downgrade.downgrade_arr_in_usd,0),0) AS downgrade_acv_in_usd,\n\n CASE\n WHEN LOWER(deal_summary.product) IN ('reviews', 'vms', 'insights') THEN opportunity.previous_ugc_renewals_cnt\n WHEN LOWER(deal_summary.product) = 'loyalty' THEN opportunity.previous_loyalty_renewals_cnt\n WHEN LOWER(deal_summary.product) = 'sms' THEN opportunity.previous_sms_renewals_cnt END AS product_renewals_cnt,\n\n ------- Predictions -------\n CASE LOWER(deal_summary.product) \n WHEN 'reviews' THEN opportunity.prediction_reviews_previous_acv \n WHEN 'loyalty' THEN opportunity.prediction_loyalty_previous_acv END AS prediction_previous_acv,\n CASE LOWER(deal_summary.product) \n WHEN 'reviews' THEN opportunity.prediction_reviews_current_acv \n WHEN 'loyalty' THEN opportunity.prediction_loyalty_current_acv END AS prediction_current_acv,\n CASE LOWER(deal_summary.product) \n WHEN 'reviews' THEN opportunity.prediction_predicted_reviews_acv \n WHEN 'loyalty' THEN opportunity.prediction_predicted_loyalty_acv END AS prediction_predicted_acv,\n CASE LOWER(deal_summary.product) \n WHEN 'reviews' THEN opportunity.prediction_reviews_risk_buckets \n WHEN 'loyalty' THEN opportunity.prediction_loyalty_risk_buckets END AS prediction_risk_buckets,\n CASE LOWER(deal_summary.product) \n WHEN 'reviews' THEN opportunity.prediction_reviews_current_hedged_acv \n WHEN 'loyalty' THEN opportunity.prediction_loyalty_current_hedged_acv END AS prediction_current_hedged_acv,\n CASE LOWER(deal_summary.product)\n WHEN 'reviews' THEN opportunity.prediction_reviews_certainty \n WHEN 'loyalty' THEN opportunity.prediction_loyalty_certainty END AS prediction_certainty,\n\n ------- Deal Summary -------\n deal_summary.product AS product_line,\n deal_summary.product_family_group, \n deal_summary.currency_iso_code, \n deal_summary.opportunity_deal_type_as_per_deal_summary AS opportunity_deal_type,\n deal_summary.deal_type,\n deal_summary.plans_added,\n deal_summary.plans_removed,\n deal_summary.current_acv,\n deal_summary.previous_acv,\n deal_summary.current_acv_original_currency,\n deal_summary.previous_acv_original_currency,\n CASE WHEN deal_summary.current_acv_original_currency = 0 AND deal_summary.is_product_won = 0 THEN 'churn' \n WHEN ABS(deal_summary.current_acv_original_currency - deal_summary.previous_acv_original_currency) < 500 THEN 'same rate'\n WHEN deal_summary.current_acv_original_currency > deal_summary.previous_acv_original_currency THEN 'upsell'\n WHEN deal_summary.current_acv_original_currency < deal_summary.previous_acv_original_currency THEN 'downsell' END AS opp_rate_in_original_currency,\n CASE WHEN deal_summary.current_acv = 0 AND deal_summary.is_product_won = 0 THEN 'churn' \n WHEN ABS(deal_summary.current_acv - deal_summary.previous_acv_original_currency) < 500 THEN 'same rate' \n WHEN deal_summary.current_acv > deal_summary.previous_acv THEN 'upsell' \n WHEN deal_summary.current_acv < deal_summary.previous_acv THEN 'downsell' END AS opp_rate_in_usd,\n ROUND((deal_summary.current_acv_original_currency / deal_summary.previous_acv_original_currency) * deal_summary.previous_acv,2) AS current_acv_controlling_in_usd, \n deal_summary.delta_acv,\n deal_summary.previous_plans,\n deal_summary.current_plans,\n deal_summary.is_company_expansion,\n deal_summary.is_product_won,\n deal_summary.is_crossell, \n\n ------- Account -------\n account.account_name,\n account.account_id,\n account.cs_segment,\n account.first_won_opportunity,\n account.plan_name,\n account.is_annual_account,\n account.platform,\n account.organization_id,\n account.organization_key,\n account.is_original_dem_gen_marketing,\n account.is_original_dem_gen_partners,\n account.is_original_dem_gen_osdr,\n account.is_original_dem_gen_other,\n account.closest_contract_renewal_date,\n account.time_zone,\n account.industry_name,\n account.sub_industry_name,\n account.country,\n account.primary_sales_channel,\n account.has_a_community_member, \n \n ------- Account Daily Tracking -------\n account_daily.primary_csm_name AS daily_tracking_primary_csm,\n account_daily.loyalty_csm_name AS daily_tracking_loyalty_csm,\n account_daily.ugc_csm_name AS daily_tracking_ugc_csm,\n account_daily.sms_csm_name AS daily_tracking_sms_csm,\n\n ------- CSM Upon Close -------\n CASE WHEN LOWER(deal_summary.product) IN ('reviews', 'vms', 'insights') THEN IFNULL(opportunity.ugc_csm_upon_closed, account_daily.ugc_csm_name)\n WHEN LOWER(deal_summary.product) = 'loyalty' THEN IFNULL(opportunity.loyalty_csm_upon_closed, account_daily.loyalty_csm_name)\n WHEN LOWER(deal_summary.product) = 'sms' THEN IFNULL(opportunity.sms_csm_upon_closed, account_daily.sms_csm_name) END AS product_csm_name_upon_close,\n CASE WHEN LOWER(deal_summary.product) IN ('reviews', 'vms', 'insights') THEN IFNULL(opportunity.ugc_csm_team_upon_closed, account_daily.ugc_csm_team)\n WHEN LOWER(deal_summary.product) = 'loyalty' THEN IFNULL(opportunity.loyalty_csm_team_upon_closed, account_daily.loyalty_csm_team)\n WHEN LOWER(deal_summary.product) = 'sms' THEN IFNULL(opportunity.sms_csm_team_upon_closed, account_daily.sms_csm_team) END AS product_csm_team_upon_close,\n\n IFNULL(opportunity.primary_csm_upon_closed, account_daily.primary_csm_name) AS primary_csm_name_upon_closed,\n IFNULL(opportunity.primary_csm_team_upon_closed, account_daily.primary_csm_team) AS primary_csm_team_upon_closed,\n IF(LOWER(IFNULL(opportunity.primary_csm_team_upon_closed, account_daily.primary_csm_team)) like '% mm%','MM','SMB') AS opp_based_cs_segment,\n\n ------- Partners ------- \n opportunity.partner_account_name AS original_partner_name, \n opportunity.original_referrer_id AS original_referrer_id,\n opportunity.referrer_owner_name AS partner_manager, \n\n ------- Pre Opportunity Products -------\n pre_opp_ht_core_product_list,\n pre_opp_ht_core_product_cnt,\n is_multi_product_pre_opp, \n is_annual_sms_pre_opp,\n is_annual_loyalty_pre_opp,\n is_annual_vms_pre_opp,\n is_annual_reviews_pre_opp,\n is_annual_ugc_pre_opp,\n is_annual_subscriptions_pre_opp,\n\n ------- Post Opportunity Products -------\n post_opp_ht_core_product_list,\n post_opp_ht_core_product_cnt,\n is_annual_sms_post_opp,\n is_annual_loyalty_post_opp,\n is_annual_reviews_post_opp,\n is_annual_ugc_post_opp,\n is_annual_subscriptions_post_opp,\n\n ------- Changes -------\n churned_product_list, \n won_product_list,\n\n ------- Usage -------\n sms_usage.l3m_usage_pre_opp_start_date,\n sms_usage.l6m_usage_pre_opp_start_date,\n sms_usage.l12m_usage_pre_opp_start_date,\n sms_usage.last_12_to_24_months_usage_pre_opp_start_date,\n\n ------- Orders -------\n monthly_metrics.last_3m_orders_cnt_avg AS orders_3_months_prior_opp_start_date,\n monthly_metrics.last_12m_orders_cnt_avg AS orders_12_months_prior_opp_start_date,\n monthly_metrics.last_12m_orders_avg_bucket AS order_bucket,\n SMALLINT(IF((LOWER(opportunity.type) = 'end term renewal' AND contract_duration_with_extension_months >= 6)\n OR LOWER(opportunity.type) IN ('in term renewal', 'upsell', 'winback'), 1, 0)) AS is_actual_duration_over_6_months,\n \n ------- Account Product -------\n onboarding.onboarding_completion_date,\n onboarding.live_date,\n onboarding.product_initial_won_date,\n DATEDIFF(YEAR, onboarding.product_initial_won_date, opportunity.start_date) AS product_tenure,\n CURRENT_TIMESTAMP AS dwh_updated_at\n\n FROM import_opportunity AS opportunity\n INNER JOIN import_deal_summary_product AS deal_summary\n ON opportunity.opportunity_id = deal_summary.opportunity_id\n INNER JOIN import_sf_accounts AS account \n ON opportunity.account_id = account.account_id\n LEFT JOIN import_sf_users AS opp_owner \n ON opp_owner.sf_user_id = opportunity.owner_id \n AND opp_owner.scd_cur_ind = 1 \n LEFT JOIN import_account_daily_tracking AS account_daily\n ON opportunity.account_id = account_daily.account_id \n AND opportunity.close_date = account_daily.date\n LEFT JOIN downgrades_with_mrr AS ss_downgrade\n ON opportunity.account_id = ss_downgrade.account_id\n AND ss_downgrade.month BETWEEN ADD_MONTHS(TRUNC(opportunity.start_date,'MONTH'),-1) \n AND ADD_MONTHS(TRUNC(opportunity.start_date,'MONTH'),1)\n AND ss_downgrade.product_line = deal_summary.product \n LEFT JOIN sms_usage_agg AS sms_usage \n ON opportunity.account_id = sms_usage.account_id \n AND opportunity.opportunity_id = sms_usage.opportunity_id\n LEFT JOIN import_monthly_metrics AS monthly_metrics\n ON TRUNC(opportunity.start_date,'MONTH') = monthly_metrics.month \n AND account.organization_key = monthly_metrics.organization_key\n LEFT JOIN onboarding_details AS onboarding \n ON onboarding.account_id = opportunity.account_id \n AND onboarding.onboarding_product_line = deal_summary.product\n LEFT JOIN import_product_change AS product_list\n ON opportunity.opportunity_id = product_list.opportunity_id\n WHERE LOWER(opportunity.type) IN ('end term renewal', 'in term renewal', 'upsell', 'winback')\n AND LOWER(opportunity.stage) <> 'merged to single contract'\n AND opportunity.is_excluded_from_compensation = 0 \n AND opportunity.contract_actual_duration_months >= 0 \n)\n\n-- Results -- \n\nSELECT *\nFROM opportunity_product", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce__deal_summary_product", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___salesforce__account_product", "package": null, "version": null}, {"name": "analytics___finance__organization_product_revenue_monthly", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_users_scd", "package": null, "version": null}, {"name": "analytics___salesforce__account_tracking_daily", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___sms__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}, {"name": "analytics___cs__opportunity_main_product_change", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__deal_summary_product", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_product", "model.yoda.analytics___finance__organization_product_revenue_monthly", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce__account_tracking_daily", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__store_metrics_monthly", "model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___cs__opportunity_main_product_change"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_opportunity AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n)\n, import_deal_summary_product AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce__deal_summary_product\n)\n, import_sf_accounts AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce__account\n)\n, import_account_product AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce__account_product\n)\n, import_organization_product_revenue_monthly AS (\n SELECT * FROM dev_dkruh1.analytics___finance__organization_product_revenue_monthly\n)\n, import_sf_users AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__dim_sf_users_scd\n)\n, import_account_daily_tracking AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce__account_tracking_daily\n)\n, import_sms_users AS (\n SELECT * FROM dev_dkruh1.analytics___sms__store\n)\n, import_sms_monthly_metrics AS (\n SELECT * FROM dev_dkruh1.analytics___sms__store_metrics_monthly\n)\n, import_monthly_metrics AS (\n SELECT * FROM dev_dkruh1.analytics___platform__organization_metrics_monthly\n)\n, import_product_change AS (\n SELECT * FROM dev_dkruh1.analytics___cs__opportunity_main_product_change\n)\n\n-- Logic --\n\n, downgrades_with_mrr AS (\n SELECT \n revenue_monthly.month,\n revenue_monthly.organization_key,\n account.account_id,\n IF(revenue_monthly.product_family_group = 'UGC', 'Reviews', revenue_monthly.product_family_group) AS product_line,\n revenue_monthly.closing_plan_group AS downgraded_to,\n IFNULL(revenue_monthly.closing_saas_mrr_in_usd,0) * 12 AS downgrade_arr_in_usd\n FROM import_organization_product_revenue_monthly AS revenue_monthly\n LEFT JOIN import_sf_accounts AS account\n ON revenue_monthly.organization_key = account.organization_key\n WHERE revenue_monthly.opening_is_full_service = 1\n AND revenue_monthly.closing_is_self_service = 1\n AND revenue_monthly.closing_saas_mrr_in_usd > 0\n)\n\n, sms_usage AS (\n SELECT \n account.account_id,\n sms_monthly.month,\n SUM(sms_monthly.usage_sum) AS monthly_usage\n FROM import_sms_monthly_metrics AS sms_monthly\n INNER JOIN import_sf_accounts AS account\n ON sms_monthly.organization_key = account.organization_key\n GROUP BY 1, 2\n)\n\n, sms_usage_agg AS (\n SELECT \n opportunity.account_id,\n opportunity.opportunity_id,\n SUM(IF(FLOOR(MONTHS_BETWEEN(opportunity.start_date,sms_usage.month)) BETWEEN 1 AND 3,sms_usage.monthly_usage, 0)) AS l3m_usage_pre_opp_start_date,\n SUM(IF(FLOOR(MONTHS_BETWEEN(opportunity.start_date,sms_usage.month)) BETWEEN 1 AND 6,sms_usage.monthly_usage, 0)) AS l6m_usage_pre_opp_start_date,\n SUM(IF(FLOOR(MONTHS_BETWEEN(opportunity.start_date,sms_usage.month)) BETWEEN 1 AND 12,sms_usage.monthly_usage, 0)) AS l12m_usage_pre_opp_start_date,\n SUM(IF(FLOOR(MONTHS_BETWEEN(opportunity.start_date,sms_usage.month)) BETWEEN 13 AND 24,sms_usage.monthly_usage, 0)) AS last_12_to_24_months_usage_pre_opp_start_date\n FROM import_opportunity AS opportunity\n LEFT JOIN sms_usage\n ON opportunity.account_id = sms_usage.account_id \n AND sms_usage.month >= TRUNC(ADD_MONTHS(opportunity.start_date, -24),'MONTH')\n WHERE opportunity.start_date < CURRENT_DATE\n GROUP BY 1, 2\n)\n\n, onboarding_details AS (\n SELECT \n account_id,\n product_line AS onboarding_product_line,\n MIN(product_initial_won_date) AS product_initial_won_date,\n MIN(DATE(onboarding_completion_date)) AS onboarding_completion_date,\n MIN(DATE(live_date)) AS live_date\n FROM import_account_product\n GROUP BY 1, 2\n)\n\n, opportunity_product AS (\n SELECT \n ------- Opportunity -------\n opportunity.opportunity_id,\n opportunity_sf_url, \n opportunity.opportunity_name,\n opportunity.close_date,\n opportunity.start_date,\n opportunity.actual_end_date,\n deal_summary.contract_start_date,\n opportunity.is_staggered_contract,\n TRUNC(opportunity.start_date,'MONTH') AS start_month,\n opportunity.contract_renewal_date,\n opportunity.stage,\n opportunity.type,\n opportunity.is_closed,\n opportunity.is_won_sale AS is_won_opportunity,\n opportunity.order_sales_segment AS opportunity_sales_segment,\n opportunity.cs_comp_paid_date,\n opportunity.lost_reason,\n opportunity.lost_sub_reason, \n opportunity.contract_duration_with_extension_months, \n opportunity.contract_actual_duration_months, \n IFNULL(CEIL(opportunity.num_of_csm_extension_month), 0) AS num_of_csm_extension_month,\n IFNULL(opportunity.num_of_end_of_contract_extension_month,0) AS num_of_end_of_contract_extension_month,\n opportunity.pre_opp_ht_product_list, \n opportunity.primary_csm_upon_closed AS opportunity_primary_csm_name_upon_closed,\n opportunity.loyalty_csm_upon_closed AS opportunity_loyalty_csm_name_upon_closed,\n opportunity.ugc_csm_upon_closed AS opportunity_ugc_csm_name_upon_closed,\n opportunity.sms_csm_upon_closed AS opportunity_sms_csm_name_upon_closed, \n opportunity.sms_delta_earr,\n opportunity.subscriptions_delta_earr,\n opportunity.record_type_name AS opportunity_record_type,\n opp_owner.sf_user_full_name AS opportunity_owner_name,\n opp_owner.sf_user_role AS opportunity_owner_role,\n \n ------- Self Service Downgrades -------\n IF(LOWER(deal_summary.deal_type) LIKE '%churn%' AND LOWER(deal_summary.product) IN ('reviews','loyalty') ,ss_downgrade.downgraded_to,NULL) AS downgraded_to,\n IFNULL(IF(LOWER(deal_summary.deal_type) LIKE '%churn%' AND LOWER(deal_summary.product) IN ('reviews','loyalty') ,ss_downgrade.downgrade_arr_in_usd,0),0) AS downgrade_acv_in_usd,\n\n CASE\n WHEN LOWER(deal_summary.product) IN ('reviews', 'vms', 'insights') THEN opportunity.previous_ugc_renewals_cnt\n WHEN LOWER(deal_summary.product) = 'loyalty' THEN opportunity.previous_loyalty_renewals_cnt\n WHEN LOWER(deal_summary.product) = 'sms' THEN opportunity.previous_sms_renewals_cnt END AS product_renewals_cnt,\n\n ------- Predictions -------\n CASE LOWER(deal_summary.product) \n WHEN 'reviews' THEN opportunity.prediction_reviews_previous_acv \n WHEN 'loyalty' THEN opportunity.prediction_loyalty_previous_acv END AS prediction_previous_acv,\n CASE LOWER(deal_summary.product) \n WHEN 'reviews' THEN opportunity.prediction_reviews_current_acv \n WHEN 'loyalty' THEN opportunity.prediction_loyalty_current_acv END AS prediction_current_acv,\n CASE LOWER(deal_summary.product) \n WHEN 'reviews' THEN opportunity.prediction_predicted_reviews_acv \n WHEN 'loyalty' THEN opportunity.prediction_predicted_loyalty_acv END AS prediction_predicted_acv,\n CASE LOWER(deal_summary.product) \n WHEN 'reviews' THEN opportunity.prediction_reviews_risk_buckets \n WHEN 'loyalty' THEN opportunity.prediction_loyalty_risk_buckets END AS prediction_risk_buckets,\n CASE LOWER(deal_summary.product) \n WHEN 'reviews' THEN opportunity.prediction_reviews_current_hedged_acv \n WHEN 'loyalty' THEN opportunity.prediction_loyalty_current_hedged_acv END AS prediction_current_hedged_acv,\n CASE LOWER(deal_summary.product)\n WHEN 'reviews' THEN opportunity.prediction_reviews_certainty \n WHEN 'loyalty' THEN opportunity.prediction_loyalty_certainty END AS prediction_certainty,\n\n ------- Deal Summary -------\n deal_summary.product AS product_line,\n deal_summary.product_family_group, \n deal_summary.currency_iso_code, \n deal_summary.opportunity_deal_type_as_per_deal_summary AS opportunity_deal_type,\n deal_summary.deal_type,\n deal_summary.plans_added,\n deal_summary.plans_removed,\n deal_summary.current_acv,\n deal_summary.previous_acv,\n deal_summary.current_acv_original_currency,\n deal_summary.previous_acv_original_currency,\n CASE WHEN deal_summary.current_acv_original_currency = 0 AND deal_summary.is_product_won = 0 THEN 'churn' \n WHEN ABS(deal_summary.current_acv_original_currency - deal_summary.previous_acv_original_currency) < 500 THEN 'same rate'\n WHEN deal_summary.current_acv_original_currency > deal_summary.previous_acv_original_currency THEN 'upsell'\n WHEN deal_summary.current_acv_original_currency < deal_summary.previous_acv_original_currency THEN 'downsell' END AS opp_rate_in_original_currency,\n CASE WHEN deal_summary.current_acv = 0 AND deal_summary.is_product_won = 0 THEN 'churn' \n WHEN ABS(deal_summary.current_acv - deal_summary.previous_acv_original_currency) < 500 THEN 'same rate' \n WHEN deal_summary.current_acv > deal_summary.previous_acv THEN 'upsell' \n WHEN deal_summary.current_acv < deal_summary.previous_acv THEN 'downsell' END AS opp_rate_in_usd,\n ROUND((deal_summary.current_acv_original_currency / deal_summary.previous_acv_original_currency) * deal_summary.previous_acv,2) AS current_acv_controlling_in_usd, \n deal_summary.delta_acv,\n deal_summary.previous_plans,\n deal_summary.current_plans,\n deal_summary.is_company_expansion,\n deal_summary.is_product_won,\n deal_summary.is_crossell, \n\n ------- Account -------\n account.account_name,\n account.account_id,\n account.cs_segment,\n account.first_won_opportunity,\n account.plan_name,\n account.is_annual_account,\n account.platform,\n account.organization_id,\n account.organization_key,\n account.is_original_dem_gen_marketing,\n account.is_original_dem_gen_partners,\n account.is_original_dem_gen_osdr,\n account.is_original_dem_gen_other,\n account.closest_contract_renewal_date,\n account.time_zone,\n account.industry_name,\n account.sub_industry_name,\n account.country,\n account.primary_sales_channel,\n account.has_a_community_member, \n \n ------- Account Daily Tracking -------\n account_daily.primary_csm_name AS daily_tracking_primary_csm,\n account_daily.loyalty_csm_name AS daily_tracking_loyalty_csm,\n account_daily.ugc_csm_name AS daily_tracking_ugc_csm,\n account_daily.sms_csm_name AS daily_tracking_sms_csm,\n\n ------- CSM Upon Close -------\n CASE WHEN LOWER(deal_summary.product) IN ('reviews', 'vms', 'insights') THEN IFNULL(opportunity.ugc_csm_upon_closed, account_daily.ugc_csm_name)\n WHEN LOWER(deal_summary.product) = 'loyalty' THEN IFNULL(opportunity.loyalty_csm_upon_closed, account_daily.loyalty_csm_name)\n WHEN LOWER(deal_summary.product) = 'sms' THEN IFNULL(opportunity.sms_csm_upon_closed, account_daily.sms_csm_name) END AS product_csm_name_upon_close,\n CASE WHEN LOWER(deal_summary.product) IN ('reviews', 'vms', 'insights') THEN IFNULL(opportunity.ugc_csm_team_upon_closed, account_daily.ugc_csm_team)\n WHEN LOWER(deal_summary.product) = 'loyalty' THEN IFNULL(opportunity.loyalty_csm_team_upon_closed, account_daily.loyalty_csm_team)\n WHEN LOWER(deal_summary.product) = 'sms' THEN IFNULL(opportunity.sms_csm_team_upon_closed, account_daily.sms_csm_team) END AS product_csm_team_upon_close,\n\n IFNULL(opportunity.primary_csm_upon_closed, account_daily.primary_csm_name) AS primary_csm_name_upon_closed,\n IFNULL(opportunity.primary_csm_team_upon_closed, account_daily.primary_csm_team) AS primary_csm_team_upon_closed,\n IF(LOWER(IFNULL(opportunity.primary_csm_team_upon_closed, account_daily.primary_csm_team)) like '% mm%','MM','SMB') AS opp_based_cs_segment,\n\n ------- Partners ------- \n opportunity.partner_account_name AS original_partner_name, \n opportunity.original_referrer_id AS original_referrer_id,\n opportunity.referrer_owner_name AS partner_manager, \n\n ------- Pre Opportunity Products -------\n pre_opp_ht_core_product_list,\n pre_opp_ht_core_product_cnt,\n is_multi_product_pre_opp, \n is_annual_sms_pre_opp,\n is_annual_loyalty_pre_opp,\n is_annual_vms_pre_opp,\n is_annual_reviews_pre_opp,\n is_annual_ugc_pre_opp,\n is_annual_subscriptions_pre_opp,\n\n ------- Post Opportunity Products -------\n post_opp_ht_core_product_list,\n post_opp_ht_core_product_cnt,\n is_annual_sms_post_opp,\n is_annual_loyalty_post_opp,\n is_annual_reviews_post_opp,\n is_annual_ugc_post_opp,\n is_annual_subscriptions_post_opp,\n\n ------- Changes -------\n churned_product_list, \n won_product_list,\n\n ------- Usage -------\n sms_usage.l3m_usage_pre_opp_start_date,\n sms_usage.l6m_usage_pre_opp_start_date,\n sms_usage.l12m_usage_pre_opp_start_date,\n sms_usage.last_12_to_24_months_usage_pre_opp_start_date,\n\n ------- Orders -------\n monthly_metrics.last_3m_orders_cnt_avg AS orders_3_months_prior_opp_start_date,\n monthly_metrics.last_12m_orders_cnt_avg AS orders_12_months_prior_opp_start_date,\n monthly_metrics.last_12m_orders_avg_bucket AS order_bucket,\n SMALLINT(IF((LOWER(opportunity.type) = 'end term renewal' AND contract_duration_with_extension_months >= 6)\n OR LOWER(opportunity.type) IN ('in term renewal', 'upsell', 'winback'), 1, 0)) AS is_actual_duration_over_6_months,\n \n ------- Account Product -------\n onboarding.onboarding_completion_date,\n onboarding.live_date,\n onboarding.product_initial_won_date,\n DATEDIFF(YEAR, onboarding.product_initial_won_date, opportunity.start_date) AS product_tenure,\n CURRENT_TIMESTAMP AS dwh_updated_at\n\n FROM import_opportunity AS opportunity\n INNER JOIN import_deal_summary_product AS deal_summary\n ON opportunity.opportunity_id = deal_summary.opportunity_id\n INNER JOIN import_sf_accounts AS account \n ON opportunity.account_id = account.account_id\n LEFT JOIN import_sf_users AS opp_owner \n ON opp_owner.sf_user_id = opportunity.owner_id \n AND opp_owner.scd_cur_ind = 1 \n LEFT JOIN import_account_daily_tracking AS account_daily\n ON opportunity.account_id = account_daily.account_id \n AND opportunity.close_date = account_daily.date\n LEFT JOIN downgrades_with_mrr AS ss_downgrade\n ON opportunity.account_id = ss_downgrade.account_id\n AND ss_downgrade.month BETWEEN ADD_MONTHS(TRUNC(opportunity.start_date,'MONTH'),-1) \n AND ADD_MONTHS(TRUNC(opportunity.start_date,'MONTH'),1)\n AND ss_downgrade.product_line = deal_summary.product \n LEFT JOIN sms_usage_agg AS sms_usage \n ON opportunity.account_id = sms_usage.account_id \n AND opportunity.opportunity_id = sms_usage.opportunity_id\n LEFT JOIN import_monthly_metrics AS monthly_metrics\n ON TRUNC(opportunity.start_date,'MONTH') = monthly_metrics.month \n AND account.organization_key = monthly_metrics.organization_key\n LEFT JOIN onboarding_details AS onboarding \n ON onboarding.account_id = opportunity.account_id \n AND onboarding.onboarding_product_line = deal_summary.product\n LEFT JOIN import_product_change AS product_list\n ON opportunity.opportunity_id = product_list.opportunity_id\n WHERE LOWER(opportunity.type) IN ('end term renewal', 'in term renewal', 'upsell', 'winback')\n AND LOWER(opportunity.stage) <> 'merged to single contract'\n AND opportunity.is_excluded_from_compensation = 0 \n AND opportunity.contract_actual_duration_months >= 0 \n)\n\n-- Results -- \n\nSELECT *\nFROM opportunity_product", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___cs__opportunity_won_product_start_date": {"database": null, "schema": "dev_dkruh1", "name": "analytics___cs__opportunity_won_product_start_date", "resource_type": "model", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.sql", "unique_id": "model.yoda.analytics___cs__opportunity_won_product_start_date", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_product_start_date", "analytics___cs__opportunity_won_product_start_date"], "alias": "analytics___cs__opportunity_won_product_start_date", "checksum": {"name": "sha256", "checksum": "c174704e7e19b8d0267b8c9024b874c3cebddb7adb3ed463ac11226767673a8b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "cs", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "cs"], "description": "Modeled table of won sale opportunity group by product group family and product start date.\nGranularity: opportunity_id | product_family_group | line_item_start_date | line_item_end_date", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_id": {"name": "sf_account_id", "description": "FK: salesforce_account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "FK: platform_organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "FK: platform_organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_cs_segment": {"name": "opportunity_cs_segment", "description": "based on opportunity's primary_csm_team_upon_closed LIKE '% mm%' ---> 'MM' else 'SMB'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_name": {"name": "opportunity_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_type": {"name": "opportunity_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment": {"name": "order_sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment_group": {"name": "order_sales_segment_group", "description": "Group of the order_sales_segment:\n 1. VSB -> VSB\n 2. SMB Minus/SMB/SMB Plus -> SMB\n 3. MM/Enterprise -> MM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_renewals_cnt": {"name": "previous_renewals_cnt", "description": "Number of previous renewals prior to current opportunity - all renewals", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opportunity_start_date": {"name": "opportunity_start_date", "description": "Contract starting date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_close_date": {"name": "opportunity_close_date", "description": "Contract signing date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_family_group": {"name": "product_family_group", "description": "if product_family = vms or reviews or insights THEN 'UGC' ELSE product_family", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_start_date": {"name": "line_item_start_date", "description": "taking first line_item's contract_start_date and if does not exists opportunity_start_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "line_item_end_date": {"name": "line_item_end_date", "description": "if opportunity product = ht_self_service end date will be calculated from revenue churn events\nelse NVL(opportunity.actual_end_date, opportunity.contract_renewal_date).\nfor is_current_contract = 1 line_item_end_date = '2999-01-01'\nopportunity with line_item_end_date = null will be excluded", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_cnt": {"name": "product_cnt", "description": "total product count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "ugc_products_cnt": {"name": "ugc_products_cnt", "description": "count of ugc products reviews + insights + vms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "reviews_acv_in_usd_sum": {"name": "reviews_acv_in_usd_sum", "description": "sum reviews opportunity line item price_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(23,2)"}, "vms_acv_in_usd_sum": {"name": "vms_acv_in_usd_sum", "description": "sum vms opportunity line item price_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(23,2)"}, "insights_acv_in_usd_sum": {"name": "insights_acv_in_usd_sum", "description": "sum insights opportunity line item price_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(23,2)"}, "ugc_acv_in_usd_sum": {"name": "ugc_acv_in_usd_sum", "description": "sum reviews + insights + vms opportunity line item price_in_usdn", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(23,2)"}, "loyalty_acv_in_usd_sum": {"name": "loyalty_acv_in_usd_sum", "description": "sum loyalty opportunity line item price_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(23,2)"}, "sms_acv_in_usd_sum": {"name": "sms_acv_in_usd_sum", "description": "sum sms opportunity line item price_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(23,2)"}, "subscriptions_acv_in_usd_sum": {"name": "subscriptions_acv_in_usd_sum", "description": "sum subscriptions opportunity line item price_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(23,2)"}, "acv_in_usd_sum": {"name": "acv_in_usd_sum", "description": "sum all opportunity line item price_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(21,2)"}, "is_ht_self_service": {"name": "is_ht_self_service", "description": "indicator = 1 if opportunity was HT motion.\nclassified as Hybrid_Deal_HT_SS = true in salesforce", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc": {"name": "is_ugc", "description": "if product_family = vms or reviews or insights", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights": {"name": "is_insights", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_current_contract": {"name": "is_current_contract", "description": "if year(line_item_end_date) = 2999.\nsee line_item_end_date Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opportunity_duration_months": {"name": "opportunity_duration_months", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "opportunity_actual_duration_months": {"name": "opportunity_actual_duration_months", "description": "contract duration + free months + csm extention months, actual duration is NULL unless in opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "num_of_csm_extension_month": {"name": "num_of_csm_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "num_of_end_of_contract_extension_month": {"name": "num_of_end_of_contract_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["cs", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082636.093746, "relation_name": "dev_dkruh1.analytics___cs__opportunity_won_product_start_date", "raw_code": "-- Import -- \n\nWITH import_opportunity AS (\nSELECT * FROM {{ ref('analytics___salesforce__opportunity') }}\n),\n\nimport_accounts AS (\nSELECT * FROM {{ ref('analytics___salesforce__account') }}\n),\n\nimport_line_item AS (\nSELECT * FROM {{ ref('analytics___salesforce__opportunity_line_item') }}\n),\n\nimport_revenue_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___finance__organization_product_revenue_metrics_monthly') }}\n),\n\n-- Logic --\n\nopportunity_sf_account_product_agg AS (\nSELECT\n opportunity.opportunity_id,\n opportunity.account_id,\n accounts.organization_id,\n accounts.organization_key,\n NVL(line_item.contract_start_date,opportunity.start_date) AS line_item_start_date,\n IF(GREATEST(line_item.is_vms,line_item.is_reviews,line_item.is_insights)=1,'UGC',line_item.line_item_product) AS product_family_group,\n ROUND(SUM(IF(line_item.is_reviews = 1,line_item.price_in_usd,0)),2) AS reviews_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_vms = 1,line_item.price_in_usd,0)),2) AS vms_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_insights = 1,line_item.price_in_usd,0)),2) AS insights_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_reviews = 1 OR line_item.is_vms = 1,line_item.price_in_usd,0)),2) AS ugc_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_loyalty = 1,line_item.price_in_usd,0)),2) AS loyalty_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_sms = 1,line_item.price_in_usd,0)),2) AS sms_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_subscriptions = 1,line_item.price_in_usd,0)),2) AS subscriptions_acv_in_usd_sum,\n NVL(ROUND(SUM(line_item.price_in_usd),2),0) AS acv_in_usd_sum,\n MAX(opportunity.is_ht_ss) AS is_ht_self_service,\n MAX(line_item.is_reviews) AS is_reviews,\n MAX(line_item.is_vms) AS is_vms,\n MAX(GREATEST(line_item.is_vms,line_item.is_reviews,line_item.is_insights)) AS is_ugc,\n MAX(line_item.is_insights) AS is_insights,\n MAX(line_item.is_loyalty) AS is_loyalty,\n MAX(line_item.is_sms) AS is_sms,\n MAX(line_item.is_subscriptions) AS is_subscriptions,\n MAX(FLOAT(opportunity.contract_duration_months)) AS opportunity_duration_months,\n MAX(FLOAT(opportunity.contract_actual_duration_months)) AS opportunity_actual_duration_months,\n MAX(FLOAT(NVL(opportunity.num_of_csm_extension_month, 0))) AS num_of_csm_extension_month,\n MAX(FLOAT(IFNULL(opportunity.num_of_end_of_contract_extension_month, 0))) AS num_of_end_of_contract_extension_month\nFROM import_opportunity AS opportunity\nINNER JOIN import_line_item AS line_item\n ON opportunity.opportunity_id = line_item.opportunity_id\nINNER JOIN import_accounts AS accounts\n ON accounts.account_id = opportunity.account_id\nWHERE opportunity.is_won_sale = 1\nAND opportunity.start_date IS NOT NULL\nAND line_item.line_item_product IS NOT NULL\nGROUP BY 1,2,3,4,5,6\n),\n\nchurn_events_from_revenue_metrics AS (\nSELECT \n organization_key,\n product_family_group,\n IF(NVL(YEAR(subscription_end_date),2999) = 2999,LAST_DAY(month),subscription_end_date) AS churn_date\nFROM import_revenue_metrics_monthly\nWHERE is_lost = 1\nOR is_law_lost = 1\n),\n\nht_self_service_start_end_date AS (\nSELECT \n opportunity.opportunity_id,\n opportunity.product_family_group,\n opportunity.line_item_start_date,\n DATE(NVL(MIN(churn_events.churn_date),'2999-01-01')) AS ht_self_service_end_date\nFROM opportunity_sf_account_product_agg as opportunity\nLEFT JOIN churn_events_from_revenue_metrics AS churn_events\n ON churn_events.organization_key = opportunity.organization_key\n AND churn_events.product_family_group = opportunity.product_family_group\n AND churn_events.churn_date >= opportunity.line_item_start_date\nWHERE opportunity.is_ht_self_service = 1\nAND opportunity.organization_key IS NOT NULL\nGROUP BY 1,2,3\n),\n\nopportunity_enrichment AS (\nSELECT\n product.opportunity_id,\n product.account_id,\n product.organization_id,\n product.organization_key,\n IF(LOWER(opportunity.primary_csm_team_upon_closed) LIKE '% mm%','MM','SMB') AS opportunity_cs_segment,\n opportunity.opportunity_name,\n opportunity.type AS opportunity_type,\n opportunity.order_sales_segment,\n opportunity.order_sales_segment_group,\n opportunity.sales_region,\n opportunity.previous_renewals_cnt,\n opportunity.start_date AS opportunity_start_date,\n opportunity.close_date AS opportunity_close_date,\n product.product_family_group,\n product.line_item_start_date,\n DATE(CASE WHEN product.is_ht_self_service = 1 THEN ht_ss.ht_self_service_end_date\n WHEN opportunity.is_current_contract = 1 THEN '2999-01-01'\n ELSE NVL(opportunity.actual_end_date,opportunity.contract_renewal_date) \n END) AS line_item_end_date,\n product.is_ugc + product.is_loyalty + product.is_sms + product.is_subscriptions AS product_cnt,\n product.is_reviews + product.is_insights + product.is_vms AS ugc_products_cnt,\n product.reviews_acv_in_usd_sum,\n product.vms_acv_in_usd_sum,\n product.insights_acv_in_usd_sum,\n product.ugc_acv_in_usd_sum,\n product.loyalty_acv_in_usd_sum,\n product.sms_acv_in_usd_sum,\n product.subscriptions_acv_in_usd_sum,\n product.acv_in_usd_sum,\n product.is_ht_self_service,\n product.is_reviews,\n product.is_vms,\n product.is_ugc,\n product.is_insights,\n product.is_loyalty,\n product.is_sms,\n product.is_subscriptions,\n SMALLINT(IF(product.is_ht_self_service = 1 AND YEAR(ht_ss.ht_self_service_end_date) = 2999,1,opportunity.is_current_contract)) AS is_current_contract,\n product.opportunity_duration_months,\n product.opportunity_actual_duration_months,\n product.num_of_csm_extension_month,\n product.num_of_end_of_contract_extension_month\nFROM opportunity_sf_account_product_agg AS product\nINNER JOIN import_opportunity AS opportunity\n ON product.opportunity_id = opportunity.opportunity_id\nLEFT JOIN ht_self_service_start_end_date AS ht_ss\n ON product.is_ht_self_service = 1\n AND product.opportunity_id = ht_ss.opportunity_id\n AND product.product_family_group = ht_ss.product_family_group\n),\n\nopportunity_won_product_start_date_res AS (\nSELECT \n opportunity_id,\n account_id AS sf_account_id,\n organization_id,\n organization_key,\n opportunity_cs_segment,\n opportunity_name,\n opportunity_type,\n order_sales_segment,\n order_sales_segment_group,\n sales_region,\n previous_renewals_cnt,\n opportunity_start_date,\n opportunity_close_date,\n product_family_group,\n line_item_start_date,\n line_item_end_date,\n product_cnt,\n ugc_products_cnt,\n reviews_acv_in_usd_sum,\n vms_acv_in_usd_sum,\n insights_acv_in_usd_sum,\n ugc_acv_in_usd_sum,\n loyalty_acv_in_usd_sum,\n sms_acv_in_usd_sum,\n subscriptions_acv_in_usd_sum,\n acv_in_usd_sum,\n is_ht_self_service,\n is_reviews,\n is_vms,\n is_ugc,\n is_insights,\n is_loyalty,\n is_sms,\n is_subscriptions,\n is_current_contract,\n opportunity_duration_months,\n opportunity_actual_duration_months,\n num_of_csm_extension_month,\n num_of_end_of_contract_extension_month,\n CURRENT_TIMESTAMP as dwh_updated_at\nFROM opportunity_enrichment\nWHERE line_item_start_date < line_item_end_date\n)\n\n-- Results --\n\nSELECT * \nFROM opportunity_won_product_start_date_res", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity_line_item", "package": null, "version": null}, {"name": "analytics___finance__organization_product_revenue_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__opportunity_line_item", "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.sql", "compiled": true, "compiled_code": "-- Import -- \n\nWITH import_opportunity AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n),\n\nimport_accounts AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__account\n),\n\nimport_line_item AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__opportunity_line_item\n),\n\nimport_revenue_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___finance__organization_product_revenue_metrics_monthly\n),\n\n-- Logic --\n\nopportunity_sf_account_product_agg AS (\nSELECT\n opportunity.opportunity_id,\n opportunity.account_id,\n accounts.organization_id,\n accounts.organization_key,\n NVL(line_item.contract_start_date,opportunity.start_date) AS line_item_start_date,\n IF(GREATEST(line_item.is_vms,line_item.is_reviews,line_item.is_insights)=1,'UGC',line_item.line_item_product) AS product_family_group,\n ROUND(SUM(IF(line_item.is_reviews = 1,line_item.price_in_usd,0)),2) AS reviews_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_vms = 1,line_item.price_in_usd,0)),2) AS vms_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_insights = 1,line_item.price_in_usd,0)),2) AS insights_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_reviews = 1 OR line_item.is_vms = 1,line_item.price_in_usd,0)),2) AS ugc_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_loyalty = 1,line_item.price_in_usd,0)),2) AS loyalty_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_sms = 1,line_item.price_in_usd,0)),2) AS sms_acv_in_usd_sum,\n ROUND(SUM(IF(line_item.is_subscriptions = 1,line_item.price_in_usd,0)),2) AS subscriptions_acv_in_usd_sum,\n NVL(ROUND(SUM(line_item.price_in_usd),2),0) AS acv_in_usd_sum,\n MAX(opportunity.is_ht_ss) AS is_ht_self_service,\n MAX(line_item.is_reviews) AS is_reviews,\n MAX(line_item.is_vms) AS is_vms,\n MAX(GREATEST(line_item.is_vms,line_item.is_reviews,line_item.is_insights)) AS is_ugc,\n MAX(line_item.is_insights) AS is_insights,\n MAX(line_item.is_loyalty) AS is_loyalty,\n MAX(line_item.is_sms) AS is_sms,\n MAX(line_item.is_subscriptions) AS is_subscriptions,\n MAX(FLOAT(opportunity.contract_duration_months)) AS opportunity_duration_months,\n MAX(FLOAT(opportunity.contract_actual_duration_months)) AS opportunity_actual_duration_months,\n MAX(FLOAT(NVL(opportunity.num_of_csm_extension_month, 0))) AS num_of_csm_extension_month,\n MAX(FLOAT(IFNULL(opportunity.num_of_end_of_contract_extension_month, 0))) AS num_of_end_of_contract_extension_month\nFROM import_opportunity AS opportunity\nINNER JOIN import_line_item AS line_item\n ON opportunity.opportunity_id = line_item.opportunity_id\nINNER JOIN import_accounts AS accounts\n ON accounts.account_id = opportunity.account_id\nWHERE opportunity.is_won_sale = 1\nAND opportunity.start_date IS NOT NULL\nAND line_item.line_item_product IS NOT NULL\nGROUP BY 1,2,3,4,5,6\n),\n\nchurn_events_from_revenue_metrics AS (\nSELECT \n organization_key,\n product_family_group,\n IF(NVL(YEAR(subscription_end_date),2999) = 2999,LAST_DAY(month),subscription_end_date) AS churn_date\nFROM import_revenue_metrics_monthly\nWHERE is_lost = 1\nOR is_law_lost = 1\n),\n\nht_self_service_start_end_date AS (\nSELECT \n opportunity.opportunity_id,\n opportunity.product_family_group,\n opportunity.line_item_start_date,\n DATE(NVL(MIN(churn_events.churn_date),'2999-01-01')) AS ht_self_service_end_date\nFROM opportunity_sf_account_product_agg as opportunity\nLEFT JOIN churn_events_from_revenue_metrics AS churn_events\n ON churn_events.organization_key = opportunity.organization_key\n AND churn_events.product_family_group = opportunity.product_family_group\n AND churn_events.churn_date >= opportunity.line_item_start_date\nWHERE opportunity.is_ht_self_service = 1\nAND opportunity.organization_key IS NOT NULL\nGROUP BY 1,2,3\n),\n\nopportunity_enrichment AS (\nSELECT\n product.opportunity_id,\n product.account_id,\n product.organization_id,\n product.organization_key,\n IF(LOWER(opportunity.primary_csm_team_upon_closed) LIKE '% mm%','MM','SMB') AS opportunity_cs_segment,\n opportunity.opportunity_name,\n opportunity.type AS opportunity_type,\n opportunity.order_sales_segment,\n opportunity.order_sales_segment_group,\n opportunity.sales_region,\n opportunity.previous_renewals_cnt,\n opportunity.start_date AS opportunity_start_date,\n opportunity.close_date AS opportunity_close_date,\n product.product_family_group,\n product.line_item_start_date,\n DATE(CASE WHEN product.is_ht_self_service = 1 THEN ht_ss.ht_self_service_end_date\n WHEN opportunity.is_current_contract = 1 THEN '2999-01-01'\n ELSE NVL(opportunity.actual_end_date,opportunity.contract_renewal_date) \n END) AS line_item_end_date,\n product.is_ugc + product.is_loyalty + product.is_sms + product.is_subscriptions AS product_cnt,\n product.is_reviews + product.is_insights + product.is_vms AS ugc_products_cnt,\n product.reviews_acv_in_usd_sum,\n product.vms_acv_in_usd_sum,\n product.insights_acv_in_usd_sum,\n product.ugc_acv_in_usd_sum,\n product.loyalty_acv_in_usd_sum,\n product.sms_acv_in_usd_sum,\n product.subscriptions_acv_in_usd_sum,\n product.acv_in_usd_sum,\n product.is_ht_self_service,\n product.is_reviews,\n product.is_vms,\n product.is_ugc,\n product.is_insights,\n product.is_loyalty,\n product.is_sms,\n product.is_subscriptions,\n SMALLINT(IF(product.is_ht_self_service = 1 AND YEAR(ht_ss.ht_self_service_end_date) = 2999,1,opportunity.is_current_contract)) AS is_current_contract,\n product.opportunity_duration_months,\n product.opportunity_actual_duration_months,\n product.num_of_csm_extension_month,\n product.num_of_end_of_contract_extension_month\nFROM opportunity_sf_account_product_agg AS product\nINNER JOIN import_opportunity AS opportunity\n ON product.opportunity_id = opportunity.opportunity_id\nLEFT JOIN ht_self_service_start_end_date AS ht_ss\n ON product.is_ht_self_service = 1\n AND product.opportunity_id = ht_ss.opportunity_id\n AND product.product_family_group = ht_ss.product_family_group\n),\n\nopportunity_won_product_start_date_res AS (\nSELECT \n opportunity_id,\n account_id AS sf_account_id,\n organization_id,\n organization_key,\n opportunity_cs_segment,\n opportunity_name,\n opportunity_type,\n order_sales_segment,\n order_sales_segment_group,\n sales_region,\n previous_renewals_cnt,\n opportunity_start_date,\n opportunity_close_date,\n product_family_group,\n line_item_start_date,\n line_item_end_date,\n product_cnt,\n ugc_products_cnt,\n reviews_acv_in_usd_sum,\n vms_acv_in_usd_sum,\n insights_acv_in_usd_sum,\n ugc_acv_in_usd_sum,\n loyalty_acv_in_usd_sum,\n sms_acv_in_usd_sum,\n subscriptions_acv_in_usd_sum,\n acv_in_usd_sum,\n is_ht_self_service,\n is_reviews,\n is_vms,\n is_ugc,\n is_insights,\n is_loyalty,\n is_sms,\n is_subscriptions,\n is_current_contract,\n opportunity_duration_months,\n opportunity_actual_duration_months,\n num_of_csm_extension_month,\n num_of_end_of_contract_extension_month,\n CURRENT_TIMESTAMP as dwh_updated_at\nFROM opportunity_enrichment\nWHERE line_item_start_date < line_item_end_date\n)\n\n-- Results --\n\nSELECT * \nFROM opportunity_won_product_start_date_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___cs__opportunity_won_sale_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___cs__opportunity_won_sale_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.sql", "unique_id": "model.yoda.analytics___cs__opportunity_won_sale_daily", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_sale_daily", "analytics___cs__opportunity_won_sale_daily"], "alias": "analytics___cs__opportunity_won_sale_daily", "checksum": {"name": "sha256", "checksum": "5db6f955e8ce97c964cd0e680684e62342d8af7fc9a49d1c7b3e8530a1bb860d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "cs", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "cs"], "description": "Daily aggregated table for account won sale opportunities daily divided to contract start date. Granularity: date|opportunity_id|contract start date", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_segment": {"name": "cs_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_name": {"name": "opportunity_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_type": {"name": "opportunity_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "num_of_end_of_contract_extension_month": {"name": "num_of_end_of_contract_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "num_of_csm_extension_month": {"name": "num_of_csm_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "order_sales_segment": {"name": "order_sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_renewals_cnt": {"name": "previous_renewals_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "close_date": {"name": "close_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_start_date": {"name": "opportunity_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "contract_start_date": {"name": "contract_start_date", "description": "contract start date, when the opportunity contains multiple contract will be different from opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "end_date": {"name": "end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "ugc_acv_in_usd_sum": {"name": "ugc_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "reviews_acv_in_usd_sum": {"name": "reviews_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "vms_acv_in_usd_sum": {"name": "vms_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "insights_acv_in_usd_sum": {"name": "insights_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "loyalty_acv_in_usd_sum": {"name": "loyalty_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "sms_acv_in_usd_sum": {"name": "sms_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "subscriptions_acv_in_usd_sum": {"name": "subscriptions_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(33,2)"}, "total_acv_in_usd_sum": {"name": "total_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(31,2)"}, "product_cnt": {"name": "product_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ugc_products_cnt": {"name": "ugc_products_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_ugc": {"name": "is_ugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights": {"name": "is_insights", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["cs", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082636.1666791, "relation_name": "dev_dkruh1.analytics___cs__opportunity_won_sale_daily", "raw_code": "-- Import --\n\nWITH import_opportunity AS (\n SELECT * \n FROM {{ ref('analytics___cs__opportunity_won_product_start_date') }}\n)\n\n,import_calendar (\nSELECT DISTINCT date\nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date BETWEEN '2013-01-01' AND CURRENT_DATE - 1\n)\n\n-- Logic -- \n\n,opportunity_w_account_enrichment AS (\n SELECT\n opportunity_id,\n opportunity_name,\n opportunity_type,\n sf_account_id AS account_id,\n organization_id,\n organization_key,\n opportunity_cs_segment AS cs_segment,\n order_sales_segment,\n previous_renewals_cnt,\n opportunity_start_date,\n line_item_start_date AS contract_start_date,\n opportunity_close_date AS close_date,\n line_item_end_date AS end_date,\n SUM(reviews_acv_in_usd_sum) AS reviews_acv_in_usd_sum,\n SUM(vms_acv_in_usd_sum) AS vms_acv_in_usd_sum,\n SUM(insights_acv_in_usd_sum) AS insights_acv_in_usd_sum,\n SUM(ugc_acv_in_usd_sum) AS ugc_acv_in_usd_sum,\n SUM(loyalty_acv_in_usd_sum) AS loyalty_acv_in_usd_sum,\n SUM(sms_acv_in_usd_sum) AS sms_acv_in_usd_sum,\n SUM(subscriptions_acv_in_usd_sum) AS subscriptions_acv_in_usd_sum,\n SUM(acv_in_usd_sum) AS total_acv_in_usd_sum, \n SUM(product_cnt) AS product_cnt,\n SUM(ugc_products_cnt) AS ugc_products_cnt,\n MAX(is_reviews) AS is_reviews,\n MAX(is_vms) AS is_vms,\n MAX(is_ugc) is_ugc,\n MAX(is_insights) AS is_insights,\n MAX(is_loyalty) AS is_loyalty,\n MAX(is_sms) AS is_sms,\n MAX(is_subscriptions) AS is_subscriptions,\n MAX(opportunity_duration_months) AS opportunity_duration_months,\n MAX(opportunity_actual_duration_months) AS opportunity_actual_duration_months,\n MAX(num_of_csm_extension_month) AS num_of_csm_extension_month,\n MAX(num_of_end_of_contract_extension_month) AS num_of_end_of_contract_extension_month\n FROM import_opportunity AS opportunity\n GROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13\n)\n\n,opportunity_won_sale_daily AS (\n SELECT\n dates.date,\n opportunity.opportunity_id,\n opportunity.account_id,\n opportunity.cs_segment,\n opportunity.organization_id,\n opportunity.organization_key,\n opportunity.opportunity_name,\n opportunity.opportunity_type,\n opportunity.num_of_end_of_contract_extension_month,\n opportunity.num_of_csm_extension_month,\n opportunity.order_sales_segment,\n opportunity.previous_renewals_cnt,\n opportunity.close_date,\n opportunity.opportunity_start_date,\n opportunity.contract_start_date,\n opportunity.end_date,\n opportunity.ugc_acv_in_usd_sum,\n opportunity.reviews_acv_in_usd_sum,\n opportunity.vms_acv_in_usd_sum,\n opportunity.insights_acv_in_usd_sum,\n opportunity.loyalty_acv_in_usd_sum, \n opportunity.sms_acv_in_usd_sum,\n opportunity.subscriptions_acv_in_usd_sum,\n opportunity.total_acv_in_usd_sum,\n opportunity.product_cnt,\n opportunity.ugc_products_cnt,\n opportunity.is_ugc,\n opportunity.is_reviews,\n opportunity.is_vms,\n opportunity.is_insights,\n opportunity.is_loyalty,\n opportunity.is_sms,\n opportunity.is_subscriptions\n FROM opportunity_w_account_enrichment AS opportunity\n INNER JOIN import_calendar AS dates\n ON dates.date >= opportunity.contract_start_date\n AND dates.date < opportunity.end_date\n WHERE opportunity.opportunity_start_date < opportunity.end_date\n)\n\n-- Results --\n\nSELECT * FROM opportunity_won_sale_daily", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_product_start_date", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___cs__opportunity_won_product_start_date", "model.yoda.platform_stg__dim_calendar"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_opportunity AS (\n SELECT * \n FROM dev_dkruh1.analytics___cs__opportunity_won_product_start_date\n)\n\n,import_calendar (\nSELECT DISTINCT date\nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date BETWEEN '2013-01-01' AND CURRENT_DATE - 1\n)\n\n-- Logic -- \n\n,opportunity_w_account_enrichment AS (\n SELECT\n opportunity_id,\n opportunity_name,\n opportunity_type,\n sf_account_id AS account_id,\n organization_id,\n organization_key,\n opportunity_cs_segment AS cs_segment,\n order_sales_segment,\n previous_renewals_cnt,\n opportunity_start_date,\n line_item_start_date AS contract_start_date,\n opportunity_close_date AS close_date,\n line_item_end_date AS end_date,\n SUM(reviews_acv_in_usd_sum) AS reviews_acv_in_usd_sum,\n SUM(vms_acv_in_usd_sum) AS vms_acv_in_usd_sum,\n SUM(insights_acv_in_usd_sum) AS insights_acv_in_usd_sum,\n SUM(ugc_acv_in_usd_sum) AS ugc_acv_in_usd_sum,\n SUM(loyalty_acv_in_usd_sum) AS loyalty_acv_in_usd_sum,\n SUM(sms_acv_in_usd_sum) AS sms_acv_in_usd_sum,\n SUM(subscriptions_acv_in_usd_sum) AS subscriptions_acv_in_usd_sum,\n SUM(acv_in_usd_sum) AS total_acv_in_usd_sum, \n SUM(product_cnt) AS product_cnt,\n SUM(ugc_products_cnt) AS ugc_products_cnt,\n MAX(is_reviews) AS is_reviews,\n MAX(is_vms) AS is_vms,\n MAX(is_ugc) is_ugc,\n MAX(is_insights) AS is_insights,\n MAX(is_loyalty) AS is_loyalty,\n MAX(is_sms) AS is_sms,\n MAX(is_subscriptions) AS is_subscriptions,\n MAX(opportunity_duration_months) AS opportunity_duration_months,\n MAX(opportunity_actual_duration_months) AS opportunity_actual_duration_months,\n MAX(num_of_csm_extension_month) AS num_of_csm_extension_month,\n MAX(num_of_end_of_contract_extension_month) AS num_of_end_of_contract_extension_month\n FROM import_opportunity AS opportunity\n GROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13\n)\n\n,opportunity_won_sale_daily AS (\n SELECT\n dates.date,\n opportunity.opportunity_id,\n opportunity.account_id,\n opportunity.cs_segment,\n opportunity.organization_id,\n opportunity.organization_key,\n opportunity.opportunity_name,\n opportunity.opportunity_type,\n opportunity.num_of_end_of_contract_extension_month,\n opportunity.num_of_csm_extension_month,\n opportunity.order_sales_segment,\n opportunity.previous_renewals_cnt,\n opportunity.close_date,\n opportunity.opportunity_start_date,\n opportunity.contract_start_date,\n opportunity.end_date,\n opportunity.ugc_acv_in_usd_sum,\n opportunity.reviews_acv_in_usd_sum,\n opportunity.vms_acv_in_usd_sum,\n opportunity.insights_acv_in_usd_sum,\n opportunity.loyalty_acv_in_usd_sum, \n opportunity.sms_acv_in_usd_sum,\n opportunity.subscriptions_acv_in_usd_sum,\n opportunity.total_acv_in_usd_sum,\n opportunity.product_cnt,\n opportunity.ugc_products_cnt,\n opportunity.is_ugc,\n opportunity.is_reviews,\n opportunity.is_vms,\n opportunity.is_insights,\n opportunity.is_loyalty,\n opportunity.is_sms,\n opportunity.is_subscriptions\n FROM opportunity_w_account_enrichment AS opportunity\n INNER JOIN import_calendar AS dates\n ON dates.date >= opportunity.contract_start_date\n AND dates.date < opportunity.end_date\n WHERE opportunity.opportunity_start_date < opportunity.end_date\n)\n\n-- Results --\n\nSELECT * FROM opportunity_won_sale_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___cs__organization_first_ht_opportunity": {"database": null, "schema": "dev_dkruh1", "name": "analytics___cs__organization_first_ht_opportunity", "resource_type": "model", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.sql", "unique_id": "model.yoda.analytics___cs__organization_first_ht_opportunity", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__organization_first_ht_opportunity", "analytics___cs__organization_first_ht_opportunity"], "alias": "analytics___cs__organization_first_ht_opportunity", "checksum": {"name": "sha256", "checksum": "04a2ce24aafd010297856d5180185bb3516873207c1238746f03305372c068d9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "PK [organization_key]\n\nTable that stores for each organization it's first HT opportunity segments.", "columns": {"organization_key": {"name": "organization_key", "description": "PK: organization unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "opportunity_id of the first_ht_opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "sales_region of the first_ht_opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment": {"name": "order_sales_segment", "description": "order_sales_segment of the first_ht_opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment_group": {"name": "order_sales_segment_group", "description": "Group of the order_sales_segment:\n 1. VSB -> VSB\n 2. SMB Minus/SMB/SMB Plus -> SMB\n 3. MM/Enterprise -> MM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_start_date": {"name": "opportunity_start_date", "description": "opportunity_start_date of the first_ht_opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082636.2109141, "relation_name": "dev_dkruh1.analytics___cs__organization_first_ht_opportunity", "raw_code": "-- Import --\n\nWITH import_won_opportunity AS (\nSELECT * FROM {{ ref('analytics___cs__opportunity_won_product_start_date') }}\n),\n\n-- Logic --\n\norg_first_ht_opp AS (\n\nSELECT\n organization_key,\n opportunity_id,\n sales_region,\n order_sales_segment,\n order_sales_segment_group,\n opportunity_start_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_won_opportunity\nWHERE is_ht_self_service = 0\nAND organization_key IS NOT NULL\nQUALIFY ROW_NUMBER() OVER (PARTITION BY organization_key ORDER BY opportunity_start_date) = 1 -- First opp\n)\n\n-- Result --\n\nSELECT *\nFROM org_first_ht_opp", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_product_start_date", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___cs__opportunity_won_product_start_date"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_won_opportunity AS (\nSELECT * FROM dev_dkruh1.analytics___cs__opportunity_won_product_start_date\n),\n\n-- Logic --\n\norg_first_ht_opp AS (\n\nSELECT\n organization_key,\n opportunity_id,\n sales_region,\n order_sales_segment,\n order_sales_segment_group,\n opportunity_start_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_won_opportunity\nWHERE is_ht_self_service = 0\nAND organization_key IS NOT NULL\nQUALIFY ROW_NUMBER() OVER (PARTITION BY organization_key ORDER BY opportunity_start_date) = 1 -- First opp\n)\n\n-- Result --\n\nSELECT *\nFROM org_first_ht_opp", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___delivery__organization_customer_care_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___delivery__organization_customer_care_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.sql", "original_file_path": "models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.sql", "unique_id": "model.yoda.analytics___delivery__organization_customer_care_over_time", "fqn": ["yoda", "analytics", "delivery", "marts", "analytics___delivery__organization_customer_care_over_time", "analytics___delivery__organization_customer_care_over_time"], "alias": "analytics___delivery__organization_customer_care_over_time", "checksum": {"name": "sha256", "checksum": "9e8a81b4a3d1b2d2bdf4d0c856792e9c5e02367b3c72b08ac324d3d45bf4bc39"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "delivery", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "delivery"], "description": "Modeled Table of yotpo's customer care organizations over time.\nGranularity: orgnization_key| product_family_group | from_date | to_date", "columns": {"organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_customer_care": {"name": "is_customer_care", "description": "= 1 table containg only customer care time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "from_date": {"name": "from_date", "description": "customer care start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "The end date for customer care is the subscription_end_date from finance__organization_product_revenue_metrics_monthly where is_lost = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_current": {"name": "is_current", "description": "is this line relevan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["delivery", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082636.2524877, "relation_name": "dev_dkruh1.analytics___delivery__organization_customer_care_over_time", "raw_code": "-- Import --\n\nWITH import_static_onboarding_call_pre_2023_08_27 AS (\nSELECT * FROM {{ ref('analytics___platform_stg__organization_onboarding_call_pre_2023_08_27') }}\n),\n\nimport_salesforce_service_case AS (\nSELECT * FROM {{ ref('analytics___salesforce__service_case') }}\n),\n\nimport_revenue_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___finance__organization_product_revenue_metrics_monthly') }}\n),\n\n-- Logic --\n\norganization_customer_care_start_date AS (\nSELECT \n organization_key,\n CASE WHEN LOWER(subject) LIKE '%prime%' THEN 'UGC'\n WHEN LOWER(subject) LIKE '%gold%' THEN 'Loyalty'\n WHEN LOWER(subject) LIKE '%subs%' THEN 'Subscriptions' \n END AS product_family_group, \n DATE(opened_at) AS customer_care_start_date\nFROM import_salesforce_service_case\nWHERE is_type_customer_care = 1\nAND is_onboarding = 1\nAND closed_at IS NOT NULL \nAND LOWER(status) NOT IN ('closed as duplicate','closed as no-show')\nAND organization_key IS NOT NULL\n),\n\nunion_static_data AS (\nSELECT \n organization_key, \n product_family_group,\n onboarding_call_date AS customer_care_start_date\nFROM import_static_onboarding_call_pre_2023_08_27\nUNION ALL\nSELECT\n organization_key, \n product_family_group,\n customer_care_start_date\nFROM organization_customer_care_start_date\n),\n\nchurn_events_from_revenue_metrics AS (\nSELECT \n organization_key,\n product_family_group,\n IF(NVL(YEAR(subscription_end_date),2999) = 2999,LAST_DAY(month),subscription_end_date) AS churn_date\nFROM import_revenue_metrics_monthly\nWHERE is_lost = 1\nOR is_law_lost = 1\n),\n\ncustomer_care_start_end_date AS (\nSELECT \n customer_care.organization_key,\n customer_care.product_family_group,\n customer_care.customer_care_start_date,\n DATE(NVL(MIN(churn_events.churn_date),'2999-01-01')) AS customer_care_end_date\nFROM union_static_data as customer_care\nLEFT JOIN churn_events_from_revenue_metrics AS churn_events\n ON churn_events.organization_key = customer_care.organization_key\n AND churn_events.product_family_group = customer_care.product_family_group\n AND churn_events.churn_date >= customer_care.customer_care_start_date\nWHERE customer_care.product_family_group IS NOT NULL\nGROUP BY 1,2,3\n),\n\nremoving_overlapping_start_events AS (\nSELECT\n organization_key,\n product_family_group,\n customer_care_end_date,\n MIN(customer_care_start_date) AS customer_care_start_date\nFROM customer_care_start_end_date\nGROUP BY 1,2,3\n),\n\norganization_customer_care_over_time_res AS (\nSELECT\n organization_key,\n product_family_group,\n SMALLINT(1) AS is_customer_care, \n customer_care_start_date AS from_date,\n customer_care_end_date AS to_date,\n SMALLINT(IF(YEAR(customer_care_end_date) = 2999,1,0)) AS is_current,\n CURRENT_TIMESTAMP as dwh_updated_at\nFROM removing_overlapping_start_events\n)\n\nSELECT * \nFROM organization_customer_care_over_time_res", "language": "sql", "refs": [{"name": "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "package": null, "version": null}, {"name": "analytics___salesforce__service_case", "package": null, "version": null}, {"name": "analytics___finance__organization_product_revenue_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "model.yoda.analytics___salesforce__service_case", "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_static_onboarding_call_pre_2023_08_27 AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27\n),\n\nimport_salesforce_service_case AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__service_case\n),\n\nimport_revenue_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___finance__organization_product_revenue_metrics_monthly\n),\n\n-- Logic --\n\norganization_customer_care_start_date AS (\nSELECT \n organization_key,\n CASE WHEN LOWER(subject) LIKE '%prime%' THEN 'UGC'\n WHEN LOWER(subject) LIKE '%gold%' THEN 'Loyalty'\n WHEN LOWER(subject) LIKE '%subs%' THEN 'Subscriptions' \n END AS product_family_group, \n DATE(opened_at) AS customer_care_start_date\nFROM import_salesforce_service_case\nWHERE is_type_customer_care = 1\nAND is_onboarding = 1\nAND closed_at IS NOT NULL \nAND LOWER(status) NOT IN ('closed as duplicate','closed as no-show')\nAND organization_key IS NOT NULL\n),\n\nunion_static_data AS (\nSELECT \n organization_key, \n product_family_group,\n onboarding_call_date AS customer_care_start_date\nFROM import_static_onboarding_call_pre_2023_08_27\nUNION ALL\nSELECT\n organization_key, \n product_family_group,\n customer_care_start_date\nFROM organization_customer_care_start_date\n),\n\nchurn_events_from_revenue_metrics AS (\nSELECT \n organization_key,\n product_family_group,\n IF(NVL(YEAR(subscription_end_date),2999) = 2999,LAST_DAY(month),subscription_end_date) AS churn_date\nFROM import_revenue_metrics_monthly\nWHERE is_lost = 1\nOR is_law_lost = 1\n),\n\ncustomer_care_start_end_date AS (\nSELECT \n customer_care.organization_key,\n customer_care.product_family_group,\n customer_care.customer_care_start_date,\n DATE(NVL(MIN(churn_events.churn_date),'2999-01-01')) AS customer_care_end_date\nFROM union_static_data as customer_care\nLEFT JOIN churn_events_from_revenue_metrics AS churn_events\n ON churn_events.organization_key = customer_care.organization_key\n AND churn_events.product_family_group = customer_care.product_family_group\n AND churn_events.churn_date >= customer_care.customer_care_start_date\nWHERE customer_care.product_family_group IS NOT NULL\nGROUP BY 1,2,3\n),\n\nremoving_overlapping_start_events AS (\nSELECT\n organization_key,\n product_family_group,\n customer_care_end_date,\n MIN(customer_care_start_date) AS customer_care_start_date\nFROM customer_care_start_end_date\nGROUP BY 1,2,3\n),\n\norganization_customer_care_over_time_res AS (\nSELECT\n organization_key,\n product_family_group,\n SMALLINT(1) AS is_customer_care, \n customer_care_start_date AS from_date,\n customer_care_end_date AS to_date,\n SMALLINT(IF(YEAR(customer_care_end_date) = 2999,1,0)) AS is_current,\n CURRENT_TIMESTAMP as dwh_updated_at\nFROM removing_overlapping_start_events\n)\n\nSELECT * \nFROM organization_customer_care_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__communication_organization_product_usage_revenue_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.sql", "unique_id": "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_organization_product_usage_revenue_monthly", "analytics___finance__communication_organization_product_usage_revenue_monthly"], "alias": "analytics___finance__communication_organization_product_usage_revenue_monthly", "checksum": {"name": "sha256", "checksum": "baf4537372bfc1af3ee143af001ab6bf8a3b2a5ee59244e95d4024fc55072891"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Aggragated Table to calculate sms and email recognized revenue from usage after deducting free credits.\nAggregated from analytics___finance__communication_store_product_usage_revenue_monthly.\nContains SMS and Email calculation.\nGranularity: month | organization | product_family\n\nIn the link below you can find an illustration of the usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "columns": {"month": {"name": "month", "description": "aggregation month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "PK: analytics___platform__organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "SMS | Email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_recognized_usage_in_usd": {"name": "product_recognized_usage_in_usd", "description": "product recognized usage after free credit deducation (cannot be < 0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_usage_in_usd": {"name": "product_usage_in_usd", "description": "usage before free credit deducation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_usage_precent": {"name": "product_usage_precent", "description": "product usage/total month store usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "net_usage": {"name": "net_usage", "description": "usage_sum - greatest(free_credit_sum,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "net_cumulative_usage": {"name": "net_cumulative_usage", "description": "cumulative_usage - cumulative_free_credit", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_credit_sum": {"name": "free_credit_sum", "description": "free credit given this month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "usage_sum": {"name": "usage_sum", "description": "usage from sms and email this month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cumulative_usage": {"name": "cumulative_usage", "description": "total (cumulative) usage from sms and email until this month (including)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cumulative_free_credit": {"name": "cumulative_free_credit", "description": "total (cumulative) free credits given until this month (including)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free_credit": {"name": "is_free_credit", "description": "indicator = 1 when free credits were given this month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_usage": {"name": "is_usage", "description": "indicator = 1 if charge is not free credits", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_self_service": {"name": "is_self_service", "description": "Indicates if the plan is self service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "Indicates if the plan is free (of SaaS fees) plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "Indicates if the plan is full service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082636.3836157, "relation_name": "dev_dkruh1.analytics___finance__communication_organization_product_usage_revenue_monthly", "raw_code": "-- Import --\n\nWITH import_store_product_usage_monthly AS (\nSELECT * FROM {{ ref('analytics___finance__communication_store_product_usage_revenue_monthly') }}\n),\n\nimport_organization_plan_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_plan_monthly') }}\n),\n\n-- Logic --\n\ncommunication_organization_product_usage_revenue_monthly AS (\nSELECT \n store_usage.month,\n store_usage.organization_key,\n store_usage.product_family,\n NVL(org_plan.closing_plan_name,org_plan.opening_plan_name) AS plan_name,\n SUM(store_usage.product_recognized_usage_in_usd) AS product_recognized_usage_in_usd,\n SUM(store_usage.product_usage_in_usd) AS product_usage_in_usd,\n SUM(store_usage.product_usage_precent) AS product_usage_precent,\n SUM(store_usage.net_usage) AS net_usage,\n SUM(store_usage.net_cumulative_usage) AS net_cumulative_usage,\n SUM(store_usage.free_credit_sum) AS free_credit_sum,\n SUM(store_usage.usage_sum) AS usage_sum,\n SUM(store_usage.cumulative_usage) AS cumulative_usage,\n SUM(store_usage.cumulative_free_credit) AS cumulative_free_credit,\n MAX(store_usage.is_sms) AS is_sms,\n MAX(store_usage.is_email) AS is_email,\n MAX(store_usage.is_free_credit) AS is_free_credit,\n MAX(store_usage.is_usage) AS is_usage,\n SMALLINT(MIN(COALESCE(org_plan.closing_is_self_service,org_plan.opening_is_self_service,1))) AS is_self_service,\n SMALLINT(MIN(NVL(org_plan.closing_is_free,org_plan.opening_is_free))) AS is_free,\n SMALLINT(MAX(COALESCE(org_plan.closing_is_full_service,org_plan.opening_is_full_service,0))) AS is_full_service,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_store_product_usage_monthly AS store_usage\nLEFT JOIN import_organization_plan_monthly AS org_plan \nON store_usage.organization_key = org_plan.organization_key\n AND store_usage.product_family = org_plan.product_family\n AND store_usage.month = org_plan.month\nWHERE store_usage.organization_key IS NOT NULL\nGROUP BY 1,2,3,4\n)\n\nSELECT *\nFROM communication_organization_product_usage_revenue_monthly", "language": "sql", "refs": [{"name": "analytics___finance__communication_store_product_usage_revenue_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly", "model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_store_product_usage_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___finance__communication_store_product_usage_revenue_monthly\n),\n\nimport_organization_plan_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_plan_monthly\n),\n\n-- Logic --\n\ncommunication_organization_product_usage_revenue_monthly AS (\nSELECT \n store_usage.month,\n store_usage.organization_key,\n store_usage.product_family,\n NVL(org_plan.closing_plan_name,org_plan.opening_plan_name) AS plan_name,\n SUM(store_usage.product_recognized_usage_in_usd) AS product_recognized_usage_in_usd,\n SUM(store_usage.product_usage_in_usd) AS product_usage_in_usd,\n SUM(store_usage.product_usage_precent) AS product_usage_precent,\n SUM(store_usage.net_usage) AS net_usage,\n SUM(store_usage.net_cumulative_usage) AS net_cumulative_usage,\n SUM(store_usage.free_credit_sum) AS free_credit_sum,\n SUM(store_usage.usage_sum) AS usage_sum,\n SUM(store_usage.cumulative_usage) AS cumulative_usage,\n SUM(store_usage.cumulative_free_credit) AS cumulative_free_credit,\n MAX(store_usage.is_sms) AS is_sms,\n MAX(store_usage.is_email) AS is_email,\n MAX(store_usage.is_free_credit) AS is_free_credit,\n MAX(store_usage.is_usage) AS is_usage,\n SMALLINT(MIN(COALESCE(org_plan.closing_is_self_service,org_plan.opening_is_self_service,1))) AS is_self_service,\n SMALLINT(MIN(NVL(org_plan.closing_is_free,org_plan.opening_is_free))) AS is_free,\n SMALLINT(MAX(COALESCE(org_plan.closing_is_full_service,org_plan.opening_is_full_service,0))) AS is_full_service,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_store_product_usage_monthly AS store_usage\nLEFT JOIN import_organization_plan_monthly AS org_plan \nON store_usage.organization_key = org_plan.organization_key\n AND store_usage.product_family = org_plan.product_family\n AND store_usage.month = org_plan.month\nWHERE store_usage.organization_key IS NOT NULL\nGROUP BY 1,2,3,4\n)\n\nSELECT *\nFROM communication_organization_product_usage_revenue_monthly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__communication_store_product_usage_revenue_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.sql", "unique_id": "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_store_product_usage_revenue_monthly", "analytics___finance__communication_store_product_usage_revenue_monthly"], "alias": "analytics___finance__communication_store_product_usage_revenue_monthly", "checksum": {"name": "sha256", "checksum": "3200797f65293a1621ef6c12052845510afd7a2cfcabc9795b3bfcefe4bba7d3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Aggragated Table to calculate sms and email recognized revenue from usage after deducting free credits.\nContains SMS and Email calculation.\nGranularity: month | app_key | product_family\n\nIn the link below you can find an illustration of the usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "columns": {"month": {"name": "month", "description": "aggregation month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "SMS | Email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_recognized_usage_in_usd": {"name": "product_recognized_usage_in_usd", "description": "product recognized usage after free credit deducation (cannot be < 0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_usage_in_usd": {"name": "product_usage_in_usd", "description": "usage before free credit deducation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_usage_precent": {"name": "product_usage_precent", "description": "product usage/total month store usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "net_usage": {"name": "net_usage", "description": "usage_sum - greatest(free_credit_sum,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "net_cumulative_usage": {"name": "net_cumulative_usage", "description": "cumulative_usage - cumulative_free_credit", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_credit_sum": {"name": "free_credit_sum", "description": "free credit given this month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "usage_sum": {"name": "usage_sum", "description": "usage from sms and email this month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cumulative_usage": {"name": "cumulative_usage", "description": "total (cumulative) usage from sms and email until this month (including)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cumulative_free_credit": {"name": "cumulative_free_credit", "description": "total (cumulative) free credits given until this month (including)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free_credit": {"name": "is_free_credit", "description": "indicator = 1 when free credits were given this month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_usage": {"name": "is_usage", "description": "indicator = 1 if charge is not free credits", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082636.4400265, "relation_name": "dev_dkruh1.analytics___finance__communication_store_product_usage_revenue_monthly", "raw_code": "-- Import --\n\nWITH import_api_calls AS (\nSELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\n), \n\nimport_free_credit AS (\nSELECT * FROM {{ ref('analytics___sms__free_credit_details') }}\n), \n\nimport_email_charge AS (\nSELECT * FROM {{ ref('analytics___sms_stg__email_charge') }}\n), \n\nimport_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n), \n\n-- Logic --\n\nsms_charge_monthly AS (\nSELECT\n sms_user_id,\n TRUNC(created_date, 'MM') AS month,\n SUM(price_billed_in_usd) AS charge\nFROM import_api_calls\nWHERE price_billed_in_usd > 0\nGROUP BY 1,2\n),\n\nfree_credits_monthly AS (\nSELECT\n sms_user_id,\n TRUNC(credit_created_at, 'MM') AS month,\n SUM(free_credit_amount) AS charge\nFROM import_free_credit\nGROUP BY 1,2\n),\n\nemail_charge_monthly AS (\nSELECT\n sms_user_id,\n TRUNC(created_date,'MM') AS month,\n SUM(charge_in_usd * IF(is_refund = 1,-1,1)) AS charge\nFROM import_email_charge\nGROUP BY 1,2\n),\n\nusage_charges_and_free_credits AS (\nSELECT \n sms_user_id,\n month,\n charge,\n 1 AS is_sms,\n 0 AS is_email,\n 0 AS is_free_credit,\n 1 AS is_usage\nFROM sms_charge_monthly\nUNION ALL\nSELECT \n sms_user_id,\n month,\n charge,\n 0 AS is_sms,\n 0 AS is_email,\n 1 AS is_free_credit,\n 0 AS is_usage\nFROM free_credits_monthly\nUNION ALL\nSELECT \n sms_user_id,\n month,\n charge,\n 0 AS is_sms,\n 1 AS is_email,\n 0 AS is_free_credit,\n 1 AS is_usage\nFROM email_charge_monthly\n),\n\nuser_usage_free_credits_monthly AS (\nSELECT \n sms_user_id,\n month,\n SUM(IF(is_free_credit = 1,NVL(charge, 0),0)) AS free_credit_sum,\n SUM(IF(is_usage = 1,NVL(charge, 0),0)) AS usage_sum,\n SUM(IF(is_usage = 1 AND is_email = 1,NVL(charge, 0),0)) AS email_usage_sum,\n SUM(IF(is_usage = 1 AND is_sms = 1,NVL(charge, 0),0)) AS sms_usage_sum,\n MAX(is_sms) AS is_sms,\n MAX(is_email) AS is_email,\n MAX(is_free_credit) AS is_free_credit,\n MAX(is_usage) AS is_usage\nFROM usage_charges_and_free_credits\nGROUP BY 1,2\n),\n\ncumulative_usage_metrics AS (\nSELECT\n sms_user_id,\n month,\n usage_sum - GREATEST(free_credit_sum,0) AS net_usage,\n free_credit_sum,\n usage_sum,\n email_usage_sum,\n NVL(email_usage_sum/usage_sum,0) AS email_usage_precent,\n sms_usage_sum,\n NVL(sms_usage_sum/usage_sum,0) AS sms_usage_precent,\n is_free_credit,\n is_usage,\n is_sms,\n is_email,\n SUM(usage_sum) OVER(PARTITION BY sms_user_id ORDER BY month ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_usage,\n SUM(free_credit_sum) OVER(PARTITION BY sms_user_id ORDER BY month ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_free_credit\nFROM user_usage_free_credits_monthly\n),\n\nuser_recognized_usage AS (\nSELECT\n sms_user_id,\n month,\n IF(cumulative_usage - cumulative_free_credit <= 0 OR net_usage <= 0,0,\n LEAST(cumulative_usage - cumulative_free_credit, net_usage)) AS recognized_usage,\n net_usage,\n cumulative_usage - cumulative_free_credit AS net_cumulative_usage,\n free_credit_sum,\n usage_sum,\n cumulative_usage,\n cumulative_free_credit,\n email_usage_sum,\n email_usage_precent,\n sms_usage_sum,\n sms_usage_precent,\n is_free_credit,\n is_usage,\n is_sms,\n is_email\nFROM cumulative_usage_metrics\n),\n\nproduct_fields_recognized_usage_calc AS (\nSELECT\n sms_user_id,\n month,\n recognized_usage,\n net_usage,\n net_cumulative_usage,\n free_credit_sum,\n usage_sum,\n cumulative_usage,\n cumulative_free_credit,\n email_usage_sum,\n email_usage_precent,\n recognized_usage * email_usage_precent AS email_recognized_usage,\n sms_usage_sum,\n sms_usage_precent,\n recognized_usage * sms_usage_precent AS sms_recognized_usage,\n is_free_credit,\n is_usage,\n is_sms,\n is_email\nFROM user_recognized_usage\n),\n\nproduct_recognized_usage_union AS (\nSELECT\n sms_user_id,\n month,\n 'SMS' AS product_family,\n sms_recognized_usage AS product_recognized_usage_in_usd,\n sms_usage_sum AS product_usage_in_usd,\n sms_usage_precent AS product_usage_precent,\n net_usage,\n net_cumulative_usage,\n free_credit_sum,\n usage_sum,\n cumulative_usage,\n cumulative_free_credit,\n is_sms,\n 0 AS is_email,\n is_free_credit,\n is_usage\nFROM product_fields_recognized_usage_calc\nWHERE is_sms = 1\nUNION ALL\nSELECT\n sms_user_id,\n month,\n 'Email' AS product_family,\n email_recognized_usage AS product_recognized_usage_in_usd,\n email_usage_sum AS product_usage_in_usd,\n email_usage_precent AS product_usage_precent,\n net_usage,\n net_cumulative_usage,\n free_credit_sum,\n usage_sum,\n cumulative_usage,\n cumulative_free_credit,\n 0 AS is_sms,\n is_email,\n is_free_credit,\n is_usage\nFROM product_fields_recognized_usage_calc\nWHERE is_email = 1\n),\n\nstore_recognized_usage_monthly_res AS (\nSELECT\n usage.month,\n store.sms_user_id,\n store.app_key,\n store.organization_key,\n usage.product_family,\n usage.product_recognized_usage_in_usd,\n usage.product_usage_in_usd,\n usage.product_usage_precent,\n usage.net_usage,\n usage.net_cumulative_usage,\n usage.free_credit_sum,\n usage.usage_sum,\n usage.cumulative_usage,\n usage.cumulative_free_credit,\n SMALLINT(usage.is_sms) AS is_sms,\n SMALLINT(usage.is_email) AS is_email,\n SMALLINT(usage.is_free_credit) AS is_free_credit,\n SMALLINT(usage.is_usage) AS is_usage,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM product_recognized_usage_union AS usage\nINNER JOIN import_sms_store AS store\n ON usage.sms_user_id = store.sms_user_id \n)\n\nSELECT * \nFROM store_recognized_usage_monthly_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__api_calls", "package": null, "version": null}, {"name": "analytics___sms__free_credit_details", "package": null, "version": null}, {"name": "analytics___sms_stg__email_charge", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms__free_credit_details", "model.yoda.analytics___sms_stg__email_charge", "model.yoda.analytics___sms__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_api_calls AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\n), \n\nimport_free_credit AS (\nSELECT * FROM dev_dkruh1.analytics___sms__free_credit_details\n), \n\nimport_email_charge AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__email_charge\n), \n\nimport_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n), \n\n-- Logic --\n\nsms_charge_monthly AS (\nSELECT\n sms_user_id,\n TRUNC(created_date, 'MM') AS month,\n SUM(price_billed_in_usd) AS charge\nFROM import_api_calls\nWHERE price_billed_in_usd > 0\nGROUP BY 1,2\n),\n\nfree_credits_monthly AS (\nSELECT\n sms_user_id,\n TRUNC(credit_created_at, 'MM') AS month,\n SUM(free_credit_amount) AS charge\nFROM import_free_credit\nGROUP BY 1,2\n),\n\nemail_charge_monthly AS (\nSELECT\n sms_user_id,\n TRUNC(created_date,'MM') AS month,\n SUM(charge_in_usd * IF(is_refund = 1,-1,1)) AS charge\nFROM import_email_charge\nGROUP BY 1,2\n),\n\nusage_charges_and_free_credits AS (\nSELECT \n sms_user_id,\n month,\n charge,\n 1 AS is_sms,\n 0 AS is_email,\n 0 AS is_free_credit,\n 1 AS is_usage\nFROM sms_charge_monthly\nUNION ALL\nSELECT \n sms_user_id,\n month,\n charge,\n 0 AS is_sms,\n 0 AS is_email,\n 1 AS is_free_credit,\n 0 AS is_usage\nFROM free_credits_monthly\nUNION ALL\nSELECT \n sms_user_id,\n month,\n charge,\n 0 AS is_sms,\n 1 AS is_email,\n 0 AS is_free_credit,\n 1 AS is_usage\nFROM email_charge_monthly\n),\n\nuser_usage_free_credits_monthly AS (\nSELECT \n sms_user_id,\n month,\n SUM(IF(is_free_credit = 1,NVL(charge, 0),0)) AS free_credit_sum,\n SUM(IF(is_usage = 1,NVL(charge, 0),0)) AS usage_sum,\n SUM(IF(is_usage = 1 AND is_email = 1,NVL(charge, 0),0)) AS email_usage_sum,\n SUM(IF(is_usage = 1 AND is_sms = 1,NVL(charge, 0),0)) AS sms_usage_sum,\n MAX(is_sms) AS is_sms,\n MAX(is_email) AS is_email,\n MAX(is_free_credit) AS is_free_credit,\n MAX(is_usage) AS is_usage\nFROM usage_charges_and_free_credits\nGROUP BY 1,2\n),\n\ncumulative_usage_metrics AS (\nSELECT\n sms_user_id,\n month,\n usage_sum - GREATEST(free_credit_sum,0) AS net_usage,\n free_credit_sum,\n usage_sum,\n email_usage_sum,\n NVL(email_usage_sum/usage_sum,0) AS email_usage_precent,\n sms_usage_sum,\n NVL(sms_usage_sum/usage_sum,0) AS sms_usage_precent,\n is_free_credit,\n is_usage,\n is_sms,\n is_email,\n SUM(usage_sum) OVER(PARTITION BY sms_user_id ORDER BY month ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_usage,\n SUM(free_credit_sum) OVER(PARTITION BY sms_user_id ORDER BY month ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_free_credit\nFROM user_usage_free_credits_monthly\n),\n\nuser_recognized_usage AS (\nSELECT\n sms_user_id,\n month,\n IF(cumulative_usage - cumulative_free_credit <= 0 OR net_usage <= 0,0,\n LEAST(cumulative_usage - cumulative_free_credit, net_usage)) AS recognized_usage,\n net_usage,\n cumulative_usage - cumulative_free_credit AS net_cumulative_usage,\n free_credit_sum,\n usage_sum,\n cumulative_usage,\n cumulative_free_credit,\n email_usage_sum,\n email_usage_precent,\n sms_usage_sum,\n sms_usage_precent,\n is_free_credit,\n is_usage,\n is_sms,\n is_email\nFROM cumulative_usage_metrics\n),\n\nproduct_fields_recognized_usage_calc AS (\nSELECT\n sms_user_id,\n month,\n recognized_usage,\n net_usage,\n net_cumulative_usage,\n free_credit_sum,\n usage_sum,\n cumulative_usage,\n cumulative_free_credit,\n email_usage_sum,\n email_usage_precent,\n recognized_usage * email_usage_precent AS email_recognized_usage,\n sms_usage_sum,\n sms_usage_precent,\n recognized_usage * sms_usage_precent AS sms_recognized_usage,\n is_free_credit,\n is_usage,\n is_sms,\n is_email\nFROM user_recognized_usage\n),\n\nproduct_recognized_usage_union AS (\nSELECT\n sms_user_id,\n month,\n 'SMS' AS product_family,\n sms_recognized_usage AS product_recognized_usage_in_usd,\n sms_usage_sum AS product_usage_in_usd,\n sms_usage_precent AS product_usage_precent,\n net_usage,\n net_cumulative_usage,\n free_credit_sum,\n usage_sum,\n cumulative_usage,\n cumulative_free_credit,\n is_sms,\n 0 AS is_email,\n is_free_credit,\n is_usage\nFROM product_fields_recognized_usage_calc\nWHERE is_sms = 1\nUNION ALL\nSELECT\n sms_user_id,\n month,\n 'Email' AS product_family,\n email_recognized_usage AS product_recognized_usage_in_usd,\n email_usage_sum AS product_usage_in_usd,\n email_usage_precent AS product_usage_precent,\n net_usage,\n net_cumulative_usage,\n free_credit_sum,\n usage_sum,\n cumulative_usage,\n cumulative_free_credit,\n 0 AS is_sms,\n is_email,\n is_free_credit,\n is_usage\nFROM product_fields_recognized_usage_calc\nWHERE is_email = 1\n),\n\nstore_recognized_usage_monthly_res AS (\nSELECT\n usage.month,\n store.sms_user_id,\n store.app_key,\n store.organization_key,\n usage.product_family,\n usage.product_recognized_usage_in_usd,\n usage.product_usage_in_usd,\n usage.product_usage_precent,\n usage.net_usage,\n usage.net_cumulative_usage,\n usage.free_credit_sum,\n usage.usage_sum,\n usage.cumulative_usage,\n usage.cumulative_free_credit,\n SMALLINT(usage.is_sms) AS is_sms,\n SMALLINT(usage.is_email) AS is_email,\n SMALLINT(usage.is_free_credit) AS is_free_credit,\n SMALLINT(usage.is_usage) AS is_usage,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM product_recognized_usage_union AS usage\nINNER JOIN import_sms_store AS store\n ON usage.sms_user_id = store.sms_user_id \n)\n\nSELECT * \nFROM store_recognized_usage_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.sql", "unique_id": "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_mom_mrr_cycle_dashboard", "analytics___finance__organization_product_mom_mrr_cycle_dashboard"], "alias": "analytics___finance__organization_product_mom_mrr_cycle_dashboard", "checksum": {"name": "sha256", "checksum": "4a8edf8543dde675f4128cc5881ec48669ee9f38a1b70a3f325ffd7dfecb0e2e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK [month, organization_key, product_family_group] OR [organization_product_month_id]\n\nThis table contains all the relevant fields for the MoM MRR cycle dashboard.", "columns": {"organization_product_month_id": {"name": "organization_product_month_id", "description": "ID of the combination: [month, organization_key, product_family_group]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "PK 2/3\n\nThe unique identifier for each organization.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "PK 3/3\n\nContains 5 distinct values:\n 1. UGC (Including Reviews, VMS, Insights)\n 2. Loyalty\n 3. SMS\n 4. Email\n 5. Subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "PK 1/3\n\nThe month associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_name": {"name": "organization_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_name": {"name": "opening_plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name": {"name": "closing_plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_group": {"name": "opening_plan_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_group": {"name": "closing_plan_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initial_sales_segment": {"name": "initial_sales_segment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initial_sales_segment_group": {"name": "initial_sales_segment_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_name": {"name": "country_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_shopify": {"name": "is_shopify", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_start_date": {"name": "subscription_start_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_end_date": {"name": "subscription_end_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opening_mrr_in_usd": {"name": "opening_mrr_in_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_saas_mrr_in_usd": {"name": "opening_saas_mrr_in_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_mrr_in_usd": {"name": "opening_usage_mrr_in_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "consolidated_new_saas_mrr": {"name": "consolidated_new_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_saas_mrr": {"name": "new_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "winback_saas_mrr": {"name": "winback_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "law_lost_saas_mrr": {"name": "law_lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cross_sell_saas_mrr": {"name": "cross_sell_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_saas_mrr": {"name": "increased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_same_service_delta_original_saas_mrr": {"name": "increased_same_service_delta_original_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_service_change_delta_original_saas_mrr": {"name": "increased_service_change_delta_original_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_saas_delta_free_month_mrr_impact": {"name": "increased_saas_delta_free_month_mrr_impact", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_saas_mrr": {"name": "decreased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_same_service_delta_original_saas_mrr": {"name": "decreased_same_service_delta_original_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_service_change_delta_original_saas_mrr": {"name": "decreased_service_change_delta_original_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_saas_delta_free_month_mrr_impact": {"name": "decreased_saas_delta_free_month_mrr_impact", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_saas_mrr": {"name": "lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "in_term_lost_saas_mrr": {"name": "in_term_lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end_term_lost_saas_mrr": {"name": "end_term_lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_usage_mrr": {"name": "delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "overages_delta_usage_mrr": {"name": "overages_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "positive_overages_delta_usage_mrr": {"name": "positive_overages_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "negative_overages_delta_usage_mrr": {"name": "negative_overages_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "usage_products_delta_usage_mrr": {"name": "usage_products_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communications_delta_l12m_usage": {"name": "communications_delta_l12m_usage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communications_delta_l12m_utilized_free_credits": {"name": "communications_delta_l12m_utilized_free_credits", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_delta_usage_mrr": {"name": "subscriptions_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_mrr_in_usd": {"name": "closing_mrr_in_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_saas_mrr_in_usd": {"name": "closing_saas_mrr_in_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_mrr_in_usd": {"name": "closing_usage_mrr_in_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_opening_mrr": {"name": "full_service_opening_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_opening_saas_mrr": {"name": "full_service_opening_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_opening_usage_mrr": {"name": "full_service_opening_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_migration_mrr": {"name": "full_service_migration_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_migration_saas_mrr": {"name": "full_service_migration_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_migration_usage_mrr": {"name": "full_service_migration_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_total_new_saas_mrr": {"name": "full_service_total_new_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_new_saas_mrr": {"name": "full_service_new_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_winback_saas_mrr": {"name": "full_service_winback_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_law_lost_saas_mrr": {"name": "full_service_law_lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_cross_sell_saas_mrr": {"name": "full_service_cross_sell_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_increased_saas_mrr": {"name": "full_service_increased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "remain_full_service_increased_saas_mrr": {"name": "remain_full_service_increased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_increased_saas_mrr": {"name": "upgrade_to_full_service_increased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_increased_saas_delta_free_month_mrr_impact": {"name": "full_service_increased_saas_delta_free_month_mrr_impact", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_decreased_saas_mrr": {"name": "full_service_decreased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "remain_full_service_decreased_saas_mrr": {"name": "remain_full_service_decreased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_decreased_saas_mrr": {"name": "upgrade_to_full_service_decreased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_decreased_saas_delta_free_month_mrr_impact": {"name": "full_service_decreased_saas_delta_free_month_mrr_impact", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_lost_saas_mrr": {"name": "full_service_lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_in_term_lost_saas_mrr": {"name": "full_service_in_term_lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_end_term_lost_saas_mrr": {"name": "full_service_end_term_lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_delta_usage_mrr": {"name": "full_service_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_overages_delta_usage_mrr": {"name": "full_service_overages_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_positive_overages_delta_usage_mrr": {"name": "full_service_positive_overages_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_negative_overages_delta_usage_mrr": {"name": "full_service_negative_overages_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_usage_products_delta_usage_mrr": {"name": "full_service_usage_products_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_communications_delta_usage_mrr": {"name": "full_service_communications_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_communications_delta_l12m_usage": {"name": "full_service_communications_delta_l12m_usage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_communications_delta_l12m_utilized_free_credits": {"name": "full_service_communications_delta_l12m_utilized_free_credits", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_subscriptions_delta_usage_mrr": {"name": "full_service_subscriptions_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_closing_mrr": {"name": "full_service_closing_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_closing_saas_mrr": {"name": "full_service_closing_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_service_closing_usage_mrr": {"name": "full_service_closing_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_opening_mrr": {"name": "self_service_opening_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_opening_saas_mrr": {"name": "self_service_opening_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_opening_usage_mrr": {"name": "self_service_opening_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_migration_mrr": {"name": "self_service_migration_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_migration_saas_mrr": {"name": "self_service_migration_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_migration_usage_mrr": {"name": "self_service_migration_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_total_new_saas_mrr": {"name": "self_service_total_new_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_new_saas_mrr": {"name": "self_service_new_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_winback_saas_mrr": {"name": "self_service_winback_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_law_lost_saas_mrr": {"name": "self_service_law_lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_cross_sell_saas_mrr": {"name": "self_service_cross_sell_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_increased_saas_mrr": {"name": "self_service_increased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "remain_self_service_increased_saas_mrr": {"name": "remain_self_service_increased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_self_service_increased_saas_mrr": {"name": "upgrade_to_self_service_increased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_increased_saas_delta_free_month_mrr_impact": {"name": "self_service_increased_saas_delta_free_month_mrr_impact", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_decreased_saas_mrr": {"name": "self_service_decreased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "remain_self_service_decreased_saas_mrr": {"name": "remain_self_service_decreased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_self_service_decreased_saas_mrr": {"name": "upgrade_to_self_service_decreased_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_decreased_saas_delta_free_month_mrr_impact": {"name": "self_service_decreased_saas_delta_free_month_mrr_impact", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_lost_saas_mrr": {"name": "self_service_lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_in_term_lost_saas_mrr": {"name": "self_service_in_term_lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_end_term_lost_saas_mrr": {"name": "self_service_end_term_lost_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_delta_usage_mrr": {"name": "self_service_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_overages_delta_usage_mrr": {"name": "self_service_overages_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_positive_overages_delta_usage_mrr": {"name": "self_service_positive_overages_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_negative_overages_delta_usage_mrr": {"name": "self_service_negative_overages_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_usage_products_delta_usage_mrr": {"name": "self_service_usage_products_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_communications_delta_usage_mrr": {"name": "self_service_communications_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_communications_delta_l12m_usage": {"name": "self_service_communications_delta_l12m_usage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_communications_delta_l12m_utilized_free_credits": {"name": "self_service_communications_delta_l12m_utilized_free_credits", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_subscriptions_delta_usage_mrr": {"name": "self_service_subscriptions_delta_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_closing_mrr": {"name": "self_service_closing_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_closing_saas_mrr": {"name": "self_service_closing_saas_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "self_service_closing_usage_mrr": {"name": "self_service_closing_usage_mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_is_paid_product": {"name": "opening_is_paid_product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_paid_product": {"name": "closing_is_paid_product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_self_service": {"name": "opening_is_self_service", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_self_service": {"name": "closing_is_self_service", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_full_service": {"name": "opening_is_full_service", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_full_service": {"name": "closing_is_full_service", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_ht_self_service": {"name": "opening_is_ht_self_service", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_is_ht_self_service": {"name": "closing_is_ht_self_service", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_ht_self_service": {"name": "is_ht_self_service", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_annual_billing": {"name": "opening_is_annual_billing", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_annual_billing": {"name": "closing_is_annual_billing", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_paying_organization": {"name": "opening_is_paying_organization", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_paying_organization": {"name": "closing_is_paying_organization", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_self_service_organization": {"name": "opening_is_self_service_organization", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_self_service_organization": {"name": "closing_is_self_service_organization", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_full_service_organization": {"name": "opening_is_full_service_organization", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_full_service_organization": {"name": "closing_is_full_service_organization", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_fs_mrr_cycle": {"name": "is_fs_mrr_cycle", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ss_mrr_cycle": {"name": "is_ss_mrr_cycle", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082636.5844276, "relation_name": "dev_dkruh1.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "raw_code": "{{ config( materialized = 'view' ) }}\n\n-- Import --\n\nWITH import_organization_product_revenue_metrics_monthly AS (\nSELECT *\nFROM {{ ref('analytics___finance__organization_product_revenue_metrics_monthly') }}\n),\n\nimport_organization_first_ht_opportunity AS (\nSELECT * FROM {{ ref('analytics___cs__organization_first_ht_opportunity') }}\n),\n\nimport_organization AS (\nSELECT * FROM {{ ref('analytics___platform__organization') }}\n),\n\nimport_organization_name AS (\nSELECT * FROM {{ ref('analytics___platform__organization_name') }}\n),\n\nimport_organization_product_segment_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_product_segment_monthly') }}\n),\n\n-- Logic --\norganization_product_mom_mrr_cycle_dashboard AS (\nSELECT\n rev.organization_product_month_id,\n rev.organization_key,\n rev.product_family_group,\n rev.month,\n org_name.organization_name,\n rev.opening_plan_name,\n rev.closing_plan_name,\n rev.opening_plan_group,\n rev.closing_plan_group,\n first_ht_opp.order_sales_segment AS initial_sales_segment,\n first_ht_opp.order_sales_segment_group AS initial_sales_segment_group,\n org.platform_name,\n org.country_name,\n org.industry,\n IF(org.is_shopify = 1,'Shopify','Non-Shopify') AS is_shopify,\n rev.subscription_start_date,\n rev.subscription_end_date,\n -- Total MRR Cycle --\n rev.opening_mrr_in_usd,\n rev.opening_saas_mrr_in_usd,\n rev.opening_usage_mrr_in_usd,\n rev.consolidated_new_saas_mrr,\n rev.new_saas_mrr,\n rev.winback_saas_mrr,\n rev.law_lost_saas_mrr,\n rev.cross_sell_saas_mrr,\n rev.increased_saas_mrr,\n rev.increased_same_service_delta_original_saas_mrr,\n rev.increased_service_change_delta_original_saas_mrr,\n rev.increased_saas_delta_free_month_mrr_impact,\n rev.decreased_saas_mrr,\n rev.decreased_same_service_delta_original_saas_mrr,\n rev.decreased_service_change_delta_original_saas_mrr,\n rev.decreased_saas_delta_free_month_mrr_impact,\n rev.lost_saas_mrr,\n rev.in_term_lost_saas_mrr,\n rev.end_term_lost_saas_mrr,\n rev.delta_usage_mrr,\n rev.overages_delta_usage_mrr,\n rev.positive_overages_delta_usage_mrr,\n rev.negative_overages_delta_usage_mrr,\n rev.usage_products_delta_usage_mrr,\n rev.communications_delta_l12m_usage,\n rev.communications_delta_l12m_utilized_free_credits,\n rev.subscriptions_delta_usage_mrr,\n rev.closing_mrr_in_usd,\n rev.closing_saas_mrr_in_usd,\n rev.closing_usage_mrr_in_usd,\n -- Full-Service MRR Cycle --\n rev.opening_is_full_service*rev.opening_mrr_in_usd AS full_service_opening_mrr,\n rev.opening_is_full_service*rev.opening_saas_mrr_in_usd AS full_service_opening_saas_mrr,\n rev.opening_is_full_service*rev.opening_usage_mrr_in_usd AS full_service_opening_usage_mrr,\n rev.fs_migration_mrr AS full_service_migration_mrr,\n rev.fs_migration_saas_mrr AS full_service_migration_saas_mrr,\n rev.fs_migration_usage_mrr AS full_service_migration_usage_mrr,\n NVL(rev.closing_is_full_service,0)*(rev.new_saas_mrr+rev.winback_saas_mrr) \n +rev.is_fs_mrr_cycle*rev.law_lost_saas_mrr AS full_service_total_new_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.new_saas_mrr AS full_service_new_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.winback_saas_mrr AS full_service_winback_saas_mrr,\n rev.is_fs_mrr_cycle*rev.law_lost_saas_mrr AS full_service_law_lost_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.cross_sell_saas_mrr AS full_service_cross_sell_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.increased_saas_mrr AS full_service_increased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.increased_same_service_delta_original_saas_mrr AS remain_full_service_increased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.increased_service_change_delta_original_saas_mrr AS upgrade_to_full_service_increased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.increased_saas_delta_free_month_mrr_impact AS full_service_increased_saas_delta_free_month_mrr_impact,\n NVL(rev.closing_is_full_service,0)*rev.decreased_saas_mrr AS full_service_decreased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.decreased_same_service_delta_original_saas_mrr AS remain_full_service_decreased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.decreased_service_change_delta_original_saas_mrr AS upgrade_to_full_service_decreased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.decreased_saas_delta_free_month_mrr_impact AS full_service_decreased_saas_delta_free_month_mrr_impact,\n rev.is_fs_mrr_cycle*rev.lost_saas_mrr AS full_service_lost_saas_mrr,\n rev.is_fs_mrr_cycle*rev.in_term_lost_saas_mrr AS full_service_in_term_lost_saas_mrr,\n rev.is_fs_mrr_cycle*rev.end_term_lost_saas_mrr AS full_service_end_term_lost_saas_mrr,\n rev.fs_delta_usage_mrr AS full_service_delta_usage_mrr,\n rev.fs_overages_delta_usage_mrr AS full_service_overages_delta_usage_mrr,\n NVL(rev.closing_is_full_service,0)*rev.positive_overages_delta_usage_mrr AS full_service_positive_overages_delta_usage_mrr,\n rev.fs_negative_overages_delta_usage_mrr AS full_service_negative_overages_delta_usage_mrr,\n rev.fs_usage_products_delta_usage_mrr AS full_service_usage_products_delta_usage_mrr,\n rev.fs_communications_delta_usage_mrr AS full_service_communications_delta_usage_mrr,\n rev.fs_communications_delta_l12m_usage AS full_service_communications_delta_l12m_usage,\n rev.fs_communications_delta_l12m_utilized_free_credits AS full_service_communications_delta_l12m_utilized_free_credits,\n rev.fs_subscriptions_delta_usage_mrr AS full_service_subscriptions_delta_usage_mrr,\n rev.closing_is_full_service*rev.closing_mrr_in_usd AS full_service_closing_mrr,\n rev.closing_is_full_service*rev.closing_saas_mrr_in_usd AS full_service_closing_saas_mrr,\n rev.closing_is_full_service*rev.closing_usage_mrr_in_usd AS full_service_closing_usage_mrr,\n -- Self-Service MRR Cycle --\n rev.opening_is_self_service*rev.opening_mrr_in_usd AS self_service_opening_mrr,\n rev.opening_is_self_service*rev.opening_saas_mrr_in_usd AS self_service_opening_saas_mrr,\n rev.opening_is_self_service*rev.opening_usage_mrr_in_usd AS self_service_opening_usage_mrr,\n rev.ss_migration_mrr AS self_service_migration_mrr,\n rev.ss_migration_saas_mrr AS self_service_migration_saas_mrr,\n rev.ss_migration_usage_mrr AS self_service_migration_usage_mrr,\n NVL(rev.closing_is_self_service,0)*(rev.new_saas_mrr+rev.winback_saas_mrr) \n + rev.is_ss_mrr_cycle*rev.law_lost_saas_mrr AS self_service_total_new_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.new_saas_mrr AS self_service_new_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.winback_saas_mrr AS self_service_winback_saas_mrr,\n rev.is_ss_mrr_cycle*rev.law_lost_saas_mrr AS self_service_law_lost_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.cross_sell_saas_mrr AS self_service_cross_sell_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.increased_saas_mrr AS self_service_increased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.increased_same_service_delta_original_saas_mrr AS remain_self_service_increased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.increased_service_change_delta_original_saas_mrr AS upgrade_to_self_service_increased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.increased_saas_delta_free_month_mrr_impact AS self_service_increased_saas_delta_free_month_mrr_impact,\n NVL(rev.closing_is_self_service,0)*rev.decreased_saas_mrr AS self_service_decreased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.decreased_same_service_delta_original_saas_mrr AS remain_self_service_decreased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.decreased_service_change_delta_original_saas_mrr AS upgrade_to_self_service_decreased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.decreased_saas_delta_free_month_mrr_impact AS self_service_decreased_saas_delta_free_month_mrr_impact,\n rev.is_ss_mrr_cycle*rev.lost_saas_mrr AS self_service_lost_saas_mrr,\n rev.is_ss_mrr_cycle*rev.in_term_lost_saas_mrr AS self_service_in_term_lost_saas_mrr,\n rev.is_ss_mrr_cycle*rev.end_term_lost_saas_mrr AS self_service_end_term_lost_saas_mrr,\n ss_delta_usage_mrr AS self_service_delta_usage_mrr,\n ss_overages_delta_usage_mrr AS self_service_overages_delta_usage_mrr,\n NVL(rev.closing_is_self_service,0)*rev.positive_overages_delta_usage_mrr AS self_service_positive_overages_delta_usage_mrr,\n rev.ss_negative_overages_delta_usage_mrr AS self_service_negative_overages_delta_usage_mrr,\n rev.ss_usage_products_delta_usage_mrr AS self_service_usage_products_delta_usage_mrr,\n rev.ss_communications_delta_usage_mrr AS self_service_communications_delta_usage_mrr,\n rev.ss_communications_delta_l12m_usage AS self_service_communications_delta_l12m_usage,\n rev.ss_communications_delta_l12m_utilized_free_credits AS self_service_communications_delta_l12m_utilized_free_credits,\n rev.ss_subscriptions_delta_usage_mrr AS self_service_subscriptions_delta_usage_mrr,\n rev.closing_is_self_service*rev.closing_mrr_in_usd AS self_service_closing_mrr,\n rev.closing_is_self_service*rev.closing_saas_mrr_in_usd AS self_service_closing_saas_mrr,\n rev.closing_is_self_service*rev.closing_usage_mrr_in_usd AS self_service_closing_usage_mrr, \n rev.opening_is_paid_product,\n rev.closing_is_paid_product,\n rev.opening_is_self_service,\n rev.closing_is_self_service,\n rev.opening_is_full_service,\n rev.closing_is_full_service,\n seg.opening_is_ht_self_service,\n seg.is_ht_self_service AS closing_is_ht_self_service,\n SMALLINT(NVL(seg.opening_is_ht_self_service,0)+(NVL(seg.is_ht_self_service,0)) > 0) AS is_ht_self_service,\n rev.opening_is_annual_billing,\n rev.closing_is_annual_billing,\n rev.opening_is_paying_organization,\n rev.closing_is_paying_organization,\n rev.opening_is_self_service_organization,\n rev.closing_is_self_service_organization,\n rev.opening_is_full_service_organization,\n rev.closing_is_full_service_organization,\n rev.is_fs_mrr_cycle,\n rev.is_ss_mrr_cycle,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_organization_product_revenue_metrics_monthly AS rev\nLEFT JOIN import_organization_first_ht_opportunity AS first_ht_opp\n ON rev.organization_key = first_ht_opp.organization_key\nLEFT JOIN import_organization AS org\n ON rev.organization_key = org.organization_key\nLEFT JOIN import_organization_name AS org_name\n ON rev.organization_key = org_name.organization_key\nLEFT JOIN import_organization_product_segment_monthly AS seg\n ON rev.organization_product_month_id = seg.organization_product_month_id\n)\n\nSELECT *\nFROM organization_product_mom_mrr_cycle_dashboard", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_metrics_monthly", "package": null, "version": null}, {"name": "analytics___cs__organization_first_ht_opportunity", "package": null, "version": null}, {"name": "analytics___platform__organization", "package": null, "version": null}, {"name": "analytics___platform__organization_name", "package": null, "version": null}, {"name": "analytics___platform__organization_product_segment_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_metrics_monthly", "model.yoda.analytics___cs__organization_first_ht_opportunity", "model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__organization_name", "model.yoda.analytics___platform__organization_product_segment_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_organization_product_revenue_metrics_monthly AS (\nSELECT *\nFROM dev_dkruh1.analytics___finance__organization_product_revenue_metrics_monthly\n),\n\nimport_organization_first_ht_opportunity AS (\nSELECT * FROM dev_dkruh1.analytics___cs__organization_first_ht_opportunity\n),\n\nimport_organization AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization\n),\n\nimport_organization_name AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_name\n),\n\nimport_organization_product_segment_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_product_segment_monthly\n),\n\n-- Logic --\norganization_product_mom_mrr_cycle_dashboard AS (\nSELECT\n rev.organization_product_month_id,\n rev.organization_key,\n rev.product_family_group,\n rev.month,\n org_name.organization_name,\n rev.opening_plan_name,\n rev.closing_plan_name,\n rev.opening_plan_group,\n rev.closing_plan_group,\n first_ht_opp.order_sales_segment AS initial_sales_segment,\n first_ht_opp.order_sales_segment_group AS initial_sales_segment_group,\n org.platform_name,\n org.country_name,\n org.industry,\n IF(org.is_shopify = 1,'Shopify','Non-Shopify') AS is_shopify,\n rev.subscription_start_date,\n rev.subscription_end_date,\n -- Total MRR Cycle --\n rev.opening_mrr_in_usd,\n rev.opening_saas_mrr_in_usd,\n rev.opening_usage_mrr_in_usd,\n rev.consolidated_new_saas_mrr,\n rev.new_saas_mrr,\n rev.winback_saas_mrr,\n rev.law_lost_saas_mrr,\n rev.cross_sell_saas_mrr,\n rev.increased_saas_mrr,\n rev.increased_same_service_delta_original_saas_mrr,\n rev.increased_service_change_delta_original_saas_mrr,\n rev.increased_saas_delta_free_month_mrr_impact,\n rev.decreased_saas_mrr,\n rev.decreased_same_service_delta_original_saas_mrr,\n rev.decreased_service_change_delta_original_saas_mrr,\n rev.decreased_saas_delta_free_month_mrr_impact,\n rev.lost_saas_mrr,\n rev.in_term_lost_saas_mrr,\n rev.end_term_lost_saas_mrr,\n rev.delta_usage_mrr,\n rev.overages_delta_usage_mrr,\n rev.positive_overages_delta_usage_mrr,\n rev.negative_overages_delta_usage_mrr,\n rev.usage_products_delta_usage_mrr,\n rev.communications_delta_l12m_usage,\n rev.communications_delta_l12m_utilized_free_credits,\n rev.subscriptions_delta_usage_mrr,\n rev.closing_mrr_in_usd,\n rev.closing_saas_mrr_in_usd,\n rev.closing_usage_mrr_in_usd,\n -- Full-Service MRR Cycle --\n rev.opening_is_full_service*rev.opening_mrr_in_usd AS full_service_opening_mrr,\n rev.opening_is_full_service*rev.opening_saas_mrr_in_usd AS full_service_opening_saas_mrr,\n rev.opening_is_full_service*rev.opening_usage_mrr_in_usd AS full_service_opening_usage_mrr,\n rev.fs_migration_mrr AS full_service_migration_mrr,\n rev.fs_migration_saas_mrr AS full_service_migration_saas_mrr,\n rev.fs_migration_usage_mrr AS full_service_migration_usage_mrr,\n NVL(rev.closing_is_full_service,0)*(rev.new_saas_mrr+rev.winback_saas_mrr) \n +rev.is_fs_mrr_cycle*rev.law_lost_saas_mrr AS full_service_total_new_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.new_saas_mrr AS full_service_new_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.winback_saas_mrr AS full_service_winback_saas_mrr,\n rev.is_fs_mrr_cycle*rev.law_lost_saas_mrr AS full_service_law_lost_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.cross_sell_saas_mrr AS full_service_cross_sell_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.increased_saas_mrr AS full_service_increased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.increased_same_service_delta_original_saas_mrr AS remain_full_service_increased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.increased_service_change_delta_original_saas_mrr AS upgrade_to_full_service_increased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.increased_saas_delta_free_month_mrr_impact AS full_service_increased_saas_delta_free_month_mrr_impact,\n NVL(rev.closing_is_full_service,0)*rev.decreased_saas_mrr AS full_service_decreased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.decreased_same_service_delta_original_saas_mrr AS remain_full_service_decreased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.decreased_service_change_delta_original_saas_mrr AS upgrade_to_full_service_decreased_saas_mrr,\n NVL(rev.closing_is_full_service,0)*rev.decreased_saas_delta_free_month_mrr_impact AS full_service_decreased_saas_delta_free_month_mrr_impact,\n rev.is_fs_mrr_cycle*rev.lost_saas_mrr AS full_service_lost_saas_mrr,\n rev.is_fs_mrr_cycle*rev.in_term_lost_saas_mrr AS full_service_in_term_lost_saas_mrr,\n rev.is_fs_mrr_cycle*rev.end_term_lost_saas_mrr AS full_service_end_term_lost_saas_mrr,\n rev.fs_delta_usage_mrr AS full_service_delta_usage_mrr,\n rev.fs_overages_delta_usage_mrr AS full_service_overages_delta_usage_mrr,\n NVL(rev.closing_is_full_service,0)*rev.positive_overages_delta_usage_mrr AS full_service_positive_overages_delta_usage_mrr,\n rev.fs_negative_overages_delta_usage_mrr AS full_service_negative_overages_delta_usage_mrr,\n rev.fs_usage_products_delta_usage_mrr AS full_service_usage_products_delta_usage_mrr,\n rev.fs_communications_delta_usage_mrr AS full_service_communications_delta_usage_mrr,\n rev.fs_communications_delta_l12m_usage AS full_service_communications_delta_l12m_usage,\n rev.fs_communications_delta_l12m_utilized_free_credits AS full_service_communications_delta_l12m_utilized_free_credits,\n rev.fs_subscriptions_delta_usage_mrr AS full_service_subscriptions_delta_usage_mrr,\n rev.closing_is_full_service*rev.closing_mrr_in_usd AS full_service_closing_mrr,\n rev.closing_is_full_service*rev.closing_saas_mrr_in_usd AS full_service_closing_saas_mrr,\n rev.closing_is_full_service*rev.closing_usage_mrr_in_usd AS full_service_closing_usage_mrr,\n -- Self-Service MRR Cycle --\n rev.opening_is_self_service*rev.opening_mrr_in_usd AS self_service_opening_mrr,\n rev.opening_is_self_service*rev.opening_saas_mrr_in_usd AS self_service_opening_saas_mrr,\n rev.opening_is_self_service*rev.opening_usage_mrr_in_usd AS self_service_opening_usage_mrr,\n rev.ss_migration_mrr AS self_service_migration_mrr,\n rev.ss_migration_saas_mrr AS self_service_migration_saas_mrr,\n rev.ss_migration_usage_mrr AS self_service_migration_usage_mrr,\n NVL(rev.closing_is_self_service,0)*(rev.new_saas_mrr+rev.winback_saas_mrr) \n + rev.is_ss_mrr_cycle*rev.law_lost_saas_mrr AS self_service_total_new_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.new_saas_mrr AS self_service_new_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.winback_saas_mrr AS self_service_winback_saas_mrr,\n rev.is_ss_mrr_cycle*rev.law_lost_saas_mrr AS self_service_law_lost_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.cross_sell_saas_mrr AS self_service_cross_sell_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.increased_saas_mrr AS self_service_increased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.increased_same_service_delta_original_saas_mrr AS remain_self_service_increased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.increased_service_change_delta_original_saas_mrr AS upgrade_to_self_service_increased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.increased_saas_delta_free_month_mrr_impact AS self_service_increased_saas_delta_free_month_mrr_impact,\n NVL(rev.closing_is_self_service,0)*rev.decreased_saas_mrr AS self_service_decreased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.decreased_same_service_delta_original_saas_mrr AS remain_self_service_decreased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.decreased_service_change_delta_original_saas_mrr AS upgrade_to_self_service_decreased_saas_mrr,\n NVL(rev.closing_is_self_service,0)*rev.decreased_saas_delta_free_month_mrr_impact AS self_service_decreased_saas_delta_free_month_mrr_impact,\n rev.is_ss_mrr_cycle*rev.lost_saas_mrr AS self_service_lost_saas_mrr,\n rev.is_ss_mrr_cycle*rev.in_term_lost_saas_mrr AS self_service_in_term_lost_saas_mrr,\n rev.is_ss_mrr_cycle*rev.end_term_lost_saas_mrr AS self_service_end_term_lost_saas_mrr,\n ss_delta_usage_mrr AS self_service_delta_usage_mrr,\n ss_overages_delta_usage_mrr AS self_service_overages_delta_usage_mrr,\n NVL(rev.closing_is_self_service,0)*rev.positive_overages_delta_usage_mrr AS self_service_positive_overages_delta_usage_mrr,\n rev.ss_negative_overages_delta_usage_mrr AS self_service_negative_overages_delta_usage_mrr,\n rev.ss_usage_products_delta_usage_mrr AS self_service_usage_products_delta_usage_mrr,\n rev.ss_communications_delta_usage_mrr AS self_service_communications_delta_usage_mrr,\n rev.ss_communications_delta_l12m_usage AS self_service_communications_delta_l12m_usage,\n rev.ss_communications_delta_l12m_utilized_free_credits AS self_service_communications_delta_l12m_utilized_free_credits,\n rev.ss_subscriptions_delta_usage_mrr AS self_service_subscriptions_delta_usage_mrr,\n rev.closing_is_self_service*rev.closing_mrr_in_usd AS self_service_closing_mrr,\n rev.closing_is_self_service*rev.closing_saas_mrr_in_usd AS self_service_closing_saas_mrr,\n rev.closing_is_self_service*rev.closing_usage_mrr_in_usd AS self_service_closing_usage_mrr, \n rev.opening_is_paid_product,\n rev.closing_is_paid_product,\n rev.opening_is_self_service,\n rev.closing_is_self_service,\n rev.opening_is_full_service,\n rev.closing_is_full_service,\n seg.opening_is_ht_self_service,\n seg.is_ht_self_service AS closing_is_ht_self_service,\n SMALLINT(NVL(seg.opening_is_ht_self_service,0)+(NVL(seg.is_ht_self_service,0)) > 0) AS is_ht_self_service,\n rev.opening_is_annual_billing,\n rev.closing_is_annual_billing,\n rev.opening_is_paying_organization,\n rev.closing_is_paying_organization,\n rev.opening_is_self_service_organization,\n rev.closing_is_self_service_organization,\n rev.opening_is_full_service_organization,\n rev.closing_is_full_service_organization,\n rev.is_fs_mrr_cycle,\n rev.is_ss_mrr_cycle,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_organization_product_revenue_metrics_monthly AS rev\nLEFT JOIN import_organization_first_ht_opportunity AS first_ht_opp\n ON rev.organization_key = first_ht_opp.organization_key\nLEFT JOIN import_organization AS org\n ON rev.organization_key = org.organization_key\nLEFT JOIN import_organization_name AS org_name\n ON rev.organization_key = org_name.organization_key\nLEFT JOIN import_organization_product_segment_monthly AS seg\n ON rev.organization_product_month_id = seg.organization_product_month_id\n)\n\nSELECT *\nFROM organization_product_mom_mrr_cycle_dashboard", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__organization_product_recurring_revenue_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.sql", "unique_id": "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_recurring_revenue_monthly", "analytics___finance__organization_product_recurring_revenue_monthly"], "alias": "analytics___finance__organization_product_recurring_revenue_monthly", "checksum": {"name": "sha256", "checksum": "9c9c698d950b48dd247b03f8ba467209bf601f4e159ad9725511e9afeee28428"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Aggregated Table of yotpo total monthly recurring revenue from shopify and zuora.\ngranularity: mrr_month, product_family_group, organization_key\nPK: organization_product_month_id", "columns": {"organization_product_month_id": {"name": "organization_product_month_id", "description": "TABLE PK: combination of month|organization_key|product_family_group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "aggregation month PK: 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "PK: 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "PK: 2/3 product_family_group (reviews+vms+insights = UGC)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_name": {"name": "opening_plan_name", "description": "closing_plan_name of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name": {"name": "closing_plan_name", "description": "End of month main plan name.\nclosing_main_plan from zuora and shopify tables.\npriority for values coming from zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_plan_name": {"name": "within_month_plan_name", "description": "subscription started and ended in the same month main plan name.\nmonthly_within_main_plan from zuora and shopify tables.\npriority for values coming from zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_zuora_original_mrr_in_usd": {"name": "closing_zuora_original_mrr_in_usd", "description": "End of month mrr_in_usd from zuora", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_mrr_in_usd": {"name": "opening_mrr_in_usd", "description": "closing_mrr_in_usd of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_mrr_in_usd": {"name": "closing_mrr_in_usd", "description": "sum of zuora closing_mrr_in_usd and shopify closing_mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "within_month_mrr_in_usd": {"name": "within_month_mrr_in_usd", "description": "sum of zuora within_month_mrr_in_usd and shopify within_month_mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "adjusted_revenue_in_usd": {"name": "adjusted_revenue_in_usd", "description": "sum of all sources mrr_in_usd * (number of days subscribed/total month days).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "catch_up_revenue_in_usd": {"name": "catch_up_revenue_in_usd", "description": "free_month_catch_up_revenue + lost_after_won_catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "approximate_revenue_in_usd": {"name": "approximate_revenue_in_usd", "description": "The approximate revenue is mainly for FP&A to try and bridge between our revenue numbers and accounting revenue numbers.\napproximate_revenue = adjusted_revenue + catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_lost_after_won_effective_mrr": {"name": "opening_lost_after_won_effective_mrr", "description": "closing_lost_after_won_effective_mrr of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_lost_after_won_effective_mrr": {"name": "closing_lost_after_won_effective_mrr", "description": "if is_lost_after_won = 1 then closing_lost_after_won_effective_mrr = effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_lost_after_won_effective_mrr": {"name": "delta_lost_after_won_effective_mrr", "description": "closing - opening lost_after_won_effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_free_month_mrr_impact": {"name": "opening_free_month_mrr_impact", "description": "closing_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_free_month_mrr_impact": {"name": "closing_free_month_mrr_impact", "description": "End of month sales_free_month_mrr_impact + csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_free_month_mrr_impact": {"name": "delta_free_month_mrr_impact", "description": "closing - opening free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_sales_free_month_mrr_impact": {"name": "opening_sales_free_month_mrr_impact", "description": "closing_sales_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_sales_free_month_mrr_impact": {"name": "closing_sales_free_month_mrr_impact", "description": "End of month MRR that changed due to sales free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_sales_free_month_mrr_impact": {"name": "delta_sales_free_month_mrr_impact", "description": "closing - opening sales_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_csm_free_month_mrr_impact": {"name": "opening_csm_free_month_mrr_impact", "description": "closing_csm_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_csm_free_month_mrr_impact": {"name": "closing_csm_free_month_mrr_impact", "description": "End of month MRR that changed due to CSM free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_csm_free_month_mrr_impact": {"name": "delta_csm_free_month_mrr_impact", "description": "closing - opening csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_after_won_catch_up_revenue_in_usd": {"name": "lost_after_won_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the LAW only affect the revenue from the LAW recognition month on.\nIn order to catch the entire LAW impact, we do a catch-up calculation:\n lost_after_won_catch_up_revenue = delta_lost_after_won_effective_mrr X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_month_catch_up_revenue_in_usd": {"name": "free_month_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the given free months only affect the revenue from the grant month on.\nIn order to catch the entire free months impact, we do a catch-up calculation:\n free_month_catch_up_revenue = delta_free_month_mrr_impact X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscription_start_date": {"name": "subscription_start_date", "description": "The subscription start date.\n 1. In case we get subscriptions from both Zuora and Shopify billing (not supposed to happen) under the same org at the same time the start date will be the max between them", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_end_date": {"name": "subscription_end_date", "description": "The subscription end date.\n 1. For active subscriptions the end date is 2999-01-01\n 2. For cancelled subscriptions the end date will be the cancelled date\n 3. In case we get subscriptions from both Zuora and Shopify billing (not supposed to happen) under the same org at the same time the end date will be the max between them", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "renewal_date": {"name": "renewal_date", "description": "The contract renewal date. (only relevant to HT)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opening_is_annual_billing": {"name": "opening_is_annual_billing", "description": "closing_is_annual_billing of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_annual_billing": {"name": "closing_is_annual_billing", "description": "indicator from zuora tables.\nindicator = 1 when plan is billed annually.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_annual_billing": {"name": "within_month_is_annual_billing", "description": "indicator from zuora tables for subscription started and ended in the same month.\nindicator = 1 when plan is billed annually.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_self_service": {"name": "opening_is_self_service", "description": "closing_is_self_service of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_self_service": {"name": "closing_is_self_service", "description": "closing_is_main_plan_self_service from zuora and shopify tables.\npriority for values coming from zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_self_service": {"name": "within_month_is_self_service", "description": "closing_is_main_plan_self_service from zuora and shopify tables for subscription started and ended in the same month.\npriority for values coming from zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_full_service": {"name": "opening_is_full_service", "description": "opposite of opening_is_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_full_service": {"name": "closing_is_full_service", "description": "opposite of is_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_full_service": {"name": "within_month_is_full_service", "description": "opposite of within_month_is_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_in_term_renewal": {"name": "is_in_term_renewal", "description": "Indicates if the renewal_opportunity_type = 'In Term Renewal'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "indicates if the subscription is lost after won or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_terminated_subscription_within_first_month": {"name": "is_terminated_subscription_within_first_month", "description": "organization started and ended product plan in the same month.\nopening_mrr_in_usd <= 0 and closing_mrr_in_usd <= 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_terminated_subscription": {"name": "is_terminated_subscription", "description": "opening_mrr_in_usd > 0 and closing_mrr_in_usd <= 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_deactivated": {"name": "is_at_least_one_store_deactivated", "description": "at least one deactivated store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_uninstalled": {"name": "is_at_least_one_store_uninstalled", "description": "at least one uninstalled store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "zuora_account_id_array": {"name": "zuora_account_id_array", "description": "Array of Zuora account ids", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_account_id_array": {"name": "sf_account_id_array", "description": "Array of sf_account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_array": {"name": "sf_opportunity_id_array", "description": "Array of sf_opportunity_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "zuora_subscription_name_and_version_array": {"name": "zuora_subscription_name_and_version_array", "description": "Array of subscription_name_and_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "shopify_charge_id_array": {"name": "shopify_charge_id_array", "description": "array of all charge identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "is_zuora_source": {"name": "is_zuora_source", "description": "indicator = 1 when closing or opening mrr from analytics___finance__zuora_organization_product_group_mrr_monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_shopify_billing_source": {"name": "is_shopify_billing_source", "description": "indicator = 1 when closing or opening mrr from analytics___finance__shopify_billing_organization_product_mrr_monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082636.6535943, "relation_name": "dev_dkruh1.analytics___finance__organization_product_recurring_revenue_monthly", "raw_code": "-- Import --\n\nWITH import_zuora_recurring_monthly AS (\nSELECT *\nFROM {{ ref('analytics___finance__zuora_organization_product_group_mrr_monthly') }}\n{% if target.name == 'dev' %}\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\n{% endif %}\n),\n\nimport_shopify_recurring_monthly AS (\nSELECT *\nFROM {{ ref('analytics___finance__shopify_billing_organization_product_mrr_monthly') }}\n{% if target.name == 'dev' %}\nWHERE mrr_month = TRUNC(CURRENT_DATE,'MONTH')\n{% endif %}\n),\n\n-- Logic --\n\nzuora_source AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n opening_main_plan_name AS zuora_opening_plan_name,\n closing_main_plan_name AS zuora_closing_plan_name,\n within_month_main_plan_name AS zuora_within_month_plan_name,\n NULL AS shopify_opening_plan_name,\n NULL AS shopify_closing_plan_name,\n NULL AS shopify_within_month_plan_name,\n closing_mrr_in_usd AS closing_zuora_original_mrr_in_usd,\n opening_effective_mrr_in_usd AS opening_mrr_in_usd,\n closing_effective_mrr_in_usd AS closing_mrr_in_usd,\n within_month_effective_mrr_in_usd AS within_month_mrr_in_usd,\n adjusted_revenue_in_usd,\n catch_up_revenue_in_usd,\n approximate_revenue_in_usd,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n from_date AS subscription_start_date,\n to_date AS subscription_end_date,\n renewal_date,\n opening_is_main_plan_annual_billing AS zuora_opening_is_annual_billing,\n closing_is_main_plan_annual_billing AS zuora_closing_is_annual_billing,\n within_month_is_main_plan_annual_billing AS zuora_within_month_is_annual_billing,\n opening_is_main_plan_self_service AS zuora_opening_is_self_service,\n closing_is_main_plan_self_service AS zuora_closing_is_self_service,\n within_month_is_main_plan_self_service AS zuora_within_month_is_self_service,\n NULL AS shopify_opening_is_annual_billing,\n NULL AS shopify_closing_is_annual_billing,\n NULL AS shopify_within_month_is_annual_billing,\n NULL AS shopify_opening_is_self_service,\n NULL AS shopify_closing_is_self_service,\n NULL AS shopify_within_month_is_self_service,\n is_in_term_renewal,\n is_lost_after_won,\n is_terminated_subscription_within_first_month,\n is_terminated_subscription,\n is_staggered_subscription,\n NULL AS is_at_least_one_store_deactivated,\n NULL AS is_at_least_one_store_uninstalled,\n account_id_array AS zuora_account_id_array,\n sf_account_id_array,\n sf_opportunity_id_array,\n subscription_name_and_version_array AS zuora_subscription_name_and_version_array,\n NULL AS shopify_charge_id_array,\n 1 AS is_zuora_source,\n 0 AS is_shopify_billing_source\nFROM import_zuora_recurring_monthly\n),\n\nshopify_source AS (\nSELECT \n organization_product_month_id,\n mrr_month AS month,\n organization_key,\n product_family AS product_family_group,\n NULL AS zuora_opening_plan_name,\n NULL AS zuora_closing_plan_name,\n NULL AS zuora_within_month_plan_name,\n opening_main_plan_name AS shopify_opening_plan_name,\n closing_main_plan_name AS shopify_closing_plan_name,\n within_month_main_plan_name AS shopify_within_month_plan_name,\n NULL AS closing_zuora_original_mrr_in_usd,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n within_month_mrr_in_usd,\n adjusted_revenue_in_usd,\n NULL AS catch_up_revenue_in_usd,\n adjusted_revenue_in_usd AS approximate_revenue_in_usd,\n NULL AS opening_lost_after_won_effective_mrr,\n NULL AS closing_lost_after_won_effective_mrr,\n NULL AS delta_lost_after_won_effective_mrr,\n NULL AS opening_free_month_mrr_impact,\n NULL AS closing_free_month_mrr_impact,\n NULL AS delta_free_month_mrr_impact,\n NULL AS opening_sales_free_month_mrr_impact,\n NULL AS closing_sales_free_month_mrr_impact,\n NULL AS delta_sales_free_month_mrr_impact,\n NULL AS opening_csm_free_month_mrr_impact,\n NULL AS closing_csm_free_month_mrr_impact,\n NULL AS delta_csm_free_month_mrr_impact,\n NULL AS lost_after_won_catch_up_revenue_in_usd,\n NULL AS free_month_catch_up_revenue_in_usd,\n subscription_start_date,\n subscription_end_date,\n NULL AS renewal_date,\n NULL AS zuora_opening_is_annual_billing,\n NULL AS zuora_closing_is_annual_billing,\n NULL AS zuora_within_month_is_annual_billing,\n NULL AS zuora_opening_is_self_service,\n NULL AS zuora_closing_is_self_service,\n NULL AS zuora_within_month_is_self_service,\n IF(opening_mrr_in_usd IS NULL,NULL,0) AS shopify_opening_is_annual_billing,\n IF(closing_mrr_in_usd IS NULL,NULL,0) AS shopify_closing_is_annual_billing,\n IF(within_month_mrr_in_usd IS NULL,NULL,0) AS shopify_within_month_is_annual_billing,\n -- All records from shopify should be considered as self service (even if the matched plan is full service)\n IF(opening_mrr_in_usd IS NULL,NULL,1) AS shopify_opening_is_self_service,\n IF(closing_mrr_in_usd IS NULL,NULL,1) AS shopify_closing_is_self_service,\n IF(within_month_mrr_in_usd IS NULL,NULL,1) AS shopify_within_month_is_self_service,\n NULL AS is_in_term_renewal,\n NULL AS is_lost_after_won,\n is_terminated_subscription_within_first_month,\n is_terminated_subscription,\n NULL AS is_staggered_subscription,\n is_at_least_one_store_deactivated,\n is_at_least_one_store_uninstalled,\n NULL AS zuora_account_id_array,\n NULL AS sf_account_id_array,\n NULL AS sf_opportunity_id_array,\n NULL AS zuora_subscription_name_and_version_array,\n charge_id_array AS shopify_charge_id_array,\n 0 AS is_zuora_source,\n 1 AS is_shopify_billing_source\nFROM import_shopify_recurring_monthly AS shopify\n),\n\nunion_zuora_shopify_sources_base AS (\nSELECT *\nFROM zuora_source\nUNION ALL\nSELECT *\nFROM shopify_source\n),\n\nunion_zuora_shopify_sources AS (\nSELECT *,\n MIN(is_terminated_subscription_within_first_month) OVER(PARTITION BY organization_product_month_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS min_is_terminated_subscription_within_first_month\nFROM union_zuora_shopify_sources_base\n),\n\norganization_product_recurring_agg AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n NVL(FIRST(zuora_opening_plan_name,TRUE),FIRST(shopify_opening_plan_name,TRUE)) AS opening_plan_name,\n NVL(FIRST(zuora_closing_plan_name,TRUE),FIRST(shopify_closing_plan_name,TRUE)) AS closing_plan_name,\n NVL(FIRST(zuora_within_month_plan_name,TRUE),FIRST(shopify_within_month_plan_name,TRUE)) AS within_month_plan_name,\n SUM(closing_zuora_original_mrr_in_usd) AS closing_zuora_original_mrr_in_usd,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(within_month_mrr_in_usd) AS within_month_mrr_in_usd,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(catch_up_revenue_in_usd) AS catch_up_revenue_in_usd,\n SUM(approximate_revenue_in_usd) AS approximate_revenue_in_usd,\n SUM(opening_lost_after_won_effective_mrr) AS opening_lost_after_won_effective_mrr,\n SUM(closing_lost_after_won_effective_mrr) AS closing_lost_after_won_effective_mrr,\n SUM(delta_lost_after_won_effective_mrr) AS delta_lost_after_won_effective_mrr,\n SUM(opening_free_month_mrr_impact) AS opening_free_month_mrr_impact,\n SUM(closing_free_month_mrr_impact) AS closing_free_month_mrr_impact,\n SUM(delta_free_month_mrr_impact) AS delta_free_month_mrr_impact,\n SUM(opening_sales_free_month_mrr_impact) AS opening_sales_free_month_mrr_impact,\n SUM(closing_sales_free_month_mrr_impact) AS closing_sales_free_month_mrr_impact,\n SUM(delta_sales_free_month_mrr_impact) AS delta_sales_free_month_mrr_impact,\n SUM(opening_csm_free_month_mrr_impact) AS opening_csm_free_month_mrr_impact,\n SUM(closing_csm_free_month_mrr_impact) AS closing_csm_free_month_mrr_impact,\n SUM(delta_csm_free_month_mrr_impact) AS delta_csm_free_month_mrr_impact,\n SUM(lost_after_won_catch_up_revenue_in_usd) AS lost_after_won_catch_up_revenue_in_usd,\n SUM(free_month_catch_up_revenue_in_usd) AS free_month_catch_up_revenue_in_usd,\n MAX(subscription_start_date) AS subscription_start_date,\n MAX(subscription_end_date) AS subscription_end_date,\n MAX(renewal_date) AS renewal_date,\n NVL(FIRST(zuora_opening_is_annual_billing,TRUE),FIRST(shopify_opening_is_annual_billing,TRUE)) AS opening_is_annual_billing,\n NVL(FIRST(zuora_closing_is_annual_billing,TRUE),FIRST(shopify_closing_is_annual_billing,TRUE)) AS closing_is_annual_billing,\n NVL(FIRST(zuora_within_month_is_annual_billing,TRUE),FIRST(shopify_within_month_is_annual_billing,TRUE)) AS within_month_is_annual_billing,\n NVL(FIRST(zuora_opening_is_self_service,TRUE),FIRST(shopify_opening_is_self_service,TRUE)) AS opening_is_self_service,\n NVL(FIRST(zuora_closing_is_self_service,TRUE),FIRST(shopify_closing_is_self_service,TRUE)) AS closing_is_self_service,\n NVL(FIRST(zuora_within_month_is_self_service,TRUE),FIRST(shopify_within_month_is_self_service,TRUE)) AS within_month_is_self_service,\n NVL(MAX(is_in_term_renewal),0) AS is_in_term_renewal,\n NVL(MAX(is_lost_after_won),0) AS is_lost_after_won,\n MIN(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n MIN(is_terminated_subscription) AS is_terminated_subscription,\n MAX(is_staggered_subscription) AS is_staggered_subscription,\n MAX(is_at_least_one_store_deactivated) AS is_at_least_one_store_deactivated,\n MAX(is_at_least_one_store_uninstalled) AS is_at_least_one_store_uninstalled,\n FIRST(zuora_account_id_array,TRUE) AS zuora_account_id_array,\n FIRST(sf_account_id_array,TRUE) AS sf_account_id_array,\n FIRST(sf_opportunity_id_array,TRUE) AS sf_opportunity_id_array,\n FIRST(zuora_subscription_name_and_version_array,TRUE) AS zuora_subscription_name_and_version_array,\n FIRST(shopify_charge_id_array,TRUE) AS shopify_charge_id_array,\n MAX(is_zuora_source) AS is_zuora_source,\n MAX(is_shopify_billing_source) AS is_shopify_billing_source\nFROM union_zuora_shopify_sources\nWHERE min_is_terminated_subscription_within_first_month = is_terminated_subscription_within_first_month\nGROUP BY 1,2,3,4\n),\n\norganization_product_recurring_revenue_monthly_res AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n opening_plan_name,\n closing_plan_name,\n within_month_plan_name,\n closing_zuora_original_mrr_in_usd,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n within_month_mrr_in_usd,\n adjusted_revenue_in_usd,\n catch_up_revenue_in_usd,\n approximate_revenue_in_usd,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n subscription_start_date,\n subscription_end_date,\n renewal_date,\n SMALLINT(opening_is_annual_billing) AS opening_is_annual_billing,\n SMALLINT(closing_is_annual_billing) AS closing_is_annual_billing,\n SMALLINT(within_month_is_annual_billing) AS within_month_is_annual_billing,\n SMALLINT(opening_is_self_service) AS opening_is_self_service,\n SMALLINT(closing_is_self_service) AS closing_is_self_service,\n SMALLINT(within_month_is_self_service) AS within_month_is_self_service,\n SMALLINT(CASE WHEN opening_is_self_service = 1 THEN 0 \n WHEN opening_is_self_service = 0 THEN 1\n ELSE NULL END) AS opening_is_full_service,\n SMALLINT(CASE WHEN closing_is_self_service = 1 THEN 0 \n WHEN closing_is_self_service = 0 THEN 1\n ELSE NULL END) AS closing_is_full_service,\n SMALLINT(CASE WHEN within_month_is_self_service = 1 THEN 0 \n WHEN within_month_is_self_service = 0 THEN 1\n ELSE NULL END) AS within_month_is_full_service,\n SMALLINT(is_in_term_renewal) AS is_in_term_renewal,\n SMALLINT(is_lost_after_won) AS is_lost_after_won,\n SMALLINT(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n SMALLINT(is_terminated_subscription) AS is_terminated_subscription,\n SMALLINT(is_staggered_subscription) AS is_staggered_subscription,\n SMALLINT(is_at_least_one_store_deactivated) AS is_at_least_one_store_deactivated,\n SMALLINT(is_at_least_one_store_uninstalled) AS is_at_least_one_store_uninstalled,\n zuora_account_id_array,\n sf_account_id_array,\n sf_opportunity_id_array,\n zuora_subscription_name_and_version_array,\n shopify_charge_id_array,\n SMALLINT(is_zuora_source) AS is_zuora_source,\n SMALLINT(is_shopify_billing_source) AS is_shopify_billing_source,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_recurring_agg\n)\n\nSELECT *\nFROM organization_product_recurring_revenue_monthly_res", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_group_mrr_monthly", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly", "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_zuora_recurring_monthly AS (\nSELECT *\nFROM dev_dkruh1.analytics___finance__zuora_organization_product_group_mrr_monthly\n\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\n\n),\n\nimport_shopify_recurring_monthly AS (\nSELECT *\nFROM dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_monthly\n\nWHERE mrr_month = TRUNC(CURRENT_DATE,'MONTH')\n\n),\n\n-- Logic --\n\nzuora_source AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n opening_main_plan_name AS zuora_opening_plan_name,\n closing_main_plan_name AS zuora_closing_plan_name,\n within_month_main_plan_name AS zuora_within_month_plan_name,\n NULL AS shopify_opening_plan_name,\n NULL AS shopify_closing_plan_name,\n NULL AS shopify_within_month_plan_name,\n closing_mrr_in_usd AS closing_zuora_original_mrr_in_usd,\n opening_effective_mrr_in_usd AS opening_mrr_in_usd,\n closing_effective_mrr_in_usd AS closing_mrr_in_usd,\n within_month_effective_mrr_in_usd AS within_month_mrr_in_usd,\n adjusted_revenue_in_usd,\n catch_up_revenue_in_usd,\n approximate_revenue_in_usd,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n from_date AS subscription_start_date,\n to_date AS subscription_end_date,\n renewal_date,\n opening_is_main_plan_annual_billing AS zuora_opening_is_annual_billing,\n closing_is_main_plan_annual_billing AS zuora_closing_is_annual_billing,\n within_month_is_main_plan_annual_billing AS zuora_within_month_is_annual_billing,\n opening_is_main_plan_self_service AS zuora_opening_is_self_service,\n closing_is_main_plan_self_service AS zuora_closing_is_self_service,\n within_month_is_main_plan_self_service AS zuora_within_month_is_self_service,\n NULL AS shopify_opening_is_annual_billing,\n NULL AS shopify_closing_is_annual_billing,\n NULL AS shopify_within_month_is_annual_billing,\n NULL AS shopify_opening_is_self_service,\n NULL AS shopify_closing_is_self_service,\n NULL AS shopify_within_month_is_self_service,\n is_in_term_renewal,\n is_lost_after_won,\n is_terminated_subscription_within_first_month,\n is_terminated_subscription,\n is_staggered_subscription,\n NULL AS is_at_least_one_store_deactivated,\n NULL AS is_at_least_one_store_uninstalled,\n account_id_array AS zuora_account_id_array,\n sf_account_id_array,\n sf_opportunity_id_array,\n subscription_name_and_version_array AS zuora_subscription_name_and_version_array,\n NULL AS shopify_charge_id_array,\n 1 AS is_zuora_source,\n 0 AS is_shopify_billing_source\nFROM import_zuora_recurring_monthly\n),\n\nshopify_source AS (\nSELECT \n organization_product_month_id,\n mrr_month AS month,\n organization_key,\n product_family AS product_family_group,\n NULL AS zuora_opening_plan_name,\n NULL AS zuora_closing_plan_name,\n NULL AS zuora_within_month_plan_name,\n opening_main_plan_name AS shopify_opening_plan_name,\n closing_main_plan_name AS shopify_closing_plan_name,\n within_month_main_plan_name AS shopify_within_month_plan_name,\n NULL AS closing_zuora_original_mrr_in_usd,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n within_month_mrr_in_usd,\n adjusted_revenue_in_usd,\n NULL AS catch_up_revenue_in_usd,\n adjusted_revenue_in_usd AS approximate_revenue_in_usd,\n NULL AS opening_lost_after_won_effective_mrr,\n NULL AS closing_lost_after_won_effective_mrr,\n NULL AS delta_lost_after_won_effective_mrr,\n NULL AS opening_free_month_mrr_impact,\n NULL AS closing_free_month_mrr_impact,\n NULL AS delta_free_month_mrr_impact,\n NULL AS opening_sales_free_month_mrr_impact,\n NULL AS closing_sales_free_month_mrr_impact,\n NULL AS delta_sales_free_month_mrr_impact,\n NULL AS opening_csm_free_month_mrr_impact,\n NULL AS closing_csm_free_month_mrr_impact,\n NULL AS delta_csm_free_month_mrr_impact,\n NULL AS lost_after_won_catch_up_revenue_in_usd,\n NULL AS free_month_catch_up_revenue_in_usd,\n subscription_start_date,\n subscription_end_date,\n NULL AS renewal_date,\n NULL AS zuora_opening_is_annual_billing,\n NULL AS zuora_closing_is_annual_billing,\n NULL AS zuora_within_month_is_annual_billing,\n NULL AS zuora_opening_is_self_service,\n NULL AS zuora_closing_is_self_service,\n NULL AS zuora_within_month_is_self_service,\n IF(opening_mrr_in_usd IS NULL,NULL,0) AS shopify_opening_is_annual_billing,\n IF(closing_mrr_in_usd IS NULL,NULL,0) AS shopify_closing_is_annual_billing,\n IF(within_month_mrr_in_usd IS NULL,NULL,0) AS shopify_within_month_is_annual_billing,\n -- All records from shopify should be considered as self service (even if the matched plan is full service)\n IF(opening_mrr_in_usd IS NULL,NULL,1) AS shopify_opening_is_self_service,\n IF(closing_mrr_in_usd IS NULL,NULL,1) AS shopify_closing_is_self_service,\n IF(within_month_mrr_in_usd IS NULL,NULL,1) AS shopify_within_month_is_self_service,\n NULL AS is_in_term_renewal,\n NULL AS is_lost_after_won,\n is_terminated_subscription_within_first_month,\n is_terminated_subscription,\n NULL AS is_staggered_subscription,\n is_at_least_one_store_deactivated,\n is_at_least_one_store_uninstalled,\n NULL AS zuora_account_id_array,\n NULL AS sf_account_id_array,\n NULL AS sf_opportunity_id_array,\n NULL AS zuora_subscription_name_and_version_array,\n charge_id_array AS shopify_charge_id_array,\n 0 AS is_zuora_source,\n 1 AS is_shopify_billing_source\nFROM import_shopify_recurring_monthly AS shopify\n),\n\nunion_zuora_shopify_sources_base AS (\nSELECT *\nFROM zuora_source\nUNION ALL\nSELECT *\nFROM shopify_source\n),\n\nunion_zuora_shopify_sources AS (\nSELECT *,\n MIN(is_terminated_subscription_within_first_month) OVER(PARTITION BY organization_product_month_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS min_is_terminated_subscription_within_first_month\nFROM union_zuora_shopify_sources_base\n),\n\norganization_product_recurring_agg AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n NVL(FIRST(zuora_opening_plan_name,TRUE),FIRST(shopify_opening_plan_name,TRUE)) AS opening_plan_name,\n NVL(FIRST(zuora_closing_plan_name,TRUE),FIRST(shopify_closing_plan_name,TRUE)) AS closing_plan_name,\n NVL(FIRST(zuora_within_month_plan_name,TRUE),FIRST(shopify_within_month_plan_name,TRUE)) AS within_month_plan_name,\n SUM(closing_zuora_original_mrr_in_usd) AS closing_zuora_original_mrr_in_usd,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(within_month_mrr_in_usd) AS within_month_mrr_in_usd,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(catch_up_revenue_in_usd) AS catch_up_revenue_in_usd,\n SUM(approximate_revenue_in_usd) AS approximate_revenue_in_usd,\n SUM(opening_lost_after_won_effective_mrr) AS opening_lost_after_won_effective_mrr,\n SUM(closing_lost_after_won_effective_mrr) AS closing_lost_after_won_effective_mrr,\n SUM(delta_lost_after_won_effective_mrr) AS delta_lost_after_won_effective_mrr,\n SUM(opening_free_month_mrr_impact) AS opening_free_month_mrr_impact,\n SUM(closing_free_month_mrr_impact) AS closing_free_month_mrr_impact,\n SUM(delta_free_month_mrr_impact) AS delta_free_month_mrr_impact,\n SUM(opening_sales_free_month_mrr_impact) AS opening_sales_free_month_mrr_impact,\n SUM(closing_sales_free_month_mrr_impact) AS closing_sales_free_month_mrr_impact,\n SUM(delta_sales_free_month_mrr_impact) AS delta_sales_free_month_mrr_impact,\n SUM(opening_csm_free_month_mrr_impact) AS opening_csm_free_month_mrr_impact,\n SUM(closing_csm_free_month_mrr_impact) AS closing_csm_free_month_mrr_impact,\n SUM(delta_csm_free_month_mrr_impact) AS delta_csm_free_month_mrr_impact,\n SUM(lost_after_won_catch_up_revenue_in_usd) AS lost_after_won_catch_up_revenue_in_usd,\n SUM(free_month_catch_up_revenue_in_usd) AS free_month_catch_up_revenue_in_usd,\n MAX(subscription_start_date) AS subscription_start_date,\n MAX(subscription_end_date) AS subscription_end_date,\n MAX(renewal_date) AS renewal_date,\n NVL(FIRST(zuora_opening_is_annual_billing,TRUE),FIRST(shopify_opening_is_annual_billing,TRUE)) AS opening_is_annual_billing,\n NVL(FIRST(zuora_closing_is_annual_billing,TRUE),FIRST(shopify_closing_is_annual_billing,TRUE)) AS closing_is_annual_billing,\n NVL(FIRST(zuora_within_month_is_annual_billing,TRUE),FIRST(shopify_within_month_is_annual_billing,TRUE)) AS within_month_is_annual_billing,\n NVL(FIRST(zuora_opening_is_self_service,TRUE),FIRST(shopify_opening_is_self_service,TRUE)) AS opening_is_self_service,\n NVL(FIRST(zuora_closing_is_self_service,TRUE),FIRST(shopify_closing_is_self_service,TRUE)) AS closing_is_self_service,\n NVL(FIRST(zuora_within_month_is_self_service,TRUE),FIRST(shopify_within_month_is_self_service,TRUE)) AS within_month_is_self_service,\n NVL(MAX(is_in_term_renewal),0) AS is_in_term_renewal,\n NVL(MAX(is_lost_after_won),0) AS is_lost_after_won,\n MIN(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n MIN(is_terminated_subscription) AS is_terminated_subscription,\n MAX(is_staggered_subscription) AS is_staggered_subscription,\n MAX(is_at_least_one_store_deactivated) AS is_at_least_one_store_deactivated,\n MAX(is_at_least_one_store_uninstalled) AS is_at_least_one_store_uninstalled,\n FIRST(zuora_account_id_array,TRUE) AS zuora_account_id_array,\n FIRST(sf_account_id_array,TRUE) AS sf_account_id_array,\n FIRST(sf_opportunity_id_array,TRUE) AS sf_opportunity_id_array,\n FIRST(zuora_subscription_name_and_version_array,TRUE) AS zuora_subscription_name_and_version_array,\n FIRST(shopify_charge_id_array,TRUE) AS shopify_charge_id_array,\n MAX(is_zuora_source) AS is_zuora_source,\n MAX(is_shopify_billing_source) AS is_shopify_billing_source\nFROM union_zuora_shopify_sources\nWHERE min_is_terminated_subscription_within_first_month = is_terminated_subscription_within_first_month\nGROUP BY 1,2,3,4\n),\n\norganization_product_recurring_revenue_monthly_res AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n opening_plan_name,\n closing_plan_name,\n within_month_plan_name,\n closing_zuora_original_mrr_in_usd,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n within_month_mrr_in_usd,\n adjusted_revenue_in_usd,\n catch_up_revenue_in_usd,\n approximate_revenue_in_usd,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n subscription_start_date,\n subscription_end_date,\n renewal_date,\n SMALLINT(opening_is_annual_billing) AS opening_is_annual_billing,\n SMALLINT(closing_is_annual_billing) AS closing_is_annual_billing,\n SMALLINT(within_month_is_annual_billing) AS within_month_is_annual_billing,\n SMALLINT(opening_is_self_service) AS opening_is_self_service,\n SMALLINT(closing_is_self_service) AS closing_is_self_service,\n SMALLINT(within_month_is_self_service) AS within_month_is_self_service,\n SMALLINT(CASE WHEN opening_is_self_service = 1 THEN 0 \n WHEN opening_is_self_service = 0 THEN 1\n ELSE NULL END) AS opening_is_full_service,\n SMALLINT(CASE WHEN closing_is_self_service = 1 THEN 0 \n WHEN closing_is_self_service = 0 THEN 1\n ELSE NULL END) AS closing_is_full_service,\n SMALLINT(CASE WHEN within_month_is_self_service = 1 THEN 0 \n WHEN within_month_is_self_service = 0 THEN 1\n ELSE NULL END) AS within_month_is_full_service,\n SMALLINT(is_in_term_renewal) AS is_in_term_renewal,\n SMALLINT(is_lost_after_won) AS is_lost_after_won,\n SMALLINT(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n SMALLINT(is_terminated_subscription) AS is_terminated_subscription,\n SMALLINT(is_staggered_subscription) AS is_staggered_subscription,\n SMALLINT(is_at_least_one_store_deactivated) AS is_at_least_one_store_deactivated,\n SMALLINT(is_at_least_one_store_uninstalled) AS is_at_least_one_store_uninstalled,\n zuora_account_id_array,\n sf_account_id_array,\n sf_opportunity_id_array,\n zuora_subscription_name_and_version_array,\n shopify_charge_id_array,\n SMALLINT(is_zuora_source) AS is_zuora_source,\n SMALLINT(is_shopify_billing_source) AS is_shopify_billing_source,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_recurring_agg\n)\n\nSELECT *\nFROM organization_product_recurring_revenue_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__organization_product_revenue_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.sql", "unique_id": "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_metrics_monthly", "analytics___finance__organization_product_revenue_metrics_monthly"], "alias": "analytics___finance__organization_product_revenue_metrics_monthly", "checksum": {"name": "sha256", "checksum": "40f40b488c5dd4eaa43dc145e53388b109772965c9531f27bf104214679a9825"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK [month, organization_key, product_family_group] OR [organization_product_month_id]\n\nThis table contains metrics (components) that categorize changes in revenue/MRR for a specific organization,product and month.\nMain components:\n 1. Lost\n 2. New\n 3. Cross-Sell \n 4. Winback \n 5. Increase/Decrease\n 6. upgrade/downgrade to Self/Full Service\n\nThe table is built in the structure of cycles:\n 1. opening balance\n 2. components (Lost, New, Cross-Sell, etc.)\n 3. closing balance\n\n Where: opening balance + SUM(components) = closing balance\n\nThe table calculate cycles for the three main revenue metrics:\n 1. MRR\n 2. Revenue\n 3. Pro-Rated MRR\n\n Plus, for each metric we calculate:\n 1. Total cycle\n 2. SaaS only cycle\n 3. Usage only cycle\n\nAfter the cycles columns, you can find the flags we used to categorize the components (is_new, is_lost etc.)\nIn the link below you can find the logic flow chart:\n https://lucid.app/lucidchart/7b7ce889-77f5-44e5-82ca-a34db9c98ec0/edit?invitationId=inv_ea5fc020-8000-48b2-a0a3-f6ed7b669b4e&page=A8EhpEQkFJ9j#", "columns": {"organization_product_month_id": {"name": "organization_product_month_id", "description": "ID of the combination: [month, organization_key, product_family_group]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "PK 2/3\n\nThe unique identifier for each organization.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "PK 3/3\n\nContains 5 distinct values:\n 1. UGC (Including Reviews, VMS, Insights)\n 2. Loyalty\n 3. SMS\n 4. Email\n 5. Subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "PK 1/3\n\nThe month associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opening_plan_name": {"name": "opening_plan_name", "description": "The name of the plan at the beginning of the month.\n\nCould be an organization have more than one plan but in order to keep the granularity and simplify things, we chose the higher plan in those cases.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name": {"name": "closing_plan_name", "description": "The name of the plan at the end of the month.\n\nCould be an organization have more than one plan but in order to keep the granularity and simplify things, we chose the higher plan in those cases.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_group": {"name": "opening_plan_group", "description": "The group of the opening plan.\n\nFor example, the group of both \"Reviews Growth 50\" and \"Reviews Growth 100\" is \"Growth\".", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_group": {"name": "closing_plan_group", "description": "The group of the closing plan.\n\nFor example, the group of both \"Reviews Growth 50\" and \"Reviews Growth 100\" is \"Growth\".", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_start_date": {"name": "subscription_start_date", "description": "The subscription start date.\n 1. In case we get subscriptions from both Zuora and Shopify billing (not supposed to happen) under the same org at the same time the start date will be the max between them", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_end_date": {"name": "subscription_end_date", "description": "The subscription end date.\n 1. For active subscriptions the end date is 2999-01-01\n 2. For cancelled subscriptions the end date will be the cancelled date\n 3. In case we get subscriptions from both Zuora and Shopify billing (not supposed to happen) under the same org at the same time the end date will be the max between them", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opening_revenue_for_cohorts": {"name": "opening_revenue_for_cohorts", "description": "In order to determine the paid cohorts we are using different revenue types for different products:\n\n 1. Loyalty & UGC - we are using only the SaaS revenue, since customer can't be paying customer for these products w/o SaaS fees.\n\n 2. SMS, Email & Subscriptions - we are using the total revenue (SaaS+usage), since customer can be paying customer for these products w/o SaaS fees.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_revenue_for_cohorts": {"name": "closing_revenue_for_cohorts", "description": "In order to determine the paid cohorts we are using different revenue types for different products:\n\n 1. Loyalty & UGC - we are using only the SaaS revenue, since customer can't be paying customer for these products w/o SaaS fees.\n\n 2. SMS, Email & Subscriptions - we are using the total revenue (SaaS+usage), since customer can be paying customer for these products w/o SaaS fees.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_mrr_in_usd": {"name": "opening_mrr_in_usd", "description": "The Monthly Recurring Revenue (MRR) at the beginning of the month in USD.\n\nFor more info go to the closing_mrr_in_usd description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_usage_leftover_mrr": {"name": "lost_usage_leftover_mrr", "description": "IF is_lost_usage_leftover = 1:\n lost_usage_leftover_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n lost_usage_leftover_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_mrr": {"name": "lost_mrr", "description": "IF is_lost = 1:\n lost_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n lost_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "law_lost_saas_mrr": {"name": "law_lost_saas_mrr", "description": "IF is_law_lost = 1:\n law_lost_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n law_lost_saas_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_mrr": {"name": "new_mrr", "description": "IF is_new = 1:\n new_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n new_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cross_sell_mrr": {"name": "cross_sell_mrr", "description": "IF is_cross_sell = 1:\n cross_sell_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n cross_sell_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "winback_mrr": {"name": "winback_mrr", "description": "IF is_winback = 1:\n winback_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n winback_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_mrr": {"name": "decreased_mrr", "description": "IF is_decreased_mrr = 1:\n decreased_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n decreased_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_mrr": {"name": "increased_mrr", "description": "IF is_increased_mrr = 1:\n increased_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n increased_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_mrr_in_usd": {"name": "closing_mrr_in_usd", "description": "The Monthly Recurring Revenue (MRR) at the end of the month in USD.\n\nContains two types:\n\n 1. SaaS MRR - for:\n\n 1.1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 1.2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)\n\n 2. Usage MRR - for:\n\n 2.1 Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2.2 ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n\n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_mrr": {"name": "delta_mrr", "description": "delta_mrr = closing_mrr - opening_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "consolidated_new_mrr": {"name": "consolidated_new_mrr", "description": "The SUM of the new MRR components including:\n 1. New MRR\n 2. Winback MRR\n 3. LAW Lost MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_mrr_movement": {"name": "upgrade_to_full_service_mrr_movement", "description": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_mrr_movement = opening_mrr\nELSE\n upgrade_to_full_service_mrr_movement = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_delta_mrr": {"name": "upgrade_to_full_service_delta_mrr", "description": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n upgrade_to_full_service_delta_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "downgrade_to_self_service_mrr_movement": {"name": "downgrade_to_self_service_mrr_movement", "description": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_mrr_movement = opening_mrr\nELSE\n downgrade_to_self_service_mrr_movement = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "downgrade_to_self_service_delta_mrr": {"name": "downgrade_to_self_service_delta_mrr", "description": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n downgrade_to_self_service_delta_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "same_service_decreased_mrr": {"name": "same_service_decreased_mrr", "description": "IF(is_decreased_mrr = 1 AND is_same_service = 1,delta_mrr,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "same_service_increased_mrr": {"name": "same_service_increased_mrr", "description": "IF(is_increased_mrr = 1 AND is_same_service = 1,delta_mrr,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_mrr_in_usd": {"name": "opening_usage_mrr_in_usd", "description": "Only the Usage component of the MRR at the end of previous month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n\n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_usage_mrr": {"name": "lost_usage_mrr", "description": "IF is_lost = 1:\n lost_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n lost_usage_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_usage_mrr": {"name": "new_usage_mrr", "description": "IF is_new = 1:\n new_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n new_usage_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cross_sell_usage_mrr": {"name": "cross_sell_usage_mrr", "description": "IF is_cross_sell = 1:\n cross_sell_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n cross_sell_usage_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "winback_usage_mrr": {"name": "winback_usage_mrr", "description": "IF is_winback = 1:\n winback_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n winback_usage_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_usage_mrr": {"name": "decreased_usage_mrr", "description": "IF is_decreased_usage_mrr = 1:\n decreased_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n decreased_usage_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_usage_mrr": {"name": "increased_usage_mrr", "description": "IF is_increased_usage_mrr = 1:\n increased_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n increased_usage_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_mrr_in_usd": {"name": "closing_usage_mrr_in_usd", "description": "Only the Usage component of the MRR at the end of the month in USD. Usage MRR - for:\n \n 1. Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n \n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_usage_mrr": {"name": "delta_usage_mrr", "description": "delta_usage_mrr = closing_usage_mrr - opening_usage_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "consolidated_new_usage_mrr": {"name": "consolidated_new_usage_mrr", "description": "The SUM of the new Usage MRR components including:\n 1. New Usage MRR\n 2. Winback Usage MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "overages_delta_usage_mrr": {"name": "overages_delta_usage_mrr", "description": "Only relevant to UGC & Loyalty. \nIt's basically the delta_usage_mrr, having it as seperate column will just make the cycle build more clean.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "negative_overages_delta_usage_mrr": {"name": "negative_overages_delta_usage_mrr", "description": "Only relevant to UGC & Loyalty. \nIt's basically the delta_usage_mrr where the delta is negative, having it as seperate column will just make the cycle build more clean.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "positive_overages_delta_usage_mrr": {"name": "positive_overages_delta_usage_mrr", "description": "Only relevant to UGC & Loyalty. \nIt's basically the delta_usage_mrr where the delta is positive, having it as seperate column will just make the cycle build more clean.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "usage_products_delta_usage_mrr": {"name": "usage_products_delta_usage_mrr", "description": "Only relevant to SMS, Email & Subscriptions. \nIt's basically the delta_usage_mrr, having it as seperate column will just make the cycle build more clean.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_delta_usage_mrr": {"name": "subscriptions_delta_usage_mrr", "description": "Only relevant to subscriptions.\nIt's basically the delta_usage_mrr, having it as seperate column will just make the cycle build more clean.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communications_delta_l12m_usage": {"name": "communications_delta_l12m_usage", "description": "only relevant to SMS & Email: \n (closing_l12m_avg_usage_in_usd - opening_l12m_avg_usage_in_usd)*12", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communications_delta_l12m_utilized_free_credits": {"name": "communications_delta_l12m_utilized_free_credits", "description": "only relevant to SMS & Email: \n (closing_l12m_avg_utilized_free_credits - opening_l12m_avg_utilized_free_credits)*12", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_saas_mrr_in_usd": {"name": "opening_saas_mrr_in_usd", "description": "Only the SaaS component of the MRR at the beginning of the month in USD.\n\nFor more info go to the closing_saas_mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_saas_mrr": {"name": "lost_saas_mrr", "description": "IF is_lost = 1:\n lost_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n lost_saas_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_saas_mrr": {"name": "new_saas_mrr", "description": "IF is_new = 1:\n new_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n new_saas_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cross_sell_saas_mrr": {"name": "cross_sell_saas_mrr", "description": "IF is_cross_sell = 1:\n cross_sell_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n cross_sell_saas_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "winback_saas_mrr": {"name": "winback_saas_mrr", "description": "IF is_winback = 1:\n winback_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n winback_saas_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_saas_mrr": {"name": "decreased_saas_mrr", "description": "IF is_decreased_saas_mrr = 1:\n decreased_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n decreased_saas_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_saas_mrr": {"name": "increased_saas_mrr", "description": "IF is_increased_saas_mrr = 1:\n increased_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n increased_saas_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_saas_mrr_in_usd": {"name": "closing_saas_mrr_in_usd", "description": "Only the SaaS component of the MRR at the end of the month in USD.\n\n SaaS MRR - for:\n\n 1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_saas_mrr": {"name": "delta_saas_mrr", "description": "delta_saas_mrr = closing_saas_mrr - opening_saas_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "consolidated_new_saas_mrr": {"name": "consolidated_new_saas_mrr", "description": "The SUM of the new SaaS MRR components including:\n 1. New SaaS MRR\n 2. Winback SaaS MRR\n 3. LAW Lost SaaS MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "in_term_lost_saas_mrr": {"name": "in_term_lost_saas_mrr", "description": "The lost_saas_mrr where is_in_term_renewal = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end_term_lost_saas_mrr": {"name": "end_term_lost_saas_mrr", "description": "The lost_saas_mrr where is_in_term_renewal = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_saas_delta_free_month_mrr_impact": {"name": "decreased_saas_delta_free_month_mrr_impact", "description": "The delta free months MRR impact of records where the total SaaS MRR decreased MoM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_saas_delta_free_month_mrr_impact": {"name": "increased_saas_delta_free_month_mrr_impact", "description": "The delta free months MRR impact of records where the total SaaS MRR increased MoM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_same_service_delta_original_saas_mrr": {"name": "decreased_same_service_delta_original_saas_mrr", "description": "The delta original SaaS MRR impact of records where:\n 1. The total SaaS MRR decreased MoM\n 2. The service level did not change MoM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_same_service_delta_original_saas_mrr": {"name": "increased_same_service_delta_original_saas_mrr", "description": "The delta original SaaS MRR impact of records where:\n 1. The total SaaS MRR increased MoM\n 2. The service level did not change MoM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_service_change_delta_original_saas_mrr": {"name": "decreased_service_change_delta_original_saas_mrr", "description": "The delta original SaaS MRR impact of records where:\n 1. The total SaaS MRR decreased MoM\n 2. The service level changed MoM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_service_change_delta_original_saas_mrr": {"name": "increased_service_change_delta_original_saas_mrr", "description": "The delta original SaaS MRR impact of records where:\n 1. The total SaaS MRR increased MoM\n 2. The service level changed MoM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_free_month_mrr_impact": {"name": "opening_free_month_mrr_impact", "description": "closing_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_free_month_mrr_impact": {"name": "closing_free_month_mrr_impact", "description": "End of month sales_free_month_mrr_impact + csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_free_month_mrr_impact": {"name": "delta_free_month_mrr_impact", "description": "closing - opening free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_original_saas_mrr_in_usd": {"name": "opening_original_saas_mrr_in_usd", "description": "The original SaaS MRR (W/O taking into account free months impact)\n opening_original_saas_mrr = opening_saas_mrr - opening_free_months_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_original_saas_mrr": {"name": "decreased_original_saas_mrr", "description": "IF is_decreased_original_saas_mrr = 1:\n decreased_original_saas_mrr = delta_original_saas_mrr (closing_original_saas_mrr-opening_original_saas_mrr)\nELSE\n decreased_original_saas_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_original_saas_mrr": {"name": "increased_original_saas_mrr", "description": "IF is_increased_original_saas_mrr = 1:\n increased_original_saas_mrr = delta_original_saas_mrr (closing_original_saas_mrr-opening_original_saas_mrr)\nELSE\n increased_original_saas_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_original_saas_mrr_in_usd": {"name": "closing_original_saas_mrr_in_usd", "description": "The original SaaS MRR (W/O taking into account free months impact)\n closing_original_saas_mrr = closing_saas_mrr - closing_free_months_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_original_saas_mrr": {"name": "delta_original_saas_mrr", "description": "delta_original_saas_mrr = closing_original_saas_mrr - opening_original_saas_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_lost_after_won_effective_mrr": {"name": "opening_lost_after_won_effective_mrr", "description": "closing_lost_after_won_effective_mrr of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_lost_after_won_effective_mrr": {"name": "closing_lost_after_won_effective_mrr", "description": "if is_lost_after_won = 1 then closing_lost_after_won_effective_mrr = effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_lost_after_won_effective_mrr": {"name": "delta_lost_after_won_effective_mrr", "description": "closing - opening lost_after_won_effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_revenue_in_usd": {"name": "opening_revenue_in_usd", "description": "opening_revenue = opening_usage_revenue + opening_saas_MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_usage_leftover_revenue": {"name": "lost_usage_leftover_revenue", "description": "IF is_lost_usage_leftover = 1:\n lost_usage_leftover_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n lost_usage_leftover_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_revenue": {"name": "lost_revenue", "description": "IF is_lost = 1:\n lost_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n lost_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_revenue": {"name": "new_revenue", "description": "IF is_new = 1:\n new_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n new_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cross_sell_revenue": {"name": "cross_sell_revenue", "description": "IF is_cross_sell = 1:\n cross_sell_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n cross_sell_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "winback_revenue": {"name": "winback_revenue", "description": "IF is_winback = 1:\n winback_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n winback_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_revenue": {"name": "decreased_revenue", "description": "IF is_decreased_revenue = 1:\n decreased_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n decreased_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_revenue": {"name": "increased_revenue", "description": "IF is_increased_revenue = 1:\n increased_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n increased_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_revenue_in_usd": {"name": "closing_revenue_in_usd", "description": "closing_revenue = closing_usage_revenue + closing_saas_MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_revenue": {"name": "delta_revenue", "description": "delta_revenue = closing_revenue - opening_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "consolidated_new_revenue": {"name": "consolidated_new_revenue", "description": "The SUM of the new Revenue components including:\n 1. New Revenue\n 2. Winback Revenue\n 3. LAW Lost Revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_revenue_movement": {"name": "upgrade_to_full_service_revenue_movement", "description": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_revenue_movement = opening_revenue\nELSE\n upgrade_to_full_service_revenue_movement = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_delta_revenue": {"name": "upgrade_to_full_service_delta_revenue", "description": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n upgrade_to_full_service_delta_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "downgrade_to_self_service_revenue_movement": {"name": "downgrade_to_self_service_revenue_movement", "description": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_revenue_movement = opening_revenue\nELSE\n downgrade_to_self_service_revenue_movement = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "downgrade_to_self_service_delta_revenue": {"name": "downgrade_to_self_service_delta_revenue", "description": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n downgrade_to_self_service_delta_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "same_service_decreased_revenue": {"name": "same_service_decreased_revenue", "description": "IF(is_decreased_revenue = 1 AND is_same_service = 1,delta_revenue,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "same_service_increased_revenue": {"name": "same_service_increased_revenue", "description": "IF(is_increased_revenue = 1 AND is_same_service = 1,delta_revenue,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_revenue_in_usd": {"name": "opening_usage_revenue_in_usd", "description": "The usage-based revenue at the end of previous month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_usage_revenue": {"name": "lost_usage_revenue", "description": "IF is_lost = 1:\n lost_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n lost_usage_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_usage_revenue": {"name": "new_usage_revenue", "description": "IF is_new = 1:\n new_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n new_usage_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cross_sell_usage_revenue": {"name": "cross_sell_usage_revenue", "description": "IF is_cross_sell = 1:\n cross_sell_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n cross_sell_usage_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "winback_usage_revenue": {"name": "winback_usage_revenue", "description": "IF is_winback = 1:\n winback_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n winback_usage_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_usage_revenue": {"name": "decreased_usage_revenue", "description": "IF is_decreased_usage_revenue = 1:\n decreased_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n decreased_usage_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_usage_revenue": {"name": "increased_usage_revenue", "description": "IF is_increased_usage_revenue = 1:\n increased_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n increased_usage_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_revenue_in_usd": {"name": "closing_usage_revenue_in_usd", "description": "The usage-based revenue at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_usage_revenue": {"name": "delta_usage_revenue", "description": "delta_usage_revenue = closing_usage_revenue - opening_usage_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "consolidated_new_usage_revenue": {"name": "consolidated_new_usage_revenue", "description": "The SUM of the new Usage Revenue components including:\n 1. New Usage Revenue\n 2. Winback Usage Revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_usage_revenue_movement": {"name": "upgrade_to_full_service_usage_revenue_movement", "description": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_usage_revenue_movement = opening_usage_revenue\nELSE\n upgrade_to_full_service_usage_revenue_movement = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_delta_usage_revenue": {"name": "upgrade_to_full_service_delta_usage_revenue", "description": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n upgrade_to_full_service_delta_usage_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "downgrade_to_self_service_usage_revenue_movement": {"name": "downgrade_to_self_service_usage_revenue_movement", "description": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_usage_revenue_movement = opening_usage_revenue\nELSE\n downgrade_to_self_service_usage_revenue_movement = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "downgrade_to_self_service_delta_usage_revenue": {"name": "downgrade_to_self_service_delta_usage_revenue", "description": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n downgrade_to_self_service_delta_usage_revenue = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "same_service_decreased_usage_revenue": {"name": "same_service_decreased_usage_revenue", "description": "IF(is_decreased_usage_revenue = 1 AND is_same_service = 1,delta_usage_revenue,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "same_service_increased_usage_revenue": {"name": "same_service_increased_usage_revenue", "description": "IF(is_increased_usage_revenue = 1 AND is_same_service = 1,delta_usage_revenue,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_in_usd": {"name": "opening_usage_in_usd", "description": "The usage at the end of previous month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage amount w/o takeing into account free credits.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_in_usd": {"name": "closing_usage_in_usd", "description": "The usage at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage amount w/o takeing into account free credits.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_usage": {"name": "delta_usage", "description": "delta_usage = closing_usage - opening_usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_l12m_avg_usage_in_usd": {"name": "opening_l12m_avg_usage_in_usd", "description": "Last 12 months average of opening_usage_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_l12m_avg_usage_in_usd": {"name": "closing_l12m_avg_usage_in_usd", "description": "Last 12 months average of closing_usage_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_l12m_avg_usage": {"name": "delta_l12m_avg_usage", "description": "delta_l12m_avg_usage = closing_l12m_avg_usage - opening_l12m_avg_usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_utilized_free_credits_in_usd": {"name": "opening_utilized_free_credits_in_usd", "description": "Estimated utilized free credits at the end of previous month (relevant only to SMS & Email).\n\n utilized_free_credits = usage_revenue-usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_utilized_free_credits_in_usd": {"name": "closing_utilized_free_credits_in_usd", "description": "Estimated utilized free credits at the end of month (relevant only to SMS & Email).\n\n utilized_free_credits = usage_revenue-usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_utilized_free_credits": {"name": "delta_utilized_free_credits", "description": "delta_utilized_free_credits = closing_utilized_free_credits - opening_utilized_free_credits", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_l12m_avg_utilized_free_credits_in_usd": {"name": "opening_l12m_avg_utilized_free_credits_in_usd", "description": "Last 12 months average of opening_utilized_free_credits_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_l12m_avg_utilized_free_credits_in_usd": {"name": "closing_l12m_avg_utilized_free_credits_in_usd", "description": "Last 12 months average of closing_utilized_free_credits_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_l12m_avg_utilized_free_credits": {"name": "delta_l12m_avg_utilized_free_credits", "description": "delta_l12m_avg_utilized_free_credits = closing_l12m_avg_utilized_free_credits - opening_l12m_avg_utilized_free_credits", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_is_paid_product": {"name": "opening_is_paid_product", "description": "Indicates if the organization is considered as paying customer for the specific product at the end of the previous month.\n\nIF(opening_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_paid_product": {"name": "closing_is_paid_product", "description": "Indicates if the organization paid for the specific product at the end of the month.\n\nIF(closing_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_paying_organization": {"name": "opening_is_paying_organization", "description": "Indicates if the organization paid for at least one product at the end of previous month.\n\nIF(opening_organization_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_paying_organization": {"name": "closing_is_paying_organization", "description": "Indicates if the organization paid for at least one product at the end of the month.\n\nIF(closing_organization_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost": {"name": "is_lost", "description": "If product is classified as Lost, it means that the customer paid for the product last month and stopped this month.\nIn more technical terms, product is categorized as Lost (is_lost = 1) if:\n 1. closing_revenue_for_cohorts = 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. is_lost_after_won = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_law_lost": {"name": "is_law_lost", "description": "If product is classified as LAW Lost, it means that we recognized revenue for the customer last month and stopped recognizing this month due to LAW.\nIn more technical terms, product is categorized as Lost (is_law_lost = 1) if:\n 1. closing_revenue_for_cohorts = 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. is_lost_after_won = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_usage_leftover": {"name": "is_lost_usage_leftover", "description": "Lost usage leftovers can be caused for 2 reasons:\n 1. UGC/Loyalty overages during cancelation month:\n UGC/Loyalty customers are considered lost if they stopped paying SaaS fees, but there are cases where customers \n reached their limit and paid for overages during their cancelation month causing the closing usage revenue to be positive.\n In the following month the opening revenue will be positive while the closing will be zero, therefore creating a negative delta.\n We classify this MoM change as \"lost_usage_leftover\".\n 2. Usage MRR calculation method:\n Since we are calculate usage MRR by the last 12 months moving average with no regard if the customer had usage revenue\n in a specific month or not, it cause cases where we keep recognizing usage MRR for already lost customers.\n In those cases, the MRR will decline gradually (until there will be 12 months stright w/o usage revenue). We classify this\n MoM change as \"lost_usage_leftover\".\nIn more technical terms, is_lost_usage_leftover = 1 if:\n 1. closing_revenue_for_cohorts = 0\n AND\n 2. opening_revenue_for_cohorts = 0\n AND\n 3. delta_usage_revenue <> 0 OR delta_usage_mrr <> 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_new": {"name": "is_new", "description": "If product is classified as New, it means that the customer wasn't yotpo's paying customer last month at all (or if it's part of staggered subscription)\nand this month he started paying for the new product, under the condition that this product is not a winback (see is_winback description for more info).\nIn more technical terms, product is categorized as New (is_new = 1) if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts = 0\n AND\n 3. It's the customer's first ever month with the product OR months_since_last_paying_month > 6 (not winback)\n AND\n 4. The customer didn't have opening_revenue_for_cohorts for any product (wasn't Yotpo's paying customer last month)\n OR\n It's part of staggered subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_cross_sell": {"name": "is_cross_sell", "description": "If product is classified as Cross Sell, it means that the customer was already yotpo's paying customer last month (paid for another products)\nand this month he started paying for the new product, under the condition that this product is not a winback (see is_winback description for more info).\nIn more technical terms, product is categorized as Cross Sell (is_cross_sell = 1) if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts = 0\n AND\n 3. It's the customer's first ever month with the product OR months_since_last_paying_month > 6 (not winback)\n AND\n 4. The customer had opening_revenue_for_cohorts for at least one other product (was Yotpo's customer last month)\n AND\n 5. It's not part of staggered subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_winback": {"name": "is_winback", "description": "If product is classified as Winback, it means that the customer didn't pay for the product last month but\ndid pay in the last 6 months (this threshold is controlled by the winback_threshold at the start of the SQL query).\nIn more technical terms, product is categorized as Winback (is_winback = 1) if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts = 0\n AND\n 3. months_since_last_paying_month <= 6 (winback_threshold)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_upgrade_to_full_service": {"name": "is_upgrade_to_full_service", "description": "Indicates if a customer started the month with self service plan (on product level) and finished with full service plan.\nIn more technical terms, is_downgrade_to_self_service = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. opening_is_full_service = 0\n AND\n 4. closing_is_full_service = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_downgrade_to_self_service": {"name": "is_downgrade_to_self_service", "description": "Indicates if a customer started the month with full service plan (on product level) and finished with self service plan.\nIn more technical terms, is_downgrade_to_self_service = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. opening_is_full_service = 1\n AND\n 4. closing_is_full_service = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_same_service": {"name": "is_same_service", "description": "Indicates if customer kept his service level MoM (must be paying customer last month and current month).\nIn more technical terms, is_same_service = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. opening_is_full_service = closing_is_full_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_decreased_mrr": {"name": "is_decreased_mrr", "description": "Indicates if the MRR (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_mrr < opening_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_increased_mrr": {"name": "is_increased_mrr", "description": "Indicates if the MRR (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_mrr > opening_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_unchanged_mrr": {"name": "is_unchanged_mrr", "description": "Indicates if the MRR remained the same MoM.\nIn more technical terms, is_unchanged_mrr = 1 if:\n 1. closing_mrr = opening_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_decreased_usage_mrr": {"name": "is_decreased_usage_mrr", "description": "Indicates if the usage MRR (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_usage_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_mrr < opening_usage_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_increased_usage_mrr": {"name": "is_increased_usage_mrr", "description": "Indicates if the usage MRR (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_usage_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_mrr > opening_usage_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_unchanged_usage_mrr": {"name": "is_unchanged_usage_mrr", "description": "Indicates if the usage_mrr remained the same MoM.\nIn more technical terms, is_unchanged_usage_mrr = 1 if:\n 1. closing_usage_mrr = opening_usage_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_decreased_saas_mrr": {"name": "is_decreased_saas_mrr", "description": "Indicates if the SaaS MRR (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_saas_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_saas_mrr < opening_saas_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_increased_saas_mrr": {"name": "is_increased_saas_mrr", "description": "Indicates if the SaaS MRR (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_saas_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_saas_mrr > opening_saas_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_unchanged_saas_mrr": {"name": "is_unchanged_saas_mrr", "description": "Indicates if the saas_mrr remained the same MoM.\nIn more technical terms, is_unchanged_saas_mrr = 1 if:\n 1. closing_saas_mrr = opening_saas_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_decreased_free_month_mrr_impact": {"name": "is_decreased_free_month_mrr_impact", "description": "Indicates if the impact of free months decreased MoM (causing the SaaS MRR to increase).\nThis can mainly happens during renewals and can help us understand if the SaaS MRR of a customer\nhas increased because he was upgraded or just because he renewed to a contract w/o free months\nFor example:\n let's say a customer renewed (at the same rate) a 12 month contract worth $12k and during the expired contract\n he got 2 free months unlike the renewed contract where he got none.\n The SaaS MRR of the expired contract is $875 = $12K/(12+2); Free month MRR impact = -$125\n while the SaaS MRR of the new contract is $1000 = $12K/(12); Free month MRR impact = $0\n Therefore the SaaS MRR increased by $125 because the free months impact decreased by $125.\n In that case the indicator will be equal to 1.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_increased_free_month_mrr_impact": {"name": "is_increased_free_month_mrr_impact", "description": "Indicates if the impact of free months increased MoM (causing the SaaS MRR to decrease).\nThis can mainly happens when a customer get free months in the middle of a contract or during renewals\nand can help us understand if the SaaS MRR of a customer has decreased because he was downgraded or due to free months.\nFor example:\n let's say a customer renewed (at the same rate) a 12 month contract worth $12k and during the renewal contract\n he got 2 free months unlike the expired contract where he got none.\n The SaaS MRR of the expired contract is $1000 = $12K/(12); Free month MRR impact = $0\n while the SaaS MRR of the new contract is $875 = $12K/(12+2); Free month MRR impact = -$125\n Therefore the SaaS MRR decreased by $125 because the free months impact increased by -$125.\n In that case the indicator will be equal to 1.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_unchanged_free_month_mrr_impact": {"name": "is_unchanged_free_month_mrr_impact", "description": "Indicates if the free_month_mrr_impact remained the same MoM.\nIn more technical terms, is_unchanged_free_month_mrr_impact = 1 if:\n 1. closing_free_month_mrr_impact = opening_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_decreased_original_saas_mrr": {"name": "is_decreased_original_saas_mrr", "description": "Indicates if the original SaaS MRR (SaaS MRR W/O free months impact) decreased MoM.\nSaaS MRR W/O free months impact is basically the contractual SaaS MRR.\nThis can mainly happens during renewals and can help us understand if the SaaS MRR of a customer\nhas decreased because he was downgraded or just because he renewed to a contract with higher free months impact.\nFor example:\n let's say a customer renewed a contract with the following details:\n Expired contract: 12 month contract worth $12k + 2 free months.\n Renewed contract: 12 month contract worth $11k w/o free months.\n The SaaS MRR of the expired contract is $875 = $12K/(12+2); Free month MRR impact = -$125\n while the SaaS MRR of the new contract is $917 = $11K/(12); Free month MRR impact = $0\n Therefore:\n 1.The original SaaS MRR decreased by -$83 = $917 - $1000\n 2.The free months impact decreased (positive) by $125 = $0-(-$125)\n 3.The SaaS MRR increased by $42 = $917 - $875 because the free months impact decreased more than the original SaaS MRR decreased.\n In that case the indicator will be equal to 1.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_increased_original_saas_mrr": {"name": "is_increased_original_saas_mrr", "description": "Indicates if the original SaaS MRR (SaaS MRR W/O free months impact) increased MoM.\nSaaS MRR W/O free months impact is basically the contractual SaaS MRR.\nThis can mainly happens during renewals and can help us understand if the SaaS MRR of a customer\nhas increased because he was upgraded or just because he renewed to a contract with lower free months impact.\nFor example:\n let's say a customer renewed a contract with the following details:\n Expired contract: 12 month contract worth $11k w/o free months.\n Renewed contract: 12 month contract worth $12k + 2 free months.\n The SaaS MRR of the expired contract is $917 = $11K/(12); Free month MRR impact = $0\n while the SaaS MRR of the new contract is $875 = $12K/(12+2); Free month MRR impact = -$125\n Therefore:\n 1.The original SaaS MRR increased by $83 = $1000 - $917\n 2.The free months impact increased (negative) by -$125 = -$125 - $0\n 3.The SaaS MRR decreased by -$42 = $875 - $917 because the free months impact increased more than the original SaaS MRR increased.\n In that case the indicator will be equal to 1.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_unchanged_original_saas_mrr": {"name": "is_unchanged_original_saas_mrr", "description": "Indicates if the original_saas_mrr remained the same MoM.\nIn more technical terms, is_unchanged_original_saas_mrr = 1 if:\n 1. closing_original_saas_mrr = opening_original_saas_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_decreased_revenue": {"name": "is_decreased_revenue", "description": "Indicates if the revenue (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_revenue = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_revenue < opening_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_increased_revenue": {"name": "is_increased_revenue", "description": "Indicates if the revenue (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_revenue = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_revenue > opening_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_unchanged_revenue": {"name": "is_unchanged_revenue", "description": "Indicates if the revenue remained the same MoM.\nIn more technical terms, is_unchanged_revenue = 1 if:\n 1. closing_revenue = opening_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_decreased_usage_revenue": {"name": "is_decreased_usage_revenue", "description": "Indicates if the usage revenue (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_usage_revenue = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_revenue < opening_usage_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_increased_usage_revenue": {"name": "is_increased_usage_revenue", "description": "Indicates if the usage revenue (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_usage_revenue = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_revenue > opening_usage_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_unchanged_usage_revenue": {"name": "is_unchanged_usage_revenue", "description": "Indicates if the usage_revenue remained the same MoM.\nIn more technical terms, is_unchanged_usage_revenue = 1 if:\n 1. closing_usage_revenue = opening_usage_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_decreased_pro_rated_mrr": {"name": "is_decreased_pro_rated_mrr", "description": "Indicates if the pro-rated MRR (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_pro_rated_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_pro_rated_mrr < opening_pro_rated_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_increased_pro_rated_mrr": {"name": "is_increased_pro_rated_mrr", "description": "Indicates if the pro-rated MRR (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_pro_rated_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_pro_rated_mrr > opening_pro_rated_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_unchanged_pro_rated_mrr": {"name": "is_unchanged_pro_rated_mrr", "description": "Indicates if the pro_rated_mrr remained the same MoM.\nIn more technical terms, is_unchanged_pro_rated_mrr = 1 if:\n 1. closing_pro_rated_mrr = opening_pro_rated_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_decreased_usage_pro_rated_mrr": {"name": "is_decreased_usage_pro_rated_mrr", "description": "Indicates if the usage pro-rated MRR (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_usage_pro_rated_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_pro_rated_mrr < opening_usage_pro_rated_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_increased_usage_pro_rated_mrr": {"name": "is_increased_usage_pro_rated_mrr", "description": "Indicates if the usage pro-rated MRR (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_usage_pro_rated_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_pro_rated_mrr > opening_usage_pro_rated_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_unchanged_usage_pro_rated_mrr": {"name": "is_unchanged_usage_pro_rated_mrr", "description": "Indicates if the usage_pro_rated_mrr remained the same MoM.\nIn more technical terms, is_unchanged_usage_pro_rated_mrr = 1 if:\n 1. closing_usage_pro_rated_mrr = opening_usage_pro_rated_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_self_service": {"name": "opening_is_self_service", "description": "Indicates if the plan was self-service at the beginning of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_self_service": {"name": "closing_is_self_service", "description": "Indicates if the plan was self-service at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_full_service": {"name": "opening_is_full_service", "description": "Indicates if the plan was full-service at the beginning of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_full_service": {"name": "closing_is_full_service", "description": "Indicates if the plan was full-service at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_annual_billing": {"name": "opening_is_annual_billing", "description": "Indicates if the plan was billed annually at the beginning of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_annual_billing": {"name": "closing_is_annual_billing", "description": "Indicates if the plan was billed annually at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_self_service_organization": {"name": "opening_is_self_service_organization", "description": "Indicates if the organization had no full-service product and at least one self-service product at the end of previous month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_self_service_organization": {"name": "closing_is_self_service_organization", "description": "Indicates if the organization had no full-service product and at least one self-service product at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_full_service_organization": {"name": "opening_is_full_service_organization", "description": "Indicates if the organization had at least one full-service product at the end of previous month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_full_service_organization": {"name": "closing_is_full_service_organization", "description": "Indicates if the organization had at least one full-service product at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc": {"name": "is_ugc", "description": "Indicates if the record's product is UGC.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "Indicates if the record's product is Loyalty.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "Indicates if the record's product is SMS.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "Indicates if the record's product is Email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "Indicates if the record's product is Subscriptions.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_in_term_renewal": {"name": "is_in_term_renewal", "description": "Indicates if the renewal_opportunity_type = 'In Term Renewal'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "indicates if the subscription is lost after won or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "Indicates if the subscription is staggered (different start dates for different products under the same subscription).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ss_mrr_cycle": {"name": "is_ss_mrr_cycle", "description": "Indicates if the record needs to be included in the self-service MRR cycle.\nFor a record to be included in the self-service MRR cycle, it must meet at least one of the following criteria:\n 1. opening_is_self_service = 1 AND opening_mrr > 0\n OR\n 2. closing_is_self_service = 1 AND closing_mrr > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ss_revenue_cycle": {"name": "is_ss_revenue_cycle", "description": "Indicates if the record needs to be included in the self-service revenue cycle.\nFor a record to be included in the self-service revenue cycle, it must meet at least one of the following criteria:\n 1. opening_is_self_service = 1 AND opening_revenue > 0\n OR\n 2. closing_is_self_service = 1 AND closing_revenue > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_remain_ss": {"name": "is_remain_ss", "description": "Indicates if opening_is_self_service = 1 AND closing_is_self_service = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_inflow_ss": {"name": "is_inflow_ss", "description": "Indicates if opening_is_self_service = 0 AND closing_is_self_service = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_outflow_ss": {"name": "is_outflow_ss", "description": "Indicates if opening_is_self_service = 1 AND closing_is_self_service = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_fs_mrr_cycle": {"name": "is_fs_mrr_cycle", "description": "Indicates if the record needs to be included in the full-service MRR cycle.\nFor a record to be included in the full-service MRR cycle, it must meet at least one of the following criteria:\n 1. opening_is_full_service = 1 AND opening_mrr > 0\n OR\n 2. closing_is_full_service = 1 AND closing_mrr > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_fs_revenue_cycle": {"name": "is_fs_revenue_cycle", "description": "Indicates if the record needs to be included in the full-service Revenue cycle.\nFor a record to be included in the full-service revenue cycle, it must meet at least one of the following criteria:\n 1. opening_is_full_service = 1 AND opening_revenue > 0\n OR\n 2. closing_is_full_service = 1 AND closing_revenue > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_remain_fs": {"name": "is_remain_fs", "description": "Indicates if opening_is_full_service = 1 AND closing_is_full_service = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_inflow_fs": {"name": "is_inflow_fs", "description": "Indicates if opening_is_full_service = 0 AND closing_is_full_service = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_outflow_fs": {"name": "is_outflow_fs", "description": "Indicates if opening_is_full_service = 1 and closing_is_full_service = 1 or the product was lost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "product_cohort_number": {"name": "product_cohort_number", "description": "The paid cohort number of the product (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the product.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "product_months_since_last_paid_month": {"name": "product_months_since_last_paid_month", "description": "Number of months since last paid month (on product level), based on closing_revenue_for_cohorts.\n 1. For first ever paid month OR months w/o closing_revenue_for_cohorts the value will be NULL\n 2. For new cohort's first month the value will be greater than 1 and will tell us how many months passed since the previous cohort ended.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_month_number_since_current_cohort": {"name": "product_month_number_since_current_cohort", "description": "The number of months since the current product paid cohort started (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the product.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_month_number_since_first_cohort": {"name": "product_month_number_since_first_cohort", "description": "The number of months since the first product paid cohort started (based on closing_revenue_for_cohorts).\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_cohort_number": {"name": "organization_cohort_number", "description": "The paid cohort number of the organization (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the organization.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "organization_months_since_last_paid_month": {"name": "organization_months_since_last_paid_month", "description": "Number of months since last paid month (on organization level), based on closing_revenue_for_cohorts.\n 1. For first ever paid month OR months w/o closing_revenue_for_cohorts the value will be NULL\n 2. For new cohort's first month the value will be greater than 1 and will tell us how many months passed since the previous cohort ended.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_month_number_since_current_cohort": {"name": "organization_month_number_since_current_cohort", "description": "The number of months since the current organization paid cohort started (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the organization.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_month_number_since_first_cohort": {"name": "organization_month_number_since_first_cohort", "description": "The number of months since the first organization paid cohort started (based on closing_revenue_for_cohorts).\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_pro_rated_mrr_in_usd": {"name": "opening_pro_rated_mrr_in_usd", "description": "The pro-rated Monthly Recurring Revenue (MRR) at the beginning of the month in USD.\n\nFor more info go to the closing_pro_rated_mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_usage_leftover_pro_rated_mrr": {"name": "lost_usage_leftover_pro_rated_mrr", "description": "IF is_lost_usage_leftover = 1:\n lost_usage_leftover_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n lost_usage_leftover_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_pro_rated_mrr": {"name": "lost_pro_rated_mrr", "description": "IF is_lost = 1:\n lost_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n lost_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_pro_rated_mrr": {"name": "new_pro_rated_mrr", "description": "IF is_new = 1:\n new_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n new_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cross_sell_pro_rated_mrr": {"name": "cross_sell_pro_rated_mrr", "description": "IF is_cross_sell = 1:\n cross_sell_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n cross_sell_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "winback_pro_rated_mrr": {"name": "winback_pro_rated_mrr", "description": "IF is_winback = 1:\n winback_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n winback_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_pro_rated_mrr": {"name": "decreased_pro_rated_mrr", "description": "IF is_decreased_pro_rated_mrr = 1:\n decreased_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n decreased_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_pro_rated_mrr": {"name": "increased_pro_rated_mrr", "description": "IF is_increased_pro_rated_mrr = 1:\nincreased_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\nincreased_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_pro_rated_mrr_in_usd": {"name": "closing_pro_rated_mrr_in_usd", "description": "The pro-rated Monthly Recurring Revenue (MRR) at the end of the month in USD.\n\nContains two types:\n\n 1. SaaS MRR (same as the regular MRR) - for:\n\n 1.1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 1.2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)\n\n 2. Usage MRR - for:\n\n 2.1 Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2.2 ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_pro_rated_mrr": {"name": "delta_pro_rated_mrr", "description": "delta_pro_rated_mrr = closing_pro_rated_mrr - opening_pro_rated_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "consolidated_new_pro_rated_mrr": {"name": "consolidated_new_pro_rated_mrr", "description": "The SUM of the new pro-rated MRR components including:\n 1. New pro-rated MRR\n 2. Winback pro-rated MRR\n 3. LAW Lost pro-rated MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_pro_rated_mrr_movement": {"name": "upgrade_to_full_service_pro_rated_mrr_movement", "description": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_pro_rated_mrr_movement = opening_pro_rated_mrr\nELSE\n upgrade_to_full_service_pro_rated_mrr_movement = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_delta_pro_rated_mrr": {"name": "upgrade_to_full_service_delta_pro_rated_mrr", "description": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n upgrade_to_full_service_delta_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "downgrade_to_self_service_pro_rated_mrr_movement": {"name": "downgrade_to_self_service_pro_rated_mrr_movement", "description": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_pro_rated_mrr_movement = opening_pro_rated_mrr\nELSE\n downgrade_to_self_service_pro_rated_mrr_movement = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "downgrade_to_self_service_delta_pro_rated_mrr": {"name": "downgrade_to_self_service_delta_pro_rated_mrr", "description": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n downgrade_to_self_service_delta_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "same_service_decreased_pro_rated_mrr": {"name": "same_service_decreased_pro_rated_mrr", "description": "IF(is_decreased_pro_rated_mrr = 1 AND is_same_service = 1,delta_pro_rated_mrr,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "same_service_increased_pro_rated_mrr": {"name": "same_service_increased_pro_rated_mrr", "description": "IF(is_increased_pro_rated_mrr = 1 AND is_same_service = 1,delta_pro_rated_mrr,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_pro_rated_mrr_in_usd": {"name": "opening_usage_pro_rated_mrr_in_usd", "description": "Only the Usage component of the pro-rated MRR at the end of previous month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_usage_pro_rated_mrr": {"name": "lost_usage_pro_rated_mrr", "description": "IF is_lost = 1:\n lost_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n lost_usage_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_usage_pro_rated_mrr": {"name": "new_usage_pro_rated_mrr", "description": "IF is_new = 1:\n new_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n new_usage_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cross_sell_usage_pro_rated_mrr": {"name": "cross_sell_usage_pro_rated_mrr", "description": "IF is_cross_sell = 1:\n cross_sell_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n cross_sell_usage_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "winback_usage_pro_rated_mrr": {"name": "winback_usage_pro_rated_mrr", "description": "IF is_winback = 1:\n winback_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n winback_usage_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decreased_usage_pro_rated_mrr": {"name": "decreased_usage_pro_rated_mrr", "description": "IF is_decreased_usage_pro_rated_mrr = 1:\n decreased_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n decreased_usage_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increased_usage_pro_rated_mrr": {"name": "increased_usage_pro_rated_mrr", "description": "IF is_increased_usage_pro_rated_mrr = 1:\n increased_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n increased_usage_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_pro_rated_mrr_in_usd": {"name": "closing_usage_pro_rated_mrr_in_usd", "description": "Only the Usage component of the pro-rated MRR at the end of the month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_usage_pro_rated_mrr": {"name": "delta_usage_pro_rated_mrr", "description": "delta_usage_pro_rated_mrr = closing_usage_pro_rated_mrr - opening_usage_pro_rated_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "consolidated_new_usage_pro_rated_mrr": {"name": "consolidated_new_usage_pro_rated_mrr", "description": "The SUM of the new Usage pro-rated MRR components including:\n 1. New Usage pro-rated MRR\n 2. Winback Usage pro-rated MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_usage_pro_rated_mrr_movement": {"name": "upgrade_to_full_service_usage_pro_rated_mrr_movement", "description": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_usage_pro_rated_mrr_movement = opening_usage_pro_rated_mrr\nELSE\n upgrade_to_full_service_usage_pro_rated_mrr_movement = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upgrade_to_full_service_delta_usage_pro_rated_mrr": {"name": "upgrade_to_full_service_delta_usage_pro_rated_mrr", "description": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n upgrade_to_full_service_delta_usage_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "downgrade_to_self_service_usage_pro_rated_mrr_movement": {"name": "downgrade_to_self_service_usage_pro_rated_mrr_movement", "description": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_usage_pro_rated_mrr_movement = opening_usage_pro_rated_mrr\nELSE\n downgrade_to_self_service_usage_pro_rated_mrr_movement = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "downgrade_to_self_service_delta_usage_pro_rated_mrr": {"name": "downgrade_to_self_service_delta_usage_pro_rated_mrr", "description": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n downgrade_to_self_service_delta_usage_pro_rated_mrr = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "same_service_decreased_usage_pro_rated_mrr": {"name": "same_service_decreased_usage_pro_rated_mrr", "description": "IF(is_decreased_usage_pro_rated_mrr = 1 AND is_same_service = 1,delta_usage_pro_rated_mrr,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "same_service_increased_usage_pro_rated_mrr": {"name": "same_service_increased_usage_pro_rated_mrr", "description": "IF(is_increased_usage_pro_rated_mrr = 1 AND is_same_service = 1,delta_usage_pro_rated_mrr,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ss_migration_mrr": {"name": "ss_migration_mrr", "description": "self-service ARR cycle helper:\nMRR that moved into and out of the segment.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ss_migration_saas_mrr": {"name": "ss_migration_saas_mrr", "description": "self-service ARR cycle helper:\nSaaS MRR that moved into and out of the segment.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ss_migration_usage_mrr": {"name": "ss_migration_usage_mrr", "description": "self-service ARR cycle helper:\nUsage MRR that moved into and out of the segment.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ss_delta_usage_mrr": {"name": "ss_delta_usage_mrr", "description": "self-service ARR cycle helper:\n delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ss_overages_delta_usage_mrr": {"name": "ss_overages_delta_usage_mrr", "description": "self-service ARR cycle helper:\n overages_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = UGC or Loyalty\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ss_negative_overages_delta_usage_mrr": {"name": "ss_negative_overages_delta_usage_mrr", "description": "self-service ARR cycle helper:\n negative_overages_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = UGC or Loyalty\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)\n 3. delta_usage_mrr < 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ss_usage_products_delta_usage_mrr": {"name": "ss_usage_products_delta_usage_mrr", "description": "self-service ARR cycle helper:\n usage_products_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = SMS or Email or Subscriptions\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ss_communications_delta_usage_mrr": {"name": "ss_communications_delta_usage_mrr", "description": "self-service ARR cycle helper:\n communications_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ss_communications_delta_l12m_usage": {"name": "ss_communications_delta_l12m_usage", "description": "Self-service ARR cycle helper:\n communications_delta_l12m_usage = delta_l12m_avg_usage*12\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ss_communications_delta_l12m_utilized_free_credits": {"name": "ss_communications_delta_l12m_utilized_free_credits", "description": "self-service ARR cycle helper:\n communications_delta_l12m_utilized_free_credits = delta_l12m_avg_utilized_free_credits*12\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ss_subscriptions_delta_usage_mrr": {"name": "ss_subscriptions_delta_usage_mrr", "description": "self-service ARR cycle helper:\n subscriptions_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = Subscriptions\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fs_migration_mrr": {"name": "fs_migration_mrr", "description": "Full-service ARR cycle helper:\nMRR that moved into and out of the segment.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fs_migration_saas_mrr": {"name": "fs_migration_saas_mrr", "description": "full-service ARR cycle helper:\nSaaS MRR that moved into and out of the segment.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fs_migration_usage_mrr": {"name": "fs_migration_usage_mrr", "description": "full-service ARR cycle helper:\nUsage MRR that moved into and out of the segment.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fs_delta_usage_mrr": {"name": "fs_delta_usage_mrr", "description": "full-service ARR cycle helper:\n delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fs_overages_delta_usage_mrr": {"name": "fs_overages_delta_usage_mrr", "description": "full-service ARR cycle helper:\n overages_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = UGC or Loyalty\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fs_negative_overages_delta_usage_mrr": {"name": "fs_negative_overages_delta_usage_mrr", "description": "full-service ARR cycle helper:\n negative_overages_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = UGC or Loyalty\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)\n 3. delta_usage_mrr < 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fs_usage_products_delta_usage_mrr": {"name": "fs_usage_products_delta_usage_mrr", "description": "full-service ARR cycle helper:\n usage_products_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = SMS or Email or Subscriptions\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fs_communications_delta_usage_mrr": {"name": "fs_communications_delta_usage_mrr", "description": "Full-service ARR cycle helper:\n communications_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fs_communications_delta_l12m_usage": {"name": "fs_communications_delta_l12m_usage", "description": "Full-service ARR cycle helper:\n communications_delta_l12m_usage = delta_l12m_avg_usage*12\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fs_communications_delta_l12m_utilized_free_credits": {"name": "fs_communications_delta_l12m_utilized_free_credits", "description": "Full-service ARR cycle helper:\n communications_delta_l12m_utilized_free_credits = delta_l12m_avg_utilized_free_credits*12\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fs_subscriptions_delta_usage_mrr": {"name": "fs_subscriptions_delta_usage_mrr", "description": "Full-service ARR cycle helper:\n subscriptions_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = Subscriptions\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082636.8819668, "relation_name": "dev_dkruh1.analytics___finance__organization_product_revenue_metrics_monthly", "raw_code": "{%- set winback_threshold = 6 -%}\n\n-- Import --\n\nWITH import_organization_product_revenue_monthly AS (\nSELECT *\nFROM {{ ref('analytics___finance__organization_product_revenue_monthly') }}\n{% if target.name == 'dev' %}\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n{% endif %}\n),\n\n-- Logic --\n\norganization_product_revenue_monthly_modeled AS (\nSELECT \n organization_product_month_id,\n organization_key,\n product_family_group,\n month,\n opening_plan_name,\n closing_plan_name,\n opening_plan_group,\n closing_plan_group,\n subscription_start_date,\n subscription_end_date,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n NVL(closing_mrr_in_usd,0) - NVL(opening_mrr_in_usd,0) AS delta_mrr,\n opening_saas_mrr_in_usd,\n closing_saas_mrr_in_usd,\n NVL(closing_saas_mrr_in_usd,0) - NVL(opening_saas_mrr_in_usd,0) AS delta_saas_mrr,\n opening_usage_mrr_in_usd,\n closing_usage_mrr_in_usd,\n NVL(closing_usage_mrr_in_usd,0) - NVL(opening_usage_mrr_in_usd,0) AS delta_usage_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n (NVL(opening_saas_mrr_in_usd,0) - NVL(opening_free_month_mrr_impact,0)) AS opening_original_saas_mrr_in_usd,\n (NVL(closing_saas_mrr_in_usd,0) - NVL(closing_free_month_mrr_impact,0)) AS closing_original_saas_mrr_in_usd,\n (NVL(closing_saas_mrr_in_usd,0) - NVL(closing_free_month_mrr_impact,0)) - (NVL(opening_saas_mrr_in_usd,0) - NVL(opening_free_month_mrr_impact,0)) AS delta_original_saas_mrr,\n opening_revenue_in_usd,\n closing_revenue_in_usd,\n NVL(closing_revenue_in_usd,0) - NVL(opening_revenue_in_usd,0) AS delta_revenue,\n opening_usage_revenue_in_usd,\n closing_usage_revenue_in_usd,\n NVL(closing_usage_revenue_in_usd,0) - NVL(opening_usage_revenue_in_usd,0) AS delta_usage_revenue,\n opening_pro_rated_mrr_in_usd,\n closing_pro_rated_mrr_in_usd,\n NVL(closing_pro_rated_mrr_in_usd,0) - NVL(opening_pro_rated_mrr_in_usd,0) AS delta_pro_rated_mrr,\n opening_usage_pro_rated_mrr_in_usd,\n closing_usage_pro_rated_mrr_in_usd,\n NVL(closing_usage_pro_rated_mrr_in_usd,0) - NVL(opening_usage_pro_rated_mrr_in_usd,0) AS delta_usage_pro_rated_mrr,\n opening_usage_in_usd,\n closing_usage_in_usd,\n NVL(closing_usage_in_usd,0) - NVL(opening_usage_in_usd,0) AS delta_usage,\n opening_l12m_avg_usage_in_usd,\n closing_l12m_avg_usage_in_usd,\n NVL(closing_l12m_avg_usage_in_usd,0) - NVL(opening_l12m_avg_usage_in_usd,0) AS delta_l12m_avg_usage,\n opening_utilized_free_credits_in_usd,\n closing_utilized_free_credits_in_usd,\n NVL(closing_utilized_free_credits_in_usd,0) - NVL(opening_utilized_free_credits_in_usd,0) AS delta_utilized_free_credits,\n opening_l12m_avg_utilized_free_credits_in_usd,\n closing_l12m_avg_utilized_free_credits_in_usd,\n NVL(closing_l12m_avg_utilized_free_credits_in_usd,0) - NVL(opening_l12m_avg_utilized_free_credits_in_usd,0) AS delta_l12m_avg_utilized_free_credits,\n NVL(opening_revenue_for_cohorts,0) AS opening_revenue_for_cohorts,\n NVL(closing_revenue_for_cohorts,0) AS closing_revenue_for_cohorts,\n NVL(opening_organization_revenue_for_cohorts,0) AS opening_organization_revenue_for_cohorts,\n NVL(closing_organization_revenue_for_cohorts,0) AS closing_organization_revenue_for_cohorts,\n opening_is_paid_product,\n closing_is_paid_product,\n opening_is_self_service,\n closing_is_self_service,\n opening_is_full_service,\n closing_is_full_service,\n opening_is_paying_organization,\n closing_is_paying_organization,\n opening_is_self_service_organization,\n closing_is_self_service_organization,\n opening_is_full_service_organization,\n closing_is_full_service_organization,\n IF(NVL(opening_is_full_service,0) = NVL(closing_is_full_service,0),1,0) AS is_same_full_service,\n opening_is_annual_billing,\n closing_is_annual_billing,\n NVL(is_in_term_renewal,0) AS is_in_term_renewal,\n NVL(is_lost_after_won,0) AS is_lost_after_won,\n NVL(is_staggered_subscription,0) AS is_staggered_subscription,\n product_cohort_number,\n product_months_since_last_paid_month,\n product_month_number_since_current_cohort,\n product_month_number_since_first_cohort,\n organization_cohort_number,\n organization_months_since_last_paid_month,\n organization_month_number_since_current_cohort,\n organization_month_number_since_first_cohort,\n is_ugc,\n is_loyalty,\n is_sms,\n is_email,\n is_subscriptions,\n SMALLINT(NVL(opening_is_self_service,0)*NVL(opening_mrr_in_usd,0) > 0 \n OR \n NVL(closing_is_self_service,0)*NVL(closing_mrr_in_usd,0) > 0) AS is_ss_mrr_cycle,\n SMALLINT(NVL(opening_is_self_service,0)*NVL(opening_revenue_in_usd,0) > 0 \n OR \n NVL(closing_is_self_service,0)*NVL(closing_revenue_in_usd,0) > 0) AS is_ss_revenue_cycle,\n SMALLINT(NVL(opening_is_self_service,0) = 1 AND NVL(closing_is_self_service,0) = 1) AS is_remain_ss,\n SMALLINT(NVL(opening_is_self_service,0) = 0 AND NVL(closing_is_self_service,0) = 1) AS is_inflow_ss,\n SMALLINT(NVL(opening_is_self_service,0) = 1 AND NVL(closing_is_self_service,0) = 0) AS is_outflow_ss,\n SMALLINT(NVL(opening_is_full_service,0)*NVL(opening_mrr_in_usd,0) > 0 \n OR \n NVL(closing_is_full_service,0)*NVL(closing_mrr_in_usd,0) > 0) AS is_fs_mrr_cycle,\n SMALLINT(NVL(opening_is_full_service,0)*NVL(opening_revenue_in_usd,0) > 0 \n OR \n NVL(closing_is_full_service,0)*NVL(closing_revenue_in_usd,0) > 0) AS is_fs_revenue_cycle,\n SMALLINT(NVL(opening_is_full_service,0) = 1 AND NVL(closing_is_full_service,0) = 1) AS is_remain_fs,\n SMALLINT(NVL(opening_is_full_service,0) = 0 AND NVL(closing_is_full_service,0) = 1) AS is_inflow_fs,\n SMALLINT(NVL(opening_is_full_service,0) = 1 AND NVL(closing_is_full_service,0) = 0) AS is_outflow_fs\nFROM import_organization_product_revenue_monthly\n),\n\nrevenue_segmentation_calc AS (\nSELECT \n *,\n IF(closing_revenue_for_cohorts <= 0 \n AND opening_revenue_for_cohorts > 0\n AND is_lost_after_won = 0,1,0) AS is_lost,\n IF(closing_revenue_for_cohorts <= 0 \n AND opening_revenue_for_cohorts > 0\n AND is_lost_after_won = 0\n AND closing_organization_revenue_for_cohorts <= 0,1,0) AS is_lost_organization,\n IF(closing_revenue_for_cohorts <= 0 \n AND opening_revenue_for_cohorts > 0\n AND is_lost_after_won = 1,1,0) AS is_law_lost,\n IF(closing_revenue_for_cohorts <= 0 \n AND opening_revenue_for_cohorts <= 0\n AND (delta_usage_mrr <> 0 OR delta_usage_revenue <> 0),1,0) AS is_lost_usage_leftover,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts <= 0\n AND product_months_since_last_paid_month <= {{winback_threshold}},1,0) AS is_winback,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts <= 0 \n AND NVL(product_months_since_last_paid_month,{{winback_threshold}}+1) > {{winback_threshold}} \n AND (\n opening_organization_revenue_for_cohorts <= 0\n OR (\n opening_organization_revenue_for_cohorts > 0\n AND is_staggered_subscription = 1\n )\n ),1,0) AS is_new,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts <= 0 \n AND NVL(product_months_since_last_paid_month,{{winback_threshold}}+1) > {{winback_threshold}}\n AND opening_organization_revenue_for_cohorts > 0\n AND is_staggered_subscription = 0,1,0) AS is_cross_sell,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND is_same_full_service = 0 \n AND closing_is_full_service = 1 ,1,0) AS is_upgrade_to_full_service,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND is_same_full_service = 0\n AND closing_is_full_service = 0 ,1,0) AS is_downgrade_to_self_service,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND is_same_full_service = 1,1,0) AS is_same_service,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND NVL(is_same_full_service,0) = 0,1,0) AS is_service_change,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_mrr < 0,1,0) AS is_decreased_mrr,\n IF(delta_mrr = 0,1,0) AS is_unchanged_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_mrr > 0,1,0) AS is_increased_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_mrr < 0,1,0) AS is_decreased_usage_mrr,\n IF(delta_usage_mrr = 0,1,0) AS is_unchanged_usage_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_mrr > 0,1,0) AS is_increased_usage_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_saas_mrr < 0,1,0) AS is_decreased_saas_mrr,\n IF(delta_saas_mrr = 0,1,0) AS is_unchanged_saas_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_saas_mrr > 0,1,0) AS is_increased_saas_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_free_month_mrr_impact > 0,1,0) AS is_decreased_free_month_mrr_impact,\n IF(delta_free_month_mrr_impact = 0,1,0) AS is_unchanged_free_month_mrr_impact,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_free_month_mrr_impact < 0,1,0) AS is_increased_free_month_mrr_impact,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_original_saas_mrr < 0,1,0) AS is_decreased_original_saas_mrr,\n IF(delta_original_saas_mrr = 0,1,0) AS is_unchanged_original_saas_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_original_saas_mrr > 0,1,0) AS is_increased_original_saas_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_revenue < 0,1,0) AS is_decreased_revenue,\n IF(delta_revenue = 0,1,0) AS is_unchanged_revenue,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_revenue > 0,1,0) AS is_increased_revenue,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_revenue < 0,1,0) AS is_decreased_usage_revenue,\n IF(delta_usage_revenue = 0,1,0) AS is_unchanged_usage_revenue,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_revenue > 0,1,0) AS is_increased_usage_revenue,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_pro_rated_mrr < 0,1,0) AS is_decreased_pro_rated_mrr,\n IF(delta_pro_rated_mrr = 0,1,0) AS is_unchanged_pro_rated_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_pro_rated_mrr > 0,1,0) AS is_increased_pro_rated_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_pro_rated_mrr < 0,1,0) AS is_decreased_usage_pro_rated_mrr,\n IF(delta_usage_pro_rated_mrr = 0,1,0) AS is_unchanged_usage_pro_rated_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_pro_rated_mrr > 0,1,0) AS is_increased_usage_pro_rated_mrr\nFROM organization_product_revenue_monthly_modeled\n),\n\nrevenue_components_calc AS (\nSELECT\n organization_product_month_id,\n organization_key,\n product_family_group,\n month,\n opening_plan_name,\n closing_plan_name,\n opening_plan_group,\n closing_plan_group,\n subscription_start_date,\n subscription_end_date,\n opening_revenue_for_cohorts,\n closing_revenue_for_cohorts,\n ----- MRR Cycle -----\n opening_mrr_in_usd,\n IF(is_lost_usage_leftover = 1,delta_usage_mrr,0) AS lost_usage_leftover_mrr,\n CASE WHEN is_lost = 1 THEN delta_mrr\n WHEN is_law_lost = 1 THEN delta_mrr - delta_saas_mrr\n ELSE 0 END AS lost_mrr,\n IF(is_law_lost = 1,delta_saas_mrr,0) AS law_lost_saas_mrr,\n IF(is_new = 1,delta_mrr,0) AS new_mrr,\n IF(is_cross_sell = 1,delta_mrr,0) AS cross_sell_mrr,\n IF(is_winback = 1,delta_mrr,0) AS winback_mrr,\n IF(is_decreased_mrr = 1,delta_mrr,0) AS decreased_mrr, \n IF(is_increased_mrr = 1,delta_mrr,0) AS increased_mrr,\n closing_mrr_in_usd,\n delta_mrr,\n CASE WHEN is_new+is_winback = 1 THEN delta_mrr\n WHEN is_law_lost = 1 THEN delta_saas_mrr\n ELSE 0 END AS consolidated_new_mrr,\nIF(is_upgrade_to_full_service = 1,opening_mrr_in_usd,0) AS upgrade_to_full_service_mrr_movement,\n IF(is_upgrade_to_full_service = 1,delta_mrr,0) AS upgrade_to_full_service_delta_mrr,\n IF(is_downgrade_to_self_service = 1,opening_mrr_in_usd,0) AS downgrade_to_self_service_mrr_movement,\n IF(is_downgrade_to_self_service = 1,delta_mrr,0) AS downgrade_to_self_service_delta_mrr,\n IF(is_decreased_mrr = 1 AND is_same_service = 1,delta_mrr,0) AS same_service_decreased_mrr, \n IF(is_increased_mrr = 1 AND is_same_service = 1,delta_mrr,0) AS same_service_increased_mrr,\n ----- Usage MRR Cycle -----\n opening_usage_mrr_in_usd,\n -- lost_usage_leftover_mrr from the MRR cycle belongs to this cycle as well\n IF(is_lost+is_law_lost = 1,delta_usage_mrr,0) AS lost_usage_mrr,\n IF(is_new = 1,delta_usage_mrr,0) AS new_usage_mrr,\n IF(is_cross_sell = 1,delta_usage_mrr,0) AS cross_sell_usage_mrr,\n IF(is_winback = 1,delta_usage_mrr,0) AS winback_usage_mrr,\n IF(is_decreased_usage_mrr = 1,delta_usage_mrr,0) AS decreased_usage_mrr, \n IF(is_increased_usage_mrr = 1,delta_usage_mrr,0) AS increased_usage_mrr,\n closing_usage_mrr_in_usd,\n delta_usage_mrr,\n IF(is_new+is_winback = 1,delta_usage_mrr,0) AS consolidated_new_usage_mrr,\n IF(is_loyalty+is_ugc = 1,delta_usage_mrr,0) AS overages_delta_usage_mrr,\n IF(is_loyalty+is_ugc = 1 AND delta_usage_mrr < 0,delta_usage_mrr,0) AS negative_overages_delta_usage_mrr,\n IF(is_loyalty+is_ugc = 1 AND delta_usage_mrr > 0,delta_usage_mrr,0) AS positive_overages_delta_usage_mrr,\n IF(is_sms+is_email+is_subscriptions = 1,delta_usage_mrr,0) AS usage_products_delta_usage_mrr,\n IF(is_subscriptions = 1,delta_usage_mrr,0) AS subscriptions_delta_usage_mrr,\n IF(is_sms+is_email = 1,delta_l12m_avg_usage,0)*12 AS communications_delta_l12m_usage,\n IF(is_sms+is_email = 1,delta_l12m_avg_utilized_free_credits,0)*12 AS communications_delta_l12m_utilized_free_credits,\n ----- SaaS MRR Cycle -----\n opening_saas_mrr_in_usd,\n IF(is_lost = 1,delta_saas_mrr,0) AS lost_saas_mrr,\n -- law_lost_saas_mrr from the MRR cycle belongs to this cycle as well\n IF(is_new = 1,delta_saas_mrr,0) AS new_saas_mrr,\n IF(is_cross_sell = 1,delta_saas_mrr,0) AS cross_sell_saas_mrr,\n IF(is_winback = 1,delta_saas_mrr,0) AS winback_saas_mrr,\n IF(is_decreased_saas_mrr = 1,delta_saas_mrr,0) AS decreased_saas_mrr, \n IF(is_increased_saas_mrr = 1,delta_saas_mrr,0) AS increased_saas_mrr,\n closing_saas_mrr_in_usd,\n delta_saas_mrr,\n IF(is_new+is_winback+is_law_lost = 1,delta_saas_mrr,0) AS consolidated_new_saas_mrr,\n IF(is_lost = 1 AND is_in_term_renewal = 1,delta_saas_mrr,0) AS in_term_lost_saas_mrr,\n IF(is_lost = 1 AND is_in_term_renewal = 0,delta_saas_mrr,0) AS end_term_lost_saas_mrr,\n IF(is_decreased_saas_mrr = 1,delta_free_month_mrr_impact,0) AS decreased_saas_delta_free_month_mrr_impact, \n IF(is_increased_saas_mrr = 1,delta_free_month_mrr_impact,0) AS increased_saas_delta_free_month_mrr_impact, \n IF(is_decreased_saas_mrr = 1 AND is_same_service = 1,delta_original_saas_mrr,0) AS decreased_same_service_delta_original_saas_mrr, \n IF(is_increased_saas_mrr = 1 AND is_same_service = 1,delta_original_saas_mrr,0) AS increased_same_service_delta_original_saas_mrr,\n IF(is_decreased_saas_mrr = 1 AND is_service_change = 1,delta_original_saas_mrr,0) AS decreased_service_change_delta_original_saas_mrr, \n IF(is_increased_saas_mrr = 1 AND is_service_change = 1,delta_original_saas_mrr,0) AS increased_service_change_delta_original_saas_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_original_saas_mrr_in_usd,\n IF(is_decreased_original_saas_mrr = 1,delta_original_saas_mrr,0) AS decreased_original_saas_mrr, \n IF(is_increased_original_saas_mrr = 1,delta_original_saas_mrr,0) AS increased_original_saas_mrr,\n closing_original_saas_mrr_in_usd,\n delta_original_saas_mrr,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n\n ----- Revenue Cycle -----\n opening_revenue_in_usd,\n IF(is_lost_usage_leftover = 1,delta_usage_revenue,0) AS lost_usage_leftover_revenue,\n CASE WHEN is_lost = 1 THEN delta_revenue\n WHEN is_law_lost = 1 THEN delta_revenue - delta_saas_mrr\n ELSE 0 END AS lost_revenue,\n -- law_lost_saas_mrr from the MRR cycle belongs to this cycle as well\n IF(is_new = 1,delta_revenue,0) AS new_revenue,\n IF(is_cross_sell = 1,delta_revenue,0) AS cross_sell_revenue,\n IF(is_winback = 1,delta_revenue,0) AS winback_revenue,\n IF(is_decreased_revenue = 1,delta_revenue,0) AS decreased_revenue, \n IF(is_increased_revenue = 1,delta_revenue,0) AS increased_revenue,\n closing_revenue_in_usd,\n delta_revenue,\n CASE WHEN is_new+is_winback = 1 THEN delta_revenue\n WHEN is_law_lost = 1 THEN delta_saas_mrr\n ELSE 0 END AS consolidated_new_revenue,\n IF(is_upgrade_to_full_service = 1,opening_revenue_in_usd,0) AS upgrade_to_full_service_revenue_movement,\n IF(is_upgrade_to_full_service = 1,delta_revenue,0) AS upgrade_to_full_service_delta_revenue,\n IF(is_downgrade_to_self_service = 1,opening_revenue_in_usd,0) AS downgrade_to_self_service_revenue_movement,\n IF(is_downgrade_to_self_service = 1,delta_revenue,0) AS downgrade_to_self_service_delta_revenue,\n IF(is_decreased_revenue = 1 AND is_same_service = 1,delta_revenue,0) AS same_service_decreased_revenue, \n IF(is_increased_revenue = 1 AND is_same_service = 1,delta_revenue,0) AS same_service_increased_revenue,\n ----- Usage Revenue Cycle -----\n opening_usage_revenue_in_usd,\n -- lost_usage_leftover_revenue from the Revenue cycle belongs to this cycle as well\n IF(is_lost+is_law_lost = 1,delta_usage_revenue,0) AS lost_usage_revenue,\n IF(is_new = 1,delta_usage_revenue,0) AS new_usage_revenue,\n IF(is_cross_sell = 1,delta_usage_revenue,0) AS cross_sell_usage_revenue,\n IF(is_winback = 1,delta_usage_revenue,0) AS winback_usage_revenue,\n IF(is_decreased_usage_revenue = 1,delta_usage_revenue,0) AS decreased_usage_revenue, \n IF(is_increased_usage_revenue = 1,delta_usage_revenue,0) AS increased_usage_revenue,\n closing_usage_revenue_in_usd,\n delta_usage_revenue,\n IF(is_new+is_winback = 1,delta_usage_revenue,0) AS consolidated_new_usage_revenue,\n IF(is_upgrade_to_full_service = 1,opening_usage_revenue_in_usd,0) AS upgrade_to_full_service_usage_revenue_movement,\n IF(is_upgrade_to_full_service = 1,delta_usage_revenue,0) AS upgrade_to_full_service_delta_usage_revenue,\n IF(is_downgrade_to_self_service = 1,opening_usage_revenue_in_usd,0) AS downgrade_to_self_service_usage_revenue_movement,\n IF(is_downgrade_to_self_service = 1,delta_usage_revenue,0) AS downgrade_to_self_service_delta_usage_revenue,\n IF(is_decreased_usage_revenue = 1 AND is_same_service = 1,delta_usage_revenue,0) AS same_service_decreased_usage_revenue, \n IF(is_increased_usage_revenue = 1 AND is_same_service = 1,delta_usage_revenue,0) AS same_service_increased_usage_revenue, \n opening_usage_in_usd,\n closing_usage_in_usd,\n delta_usage,\n opening_l12m_avg_usage_in_usd,\n closing_l12m_avg_usage_in_usd,\n delta_l12m_avg_usage,\n opening_utilized_free_credits_in_usd,\n closing_utilized_free_credits_in_usd,\n delta_utilized_free_credits,\n opening_l12m_avg_utilized_free_credits_in_usd,\n closing_l12m_avg_utilized_free_credits_in_usd,\n delta_l12m_avg_utilized_free_credits,\n ----- Flags -----\n opening_is_paid_product,\n closing_is_paid_product,\n opening_is_paying_organization,\n closing_is_paying_organization,\n SMALLINT(is_lost) AS is_lost,\n SMALLINT(is_law_lost) AS is_law_lost,\n SMALLINT(is_lost_usage_leftover) AS is_lost_usage_leftover,\n SMALLINT(is_new) AS is_new,\n SMALLINT(is_cross_sell) AS is_cross_sell,\n SMALLINT(is_winback) AS is_winback,\n SMALLINT(is_upgrade_to_full_service) AS is_upgrade_to_full_service,\n SMALLINT(is_downgrade_to_self_service) AS is_downgrade_to_self_service,\n SMALLINT(is_same_service) AS is_same_service,\n SMALLINT(is_decreased_mrr) AS is_decreased_mrr,\n SMALLINT(is_increased_mrr) AS is_increased_mrr,\n SMALLINT(is_unchanged_mrr) AS is_unchanged_mrr,\n SMALLINT(is_decreased_usage_mrr) AS is_decreased_usage_mrr,\n SMALLINT(is_increased_usage_mrr) AS is_increased_usage_mrr,\n SMALLINT(is_unchanged_usage_mrr) AS is_unchanged_usage_mrr,\n SMALLINT(is_decreased_saas_mrr) AS is_decreased_saas_mrr,\n SMALLINT(is_increased_saas_mrr) AS is_increased_saas_mrr,\n SMALLINT(is_unchanged_saas_mrr) AS is_unchanged_saas_mrr,\n SMALLINT(is_decreased_free_month_mrr_impact) AS is_decreased_free_month_mrr_impact,\n SMALLINT(is_increased_free_month_mrr_impact) AS is_increased_free_month_mrr_impact,\n SMALLINT(is_unchanged_free_month_mrr_impact) AS is_unchanged_free_month_mrr_impact,\n SMALLINT(is_decreased_original_saas_mrr) AS is_decreased_original_saas_mrr,\n SMALLINT(is_increased_original_saas_mrr) AS is_increased_original_saas_mrr,\n SMALLINT(is_unchanged_original_saas_mrr) AS is_unchanged_original_saas_mrr,\n SMALLINT(is_decreased_revenue) AS is_decreased_revenue,\n SMALLINT(is_increased_revenue) AS is_increased_revenue,\n SMALLINT(is_unchanged_revenue) AS is_unchanged_revenue,\n SMALLINT(is_decreased_usage_revenue) AS is_decreased_usage_revenue,\n SMALLINT(is_increased_usage_revenue) AS is_increased_usage_revenue,\n SMALLINT(is_unchanged_usage_revenue) AS is_unchanged_usage_revenue,\n SMALLINT(is_decreased_pro_rated_mrr) AS is_decreased_pro_rated_mrr,\n SMALLINT(is_increased_pro_rated_mrr) AS is_increased_pro_rated_mrr,\n SMALLINT(is_unchanged_pro_rated_mrr) AS is_unchanged_pro_rated_mrr,\n SMALLINT(is_decreased_usage_pro_rated_mrr) AS is_decreased_usage_pro_rated_mrr,\n SMALLINT(is_increased_usage_pro_rated_mrr) AS is_increased_usage_pro_rated_mrr,\n SMALLINT(is_unchanged_usage_pro_rated_mrr) AS is_unchanged_usage_pro_rated_mrr,\n SMALLINT(opening_is_self_service) AS opening_is_self_service,\n SMALLINT(closing_is_self_service) AS closing_is_self_service,\n SMALLINT(opening_is_full_service) AS opening_is_full_service,\n SMALLINT(closing_is_full_service) AS closing_is_full_service,\n SMALLINT(opening_is_annual_billing) AS opening_is_annual_billing,\n SMALLINT(closing_is_annual_billing) AS closing_is_annual_billing,\n SMALLINT(opening_is_self_service_organization) AS opening_is_self_service_organization,\n SMALLINT(closing_is_self_service_organization) AS closing_is_self_service_organization,\n SMALLINT(opening_is_full_service_organization) AS opening_is_full_service_organization,\n SMALLINT(closing_is_full_service_organization) AS closing_is_full_service_organization,\n SMALLINT(is_ugc) AS is_ugc,\n SMALLINT(is_loyalty) AS is_loyalty,\n SMALLINT(is_sms) AS is_sms,\n SMALLINT(is_email) AS is_email,\n SMALLINT(is_subscriptions) AS is_subscriptions,\n SMALLINT(is_in_term_renewal) AS is_in_term_renewal,\n SMALLINT(is_lost_after_won) AS is_lost_after_won,\n SMALLINT(is_staggered_subscription) AS is_staggered_subscription,\n is_ss_mrr_cycle,\n is_ss_revenue_cycle,\n is_remain_ss,\n is_inflow_ss,\n is_outflow_ss,\n is_fs_mrr_cycle,\n is_fs_revenue_cycle,\n is_remain_fs,\n is_inflow_fs,\n is_outflow_fs,\n product_cohort_number,\n product_months_since_last_paid_month,\n product_month_number_since_current_cohort,\n product_month_number_since_first_cohort,\n organization_cohort_number,\n organization_months_since_last_paid_month,\n organization_month_number_since_current_cohort,\n organization_month_number_since_first_cohort,\n ----- Pro-Rated MRR Cycle -----\n opening_pro_rated_mrr_in_usd,\n IF(is_lost_usage_leftover = 1,delta_usage_pro_rated_mrr,0) AS lost_usage_leftover_pro_rated_mrr,\n CASE WHEN is_lost = 1 THEN delta_pro_rated_mrr\n WHEN is_law_lost = 1 THEN delta_pro_rated_mrr - delta_saas_mrr\n ELSE 0 END AS lost_pro_rated_mrr,\n -- law_lost_saas_mrr from the MRR cycle belongs to this cycle as well\n IF(is_new = 1,delta_pro_rated_mrr,0) AS new_pro_rated_mrr,\n IF(is_cross_sell = 1,delta_pro_rated_mrr,0) AS cross_sell_pro_rated_mrr,\n IF(is_winback = 1,delta_pro_rated_mrr,0) AS winback_pro_rated_mrr,\n IF(is_decreased_pro_rated_mrr = 1,delta_pro_rated_mrr,0) AS decreased_pro_rated_mrr, \n IF(is_increased_pro_rated_mrr = 1,delta_pro_rated_mrr,0) AS increased_pro_rated_mrr,\n closing_pro_rated_mrr_in_usd,\n delta_pro_rated_mrr,\n CASE WHEN is_new+is_winback = 1 THEN delta_pro_rated_mrr\n WHEN is_law_lost = 1 THEN delta_saas_mrr\n ELSE 0 END AS consolidated_new_pro_rated_mrr,\n IF(is_upgrade_to_full_service = 1,opening_pro_rated_mrr_in_usd,0) AS upgrade_to_full_service_pro_rated_mrr_movement,\n IF(is_upgrade_to_full_service = 1,delta_pro_rated_mrr,0) AS upgrade_to_full_service_delta_pro_rated_mrr,\n IF(is_downgrade_to_self_service = 1,opening_pro_rated_mrr_in_usd,0) AS downgrade_to_self_service_pro_rated_mrr_movement,\n IF(is_downgrade_to_self_service = 1,delta_pro_rated_mrr,0) AS downgrade_to_self_service_delta_pro_rated_mrr,\n IF(is_decreased_pro_rated_mrr = 1 AND is_same_service = 1,delta_pro_rated_mrr,0) AS same_service_decreased_pro_rated_mrr, \n IF(is_increased_pro_rated_mrr = 1 AND is_same_service = 1,delta_pro_rated_mrr,0) AS same_service_increased_pro_rated_mrr,\n ----- Usage Pro-Rated MRR Cycle -----\n opening_usage_pro_rated_mrr_in_usd,\n -- lost_usage_leftover_pro_rated_mrr from the Pro-Rated MRR cycle belongs to this cycle as well\n IF(is_lost+is_law_lost = 1,delta_usage_pro_rated_mrr,0) AS lost_usage_pro_rated_mrr,\n IF(is_new = 1,delta_usage_pro_rated_mrr,0) AS new_usage_pro_rated_mrr,\n IF(is_cross_sell = 1,delta_usage_pro_rated_mrr,0) AS cross_sell_usage_pro_rated_mrr,\n IF(is_winback = 1,delta_usage_pro_rated_mrr,0) AS winback_usage_pro_rated_mrr,\n IF(is_decreased_usage_pro_rated_mrr = 1,delta_usage_pro_rated_mrr,0) AS decreased_usage_pro_rated_mrr, \n IF(is_increased_usage_pro_rated_mrr = 1,delta_usage_pro_rated_mrr,0) AS increased_usage_pro_rated_mrr,\n closing_usage_pro_rated_mrr_in_usd,\n delta_usage_pro_rated_mrr,\n IF(is_new+is_winback = 1,delta_usage_pro_rated_mrr,0) AS consolidated_new_usage_pro_rated_mrr,\n IF(is_upgrade_to_full_service = 1,opening_usage_pro_rated_mrr_in_usd,0) AS upgrade_to_full_service_usage_pro_rated_mrr_movement,\n IF(is_upgrade_to_full_service = 1,delta_usage_pro_rated_mrr,0) AS upgrade_to_full_service_delta_usage_pro_rated_mrr,\n IF(is_downgrade_to_self_service = 1,opening_usage_pro_rated_mrr_in_usd,0) AS downgrade_to_self_service_usage_pro_rated_mrr_movement,\n IF(is_downgrade_to_self_service = 1,delta_usage_pro_rated_mrr,0) AS downgrade_to_self_service_delta_usage_pro_rated_mrr,\n IF(is_decreased_usage_pro_rated_mrr = 1 AND is_same_service = 1,delta_usage_pro_rated_mrr,0) AS same_service_decreased_usage_pro_rated_mrr, \n IF(is_increased_usage_pro_rated_mrr = 1 AND is_same_service = 1,delta_usage_pro_rated_mrr,0) AS same_service_increased_usage_pro_rated_mrr\nFROM revenue_segmentation_calc\n),\n\norganization_product_revenue_metrics_monthly_res AS (\nSELECT\n *,\n ----- Self Service Cycle helpers -----\n is_ss_mrr_cycle*(IF(is_inflow_ss = 1,NVL(opening_mrr_in_usd,0),0)\n -IF(is_outflow_ss = 1,(NVL(opening_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_mrr,0) --shown in seperate components (prevent double counting)\n +NVL(law_lost_saas_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS ss_migration_mrr,\n\n is_ss_mrr_cycle*(IF(is_inflow_ss = 1,NVL(opening_saas_mrr_in_usd,0),0)\n -IF(is_outflow_ss = 1,(NVL(opening_saas_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_saas_mrr,0) --shown in seperate components (prevent double counting)\n +NVL(law_lost_saas_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS ss_migration_saas_mrr,\n\n is_ss_mrr_cycle*(IF(is_inflow_ss = 1,NVL(opening_usage_mrr_in_usd,0),0)\n -IF(is_outflow_ss = 1,(NVL(opening_usage_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_usage_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS ss_migration_usage_mrr,\n\n is_ss_mrr_cycle*(IF((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0)\n ,delta_usage_mrr,0)) AS ss_delta_usage_mrr,\n\n is_ss_mrr_cycle*(IF(is_ugc+is_loyalty = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS ss_overages_delta_usage_mrr,\n\n is_ss_mrr_cycle*(IF(is_ugc+is_loyalty = 1 AND \n ((is_remain_ss+is_inflow_ss=1 AND delta_usage_mrr < 0)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS ss_negative_overages_delta_usage_mrr,\n\n is_ss_mrr_cycle*(IF(is_sms+is_email+is_subscriptions = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS ss_usage_products_delta_usage_mrr,\n\n is_ss_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS ss_communications_delta_usage_mrr,\n\n is_ss_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_l12m_avg_usage,0))*12 AS ss_communications_delta_l12m_usage,\n\n is_ss_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_l12m_avg_utilized_free_credits,0))*12 AS ss_communications_delta_l12m_utilized_free_credits,\n\n is_ss_mrr_cycle*(IF(is_subscriptions = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS ss_subscriptions_delta_usage_mrr,\n ----- Full Service Cycle helpers -----\n is_fs_mrr_cycle*(IF(is_inflow_fs = 1,NVL(opening_mrr_in_usd,0),0)\n -IF(is_outflow_fs = 1,(NVL(opening_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_mrr,0) --shown in seperate components (prevent double counting)\n +NVL(law_lost_saas_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS fs_migration_mrr,\n\n is_fs_mrr_cycle*(IF(is_inflow_fs = 1,NVL(opening_saas_mrr_in_usd,0),0)\n -IF(is_outflow_fs = 1,(NVL(opening_saas_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_saas_mrr,0) --shown in seperate components (prevent double counting)\n +NVL(law_lost_saas_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS fs_migration_saas_mrr,\n\n is_fs_mrr_cycle*(IF(is_inflow_fs = 1,NVL(opening_usage_mrr_in_usd,0),0)\n -IF(is_outflow_fs = 1,(NVL(opening_usage_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_usage_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS fs_migration_usage_mrr,\n\n is_fs_mrr_cycle*(IF((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0)\n ,delta_usage_mrr,0)) AS fs_delta_usage_mrr,\n\n is_fs_mrr_cycle*(IF(is_ugc+is_loyalty = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS fs_overages_delta_usage_mrr,\n\n is_fs_mrr_cycle*(IF(is_ugc+is_loyalty = 1 AND \n ((is_remain_fs+is_inflow_fs=1 AND delta_usage_mrr < 0)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS fs_negative_overages_delta_usage_mrr,\n\n is_fs_mrr_cycle*(IF(is_sms+is_email+is_subscriptions = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS fs_usage_products_delta_usage_mrr,\n\n is_fs_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS fs_communications_delta_usage_mrr,\n\n is_fs_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_l12m_avg_usage,0))*12 AS fs_communications_delta_l12m_usage,\n\n is_fs_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_l12m_avg_utilized_free_credits,0))*12 AS fs_communications_delta_l12m_utilized_free_credits,\n\n is_fs_mrr_cycle*(IF(is_subscriptions = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS fs_subscriptions_delta_usage_mrr,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM revenue_components_calc\n)\n\n\n\nSELECT *\nFROM organization_product_revenue_metrics_monthly_res", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_organization_product_revenue_monthly AS (\nSELECT *\nFROM dev_dkruh1.analytics___finance__organization_product_revenue_monthly\n\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n\n),\n\n-- Logic --\n\norganization_product_revenue_monthly_modeled AS (\nSELECT \n organization_product_month_id,\n organization_key,\n product_family_group,\n month,\n opening_plan_name,\n closing_plan_name,\n opening_plan_group,\n closing_plan_group,\n subscription_start_date,\n subscription_end_date,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n NVL(closing_mrr_in_usd,0) - NVL(opening_mrr_in_usd,0) AS delta_mrr,\n opening_saas_mrr_in_usd,\n closing_saas_mrr_in_usd,\n NVL(closing_saas_mrr_in_usd,0) - NVL(opening_saas_mrr_in_usd,0) AS delta_saas_mrr,\n opening_usage_mrr_in_usd,\n closing_usage_mrr_in_usd,\n NVL(closing_usage_mrr_in_usd,0) - NVL(opening_usage_mrr_in_usd,0) AS delta_usage_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n (NVL(opening_saas_mrr_in_usd,0) - NVL(opening_free_month_mrr_impact,0)) AS opening_original_saas_mrr_in_usd,\n (NVL(closing_saas_mrr_in_usd,0) - NVL(closing_free_month_mrr_impact,0)) AS closing_original_saas_mrr_in_usd,\n (NVL(closing_saas_mrr_in_usd,0) - NVL(closing_free_month_mrr_impact,0)) - (NVL(opening_saas_mrr_in_usd,0) - NVL(opening_free_month_mrr_impact,0)) AS delta_original_saas_mrr,\n opening_revenue_in_usd,\n closing_revenue_in_usd,\n NVL(closing_revenue_in_usd,0) - NVL(opening_revenue_in_usd,0) AS delta_revenue,\n opening_usage_revenue_in_usd,\n closing_usage_revenue_in_usd,\n NVL(closing_usage_revenue_in_usd,0) - NVL(opening_usage_revenue_in_usd,0) AS delta_usage_revenue,\n opening_pro_rated_mrr_in_usd,\n closing_pro_rated_mrr_in_usd,\n NVL(closing_pro_rated_mrr_in_usd,0) - NVL(opening_pro_rated_mrr_in_usd,0) AS delta_pro_rated_mrr,\n opening_usage_pro_rated_mrr_in_usd,\n closing_usage_pro_rated_mrr_in_usd,\n NVL(closing_usage_pro_rated_mrr_in_usd,0) - NVL(opening_usage_pro_rated_mrr_in_usd,0) AS delta_usage_pro_rated_mrr,\n opening_usage_in_usd,\n closing_usage_in_usd,\n NVL(closing_usage_in_usd,0) - NVL(opening_usage_in_usd,0) AS delta_usage,\n opening_l12m_avg_usage_in_usd,\n closing_l12m_avg_usage_in_usd,\n NVL(closing_l12m_avg_usage_in_usd,0) - NVL(opening_l12m_avg_usage_in_usd,0) AS delta_l12m_avg_usage,\n opening_utilized_free_credits_in_usd,\n closing_utilized_free_credits_in_usd,\n NVL(closing_utilized_free_credits_in_usd,0) - NVL(opening_utilized_free_credits_in_usd,0) AS delta_utilized_free_credits,\n opening_l12m_avg_utilized_free_credits_in_usd,\n closing_l12m_avg_utilized_free_credits_in_usd,\n NVL(closing_l12m_avg_utilized_free_credits_in_usd,0) - NVL(opening_l12m_avg_utilized_free_credits_in_usd,0) AS delta_l12m_avg_utilized_free_credits,\n NVL(opening_revenue_for_cohorts,0) AS opening_revenue_for_cohorts,\n NVL(closing_revenue_for_cohorts,0) AS closing_revenue_for_cohorts,\n NVL(opening_organization_revenue_for_cohorts,0) AS opening_organization_revenue_for_cohorts,\n NVL(closing_organization_revenue_for_cohorts,0) AS closing_organization_revenue_for_cohorts,\n opening_is_paid_product,\n closing_is_paid_product,\n opening_is_self_service,\n closing_is_self_service,\n opening_is_full_service,\n closing_is_full_service,\n opening_is_paying_organization,\n closing_is_paying_organization,\n opening_is_self_service_organization,\n closing_is_self_service_organization,\n opening_is_full_service_organization,\n closing_is_full_service_organization,\n IF(NVL(opening_is_full_service,0) = NVL(closing_is_full_service,0),1,0) AS is_same_full_service,\n opening_is_annual_billing,\n closing_is_annual_billing,\n NVL(is_in_term_renewal,0) AS is_in_term_renewal,\n NVL(is_lost_after_won,0) AS is_lost_after_won,\n NVL(is_staggered_subscription,0) AS is_staggered_subscription,\n product_cohort_number,\n product_months_since_last_paid_month,\n product_month_number_since_current_cohort,\n product_month_number_since_first_cohort,\n organization_cohort_number,\n organization_months_since_last_paid_month,\n organization_month_number_since_current_cohort,\n organization_month_number_since_first_cohort,\n is_ugc,\n is_loyalty,\n is_sms,\n is_email,\n is_subscriptions,\n SMALLINT(NVL(opening_is_self_service,0)*NVL(opening_mrr_in_usd,0) > 0 \n OR \n NVL(closing_is_self_service,0)*NVL(closing_mrr_in_usd,0) > 0) AS is_ss_mrr_cycle,\n SMALLINT(NVL(opening_is_self_service,0)*NVL(opening_revenue_in_usd,0) > 0 \n OR \n NVL(closing_is_self_service,0)*NVL(closing_revenue_in_usd,0) > 0) AS is_ss_revenue_cycle,\n SMALLINT(NVL(opening_is_self_service,0) = 1 AND NVL(closing_is_self_service,0) = 1) AS is_remain_ss,\n SMALLINT(NVL(opening_is_self_service,0) = 0 AND NVL(closing_is_self_service,0) = 1) AS is_inflow_ss,\n SMALLINT(NVL(opening_is_self_service,0) = 1 AND NVL(closing_is_self_service,0) = 0) AS is_outflow_ss,\n SMALLINT(NVL(opening_is_full_service,0)*NVL(opening_mrr_in_usd,0) > 0 \n OR \n NVL(closing_is_full_service,0)*NVL(closing_mrr_in_usd,0) > 0) AS is_fs_mrr_cycle,\n SMALLINT(NVL(opening_is_full_service,0)*NVL(opening_revenue_in_usd,0) > 0 \n OR \n NVL(closing_is_full_service,0)*NVL(closing_revenue_in_usd,0) > 0) AS is_fs_revenue_cycle,\n SMALLINT(NVL(opening_is_full_service,0) = 1 AND NVL(closing_is_full_service,0) = 1) AS is_remain_fs,\n SMALLINT(NVL(opening_is_full_service,0) = 0 AND NVL(closing_is_full_service,0) = 1) AS is_inflow_fs,\n SMALLINT(NVL(opening_is_full_service,0) = 1 AND NVL(closing_is_full_service,0) = 0) AS is_outflow_fs\nFROM import_organization_product_revenue_monthly\n),\n\nrevenue_segmentation_calc AS (\nSELECT \n *,\n IF(closing_revenue_for_cohorts <= 0 \n AND opening_revenue_for_cohorts > 0\n AND is_lost_after_won = 0,1,0) AS is_lost,\n IF(closing_revenue_for_cohorts <= 0 \n AND opening_revenue_for_cohorts > 0\n AND is_lost_after_won = 0\n AND closing_organization_revenue_for_cohorts <= 0,1,0) AS is_lost_organization,\n IF(closing_revenue_for_cohorts <= 0 \n AND opening_revenue_for_cohorts > 0\n AND is_lost_after_won = 1,1,0) AS is_law_lost,\n IF(closing_revenue_for_cohorts <= 0 \n AND opening_revenue_for_cohorts <= 0\n AND (delta_usage_mrr <> 0 OR delta_usage_revenue <> 0),1,0) AS is_lost_usage_leftover,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts <= 0\n AND product_months_since_last_paid_month <= 6,1,0) AS is_winback,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts <= 0 \n AND NVL(product_months_since_last_paid_month,6+1) > 6 \n AND (\n opening_organization_revenue_for_cohorts <= 0\n OR (\n opening_organization_revenue_for_cohorts > 0\n AND is_staggered_subscription = 1\n )\n ),1,0) AS is_new,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts <= 0 \n AND NVL(product_months_since_last_paid_month,6+1) > 6\n AND opening_organization_revenue_for_cohorts > 0\n AND is_staggered_subscription = 0,1,0) AS is_cross_sell,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND is_same_full_service = 0 \n AND closing_is_full_service = 1 ,1,0) AS is_upgrade_to_full_service,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND is_same_full_service = 0\n AND closing_is_full_service = 0 ,1,0) AS is_downgrade_to_self_service,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND is_same_full_service = 1,1,0) AS is_same_service,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND NVL(is_same_full_service,0) = 0,1,0) AS is_service_change,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_mrr < 0,1,0) AS is_decreased_mrr,\n IF(delta_mrr = 0,1,0) AS is_unchanged_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_mrr > 0,1,0) AS is_increased_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_mrr < 0,1,0) AS is_decreased_usage_mrr,\n IF(delta_usage_mrr = 0,1,0) AS is_unchanged_usage_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_mrr > 0,1,0) AS is_increased_usage_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_saas_mrr < 0,1,0) AS is_decreased_saas_mrr,\n IF(delta_saas_mrr = 0,1,0) AS is_unchanged_saas_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_saas_mrr > 0,1,0) AS is_increased_saas_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_free_month_mrr_impact > 0,1,0) AS is_decreased_free_month_mrr_impact,\n IF(delta_free_month_mrr_impact = 0,1,0) AS is_unchanged_free_month_mrr_impact,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_free_month_mrr_impact < 0,1,0) AS is_increased_free_month_mrr_impact,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_original_saas_mrr < 0,1,0) AS is_decreased_original_saas_mrr,\n IF(delta_original_saas_mrr = 0,1,0) AS is_unchanged_original_saas_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_original_saas_mrr > 0,1,0) AS is_increased_original_saas_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_revenue < 0,1,0) AS is_decreased_revenue,\n IF(delta_revenue = 0,1,0) AS is_unchanged_revenue,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_revenue > 0,1,0) AS is_increased_revenue,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_revenue < 0,1,0) AS is_decreased_usage_revenue,\n IF(delta_usage_revenue = 0,1,0) AS is_unchanged_usage_revenue,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_revenue > 0,1,0) AS is_increased_usage_revenue,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_pro_rated_mrr < 0,1,0) AS is_decreased_pro_rated_mrr,\n IF(delta_pro_rated_mrr = 0,1,0) AS is_unchanged_pro_rated_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_pro_rated_mrr > 0,1,0) AS is_increased_pro_rated_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_pro_rated_mrr < 0,1,0) AS is_decreased_usage_pro_rated_mrr,\n IF(delta_usage_pro_rated_mrr = 0,1,0) AS is_unchanged_usage_pro_rated_mrr,\n IF(closing_revenue_for_cohorts > 0 \n AND opening_revenue_for_cohorts > 0\n AND delta_usage_pro_rated_mrr > 0,1,0) AS is_increased_usage_pro_rated_mrr\nFROM organization_product_revenue_monthly_modeled\n),\n\nrevenue_components_calc AS (\nSELECT\n organization_product_month_id,\n organization_key,\n product_family_group,\n month,\n opening_plan_name,\n closing_plan_name,\n opening_plan_group,\n closing_plan_group,\n subscription_start_date,\n subscription_end_date,\n opening_revenue_for_cohorts,\n closing_revenue_for_cohorts,\n ----- MRR Cycle -----\n opening_mrr_in_usd,\n IF(is_lost_usage_leftover = 1,delta_usage_mrr,0) AS lost_usage_leftover_mrr,\n CASE WHEN is_lost = 1 THEN delta_mrr\n WHEN is_law_lost = 1 THEN delta_mrr - delta_saas_mrr\n ELSE 0 END AS lost_mrr,\n IF(is_law_lost = 1,delta_saas_mrr,0) AS law_lost_saas_mrr,\n IF(is_new = 1,delta_mrr,0) AS new_mrr,\n IF(is_cross_sell = 1,delta_mrr,0) AS cross_sell_mrr,\n IF(is_winback = 1,delta_mrr,0) AS winback_mrr,\n IF(is_decreased_mrr = 1,delta_mrr,0) AS decreased_mrr, \n IF(is_increased_mrr = 1,delta_mrr,0) AS increased_mrr,\n closing_mrr_in_usd,\n delta_mrr,\n CASE WHEN is_new+is_winback = 1 THEN delta_mrr\n WHEN is_law_lost = 1 THEN delta_saas_mrr\n ELSE 0 END AS consolidated_new_mrr,\nIF(is_upgrade_to_full_service = 1,opening_mrr_in_usd,0) AS upgrade_to_full_service_mrr_movement,\n IF(is_upgrade_to_full_service = 1,delta_mrr,0) AS upgrade_to_full_service_delta_mrr,\n IF(is_downgrade_to_self_service = 1,opening_mrr_in_usd,0) AS downgrade_to_self_service_mrr_movement,\n IF(is_downgrade_to_self_service = 1,delta_mrr,0) AS downgrade_to_self_service_delta_mrr,\n IF(is_decreased_mrr = 1 AND is_same_service = 1,delta_mrr,0) AS same_service_decreased_mrr, \n IF(is_increased_mrr = 1 AND is_same_service = 1,delta_mrr,0) AS same_service_increased_mrr,\n ----- Usage MRR Cycle -----\n opening_usage_mrr_in_usd,\n -- lost_usage_leftover_mrr from the MRR cycle belongs to this cycle as well\n IF(is_lost+is_law_lost = 1,delta_usage_mrr,0) AS lost_usage_mrr,\n IF(is_new = 1,delta_usage_mrr,0) AS new_usage_mrr,\n IF(is_cross_sell = 1,delta_usage_mrr,0) AS cross_sell_usage_mrr,\n IF(is_winback = 1,delta_usage_mrr,0) AS winback_usage_mrr,\n IF(is_decreased_usage_mrr = 1,delta_usage_mrr,0) AS decreased_usage_mrr, \n IF(is_increased_usage_mrr = 1,delta_usage_mrr,0) AS increased_usage_mrr,\n closing_usage_mrr_in_usd,\n delta_usage_mrr,\n IF(is_new+is_winback = 1,delta_usage_mrr,0) AS consolidated_new_usage_mrr,\n IF(is_loyalty+is_ugc = 1,delta_usage_mrr,0) AS overages_delta_usage_mrr,\n IF(is_loyalty+is_ugc = 1 AND delta_usage_mrr < 0,delta_usage_mrr,0) AS negative_overages_delta_usage_mrr,\n IF(is_loyalty+is_ugc = 1 AND delta_usage_mrr > 0,delta_usage_mrr,0) AS positive_overages_delta_usage_mrr,\n IF(is_sms+is_email+is_subscriptions = 1,delta_usage_mrr,0) AS usage_products_delta_usage_mrr,\n IF(is_subscriptions = 1,delta_usage_mrr,0) AS subscriptions_delta_usage_mrr,\n IF(is_sms+is_email = 1,delta_l12m_avg_usage,0)*12 AS communications_delta_l12m_usage,\n IF(is_sms+is_email = 1,delta_l12m_avg_utilized_free_credits,0)*12 AS communications_delta_l12m_utilized_free_credits,\n ----- SaaS MRR Cycle -----\n opening_saas_mrr_in_usd,\n IF(is_lost = 1,delta_saas_mrr,0) AS lost_saas_mrr,\n -- law_lost_saas_mrr from the MRR cycle belongs to this cycle as well\n IF(is_new = 1,delta_saas_mrr,0) AS new_saas_mrr,\n IF(is_cross_sell = 1,delta_saas_mrr,0) AS cross_sell_saas_mrr,\n IF(is_winback = 1,delta_saas_mrr,0) AS winback_saas_mrr,\n IF(is_decreased_saas_mrr = 1,delta_saas_mrr,0) AS decreased_saas_mrr, \n IF(is_increased_saas_mrr = 1,delta_saas_mrr,0) AS increased_saas_mrr,\n closing_saas_mrr_in_usd,\n delta_saas_mrr,\n IF(is_new+is_winback+is_law_lost = 1,delta_saas_mrr,0) AS consolidated_new_saas_mrr,\n IF(is_lost = 1 AND is_in_term_renewal = 1,delta_saas_mrr,0) AS in_term_lost_saas_mrr,\n IF(is_lost = 1 AND is_in_term_renewal = 0,delta_saas_mrr,0) AS end_term_lost_saas_mrr,\n IF(is_decreased_saas_mrr = 1,delta_free_month_mrr_impact,0) AS decreased_saas_delta_free_month_mrr_impact, \n IF(is_increased_saas_mrr = 1,delta_free_month_mrr_impact,0) AS increased_saas_delta_free_month_mrr_impact, \n IF(is_decreased_saas_mrr = 1 AND is_same_service = 1,delta_original_saas_mrr,0) AS decreased_same_service_delta_original_saas_mrr, \n IF(is_increased_saas_mrr = 1 AND is_same_service = 1,delta_original_saas_mrr,0) AS increased_same_service_delta_original_saas_mrr,\n IF(is_decreased_saas_mrr = 1 AND is_service_change = 1,delta_original_saas_mrr,0) AS decreased_service_change_delta_original_saas_mrr, \n IF(is_increased_saas_mrr = 1 AND is_service_change = 1,delta_original_saas_mrr,0) AS increased_service_change_delta_original_saas_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_original_saas_mrr_in_usd,\n IF(is_decreased_original_saas_mrr = 1,delta_original_saas_mrr,0) AS decreased_original_saas_mrr, \n IF(is_increased_original_saas_mrr = 1,delta_original_saas_mrr,0) AS increased_original_saas_mrr,\n closing_original_saas_mrr_in_usd,\n delta_original_saas_mrr,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n\n ----- Revenue Cycle -----\n opening_revenue_in_usd,\n IF(is_lost_usage_leftover = 1,delta_usage_revenue,0) AS lost_usage_leftover_revenue,\n CASE WHEN is_lost = 1 THEN delta_revenue\n WHEN is_law_lost = 1 THEN delta_revenue - delta_saas_mrr\n ELSE 0 END AS lost_revenue,\n -- law_lost_saas_mrr from the MRR cycle belongs to this cycle as well\n IF(is_new = 1,delta_revenue,0) AS new_revenue,\n IF(is_cross_sell = 1,delta_revenue,0) AS cross_sell_revenue,\n IF(is_winback = 1,delta_revenue,0) AS winback_revenue,\n IF(is_decreased_revenue = 1,delta_revenue,0) AS decreased_revenue, \n IF(is_increased_revenue = 1,delta_revenue,0) AS increased_revenue,\n closing_revenue_in_usd,\n delta_revenue,\n CASE WHEN is_new+is_winback = 1 THEN delta_revenue\n WHEN is_law_lost = 1 THEN delta_saas_mrr\n ELSE 0 END AS consolidated_new_revenue,\n IF(is_upgrade_to_full_service = 1,opening_revenue_in_usd,0) AS upgrade_to_full_service_revenue_movement,\n IF(is_upgrade_to_full_service = 1,delta_revenue,0) AS upgrade_to_full_service_delta_revenue,\n IF(is_downgrade_to_self_service = 1,opening_revenue_in_usd,0) AS downgrade_to_self_service_revenue_movement,\n IF(is_downgrade_to_self_service = 1,delta_revenue,0) AS downgrade_to_self_service_delta_revenue,\n IF(is_decreased_revenue = 1 AND is_same_service = 1,delta_revenue,0) AS same_service_decreased_revenue, \n IF(is_increased_revenue = 1 AND is_same_service = 1,delta_revenue,0) AS same_service_increased_revenue,\n ----- Usage Revenue Cycle -----\n opening_usage_revenue_in_usd,\n -- lost_usage_leftover_revenue from the Revenue cycle belongs to this cycle as well\n IF(is_lost+is_law_lost = 1,delta_usage_revenue,0) AS lost_usage_revenue,\n IF(is_new = 1,delta_usage_revenue,0) AS new_usage_revenue,\n IF(is_cross_sell = 1,delta_usage_revenue,0) AS cross_sell_usage_revenue,\n IF(is_winback = 1,delta_usage_revenue,0) AS winback_usage_revenue,\n IF(is_decreased_usage_revenue = 1,delta_usage_revenue,0) AS decreased_usage_revenue, \n IF(is_increased_usage_revenue = 1,delta_usage_revenue,0) AS increased_usage_revenue,\n closing_usage_revenue_in_usd,\n delta_usage_revenue,\n IF(is_new+is_winback = 1,delta_usage_revenue,0) AS consolidated_new_usage_revenue,\n IF(is_upgrade_to_full_service = 1,opening_usage_revenue_in_usd,0) AS upgrade_to_full_service_usage_revenue_movement,\n IF(is_upgrade_to_full_service = 1,delta_usage_revenue,0) AS upgrade_to_full_service_delta_usage_revenue,\n IF(is_downgrade_to_self_service = 1,opening_usage_revenue_in_usd,0) AS downgrade_to_self_service_usage_revenue_movement,\n IF(is_downgrade_to_self_service = 1,delta_usage_revenue,0) AS downgrade_to_self_service_delta_usage_revenue,\n IF(is_decreased_usage_revenue = 1 AND is_same_service = 1,delta_usage_revenue,0) AS same_service_decreased_usage_revenue, \n IF(is_increased_usage_revenue = 1 AND is_same_service = 1,delta_usage_revenue,0) AS same_service_increased_usage_revenue, \n opening_usage_in_usd,\n closing_usage_in_usd,\n delta_usage,\n opening_l12m_avg_usage_in_usd,\n closing_l12m_avg_usage_in_usd,\n delta_l12m_avg_usage,\n opening_utilized_free_credits_in_usd,\n closing_utilized_free_credits_in_usd,\n delta_utilized_free_credits,\n opening_l12m_avg_utilized_free_credits_in_usd,\n closing_l12m_avg_utilized_free_credits_in_usd,\n delta_l12m_avg_utilized_free_credits,\n ----- Flags -----\n opening_is_paid_product,\n closing_is_paid_product,\n opening_is_paying_organization,\n closing_is_paying_organization,\n SMALLINT(is_lost) AS is_lost,\n SMALLINT(is_law_lost) AS is_law_lost,\n SMALLINT(is_lost_usage_leftover) AS is_lost_usage_leftover,\n SMALLINT(is_new) AS is_new,\n SMALLINT(is_cross_sell) AS is_cross_sell,\n SMALLINT(is_winback) AS is_winback,\n SMALLINT(is_upgrade_to_full_service) AS is_upgrade_to_full_service,\n SMALLINT(is_downgrade_to_self_service) AS is_downgrade_to_self_service,\n SMALLINT(is_same_service) AS is_same_service,\n SMALLINT(is_decreased_mrr) AS is_decreased_mrr,\n SMALLINT(is_increased_mrr) AS is_increased_mrr,\n SMALLINT(is_unchanged_mrr) AS is_unchanged_mrr,\n SMALLINT(is_decreased_usage_mrr) AS is_decreased_usage_mrr,\n SMALLINT(is_increased_usage_mrr) AS is_increased_usage_mrr,\n SMALLINT(is_unchanged_usage_mrr) AS is_unchanged_usage_mrr,\n SMALLINT(is_decreased_saas_mrr) AS is_decreased_saas_mrr,\n SMALLINT(is_increased_saas_mrr) AS is_increased_saas_mrr,\n SMALLINT(is_unchanged_saas_mrr) AS is_unchanged_saas_mrr,\n SMALLINT(is_decreased_free_month_mrr_impact) AS is_decreased_free_month_mrr_impact,\n SMALLINT(is_increased_free_month_mrr_impact) AS is_increased_free_month_mrr_impact,\n SMALLINT(is_unchanged_free_month_mrr_impact) AS is_unchanged_free_month_mrr_impact,\n SMALLINT(is_decreased_original_saas_mrr) AS is_decreased_original_saas_mrr,\n SMALLINT(is_increased_original_saas_mrr) AS is_increased_original_saas_mrr,\n SMALLINT(is_unchanged_original_saas_mrr) AS is_unchanged_original_saas_mrr,\n SMALLINT(is_decreased_revenue) AS is_decreased_revenue,\n SMALLINT(is_increased_revenue) AS is_increased_revenue,\n SMALLINT(is_unchanged_revenue) AS is_unchanged_revenue,\n SMALLINT(is_decreased_usage_revenue) AS is_decreased_usage_revenue,\n SMALLINT(is_increased_usage_revenue) AS is_increased_usage_revenue,\n SMALLINT(is_unchanged_usage_revenue) AS is_unchanged_usage_revenue,\n SMALLINT(is_decreased_pro_rated_mrr) AS is_decreased_pro_rated_mrr,\n SMALLINT(is_increased_pro_rated_mrr) AS is_increased_pro_rated_mrr,\n SMALLINT(is_unchanged_pro_rated_mrr) AS is_unchanged_pro_rated_mrr,\n SMALLINT(is_decreased_usage_pro_rated_mrr) AS is_decreased_usage_pro_rated_mrr,\n SMALLINT(is_increased_usage_pro_rated_mrr) AS is_increased_usage_pro_rated_mrr,\n SMALLINT(is_unchanged_usage_pro_rated_mrr) AS is_unchanged_usage_pro_rated_mrr,\n SMALLINT(opening_is_self_service) AS opening_is_self_service,\n SMALLINT(closing_is_self_service) AS closing_is_self_service,\n SMALLINT(opening_is_full_service) AS opening_is_full_service,\n SMALLINT(closing_is_full_service) AS closing_is_full_service,\n SMALLINT(opening_is_annual_billing) AS opening_is_annual_billing,\n SMALLINT(closing_is_annual_billing) AS closing_is_annual_billing,\n SMALLINT(opening_is_self_service_organization) AS opening_is_self_service_organization,\n SMALLINT(closing_is_self_service_organization) AS closing_is_self_service_organization,\n SMALLINT(opening_is_full_service_organization) AS opening_is_full_service_organization,\n SMALLINT(closing_is_full_service_organization) AS closing_is_full_service_organization,\n SMALLINT(is_ugc) AS is_ugc,\n SMALLINT(is_loyalty) AS is_loyalty,\n SMALLINT(is_sms) AS is_sms,\n SMALLINT(is_email) AS is_email,\n SMALLINT(is_subscriptions) AS is_subscriptions,\n SMALLINT(is_in_term_renewal) AS is_in_term_renewal,\n SMALLINT(is_lost_after_won) AS is_lost_after_won,\n SMALLINT(is_staggered_subscription) AS is_staggered_subscription,\n is_ss_mrr_cycle,\n is_ss_revenue_cycle,\n is_remain_ss,\n is_inflow_ss,\n is_outflow_ss,\n is_fs_mrr_cycle,\n is_fs_revenue_cycle,\n is_remain_fs,\n is_inflow_fs,\n is_outflow_fs,\n product_cohort_number,\n product_months_since_last_paid_month,\n product_month_number_since_current_cohort,\n product_month_number_since_first_cohort,\n organization_cohort_number,\n organization_months_since_last_paid_month,\n organization_month_number_since_current_cohort,\n organization_month_number_since_first_cohort,\n ----- Pro-Rated MRR Cycle -----\n opening_pro_rated_mrr_in_usd,\n IF(is_lost_usage_leftover = 1,delta_usage_pro_rated_mrr,0) AS lost_usage_leftover_pro_rated_mrr,\n CASE WHEN is_lost = 1 THEN delta_pro_rated_mrr\n WHEN is_law_lost = 1 THEN delta_pro_rated_mrr - delta_saas_mrr\n ELSE 0 END AS lost_pro_rated_mrr,\n -- law_lost_saas_mrr from the MRR cycle belongs to this cycle as well\n IF(is_new = 1,delta_pro_rated_mrr,0) AS new_pro_rated_mrr,\n IF(is_cross_sell = 1,delta_pro_rated_mrr,0) AS cross_sell_pro_rated_mrr,\n IF(is_winback = 1,delta_pro_rated_mrr,0) AS winback_pro_rated_mrr,\n IF(is_decreased_pro_rated_mrr = 1,delta_pro_rated_mrr,0) AS decreased_pro_rated_mrr, \n IF(is_increased_pro_rated_mrr = 1,delta_pro_rated_mrr,0) AS increased_pro_rated_mrr,\n closing_pro_rated_mrr_in_usd,\n delta_pro_rated_mrr,\n CASE WHEN is_new+is_winback = 1 THEN delta_pro_rated_mrr\n WHEN is_law_lost = 1 THEN delta_saas_mrr\n ELSE 0 END AS consolidated_new_pro_rated_mrr,\n IF(is_upgrade_to_full_service = 1,opening_pro_rated_mrr_in_usd,0) AS upgrade_to_full_service_pro_rated_mrr_movement,\n IF(is_upgrade_to_full_service = 1,delta_pro_rated_mrr,0) AS upgrade_to_full_service_delta_pro_rated_mrr,\n IF(is_downgrade_to_self_service = 1,opening_pro_rated_mrr_in_usd,0) AS downgrade_to_self_service_pro_rated_mrr_movement,\n IF(is_downgrade_to_self_service = 1,delta_pro_rated_mrr,0) AS downgrade_to_self_service_delta_pro_rated_mrr,\n IF(is_decreased_pro_rated_mrr = 1 AND is_same_service = 1,delta_pro_rated_mrr,0) AS same_service_decreased_pro_rated_mrr, \n IF(is_increased_pro_rated_mrr = 1 AND is_same_service = 1,delta_pro_rated_mrr,0) AS same_service_increased_pro_rated_mrr,\n ----- Usage Pro-Rated MRR Cycle -----\n opening_usage_pro_rated_mrr_in_usd,\n -- lost_usage_leftover_pro_rated_mrr from the Pro-Rated MRR cycle belongs to this cycle as well\n IF(is_lost+is_law_lost = 1,delta_usage_pro_rated_mrr,0) AS lost_usage_pro_rated_mrr,\n IF(is_new = 1,delta_usage_pro_rated_mrr,0) AS new_usage_pro_rated_mrr,\n IF(is_cross_sell = 1,delta_usage_pro_rated_mrr,0) AS cross_sell_usage_pro_rated_mrr,\n IF(is_winback = 1,delta_usage_pro_rated_mrr,0) AS winback_usage_pro_rated_mrr,\n IF(is_decreased_usage_pro_rated_mrr = 1,delta_usage_pro_rated_mrr,0) AS decreased_usage_pro_rated_mrr, \n IF(is_increased_usage_pro_rated_mrr = 1,delta_usage_pro_rated_mrr,0) AS increased_usage_pro_rated_mrr,\n closing_usage_pro_rated_mrr_in_usd,\n delta_usage_pro_rated_mrr,\n IF(is_new+is_winback = 1,delta_usage_pro_rated_mrr,0) AS consolidated_new_usage_pro_rated_mrr,\n IF(is_upgrade_to_full_service = 1,opening_usage_pro_rated_mrr_in_usd,0) AS upgrade_to_full_service_usage_pro_rated_mrr_movement,\n IF(is_upgrade_to_full_service = 1,delta_usage_pro_rated_mrr,0) AS upgrade_to_full_service_delta_usage_pro_rated_mrr,\n IF(is_downgrade_to_self_service = 1,opening_usage_pro_rated_mrr_in_usd,0) AS downgrade_to_self_service_usage_pro_rated_mrr_movement,\n IF(is_downgrade_to_self_service = 1,delta_usage_pro_rated_mrr,0) AS downgrade_to_self_service_delta_usage_pro_rated_mrr,\n IF(is_decreased_usage_pro_rated_mrr = 1 AND is_same_service = 1,delta_usage_pro_rated_mrr,0) AS same_service_decreased_usage_pro_rated_mrr, \n IF(is_increased_usage_pro_rated_mrr = 1 AND is_same_service = 1,delta_usage_pro_rated_mrr,0) AS same_service_increased_usage_pro_rated_mrr\nFROM revenue_segmentation_calc\n),\n\norganization_product_revenue_metrics_monthly_res AS (\nSELECT\n *,\n ----- Self Service Cycle helpers -----\n is_ss_mrr_cycle*(IF(is_inflow_ss = 1,NVL(opening_mrr_in_usd,0),0)\n -IF(is_outflow_ss = 1,(NVL(opening_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_mrr,0) --shown in seperate components (prevent double counting)\n +NVL(law_lost_saas_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS ss_migration_mrr,\n\n is_ss_mrr_cycle*(IF(is_inflow_ss = 1,NVL(opening_saas_mrr_in_usd,0),0)\n -IF(is_outflow_ss = 1,(NVL(opening_saas_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_saas_mrr,0) --shown in seperate components (prevent double counting)\n +NVL(law_lost_saas_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS ss_migration_saas_mrr,\n\n is_ss_mrr_cycle*(IF(is_inflow_ss = 1,NVL(opening_usage_mrr_in_usd,0),0)\n -IF(is_outflow_ss = 1,(NVL(opening_usage_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_usage_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS ss_migration_usage_mrr,\n\n is_ss_mrr_cycle*(IF((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0)\n ,delta_usage_mrr,0)) AS ss_delta_usage_mrr,\n\n is_ss_mrr_cycle*(IF(is_ugc+is_loyalty = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS ss_overages_delta_usage_mrr,\n\n is_ss_mrr_cycle*(IF(is_ugc+is_loyalty = 1 AND \n ((is_remain_ss+is_inflow_ss=1 AND delta_usage_mrr < 0)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS ss_negative_overages_delta_usage_mrr,\n\n is_ss_mrr_cycle*(IF(is_sms+is_email+is_subscriptions = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS ss_usage_products_delta_usage_mrr,\n\n is_ss_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS ss_communications_delta_usage_mrr,\n\n is_ss_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_l12m_avg_usage,0))*12 AS ss_communications_delta_l12m_usage,\n\n is_ss_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_l12m_avg_utilized_free_credits,0))*12 AS ss_communications_delta_l12m_utilized_free_credits,\n\n is_ss_mrr_cycle*(IF(is_subscriptions = 1 AND \n ((is_remain_ss+is_inflow_ss=1)\n OR\n (is_outflow_ss=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS ss_subscriptions_delta_usage_mrr,\n ----- Full Service Cycle helpers -----\n is_fs_mrr_cycle*(IF(is_inflow_fs = 1,NVL(opening_mrr_in_usd,0),0)\n -IF(is_outflow_fs = 1,(NVL(opening_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_mrr,0) --shown in seperate components (prevent double counting)\n +NVL(law_lost_saas_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS fs_migration_mrr,\n\n is_fs_mrr_cycle*(IF(is_inflow_fs = 1,NVL(opening_saas_mrr_in_usd,0),0)\n -IF(is_outflow_fs = 1,(NVL(opening_saas_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_saas_mrr,0) --shown in seperate components (prevent double counting)\n +NVL(law_lost_saas_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS fs_migration_saas_mrr,\n\n is_fs_mrr_cycle*(IF(is_inflow_fs = 1,NVL(opening_usage_mrr_in_usd,0),0)\n -IF(is_outflow_fs = 1,(NVL(opening_usage_mrr_in_usd,0) --MRR moved out of the segment\n +NVL(lost_usage_mrr,0)) --shown in seperate components (prevent double counting)\n ,0)) AS fs_migration_usage_mrr,\n\n is_fs_mrr_cycle*(IF((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0)\n ,delta_usage_mrr,0)) AS fs_delta_usage_mrr,\n\n is_fs_mrr_cycle*(IF(is_ugc+is_loyalty = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS fs_overages_delta_usage_mrr,\n\n is_fs_mrr_cycle*(IF(is_ugc+is_loyalty = 1 AND \n ((is_remain_fs+is_inflow_fs=1 AND delta_usage_mrr < 0)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS fs_negative_overages_delta_usage_mrr,\n\n is_fs_mrr_cycle*(IF(is_sms+is_email+is_subscriptions = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS fs_usage_products_delta_usage_mrr,\n\n is_fs_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS fs_communications_delta_usage_mrr,\n\n is_fs_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_l12m_avg_usage,0))*12 AS fs_communications_delta_l12m_usage,\n\n is_fs_mrr_cycle*(IF(is_sms+is_email = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_l12m_avg_utilized_free_credits,0))*12 AS fs_communications_delta_l12m_utilized_free_credits,\n\n is_fs_mrr_cycle*(IF(is_subscriptions = 1 AND \n ((is_remain_fs+is_inflow_fs=1)\n OR\n (is_outflow_fs=1 AND lost_usage_mrr < 0))\n ,delta_usage_mrr,0)) AS fs_subscriptions_delta_usage_mrr,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM revenue_components_calc\n)\n\n\n\nSELECT *\nFROM organization_product_revenue_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__organization_product_revenue_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__organization_product_revenue_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.sql", "unique_id": "model.yoda.analytics___finance__organization_product_revenue_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_monthly", "analytics___finance__organization_product_revenue_monthly"], "alias": "analytics___finance__organization_product_revenue_monthly", "checksum": {"name": "sha256", "checksum": "e04b055ff5a8f1080905779cbb447f2b694459e682c253f3d3931dc6be6e5b81"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK [month, organization_key, product_family_group] OR [organization_product_month_id]\n\nThis table stores monthly revenue data related to organizations and their products.\n\nIt includes various metrics and indicators to analyze revenue trends.\n\nThe general table structure is as follows:\n\n 1. opening state - the state at the begining of the month (end of previous month) \n 2. closing state - the state at the end of the month \n 3. within month state - for organizations that subscribed to a product and churned in the same month.", "columns": {"organization_product_month_id": {"name": "organization_product_month_id", "description": "ID of the combination: [month, organization_key, product_family_group]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "PK 1/3\n\nThe month associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "PK 2/3\n\nThe unique identifier for each organization.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "PK 3/3\n\nContains 5 distinct values:\n 1. UGC (Including Reviews, VMS, Insights)\n 2. Loyalty\n 3. SMS\n 4. Email\n 5. Subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_name": {"name": "opening_plan_name", "description": "The name of the plan at the beginning of the month.\n\nCould be an organization have more than one plan but in order to keep the granularity and simplify things, we chose the higher plan in those cases.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name": {"name": "closing_plan_name", "description": "The name of the plan at the end of the month.\n\nCould be an organization have more than one plan but in order to keep the granularity and simplify things, we chose the higher plan in those cases.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_plan_name": {"name": "within_month_plan_name", "description": "The name of the plan within the month (for organizations that subscribed to a product and churned in the same month).\n\nCould be an organization have more than one plan but in order to keep the granularity and simplify things, we chose the higher plan in those cases.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_group": {"name": "opening_plan_group", "description": "The group of the opening plan.\n\nFor example, the group of both \"Reviews Growth 50\" and \"Reviews Growth 100\" is \"Growth\".", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_group": {"name": "closing_plan_group", "description": "The group of the closing plan.\n\nFor example, the group of both \"Reviews Growth 50\" and \"Reviews Growth 100\" is \"Growth\".", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_plan_group": {"name": "within_month_plan_group", "description": "The group of the within month plan.\n\nFor example, the group of both \"Reviews Growth 50\" and \"Reviews Growth 100\" is \"Growth\".", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_revenue_in_usd": {"name": "opening_revenue_in_usd", "description": "opening_revenue = opening_usage_revenue + opening_saas_MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_revenue_in_usd": {"name": "closing_revenue_in_usd", "description": "closing_revenue = closing_usage_revenue + closing_saas_MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_saas_mrr_in_usd": {"name": "opening_saas_mrr_in_usd", "description": "Only the SaaS component of the MRR at the beginning of the month in USD.\n\nFor more info go to the closing_saas_mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_saas_mrr_in_usd": {"name": "closing_saas_mrr_in_usd", "description": "Only the SaaS component of the MRR at the end of the month in USD.\n\n SaaS MRR - for:\n\n 1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_revenue_in_usd": {"name": "opening_usage_revenue_in_usd", "description": "The usage-based revenue at the end of previous month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_revenue_in_usd": {"name": "closing_usage_revenue_in_usd", "description": "The usage-based revenue at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_mrr_in_usd": {"name": "opening_mrr_in_usd", "description": "The Monthly Recurring Revenue (MRR) at the beginning of the month in USD.\n\nFor more info go to the closing_mrr_in_usd description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_mrr_in_usd": {"name": "closing_mrr_in_usd", "description": "The Monthly Recurring Revenue (MRR) at the end of the month in USD.\n\nContains two types:\n\n 1. SaaS MRR - for:\n\n 1.1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 1.2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)\n\n 2. Usage MRR - for:\n\n 2.1 Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2.2 ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n\n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_mrr_in_usd": {"name": "opening_usage_mrr_in_usd", "description": "Only the Usage component of the MRR at the end of previous month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n\n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_mrr_in_usd": {"name": "closing_usage_mrr_in_usd", "description": "Only the Usage component of the MRR at the end of the month in USD. Usage MRR - for:\n \n 1. Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n \n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "within_month_mrr_in_usd": {"name": "within_month_mrr_in_usd", "description": "The MRR within the month in USD (for organizations that subscribed to a product and churned in the same month).\n\n* Only SaaS MRR. if there is usage MRR it will be under closing MRR.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_pro_rated_mrr_in_usd": {"name": "opening_pro_rated_mrr_in_usd", "description": "The pro-rated Monthly Recurring Revenue (MRR) at the beginning of the month in USD.\n\nFor more info go to the closing_pro_rated_mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_pro_rated_mrr_in_usd": {"name": "closing_pro_rated_mrr_in_usd", "description": "The pro-rated Monthly Recurring Revenue (MRR) at the end of the month in USD.\n\nContains two types:\n\n 1. SaaS MRR (same as the regular MRR) - for:\n\n 1.1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 1.2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)\n\n 2. Usage MRR - for:\n\n 2.1 Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2.2 ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_pro_rated_mrr_in_usd": {"name": "opening_usage_pro_rated_mrr_in_usd", "description": "Only the Usage component of the pro-rated MRR at the end of previous month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_pro_rated_mrr_in_usd": {"name": "closing_usage_pro_rated_mrr_in_usd", "description": "Only the Usage component of the pro-rated MRR at the end of the month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_in_usd": {"name": "opening_usage_in_usd", "description": "The usage at the end of previous month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage amount w/o takeing into account free credits.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_in_usd": {"name": "closing_usage_in_usd", "description": "The usage at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage amount w/o takeing into account free credits.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_l12m_avg_usage_in_usd": {"name": "opening_l12m_avg_usage_in_usd", "description": "Last 12 months average of opening_usage_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_l12m_avg_usage_in_usd": {"name": "closing_l12m_avg_usage_in_usd", "description": "Last 12 months average of closing_usage_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_utilized_free_credits_in_usd": {"name": "opening_utilized_free_credits_in_usd", "description": "Estimated utilized free credits at the end of previous month (relevant only to SMS & Email).\n\n utilized_free_credits = usage_revenue-usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_utilized_free_credits_in_usd": {"name": "closing_utilized_free_credits_in_usd", "description": "Estimated utilized free credits at the end of month (relevant only to SMS & Email).\n\n utilized_free_credits = usage_revenue-usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_l12m_avg_utilized_free_credits_in_usd": {"name": "opening_l12m_avg_utilized_free_credits_in_usd", "description": "Last 12 months average of opening_utilized_free_credits_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_l12m_avg_utilized_free_credits_in_usd": {"name": "closing_l12m_avg_utilized_free_credits_in_usd", "description": "Last 12 months average of closing_utilized_free_credits_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_revenue_for_cohorts": {"name": "opening_revenue_for_cohorts", "description": "In order to determine the paid cohorts we are using different revenue types for different products:\n\n 1. Loyalty & UGC - we are using only the SaaS revenue, since customer can't be paying customer for these products w/o SaaS fees.\n\n 2. SMS, Email & Subscriptions - we are using the total revenue (SaaS+usage), since customer can be paying customer for these products w/o SaaS fees.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_revenue_for_cohorts": {"name": "closing_revenue_for_cohorts", "description": "In order to determine the paid cohorts we are using different revenue types for different products:\n\n 1. Loyalty & UGC - we are using only the SaaS revenue, since customer can't be paying customer for these products w/o SaaS fees.\n\n 2. SMS, Email & Subscriptions - we are using the total revenue (SaaS+usage), since customer can be paying customer for these products w/o SaaS fees.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_first_paid_month": {"name": "product_first_paid_month", "description": "The first ever paid month for the specific organization and product_family_group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_months_since_last_paid_month": {"name": "product_months_since_last_paid_month", "description": "Number of months since last paid month (on product level), based on closing_revenue_for_cohorts.\n 1. For first ever paid month OR months w/o closing_revenue_for_cohorts the value will be NULL\n 2. For new cohort's first month the value will be greater than 1 and will tell us how many months passed since the previous cohort ended.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_cohort_number": {"name": "product_cohort_number", "description": "The paid cohort number of the product (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the product.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "product_month_number_since_current_cohort": {"name": "product_month_number_since_current_cohort", "description": "The number of months since the current product paid cohort started (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the product.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_month_number_since_first_cohort": {"name": "product_month_number_since_first_cohort", "description": "The number of months since the first product paid cohort started (based on closing_revenue_for_cohorts).\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_organization_revenue_for_cohorts": {"name": "opening_organization_revenue_for_cohorts", "description": "Indicates if the organization paid for at least one product at the end of previous month.\n\nIF(opening_organization_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_organization_revenue_for_cohorts": {"name": "closing_organization_revenue_for_cohorts", "description": "SUM of all the products revenue under the organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_cohort_number": {"name": "organization_cohort_number", "description": "The paid cohort number of the organization (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the organization.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "organization_months_since_last_paid_month": {"name": "organization_months_since_last_paid_month", "description": "Number of months since last paid month (on organization level), based on closing_revenue_for_cohorts.\n 1. For first ever paid month OR months w/o closing_revenue_for_cohorts the value will be NULL\n 2. For new cohort's first month the value will be greater than 1 and will tell us how many months passed since the previous cohort ended.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_month_number_since_current_cohort": {"name": "organization_month_number_since_current_cohort", "description": "The number of months since the current organization paid cohort started (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the organization.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_month_number_since_first_cohort": {"name": "organization_month_number_since_first_cohort", "description": "The number of months since the first organization paid cohort started (based on closing_revenue_for_cohorts).\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "adjusted_revenue_in_usd": {"name": "adjusted_revenue_in_usd", "description": "adjusted_revenue = SaaS_adjusted_revenue + Usage_adjusted_revenue\n 1. SaaS_adjusted_revenue = SaaS revenue X number of days subscribed\n 2. Usage_adjusted_revenue = usage_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "saas_adjusted_revenue_in_usd": {"name": "saas_adjusted_revenue_in_usd", "description": "SaaS_adjusted_revenue = SaaS revenue X number of days subscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "catch_up_revenue_in_usd": {"name": "catch_up_revenue_in_usd", "description": "free_month_catch_up_revenue + lost_after_won_catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "approximate_revenue_in_usd": {"name": "approximate_revenue_in_usd", "description": "The approximate revenue is mainly for FP&A to try and bridge between our revenue numbers and accounting revenue numbers.\napproximate_revenue = adjusted_revenue + catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_lost_after_won_effective_mrr": {"name": "opening_lost_after_won_effective_mrr", "description": "closing_lost_after_won_effective_mrr of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_lost_after_won_effective_mrr": {"name": "closing_lost_after_won_effective_mrr", "description": "if is_lost_after_won = 1 then closing_lost_after_won_effective_mrr = effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_lost_after_won_effective_mrr": {"name": "delta_lost_after_won_effective_mrr", "description": "closing - opening lost_after_won_effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_free_month_mrr_impact": {"name": "opening_free_month_mrr_impact", "description": "closing_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_free_month_mrr_impact": {"name": "closing_free_month_mrr_impact", "description": "End of month sales_free_month_mrr_impact + csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_free_month_mrr_impact": {"name": "delta_free_month_mrr_impact", "description": "closing - opening free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_sales_free_month_mrr_impact": {"name": "opening_sales_free_month_mrr_impact", "description": "closing_sales_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_sales_free_month_mrr_impact": {"name": "closing_sales_free_month_mrr_impact", "description": "End of month MRR that changed due to sales free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_sales_free_month_mrr_impact": {"name": "delta_sales_free_month_mrr_impact", "description": "closing - opening sales_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_csm_free_month_mrr_impact": {"name": "opening_csm_free_month_mrr_impact", "description": "closing_csm_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_csm_free_month_mrr_impact": {"name": "closing_csm_free_month_mrr_impact", "description": "End of month MRR that changed due to CSM free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_csm_free_month_mrr_impact": {"name": "delta_csm_free_month_mrr_impact", "description": "closing - opening csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_after_won_catch_up_revenue_in_usd": {"name": "lost_after_won_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the LAW only affect the revenue from the LAW recognition month on.\nIn order to catch the entire LAW impact, we do a catch-up calculation:\n lost_after_won_catch_up_revenue = delta_lost_after_won_effective_mrr X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_month_catch_up_revenue_in_usd": {"name": "free_month_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the given free months only affect the revenue from the grant month on.\nIn order to catch the entire free months impact, we do a catch-up calculation:\n free_month_catch_up_revenue = delta_free_month_mrr_impact X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscription_start_date": {"name": "subscription_start_date", "description": "The subscription start date.\n 1. In case we get subscriptions from both Zuora and Shopify billing (not supposed to happen) under the same org at the same time the start date will be the max between them", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_end_date": {"name": "subscription_end_date", "description": "The subscription end date.\n 1. For active subscriptions the end date is 2999-01-01\n 2. For cancelled subscriptions the end date will be the cancelled date\n 3. In case we get subscriptions from both Zuora and Shopify billing (not supposed to happen) under the same org at the same time the end date will be the max between them", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "renewal_date": {"name": "renewal_date", "description": "The contract renewal date. (only relevant to HT)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opening_is_paid_product": {"name": "opening_is_paid_product", "description": "Indicates if the organization is considered as paying customer for the specific product at the end of the previous month.\n\nIF(opening_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_paid_product": {"name": "closing_is_paid_product", "description": "Indicates if the organization paid for the specific product at the end of the month.\n\nIF(closing_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_paying_organization": {"name": "opening_is_paying_organization", "description": "Indicates if the organization paid for at least one product at the end of previous month.\n\nIF(opening_organization_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_paying_organization": {"name": "closing_is_paying_organization", "description": "Indicates if the organization paid for at least one product at the end of the month.\n\nIF(closing_organization_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc": {"name": "is_ugc", "description": "Indicates if the record's product is UGC.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "Indicates if the record's product is Loyalty.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "Indicates if the record's product is SMS.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "Indicates if the record's product is Email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "Indicates if the record's product is Subscriptions.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_annual_billing": {"name": "opening_is_annual_billing", "description": "Indicates if the plan was billed annually at the beginning of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_annual_billing": {"name": "closing_is_annual_billing", "description": "Indicates if the plan was billed annually at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_annual_billing": {"name": "within_month_is_annual_billing", "description": "Indicates if the plan was billed annually within the month (for organizations that subscribed to a product and churned in the same month).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_self_service": {"name": "opening_is_self_service", "description": "Indicates if the plan was self-service at the beginning of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_self_service": {"name": "closing_is_self_service", "description": "Indicates if the plan was self-service at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_self_service": {"name": "within_month_is_self_service", "description": "Indicates if the plan was self-service within the month (for organizations that subscribed to a product and churned in the same month).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_full_service": {"name": "opening_is_full_service", "description": "Indicates if the plan was full-service at the beginning of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_full_service": {"name": "closing_is_full_service", "description": "Indicates if the plan was full-service at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_full_service": {"name": "within_month_is_full_service", "description": "Indicates if the plan was full-service within the month (for organizations that subscribed to a product and churned in the same month).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_self_service_organization": {"name": "opening_is_self_service_organization", "description": "Indicates if the organization had no full-service product and at least one self-service product at the end of previous month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_is_self_service_organization": {"name": "closing_is_self_service_organization", "description": "Indicates if the organization had no full-service product and at least one self-service product at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_is_full_service_organization": {"name": "opening_is_full_service_organization", "description": "Indicates if the organization had at least one full-service product at the end of previous month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_full_service_organization": {"name": "closing_is_full_service_organization", "description": "Indicates if the organization had at least one full-service product at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_in_term_renewal": {"name": "is_in_term_renewal", "description": "Indicates if the renewal_opportunity_type = 'In Term Renewal'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "indicates if the subscription is lost after won or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_terminated_subscription_within_first_month": {"name": "is_terminated_subscription_within_first_month", "description": "Indicates if the subscription was terminated within the first month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "Indicates if the subscription is staggered (different start dates for different products under the same subscription).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "zuora_account_id_array": {"name": "zuora_account_id_array", "description": "An array containing Zuora account IDs associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_account_id_array": {"name": "sf_account_id_array", "description": "An array containing Salesforce account IDs associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_array": {"name": "sf_opportunity_id_array", "description": "An array containing Salesforce opportunity IDs associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "zuora_subscription_name_and_version_array": {"name": "zuora_subscription_name_and_version_array", "description": "An array containing Zuora subscription names and versions associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "saas_shopify_charge_id_array": {"name": "saas_shopify_charge_id_array", "description": "An array containing SaaS Shopify charge IDs associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "saas_is_zuora_source": {"name": "saas_is_zuora_source", "description": "Indicates if SaaS revenue data is sourced from Zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "saas_is_shopify_billing_source": {"name": "saas_is_shopify_billing_source", "description": "Indicates if SaaS revenue data is sourced from Shopify billing.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "usage_is_zuora_source": {"name": "usage_is_zuora_source", "description": "Indicates if usage revenue data is sourced from Zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "usage_is_shopify_billing_source": {"name": "usage_is_shopify_billing_source", "description": "Indicates if usage revenue data is sourced from Shopify billing.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "usage_is_communication_source": {"name": "usage_is_communication_source", "description": "Indicates if usage revenue data is sourced from communication.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "usage_is_chargify_source": {"name": "usage_is_chargify_source", "description": "Indicates if usage revenue data is sourced from Chargify.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_saas_source": {"name": "is_saas_source", "description": "Indicates if revenue data is sourced from SaaS.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_usage_source": {"name": "is_usage_source", "description": "Indicates if revenue data is sourced from usage.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "The timestamp indicating when the record was last updated in the data warehouse.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082636.9926865, "relation_name": "dev_dkruh1.analytics___finance__organization_product_revenue_monthly", "raw_code": "-- Import --\n\nWITH import_recurring_revenue AS (\nSELECT *\nFROM {{ ref('analytics___finance__organization_product_recurring_revenue_monthly') }}\n{% if target.name == 'dev' %}\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n{% endif %}\n),\n\nimport_usage_revenue AS (\nSELECT *\nFROM {{ ref('analytics___finance__organization_product_usage_revenue_monthly') }}\n{% if target.name == 'dev' %}\nWHERE revenue_month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n{% endif %}\n\n),\n\nimport_plan AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__product_plan_name_rank') }}\n),\n\n-- Logic --\n\nrecurring_source AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n opening_plan_name,\n closing_plan_name,\n within_month_plan_name,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n opening_mrr_in_usd AS opening_saas_mrr_in_usd,\n closing_mrr_in_usd AS closing_saas_mrr_in_usd,\n NULL AS opening_usage_mrr_in_usd,\n NULL AS closing_usage_mrr_in_usd,\n within_month_mrr_in_usd,\n opening_mrr_in_usd AS opening_revenue_in_usd,\n closing_mrr_in_usd AS closing_revenue_in_usd,\n NULL AS opening_usage_revenue_in_usd,\n NULL AS closing_usage_revenue_in_usd,\n opening_mrr_in_usd AS opening_pro_rated_mrr_in_usd,\n closing_mrr_in_usd AS closing_pro_rated_mrr_in_usd,\n NULL AS opening_usage_pro_rated_mrr_in_usd,\n NULL AS closing_usage_pro_rated_mrr_in_usd,\n NULL AS opening_usage_in_usd,\n NULL AS closing_usage_in_usd,\n NULL AS opening_l12m_avg_usage_in_usd,\n NULL AS closing_l12m_avg_usage_in_usd,\n NULL AS opening_utilized_free_credits_in_usd,\n NULL AS closing_utilized_free_credits_in_usd,\n NULL AS opening_l12m_avg_utilized_free_credits_in_usd,\n NULL AS closing_l12m_avg_utilized_free_credits_in_usd,\n adjusted_revenue_in_usd,\n adjusted_revenue_in_usd AS saas_adjusted_revenue_in_usd,\n catch_up_revenue_in_usd,\n approximate_revenue_in_usd,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n subscription_start_date,\n subscription_end_date,\n renewal_date,\n opening_is_annual_billing,\n closing_is_annual_billing,\n within_month_is_annual_billing,\n opening_is_self_service,\n closing_is_self_service,\n within_month_is_self_service,\n opening_is_full_service,\n closing_is_full_service,\n within_month_is_full_service,\n is_in_term_renewal,\n is_lost_after_won,\n is_terminated_subscription_within_first_month,\n is_staggered_subscription,\n zuora_account_id_array,\n sf_account_id_array,\n sf_opportunity_id_array,\n zuora_subscription_name_and_version_array,\n shopify_charge_id_array AS saas_shopify_charge_id_array,\n is_zuora_source AS saas_is_zuora_source,\n is_shopify_billing_source AS saas_is_shopify_billing_source,\n SMALLINT(0) AS usage_is_zuora_source,\n SMALLINT(0) AS usage_is_shopify_billing_source,\n SMALLINT(0) AS usage_is_communication_source,\n SMALLINT(0) AS usage_is_chargify_source,\n SMALLINT(1) AS is_saas_source,\n SMALLINT(0) AS is_usage_source\nFROM import_recurring_revenue\n),\n\nusage_source AS (\nSELECT \n organization_product_month_id,\n revenue_month AS month,\n organization_key,\n product_family AS product_family_group,\n opening_plan_name,\n closing_plan_name,\n NULL AS within_month_plan_name,\n opening_usage_mrr_in_usd AS opening_mrr_in_usd,\n closing_usage_mrr_in_usd AS closing_mrr_in_usd,\n NULL AS opening_saas_mrr_in_usd,\n NULL AS closing_saas_mrr_in_usd,\n opening_usage_mrr_in_usd AS opening_usage_mrr_in_usd,\n closing_usage_mrr_in_usd AS closing_usage_mrr_in_usd,\n NULL AS within_month_mrr_in_usd,\n opening_usage_revenue_in_usd AS opening_revenue_in_usd,\n closing_usage_revenue_in_usd AS closing_revenue_in_usd,\n opening_usage_revenue_in_usd AS opening_usage_revenue_in_usd,\n closing_usage_revenue_in_usd AS closing_usage_revenue_in_usd,\n opening_usage_pro_rated_mrr_in_usd AS opening_pro_rated_mrr_in_usd,\n closing_usage_pro_rated_mrr_in_usd AS closing_pro_rated_mrr_in_usd,\n opening_usage_pro_rated_mrr_in_usd AS opening_usage_pro_rated_mrr_in_usd,\n closing_usage_pro_rated_mrr_in_usd AS closing_usage_pro_rated_mrr_in_usd,\n opening_usage_in_usd,\n closing_usage_in_usd,\n opening_l12m_avg_usage_in_usd,\n closing_l12m_avg_usage_in_usd,\n opening_utilized_free_credits_in_usd,\n closing_utilized_free_credits_in_usd,\n opening_l12m_avg_utilized_free_credits_in_usd,\n closing_l12m_avg_utilized_free_credits_in_usd,\n closing_usage_revenue_in_usd AS adjusted_revenue_in_usd,\n NULL AS saas_adjusted_revenue_in_usd,\n NULL AS catch_up_revenue_in_usd,\n closing_usage_revenue_in_usd AS approximate_revenue_in_usd,\n NULL AS opening_lost_after_won_effective_mrr,\n NULL AS closing_lost_after_won_effective_mrr,\n NULL AS delta_lost_after_won_effective_mrr,\n NULL AS opening_free_month_mrr_impact,\n NULL AS closing_free_month_mrr_impact,\n NULL AS delta_free_month_mrr_impact,\n NULL AS opening_sales_free_month_mrr_impact,\n NULL AS closing_sales_free_month_mrr_impact,\n NULL AS delta_sales_free_month_mrr_impact,\n NULL AS opening_csm_free_month_mrr_impact,\n NULL AS closing_csm_free_month_mrr_impact,\n NULL AS delta_csm_free_month_mrr_impact,\n NULL AS lost_after_won_catch_up_revenue_in_usd,\n NULL AS free_month_catch_up_revenue_in_usd,\n NULL AS subscription_start_date,\n NULL AS subscription_end_date,\n NULL AS renewal_date,\n IF(opening_is_full_service = 1,1,0) AS opening_is_annual_billing,\n IF(closing_is_full_service = 1,1,0) AS closing_is_annual_billing,\n NULL AS within_month_is_annual_billing,\n opening_is_self_service,\n closing_is_self_service,\n NULL AS within_month_is_self_service,\n opening_is_full_service,\n closing_is_full_service,\n NULL AS within_month_is_full_service,\n SMALLINT(0) AS is_in_term_renewal,\n SMALLINT(0) AS is_lost_after_won,\n SMALLINT(0) AS is_terminated_subscription_within_first_month,\n SMALLINT(0) AS is_staggered_subscription,\n NULL AS zuora_account_id_array,\n NULL AS sf_account_id_array,\n NULL AS sf_opportunity_id_array,\n NULL AS zuora_subscription_name_and_version_array,\n NULL AS saas_shopify_charge_id_array,\n SMALLINT(0) AS saas_is_zuora_source,\n SMALLINT(0) AS saas_is_shopify_billing_source,\n is_zuora_source AS usage_is_zuora_source,\n is_shopify_billing_source AS usage_is_shopify_billing_source,\n is_communication_source AS usage_is_communication_source,\n is_chargify_source AS usage_is_chargify_source,\n SMALLINT(0) AS is_saas_source,\n SMALLINT(1) AS is_usage_source\nFROM import_usage_revenue\n),\n\nunion_zuora_shopify_sources AS (\nSELECT *\nFROM recurring_source\nUNION ALL\nSELECT *\nFROM usage_source\n),\n\nunion_w_terminated_indicator AS (\nSELECT *,\n MIN(is_terminated_subscription_within_first_month) OVER(PARTITION BY organization_product_month_id) AS min_is_terminated_subscription_within_first_month,\n FIRST_VALUE(opening_plan_name,TRUE) OVER (PARTITION BY organization_product_month_id ORDER BY is_saas_source DESC, adjusted_revenue_in_usd DESC) AS first_opening_plan_name,\n FIRST_VALUE(closing_plan_name,TRUE) OVER (PARTITION BY organization_product_month_id ORDER BY is_saas_source DESC, adjusted_revenue_in_usd DESC) AS first_closing_plan_name,\n FIRST_VALUE(within_month_plan_name,TRUE) OVER (PARTITION BY organization_product_month_id ORDER BY is_saas_source DESC, adjusted_revenue_in_usd DESC) AS first_within_month_plan_name\nFROM union_zuora_shopify_sources\n),\n\norganization_product_revenue_monthly_agg AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n MAX(first_opening_plan_name) AS opening_plan_name,\n MAX(first_closing_plan_name) AS closing_plan_name,\n MAX(first_within_month_plan_name) AS within_month_plan_name,\n SUM(opening_revenue_in_usd) AS opening_revenue_in_usd,\n SUM(closing_revenue_in_usd) AS closing_revenue_in_usd,\n SUM(opening_saas_mrr_in_usd) AS opening_saas_mrr_in_usd,\n SUM(closing_saas_mrr_in_usd) AS closing_saas_mrr_in_usd,\n SUM(opening_usage_revenue_in_usd) AS opening_usage_revenue_in_usd,\n SUM(closing_usage_revenue_in_usd) AS closing_usage_revenue_in_usd,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(opening_usage_mrr_in_usd) AS opening_usage_mrr_in_usd,\n SUM(closing_usage_mrr_in_usd) AS closing_usage_mrr_in_usd,\n SUM(within_month_mrr_in_usd) AS within_month_mrr_in_usd,\n SUM(opening_pro_rated_mrr_in_usd) AS opening_pro_rated_mrr_in_usd,\n SUM(closing_pro_rated_mrr_in_usd) AS closing_pro_rated_mrr_in_usd,\n SUM(opening_usage_pro_rated_mrr_in_usd) AS opening_usage_pro_rated_mrr_in_usd,\n SUM(closing_usage_pro_rated_mrr_in_usd) AS closing_usage_pro_rated_mrr_in_usd,\n SUM(opening_usage_in_usd) AS opening_usage_in_usd,\n SUM(closing_usage_in_usd) AS closing_usage_in_usd,\n SUM(opening_l12m_avg_usage_in_usd) AS opening_l12m_avg_usage_in_usd,\n SUM(closing_l12m_avg_usage_in_usd) AS closing_l12m_avg_usage_in_usd,\n SUM(opening_utilized_free_credits_in_usd) AS opening_utilized_free_credits_in_usd,\n SUM(closing_utilized_free_credits_in_usd) AS closing_utilized_free_credits_in_usd,\n SUM(opening_l12m_avg_utilized_free_credits_in_usd) AS opening_l12m_avg_utilized_free_credits_in_usd,\n SUM(closing_l12m_avg_utilized_free_credits_in_usd) AS closing_l12m_avg_utilized_free_credits_in_usd,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(saas_adjusted_revenue_in_usd) AS saas_adjusted_revenue_in_usd,\n SUM(catch_up_revenue_in_usd) AS catch_up_revenue_in_usd,\n SUM(approximate_revenue_in_usd) AS approximate_revenue_in_usd,\n SUM(opening_lost_after_won_effective_mrr) AS opening_lost_after_won_effective_mrr,\n SUM(closing_lost_after_won_effective_mrr) AS closing_lost_after_won_effective_mrr,\n SUM(delta_lost_after_won_effective_mrr) AS delta_lost_after_won_effective_mrr,\n SUM(opening_free_month_mrr_impact) AS opening_free_month_mrr_impact,\n SUM(closing_free_month_mrr_impact) AS closing_free_month_mrr_impact,\n SUM(delta_free_month_mrr_impact) AS delta_free_month_mrr_impact,\n SUM(opening_sales_free_month_mrr_impact) AS opening_sales_free_month_mrr_impact,\n SUM(closing_sales_free_month_mrr_impact) AS closing_sales_free_month_mrr_impact,\n SUM(delta_sales_free_month_mrr_impact) AS delta_sales_free_month_mrr_impact,\n SUM(opening_csm_free_month_mrr_impact) AS opening_csm_free_month_mrr_impact,\n SUM(closing_csm_free_month_mrr_impact) AS closing_csm_free_month_mrr_impact,\n SUM(delta_csm_free_month_mrr_impact) AS delta_csm_free_month_mrr_impact,\n SUM(lost_after_won_catch_up_revenue_in_usd) AS lost_after_won_catch_up_revenue_in_usd,\n SUM(free_month_catch_up_revenue_in_usd) AS free_month_catch_up_revenue_in_usd,\n MAX(subscription_start_date) AS subscription_start_date,\n MAX(subscription_end_date) AS subscription_end_date,\n MAX(renewal_date) AS renewal_date,\n IF(MAX(opening_is_full_service) = 1,1,MAX(opening_is_annual_billing)) AS opening_is_annual_billing,\n IF(MAX(closing_is_full_service) = 1,1,MAX(closing_is_annual_billing)) AS closing_is_annual_billing,\n MAX(within_month_is_annual_billing) AS within_month_is_annual_billing,\n IF(MAX(opening_is_full_service) = 1,0,MAX(opening_is_self_service)) AS opening_is_self_service,\n IF(MAX(closing_is_full_service) = 1,0,MAX(closing_is_self_service)) AS closing_is_self_service,\n MIN(within_month_is_self_service) AS within_month_is_self_service,\n MAX(opening_is_full_service) AS opening_is_full_service,\n MAX(closing_is_full_service) AS closing_is_full_service,\n MAX(within_month_is_full_service) AS within_month_is_full_service,\n MAX(is_in_term_renewal) AS is_in_term_renewal,\n MAX(is_lost_after_won) AS is_lost_after_won,\n MIN(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n MAX(is_staggered_subscription) AS is_staggered_subscription,\n MAX(zuora_account_id_array) AS zuora_account_id_array,\n MAX(sf_account_id_array) AS sf_account_id_array,\n MAX(sf_opportunity_id_array) AS sf_opportunity_id_array,\n MAX(zuora_subscription_name_and_version_array) AS zuora_subscription_name_and_version_array,\n MAX(saas_shopify_charge_id_array) AS saas_shopify_charge_id_array,\n MAX(saas_is_zuora_source) AS saas_is_zuora_source,\n MAX(saas_is_shopify_billing_source) AS saas_is_shopify_billing_source,\n MAX(usage_is_zuora_source) AS usage_is_zuora_source,\n MAX(usage_is_shopify_billing_source) AS usage_is_shopify_billing_source,\n MAX(usage_is_communication_source) AS usage_is_communication_source,\n MAX(usage_is_chargify_source) AS usage_is_chargify_source,\n MAX(is_saas_source) AS is_saas_source,\n MAX(is_usage_source) AS is_usage_source\nFROM union_w_terminated_indicator\nWHERE min_is_terminated_subscription_within_first_month = is_terminated_subscription_within_first_month\nGROUP BY 1,2,3,4\n),\n\norganization_product_revenue_monthly_base AS (\nSELECT \n *,\n IF(product_family_group IN('Loyalty','UGC'),closing_saas_mrr_in_usd,closing_revenue_in_usd) AS closing_revenue_for_cohorts, -- In Loyalty & UGC, the SaaS revenue determine the cohorts\n IF(product_family_group IN('Loyalty','UGC'),opening_saas_mrr_in_usd,opening_revenue_in_usd) AS opening_revenue_for_cohorts, -- In Loyalty & UGC, the SaaS revenue determine the cohorts \n MAX(opening_is_full_service) OVER(PARTITION BY organization_key,month) AS opening_is_full_service_organization, \n MAX(closing_is_full_service) OVER(PARTITION BY organization_key,month) AS closing_is_full_service_organization,\n MAX(opening_is_self_service) OVER(PARTITION BY organization_key,month) AS opening_is_self_service_organization, \n MAX(closing_is_self_service) OVER(PARTITION BY organization_key,month) AS closing_is_self_service_organization\nFROM organization_product_revenue_monthly_agg\n),\n\nproduct_cohort_first_cohort_month_base AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n LAG(month) OVER (PARTITION BY organization_key,product_family_group ORDER BY month) AS last_paid_month,\n MONTHS_BETWEEN(month,LAG(month) OVER (PARTITION BY organization_key,product_family_group ORDER BY month)) AS months_since_last_paid_month,\n MIN(month) OVER (PARTITION BY organization_key,product_family_group) AS product_first_cohort_month\nFROM organization_product_revenue_monthly_base\nWHERE NVL(closing_revenue_for_cohorts,0) <> 0\n),\n\nproduct_cohort_month_base AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n months_since_last_paid_month,\n IF(last_paid_month IS NULL OR months_since_last_paid_month <> 1,1,0) AS is_product_first_current_cohort_month,\n IF(last_paid_month IS NULL OR months_since_last_paid_month <> 1,month,NULL) AS product_first_current_cohort_month,\n product_first_cohort_month\nFROM product_cohort_first_cohort_month_base\n),\n\nproduct_cohort_month AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n months_since_last_paid_month,\n is_product_first_current_cohort_month,\n MAX(product_first_current_cohort_month) OVER(PARTITION BY organization_key,product_family_group ORDER BY month ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS product_first_current_cohort_month,\n product_first_cohort_month\nFROM product_cohort_month_base\n),\n\nproduct_cohort AS (\nSELECT \n organization_product_month_id,\n months_since_last_paid_month,\n is_product_first_current_cohort_month,\n DENSE_RANK() OVER(PARTITION BY organization_key, product_family_group ORDER BY product_first_current_cohort_month) AS product_cohort_number,\n MONTHS_BETWEEN(month,product_first_current_cohort_month) AS product_month_number_since_current_cohort,\n product_first_cohort_month\nFROM product_cohort_month\n),\n\norganization_paid_months AS (\nSELECT DISTINCT\n month,\n organization_key\nFROM organization_product_revenue_monthly_base\nWHERE NVL(closing_revenue_for_cohorts,0) <> 0\n),\n\norganization_cohort_first_cohort_month_base AS (\nSELECT \n month,\n organization_key,\n LAG(month) OVER (PARTITION BY organization_key ORDER BY month) AS last_paid_month,\n MONTHS_BETWEEN(month,LAG(month) OVER (PARTITION BY organization_key ORDER BY month)) AS months_since_last_paid_month,\n MIN(month) OVER (PARTITION BY organization_key) AS organization_first_cohort_month\nFROM organization_paid_months\n),\n\norganization_cohort_month_base AS (\nSELECT \n month,\n organization_key,\n months_since_last_paid_month,\n IF(last_paid_month IS NULL OR months_since_last_paid_month <> 1,1,0) AS is_organization_first_current_cohort_month,\n IF(last_paid_month IS NULL OR months_since_last_paid_month <> 1,month,NULL) AS organization_first_current_cohort_month,\n organization_first_cohort_month\nFROM organization_cohort_first_cohort_month_base\n),\n\norganization_cohort_month AS (\nSELECT \n month,\n organization_key,\n months_since_last_paid_month,\n is_organization_first_current_cohort_month,\n MAX(organization_first_current_cohort_month) OVER(PARTITION BY organization_key ORDER BY month ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS organization_first_current_cohort_month,\n organization_first_cohort_month\nFROM organization_cohort_month_base\n),\n\norganization_cohort AS (\nSELECT \n month,\n organization_key,\n months_since_last_paid_month,\n is_organization_first_current_cohort_month,\n DENSE_RANK() OVER(PARTITION BY organization_key ORDER BY organization_first_current_cohort_month) AS organization_cohort_number,\n MONTHS_BETWEEN(month,organization_first_current_cohort_month) AS organization_month_number_since_current_cohort,\n organization_first_cohort_month\nFROM organization_cohort_month\n),\n\norganization_product_revenue_monthly_w_cohort AS (\nSELECT \n revenue.organization_product_month_id,\n revenue.month,\n revenue.organization_key,\n revenue.product_family_group,\n opening_plan_name,\n closing_plan_name,\n within_month_plan_name,\n opening_plan.plan_group AS opening_plan_group,\n closing_plan.plan_group AS closing_plan_group,\n within_month_plan.plan_group AS within_month_plan_group,\n opening_revenue_in_usd,\n closing_revenue_in_usd,\n opening_saas_mrr_in_usd,\n closing_saas_mrr_in_usd,\n opening_usage_revenue_in_usd,\n closing_usage_revenue_in_usd,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n opening_usage_mrr_in_usd,\n closing_usage_mrr_in_usd,\n within_month_mrr_in_usd,\n opening_pro_rated_mrr_in_usd,\n closing_pro_rated_mrr_in_usd,\n opening_usage_pro_rated_mrr_in_usd,\n closing_usage_pro_rated_mrr_in_usd,\n opening_usage_in_usd,\n closing_usage_in_usd,\n opening_l12m_avg_usage_in_usd,\n closing_l12m_avg_usage_in_usd,\n opening_utilized_free_credits_in_usd,\n closing_utilized_free_credits_in_usd,\n opening_l12m_avg_utilized_free_credits_in_usd,\n closing_l12m_avg_utilized_free_credits_in_usd,\n opening_revenue_for_cohorts,\n closing_revenue_for_cohorts,\n MIN(product_cohort.product_first_cohort_month) OVER(PARTITION BY revenue.organization_key, revenue.product_family_group) AS product_first_paid_month,\n product_cohort.months_since_last_paid_month AS product_months_since_last_paid_month,\n product_cohort.product_cohort_number,\n product_cohort.product_month_number_since_current_cohort,\n IF(revenue.month < MIN(product_cohort.product_first_cohort_month) OVER(PARTITION BY revenue.organization_key, revenue.product_family_group),\n NULL,\n MONTHS_BETWEEN(revenue.month,MIN(product_cohort.product_first_cohort_month) OVER(PARTITION BY revenue.organization_key, revenue.product_family_group))) AS product_month_number_since_first_cohort,\n SUM(revenue.opening_revenue_for_cohorts) OVER(PARTITION BY revenue.organization_key,revenue.month) AS opening_organization_revenue_for_cohorts,\n SUM(revenue.closing_revenue_for_cohorts) OVER(PARTITION BY revenue.organization_key,revenue.month) AS closing_organization_revenue_for_cohorts,\n org_cohort.organization_cohort_number,\n org_cohort.months_since_last_paid_month AS organization_months_since_last_paid_month,\n org_cohort.organization_month_number_since_current_cohort,\n IF(revenue.month < MIN(org_cohort.organization_first_cohort_month) OVER(PARTITION BY revenue.organization_key),\n NULL,\n MONTHS_BETWEEN(revenue.month,MIN(org_cohort.organization_first_cohort_month) OVER(PARTITION BY revenue.organization_key))) AS organization_month_number_since_first_cohort,\n adjusted_revenue_in_usd,\n saas_adjusted_revenue_in_usd,\n catch_up_revenue_in_usd,\n approximate_revenue_in_usd,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n subscription_start_date,\n subscription_end_date,\n renewal_date,\n SMALLINT(IF(revenue.opening_revenue_for_cohorts > 0,1,0)) AS opening_is_paid_product,\n SMALLINT(IF(revenue.closing_revenue_for_cohorts > 0,1,0)) AS closing_is_paid_product,\n SMALLINT(IF(SUM(revenue.opening_revenue_for_cohorts) OVER(PARTITION BY revenue.organization_key,revenue.month) > 0,1,0)) AS opening_is_paying_organization,\n SMALLINT(IF(SUM(revenue.closing_revenue_for_cohorts) OVER(PARTITION BY revenue.organization_key,revenue.month) > 0,1,0)) AS closing_is_paying_organization,\n SMALLINT(IF(product_family_group = 'UGC' ,1,0)) AS is_ugc,\n SMALLINT(IF(product_family_group = 'Loyalty' ,1,0)) AS is_loyalty,\n SMALLINT(IF(product_family_group = 'SMS' ,1,0)) AS is_sms,\n SMALLINT(IF(product_family_group = 'Email' ,1,0)) AS is_email,\n SMALLINT(IF(product_family_group = 'Subscriptions' ,1,0)) AS is_subscriptions,\n SMALLINT(IF(opening_is_annual_billing IS NULL AND opening_is_self_service IS NOT NULL,0,opening_is_annual_billing)) AS opening_is_annual_billing,\n SMALLINT(IF(closing_is_annual_billing IS NULL AND closing_is_self_service IS NOT NULL,0,closing_is_annual_billing)) AS closing_is_annual_billing,\n SMALLINT(IF(within_month_is_annual_billing IS NULL AND within_month_is_self_service IS NOT NULL,0,within_month_is_annual_billing)) AS within_month_is_annual_billing,\n SMALLINT(opening_is_self_service) AS opening_is_self_service,\n SMALLINT(closing_is_self_service) AS closing_is_self_service,\n SMALLINT(within_month_is_self_service) AS within_month_is_self_service,\n SMALLINT(opening_is_full_service) AS opening_is_full_service,\n SMALLINT(closing_is_full_service) AS closing_is_full_service,\n SMALLINT(within_month_is_full_service) AS within_month_is_full_service,\n IF(opening_is_full_service_organization = 1,0,opening_is_self_service_organization) AS opening_is_self_service_organization,\n IF(closing_is_full_service_organization = 1,0,closing_is_self_service_organization) AS closing_is_self_service_organization,\n SMALLINT(opening_is_full_service_organization) AS opening_is_full_service_organization,\n SMALLINT(closing_is_full_service_organization) AS closing_is_full_service_organization,\n SMALLINT(is_in_term_renewal) AS is_in_term_renewal,\n SMALLINT(is_lost_after_won) AS is_lost_after_won,\n is_terminated_subscription_within_first_month,\n is_staggered_subscription,\n zuora_account_id_array,\n sf_account_id_array,\n sf_opportunity_id_array,\n zuora_subscription_name_and_version_array,\n saas_shopify_charge_id_array,\n SMALLINT(saas_is_zuora_source) AS saas_is_zuora_source,\n SMALLINT(saas_is_shopify_billing_source) AS saas_is_shopify_billing_source,\n SMALLINT(usage_is_zuora_source) AS usage_is_zuora_source,\n SMALLINT(usage_is_shopify_billing_source) AS usage_is_shopify_billing_source,\n SMALLINT(usage_is_communication_source) AS usage_is_communication_source,\n SMALLINT(usage_is_chargify_source) AS usage_is_chargify_source,\n is_saas_source,\n is_usage_source,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_revenue_monthly_base AS revenue\nLEFT JOIN product_cohort AS product_cohort\n ON revenue.organization_product_month_id = product_cohort.organization_product_month_id\nLEFT JOIN organization_cohort AS org_cohort\n ON revenue.month = org_cohort.month\n AND revenue.organization_key = org_cohort.organization_key\nLEFT JOIN import_plan AS opening_plan\n ON revenue.opening_plan_name = opening_plan.plan_name\nLEFT JOIN import_plan AS closing_plan\n ON revenue.closing_plan_name = closing_plan.plan_name\nLEFT JOIN import_plan AS within_month_plan\n ON revenue.within_month_plan_name = within_month_plan.plan_name\n)\n\nSELECT *\nFROM organization_product_revenue_monthly_w_cohort", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_recurring_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance__organization_product_usage_revenue_monthly", "package": null, "version": null}, {"name": "analytics___platform_stg__product_plan_name_rank", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly", "model.yoda.analytics___finance__organization_product_usage_revenue_monthly", "model.yoda.analytics___platform_stg__product_plan_name_rank"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_recurring_revenue AS (\nSELECT *\nFROM dev_dkruh1.analytics___finance__organization_product_recurring_revenue_monthly\n\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n\n),\n\nimport_usage_revenue AS (\nSELECT *\nFROM dev_dkruh1.analytics___finance__organization_product_usage_revenue_monthly\n\nWHERE revenue_month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n\n\n),\n\nimport_plan AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__product_plan_name_rank\n),\n\n-- Logic --\n\nrecurring_source AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n opening_plan_name,\n closing_plan_name,\n within_month_plan_name,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n opening_mrr_in_usd AS opening_saas_mrr_in_usd,\n closing_mrr_in_usd AS closing_saas_mrr_in_usd,\n NULL AS opening_usage_mrr_in_usd,\n NULL AS closing_usage_mrr_in_usd,\n within_month_mrr_in_usd,\n opening_mrr_in_usd AS opening_revenue_in_usd,\n closing_mrr_in_usd AS closing_revenue_in_usd,\n NULL AS opening_usage_revenue_in_usd,\n NULL AS closing_usage_revenue_in_usd,\n opening_mrr_in_usd AS opening_pro_rated_mrr_in_usd,\n closing_mrr_in_usd AS closing_pro_rated_mrr_in_usd,\n NULL AS opening_usage_pro_rated_mrr_in_usd,\n NULL AS closing_usage_pro_rated_mrr_in_usd,\n NULL AS opening_usage_in_usd,\n NULL AS closing_usage_in_usd,\n NULL AS opening_l12m_avg_usage_in_usd,\n NULL AS closing_l12m_avg_usage_in_usd,\n NULL AS opening_utilized_free_credits_in_usd,\n NULL AS closing_utilized_free_credits_in_usd,\n NULL AS opening_l12m_avg_utilized_free_credits_in_usd,\n NULL AS closing_l12m_avg_utilized_free_credits_in_usd,\n adjusted_revenue_in_usd,\n adjusted_revenue_in_usd AS saas_adjusted_revenue_in_usd,\n catch_up_revenue_in_usd,\n approximate_revenue_in_usd,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n subscription_start_date,\n subscription_end_date,\n renewal_date,\n opening_is_annual_billing,\n closing_is_annual_billing,\n within_month_is_annual_billing,\n opening_is_self_service,\n closing_is_self_service,\n within_month_is_self_service,\n opening_is_full_service,\n closing_is_full_service,\n within_month_is_full_service,\n is_in_term_renewal,\n is_lost_after_won,\n is_terminated_subscription_within_first_month,\n is_staggered_subscription,\n zuora_account_id_array,\n sf_account_id_array,\n sf_opportunity_id_array,\n zuora_subscription_name_and_version_array,\n shopify_charge_id_array AS saas_shopify_charge_id_array,\n is_zuora_source AS saas_is_zuora_source,\n is_shopify_billing_source AS saas_is_shopify_billing_source,\n SMALLINT(0) AS usage_is_zuora_source,\n SMALLINT(0) AS usage_is_shopify_billing_source,\n SMALLINT(0) AS usage_is_communication_source,\n SMALLINT(0) AS usage_is_chargify_source,\n SMALLINT(1) AS is_saas_source,\n SMALLINT(0) AS is_usage_source\nFROM import_recurring_revenue\n),\n\nusage_source AS (\nSELECT \n organization_product_month_id,\n revenue_month AS month,\n organization_key,\n product_family AS product_family_group,\n opening_plan_name,\n closing_plan_name,\n NULL AS within_month_plan_name,\n opening_usage_mrr_in_usd AS opening_mrr_in_usd,\n closing_usage_mrr_in_usd AS closing_mrr_in_usd,\n NULL AS opening_saas_mrr_in_usd,\n NULL AS closing_saas_mrr_in_usd,\n opening_usage_mrr_in_usd AS opening_usage_mrr_in_usd,\n closing_usage_mrr_in_usd AS closing_usage_mrr_in_usd,\n NULL AS within_month_mrr_in_usd,\n opening_usage_revenue_in_usd AS opening_revenue_in_usd,\n closing_usage_revenue_in_usd AS closing_revenue_in_usd,\n opening_usage_revenue_in_usd AS opening_usage_revenue_in_usd,\n closing_usage_revenue_in_usd AS closing_usage_revenue_in_usd,\n opening_usage_pro_rated_mrr_in_usd AS opening_pro_rated_mrr_in_usd,\n closing_usage_pro_rated_mrr_in_usd AS closing_pro_rated_mrr_in_usd,\n opening_usage_pro_rated_mrr_in_usd AS opening_usage_pro_rated_mrr_in_usd,\n closing_usage_pro_rated_mrr_in_usd AS closing_usage_pro_rated_mrr_in_usd,\n opening_usage_in_usd,\n closing_usage_in_usd,\n opening_l12m_avg_usage_in_usd,\n closing_l12m_avg_usage_in_usd,\n opening_utilized_free_credits_in_usd,\n closing_utilized_free_credits_in_usd,\n opening_l12m_avg_utilized_free_credits_in_usd,\n closing_l12m_avg_utilized_free_credits_in_usd,\n closing_usage_revenue_in_usd AS adjusted_revenue_in_usd,\n NULL AS saas_adjusted_revenue_in_usd,\n NULL AS catch_up_revenue_in_usd,\n closing_usage_revenue_in_usd AS approximate_revenue_in_usd,\n NULL AS opening_lost_after_won_effective_mrr,\n NULL AS closing_lost_after_won_effective_mrr,\n NULL AS delta_lost_after_won_effective_mrr,\n NULL AS opening_free_month_mrr_impact,\n NULL AS closing_free_month_mrr_impact,\n NULL AS delta_free_month_mrr_impact,\n NULL AS opening_sales_free_month_mrr_impact,\n NULL AS closing_sales_free_month_mrr_impact,\n NULL AS delta_sales_free_month_mrr_impact,\n NULL AS opening_csm_free_month_mrr_impact,\n NULL AS closing_csm_free_month_mrr_impact,\n NULL AS delta_csm_free_month_mrr_impact,\n NULL AS lost_after_won_catch_up_revenue_in_usd,\n NULL AS free_month_catch_up_revenue_in_usd,\n NULL AS subscription_start_date,\n NULL AS subscription_end_date,\n NULL AS renewal_date,\n IF(opening_is_full_service = 1,1,0) AS opening_is_annual_billing,\n IF(closing_is_full_service = 1,1,0) AS closing_is_annual_billing,\n NULL AS within_month_is_annual_billing,\n opening_is_self_service,\n closing_is_self_service,\n NULL AS within_month_is_self_service,\n opening_is_full_service,\n closing_is_full_service,\n NULL AS within_month_is_full_service,\n SMALLINT(0) AS is_in_term_renewal,\n SMALLINT(0) AS is_lost_after_won,\n SMALLINT(0) AS is_terminated_subscription_within_first_month,\n SMALLINT(0) AS is_staggered_subscription,\n NULL AS zuora_account_id_array,\n NULL AS sf_account_id_array,\n NULL AS sf_opportunity_id_array,\n NULL AS zuora_subscription_name_and_version_array,\n NULL AS saas_shopify_charge_id_array,\n SMALLINT(0) AS saas_is_zuora_source,\n SMALLINT(0) AS saas_is_shopify_billing_source,\n is_zuora_source AS usage_is_zuora_source,\n is_shopify_billing_source AS usage_is_shopify_billing_source,\n is_communication_source AS usage_is_communication_source,\n is_chargify_source AS usage_is_chargify_source,\n SMALLINT(0) AS is_saas_source,\n SMALLINT(1) AS is_usage_source\nFROM import_usage_revenue\n),\n\nunion_zuora_shopify_sources AS (\nSELECT *\nFROM recurring_source\nUNION ALL\nSELECT *\nFROM usage_source\n),\n\nunion_w_terminated_indicator AS (\nSELECT *,\n MIN(is_terminated_subscription_within_first_month) OVER(PARTITION BY organization_product_month_id) AS min_is_terminated_subscription_within_first_month,\n FIRST_VALUE(opening_plan_name,TRUE) OVER (PARTITION BY organization_product_month_id ORDER BY is_saas_source DESC, adjusted_revenue_in_usd DESC) AS first_opening_plan_name,\n FIRST_VALUE(closing_plan_name,TRUE) OVER (PARTITION BY organization_product_month_id ORDER BY is_saas_source DESC, adjusted_revenue_in_usd DESC) AS first_closing_plan_name,\n FIRST_VALUE(within_month_plan_name,TRUE) OVER (PARTITION BY organization_product_month_id ORDER BY is_saas_source DESC, adjusted_revenue_in_usd DESC) AS first_within_month_plan_name\nFROM union_zuora_shopify_sources\n),\n\norganization_product_revenue_monthly_agg AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n MAX(first_opening_plan_name) AS opening_plan_name,\n MAX(first_closing_plan_name) AS closing_plan_name,\n MAX(first_within_month_plan_name) AS within_month_plan_name,\n SUM(opening_revenue_in_usd) AS opening_revenue_in_usd,\n SUM(closing_revenue_in_usd) AS closing_revenue_in_usd,\n SUM(opening_saas_mrr_in_usd) AS opening_saas_mrr_in_usd,\n SUM(closing_saas_mrr_in_usd) AS closing_saas_mrr_in_usd,\n SUM(opening_usage_revenue_in_usd) AS opening_usage_revenue_in_usd,\n SUM(closing_usage_revenue_in_usd) AS closing_usage_revenue_in_usd,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(opening_usage_mrr_in_usd) AS opening_usage_mrr_in_usd,\n SUM(closing_usage_mrr_in_usd) AS closing_usage_mrr_in_usd,\n SUM(within_month_mrr_in_usd) AS within_month_mrr_in_usd,\n SUM(opening_pro_rated_mrr_in_usd) AS opening_pro_rated_mrr_in_usd,\n SUM(closing_pro_rated_mrr_in_usd) AS closing_pro_rated_mrr_in_usd,\n SUM(opening_usage_pro_rated_mrr_in_usd) AS opening_usage_pro_rated_mrr_in_usd,\n SUM(closing_usage_pro_rated_mrr_in_usd) AS closing_usage_pro_rated_mrr_in_usd,\n SUM(opening_usage_in_usd) AS opening_usage_in_usd,\n SUM(closing_usage_in_usd) AS closing_usage_in_usd,\n SUM(opening_l12m_avg_usage_in_usd) AS opening_l12m_avg_usage_in_usd,\n SUM(closing_l12m_avg_usage_in_usd) AS closing_l12m_avg_usage_in_usd,\n SUM(opening_utilized_free_credits_in_usd) AS opening_utilized_free_credits_in_usd,\n SUM(closing_utilized_free_credits_in_usd) AS closing_utilized_free_credits_in_usd,\n SUM(opening_l12m_avg_utilized_free_credits_in_usd) AS opening_l12m_avg_utilized_free_credits_in_usd,\n SUM(closing_l12m_avg_utilized_free_credits_in_usd) AS closing_l12m_avg_utilized_free_credits_in_usd,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(saas_adjusted_revenue_in_usd) AS saas_adjusted_revenue_in_usd,\n SUM(catch_up_revenue_in_usd) AS catch_up_revenue_in_usd,\n SUM(approximate_revenue_in_usd) AS approximate_revenue_in_usd,\n SUM(opening_lost_after_won_effective_mrr) AS opening_lost_after_won_effective_mrr,\n SUM(closing_lost_after_won_effective_mrr) AS closing_lost_after_won_effective_mrr,\n SUM(delta_lost_after_won_effective_mrr) AS delta_lost_after_won_effective_mrr,\n SUM(opening_free_month_mrr_impact) AS opening_free_month_mrr_impact,\n SUM(closing_free_month_mrr_impact) AS closing_free_month_mrr_impact,\n SUM(delta_free_month_mrr_impact) AS delta_free_month_mrr_impact,\n SUM(opening_sales_free_month_mrr_impact) AS opening_sales_free_month_mrr_impact,\n SUM(closing_sales_free_month_mrr_impact) AS closing_sales_free_month_mrr_impact,\n SUM(delta_sales_free_month_mrr_impact) AS delta_sales_free_month_mrr_impact,\n SUM(opening_csm_free_month_mrr_impact) AS opening_csm_free_month_mrr_impact,\n SUM(closing_csm_free_month_mrr_impact) AS closing_csm_free_month_mrr_impact,\n SUM(delta_csm_free_month_mrr_impact) AS delta_csm_free_month_mrr_impact,\n SUM(lost_after_won_catch_up_revenue_in_usd) AS lost_after_won_catch_up_revenue_in_usd,\n SUM(free_month_catch_up_revenue_in_usd) AS free_month_catch_up_revenue_in_usd,\n MAX(subscription_start_date) AS subscription_start_date,\n MAX(subscription_end_date) AS subscription_end_date,\n MAX(renewal_date) AS renewal_date,\n IF(MAX(opening_is_full_service) = 1,1,MAX(opening_is_annual_billing)) AS opening_is_annual_billing,\n IF(MAX(closing_is_full_service) = 1,1,MAX(closing_is_annual_billing)) AS closing_is_annual_billing,\n MAX(within_month_is_annual_billing) AS within_month_is_annual_billing,\n IF(MAX(opening_is_full_service) = 1,0,MAX(opening_is_self_service)) AS opening_is_self_service,\n IF(MAX(closing_is_full_service) = 1,0,MAX(closing_is_self_service)) AS closing_is_self_service,\n MIN(within_month_is_self_service) AS within_month_is_self_service,\n MAX(opening_is_full_service) AS opening_is_full_service,\n MAX(closing_is_full_service) AS closing_is_full_service,\n MAX(within_month_is_full_service) AS within_month_is_full_service,\n MAX(is_in_term_renewal) AS is_in_term_renewal,\n MAX(is_lost_after_won) AS is_lost_after_won,\n MIN(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n MAX(is_staggered_subscription) AS is_staggered_subscription,\n MAX(zuora_account_id_array) AS zuora_account_id_array,\n MAX(sf_account_id_array) AS sf_account_id_array,\n MAX(sf_opportunity_id_array) AS sf_opportunity_id_array,\n MAX(zuora_subscription_name_and_version_array) AS zuora_subscription_name_and_version_array,\n MAX(saas_shopify_charge_id_array) AS saas_shopify_charge_id_array,\n MAX(saas_is_zuora_source) AS saas_is_zuora_source,\n MAX(saas_is_shopify_billing_source) AS saas_is_shopify_billing_source,\n MAX(usage_is_zuora_source) AS usage_is_zuora_source,\n MAX(usage_is_shopify_billing_source) AS usage_is_shopify_billing_source,\n MAX(usage_is_communication_source) AS usage_is_communication_source,\n MAX(usage_is_chargify_source) AS usage_is_chargify_source,\n MAX(is_saas_source) AS is_saas_source,\n MAX(is_usage_source) AS is_usage_source\nFROM union_w_terminated_indicator\nWHERE min_is_terminated_subscription_within_first_month = is_terminated_subscription_within_first_month\nGROUP BY 1,2,3,4\n),\n\norganization_product_revenue_monthly_base AS (\nSELECT \n *,\n IF(product_family_group IN('Loyalty','UGC'),closing_saas_mrr_in_usd,closing_revenue_in_usd) AS closing_revenue_for_cohorts, -- In Loyalty & UGC, the SaaS revenue determine the cohorts\n IF(product_family_group IN('Loyalty','UGC'),opening_saas_mrr_in_usd,opening_revenue_in_usd) AS opening_revenue_for_cohorts, -- In Loyalty & UGC, the SaaS revenue determine the cohorts \n MAX(opening_is_full_service) OVER(PARTITION BY organization_key,month) AS opening_is_full_service_organization, \n MAX(closing_is_full_service) OVER(PARTITION BY organization_key,month) AS closing_is_full_service_organization,\n MAX(opening_is_self_service) OVER(PARTITION BY organization_key,month) AS opening_is_self_service_organization, \n MAX(closing_is_self_service) OVER(PARTITION BY organization_key,month) AS closing_is_self_service_organization\nFROM organization_product_revenue_monthly_agg\n),\n\nproduct_cohort_first_cohort_month_base AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n LAG(month) OVER (PARTITION BY organization_key,product_family_group ORDER BY month) AS last_paid_month,\n MONTHS_BETWEEN(month,LAG(month) OVER (PARTITION BY organization_key,product_family_group ORDER BY month)) AS months_since_last_paid_month,\n MIN(month) OVER (PARTITION BY organization_key,product_family_group) AS product_first_cohort_month\nFROM organization_product_revenue_monthly_base\nWHERE NVL(closing_revenue_for_cohorts,0) <> 0\n),\n\nproduct_cohort_month_base AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n months_since_last_paid_month,\n IF(last_paid_month IS NULL OR months_since_last_paid_month <> 1,1,0) AS is_product_first_current_cohort_month,\n IF(last_paid_month IS NULL OR months_since_last_paid_month <> 1,month,NULL) AS product_first_current_cohort_month,\n product_first_cohort_month\nFROM product_cohort_first_cohort_month_base\n),\n\nproduct_cohort_month AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n months_since_last_paid_month,\n is_product_first_current_cohort_month,\n MAX(product_first_current_cohort_month) OVER(PARTITION BY organization_key,product_family_group ORDER BY month ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS product_first_current_cohort_month,\n product_first_cohort_month\nFROM product_cohort_month_base\n),\n\nproduct_cohort AS (\nSELECT \n organization_product_month_id,\n months_since_last_paid_month,\n is_product_first_current_cohort_month,\n DENSE_RANK() OVER(PARTITION BY organization_key, product_family_group ORDER BY product_first_current_cohort_month) AS product_cohort_number,\n MONTHS_BETWEEN(month,product_first_current_cohort_month) AS product_month_number_since_current_cohort,\n product_first_cohort_month\nFROM product_cohort_month\n),\n\norganization_paid_months AS (\nSELECT DISTINCT\n month,\n organization_key\nFROM organization_product_revenue_monthly_base\nWHERE NVL(closing_revenue_for_cohorts,0) <> 0\n),\n\norganization_cohort_first_cohort_month_base AS (\nSELECT \n month,\n organization_key,\n LAG(month) OVER (PARTITION BY organization_key ORDER BY month) AS last_paid_month,\n MONTHS_BETWEEN(month,LAG(month) OVER (PARTITION BY organization_key ORDER BY month)) AS months_since_last_paid_month,\n MIN(month) OVER (PARTITION BY organization_key) AS organization_first_cohort_month\nFROM organization_paid_months\n),\n\norganization_cohort_month_base AS (\nSELECT \n month,\n organization_key,\n months_since_last_paid_month,\n IF(last_paid_month IS NULL OR months_since_last_paid_month <> 1,1,0) AS is_organization_first_current_cohort_month,\n IF(last_paid_month IS NULL OR months_since_last_paid_month <> 1,month,NULL) AS organization_first_current_cohort_month,\n organization_first_cohort_month\nFROM organization_cohort_first_cohort_month_base\n),\n\norganization_cohort_month AS (\nSELECT \n month,\n organization_key,\n months_since_last_paid_month,\n is_organization_first_current_cohort_month,\n MAX(organization_first_current_cohort_month) OVER(PARTITION BY organization_key ORDER BY month ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS organization_first_current_cohort_month,\n organization_first_cohort_month\nFROM organization_cohort_month_base\n),\n\norganization_cohort AS (\nSELECT \n month,\n organization_key,\n months_since_last_paid_month,\n is_organization_first_current_cohort_month,\n DENSE_RANK() OVER(PARTITION BY organization_key ORDER BY organization_first_current_cohort_month) AS organization_cohort_number,\n MONTHS_BETWEEN(month,organization_first_current_cohort_month) AS organization_month_number_since_current_cohort,\n organization_first_cohort_month\nFROM organization_cohort_month\n),\n\norganization_product_revenue_monthly_w_cohort AS (\nSELECT \n revenue.organization_product_month_id,\n revenue.month,\n revenue.organization_key,\n revenue.product_family_group,\n opening_plan_name,\n closing_plan_name,\n within_month_plan_name,\n opening_plan.plan_group AS opening_plan_group,\n closing_plan.plan_group AS closing_plan_group,\n within_month_plan.plan_group AS within_month_plan_group,\n opening_revenue_in_usd,\n closing_revenue_in_usd,\n opening_saas_mrr_in_usd,\n closing_saas_mrr_in_usd,\n opening_usage_revenue_in_usd,\n closing_usage_revenue_in_usd,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n opening_usage_mrr_in_usd,\n closing_usage_mrr_in_usd,\n within_month_mrr_in_usd,\n opening_pro_rated_mrr_in_usd,\n closing_pro_rated_mrr_in_usd,\n opening_usage_pro_rated_mrr_in_usd,\n closing_usage_pro_rated_mrr_in_usd,\n opening_usage_in_usd,\n closing_usage_in_usd,\n opening_l12m_avg_usage_in_usd,\n closing_l12m_avg_usage_in_usd,\n opening_utilized_free_credits_in_usd,\n closing_utilized_free_credits_in_usd,\n opening_l12m_avg_utilized_free_credits_in_usd,\n closing_l12m_avg_utilized_free_credits_in_usd,\n opening_revenue_for_cohorts,\n closing_revenue_for_cohorts,\n MIN(product_cohort.product_first_cohort_month) OVER(PARTITION BY revenue.organization_key, revenue.product_family_group) AS product_first_paid_month,\n product_cohort.months_since_last_paid_month AS product_months_since_last_paid_month,\n product_cohort.product_cohort_number,\n product_cohort.product_month_number_since_current_cohort,\n IF(revenue.month < MIN(product_cohort.product_first_cohort_month) OVER(PARTITION BY revenue.organization_key, revenue.product_family_group),\n NULL,\n MONTHS_BETWEEN(revenue.month,MIN(product_cohort.product_first_cohort_month) OVER(PARTITION BY revenue.organization_key, revenue.product_family_group))) AS product_month_number_since_first_cohort,\n SUM(revenue.opening_revenue_for_cohorts) OVER(PARTITION BY revenue.organization_key,revenue.month) AS opening_organization_revenue_for_cohorts,\n SUM(revenue.closing_revenue_for_cohorts) OVER(PARTITION BY revenue.organization_key,revenue.month) AS closing_organization_revenue_for_cohorts,\n org_cohort.organization_cohort_number,\n org_cohort.months_since_last_paid_month AS organization_months_since_last_paid_month,\n org_cohort.organization_month_number_since_current_cohort,\n IF(revenue.month < MIN(org_cohort.organization_first_cohort_month) OVER(PARTITION BY revenue.organization_key),\n NULL,\n MONTHS_BETWEEN(revenue.month,MIN(org_cohort.organization_first_cohort_month) OVER(PARTITION BY revenue.organization_key))) AS organization_month_number_since_first_cohort,\n adjusted_revenue_in_usd,\n saas_adjusted_revenue_in_usd,\n catch_up_revenue_in_usd,\n approximate_revenue_in_usd,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n subscription_start_date,\n subscription_end_date,\n renewal_date,\n SMALLINT(IF(revenue.opening_revenue_for_cohorts > 0,1,0)) AS opening_is_paid_product,\n SMALLINT(IF(revenue.closing_revenue_for_cohorts > 0,1,0)) AS closing_is_paid_product,\n SMALLINT(IF(SUM(revenue.opening_revenue_for_cohorts) OVER(PARTITION BY revenue.organization_key,revenue.month) > 0,1,0)) AS opening_is_paying_organization,\n SMALLINT(IF(SUM(revenue.closing_revenue_for_cohorts) OVER(PARTITION BY revenue.organization_key,revenue.month) > 0,1,0)) AS closing_is_paying_organization,\n SMALLINT(IF(product_family_group = 'UGC' ,1,0)) AS is_ugc,\n SMALLINT(IF(product_family_group = 'Loyalty' ,1,0)) AS is_loyalty,\n SMALLINT(IF(product_family_group = 'SMS' ,1,0)) AS is_sms,\n SMALLINT(IF(product_family_group = 'Email' ,1,0)) AS is_email,\n SMALLINT(IF(product_family_group = 'Subscriptions' ,1,0)) AS is_subscriptions,\n SMALLINT(IF(opening_is_annual_billing IS NULL AND opening_is_self_service IS NOT NULL,0,opening_is_annual_billing)) AS opening_is_annual_billing,\n SMALLINT(IF(closing_is_annual_billing IS NULL AND closing_is_self_service IS NOT NULL,0,closing_is_annual_billing)) AS closing_is_annual_billing,\n SMALLINT(IF(within_month_is_annual_billing IS NULL AND within_month_is_self_service IS NOT NULL,0,within_month_is_annual_billing)) AS within_month_is_annual_billing,\n SMALLINT(opening_is_self_service) AS opening_is_self_service,\n SMALLINT(closing_is_self_service) AS closing_is_self_service,\n SMALLINT(within_month_is_self_service) AS within_month_is_self_service,\n SMALLINT(opening_is_full_service) AS opening_is_full_service,\n SMALLINT(closing_is_full_service) AS closing_is_full_service,\n SMALLINT(within_month_is_full_service) AS within_month_is_full_service,\n IF(opening_is_full_service_organization = 1,0,opening_is_self_service_organization) AS opening_is_self_service_organization,\n IF(closing_is_full_service_organization = 1,0,closing_is_self_service_organization) AS closing_is_self_service_organization,\n SMALLINT(opening_is_full_service_organization) AS opening_is_full_service_organization,\n SMALLINT(closing_is_full_service_organization) AS closing_is_full_service_organization,\n SMALLINT(is_in_term_renewal) AS is_in_term_renewal,\n SMALLINT(is_lost_after_won) AS is_lost_after_won,\n is_terminated_subscription_within_first_month,\n is_staggered_subscription,\n zuora_account_id_array,\n sf_account_id_array,\n sf_opportunity_id_array,\n zuora_subscription_name_and_version_array,\n saas_shopify_charge_id_array,\n SMALLINT(saas_is_zuora_source) AS saas_is_zuora_source,\n SMALLINT(saas_is_shopify_billing_source) AS saas_is_shopify_billing_source,\n SMALLINT(usage_is_zuora_source) AS usage_is_zuora_source,\n SMALLINT(usage_is_shopify_billing_source) AS usage_is_shopify_billing_source,\n SMALLINT(usage_is_communication_source) AS usage_is_communication_source,\n SMALLINT(usage_is_chargify_source) AS usage_is_chargify_source,\n is_saas_source,\n is_usage_source,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_revenue_monthly_base AS revenue\nLEFT JOIN product_cohort AS product_cohort\n ON revenue.organization_product_month_id = product_cohort.organization_product_month_id\nLEFT JOIN organization_cohort AS org_cohort\n ON revenue.month = org_cohort.month\n AND revenue.organization_key = org_cohort.organization_key\nLEFT JOIN import_plan AS opening_plan\n ON revenue.opening_plan_name = opening_plan.plan_name\nLEFT JOIN import_plan AS closing_plan\n ON revenue.closing_plan_name = closing_plan.plan_name\nLEFT JOIN import_plan AS within_month_plan\n ON revenue.within_month_plan_name = within_month_plan.plan_name\n)\n\nSELECT *\nFROM organization_product_revenue_monthly_w_cohort", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__organization_product_revenue_monthly_lean": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__organization_product_revenue_monthly_lean", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.sql", "unique_id": "model.yoda.analytics___finance__organization_product_revenue_monthly_lean", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_monthly_lean", "analytics___finance__organization_product_revenue_monthly_lean"], "alias": "analytics___finance__organization_product_revenue_monthly_lean", "checksum": {"name": "sha256", "checksum": "a28499a925e820ecddc0a9911cd2a681f8a842a61141ed78562844926a572894"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK [month, organization_key, product_family_group] OR [organization_product_month_id]\n\nThis table stores monthly revenue data related to organizations and their products,\nand is a lean version of organization_product_revenue_monthly.\nIt includes various metrics and indicators to analyze revenue trends.\nThe general table structure is based on the closing state - the state at the end of the month.", "columns": {"organization_product_month_id": {"name": "organization_product_month_id", "description": "ID of the combination: [month, organization_key, product_family_group]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "PK 1/3\n\nThe month associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "PK 2/3\n\nThe unique identifier for each organization.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "PK 3/3\n\nContains 5 distinct values:\n 1. UGC (Including Reviews, VMS, Insights)\n 2. Loyalty\n 3. SMS\n 4. Email\n 5. Subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "The name of the plan at the end of the month.\n\nCould be an organization have more than one plan but in order to keep the granularity and simplify things, we chose the higher plan in those cases.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mrr_in_usd": {"name": "mrr_in_usd", "description": "The Monthly Recurring Revenue (MRR) at the end of the month in USD.\n\nContains two types:\n\n 1. SaaS MRR - for:\n\n 1.1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 1.2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)\n\n 2. Usage MRR - for:\n\n 2.1 Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2.2 ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n\n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "saas_mrr_in_usd": {"name": "saas_mrr_in_usd", "description": "Only the SaaS component of the MRR at the end of the month in USD.\n\n SaaS MRR - for:\n\n 1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "usage_mrr_in_usd": {"name": "usage_mrr_in_usd", "description": "The usage-based revenue at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_in_usd": {"name": "revenue_in_usd", "description": "closing_revenue = closing_usage_revenue + closing_saas_MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "usage_revenue_in_usd": {"name": "usage_revenue_in_usd", "description": "The usage-based revenue at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pro_rated_mrr_in_usd": {"name": "pro_rated_mrr_in_usd", "description": "The pro-rated Monthly Recurring Revenue (MRR) at the end of the month in USD.\n\nContains two types:\n\n 1. SaaS MRR (same as the regular MRR) - for:\n\n 1.1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 1.2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)\n\n 2. Usage MRR - for:\n\n 2.1 Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2.2 ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "usage_pro_rated_mrr_in_usd": {"name": "usage_pro_rated_mrr_in_usd", "description": "Only the Usage component of the pro-rated MRR at the end of the month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "usage_in_usd": {"name": "usage_in_usd", "description": "The usage at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage amount w/o takeing into account free credits.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "l12m_avg_usage_in_usd": {"name": "l12m_avg_usage_in_usd", "description": "Last 12 months average of closing_usage_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_for_cohorts": {"name": "revenue_for_cohorts", "description": "In order to determine the paid cohorts we are using different revenue types for different products:\n\n 1. Loyalty & UGC - we are using only the SaaS revenue, since customer can't be paying customer for these products w/o SaaS fees.\n\n 2. SMS, Email & Subscriptions - we are using the total revenue (SaaS+usage), since customer can be paying customer for these products w/o SaaS fees.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_cohort_number": {"name": "product_cohort_number", "description": "The paid cohort number of the product (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the product.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "product_month_number_since_first_cohort": {"name": "product_month_number_since_first_cohort", "description": "The number of months since the first product paid cohort started (based on closing_revenue_for_cohorts).\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_month_number_since_current_cohort": {"name": "product_month_number_since_current_cohort", "description": "The number of months since the current product paid cohort started (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the product.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_revenue_for_cohorts": {"name": "organization_revenue_for_cohorts", "description": "SUM of all the products revenue under the organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_cohort_number": {"name": "organization_cohort_number", "description": "The paid cohort number of the organization (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the organization.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "organization_month_number_since_first_cohort": {"name": "organization_month_number_since_first_cohort", "description": "The number of months since the first organization paid cohort started (based on closing_revenue_for_cohorts).\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_month_number_since_current_cohort": {"name": "organization_month_number_since_current_cohort", "description": "The number of months since the current organization paid cohort started (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the organization.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_paid_product": {"name": "is_paid_product", "description": "Indicates if the organization paid for the specific product at the end of the month.\n\nIF(closing_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_paying_organization": {"name": "is_paying_organization", "description": "Indicates if the organization paid for at least one product at the end of the month.\n\nIF(closing_organization_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_annual_billing": {"name": "is_annual_billing", "description": "Indicates if the plan was billed annually at the beginning of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_self_service": {"name": "is_self_service", "description": "Indicates if the plan was self-service at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "Indicates if the plan was full-service at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_self_service_organization": {"name": "is_self_service_organization", "description": "Indicates if the organization had no full-service product and at least one self-service product at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_full_service_organization": {"name": "is_full_service_organization", "description": "Indicates if the organization had at least one full-service product at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc": {"name": "is_ugc", "description": "Indicates if the record's product is UGC.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "Indicates if the record's product is Loyalty.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "Indicates if the record's product is SMS.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "Indicates if the record's product is Email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "Indicates if the record's product is Subscriptions.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "indicates if the subscription is lost after won or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082637.0481355, "relation_name": "dev_dkruh1.analytics___finance__organization_product_revenue_monthly_lean", "raw_code": "{{ config( materialized = 'view' ) }}\n\n-- Import --\n\nWITH import_organization_product_revenue_monthly AS (\nSELECT *\nFROM {{ ref('analytics___finance__organization_product_revenue_monthly') }}\n),\n\n-- Logic --\norganization_product_revenue_monthly_lean_res AS (\nSELECT\n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n closing_plan_name AS plan_name,\n closing_mrr_in_usd AS mrr_in_usd,\n closing_saas_mrr_in_usd AS saas_mrr_in_usd,\n closing_usage_mrr_in_usd AS usage_mrr_in_usd,\n closing_revenue_in_usd AS revenue_in_usd,\n closing_usage_revenue_in_usd AS usage_revenue_in_usd,\n closing_pro_rated_mrr_in_usd AS pro_rated_mrr_in_usd,\n closing_usage_pro_rated_mrr_in_usd AS usage_pro_rated_mrr_in_usd,\n closing_usage_in_usd AS usage_in_usd,\n closing_l12m_avg_usage_in_usd AS l12m_avg_usage_in_usd,\n closing_revenue_for_cohorts AS revenue_for_cohorts,\n product_cohort_number,\n product_month_number_since_first_cohort,\n product_month_number_since_current_cohort,\n closing_organization_revenue_for_cohorts AS organization_revenue_for_cohorts,\n organization_cohort_number,\n organization_month_number_since_first_cohort,\n organization_month_number_since_current_cohort,\n closing_is_paid_product AS is_paid_product,\n closing_is_paying_organization AS is_paying_organization,\n closing_is_annual_billing AS is_annual_billing,\n closing_is_self_service AS is_self_service,\n closing_is_full_service AS is_full_service,\n closing_is_self_service_organization AS is_self_service_organization,\n closing_is_full_service_organization AS is_full_service_organization,\n is_ugc,\n is_loyalty,\n is_sms,\n is_email,\n is_subscriptions,\n is_lost_after_won\nFROM import_organization_product_revenue_monthly\n)\n\nSELECT *\nFROM organization_product_revenue_monthly_lean_res", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_organization_product_revenue_monthly AS (\nSELECT *\nFROM dev_dkruh1.analytics___finance__organization_product_revenue_monthly\n),\n\n-- Logic --\norganization_product_revenue_monthly_lean_res AS (\nSELECT\n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n closing_plan_name AS plan_name,\n closing_mrr_in_usd AS mrr_in_usd,\n closing_saas_mrr_in_usd AS saas_mrr_in_usd,\n closing_usage_mrr_in_usd AS usage_mrr_in_usd,\n closing_revenue_in_usd AS revenue_in_usd,\n closing_usage_revenue_in_usd AS usage_revenue_in_usd,\n closing_pro_rated_mrr_in_usd AS pro_rated_mrr_in_usd,\n closing_usage_pro_rated_mrr_in_usd AS usage_pro_rated_mrr_in_usd,\n closing_usage_in_usd AS usage_in_usd,\n closing_l12m_avg_usage_in_usd AS l12m_avg_usage_in_usd,\n closing_revenue_for_cohorts AS revenue_for_cohorts,\n product_cohort_number,\n product_month_number_since_first_cohort,\n product_month_number_since_current_cohort,\n closing_organization_revenue_for_cohorts AS organization_revenue_for_cohorts,\n organization_cohort_number,\n organization_month_number_since_first_cohort,\n organization_month_number_since_current_cohort,\n closing_is_paid_product AS is_paid_product,\n closing_is_paying_organization AS is_paying_organization,\n closing_is_annual_billing AS is_annual_billing,\n closing_is_self_service AS is_self_service,\n closing_is_full_service AS is_full_service,\n closing_is_self_service_organization AS is_self_service_organization,\n closing_is_full_service_organization AS is_full_service_organization,\n is_ugc,\n is_loyalty,\n is_sms,\n is_email,\n is_subscriptions,\n is_lost_after_won\nFROM import_organization_product_revenue_monthly\n)\n\nSELECT *\nFROM organization_product_revenue_monthly_lean_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__organization_product_usage_revenue_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__organization_product_usage_revenue_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.sql", "unique_id": "model.yoda.analytics___finance__organization_product_usage_revenue_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_usage_revenue_monthly", "analytics___finance__organization_product_usage_revenue_monthly"], "alias": "analytics___finance__organization_product_usage_revenue_monthly", "checksum": {"name": "sha256", "checksum": "13ae06501b53466d2994b5dcbbc9de4c3bfe1fd33d6ec55c108b8da793ceb76a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled table of total monthly revenue (shopify_billing, zuora and communication) at organization and product level | PK and granularity: revenue_month, product_family, organization_key", "columns": {"organization_product_month_id": {"name": "organization_product_month_id", "description": "TABLE PK: combination of month|organization_key|product_family", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_month": {"name": "revenue_month", "description": "revenue month - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "product family: UGC, Loyalty, SMS, Subscriptions - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_name": {"name": "opening_plan_name", "description": "the plan name at the end of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name": {"name": "closing_plan_name", "description": "The current plan name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_usage_revenue_in_usd": {"name": "opening_usage_revenue_in_usd", "description": "The usage-based revenue at the end of previous month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_revenue_in_usd": {"name": "closing_usage_revenue_in_usd", "description": "The usage-based revenue at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_l12m_avg_usage_revenue_in_usd": {"name": "opening_l12m_avg_usage_revenue_in_usd", "description": "The last 12 months usage revenue average.\n\nFormula: SUM(usage revenue of L12M)/12\n\nFor example, if a customer generated only $100 in Jan and $200 in Feb, the L12M avg will be (100+20)/12 = $10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_l12m_avg_usage_revenue_in_usd": {"name": "closing_l12m_avg_usage_revenue_in_usd", "description": "The last 12 months usage revenue average.\n\nFormula: SUM(usage revenue of L12M)/12\n\nFor example, if a customer generated only $100 in Jan and $200 in Feb, the L12M avg will be (100+20)/12 = $10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_mrr_in_usd": {"name": "opening_usage_mrr_in_usd", "description": "Only the Usage component of the MRR at the end of previous month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n\n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_mrr_in_usd": {"name": "closing_usage_mrr_in_usd", "description": "Only the Usage component of the MRR at the end of the month in USD. Usage MRR - for:\n \n 1. Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n \n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "l12m_usage_revenue_in_usd": {"name": "l12m_usage_revenue_in_usd", "description": "The sum of usage revenue in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pro_rated_l12m_usage_revenue_in_usd": {"name": "pro_rated_l12m_usage_revenue_in_usd", "description": "The pro-rated last 12 months usage revenue.\n\nFormula: IF the usage revenue is 0 or null THEN 0 \n\n ELSE SUM(usage revenue of L12M)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pro_rated_months_in_range_cnt": {"name": "pro_rated_months_in_range_cnt", "description": "The amount of months between the specific month and earliest paying month in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_pro_rated_l12m_avg_usage_revenue_in_usd": {"name": "opening_pro_rated_l12m_avg_usage_revenue_in_usd", "description": "The pro-rated last 12 months usage revenue average.\n\nFormula: IF the usage revenue is 0 or null THEN 0 \n\n ELSE SUM(usage revenue of L12M)/MONTHS_BETWEEN(the specific month and earliest paying month in the last 12 months)\n\nFor example, if a customer generated only $100 in Jan and $200 in Feb, the L12M avg will be (100+20)/2 = $60", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_pro_rated_l12m_avg_usage_revenue_in_usd": {"name": "closing_pro_rated_l12m_avg_usage_revenue_in_usd", "description": "The pro-rated last 12 months usage revenue average.\n\nFormula: IF the usage revenue is 0 or null THEN 0 \n\n ELSE SUM(usage revenue of L12M)/MONTHS_BETWEEN(the specific month and earliest paying month in the last 12 months)\n\nFor example, if a customer generated only $100 in Jan and $200 in Feb, the L12M avg will be (100+20)/2 = $60", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_pro_rated_mrr_in_usd": {"name": "opening_usage_pro_rated_mrr_in_usd", "description": "Only the Usage component of the pro-rated MRR at the end of previous month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_pro_rated_mrr_in_usd": {"name": "closing_usage_pro_rated_mrr_in_usd", "description": "Only the Usage component of the pro-rated MRR at the end of the month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_in_usd": {"name": "opening_usage_in_usd", "description": "The usage at the end of previous month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage amount w/o takeing into account free credits.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_in_usd": {"name": "closing_usage_in_usd", "description": "The usage at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage amount w/o takeing into account free credits.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_l12m_avg_usage_in_usd": {"name": "opening_l12m_avg_usage_in_usd", "description": "Last 12 months average of opening_usage_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_l12m_avg_usage_in_usd": {"name": "closing_l12m_avg_usage_in_usd", "description": "Last 12 months average of closing_usage_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_utilized_free_credits_in_usd": {"name": "opening_utilized_free_credits_in_usd", "description": "Estimated utilized free credits at the end of previous month (relevant only to SMS & Email).\n\n utilized_free_credits = usage_revenue-usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_utilized_free_credits_in_usd": {"name": "closing_utilized_free_credits_in_usd", "description": "Estimated utilized free credits at the end of month (relevant only to SMS & Email).\n\n utilized_free_credits = usage_revenue-usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_l12m_avg_utilized_free_credits_in_usd": {"name": "opening_l12m_avg_utilized_free_credits_in_usd", "description": "Last 12 months average of opening_utilized_free_credits_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_l12m_avg_utilized_free_credits_in_usd": {"name": "closing_l12m_avg_utilized_free_credits_in_usd", "description": "Last 12 months average of closing_utilized_free_credits_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "shopify_billing_usage_revenue_in_usd": {"name": "shopify_billing_usage_revenue_in_usd", "description": "usage revenue in usd from shopify billing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_usage_revenue_in_usd": {"name": "zuora_usage_revenue_in_usd", "description": "usage revenue in usd from zuora", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "chargify_usage_revenue_in_usd": {"name": "chargify_usage_revenue_in_usd", "description": "usage revenue in usd from chargify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communication_usage_revenue_in_usd": {"name": "communication_usage_revenue_in_usd", "description": "usage revenue in usd from communication", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communication_usage_in_usd": {"name": "communication_usage_in_usd", "description": "usage revenue before free credit in usd from communication", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communication_free_credit_in_usd": {"name": "communication_free_credit_in_usd", "description": "usage free credit in usd from communication", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "additional_orders_cnt": {"name": "additional_orders_cnt", "description": "*currently relevant only for shopify*\n\nThe additional orders that exceeded the store plan limit.\n\nThis is the number of orders the store is paying for.\n\nRelevant only for Loyalty and Reviews (UGC).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opening_is_self_service": {"name": "opening_is_self_service", "description": "Indicates if the plan was self service plan or not at the end of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_self_service": {"name": "closing_is_self_service", "description": "Indicates if the plan is self service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_full_service": {"name": "opening_is_full_service", "description": "Indicates if the plan was full service plan or not at the end of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_full_service": {"name": "closing_is_full_service", "description": "Indicates if the plan is full service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_free": {"name": "opening_is_free", "description": "Indicates if the plan was free (of SaaS fees) plan or not at the end of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_free": {"name": "closing_is_free", "description": "Indicates if the plan is free (of SaaS fees) plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_shopify_billing_source": {"name": "is_shopify_billing_source", "description": "Indicates if the record is sourced in Shopify billing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_zuora_source": {"name": "is_zuora_source", "description": "Indicates if the record is sourced in Zuora", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_communication_source": {"name": "is_communication_source", "description": "Indicates if the record is sourced in communication", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_chargify_source": {"name": "is_chargify_source", "description": "Indicates if the record is sourced in chargify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_exploded": {"name": "is_exploded", "description": "Indicates if the record is exploded or not. (exploded means it's artificialy created in order to see the L12M avg for records w/o usage revenue)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082637.1118848, "relation_name": "dev_dkruh1.analytics___finance__organization_product_usage_revenue_monthly", "raw_code": "-- Import --\n\nWITH import_finance_shopify_billing_organization_product_usage_revenue_monthly AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_organization_product_usage_revenue_monthly') }}\n),\n\nimport_finance_zuora_organization_product_usage_revenue_monthly AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_organization_product_usage_revenue_monthly') }}\n),\n\nimport_finance_communication_organization_product_usage_revenue_monthly AS (\nSELECT * FROM {{ ref('analytics___finance__communication_organization_product_usage_revenue_monthly') }}\n),\n\nimport_static_chargify_overages AS (\nSELECT * FROM {{ ref('analytics___platform_stg__chargify_organization_product_usage_revanue_daily') }}\n),\n\ncalendar_months AS (\nSELECT DISTINCT\n TRUNC(date,'MM') AS month\nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date <= CURRENT_DATE\n),\n\n-- Logic --\n\n-- Combining sources\n\nshopify_billing_without_communication AS (\nSELECT\n month AS revenue_month,\n organization_key,\n product_family,\n plan_name,\n revenue_in_usd AS usage_revenue_in_usd,\n revenue_in_usd AS shopify_billing_usage_revenue_in_usd,\n DOUBLE(0) AS zuora_usage_revenue_in_usd,\n DOUBLE(0) AS chargify_usage_revenue_in_usd,\n DOUBLE(0) AS communication_usage_revenue_in_usd,\n DOUBLE(NULL) AS communication_usage_in_usd,\n DOUBLE(NULL) AS communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service\nFROM import_finance_shopify_billing_organization_product_usage_revenue_monthly\nWHERE is_communication = 0\n{% if target.name == 'dev' %}\nAND month = TRUNC(CURRENT_DATE,'MONTH')\n{% endif %}\n),\n\nzuora_revenue AS (\nSELECT\n month AS revenue_month,\n organization_key,\n IF(LOWER(product_family) = 'reviews','UGC',product_family) AS product_family,\n plan_name,\n charge_amount_in_usd AS usage_revenue_in_usd,\n DOUBLE(0) AS shopify_billing_usage_revenue_in_usd,\n charge_amount_in_usd AS zuora_usage_revenue_in_usd,\n DOUBLE(0) AS chargify_usage_revenue_in_usd,\n DOUBLE(0) AS communication_usage_revenue_in_usd,\n DOUBLE(NULL) AS communication_usage_in_usd,\n DOUBLE(NULL) AS communication_free_credit_in_usd,\n BIGINT(NULL) AS additional_orders_cnt,\n is_self_service,\n 0 AS is_free,\n IF(is_self_service = 0,1,0) AS is_full_service\nFROM import_finance_zuora_organization_product_usage_revenue_monthly\n{% if target.name == 'dev' %}\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\n{% endif %}\n),\n\ncommunication_revenue AS (\nSELECT\n month AS revenue_month,\n organization_key,\n product_family,\n plan_name,\n product_recognized_usage_in_usd AS usage_revenue_in_usd,\n DOUBLE(0) AS shopify_billing_usage_revenue_in_usd,\n DOUBLE(0) AS zuora_usage_revenue_in_usd,\n DOUBLE(0) AS chargify_usage_revenue_in_usd,\n product_recognized_usage_in_usd AS communication_usage_revenue_in_usd,\n product_usage_in_usd AS communication_usage_in_usd,\n free_credit_sum AS communication_free_credit_in_usd,\n BIGINT(NULL) AS additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service\nFROM import_finance_communication_organization_product_usage_revenue_monthly\n{% if target.name == 'dev' %}\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\n{% endif %}\n),\n\nbilling_sources_union AS (\nSELECT\n revenue_month,\n organization_key,\n product_family,\n plan_name,\n usage_revenue_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service,\n 1 AS is_shopify_billing_source,\n 0 AS is_zuora_source,\n 0 AS is_communication_source,\n 0 AS is_chargify_source\nFROM shopify_billing_without_communication\nUNION ALL\nSELECT\n revenue_month,\n organization_key,\n product_family,\n plan_name,\n usage_revenue_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service,\n 0 AS is_shopify_billing_source,\n 1 AS is_zuora_source,\n 0 AS is_communication_source,\n 0 AS is_chargify_source\nFROM zuora_revenue\nUNION ALL\nSELECT\n revenue_month,\n organization_key,\n product_family,\n plan_name,\n usage_revenue_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service,\n 0 AS is_shopify_billing_source,\n 0 AS is_zuora_source,\n 0 AS is_communication_source,\n 1 AS is_chargify_source\nFROM import_static_chargify_overages\nUNION ALL\nSELECT\n revenue_month,\n organization_key,\n product_family,\n plan_name,\n usage_revenue_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service,\n 0 AS is_shopify_billing_source,\n 0 AS is_zuora_source,\n 1 AS is_communication_source,\n 0 AS is_chargify_source\nFROM communication_revenue\n),\n\norganization_product_usage_revenue_monthly AS (\nSELECT\n revenue_month,\n organization_key,\n product_family,\n FIRST(plan_name,TRUE) AS plan_name,\n SUM(usage_revenue_in_usd) AS usage_revenue_in_usd,\n SUM(IF(product_family IN('SMS','Email'),communication_usage_in_usd,usage_revenue_in_usd)) AS usage_in_usd,\n SUM(shopify_billing_usage_revenue_in_usd) AS shopify_billing_usage_revenue_in_usd,\n SUM(zuora_usage_revenue_in_usd) AS zuora_usage_revenue_in_usd,\n SUM(chargify_usage_revenue_in_usd) AS chargify_usage_revenue_in_usd,\n SUM(communication_usage_revenue_in_usd) AS communication_usage_revenue_in_usd,\n SUM(communication_usage_in_usd) AS communication_usage_in_usd,\n SUM(communication_free_credit_in_usd) AS communication_free_credit_in_usd,\n SUM(additional_orders_cnt) AS additional_orders_cnt,\n MIN(is_self_service) AS is_self_service,\n MIN(is_free) AS is_free,\n MAX(is_full_service) AS is_full_service,\n MAX(is_shopify_billing_source) AS is_shopify_billing_source,\n MAX(is_zuora_source) AS is_zuora_source,\n MAX(is_communication_source) AS is_communication_source,\n MAX(is_chargify_source) AS is_chargify_source,\n 0 AS is_exploded_month\nFROM billing_sources_union\nGROUP BY 1,2,3\n),\n\n-- Exploding months w/o revenue (for the MRR calculations). We are exploding 12 months in a row tops (not forever).\n\nexplode_months_prep AS (\nSELECT\n revenue_month,\n organization_key,\n product_family,\n LEAST(\n ADD_MONTHS(TRUNC(CURRENT_DATE,'MM'),1),\n ADD_MONTHS(revenue_month,12),\n LEAD(revenue_month) OVER(PARTITION BY organization_key,product_family ORDER BY revenue_month)\n ) AS upper_bound_month_to_explode\nFROM organization_product_usage_revenue_monthly\n),\n\nexplode_months AS (\nSELECT\n calendar_months.month AS revenue_month,\n explode_months_prep.organization_key,\n explode_months_prep.product_family,\n NULL AS plan_name,\n NULL AS usage_revenue_in_usd,\n NULL AS usage_in_usd,\n NULL AS shopify_billing_usage_revenue_in_usd,\n NULL AS zuora_usage_revenue_in_usd,\n NULL AS chargify_usage_revenue_in_usd,\n NULL AS communication_usage_revenue_in_usd,\n NULL AS communication_usage_in_usd,\n NULL AS communication_free_credit_in_usd,\n NULL AS additional_orders_cnt,\n 0 AS is_self_service,\n 0 AS is_free,\n 0 AS is_full_service,\n 0 AS is_shopify_billing_source,\n 0 AS is_zuora_source,\n 0 AS is_communication_source,\n 0 AS is_chargify_source,\n 1 AS is_exploded_month\nFROM explode_months_prep\nINNER JOIN calendar_months\n ON calendar_months.month > explode_months_prep.revenue_month \n AND calendar_months.month < explode_months_prep.upper_bound_month_to_explode\n),\n\norganization_product_usage_revenue_monthly_exploded AS (\nSELECT * \nFROM organization_product_usage_revenue_monthly\nUNION ALL\nSELECT * \nFROM explode_months\n),\n\n-- Calculating L12M usage revenue\n\nl12m_usage_revenue AS (\nSELECT\n revenue_month,\n organization_key,\n product_family,\n SUM(usage_revenue_in_usd)\n OVER(PARTITION BY organization_key,product_family\n ORDER BY revenue_month\n ROWS BETWEEN 11 PRECEDING AND CURRENT ROW) AS l12m_usage_revenue_in_usd,\n SUM(usage_in_usd)\n OVER(PARTITION BY organization_key,product_family\n ORDER BY revenue_month\n ROWS BETWEEN 11 PRECEDING AND CURRENT ROW) AS l12m_usage_in_usd\nFROM organization_product_usage_revenue_monthly_exploded\n),\n\n-- Calculating pro-rated L12M usage revenue\n\npro_rated_l12m_usage_revenue AS (\nSELECT\n current_month.revenue_month,\n current_month.organization_key,\n current_month.product_family,\n NVL(SUM(l12m.usage_revenue_in_usd),0) AS pro_rated_l12m_usage_revenue_in_usd,\n MIN(l12m.revenue_month) AS pro_rated_lower_bound_month,\n MONTHS_BETWEEN(MAX(current_month.revenue_month),MIN(l12m.revenue_month))+1 AS pro_rated_months_in_range_cnt\nFROM organization_product_usage_revenue_monthly AS current_month\nLEFT JOIN organization_product_usage_revenue_monthly AS l12m\nON current_month.organization_key = l12m.organization_key\n AND current_month.product_family = l12m.product_family\n AND MONTHS_BETWEEN(current_month.revenue_month,l12m.revenue_month) BETWEEN 0 AND 11\n AND l12m.usage_revenue_in_usd > 0\nGROUP BY 1,2,3\n),\n\n-- Calculating closing balances\n\nclosing_organization_product_usage_revenue_monthly AS (\nSELECT\n usage_revenue.revenue_month,\n usage_revenue.organization_key,\n usage_revenue.product_family,\n usage_revenue.plan_name,\n usage_revenue.usage_revenue_in_usd,\n NVL(l12m_usage_revenue.l12m_usage_revenue_in_usd,0) AS l12m_usage_revenue_in_usd,\n NVL(l12m_usage_revenue.l12m_usage_revenue_in_usd/12,0) AS l12m_avg_usage_revenue_in_usd,\n NVL(pro_rated_l12m_usage_revenue.pro_rated_l12m_usage_revenue_in_usd,0) AS pro_rated_l12m_usage_revenue_in_usd,\n NVL(pro_rated_l12m_usage_revenue.pro_rated_months_in_range_cnt,0) AS pro_rated_months_in_range_cnt,\n NVL(pro_rated_l12m_usage_revenue.pro_rated_l12m_usage_revenue_in_usd/\n pro_rated_l12m_usage_revenue.pro_rated_months_in_range_cnt,0) AS pro_rated_l12m_avg_usage_revenue_in_usd,\n usage_revenue.usage_in_usd,\n NVL(l12m_usage_revenue.l12m_usage_in_usd,0) AS l12m_usage_in_usd,\n NVL(l12m_usage_revenue.l12m_usage_in_usd/12,0) AS l12m_avg_usage_in_usd,\n usage_revenue.shopify_billing_usage_revenue_in_usd,\n usage_revenue.zuora_usage_revenue_in_usd,\n usage_revenue.chargify_usage_revenue_in_usd,\n usage_revenue.communication_usage_revenue_in_usd,\n usage_revenue.communication_usage_in_usd,\n usage_revenue.communication_free_credit_in_usd,\n usage_revenue.additional_orders_cnt,\n usage_revenue.is_self_service,\n usage_revenue.is_free,\n usage_revenue.is_full_service,\n usage_revenue.is_shopify_billing_source,\n usage_revenue.is_zuora_source,\n usage_revenue.is_communication_source,\n usage_revenue.is_chargify_source,\n usage_revenue.is_exploded_month\nFROM organization_product_usage_revenue_monthly_exploded AS usage_revenue\nINNER JOIN l12m_usage_revenue\nON usage_revenue.revenue_month = l12m_usage_revenue.revenue_month\n AND usage_revenue.organization_key = l12m_usage_revenue.organization_key\n AND usage_revenue.product_family = l12m_usage_revenue.product_family\nLEFT JOIN pro_rated_l12m_usage_revenue\nON usage_revenue.revenue_month = pro_rated_l12m_usage_revenue.revenue_month\n AND usage_revenue.organization_key = pro_rated_l12m_usage_revenue.organization_key\n AND usage_revenue.product_family = pro_rated_l12m_usage_revenue.product_family\n),\n\n-- Calculating opening balances\n\nopening_organization_product_usage_revenue_monthly AS (\nSELECT\n ADD_MONTHS(revenue_month,1) AS revenue_month,\n organization_key,\n product_family,\n plan_name,\n usage_revenue_in_usd,\n l12m_usage_revenue_in_usd,\n l12m_avg_usage_revenue_in_usd,\n pro_rated_l12m_usage_revenue_in_usd,\n pro_rated_months_in_range_cnt,\n pro_rated_l12m_avg_usage_revenue_in_usd,\n usage_in_usd,\n l12m_usage_in_usd,\n l12m_avg_usage_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service,\n is_shopify_billing_source,\n is_zuora_source,\n is_communication_source,\n is_chargify_source,\n is_exploded_month\nFROM closing_organization_product_usage_revenue_monthly\nWHERE ADD_MONTHS(revenue_month,1) <= TRUNC(CURRENT_DATE,'MM')\n),\n\n-- Combining opening and closing\n\norganization_product_usage_revenue_monthly_outer_join AS (\nSELECT\n NVL(close.revenue_month,open.revenue_month) AS revenue_month,\n NVL(close.organization_key,open.organization_key) AS organization_key,\n NVL(close.product_family,open.product_family) AS product_family,\n open.plan_name AS opening_plan_name,\n close.plan_name AS closing_plan_name,\n NVL(open.usage_revenue_in_usd,0) AS opening_usage_revenue_in_usd,\n NVL(close.usage_revenue_in_usd,0) AS closing_usage_revenue_in_usd,\n NVL(open.l12m_avg_usage_revenue_in_usd,0) AS opening_l12m_avg_usage_revenue_in_usd,\n NVL(close.l12m_avg_usage_revenue_in_usd,0) AS closing_l12m_avg_usage_revenue_in_usd,\n close.l12m_usage_revenue_in_usd,\n close.pro_rated_l12m_usage_revenue_in_usd,\n close.pro_rated_months_in_range_cnt,\n NVL(open.pro_rated_l12m_avg_usage_revenue_in_usd,0) AS opening_pro_rated_l12m_avg_usage_revenue_in_usd,\n NVL(close.pro_rated_l12m_avg_usage_revenue_in_usd,0) AS closing_pro_rated_l12m_avg_usage_revenue_in_usd,\n NVL(open.usage_in_usd,0) AS opening_usage_in_usd,\n NVL(close.usage_in_usd,0) AS closing_usage_in_usd,\n NVL(open.l12m_avg_usage_in_usd,0) AS opening_l12m_avg_usage_in_usd,\n NVL(close.l12m_avg_usage_in_usd,0) AS closing_l12m_avg_usage_in_usd,\n close.shopify_billing_usage_revenue_in_usd,\n close.zuora_usage_revenue_in_usd,\n close.chargify_usage_revenue_in_usd,\n close.communication_usage_revenue_in_usd,\n close.communication_usage_in_usd,\n close.communication_free_credit_in_usd,\n close.additional_orders_cnt,\n open.is_self_service AS opening_is_self_service,\n close.is_self_service AS closing_is_self_service,\n open.is_full_service AS opening_is_full_service,\n close.is_full_service AS closing_is_full_service,\n open.is_free AS opening_is_free,\n close.is_free AS closing_is_free,\n NVL(close.is_shopify_billing_source,open.is_shopify_billing_source) AS is_shopify_billing_source,\n NVL(close.is_zuora_source,open.is_zuora_source) AS is_zuora_source,\n NVL(close.is_communication_source,open.is_communication_source) AS is_communication_source,\n NVL(close.is_chargify_source,open.is_chargify_source) AS is_chargify_source,\n NVL(close.is_exploded_month,open.is_exploded_month) AS is_exploded\nFROM closing_organization_product_usage_revenue_monthly AS close\nFULL OUTER JOIN opening_organization_product_usage_revenue_monthly AS open\n ON close.revenue_month = open.revenue_month\n AND close.organization_key = open.organization_key\n AND close.product_family = open.product_family\n),\n\n-- Final MRR calculations\n\norganization_product_usage_revenue_monthly_res AS (\nSELECT \n SHA2(CONCAT(revenue_month,organization_key,product_family),256) AS organization_product_month_id,\n revenue_month,\n organization_key,\n product_family,\n opening_plan_name,\n closing_plan_name,\n opening_usage_revenue_in_usd,\n closing_usage_revenue_in_usd,\n opening_l12m_avg_usage_revenue_in_usd,\n closing_l12m_avg_usage_revenue_in_usd,\n DOUBLE(CASE WHEN product_family = 'Subscriptions' THEN NVL(opening_usage_revenue_in_usd,0)\n ELSE NVL(opening_l12m_avg_usage_revenue_in_usd,0) END) AS opening_usage_mrr_in_usd,\n DOUBLE(CASE WHEN product_family = 'Subscriptions' THEN NVL(closing_usage_revenue_in_usd,0)\n ELSE NVL(closing_l12m_avg_usage_revenue_in_usd,0) END) AS closing_usage_mrr_in_usd,\n l12m_usage_revenue_in_usd,\n pro_rated_l12m_usage_revenue_in_usd,\n pro_rated_months_in_range_cnt,\n opening_pro_rated_l12m_avg_usage_revenue_in_usd,\n closing_pro_rated_l12m_avg_usage_revenue_in_usd,\n DOUBLE(CASE WHEN product_family = 'Subscriptions' THEN NVL(opening_usage_revenue_in_usd,0)\n WHEN NVL(opening_usage_revenue_in_usd,0) = 0 THEN 0\n ELSE NVL(opening_pro_rated_l12m_avg_usage_revenue_in_usd,0) END) AS opening_usage_pro_rated_mrr_in_usd,\n DOUBLE(CASE WHEN product_family = 'Subscriptions' THEN NVL(closing_usage_revenue_in_usd,0)\n WHEN NVL(closing_usage_revenue_in_usd,0) = 0 THEN 0\n ELSE NVL(closing_pro_rated_l12m_avg_usage_revenue_in_usd,0) END) AS closing_usage_pro_rated_mrr_in_usd,\n opening_usage_in_usd,\n closing_usage_in_usd,\n opening_l12m_avg_usage_in_usd,\n closing_l12m_avg_usage_in_usd,\n NVL(opening_usage_revenue_in_usd,0)-NVL(opening_usage_in_usd,0) AS opening_utilized_free_credits_in_usd,\n NVL(closing_usage_revenue_in_usd,0)-NVL(closing_usage_in_usd,0) AS closing_utilized_free_credits_in_usd,\n IF(product_family IN('SMS','Email'),NVL(opening_l12m_avg_usage_revenue_in_usd,0)-NVL(opening_l12m_avg_usage_in_usd,0),0) AS opening_l12m_avg_utilized_free_credits_in_usd,\n IF(product_family IN('SMS','Email'),NVL(closing_l12m_avg_usage_revenue_in_usd,0)-NVL(closing_l12m_avg_usage_in_usd,0),0) AS closing_l12m_avg_utilized_free_credits_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n SMALLINT(opening_is_self_service) AS opening_is_self_service,\n SMALLINT(closing_is_self_service) AS closing_is_self_service,\n SMALLINT(opening_is_full_service) AS opening_is_full_service,\n SMALLINT(closing_is_full_service) AS closing_is_full_service,\n SMALLINT(opening_is_free) AS opening_is_free,\n SMALLINT(closing_is_free) AS closing_is_free,\n SMALLINT(is_shopify_billing_source) AS is_shopify_billing_source,\n SMALLINT(is_zuora_source) AS is_zuora_source,\n SMALLINT(is_communication_source) AS is_communication_source,\n SMALLINT(is_chargify_source) AS is_chargify_source,\n SMALLINT(is_exploded) AS is_exploded,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_usage_revenue_monthly_outer_join\n)\n\n-- Result --\n\nSELECT *\nFROM organization_product_usage_revenue_monthly_res", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance__communication_organization_product_usage_revenue_monthly", "package": null, "version": null}, {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly", "model.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "model.yoda.platform_stg__dim_calendar"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_finance_shopify_billing_organization_product_usage_revenue_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly\n),\n\nimport_finance_zuora_organization_product_usage_revenue_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_monthly\n),\n\nimport_finance_communication_organization_product_usage_revenue_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___finance__communication_organization_product_usage_revenue_monthly\n),\n\nimport_static_chargify_overages AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__chargify_organization_product_usage_revanue_daily\n),\n\ncalendar_months AS (\nSELECT DISTINCT\n TRUNC(date,'MM') AS month\nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date <= CURRENT_DATE\n),\n\n-- Logic --\n\n-- Combining sources\n\nshopify_billing_without_communication AS (\nSELECT\n month AS revenue_month,\n organization_key,\n product_family,\n plan_name,\n revenue_in_usd AS usage_revenue_in_usd,\n revenue_in_usd AS shopify_billing_usage_revenue_in_usd,\n DOUBLE(0) AS zuora_usage_revenue_in_usd,\n DOUBLE(0) AS chargify_usage_revenue_in_usd,\n DOUBLE(0) AS communication_usage_revenue_in_usd,\n DOUBLE(NULL) AS communication_usage_in_usd,\n DOUBLE(NULL) AS communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service\nFROM import_finance_shopify_billing_organization_product_usage_revenue_monthly\nWHERE is_communication = 0\n\nAND month = TRUNC(CURRENT_DATE,'MONTH')\n\n),\n\nzuora_revenue AS (\nSELECT\n month AS revenue_month,\n organization_key,\n IF(LOWER(product_family) = 'reviews','UGC',product_family) AS product_family,\n plan_name,\n charge_amount_in_usd AS usage_revenue_in_usd,\n DOUBLE(0) AS shopify_billing_usage_revenue_in_usd,\n charge_amount_in_usd AS zuora_usage_revenue_in_usd,\n DOUBLE(0) AS chargify_usage_revenue_in_usd,\n DOUBLE(0) AS communication_usage_revenue_in_usd,\n DOUBLE(NULL) AS communication_usage_in_usd,\n DOUBLE(NULL) AS communication_free_credit_in_usd,\n BIGINT(NULL) AS additional_orders_cnt,\n is_self_service,\n 0 AS is_free,\n IF(is_self_service = 0,1,0) AS is_full_service\nFROM import_finance_zuora_organization_product_usage_revenue_monthly\n\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\n\n),\n\ncommunication_revenue AS (\nSELECT\n month AS revenue_month,\n organization_key,\n product_family,\n plan_name,\n product_recognized_usage_in_usd AS usage_revenue_in_usd,\n DOUBLE(0) AS shopify_billing_usage_revenue_in_usd,\n DOUBLE(0) AS zuora_usage_revenue_in_usd,\n DOUBLE(0) AS chargify_usage_revenue_in_usd,\n product_recognized_usage_in_usd AS communication_usage_revenue_in_usd,\n product_usage_in_usd AS communication_usage_in_usd,\n free_credit_sum AS communication_free_credit_in_usd,\n BIGINT(NULL) AS additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service\nFROM import_finance_communication_organization_product_usage_revenue_monthly\n\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\n\n),\n\nbilling_sources_union AS (\nSELECT\n revenue_month,\n organization_key,\n product_family,\n plan_name,\n usage_revenue_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service,\n 1 AS is_shopify_billing_source,\n 0 AS is_zuora_source,\n 0 AS is_communication_source,\n 0 AS is_chargify_source\nFROM shopify_billing_without_communication\nUNION ALL\nSELECT\n revenue_month,\n organization_key,\n product_family,\n plan_name,\n usage_revenue_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service,\n 0 AS is_shopify_billing_source,\n 1 AS is_zuora_source,\n 0 AS is_communication_source,\n 0 AS is_chargify_source\nFROM zuora_revenue\nUNION ALL\nSELECT\n revenue_month,\n organization_key,\n product_family,\n plan_name,\n usage_revenue_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service,\n 0 AS is_shopify_billing_source,\n 0 AS is_zuora_source,\n 0 AS is_communication_source,\n 1 AS is_chargify_source\nFROM import_static_chargify_overages\nUNION ALL\nSELECT\n revenue_month,\n organization_key,\n product_family,\n plan_name,\n usage_revenue_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service,\n 0 AS is_shopify_billing_source,\n 0 AS is_zuora_source,\n 1 AS is_communication_source,\n 0 AS is_chargify_source\nFROM communication_revenue\n),\n\norganization_product_usage_revenue_monthly AS (\nSELECT\n revenue_month,\n organization_key,\n product_family,\n FIRST(plan_name,TRUE) AS plan_name,\n SUM(usage_revenue_in_usd) AS usage_revenue_in_usd,\n SUM(IF(product_family IN('SMS','Email'),communication_usage_in_usd,usage_revenue_in_usd)) AS usage_in_usd,\n SUM(shopify_billing_usage_revenue_in_usd) AS shopify_billing_usage_revenue_in_usd,\n SUM(zuora_usage_revenue_in_usd) AS zuora_usage_revenue_in_usd,\n SUM(chargify_usage_revenue_in_usd) AS chargify_usage_revenue_in_usd,\n SUM(communication_usage_revenue_in_usd) AS communication_usage_revenue_in_usd,\n SUM(communication_usage_in_usd) AS communication_usage_in_usd,\n SUM(communication_free_credit_in_usd) AS communication_free_credit_in_usd,\n SUM(additional_orders_cnt) AS additional_orders_cnt,\n MIN(is_self_service) AS is_self_service,\n MIN(is_free) AS is_free,\n MAX(is_full_service) AS is_full_service,\n MAX(is_shopify_billing_source) AS is_shopify_billing_source,\n MAX(is_zuora_source) AS is_zuora_source,\n MAX(is_communication_source) AS is_communication_source,\n MAX(is_chargify_source) AS is_chargify_source,\n 0 AS is_exploded_month\nFROM billing_sources_union\nGROUP BY 1,2,3\n),\n\n-- Exploding months w/o revenue (for the MRR calculations). We are exploding 12 months in a row tops (not forever).\n\nexplode_months_prep AS (\nSELECT\n revenue_month,\n organization_key,\n product_family,\n LEAST(\n ADD_MONTHS(TRUNC(CURRENT_DATE,'MM'),1),\n ADD_MONTHS(revenue_month,12),\n LEAD(revenue_month) OVER(PARTITION BY organization_key,product_family ORDER BY revenue_month)\n ) AS upper_bound_month_to_explode\nFROM organization_product_usage_revenue_monthly\n),\n\nexplode_months AS (\nSELECT\n calendar_months.month AS revenue_month,\n explode_months_prep.organization_key,\n explode_months_prep.product_family,\n NULL AS plan_name,\n NULL AS usage_revenue_in_usd,\n NULL AS usage_in_usd,\n NULL AS shopify_billing_usage_revenue_in_usd,\n NULL AS zuora_usage_revenue_in_usd,\n NULL AS chargify_usage_revenue_in_usd,\n NULL AS communication_usage_revenue_in_usd,\n NULL AS communication_usage_in_usd,\n NULL AS communication_free_credit_in_usd,\n NULL AS additional_orders_cnt,\n 0 AS is_self_service,\n 0 AS is_free,\n 0 AS is_full_service,\n 0 AS is_shopify_billing_source,\n 0 AS is_zuora_source,\n 0 AS is_communication_source,\n 0 AS is_chargify_source,\n 1 AS is_exploded_month\nFROM explode_months_prep\nINNER JOIN calendar_months\n ON calendar_months.month > explode_months_prep.revenue_month \n AND calendar_months.month < explode_months_prep.upper_bound_month_to_explode\n),\n\norganization_product_usage_revenue_monthly_exploded AS (\nSELECT * \nFROM organization_product_usage_revenue_monthly\nUNION ALL\nSELECT * \nFROM explode_months\n),\n\n-- Calculating L12M usage revenue\n\nl12m_usage_revenue AS (\nSELECT\n revenue_month,\n organization_key,\n product_family,\n SUM(usage_revenue_in_usd)\n OVER(PARTITION BY organization_key,product_family\n ORDER BY revenue_month\n ROWS BETWEEN 11 PRECEDING AND CURRENT ROW) AS l12m_usage_revenue_in_usd,\n SUM(usage_in_usd)\n OVER(PARTITION BY organization_key,product_family\n ORDER BY revenue_month\n ROWS BETWEEN 11 PRECEDING AND CURRENT ROW) AS l12m_usage_in_usd\nFROM organization_product_usage_revenue_monthly_exploded\n),\n\n-- Calculating pro-rated L12M usage revenue\n\npro_rated_l12m_usage_revenue AS (\nSELECT\n current_month.revenue_month,\n current_month.organization_key,\n current_month.product_family,\n NVL(SUM(l12m.usage_revenue_in_usd),0) AS pro_rated_l12m_usage_revenue_in_usd,\n MIN(l12m.revenue_month) AS pro_rated_lower_bound_month,\n MONTHS_BETWEEN(MAX(current_month.revenue_month),MIN(l12m.revenue_month))+1 AS pro_rated_months_in_range_cnt\nFROM organization_product_usage_revenue_monthly AS current_month\nLEFT JOIN organization_product_usage_revenue_monthly AS l12m\nON current_month.organization_key = l12m.organization_key\n AND current_month.product_family = l12m.product_family\n AND MONTHS_BETWEEN(current_month.revenue_month,l12m.revenue_month) BETWEEN 0 AND 11\n AND l12m.usage_revenue_in_usd > 0\nGROUP BY 1,2,3\n),\n\n-- Calculating closing balances\n\nclosing_organization_product_usage_revenue_monthly AS (\nSELECT\n usage_revenue.revenue_month,\n usage_revenue.organization_key,\n usage_revenue.product_family,\n usage_revenue.plan_name,\n usage_revenue.usage_revenue_in_usd,\n NVL(l12m_usage_revenue.l12m_usage_revenue_in_usd,0) AS l12m_usage_revenue_in_usd,\n NVL(l12m_usage_revenue.l12m_usage_revenue_in_usd/12,0) AS l12m_avg_usage_revenue_in_usd,\n NVL(pro_rated_l12m_usage_revenue.pro_rated_l12m_usage_revenue_in_usd,0) AS pro_rated_l12m_usage_revenue_in_usd,\n NVL(pro_rated_l12m_usage_revenue.pro_rated_months_in_range_cnt,0) AS pro_rated_months_in_range_cnt,\n NVL(pro_rated_l12m_usage_revenue.pro_rated_l12m_usage_revenue_in_usd/\n pro_rated_l12m_usage_revenue.pro_rated_months_in_range_cnt,0) AS pro_rated_l12m_avg_usage_revenue_in_usd,\n usage_revenue.usage_in_usd,\n NVL(l12m_usage_revenue.l12m_usage_in_usd,0) AS l12m_usage_in_usd,\n NVL(l12m_usage_revenue.l12m_usage_in_usd/12,0) AS l12m_avg_usage_in_usd,\n usage_revenue.shopify_billing_usage_revenue_in_usd,\n usage_revenue.zuora_usage_revenue_in_usd,\n usage_revenue.chargify_usage_revenue_in_usd,\n usage_revenue.communication_usage_revenue_in_usd,\n usage_revenue.communication_usage_in_usd,\n usage_revenue.communication_free_credit_in_usd,\n usage_revenue.additional_orders_cnt,\n usage_revenue.is_self_service,\n usage_revenue.is_free,\n usage_revenue.is_full_service,\n usage_revenue.is_shopify_billing_source,\n usage_revenue.is_zuora_source,\n usage_revenue.is_communication_source,\n usage_revenue.is_chargify_source,\n usage_revenue.is_exploded_month\nFROM organization_product_usage_revenue_monthly_exploded AS usage_revenue\nINNER JOIN l12m_usage_revenue\nON usage_revenue.revenue_month = l12m_usage_revenue.revenue_month\n AND usage_revenue.organization_key = l12m_usage_revenue.organization_key\n AND usage_revenue.product_family = l12m_usage_revenue.product_family\nLEFT JOIN pro_rated_l12m_usage_revenue\nON usage_revenue.revenue_month = pro_rated_l12m_usage_revenue.revenue_month\n AND usage_revenue.organization_key = pro_rated_l12m_usage_revenue.organization_key\n AND usage_revenue.product_family = pro_rated_l12m_usage_revenue.product_family\n),\n\n-- Calculating opening balances\n\nopening_organization_product_usage_revenue_monthly AS (\nSELECT\n ADD_MONTHS(revenue_month,1) AS revenue_month,\n organization_key,\n product_family,\n plan_name,\n usage_revenue_in_usd,\n l12m_usage_revenue_in_usd,\n l12m_avg_usage_revenue_in_usd,\n pro_rated_l12m_usage_revenue_in_usd,\n pro_rated_months_in_range_cnt,\n pro_rated_l12m_avg_usage_revenue_in_usd,\n usage_in_usd,\n l12m_usage_in_usd,\n l12m_avg_usage_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n is_self_service,\n is_free,\n is_full_service,\n is_shopify_billing_source,\n is_zuora_source,\n is_communication_source,\n is_chargify_source,\n is_exploded_month\nFROM closing_organization_product_usage_revenue_monthly\nWHERE ADD_MONTHS(revenue_month,1) <= TRUNC(CURRENT_DATE,'MM')\n),\n\n-- Combining opening and closing\n\norganization_product_usage_revenue_monthly_outer_join AS (\nSELECT\n NVL(close.revenue_month,open.revenue_month) AS revenue_month,\n NVL(close.organization_key,open.organization_key) AS organization_key,\n NVL(close.product_family,open.product_family) AS product_family,\n open.plan_name AS opening_plan_name,\n close.plan_name AS closing_plan_name,\n NVL(open.usage_revenue_in_usd,0) AS opening_usage_revenue_in_usd,\n NVL(close.usage_revenue_in_usd,0) AS closing_usage_revenue_in_usd,\n NVL(open.l12m_avg_usage_revenue_in_usd,0) AS opening_l12m_avg_usage_revenue_in_usd,\n NVL(close.l12m_avg_usage_revenue_in_usd,0) AS closing_l12m_avg_usage_revenue_in_usd,\n close.l12m_usage_revenue_in_usd,\n close.pro_rated_l12m_usage_revenue_in_usd,\n close.pro_rated_months_in_range_cnt,\n NVL(open.pro_rated_l12m_avg_usage_revenue_in_usd,0) AS opening_pro_rated_l12m_avg_usage_revenue_in_usd,\n NVL(close.pro_rated_l12m_avg_usage_revenue_in_usd,0) AS closing_pro_rated_l12m_avg_usage_revenue_in_usd,\n NVL(open.usage_in_usd,0) AS opening_usage_in_usd,\n NVL(close.usage_in_usd,0) AS closing_usage_in_usd,\n NVL(open.l12m_avg_usage_in_usd,0) AS opening_l12m_avg_usage_in_usd,\n NVL(close.l12m_avg_usage_in_usd,0) AS closing_l12m_avg_usage_in_usd,\n close.shopify_billing_usage_revenue_in_usd,\n close.zuora_usage_revenue_in_usd,\n close.chargify_usage_revenue_in_usd,\n close.communication_usage_revenue_in_usd,\n close.communication_usage_in_usd,\n close.communication_free_credit_in_usd,\n close.additional_orders_cnt,\n open.is_self_service AS opening_is_self_service,\n close.is_self_service AS closing_is_self_service,\n open.is_full_service AS opening_is_full_service,\n close.is_full_service AS closing_is_full_service,\n open.is_free AS opening_is_free,\n close.is_free AS closing_is_free,\n NVL(close.is_shopify_billing_source,open.is_shopify_billing_source) AS is_shopify_billing_source,\n NVL(close.is_zuora_source,open.is_zuora_source) AS is_zuora_source,\n NVL(close.is_communication_source,open.is_communication_source) AS is_communication_source,\n NVL(close.is_chargify_source,open.is_chargify_source) AS is_chargify_source,\n NVL(close.is_exploded_month,open.is_exploded_month) AS is_exploded\nFROM closing_organization_product_usage_revenue_monthly AS close\nFULL OUTER JOIN opening_organization_product_usage_revenue_monthly AS open\n ON close.revenue_month = open.revenue_month\n AND close.organization_key = open.organization_key\n AND close.product_family = open.product_family\n),\n\n-- Final MRR calculations\n\norganization_product_usage_revenue_monthly_res AS (\nSELECT \n SHA2(CONCAT(revenue_month,organization_key,product_family),256) AS organization_product_month_id,\n revenue_month,\n organization_key,\n product_family,\n opening_plan_name,\n closing_plan_name,\n opening_usage_revenue_in_usd,\n closing_usage_revenue_in_usd,\n opening_l12m_avg_usage_revenue_in_usd,\n closing_l12m_avg_usage_revenue_in_usd,\n DOUBLE(CASE WHEN product_family = 'Subscriptions' THEN NVL(opening_usage_revenue_in_usd,0)\n ELSE NVL(opening_l12m_avg_usage_revenue_in_usd,0) END) AS opening_usage_mrr_in_usd,\n DOUBLE(CASE WHEN product_family = 'Subscriptions' THEN NVL(closing_usage_revenue_in_usd,0)\n ELSE NVL(closing_l12m_avg_usage_revenue_in_usd,0) END) AS closing_usage_mrr_in_usd,\n l12m_usage_revenue_in_usd,\n pro_rated_l12m_usage_revenue_in_usd,\n pro_rated_months_in_range_cnt,\n opening_pro_rated_l12m_avg_usage_revenue_in_usd,\n closing_pro_rated_l12m_avg_usage_revenue_in_usd,\n DOUBLE(CASE WHEN product_family = 'Subscriptions' THEN NVL(opening_usage_revenue_in_usd,0)\n WHEN NVL(opening_usage_revenue_in_usd,0) = 0 THEN 0\n ELSE NVL(opening_pro_rated_l12m_avg_usage_revenue_in_usd,0) END) AS opening_usage_pro_rated_mrr_in_usd,\n DOUBLE(CASE WHEN product_family = 'Subscriptions' THEN NVL(closing_usage_revenue_in_usd,0)\n WHEN NVL(closing_usage_revenue_in_usd,0) = 0 THEN 0\n ELSE NVL(closing_pro_rated_l12m_avg_usage_revenue_in_usd,0) END) AS closing_usage_pro_rated_mrr_in_usd,\n opening_usage_in_usd,\n closing_usage_in_usd,\n opening_l12m_avg_usage_in_usd,\n closing_l12m_avg_usage_in_usd,\n NVL(opening_usage_revenue_in_usd,0)-NVL(opening_usage_in_usd,0) AS opening_utilized_free_credits_in_usd,\n NVL(closing_usage_revenue_in_usd,0)-NVL(closing_usage_in_usd,0) AS closing_utilized_free_credits_in_usd,\n IF(product_family IN('SMS','Email'),NVL(opening_l12m_avg_usage_revenue_in_usd,0)-NVL(opening_l12m_avg_usage_in_usd,0),0) AS opening_l12m_avg_utilized_free_credits_in_usd,\n IF(product_family IN('SMS','Email'),NVL(closing_l12m_avg_usage_revenue_in_usd,0)-NVL(closing_l12m_avg_usage_in_usd,0),0) AS closing_l12m_avg_utilized_free_credits_in_usd,\n shopify_billing_usage_revenue_in_usd,\n zuora_usage_revenue_in_usd,\n chargify_usage_revenue_in_usd,\n communication_usage_revenue_in_usd,\n communication_usage_in_usd,\n communication_free_credit_in_usd,\n additional_orders_cnt,\n SMALLINT(opening_is_self_service) AS opening_is_self_service,\n SMALLINT(closing_is_self_service) AS closing_is_self_service,\n SMALLINT(opening_is_full_service) AS opening_is_full_service,\n SMALLINT(closing_is_full_service) AS closing_is_full_service,\n SMALLINT(opening_is_free) AS opening_is_free,\n SMALLINT(closing_is_free) AS closing_is_free,\n SMALLINT(is_shopify_billing_source) AS is_shopify_billing_source,\n SMALLINT(is_zuora_source) AS is_zuora_source,\n SMALLINT(is_communication_source) AS is_communication_source,\n SMALLINT(is_chargify_source) AS is_chargify_source,\n SMALLINT(is_exploded) AS is_exploded,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_usage_revenue_monthly_outer_join\n)\n\n-- Result --\n\nSELECT *\nFROM organization_product_usage_revenue_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__organization_revenue_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__organization_revenue_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.sql", "unique_id": "model.yoda.analytics___finance__organization_revenue_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_revenue_monthly", "analytics___finance__organization_revenue_monthly"], "alias": "analytics___finance__organization_revenue_monthly", "checksum": {"name": "sha256", "checksum": "4b7a0cd780b8f6da865cb60965658005eac35a801a9d359dc2bd2cdd89dbca2b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK [month, organization_key] OR [organization_month_id]\n\nThis table stores monthly revenue data on organization level aggregated across all products.\nIt includes various metrics and indicators to analyze revenue trends.\nThe general table structure is as follows:\n 1. opening state - the state at the begining of the month (end of previous month) \n 2. closing state - the state at the end of the month", "columns": {"organization_month_id": {"name": "organization_month_id", "description": "ID of the combination: [month, organization_key]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "PK 1/3\n\nThe month associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "PK 2/3\n\nThe unique identifier for each organization.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_product_family_group_list": {"name": "opening_product_family_group_list", "description": "list of organization's paid products at the beginning of month.\nproducts that had opening_revenue_for_cohorts > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_product_family_group_list": {"name": "closing_product_family_group_list", "description": "list of organization's paid products at the end of month.\nproducts that had closing_revenue_for_cohorts > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_number_of_paid_product": {"name": "opening_number_of_paid_product", "description": "Counting the number of products the organization has paid for last month.\n\nproducts that had opening_revenue_for_cohorts > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "closing_number_of_paid_product": {"name": "closing_number_of_paid_product", "description": "Counting the number of products the organization has paid for this month.\nproducts that had closing_revenue_for_cohorts > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opening_mrr_in_usd": {"name": "opening_mrr_in_usd", "description": "The Monthly Recurring Revenue (MRR) at the beginning of the month in USD.\n\nFor more info go to the closing_mrr_in_usd description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_mrr_in_usd": {"name": "closing_mrr_in_usd", "description": "The Monthly Recurring Revenue (MRR) at the end of the month in USD.\n\nContains two types:\n\n 1. SaaS MRR - for:\n\n 1.1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 1.2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)\n\n 2. Usage MRR - for:\n\n 2.1 Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2.2 ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n\n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_saas_mrr_in_usd": {"name": "opening_saas_mrr_in_usd", "description": "Only the SaaS component of the MRR at the beginning of the month in USD.\n\nFor more info go to the closing_saas_mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_saas_mrr_in_usd": {"name": "closing_saas_mrr_in_usd", "description": "Only the SaaS component of the MRR at the end of the month in USD.\n\n SaaS MRR - for:\n\n 1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_mrr_in_usd": {"name": "opening_usage_mrr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_mrr_in_usd": {"name": "closing_usage_mrr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_revenue_in_usd": {"name": "opening_revenue_in_usd", "description": "opening_revenue = opening_usage_revenue + opening_saas_MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_revenue_in_usd": {"name": "closing_revenue_in_usd", "description": "closing_revenue = closing_usage_revenue + closing_saas_MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_revenue_in_usd": {"name": "opening_usage_revenue_in_usd", "description": "The usage-based revenue at the end of previous month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_revenue_in_usd": {"name": "closing_usage_revenue_in_usd", "description": "The usage-based revenue at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_pro_rated_mrr_in_usd": {"name": "opening_pro_rated_mrr_in_usd", "description": "The pro-rated Monthly Recurring Revenue (MRR) at the beginning of the month in USD.\n\nFor more info go to the closing_pro_rated_mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_pro_rated_mrr_in_usd": {"name": "closing_pro_rated_mrr_in_usd", "description": "The pro-rated Monthly Recurring Revenue (MRR) at the end of the month in USD.\n\nContains two types:\n\n 1. SaaS MRR (same as the regular MRR) - for:\n\n 1.1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 1.2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)\n\n 2. Usage MRR - for:\n\n 2.1 Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2.2 ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_usage_pro_rated_mrr_in_usd": {"name": "opening_usage_pro_rated_mrr_in_usd", "description": "Only the Usage component of the pro-rated MRR at the end of previous month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_usage_pro_rated_mrr_in_usd": {"name": "closing_usage_pro_rated_mrr_in_usd", "description": "Only the Usage component of the pro-rated MRR at the end of the month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_revenue_for_cohorts": {"name": "opening_revenue_for_cohorts", "description": "In order to determine the paid cohorts we are using different revenue types for different products:\n\n 1. Loyalty & UGC - we are using only the SaaS revenue, since customer can't be paying customer for these products w/o SaaS fees.\n\n 2. SMS, Email & Subscriptions - we are using the total revenue (SaaS+usage), since customer can be paying customer for these products w/o SaaS fees.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_revenue_for_cohorts": {"name": "closing_revenue_for_cohorts", "description": "In order to determine the paid cohorts we are using different revenue types for different products:\n\n 1. Loyalty & UGC - we are using only the SaaS revenue, since customer can't be paying customer for these products w/o SaaS fees.\n\n 2. SMS, Email & Subscriptions - we are using the total revenue (SaaS+usage), since customer can be paying customer for these products w/o SaaS fees.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "adjusted_revenue_in_usd": {"name": "adjusted_revenue_in_usd", "description": "adjusted_revenue = SaaS_adjusted_revenue + Usage_adjusted_revenue\n 1. SaaS_adjusted_revenue = SaaS revenue X number of days subscribed\n 2. Usage_adjusted_revenue = usage_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "saas_adjusted_revenue_in_usd": {"name": "saas_adjusted_revenue_in_usd", "description": "SaaS_adjusted_revenue = SaaS revenue X number of days subscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "catch_up_revenue_in_usd": {"name": "catch_up_revenue_in_usd", "description": "free_month_catch_up_revenue + lost_after_won_catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "approximate_revenue_in_usd": {"name": "approximate_revenue_in_usd", "description": "The approximate revenue is mainly for FP&A to try and bridge between our revenue numbers and accounting revenue numbers.\napproximate_revenue = adjusted_revenue + catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_lost_after_won_effective_mrr": {"name": "opening_lost_after_won_effective_mrr", "description": "closing_lost_after_won_effective_mrr of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_lost_after_won_effective_mrr": {"name": "closing_lost_after_won_effective_mrr", "description": "if is_lost_after_won = 1 then closing_lost_after_won_effective_mrr = effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_lost_after_won_effective_mrr": {"name": "delta_lost_after_won_effective_mrr", "description": "closing - opening lost_after_won_effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_free_month_mrr_impact": {"name": "opening_free_month_mrr_impact", "description": "closing_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_free_month_mrr_impact": {"name": "closing_free_month_mrr_impact", "description": "End of month sales_free_month_mrr_impact + csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_free_month_mrr_impact": {"name": "delta_free_month_mrr_impact", "description": "closing - opening free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_sales_free_month_mrr_impact": {"name": "opening_sales_free_month_mrr_impact", "description": "closing_sales_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_sales_free_month_mrr_impact": {"name": "closing_sales_free_month_mrr_impact", "description": "End of month MRR that changed due to sales free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_sales_free_month_mrr_impact": {"name": "delta_sales_free_month_mrr_impact", "description": "closing - opening sales_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_csm_free_month_mrr_impact": {"name": "opening_csm_free_month_mrr_impact", "description": "closing_csm_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_csm_free_month_mrr_impact": {"name": "closing_csm_free_month_mrr_impact", "description": "End of month MRR that changed due to CSM free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_csm_free_month_mrr_impact": {"name": "delta_csm_free_month_mrr_impact", "description": "closing - opening csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_after_won_catch_up_revenue_in_usd": {"name": "lost_after_won_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the LAW only affect the revenue from the LAW recognition month on.\nIn order to catch the entire LAW impact, we do a catch-up calculation:\n lost_after_won_catch_up_revenue = delta_lost_after_won_effective_mrr X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_month_catch_up_revenue_in_usd": {"name": "free_month_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the given free months only affect the revenue from the grant month on.\nIn order to catch the entire free months impact, we do a catch-up calculation:\n free_month_catch_up_revenue = delta_free_month_mrr_impact X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_cohort_number": {"name": "organization_cohort_number", "description": "The paid cohort number of the organization (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the organization.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "organization_months_since_last_paid_month": {"name": "organization_months_since_last_paid_month", "description": "Number of months since last paid month (on organization level), based on closing_revenue_for_cohorts.\n 1. For first ever paid month OR months w/o closing_revenue_for_cohorts the value will be NULL\n 2. For new cohort's first month the value will be greater than 1 and will tell us how many months passed since the previous cohort ended.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_month_number_since_current_cohort": {"name": "organization_month_number_since_current_cohort", "description": "The number of months since the current organization paid cohort started (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the organization.\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "organization_month_number_since_first_cohort": {"name": "organization_month_number_since_first_cohort", "description": "The number of months since the first organization paid cohort started (based on closing_revenue_for_cohorts).\n * First month gets 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "min_subscription_start_date": {"name": "min_subscription_start_date", "description": "MIN subscription start date across all products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "max_subscription_end_date": {"name": "max_subscription_end_date", "description": "MAX subscription end date across all products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opening_is_paying_customer": {"name": "opening_is_paying_customer", "description": "Indicates if the organization is considered as paying customer at the end of the previous month.\n\nIF(opening_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_paying_customer": {"name": "closing_is_paying_customer", "description": "Indicates if the organization is considered as paying customer at the end of the month.\n\nIF(closing_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_paid_ugc": {"name": "opening_is_paid_ugc", "description": "Indicates if the organization has paid for UGC last month.\n\nIn more technical terms, opening_is_paid_ugc = 1 if:\n 1. opening_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'UGC'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_is_paid_ugc": {"name": "closing_is_paid_ugc", "description": "Indicates if the organization has paid for UGC this month.\n\nIn more technical terms, closing_is_paid_ugc = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'UGC'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_is_paid_loyalty": {"name": "opening_is_paid_loyalty", "description": "Indicates if the organization has paid for Loyalty last month.\n\nIn more technical terms, opening_is_paid_loyalty = 1 if:\n 1. opening_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Loyalty'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_is_paid_loyalty": {"name": "closing_is_paid_loyalty", "description": "Indicates if the organization has paid for Loyalty this month.\n\nIn more technical terms, closing_is_paid_loyalty = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Loyalty'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_is_paid_sms": {"name": "opening_is_paid_sms", "description": "Indicates if the organization has paid for SMS last month.\n\nIn more technical terms, opening_is_paid_sms = 1 if:\n 1. opening_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'SMS'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_is_paid_sms": {"name": "closing_is_paid_sms", "description": "Indicates if the organization has paid for SMS this month.\n\nIn more technical terms, closing_is_paid_sms = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'SMS'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_is_paid_email": {"name": "opening_is_paid_email", "description": "Indicates if the organization has paid for Email last month.\n\nIn more technical terms, opening_is_paid_email = 1 if:\n 1. opening_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Email'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_is_paid_email": {"name": "closing_is_paid_email", "description": "Indicates if the organization has paid for Email this month.\n\nIn more technical terms, closing_is_paid_email = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Email'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_is_paid_subscriptions": {"name": "opening_is_paid_subscriptions", "description": "Indicates if the organization has paid for Subscriptions last month.\n\nIn more technical terms, opening_is_paid_subscriptions = 1 if:\n 1. opening_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Subscriptions'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_is_paid_subscriptions": {"name": "closing_is_paid_subscriptions", "description": "Indicates if the organization has paid for Subscriptions this month.\n\nIn more technical terms, closing_is_paid_subscriptions = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Subscriptions'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_plan_name_list": {"name": "opening_plan_name_list", "description": "list of opening_plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name_list": {"name": "closing_plan_name_list", "description": "list of closing_plan_names", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_group_list": {"name": "opening_plan_group_list", "description": "list of opening_plan_group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_group_list": {"name": "closing_plan_group_list", "description": "list of closing_plan_group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_is_annual_billing": {"name": "opening_is_annual_billing", "description": "MAX is_annual_billing across all plans at the beginning of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_annual_billing": {"name": "closing_is_annual_billing", "description": "MAX is_annual_billing across all plans at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_self_service": {"name": "opening_is_self_service", "description": "MIN is_self_service across all plans at the beginning of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_is_self_service": {"name": "closing_is_self_service", "description": "MIN is_self_service across all plans at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_is_full_service": {"name": "opening_is_full_service", "description": "MAX is_full_service across all plans at the beginning of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_full_service": {"name": "closing_is_full_service", "description": "MAX is_full_service across all plans at the end of the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "MIN is_lost_after_won across all products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "MAX is_staggered_subscription across all products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "zuora_subscription_name_and_version_array": {"name": "zuora_subscription_name_and_version_array", "description": "An array containing Zuora subscription names and versions associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "zuora_account_id_array": {"name": "zuora_account_id_array", "description": "An array containing Zuora account IDs associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_account_id_array": {"name": "sf_account_id_array", "description": "An array containing Salesforce account IDs associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_array": {"name": "sf_opportunity_id_array", "description": "An array containing Salesforce opportunity IDs associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "saas_shopify_charge_id_array": {"name": "saas_shopify_charge_id_array", "description": "An array containing SaaS Shopify charge IDs associated with the revenue data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "saas_is_zuora_source": {"name": "saas_is_zuora_source", "description": "Indicates if SaaS revenue data is sourced from Zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "saas_is_shopify_billing_source": {"name": "saas_is_shopify_billing_source", "description": "Indicates if SaaS revenue data is sourced from Shopify billing.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "usage_is_zuora_source": {"name": "usage_is_zuora_source", "description": "Indicates if usage revenue data is sourced from Zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "usage_is_shopify_billing_source": {"name": "usage_is_shopify_billing_source", "description": "Indicates if usage revenue data is sourced from Shopify billing.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "usage_is_communication_source": {"name": "usage_is_communication_source", "description": "Indicates if usage revenue data is sourced from communication.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "usage_is_chargify_source": {"name": "usage_is_chargify_source", "description": "Indicates if usage revenue data is sourced from Chargify.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_saas_source": {"name": "is_saas_source", "description": "Indicates if revenue data is sourced from SaaS.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_usage_source": {"name": "is_usage_source", "description": "Indicates if revenue data is sourced from usage.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082637.21739, "relation_name": "dev_dkruh1.analytics___finance__organization_revenue_monthly", "raw_code": "-- Import --\n\nWITH import_product_revenue AS (\nSELECT * FROM {{ ref('analytics___finance__organization_product_revenue_monthly') }}\n),\n\n-- Logic -- \n\norganization_revenue_mothly_res AS (\nSELECT\n SHA2(CONCAT(month,organization_key),256) AS organization_month_id,\n month,\n organization_key,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(IF(NVL(opening_revenue_for_cohorts,0) > 0,product_family_group,NULL)))),'') AS opening_product_family_group_list,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(IF(NVL(closing_revenue_for_cohorts,0) > 0,product_family_group,NULL)))),'') AS closing_product_family_group_list,\n COUNT(DISTINCT IF(NVL(opening_revenue_for_cohorts,0) > 0,product_family_group,NULL)) AS opening_number_of_paid_product,\n COUNT(DISTINCT IF(NVL(closing_revenue_for_cohorts,0) > 0,product_family_group,NULL)) AS closing_number_of_paid_product,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(opening_saas_mrr_in_usd) AS opening_saas_mrr_in_usd,\n SUM(closing_saas_mrr_in_usd) AS closing_saas_mrr_in_usd,\n SUM(opening_usage_mrr_in_usd) AS opening_usage_mrr_in_usd,\n SUM(closing_usage_mrr_in_usd) AS closing_usage_mrr_in_usd,\n SUM(opening_revenue_in_usd) AS opening_revenue_in_usd,\n SUM(closing_revenue_in_usd) AS closing_revenue_in_usd,\n SUM(opening_usage_revenue_in_usd) AS opening_usage_revenue_in_usd,\n SUM(closing_usage_revenue_in_usd) AS closing_usage_revenue_in_usd,\n SUM(opening_pro_rated_mrr_in_usd) AS opening_pro_rated_mrr_in_usd,\n SUM(closing_pro_rated_mrr_in_usd) AS closing_pro_rated_mrr_in_usd,\n SUM(opening_usage_pro_rated_mrr_in_usd) AS opening_usage_pro_rated_mrr_in_usd,\n SUM(closing_usage_pro_rated_mrr_in_usd) AS closing_usage_pro_rated_mrr_in_usd,\n SUM(opening_revenue_for_cohorts) AS opening_revenue_for_cohorts,\n SUM(closing_revenue_for_cohorts) AS closing_revenue_for_cohorts,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(saas_adjusted_revenue_in_usd) AS saas_adjusted_revenue_in_usd,\n SUM(catch_up_revenue_in_usd) AS catch_up_revenue_in_usd,\n SUM(approximate_revenue_in_usd) AS approximate_revenue_in_usd,\n SUM(opening_lost_after_won_effective_mrr) AS opening_lost_after_won_effective_mrr,\n SUM(closing_lost_after_won_effective_mrr) AS closing_lost_after_won_effective_mrr,\n SUM(delta_lost_after_won_effective_mrr) AS delta_lost_after_won_effective_mrr,\n SUM(opening_free_month_mrr_impact) AS opening_free_month_mrr_impact,\n SUM(closing_free_month_mrr_impact) AS closing_free_month_mrr_impact,\n SUM(delta_free_month_mrr_impact) AS delta_free_month_mrr_impact,\n SUM(opening_sales_free_month_mrr_impact) AS opening_sales_free_month_mrr_impact,\n SUM(closing_sales_free_month_mrr_impact) AS closing_sales_free_month_mrr_impact,\n SUM(delta_sales_free_month_mrr_impact) AS delta_sales_free_month_mrr_impact,\n SUM(opening_csm_free_month_mrr_impact) AS opening_csm_free_month_mrr_impact,\n SUM(closing_csm_free_month_mrr_impact) AS closing_csm_free_month_mrr_impact,\n SUM(delta_csm_free_month_mrr_impact) AS delta_csm_free_month_mrr_impact,\n SUM(lost_after_won_catch_up_revenue_in_usd) AS lost_after_won_catch_up_revenue_in_usd,\n SUM(free_month_catch_up_revenue_in_usd) AS free_month_catch_up_revenue_in_usd,\n MAX(organization_cohort_number) AS organization_cohort_number,\n MIN(organization_months_since_last_paid_month) AS organization_months_since_last_paid_month,\n MAX(organization_month_number_since_current_cohort) AS organization_month_number_since_current_cohort,\n MAX(organization_month_number_since_first_cohort) AS organization_month_number_since_first_cohort,\n MIN(subscription_start_date) AS min_subscription_start_date,\n MAX(subscription_end_date) AS max_subscription_end_date,\n MAX(opening_is_paid_product) AS opening_is_paying_customer,\n MAX(closing_is_paid_product) AS closing_is_paying_customer,\n MAX(IF(NVL(opening_revenue_for_cohorts,0) > 0 AND product_family_group = 'UGC' ,1,0)) AS opening_is_paid_ugc,\n MAX(IF(NVL(closing_revenue_for_cohorts,0) > 0 AND product_family_group = 'UGC' ,1,0)) AS closing_is_paid_ugc,\n MAX(IF(NVL(opening_revenue_for_cohorts,0) > 0 AND product_family_group = 'Loyalty' ,1,0)) AS opening_is_paid_loyalty,\n MAX(IF(NVL(closing_revenue_for_cohorts,0) > 0 AND product_family_group = 'Loyalty' ,1,0)) AS closing_is_paid_loyalty,\n MAX(IF(NVL(opening_revenue_for_cohorts,0) > 0 AND product_family_group = 'SMS' ,1,0)) AS opening_is_paid_sms,\n MAX(IF(NVL(closing_revenue_for_cohorts,0) > 0 AND product_family_group = 'SMS' ,1,0)) AS closing_is_paid_sms,\n MAX(IF(NVL(opening_revenue_for_cohorts,0) > 0 AND product_family_group = 'Email' ,1,0)) AS opening_is_paid_email,\n MAX(IF(NVL(closing_revenue_for_cohorts,0) > 0 AND product_family_group = 'Email' ,1,0)) AS closing_is_paid_email,\n MAX(IF(NVL(opening_revenue_for_cohorts,0) > 0 AND product_family_group = 'Subscriptions' ,1,0)) AS opening_is_paid_subscriptions,\n MAX(IF(NVL(closing_revenue_for_cohorts,0) > 0 AND product_family_group = 'Subscriptions' ,1,0)) AS closing_is_paid_subscriptions,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(opening_plan_name))),'') AS opening_plan_name_list,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(closing_plan_name))),'') AS closing_plan_name_list,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(opening_plan_group))),'') AS opening_plan_group_list,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(closing_plan_group))),'') AS closing_plan_group_list,\n MAX(opening_is_annual_billing) AS opening_is_annual_billing,\n MAX(closing_is_annual_billing) AS closing_is_annual_billing,\n MIN(opening_is_self_service) AS opening_is_self_service,\n MIN(closing_is_self_service) AS closing_is_self_service,\n MAX(opening_is_full_service) AS opening_is_full_service,\n MAX(closing_is_full_service) AS closing_is_full_service,\n MIN(is_lost_after_won) AS is_lost_after_won,\n MAX(is_staggered_subscription) AS is_staggered_subscription,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(zuora_subscription_name_and_version_array)))) AS zuora_subscription_name_and_version_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(zuora_account_id_array)))) AS zuora_account_id_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(sf_account_id_array)))) AS sf_account_id_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(sf_opportunity_id_array)))) AS sf_opportunity_id_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(saas_shopify_charge_id_array)))) AS saas_shopify_charge_id_array,\n MAX(saas_is_zuora_source) AS saas_is_zuora_source,\n MAX(saas_is_shopify_billing_source) AS saas_is_shopify_billing_source,\n MAX(usage_is_zuora_source) AS usage_is_zuora_source,\n MAX(usage_is_shopify_billing_source) AS usage_is_shopify_billing_source,\n MAX(usage_is_communication_source) AS usage_is_communication_source,\n MAX(usage_is_chargify_source) AS usage_is_chargify_source,\n MAX(is_saas_source) AS is_saas_source,\n MAX(is_usage_source) AS is_usage_source,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_product_revenue\nGROUP BY 1, 2, 3\n)\n\nSELECT * \nFROM organization_revenue_mothly_res", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_product_revenue AS (\nSELECT * FROM dev_dkruh1.analytics___finance__organization_product_revenue_monthly\n),\n\n-- Logic -- \n\norganization_revenue_mothly_res AS (\nSELECT\n SHA2(CONCAT(month,organization_key),256) AS organization_month_id,\n month,\n organization_key,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(IF(NVL(opening_revenue_for_cohorts,0) > 0,product_family_group,NULL)))),'') AS opening_product_family_group_list,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(IF(NVL(closing_revenue_for_cohorts,0) > 0,product_family_group,NULL)))),'') AS closing_product_family_group_list,\n COUNT(DISTINCT IF(NVL(opening_revenue_for_cohorts,0) > 0,product_family_group,NULL)) AS opening_number_of_paid_product,\n COUNT(DISTINCT IF(NVL(closing_revenue_for_cohorts,0) > 0,product_family_group,NULL)) AS closing_number_of_paid_product,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(opening_saas_mrr_in_usd) AS opening_saas_mrr_in_usd,\n SUM(closing_saas_mrr_in_usd) AS closing_saas_mrr_in_usd,\n SUM(opening_usage_mrr_in_usd) AS opening_usage_mrr_in_usd,\n SUM(closing_usage_mrr_in_usd) AS closing_usage_mrr_in_usd,\n SUM(opening_revenue_in_usd) AS opening_revenue_in_usd,\n SUM(closing_revenue_in_usd) AS closing_revenue_in_usd,\n SUM(opening_usage_revenue_in_usd) AS opening_usage_revenue_in_usd,\n SUM(closing_usage_revenue_in_usd) AS closing_usage_revenue_in_usd,\n SUM(opening_pro_rated_mrr_in_usd) AS opening_pro_rated_mrr_in_usd,\n SUM(closing_pro_rated_mrr_in_usd) AS closing_pro_rated_mrr_in_usd,\n SUM(opening_usage_pro_rated_mrr_in_usd) AS opening_usage_pro_rated_mrr_in_usd,\n SUM(closing_usage_pro_rated_mrr_in_usd) AS closing_usage_pro_rated_mrr_in_usd,\n SUM(opening_revenue_for_cohorts) AS opening_revenue_for_cohorts,\n SUM(closing_revenue_for_cohorts) AS closing_revenue_for_cohorts,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(saas_adjusted_revenue_in_usd) AS saas_adjusted_revenue_in_usd,\n SUM(catch_up_revenue_in_usd) AS catch_up_revenue_in_usd,\n SUM(approximate_revenue_in_usd) AS approximate_revenue_in_usd,\n SUM(opening_lost_after_won_effective_mrr) AS opening_lost_after_won_effective_mrr,\n SUM(closing_lost_after_won_effective_mrr) AS closing_lost_after_won_effective_mrr,\n SUM(delta_lost_after_won_effective_mrr) AS delta_lost_after_won_effective_mrr,\n SUM(opening_free_month_mrr_impact) AS opening_free_month_mrr_impact,\n SUM(closing_free_month_mrr_impact) AS closing_free_month_mrr_impact,\n SUM(delta_free_month_mrr_impact) AS delta_free_month_mrr_impact,\n SUM(opening_sales_free_month_mrr_impact) AS opening_sales_free_month_mrr_impact,\n SUM(closing_sales_free_month_mrr_impact) AS closing_sales_free_month_mrr_impact,\n SUM(delta_sales_free_month_mrr_impact) AS delta_sales_free_month_mrr_impact,\n SUM(opening_csm_free_month_mrr_impact) AS opening_csm_free_month_mrr_impact,\n SUM(closing_csm_free_month_mrr_impact) AS closing_csm_free_month_mrr_impact,\n SUM(delta_csm_free_month_mrr_impact) AS delta_csm_free_month_mrr_impact,\n SUM(lost_after_won_catch_up_revenue_in_usd) AS lost_after_won_catch_up_revenue_in_usd,\n SUM(free_month_catch_up_revenue_in_usd) AS free_month_catch_up_revenue_in_usd,\n MAX(organization_cohort_number) AS organization_cohort_number,\n MIN(organization_months_since_last_paid_month) AS organization_months_since_last_paid_month,\n MAX(organization_month_number_since_current_cohort) AS organization_month_number_since_current_cohort,\n MAX(organization_month_number_since_first_cohort) AS organization_month_number_since_first_cohort,\n MIN(subscription_start_date) AS min_subscription_start_date,\n MAX(subscription_end_date) AS max_subscription_end_date,\n MAX(opening_is_paid_product) AS opening_is_paying_customer,\n MAX(closing_is_paid_product) AS closing_is_paying_customer,\n MAX(IF(NVL(opening_revenue_for_cohorts,0) > 0 AND product_family_group = 'UGC' ,1,0)) AS opening_is_paid_ugc,\n MAX(IF(NVL(closing_revenue_for_cohorts,0) > 0 AND product_family_group = 'UGC' ,1,0)) AS closing_is_paid_ugc,\n MAX(IF(NVL(opening_revenue_for_cohorts,0) > 0 AND product_family_group = 'Loyalty' ,1,0)) AS opening_is_paid_loyalty,\n MAX(IF(NVL(closing_revenue_for_cohorts,0) > 0 AND product_family_group = 'Loyalty' ,1,0)) AS closing_is_paid_loyalty,\n MAX(IF(NVL(opening_revenue_for_cohorts,0) > 0 AND product_family_group = 'SMS' ,1,0)) AS opening_is_paid_sms,\n MAX(IF(NVL(closing_revenue_for_cohorts,0) > 0 AND product_family_group = 'SMS' ,1,0)) AS closing_is_paid_sms,\n MAX(IF(NVL(opening_revenue_for_cohorts,0) > 0 AND product_family_group = 'Email' ,1,0)) AS opening_is_paid_email,\n MAX(IF(NVL(closing_revenue_for_cohorts,0) > 0 AND product_family_group = 'Email' ,1,0)) AS closing_is_paid_email,\n MAX(IF(NVL(opening_revenue_for_cohorts,0) > 0 AND product_family_group = 'Subscriptions' ,1,0)) AS opening_is_paid_subscriptions,\n MAX(IF(NVL(closing_revenue_for_cohorts,0) > 0 AND product_family_group = 'Subscriptions' ,1,0)) AS closing_is_paid_subscriptions,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(opening_plan_name))),'') AS opening_plan_name_list,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(closing_plan_name))),'') AS closing_plan_name_list,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(opening_plan_group))),'') AS opening_plan_group_list,\n NULLIF(CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(closing_plan_group))),'') AS closing_plan_group_list,\n MAX(opening_is_annual_billing) AS opening_is_annual_billing,\n MAX(closing_is_annual_billing) AS closing_is_annual_billing,\n MIN(opening_is_self_service) AS opening_is_self_service,\n MIN(closing_is_self_service) AS closing_is_self_service,\n MAX(opening_is_full_service) AS opening_is_full_service,\n MAX(closing_is_full_service) AS closing_is_full_service,\n MIN(is_lost_after_won) AS is_lost_after_won,\n MAX(is_staggered_subscription) AS is_staggered_subscription,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(zuora_subscription_name_and_version_array)))) AS zuora_subscription_name_and_version_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(zuora_account_id_array)))) AS zuora_account_id_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(sf_account_id_array)))) AS sf_account_id_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(sf_opportunity_id_array)))) AS sf_opportunity_id_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(saas_shopify_charge_id_array)))) AS saas_shopify_charge_id_array,\n MAX(saas_is_zuora_source) AS saas_is_zuora_source,\n MAX(saas_is_shopify_billing_source) AS saas_is_shopify_billing_source,\n MAX(usage_is_zuora_source) AS usage_is_zuora_source,\n MAX(usage_is_shopify_billing_source) AS usage_is_shopify_billing_source,\n MAX(usage_is_communication_source) AS usage_is_communication_source,\n MAX(usage_is_chargify_source) AS usage_is_chargify_source,\n MAX(is_saas_source) AS is_saas_source,\n MAX(is_usage_source) AS is_usage_source,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_product_revenue\nGROUP BY 1, 2, 3\n)\n\nSELECT * \nFROM organization_revenue_mothly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__rate_plan_mrr_details": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__rate_plan_mrr_details", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.sql", "unique_id": "model.yoda.analytics___finance__rate_plan_mrr_details", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__rate_plan_mrr_details", "analytics___finance__rate_plan_mrr_details"], "alias": "analytics___finance__rate_plan_mrr_details", "checksum": {"name": "sha256", "checksum": "bf66efa1ceca607770364811406aeaeba2e7a62c4a0bcc91a1f66ab072c3abc0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Aggregated TABLE of mrr per rateplan. Contains only is_deleted = 0.\nGranularity: subscription_name, subscription_id,product_id,rateplan_id,", "columns": {"account_id": {"name": "account_id", "description": "FK: zuora_account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_id": {"name": "subscription_id", "description": "FK: zuora_subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_id": {"name": "sf_opportunity_id", "description": "FK: salesforce__opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_id": {"name": "sf_account_id", "description": "FK: sf_account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_name": {"name": "subscription_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "version_created_at": {"name": "version_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "term_type": {"name": "term_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_status": {"name": "subscription_status", "description": "The subscription status from Zuora (Active/Cancelled/Expired)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "FK: zuora_product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplan_id": {"name": "rateplan_id", "description": "FK: zuora_rateplan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplan_name": {"name": "rateplan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rateplan_id": {"name": "product_rateplan_id", "description": "FK: zuora_product_rateplan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisioned_plan_name": {"name": "provisioned_plan_name", "description": "FK: plan_name in analytics___platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effective_start_date": {"name": "effective_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "effective_end_date": {"name": "effective_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_cancelled_at": {"name": "subscription_cancelled_at", "description": "subscription cancelled_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_cancelled_date": {"name": "subscription_cancelled_date", "description": "subscription cancelled_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "amendment_type": {"name": "amendment_type", "description": "Does not include \"RemoveProduct\"", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actual_contract_duration": {"name": "actual_contract_duration", "description": "contract duration per subscription version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "original_contract_duration": {"name": "original_contract_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "csm_extension_months": {"name": "csm_extension_months", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "end_of_contract_extension_month": {"name": "end_of_contract_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "last_version_csm_extension_months": {"name": "last_version_csm_extension_months", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "last_version_end_of_contract_extension_month": {"name": "last_version_end_of_contract_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "is_change_csm_extension_months": {"name": "is_change_csm_extension_months", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_change_end_of_contract_extension_month": {"name": "is_change_end_of_contract_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_latest_version": {"name": "is_latest_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_core_plan": {"name": "is_core_plan", "description": "core plan indicator is usually used in full service accounts where a subscription includes one main plan per product (core plan) + extensions (ie. syndication, extra seats,insights).\nfor extensions indicator = 0.\nfield is populated by the creator of the plan in zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "price_in_original_currency": {"name": "price_in_original_currency", "description": "Price of recurring charge per unit (quantity) in original currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_percentage": {"name": "discount_percentage", "description": "Discount on recurring charge in precentage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_in_original_currency": {"name": "discount_in_original_currency", "description": "discount_percentage * price_in_original_currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_after_discount_in_original_currency": {"name": "price_after_discount_in_original_currency", "description": "price_in_original_currency * (100- discount_percentage)/100", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "conversion_rate": {"name": "conversion_rate", "description": "conversion rate from salesforce_stg__mc_conversion_rate accourding to effective start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mrr_in_original_currency": {"name": "mrr_in_original_currency", "description": "product monthly price * units in original currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mrr_in_usd": {"name": "mrr_in_usd", "description": "product monthly (price * units) / (coverstion rate to USD)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "billing_period": {"name": "billing_period", "description": "Annual|Eighteen Months|Month|null|Semi-Annual|Quarter", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_model": {"name": "charge_model", "description": "Overage Pricing|Per Unit Pricing|Discount-Percentage|Flat Fee Pricing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "list_price_base": {"name": "list_price_base", "description": "Per Billing Period|Per Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version_created_date": {"name": "version_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_expired_subscription": {"name": "is_expired_subscription", "description": "Indicates if the subscription is expired or not.\nExpaired subscription indicates late renewal", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_change_term_type": {"name": "is_change_term_type", "description": "indicates if the currect subscription's version term type was changed. This heppens when an annual SS subscription is cancelled.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_subscription_change_term_type": {"name": "is_subscription_change_term_type", "description": "indicates if the subscription had a term type change.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "next_effective_start_date_per_plan": {"name": "next_effective_start_date_per_plan", "description": "effective_start_date of the next version partitioned by plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "termed_to_date": {"name": "termed_to_date", "description": "Preperation for the over time model.\nThis field is only relevant for TERMED type subscriptions.\nFor:\n 1. latest versions:\n If the subscription got cancelled, the value will be the subscription cancelled date else it will be '2999-01-01'\n\n 2. earlier versions:\n 2.1 If the effective start date did not change between the version and the following version,\n the value will be equal to the effective start date (from date will be equal to to date causing the version to be irrelevant)\n 2.2 If the effective start date did change between the version and the following version,\n the value will be equal to the effective start date of the next version (allowing us to show the data of the version up until the start of the new version)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "next_from_date": {"name": "next_from_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "next_from_date_per_product_family": {"name": "next_from_date_per_product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "next_from_date_per_product_id": {"name": "next_from_date_per_product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082637.2975628, "relation_name": "dev_dkruh1.analytics___finance__rate_plan_mrr_details", "raw_code": "-- import --\n\nWITH import_subscription AS (\n\n SELECT * FROM {{ ref('analytics___finance__zuora_subscription') }}\n\n), \nimport_account AS (\n\n SELECT * FROM {{ ref('analytics___finance__zuora_account') }}\n\n), \nimport_rateplan AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__zuora_rateplan') }}\n\n), \nimport_rateplan_charge AS (\n\n SELECT * FROM {{ ref('analytics___finance__zuora_rateplan_charge') }}\n\n), \nimport_rateplan_charge_tier AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__zuora_rateplan_charge_tier') }}\n\n), \nimport_product AS (\n\n SELECT * FROM {{ ref('analytics___finance__zuora_product') }}\n\n), \nimport_product_rateplan_charge AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__zuora_product_rateplan_charge') }}\n\n),\nimport_conversion_rate AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_conversion_rate') }}\n\n),\nsubscription_filtered AS (\n\n SELECT\n account.account_id,\n account.organization_key,\n subscription.subscription_name, \n subscription.subscription_id,\n subscription.sf_opportunity_id,\n account.sf_account_id,\n subscription.version,\n subscription.created_at AS version_created_at,\n subscription.term_type,\n subscription.status AS subscription_status,\n subscription.csm_extension_months,\n subscription.end_of_contract_extension_month,\n MAX(subscription.version) OVER(PARTITION BY account.account_id,subscription.subscription_name) AS max_filtered_version,\n subscription.is_staggered_subscription,\n subscription.last_version_csm_extension_months,\n subscription.last_version_end_of_contract_extension_month,\n subscription.actual_contract_duration,\n subscription.original_contract_duration,\n subscription.cancelled_at,\n COALESCE(LAG(subscription.term_type) OVER (PARTITION BY subscription.account_id, subscription.subscription_name ORDER BY subscription.version)\n ,subscription.term_type) AS previous_term_type\n FROM import_subscription AS subscription\n INNER JOIN import_account AS account\n ON subscription.account_id = account.account_id\n WHERE subscription.is_deleted = 0\n AND subscription.is_exclude_from_dashboards = 0\n AND subscription.is_trial_subscription = 0\n AND account.is_test_account = 0\n AND account.is_deleted = 0\n\n), \nrateplan_charge_tier_filtered_enrichment AS (\n\n SELECT\n subscription.account_id,\n subscription.organization_key,\n subscription.subscription_id,\n subscription.subscription_name,\n subscription.version,\n IF(subscription.max_filtered_version = subscription.version,1,0) AS is_latest_version,\n subscription.version_created_at,\n subscription.term_type,\n subscription.subscription_status,\n subscription.sf_opportunity_id,\n subscription.sf_account_id,\n product.product_id,\n product.product_name,\n product.product_family,\n product.provisioned_package_name AS provisioned_plan_name,\n charge.rateplan_charge_name,\n charge.effective_start_date,\n charge.effective_end_date,\n subscription.cancelled_at AS subscription_cancelled_at,\n charge.product_rateplan_id,\n charge.product_rateplan_charge_id,\n rateplan.amendment_type,\n rateplan.rateplan_name,\n charge.billing_period,\n charge.charge_model,\n COALESCE(charge.apply_discount_charge_type,charge.charge_type) AS charge_type,\n charge.list_price_base,\n tier.rateplan_id,\n tier.rateplan_charge_tier_id,\n tier.rateplan_charge_id,\n tier.currency,\n tier.price_in_original_currency * COALESCE(charge.quantity,1) AS price_in_original_currency,\n tier.discount_percentage,\n IF(charge.charge_model = 'Discount-Percentage' AND tier.discount_percentage = 0,1,0) AS is_zero_discount,\n IF(subscription.previous_term_type <> subscription.term_type,1,0) AS is_change_term_type,\n subscription.actual_contract_duration,\n subscription.original_contract_duration,\n subscription.csm_extension_months,\n subscription.end_of_contract_extension_month,\n subscription.last_version_csm_extension_months,\n subscription.last_version_end_of_contract_extension_month,\n IF(subscription.csm_extension_months <> subscription.last_version_csm_extension_months,1,0) AS is_change_csm_extension_months,\n IF(subscription.end_of_contract_extension_month <> subscription.last_version_end_of_contract_extension_month,1,0) AS is_change_end_of_contract_extension_month,\n product.is_core_plan,\n subscription.is_staggered_subscription\n FROM import_rateplan_charge_tier AS tier\n INNER JOIN import_rateplan_charge AS charge\n ON tier.rateplan_charge_id = charge.tier_join_rateplan_charge_id\n AND charge.tier_join_rateplan_charge_id IS NOT NULL\n INNER JOIN import_rateplan AS rateplan\n ON charge.rateplan_id = rateplan.rateplan_id\n INNER JOIN subscription_filtered AS subscription\n ON rateplan.subscription_id = subscription.subscription_id\n INNER JOIN import_product_rateplan_charge AS product_charge\n ON charge.product_rateplan_charge_id = product_charge.product_rateplan_charge_id\n INNER JOIN import_product AS product\n ON product_charge.product_id = product.product_id\n WHERE tier.is_deleted = 0\n AND charge.is_deleted = 0\n AND rateplan.is_deleted = 0\n AND COALESCE(LOWER(rateplan.amendment_type),'') <> 'removeproduct'\n AND product_charge.is_deleted = 0\n AND product.is_deleted = 0\n), \nrateplan_level_mrr_calc AS (\n\n SELECT\n account_id,\n organization_key,\n subscription_id,\n sf_opportunity_id,\n sf_account_id,\n subscription_name,\n version,\n version_created_at,\n term_type,\n subscription_status,\n product_id,\n rateplan_id,\n rateplan_name,\n product_rateplan_id,\n product_name AS plan_name,\n provisioned_plan_name,\n product_family,\n effective_start_date,\n effective_end_date,\n subscription_cancelled_at,\n amendment_type,\n currency,\n actual_contract_duration,\n original_contract_duration,\n csm_extension_months,\n end_of_contract_extension_month,\n last_version_csm_extension_months,\n last_version_end_of_contract_extension_month,\n is_change_csm_extension_months,\n is_change_end_of_contract_extension_month,\n is_change_term_type,\n is_latest_version,\n is_core_plan,\n is_staggered_subscription,\n SUM(price_in_original_currency) AS price_in_original_currency,\n SUM(discount_percentage) AS discount_percentage,\n SUM(price_in_original_currency) * (COALESCE(SUM(discount_percentage),0))/100 AS discount_in_original_currency,\n SUM(price_in_original_currency) * (100-COALESCE(SUM(discount_percentage),0))/100 as price_after_discount_in_original_currency,\n FIRST_VALUE(IF(LOWER(charge_model) = 'per unit pricing',billing_period,NULL),TRUE) AS billing_period,\n FIRST_VALUE(IF(LOWER(charge_model) = 'per unit pricing',charge_model,NULL),TRUE) AS charge_model,\n FIRST_VALUE(IF(LOWER(charge_model) = 'per unit pricing',list_price_base,NULL),TRUE) AS list_price_base\n FROM rateplan_charge_tier_filtered_enrichment\n WHERE COALESCE(LOWER(charge_type),'') LIKE '%recurring%'\n AND is_zero_discount = 0\n AND LOWER(product_name) <> 'sms credit charges'\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34\n\n),\nbilling_periods AS (\n\n SELECT \n billing_period,\n multiple\n FROM (VALUES (\"Annual\",12), (\"Month\",1)) as (billing_period,multiple)\n\n),\nrateplan_level_mrr_enriched AS (\n\n SELECT\n account_id,\n organization_key,\n subscription_id,\n sf_opportunity_id,\n sf_account_id,\n subscription_name,\n version,\n version_created_at,\n term_type,\n subscription_status,\n product_id,\n rateplan_id,\n rateplan_name,\n product_rateplan_id,\n plan_name,\n provisioned_plan_name,\n product_family,\n effective_start_date,\n effective_end_date,\n subscription_cancelled_at,\n DATE(subscription_cancelled_at) AS subscription_cancelled_date,\n amendment_type,\n currency,\n actual_contract_duration,\n original_contract_duration,\n csm_extension_months,\n end_of_contract_extension_month,\n last_version_csm_extension_months,\n last_version_end_of_contract_extension_month,\n is_change_csm_extension_months,\n is_change_end_of_contract_extension_month,\n is_latest_version,\n is_core_plan,\n is_staggered_subscription,\n price_in_original_currency,\n discount_percentage,\n discount_in_original_currency,\n price_after_discount_in_original_currency,\n rate.conversion_rate,\n price_after_discount_in_original_currency/COALESCE(billing_periods.multiple,1) AS mrr_in_original_currency,\n (price_after_discount_in_original_currency/COALESCE(billing_periods.multiple,1))/rate.conversion_rate AS mrr_in_usd,\n mrr.billing_period,\n charge_model,\n list_price_base,\n DATE(version_created_at) AS version_created_date,\n SMALLINT(IF(LOWER(subscription_status) = 'expired',1,0)) AS is_expired_subscription,\n is_change_term_type,\n MAX(is_change_term_type) OVER (PARTITION BY account_id, subscription_name) AS is_subscription_change_term_type,\n LEAD(effective_start_date) OVER (PARTITION BY subscription_name, product_family, plan_name ORDER BY version) AS next_effective_start_date_per_plan,\n LEAST(DATE(COALESCE(DATE(subscription_cancelled_at),'2999-01-01')),LEAD(effective_start_date) OVER (PARTITION BY subscription_name, product_family, plan_name ORDER BY version)) AS termed_to_date,\n LEAD(effective_start_date) OVER (PARTITION BY account_id, subscription_name ORDER BY version) AS next_from_date,\n LEAD(effective_start_date) OVER (PARTITION BY account_id, subscription_name, product_family ORDER BY version,effective_start_date) AS next_from_date_per_product_family,\n LEAD(effective_start_date) OVER (PARTITION BY account_id, subscription_name, product_id ORDER BY version,effective_start_date) AS next_from_date_per_product_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM rateplan_level_mrr_calc AS mrr\n LEFT JOIN billing_periods\n ON mrr.billing_period = billing_periods.billing_period\n AND LOWER(mrr.list_price_base) = 'per billing period'\n LEFT JOIN import_conversion_rate AS rate\n ON mrr.effective_start_date >= rate.from_date\n AND mrr.effective_start_date < rate.to_date\n AND LOWER(mrr.currency) = LOWER(rate.currency_symbol)\n\n)\nSELECT *\nFROM rateplan_level_mrr_enriched", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription", "package": null, "version": null}, {"name": "analytics___finance__zuora_account", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_rateplan", "package": null, "version": null}, {"name": "analytics___finance__zuora_rateplan_charge", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_rateplan_charge_tier", "package": null, "version": null}, {"name": "analytics___finance__zuora_product", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_product_rateplan_charge", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_conversion_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__zuora_subscription", "model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___finance_stg__zuora_rateplan", "model.yoda.analytics___finance__zuora_rateplan_charge", "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier", "model.yoda.analytics___finance__zuora_product", "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge", "model.yoda.analytics___salesforce_stg__mc_conversion_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.sql", "compiled": true, "compiled_code": "-- import --\n\nWITH import_subscription AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance__zuora_subscription\n\n), \nimport_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance__zuora_account\n\n), \nimport_rateplan AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__zuora_rateplan\n\n), \nimport_rateplan_charge AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance__zuora_rateplan_charge\n\n), \nimport_rateplan_charge_tier AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge_tier\n\n), \nimport_product AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance__zuora_product\n\n), \nimport_product_rateplan_charge AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__zuora_product_rateplan_charge\n\n),\nimport_conversion_rate AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_conversion_rate\n\n),\nsubscription_filtered AS (\n\n SELECT\n account.account_id,\n account.organization_key,\n subscription.subscription_name, \n subscription.subscription_id,\n subscription.sf_opportunity_id,\n account.sf_account_id,\n subscription.version,\n subscription.created_at AS version_created_at,\n subscription.term_type,\n subscription.status AS subscription_status,\n subscription.csm_extension_months,\n subscription.end_of_contract_extension_month,\n MAX(subscription.version) OVER(PARTITION BY account.account_id,subscription.subscription_name) AS max_filtered_version,\n subscription.is_staggered_subscription,\n subscription.last_version_csm_extension_months,\n subscription.last_version_end_of_contract_extension_month,\n subscription.actual_contract_duration,\n subscription.original_contract_duration,\n subscription.cancelled_at,\n COALESCE(LAG(subscription.term_type) OVER (PARTITION BY subscription.account_id, subscription.subscription_name ORDER BY subscription.version)\n ,subscription.term_type) AS previous_term_type\n FROM import_subscription AS subscription\n INNER JOIN import_account AS account\n ON subscription.account_id = account.account_id\n WHERE subscription.is_deleted = 0\n AND subscription.is_exclude_from_dashboards = 0\n AND subscription.is_trial_subscription = 0\n AND account.is_test_account = 0\n AND account.is_deleted = 0\n\n), \nrateplan_charge_tier_filtered_enrichment AS (\n\n SELECT\n subscription.account_id,\n subscription.organization_key,\n subscription.subscription_id,\n subscription.subscription_name,\n subscription.version,\n IF(subscription.max_filtered_version = subscription.version,1,0) AS is_latest_version,\n subscription.version_created_at,\n subscription.term_type,\n subscription.subscription_status,\n subscription.sf_opportunity_id,\n subscription.sf_account_id,\n product.product_id,\n product.product_name,\n product.product_family,\n product.provisioned_package_name AS provisioned_plan_name,\n charge.rateplan_charge_name,\n charge.effective_start_date,\n charge.effective_end_date,\n subscription.cancelled_at AS subscription_cancelled_at,\n charge.product_rateplan_id,\n charge.product_rateplan_charge_id,\n rateplan.amendment_type,\n rateplan.rateplan_name,\n charge.billing_period,\n charge.charge_model,\n COALESCE(charge.apply_discount_charge_type,charge.charge_type) AS charge_type,\n charge.list_price_base,\n tier.rateplan_id,\n tier.rateplan_charge_tier_id,\n tier.rateplan_charge_id,\n tier.currency,\n tier.price_in_original_currency * COALESCE(charge.quantity,1) AS price_in_original_currency,\n tier.discount_percentage,\n IF(charge.charge_model = 'Discount-Percentage' AND tier.discount_percentage = 0,1,0) AS is_zero_discount,\n IF(subscription.previous_term_type <> subscription.term_type,1,0) AS is_change_term_type,\n subscription.actual_contract_duration,\n subscription.original_contract_duration,\n subscription.csm_extension_months,\n subscription.end_of_contract_extension_month,\n subscription.last_version_csm_extension_months,\n subscription.last_version_end_of_contract_extension_month,\n IF(subscription.csm_extension_months <> subscription.last_version_csm_extension_months,1,0) AS is_change_csm_extension_months,\n IF(subscription.end_of_contract_extension_month <> subscription.last_version_end_of_contract_extension_month,1,0) AS is_change_end_of_contract_extension_month,\n product.is_core_plan,\n subscription.is_staggered_subscription\n FROM import_rateplan_charge_tier AS tier\n INNER JOIN import_rateplan_charge AS charge\n ON tier.rateplan_charge_id = charge.tier_join_rateplan_charge_id\n AND charge.tier_join_rateplan_charge_id IS NOT NULL\n INNER JOIN import_rateplan AS rateplan\n ON charge.rateplan_id = rateplan.rateplan_id\n INNER JOIN subscription_filtered AS subscription\n ON rateplan.subscription_id = subscription.subscription_id\n INNER JOIN import_product_rateplan_charge AS product_charge\n ON charge.product_rateplan_charge_id = product_charge.product_rateplan_charge_id\n INNER JOIN import_product AS product\n ON product_charge.product_id = product.product_id\n WHERE tier.is_deleted = 0\n AND charge.is_deleted = 0\n AND rateplan.is_deleted = 0\n AND COALESCE(LOWER(rateplan.amendment_type),'') <> 'removeproduct'\n AND product_charge.is_deleted = 0\n AND product.is_deleted = 0\n), \nrateplan_level_mrr_calc AS (\n\n SELECT\n account_id,\n organization_key,\n subscription_id,\n sf_opportunity_id,\n sf_account_id,\n subscription_name,\n version,\n version_created_at,\n term_type,\n subscription_status,\n product_id,\n rateplan_id,\n rateplan_name,\n product_rateplan_id,\n product_name AS plan_name,\n provisioned_plan_name,\n product_family,\n effective_start_date,\n effective_end_date,\n subscription_cancelled_at,\n amendment_type,\n currency,\n actual_contract_duration,\n original_contract_duration,\n csm_extension_months,\n end_of_contract_extension_month,\n last_version_csm_extension_months,\n last_version_end_of_contract_extension_month,\n is_change_csm_extension_months,\n is_change_end_of_contract_extension_month,\n is_change_term_type,\n is_latest_version,\n is_core_plan,\n is_staggered_subscription,\n SUM(price_in_original_currency) AS price_in_original_currency,\n SUM(discount_percentage) AS discount_percentage,\n SUM(price_in_original_currency) * (COALESCE(SUM(discount_percentage),0))/100 AS discount_in_original_currency,\n SUM(price_in_original_currency) * (100-COALESCE(SUM(discount_percentage),0))/100 as price_after_discount_in_original_currency,\n FIRST_VALUE(IF(LOWER(charge_model) = 'per unit pricing',billing_period,NULL),TRUE) AS billing_period,\n FIRST_VALUE(IF(LOWER(charge_model) = 'per unit pricing',charge_model,NULL),TRUE) AS charge_model,\n FIRST_VALUE(IF(LOWER(charge_model) = 'per unit pricing',list_price_base,NULL),TRUE) AS list_price_base\n FROM rateplan_charge_tier_filtered_enrichment\n WHERE COALESCE(LOWER(charge_type),'') LIKE '%recurring%'\n AND is_zero_discount = 0\n AND LOWER(product_name) <> 'sms credit charges'\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34\n\n),\nbilling_periods AS (\n\n SELECT \n billing_period,\n multiple\n FROM (VALUES (\"Annual\",12), (\"Month\",1)) as (billing_period,multiple)\n\n),\nrateplan_level_mrr_enriched AS (\n\n SELECT\n account_id,\n organization_key,\n subscription_id,\n sf_opportunity_id,\n sf_account_id,\n subscription_name,\n version,\n version_created_at,\n term_type,\n subscription_status,\n product_id,\n rateplan_id,\n rateplan_name,\n product_rateplan_id,\n plan_name,\n provisioned_plan_name,\n product_family,\n effective_start_date,\n effective_end_date,\n subscription_cancelled_at,\n DATE(subscription_cancelled_at) AS subscription_cancelled_date,\n amendment_type,\n currency,\n actual_contract_duration,\n original_contract_duration,\n csm_extension_months,\n end_of_contract_extension_month,\n last_version_csm_extension_months,\n last_version_end_of_contract_extension_month,\n is_change_csm_extension_months,\n is_change_end_of_contract_extension_month,\n is_latest_version,\n is_core_plan,\n is_staggered_subscription,\n price_in_original_currency,\n discount_percentage,\n discount_in_original_currency,\n price_after_discount_in_original_currency,\n rate.conversion_rate,\n price_after_discount_in_original_currency/COALESCE(billing_periods.multiple,1) AS mrr_in_original_currency,\n (price_after_discount_in_original_currency/COALESCE(billing_periods.multiple,1))/rate.conversion_rate AS mrr_in_usd,\n mrr.billing_period,\n charge_model,\n list_price_base,\n DATE(version_created_at) AS version_created_date,\n SMALLINT(IF(LOWER(subscription_status) = 'expired',1,0)) AS is_expired_subscription,\n is_change_term_type,\n MAX(is_change_term_type) OVER (PARTITION BY account_id, subscription_name) AS is_subscription_change_term_type,\n LEAD(effective_start_date) OVER (PARTITION BY subscription_name, product_family, plan_name ORDER BY version) AS next_effective_start_date_per_plan,\n LEAST(DATE(COALESCE(DATE(subscription_cancelled_at),'2999-01-01')),LEAD(effective_start_date) OVER (PARTITION BY subscription_name, product_family, plan_name ORDER BY version)) AS termed_to_date,\n LEAD(effective_start_date) OVER (PARTITION BY account_id, subscription_name ORDER BY version) AS next_from_date,\n LEAD(effective_start_date) OVER (PARTITION BY account_id, subscription_name, product_family ORDER BY version,effective_start_date) AS next_from_date_per_product_family,\n LEAD(effective_start_date) OVER (PARTITION BY account_id, subscription_name, product_id ORDER BY version,effective_start_date) AS next_from_date_per_product_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM rateplan_level_mrr_calc AS mrr\n LEFT JOIN billing_periods\n ON mrr.billing_period = billing_periods.billing_period\n AND LOWER(mrr.list_price_base) = 'per billing period'\n LEFT JOIN import_conversion_rate AS rate\n ON mrr.effective_start_date >= rate.from_date\n AND mrr.effective_start_date < rate.to_date\n AND LOWER(mrr.currency) = LOWER(rate.currency_symbol)\n\n)\nSELECT *\nFROM rateplan_level_mrr_enriched", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__sf_opportunity_free_month_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__sf_opportunity_free_month_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.sql", "unique_id": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "analytics___finance__sf_opportunity_free_month_over_time"], "alias": "analytics___finance__sf_opportunity_free_month_over_time", "checksum": {"name": "sha256", "checksum": "3b1c1f0e69716f879b031f4d4e3d1a4329bbca9d36fd2606be9df97f8196b529"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "This table shows the amount of free months that was given to an account under a specific opportunity over time.\nPK: {opportunity_id,\n field_name,\n from_date}\nThere are two kinds of free months:\n 1. CSM\n 2. Sales\nOpportunity can get free months from both CSM & Sales, only one of them or none at all,\neither way, every opportunity have at least one record for each type, if the opportunity was never assosiated with a type of free months,\nit will still get a record for that type with the value of zero.", "columns": {"sf_event_id": {"name": "sf_event_id", "description": "FK: analytics___salesforce_stg__mc_opportunity_field_history", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "field_name": {"name": "field_name", "description": "The field name in SF\nCan get two values:\n 1. \"Retention_CSM_Free_Months__c\" - For CSM free months\n 2. \"End_Of_Contract_Extension_Month__c\" - For Sales free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_date": {"name": "from_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "from_month": {"name": "from_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_month": {"name": "to_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "field_value": {"name": "field_value", "description": "The amount of free months that corresponeds to the opportunity, field and date range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_type": {"name": "event_type", "description": "The type of the event the record was based on.\nCan get two values:\n 1. \"SF Event\" - Where the event is taken from \"analytics___salesforce_stg__mc_opportunity_field_history\"\n 2. \"Artificial initial free months event\" - Where the event was created from \"analytics___finance__zuora_subscription\"\n\nThe artificial events were necessary because SF does not always trigger events for the initial value so we are taking the\nvalue from the corresponding Zuora subscription's first version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_csm_free_months": {"name": "is_csm_free_months", "description": "Indicates if the field_name = \"Retention_CSM_Free_Months__c\"", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sales_free_months": {"name": "is_sales_free_months", "description": "Indicates if the field_name = \"End_Of_Contract_Extension_Month__c\"", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sf_event": {"name": "is_sf_event", "description": "Indicates if the event_type = \"SF Event\"", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082637.3840282, "relation_name": "dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time", "raw_code": "-- Imports --\n\nWITH import_opp_field_history AS (\nSELECT * FROM {{ ref('analytics___salesforce_stg__mc_opportunity_field_history') }}\n),\n\nimport_zuora_subscription AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_subscription') }}\n),\n\n-- Logic --\n\nopportunity_sf_events_free_months AS (\nSELECT \n sf_event_id,\n opportunity_id,\n created_by_sf_user_id,\n field_name,\n IFNULL(old_value,0) AS old_value,\n IFNULL(new_value,0) AS new_value,\n created_at,\n created_date,\n \"SF event\" AS event_type\nFROM import_opp_field_history\nWHERE LOWER(field_name) IN('retention_csm_free_months__c','end_of_contract_extension_month__c')\n AND is_deleted = 0\n),\n\nopportunity_initial_csm_free_months AS (\nSELECT \n NULL AS sf_event_id,\n sf_opportunity_id AS opportunity_id,\n NULL AS created_by_sf_user_id,\n 'Retention_CSM_Free_Months__c' AS field_name,\n 0 AS old_value,\n MIN(csm_extension_months) AS new_value,\n MIN(LEAST(subscription_start_at,created_at)) AS created_at, -- conservative approach\n DATE(min(LEAST(subscription_start_at,created_at))) AS created_date, -- conservative approach\n \"Artificial initial free months event\" AS event_type\nFROM import_zuora_subscription\nWHERE version = 1 \n AND sf_opportunity_id IS NOT NULL\nGROUP BY 2\n),\n\nopportunity_initial_sales_free_months AS (\nSELECT \n NULL AS sf_event_id,\n sf_opportunity_id AS opportunity_id,\n NULL AS created_by_sf_user_id,\n 'End_Of_Contract_Extension_Month__c' AS field_name,\n 0 AS old_value,\n MIN(end_of_contract_extension_month) AS new_value,\n MIN(LEAST(subscription_start_at,created_at)) AS created_at, -- conservative approach\n DATE(MIN(LEAST(subscription_start_at,created_at))) AS created_date, -- conservative approach\n \"Artificial initial free months event\" AS event_type\nFROM import_zuora_subscription\nWHERE version = 1 AND\n sf_opportunity_id IS NOT NULL\nGROUP BY 2\n),\n\nopportunity_free_months_union AS (\nSELECT * FROM opportunity_sf_events_free_months\nUNION ALL\nSELECT * FROM opportunity_initial_csm_free_months\nUNION ALL\nSELECT * FROM opportunity_initial_sales_free_months\n),\n\nopportunity_free_months_first_event_at AS (\nSELECT \n sf_event_id,\n opportunity_id,\n created_by_sf_user_id,\n field_name,\n old_value,\n new_value,\n created_at,\n created_date,\n event_type,\n MIN(created_at) OVER(PARTITION BY opportunity_id) AS first_event_at\nFROM opportunity_free_months_union\n),\n\nopportunity_free_months_events AS (\nSELECT \n *,\n MAX(created_at) OVER(PARTITION BY opportunity_id,field_name,created_date) AS last_daily_event_at -- can't be calculated before the exclusion\nFROM opportunity_free_months_first_event_at\nWHERE NOT(\n event_type = 'Artificial initial free months event' \n AND created_at <> first_event_at\n ) -- excluding cases where the artificial initial events are not really initial\n),\n\nopportunity_free_months_events_daily AS (\nSELECT \n *,\n LEAD(created_date) OVER(PARTITION BY opportunity_id,field_name ORDER BY created_date) AS lead_created_date,\n LAG(new_value) OVER(PARTITION BY opportunity_id,field_name ORDER BY created_date) AS lag_new_value\nFROM opportunity_free_months_events\nWHERE created_at = last_daily_event_at\n),\n\nopportunity_free_months_over_time AS (\nSELECT \n sf_event_id,\n opportunity_id,\n created_by_sf_user_id,\n field_name,\n created_date AS from_date,\n DATE(COALESCE(lead_created_date,'2999-01-01')) AS to_date,\n TRUNC(created_date,'MONTH') AS from_month,\n TRUNC(COALESCE(lead_created_date,'2999-01-01'),'MONTH') AS to_month,\n new_value AS field_value,\n event_type,\n SMALLINT(IF(LOWER(field_name) = 'retention_csm_free_months__c',1,0)) AS is_csm_free_months,\n SMALLINT(IF(LOWER(field_name) = 'end_of_contract_extension_month__c',1,0)) AS is_sales_free_months,\n SMALLINT(IF(event_type = 'SF event',1,0)) AS is_sf_event,\n CURRENT_TIMESTAMP AS dwh_updated_at\n\nFROM opportunity_free_months_events_daily\nORDER BY 1,2,3\n)\n\n\nSELECT *\nFROM opportunity_free_months_over_time", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_opportunity_field_history", "package": null, "version": null}, {"name": "analytics___finance__zuora_subscription", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_opportunity_field_history", "model.yoda.analytics___finance__zuora_subscription"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.sql", "compiled": true, "compiled_code": "-- Imports --\n\nWITH import_opp_field_history AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_opportunity_field_history\n),\n\nimport_zuora_subscription AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_subscription\n),\n\n-- Logic --\n\nopportunity_sf_events_free_months AS (\nSELECT \n sf_event_id,\n opportunity_id,\n created_by_sf_user_id,\n field_name,\n IFNULL(old_value,0) AS old_value,\n IFNULL(new_value,0) AS new_value,\n created_at,\n created_date,\n \"SF event\" AS event_type\nFROM import_opp_field_history\nWHERE LOWER(field_name) IN('retention_csm_free_months__c','end_of_contract_extension_month__c')\n AND is_deleted = 0\n),\n\nopportunity_initial_csm_free_months AS (\nSELECT \n NULL AS sf_event_id,\n sf_opportunity_id AS opportunity_id,\n NULL AS created_by_sf_user_id,\n 'Retention_CSM_Free_Months__c' AS field_name,\n 0 AS old_value,\n MIN(csm_extension_months) AS new_value,\n MIN(LEAST(subscription_start_at,created_at)) AS created_at, -- conservative approach\n DATE(min(LEAST(subscription_start_at,created_at))) AS created_date, -- conservative approach\n \"Artificial initial free months event\" AS event_type\nFROM import_zuora_subscription\nWHERE version = 1 \n AND sf_opportunity_id IS NOT NULL\nGROUP BY 2\n),\n\nopportunity_initial_sales_free_months AS (\nSELECT \n NULL AS sf_event_id,\n sf_opportunity_id AS opportunity_id,\n NULL AS created_by_sf_user_id,\n 'End_Of_Contract_Extension_Month__c' AS field_name,\n 0 AS old_value,\n MIN(end_of_contract_extension_month) AS new_value,\n MIN(LEAST(subscription_start_at,created_at)) AS created_at, -- conservative approach\n DATE(MIN(LEAST(subscription_start_at,created_at))) AS created_date, -- conservative approach\n \"Artificial initial free months event\" AS event_type\nFROM import_zuora_subscription\nWHERE version = 1 AND\n sf_opportunity_id IS NOT NULL\nGROUP BY 2\n),\n\nopportunity_free_months_union AS (\nSELECT * FROM opportunity_sf_events_free_months\nUNION ALL\nSELECT * FROM opportunity_initial_csm_free_months\nUNION ALL\nSELECT * FROM opportunity_initial_sales_free_months\n),\n\nopportunity_free_months_first_event_at AS (\nSELECT \n sf_event_id,\n opportunity_id,\n created_by_sf_user_id,\n field_name,\n old_value,\n new_value,\n created_at,\n created_date,\n event_type,\n MIN(created_at) OVER(PARTITION BY opportunity_id) AS first_event_at\nFROM opportunity_free_months_union\n),\n\nopportunity_free_months_events AS (\nSELECT \n *,\n MAX(created_at) OVER(PARTITION BY opportunity_id,field_name,created_date) AS last_daily_event_at -- can't be calculated before the exclusion\nFROM opportunity_free_months_first_event_at\nWHERE NOT(\n event_type = 'Artificial initial free months event' \n AND created_at <> first_event_at\n ) -- excluding cases where the artificial initial events are not really initial\n),\n\nopportunity_free_months_events_daily AS (\nSELECT \n *,\n LEAD(created_date) OVER(PARTITION BY opportunity_id,field_name ORDER BY created_date) AS lead_created_date,\n LAG(new_value) OVER(PARTITION BY opportunity_id,field_name ORDER BY created_date) AS lag_new_value\nFROM opportunity_free_months_events\nWHERE created_at = last_daily_event_at\n),\n\nopportunity_free_months_over_time AS (\nSELECT \n sf_event_id,\n opportunity_id,\n created_by_sf_user_id,\n field_name,\n created_date AS from_date,\n DATE(COALESCE(lead_created_date,'2999-01-01')) AS to_date,\n TRUNC(created_date,'MONTH') AS from_month,\n TRUNC(COALESCE(lead_created_date,'2999-01-01'),'MONTH') AS to_month,\n new_value AS field_value,\n event_type,\n SMALLINT(IF(LOWER(field_name) = 'retention_csm_free_months__c',1,0)) AS is_csm_free_months,\n SMALLINT(IF(LOWER(field_name) = 'end_of_contract_extension_month__c',1,0)) AS is_sales_free_months,\n SMALLINT(IF(event_type = 'SF event',1,0)) AS is_sf_event,\n CURRENT_TIMESTAMP AS dwh_updated_at\n\nFROM opportunity_free_months_events_daily\nORDER BY 1,2,3\n)\n\n\nSELECT *\nFROM opportunity_free_months_over_time", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_event", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_event", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_event", "analytics___finance__shopify_billing_event"], "alias": "analytics___finance__shopify_billing_event", "checksum": {"name": "sha256", "checksum": "e0f2f16330ed94d00780ed1292622d41fbe8b5f9daa030958d392fda5916d966"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [shopify_shop_id, charge_id, event_type, product_family, created_at]\nModeled table of shopify billing events.\nThe table contains events on actions related to shopify stores and yotpo's apps (products).\nThe table exclude test stores based on the is_test field from analytics___platform__store", "columns": {"shopify_shop_id": {"name": "shopify_shop_id", "description": "unique store identifier from shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_name": {"name": "shop_name", "description": "shop name in shopify. multiple name per shop_id since shop owner can change shop name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_domain": {"name": "shopify_domain", "description": "shop domain in shopify. multiple domains per shop_id since shop owner can change shop domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "internal id for product family", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_family": {"name": "product_family", "description": "comtains: UGC,SMS,Loyalty,Subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_id": {"name": "charge_id", "description": "shopify generated charge_id similar to zuora subscription_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charge_name": {"name": "charge_name", "description": "shopify charge name (DO NOT RELY for plan name)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_type": {"name": "event_type", "description": "category + action", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_category": {"name": "event_category", "description": "USAGE_CHARGE|SUBSCRIPTION_CHARGE|ONE_TIME_CHARGE|RELATIONSHIP|CREDIT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_action": {"name": "event_action", "description": "action of the event category (i.e DECLINED, ACTIVATED, UNFROZEN, ACCEPTED)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "amount = revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "created_at": {"name": "created_at", "description": "event created at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "event created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_active_unfrozen": {"name": "is_active_unfrozen", "description": "event_action LIKE '%ACTIVATED%' OR event_action LIKE '%UNFROZEN%'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_cancel_frozen": {"name": "is_cancel_frozen", "description": "event_action LIKE '%CANCELED%' OR event_action LIKE '%FROZEN%'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscription_charge": {"name": "is_subscription_charge", "description": "indicator = 1 when event_category = 'SUBSCRIPTION_CHARGE'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_usage": {"name": "is_usage", "description": "indicator = 1 when event_category = 'USAGE_CHARGE'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "indicatore = 1 if app_id = 4818605 (product_family = Subscriptions)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc": {"name": "is_ugc", "description": "indicatore = 1 if app_id = 70132 (product can be Reviews or VMS or both)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "indicatore = 1 if app_id = 740217 (product_family can be SMS or Email or both)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "indicatore = 1 if app_id = 902876 (product_family = Loyalty)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_none_app_key": {"name": "is_none_app_key", "description": "Indicates if none app key was found for the shopify shop id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_single_app_key": {"name": "is_single_app_key", "description": "indicates if exactly 1 app key was found", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_multiple_app_key": {"name": "is_multiple_app_key", "description": "indicates if more than 1 app keys were found", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "app_key_cnt": {"name": "app_key_cnt", "description": "Count of app keys (will be more than 1 in case multiple app keys were found per the shopify shop id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key_array": {"name": "app_key_array", "description": "Array of app keys (will contain more than 1 in case multiple app keys were found per the shopify shop id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082637.4882119, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_event", "raw_code": "-- Import --\n\nWITH import_shopify_store_mapping AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_store_mapping') }}\n),\n\nimport_shopify_billing_event AS (\nSELECT * FROM {{ ref('analytics___finance_stg__shopify_billing_event') }}\n),\n\nimport_platform_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_store_platform_account AS (\nSELECT * FROM {{ ref('analytics___platform__store_platform_account') }}\n),\n\n-- Logic --\n\ntest_stores AS (\nSELECT\n platform.platform_account_id AS shopify_shop_id,\n MAX(store.is_test) AS is_test\nFROM import_platform_store AS store\nINNER JOIN import_store_platform_account AS platform\n ON platform.store_id = store.store_id\nWHERE LOWER(platform.platform_name) = 'shopify'\n AND platform.platform_account_id IS NOT NULL\nGROUP BY 1\nHAVING MAX(store.is_test) = 1\n),\n\nshopify_billing_event AS (\nSELECT\n shopify.shop_id AS shopify_shop_id,\n shopify.shop_name,\n shopify.shopify_domain,\n mapping.app_key,\n mapping.organization_key,\n shopify.app_id,\n shopify.product_family,\n shopify.charge_id,\n shopify.charge_name,\n shopify.event_type,\n shopify.event_category,\n shopify.event_action,\n shopify.amount,\n shopify.created_at,\n shopify.created_date,\n shopify.is_active_unfrozen,\n shopify.is_cancel_frozen,\n shopify.is_subscription_charge,\n shopify.is_usage,\n shopify.is_subscriptions,\n shopify.is_ugc,\n shopify.is_sms,\n shopify.is_loyalty,\n SMALLINT(IF(mapping.shopify_shop_id IS NULL,1,0)) AS is_none_app_key,\n SMALLINT(IFNULL(mapping.is_single_app_key,0)) AS is_single_app_key,\n SMALLINT(IFNULL(mapping.is_multiple_app_key,0)) AS is_multiple_app_key,\n IFNULL(mapping.app_key_cnt,0) AS app_key_cnt,\n mapping.app_key_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_shopify_billing_event AS shopify\nLEFT JOIN import_shopify_store_mapping AS mapping\n ON shopify.shop_id = mapping.shopify_shop_id\nLEFT JOIN test_stores AS test\n ON shopify.shop_id = test.shopify_shop_id\nWHERE NVL(test.is_test,0) = 0\n)\n\nSELECT * \nFROM shopify_billing_event", "language": "sql", "refs": [{"name": "analytics___finance__shopify_store_mapping", "package": null, "version": null}, {"name": "analytics___finance_stg__shopify_billing_event", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__store_platform_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_store_mapping", "model.yoda.analytics___finance_stg__shopify_billing_event", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_platform_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_shopify_store_mapping AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_store_mapping\n),\n\nimport_shopify_billing_event AS (\nSELECT * FROM dev_dkruh1.analytics___finance_stg__shopify_billing_event\n),\n\nimport_platform_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_store_platform_account AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_platform_account\n),\n\n-- Logic --\n\ntest_stores AS (\nSELECT\n platform.platform_account_id AS shopify_shop_id,\n MAX(store.is_test) AS is_test\nFROM import_platform_store AS store\nINNER JOIN import_store_platform_account AS platform\n ON platform.store_id = store.store_id\nWHERE LOWER(platform.platform_name) = 'shopify'\n AND platform.platform_account_id IS NOT NULL\nGROUP BY 1\nHAVING MAX(store.is_test) = 1\n),\n\nshopify_billing_event AS (\nSELECT\n shopify.shop_id AS shopify_shop_id,\n shopify.shop_name,\n shopify.shopify_domain,\n mapping.app_key,\n mapping.organization_key,\n shopify.app_id,\n shopify.product_family,\n shopify.charge_id,\n shopify.charge_name,\n shopify.event_type,\n shopify.event_category,\n shopify.event_action,\n shopify.amount,\n shopify.created_at,\n shopify.created_date,\n shopify.is_active_unfrozen,\n shopify.is_cancel_frozen,\n shopify.is_subscription_charge,\n shopify.is_usage,\n shopify.is_subscriptions,\n shopify.is_ugc,\n shopify.is_sms,\n shopify.is_loyalty,\n SMALLINT(IF(mapping.shopify_shop_id IS NULL,1,0)) AS is_none_app_key,\n SMALLINT(IFNULL(mapping.is_single_app_key,0)) AS is_single_app_key,\n SMALLINT(IFNULL(mapping.is_multiple_app_key,0)) AS is_multiple_app_key,\n IFNULL(mapping.app_key_cnt,0) AS app_key_cnt,\n mapping.app_key_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_shopify_billing_event AS shopify\nLEFT JOIN import_shopify_store_mapping AS mapping\n ON shopify.shop_id = mapping.shopify_shop_id\nLEFT JOIN test_stores AS test\n ON shopify.shop_id = test.shopify_shop_id\nWHERE NVL(test.is_test,0) = 0\n)\n\nSELECT * \nFROM shopify_billing_event", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_organization_product_mrr_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_daily", "analytics___finance__shopify_billing_organization_product_mrr_daily"], "alias": "analytics___finance__shopify_billing_organization_product_mrr_daily", "checksum": {"name": "sha256", "checksum": "48e1e4a8277f0f607af783313671916cbc36f8d0a99e64fa011bbf89911a6ffb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["mrr_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled table of organiztion product family mrr based on shopify billing events at a daily level | PK and granularity: mrr_date, product_family, organization_key", "columns": {"mrr_date": {"name": "mrr_date", "description": "mrr date - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_family": {"name": "product_family", "description": "product family: UGC, Loyalty, SMS, Subscriptions - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "generated app identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key_array": {"name": "app_key_array", "description": "array of yotpo store unique identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "shopify_shop_id_array": {"name": "shopify_shop_id_array", "description": "array of shopify generated shop identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "plan_id_array": {"name": "plan_id_array", "description": "array of all plan identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "plan_name_array": {"name": "plan_name_array", "description": "array of all plan names", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sms_plan_id_array": {"name": "sms_plan_id_array", "description": "array of all sms plan identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "loyalty_plan_id_array": {"name": "loyalty_plan_id_array", "description": "array of all loyalty plan identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "ugc_plan_name_array": {"name": "ugc_plan_name_array", "description": "array of all the store's ugc (Reviews & VMS) plans", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sms_plan_name_array": {"name": "sms_plan_name_array", "description": "array of all the store's sms (SMS & Email) plans", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "charge_id_array": {"name": "charge_id_array", "description": "array of all charge identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "charge_name_array": {"name": "charge_name_array", "description": "array of all charge names", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "plan_name_cnt": {"name": "plan_name_cnt", "description": "number of plan names", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charge_id_cnt": {"name": "charge_id_cnt", "description": "number of charge identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_deactivated": {"name": "is_at_least_one_store_deactivated", "description": "at least one deactivated store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_uninstalled": {"name": "is_at_least_one_store_uninstalled", "description": "at least one uninstalled store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_self_service": {"name": "is_at_least_one_store_self_service", "description": "at least one self service store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_free": {"name": "is_at_least_one_store_free", "description": "at least one free store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_full_service": {"name": "is_at_least_one_store_full_service", "description": "at least one full service store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_ugc_multi_product": {"name": "is_at_least_one_store_ugc_multi_product", "description": "at least one ugc multi product store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_sms_multi_product": {"name": "is_at_least_one_store_sms_multi_product", "description": "at least one sms multi product store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_ugc": {"name": "is_at_least_one_store_ugc", "description": "at least one ugcs store indicator: 0/1 (UGC can be Reviews or VMS or both)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_loyalty": {"name": "is_at_least_one_store_loyalty", "description": "at least one loyalty store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_subscriptions": {"name": "is_at_least_one_store_subscriptions", "description": "at least one subscriptions store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_sms": {"name": "is_at_least_one_store_sms", "description": "at least one sms store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "original_mrr_in_usd": {"name": "original_mrr_in_usd", "description": "Monthly Recurring Revenue in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mrr_in_usd": {"name": "mrr_in_usd", "description": "Monthly Recurring Revenue in usd which doesn't include deactivated stores", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscription_start_date": {"name": "subscription_start_date", "description": "MIN of all the stores the subscription start date.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_end_date": {"name": "subscription_end_date", "description": "MAX of all the stores subscription end date.\nFor active subscriptions the value will be '2999-01-01'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "paying_app_key_array": {"name": "paying_app_key_array", "description": "array of paying stores under the organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "paying_app_key_cnt": {"name": "paying_app_key_cnt", "description": "count of paying stores under the organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "table", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "partition_by": ["mrr_date"]}, "created_at": 1700082637.5749087, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_daily", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('table', 'view'),\n partition_by = ['mrr_date']\n )\n}}\n\n-- Import --\n\nWITH import_shopify_billing_store_product_mrr_daily AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_store_product_mrr_daily') }}\n{% if is_incremental() %}\nWHERE mrr_date >= DATE_SUB(DATE(CURRENT_DATE),14)\n{% endif %}\n{% if target.name == 'dev' %}\nWHERE mrr_date >= DATE_SUB(DATE(CURRENT_DATE),7)\n{% endif %}\n),\n\n-- Logic --\n\nshopify_billing_organization_product_mrr_daily_res AS (\nSELECT\n mrr_date,\n product_family,\n organization_key,\n app_id,\n ARRAY_SORT(COLLECT_SET(app_key)) AS app_key_array,\n ARRAY_SORT(COLLECT_SET(shopify_shop_id)) AS shopify_shop_id_array,\n ARRAY_SORT(COLLECT_SET(plan_id)) AS plan_id_array,\n ARRAY_SORT(COLLECT_SET(plan_name)) AS plan_name_array,\n ARRAY_SORT(COLLECT_SET(sms_plan_id)) AS sms_plan_id_array,\n ARRAY_SORT(COLLECT_SET(loyalty_plan_id)) AS loyalty_plan_id_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(ugc_plan_name_array)))) AS ugc_plan_name_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(sms_plan_name_array)))) AS sms_plan_name_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(charge_id_array)))) AS charge_id_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(charge_name_array)))) AS charge_name_array,\n COUNT(DISTINCT plan_name) AS plan_name_cnt,\n SMALLINT(SIZE(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(charge_name_array))))) AS charge_id_cnt,\n MAX(is_deactivated) AS is_at_least_one_store_deactivated,\n MAX(is_uninstalled) AS is_at_least_one_store_uninstalled,\n MAX(is_self_service) AS is_at_least_one_store_self_service,\n MAX(is_free) AS is_at_least_one_store_free,\n MAX(is_full_service) AS is_at_least_one_store_full_service,\n MAX(is_ugc_multi_product) AS is_at_least_one_store_ugc_multi_product,\n MAX(is_sms_multi_product) AS is_at_least_one_store_sms_multi_product,\n MAX(is_ugc) AS is_at_least_one_store_ugc,\n MAX(is_loyalty) AS is_at_least_one_store_loyalty,\n MAX(is_subscriptions) AS is_at_least_one_store_subscriptions,\n MAX(is_sms) AS is_at_least_one_store_sms,\n SUM(original_mrr_in_usd) AS original_mrr_in_usd,\n SUM(mrr_in_usd) AS mrr_in_usd,\n MIN(subscription_start_date) AS subscription_start_date,\n MAX(subscription_end_date) AS subscription_end_date,\n SORT_ARRAY(COLLECT_SET(IF(mrr_in_usd > 0,app_key,NULL))) AS paying_app_key_array,\n COUNT(DISTINCT IF(mrr_in_usd > 0,app_key,NULL)) AS paying_app_key_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_shopify_billing_store_product_mrr_daily\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2,3,4\n)\n\n-- Result --\n\nSELECT *\nFROM shopify_billing_organization_product_mrr_daily_res", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_shopify_billing_store_product_mrr_daily AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_daily\n\n\nWHERE mrr_date >= DATE_SUB(DATE(CURRENT_DATE),7)\n\n),\n\n-- Logic --\n\nshopify_billing_organization_product_mrr_daily_res AS (\nSELECT\n mrr_date,\n product_family,\n organization_key,\n app_id,\n ARRAY_SORT(COLLECT_SET(app_key)) AS app_key_array,\n ARRAY_SORT(COLLECT_SET(shopify_shop_id)) AS shopify_shop_id_array,\n ARRAY_SORT(COLLECT_SET(plan_id)) AS plan_id_array,\n ARRAY_SORT(COLLECT_SET(plan_name)) AS plan_name_array,\n ARRAY_SORT(COLLECT_SET(sms_plan_id)) AS sms_plan_id_array,\n ARRAY_SORT(COLLECT_SET(loyalty_plan_id)) AS loyalty_plan_id_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(ugc_plan_name_array)))) AS ugc_plan_name_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(sms_plan_name_array)))) AS sms_plan_name_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(charge_id_array)))) AS charge_id_array,\n ARRAY_SORT(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(charge_name_array)))) AS charge_name_array,\n COUNT(DISTINCT plan_name) AS plan_name_cnt,\n SMALLINT(SIZE(ARRAY_DISTINCT(FLATTEN(COLLECT_SET(charge_name_array))))) AS charge_id_cnt,\n MAX(is_deactivated) AS is_at_least_one_store_deactivated,\n MAX(is_uninstalled) AS is_at_least_one_store_uninstalled,\n MAX(is_self_service) AS is_at_least_one_store_self_service,\n MAX(is_free) AS is_at_least_one_store_free,\n MAX(is_full_service) AS is_at_least_one_store_full_service,\n MAX(is_ugc_multi_product) AS is_at_least_one_store_ugc_multi_product,\n MAX(is_sms_multi_product) AS is_at_least_one_store_sms_multi_product,\n MAX(is_ugc) AS is_at_least_one_store_ugc,\n MAX(is_loyalty) AS is_at_least_one_store_loyalty,\n MAX(is_subscriptions) AS is_at_least_one_store_subscriptions,\n MAX(is_sms) AS is_at_least_one_store_sms,\n SUM(original_mrr_in_usd) AS original_mrr_in_usd,\n SUM(mrr_in_usd) AS mrr_in_usd,\n MIN(subscription_start_date) AS subscription_start_date,\n MAX(subscription_end_date) AS subscription_end_date,\n SORT_ARRAY(COLLECT_SET(IF(mrr_in_usd > 0,app_key,NULL))) AS paying_app_key_array,\n COUNT(DISTINCT IF(mrr_in_usd > 0,app_key,NULL)) AS paying_app_key_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_shopify_billing_store_product_mrr_daily\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2,3,4\n)\n\n-- Result --\n\nSELECT *\nFROM shopify_billing_organization_product_mrr_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_monthly", "analytics___finance__shopify_billing_organization_product_mrr_monthly"], "alias": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "checksum": {"name": "sha256", "checksum": "99b7f8ee2f155752f102041a1b722d946bb5ae297a646ceeb122f917f6d92fcc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled table of organiztion product family mrr based on shopify billing events at a monthly level | PK and granularity: mrr_month, product_family, organization_key", "columns": {"mrr_month": {"name": "mrr_month", "description": "mrr month - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_family": {"name": "product_family", "description": "product family: UGC, Loyalty, SMS, Subscriptions - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_product_month_id": {"name": "organization_product_month_id", "description": "TABLE PK: combination of month|organization_key|product_family_group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_main_plan_name": {"name": "opening_main_plan_name", "description": "closing_main_plan_name of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_main_plan_name": {"name": "closing_main_plan_name", "description": "indicator = 1 when closing_main_plan_name main_plan_name chosen by highest mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_main_charge_name": {"name": "opening_main_charge_name", "description": "closing_main_charge_name of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_main_charge_name": {"name": "closing_main_charge_name", "description": "indicator = 1 when closing_main_charge_name main_charge_name chosen by highest mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_is_main_plan_self_service": {"name": "opening_is_main_plan_self_service", "description": "closing_is_main_plan_self_service of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_main_plan_self_service": {"name": "closing_is_main_plan_self_service", "description": "indicator = 1 when closing_main_plan is_self_service = 1 main_plan chosen by highest mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_main_plan_free": {"name": "opening_is_main_plan_free", "description": "closing_is_main_plan_free of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_main_plan_free": {"name": "closing_is_main_plan_free", "description": "indicator = 1 when closing_main_plan is_free = 1 main_plan chosen by higests mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_main_plan_full_service": {"name": "opening_is_main_plan_full_service", "description": "closing_is_main_plan_full_service of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_main_plan_full_service": {"name": "closing_is_main_plan_full_service", "description": "indicator = 1 when closing_main_plan is_full_service = 1 main_plan chosen by highest mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_main_plan_name": {"name": "within_month_main_plan_name", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_main_plan_name = plan_name of the main_plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_main_charge_name": {"name": "within_month_main_charge_name", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_main_charge_name = charge_name of the main_plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_is_main_plan_self_service": {"name": "within_month_is_main_plan_self_service", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_self_service = is_self_service of the main_plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_main_plan_free": {"name": "within_month_is_main_plan_free", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_free = is_free of the main_plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_main_plan_full_service": {"name": "within_month_is_main_plan_full_service", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_full_service = is_full_service of the main_plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_terminated_subscription_within_first_month": {"name": "is_terminated_subscription_within_first_month", "description": "indicator = 1 organization started and ended charge in the same month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_terminated_subscription": {"name": "is_terminated_subscription", "description": "indicator = 1 organization started month with positive mrr and finishes with 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_at_least_one_store_deactivated": {"name": "is_at_least_one_store_deactivated", "description": "at least one deactivated store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_uninstalled": {"name": "is_at_least_one_store_uninstalled", "description": "at least one uninstalled store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_full_service": {"name": "is_at_least_one_store_full_service", "description": "at least one full service store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_self_service": {"name": "is_at_least_one_store_self_service", "description": "at least one self service store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_at_least_one_store_free": {"name": "is_at_least_one_store_free", "description": "at least one free store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_original_mrr_in_usd": {"name": "opening_original_mrr_in_usd", "description": "closing_original_mrr_in_usd of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_original_mrr_in_usd": {"name": "closing_original_mrr_in_usd", "description": "sum of all stores end of month original_mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "within_month_original_mrr_in_usd": {"name": "within_month_original_mrr_in_usd", "description": "original_mrr_in_usd sum of all organization's stores that had charges that started and ended in the same month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "adjusted_revenue_in_usd": {"name": "adjusted_revenue_in_usd", "description": "sum of all stores adjusted revenue (if an organization had an opening or a closing mrr within_month adjusted revenue will not be counted)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_mrr_in_usd": {"name": "opening_mrr_in_usd", "description": "closing_mrr_in_usd of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_mrr_in_usd": {"name": "closing_mrr_in_usd", "description": "sum of all stores end of month mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "within_month_mrr_in_usd": {"name": "within_month_mrr_in_usd", "description": "mrr_in_usd sum of all organization's stores that had charges that started and ended in the same month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscription_start_date": {"name": "subscription_start_date", "description": "MIN of all the stores the subscription start date.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_end_date": {"name": "subscription_end_date", "description": "MAX of all the stores subscription end date.\nFor active subscriptions the value will be '2999-01-01'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opening_paying_app_key_array": {"name": "opening_paying_app_key_array", "description": "array of paying stores under the organization at the begining of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "closing_paying_app_key_array": {"name": "closing_paying_app_key_array", "description": "array of paying stores under the organization at the end of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "opening_paying_app_key_cnt": {"name": "opening_paying_app_key_cnt", "description": "count of paying stores under the organization at the begining of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "closing_paying_app_key_cnt": {"name": "closing_paying_app_key_cnt", "description": "count of paying stores under the organization at the end of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charge_id_array": {"name": "charge_id_array", "description": "array of all charge identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082637.6448836, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_monthly", "raw_code": "-- Import --\n\nWITH import_shopify_billing_store_product_mrr_monthly AS (\nSELECT * \nFROM {{ ref('analytics___finance__shopify_billing_store_product_mrr_monthly') }}\n{% if target.name == 'dev' %}\nWHERE mrr_month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 10\n{% endif %}\n),\n\n-- Logic --\n\norganization_product_mrr_monthly AS (\nSELECT\n mrr_month,\n product_family,\n organization_key,\n SHA2(CONCAT(mrr_month,organization_key,product_family),256) AS organization_product_month_id,\n FIRST(IF(opening_is_main_organization_plan = 1,opening_plan_name,NULL),TRUE) AS opening_main_plan_name,\n FIRST(IF(closing_is_main_organization_plan = 1,closing_plan_name,NULL),TRUE) AS closing_main_plan_name,\n FIRST(IF(opening_is_main_organization_plan = 1,opening_charge_name,NULL),TRUE) AS opening_main_charge_name,\n FIRST(IF(closing_is_main_organization_plan = 1,closing_charge_name,NULL),TRUE) AS closing_main_charge_name,\n FIRST(IF(opening_is_main_organization_plan = 1,opening_is_self_service,NULL),TRUE) AS opening_is_main_plan_self_service,\n FIRST(IF(closing_is_main_organization_plan = 1,closing_is_self_service,NULL),TRUE) AS closing_is_main_plan_self_service,\n FIRST(IF(opening_is_main_organization_plan = 1,opening_is_free,NULL),TRUE) AS opening_is_main_plan_free,\n FIRST(IF(closing_is_main_organization_plan = 1,closing_is_free,NULL),TRUE) AS closing_is_main_plan_free,\n FIRST(IF(opening_is_main_organization_plan = 1,opening_is_full_service,NULL),TRUE) AS opening_is_main_plan_full_service,\n FIRST(IF(closing_is_main_organization_plan = 1,closing_is_full_service,NULL),TRUE) AS closing_is_main_plan_full_service,\n FIRST(IF(within_month_is_main_organization_plan = 1,within_month_plan_name,NULL),TRUE) AS within_month_main_plan_name,\n FIRST(IF(within_month_is_main_organization_plan = 1,within_month_charge_name,NULL),TRUE) AS within_month_main_charge_name,\n FIRST(IF(within_month_is_main_organization_plan = 1,within_month_is_self_service,NULL),TRUE) AS within_month_is_main_plan_self_service,\n FIRST(IF(within_month_is_main_organization_plan = 1,within_month_is_free,NULL),TRUE) AS within_month_is_main_plan_free,\n FIRST(IF(within_month_is_main_organization_plan = 1,within_month_is_full_service,NULL),TRUE) AS within_month_is_main_plan_full_service,\n MIN(is_org_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n IF(SUM(NVL(opening_mrr_in_usd,0)) > 0 AND SUM(NVL(closing_mrr_in_usd,0)) = 0,1,0) AS is_terminated_subscription,\n MAX(COALESCE(closing_is_deactivated,opening_is_deactivated,within_month_is_deactivated)) AS is_at_least_one_store_deactivated,\n MAX(COALESCE(closing_is_uninstalled,opening_is_uninstalled,within_month_is_uninstalled)) AS is_at_least_one_store_uninstalled,\n MAX(COALESCE(closing_is_full_service,opening_is_full_service,within_month_is_full_service)) AS is_at_least_one_store_full_service,\n MAX(COALESCE(closing_is_self_service,opening_is_self_service,within_month_is_self_service)) AS is_at_least_one_store_self_service,\n MAX(COALESCE(closing_is_free,opening_is_self_service,within_month_is_self_service)) AS is_at_least_one_store_free,\n SUM(opening_original_mrr_in_usd) AS opening_original_mrr_in_usd,\n SUM(closing_original_mrr_in_usd) AS closing_original_mrr_in_usd,\n SUM(within_month_original_mrr_in_usd) AS within_month_original_mrr_in_usd,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(within_month_mrr_in_usd) AS within_month_mrr_in_usd,\n MIN(subscription_start_date) AS subscription_start_date,\n MAX(subscription_end_date) AS subscription_end_date,\n SORT_ARRAY(COLLECT_SET(IF(opening_mrr_in_usd > 0,app_key,NULL))) AS opening_paying_app_key_array,\n SORT_ARRAY(COLLECT_SET(IF(closing_mrr_in_usd > 0,app_key,NULL))) AS closing_paying_app_key_array,\n COUNT(DISTINCT IF(opening_mrr_in_usd > 0,app_key,NULL)) AS opening_paying_app_key_cnt,\n COUNT(DISTINCT IF(closing_mrr_in_usd > 0,app_key,NULL)) AS closing_paying_app_key_cnt,\n SORT_ARRAY(COLLECT_SET(latest_charge_id)) AS charge_id_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_shopify_billing_store_product_mrr_monthly\nWHERE is_org_terminated_subscription_within_first_month = is_terminated_subscription_within_first_month\n AND organization_key IS NOT NULL\nGROUP BY 1,2,3,4\n)\n\n-- Result --\n\nSELECT *\nFROM organization_product_mrr_monthly", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_shopify_billing_store_product_mrr_monthly AS (\nSELECT * \nFROM dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_monthly\n\nWHERE mrr_month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 10\n\n),\n\n-- Logic --\n\norganization_product_mrr_monthly AS (\nSELECT\n mrr_month,\n product_family,\n organization_key,\n SHA2(CONCAT(mrr_month,organization_key,product_family),256) AS organization_product_month_id,\n FIRST(IF(opening_is_main_organization_plan = 1,opening_plan_name,NULL),TRUE) AS opening_main_plan_name,\n FIRST(IF(closing_is_main_organization_plan = 1,closing_plan_name,NULL),TRUE) AS closing_main_plan_name,\n FIRST(IF(opening_is_main_organization_plan = 1,opening_charge_name,NULL),TRUE) AS opening_main_charge_name,\n FIRST(IF(closing_is_main_organization_plan = 1,closing_charge_name,NULL),TRUE) AS closing_main_charge_name,\n FIRST(IF(opening_is_main_organization_plan = 1,opening_is_self_service,NULL),TRUE) AS opening_is_main_plan_self_service,\n FIRST(IF(closing_is_main_organization_plan = 1,closing_is_self_service,NULL),TRUE) AS closing_is_main_plan_self_service,\n FIRST(IF(opening_is_main_organization_plan = 1,opening_is_free,NULL),TRUE) AS opening_is_main_plan_free,\n FIRST(IF(closing_is_main_organization_plan = 1,closing_is_free,NULL),TRUE) AS closing_is_main_plan_free,\n FIRST(IF(opening_is_main_organization_plan = 1,opening_is_full_service,NULL),TRUE) AS opening_is_main_plan_full_service,\n FIRST(IF(closing_is_main_organization_plan = 1,closing_is_full_service,NULL),TRUE) AS closing_is_main_plan_full_service,\n FIRST(IF(within_month_is_main_organization_plan = 1,within_month_plan_name,NULL),TRUE) AS within_month_main_plan_name,\n FIRST(IF(within_month_is_main_organization_plan = 1,within_month_charge_name,NULL),TRUE) AS within_month_main_charge_name,\n FIRST(IF(within_month_is_main_organization_plan = 1,within_month_is_self_service,NULL),TRUE) AS within_month_is_main_plan_self_service,\n FIRST(IF(within_month_is_main_organization_plan = 1,within_month_is_free,NULL),TRUE) AS within_month_is_main_plan_free,\n FIRST(IF(within_month_is_main_organization_plan = 1,within_month_is_full_service,NULL),TRUE) AS within_month_is_main_plan_full_service,\n MIN(is_org_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n IF(SUM(NVL(opening_mrr_in_usd,0)) > 0 AND SUM(NVL(closing_mrr_in_usd,0)) = 0,1,0) AS is_terminated_subscription,\n MAX(COALESCE(closing_is_deactivated,opening_is_deactivated,within_month_is_deactivated)) AS is_at_least_one_store_deactivated,\n MAX(COALESCE(closing_is_uninstalled,opening_is_uninstalled,within_month_is_uninstalled)) AS is_at_least_one_store_uninstalled,\n MAX(COALESCE(closing_is_full_service,opening_is_full_service,within_month_is_full_service)) AS is_at_least_one_store_full_service,\n MAX(COALESCE(closing_is_self_service,opening_is_self_service,within_month_is_self_service)) AS is_at_least_one_store_self_service,\n MAX(COALESCE(closing_is_free,opening_is_self_service,within_month_is_self_service)) AS is_at_least_one_store_free,\n SUM(opening_original_mrr_in_usd) AS opening_original_mrr_in_usd,\n SUM(closing_original_mrr_in_usd) AS closing_original_mrr_in_usd,\n SUM(within_month_original_mrr_in_usd) AS within_month_original_mrr_in_usd,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(within_month_mrr_in_usd) AS within_month_mrr_in_usd,\n MIN(subscription_start_date) AS subscription_start_date,\n MAX(subscription_end_date) AS subscription_end_date,\n SORT_ARRAY(COLLECT_SET(IF(opening_mrr_in_usd > 0,app_key,NULL))) AS opening_paying_app_key_array,\n SORT_ARRAY(COLLECT_SET(IF(closing_mrr_in_usd > 0,app_key,NULL))) AS closing_paying_app_key_array,\n COUNT(DISTINCT IF(opening_mrr_in_usd > 0,app_key,NULL)) AS opening_paying_app_key_cnt,\n COUNT(DISTINCT IF(closing_mrr_in_usd > 0,app_key,NULL)) AS closing_paying_app_key_cnt,\n SORT_ARRAY(COLLECT_SET(latest_charge_id)) AS charge_id_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_shopify_billing_store_product_mrr_monthly\nWHERE is_org_terminated_subscription_within_first_month = is_terminated_subscription_within_first_month\n AND organization_key IS NOT NULL\nGROUP BY 1,2,3,4\n)\n\n-- Result --\n\nSELECT *\nFROM organization_product_mrr_monthly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "analytics___finance__shopify_billing_organization_product_usage_revenue_daily"], "alias": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "checksum": {"name": "sha256", "checksum": "3a343cdba81f24c1e84aeee37f752558b6dae89c1a1fa96ebf4339ece1aa488b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [organization_key, date, product_family]\nModel of the usage revenue from shopify billing events.\nThere are three types of usage revenue:\n 1. Loyalty and Reviews Overages\n Relevant only for Loyalty and Reviews (UGC).\n The amount is being paid by the store for additional orders that exceeded their plan limit.\n\n 2. Subscriptions Rev Share\n Relevant only for Subscriptions.\n The store is paying us X% of the revenue generated using the product\n\n 3. SMS Usage Charge\n Relevant only for SMS.\n There are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_in_usd": {"name": "revenue_in_usd", "description": "The amount paid by the organization for a specific product usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "additional_orders_cnt": {"name": "additional_orders_cnt", "description": "Sum of all the additional orders that exceeded the stores plan limit (under the organization).\nThis is the number of orders the organization is paying for.\nRelevant only for Loyalty and Reviews (UGC).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082637.7021544, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "raw_code": "-- Import --\n\nWITH import_store_product_usage_charge AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_store_product_usage_charge') }}\n),\n\n-- Logic --\n\nshopify_billing_organization_product_usage_revenue_daily AS (\nSELECT \n date,\n organization_key,\n product_family,\n SUM(revenue_in_usd) AS revenue_in_usd,\n SUM(additional_orders_cnt) AS additional_orders_cnt\nFROM import_store_product_usage_charge AS usage_charge\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2,3\n),\n\nshopify_billing_organization_product_usage_revenue_daily_w_timestamp AS (\nSELECT \n date,\n organization_key,\n product_family,\n revenue_in_usd,\n additional_orders_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shopify_billing_organization_product_usage_revenue_daily\n)\n\nSELECT *\nFROM shopify_billing_organization_product_usage_revenue_daily_w_timestamp", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_store_product_usage_charge AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge\n),\n\n-- Logic --\n\nshopify_billing_organization_product_usage_revenue_daily AS (\nSELECT \n date,\n organization_key,\n product_family,\n SUM(revenue_in_usd) AS revenue_in_usd,\n SUM(additional_orders_cnt) AS additional_orders_cnt\nFROM import_store_product_usage_charge AS usage_charge\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2,3\n),\n\nshopify_billing_organization_product_usage_revenue_daily_w_timestamp AS (\nSELECT \n date,\n organization_key,\n product_family,\n revenue_in_usd,\n additional_orders_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shopify_billing_organization_product_usage_revenue_daily\n)\n\nSELECT *\nFROM shopify_billing_organization_product_usage_revenue_daily_w_timestamp", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"], "alias": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "checksum": {"name": "sha256", "checksum": "9f3868e47cbb9de2eb774b7db56425cd27c06f4e9b3316f4b6f6dea105ef0317"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [organization_key, month, product_family]\nModel of the usage revenue from shopify billing events.\nThere are three types of usage revenue:\n 1. Loyalty and Reviews Overages\n Relevant only for Loyalty and Reviews (UGC).\n The amount is being paid by the store for additional orders that exceeded their plan limit.\n\n 2. Subscriptions Rev Share\n Relevant only for Subscriptions.\n The store is paying us X% of the revenue generated using the product\n\n 3. SMS Usage Charge\n Relevant only for SMS.\n There are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_in_usd": {"name": "revenue_in_usd", "description": "The amount paid by the organization for a specific product usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "additional_orders_cnt": {"name": "additional_orders_cnt", "description": "Sum of all the additional orders that exceeded the stores plan limit (under the organization).\nThis is the number of orders the organization is paying for.\nRelevant only for Loyalty and Reviews (UGC).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_self_service": {"name": "is_self_service", "description": "Indicates if the plan is self service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "Indicates if the plan is free (of SaaS fees) plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "Indicates if the plan is full service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_communication": {"name": "is_communication", "description": "indicator = 1 when product_family = SMS or Email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082637.758833, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "raw_code": "-- Import --\n\nWITH import_store_product_usage_charge AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_store_product_usage_charge') }}\n),\n\n-- Logic --\n\nplan_rank AS (\nSELECT \n organization_key,\n app_key,\n product_family,\n date,\n TRUNC(date,'MM') AS month,\n plan_name,\n is_self_service,\n is_free,\n is_full_service,\n ROW_NUMBER() OVER(PARTITION BY organization_key,product_family,TRUNC(date,'MM') ORDER BY IF(plan_name IS NULL,1,0),date DESC) AS plan_rn\nFROM import_store_product_usage_charge\n),\n\nshopify_billing_organization_product_usage_revenue_monthly AS (\nSELECT \n TRUNC(usage_charge.date, 'MM') AS month,\n usage_charge.organization_key,\n usage_charge.product_family,\n plan_rank.plan_name,\n plan_rank.is_self_service,\n plan_rank.is_free,\n plan_rank.is_full_service,\n SUM(usage_charge.revenue_in_usd) AS revenue_in_usd,\n SUM(usage_charge.additional_orders_cnt) AS additional_orders_cnt\nFROM import_store_product_usage_charge AS usage_charge\nINNER JOIN plan_rank \nON plan_rank.organization_key = usage_charge.organization_key\n AND plan_rank.product_family = usage_charge.product_family\n AND plan_rank.month = TRUNC(usage_charge.date,'MM')\n AND plan_rank.plan_rn = 1\nWHERE usage_charge.organization_key IS NOT NULL\nGROUP BY 1,2,3,4,5,6,7\n),\n\nshopify_billing_organization_product_usage_revenue_monthly_w_timestamp AS (\nSELECT \n month,\n organization_key,\n product_family,\n plan_name,\n revenue_in_usd,\n additional_orders_cnt,\n SMALLINT(NVL(is_self_service,1)) AS is_self_service,\n SMALLINT(NVL(is_free,0)) AS is_free,\n SMALLINT(NVL(is_full_service,0)) AS is_full_service,\n SMALLINT(IF(LOWER(product_family) IN ('sms','email'),1,0)) AS is_communication,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shopify_billing_organization_product_usage_revenue_monthly\n)\n\nSELECT *\nFROM shopify_billing_organization_product_usage_revenue_monthly_w_timestamp", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_store_product_usage_charge AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge\n),\n\n-- Logic --\n\nplan_rank AS (\nSELECT \n organization_key,\n app_key,\n product_family,\n date,\n TRUNC(date,'MM') AS month,\n plan_name,\n is_self_service,\n is_free,\n is_full_service,\n ROW_NUMBER() OVER(PARTITION BY organization_key,product_family,TRUNC(date,'MM') ORDER BY IF(plan_name IS NULL,1,0),date DESC) AS plan_rn\nFROM import_store_product_usage_charge\n),\n\nshopify_billing_organization_product_usage_revenue_monthly AS (\nSELECT \n TRUNC(usage_charge.date, 'MM') AS month,\n usage_charge.organization_key,\n usage_charge.product_family,\n plan_rank.plan_name,\n plan_rank.is_self_service,\n plan_rank.is_free,\n plan_rank.is_full_service,\n SUM(usage_charge.revenue_in_usd) AS revenue_in_usd,\n SUM(usage_charge.additional_orders_cnt) AS additional_orders_cnt\nFROM import_store_product_usage_charge AS usage_charge\nINNER JOIN plan_rank \nON plan_rank.organization_key = usage_charge.organization_key\n AND plan_rank.product_family = usage_charge.product_family\n AND plan_rank.month = TRUNC(usage_charge.date,'MM')\n AND plan_rank.plan_rn = 1\nWHERE usage_charge.organization_key IS NOT NULL\nGROUP BY 1,2,3,4,5,6,7\n),\n\nshopify_billing_organization_product_usage_revenue_monthly_w_timestamp AS (\nSELECT \n month,\n organization_key,\n product_family,\n plan_name,\n revenue_in_usd,\n additional_orders_cnt,\n SMALLINT(NVL(is_self_service,1)) AS is_self_service,\n SMALLINT(NVL(is_free,0)) AS is_free,\n SMALLINT(NVL(is_full_service,0)) AS is_full_service,\n SMALLINT(IF(LOWER(product_family) IN ('sms','email'),1,0)) AS is_communication,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shopify_billing_organization_product_usage_revenue_monthly\n)\n\nSELECT *\nFROM shopify_billing_organization_product_usage_revenue_monthly_w_timestamp", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_store_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_store_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_store_mapping", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_mapping", "analytics___finance__shopify_billing_store_mapping"], "alias": "analytics___finance__shopify_billing_store_mapping", "checksum": {"name": "sha256", "checksum": "193d88d1cd34d035ff93058ef34bbcf81da554a6986f840e777e55b9ffe5ad2a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Mapping table between shopify shop_id and yotpo app_key.\nshop_id's with 0 OR more there 1 app_keys are EXCLUDED.\nPK: shopify_shop_id | app_key", "columns": {"app_key": {"name": "app_key", "description": "FK: platform_store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "FK: platform_store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "FK: platform_organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_shop_id": {"name": "shopify_shop_id", "description": "FK: external_account_id in table analytics___platform_stg__account_platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_shop_domain": {"name": "shopify_shop_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082637.8108075, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_store_mapping", "raw_code": "-- Import --\n\nWITH import_platform_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_store_platform_account AS (\nSELECT * FROM {{ ref('analytics___platform__store_platform_account') }}\n),\n\n-- Logic --\n\naccount_platform_store_join AS (\nSELECT \n store.app_key,\n store.store_id,\n store.organization_key,\n platform.platform_account_id AS shopify_shop_id,\n platform.platform_shop_domain AS shopify_shop_domain,\n COUNT(store.app_key) OVER (PARTITION BY platform.platform_account_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS count_app_keys\nFROM import_platform_store AS store\nINNER JOIN import_store_platform_account AS platform \n ON platform.store_id = store.store_id\nWHERE LOWER(platform.platform_name) = 'shopify' \nAND store.is_test = 0\nAND store.organization_key IS NOT NULL\n),\n\nstore_mapping_wo_dupicates AS (\nSELECT\n app_key,\n store_id,\n organization_key,\n shopify_shop_id,\n shopify_shop_domain,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM account_platform_store_join\nWHERE count_app_keys = 1\n)\n\nSELECT * \nFROM store_mapping_wo_dupicates", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__store_platform_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_platform_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_store_platform_account AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_platform_account\n),\n\n-- Logic --\n\naccount_platform_store_join AS (\nSELECT \n store.app_key,\n store.store_id,\n store.organization_key,\n platform.platform_account_id AS shopify_shop_id,\n platform.platform_shop_domain AS shopify_shop_domain,\n COUNT(store.app_key) OVER (PARTITION BY platform.platform_account_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS count_app_keys\nFROM import_platform_store AS store\nINNER JOIN import_store_platform_account AS platform \n ON platform.store_id = store.store_id\nWHERE LOWER(platform.platform_name) = 'shopify' \nAND store.is_test = 0\nAND store.organization_key IS NOT NULL\n),\n\nstore_mapping_wo_dupicates AS (\nSELECT\n app_key,\n store_id,\n organization_key,\n shopify_shop_id,\n shopify_shop_domain,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM account_platform_store_join\nWHERE count_app_keys = 1\n)\n\nSELECT * \nFROM store_mapping_wo_dupicates", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_store_product_deactivated_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_deactivated_over_time", "analytics___finance__shopify_billing_store_product_deactivated_over_time"], "alias": "analytics___finance__shopify_billing_store_product_deactivated_over_time", "checksum": {"name": "sha256", "checksum": "ccf033b0f5c7d16b4374068b70be291473b6c9bafc4c45cb9053390dcc82d5d8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [shopify_shop_id, product_family, deactivated_at]\nIn Shopify, stores can get their apps (Yotpo's products) deactivated and they will not pay for the product until they reactivate.\nThis table shows the periods of deactivations for each store and product over time. Important to know:\n 1. deactivated_at - the beginning of the deactivation period\n 2. reactivated_at - the end of the deactivation period", "columns": {"shopify_shop_id": {"name": "shopify_shop_id", "description": "unique store identifier from shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deactivated_at": {"name": "deactivated_at", "description": "The beginning of the deactivation period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "reactivated_at": {"name": "reactivated_at", "description": "The end of the deactivation period\nNULL means the product is still deactivated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "deactivated_date": {"name": "deactivated_date", "description": "The beginning (date) of the deactivation period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "reactivated_date": {"name": "reactivated_date", "description": "The end (date) of the deactivation period\nNULL means the product is still deactivated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082637.8645499, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_store_product_deactivated_over_time", "raw_code": "-- Imports --\n\nWITH import_shopify_billing_event AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_event') }}\n),\n\n-- Logic --\n\nshop_product_deactivated AS (\nSELECT \n shopify_shop_id,\n app_key,\n organization_key,\n product_family,\n created_at AS deactivated_at\nFROM import_shopify_billing_event\nWHERE event_action = 'DEACTIVATED'\n),\n\nshop_product_reactivated AS (\nSELECT \n shopify_shop_id,\n app_key,\n organization_key,\n product_family,\n created_at AS reactivated_at\nFROM import_shopify_billing_event\nWHERE event_action = 'REACTIVATED'\n),\n\nshop_product_deactivated_over_time_prep AS (\nSELECT \n deactivated.shopify_shop_id,\n deactivated.app_key,\n deactivated.organization_key,\n deactivated.product_family,\n deactivated.deactivated_at,\n reactivated.reactivated_at,\n DATE(deactivated.deactivated_at) AS deactivated_date,\n DATE(reactivated.reactivated_at) AS reactivated_date,\n ROW_NUMBER() OVER(PARTITION BY deactivated.shopify_shop_id,deactivated.product_family,deactivated.deactivated_at ORDER BY IFNULL(reactivated.reactivated_at,'2999-01-01')) AS reactivated_rn\nFROM shop_product_deactivated AS deactivated\nLEFT JOIN shop_product_reactivated AS reactivated \n ON deactivated.shopify_shop_id = reactivated.shopify_shop_id\n AND deactivated.product_family = reactivated.product_family\n AND deactivated.deactivated_at < reactivated.reactivated_at\n),\n\nshopify_billing_product_deactivated_over_time AS (\n\nSELECT \n shopify_shop_id,\n product_family,\n deactivated_at,\n reactivated_at,\n deactivated_date,\n reactivated_date,\n app_key,\n organization_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shop_product_deactivated_over_time_prep\nWHERE reactivated_rn = 1 -- filtering only the first reactivation after the deactivation\n)\n\nSELECT * \nFROM shopify_billing_product_deactivated_over_time", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.sql", "compiled": true, "compiled_code": "-- Imports --\n\nWITH import_shopify_billing_event AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_event\n),\n\n-- Logic --\n\nshop_product_deactivated AS (\nSELECT \n shopify_shop_id,\n app_key,\n organization_key,\n product_family,\n created_at AS deactivated_at\nFROM import_shopify_billing_event\nWHERE event_action = 'DEACTIVATED'\n),\n\nshop_product_reactivated AS (\nSELECT \n shopify_shop_id,\n app_key,\n organization_key,\n product_family,\n created_at AS reactivated_at\nFROM import_shopify_billing_event\nWHERE event_action = 'REACTIVATED'\n),\n\nshop_product_deactivated_over_time_prep AS (\nSELECT \n deactivated.shopify_shop_id,\n deactivated.app_key,\n deactivated.organization_key,\n deactivated.product_family,\n deactivated.deactivated_at,\n reactivated.reactivated_at,\n DATE(deactivated.deactivated_at) AS deactivated_date,\n DATE(reactivated.reactivated_at) AS reactivated_date,\n ROW_NUMBER() OVER(PARTITION BY deactivated.shopify_shop_id,deactivated.product_family,deactivated.deactivated_at ORDER BY IFNULL(reactivated.reactivated_at,'2999-01-01')) AS reactivated_rn\nFROM shop_product_deactivated AS deactivated\nLEFT JOIN shop_product_reactivated AS reactivated \n ON deactivated.shopify_shop_id = reactivated.shopify_shop_id\n AND deactivated.product_family = reactivated.product_family\n AND deactivated.deactivated_at < reactivated.reactivated_at\n),\n\nshopify_billing_product_deactivated_over_time AS (\n\nSELECT \n shopify_shop_id,\n product_family,\n deactivated_at,\n reactivated_at,\n deactivated_date,\n reactivated_date,\n app_key,\n organization_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shop_product_deactivated_over_time_prep\nWHERE reactivated_rn = 1 -- filtering only the first reactivation after the deactivation\n)\n\nSELECT * \nFROM shopify_billing_product_deactivated_over_time", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_store_product_mrr_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_daily", "analytics___finance__shopify_billing_store_product_mrr_daily"], "alias": "analytics___finance__shopify_billing_store_product_mrr_daily", "checksum": {"name": "sha256", "checksum": "70a81ea5b1292769cfd00c62c6ba34fd2b02e4ef32aeb2c156e735f162499c9a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["mrr_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "| PK and granularity: mrr_date, product_family, shopify_shop_id\nModeled table of store and product family mrr based on shopify billing events at a daily level \n*Including stores we couldn't match app_key to them (eventually we are not reporting them)", "columns": {"mrr_date": {"name": "mrr_date", "description": "mrr date - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_family": {"name": "product_family", "description": "product_family: UGC, Loyalty, SMS, Subscriptions - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_shop_id": {"name": "shopify_shop_id", "description": "shopify generated shop identifier - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "shopify generated app identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charge_id": {"name": "charge_id", "description": "shopify generated charge_id similar to zuora subscription_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charge_name": {"name": "charge_name", "description": "charge name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "product plan id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "plan_name": {"name": "plan_name", "description": "product plan name (can be null if no plan found in store_plan_daily OR chrage_name cannot be identified as plan )", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_plan_id": {"name": "sms_plan_id", "description": "sms plan id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyalty_plan_id": {"name": "loyalty_plan_id", "description": "loyalty plan id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charge_id_array": {"name": "charge_id_array", "description": "array of all charge identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "charge_name_array": {"name": "charge_name_array", "description": "array of all charge names", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "charge_id_cnt": {"name": "charge_id_cnt", "description": "number of charge identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "ugc_plan_name_array": {"name": "ugc_plan_name_array", "description": "array of all the store's ugc (Reviews & VMS) plans", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sms_plan_name_array": {"name": "sms_plan_name_array", "description": "array of all the store's sms (SMS & Email) plans", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "is_deactivated": {"name": "is_deactivated", "description": "deactivated store indicator: 0/1. \nif the diffrence between date and deactivation_date <= 30 days we will flag the store as activated (is_deactivated = 0).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_uninstalled": {"name": "is_uninstalled", "description": "uninstalled store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_single_app_key": {"name": "is_single_app_key", "description": "single store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_self_service": {"name": "is_self_service", "description": "self service plan indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "free plan indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "full service plan indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc_multi_product": {"name": "is_ugc_multi_product", "description": "ugc multi product indicator (Reviews & VMS): 1/0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms_multi_product": {"name": "is_sms_multi_product", "description": "sms multi product indicator (SMS & Email): 1/0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "indicatore = 1 if app_id = 4818605 (product_family = Subscriptions)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc": {"name": "is_ugc", "description": "indicatore = 1 if app_id = 70132 (product can be Reviews or VMS or both)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "indicatore = 1 if app_id = 740217 (product_family can be SMS or Email or both)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "indicatore = 1 if app_id = 902876 (product_family = Loyalty)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "original_mrr_in_usd": {"name": "original_mrr_in_usd", "description": "Monthly Recurring Revenue in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "mrr_in_usd": {"name": "mrr_in_usd", "description": "Monthly Recurring Revenue in usd which doesn't include deactivated stores", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "subscription_start_date": {"name": "subscription_start_date", "description": "shopify_billing_subscription_mrr_over_time from_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_end_date": {"name": "subscription_end_date", "description": "The store subscription end date.\nFor active subscriptions the value will be '2999-01-01'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_main_organization_plan": {"name": "is_main_organization_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "table", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "partition_by": ["mrr_date"]}, "created_at": 1700082637.9377346, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_daily", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partition_by = ['mrr_date']\n )\n}}\n\n-- Import --\n\nWITH import_calendar AS (\nSELECT * FROM {{ ref('analytics___utils_stg__calendar') }}\nWHERE date < CURRENT_DATE\n{% if is_incremental() %}\nAND date >= DATE_SUB(DATE(CURRENT_DATE),14)\n{% endif %}\n{% if target.name == 'dev' %}\nAND date >= DATE_SUB(DATE(CURRENT_DATE),7)\n{% endif %}\n),\n\nimport_finance_shopify_billing_subscription_mrr_over_time AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_subscription_mrr_over_time') }}\n),\n\nimport_finance_shopify_billing_store_product_deactivated_over_time AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_store_product_deactivated_over_time') }}\n),\n\nimport_finance_shopify_billing_store_product_uninstalled_over_time AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_store_product_uninstalled_over_time') }}\n),\n\nimport_platform_store_plan_daily AS (\nSELECT * FROM {{ ref('analytics___platform__store_plan_daily') }}\n),\n\nimport_shopify_billing_charge_plan_mapping AS (\nSELECT * FROM {{ ref('analytics___platform_stg__shopify_billing_charge_plan_mapping') }}\n),\n\n-- Logic --\n\nexplode_store_charge_by_date AS (\nSELECT\n calendar.date AS mrr_date,\n mrr.product_family,\n mrr.app_key,\n mrr.organization_key,\n mrr.app_id,\n mrr.shopify_shop_id,\n mrr.charge_id,\n mrr.charge_name AS original_charge_name,\n ARRAY_SORT(SPLIT(mrr.charge_name,',')) AS charge_name_array,\n mrr.is_single_app_key,\n mrr.mrr_in_usd,\n mrr.from_date AS subscription_start_date,\n mrr.to_date AS subscription_end_date,\n mrr.is_subscriptions,\n mrr.is_ugc,\n mrr.is_sms,\n mrr.is_loyalty,\n ROW_NUMBER() OVER (PARTITION BY calendar.date, mrr.product_family, mrr.shopify_shop_id ORDER BY mrr.from_time DESC, mrr.mrr_in_usd DESC) AS charge_rank_for_date_product_and_store\nFROM import_finance_shopify_billing_subscription_mrr_over_time AS mrr\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= mrr.from_date \n AND calendar.date < mrr.to_date\n),\n\none_row_per_date_product_and_store AS (\nSELECT\n mrr_date,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n charge_id,\n charge_name_array[0] AS charge_name,\n IF(LOWER(product_family) = 'ugc' AND charge_name_array[0] <> original_charge_name,1,0) AS is_charge_ugc_multi_product,\n IF(LOWER(product_family) = 'ugc' AND charge_name_array[0] <> original_charge_name,charge_name_array,NULL) AS ugc_charge_name_array,\n is_single_app_key,\n mrr_in_usd,\n subscription_start_date,\n subscription_end_date,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty\nFROM explode_store_charge_by_date\nWHERE charge_rank_for_date_product_and_store = 1\n),\n\ncharge_aggregation_for_date_product_and_store AS (\nSELECT\n mrr_date,\n product_family,\n shopify_shop_id,\n ARRAY_SORT(COLLECT_SET(charge_id)) AS charge_id_array,\n ARRAY_SORT(COLLECT_SET(original_charge_name)) AS charge_name_array,\n COUNT(DISTINCT charge_id) AS charge_id_cnt\nFROM explode_store_charge_by_date\nGROUP BY 1,2,3\n),\n\ndeactivation_daily AS (\nSELECT\n calendar.date,\n deactivated.product_family,\n deactivated.shopify_shop_id,\n 1 AS is_deactivated,\n MIN(deactivated.deactivated_date) AS deactivated_date\nFROM import_finance_shopify_billing_store_product_deactivated_over_time AS deactivated\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= deactivated.deactivated_date \n AND calendar.date < deactivated.reactivated_date\nGROUP BY 1,2,3\n),\n\nuninstall_daily AS (\nSELECT DISTINCT\n calendar.date,\n uninstalled.product_family,\n uninstalled.shopify_shop_id,\n 1 AS is_uninstalled,\n MIN(uninstalled.uninstalled_date) AS uninstalled_date\nFROM import_finance_shopify_billing_store_product_uninstalled_over_time AS uninstalled\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= uninstalled.uninstalled_date \n AND calendar.date < uninstalled.reinstalled_date\nGROUP BY 1,2,3\n),\n\nconsolidated_product_family_plan AS (\nSELECT\n date,\n CASE WHEN LOWER(product_family) IN ('reviews','vms') THEN 'UGC'\n WHEN LOWER(product_family) IN ('sms','email') THEN 'SMS'\n ELSE product_family END AS product_family,\n app_key,\n plan_id,\n plan_name,\n sms_plan_id,\n loyalty_plan_id,\n is_self_service,\n is_free,\n is_full_service,\n IF(LOWER(product_family) IN ('vms','email'),1,0) AS sub_product_score_for_rank\nFROM import_platform_store_plan_daily\n),\n\nugc_plan_aggregation AS (\nSELECT\n date,\n app_key,\n ARRAY_SORT(COLLECT_SET(plan_name)) AS ugc_plan_name_array,\n COUNT(*) AS ugc_product_cnt\nFROM consolidated_product_family_plan\nWHERE product_family = 'UGC'\nGROUP BY 1,2\n),\n\nsms_plan_aggregation AS (\nSELECT\n date,\n app_key,\n ARRAY_SORT(COLLECT_SET(plan_name)) AS sms_plan_name_array,\n COUNT(*) AS sms_product_cnt\nFROM consolidated_product_family_plan\nWHERE product_family = 'SMS'\nGROUP BY 1,2\n),\n\nplan_ranking AS (\nSELECT\n date,\n product_family,\n app_key,\n plan_id,\n plan_name,\n sms_plan_id,\n loyalty_plan_id,\n is_self_service,\n is_free,\n is_full_service,\n IF(product_family IN ('UGC','SMS'),\n ROW_NUMBER() OVER (PARTITION BY date, app_key, product_family ORDER BY sub_product_score_for_rank),\n 1) AS product_row_ranking\nFROM consolidated_product_family_plan\n),\n\nconsolidated_product_plan_data AS (\nSELECT \n ranking.date,\n ranking.product_family,\n ranking.app_key,\n ranking.plan_id,\n ranking.plan_name,\n ranking.sms_plan_id,\n ranking.loyalty_plan_id,\n ugc.ugc_plan_name_array,\n sms.sms_plan_name_array,\n ranking.plan_name,\n ranking.plan_id,\n ranking.sms_plan_id,\n ranking.loyalty_plan_id,\n ranking.is_self_service,\n ranking.is_free,\n ranking.is_full_service,\n IF(ugc.ugc_product_cnt > 1,1,0) AS is_ugc_multi_product,\n IF(sms.sms_product_cnt > 1,1,0) AS is_sms_multi_product\nFROM plan_ranking AS ranking\nLEFT JOIN ugc_plan_aggregation AS ugc\n ON ranking.date = ugc.date\n AND ranking.app_key = ugc.app_key\n AND ranking.product_family = 'UGC'\nLEFT JOIN sms_plan_aggregation AS sms\n ON ranking.date = sms.date\n AND ranking.app_key = sms.app_key\n AND ranking.product_family = 'SMS'\nWHERE ranking.product_row_ranking = 1\n),\n\nshopify_billing_store_product_mrr_daily_w_plan AS (\nSELECT\n store.mrr_date,\n store.product_family,\n store.app_key,\n store.organization_key,\n store.app_id,\n store.shopify_shop_id,\n store.charge_id,\n store.charge_name,\n plan.plan_id,\n plan.plan_name,\n plan.sms_plan_id,\n plan.loyalty_plan_id,\n charge.charge_id_array,\n charge.charge_name_array,\n SMALLINT(charge.charge_id_cnt) AS charge_id_cnt,\n NVL(plan.ugc_plan_name_array,store.ugc_charge_name_array) AS ugc_plan_name_array,\n plan.sms_plan_name_array,\n SMALLINT(NVL(IF(DATEDIFF(store.mrr_date,deactivation.deactivated_date) <= 30,0,deactivation.is_deactivated),0)) AS is_deactivated,\n SMALLINT(NVL(IF(DATEDIFF(store.mrr_date,uninstall.uninstalled_date) <= 30,0,uninstall.is_uninstalled),0)) AS is_uninstalled,\n store.is_single_app_key,\n plan.is_self_service AS is_self_service,\n plan.is_free AS is_free,\n plan.is_full_service AS is_full_service,\n NVL(plan.is_ugc_multi_product,store.is_charge_ugc_multi_product) AS is_ugc_multi_product,\n plan.is_sms_multi_product AS is_sms_multi_product,\n store.is_subscriptions,\n store.is_ugc,\n store.is_sms,\n store.is_loyalty,\n store.mrr_in_usd AS original_mrr_in_usd,\n store.subscription_start_date,\n store.subscription_end_date\nFROM one_row_per_date_product_and_store AS store\nINNER JOIN charge_aggregation_for_date_product_and_store AS charge\n ON store.mrr_date = charge.mrr_date\n AND store.product_family = charge.product_family\n AND store.shopify_shop_id = charge.shopify_shop_id\nLEFT JOIN deactivation_daily AS deactivation\n ON store.mrr_date = deactivation.date\n AND store.product_family = deactivation.product_family\n AND store.shopify_shop_id = deactivation.shopify_shop_id\nLEFT JOIN uninstall_daily AS uninstall\n ON store.mrr_date = uninstall.date\n AND store.product_family = uninstall.product_family\n AND store.shopify_shop_id = uninstall.shopify_shop_id\nLEFT JOIN consolidated_product_plan_data AS plan\n ON store.mrr_date = plan.date\n AND store.product_family = plan.product_family\n AND store.app_key = plan.app_key\n),\n\ncalculated_plan_metrics_group AS (\nSELECT DISTINCT\nproduct_family,\nplan_id,\nplan_name,\nis_self_service,\nis_free,\nis_full_service\nFROM consolidated_product_family_plan\n),\n\nshopify_billing_store_product_mrr_w_missing_plans AS (\nSELECT\n store.mrr_date,\n store.product_family,\n store.app_key,\n store.organization_key,\n store.app_id,\n store.shopify_shop_id,\n store.charge_id,\n store.charge_name,\n COALESCE(store.plan_id,plan.plan_id,static_plan.plan_id) AS plan_id,\n COALESCE(store.plan_name,plan.plan_name,static_plan.plan_name) AS plan_name,\n store.sms_plan_id,\n store.loyalty_plan_id,\n store.charge_id_array,\n store.charge_name_array,\n store.charge_id_cnt,\n store.ugc_plan_name_array,\n store.sms_plan_name_array,\n store.is_deactivated,\n store.is_uninstalled,\n store.is_single_app_key,\n COALESCE(store.is_self_service,plan.is_self_service,static_plan.is_self_service,SMALLINT(original_mrr_in_usd > 0)) AS is_self_service,\n COALESCE(store.is_free,plan.is_free,static_plan.is_free,SMALLINT(original_mrr_in_usd = 0)) AS is_free,\n COALESCE(store.is_full_service,plan.is_full_service,static_plan.is_full_service,0) AS is_full_service,\n NVL(store.is_ugc_multi_product,0) AS is_ugc_multi_product,\n NVL(store.is_sms_multi_product,0) AS is_sms_multi_product,\n store.is_subscriptions,\n store.is_ugc,\n store.is_sms,\n store.is_loyalty,\n store.original_mrr_in_usd,\n IF(store.is_deactivated = 1 OR store.is_uninstalled = 1,0, store.original_mrr_in_usd) AS mrr_in_usd,\n store.subscription_start_date,\n store.subscription_end_date\nFROM shopify_billing_store_product_mrr_daily_w_plan AS store\nLEFT JOIN calculated_plan_metrics_group AS plan\n ON LOWER(store.charge_name) = LOWER(plan.plan_name)\n AND LOWER(store.product_family) = LOWER(plan.product_family)\nLEFT JOIN import_shopify_billing_charge_plan_mapping AS static_plan\n ON LOWER(store.charge_name) = LOWER(static_plan.charge_name)\n AND LOWER(store.product_family) = LOWER(static_plan.product_family)\n),\n\nshopify_billing_store_product_mrr_daily_res AS (\nSELECT\n mrr_date,\n product_family,\n shopify_shop_id,\n app_key,\n organization_key,\n app_id,\n charge_id,\n charge_name,\n plan_id,\n plan_name,\n sms_plan_id,\n loyalty_plan_id,\n charge_id_array,\n charge_name_array,\n charge_id_cnt,\n ugc_plan_name_array,\n sms_plan_name_array,\n is_deactivated,\n is_uninstalled,\n is_single_app_key,\n SMALLINT(IF(is_full_service = 1,SMALLINT(original_mrr_in_usd > 0),is_self_service)) AS is_self_service,\n SMALLINT(IF(is_full_service = 1,SMALLINT(original_mrr_in_usd = 0),is_free)) AS is_free,\n SMALLINT(is_full_service) AS is_full_service,\n SMALLINT(is_ugc_multi_product) AS is_ugc_multi_product,\n SMALLINT(is_sms_multi_product) AS is_sms_multi_product,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty,\n original_mrr_in_usd,\n mrr_in_usd,\n subscription_start_date,\n subscription_end_date,\n SMALLINT(IF(ROW_NUMBER() OVER(PARTITION BY mrr_date,organization_key,product_family ORDER BY is_self_service, mrr_in_usd DESC,subscription_start_date DESC,charge_id) = 1,1,0)) AS is_main_organization_plan,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shopify_billing_store_product_mrr_w_missing_plans\n)\n\n-- Result --\n\nSELECT *\nFROM shopify_billing_store_product_mrr_daily_res", "language": "sql", "refs": [{"name": "analytics___utils_stg__calendar", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "package": null, "version": null}, {"name": "analytics___platform__store_plan_daily", "package": null, "version": null}, {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___utils_stg__calendar", "model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time", "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time", "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_calendar AS (\nSELECT * FROM dev_dkruh1.analytics___utils_stg__calendar\nWHERE date < CURRENT_DATE\n\n\nAND date >= DATE_SUB(DATE(CURRENT_DATE),7)\n\n),\n\nimport_finance_shopify_billing_subscription_mrr_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_subscription_mrr_over_time\n),\n\nimport_finance_shopify_billing_store_product_deactivated_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_store_product_deactivated_over_time\n),\n\nimport_finance_shopify_billing_store_product_uninstalled_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_store_product_uninstalled_over_time\n),\n\nimport_platform_store_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_plan_daily\n),\n\nimport_shopify_billing_charge_plan_mapping AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__shopify_billing_charge_plan_mapping\n),\n\n-- Logic --\n\nexplode_store_charge_by_date AS (\nSELECT\n calendar.date AS mrr_date,\n mrr.product_family,\n mrr.app_key,\n mrr.organization_key,\n mrr.app_id,\n mrr.shopify_shop_id,\n mrr.charge_id,\n mrr.charge_name AS original_charge_name,\n ARRAY_SORT(SPLIT(mrr.charge_name,',')) AS charge_name_array,\n mrr.is_single_app_key,\n mrr.mrr_in_usd,\n mrr.from_date AS subscription_start_date,\n mrr.to_date AS subscription_end_date,\n mrr.is_subscriptions,\n mrr.is_ugc,\n mrr.is_sms,\n mrr.is_loyalty,\n ROW_NUMBER() OVER (PARTITION BY calendar.date, mrr.product_family, mrr.shopify_shop_id ORDER BY mrr.from_time DESC, mrr.mrr_in_usd DESC) AS charge_rank_for_date_product_and_store\nFROM import_finance_shopify_billing_subscription_mrr_over_time AS mrr\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= mrr.from_date \n AND calendar.date < mrr.to_date\n),\n\none_row_per_date_product_and_store AS (\nSELECT\n mrr_date,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n charge_id,\n charge_name_array[0] AS charge_name,\n IF(LOWER(product_family) = 'ugc' AND charge_name_array[0] <> original_charge_name,1,0) AS is_charge_ugc_multi_product,\n IF(LOWER(product_family) = 'ugc' AND charge_name_array[0] <> original_charge_name,charge_name_array,NULL) AS ugc_charge_name_array,\n is_single_app_key,\n mrr_in_usd,\n subscription_start_date,\n subscription_end_date,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty\nFROM explode_store_charge_by_date\nWHERE charge_rank_for_date_product_and_store = 1\n),\n\ncharge_aggregation_for_date_product_and_store AS (\nSELECT\n mrr_date,\n product_family,\n shopify_shop_id,\n ARRAY_SORT(COLLECT_SET(charge_id)) AS charge_id_array,\n ARRAY_SORT(COLLECT_SET(original_charge_name)) AS charge_name_array,\n COUNT(DISTINCT charge_id) AS charge_id_cnt\nFROM explode_store_charge_by_date\nGROUP BY 1,2,3\n),\n\ndeactivation_daily AS (\nSELECT\n calendar.date,\n deactivated.product_family,\n deactivated.shopify_shop_id,\n 1 AS is_deactivated,\n MIN(deactivated.deactivated_date) AS deactivated_date\nFROM import_finance_shopify_billing_store_product_deactivated_over_time AS deactivated\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= deactivated.deactivated_date \n AND calendar.date < deactivated.reactivated_date\nGROUP BY 1,2,3\n),\n\nuninstall_daily AS (\nSELECT DISTINCT\n calendar.date,\n uninstalled.product_family,\n uninstalled.shopify_shop_id,\n 1 AS is_uninstalled,\n MIN(uninstalled.uninstalled_date) AS uninstalled_date\nFROM import_finance_shopify_billing_store_product_uninstalled_over_time AS uninstalled\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= uninstalled.uninstalled_date \n AND calendar.date < uninstalled.reinstalled_date\nGROUP BY 1,2,3\n),\n\nconsolidated_product_family_plan AS (\nSELECT\n date,\n CASE WHEN LOWER(product_family) IN ('reviews','vms') THEN 'UGC'\n WHEN LOWER(product_family) IN ('sms','email') THEN 'SMS'\n ELSE product_family END AS product_family,\n app_key,\n plan_id,\n plan_name,\n sms_plan_id,\n loyalty_plan_id,\n is_self_service,\n is_free,\n is_full_service,\n IF(LOWER(product_family) IN ('vms','email'),1,0) AS sub_product_score_for_rank\nFROM import_platform_store_plan_daily\n),\n\nugc_plan_aggregation AS (\nSELECT\n date,\n app_key,\n ARRAY_SORT(COLLECT_SET(plan_name)) AS ugc_plan_name_array,\n COUNT(*) AS ugc_product_cnt\nFROM consolidated_product_family_plan\nWHERE product_family = 'UGC'\nGROUP BY 1,2\n),\n\nsms_plan_aggregation AS (\nSELECT\n date,\n app_key,\n ARRAY_SORT(COLLECT_SET(plan_name)) AS sms_plan_name_array,\n COUNT(*) AS sms_product_cnt\nFROM consolidated_product_family_plan\nWHERE product_family = 'SMS'\nGROUP BY 1,2\n),\n\nplan_ranking AS (\nSELECT\n date,\n product_family,\n app_key,\n plan_id,\n plan_name,\n sms_plan_id,\n loyalty_plan_id,\n is_self_service,\n is_free,\n is_full_service,\n IF(product_family IN ('UGC','SMS'),\n ROW_NUMBER() OVER (PARTITION BY date, app_key, product_family ORDER BY sub_product_score_for_rank),\n 1) AS product_row_ranking\nFROM consolidated_product_family_plan\n),\n\nconsolidated_product_plan_data AS (\nSELECT \n ranking.date,\n ranking.product_family,\n ranking.app_key,\n ranking.plan_id,\n ranking.plan_name,\n ranking.sms_plan_id,\n ranking.loyalty_plan_id,\n ugc.ugc_plan_name_array,\n sms.sms_plan_name_array,\n ranking.plan_name,\n ranking.plan_id,\n ranking.sms_plan_id,\n ranking.loyalty_plan_id,\n ranking.is_self_service,\n ranking.is_free,\n ranking.is_full_service,\n IF(ugc.ugc_product_cnt > 1,1,0) AS is_ugc_multi_product,\n IF(sms.sms_product_cnt > 1,1,0) AS is_sms_multi_product\nFROM plan_ranking AS ranking\nLEFT JOIN ugc_plan_aggregation AS ugc\n ON ranking.date = ugc.date\n AND ranking.app_key = ugc.app_key\n AND ranking.product_family = 'UGC'\nLEFT JOIN sms_plan_aggregation AS sms\n ON ranking.date = sms.date\n AND ranking.app_key = sms.app_key\n AND ranking.product_family = 'SMS'\nWHERE ranking.product_row_ranking = 1\n),\n\nshopify_billing_store_product_mrr_daily_w_plan AS (\nSELECT\n store.mrr_date,\n store.product_family,\n store.app_key,\n store.organization_key,\n store.app_id,\n store.shopify_shop_id,\n store.charge_id,\n store.charge_name,\n plan.plan_id,\n plan.plan_name,\n plan.sms_plan_id,\n plan.loyalty_plan_id,\n charge.charge_id_array,\n charge.charge_name_array,\n SMALLINT(charge.charge_id_cnt) AS charge_id_cnt,\n NVL(plan.ugc_plan_name_array,store.ugc_charge_name_array) AS ugc_plan_name_array,\n plan.sms_plan_name_array,\n SMALLINT(NVL(IF(DATEDIFF(store.mrr_date,deactivation.deactivated_date) <= 30,0,deactivation.is_deactivated),0)) AS is_deactivated,\n SMALLINT(NVL(IF(DATEDIFF(store.mrr_date,uninstall.uninstalled_date) <= 30,0,uninstall.is_uninstalled),0)) AS is_uninstalled,\n store.is_single_app_key,\n plan.is_self_service AS is_self_service,\n plan.is_free AS is_free,\n plan.is_full_service AS is_full_service,\n NVL(plan.is_ugc_multi_product,store.is_charge_ugc_multi_product) AS is_ugc_multi_product,\n plan.is_sms_multi_product AS is_sms_multi_product,\n store.is_subscriptions,\n store.is_ugc,\n store.is_sms,\n store.is_loyalty,\n store.mrr_in_usd AS original_mrr_in_usd,\n store.subscription_start_date,\n store.subscription_end_date\nFROM one_row_per_date_product_and_store AS store\nINNER JOIN charge_aggregation_for_date_product_and_store AS charge\n ON store.mrr_date = charge.mrr_date\n AND store.product_family = charge.product_family\n AND store.shopify_shop_id = charge.shopify_shop_id\nLEFT JOIN deactivation_daily AS deactivation\n ON store.mrr_date = deactivation.date\n AND store.product_family = deactivation.product_family\n AND store.shopify_shop_id = deactivation.shopify_shop_id\nLEFT JOIN uninstall_daily AS uninstall\n ON store.mrr_date = uninstall.date\n AND store.product_family = uninstall.product_family\n AND store.shopify_shop_id = uninstall.shopify_shop_id\nLEFT JOIN consolidated_product_plan_data AS plan\n ON store.mrr_date = plan.date\n AND store.product_family = plan.product_family\n AND store.app_key = plan.app_key\n),\n\ncalculated_plan_metrics_group AS (\nSELECT DISTINCT\nproduct_family,\nplan_id,\nplan_name,\nis_self_service,\nis_free,\nis_full_service\nFROM consolidated_product_family_plan\n),\n\nshopify_billing_store_product_mrr_w_missing_plans AS (\nSELECT\n store.mrr_date,\n store.product_family,\n store.app_key,\n store.organization_key,\n store.app_id,\n store.shopify_shop_id,\n store.charge_id,\n store.charge_name,\n COALESCE(store.plan_id,plan.plan_id,static_plan.plan_id) AS plan_id,\n COALESCE(store.plan_name,plan.plan_name,static_plan.plan_name) AS plan_name,\n store.sms_plan_id,\n store.loyalty_plan_id,\n store.charge_id_array,\n store.charge_name_array,\n store.charge_id_cnt,\n store.ugc_plan_name_array,\n store.sms_plan_name_array,\n store.is_deactivated,\n store.is_uninstalled,\n store.is_single_app_key,\n COALESCE(store.is_self_service,plan.is_self_service,static_plan.is_self_service,SMALLINT(original_mrr_in_usd > 0)) AS is_self_service,\n COALESCE(store.is_free,plan.is_free,static_plan.is_free,SMALLINT(original_mrr_in_usd = 0)) AS is_free,\n COALESCE(store.is_full_service,plan.is_full_service,static_plan.is_full_service,0) AS is_full_service,\n NVL(store.is_ugc_multi_product,0) AS is_ugc_multi_product,\n NVL(store.is_sms_multi_product,0) AS is_sms_multi_product,\n store.is_subscriptions,\n store.is_ugc,\n store.is_sms,\n store.is_loyalty,\n store.original_mrr_in_usd,\n IF(store.is_deactivated = 1 OR store.is_uninstalled = 1,0, store.original_mrr_in_usd) AS mrr_in_usd,\n store.subscription_start_date,\n store.subscription_end_date\nFROM shopify_billing_store_product_mrr_daily_w_plan AS store\nLEFT JOIN calculated_plan_metrics_group AS plan\n ON LOWER(store.charge_name) = LOWER(plan.plan_name)\n AND LOWER(store.product_family) = LOWER(plan.product_family)\nLEFT JOIN import_shopify_billing_charge_plan_mapping AS static_plan\n ON LOWER(store.charge_name) = LOWER(static_plan.charge_name)\n AND LOWER(store.product_family) = LOWER(static_plan.product_family)\n),\n\nshopify_billing_store_product_mrr_daily_res AS (\nSELECT\n mrr_date,\n product_family,\n shopify_shop_id,\n app_key,\n organization_key,\n app_id,\n charge_id,\n charge_name,\n plan_id,\n plan_name,\n sms_plan_id,\n loyalty_plan_id,\n charge_id_array,\n charge_name_array,\n charge_id_cnt,\n ugc_plan_name_array,\n sms_plan_name_array,\n is_deactivated,\n is_uninstalled,\n is_single_app_key,\n SMALLINT(IF(is_full_service = 1,SMALLINT(original_mrr_in_usd > 0),is_self_service)) AS is_self_service,\n SMALLINT(IF(is_full_service = 1,SMALLINT(original_mrr_in_usd = 0),is_free)) AS is_free,\n SMALLINT(is_full_service) AS is_full_service,\n SMALLINT(is_ugc_multi_product) AS is_ugc_multi_product,\n SMALLINT(is_sms_multi_product) AS is_sms_multi_product,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty,\n original_mrr_in_usd,\n mrr_in_usd,\n subscription_start_date,\n subscription_end_date,\n SMALLINT(IF(ROW_NUMBER() OVER(PARTITION BY mrr_date,organization_key,product_family ORDER BY is_self_service, mrr_in_usd DESC,subscription_start_date DESC,charge_id) = 1,1,0)) AS is_main_organization_plan,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shopify_billing_store_product_mrr_w_missing_plans\n)\n\n-- Result --\n\nSELECT *\nFROM shopify_billing_store_product_mrr_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_store_product_mrr_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_monthly", "analytics___finance__shopify_billing_store_product_mrr_monthly"], "alias": "analytics___finance__shopify_billing_store_product_mrr_monthly", "checksum": {"name": "sha256", "checksum": "4ed678d07e14de588a45163b3349bf5890e980fa55d5286acacf3be005d64779"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "| PK and granularity: mrr_month, product_family, shopify_shop_id\nModeled table of store and product family mrr based on shopify billing events at a monthly level \n*Including stores we couldn't match app_key to them (eventually we are not reporting them)", "columns": {"mrr_month": {"name": "mrr_month", "description": "mrr month - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_family": {"name": "product_family", "description": "product_family: UGC, Loyalty, SMS, Subscriptions - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_shop_id": {"name": "shopify_shop_id", "description": "shopify generated shop identifier - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "shopify generated app identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "latest_charge_id": {"name": "latest_charge_id", "description": "Latest found charge_id coalesce(closing,opening,within_month)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opening_charge_id": {"name": "opening_charge_id", "description": "closing_charge_id of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "closing_charge_id": {"name": "closing_charge_id", "description": "End of month charge_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "within_month_charge_id": {"name": "within_month_charge_id", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_charge_id = charge_id.\nif there were multiple charges in the same month the latest will show here", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_subscribe_days_cnt": {"name": "original_subscribe_days_cnt", "description": "number of subscription days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "subscribe_days_cnt": {"name": "subscribe_days_cnt", "description": "number of subscription days which doesn't include deactivated stores", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_charge_name": {"name": "opening_charge_name", "description": "closing_charge_name of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_charge_name": {"name": "closing_charge_name", "description": "End of month charge_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_charge_name": {"name": "within_month_charge_name", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_charge_name = charge_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_name": {"name": "opening_plan_name", "description": "closing_plan_name of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name": {"name": "closing_plan_name", "description": "End of month plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_plan_name": {"name": "within_month_plan_name", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_plan_name = plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_is_self_service": {"name": "opening_is_self_service", "description": "closing_is_self_service of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_self_service": {"name": "closing_is_self_service", "description": "End of month is_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_self_service": {"name": "within_month_is_self_service", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_self_service = is_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_free": {"name": "opening_is_free", "description": "closing_is_free of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_free": {"name": "closing_is_free", "description": "End of month is_free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_free": {"name": "within_month_is_free", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_free = is_free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_full_service": {"name": "opening_is_full_service", "description": "closing_is_full_service of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_full_service": {"name": "closing_is_full_service", "description": "End of month is_full_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_full_service": {"name": "within_month_is_full_service", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_full_service = is_full_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_original_mrr_in_usd": {"name": "opening_original_mrr_in_usd", "description": "closing_original_mrr_in_usd of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "closing_original_mrr_in_usd": {"name": "closing_original_mrr_in_usd", "description": "End of month original_mrr_in_usd (Monthly Recurring Revenue in usd which include deactivated stores)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "within_month_original_mrr_in_usd": {"name": "within_month_original_mrr_in_usd", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_original_mrr_in_usd = original_mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "adjusted_revenue_in_usd": {"name": "adjusted_revenue_in_usd", "description": "original_mrr_in_usd * numbers of days active and installed / total numbers of days in month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "opening_mrr_in_usd": {"name": "opening_mrr_in_usd", "description": "closing_mrr_in_usd of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "closing_mrr_in_usd": {"name": "closing_mrr_in_usd", "description": "End of month mrr_in_usd (Monthly Recurring Revenue in usd which doesn't include deactivated stores)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "within_month_mrr_in_usd": {"name": "within_month_mrr_in_usd", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_mrr_in_usd = mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "opening_is_main_organization_plan": {"name": "opening_is_main_organization_plan", "description": "closing_is_main_organization_plan of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_main_organization_plan": {"name": "closing_is_main_organization_plan", "description": "indicator = 1 when stores's plan is the organization main plan based on mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_main_organization_plan": {"name": "within_month_is_main_organization_plan", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_organization_plan = is_main_organization_plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_single_app_key": {"name": "is_single_app_key", "description": "single store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_deactivated": {"name": "opening_is_deactivated", "description": "closing_is_deactivated of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_deactivated": {"name": "closing_is_deactivated", "description": "End of month is_deactivated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_deactivated": {"name": "within_month_is_deactivated", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_deactivated = is_deactivated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_uninstalled": {"name": "opening_is_uninstalled", "description": "closing_is_uninstalled of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_uninstalled": {"name": "closing_is_uninstalled", "description": "End of month is_uninstalled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_uninstalled": {"name": "within_month_is_uninstalled", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_uninstalled = is_uninstalled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "subscription_start_date": {"name": "subscription_start_date", "description": "The store subscription start date.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_end_date": {"name": "subscription_end_date", "description": "The store subscription end date.\nFor active subscriptions the value will be '2999-01-01'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_terminated_subscription_within_first_month": {"name": "is_terminated_subscription_within_first_month", "description": "indicator = 1 when store charges started and ended in the same month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_org_terminated_subscription_within_first_month": {"name": "is_org_terminated_subscription_within_first_month", "description": "indicator = 1 when all organization's store charges started and ended in the same month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082638.015312, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_monthly", "raw_code": "-- Import --\n\nWITH import_shopify_store_product_mrr_daily AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_store_product_mrr_daily') }}\n),\n\n-- Logic --\n\nend_of_month_calculation AS (\nSELECT\n TRUNC(mrr_date,'MONTH') AS mrr_month,\n mrr_date,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n charge_id,\n charge_name,\n plan_name,\n plan_id,\n is_deactivated,\n is_uninstalled,\n is_single_app_key,\n is_self_service,\n is_free,\n is_full_service,\n original_mrr_in_usd,\n mrr_in_usd,\n subscription_start_date,\n subscription_end_date,\n is_main_organization_plan,\n CASE WHEN mrr_date = LAST_DAY(mrr_date) THEN 1\n WHEN TRUNC(mrr_date,'MONTH') = TRUNC(CURRENT_DATE,'MONTH') AND mrr_date = MAX(mrr_date) OVER () THEN 1\n ELSE 0 END AS is_end_of_month,\n IF(mrr_date = MAX(mrr_date) OVER (PARTITION BY TRUNC(mrr_date,'MONTH'),shopify_shop_id,product_family),1,0) AS is_max_date_per_product_family\nFROM import_shopify_store_product_mrr_daily\n),\n\nclosing_mrr_metrics AS (\n SELECT *\n FROM end_of_month_calculation\n WHERE is_end_of_month = 1\n),\n\nopening_mrr_metrics AS (\nSELECT \n ADD_MONTHS(mrr_month,1) AS mrr_month,\n mrr_date,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n charge_id,\n charge_name,\n plan_name,\n plan_id,\n is_deactivated,\n is_uninstalled,\n is_single_app_key,\n is_self_service,\n is_free,\n is_full_service,\n original_mrr_in_usd,\n mrr_in_usd,\n subscription_start_date,\n subscription_end_date,\n is_main_organization_plan\nFROM closing_mrr_metrics\nWHERE mrr_month < TRUNC(CURRENT_DATE,'MONTH')\n),\n\nopening_closing_store_month AS (\nSELECT\n NVL(close.mrr_month,open.mrr_month) AS mrr_month,\n NVL(close.product_family,open.product_family) AS product_family,\n NVL(close.app_key,open.app_key) AS app_key,\n NVL(close.organization_key,open.organization_key) AS organization_key,\n NVL(close.app_id,open.app_id) AS app_id,\n NVL(close.shopify_shop_id,open.shopify_shop_id) AS shopify_shop_id,\n NVL(close.charge_id,open.charge_id) AS latest_charge_id,\n open.charge_id AS opening_charge_id,\n close.charge_id AS closing_charge_id,\n open.charge_name AS opening_charge_name,\n close.charge_name AS closing_charge_name,\n open.plan_name AS opening_plan_name,\n close.plan_name AS closing_plan_name,\n open.plan_id AS opening_plan_id,\n close.plan_id AS closing_plan_id,\n open.is_deactivated AS opening_is_deactivated,\n close.is_deactivated AS closing_is_deactivated,\n open.is_uninstalled AS opening_is_uninstalled,\n close.is_uninstalled AS closing_is_uninstalled,\n open.is_self_service AS opening_is_self_service,\n close.is_self_service AS closing_is_self_service,\n open.is_free AS opening_is_free,\n close.is_free AS closing_is_free,\n open.is_full_service AS opening_is_full_service,\n close.is_full_service AS closing_is_full_service,\n NVL(close.is_single_app_key,open.is_single_app_key) AS is_single_app_key,\n open.original_mrr_in_usd AS opening_original_mrr_in_usd,\n close.original_mrr_in_usd AS closing_original_mrr_in_usd,\n open.mrr_in_usd AS opening_mrr_in_usd,\n close.mrr_in_usd AS closing_mrr_in_usd,\n open.is_main_organization_plan AS opening_is_main_organization_plan,\n close.is_main_organization_plan AS closing_is_main_organization_plan,\n NVL(close.subscription_start_date,open.subscription_start_date) AS subscription_start_date,\n NVL(close.subscription_end_date,open.subscription_end_date) AS subscription_end_date\nFROM closing_mrr_metrics AS close\nFULL OUTER JOIN opening_mrr_metrics AS open\n ON close.shopify_shop_id = open.shopify_shop_id\n AND close.product_family = open.product_family\n AND close.mrr_month = open.mrr_month\n),\n\nwithin_month_mrr_metrics AS (\nSELECT \n mrr_month,\n mrr_date,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n charge_id,\n CASE WHEN CONCAT(mrr_month,shopify_shop_id,product_family) IN (SELECT DISTINCT CONCAT(mrr_month,shopify_shop_id,product_family) FROM opening_closing_store_month) THEN 1 ELSE 0 END AS is_charge_id_in_end_of_month,\n charge_name,\n plan_name,\n plan_id,\n is_deactivated,\n is_uninstalled,\n is_single_app_key,\n is_self_service,\n is_free,\n is_full_service,\n original_mrr_in_usd,\n mrr_in_usd,\n is_main_organization_plan,\n subscription_start_date,\n subscription_end_date\nFROM end_of_month_calculation\nWHERE is_end_of_month = 0\nAND is_max_date_per_product_family = 1\n),\n\nopening_closing_within_month_mrr AS (\nSELECT \n mrr_month,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n latest_charge_id,\n opening_charge_id,\n closing_charge_id,\n NULL AS within_month_charge_id,\n opening_charge_name,\n closing_charge_name,\n NULL AS within_month_charge_name,\n opening_plan_name,\n closing_plan_name,\n NULL AS within_month_plan_name,\n opening_is_self_service,\n closing_is_self_service,\n NULL AS within_month_is_self_service,\n opening_is_free,\n closing_is_free,\n NULL AS within_month_is_free,\n opening_is_full_service,\n closing_is_full_service,\n NULL AS within_month_is_full_service,\n is_single_app_key,\n opening_is_deactivated,\n closing_is_deactivated,\n NULL AS within_month_is_deactivated,\n opening_is_uninstalled,\n closing_is_uninstalled,\n NULL AS within_month_is_uninstalled,\n opening_original_mrr_in_usd,\n closing_original_mrr_in_usd,\n NULL AS within_month_original_mrr_in_usd,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n NULL AS within_month_mrr_in_usd,\n opening_is_main_organization_plan,\n closing_is_main_organization_plan,\n NULL AS within_month_is_main_organization_plan,\n DAY(LAST_DAY(mrr_month)) AS days_in_month_cnt,\n subscription_start_date,\n subscription_end_date\nFROM opening_closing_store_month\nUNION ALL\nSELECT \n mrr_month,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n charge_id AS latest_charge_id,\n NULL AS opening_charge_id,\n NULL AS closing_charge_id,\n charge_id AS within_month_charge_id,\n NULL AS opening_charge_name,\n NULL AS closing_charge_name,\n charge_name AS within_month_charge_name,\n NULL AS opening_plan_name,\n NULL AS closing_plan_name,\n plan_name AS within_month_plan_name,\n NULL AS opening_is_self_service,\n NULL AS closing_is_self_service,\n is_self_service AS within_month_is_self_service,\n NULL AS opening_is_free,\n NULL AS closing_is_free,\n is_free AS within_month_is_free,\n NULL AS opening_is_full_service,\n NULL AS closing_is_full_service,\n is_full_service AS within_month_is_full_service,\n is_single_app_key,\n NULL AS opening_is_deactivated,\n NULL AS closing_is_deactivated,\n is_deactivated AS within_month_is_deactivated,\n NULL AS opening_is_uninstalled,\n NULL AS closing_is_uninstalled,\n is_uninstalled AS within_month_is_uninstalled,\n NULL AS opening_original_mrr_in_usd,\n NULL AS closing_original_mrr_in_usd,\n original_mrr_in_usd AS within_month_original_mrr_in_usd,\n NULL AS opening_mrr_in_usd,\n NULL AS closing_mrr_in_usd,\n mrr_in_usd AS within_month_mrr_in_usd,\n NULL AS opening_is_main_organization_plan,\n NULL AS closing_is_main_organization_plan,\n is_main_organization_plan AS within_month_is_main_organization_plan,\n DAY(LAST_DAY(mrr_month)) AS days_in_month_cnt,\n subscription_start_date,\n subscription_end_date\nFROM within_month_mrr_metrics\nWHERE is_charge_id_in_end_of_month = 0\n),\n\nnumber_of_subscribe_days AS (\nSELECT\n TRUNC(mrr_date,'MONTH') AS month,\n charge_id,\n SMALLINT(COUNT(*)) AS original_subscribe_days_cnt,\n SMALLINT(SUM(IF(is_deactivated = 0,1,0))) AS subscribe_days_cnt\nFROM import_shopify_store_product_mrr_daily\nGROUP BY 1,2\n),\n\nstore_product_mrr_revenue AS (\nSELECT \n mrr.mrr_month,\n mrr.product_family,\n mrr.shopify_shop_id,\n mrr.app_key,\n mrr.organization_key,\n mrr.app_id,\n mrr.latest_charge_id,\n mrr.opening_charge_id,\n mrr.closing_charge_id,\n mrr.within_month_charge_id,\n NVL(days.original_subscribe_days_cnt,0) AS original_subscribe_days_cnt,\n NVL(days.subscribe_days_cnt,0) AS subscribe_days_cnt,\n mrr.opening_charge_name,\n mrr.closing_charge_name,\n mrr.within_month_charge_name,\n mrr.opening_plan_name,\n mrr.closing_plan_name,\n mrr.within_month_plan_name,\n mrr.opening_is_self_service,\n mrr.closing_is_self_service,\n mrr.within_month_is_self_service,\n mrr.opening_is_free,\n mrr.closing_is_free,\n mrr.within_month_is_free,\n mrr.opening_is_full_service,\n mrr.closing_is_full_service,\n mrr.within_month_is_full_service,\n mrr.opening_original_mrr_in_usd,\n mrr.closing_original_mrr_in_usd,\n mrr.within_month_original_mrr_in_usd,\n FLOAT((NVL(days.subscribe_days_cnt,0)/mrr.days_in_month_cnt) * COALESCE(mrr.closing_mrr_in_usd,mrr.opening_mrr_in_usd,mrr.within_month_mrr_in_usd)) AS adjusted_revenue_in_usd,\n mrr.opening_mrr_in_usd,\n mrr.closing_mrr_in_usd,\n mrr.within_month_mrr_in_usd,\n mrr.opening_is_main_organization_plan,\n mrr.closing_is_main_organization_plan,\n mrr.within_month_is_main_organization_plan,\n mrr.is_single_app_key,\n mrr.opening_is_deactivated,\n mrr.closing_is_deactivated,\n mrr.within_month_is_deactivated,\n mrr.opening_is_uninstalled,\n mrr.closing_is_uninstalled,\n mrr.within_month_is_uninstalled,\n mrr.subscription_start_date,\n mrr.subscription_end_date,\n SMALLINT(IF(mrr.within_month_charge_id IS NOT NULL,1,0)) AS is_terminated_subscription_within_first_month\nFROM opening_closing_within_month_mrr AS mrr\nLEFT JOIN number_of_subscribe_days AS days\n ON mrr.latest_charge_id = days.charge_id\n AND mrr.mrr_month = days.month\n),\n\nshopify_store_product_mrr_monthly_res AS (\nSELECT *,\nMIN(is_terminated_subscription_within_first_month) OVER (PARTITION BY mrr_month,product_family,organization_key) AS is_org_terminated_subscription_within_first_month,\nCURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_product_mrr_revenue\n)\n\nSELECT *\nFROM shopify_store_product_mrr_monthly_res", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_shopify_store_product_mrr_daily AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_daily\n),\n\n-- Logic --\n\nend_of_month_calculation AS (\nSELECT\n TRUNC(mrr_date,'MONTH') AS mrr_month,\n mrr_date,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n charge_id,\n charge_name,\n plan_name,\n plan_id,\n is_deactivated,\n is_uninstalled,\n is_single_app_key,\n is_self_service,\n is_free,\n is_full_service,\n original_mrr_in_usd,\n mrr_in_usd,\n subscription_start_date,\n subscription_end_date,\n is_main_organization_plan,\n CASE WHEN mrr_date = LAST_DAY(mrr_date) THEN 1\n WHEN TRUNC(mrr_date,'MONTH') = TRUNC(CURRENT_DATE,'MONTH') AND mrr_date = MAX(mrr_date) OVER () THEN 1\n ELSE 0 END AS is_end_of_month,\n IF(mrr_date = MAX(mrr_date) OVER (PARTITION BY TRUNC(mrr_date,'MONTH'),shopify_shop_id,product_family),1,0) AS is_max_date_per_product_family\nFROM import_shopify_store_product_mrr_daily\n),\n\nclosing_mrr_metrics AS (\n SELECT *\n FROM end_of_month_calculation\n WHERE is_end_of_month = 1\n),\n\nopening_mrr_metrics AS (\nSELECT \n ADD_MONTHS(mrr_month,1) AS mrr_month,\n mrr_date,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n charge_id,\n charge_name,\n plan_name,\n plan_id,\n is_deactivated,\n is_uninstalled,\n is_single_app_key,\n is_self_service,\n is_free,\n is_full_service,\n original_mrr_in_usd,\n mrr_in_usd,\n subscription_start_date,\n subscription_end_date,\n is_main_organization_plan\nFROM closing_mrr_metrics\nWHERE mrr_month < TRUNC(CURRENT_DATE,'MONTH')\n),\n\nopening_closing_store_month AS (\nSELECT\n NVL(close.mrr_month,open.mrr_month) AS mrr_month,\n NVL(close.product_family,open.product_family) AS product_family,\n NVL(close.app_key,open.app_key) AS app_key,\n NVL(close.organization_key,open.organization_key) AS organization_key,\n NVL(close.app_id,open.app_id) AS app_id,\n NVL(close.shopify_shop_id,open.shopify_shop_id) AS shopify_shop_id,\n NVL(close.charge_id,open.charge_id) AS latest_charge_id,\n open.charge_id AS opening_charge_id,\n close.charge_id AS closing_charge_id,\n open.charge_name AS opening_charge_name,\n close.charge_name AS closing_charge_name,\n open.plan_name AS opening_plan_name,\n close.plan_name AS closing_plan_name,\n open.plan_id AS opening_plan_id,\n close.plan_id AS closing_plan_id,\n open.is_deactivated AS opening_is_deactivated,\n close.is_deactivated AS closing_is_deactivated,\n open.is_uninstalled AS opening_is_uninstalled,\n close.is_uninstalled AS closing_is_uninstalled,\n open.is_self_service AS opening_is_self_service,\n close.is_self_service AS closing_is_self_service,\n open.is_free AS opening_is_free,\n close.is_free AS closing_is_free,\n open.is_full_service AS opening_is_full_service,\n close.is_full_service AS closing_is_full_service,\n NVL(close.is_single_app_key,open.is_single_app_key) AS is_single_app_key,\n open.original_mrr_in_usd AS opening_original_mrr_in_usd,\n close.original_mrr_in_usd AS closing_original_mrr_in_usd,\n open.mrr_in_usd AS opening_mrr_in_usd,\n close.mrr_in_usd AS closing_mrr_in_usd,\n open.is_main_organization_plan AS opening_is_main_organization_plan,\n close.is_main_organization_plan AS closing_is_main_organization_plan,\n NVL(close.subscription_start_date,open.subscription_start_date) AS subscription_start_date,\n NVL(close.subscription_end_date,open.subscription_end_date) AS subscription_end_date\nFROM closing_mrr_metrics AS close\nFULL OUTER JOIN opening_mrr_metrics AS open\n ON close.shopify_shop_id = open.shopify_shop_id\n AND close.product_family = open.product_family\n AND close.mrr_month = open.mrr_month\n),\n\nwithin_month_mrr_metrics AS (\nSELECT \n mrr_month,\n mrr_date,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n charge_id,\n CASE WHEN CONCAT(mrr_month,shopify_shop_id,product_family) IN (SELECT DISTINCT CONCAT(mrr_month,shopify_shop_id,product_family) FROM opening_closing_store_month) THEN 1 ELSE 0 END AS is_charge_id_in_end_of_month,\n charge_name,\n plan_name,\n plan_id,\n is_deactivated,\n is_uninstalled,\n is_single_app_key,\n is_self_service,\n is_free,\n is_full_service,\n original_mrr_in_usd,\n mrr_in_usd,\n is_main_organization_plan,\n subscription_start_date,\n subscription_end_date\nFROM end_of_month_calculation\nWHERE is_end_of_month = 0\nAND is_max_date_per_product_family = 1\n),\n\nopening_closing_within_month_mrr AS (\nSELECT \n mrr_month,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n latest_charge_id,\n opening_charge_id,\n closing_charge_id,\n NULL AS within_month_charge_id,\n opening_charge_name,\n closing_charge_name,\n NULL AS within_month_charge_name,\n opening_plan_name,\n closing_plan_name,\n NULL AS within_month_plan_name,\n opening_is_self_service,\n closing_is_self_service,\n NULL AS within_month_is_self_service,\n opening_is_free,\n closing_is_free,\n NULL AS within_month_is_free,\n opening_is_full_service,\n closing_is_full_service,\n NULL AS within_month_is_full_service,\n is_single_app_key,\n opening_is_deactivated,\n closing_is_deactivated,\n NULL AS within_month_is_deactivated,\n opening_is_uninstalled,\n closing_is_uninstalled,\n NULL AS within_month_is_uninstalled,\n opening_original_mrr_in_usd,\n closing_original_mrr_in_usd,\n NULL AS within_month_original_mrr_in_usd,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n NULL AS within_month_mrr_in_usd,\n opening_is_main_organization_plan,\n closing_is_main_organization_plan,\n NULL AS within_month_is_main_organization_plan,\n DAY(LAST_DAY(mrr_month)) AS days_in_month_cnt,\n subscription_start_date,\n subscription_end_date\nFROM opening_closing_store_month\nUNION ALL\nSELECT \n mrr_month,\n product_family,\n app_key,\n organization_key,\n app_id,\n shopify_shop_id,\n charge_id AS latest_charge_id,\n NULL AS opening_charge_id,\n NULL AS closing_charge_id,\n charge_id AS within_month_charge_id,\n NULL AS opening_charge_name,\n NULL AS closing_charge_name,\n charge_name AS within_month_charge_name,\n NULL AS opening_plan_name,\n NULL AS closing_plan_name,\n plan_name AS within_month_plan_name,\n NULL AS opening_is_self_service,\n NULL AS closing_is_self_service,\n is_self_service AS within_month_is_self_service,\n NULL AS opening_is_free,\n NULL AS closing_is_free,\n is_free AS within_month_is_free,\n NULL AS opening_is_full_service,\n NULL AS closing_is_full_service,\n is_full_service AS within_month_is_full_service,\n is_single_app_key,\n NULL AS opening_is_deactivated,\n NULL AS closing_is_deactivated,\n is_deactivated AS within_month_is_deactivated,\n NULL AS opening_is_uninstalled,\n NULL AS closing_is_uninstalled,\n is_uninstalled AS within_month_is_uninstalled,\n NULL AS opening_original_mrr_in_usd,\n NULL AS closing_original_mrr_in_usd,\n original_mrr_in_usd AS within_month_original_mrr_in_usd,\n NULL AS opening_mrr_in_usd,\n NULL AS closing_mrr_in_usd,\n mrr_in_usd AS within_month_mrr_in_usd,\n NULL AS opening_is_main_organization_plan,\n NULL AS closing_is_main_organization_plan,\n is_main_organization_plan AS within_month_is_main_organization_plan,\n DAY(LAST_DAY(mrr_month)) AS days_in_month_cnt,\n subscription_start_date,\n subscription_end_date\nFROM within_month_mrr_metrics\nWHERE is_charge_id_in_end_of_month = 0\n),\n\nnumber_of_subscribe_days AS (\nSELECT\n TRUNC(mrr_date,'MONTH') AS month,\n charge_id,\n SMALLINT(COUNT(*)) AS original_subscribe_days_cnt,\n SMALLINT(SUM(IF(is_deactivated = 0,1,0))) AS subscribe_days_cnt\nFROM import_shopify_store_product_mrr_daily\nGROUP BY 1,2\n),\n\nstore_product_mrr_revenue AS (\nSELECT \n mrr.mrr_month,\n mrr.product_family,\n mrr.shopify_shop_id,\n mrr.app_key,\n mrr.organization_key,\n mrr.app_id,\n mrr.latest_charge_id,\n mrr.opening_charge_id,\n mrr.closing_charge_id,\n mrr.within_month_charge_id,\n NVL(days.original_subscribe_days_cnt,0) AS original_subscribe_days_cnt,\n NVL(days.subscribe_days_cnt,0) AS subscribe_days_cnt,\n mrr.opening_charge_name,\n mrr.closing_charge_name,\n mrr.within_month_charge_name,\n mrr.opening_plan_name,\n mrr.closing_plan_name,\n mrr.within_month_plan_name,\n mrr.opening_is_self_service,\n mrr.closing_is_self_service,\n mrr.within_month_is_self_service,\n mrr.opening_is_free,\n mrr.closing_is_free,\n mrr.within_month_is_free,\n mrr.opening_is_full_service,\n mrr.closing_is_full_service,\n mrr.within_month_is_full_service,\n mrr.opening_original_mrr_in_usd,\n mrr.closing_original_mrr_in_usd,\n mrr.within_month_original_mrr_in_usd,\n FLOAT((NVL(days.subscribe_days_cnt,0)/mrr.days_in_month_cnt) * COALESCE(mrr.closing_mrr_in_usd,mrr.opening_mrr_in_usd,mrr.within_month_mrr_in_usd)) AS adjusted_revenue_in_usd,\n mrr.opening_mrr_in_usd,\n mrr.closing_mrr_in_usd,\n mrr.within_month_mrr_in_usd,\n mrr.opening_is_main_organization_plan,\n mrr.closing_is_main_organization_plan,\n mrr.within_month_is_main_organization_plan,\n mrr.is_single_app_key,\n mrr.opening_is_deactivated,\n mrr.closing_is_deactivated,\n mrr.within_month_is_deactivated,\n mrr.opening_is_uninstalled,\n mrr.closing_is_uninstalled,\n mrr.within_month_is_uninstalled,\n mrr.subscription_start_date,\n mrr.subscription_end_date,\n SMALLINT(IF(mrr.within_month_charge_id IS NOT NULL,1,0)) AS is_terminated_subscription_within_first_month\nFROM opening_closing_within_month_mrr AS mrr\nLEFT JOIN number_of_subscribe_days AS days\n ON mrr.latest_charge_id = days.charge_id\n AND mrr.mrr_month = days.month\n),\n\nshopify_store_product_mrr_monthly_res AS (\nSELECT *,\nMIN(is_terminated_subscription_within_first_month) OVER (PARTITION BY mrr_month,product_family,organization_key) AS is_org_terminated_subscription_within_first_month,\nCURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_product_mrr_revenue\n)\n\nSELECT *\nFROM shopify_store_product_mrr_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "analytics___finance__shopify_billing_store_product_uninstalled_over_time"], "alias": "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "checksum": {"name": "sha256", "checksum": "6e2da3263d457459346020931a337073d2e8061aff122f5571538e069b2f6efd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [shopify_shop_id, product_family, uninstalled_at]\nIn Shopify, stores can uninstall their apps (Yotpo's products).\nThis table shows the periods of uninstallation for each store and product over time. Important to know:\n 1. uninstalled_at - The time when the store uninstalled the app\n 2. reinstalled_at - The time when the store reinstalled the app (must be after uninstallation)", "columns": {"shopify_shop_id": {"name": "shopify_shop_id", "description": "unique store identifier from shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uninstalled_at": {"name": "uninstalled_at", "description": "The time when the store uninstalled the app", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "reinstalled_at": {"name": "reinstalled_at", "description": "The time when the store reinstalled the app (must be after uninstallation)\nNULL means the product is yet to be reinstalled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "uninstalled_date": {"name": "uninstalled_date", "description": "The date when the store uninstalled the app", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "reinstalled_date": {"name": "reinstalled_date", "description": "The date when the store reinstalled the app (must be after uninstallation)\nNULL means the product is yet to be reinstalled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082638.0643501, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "raw_code": "-- Imports --\n\nWITH import_shopify_billing_event AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_event') }}\n),\n\n-- Logic --\n\nshop_product_uninstalled AS (\nSELECT \n shopify_shop_id,\n app_key,\n organization_key,\n product_family,\n created_at AS uninstalled_at\nFROM import_shopify_billing_event\nWHERE event_action = 'UNINSTALLED'\n),\n\nshop_product_installed AS (\nSELECT \n shopify_shop_id,\n app_key,\n organization_key,\n product_family,\n created_at AS installed_at\nFROM import_shopify_billing_event\nWHERE event_action = 'INSTALLED'\n),\n\nshop_product_uninstalled_over_time_prep AS (\nSELECT \n uninstalled.shopify_shop_id,\n uninstalled.app_key,\n uninstalled.organization_key,\n uninstalled.product_family,\n uninstalled.uninstalled_at,\n installed.installed_at AS reinstalled_at,\n DATE(uninstalled.uninstalled_at) AS uninstalled_date,\n DATE(installed.installed_at) AS reinstalled_date,\n ROW_NUMBER() OVER(PARTITION BY uninstalled.shopify_shop_id,uninstalled.product_family,uninstalled.uninstalled_at ORDER BY IFNULL(installed.installed_at,'2999-01-01')) AS installed_rn\nFROM shop_product_uninstalled AS uninstalled\nLEFT JOIN shop_product_installed AS installed \n ON uninstalled.shopify_shop_id = installed.shopify_shop_id\n AND uninstalled.product_family = installed.product_family\n AND uninstalled.uninstalled_at < installed.installed_at\n),\n\nshopify_billing_product_uninstalled_over_time AS (\n\nSELECT \n shopify_shop_id,\n product_family,\n uninstalled_at,\n reinstalled_at,\n uninstalled_date,\n reinstalled_date,\n app_key,\n organization_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shop_product_uninstalled_over_time_prep\nWHERE installed_rn = 1 -- filtering only the first reinstallation after the uninstallation\n)\n\nSELECT * \nFROM shopify_billing_product_uninstalled_over_time", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.sql", "compiled": true, "compiled_code": "-- Imports --\n\nWITH import_shopify_billing_event AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_event\n),\n\n-- Logic --\n\nshop_product_uninstalled AS (\nSELECT \n shopify_shop_id,\n app_key,\n organization_key,\n product_family,\n created_at AS uninstalled_at\nFROM import_shopify_billing_event\nWHERE event_action = 'UNINSTALLED'\n),\n\nshop_product_installed AS (\nSELECT \n shopify_shop_id,\n app_key,\n organization_key,\n product_family,\n created_at AS installed_at\nFROM import_shopify_billing_event\nWHERE event_action = 'INSTALLED'\n),\n\nshop_product_uninstalled_over_time_prep AS (\nSELECT \n uninstalled.shopify_shop_id,\n uninstalled.app_key,\n uninstalled.organization_key,\n uninstalled.product_family,\n uninstalled.uninstalled_at,\n installed.installed_at AS reinstalled_at,\n DATE(uninstalled.uninstalled_at) AS uninstalled_date,\n DATE(installed.installed_at) AS reinstalled_date,\n ROW_NUMBER() OVER(PARTITION BY uninstalled.shopify_shop_id,uninstalled.product_family,uninstalled.uninstalled_at ORDER BY IFNULL(installed.installed_at,'2999-01-01')) AS installed_rn\nFROM shop_product_uninstalled AS uninstalled\nLEFT JOIN shop_product_installed AS installed \n ON uninstalled.shopify_shop_id = installed.shopify_shop_id\n AND uninstalled.product_family = installed.product_family\n AND uninstalled.uninstalled_at < installed.installed_at\n),\n\nshopify_billing_product_uninstalled_over_time AS (\n\nSELECT \n shopify_shop_id,\n product_family,\n uninstalled_at,\n reinstalled_at,\n uninstalled_date,\n reinstalled_date,\n app_key,\n organization_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shop_product_uninstalled_over_time_prep\nWHERE installed_rn = 1 -- filtering only the first reinstallation after the uninstallation\n)\n\nSELECT * \nFROM shopify_billing_product_uninstalled_over_time", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_store_product_usage_charge", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_charge", "analytics___finance__shopify_billing_store_product_usage_charge"], "alias": "analytics___finance__shopify_billing_store_product_usage_charge", "checksum": {"name": "sha256", "checksum": "02d23defb40064333db12ed0250f21b27daf596712c97e4fd87e4d4d901d224a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [shopify_shop_id,charge_id]\nModel of the usage revenue from shopify billing events.\nThere are three types of usage revenue:\n 1. Loyalty and Reviews Overages\n Relevant only for Loyalty and Reviews (UGC).\n The amount is being paid by the store for additional orders that exceeded their plan limit.\n\n 2. Subscriptions Rev Share\n Relevant only for Subscriptions.\n The store is paying us X% of the revenue generated using the product\n\n 3. SMS Usage Charge\n Relevant only for SMS.\n There are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword", "columns": {"charge_id": {"name": "charge_id", "description": "shopify charge id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopify_shop_id": {"name": "shopify_shop_id", "description": "unique store identifier from shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "shopify charge date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "revenue_in_usd": {"name": "revenue_in_usd", "description": "The amount paid in the specific charge.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "charge_name": {"name": "charge_name", "description": "shopify charge name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "additional_orders_cnt": {"name": "additional_orders_cnt", "description": "The additional orders that exceeded the store plan limit.\nThis is the number of orders the store is paying for.\nRelevant only for Loyalty and Reviews (UGC).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "subscriptions_rev_share_ratio": {"name": "subscriptions_rev_share_ratio", "description": "Relevant only for Subscriptions.\nThe store is paying us X% of the revenue generated using the product.\n NOTE: 1 = 100%, 0.5 = 50% ...", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_usage_charge_type": {"name": "sms_usage_charge_type", "description": "Relevant only for SMS.\nThere are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_none_app_key": {"name": "is_none_app_key", "description": "Indicates if none app key was found for the shopify shop id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_single_app_key": {"name": "is_single_app_key", "description": "indicates if exactly 1 app key was found", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_multiple_app_key": {"name": "is_multiple_app_key", "description": "indicates if more than 1 app keys were found", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_self_service": {"name": "is_self_service", "description": "Indicates if the plan is self service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "Indicates if the plan is free (of SaaS fees) plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "Indicates if the plan is full service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "app_key_cnt": {"name": "app_key_cnt", "description": "Count of app keys (will be more than 1 in case multiple app keys were found per the shopify shop id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key_array": {"name": "app_key_array", "description": "Array of app keys (will contain more than 1 in case multiple app keys were found per the shopify shop id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082638.1258848, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge", "raw_code": "-- Import --\n\nWITH import_shopify_billing_event AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_event') }}\n),\n\nimport_store_plan_daily AS (\nSELECT * FROM {{ ref('analytics___platform__store_plan_daily') }}\n),\n\n-- Logic --\n\nshopify_billing_store_product_usage_charge AS (\nSELECT \n shopify.charge_id,\n shopify.shopify_shop_id,\n shopify.app_key,\n shopify.organization_key,\n shopify.product_family,\n store_plan.plan_name,\n shopify.created_date AS date,\n shopify.amount AS revenue_in_usd,\n shopify.charge_name,\n INT(CASE WHEN LOWER(shopify.product_family) = 'ugc' THEN REVERSE(SPLIT(REPLACE(SPLIT(LOWER(shopify.charge_name),' additional orders')[0],'.0',''),' '))[0]\n WHEN LOWER(shopify.product_family) = 'loyalty' THEN SPLIT(TRIM(SPLIT(LOWER(shopify.charge_name),IF(LOWER(shopify.charge_name) LIKE 'yotpo%','-','of'))[1]),' ')[0]\n END) AS additional_orders_cnt,\n FLOAT(IF(LOWER(shopify.product_family) = 'subscriptions',REVERSE(SPLIT(SPLIT(LOWER(shopify.charge_name),'%')[0],' '))[0],NULL))/100 AS subscriptions_rev_share_ratio, \n IF(LOWER(shopify.product_family) = 'sms',CASE WHEN LOWER(shopify.charge_name) LIKE '%campaign%' THEN 'campaigns'\n WHEN LOWER(shopify.charge_name) LIKE '%auto%' THEN 'auto reload'\n WHEN LOWER(shopify.charge_name) LIKE '%keyword%' THEN 'keyword'\n END,NULL) AS sms_usage_charge_type,\n shopify.is_none_app_key,\n shopify.is_single_app_key,\n shopify.is_multiple_app_key,\n SMALLINT(store_plan.is_self_service) AS is_self_service,\n SMALLINT(store_plan.is_free) AS is_free,\n SMALLINT(store_plan.is_full_service) AS is_full_service,\n shopify.app_key_cnt,\n shopify.app_key_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_shopify_billing_event AS shopify\nLEFT JOIN import_store_plan_daily AS store_plan \nON shopify.app_key = store_plan.app_key\n AND shopify.product_family = store_plan.product_family\n AND shopify.created_date = store_plan.date\nWHERE shopify.is_usage = 1\n)\n\nSELECT *\nFROM shopify_billing_store_product_usage_charge", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}, {"name": "analytics___platform__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_event", "model.yoda.analytics___platform__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_shopify_billing_event AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_event\n),\n\nimport_store_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_plan_daily\n),\n\n-- Logic --\n\nshopify_billing_store_product_usage_charge AS (\nSELECT \n shopify.charge_id,\n shopify.shopify_shop_id,\n shopify.app_key,\n shopify.organization_key,\n shopify.product_family,\n store_plan.plan_name,\n shopify.created_date AS date,\n shopify.amount AS revenue_in_usd,\n shopify.charge_name,\n INT(CASE WHEN LOWER(shopify.product_family) = 'ugc' THEN REVERSE(SPLIT(REPLACE(SPLIT(LOWER(shopify.charge_name),' additional orders')[0],'.0',''),' '))[0]\n WHEN LOWER(shopify.product_family) = 'loyalty' THEN SPLIT(TRIM(SPLIT(LOWER(shopify.charge_name),IF(LOWER(shopify.charge_name) LIKE 'yotpo%','-','of'))[1]),' ')[0]\n END) AS additional_orders_cnt,\n FLOAT(IF(LOWER(shopify.product_family) = 'subscriptions',REVERSE(SPLIT(SPLIT(LOWER(shopify.charge_name),'%')[0],' '))[0],NULL))/100 AS subscriptions_rev_share_ratio, \n IF(LOWER(shopify.product_family) = 'sms',CASE WHEN LOWER(shopify.charge_name) LIKE '%campaign%' THEN 'campaigns'\n WHEN LOWER(shopify.charge_name) LIKE '%auto%' THEN 'auto reload'\n WHEN LOWER(shopify.charge_name) LIKE '%keyword%' THEN 'keyword'\n END,NULL) AS sms_usage_charge_type,\n shopify.is_none_app_key,\n shopify.is_single_app_key,\n shopify.is_multiple_app_key,\n SMALLINT(store_plan.is_self_service) AS is_self_service,\n SMALLINT(store_plan.is_free) AS is_free,\n SMALLINT(store_plan.is_full_service) AS is_full_service,\n shopify.app_key_cnt,\n shopify.app_key_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_shopify_billing_event AS shopify\nLEFT JOIN import_store_plan_daily AS store_plan \nON shopify.app_key = store_plan.app_key\n AND shopify.product_family = store_plan.product_family\n AND shopify.created_date = store_plan.date\nWHERE shopify.is_usage = 1\n)\n\nSELECT *\nFROM shopify_billing_store_product_usage_charge", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "analytics___finance__shopify_billing_store_product_usage_revenue_daily"], "alias": "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "checksum": {"name": "sha256", "checksum": "ed3a0a4cbf98f23add86a63fe9dddf5f9047a1609fe481fb9700457b07757a8f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [shopify_shop_id, date, product_family]\nModel of the usage revenue from shopify billing events.\nThere are three types of usage revenue:\n 1. Loyalty and Reviews Overages\n Relevant only for Loyalty and Reviews (UGC).\n The amount is being paid by the store for additional orders that exceeded their plan limit.\n\n 2. Subscriptions Rev Share\n Relevant only for Subscriptions.\n The store is paying us X% of the revenue generated using the product\n\n 3. SMS Usage Charge\n Relevant only for SMS.\n There are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_shop_id": {"name": "shopify_shop_id", "description": "unique store identifier from shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_in_usd": {"name": "revenue_in_usd", "description": "The amount paid by the store for a specific product usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "additional_orders_cnt": {"name": "additional_orders_cnt", "description": "The additional orders that exceeded the store plan limit.\nThis is the number of orders the store is paying for.\nRelevant only for Loyalty and Reviews (UGC).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_none_app_key": {"name": "is_none_app_key", "description": "Indicates if none app key was found for the shopify shop id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_single_app_key": {"name": "is_single_app_key", "description": "indicates if exactly 1 app key was found", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_multiple_app_key": {"name": "is_multiple_app_key", "description": "indicates if more than 1 app keys were found", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082638.1906552, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "raw_code": "-- Import --\n\nWITH import_store_product_usage_charge AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_store_product_usage_charge') }}\n),\n\n-- Logic --\n\nshopify_billing_store_product_usage_revenue_daily AS (\nSELECT \n date,\n app_key,\n shopify_shop_id,\n product_family,\n organization_key,\n SUM(revenue_in_usd) AS revenue_in_usd,\n SUM(additional_orders_cnt) AS additional_orders_cnt,\n MAX(is_none_app_key) AS is_none_app_key,\n MAX(is_single_app_key) AS is_single_app_key,\n MAX(is_multiple_app_key) AS is_multiple_app_key\nFROM import_store_product_usage_charge AS usage_charge\nGROUP BY 1,2,3,4,5\n),\n\nshopify_billing_store_product_usage_revenue_daily_w_timestamp AS (\nSELECT \n date,\n app_key,\n shopify_shop_id,\n product_family,\n organization_key,\n revenue_in_usd,\n additional_orders_cnt,\n is_none_app_key,\n is_single_app_key,\n is_multiple_app_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shopify_billing_store_product_usage_revenue_daily\n)\n\n\nSELECT *\nFROM shopify_billing_store_product_usage_revenue_daily_w_timestamp", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_store_product_usage_charge AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge\n),\n\n-- Logic --\n\nshopify_billing_store_product_usage_revenue_daily AS (\nSELECT \n date,\n app_key,\n shopify_shop_id,\n product_family,\n organization_key,\n SUM(revenue_in_usd) AS revenue_in_usd,\n SUM(additional_orders_cnt) AS additional_orders_cnt,\n MAX(is_none_app_key) AS is_none_app_key,\n MAX(is_single_app_key) AS is_single_app_key,\n MAX(is_multiple_app_key) AS is_multiple_app_key\nFROM import_store_product_usage_charge AS usage_charge\nGROUP BY 1,2,3,4,5\n),\n\nshopify_billing_store_product_usage_revenue_daily_w_timestamp AS (\nSELECT \n date,\n app_key,\n shopify_shop_id,\n product_family,\n organization_key,\n revenue_in_usd,\n additional_orders_cnt,\n is_none_app_key,\n is_single_app_key,\n is_multiple_app_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shopify_billing_store_product_usage_revenue_daily\n)\n\n\nSELECT *\nFROM shopify_billing_store_product_usage_revenue_daily_w_timestamp", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "analytics___finance__shopify_billing_store_product_usage_revenue_monthly"], "alias": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "checksum": {"name": "sha256", "checksum": "f9c4ce89e82ce73045f4f0355a5ed49c674049dd7cf4c78b3e88cb4c641d3f3b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [shopify_shop_id, month, product_family]\nModel of the usage revenue from shopify billing events.\nThere are three types of usage revenue:\n 1. Loyalty and Reviews Overages\n Relevant only for Loyalty and Reviews (UGC).\n The amount is being paid by the store for additional orders that exceeded their plan limit.\n\n 2. Subscriptions Rev Share\n Relevant only for Subscriptions.\n The store is paying us X% of the revenue generated using the product\n\n 3. SMS Usage Charge\n Relevant only for SMS.\n There are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_shop_id": {"name": "shopify_shop_id", "description": "unique store identifier from shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_in_usd": {"name": "revenue_in_usd", "description": "The amount paid by the store for a specific product usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "additional_orders_cnt": {"name": "additional_orders_cnt", "description": "The additional orders that exceeded the store plan limit.\nThis is the number of orders the store is paying for.\nRelevant only for Loyalty and Reviews (UGC).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_none_app_key": {"name": "is_none_app_key", "description": "Indicates if none app key was found for the shopify shop id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_single_app_key": {"name": "is_single_app_key", "description": "indicates if exactly 1 app key was found", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_multiple_app_key": {"name": "is_multiple_app_key", "description": "indicates if more than 1 app keys were found", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082638.2815752, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "raw_code": "-- Import --\n\nWITH import_store_product_usage_charge AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_store_product_usage_charge') }}\n),\n\n-- Logic --\n\nshopify_billing_store_product_usage_revenue_monthly AS (\nSELECT \n TRUNC(date, 'MM') AS month,\n app_key,\n shopify_shop_id,\n product_family,\n organization_key,\n SUM(revenue_in_usd) AS revenue_in_usd,\n SUM(additional_orders_cnt) AS additional_orders_cnt,\n MAX(is_none_app_key) AS is_none_app_key,\n MAX(is_single_app_key) AS is_single_app_key,\n MAX(is_multiple_app_key) AS is_multiple_app_key\nFROM import_store_product_usage_charge AS usage_charge\nGROUP BY 1,2,3,4,5\n),\n\nshopify_billing_store_product_usage_revenue_monthly_w_timestamp AS (\nSELECT \n month,\n app_key,\n shopify_shop_id,\n product_family,\n organization_key,\n revenue_in_usd,\n additional_orders_cnt,\n is_none_app_key,\n is_single_app_key,\n is_multiple_app_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shopify_billing_store_product_usage_revenue_monthly\n)\n\nSELECT *\nFROM shopify_billing_store_product_usage_revenue_monthly_w_timestamp", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_store_product_usage_charge AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge\n),\n\n-- Logic --\n\nshopify_billing_store_product_usage_revenue_monthly AS (\nSELECT \n TRUNC(date, 'MM') AS month,\n app_key,\n shopify_shop_id,\n product_family,\n organization_key,\n SUM(revenue_in_usd) AS revenue_in_usd,\n SUM(additional_orders_cnt) AS additional_orders_cnt,\n MAX(is_none_app_key) AS is_none_app_key,\n MAX(is_single_app_key) AS is_single_app_key,\n MAX(is_multiple_app_key) AS is_multiple_app_key\nFROM import_store_product_usage_charge AS usage_charge\nGROUP BY 1,2,3,4,5\n),\n\nshopify_billing_store_product_usage_revenue_monthly_w_timestamp AS (\nSELECT \n month,\n app_key,\n shopify_shop_id,\n product_family,\n organization_key,\n revenue_in_usd,\n additional_orders_cnt,\n is_none_app_key,\n is_single_app_key,\n is_multiple_app_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM shopify_billing_store_product_usage_revenue_monthly\n)\n\nSELECT *\nFROM shopify_billing_store_product_usage_revenue_monthly_w_timestamp", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_billing_subscription_mrr_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.sql", "unique_id": "model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_subscription_mrr_over_time", "analytics___finance__shopify_billing_subscription_mrr_over_time"], "alias": "analytics___finance__shopify_billing_subscription_mrr_over_time", "checksum": {"name": "sha256", "checksum": "fdc976dd56d8a7664dae9b1e4e0c2177fd32e5271429e6dcf1aeb61a5b53e2f7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Calculated TABLE from shopify_billing_events of recurring revenue over time", "columns": {"shopify_shop_id": {"name": "shopify_shop_id", "description": "shopify generated shop identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "internal id for product family", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_name": {"name": "shop_name", "description": "shop name in shopify. multiple name per shop_id since shop owner can change shop name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_domain": {"name": "shopify_domain", "description": "shop domain in shopify. multiple domains per shop_id since shop owner can change shop domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_id": {"name": "charge_id", "description": "shopify generated charge_id similar to zuora subscription_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_family": {"name": "product_family", "description": "comtains: UGC,SMS,Loyalty,Subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_name": {"name": "charge_name", "description": "shopify charge name (DO NOT RELY for plan name)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_category": {"name": "event_category", "description": "USAGE_CHARGE|SUBSCRIPTION_CHARGE|ONE_TIME_CHARGE|RELATIONSHIP|CREDIT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_action": {"name": "event_action", "description": "action of the event category (i.e DECLINED, ACTIVATED, UNFROZEN, ACCEPTED)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_single_app_key": {"name": "is_single_app_key", "description": "single store indicator: 0/1.\nmeaning: does it a shop_id (shopify) with one store (1) or not (0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "mrr_in_usd": {"name": "mrr_in_usd", "description": "Monthly Recurring Revenue in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "from_time": {"name": "from_time", "description": "subscription from_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "subscription to_time (if null = 2999-01-01)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_event_action": {"name": "to_event_action", "description": "The action that ended the subscription time period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_date": {"name": "from_date", "description": "subscription from_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "subscription to_date (if null = 2999-01-01)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_subscriptions": {"name": "is_subscriptions", "description": "indicatore = 1 if app_id = 4818605 (product_family = Subscriptions)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc": {"name": "is_ugc", "description": "indicatore = 1 if app_id = 70132 (product can be Reviews or VMS or both)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "indicatore = 1 if app_id = 740217 (product_family can be SMS or Email or both)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "indicatore = 1 if app_id = 902876 (product_family = Loyalty)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table last updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082638.3471105, "relation_name": "dev_dkruh1.analytics___finance__shopify_billing_subscription_mrr_over_time", "raw_code": "-- Import --\n\nWITH import_mc_shopify_billing_event AS (\nSELECT * FROM {{ ref('analytics___finance__shopify_billing_event') }}\n),\n\n-- Logic --\n\nranking_events_created_simultaneously AS (\nSELECT\n shopify_shop_id, \n app_id,\n app_key,\n organization_key,\n shop_name,\n shopify_domain,\n product_family,\n charge_id,\n charge_name,\n event_category,\n event_action,\n created_at,\n created_date,\n amount AS mrr_in_usd,\n is_single_app_key,\n is_active_unfrozen,\n is_cancel_frozen,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty,\n ROW_NUMBER() OVER (PARTITION BY shopify_shop_id, app_id, charge_id, created_at ORDER BY is_active_unfrozen) AS ranking_for_concurrently_charges\nFROM import_mc_shopify_billing_event\nWHERE is_subscription_charge = 1\nAND (is_active_unfrozen = 1 OR is_cancel_frozen = 1)\n),\n\nredundant_similar_type_events_sequences AS (\nSELECT\n shopify_shop_id, \n app_id,\n app_key,\n organization_key,\n shop_name,\n shopify_domain,\n product_family,\n charge_id,\n charge_name,\n event_category,\n event_action,\n created_at,\n created_date,\n mrr_in_usd,\n is_single_app_key,\n is_active_unfrozen,\n is_cancel_frozen,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty,\n IF(LAG(is_active_unfrozen) OVER (PARTITION BY shopify_shop_id, app_id, charge_id ORDER BY created_at, mrr_in_usd DESC) = is_active_unfrozen,1,0) AS is_redundant_event\nFROM ranking_events_created_simultaneously\nWHERE ranking_for_concurrently_charges = 1\n),\n\nsubscription_active_event AS (\nSELECT\n shopify_shop_id,\n app_id,\n app_key,\n organization_key,\n shop_name,\n shopify_domain,\n product_family,\n charge_id,\n charge_name,\n event_category,\n event_action,\n created_at,\n created_date,\n mrr_in_usd,\n is_single_app_key,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty\nFROM redundant_similar_type_events_sequences\nWHERE is_redundant_event = 0\nAND is_active_unfrozen = 1\n),\n\nsubscription_cancel_event AS (\nSELECT\n charge_id,\n event_action,\n created_at,\n created_date\nFROM redundant_similar_type_events_sequences\nWHERE is_redundant_event = 0\nAND is_cancel_frozen = 1\n),\n\nactive_join_cancel AS (\nSELECT \n active.shopify_shop_id,\n active.app_id,\n active.app_key,\n active.organization_key,\n active.shop_name,\n active.shopify_domain,\n active.product_family,\n active.charge_id,\n active.charge_name,\n active.event_category,\n active.event_action,\n active.created_at,\n active.created_date,\n active.mrr_in_usd,\n active.is_single_app_key,\n cancel.event_action AS cancel_event_action,\n cancel.created_at AS cancel_created_at,\n cancel.created_date AS cancel_created_date,\n active.is_subscriptions,\n active.is_ugc,\n active.is_sms,\n active.is_loyalty,\n ROW_NUMBER() OVER(PARTITION BY active.charge_id,active.created_at ORDER BY cancel.created_at) AS cancel_event_rank\nFROM subscription_active_event AS active\nLEFT JOIN subscription_cancel_event AS cancel\n ON active.charge_id = cancel.charge_id\n AND active.created_at < cancel.created_at\n),\n\nshopify_billing_subscription_mrr_over_time_res AS (\nSELECT \n shopify_shop_id,\n app_key,\n organization_key,\n app_id,\n shop_name,\n shopify_domain,\n charge_id,\n product_family,\n charge_name,\n event_category,\n event_action,\n is_single_app_key,\n mrr_in_usd,\n created_at AS from_time,\n TIMESTAMP(COALESCE(cancel_created_at,'2999-01-01')) AS to_time,\n cancel_event_action AS to_event_action,\n created_date AS from_date,\n DATE(COALESCE(cancel_created_date,'2999-01-01')) AS to_date,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM active_join_cancel\nWHERE cancel_event_rank = 1\n)\n\n-- Result --\n\nSELECT * \nFROM shopify_billing_subscription_mrr_over_time_res", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_mc_shopify_billing_event AS (\nSELECT * FROM dev_dkruh1.analytics___finance__shopify_billing_event\n),\n\n-- Logic --\n\nranking_events_created_simultaneously AS (\nSELECT\n shopify_shop_id, \n app_id,\n app_key,\n organization_key,\n shop_name,\n shopify_domain,\n product_family,\n charge_id,\n charge_name,\n event_category,\n event_action,\n created_at,\n created_date,\n amount AS mrr_in_usd,\n is_single_app_key,\n is_active_unfrozen,\n is_cancel_frozen,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty,\n ROW_NUMBER() OVER (PARTITION BY shopify_shop_id, app_id, charge_id, created_at ORDER BY is_active_unfrozen) AS ranking_for_concurrently_charges\nFROM import_mc_shopify_billing_event\nWHERE is_subscription_charge = 1\nAND (is_active_unfrozen = 1 OR is_cancel_frozen = 1)\n),\n\nredundant_similar_type_events_sequences AS (\nSELECT\n shopify_shop_id, \n app_id,\n app_key,\n organization_key,\n shop_name,\n shopify_domain,\n product_family,\n charge_id,\n charge_name,\n event_category,\n event_action,\n created_at,\n created_date,\n mrr_in_usd,\n is_single_app_key,\n is_active_unfrozen,\n is_cancel_frozen,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty,\n IF(LAG(is_active_unfrozen) OVER (PARTITION BY shopify_shop_id, app_id, charge_id ORDER BY created_at, mrr_in_usd DESC) = is_active_unfrozen,1,0) AS is_redundant_event\nFROM ranking_events_created_simultaneously\nWHERE ranking_for_concurrently_charges = 1\n),\n\nsubscription_active_event AS (\nSELECT\n shopify_shop_id,\n app_id,\n app_key,\n organization_key,\n shop_name,\n shopify_domain,\n product_family,\n charge_id,\n charge_name,\n event_category,\n event_action,\n created_at,\n created_date,\n mrr_in_usd,\n is_single_app_key,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty\nFROM redundant_similar_type_events_sequences\nWHERE is_redundant_event = 0\nAND is_active_unfrozen = 1\n),\n\nsubscription_cancel_event AS (\nSELECT\n charge_id,\n event_action,\n created_at,\n created_date\nFROM redundant_similar_type_events_sequences\nWHERE is_redundant_event = 0\nAND is_cancel_frozen = 1\n),\n\nactive_join_cancel AS (\nSELECT \n active.shopify_shop_id,\n active.app_id,\n active.app_key,\n active.organization_key,\n active.shop_name,\n active.shopify_domain,\n active.product_family,\n active.charge_id,\n active.charge_name,\n active.event_category,\n active.event_action,\n active.created_at,\n active.created_date,\n active.mrr_in_usd,\n active.is_single_app_key,\n cancel.event_action AS cancel_event_action,\n cancel.created_at AS cancel_created_at,\n cancel.created_date AS cancel_created_date,\n active.is_subscriptions,\n active.is_ugc,\n active.is_sms,\n active.is_loyalty,\n ROW_NUMBER() OVER(PARTITION BY active.charge_id,active.created_at ORDER BY cancel.created_at) AS cancel_event_rank\nFROM subscription_active_event AS active\nLEFT JOIN subscription_cancel_event AS cancel\n ON active.charge_id = cancel.charge_id\n AND active.created_at < cancel.created_at\n),\n\nshopify_billing_subscription_mrr_over_time_res AS (\nSELECT \n shopify_shop_id,\n app_key,\n organization_key,\n app_id,\n shop_name,\n shopify_domain,\n charge_id,\n product_family,\n charge_name,\n event_category,\n event_action,\n is_single_app_key,\n mrr_in_usd,\n created_at AS from_time,\n TIMESTAMP(COALESCE(cancel_created_at,'2999-01-01')) AS to_time,\n cancel_event_action AS to_event_action,\n created_date AS from_date,\n DATE(COALESCE(cancel_created_date,'2999-01-01')) AS to_date,\n is_subscriptions,\n is_ugc,\n is_sms,\n is_loyalty,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM active_join_cancel\nWHERE cancel_event_rank = 1\n)\n\n-- Result --\n\nSELECT * \nFROM shopify_billing_subscription_mrr_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__shopify_store_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__shopify_store_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.sql", "unique_id": "model.yoda.analytics___finance__shopify_store_mapping", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_store_mapping", "analytics___finance__shopify_store_mapping"], "alias": "analytics___finance__shopify_store_mapping", "checksum": {"name": "sha256", "checksum": "79a87db34da89770f607bd670dcca267f9c07d37bbb45ac5e79c8d6259417939"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: shopify_shop_id\nMapping table between shopify shop_id and yotpo app_key.\nImportant notes:\n1. If multiple app_keys found and only one of them has valid credentials we are choosing the valid credentials app_key.\n2. If multiple app_keys found and more than one of them has valid credentials we are choosing the first valid credentials app_key.\n3. shop_id's with 0 app_keys are EXCLUDED.\n4. Test stores are EXCLUDED", "columns": {"shopify_shop_id": {"name": "shopify_shop_id", "description": "FK: external_account_id in table analytics___platform_stg__account_platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "FK: platform_store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "FK: platform_store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "FK: platform_organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key_cnt": {"name": "app_key_cnt", "description": "Count of app keys (will be more than 1 in case multiple app keys were found per the shopify shop id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "valid_cred_app_key_cnt": {"name": "valid_cred_app_key_cnt", "description": "Count of app keys with valid credentials.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_single_app_key": {"name": "is_single_app_key", "description": "indicates if exactly 1 app key was found", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_multiple_app_key": {"name": "is_multiple_app_key", "description": "indicates if more than 1 app keys were found", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "app_key_array": {"name": "app_key_array", "description": "Array of app keys (will contain more than 1 in case multiple app keys were found per the shopify shop id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "is_single_valid_cred_app_key": {"name": "is_single_valid_cred_app_key", "description": "indicates if exactly 1 app key with valid credentials were found.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_multiple_valid_cred_app_key": {"name": "is_multiple_valid_cred_app_key", "description": "indicates if more than 1 app keys with valid credentials were found.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "valid_cred_app_key_array": {"name": "valid_cred_app_key_array", "description": "Array of app keys with valid credentials.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082638.389663, "relation_name": "dev_dkruh1.analytics___finance__shopify_store_mapping", "raw_code": "-- Import --\n\nWITH import_platform_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_store_platform_account AS (\nSELECT * FROM {{ ref('analytics___platform__store_platform_account') }}\n),\n\n-- Logic --\n\naccount_platform_store_join AS (\nSELECT \n platform.platform_account_id AS shopify_shop_id,\n store.app_key,\n platform.is_valid_credentials,\n platform.account_platform_created_at,\n COUNT(store.app_key) OVER (PARTITION BY platform.platform_account_id) AS app_key_cnt,\n COUNT(IF(platform.is_valid_credentials = 1,store.app_key,NULL)) OVER (PARTITION BY platform.platform_account_id) AS valid_cred_app_key_cnt,\n MAX(IF(platform.is_valid_credentials = 1,platform.account_platform_created_at,NULL)) OVER (PARTITION BY platform.platform_account_id) AS max_account_platform_created_at\nFROM import_platform_store AS store\nINNER JOIN import_store_platform_account AS platform \n ON platform.store_id = store.store_id\nWHERE LOWER(platform.platform_name) = 'shopify' \nAND store.is_test = 0\nAND store.organization_key IS NOT NULL\nAND platform.platform_account_id IS NOT NULL\n),\n\nlast_valid_cred_app_key AS (\nSELECT \n shopify_shop_id,\n app_key,\n ROW_NUMBER() OVER (PARTITION BY shopify_shop_id ORDER BY app_key) AS shopify_rank\nFROM account_platform_store_join\nWHERE max_account_platform_created_at = account_platform_created_at\n),\n\nstore_mapping AS (\nSELECT\n store.shopify_shop_id,\n CASE WHEN app_key_cnt = 1 THEN store.app_key\n WHEN valid_cred_app_key_cnt > 0 THEN last_valid_cred_app_key.app_key END AS app_key,\n INT(app_key_cnt) AS app_key_cnt,\n INT(valid_cred_app_key_cnt) AS valid_cred_app_key_cnt,\n SMALLINT(IF(app_key_cnt = 1,1,0)) AS is_single_app_key,\n SMALLINT(IF(app_key_cnt > 1,1,0)) AS is_multiple_app_key,\n SMALLINT(IF(valid_cred_app_key_cnt = 1,1,0)) AS is_single_valid_cred_app_key,\n SMALLINT(IF(valid_cred_app_key_cnt > 1,1,0)) AS is_multiple_valid_cred_app_key,\n SORT_ARRAY(COLLECT_SET(store.app_key)) AS app_key_array,\n SORT_ARRAY(COLLECT_SET(IF(is_valid_credentials = 1,store.app_key,NULL))) AS valid_cred_app_key_array\nFROM account_platform_store_join AS store\nLEFT JOIN last_valid_cred_app_key \n ON store.shopify_shop_id = last_valid_cred_app_key.shopify_shop_id\n AND last_valid_cred_app_key.shopify_rank = 1\nWHERE app_key_cnt > 0\nGROUP BY 1,2,3,4,5,6,7,8\n),\n\nstore_mapping_w_timestamp AS (\nSELECT\n store_mapping.shopify_shop_id,\n store_mapping.app_key,\n platform_store.store_id,\n platform_store.organization_key,\n store_mapping.app_key_cnt,\n store_mapping.valid_cred_app_key_cnt,\n store_mapping.is_single_app_key,\n store_mapping.is_multiple_app_key,\n store_mapping.app_key_array,\n store_mapping.is_single_valid_cred_app_key,\n store_mapping.is_multiple_valid_cred_app_key,\n store_mapping.valid_cred_app_key_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_mapping\nLEFT JOIN import_platform_store AS platform_store\n ON platform_store.app_key = store_mapping.app_key\n)\n\nSELECT * \nFROM store_mapping_w_timestamp", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__store_platform_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_platform_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_store_platform_account AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_platform_account\n),\n\n-- Logic --\n\naccount_platform_store_join AS (\nSELECT \n platform.platform_account_id AS shopify_shop_id,\n store.app_key,\n platform.is_valid_credentials,\n platform.account_platform_created_at,\n COUNT(store.app_key) OVER (PARTITION BY platform.platform_account_id) AS app_key_cnt,\n COUNT(IF(platform.is_valid_credentials = 1,store.app_key,NULL)) OVER (PARTITION BY platform.platform_account_id) AS valid_cred_app_key_cnt,\n MAX(IF(platform.is_valid_credentials = 1,platform.account_platform_created_at,NULL)) OVER (PARTITION BY platform.platform_account_id) AS max_account_platform_created_at\nFROM import_platform_store AS store\nINNER JOIN import_store_platform_account AS platform \n ON platform.store_id = store.store_id\nWHERE LOWER(platform.platform_name) = 'shopify' \nAND store.is_test = 0\nAND store.organization_key IS NOT NULL\nAND platform.platform_account_id IS NOT NULL\n),\n\nlast_valid_cred_app_key AS (\nSELECT \n shopify_shop_id,\n app_key,\n ROW_NUMBER() OVER (PARTITION BY shopify_shop_id ORDER BY app_key) AS shopify_rank\nFROM account_platform_store_join\nWHERE max_account_platform_created_at = account_platform_created_at\n),\n\nstore_mapping AS (\nSELECT\n store.shopify_shop_id,\n CASE WHEN app_key_cnt = 1 THEN store.app_key\n WHEN valid_cred_app_key_cnt > 0 THEN last_valid_cred_app_key.app_key END AS app_key,\n INT(app_key_cnt) AS app_key_cnt,\n INT(valid_cred_app_key_cnt) AS valid_cred_app_key_cnt,\n SMALLINT(IF(app_key_cnt = 1,1,0)) AS is_single_app_key,\n SMALLINT(IF(app_key_cnt > 1,1,0)) AS is_multiple_app_key,\n SMALLINT(IF(valid_cred_app_key_cnt = 1,1,0)) AS is_single_valid_cred_app_key,\n SMALLINT(IF(valid_cred_app_key_cnt > 1,1,0)) AS is_multiple_valid_cred_app_key,\n SORT_ARRAY(COLLECT_SET(store.app_key)) AS app_key_array,\n SORT_ARRAY(COLLECT_SET(IF(is_valid_credentials = 1,store.app_key,NULL))) AS valid_cred_app_key_array\nFROM account_platform_store_join AS store\nLEFT JOIN last_valid_cred_app_key \n ON store.shopify_shop_id = last_valid_cred_app_key.shopify_shop_id\n AND last_valid_cred_app_key.shopify_rank = 1\nWHERE app_key_cnt > 0\nGROUP BY 1,2,3,4,5,6,7,8\n),\n\nstore_mapping_w_timestamp AS (\nSELECT\n store_mapping.shopify_shop_id,\n store_mapping.app_key,\n platform_store.store_id,\n platform_store.organization_key,\n store_mapping.app_key_cnt,\n store_mapping.valid_cred_app_key_cnt,\n store_mapping.is_single_app_key,\n store_mapping.is_multiple_app_key,\n store_mapping.app_key_array,\n store_mapping.is_single_valid_cred_app_key,\n store_mapping.is_multiple_valid_cred_app_key,\n store_mapping.valid_cred_app_key_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_mapping\nLEFT JOIN import_platform_store AS platform_store\n ON platform_store.app_key = store_mapping.app_key\n)\n\nSELECT * \nFROM store_mapping_w_timestamp", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_account": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_account", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.sql", "unique_id": "model.yoda.analytics___finance__zuora_account", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_account", "analytics___finance__zuora_account"], "alias": "analytics___finance__zuora_account", "checksum": {"name": "sha256", "checksum": "ded44c2a9154063ace2e50ec4e7d45f700551e0e6c2c7c51b46f261624a35db1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled TABLE over zuora_account view", "columns": {"account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "FK: Taken from analytics___platform_stg__organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_number": {"name": "account_number", "description": "Organization_key + addition", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_id": {"name": "sf_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_organization_key": {"name": "parent_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "child_organization_key": {"name": "child_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_status": {"name": "account_status", "description": "Status: Active, Canceled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_currency": {"name": "account_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_to_contact_id": {"name": "bill_to_contact_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_legal_entity": {"name": "yotpo_legal_entity", "description": "Which Yotpo Legal entity is responsible for this account \n( Yotpo Inc. || Yotpo LTD. || Yotpo UK.)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_terms": {"name": "payment_terms", "description": "payment term (Net 30/45/60/etc.)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_payment_method_id": {"name": "default_payment_method_id", "description": "Default payment method ID (connects to zuora_payment_method)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "communication_profile_id": {"name": "communication_profile_id", "description": "Account's communication Profile (VIP/Self-Service/ Regular)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_segment": {"name": "account_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_test_account": {"name": "is_test_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_parent_account": {"name": "is_parent_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Table last saved at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082638.4678752, "relation_name": "dev_dkruh1.analytics___finance__zuora_account", "raw_code": "WITH import_zuora_account AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__zuora_account') }}\n\n),\n\nimport_organization AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__organization') }}\n\n),\n\n zuora_account AS (\n\n SELECT\n z_account.account_id,\n z_account.account_name,\n z_account.organization_key,\n org.organization_id,\n z_account.account_number,\n z_account.sf_account_id,\n z_account.parent_organization_key,\n z_account.child_organization_key,\n z_account.account_status,\n z_account.account_currency,\n z_account.bill_to_contact_id,\n z_account.yotpo_legal_entity,\n z_account.payment_terms,\n z_account.default_payment_method_id,\n z_account.communication_profile_id,\n z_account.account_segment,\n z_account.is_deleted,\n z_account.is_test_account,\n z_account.is_parent_account,\n z_account.created_at,\n z_account.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_zuora_account AS z_account\n LEFT JOIN import_organization AS org\n ON z_account.organization_key = org.organization_key\n\n)\n\nSELECT *\nFROM zuora_account", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_account", "package": null, "version": null}, {"name": "analytics___platform_stg__organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__zuora_account", "model.yoda.analytics___platform_stg__organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.sql", "compiled": true, "compiled_code": "WITH import_zuora_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__zuora_account\n\n),\n\nimport_organization AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__organization\n\n),\n\n zuora_account AS (\n\n SELECT\n z_account.account_id,\n z_account.account_name,\n z_account.organization_key,\n org.organization_id,\n z_account.account_number,\n z_account.sf_account_id,\n z_account.parent_organization_key,\n z_account.child_organization_key,\n z_account.account_status,\n z_account.account_currency,\n z_account.bill_to_contact_id,\n z_account.yotpo_legal_entity,\n z_account.payment_terms,\n z_account.default_payment_method_id,\n z_account.communication_profile_id,\n z_account.account_segment,\n z_account.is_deleted,\n z_account.is_test_account,\n z_account.is_parent_account,\n z_account.created_at,\n z_account.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_zuora_account AS z_account\n LEFT JOIN import_organization AS org\n ON z_account.organization_key = org.organization_key\n\n)\n\nSELECT *\nFROM zuora_account", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_invoice": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_invoice", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.sql", "unique_id": "model.yoda.analytics___finance__zuora_invoice", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_invoice", "analytics___finance__zuora_invoice"], "alias": "analytics___finance__zuora_invoice", "checksum": {"name": "sha256", "checksum": "f4b7fa6d82ae171983061cfe6002d0cd62dab4a5ace45c61cabc7a897e89fd55"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora invoice object", "columns": {"invoice_id": {"name": "invoice_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoice_number": {"name": "invoice_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "Internal zuora account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_in_original_currency": {"name": "amount_in_original_currency", "description": "The invoice amount in original currency as it appears in Zuora", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "payment_amount_in_original_currency": {"name": "payment_amount_in_original_currency", "description": "The invoice payment amount in original currency as it appears in Zuora", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "balance_in_original_currency": {"name": "balance_in_original_currency", "description": "The invoice balance in original currency as it appears in Zuora", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "account_currency": {"name": "account_currency", "description": "The account currency symbol.\nThe invoice charge amount is always in the account currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usd_conversion_rate": {"name": "usd_conversion_rate", "description": "The relevant conversion rate based on zuora account currency and invoice date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "amount_in_usd": {"name": "amount_in_usd", "description": "The invoice amount converted to USD using the account currency, invoice date and this table: analytics___salesforce_stg__mc_conversion_rate", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "payment_amount_in_usd": {"name": "payment_amount_in_usd", "description": "The invoice payment amount converted to USD using the account currency, invoice date and this table: analytics___salesforce_stg__mc_conversion_rate", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "balance_in_usd": {"name": "balance_in_usd", "description": "The invoice balance converted to USD using the account currency, invoice date and this table: analytics___salesforce_stg__mc_conversion_rate", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "status": {"name": "status", "description": "Invoice status (Canceled,Draft,Posted)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "due_date": {"name": "due_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "posted_date": {"name": "posted_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "invoice_date": {"name": "invoice_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "posted_at": {"name": "posted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "invoice_month": {"name": "invoice_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reversed": {"name": "is_reversed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_zero_balance": {"name": "is_zero_balance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_status_posted": {"name": "is_status_posted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082638.5036695, "relation_name": "dev_dkruh1.analytics___finance__zuora_invoice", "raw_code": "-- Import --\n\nWITH import_zuora_invoice AS (\nSELECT * FROM {{ ref('analytics___finance_stg__zuora_invoice') }}\n),\n\nimport_zuora_account AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_account') }}\n),\n\nimport_conversion_rate AS (\nSELECT * FROM {{ ref('analytics___salesforce_stg__mc_conversion_rate') }}\n),\n\n-- Logic --\n\nzuora_invoice AS (\nSELECT \n invoice.invoice_id,\n invoice.invoice_number,\n invoice.account_id,\n invoice.amount AS amount_in_original_currency,\n FLOAT(invoice.payment_amount) AS payment_amount_in_original_currency,\n FLOAT(invoice.balance) AS balance_in_original_currency,\n account.account_currency,\n FLOAT(rate.conversion_rate) AS usd_conversion_rate,\n FLOAT(invoice.amount)/rate.conversion_rate AS amount_in_usd,\n FLOAT(invoice.payment_amount)/rate.conversion_rate AS payment_amount_in_usd,\n FLOAT(invoice.balance)/rate.conversion_rate AS balance_in_usd,\n invoice.status,\n invoice.due_date,\n invoice.posted_date,\n invoice.invoice_date,\n invoice.created_at,\n invoice.updated_at,\n invoice.posted_at,\n invoice.invoice_month,\n invoice.is_deleted,\n invoice.is_reversed,\n invoice.is_zero_balance,\n invoice.is_status_posted,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_zuora_invoice AS invoice\nINNER JOIN import_zuora_account AS account\n ON account.account_id = invoice.account_id\nLEFT JOIN import_conversion_rate AS rate\n ON invoice.invoice_date >= rate.from_date\n AND invoice.invoice_date < rate.to_date\n AND LOWER(account.account_currency) = LOWER(rate.currency_symbol)\n)\n\nSELECT *\nFROM zuora_invoice", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_invoice", "package": null, "version": null}, {"name": "analytics___finance__zuora_account", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_conversion_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__zuora_invoice", "model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___salesforce_stg__mc_conversion_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_zuora_invoice AS (\nSELECT * FROM dev_dkruh1.analytics___finance_stg__zuora_invoice\n),\n\nimport_zuora_account AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_account\n),\n\nimport_conversion_rate AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_conversion_rate\n),\n\n-- Logic --\n\nzuora_invoice AS (\nSELECT \n invoice.invoice_id,\n invoice.invoice_number,\n invoice.account_id,\n invoice.amount AS amount_in_original_currency,\n FLOAT(invoice.payment_amount) AS payment_amount_in_original_currency,\n FLOAT(invoice.balance) AS balance_in_original_currency,\n account.account_currency,\n FLOAT(rate.conversion_rate) AS usd_conversion_rate,\n FLOAT(invoice.amount)/rate.conversion_rate AS amount_in_usd,\n FLOAT(invoice.payment_amount)/rate.conversion_rate AS payment_amount_in_usd,\n FLOAT(invoice.balance)/rate.conversion_rate AS balance_in_usd,\n invoice.status,\n invoice.due_date,\n invoice.posted_date,\n invoice.invoice_date,\n invoice.created_at,\n invoice.updated_at,\n invoice.posted_at,\n invoice.invoice_month,\n invoice.is_deleted,\n invoice.is_reversed,\n invoice.is_zero_balance,\n invoice.is_status_posted,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_zuora_invoice AS invoice\nINNER JOIN import_zuora_account AS account\n ON account.account_id = invoice.account_id\nLEFT JOIN import_conversion_rate AS rate\n ON invoice.invoice_date >= rate.from_date\n AND invoice.invoice_date < rate.to_date\n AND LOWER(account.account_currency) = LOWER(rate.currency_symbol)\n)\n\nSELECT *\nFROM zuora_invoice", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_invoice_item": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_invoice_item", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.sql", "unique_id": "model.yoda.analytics___finance__zuora_invoice_item", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_invoice_item", "analytics___finance__zuora_invoice_item"], "alias": "analytics___finance__zuora_invoice_item", "checksum": {"name": "sha256", "checksum": "cb78185c10761529d209be77a29b439fd6e64ee42f2fc155d43a8328c4b0b91d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: invoice_item_id\nModeled View of zuora invoice_item object.", "columns": {"invoice_item_id": {"name": "invoice_item_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoice_id": {"name": "invoice_id", "description": "FK: analytics___finance_stg__zuora_invoice", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "FK: analytics___finance__zuora_product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplan_charge_id": {"name": "rateplan_charge_id", "description": "FK: analytics___finance__zuora_rateplan_charge", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_id": {"name": "subscription_id", "description": "FK: analytics___finance__zuora_subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "FK: analytics___finance_zuora_account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_name": {"name": "charge_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_amount_in_original_currency": {"name": "charge_amount_in_original_currency", "description": "The invoice item charge amount in original currency as it appears in Zuora", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "account_currency": {"name": "account_currency", "description": "The account currency symbol.\nThe invoice charge amount is always in the account currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usd_conversion_rate": {"name": "usd_conversion_rate", "description": "The relevant conversion rate based on zuora account currency and invoice date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "charge_amount_in_usd": {"name": "charge_amount_in_usd", "description": "The invoice item charge amount converted to USD using the account currency, invoice date and this table: analytics___salesforce_stg__mc_conversion_rate", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "charge_at": {"name": "charge_at", "description": "charge timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_by_id": {"name": "created_by_id", "description": "invoice_item created by id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "invoice_item created timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082638.5590634, "relation_name": "dev_dkruh1.analytics___finance__zuora_invoice_item", "raw_code": "-- Import --\n\nWITH import_zuora_invoice_item AS (\nSELECT * FROM {{ ref('analytics___finance_stg__zuora_invoice_item') }}\n),\n\nimport_zuora_invoice AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_invoice') }}\n),\n\n-- Logic --\n\nzuora_invoice_item AS (\nSELECT \n item.invoice_item_id,\n item.invoice_id,\n item.product_id,\n item.rateplan_charge_id,\n item.subscription_id,\n item.account_id,\n item.charge_name,\n FLOAT(item.charge_amount) AS charge_amount_in_original_currency,\n invoice.account_currency,\n invoice.usd_conversion_rate,\n FLOAT(item.charge_amount)/invoice.usd_conversion_rate AS charge_amount_in_usd,\n item.charge_at,\n item.created_by_id,\n item.created_at,\n item.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_zuora_invoice_item AS item\nINNER JOIN import_zuora_invoice AS invoice\n ON invoice.invoice_id = item.invoice_id\n)\n\nSELECT *\nFROM zuora_invoice_item", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_invoice_item", "package": null, "version": null}, {"name": "analytics___finance__zuora_invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__zuora_invoice_item", "model.yoda.analytics___finance__zuora_invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_zuora_invoice_item AS (\nSELECT * FROM dev_dkruh1.analytics___finance_stg__zuora_invoice_item\n),\n\nimport_zuora_invoice AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_invoice\n),\n\n-- Logic --\n\nzuora_invoice_item AS (\nSELECT \n item.invoice_item_id,\n item.invoice_id,\n item.product_id,\n item.rateplan_charge_id,\n item.subscription_id,\n item.account_id,\n item.charge_name,\n FLOAT(item.charge_amount) AS charge_amount_in_original_currency,\n invoice.account_currency,\n invoice.usd_conversion_rate,\n FLOAT(item.charge_amount)/invoice.usd_conversion_rate AS charge_amount_in_usd,\n item.charge_at,\n item.created_by_id,\n item.created_at,\n item.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_zuora_invoice_item AS item\nINNER JOIN import_zuora_invoice AS invoice\n ON invoice.invoice_id = item.invoice_id\n)\n\nSELECT *\nFROM zuora_invoice_item", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_order_mrr_details": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_order_mrr_details", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.sql", "unique_id": "model.yoda.analytics___finance__zuora_order_mrr_details", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_order_mrr_details", "analytics___finance__zuora_order_mrr_details"], "alias": "analytics___finance__zuora_order_mrr_details", "checksum": {"name": "sha256", "checksum": "18d9373264cd1541fa3e0e2dda17fae3ee3ce181c22b6c127a9b96d3c5f66eba"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled TABLE over order_mrr view. Contains only is_deleted = 0", "columns": {"order_mrr_id": {"name": "order_mrr_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_id": {"name": "subscription_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rate_plan_id": {"name": "product_rate_plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rate_plan_id": {"name": "rate_plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_action_id": {"name": "order_action_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_action_created_at": {"name": "order_action_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_action_type": {"name": "order_action_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_mrr_created_at": {"name": "order_mrr_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_mrr_start_date": {"name": "order_mrr_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "order_mrr_type": {"name": "order_mrr_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_mrr_value": {"name": "order_mrr_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082638.613816, "relation_name": "dev_dkruh1.analytics___finance__zuora_order_mrr_details", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH import_order_mrr AS (\n SELECT * \n FROM {{ ref('analytics___finance_stg__zuora_order_mrr') }}\n), \n\nimport_order AS (\n SELECT * \n FROM {{ ref('analytics___finance_stg__zuora_order') }}\n), \n\nimport_order_action AS (\n SELECT * \n FROM {{ ref('analytics___finance_stg__zuora_order_action') }}\n), \n\nzuora_mrr_details AS (\n SELECT\n order_mrr.order_mrr_id,\n order_mrr.account_id,\n order_mrr.subscription_id,\n order_mrr.product_rate_plan_id,\n order_mrr.product_id,\n order_mrr.rate_plan_id,\n order_mrr.order_action_id,\n order_mrr.created_at AS order_mrr_created_at,\n order_mrr.start_date AS order_mrr_start_date,\n order_mrr.order_mrr_type,\n order_mrr.order_mrr_value,\n order_action.created_at AS order_action_created_at,\n order_action.order_action_type\n FROM import_order_mrr AS order_mrr\n INNER JOIN import_order AS order\n ON order_mrr.order_id = order.order_id\n INNER JOIN import_order_action AS order_action\n ON order_mrr.order_action_id = order_action.order_action_id\n WHERE order_mrr.is_deleted = 0\n AND order.is_deleted = 0\n AND order_action.is_deleted = 0\n)\n\nSELECT\n order_mrr_id,\n account_id,\n subscription_id,\n product_rate_plan_id,\n product_id,\n rate_plan_id,\n order_action_id,\n order_action_created_at,\n order_action_type,\n order_mrr_created_at,\n order_mrr_start_date,\n order_mrr_type,\n order_mrr_value\nFROM zuora_mrr_details", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_order_mrr", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_order", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_order_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__zuora_order_mrr", "model.yoda.analytics___finance_stg__zuora_order", "model.yoda.analytics___finance_stg__zuora_order_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH import_order_mrr AS (\n SELECT * \n FROM dev_dkruh1.analytics___finance_stg__zuora_order_mrr\n), \n\nimport_order AS (\n SELECT * \n FROM dev_dkruh1.analytics___finance_stg__zuora_order\n), \n\nimport_order_action AS (\n SELECT * \n FROM dev_dkruh1.analytics___finance_stg__zuora_order_action\n), \n\nzuora_mrr_details AS (\n SELECT\n order_mrr.order_mrr_id,\n order_mrr.account_id,\n order_mrr.subscription_id,\n order_mrr.product_rate_plan_id,\n order_mrr.product_id,\n order_mrr.rate_plan_id,\n order_mrr.order_action_id,\n order_mrr.created_at AS order_mrr_created_at,\n order_mrr.start_date AS order_mrr_start_date,\n order_mrr.order_mrr_type,\n order_mrr.order_mrr_value,\n order_action.created_at AS order_action_created_at,\n order_action.order_action_type\n FROM import_order_mrr AS order_mrr\n INNER JOIN import_order AS order\n ON order_mrr.order_id = order.order_id\n INNER JOIN import_order_action AS order_action\n ON order_mrr.order_action_id = order_action.order_action_id\n WHERE order_mrr.is_deleted = 0\n AND order.is_deleted = 0\n AND order_action.is_deleted = 0\n)\n\nSELECT\n order_mrr_id,\n account_id,\n subscription_id,\n product_rate_plan_id,\n product_id,\n rate_plan_id,\n order_action_id,\n order_action_created_at,\n order_action_type,\n order_mrr_created_at,\n order_mrr_start_date,\n order_mrr_type,\n order_mrr_value\nFROM zuora_mrr_details", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_organization_plan_rank_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_organization_plan_rank_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.sql", "unique_id": "model.yoda.analytics___finance__zuora_organization_plan_rank_daily", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_plan_rank_daily", "analytics___finance__zuora_organization_plan_rank_daily"], "alias": "analytics___finance__zuora_organization_plan_rank_daily", "checksum": {"name": "sha256", "checksum": "acdd3df571788b2188955dea2e8460023792ec2941fec12f007425774b2fb2bf"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Aggregated daily table over zuora_subscription_mrr_over_time. \nWe are currently only showing is_core_plan = 1\nGranularity: date|organization_key|product_family|is_core_plan|plan_rank", "columns": {"date": {"name": "date", "description": "table date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "FK: platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "plan_name": {"name": "plan_name", "description": "based on platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "Reviews,SMS,ect", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_date": {"name": "from_date", "description": "plan start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "plan end date (if no end date then '2999-01-01' )", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_ss": {"name": "is_ss", "description": "based on platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "based on platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_core_plan": {"name": "is_core_plan", "description": "indicator = 1 if plan was found in platform__plan and category is not 'extensions'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opportunity_id_array": {"name": "opportunity_id_array", "description": "array of all opportunities associated to this plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "plan_rank": {"name": "plan_rank", "description": "the rank is between plans with the same is_core_plan indicator.\nORDER BY mrr_in_usd DESC, plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "plan_name_array": {"name": "plan_name_array", "description": "array of all plans order by rank that have been registered for this date,app_key,product_family", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "table", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "partition_by": ["date"]}, "created_at": 1700082638.6601305, "relation_name": "dev_dkruh1.analytics___finance__zuora_organization_plan_rank_daily", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partition_by=['date'])\n}}\n\n-- Import --\n\nWITH import_zuora_mrr_over_time AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_subscription_mrr_over_time') }}\n), \n\nimport_calendar AS (\nSELECT date \nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date < CURRENT_DATE\n),\n\nimport_platform__plan AS (\nSELECT * FROM {{ ref('analytics___platform__plan') }}\n),\n\nimport_product_plan_name_rank AS (\nSELECT * FROM {{ ref('analytics___platform_stg__product_plan_name_rank') }}\n), \n\n-- Logic --\n\nzuora_organization_daily AS (\nSELECT \n calendar.date,\n zuora.organization_key,\n plan.plan_id,\n zuora.provisioned_plan_name AS plan_name,\n zuora.product_family,\n zuora.from_date,\n zuora.to_date,\n plan.is_ss,\n plan.is_free,\n IF(plan.category_id = 4,0,1) AS is_core_plan,\n IFNULL(plan_rank.product_plan_rank,0) AS product_plan_rank,\n SUM(zuora.mrr_in_usd) AS mrr_in_usd,\n SORT_ARRAY(COLLECT_SET(zuora.sf_opportunity_id)) AS opportunity_id_array\nFROM import_zuora_mrr_over_time AS zuora\nINNER JOIN import_platform__plan AS plan\n ON zuora.provisioned_plan_name = plan.plan_name\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= zuora.from_date\n AND calendar.date < zuora.to_date\nLEFT JOIN import_product_plan_name_rank AS plan_rank\n ON zuora.provisioned_plan_name = plan_rank.plan_name\nGROUP BY 1,2,3,4,5,6,7,8,9,10,11\n),\n\nzuora_organization_daily_w_plan_rank AS (\nSELECT \n date,\n organization_key,\n plan_id,\n plan_name,\n product_family,\n from_date,\n to_date,\n is_ss,\n is_free,\n is_core_plan,\n opportunity_id_array,\n ROW_NUMBER() OVER(PARTITION BY date,organization_key,product_family,is_core_plan ORDER BY product_plan_rank DESC, mrr_in_usd DESC, plan_name) AS plan_rank\nFROM zuora_organization_daily\nWHERE is_core_plan = 1\n),\n\norganization_product_plan_daily AS (\nSELECT\n date,\n organization_key,\n plan_id,\n plan_name,\n product_family,\n from_date,\n to_date,\n is_ss,\n is_free,\n is_core_plan,\n opportunity_id_array,\n plan_rank,\n COLLECT_SET(plan_name) OVER(PARTITION BY date,organization_key,product_family,is_core_plan ORDER BY plan_rank ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS plan_name_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_daily_w_plan_rank\n)\n\nSELECT *\nFROM organization_product_plan_daily\n{% if target.name == 'dev' %}\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,30) AND DATE_SUB(CURRENT_DATE,1)\n{% endif %}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___platform__plan", "package": null, "version": null}, {"name": "analytics___platform_stg__product_plan_name_rank", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time", "model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___platform__plan", "model.yoda.analytics___platform_stg__product_plan_name_rank"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_zuora_mrr_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time\n), \n\nimport_calendar AS (\nSELECT date \nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date < CURRENT_DATE\n),\n\nimport_platform__plan AS (\nSELECT * FROM dev_dkruh1.analytics___platform__plan\n),\n\nimport_product_plan_name_rank AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__product_plan_name_rank\n), \n\n-- Logic --\n\nzuora_organization_daily AS (\nSELECT \n calendar.date,\n zuora.organization_key,\n plan.plan_id,\n zuora.provisioned_plan_name AS plan_name,\n zuora.product_family,\n zuora.from_date,\n zuora.to_date,\n plan.is_ss,\n plan.is_free,\n IF(plan.category_id = 4,0,1) AS is_core_plan,\n IFNULL(plan_rank.product_plan_rank,0) AS product_plan_rank,\n SUM(zuora.mrr_in_usd) AS mrr_in_usd,\n SORT_ARRAY(COLLECT_SET(zuora.sf_opportunity_id)) AS opportunity_id_array\nFROM import_zuora_mrr_over_time AS zuora\nINNER JOIN import_platform__plan AS plan\n ON zuora.provisioned_plan_name = plan.plan_name\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= zuora.from_date\n AND calendar.date < zuora.to_date\nLEFT JOIN import_product_plan_name_rank AS plan_rank\n ON zuora.provisioned_plan_name = plan_rank.plan_name\nGROUP BY 1,2,3,4,5,6,7,8,9,10,11\n),\n\nzuora_organization_daily_w_plan_rank AS (\nSELECT \n date,\n organization_key,\n plan_id,\n plan_name,\n product_family,\n from_date,\n to_date,\n is_ss,\n is_free,\n is_core_plan,\n opportunity_id_array,\n ROW_NUMBER() OVER(PARTITION BY date,organization_key,product_family,is_core_plan ORDER BY product_plan_rank DESC, mrr_in_usd DESC, plan_name) AS plan_rank\nFROM zuora_organization_daily\nWHERE is_core_plan = 1\n),\n\norganization_product_plan_daily AS (\nSELECT\n date,\n organization_key,\n plan_id,\n plan_name,\n product_family,\n from_date,\n to_date,\n is_ss,\n is_free,\n is_core_plan,\n opportunity_id_array,\n plan_rank,\n COLLECT_SET(plan_name) OVER(PARTITION BY date,organization_key,product_family,is_core_plan ORDER BY plan_rank ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS plan_name_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_daily_w_plan_rank\n)\n\nSELECT *\nFROM organization_product_plan_daily\n\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,30) AND DATE_SUB(CURRENT_DATE,1)\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_organization_product_group_mrr_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.sql", "unique_id": "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_group_mrr_monthly", "analytics___finance__zuora_organization_product_group_mrr_monthly"], "alias": "analytics___finance__zuora_organization_product_group_mrr_monthly", "checksum": {"name": "sha256", "checksum": "26914b4d780267bcbdaa029ea14bcb7feed1a81c81a1e6b47be3e6c3091b5ffb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: organization_product_month_id\naggregated table over zuora_organization_product_mrr_monthly of the recurring revenue from Zuora on an organization product family group monthly level.\nproduct_family_group = [Subscriptions|UGC|Email|SMS|Loyalty] UGC includes Reviews,VMS,Insignts", "columns": {"organization_product_month_id": {"name": "organization_product_month_id", "description": "TABLE PK: combination of month|organization_key|product_family_group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "aggregation month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "product_family_group = [Subscriptions|UGC|Email|SMS|Loyalty] - UGC includes Reviews,VMS,Insignts", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_main_plan_name": {"name": "opening_main_plan_name", "description": "closing_main_plan_name of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_main_plan_name": {"name": "closing_main_plan_name", "description": "End of month : \nIn Zuora, each product family can have several plans in each subscription (for example, 'Reviews - Enterprise' and 'Extra Seats (UGC)').\nWe will build an aggregated model on top of this table that will be on the level of [date, organization_key, product_family] and we will still want to be able to attach a single plan to each product family.\nThis field basically tells us what is the main plan for that organization_key and product_family in a specific date.\nThis is the order we used to determine the main plan:\n 1. provisioned plans before none provisioned plans\n 2. full service plans before self service plans\n 3. non extension plans before extension plans\n 4. Higher MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_main_plan_platform_category_name": {"name": "opening_main_plan_platform_category_name", "description": "closing_main_plan_platform_category_name of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_main_plan_platform_category_name": {"name": "closing_main_plan_platform_category_name", "description": "End of month :\nTells us what is the category (from analytics___platform__plan) of the main plan (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_is_main_plan_annual_billing": {"name": "opening_is_main_plan_annual_billing", "description": "closing_is_main_plan_annual_billing of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_main_plan_annual_billing": {"name": "closing_is_main_plan_annual_billing", "description": "End of month : \nIndicates if the main plan is annual billing (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_main_plan_self_service": {"name": "opening_is_main_plan_self_service", "description": "closing_is_main_plan_self_service of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_main_plan_self_service": {"name": "closing_is_main_plan_self_service", "description": "End of month : \nIndicates if the main plan is self service or full service (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_main_plan_name": {"name": "within_month_main_plan_name", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_main_plan_name = main_plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_main_plan_platform_category_name": {"name": "within_month_main_plan_platform_category_name", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_main_plan_platform_category_name = main_plan_platform_category_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_is_main_plan_annual_billing": {"name": "within_month_is_main_plan_annual_billing", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_annual_billing = is_main_plan_annual_billing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_main_plan_self_service": {"name": "within_month_is_main_plan_self_service", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_self_service = is_main_plan_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_mrr_in_usd": {"name": "opening_mrr_in_usd", "description": "closing_mrr_in_usd of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_mrr_in_usd": {"name": "closing_mrr_in_usd", "description": "End of month product mrr_in_original_currency / (coverstion rate to USD)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "within_month_mrr_in_usd": {"name": "within_month_mrr_in_usd", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_mrr_in_usd = mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_effective_mrr_in_usd": {"name": "opening_effective_mrr_in_usd", "description": "closing_effective_mrr of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_effective_mrr_in_usd": {"name": "closing_effective_mrr_in_usd", "description": "End of month MRR that takes into account the free months effect.\nThe formula goes as follows:\n 1. IF free months = 0 THEN no change\n 2. IF free months > 0 THEN Effective MRR = MRR*(Original Contract Duration/(Original Contract Duration + Free Months))", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "within_month_effective_mrr_in_usd": {"name": "within_month_effective_mrr_in_usd", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_effective_mrr = effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_free_month_mrr_impact": {"name": "opening_free_month_mrr_impact", "description": "closing_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_free_month_mrr_impact": {"name": "closing_free_month_mrr_impact", "description": "End of month sales_free_month_mrr_impact + csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_free_month_mrr_impact": {"name": "delta_free_month_mrr_impact", "description": "closing - opening free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_sales_free_month_mrr_impact": {"name": "opening_sales_free_month_mrr_impact", "description": "closing_sales_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_sales_free_month_mrr_impact": {"name": "closing_sales_free_month_mrr_impact", "description": "End of month MRR that changed due to sales free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_sales_free_month_mrr_impact": {"name": "delta_sales_free_month_mrr_impact", "description": "closing - opening sales_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_csm_free_month_mrr_impact": {"name": "opening_csm_free_month_mrr_impact", "description": "closing_csm_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_csm_free_month_mrr_impact": {"name": "closing_csm_free_month_mrr_impact", "description": "End of month MRR that changed due to CSM free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_csm_free_month_mrr_impact": {"name": "delta_csm_free_month_mrr_impact", "description": "closing - opening csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "adjusted_revenue_in_usd": {"name": "adjusted_revenue_in_usd", "description": "effective_mrr X number of subscription days in month. \nHere effective_mrr = COALESCE(opening,closing,within_month)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "catch_up_revenue_in_usd": {"name": "catch_up_revenue_in_usd", "description": "free_month_catch_up_revenue + lost_after_won_catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_after_won_catch_up_revenue_in_usd": {"name": "lost_after_won_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the LAW only affect the revenue from the LAW recognition month on.\nIn order to catch the entire LAW impact, we do a catch-up calculation:\n lost_after_won_catch_up_revenue = delta_lost_after_won_effective_mrr X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_month_catch_up_revenue_in_usd": {"name": "free_month_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the given free months only affect the revenue from the grant month on.\nIn order to catch the entire free months impact, we do a catch-up calculation:\n free_month_catch_up_revenue = delta_free_month_mrr_impact X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "approximate_revenue_in_usd": {"name": "approximate_revenue_in_usd", "description": "The approximate revenue is mainly for FP&A to try and bridge between our revenue numbers and accounting revenue numbers.\napproximate_revenue = adjusted_revenue + catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_lost_after_won_effective_mrr": {"name": "opening_lost_after_won_effective_mrr", "description": "closing_lost_after_won_effective_mrr of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_lost_after_won_effective_mrr": {"name": "closing_lost_after_won_effective_mrr", "description": "if is_lost_after_won = 1 then closing_lost_after_won_effective_mrr = effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_lost_after_won_effective_mrr": {"name": "delta_lost_after_won_effective_mrr", "description": "closing - opening lost_after_won_effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_after_won_within_month_effective_mrr": {"name": "lost_after_won_within_month_effective_mrr", "description": "IF is_terminated_subscription_within_first_month = 1 AND is_lost_after_won = 1 THEN lost_after_won_within_month_effective_mrr = within_month_effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "from_date": {"name": "from_date", "description": "MIN of all the products from_date\nThe subscription start date\n* In extreme cases it could also be a specific subscription version start date (if the subscription changed in the middle of the contract)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "MAX of all the products to_date\nThe subscription end date\n* For active subscriptions it will be '2999-01-01'\n** In extreme cases it could also be a specific subscription version end date (if the subscription changed in the middle of the contract)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "renewal_date": {"name": "renewal_date", "description": "MAX of all the products renewal_date\nrenewal_date = effective_end_date for HT subscriptions (term_type = 'TERMED' in Zuora)\nrenewal_date = NULL for all other cases", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_terminated_subscription_within_first_month": {"name": "is_terminated_subscription_within_first_month", "description": "subscription that started and ended in the same month and will not have opening or closing values", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_terminated_subscription": {"name": "is_terminated_subscription", "description": "indicator = 1 if the organization started the month with effective_mrr_in_usd > 0\nand ended the month with effective_mrr_in_usd = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_in_term_renewal": {"name": "is_in_term_renewal", "description": "Indicates if the renewal_opportunity_type = 'In Term Renewal'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "indicates if the subscription is lost after won or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "original_contract_duration": {"name": "original_contract_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "product_family_and_original_contract_duration": {"name": "product_family_and_original_contract_duration", "description": "array of product_family and original_contract_duration", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "account_id_array": {"name": "account_id_array", "description": "Array of Zuora account ids", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_array": {"name": "sf_opportunity_id_array", "description": "Array of sf_opportunity_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_account_id_array": {"name": "sf_account_id_array", "description": "Array of sf_account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "plan_name_array": {"name": "plan_name_array", "description": "Array of plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "provisioned_plan_name_array": {"name": "provisioned_plan_name_array", "description": "Array of provisioned_plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_and_free_month_cnt_array": {"name": "sf_opportunity_id_and_free_month_cnt_array", "description": "Array of sf_opportunity_id_and_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_and_csm_free_month_cnt_array": {"name": "sf_opportunity_id_and_csm_free_month_cnt_array", "description": "Array of sf_opportunity_id_and_csm_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_and_sales_free_month_cnt_array": {"name": "sf_opportunity_id_and_sales_free_month_cnt_array", "description": "Array of sf_opportunity_id_and_sales_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_version_array": {"name": "subscription_name_and_version_array", "description": "Array of subscription_name_and_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_id_and_product_id_array": {"name": "subscription_id_and_product_id_array", "description": "Array of subscription_id_and_product_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_is_expired_array": {"name": "subscription_name_and_is_expired_array", "description": "Array of subscription_name_and_is_expired", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_is_staggered_array": {"name": "subscription_name_and_is_staggered_array", "description": "Array of subscription_name_and_is_staggered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_is_law_array": {"name": "subscription_name_and_is_law_array", "description": "Array of subscription_name_and_is_law", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_law_reason_array": {"name": "subscription_name_and_law_reason_array", "description": "Array of subscription_name_and_law_reason", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_status_array": {"name": "subscription_name_and_status_array", "description": "Array of subscription_name_and_status", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082638.7388234, "relation_name": "dev_dkruh1.analytics___finance__zuora_organization_product_group_mrr_monthly", "raw_code": "-- Import --\n\nWITH import_zuora_organization_product_mrr_monthly AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_organization_product_mrr_monthly') }}\n),\n\n-- Logic --\n\norganization_product_main_group_rank AS (\nSELECT \n month,\n organization_key,\n IF(is_ugc = 1,'UGC',product_family) AS product_family_group,\n SHA2(CONCAT(month,organization_key,IF(is_ugc = 1,'UGC',product_family)),256) AS organization_product_month_id,\n opening_main_plan_name,\n closing_main_plan_name,\n opening_main_plan_platform_category_name,\n closing_main_plan_platform_category_name,\n opening_is_main_plan_annual_billing,\n closing_is_main_plan_annual_billing,\n opening_is_main_plan_self_service,\n closing_is_main_plan_self_service,\n within_month_main_plan_name,\n within_month_main_plan_platform_category_name,\n within_month_is_main_plan_annual_billing,\n within_month_is_main_plan_self_service\n FROM import_zuora_organization_product_mrr_monthly\n WHERE product_group_rank = 1\n AND is_product_group_terminated_within_month = is_terminated_subscription_within_first_month\n),\n\norganization_product_group_mrr_agg AS (\nSELECT \n month,\n organization_key,\n IF(is_ugc = 1,'UGC',product_family) AS product_family_group,\n SHA2(CONCAT(month,organization_key,IF(is_ugc = 1,'UGC',product_family)),256) AS organization_product_month_id,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(within_month_mrr_in_usd) AS within_month_mrr_in_usd,\n SUM(opening_effective_mrr_in_usd) AS opening_effective_mrr_in_usd,\n SUM(closing_effective_mrr_in_usd) AS closing_effective_mrr_in_usd,\n SUM(within_month_effective_mrr_in_usd) AS within_month_effective_mrr_in_usd,\n SUM(opening_free_month_mrr_impact) AS opening_free_month_mrr_impact,\n SUM(closing_free_month_mrr_impact) AS closing_free_month_mrr_impact,\n SUM(delta_free_month_mrr_impact) AS delta_free_month_mrr_impact,\n SUM(opening_sales_free_month_mrr_impact) AS opening_sales_free_month_mrr_impact,\n SUM(closing_sales_free_month_mrr_impact) AS closing_sales_free_month_mrr_impact,\n SUM(delta_sales_free_month_mrr_impact) AS delta_sales_free_month_mrr_impact,\n SUM(opening_csm_free_month_mrr_impact) AS opening_csm_free_month_mrr_impact,\n SUM(closing_csm_free_month_mrr_impact) AS closing_csm_free_month_mrr_impact,\n SUM(delta_csm_free_month_mrr_impact) AS delta_csm_free_month_mrr_impact,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(catch_up_revenue_in_usd) AS catch_up_revenue_in_usd,\n SUM(lost_after_won_catch_up_revenue_in_usd) AS lost_after_won_catch_up_revenue_in_usd,\n SUM(free_month_catch_up_revenue_in_usd) AS free_month_catch_up_revenue_in_usd,\n SUM(approximate_revenue_in_usd) AS approximate_revenue_in_usd,\n SUM(opening_lost_after_won_effective_mrr) AS opening_lost_after_won_effective_mrr,\n SUM(closing_lost_after_won_effective_mrr) AS closing_lost_after_won_effective_mrr,\n SUM(delta_lost_after_won_effective_mrr) AS delta_lost_after_won_effective_mrr,\n SUM(lost_after_won_within_month_effective_mrr) AS lost_after_won_within_month_effective_mrr,\n MIN(from_date) AS from_date,\n MAX(to_date) AS to_date,\n MAX(renewal_date) AS renewal_date,\n MIN(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n MIN(is_terminated_subscription) AS is_terminated_subscription,\n MAX(is_staggered_subscription) AS is_staggered_subscription,\n MAX(is_in_term_renewal) AS is_in_term_renewal,\n MAX(is_lost_after_won) AS is_lost_after_won,\n MAX(original_contract_duration) AS original_contract_duration,\n SORT_ARRAY(COLLECT_SET(CONCAT(product_family,' : ',original_contract_duration))) AS product_family_and_original_contract_duration,\n FLATTEN(COLLECT_SET(account_id_array)) AS account_id_array,\n FLATTEN(COLLECT_SET(sf_opportunity_id_array)) AS sf_opportunity_id_array,\n FLATTEN(COLLECT_SET(sf_account_id_array)) AS sf_account_id_array,\n FLATTEN(COLLECT_SET(plan_name_array)) AS plan_name_array,\n FLATTEN(COLLECT_SET(provisioned_plan_name_array)) AS provisioned_plan_name_array,\n FLATTEN(COLLECT_SET(sf_opportunity_id_and_free_month_cnt_array)) AS sf_opportunity_id_and_free_month_cnt_array,\n FLATTEN(COLLECT_SET(sf_opportunity_id_and_csm_free_month_cnt_array)) AS sf_opportunity_id_and_csm_free_month_cnt_array,\n FLATTEN(COLLECT_SET(sf_opportunity_id_and_sales_free_month_cnt_array)) AS sf_opportunity_id_and_sales_free_month_cnt_array,\n FLATTEN(COLLECT_SET(subscription_name_and_version_array)) AS subscription_name_and_version_array,\n FLATTEN(COLLECT_SET(subscription_id_and_product_id_array)) AS subscription_id_and_product_id_array,\n FLATTEN(COLLECT_SET(subscription_name_and_is_expired_array)) AS subscription_name_and_is_expired_array,\n FLATTEN(COLLECT_SET(subscription_name_and_is_staggered_array)) AS subscription_name_and_is_staggered_array,\n FLATTEN(COLLECT_SET(subscription_name_and_is_law_array)) AS subscription_name_and_is_law_array,\n FLATTEN(COLLECT_SET(subscription_name_and_law_reason_array)) AS subscription_name_and_law_reason_array,\n FLATTEN(COLLECT_SET(subscription_name_and_status_array)) AS subscription_name_and_status_array\nFROM import_zuora_organization_product_mrr_monthly\nWHERE is_product_group_terminated_within_month = is_terminated_subscription_within_first_month\nGROUP BY 1,2,3,4\n),\n\norganization_product_group_mrr_monthly_res AS (\nSELECT \n main.organization_product_month_id,\n main.month,\n main.organization_key,\n main.product_family_group,\n main.opening_main_plan_name,\n main.closing_main_plan_name,\n main.opening_main_plan_platform_category_name,\n main.closing_main_plan_platform_category_name,\n main.opening_is_main_plan_annual_billing,\n main.closing_is_main_plan_annual_billing,\n main.opening_is_main_plan_self_service,\n main.closing_is_main_plan_self_service,\n main.within_month_main_plan_name,\n main.within_month_main_plan_platform_category_name,\n main.within_month_is_main_plan_annual_billing,\n main.within_month_is_main_plan_self_service,\n agg.opening_mrr_in_usd,\n agg.closing_mrr_in_usd,\n agg.within_month_mrr_in_usd,\n agg.opening_effective_mrr_in_usd,\n agg.closing_effective_mrr_in_usd,\n agg.within_month_effective_mrr_in_usd,\n agg.opening_free_month_mrr_impact,\n agg.closing_free_month_mrr_impact,\n agg.delta_free_month_mrr_impact,\n agg.opening_sales_free_month_mrr_impact,\n agg.closing_sales_free_month_mrr_impact,\n agg.delta_sales_free_month_mrr_impact,\n agg.opening_csm_free_month_mrr_impact,\n agg.closing_csm_free_month_mrr_impact,\n agg.delta_csm_free_month_mrr_impact,\n agg.adjusted_revenue_in_usd,\n agg.catch_up_revenue_in_usd,\n agg.lost_after_won_catch_up_revenue_in_usd,\n agg.free_month_catch_up_revenue_in_usd,\n agg.approximate_revenue_in_usd,\n agg.opening_lost_after_won_effective_mrr,\n agg.closing_lost_after_won_effective_mrr,\n agg.delta_lost_after_won_effective_mrr,\n agg.lost_after_won_within_month_effective_mrr,\n agg.from_date,\n agg.to_date,\n agg.renewal_date,\n agg.is_terminated_subscription_within_first_month,\n agg.is_terminated_subscription,\n agg.is_staggered_subscription,\n agg.is_in_term_renewal,\n agg.is_lost_after_won,\n agg.original_contract_duration,\n agg.product_family_and_original_contract_duration,\n agg.account_id_array,\n agg.sf_opportunity_id_array,\n agg.sf_account_id_array,\n agg.plan_name_array,\n agg.provisioned_plan_name_array,\n agg.sf_opportunity_id_and_free_month_cnt_array,\n agg.sf_opportunity_id_and_csm_free_month_cnt_array,\n agg.sf_opportunity_id_and_sales_free_month_cnt_array,\n agg.subscription_name_and_version_array,\n agg.subscription_id_and_product_id_array,\n agg.subscription_name_and_is_expired_array,\n agg.subscription_name_and_is_staggered_array,\n agg.subscription_name_and_is_law_array,\n agg.subscription_name_and_law_reason_array,\n agg.subscription_name_and_status_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_main_group_rank AS main\nINNER JOIN organization_product_group_mrr_agg AS agg\n ON main.organization_product_month_id = agg.organization_product_month_id\n)\n\nSELECT *\nFROM organization_product_group_mrr_monthly_res", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_zuora_organization_product_mrr_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_organization_product_mrr_monthly\n),\n\n-- Logic --\n\norganization_product_main_group_rank AS (\nSELECT \n month,\n organization_key,\n IF(is_ugc = 1,'UGC',product_family) AS product_family_group,\n SHA2(CONCAT(month,organization_key,IF(is_ugc = 1,'UGC',product_family)),256) AS organization_product_month_id,\n opening_main_plan_name,\n closing_main_plan_name,\n opening_main_plan_platform_category_name,\n closing_main_plan_platform_category_name,\n opening_is_main_plan_annual_billing,\n closing_is_main_plan_annual_billing,\n opening_is_main_plan_self_service,\n closing_is_main_plan_self_service,\n within_month_main_plan_name,\n within_month_main_plan_platform_category_name,\n within_month_is_main_plan_annual_billing,\n within_month_is_main_plan_self_service\n FROM import_zuora_organization_product_mrr_monthly\n WHERE product_group_rank = 1\n AND is_product_group_terminated_within_month = is_terminated_subscription_within_first_month\n),\n\norganization_product_group_mrr_agg AS (\nSELECT \n month,\n organization_key,\n IF(is_ugc = 1,'UGC',product_family) AS product_family_group,\n SHA2(CONCAT(month,organization_key,IF(is_ugc = 1,'UGC',product_family)),256) AS organization_product_month_id,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(within_month_mrr_in_usd) AS within_month_mrr_in_usd,\n SUM(opening_effective_mrr_in_usd) AS opening_effective_mrr_in_usd,\n SUM(closing_effective_mrr_in_usd) AS closing_effective_mrr_in_usd,\n SUM(within_month_effective_mrr_in_usd) AS within_month_effective_mrr_in_usd,\n SUM(opening_free_month_mrr_impact) AS opening_free_month_mrr_impact,\n SUM(closing_free_month_mrr_impact) AS closing_free_month_mrr_impact,\n SUM(delta_free_month_mrr_impact) AS delta_free_month_mrr_impact,\n SUM(opening_sales_free_month_mrr_impact) AS opening_sales_free_month_mrr_impact,\n SUM(closing_sales_free_month_mrr_impact) AS closing_sales_free_month_mrr_impact,\n SUM(delta_sales_free_month_mrr_impact) AS delta_sales_free_month_mrr_impact,\n SUM(opening_csm_free_month_mrr_impact) AS opening_csm_free_month_mrr_impact,\n SUM(closing_csm_free_month_mrr_impact) AS closing_csm_free_month_mrr_impact,\n SUM(delta_csm_free_month_mrr_impact) AS delta_csm_free_month_mrr_impact,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(catch_up_revenue_in_usd) AS catch_up_revenue_in_usd,\n SUM(lost_after_won_catch_up_revenue_in_usd) AS lost_after_won_catch_up_revenue_in_usd,\n SUM(free_month_catch_up_revenue_in_usd) AS free_month_catch_up_revenue_in_usd,\n SUM(approximate_revenue_in_usd) AS approximate_revenue_in_usd,\n SUM(opening_lost_after_won_effective_mrr) AS opening_lost_after_won_effective_mrr,\n SUM(closing_lost_after_won_effective_mrr) AS closing_lost_after_won_effective_mrr,\n SUM(delta_lost_after_won_effective_mrr) AS delta_lost_after_won_effective_mrr,\n SUM(lost_after_won_within_month_effective_mrr) AS lost_after_won_within_month_effective_mrr,\n MIN(from_date) AS from_date,\n MAX(to_date) AS to_date,\n MAX(renewal_date) AS renewal_date,\n MIN(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n MIN(is_terminated_subscription) AS is_terminated_subscription,\n MAX(is_staggered_subscription) AS is_staggered_subscription,\n MAX(is_in_term_renewal) AS is_in_term_renewal,\n MAX(is_lost_after_won) AS is_lost_after_won,\n MAX(original_contract_duration) AS original_contract_duration,\n SORT_ARRAY(COLLECT_SET(CONCAT(product_family,' : ',original_contract_duration))) AS product_family_and_original_contract_duration,\n FLATTEN(COLLECT_SET(account_id_array)) AS account_id_array,\n FLATTEN(COLLECT_SET(sf_opportunity_id_array)) AS sf_opportunity_id_array,\n FLATTEN(COLLECT_SET(sf_account_id_array)) AS sf_account_id_array,\n FLATTEN(COLLECT_SET(plan_name_array)) AS plan_name_array,\n FLATTEN(COLLECT_SET(provisioned_plan_name_array)) AS provisioned_plan_name_array,\n FLATTEN(COLLECT_SET(sf_opportunity_id_and_free_month_cnt_array)) AS sf_opportunity_id_and_free_month_cnt_array,\n FLATTEN(COLLECT_SET(sf_opportunity_id_and_csm_free_month_cnt_array)) AS sf_opportunity_id_and_csm_free_month_cnt_array,\n FLATTEN(COLLECT_SET(sf_opportunity_id_and_sales_free_month_cnt_array)) AS sf_opportunity_id_and_sales_free_month_cnt_array,\n FLATTEN(COLLECT_SET(subscription_name_and_version_array)) AS subscription_name_and_version_array,\n FLATTEN(COLLECT_SET(subscription_id_and_product_id_array)) AS subscription_id_and_product_id_array,\n FLATTEN(COLLECT_SET(subscription_name_and_is_expired_array)) AS subscription_name_and_is_expired_array,\n FLATTEN(COLLECT_SET(subscription_name_and_is_staggered_array)) AS subscription_name_and_is_staggered_array,\n FLATTEN(COLLECT_SET(subscription_name_and_is_law_array)) AS subscription_name_and_is_law_array,\n FLATTEN(COLLECT_SET(subscription_name_and_law_reason_array)) AS subscription_name_and_law_reason_array,\n FLATTEN(COLLECT_SET(subscription_name_and_status_array)) AS subscription_name_and_status_array\nFROM import_zuora_organization_product_mrr_monthly\nWHERE is_product_group_terminated_within_month = is_terminated_subscription_within_first_month\nGROUP BY 1,2,3,4\n),\n\norganization_product_group_mrr_monthly_res AS (\nSELECT \n main.organization_product_month_id,\n main.month,\n main.organization_key,\n main.product_family_group,\n main.opening_main_plan_name,\n main.closing_main_plan_name,\n main.opening_main_plan_platform_category_name,\n main.closing_main_plan_platform_category_name,\n main.opening_is_main_plan_annual_billing,\n main.closing_is_main_plan_annual_billing,\n main.opening_is_main_plan_self_service,\n main.closing_is_main_plan_self_service,\n main.within_month_main_plan_name,\n main.within_month_main_plan_platform_category_name,\n main.within_month_is_main_plan_annual_billing,\n main.within_month_is_main_plan_self_service,\n agg.opening_mrr_in_usd,\n agg.closing_mrr_in_usd,\n agg.within_month_mrr_in_usd,\n agg.opening_effective_mrr_in_usd,\n agg.closing_effective_mrr_in_usd,\n agg.within_month_effective_mrr_in_usd,\n agg.opening_free_month_mrr_impact,\n agg.closing_free_month_mrr_impact,\n agg.delta_free_month_mrr_impact,\n agg.opening_sales_free_month_mrr_impact,\n agg.closing_sales_free_month_mrr_impact,\n agg.delta_sales_free_month_mrr_impact,\n agg.opening_csm_free_month_mrr_impact,\n agg.closing_csm_free_month_mrr_impact,\n agg.delta_csm_free_month_mrr_impact,\n agg.adjusted_revenue_in_usd,\n agg.catch_up_revenue_in_usd,\n agg.lost_after_won_catch_up_revenue_in_usd,\n agg.free_month_catch_up_revenue_in_usd,\n agg.approximate_revenue_in_usd,\n agg.opening_lost_after_won_effective_mrr,\n agg.closing_lost_after_won_effective_mrr,\n agg.delta_lost_after_won_effective_mrr,\n agg.lost_after_won_within_month_effective_mrr,\n agg.from_date,\n agg.to_date,\n agg.renewal_date,\n agg.is_terminated_subscription_within_first_month,\n agg.is_terminated_subscription,\n agg.is_staggered_subscription,\n agg.is_in_term_renewal,\n agg.is_lost_after_won,\n agg.original_contract_duration,\n agg.product_family_and_original_contract_duration,\n agg.account_id_array,\n agg.sf_opportunity_id_array,\n agg.sf_account_id_array,\n agg.plan_name_array,\n agg.provisioned_plan_name_array,\n agg.sf_opportunity_id_and_free_month_cnt_array,\n agg.sf_opportunity_id_and_csm_free_month_cnt_array,\n agg.sf_opportunity_id_and_sales_free_month_cnt_array,\n agg.subscription_name_and_version_array,\n agg.subscription_id_and_product_id_array,\n agg.subscription_name_and_is_expired_array,\n agg.subscription_name_and_is_staggered_array,\n agg.subscription_name_and_is_law_array,\n agg.subscription_name_and_law_reason_array,\n agg.subscription_name_and_status_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_main_group_rank AS main\nINNER JOIN organization_product_group_mrr_agg AS agg\n ON main.organization_product_month_id = agg.organization_product_month_id\n)\n\nSELECT *\nFROM organization_product_group_mrr_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_organization_product_mrr_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_organization_product_mrr_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.sql", "unique_id": "model.yoda.analytics___finance__zuora_organization_product_mrr_daily", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_daily", "analytics___finance__zuora_organization_product_mrr_daily"], "alias": "analytics___finance__zuora_organization_product_mrr_daily", "checksum": {"name": "sha256", "checksum": "976cfbf17618e16c123168d28b7317f9cd6cec493e96ce0bc4ee6214a5f08c01"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [date, organization_key, product_family]\nModeled table of the recurring revenue from Zuora on a daily level.", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_plan_name": {"name": "main_plan_name", "description": "In Zuora, each product family can have several plans in each subscription (for example, 'Reviews - Enterprise' and 'Extra Seats (UGC)').\nWe will build an aggregated model on top of this table that will be on the level of [date, organization_key, product_family] and we will still want to be able to attach a single plan to each product family.\nThis field basically tells us what is the main plan for that organization_key and product_family in a specific date.\nThis is the order we used to determine the main plan:\n 1. provisioned plans before none provisioned plans\n 2. full service plans before self service plans\n 3. non extension plans before extension plans\n 4. Higher MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_self_service": {"name": "is_self_service", "description": "term type = EVERGREEN (will remain =1 if subscription chanes to TERMED)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_annual_billing": {"name": "is_annual_billing", "description": "Indicates if the billing period is annual.\nFor HT it will always be 1, for LT it will be 1 if the customer subscribed to annual package.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "main_plan_platform_category_name": {"name": "main_plan_platform_category_name", "description": "Tells us what is the category (from analytics___platform__plan) of the main plan (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_mrr_in_usd": {"name": "original_mrr_in_usd", "description": "The original MRR (before the free month adjustment)\n original_mrr_in_usd = effective_mrr_in_usd - free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "effective_mrr_in_usd": {"name": "effective_mrr_in_usd", "description": "MRR that takes into account the free months effect.\nThe formula goes as follows:\n 1. IF free months = 0 THEN no change\n 2. IF free months > 0 THEN Effective MRR = MRR*(Original Contract Duration/(Original Contract Duration + Free Months))", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_month_mrr_impact": {"name": "free_month_mrr_impact", "description": "The amount of MRR that changed due to free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_free_month_mrr_impact": {"name": "sales_free_month_mrr_impact", "description": "The amount of MRR that changed due to sales free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "csm_free_month_mrr_impact": {"name": "csm_free_month_mrr_impact", "description": "The amount of MRR that changed due to CSM free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_after_won_effective_mrr_in_usd": {"name": "lost_after_won_effective_mrr_in_usd", "description": "If the subscription is LAW then the lost_after_won_effective_mrr = effective_mrr else zero", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_self_service_array": {"name": "is_self_service_array", "description": "Array of is_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "is_annual_billing_array": {"name": "is_annual_billing_array", "description": "Array of is_annual_billing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "indicates if the subscription is lost after won or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won_array": {"name": "is_lost_after_won_array", "description": "Array of is_lost_after_won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "original_contract_duration": {"name": "original_contract_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "account_id_array": {"name": "account_id_array", "description": "Array of Zuora account ids", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_array": {"name": "sf_opportunity_id_array", "description": "Array of sf_opportunity_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_account_id_array": {"name": "sf_account_id_array", "description": "Array of sf_account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "plan_name_array": {"name": "plan_name_array", "description": "Array of plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "provisioned_plan_name_array": {"name": "provisioned_plan_name_array", "description": "Array of provisioned_plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_and_free_month_cnt_array": {"name": "sf_opportunity_id_and_free_month_cnt_array", "description": "Array of sf_opportunity_id_and_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_and_csm_free_month_cnt_array": {"name": "sf_opportunity_id_and_csm_free_month_cnt_array", "description": "Array of sf_opportunity_id_and_csm_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_and_sales_free_month_cnt_array": {"name": "sf_opportunity_id_and_sales_free_month_cnt_array", "description": "Array of sf_opportunity_id_and_sales_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_version_array": {"name": "subscription_name_and_version_array", "description": "Array of subscription_name_and_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_id_and_product_id_array": {"name": "subscription_id_and_product_id_array", "description": "Array of subscription_id_and_product_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_is_expired_array": {"name": "subscription_name_and_is_expired_array", "description": "Array of subscription_name_and_is_expired", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_is_staggered_array": {"name": "subscription_name_and_is_staggered_array", "description": "Array of subscription_name_and_is_staggered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_is_law_array": {"name": "subscription_name_and_is_law_array", "description": "Array of subscription_name_and_is_law", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_law_reason_array": {"name": "subscription_name_and_law_reason_array", "description": "Array of subscription_name_and_law_reason", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_status_array": {"name": "subscription_name_and_status_array", "description": "Array of subscription_name_and_status", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082638.813101, "relation_name": "dev_dkruh1.analytics___finance__zuora_organization_product_mrr_daily", "raw_code": "-- Import --\n\nWITH import_zuora_subscription_mrr_daily AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_subscription_mrr_daily') }}\n),\n\n-- Logic --\n\nzuora_organization_product_mrr_daily AS (\nSELECT\n date,\n organization_key,\n product_family,\n main_plan_name,\n is_main_plan_self_service AS is_self_service,\n is_main_plan_annual_billing AS is_annual_billing,\n main_plan_platform_category_name,\n SUM(mrr_in_usd) AS original_mrr_in_usd,\n SUM(effective_mrr) AS effective_mrr_in_usd,\n SUM(free_month_mrr_impact) AS free_month_mrr_impact,\n SUM(sales_free_month_mrr_impact) AS sales_free_month_mrr_impact,\n SUM(csm_free_month_mrr_impact) AS csm_free_month_mrr_impact,\n SUM(effective_mrr*is_lost_after_won) AS lost_after_won_effective_mrr_in_usd,\n SORT_ARRAY(COLLECT_SET(is_self_service)) AS is_self_service_array,\n SORT_ARRAY(COLLECT_SET(is_annual_billing)) AS is_annual_billing_array,\n MIN(is_lost_after_won) AS is_lost_after_won,\n SORT_ARRAY(COLLECT_SET(is_lost_after_won)) AS is_lost_after_won_array,\n MAX(original_contract_duration) AS original_contract_duration,\n SORT_ARRAY(COLLECT_SET(account_id)) AS account_id_array,\n SORT_ARRAY(COLLECT_SET(sf_opportunity_id)) AS sf_opportunity_id_array,\n SORT_ARRAY(COLLECT_SET(sf_account_id)) AS sf_account_id_array,\n SORT_ARRAY(COLLECT_SET(plan_name)) AS plan_name_array,\n SORT_ARRAY(COLLECT_SET(provisioned_plan_name)) AS provisioned_plan_name_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',free_month_cnt))) AS sf_opportunity_id_and_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',csm_free_month_cnt))) AS sf_opportunity_id_and_csm_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',sales_free_month_cnt))) AS sf_opportunity_id_and_sales_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',version))) AS subscription_name_and_version_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_id,' : ',product_id))) AS subscription_id_and_product_id_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_expired_subscription))) AS subscription_name_and_is_expired_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_staggered_subscription))) AS subscription_name_and_is_staggered_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_lost_after_won))) AS subscription_name_and_is_law_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',lost_after_won_reason))) AS subscription_name_and_law_reason_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',subscription_status))) AS subscription_name_and_status_array\nFROM import_zuora_subscription_mrr_daily\nWHERE is_lost_after_won_per_org_product = is_lost_after_won\nGROUP BY 1,2,3,4,5,6,7\n\n),\n\nzuora_subscription_effective_mrr_daily_w_timestamp AS (\nSELECT\n date,\n organization_key,\n product_family,\n main_plan_name,\n is_self_service,\n is_annual_billing,\n main_plan_platform_category_name,\n original_mrr_in_usd,\n effective_mrr_in_usd,\n free_month_mrr_impact,\n sales_free_month_mrr_impact,\n csm_free_month_mrr_impact,\n lost_after_won_effective_mrr_in_usd,\n is_self_service_array,\n is_annual_billing_array,\n is_lost_after_won,\n is_lost_after_won_array,\n original_contract_duration,\n account_id_array,\n sf_opportunity_id_array,\n sf_account_id_array,\n plan_name_array,\n provisioned_plan_name_array,\n sf_opportunity_id_and_free_month_cnt_array,\n sf_opportunity_id_and_csm_free_month_cnt_array,\n sf_opportunity_id_and_sales_free_month_cnt_array,\n subscription_name_and_version_array,\n subscription_id_and_product_id_array,\n subscription_name_and_is_expired_array,\n subscription_name_and_is_staggered_array,\n subscription_name_and_is_law_array,\n subscription_name_and_law_reason_array,\n subscription_name_and_status_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_product_mrr_daily\n)\n\nSELECT *\nFROM zuora_subscription_effective_mrr_daily_w_timestamp", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_zuora_subscription_mrr_daily AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily\n),\n\n-- Logic --\n\nzuora_organization_product_mrr_daily AS (\nSELECT\n date,\n organization_key,\n product_family,\n main_plan_name,\n is_main_plan_self_service AS is_self_service,\n is_main_plan_annual_billing AS is_annual_billing,\n main_plan_platform_category_name,\n SUM(mrr_in_usd) AS original_mrr_in_usd,\n SUM(effective_mrr) AS effective_mrr_in_usd,\n SUM(free_month_mrr_impact) AS free_month_mrr_impact,\n SUM(sales_free_month_mrr_impact) AS sales_free_month_mrr_impact,\n SUM(csm_free_month_mrr_impact) AS csm_free_month_mrr_impact,\n SUM(effective_mrr*is_lost_after_won) AS lost_after_won_effective_mrr_in_usd,\n SORT_ARRAY(COLLECT_SET(is_self_service)) AS is_self_service_array,\n SORT_ARRAY(COLLECT_SET(is_annual_billing)) AS is_annual_billing_array,\n MIN(is_lost_after_won) AS is_lost_after_won,\n SORT_ARRAY(COLLECT_SET(is_lost_after_won)) AS is_lost_after_won_array,\n MAX(original_contract_duration) AS original_contract_duration,\n SORT_ARRAY(COLLECT_SET(account_id)) AS account_id_array,\n SORT_ARRAY(COLLECT_SET(sf_opportunity_id)) AS sf_opportunity_id_array,\n SORT_ARRAY(COLLECT_SET(sf_account_id)) AS sf_account_id_array,\n SORT_ARRAY(COLLECT_SET(plan_name)) AS plan_name_array,\n SORT_ARRAY(COLLECT_SET(provisioned_plan_name)) AS provisioned_plan_name_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',free_month_cnt))) AS sf_opportunity_id_and_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',csm_free_month_cnt))) AS sf_opportunity_id_and_csm_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',sales_free_month_cnt))) AS sf_opportunity_id_and_sales_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',version))) AS subscription_name_and_version_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_id,' : ',product_id))) AS subscription_id_and_product_id_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_expired_subscription))) AS subscription_name_and_is_expired_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_staggered_subscription))) AS subscription_name_and_is_staggered_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_lost_after_won))) AS subscription_name_and_is_law_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',lost_after_won_reason))) AS subscription_name_and_law_reason_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',subscription_status))) AS subscription_name_and_status_array\nFROM import_zuora_subscription_mrr_daily\nWHERE is_lost_after_won_per_org_product = is_lost_after_won\nGROUP BY 1,2,3,4,5,6,7\n\n),\n\nzuora_subscription_effective_mrr_daily_w_timestamp AS (\nSELECT\n date,\n organization_key,\n product_family,\n main_plan_name,\n is_self_service,\n is_annual_billing,\n main_plan_platform_category_name,\n original_mrr_in_usd,\n effective_mrr_in_usd,\n free_month_mrr_impact,\n sales_free_month_mrr_impact,\n csm_free_month_mrr_impact,\n lost_after_won_effective_mrr_in_usd,\n is_self_service_array,\n is_annual_billing_array,\n is_lost_after_won,\n is_lost_after_won_array,\n original_contract_duration,\n account_id_array,\n sf_opportunity_id_array,\n sf_account_id_array,\n plan_name_array,\n provisioned_plan_name_array,\n sf_opportunity_id_and_free_month_cnt_array,\n sf_opportunity_id_and_csm_free_month_cnt_array,\n sf_opportunity_id_and_sales_free_month_cnt_array,\n subscription_name_and_version_array,\n subscription_id_and_product_id_array,\n subscription_name_and_is_expired_array,\n subscription_name_and_is_staggered_array,\n subscription_name_and_is_law_array,\n subscription_name_and_law_reason_array,\n subscription_name_and_status_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_product_mrr_daily\n)\n\nSELECT *\nFROM zuora_subscription_effective_mrr_daily_w_timestamp", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_organization_product_mrr_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.sql", "unique_id": "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_monthly", "analytics___finance__zuora_organization_product_mrr_monthly"], "alias": "analytics___finance__zuora_organization_product_mrr_monthly", "checksum": {"name": "sha256", "checksum": "17a45bb957167f2950501a68b89fb9ccd05a74b6a1f3eadd89e8767f328e868e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [month, organization_key, product_family]\naggregated table over zuora_subscription_mrr_monthly of the recurring revenue from Zuora on an organization product family monthly level.", "columns": {"month": {"name": "month", "description": "aggregation month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_main_plan_name": {"name": "opening_main_plan_name", "description": "closing_main_plan_name of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_main_plan_name": {"name": "closing_main_plan_name", "description": "End of month : \nIn Zuora, each product family can have several plans in each subscription (for example, 'Reviews - Enterprise' and 'Extra Seats (UGC)').\nWe will build an aggregated model on top of this table that will be on the level of [date, organization_key, product_family] and we will still want to be able to attach a single plan to each product family.\nThis field basically tells us what is the main plan for that organization_key and product_family in a specific date.\nThis is the order we used to determine the main plan:\n 1. provisioned plans before none provisioned plans\n 2. full service plans before self service plans\n 3. non extension plans before extension plans\n 4. Higher MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_main_plan_platform_category_name": {"name": "opening_main_plan_platform_category_name", "description": "closing_main_plan_platform_category_name of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_main_plan_platform_category_name": {"name": "closing_main_plan_platform_category_name", "description": "End of month :\nTells us what is the category (from analytics___platform__plan) of the main plan (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_is_main_plan_annual_billing": {"name": "opening_is_main_plan_annual_billing", "description": "closing_is_main_plan_annual_billing of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_main_plan_annual_billing": {"name": "closing_is_main_plan_annual_billing", "description": "End of month : \nIndicates if the main plan is annual billing (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_main_plan_self_service": {"name": "opening_is_main_plan_self_service", "description": "closing_is_main_plan_self_service of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_main_plan_self_service": {"name": "closing_is_main_plan_self_service", "description": "End of month : \nIndicates if the main plan is self service or full service (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_main_plan_name": {"name": "within_month_main_plan_name", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_main_plan_name = main_plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_main_plan_platform_category_name": {"name": "within_month_main_plan_platform_category_name", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_main_plan_platform_category_name = main_plan_platform_category_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_is_main_plan_annual_billing": {"name": "within_month_is_main_plan_annual_billing", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_annual_billing = is_main_plan_annual_billing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_main_plan_self_service": {"name": "within_month_is_main_plan_self_service", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_self_service = is_main_plan_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_mrr_in_usd": {"name": "opening_mrr_in_usd", "description": "closing_mrr_in_usd of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_mrr_in_usd": {"name": "closing_mrr_in_usd", "description": "End of month product mrr_in_original_currency / (coverstion rate to USD)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "within_month_mrr_in_usd": {"name": "within_month_mrr_in_usd", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_mrr_in_usd = mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_effective_mrr_in_usd": {"name": "opening_effective_mrr_in_usd", "description": "closing_effective_mrr of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_effective_mrr_in_usd": {"name": "closing_effective_mrr_in_usd", "description": "End of month MRR that takes into account the free months effect.\nThe formula goes as follows:\n 1. IF free months = 0 THEN no change\n 2. IF free months > 0 THEN Effective MRR = MRR*(Original Contract Duration/(Original Contract Duration + Free Months))", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "within_month_effective_mrr_in_usd": {"name": "within_month_effective_mrr_in_usd", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_effective_mrr = effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_free_month_mrr_impact": {"name": "opening_free_month_mrr_impact", "description": "closing_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_free_month_mrr_impact": {"name": "closing_free_month_mrr_impact", "description": "End of month sales_free_month_mrr_impact + csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_free_month_mrr_impact": {"name": "delta_free_month_mrr_impact", "description": "closing - opening free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_sales_free_month_mrr_impact": {"name": "opening_sales_free_month_mrr_impact", "description": "closing_sales_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_sales_free_month_mrr_impact": {"name": "closing_sales_free_month_mrr_impact", "description": "End of month MRR that changed due to sales free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_sales_free_month_mrr_impact": {"name": "delta_sales_free_month_mrr_impact", "description": "closing - opening sales_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_csm_free_month_mrr_impact": {"name": "opening_csm_free_month_mrr_impact", "description": "closing_csm_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_csm_free_month_mrr_impact": {"name": "closing_csm_free_month_mrr_impact", "description": "End of month MRR that changed due to CSM free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_csm_free_month_mrr_impact": {"name": "delta_csm_free_month_mrr_impact", "description": "closing - opening csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "adjusted_revenue_in_usd": {"name": "adjusted_revenue_in_usd", "description": "effective_mrr X number of subscription days in month. \nHere effective_mrr = COALESCE(opening,closing,within_month)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "catch_up_revenue_in_usd": {"name": "catch_up_revenue_in_usd", "description": "free_month_catch_up_revenue + lost_after_won_catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_after_won_catch_up_revenue_in_usd": {"name": "lost_after_won_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the LAW only affect the revenue from the LAW recognition month on.\nIn order to catch the entire LAW impact, we do a catch-up calculation:\n lost_after_won_catch_up_revenue = delta_lost_after_won_effective_mrr X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_month_catch_up_revenue_in_usd": {"name": "free_month_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the given free months only affect the revenue from the grant month on.\nIn order to catch the entire free months impact, we do a catch-up calculation:\n free_month_catch_up_revenue = delta_free_month_mrr_impact X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "approximate_revenue_in_usd": {"name": "approximate_revenue_in_usd", "description": "The approximate revenue is mainly for FP&A to try and bridge between our revenue numbers and accounting revenue numbers.\napproximate_revenue = adjusted_revenue + catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_lost_after_won_effective_mrr": {"name": "opening_lost_after_won_effective_mrr", "description": "closing_lost_after_won_effective_mrr of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_lost_after_won_effective_mrr": {"name": "closing_lost_after_won_effective_mrr", "description": "if is_lost_after_won = 1 then closing_lost_after_won_effective_mrr = effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_lost_after_won_effective_mrr": {"name": "delta_lost_after_won_effective_mrr", "description": "closing - opening lost_after_won_effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_after_won_within_month_effective_mrr": {"name": "lost_after_won_within_month_effective_mrr", "description": "IF is_terminated_subscription_within_first_month = 1 AND is_lost_after_won = 1 THEN lost_after_won_within_month_effective_mrr = within_month_effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "from_date": {"name": "from_date", "description": "MIN of all the subscriptions from_date\nThe subscription start date\n* In extreme cases it could also be a specific subscription version start date (if the subscription changed in the middle of the contract)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "MAX of all the subscriptions to_date\nThe subscription end date\n* For active subscriptions it will be '2999-01-01'\n** In extreme cases it could also be a specific subscription version end date (if the subscription changed in the middle of the contract)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "renewal_date": {"name": "renewal_date", "description": "MAX of all the subscriptions renewal_date\nrenewal_date = effective_end_date for HT subscriptions (term_type = 'TERMED' in Zuora)\nrenewal_date = NULL for all other cases", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_self_service_array": {"name": "is_self_service_array", "description": "Array of is_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "is_annual_billing_array": {"name": "is_annual_billing_array", "description": "Array of is_annual_billing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "is_in_term_renewal": {"name": "is_in_term_renewal", "description": "Indicates if the renewal_opportunity_type = 'In Term Renewal'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "indicates if the subscription is lost after won or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won_array": {"name": "is_lost_after_won_array", "description": "Array of is_lost_after_won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_terminated_subscription_within_first_month": {"name": "is_terminated_subscription_within_first_month", "description": "subscription that started and ended in the same month and will not have opening or closing values", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_terminated_subscription": {"name": "is_terminated_subscription", "description": "indicator = 1 if the organization started the month with effective_mrr_in_usd > 0\nand ended the month with effective_mrr_in_usd = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "original_contract_duration": {"name": "original_contract_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "account_id_array": {"name": "account_id_array", "description": "Array of Zuora account ids", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_array": {"name": "sf_opportunity_id_array", "description": "Array of sf_opportunity_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_account_id_array": {"name": "sf_account_id_array", "description": "Array of sf_account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "plan_name_array": {"name": "plan_name_array", "description": "Array of plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "provisioned_plan_name_array": {"name": "provisioned_plan_name_array", "description": "Array of provisioned_plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_and_free_month_cnt_array": {"name": "sf_opportunity_id_and_free_month_cnt_array", "description": "Array of sf_opportunity_id_and_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_and_csm_free_month_cnt_array": {"name": "sf_opportunity_id_and_csm_free_month_cnt_array", "description": "Array of sf_opportunity_id_and_csm_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sf_opportunity_id_and_sales_free_month_cnt_array": {"name": "sf_opportunity_id_and_sales_free_month_cnt_array", "description": "Array of sf_opportunity_id_and_sales_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_version_array": {"name": "subscription_name_and_version_array", "description": "Array of subscription_name_and_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_id_and_product_id_array": {"name": "subscription_id_and_product_id_array", "description": "Array of subscription_id_and_product_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_is_expired_array": {"name": "subscription_name_and_is_expired_array", "description": "Array of subscription_name_and_is_expired", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_is_staggered_array": {"name": "subscription_name_and_is_staggered_array", "description": "Array of subscription_name_and_is_staggered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_is_law_array": {"name": "subscription_name_and_is_law_array", "description": "Array of subscription_name_and_is_law", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_law_reason_array": {"name": "subscription_name_and_law_reason_array", "description": "Array of subscription_name_and_law_reason", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "subscription_name_and_status_array": {"name": "subscription_name_and_status_array", "description": "Array of subscription_name_and_status", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "product_group_rank": {"name": "product_group_rank", "description": "rank of product_family in product_group (UGC). this is used to determine the main plan for the product group aggregation.\nfor UGC we will take reviews if not available vms if not available insignt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_product_group_terminated_within_month": {"name": "is_product_group_terminated_within_month", "description": "MIN over is_terminated_subscription_within_first_month for all products in product group (UGC).\nthis is used to determine for the product group aggregation - to terermine if to exclude or include within_month rows.\nexample: if reviews is_terminated_subscription_within_first_month = 1 and vms is is_terminated_subscription_within_first_month = 0\nwe will exclude to within_month rows of reviews since we still have vms mrr.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights": {"name": "is_insights", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc": {"name": "is_ugc", "description": "is_reviews = 1 OR is_vms = 1 OR is_insights = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082638.9290707, "relation_name": "dev_dkruh1.analytics___finance__zuora_organization_product_mrr_monthly", "raw_code": "-- Import --\n\nWITH import_zuora_subscription_mrr_monthly AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_subscription_mrr_monthly') }}\n),\n\n-- Logic --\nsubscription_filter_redundant_within_month AS (\nSELECT *\nFROM import_zuora_subscription_mrr_monthly\nWHERE is_redundant_within_month = 0\n),\n\nzuora_organization_product_mrr_monthly_agg AS (\nSELECT\n month,\n organization_key,\n product_family,\n FIRST(opening_main_plan_name,TRUE) AS opening_main_plan_name,\n FIRST(closing_main_plan_name,TRUE) AS closing_main_plan_name,\n FIRST(opening_main_plan_platform_category_name,TRUE) AS opening_main_plan_platform_category_name,\n FIRST(closing_main_plan_platform_category_name,TRUE) AS closing_main_plan_platform_category_name,\n FIRST(opening_is_main_plan_annual_billing,TRUE) AS opening_is_main_plan_annual_billing,\n FIRST(closing_is_main_plan_annual_billing,TRUE) AS closing_is_main_plan_annual_billing,\n FIRST(opening_is_main_plan_self_service,TRUE) AS opening_is_main_plan_self_service,\n FIRST(closing_is_main_plan_self_service,TRUE) AS closing_is_main_plan_self_service,\n FIRST(within_month_main_plan_name,TRUE) AS within_month_main_plan_name,\n FIRST(within_month_main_plan_platform_category_name,TRUE) AS within_month_main_plan_platform_category_name,\n FIRST(within_month_is_main_plan_annual_billing,TRUE) AS within_month_is_main_plan_annual_billing,\n FIRST(within_month_is_main_plan_self_service,TRUE) AS within_month_is_main_plan_self_service,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(within_month_mrr_in_usd) AS within_month_mrr_in_usd,\n SUM(opening_effective_mrr_in_usd) AS opening_effective_mrr_in_usd,\n SUM(closing_effective_mrr_in_usd) AS closing_effective_mrr_in_usd,\n SUM(within_month_effective_mrr_in_usd) AS within_month_effective_mrr_in_usd,\n SUM(opening_free_month_mrr_impact) AS opening_free_month_mrr_impact,\n SUM(closing_free_month_mrr_impact) AS closing_free_month_mrr_impact,\n SUM(delta_free_month_mrr_impact) AS delta_free_month_mrr_impact,\n SUM(opening_sales_free_month_mrr_impact) AS opening_sales_free_month_mrr_impact,\n SUM(closing_sales_free_month_mrr_impact) AS closing_sales_free_month_mrr_impact,\n SUM(delta_sales_free_month_mrr_impact) AS delta_sales_free_month_mrr_impact,\n SUM(opening_csm_free_month_mrr_impact) AS opening_csm_free_month_mrr_impact,\n SUM(closing_csm_free_month_mrr_impact) AS closing_csm_free_month_mrr_impact,\n SUM(delta_csm_free_month_mrr_impact) AS delta_csm_free_month_mrr_impact,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(catch_up_revenue_in_usd) AS catch_up_revenue_in_usd,\n SUM(lost_after_won_catch_up_revenue_in_usd) AS lost_after_won_catch_up_revenue_in_usd,\n SUM(free_month_catch_up_revenue_in_usd) AS free_month_catch_up_revenue_in_usd,\n SUM(approximate_revenue_in_usd) AS approximate_revenue_in_usd,\n SUM(opening_lost_after_won_effective_mrr) AS opening_lost_after_won_effective_mrr,\n SUM(closing_lost_after_won_effective_mrr) AS closing_lost_after_won_effective_mrr,\n SUM(delta_lost_after_won_effective_mrr) AS delta_lost_after_won_effective_mrr,\n SUM(lost_after_won_within_month_effective_mrr) AS lost_after_won_within_month_effective_mrr,\n MIN(from_date) AS from_date,\n MAX(to_date) AS to_date,\n MAX(renewal_date) AS renewal_date,\n SORT_ARRAY(COLLECT_SET(is_self_service)) AS is_self_service_array,\n SORT_ARRAY(COLLECT_SET(is_annual_billing)) AS is_annual_billing_array,\n MAX(is_in_term_renewal) AS is_in_term_renewal,\n MIN(is_lost_after_won) AS is_lost_after_won,\n SORT_ARRAY(COLLECT_SET(is_lost_after_won)) AS is_lost_after_won_array,\n MAX(is_staggered_subscription) AS is_staggered_subscription,\n MIN(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n IF(SUM(NVL(opening_effective_mrr_in_usd,0)) > 0 AND SUM(NVL(closing_effective_mrr_in_usd,0)) = 0,1,0) AS is_terminated_subscription,\n MAX(original_contract_duration) AS original_contract_duration,\n SORT_ARRAY(COLLECT_SET(account_id)) AS account_id_array,\n SORT_ARRAY(COLLECT_SET(sf_opportunity_id)) AS sf_opportunity_id_array,\n SORT_ARRAY(COLLECT_SET(sf_account_id)) AS sf_account_id_array,\n SORT_ARRAY(COLLECT_SET(plan_name)) AS plan_name_array,\n SORT_ARRAY(COLLECT_SET(provisioned_plan_name)) AS provisioned_plan_name_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',closing_free_month_cnt))) AS sf_opportunity_id_and_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',closing_csm_free_month_cnt))) AS sf_opportunity_id_and_csm_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',closing_sales_free_month_cnt))) AS sf_opportunity_id_and_sales_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',version))) AS subscription_name_and_version_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_id,' : ',product_id))) AS subscription_id_and_product_id_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_expired_subscription))) AS subscription_name_and_is_expired_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_staggered_subscription))) AS subscription_name_and_is_staggered_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_lost_after_won))) AS subscription_name_and_is_law_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',lost_after_won_reason))) AS subscription_name_and_law_reason_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',subscription_status))) AS subscription_name_and_status_array,\n MAX(is_reviews) AS is_reviews,\n MAX(is_vms) AS is_vms,\n MAX(is_insights) AS is_insights,\n MAX(is_subscriptions) AS is_subscriptions,\n MAX(is_email) AS is_email,\n MAX(is_sms) AS is_sms,\n MAX(is_loyalty) AS is_loyalty,\n MAX(is_ugc) AS is_ugc\nFROM subscription_filter_redundant_within_month\nWHERE is_lost_after_won_per_org_product = is_lost_after_won\nAND NVL(within_month_rank,1) = 1\nGROUP BY 1,2,3\n),\n\nzuora_organization_product_mrr_monthly_res AS (\nSELECT\n month,\n organization_key,\n product_family,\n opening_main_plan_name,\n closing_main_plan_name,\n opening_main_plan_platform_category_name,\n closing_main_plan_platform_category_name,\n opening_is_main_plan_annual_billing,\n closing_is_main_plan_annual_billing,\n opening_is_main_plan_self_service,\n closing_is_main_plan_self_service,\n within_month_main_plan_name,\n within_month_main_plan_platform_category_name,\n within_month_is_main_plan_annual_billing,\n within_month_is_main_plan_self_service,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n within_month_mrr_in_usd,\n opening_effective_mrr_in_usd,\n closing_effective_mrr_in_usd,\n within_month_effective_mrr_in_usd,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n adjusted_revenue_in_usd,\n catch_up_revenue_in_usd,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n approximate_revenue_in_usd,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n lost_after_won_within_month_effective_mrr,\n from_date,\n to_date,\n renewal_date,\n is_self_service_array,\n is_annual_billing_array,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_array,\n is_staggered_subscription,\n is_terminated_subscription_within_first_month,\n is_terminated_subscription,\n original_contract_duration,\n account_id_array,\n sf_opportunity_id_array,\n sf_account_id_array,\n plan_name_array,\n provisioned_plan_name_array,\n sf_opportunity_id_and_free_month_cnt_array,\n sf_opportunity_id_and_csm_free_month_cnt_array,\n sf_opportunity_id_and_sales_free_month_cnt_array,\n subscription_name_and_version_array,\n subscription_id_and_product_id_array,\n subscription_name_and_is_expired_array,\n subscription_name_and_is_staggered_array,\n subscription_name_and_is_law_array,\n subscription_name_and_law_reason_array,\n subscription_name_and_status_array,\n IF(is_ugc = 0,1,ROW_NUMBER() OVER (PARTITION BY month,organization_key,is_ugc ORDER BY is_reviews DESC,is_vms DESC,is_insights DESC)) AS product_group_rank,\n IF(is_ugc = 0,is_terminated_subscription_within_first_month,MIN(is_terminated_subscription_within_first_month) OVER(PARTITION BY month,organization_key,is_ugc ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)) AS is_product_group_terminated_within_month,\n is_reviews,\n is_vms,\n is_insights,\n is_subscriptions,\n is_email,\n is_sms,\n is_loyalty,\n is_ugc,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_product_mrr_monthly_agg\n)\n\nSELECT *\nFROM zuora_organization_product_mrr_monthly_res", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_zuora_subscription_mrr_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_subscription_mrr_monthly\n),\n\n-- Logic --\nsubscription_filter_redundant_within_month AS (\nSELECT *\nFROM import_zuora_subscription_mrr_monthly\nWHERE is_redundant_within_month = 0\n),\n\nzuora_organization_product_mrr_monthly_agg AS (\nSELECT\n month,\n organization_key,\n product_family,\n FIRST(opening_main_plan_name,TRUE) AS opening_main_plan_name,\n FIRST(closing_main_plan_name,TRUE) AS closing_main_plan_name,\n FIRST(opening_main_plan_platform_category_name,TRUE) AS opening_main_plan_platform_category_name,\n FIRST(closing_main_plan_platform_category_name,TRUE) AS closing_main_plan_platform_category_name,\n FIRST(opening_is_main_plan_annual_billing,TRUE) AS opening_is_main_plan_annual_billing,\n FIRST(closing_is_main_plan_annual_billing,TRUE) AS closing_is_main_plan_annual_billing,\n FIRST(opening_is_main_plan_self_service,TRUE) AS opening_is_main_plan_self_service,\n FIRST(closing_is_main_plan_self_service,TRUE) AS closing_is_main_plan_self_service,\n FIRST(within_month_main_plan_name,TRUE) AS within_month_main_plan_name,\n FIRST(within_month_main_plan_platform_category_name,TRUE) AS within_month_main_plan_platform_category_name,\n FIRST(within_month_is_main_plan_annual_billing,TRUE) AS within_month_is_main_plan_annual_billing,\n FIRST(within_month_is_main_plan_self_service,TRUE) AS within_month_is_main_plan_self_service,\n SUM(opening_mrr_in_usd) AS opening_mrr_in_usd,\n SUM(closing_mrr_in_usd) AS closing_mrr_in_usd,\n SUM(within_month_mrr_in_usd) AS within_month_mrr_in_usd,\n SUM(opening_effective_mrr_in_usd) AS opening_effective_mrr_in_usd,\n SUM(closing_effective_mrr_in_usd) AS closing_effective_mrr_in_usd,\n SUM(within_month_effective_mrr_in_usd) AS within_month_effective_mrr_in_usd,\n SUM(opening_free_month_mrr_impact) AS opening_free_month_mrr_impact,\n SUM(closing_free_month_mrr_impact) AS closing_free_month_mrr_impact,\n SUM(delta_free_month_mrr_impact) AS delta_free_month_mrr_impact,\n SUM(opening_sales_free_month_mrr_impact) AS opening_sales_free_month_mrr_impact,\n SUM(closing_sales_free_month_mrr_impact) AS closing_sales_free_month_mrr_impact,\n SUM(delta_sales_free_month_mrr_impact) AS delta_sales_free_month_mrr_impact,\n SUM(opening_csm_free_month_mrr_impact) AS opening_csm_free_month_mrr_impact,\n SUM(closing_csm_free_month_mrr_impact) AS closing_csm_free_month_mrr_impact,\n SUM(delta_csm_free_month_mrr_impact) AS delta_csm_free_month_mrr_impact,\n SUM(adjusted_revenue_in_usd) AS adjusted_revenue_in_usd,\n SUM(catch_up_revenue_in_usd) AS catch_up_revenue_in_usd,\n SUM(lost_after_won_catch_up_revenue_in_usd) AS lost_after_won_catch_up_revenue_in_usd,\n SUM(free_month_catch_up_revenue_in_usd) AS free_month_catch_up_revenue_in_usd,\n SUM(approximate_revenue_in_usd) AS approximate_revenue_in_usd,\n SUM(opening_lost_after_won_effective_mrr) AS opening_lost_after_won_effective_mrr,\n SUM(closing_lost_after_won_effective_mrr) AS closing_lost_after_won_effective_mrr,\n SUM(delta_lost_after_won_effective_mrr) AS delta_lost_after_won_effective_mrr,\n SUM(lost_after_won_within_month_effective_mrr) AS lost_after_won_within_month_effective_mrr,\n MIN(from_date) AS from_date,\n MAX(to_date) AS to_date,\n MAX(renewal_date) AS renewal_date,\n SORT_ARRAY(COLLECT_SET(is_self_service)) AS is_self_service_array,\n SORT_ARRAY(COLLECT_SET(is_annual_billing)) AS is_annual_billing_array,\n MAX(is_in_term_renewal) AS is_in_term_renewal,\n MIN(is_lost_after_won) AS is_lost_after_won,\n SORT_ARRAY(COLLECT_SET(is_lost_after_won)) AS is_lost_after_won_array,\n MAX(is_staggered_subscription) AS is_staggered_subscription,\n MIN(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n IF(SUM(NVL(opening_effective_mrr_in_usd,0)) > 0 AND SUM(NVL(closing_effective_mrr_in_usd,0)) = 0,1,0) AS is_terminated_subscription,\n MAX(original_contract_duration) AS original_contract_duration,\n SORT_ARRAY(COLLECT_SET(account_id)) AS account_id_array,\n SORT_ARRAY(COLLECT_SET(sf_opportunity_id)) AS sf_opportunity_id_array,\n SORT_ARRAY(COLLECT_SET(sf_account_id)) AS sf_account_id_array,\n SORT_ARRAY(COLLECT_SET(plan_name)) AS plan_name_array,\n SORT_ARRAY(COLLECT_SET(provisioned_plan_name)) AS provisioned_plan_name_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',closing_free_month_cnt))) AS sf_opportunity_id_and_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',closing_csm_free_month_cnt))) AS sf_opportunity_id_and_csm_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(sf_opportunity_id,' : ',closing_sales_free_month_cnt))) AS sf_opportunity_id_and_sales_free_month_cnt_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',version))) AS subscription_name_and_version_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_id,' : ',product_id))) AS subscription_id_and_product_id_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_expired_subscription))) AS subscription_name_and_is_expired_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_staggered_subscription))) AS subscription_name_and_is_staggered_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',is_lost_after_won))) AS subscription_name_and_is_law_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',lost_after_won_reason))) AS subscription_name_and_law_reason_array,\n SORT_ARRAY(COLLECT_SET(CONCAT(subscription_name,' : ',subscription_status))) AS subscription_name_and_status_array,\n MAX(is_reviews) AS is_reviews,\n MAX(is_vms) AS is_vms,\n MAX(is_insights) AS is_insights,\n MAX(is_subscriptions) AS is_subscriptions,\n MAX(is_email) AS is_email,\n MAX(is_sms) AS is_sms,\n MAX(is_loyalty) AS is_loyalty,\n MAX(is_ugc) AS is_ugc\nFROM subscription_filter_redundant_within_month\nWHERE is_lost_after_won_per_org_product = is_lost_after_won\nAND NVL(within_month_rank,1) = 1\nGROUP BY 1,2,3\n),\n\nzuora_organization_product_mrr_monthly_res AS (\nSELECT\n month,\n organization_key,\n product_family,\n opening_main_plan_name,\n closing_main_plan_name,\n opening_main_plan_platform_category_name,\n closing_main_plan_platform_category_name,\n opening_is_main_plan_annual_billing,\n closing_is_main_plan_annual_billing,\n opening_is_main_plan_self_service,\n closing_is_main_plan_self_service,\n within_month_main_plan_name,\n within_month_main_plan_platform_category_name,\n within_month_is_main_plan_annual_billing,\n within_month_is_main_plan_self_service,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n within_month_mrr_in_usd,\n opening_effective_mrr_in_usd,\n closing_effective_mrr_in_usd,\n within_month_effective_mrr_in_usd,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n adjusted_revenue_in_usd,\n catch_up_revenue_in_usd,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n approximate_revenue_in_usd,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n lost_after_won_within_month_effective_mrr,\n from_date,\n to_date,\n renewal_date,\n is_self_service_array,\n is_annual_billing_array,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_array,\n is_staggered_subscription,\n is_terminated_subscription_within_first_month,\n is_terminated_subscription,\n original_contract_duration,\n account_id_array,\n sf_opportunity_id_array,\n sf_account_id_array,\n plan_name_array,\n provisioned_plan_name_array,\n sf_opportunity_id_and_free_month_cnt_array,\n sf_opportunity_id_and_csm_free_month_cnt_array,\n sf_opportunity_id_and_sales_free_month_cnt_array,\n subscription_name_and_version_array,\n subscription_id_and_product_id_array,\n subscription_name_and_is_expired_array,\n subscription_name_and_is_staggered_array,\n subscription_name_and_is_law_array,\n subscription_name_and_law_reason_array,\n subscription_name_and_status_array,\n IF(is_ugc = 0,1,ROW_NUMBER() OVER (PARTITION BY month,organization_key,is_ugc ORDER BY is_reviews DESC,is_vms DESC,is_insights DESC)) AS product_group_rank,\n IF(is_ugc = 0,is_terminated_subscription_within_first_month,MIN(is_terminated_subscription_within_first_month) OVER(PARTITION BY month,organization_key,is_ugc ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)) AS is_product_group_terminated_within_month,\n is_reviews,\n is_vms,\n is_insights,\n is_subscriptions,\n is_email,\n is_sms,\n is_loyalty,\n is_ugc,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_product_mrr_monthly_agg\n)\n\nSELECT *\nFROM zuora_organization_product_mrr_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_organization_product_usage_charge": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_organization_product_usage_charge", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.sql", "unique_id": "model.yoda.analytics___finance__zuora_organization_product_usage_charge", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_charge", "analytics___finance__zuora_organization_product_usage_charge"], "alias": "analytics___finance__zuora_organization_product_usage_charge", "checksum": {"name": "sha256", "checksum": "4db3fc8a530be166d30acc9762a700f499dccedfb51c7baef773fd63af09e887"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: {invoice_number, product_family}\nTable for usage charges from Zuora.\nMainly for Reviews overages but will also capture manual charges since we are taking the information from zuora invoice.", "columns": {"invoice_number": {"name": "invoice_number", "description": "Zuora invoice number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "Zuora invoice date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "charge_amount_in_usd": {"name": "charge_amount_in_usd", "description": "The invoice amount charged for the specific product usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_self_service": {"name": "is_self_service", "description": "Indicates if the plan is self service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082638.9756176, "relation_name": "dev_dkruh1.analytics___finance__zuora_organization_product_usage_charge", "raw_code": "-- Import --\n\nWITH import_zuora_invoice AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_invoice') }}\n),\n\nimport_zuora_invoice_item AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_invoice_item') }}\n),\n\nimport_zuora_product AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_product') }}\n),\n\nimport_zuora_rateplan_charge AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_rateplan_charge') }}\n),\n\nimport_zuora_subscription AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_subscription') }}\n),\n\nimport_zuora_account AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_account') }}\n),\n\nimport_platform_organization AS (\nSELECT * FROM {{ ref('analytics___platform_stg__organization') }}\n),\n\n-- Logic --\n\nzuora_organization_product_usage_charge AS (\nSELECT \n invoice.invoice_number AS invoice_number,\n REPLACE(product.product_family,'Emails','Email') AS product_family,\n product.provisioned_package_name AS plan_name,\n organization.organization_key,\n invoice.invoice_date AS date,\n SUM(invoice_item.charge_amount_in_usd) AS charge_amount_in_usd\nFROM import_zuora_invoice AS invoice\nINNER JOIN import_zuora_invoice_item AS invoice_item\n ON invoice.invoice_id = invoice_item.invoice_id\nINNER JOIN import_zuora_product AS product\n ON product.product_id = invoice_item.product_id\nINNER JOIN import_zuora_rateplan_charge AS rateplan_charge\n ON rateplan_charge.rateplan_charge_id = invoice_item.rateplan_charge_id\nINNER JOIN import_zuora_subscription AS subscription\n ON subscription.subscription_id = invoice_item.subscription_id\nINNER JOIN import_zuora_account AS account\n ON account.account_id = invoice_item.account_id\nINNER JOIN import_platform_organization AS organization\n ON account.organization_key = organization.organization_key\nWHERE invoice.is_deleted = 0\nAND invoice_item.is_deleted = 0\nAND subscription.is_deleted = 0\nAND subscription.is_trial_subscription = 0\nAND (rateplan_charge.is_usage_charge_type = 1 \n OR (rateplan_charge.is_one_time_charge_type = 1\n AND product.product_family = 'Emails'))\nAND NVL(invoice_item.charge_amount_in_usd,0) > 0\nAND invoice.is_reversed = 0\nAND invoice.is_status_posted = 1\nGROUP BY 1,2,3,4,5\n),\n\nzuora_organization_product_usage_charge_w_timestamp AS (\nSELECT \n invoice_number,\n product_family,\n plan_name,\n organization_key,\n date,\n charge_amount_in_usd,\n SMALLINT(IF(product_family IN('Subscriptions','Email'),0,1)) AS is_self_service, -- currently HT subscriptions and Email manual charges are getting into this flow.\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_product_usage_charge\n)\n\nSELECT *\nFROM zuora_organization_product_usage_charge_w_timestamp", "language": "sql", "refs": [{"name": "analytics___finance__zuora_invoice", "package": null, "version": null}, {"name": "analytics___finance__zuora_invoice_item", "package": null, "version": null}, {"name": "analytics___finance__zuora_product", "package": null, "version": null}, {"name": "analytics___finance__zuora_rateplan_charge", "package": null, "version": null}, {"name": "analytics___finance__zuora_subscription", "package": null, "version": null}, {"name": "analytics___finance__zuora_account", "package": null, "version": null}, {"name": "analytics___platform_stg__organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__zuora_invoice", "model.yoda.analytics___finance__zuora_invoice_item", "model.yoda.analytics___finance__zuora_product", "model.yoda.analytics___finance__zuora_rateplan_charge", "model.yoda.analytics___finance__zuora_subscription", "model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___platform_stg__organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_zuora_invoice AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_invoice\n),\n\nimport_zuora_invoice_item AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_invoice_item\n),\n\nimport_zuora_product AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_product\n),\n\nimport_zuora_rateplan_charge AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_rateplan_charge\n),\n\nimport_zuora_subscription AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_subscription\n),\n\nimport_zuora_account AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_account\n),\n\nimport_platform_organization AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__organization\n),\n\n-- Logic --\n\nzuora_organization_product_usage_charge AS (\nSELECT \n invoice.invoice_number AS invoice_number,\n REPLACE(product.product_family,'Emails','Email') AS product_family,\n product.provisioned_package_name AS plan_name,\n organization.organization_key,\n invoice.invoice_date AS date,\n SUM(invoice_item.charge_amount_in_usd) AS charge_amount_in_usd\nFROM import_zuora_invoice AS invoice\nINNER JOIN import_zuora_invoice_item AS invoice_item\n ON invoice.invoice_id = invoice_item.invoice_id\nINNER JOIN import_zuora_product AS product\n ON product.product_id = invoice_item.product_id\nINNER JOIN import_zuora_rateplan_charge AS rateplan_charge\n ON rateplan_charge.rateplan_charge_id = invoice_item.rateplan_charge_id\nINNER JOIN import_zuora_subscription AS subscription\n ON subscription.subscription_id = invoice_item.subscription_id\nINNER JOIN import_zuora_account AS account\n ON account.account_id = invoice_item.account_id\nINNER JOIN import_platform_organization AS organization\n ON account.organization_key = organization.organization_key\nWHERE invoice.is_deleted = 0\nAND invoice_item.is_deleted = 0\nAND subscription.is_deleted = 0\nAND subscription.is_trial_subscription = 0\nAND (rateplan_charge.is_usage_charge_type = 1 \n OR (rateplan_charge.is_one_time_charge_type = 1\n AND product.product_family = 'Emails'))\nAND NVL(invoice_item.charge_amount_in_usd,0) > 0\nAND invoice.is_reversed = 0\nAND invoice.is_status_posted = 1\nGROUP BY 1,2,3,4,5\n),\n\nzuora_organization_product_usage_charge_w_timestamp AS (\nSELECT \n invoice_number,\n product_family,\n plan_name,\n organization_key,\n date,\n charge_amount_in_usd,\n SMALLINT(IF(product_family IN('Subscriptions','Email'),0,1)) AS is_self_service, -- currently HT subscriptions and Email manual charges are getting into this flow.\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_product_usage_charge\n)\n\nSELECT *\nFROM zuora_organization_product_usage_charge_w_timestamp", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_organization_product_usage_revenue_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.sql", "unique_id": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_daily", "analytics___finance__zuora_organization_product_usage_revenue_daily"], "alias": "analytics___finance__zuora_organization_product_usage_revenue_daily", "checksum": {"name": "sha256", "checksum": "c76cea6e8d1f5cd0f84cfc8312e3dadf337f43dbb35938523ae4ed8de745e72a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: {date, organization_key, product_family}\nAggregated table for usage charges from Zuora.\nMainly for Reviews overages but will also capture manual charges since we are taking the information from zuora invoice.", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_amount_in_usd": {"name": "charge_amount_in_usd", "description": "The amount charged from the organization on a product usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_self_service": {"name": "is_self_service", "description": "Indicates if the plan is self service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082639.0377414, "relation_name": "dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_daily", "raw_code": "-- Import --\n\nWITH import_organization_product_usage_charge AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_organization_product_usage_charge') }}\n),\n\n-- Logic --\n\nzuora_organization_product_usage_revenue_daily AS (\nSELECT \n date,\n organization_key,\n product_family,\n plan_name,\n SUM(charge_amount_in_usd) AS charge_amount_in_usd,\n MIN(is_self_service) AS is_self_service\nFROM import_organization_product_usage_charge AS usage_charge\nGROUP BY 1,2,3,4\n),\n\nzuora_organization_product_usage_revenue_daily_w_timestamp AS (\nSELECT \n date,\n organization_key,\n product_family,\n plan_name,\n charge_amount_in_usd,\n SMALLINT(is_self_service) AS is_self_service,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_product_usage_revenue_daily\n)\n\nSELECT *\nFROM zuora_organization_product_usage_revenue_daily_w_timestamp", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_organization_product_usage_charge AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_organization_product_usage_charge\n),\n\n-- Logic --\n\nzuora_organization_product_usage_revenue_daily AS (\nSELECT \n date,\n organization_key,\n product_family,\n plan_name,\n SUM(charge_amount_in_usd) AS charge_amount_in_usd,\n MIN(is_self_service) AS is_self_service\nFROM import_organization_product_usage_charge AS usage_charge\nGROUP BY 1,2,3,4\n),\n\nzuora_organization_product_usage_revenue_daily_w_timestamp AS (\nSELECT \n date,\n organization_key,\n product_family,\n plan_name,\n charge_amount_in_usd,\n SMALLINT(is_self_service) AS is_self_service,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_product_usage_revenue_daily\n)\n\nSELECT *\nFROM zuora_organization_product_usage_revenue_daily_w_timestamp", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_organization_product_usage_revenue_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.sql", "unique_id": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_monthly", "analytics___finance__zuora_organization_product_usage_revenue_monthly"], "alias": "analytics___finance__zuora_organization_product_usage_revenue_monthly", "checksum": {"name": "sha256", "checksum": "2ac9535d28a5135502bfc9ecc6e15f80b8674b1ab75321f7b1550afa1fe16a8f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: {month, organization_key, product_family}\nAggregated table for usage charges from Zuora.\nMainly for Reviews overages but will also capture manual charges since we are taking the information from zuora invoice.", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_amount_in_usd": {"name": "charge_amount_in_usd", "description": "The amount charged from the organization on a product usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_self_service": {"name": "is_self_service", "description": "Indicates if the plan is self service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_communication": {"name": "is_communication", "description": "indicator = 1 when product_family = SMS or Email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082639.0938032, "relation_name": "dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_monthly", "raw_code": "-- Import --\n\nWITH import_organization_product_usage_charge AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_organization_product_usage_charge') }}\n),\n\n-- Logic --\n\nplan_rank AS (\nSELECT \n organization_key,\n product_family,\n date,\n TRUNC(date,'MM') AS month,\n plan_name,\n is_self_service,\n ROW_NUMBER() OVER(PARTITION BY organization_key,product_family,TRUNC(date,'MM') ORDER BY date DESC) AS plan_rn\nFROM import_organization_product_usage_charge AS usage_charge\n),\n\nzuora_organization_product_usage_revenue_monthly AS (\nSELECT \n TRUNC(usage_charge.date, 'MM') AS month,\n usage_charge.organization_key,\n usage_charge.product_family,\n plan_rank.plan_name,\n plan_rank.is_self_service,\n SUM(usage_charge.charge_amount_in_usd) AS charge_amount_in_usd\nFROM import_organization_product_usage_charge AS usage_charge\nINNER JOIN plan_rank \nON plan_rank.organization_key = usage_charge.organization_key\n AND plan_rank.product_family = usage_charge.product_family\n AND plan_rank.month = TRUNC(usage_charge.date,'MM')\n AND plan_rank.plan_rn = 1\nGROUP BY 1,2,3,4,5\n),\n\nzuora_organization_product_usage_revenue_monthly_w_timestamp AS (\nSELECT \n month,\n organization_key,\n product_family,\n plan_name,\n charge_amount_in_usd,\n SMALLINT(is_self_service) AS is_self_service,\n SMALLINT(IF(LOWER(product_family) IN ('sms','email'),1,0)) AS is_communication,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_product_usage_revenue_monthly\n)\n\nSELECT *\nFROM zuora_organization_product_usage_revenue_monthly_w_timestamp", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_organization_product_usage_charge AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_organization_product_usage_charge\n),\n\n-- Logic --\n\nplan_rank AS (\nSELECT \n organization_key,\n product_family,\n date,\n TRUNC(date,'MM') AS month,\n plan_name,\n is_self_service,\n ROW_NUMBER() OVER(PARTITION BY organization_key,product_family,TRUNC(date,'MM') ORDER BY date DESC) AS plan_rn\nFROM import_organization_product_usage_charge AS usage_charge\n),\n\nzuora_organization_product_usage_revenue_monthly AS (\nSELECT \n TRUNC(usage_charge.date, 'MM') AS month,\n usage_charge.organization_key,\n usage_charge.product_family,\n plan_rank.plan_name,\n plan_rank.is_self_service,\n SUM(usage_charge.charge_amount_in_usd) AS charge_amount_in_usd\nFROM import_organization_product_usage_charge AS usage_charge\nINNER JOIN plan_rank \nON plan_rank.organization_key = usage_charge.organization_key\n AND plan_rank.product_family = usage_charge.product_family\n AND plan_rank.month = TRUNC(usage_charge.date,'MM')\n AND plan_rank.plan_rn = 1\nGROUP BY 1,2,3,4,5\n),\n\nzuora_organization_product_usage_revenue_monthly_w_timestamp AS (\nSELECT \n month,\n organization_key,\n product_family,\n plan_name,\n charge_amount_in_usd,\n SMALLINT(is_self_service) AS is_self_service,\n SMALLINT(IF(LOWER(product_family) IN ('sms','email'),1,0)) AS is_communication,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_organization_product_usage_revenue_monthly\n)\n\nSELECT *\nFROM zuora_organization_product_usage_revenue_monthly_w_timestamp", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_parent_organization": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_parent_organization", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.sql", "unique_id": "model.yoda.analytics___finance__zuora_parent_organization", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_parent_organization", "analytics___finance__zuora_parent_organization"], "alias": "analytics___finance__zuora_parent_organization", "checksum": {"name": "sha256", "checksum": "5d4bc24c08ff0efbb3c3fbc16320e716525d60bf15139db989c67872220bcef6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Mapping table between child organizations and their corresponding parent organization.\nPK: organization_key", "columns": {"organization_key": {"name": "organization_key", "description": "The organization_key of the child organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "The organization_id of the child organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_name_array": {"name": "organization_name_array", "description": "The organization name of the child organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "parent_organization_key": {"name": "parent_organization_key", "description": "The organization_key of the parent organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_organization_id": {"name": "parent_organization_id", "description": "The organization_id of the parent organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "parent_organization_name_array": {"name": "parent_organization_name_array", "description": "The organization name of the parent organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "grand_parent_organization_key": {"name": "grand_parent_organization_key", "description": "The organization_key of the grand parent organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "grand_parent_organization_id": {"name": "grand_parent_organization_id", "description": "The organization_id of the grand parent organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "grand_parent_organization_name_array": {"name": "grand_parent_organization_name_array", "description": "The organization name of the grand parent organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082639.1467102, "relation_name": "dev_dkruh1.analytics___finance__zuora_parent_organization", "raw_code": "-- Import --\n\nWITH import_zuora_account AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_account') }}\n),\n\n-- Logic --\n\nparent_organization_prep AS (\nSELECT DISTINCT \n zuora_account.organization_key,\n zuora_account.organization_id,\n zuora_account.account_name AS organization_name,\n parent_orgs.organization_key AS parent_organization_key,\n parent_orgs.organization_id AS parent_organization_id,\n parent_orgs.account_name AS parent_organization_name\nFROM import_zuora_account AS zuora_account\nINNER JOIN import_zuora_account AS parent_orgs \n ON zuora_account.parent_organization_key = parent_orgs.organization_key\nWHERE zuora_account.is_deleted = 0\nAND zuora_account.is_test_account = 0\nAND zuora_account.parent_organization_key IS NOT NULL\nAND parent_orgs.is_deleted = 0\nAND parent_orgs.is_test_account = 0\n),\n\nparent_organization AS (\nSELECT \n parent_orgs.organization_key,\n parent_orgs.organization_id,\n SORT_ARRAY(COLLECT_SET(parent_orgs.organization_name)) AS organization_name_array,\n parent_orgs.parent_organization_key,\n parent_orgs.parent_organization_id,\n SORT_ARRAY(COLLECT_SET(parent_orgs.parent_organization_name)) AS parent_organization_name_array,\n grand_parent_orgs.parent_organization_key AS grand_parent_organization_key,\n grand_parent_orgs.parent_organization_id AS grand_parent_organization_id,\n SORT_ARRAY(COLLECT_SET(grand_parent_orgs.parent_organization_name)) AS grand_parent_organization_name_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM parent_organization_prep AS parent_orgs\nLEFT JOIN parent_organization_prep AS grand_parent_orgs \n ON parent_orgs.parent_organization_key = grand_parent_orgs.organization_key\nGROUP BY 1,2,4,5,7,8\n)\n\nSELECT * \nFROM parent_organization", "language": "sql", "refs": [{"name": "analytics___finance__zuora_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__zuora_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_zuora_account AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_account\n),\n\n-- Logic --\n\nparent_organization_prep AS (\nSELECT DISTINCT \n zuora_account.organization_key,\n zuora_account.organization_id,\n zuora_account.account_name AS organization_name,\n parent_orgs.organization_key AS parent_organization_key,\n parent_orgs.organization_id AS parent_organization_id,\n parent_orgs.account_name AS parent_organization_name\nFROM import_zuora_account AS zuora_account\nINNER JOIN import_zuora_account AS parent_orgs \n ON zuora_account.parent_organization_key = parent_orgs.organization_key\nWHERE zuora_account.is_deleted = 0\nAND zuora_account.is_test_account = 0\nAND zuora_account.parent_organization_key IS NOT NULL\nAND parent_orgs.is_deleted = 0\nAND parent_orgs.is_test_account = 0\n),\n\nparent_organization AS (\nSELECT \n parent_orgs.organization_key,\n parent_orgs.organization_id,\n SORT_ARRAY(COLLECT_SET(parent_orgs.organization_name)) AS organization_name_array,\n parent_orgs.parent_organization_key,\n parent_orgs.parent_organization_id,\n SORT_ARRAY(COLLECT_SET(parent_orgs.parent_organization_name)) AS parent_organization_name_array,\n grand_parent_orgs.parent_organization_key AS grand_parent_organization_key,\n grand_parent_orgs.parent_organization_id AS grand_parent_organization_id,\n SORT_ARRAY(COLLECT_SET(grand_parent_orgs.parent_organization_name)) AS grand_parent_organization_name_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM parent_organization_prep AS parent_orgs\nLEFT JOIN parent_organization_prep AS grand_parent_orgs \n ON parent_orgs.parent_organization_key = grand_parent_orgs.organization_key\nGROUP BY 1,2,4,5,7,8\n)\n\nSELECT * \nFROM parent_organization", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_product": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_product", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.sql", "unique_id": "model.yoda.analytics___finance__zuora_product", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_product", "analytics___finance__zuora_product"], "alias": "analytics___finance__zuora_product", "checksum": {"name": "sha256", "checksum": "178e22aff7f0701336ffd4b9a2dd0f9e6922374f0fb4cb3c90a6b52f888b6ec2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled TABLE over zuora_product view", "columns": {"product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisioned_package_name": {"name": "provisioned_package_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "product family with 'Loyalty' instead of 'Loyalty & referals'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_original_name": {"name": "product_family_original_name", "description": "product family shown in zuora", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_category": {"name": "product_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_provision_required": {"name": "is_provision_required", "description": "is core plan indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_core_plan": {"name": "is_core_plan", "description": "core plan indicator is usually used in full service accounts where a subscription includes one main plan per product (core plan) + extensions (ie. syndication, extra seats,insights).\nfor extensions indicator = 0.\nfield is populated by the creator of the plan in zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082639.1828203, "relation_name": "dev_dkruh1.analytics___finance__zuora_product", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH staging AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__zuora_product') }}\n\n), zuora_product AS (\n\n SELECT product_id,\n product_name,\n sku,\n provisioned_package_name,\n product_family,\n product_family_original_name,\n product_category,\n is_deleted,\n is_provision_required,\n is_core_plan,\n updated_at,\n created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM zuora_product", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__zuora_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH staging AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__zuora_product\n\n), zuora_product AS (\n\n SELECT product_id,\n product_name,\n sku,\n provisioned_package_name,\n product_family,\n product_family_original_name,\n product_category,\n is_deleted,\n is_provision_required,\n is_core_plan,\n updated_at,\n created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM zuora_product", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_rateplan_charge": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_rateplan_charge", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.sql", "unique_id": "model.yoda.analytics___finance__zuora_rateplan_charge", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_rateplan_charge", "analytics___finance__zuora_rateplan_charge"], "alias": "analytics___finance__zuora_rateplan_charge", "checksum": {"name": "sha256", "checksum": "ceac816309f5887f5bbfebead27fbd550504edfdbff88a2cbeb68208cb4b0225"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled Table of source analytics___finance_stg__zuora_rateplan_charge", "columns": {"rateplan_charge_id": {"name": "rateplan_charge_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplan_charge_name": {"name": "rateplan_charge_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_rateplan_charge_id": {"name": "original_rateplan_charge_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tier_join_rateplan_charge_id": {"name": "tier_join_rateplan_charge_id", "description": "helper column to join with zuora_rateplan_charge_tier. \nwhen is_tier_join_original_rateplan_charge_id = 0 this field is populated with rateplan_charge_id.\nwhen is_tier_join_original_rateplan_charge_id = 1 this field is populated with original_rateplan_charge_id.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "zuora account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_id": {"name": "subscription_id", "description": "FK: zuora_subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplan_id": {"name": "rateplan_id", "description": "FK: zuora_rateplan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "FK: zuora_product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rateplan_charge_id": {"name": "product_rateplan_charge_id", "description": "FK: zuora_product_rateplan_charge", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rateplan_id": {"name": "product_rateplan_id", "description": "FK: zuora_product_rateplan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effective_start_date": {"name": "effective_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "effective_end_date": {"name": "effective_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "charge_model": {"name": "charge_model", "description": "Overage Pricing|Per Unit Pricing|Discount-Percentage|Flat Fee Pricing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_number": {"name": "charge_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_type": {"name": "charge_type", "description": "OneTime|Usage|Recurring", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "list_price_base": {"name": "list_price_base", "description": "Per Billing Period|Per Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_period": {"name": "billing_period", "description": "Annual|Eighteen Months|Month|null|Semi-Annual|Quarter", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "apply_discount_charge_type": {"name": "apply_discount_charge_type", "description": "the type of chrage the discount is applied to (onetime,recurring,usage,all)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dmrc": {"name": "dmrc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dtcv": {"name": "dtcv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "tcv": {"name": "tcv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mrr": {"name": "mrr", "description": "does not include discount mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "quantity": {"name": "quantity", "description": "number of units per charge", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processed_through_date": {"name": "processed_through_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_exclude_billing": {"name": "is_exclude_billing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_exclude_booking": {"name": "is_exclude_booking", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_repaid": {"name": "is_repaid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_processed": {"name": "is_processed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_usage_charge_type": {"name": "is_usage_charge_type", "description": "indicator = 1 if charge_type = 'usage'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_one_time_charge_type": {"name": "is_one_time_charge_type", "description": "indicator = 1 if charge_type = 'onetime'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_recurring_charge_type": {"name": "is_recurring_charge_type", "description": "indicator = 1 if charge_type = 'recurring'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_tier_join_original_rateplan_charge_id": {"name": "is_tier_join_original_rateplan_charge_id", "description": "indicator = 1 \nif rateplan_charge_id does not connect to zuora_rateplan_charge_tier on rateplan_charge_id and does connect on original_rateplan_charge_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082639.222743, "relation_name": "dev_dkruh1.analytics___finance__zuora_rateplan_charge", "raw_code": "-- Import --\n\nWITH import_zuora_rateplan_charge AS (\nSELECT * FROM {{ ref('analytics___finance_stg__zuora_rateplan_charge') }}\n), \n\nimport_zuora_rateplan_charge_tier AS (\nSELECT * FROM {{ ref('analytics___finance_stg__zuora_rateplan_charge_tier') }}\n), \n\n-- Logic --\n\n-- Some rateplan charges do not connect to rateplan_charge_tier by the rateplan_charge_id but do connect by the original_rateplan_charge_id\n-- We are creating an id for the the join with zuora_rateplan_charge_tier\nrateplan_charge_and_tier_join AS (\nSELECT DISTINCT \n charge.rateplan_charge_id,\n NVL(tier.rateplan_charge_id,orginal_tier.rateplan_charge_id) AS tier_join_rateplan_charge_id,\n IF(tier.rateplan_charge_id IS NULL AND orginal_tier.rateplan_charge_id IS NOT NULL,1,0) AS is_tier_join_original_rateplan_charge_id\nFROM import_zuora_rateplan_charge AS charge\nLEFT JOIN import_zuora_rateplan_charge_tier AS tier \n ON tier.rateplan_charge_id = charge.rateplan_charge_id\nLEFT JOIN import_zuora_rateplan_charge_tier AS orginal_tier \n ON orginal_tier.rateplan_charge_id = charge.original_rateplan_charge_id \n),\n\nzuora_rateplan_charge_res (\nSELECT\n charge.rateplan_charge_id,\n rateplan_charge_name,\n version,\n original_rateplan_charge_id,\n original_charge.tier_join_rateplan_charge_id,\n account_id,\n subscription_id,\n rateplan_id,\n product_id,\n product_rateplan_charge_id,\n product_rateplan_id,\n effective_start_date,\n effective_end_date,\n charge_model,\n charge_number,\n charge_type,\n list_price_base,\n billing_period,\n apply_discount_charge_type,\n dmrc,\n dtcv,\n tcv,\n mrr,\n quantity,\n processed_through_date,\n is_exclude_billing,\n is_exclude_booking,\n is_repaid,\n is_processed,\n is_deleted,\n SMALLINT(IF(LOWER(charge_type) = 'usage',1,0)) AS is_usage_charge_type,\n SMALLINT(IF(LOWER(charge_type) = 'onetime',1,0)) AS is_one_time_charge_type,\n SMALLINT(IF(LOWER(charge_type) = 'recurring',1,0)) AS is_recurring_charge_type,\n SMALLINT(NVL(original_charge.is_tier_join_original_rateplan_charge_id,0)) AS is_tier_join_original_rateplan_charge_id,\n updated_at,\n created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_zuora_rateplan_charge AS charge\nINNER JOIN rateplan_charge_and_tier_join AS original_charge\n ON charge.rateplan_charge_id = original_charge.rateplan_charge_id\n)\n\nSELECT *\nFROM zuora_rateplan_charge_res", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan_charge", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_rateplan_charge_tier", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge", "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_zuora_rateplan_charge AS (\nSELECT * FROM dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge\n), \n\nimport_zuora_rateplan_charge_tier AS (\nSELECT * FROM dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge_tier\n), \n\n-- Logic --\n\n-- Some rateplan charges do not connect to rateplan_charge_tier by the rateplan_charge_id but do connect by the original_rateplan_charge_id\n-- We are creating an id for the the join with zuora_rateplan_charge_tier\nrateplan_charge_and_tier_join AS (\nSELECT DISTINCT \n charge.rateplan_charge_id,\n NVL(tier.rateplan_charge_id,orginal_tier.rateplan_charge_id) AS tier_join_rateplan_charge_id,\n IF(tier.rateplan_charge_id IS NULL AND orginal_tier.rateplan_charge_id IS NOT NULL,1,0) AS is_tier_join_original_rateplan_charge_id\nFROM import_zuora_rateplan_charge AS charge\nLEFT JOIN import_zuora_rateplan_charge_tier AS tier \n ON tier.rateplan_charge_id = charge.rateplan_charge_id\nLEFT JOIN import_zuora_rateplan_charge_tier AS orginal_tier \n ON orginal_tier.rateplan_charge_id = charge.original_rateplan_charge_id \n),\n\nzuora_rateplan_charge_res (\nSELECT\n charge.rateplan_charge_id,\n rateplan_charge_name,\n version,\n original_rateplan_charge_id,\n original_charge.tier_join_rateplan_charge_id,\n account_id,\n subscription_id,\n rateplan_id,\n product_id,\n product_rateplan_charge_id,\n product_rateplan_id,\n effective_start_date,\n effective_end_date,\n charge_model,\n charge_number,\n charge_type,\n list_price_base,\n billing_period,\n apply_discount_charge_type,\n dmrc,\n dtcv,\n tcv,\n mrr,\n quantity,\n processed_through_date,\n is_exclude_billing,\n is_exclude_booking,\n is_repaid,\n is_processed,\n is_deleted,\n SMALLINT(IF(LOWER(charge_type) = 'usage',1,0)) AS is_usage_charge_type,\n SMALLINT(IF(LOWER(charge_type) = 'onetime',1,0)) AS is_one_time_charge_type,\n SMALLINT(IF(LOWER(charge_type) = 'recurring',1,0)) AS is_recurring_charge_type,\n SMALLINT(NVL(original_charge.is_tier_join_original_rateplan_charge_id,0)) AS is_tier_join_original_rateplan_charge_id,\n updated_at,\n created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_zuora_rateplan_charge AS charge\nINNER JOIN rateplan_charge_and_tier_join AS original_charge\n ON charge.rateplan_charge_id = original_charge.rateplan_charge_id\n)\n\nSELECT *\nFROM zuora_rateplan_charge_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_subscription": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_subscription", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.sql", "unique_id": "model.yoda.analytics___finance__zuora_subscription", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription", "analytics___finance__zuora_subscription"], "alias": "analytics___finance__zuora_subscription", "checksum": {"name": "sha256", "checksum": "00933c9a3e505d70c7cd46c73324af90527d2e1d8779d4a12e9d26a738049558"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled TABLE over zuora_subscription view", "columns": {"subscription_id": {"name": "subscription_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_name": {"name": "subscription_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_id": {"name": "sf_opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "term_type": {"name": "term_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "term_start_date": {"name": "term_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "term_end_date": {"name": "term_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "exclude_from_dunning_end_date": {"name": "exclude_from_dunning_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "latest_version": {"name": "latest_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "actual_contract_duration": {"name": "actual_contract_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "original_contract_duration": {"name": "original_contract_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "csm_extension_months": {"name": "csm_extension_months", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "end_of_contract_extension_month": {"name": "end_of_contract_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "last_version_csm_extension_months": {"name": "last_version_csm_extension_months", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "last_version_end_of_contract_extension_month": {"name": "last_version_end_of_contract_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "total_price": {"name": "total_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "segment": {"name": "segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelled_at": {"name": "cancelled_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_start_at": {"name": "subscription_start_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_end_at": {"name": "subscription_end_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "original_created_at": {"name": "original_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "original_id": {"name": "original_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_subscription_id": {"name": "previous_subscription_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_setting": {"name": "renewal_setting", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_from_subscription": {"name": "renewal_from_subscription", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_trial_subscription": {"name": "is_trial_subscription", "description": "indicator on subscription level from zuora = 1 when trial(test) subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_migration_subscription": {"name": "is_migration_subscription", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_downgraded": {"name": "is_downgraded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_exclude_from_dashboards": {"name": "is_exclude_from_dashboards", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082639.2756042, "relation_name": "dev_dkruh1.analytics___finance__zuora_subscription", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH staging AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__zuora_subscription') }}\n\n), zuora_subscription AS (\n\n SELECT subscription_id,\n subscription_name,\n account_id,\n sf_opportunity_id,\n status,\n term_type,\n term_start_date,\n term_end_date,\n exclude_from_dunning_end_date,\n version,\n latest_version,\n actual_contract_duration,\n original_contract_duration,\n csm_extension_months,\n end_of_contract_extension_month,\n LAG(csm_extension_months) OVER(PARTITION BY subscription_name ORDER BY version) AS last_version_csm_extension_months,\n LAG(end_of_contract_extension_month) OVER(PARTITION BY subscription_name ORDER BY version) AS last_version_end_of_contract_extension_month,\n total_price,\n segment,\n cancelled_at,\n subscription_start_at,\n subscription_end_at,\n original_created_at,\n original_id,\n previous_subscription_id,\n renewal_setting,\n renewal_from_subscription,\n is_staggered_subscription,\n is_trial_subscription,\n is_migration_subscription,\n is_downgraded,\n is_deleted,\n SMALLINT(MAX(IFNULL(is_exclude_from_dashboards,0)) OVER(PARTITION BY subscription_name)) AS is_exclude_from_dashboards,\n created_at,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM zuora_subscription", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_subscription", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__zuora_subscription"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH staging AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__zuora_subscription\n\n), zuora_subscription AS (\n\n SELECT subscription_id,\n subscription_name,\n account_id,\n sf_opportunity_id,\n status,\n term_type,\n term_start_date,\n term_end_date,\n exclude_from_dunning_end_date,\n version,\n latest_version,\n actual_contract_duration,\n original_contract_duration,\n csm_extension_months,\n end_of_contract_extension_month,\n LAG(csm_extension_months) OVER(PARTITION BY subscription_name ORDER BY version) AS last_version_csm_extension_months,\n LAG(end_of_contract_extension_month) OVER(PARTITION BY subscription_name ORDER BY version) AS last_version_end_of_contract_extension_month,\n total_price,\n segment,\n cancelled_at,\n subscription_start_at,\n subscription_end_at,\n original_created_at,\n original_id,\n previous_subscription_id,\n renewal_setting,\n renewal_from_subscription,\n is_staggered_subscription,\n is_trial_subscription,\n is_migration_subscription,\n is_downgraded,\n is_deleted,\n SMALLINT(MAX(IFNULL(is_exclude_from_dashboards,0)) OVER(PARTITION BY subscription_name)) AS is_exclude_from_dashboards,\n created_at,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM zuora_subscription", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_subscription_mrr_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_subscription_mrr_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.sql", "unique_id": "model.yoda.analytics___finance__zuora_subscription_mrr_daily", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "analytics___finance__zuora_subscription_mrr_daily"], "alias": "analytics___finance__zuora_subscription_mrr_daily", "checksum": {"name": "sha256", "checksum": "1b3488765833a1d984b6850aba0ff89b8a956e18c27dd43439e6e54e47cafc6f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [date, subscription_id, product_id]\nModeled table of the Zuora subscriptions MRR on a daily level.", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_id": {"name": "subscription_id", "description": "FK: zuora_subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "FK: finance_stg__zuora_product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_id": {"name": "sf_opportunity_id", "description": "FK: salesforce__opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_type": {"name": "sf_opportunity_type", "description": "Type of the corresponding sf_opportunity_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_stage": {"name": "sf_opportunity_stage", "description": "Stage of the corresponding sf_opportunity_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_id": {"name": "sf_account_id", "description": "FK: sf account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_name": {"name": "subscription_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_status": {"name": "subscription_status", "description": "The subscription status from Zuora (Active/Cancelled/Expired)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisioned_plan_name": {"name": "provisioned_plan_name", "description": "FK: plan_name in analytics___platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_date": {"name": "from_date", "description": "plan affective start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "The to_date is based on different fields depending on the term type (EVERGREEN/TERMED):\n\nFor EVERGREEN subscriptions there are two cases:\n 1. latest versions:\n If there is effective_end_date, the value will be the effective_end_date else it will be '2999-01-01'\n\n 2. earlier versions:\n the value will be equal to the effective start date of the next version (per product family)\n\nFor TERMED subscriptions there are three cases:\n 1. latest versions:\n If the subscription got cancelled, the value will be the subscription cancelled date else it will be '2999-01-01'\n\n 2. earlier versions:\n 2.1 If the effective start date did not change between the version and the following version,\n the value will be equal to the effective start date (from date will be equal to to date causing the version to be irrelevant)\n 2.2 If the effective start date did change between the version and the following version,\n the value will be equal to the effective start date of the next version (allowing us to show the data of the version up until the start of the new version)\n 3. lost after won:\n If the subscription is lost after won, the to_date will be the date in which the lost after won occured (will prevent retroactive changes)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "renewal_date": {"name": "renewal_date", "description": "IF:\n 1. term_type = 'TERMED' THEN renewal_date = effective_end_date\n 2. term_type = 'EVERGREEN' THEN renewal_date = NULL (there is no one renewal_date for subscription)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "conversion_rate": {"name": "conversion_rate", "description": "conversion rate from salesforce_stg__mc_conversion_rate accourding to effective start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_in_original_currency": {"name": "price_in_original_currency", "description": "Price of recurring charge per unit (quantity) in original currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "discount_in_original_currency": {"name": "discount_in_original_currency", "description": "discount_percentage * price_in_original_currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "price_after_discount_in_original_currency": {"name": "price_after_discount_in_original_currency", "description": "price_in_original_currency * (100- discount_percentage)/100", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "discount_percentage": {"name": "discount_percentage", "description": "Discount on recurring charge in precentage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "mrr_in_original_currency": {"name": "mrr_in_original_currency", "description": "product monthly price * units in original currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "mrr_in_usd": {"name": "mrr_in_usd", "description": "product monthly (price * units) / (coverstion rate to USD)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "original_contract_duration": {"name": "original_contract_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "is_expired_subscription": {"name": "is_expired_subscription", "description": "Indicates if the subscription is expired or not.\nExpaired subscription indicates late renewal", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_self_service": {"name": "is_self_service", "description": "term type = EVERGREEN (will remain =1 if subscription chanes to TERMED)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_annual_billing": {"name": "is_annual_billing", "description": "Indicates if the billing period is annual.\nFor HT it will always be 1, for LT it will be 1 if the customer subscribed to annual package.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_core_plan": {"name": "is_core_plan", "description": "core plan indicator is usually used in full service accounts where a subscription includes one main plan per product (core plan) + extensions (ie. syndication, extra seats,insights).\nfor extensions indicator = 0.\nfield is populated by the creator of the plan in zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_in_term_renewal": {"name": "is_in_term_renewal", "description": "Indicates if the renewal_opportunity_type = 'In Term Renewal'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "indicates if the subscription is lost after won or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won_per_org_product": {"name": "is_lost_after_won_per_org_product", "description": "indicates if the organization have a none lost after won subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "lost_after_won_date": {"name": "lost_after_won_date", "description": "The date in which the lost after won occured. null if the subscription is not lost after won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "lost_after_won_reason": {"name": "lost_after_won_reason", "description": "the reason for the lost after won from salesforce. null if the subscription is not lost after won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_free_month_cnt": {"name": "csm_free_month_cnt", "description": "The CSM free months that where given to the customer for the specific subscription up until the date.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "sales_free_month_cnt": {"name": "sales_free_month_cnt", "description": "The sales free months that where given to the customer for the specific subscription up until the date.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "free_month_cnt": {"name": "free_month_cnt", "description": "The total free months that where given to the customer for the specific subscription up until the date.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "effective_mrr": {"name": "effective_mrr", "description": "MRR that takes into account the free months effect.\nThe formula goes as follows:\n 1. IF free months = 0 THEN no change\n 2. IF free months > 0 THEN Effective MRR = MRR*(Original Contract Duration/(Original Contract Duration + Free Months))", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_month_mrr_impact": {"name": "free_month_mrr_impact", "description": "The amount of MRR that changed due to free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_free_month_mrr_impact": {"name": "sales_free_month_mrr_impact", "description": "The amount of MRR that changed due to sales free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "csm_free_month_mrr_impact": {"name": "csm_free_month_mrr_impact", "description": "The amount of MRR that changed due to CSM free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "main_plan_name": {"name": "main_plan_name", "description": "In Zuora, each product family can have several plans in each subscription (for example, 'Reviews - Enterprise' and 'Extra Seats (UGC)').\nWe will build an aggregated model on top of this table that will be on the level of [date, organization_key, product_family] and we will still want to be able to attach a single plan to each product family.\nThis field basically tells us what is the main plan for that organization_key and product_family in a specific date.\nThis is the order we used to determine the main plan:\n 1. provisioned plans before none provisioned plans\n 2. full service plans before self service plans\n 3. non extension plans before extension plans\n 4. Higher MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_main_plan_self_service": {"name": "is_main_plan_self_service", "description": "Indicates if the main plan is self service or full service (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_main_plan_annual_billing": {"name": "is_main_plan_annual_billing", "description": "Indicates if the main plan is annual billing (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "main_plan_platform_category_name": {"name": "main_plan_platform_category_name", "description": "Tells us what is the category (from analytics___platform__plan) of the main plan (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082639.324234, "relation_name": "dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily", "raw_code": "-- Import --\n\nWITH import_calendar AS (\nSELECT * FROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date < CURRENT_DATE\n),\n\nimport_zuora_subscription_mrr_over_time AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_subscription_mrr_over_time') }}\n),\n\nimport_sf_opportunity_free_month_over_time AS (\nSELECT * FROM {{ ref('analytics___finance__sf_opportunity_free_month_over_time') }}\n),\n\nimport_platform_plan AS (\nSELECT * FROM {{ ref('analytics___platform__plan') }}\n),\n\n-- Logic --\n\nzuora_subscription_mrr_daily AS (\nSELECT\n calendar.date,\n mrr.account_id,\n mrr.organization_key,\n mrr.sf_opportunity_id,\n mrr.sf_opportunity_type,\n mrr.sf_opportunity_stage,\n mrr.sf_account_id,\n mrr.subscription_name,\n mrr.version,\n mrr.subscription_id,\n mrr.subscription_status,\n mrr.product_id,\n mrr.plan_name,\n mrr.provisioned_plan_name,\n mrr.product_family,\n mrr.from_date,\n mrr.to_date,\n mrr.renewal_date,\n mrr.currency,\n mrr.conversion_rate,\n mrr.price_in_original_currency,\n mrr.discount_in_original_currency,\n mrr.price_after_discount_in_original_currency,\n mrr.discount_percentage,\n mrr.mrr_in_original_currency,\n mrr.mrr_in_usd,\n mrr.original_contract_duration,\n mrr.is_expired_subscription,\n mrr.is_staggered_subscription,\n mrr.is_self_service,\n mrr.is_annual_billing,\n mrr.is_core_plan,\n mrr.is_in_term_renewal,\n mrr.is_lost_after_won,\n mrr.lost_after_won_date,\n mrr.lost_after_won_reason,\n FLOAT(NVL(csm_free_month.field_value,0)) AS csm_free_month_cnt,\n FLOAT(NVL(sales_free_month.field_value,0)) AS sales_free_month_cnt,\n FLOAT(NVL(csm_free_month.field_value,0)+ NVL(sales_free_month.field_value,0)) AS free_month_cnt\nFROM import_zuora_subscription_mrr_over_time AS mrr\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= mrr.from_date AND calendar.date < mrr.to_date\nLEFT JOIN import_sf_opportunity_free_month_over_time AS csm_free_month\n ON csm_free_month.is_csm_free_months = 1\n AND mrr.sf_opportunity_id = csm_free_month.opportunity_id\n AND calendar.date >= csm_free_month.from_date \n AND calendar.date < csm_free_month.to_date\nLEFT JOIN import_sf_opportunity_free_month_over_time AS sales_free_month\n ON sales_free_month.is_sales_free_months = 1\n AND mrr.sf_opportunity_id = sales_free_month.opportunity_id\n AND calendar.date >= sales_free_month.from_date \n AND calendar.date < sales_free_month.to_date\nWHERE mrr.subscription_id NOT IN('2c92a00a76695d6a01766a4a1bda13ba') -- subscriptions with duplicated products\n),\n\nzuora_plan_daily AS (\nSELECT\n mrr.date,\n mrr.organization_key,\n mrr.product_family,\n mrr.provisioned_plan_name,\n mrr.is_self_service,\n mrr.is_annual_billing,\n plan.category_name,\n ROW_NUMBER() OVER(PARTITION BY mrr.date,mrr.organization_key,mrr.product_family ORDER BY mrr.is_core_plan DESC,\n mrr.is_self_service,\n mrr.is_annual_billing DESC,\n mrr.mrr_in_usd DESC) AS plan_row_number\nFROM zuora_subscription_mrr_daily AS mrr\nLEFT JOIN import_platform_plan AS plan ON mrr.provisioned_plan_name = plan.plan_name\n),\n\nzuora_subscription_effective_mrr_daily_prep AS (\nSELECT\n mrr.date,\n mrr.subscription_id,\n mrr.product_id,\n mrr.account_id,\n mrr.organization_key,\n mrr.sf_opportunity_id,\n mrr.sf_opportunity_type,\n mrr.sf_opportunity_stage,\n mrr.sf_account_id,\n mrr.subscription_name,\n mrr.version,\n mrr.subscription_status,\n mrr.plan_name,\n mrr.provisioned_plan_name,\n mrr.product_family,\n mrr.from_date,\n mrr.to_date,\n mrr.renewal_date,\n mrr.currency,\n mrr.conversion_rate,\n mrr.price_in_original_currency,\n mrr.discount_in_original_currency,\n mrr.price_after_discount_in_original_currency,\n mrr.discount_percentage,\n mrr.mrr_in_original_currency,\n mrr.mrr_in_usd,\n mrr.original_contract_duration,\n mrr.is_expired_subscription,\n mrr.is_staggered_subscription,\n mrr.is_self_service,\n mrr.is_annual_billing,\n mrr.is_core_plan,\n mrr.is_in_term_renewal,\n mrr.is_lost_after_won,\n mrr.lost_after_won_date,\n mrr.lost_after_won_reason,\n mrr.csm_free_month_cnt,\n mrr.sales_free_month_cnt,\n mrr.free_month_cnt,\n IF(mrr.free_month_cnt = 0,mrr.mrr_in_usd,mrr.mrr_in_usd*(mrr.original_contract_duration/(mrr.original_contract_duration+mrr.free_month_cnt))) AS effective_mrr,\n plan.provisioned_plan_name AS main_plan_name,\n plan.is_self_service AS is_main_plan_self_service,\n plan.is_annual_billing AS is_main_plan_annual_billing,\n plan.category_name AS main_plan_platform_category_name,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_subscription_mrr_daily AS mrr\nLEFT JOIN zuora_plan_daily AS plan \n ON mrr.date = plan.date\n AND mrr.date = plan.date\n AND mrr.organization_key = plan.organization_key\n AND mrr.product_family = plan.product_family\n AND plan.plan_row_number = 1\n),\n\nzuora_subscription_effective_mrr_daily AS (\nSELECT\n date,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n currency,\n conversion_rate,\n price_in_original_currency,\n discount_in_original_currency,\n price_after_discount_in_original_currency,\n discount_percentage,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n MIN(is_lost_after_won) OVER(PARTITION BY date,organization_key,product_family) AS is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n csm_free_month_cnt,\n sales_free_month_cnt,\n free_month_cnt,\n effective_mrr,\n effective_mrr-mrr_in_usd AS free_month_mrr_impact,\n IF(free_month_cnt = 0,0,(sales_free_month_cnt/free_month_cnt)*(effective_mrr-mrr_in_usd)) AS sales_free_month_mrr_impact,\n IF(free_month_cnt = 0,0,(csm_free_month_cnt/free_month_cnt)*(effective_mrr-mrr_in_usd)) AS csm_free_month_mrr_impact,\n main_plan_name,\n is_main_plan_self_service,\n is_main_plan_annual_billing,\n main_plan_platform_category_name,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_subscription_effective_mrr_daily_prep\n)\n\nSELECT *\nFROM zuora_subscription_effective_mrr_daily", "language": "sql", "refs": [{"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}, {"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}, {"name": "analytics___platform__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___finance__zuora_subscription_mrr_over_time", "model.yoda.analytics___finance__sf_opportunity_free_month_over_time", "model.yoda.analytics___platform__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_calendar AS (\nSELECT * FROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date < CURRENT_DATE\n),\n\nimport_zuora_subscription_mrr_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time\n),\n\nimport_sf_opportunity_free_month_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time\n),\n\nimport_platform_plan AS (\nSELECT * FROM dev_dkruh1.analytics___platform__plan\n),\n\n-- Logic --\n\nzuora_subscription_mrr_daily AS (\nSELECT\n calendar.date,\n mrr.account_id,\n mrr.organization_key,\n mrr.sf_opportunity_id,\n mrr.sf_opportunity_type,\n mrr.sf_opportunity_stage,\n mrr.sf_account_id,\n mrr.subscription_name,\n mrr.version,\n mrr.subscription_id,\n mrr.subscription_status,\n mrr.product_id,\n mrr.plan_name,\n mrr.provisioned_plan_name,\n mrr.product_family,\n mrr.from_date,\n mrr.to_date,\n mrr.renewal_date,\n mrr.currency,\n mrr.conversion_rate,\n mrr.price_in_original_currency,\n mrr.discount_in_original_currency,\n mrr.price_after_discount_in_original_currency,\n mrr.discount_percentage,\n mrr.mrr_in_original_currency,\n mrr.mrr_in_usd,\n mrr.original_contract_duration,\n mrr.is_expired_subscription,\n mrr.is_staggered_subscription,\n mrr.is_self_service,\n mrr.is_annual_billing,\n mrr.is_core_plan,\n mrr.is_in_term_renewal,\n mrr.is_lost_after_won,\n mrr.lost_after_won_date,\n mrr.lost_after_won_reason,\n FLOAT(NVL(csm_free_month.field_value,0)) AS csm_free_month_cnt,\n FLOAT(NVL(sales_free_month.field_value,0)) AS sales_free_month_cnt,\n FLOAT(NVL(csm_free_month.field_value,0)+ NVL(sales_free_month.field_value,0)) AS free_month_cnt\nFROM import_zuora_subscription_mrr_over_time AS mrr\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= mrr.from_date AND calendar.date < mrr.to_date\nLEFT JOIN import_sf_opportunity_free_month_over_time AS csm_free_month\n ON csm_free_month.is_csm_free_months = 1\n AND mrr.sf_opportunity_id = csm_free_month.opportunity_id\n AND calendar.date >= csm_free_month.from_date \n AND calendar.date < csm_free_month.to_date\nLEFT JOIN import_sf_opportunity_free_month_over_time AS sales_free_month\n ON sales_free_month.is_sales_free_months = 1\n AND mrr.sf_opportunity_id = sales_free_month.opportunity_id\n AND calendar.date >= sales_free_month.from_date \n AND calendar.date < sales_free_month.to_date\nWHERE mrr.subscription_id NOT IN('2c92a00a76695d6a01766a4a1bda13ba') -- subscriptions with duplicated products\n),\n\nzuora_plan_daily AS (\nSELECT\n mrr.date,\n mrr.organization_key,\n mrr.product_family,\n mrr.provisioned_plan_name,\n mrr.is_self_service,\n mrr.is_annual_billing,\n plan.category_name,\n ROW_NUMBER() OVER(PARTITION BY mrr.date,mrr.organization_key,mrr.product_family ORDER BY mrr.is_core_plan DESC,\n mrr.is_self_service,\n mrr.is_annual_billing DESC,\n mrr.mrr_in_usd DESC) AS plan_row_number\nFROM zuora_subscription_mrr_daily AS mrr\nLEFT JOIN import_platform_plan AS plan ON mrr.provisioned_plan_name = plan.plan_name\n),\n\nzuora_subscription_effective_mrr_daily_prep AS (\nSELECT\n mrr.date,\n mrr.subscription_id,\n mrr.product_id,\n mrr.account_id,\n mrr.organization_key,\n mrr.sf_opportunity_id,\n mrr.sf_opportunity_type,\n mrr.sf_opportunity_stage,\n mrr.sf_account_id,\n mrr.subscription_name,\n mrr.version,\n mrr.subscription_status,\n mrr.plan_name,\n mrr.provisioned_plan_name,\n mrr.product_family,\n mrr.from_date,\n mrr.to_date,\n mrr.renewal_date,\n mrr.currency,\n mrr.conversion_rate,\n mrr.price_in_original_currency,\n mrr.discount_in_original_currency,\n mrr.price_after_discount_in_original_currency,\n mrr.discount_percentage,\n mrr.mrr_in_original_currency,\n mrr.mrr_in_usd,\n mrr.original_contract_duration,\n mrr.is_expired_subscription,\n mrr.is_staggered_subscription,\n mrr.is_self_service,\n mrr.is_annual_billing,\n mrr.is_core_plan,\n mrr.is_in_term_renewal,\n mrr.is_lost_after_won,\n mrr.lost_after_won_date,\n mrr.lost_after_won_reason,\n mrr.csm_free_month_cnt,\n mrr.sales_free_month_cnt,\n mrr.free_month_cnt,\n IF(mrr.free_month_cnt = 0,mrr.mrr_in_usd,mrr.mrr_in_usd*(mrr.original_contract_duration/(mrr.original_contract_duration+mrr.free_month_cnt))) AS effective_mrr,\n plan.provisioned_plan_name AS main_plan_name,\n plan.is_self_service AS is_main_plan_self_service,\n plan.is_annual_billing AS is_main_plan_annual_billing,\n plan.category_name AS main_plan_platform_category_name,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_subscription_mrr_daily AS mrr\nLEFT JOIN zuora_plan_daily AS plan \n ON mrr.date = plan.date\n AND mrr.date = plan.date\n AND mrr.organization_key = plan.organization_key\n AND mrr.product_family = plan.product_family\n AND plan.plan_row_number = 1\n),\n\nzuora_subscription_effective_mrr_daily AS (\nSELECT\n date,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n currency,\n conversion_rate,\n price_in_original_currency,\n discount_in_original_currency,\n price_after_discount_in_original_currency,\n discount_percentage,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n MIN(is_lost_after_won) OVER(PARTITION BY date,organization_key,product_family) AS is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n csm_free_month_cnt,\n sales_free_month_cnt,\n free_month_cnt,\n effective_mrr,\n effective_mrr-mrr_in_usd AS free_month_mrr_impact,\n IF(free_month_cnt = 0,0,(sales_free_month_cnt/free_month_cnt)*(effective_mrr-mrr_in_usd)) AS sales_free_month_mrr_impact,\n IF(free_month_cnt = 0,0,(csm_free_month_cnt/free_month_cnt)*(effective_mrr-mrr_in_usd)) AS csm_free_month_mrr_impact,\n main_plan_name,\n is_main_plan_self_service,\n is_main_plan_annual_billing,\n main_plan_platform_category_name,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM zuora_subscription_effective_mrr_daily_prep\n)\n\nSELECT *\nFROM zuora_subscription_effective_mrr_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_subscription_mrr_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_subscription_mrr_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.sql", "unique_id": "model.yoda.analytics___finance__zuora_subscription_mrr_monthly", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_monthly", "analytics___finance__zuora_subscription_mrr_monthly"], "alias": "analytics___finance__zuora_subscription_mrr_monthly", "checksum": {"name": "sha256", "checksum": "d5246dca71050a7efdf84ab5ea3ffad287f64bc206a325bba6b45610772e7028"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_photon_with_intensive_memory_executors"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "PK: [month, subscription_id, product_id]\nModeled table of the Zuora subscriptions MRR on a monthly level.", "columns": {"month": {"name": "month", "description": "aggregation month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_id": {"name": "subscription_id", "description": "FK: zuora_subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "FK: finance_stg__zuora_product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_id": {"name": "sf_opportunity_id", "description": "FK: salesforce__opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_type": {"name": "sf_opportunity_type", "description": "Type of the corresponding sf_opportunity_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_stage": {"name": "sf_opportunity_stage", "description": "Stage of the corresponding sf_opportunity_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_id": {"name": "sf_account_id", "description": "FK: sf account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_name": {"name": "subscription_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "Latest found version coalesce(closing,opening,within_month)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_status": {"name": "subscription_status", "description": "Latest found subscription_status coalesce(closing,opening,within_month)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisioned_plan_name": {"name": "provisioned_plan_name", "description": "FK: plan_name in analytics___platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_date": {"name": "from_date", "description": "plan affective start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "The to_date is based on different fields depending on the term type (EVERGREEN/TERMED):\n\nFor EVERGREEN subscriptions there are two cases:\n 1. latest versions:\n If there is effective_end_date, the value will be the effective_end_date else it will be '2999-01-01'\n\n 2. earlier versions:\n the value will be equal to the effective start date of the next version (per product family)\n\nFor TERMED subscriptions there are three cases:\n 1. latest versions:\n If the subscription got cancelled, the value will be the subscription cancelled date else it will be '2999-01-01'\n\n 2. earlier versions:\n 2.1 If the effective start date did not change between the version and the following version,\n the value will be equal to the effective start date (from date will be equal to to date causing the version to be irrelevant)\n 2.2 If the effective start date did change between the version and the following version,\n the value will be equal to the effective start date of the next version (allowing us to show the data of the version up until the start of the new version)\n 3. lost after won:\n If the subscription is lost after won, the to_date will be the date in which the lost after won occured (will prevent retroactive changes)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "renewal_date": {"name": "renewal_date", "description": "IF:\n 1. term_type = 'TERMED' THEN renewal_date = effective_end_date\n 2. term_type = 'EVERGREEN' THEN renewal_date = NULL (there is no one renewal_date for subscription)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "from_date_month_cnt": {"name": "from_date_month_cnt", "description": "months bwtween subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "distinct_subscribe_days_cnt": {"name": "distinct_subscribe_days_cnt", "description": "number of subscription days in month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "Latest found currency coalesce(closing,opening,within_month)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "conversion_rate": {"name": "conversion_rate", "description": "Latest found conversion_rate coalesce(closing,opening,within_month)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_mrr_in_original_currency": {"name": "opening_mrr_in_original_currency", "description": "closing_mrr_in_original_currency of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "closing_mrr_in_original_currency": {"name": "closing_mrr_in_original_currency", "description": "End of month product monthly price after discount in original currency devided by billing_unit (monthly=1, yearly=12)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "within_month_mrr_in_original_currency": {"name": "within_month_mrr_in_original_currency", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_mrr_in_original_currency = mrr_in_original_currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "opening_mrr_in_usd": {"name": "opening_mrr_in_usd", "description": "closing_mrr_in_usd of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "closing_mrr_in_usd": {"name": "closing_mrr_in_usd", "description": "End of month product mrr_in_original_currency / (coverstion rate to USD)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "within_month_mrr_in_usd": {"name": "within_month_mrr_in_usd", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_mrr_in_usd = mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "opening_effective_mrr_in_usd": {"name": "opening_effective_mrr_in_usd", "description": "closing_effective_mrr of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_effective_mrr_in_usd": {"name": "closing_effective_mrr_in_usd", "description": "End of month MRR that takes into account the free months effect.\nThe formula goes as follows:\n 1. IF free months = 0 THEN no change\n 2. IF free months > 0 THEN Effective MRR = MRR*(Original Contract Duration/(Original Contract Duration + Free Months))", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_effective_mrr": {"name": "delta_effective_mrr", "description": "closing - opening effective_mrr_in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "within_month_effective_mrr_in_usd": {"name": "within_month_effective_mrr_in_usd", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_effective_mrr = effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_tcv_in_usd": {"name": "closing_tcv_in_usd", "description": "Total Contract Value (TCV) = original_MRR * original_contract_duration", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "adjusted_revenue_in_usd": {"name": "adjusted_revenue_in_usd", "description": "effective_mrr X number of subscription days in month. \nHere effective_mrr = COALESCE(opening,closing,within_month)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "catch_up_revenue_in_usd": {"name": "catch_up_revenue_in_usd", "description": "free_month_catch_up_revenue + lost_after_won_catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_after_won_catch_up_revenue_in_usd": {"name": "lost_after_won_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the LAW only affect the revenue from the LAW recognition month on.\nIn order to catch the entire LAW impact, we do a catch-up calculation:\n lost_after_won_catch_up_revenue = delta_lost_after_won_effective_mrr X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_month_catch_up_revenue_in_usd": {"name": "free_month_catch_up_revenue_in_usd", "description": "Because we are not fixing the MRR retroactively, the given free months only affect the revenue from the grant month on.\nIn order to catch the entire free months impact, we do a catch-up calculation:\n free_month_catch_up_revenue = delta_free_month_mrr_impact X months between subscription start month and month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "approximate_revenue_in_usd": {"name": "approximate_revenue_in_usd", "description": "The approximate revenue is mainly for FP&A to try and bridge between our revenue numbers and accounting revenue numbers.\napproximate_revenue = adjusted_revenue + catch_up_revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_after_won_date": {"name": "lost_after_won_date", "description": "The date in which the lost after won occured. null if the subscription is not lost after won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "lost_after_won_reason": {"name": "lost_after_won_reason", "description": "the reason for the lost after won from salesforce. null if the subscription is not lost after won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_lost_after_won_effective_mrr": {"name": "opening_lost_after_won_effective_mrr", "description": "closing_lost_after_won_effective_mrr of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_lost_after_won_effective_mrr": {"name": "closing_lost_after_won_effective_mrr", "description": "if is_lost_after_won = 1 then closing_lost_after_won_effective_mrr = effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_lost_after_won_effective_mrr": {"name": "delta_lost_after_won_effective_mrr", "description": "closing - opening lost_after_won_effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_after_won_within_month_effective_mrr": {"name": "lost_after_won_within_month_effective_mrr", "description": "IF is_terminated_subscription_within_first_month = 1 AND is_lost_after_won = 1 THEN lost_after_won_within_month_effective_mrr = within_month_effective_mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "original_contract_duration": {"name": "original_contract_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "is_expired_subscription": {"name": "is_expired_subscription", "description": "Latest found is_expired_subscription coalesce(closing,opening,within_month)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_self_service": {"name": "is_self_service", "description": "term type = EVERGREEN (will remain =1 if subscription chanes to TERMED)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_annual_billing": {"name": "is_annual_billing", "description": "Indicates if the billing period is annual.\nFor HT it will always be 1, for LT it will be 1 if the customer subscribed to annual package.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_core_plan": {"name": "is_core_plan", "description": "core plan indicator is usually used in full service accounts where a subscription includes one main plan per product (core plan) + extensions (ie. syndication, extra seats,insights).\nfor extensions indicator = 0.\nfield is populated by the creator of the plan in zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_in_term_renewal": {"name": "is_in_term_renewal", "description": "Indicates if the renewal_opportunity_type = 'In Term Renewal'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "indicates if the subscription is lost after won or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won_per_org_product": {"name": "is_lost_after_won_per_org_product", "description": "indicates if the organization have a none lost after won subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_free_month_cnt": {"name": "opening_free_month_cnt", "description": "Number of free_months related to the opportunity at the end of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "closing_free_month_cnt": {"name": "closing_free_month_cnt", "description": "Number of free_months related to the opportunity at the end of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "delta_free_month_cnt": {"name": "delta_free_month_cnt", "description": "delta_free_month_cnt = closing_free_month_cnt - opening_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "granted_free_months_value": {"name": "granted_free_months_value", "description": "The $ value of the free months granted this month.\n\n granted_free_months_value = TCV*(delta_free_month_cnt/(original_contract_duration+closing_free_month_cnt))\n\nExample can be found in the following google sheet: https://docs.google.com/spreadsheets/d/1GO4utFHcI9daGWZ0cGBduvZTpO_uAO7gb_lgST_nBSQ/edit#gid=0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_csm_free_month_cnt": {"name": "opening_csm_free_month_cnt", "description": "Number of csm_free_months related to the opportunity at the end of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "closing_csm_free_month_cnt": {"name": "closing_csm_free_month_cnt", "description": "Number of csm_free_months related to the opportunity at the end of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "delta_csm_free_month_cnt": {"name": "delta_csm_free_month_cnt", "description": "delta_csm_free_month_cnt = closing_csm_free_month_cnt - opening_csm_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "granted_csm_free_months_value": {"name": "granted_csm_free_months_value", "description": "The $ value of the CSM free months granted this month.\n\n granted_csm_free_months_value = (csm_free_months_cnt/free_months_cnt) * granted_free_months_value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_sales_free_month_cnt": {"name": "opening_sales_free_month_cnt", "description": "Number of sales_free_months related to the opportunity at the end of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "closing_sales_free_month_cnt": {"name": "closing_sales_free_month_cnt", "description": "Number of sales_free_months related to the opportunity at the end of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "delta_sales_free_month_cnt": {"name": "delta_sales_free_month_cnt", "description": "delta_sales_free_month_cnt = closing_sales_free_month_cnt - opening_sales_free_month_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "granted_sales_free_months_value": {"name": "granted_sales_free_months_value", "description": "The $ value of the Sales free months granted this month.\n\n granted_sales_free_months_value = (sales_free_months_cnt/free_months_cnt) * granted_free_months_value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_free_month_mrr_impact": {"name": "opening_free_month_mrr_impact", "description": "closing_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_free_month_mrr_impact": {"name": "closing_free_month_mrr_impact", "description": "End of month sales_free_month_mrr_impact + csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_free_month_mrr_impact": {"name": "delta_free_month_mrr_impact", "description": "closing - opening free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_csm_free_month_mrr_impact": {"name": "opening_csm_free_month_mrr_impact", "description": "closing_csm_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_csm_free_month_mrr_impact": {"name": "closing_csm_free_month_mrr_impact", "description": "End of month MRR that changed due to CSM free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_csm_free_month_mrr_impact": {"name": "delta_csm_free_month_mrr_impact", "description": "closing - opening csm_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_sales_free_month_mrr_impact": {"name": "opening_sales_free_month_mrr_impact", "description": "closing_sales_free_month_mrr_impact of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closing_sales_free_month_mrr_impact": {"name": "closing_sales_free_month_mrr_impact", "description": "End of month MRR that changed due to sales free months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_sales_free_month_mrr_impact": {"name": "delta_sales_free_month_mrr_impact", "description": "closing - opening sales_free_month_mrr_impact", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opening_main_plan_name": {"name": "opening_main_plan_name", "description": "closing_main_plan_name of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_main_plan_name": {"name": "closing_main_plan_name", "description": "End of month : \nIn Zuora, each product family can have several plans in each subscription (for example, 'Reviews - Enterprise' and 'Extra Seats (UGC)').\nWe will build an aggregated model on top of this table that will be on the level of [date, organization_key, product_family] and we will still want to be able to attach a single plan to each product family.\nThis field basically tells us what is the main plan for that organization_key and product_family in a specific date.\nThis is the order we used to determine the main plan:\n 1. provisioned plans before none provisioned plans\n 2. full service plans before self service plans\n 3. non extension plans before extension plans\n 4. Higher MRR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_main_plan_platform_category_name": {"name": "opening_main_plan_platform_category_name", "description": "closing_main_plan_platform_category_name of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_main_plan_platform_category_name": {"name": "closing_main_plan_platform_category_name", "description": "End of month :\nTells us what is the category (from analytics___platform__plan) of the main plan (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_is_main_plan_annual_billing": {"name": "opening_is_main_plan_annual_billing", "description": "closing_is_main_plan_annual_billing of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_main_plan_annual_billing": {"name": "closing_is_main_plan_annual_billing", "description": "End of month : \nIndicates if the main plan is annual billing (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_main_plan_self_service": {"name": "opening_is_main_plan_self_service", "description": "closing_is_main_plan_self_service of previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_main_plan_self_service": {"name": "closing_is_main_plan_self_service", "description": "End of month : \nIndicates if the main plan is self service or full service (see the description of main_plan_name for more details)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_main_plan_name": {"name": "within_month_main_plan_name", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_main_plan_name = main_plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_main_plan_platform_category_name": {"name": "within_month_main_plan_platform_category_name", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_main_plan_platform_category_name = main_plan_platform_category_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "within_month_is_main_plan_annual_billing": {"name": "within_month_is_main_plan_annual_billing", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_annual_billing = is_main_plan_annual_billing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_is_main_plan_self_service": {"name": "within_month_is_main_plan_self_service", "description": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_self_service = is_main_plan_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "within_month_rank": {"name": "within_month_rank", "description": "In case of multiple subscriptions (per organization per month) which were terminated within first month this rank \n indicates the lastest subscription.\n For organization product aggregation we will take include only within_month_rank = 1.\n If within_month_rank is NULL is_terminated_subscription_within_first_month = 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_terminated_subscription_within_first_month": {"name": "is_terminated_subscription_within_first_month", "description": "subscription that started and ended in the same month and will not have opening or closing values", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_redundant_within_month": {"name": "is_redundant_within_month", "description": "indicator = 1 if within_month mrr is not null and closing or opening mrr exists is not null.\nIn this case we will ignore the within_month row. within_month mrr will only be included when there are not opening or closing mrr.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights": {"name": "is_insights", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc": {"name": "is_ugc", "description": "is_reviews = 1 OR is_vms = 1 OR is_insights = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_photon_with_intensive_memory_executors"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_photon_with_intensive_memory_executors"}}}, "created_at": 1700082639.4618034, "relation_name": "dev_dkruh1.analytics___finance__zuora_subscription_mrr_monthly", "raw_code": "-- Import -- \n\nWITH import_zuora_subscription_mrr_daily AS (\nSELECT *\nFROM {{ ref('analytics___finance__zuora_subscription_mrr_daily') }}\n{% if target.name == 'dev' %}\nWHERE date >= DATE_SUB(DATE(CURRENT_DATE),7)\n{% endif %}\n),\n\n-- Logic --\n\nend_of_month_calculation AS (\nSELECT\n TRUNC(date,'MONTH') AS month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n currency,\n conversion_rate,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n mrr_in_usd*original_contract_duration AS tcv_in_usd,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n csm_free_month_cnt,\n sales_free_month_cnt,\n free_month_cnt,\n effective_mrr,\n free_month_mrr_impact,\n sales_free_month_mrr_impact,\n csm_free_month_mrr_impact,\n main_plan_name,\n is_main_plan_self_service,\n is_main_plan_annual_billing,\n main_plan_platform_category_name,\n CASE WHEN date = LAST_DAY(date) THEN 1\n WHEN TRUNC(date,'MONTH') = TRUNC(CURRENT_DATE,'MONTH') AND date = MAX(date) OVER () THEN 1\n ELSE 0 END AS is_end_of_month,\n IF(date = MAX(date) OVER (PARTITION BY subscription_id,product_id),1,0) AS is_max_date_per_subscription_product,\n IF(TRUNC(from_date,'MONTH') = TRUNC(to_date,'MONTH'),1,0) AS is_terminated_subscription_within_first_month\nFROM import_zuora_subscription_mrr_daily\n),\n\nclosing_mrr_metrics AS (\n SELECT *\n FROM end_of_month_calculation\n WHERE is_end_of_month = 1\n),\n\nopening_mrr_metrics AS (\nSELECT\n ADD_MONTHS(month,1) AS month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n currency,\n conversion_rate,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n tcv_in_usd,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n csm_free_month_cnt,\n sales_free_month_cnt,\n free_month_cnt,\n effective_mrr,\n free_month_mrr_impact,\n sales_free_month_mrr_impact,\n csm_free_month_mrr_impact,\n main_plan_name,\n is_main_plan_self_service,\n is_main_plan_annual_billing,\n main_plan_platform_category_name\nFROM closing_mrr_metrics\nWHERE month < TRUNC(CURRENT_DATE,'MONTH')\n),\n\nopening_closing_subscription_product AS (\nSELECT \n NVL(close.month,open.month) AS month,\n NVL(close.subscription_id,open.subscription_id) AS subscription_id,\n NVL(close.product_id,open.product_id) AS product_id,\n NVL(close.account_id,open.account_id) AS account_id,\n NVL(close.organization_key,open.organization_key) AS organization_key,\n NVL(close.sf_opportunity_id,open.sf_opportunity_id) AS sf_opportunity_id,\n NVL(close.sf_opportunity_type,open.sf_opportunity_type) AS sf_opportunity_type,\n NVL(close.sf_opportunity_stage,open.sf_opportunity_stage) AS sf_opportunity_stage,\n NVL(close.sf_account_id,open.sf_account_id) AS sf_account_id,\n NVL(close.subscription_name,open.subscription_name) AS subscription_name,\n NVL(close.version,open.version) AS version,\n NVL(close.subscription_status,open.subscription_status) AS subscription_status,\n NVL(close.plan_name,open.plan_name) AS plan_name,\n NVL(close.provisioned_plan_name,open.provisioned_plan_name) AS provisioned_plan_name,\n NVL(close.product_family,open.product_family) AS product_family,\n NVL(close.from_date,open.from_date) AS from_date,\n NVL(close.to_date,open.to_date) AS to_date,\n NVL(close.renewal_date,open.renewal_date) AS renewal_date,\n NVL(close.currency,open.currency) AS currency,\n NVL(close.conversion_rate,open.conversion_rate) AS conversion_rate,\n open.main_plan_name AS opening_main_plan_name,\n close.main_plan_name AS closing_main_plan_name,\n open.main_plan_platform_category_name AS opening_main_plan_platform_category_name,\n close.main_plan_platform_category_name AS closing_main_plan_platform_category_name,\n open.is_main_plan_annual_billing AS opening_is_main_plan_annual_billing,\n close.is_main_plan_annual_billing AS closing_is_main_plan_annual_billing,\n open.is_main_plan_self_service AS opening_is_main_plan_self_service,\n close.is_main_plan_self_service AS closing_is_main_plan_self_service,\n open.mrr_in_original_currency AS opening_mrr_in_original_currency,\n close.mrr_in_original_currency AS closing_mrr_in_original_currency,\n open.mrr_in_usd AS opening_mrr_in_usd,\n close.mrr_in_usd AS closing_mrr_in_usd,\n open.effective_mrr AS opening_effective_mrr,\n close.effective_mrr AS closing_effective_mrr,\n NVL(close.effective_mrr,0) - NVL(open.effective_mrr,0) AS delta_effective_mrr,\n close.tcv_in_usd AS closing_tcv_in_usd,\n NVL(close.original_contract_duration,open.original_contract_duration) AS original_contract_duration,\n NVL(close.is_expired_subscription,open.is_expired_subscription) AS is_expired_subscription,\n NVL(close.is_staggered_subscription,open.is_staggered_subscription) AS is_staggered_subscription,\n NVL(close.is_self_service,open.is_self_service) AS is_self_service,\n NVL(close.is_annual_billing,open.is_annual_billing) AS is_annual_billing,\n NVL(close.is_core_plan,open.is_core_plan) AS is_core_plan,\n NVL(close.is_in_term_renewal,open.is_in_term_renewal) AS is_in_term_renewal,\n NVL(close.is_lost_after_won,open.is_lost_after_won) AS is_lost_after_won,\n NVL(close.is_lost_after_won_per_org_product,open.is_lost_after_won_per_org_product) AS is_lost_after_won_per_org_product,\n NVL(close.lost_after_won_date,open.lost_after_won_date) AS lost_after_won_date,\n NVL(close.lost_after_won_reason,open.lost_after_won_reason) AS lost_after_won_reason,\n open.free_month_cnt AS opening_free_month_cnt,\n close.free_month_cnt AS closing_free_month_cnt,\n IF(close.month IS NULL,0,close.free_month_cnt - NVL(open.free_month_cnt,0)) AS delta_free_month_cnt,\n NVL(open.csm_free_month_cnt,0) AS opening_csm_free_month_cnt,\n NVL(close.csm_free_month_cnt,0) AS closing_csm_free_month_cnt,\n IF(close.month IS NULL,0,close.csm_free_month_cnt - NVL(open.csm_free_month_cnt,0)) AS delta_csm_free_month_cnt,\n NVL(open.sales_free_month_cnt,0) AS opening_sales_free_month_cnt,\n NVL(close.sales_free_month_cnt,0) AS closing_sales_free_month_cnt,\n IF(close.month IS NULL,0,close.sales_free_month_cnt - NVL(open.sales_free_month_cnt,0)) AS delta_sales_free_month_cnt,\n open.free_month_mrr_impact AS opening_free_month_mrr_impact,\n close.free_month_mrr_impact AS closing_free_month_mrr_impact,\n NVL(close.free_month_mrr_impact,0) - NVL(open.free_month_mrr_impact,0) AS delta_free_month_mrr_impact,\n open.csm_free_month_mrr_impact AS opening_csm_free_month_mrr_impact,\n close.csm_free_month_mrr_impact AS closing_csm_free_month_mrr_impact,\n NVL(close.csm_free_month_mrr_impact,0) - NVL(open.csm_free_month_mrr_impact,0) AS delta_csm_free_month_mrr_impact,\n open.sales_free_month_mrr_impact AS opening_sales_free_month_mrr_impact,\n close.sales_free_month_mrr_impact AS closing_sales_free_month_mrr_impact,\n NVL(close.sales_free_month_mrr_impact,0) - NVL(open.sales_free_month_mrr_impact,0) AS delta_sales_free_month_mrr_impact,\n 0 AS is_terminated_subscription_within_first_month\nFROM closing_mrr_metrics AS close\nFULL OUTER JOIN opening_mrr_metrics AS open\n ON close.subscription_id = open.subscription_id\n AND close.product_id = open.product_id\n AND close.month = open.month\n),\n\nwithin_month_calculation AS (\nSELECT\n month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n currency,\n conversion_rate,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n csm_free_month_cnt,\n sales_free_month_cnt,\n free_month_cnt,\n effective_mrr,\n main_plan_name,\n is_main_plan_self_service,\n is_main_plan_annual_billing,\n main_plan_platform_category_name,\n IF(CONCAT(month,organization_key,product_family) IN (SELECT DISTINCT CONCAT(month,organization_key,product_family) FROM opening_closing_subscription_product),1,0) AS is_redundant_within_month,\n ROW_NUMBER() OVER(PARTITION BY month,organization_key,product_family ORDER BY to_date DESC,\n is_core_plan DESC,\n is_self_service,\n is_annual_billing DESC,\n effective_mrr DESC) AS within_month_rank\nFROM end_of_month_calculation\nWHERE is_max_date_per_subscription_product = 1\nAND is_terminated_subscription_within_first_month = 1\n),\n\nsubscription_product_union_within_month AS (\nSELECT\n month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n MONTHS_BETWEEN(month,TRUNC(from_date,'MONTH')) AS from_date_month_cnt,\n currency,\n conversion_rate,\n opening_mrr_in_original_currency,\n closing_mrr_in_original_currency,\n NULL AS within_month_mrr_in_original_currency,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n NULL AS within_month_mrr_in_usd,\n opening_effective_mrr,\n closing_effective_mrr,\n delta_effective_mrr,\n closing_tcv_in_usd,\n NULL AS within_month_effective_mrr,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n opening_free_month_cnt,\n closing_free_month_cnt,\n delta_free_month_cnt,\n opening_csm_free_month_cnt,\n closing_csm_free_month_cnt,\n delta_csm_free_month_cnt,\n opening_sales_free_month_cnt,\n closing_sales_free_month_cnt,\n delta_sales_free_month_cnt,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_main_plan_name,\n closing_main_plan_name,\n opening_main_plan_platform_category_name,\n closing_main_plan_platform_category_name,\n opening_is_main_plan_annual_billing,\n closing_is_main_plan_annual_billing,\n opening_is_main_plan_self_service,\n closing_is_main_plan_self_service,\n NULL AS within_month_main_plan_name,\n NULL AS within_month_main_plan_platform_category_name,\n NULL AS within_month_is_main_plan_annual_billing,\n NULL AS within_month_is_main_plan_self_service,\n NULL AS within_month_rank,\n is_terminated_subscription_within_first_month,\n 0 AS is_redundant_within_month\nFROM opening_closing_subscription_product\nUNION ALL \nSELECT \n month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n MONTHS_BETWEEN(month,TRUNC(from_date,'MONTH')) AS from_date_month_cnt,\n currency,\n conversion_rate,\n NULL AS opening_mrr_in_original_currency,\n NULL AS closing_mrr_in_original_currency,\n mrr_in_original_currency AS within_month_mrr_in_original_currency,\n NULL AS opening_mrr_in_usd,\n NULL AS closing_mrr_in_usd,\n mrr_in_usd AS within_month_mrr_in_usd,\n NULL AS opening_effective_mrr,\n NULL AS closing_effective_mrr,\n NULL AS delta_effective_mrr,\n NULL AS closing_tcv_in_usd,\n effective_mrr AS within_month_effective_mrr,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n NULL AS opening_free_month_cnt,\n NULL AS closing_free_month_cnt,\n NULL AS delta_free_month_cnt,\n NULL AS opening_csm_free_month_cnt,\n NULL AS closing_csm_free_month_cnt,\n NULL AS delta_csm_free_month_cnt,\n NULL AS opening_sales_free_month_cnt,\n NULL AS closing_sales_free_month_cnt,\n NULL AS delta_sales_free_month_cnt,\n NULL AS opening_free_month_mrr_impact,\n NULL AS closing_free_month_mrr_impact,\n NULL AS delta_free_month_mrr_impact,\n NULL AS opening_csm_free_month_mrr_impact,\n NULL AS closing_csm_free_month_mrr_impact,\n NULL AS delta_csm_free_month_mrr_impact,\n NULL AS opening_sales_free_month_mrr_impact,\n NULL AS closing_sales_free_month_mrr_impact,\n NULL AS delta_sales_free_month_mrr_impact,\n NULL AS opening_main_plan_name,\n NULL AS closing_main_plan_name,\n NULL AS opening_main_plan_platform_category_name,\n NULL AS closing_main_plan_platform_category_name,\n NULL AS opening_is_main_plan_annual_billing,\n NULL AS closing_is_main_plan_annual_billing,\n NULL AS opening_is_main_plan_self_service,\n NULL AS closing_is_main_plan_self_service,\n main_plan_name AS within_month_main_plan_name,\n main_plan_platform_category_name AS within_month_main_plan_platform_category_name,\n is_main_plan_annual_billing AS within_month_is_main_plan_annual_billing,\n is_main_plan_self_service AS within_month_is_main_plan_self_service,\n within_month_rank,\n 1 AS is_terminated_subscription_within_first_month,\n is_redundant_within_month\nFROM within_month_calculation\n),\n\nnumber_of_subscribe_days AS (\nSELECT\n TRUNC(date,'MONTH') AS month,\n subscription_id,\n product_id,\n DAY(LAST_DAY(date)) AS days_in_month_cnt,\n COUNT(DISTINCT date) AS distinct_subscribe_days_cnt\nFROM import_zuora_subscription_mrr_daily\nGROUP BY 1,2,3,4\n),\n\nsubscription_product_mrr_revenue_calc AS (\nSELECT\n subscription.month,\n subscription.subscription_id,\n subscription.product_id,\n account_id,\n subscription.organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n from_date_month_cnt,\n NVL(days.distinct_subscribe_days_cnt,0) AS distinct_subscribe_days_cnt,\n currency,\n conversion_rate,\n opening_mrr_in_original_currency,\n closing_mrr_in_original_currency,\n within_month_mrr_in_original_currency,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n within_month_mrr_in_usd,\n opening_effective_mrr,\n closing_effective_mrr,\n delta_effective_mrr,\n within_month_effective_mrr,\n closing_tcv_in_usd,\n -- The adjusted revenue should be zero for LAW recognition months (this is the condition in the IF below)\n IF(is_lost_after_won * opening_effective_mrr > 0 AND is_lost_after_won * closing_effective_mrr IS NULL,\n 0,\n COALESCE(closing_effective_mrr,opening_effective_mrr,within_month_effective_mrr) * NVL(days.distinct_subscribe_days_cnt/days.days_in_month_cnt,0)) AS adjusted_revenue_in_usd,\n -- LAW catch-up is only relevant for the LAW recognition month (this is the condition in the IF below) and it needs to include the only the previous subscription months (this is why we multiply by from_date_month_cnt)\n IF(is_lost_after_won * opening_effective_mrr > 0 AND is_lost_after_won * closing_effective_mrr IS NULL,is_lost_after_won * delta_effective_mrr * from_date_month_cnt,0) AS lost_after_won_catch_up_revenue_in_usd,\n -- The free months MRR impact can change in two cases, first one is a change in free months the second one is terminated subscription with free months. for the second case we should not have free month catch up revenue (this is the condition in the IF below). For the first case, the catch up revenue needs to include only previous subscription months since the impact change for current month is already reflected in the adjusted revenue (this is why we multiply by from_date_month_cnt)\n IF(closing_effective_mrr IS NULL,0,delta_free_month_mrr_impact*from_date_month_cnt) AS free_month_catch_up_revenue_in_usd,\n lost_after_won_date,\n lost_after_won_reason,\n is_lost_after_won * opening_effective_mrr AS opening_lost_after_won_effective_mrr,\n is_lost_after_won * closing_effective_mrr AS closing_lost_after_won_effective_mrr,\n is_lost_after_won * delta_effective_mrr AS delta_lost_after_won_effective_mrr,\n is_lost_after_won * within_month_effective_mrr AS lost_after_won_within_month_effective_mrr,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n opening_free_month_cnt,\n closing_free_month_cnt,\n delta_free_month_cnt,\n closing_tcv_in_usd*(delta_free_month_cnt/(original_contract_duration+closing_free_month_cnt)) AS granted_free_months_value,\n opening_csm_free_month_cnt,\n closing_csm_free_month_cnt,\n delta_csm_free_month_cnt,\n opening_sales_free_month_cnt,\n closing_sales_free_month_cnt,\n delta_sales_free_month_cnt,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_main_plan_name,\n closing_main_plan_name,\n opening_main_plan_platform_category_name,\n closing_main_plan_platform_category_name,\n opening_is_main_plan_annual_billing,\n closing_is_main_plan_annual_billing,\n opening_is_main_plan_self_service,\n closing_is_main_plan_self_service,\n within_month_main_plan_name,\n within_month_main_plan_platform_category_name,\n within_month_is_main_plan_annual_billing,\n within_month_is_main_plan_self_service,\n within_month_rank,\n is_redundant_within_month,\n SMALLINT(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n SMALLINT(IF(LOWER(product_family) = 'reviews',1,0)) AS is_reviews,\n SMALLINT(IF(LOWER(product_family) = 'vms',1,0)) AS is_vms,\n SMALLINT(IF(LOWER(product_family) = 'insights',1,0)) AS is_insights,\n SMALLINT(IF(LOWER(product_family) = 'subscriptions',1,0)) AS is_subscriptions,\n SMALLINT(IF(LOWER(product_family) = 'email',1,0)) AS is_email,\n SMALLINT(IF(LOWER(product_family) = 'sms',1,0)) AS is_sms,\n SMALLINT(IF(LOWER(product_family) = 'loyalty',1,0)) AS is_loyalty\nFROM subscription_product_union_within_month AS subscription\nLEFT JOIN number_of_subscribe_days AS days\n ON subscription.subscription_id = days.subscription_id\n AND subscription.product_id = days.product_id\n AND subscription.month = days.month\n),\n\nsubscription_product_mrr_revenue_monthly AS (\nSELECT \n month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n from_date_month_cnt,\n distinct_subscribe_days_cnt,\n currency,\n conversion_rate,\n opening_mrr_in_original_currency,\n closing_mrr_in_original_currency,\n within_month_mrr_in_original_currency,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n within_month_mrr_in_usd,\n opening_effective_mrr AS opening_effective_mrr_in_usd,\n closing_effective_mrr AS closing_effective_mrr_in_usd,\n delta_effective_mrr,\n within_month_effective_mrr AS within_month_effective_mrr_in_usd,\n closing_tcv_in_usd,\n adjusted_revenue_in_usd,\n lost_after_won_catch_up_revenue_in_usd + free_month_catch_up_revenue_in_usd AS catch_up_revenue_in_usd,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n adjusted_revenue_in_usd + lost_after_won_catch_up_revenue_in_usd + free_month_catch_up_revenue_in_usd AS approximate_revenue_in_usd,\t\n lost_after_won_date,\n lost_after_won_reason,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n lost_after_won_within_month_effective_mrr,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n opening_free_month_cnt,\n closing_free_month_cnt,\n delta_free_month_cnt,\n granted_free_months_value,\n opening_csm_free_month_cnt,\n closing_csm_free_month_cnt,\n delta_csm_free_month_cnt,\n granted_free_months_value*(delta_csm_free_month_cnt/delta_free_month_cnt) AS granted_csm_free_months_value,\n opening_sales_free_month_cnt,\n closing_sales_free_month_cnt,\n delta_sales_free_month_cnt,\n granted_free_months_value*(delta_sales_free_month_cnt/delta_free_month_cnt) AS granted_sales_free_months_value,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_main_plan_name,\n closing_main_plan_name,\n opening_main_plan_platform_category_name,\n closing_main_plan_platform_category_name,\n opening_is_main_plan_annual_billing,\n closing_is_main_plan_annual_billing,\n opening_is_main_plan_self_service,\n closing_is_main_plan_self_service,\n within_month_main_plan_name,\n within_month_main_plan_platform_category_name,\n within_month_is_main_plan_annual_billing,\n within_month_is_main_plan_self_service,\n within_month_rank,\n is_terminated_subscription_within_first_month,\n SMALLINT(is_redundant_within_month) AS is_redundant_within_month,\n is_reviews,\n is_vms,\n is_insights,\n is_subscriptions,\n is_email,\n is_sms,\n is_loyalty,\n SMALLINT(IF(is_reviews = 1 OR is_vms = 1 OR is_insights = 1,1,0)) AS is_ugc,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM subscription_product_mrr_revenue_calc\n)\n\nSELECT *\nFROM subscription_product_mrr_revenue_monthly", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.sql", "compiled": true, "compiled_code": "-- Import -- \n\nWITH import_zuora_subscription_mrr_daily AS (\nSELECT *\nFROM dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily\n\nWHERE date >= DATE_SUB(DATE(CURRENT_DATE),7)\n\n),\n\n-- Logic --\n\nend_of_month_calculation AS (\nSELECT\n TRUNC(date,'MONTH') AS month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n currency,\n conversion_rate,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n mrr_in_usd*original_contract_duration AS tcv_in_usd,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n csm_free_month_cnt,\n sales_free_month_cnt,\n free_month_cnt,\n effective_mrr,\n free_month_mrr_impact,\n sales_free_month_mrr_impact,\n csm_free_month_mrr_impact,\n main_plan_name,\n is_main_plan_self_service,\n is_main_plan_annual_billing,\n main_plan_platform_category_name,\n CASE WHEN date = LAST_DAY(date) THEN 1\n WHEN TRUNC(date,'MONTH') = TRUNC(CURRENT_DATE,'MONTH') AND date = MAX(date) OVER () THEN 1\n ELSE 0 END AS is_end_of_month,\n IF(date = MAX(date) OVER (PARTITION BY subscription_id,product_id),1,0) AS is_max_date_per_subscription_product,\n IF(TRUNC(from_date,'MONTH') = TRUNC(to_date,'MONTH'),1,0) AS is_terminated_subscription_within_first_month\nFROM import_zuora_subscription_mrr_daily\n),\n\nclosing_mrr_metrics AS (\n SELECT *\n FROM end_of_month_calculation\n WHERE is_end_of_month = 1\n),\n\nopening_mrr_metrics AS (\nSELECT\n ADD_MONTHS(month,1) AS month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n currency,\n conversion_rate,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n tcv_in_usd,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n csm_free_month_cnt,\n sales_free_month_cnt,\n free_month_cnt,\n effective_mrr,\n free_month_mrr_impact,\n sales_free_month_mrr_impact,\n csm_free_month_mrr_impact,\n main_plan_name,\n is_main_plan_self_service,\n is_main_plan_annual_billing,\n main_plan_platform_category_name\nFROM closing_mrr_metrics\nWHERE month < TRUNC(CURRENT_DATE,'MONTH')\n),\n\nopening_closing_subscription_product AS (\nSELECT \n NVL(close.month,open.month) AS month,\n NVL(close.subscription_id,open.subscription_id) AS subscription_id,\n NVL(close.product_id,open.product_id) AS product_id,\n NVL(close.account_id,open.account_id) AS account_id,\n NVL(close.organization_key,open.organization_key) AS organization_key,\n NVL(close.sf_opportunity_id,open.sf_opportunity_id) AS sf_opportunity_id,\n NVL(close.sf_opportunity_type,open.sf_opportunity_type) AS sf_opportunity_type,\n NVL(close.sf_opportunity_stage,open.sf_opportunity_stage) AS sf_opportunity_stage,\n NVL(close.sf_account_id,open.sf_account_id) AS sf_account_id,\n NVL(close.subscription_name,open.subscription_name) AS subscription_name,\n NVL(close.version,open.version) AS version,\n NVL(close.subscription_status,open.subscription_status) AS subscription_status,\n NVL(close.plan_name,open.plan_name) AS plan_name,\n NVL(close.provisioned_plan_name,open.provisioned_plan_name) AS provisioned_plan_name,\n NVL(close.product_family,open.product_family) AS product_family,\n NVL(close.from_date,open.from_date) AS from_date,\n NVL(close.to_date,open.to_date) AS to_date,\n NVL(close.renewal_date,open.renewal_date) AS renewal_date,\n NVL(close.currency,open.currency) AS currency,\n NVL(close.conversion_rate,open.conversion_rate) AS conversion_rate,\n open.main_plan_name AS opening_main_plan_name,\n close.main_plan_name AS closing_main_plan_name,\n open.main_plan_platform_category_name AS opening_main_plan_platform_category_name,\n close.main_plan_platform_category_name AS closing_main_plan_platform_category_name,\n open.is_main_plan_annual_billing AS opening_is_main_plan_annual_billing,\n close.is_main_plan_annual_billing AS closing_is_main_plan_annual_billing,\n open.is_main_plan_self_service AS opening_is_main_plan_self_service,\n close.is_main_plan_self_service AS closing_is_main_plan_self_service,\n open.mrr_in_original_currency AS opening_mrr_in_original_currency,\n close.mrr_in_original_currency AS closing_mrr_in_original_currency,\n open.mrr_in_usd AS opening_mrr_in_usd,\n close.mrr_in_usd AS closing_mrr_in_usd,\n open.effective_mrr AS opening_effective_mrr,\n close.effective_mrr AS closing_effective_mrr,\n NVL(close.effective_mrr,0) - NVL(open.effective_mrr,0) AS delta_effective_mrr,\n close.tcv_in_usd AS closing_tcv_in_usd,\n NVL(close.original_contract_duration,open.original_contract_duration) AS original_contract_duration,\n NVL(close.is_expired_subscription,open.is_expired_subscription) AS is_expired_subscription,\n NVL(close.is_staggered_subscription,open.is_staggered_subscription) AS is_staggered_subscription,\n NVL(close.is_self_service,open.is_self_service) AS is_self_service,\n NVL(close.is_annual_billing,open.is_annual_billing) AS is_annual_billing,\n NVL(close.is_core_plan,open.is_core_plan) AS is_core_plan,\n NVL(close.is_in_term_renewal,open.is_in_term_renewal) AS is_in_term_renewal,\n NVL(close.is_lost_after_won,open.is_lost_after_won) AS is_lost_after_won,\n NVL(close.is_lost_after_won_per_org_product,open.is_lost_after_won_per_org_product) AS is_lost_after_won_per_org_product,\n NVL(close.lost_after_won_date,open.lost_after_won_date) AS lost_after_won_date,\n NVL(close.lost_after_won_reason,open.lost_after_won_reason) AS lost_after_won_reason,\n open.free_month_cnt AS opening_free_month_cnt,\n close.free_month_cnt AS closing_free_month_cnt,\n IF(close.month IS NULL,0,close.free_month_cnt - NVL(open.free_month_cnt,0)) AS delta_free_month_cnt,\n NVL(open.csm_free_month_cnt,0) AS opening_csm_free_month_cnt,\n NVL(close.csm_free_month_cnt,0) AS closing_csm_free_month_cnt,\n IF(close.month IS NULL,0,close.csm_free_month_cnt - NVL(open.csm_free_month_cnt,0)) AS delta_csm_free_month_cnt,\n NVL(open.sales_free_month_cnt,0) AS opening_sales_free_month_cnt,\n NVL(close.sales_free_month_cnt,0) AS closing_sales_free_month_cnt,\n IF(close.month IS NULL,0,close.sales_free_month_cnt - NVL(open.sales_free_month_cnt,0)) AS delta_sales_free_month_cnt,\n open.free_month_mrr_impact AS opening_free_month_mrr_impact,\n close.free_month_mrr_impact AS closing_free_month_mrr_impact,\n NVL(close.free_month_mrr_impact,0) - NVL(open.free_month_mrr_impact,0) AS delta_free_month_mrr_impact,\n open.csm_free_month_mrr_impact AS opening_csm_free_month_mrr_impact,\n close.csm_free_month_mrr_impact AS closing_csm_free_month_mrr_impact,\n NVL(close.csm_free_month_mrr_impact,0) - NVL(open.csm_free_month_mrr_impact,0) AS delta_csm_free_month_mrr_impact,\n open.sales_free_month_mrr_impact AS opening_sales_free_month_mrr_impact,\n close.sales_free_month_mrr_impact AS closing_sales_free_month_mrr_impact,\n NVL(close.sales_free_month_mrr_impact,0) - NVL(open.sales_free_month_mrr_impact,0) AS delta_sales_free_month_mrr_impact,\n 0 AS is_terminated_subscription_within_first_month\nFROM closing_mrr_metrics AS close\nFULL OUTER JOIN opening_mrr_metrics AS open\n ON close.subscription_id = open.subscription_id\n AND close.product_id = open.product_id\n AND close.month = open.month\n),\n\nwithin_month_calculation AS (\nSELECT\n month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n currency,\n conversion_rate,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n csm_free_month_cnt,\n sales_free_month_cnt,\n free_month_cnt,\n effective_mrr,\n main_plan_name,\n is_main_plan_self_service,\n is_main_plan_annual_billing,\n main_plan_platform_category_name,\n IF(CONCAT(month,organization_key,product_family) IN (SELECT DISTINCT CONCAT(month,organization_key,product_family) FROM opening_closing_subscription_product),1,0) AS is_redundant_within_month,\n ROW_NUMBER() OVER(PARTITION BY month,organization_key,product_family ORDER BY to_date DESC,\n is_core_plan DESC,\n is_self_service,\n is_annual_billing DESC,\n effective_mrr DESC) AS within_month_rank\nFROM end_of_month_calculation\nWHERE is_max_date_per_subscription_product = 1\nAND is_terminated_subscription_within_first_month = 1\n),\n\nsubscription_product_union_within_month AS (\nSELECT\n month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n MONTHS_BETWEEN(month,TRUNC(from_date,'MONTH')) AS from_date_month_cnt,\n currency,\n conversion_rate,\n opening_mrr_in_original_currency,\n closing_mrr_in_original_currency,\n NULL AS within_month_mrr_in_original_currency,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n NULL AS within_month_mrr_in_usd,\n opening_effective_mrr,\n closing_effective_mrr,\n delta_effective_mrr,\n closing_tcv_in_usd,\n NULL AS within_month_effective_mrr,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n opening_free_month_cnt,\n closing_free_month_cnt,\n delta_free_month_cnt,\n opening_csm_free_month_cnt,\n closing_csm_free_month_cnt,\n delta_csm_free_month_cnt,\n opening_sales_free_month_cnt,\n closing_sales_free_month_cnt,\n delta_sales_free_month_cnt,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_main_plan_name,\n closing_main_plan_name,\n opening_main_plan_platform_category_name,\n closing_main_plan_platform_category_name,\n opening_is_main_plan_annual_billing,\n closing_is_main_plan_annual_billing,\n opening_is_main_plan_self_service,\n closing_is_main_plan_self_service,\n NULL AS within_month_main_plan_name,\n NULL AS within_month_main_plan_platform_category_name,\n NULL AS within_month_is_main_plan_annual_billing,\n NULL AS within_month_is_main_plan_self_service,\n NULL AS within_month_rank,\n is_terminated_subscription_within_first_month,\n 0 AS is_redundant_within_month\nFROM opening_closing_subscription_product\nUNION ALL \nSELECT \n month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n MONTHS_BETWEEN(month,TRUNC(from_date,'MONTH')) AS from_date_month_cnt,\n currency,\n conversion_rate,\n NULL AS opening_mrr_in_original_currency,\n NULL AS closing_mrr_in_original_currency,\n mrr_in_original_currency AS within_month_mrr_in_original_currency,\n NULL AS opening_mrr_in_usd,\n NULL AS closing_mrr_in_usd,\n mrr_in_usd AS within_month_mrr_in_usd,\n NULL AS opening_effective_mrr,\n NULL AS closing_effective_mrr,\n NULL AS delta_effective_mrr,\n NULL AS closing_tcv_in_usd,\n effective_mrr AS within_month_effective_mrr,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n lost_after_won_date,\n lost_after_won_reason,\n NULL AS opening_free_month_cnt,\n NULL AS closing_free_month_cnt,\n NULL AS delta_free_month_cnt,\n NULL AS opening_csm_free_month_cnt,\n NULL AS closing_csm_free_month_cnt,\n NULL AS delta_csm_free_month_cnt,\n NULL AS opening_sales_free_month_cnt,\n NULL AS closing_sales_free_month_cnt,\n NULL AS delta_sales_free_month_cnt,\n NULL AS opening_free_month_mrr_impact,\n NULL AS closing_free_month_mrr_impact,\n NULL AS delta_free_month_mrr_impact,\n NULL AS opening_csm_free_month_mrr_impact,\n NULL AS closing_csm_free_month_mrr_impact,\n NULL AS delta_csm_free_month_mrr_impact,\n NULL AS opening_sales_free_month_mrr_impact,\n NULL AS closing_sales_free_month_mrr_impact,\n NULL AS delta_sales_free_month_mrr_impact,\n NULL AS opening_main_plan_name,\n NULL AS closing_main_plan_name,\n NULL AS opening_main_plan_platform_category_name,\n NULL AS closing_main_plan_platform_category_name,\n NULL AS opening_is_main_plan_annual_billing,\n NULL AS closing_is_main_plan_annual_billing,\n NULL AS opening_is_main_plan_self_service,\n NULL AS closing_is_main_plan_self_service,\n main_plan_name AS within_month_main_plan_name,\n main_plan_platform_category_name AS within_month_main_plan_platform_category_name,\n is_main_plan_annual_billing AS within_month_is_main_plan_annual_billing,\n is_main_plan_self_service AS within_month_is_main_plan_self_service,\n within_month_rank,\n 1 AS is_terminated_subscription_within_first_month,\n is_redundant_within_month\nFROM within_month_calculation\n),\n\nnumber_of_subscribe_days AS (\nSELECT\n TRUNC(date,'MONTH') AS month,\n subscription_id,\n product_id,\n DAY(LAST_DAY(date)) AS days_in_month_cnt,\n COUNT(DISTINCT date) AS distinct_subscribe_days_cnt\nFROM import_zuora_subscription_mrr_daily\nGROUP BY 1,2,3,4\n),\n\nsubscription_product_mrr_revenue_calc AS (\nSELECT\n subscription.month,\n subscription.subscription_id,\n subscription.product_id,\n account_id,\n subscription.organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n from_date_month_cnt,\n NVL(days.distinct_subscribe_days_cnt,0) AS distinct_subscribe_days_cnt,\n currency,\n conversion_rate,\n opening_mrr_in_original_currency,\n closing_mrr_in_original_currency,\n within_month_mrr_in_original_currency,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n within_month_mrr_in_usd,\n opening_effective_mrr,\n closing_effective_mrr,\n delta_effective_mrr,\n within_month_effective_mrr,\n closing_tcv_in_usd,\n -- The adjusted revenue should be zero for LAW recognition months (this is the condition in the IF below)\n IF(is_lost_after_won * opening_effective_mrr > 0 AND is_lost_after_won * closing_effective_mrr IS NULL,\n 0,\n COALESCE(closing_effective_mrr,opening_effective_mrr,within_month_effective_mrr) * NVL(days.distinct_subscribe_days_cnt/days.days_in_month_cnt,0)) AS adjusted_revenue_in_usd,\n -- LAW catch-up is only relevant for the LAW recognition month (this is the condition in the IF below) and it needs to include the only the previous subscription months (this is why we multiply by from_date_month_cnt)\n IF(is_lost_after_won * opening_effective_mrr > 0 AND is_lost_after_won * closing_effective_mrr IS NULL,is_lost_after_won * delta_effective_mrr * from_date_month_cnt,0) AS lost_after_won_catch_up_revenue_in_usd,\n -- The free months MRR impact can change in two cases, first one is a change in free months the second one is terminated subscription with free months. for the second case we should not have free month catch up revenue (this is the condition in the IF below). For the first case, the catch up revenue needs to include only previous subscription months since the impact change for current month is already reflected in the adjusted revenue (this is why we multiply by from_date_month_cnt)\n IF(closing_effective_mrr IS NULL,0,delta_free_month_mrr_impact*from_date_month_cnt) AS free_month_catch_up_revenue_in_usd,\n lost_after_won_date,\n lost_after_won_reason,\n is_lost_after_won * opening_effective_mrr AS opening_lost_after_won_effective_mrr,\n is_lost_after_won * closing_effective_mrr AS closing_lost_after_won_effective_mrr,\n is_lost_after_won * delta_effective_mrr AS delta_lost_after_won_effective_mrr,\n is_lost_after_won * within_month_effective_mrr AS lost_after_won_within_month_effective_mrr,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n opening_free_month_cnt,\n closing_free_month_cnt,\n delta_free_month_cnt,\n closing_tcv_in_usd*(delta_free_month_cnt/(original_contract_duration+closing_free_month_cnt)) AS granted_free_months_value,\n opening_csm_free_month_cnt,\n closing_csm_free_month_cnt,\n delta_csm_free_month_cnt,\n opening_sales_free_month_cnt,\n closing_sales_free_month_cnt,\n delta_sales_free_month_cnt,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_main_plan_name,\n closing_main_plan_name,\n opening_main_plan_platform_category_name,\n closing_main_plan_platform_category_name,\n opening_is_main_plan_annual_billing,\n closing_is_main_plan_annual_billing,\n opening_is_main_plan_self_service,\n closing_is_main_plan_self_service,\n within_month_main_plan_name,\n within_month_main_plan_platform_category_name,\n within_month_is_main_plan_annual_billing,\n within_month_is_main_plan_self_service,\n within_month_rank,\n is_redundant_within_month,\n SMALLINT(is_terminated_subscription_within_first_month) AS is_terminated_subscription_within_first_month,\n SMALLINT(IF(LOWER(product_family) = 'reviews',1,0)) AS is_reviews,\n SMALLINT(IF(LOWER(product_family) = 'vms',1,0)) AS is_vms,\n SMALLINT(IF(LOWER(product_family) = 'insights',1,0)) AS is_insights,\n SMALLINT(IF(LOWER(product_family) = 'subscriptions',1,0)) AS is_subscriptions,\n SMALLINT(IF(LOWER(product_family) = 'email',1,0)) AS is_email,\n SMALLINT(IF(LOWER(product_family) = 'sms',1,0)) AS is_sms,\n SMALLINT(IF(LOWER(product_family) = 'loyalty',1,0)) AS is_loyalty\nFROM subscription_product_union_within_month AS subscription\nLEFT JOIN number_of_subscribe_days AS days\n ON subscription.subscription_id = days.subscription_id\n AND subscription.product_id = days.product_id\n AND subscription.month = days.month\n),\n\nsubscription_product_mrr_revenue_monthly AS (\nSELECT \n month,\n subscription_id,\n product_id,\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_opportunity_type,\n sf_opportunity_stage,\n sf_account_id,\n subscription_name,\n version,\n subscription_status,\n plan_name,\n provisioned_plan_name,\n product_family,\n from_date,\n to_date,\n renewal_date,\n from_date_month_cnt,\n distinct_subscribe_days_cnt,\n currency,\n conversion_rate,\n opening_mrr_in_original_currency,\n closing_mrr_in_original_currency,\n within_month_mrr_in_original_currency,\n opening_mrr_in_usd,\n closing_mrr_in_usd,\n within_month_mrr_in_usd,\n opening_effective_mrr AS opening_effective_mrr_in_usd,\n closing_effective_mrr AS closing_effective_mrr_in_usd,\n delta_effective_mrr,\n within_month_effective_mrr AS within_month_effective_mrr_in_usd,\n closing_tcv_in_usd,\n adjusted_revenue_in_usd,\n lost_after_won_catch_up_revenue_in_usd + free_month_catch_up_revenue_in_usd AS catch_up_revenue_in_usd,\n lost_after_won_catch_up_revenue_in_usd,\n free_month_catch_up_revenue_in_usd,\n adjusted_revenue_in_usd + lost_after_won_catch_up_revenue_in_usd + free_month_catch_up_revenue_in_usd AS approximate_revenue_in_usd,\t\n lost_after_won_date,\n lost_after_won_reason,\n opening_lost_after_won_effective_mrr,\n closing_lost_after_won_effective_mrr,\n delta_lost_after_won_effective_mrr,\n lost_after_won_within_month_effective_mrr,\n original_contract_duration,\n is_expired_subscription,\n is_staggered_subscription,\n is_self_service,\n is_annual_billing,\n is_core_plan,\n is_in_term_renewal,\n is_lost_after_won,\n is_lost_after_won_per_org_product,\n opening_free_month_cnt,\n closing_free_month_cnt,\n delta_free_month_cnt,\n granted_free_months_value,\n opening_csm_free_month_cnt,\n closing_csm_free_month_cnt,\n delta_csm_free_month_cnt,\n granted_free_months_value*(delta_csm_free_month_cnt/delta_free_month_cnt) AS granted_csm_free_months_value,\n opening_sales_free_month_cnt,\n closing_sales_free_month_cnt,\n delta_sales_free_month_cnt,\n granted_free_months_value*(delta_sales_free_month_cnt/delta_free_month_cnt) AS granted_sales_free_months_value,\n opening_free_month_mrr_impact,\n closing_free_month_mrr_impact,\n delta_free_month_mrr_impact,\n opening_csm_free_month_mrr_impact,\n closing_csm_free_month_mrr_impact,\n delta_csm_free_month_mrr_impact,\n opening_sales_free_month_mrr_impact,\n closing_sales_free_month_mrr_impact,\n delta_sales_free_month_mrr_impact,\n opening_main_plan_name,\n closing_main_plan_name,\n opening_main_plan_platform_category_name,\n closing_main_plan_platform_category_name,\n opening_is_main_plan_annual_billing,\n closing_is_main_plan_annual_billing,\n opening_is_main_plan_self_service,\n closing_is_main_plan_self_service,\n within_month_main_plan_name,\n within_month_main_plan_platform_category_name,\n within_month_is_main_plan_annual_billing,\n within_month_is_main_plan_self_service,\n within_month_rank,\n is_terminated_subscription_within_first_month,\n SMALLINT(is_redundant_within_month) AS is_redundant_within_month,\n is_reviews,\n is_vms,\n is_insights,\n is_subscriptions,\n is_email,\n is_sms,\n is_loyalty,\n SMALLINT(IF(is_reviews = 1 OR is_vms = 1 OR is_insights = 1,1,0)) AS is_ugc,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM subscription_product_mrr_revenue_calc\n)\n\nSELECT *\nFROM subscription_product_mrr_revenue_monthly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance__zuora_subscription_mrr_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance__zuora_subscription_mrr_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.sql", "unique_id": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "analytics___finance__zuora_subscription_mrr_over_time"], "alias": "analytics___finance__zuora_subscription_mrr_over_time", "checksum": {"name": "sha256", "checksum": "d30d562f99d02fba80868477e1aef207a2018ec045d57ff7df7a96fc710375be"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Calculated TABLE of zuora recurring revenue over time", "columns": {"account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_id": {"name": "sf_opportunity_id", "description": "FK: salesforce__opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_type": {"name": "sf_opportunity_type", "description": "Type of the corresponding sf_opportunity_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_stage": {"name": "sf_opportunity_stage", "description": "Stage of the corresponding sf_opportunity_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_id": {"name": "sf_account_id", "description": "FK: sf account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_name": {"name": "subscription_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_id": {"name": "subscription_id", "description": "FK: zuora_subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_status": {"name": "subscription_status", "description": "The subscription status from Zuora (Active/Cancelled/Expired)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "FK: finance_stg__zuora_product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisioned_plan_name": {"name": "provisioned_plan_name", "description": "FK: plan_name in analytics___platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_date": {"name": "from_date", "description": "plan affective start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "The to_date is based on different fields depending on the term type (EVERGREEN/TERMED):\n\nFor EVERGREEN subscriptions there are two cases:\n 1. latest versions:\n If there is effective_end_date, the value will be the effective_end_date else it will be '2999-01-01'\n\n 2. earlier versions:\n the value will be equal to the effective start date of the next version (per product family)\n\nFor TERMED subscriptions there are three cases:\n 1. latest versions:\n If the subscription got cancelled, the value will be the subscription cancelled date else it will be '2999-01-01'\n\n 2. earlier versions:\n 2.1 If the effective start date did not change between the version and the following version,\n the value will be equal to the effective start date (from date will be equal to to date causing the version to be irrelevant)\n 2.2 If the effective start date did change between the version and the following version,\n the value will be equal to the effective start date of the next version (allowing us to show the data of the version up until the start of the new version)\n 3. lost after won:\n If the subscription is lost after won, the to_date will be the date in which the lost after won occured (will prevent retroactive changes)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "renewal_date": {"name": "renewal_date", "description": "IF:\n 1. term_type = 'TERMED' THEN renewal_date = effective_end_date\n 2. term_type = 'EVERGREEN' THEN renewal_date = NULL (there is no one renewal_date for subscription)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "conversion_rate": {"name": "conversion_rate", "description": "conversion rate from salesforce_stg__mc_conversion_rate accourding to effective start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_in_original_currency": {"name": "price_in_original_currency", "description": "Price of recurring charge per unit (quantity) in original currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "discount_in_original_currency": {"name": "discount_in_original_currency", "description": "discount_percentage * price_in_original_currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "price_after_discount_in_original_currency": {"name": "price_after_discount_in_original_currency", "description": "price_in_original_currency * (100- discount_percentage)/100", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "discount_percentage": {"name": "discount_percentage", "description": "Discount on recurring charge in precentage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "mrr_in_original_currency": {"name": "mrr_in_original_currency", "description": "product monthly price * units in original currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "mrr_in_usd": {"name": "mrr_in_usd", "description": "product monthly (price * units) / (coverstion rate to USD)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "original_contract_duration": {"name": "original_contract_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "is_expired_subscription": {"name": "is_expired_subscription", "description": "Indicates if the subscription is expired or not.\nExpaired subscription indicates late renewal", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_self_service": {"name": "is_self_service", "description": "term type = EVERGREEN (will remain =1 if subscription chanes to TERMED)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_annual_billing": {"name": "is_annual_billing", "description": "Indicates if the billing period is annual.\nFor HT it will always be 1, for LT it will be 1 if the customer subscribed to annual package.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_core_plan": {"name": "is_core_plan", "description": "core plan indicator is usually used in full service accounts where a subscription includes one main plan per product (core plan) + extensions (ie. syndication, extra seats,insights).\nfor extensions indicator = 0.\nfield is populated by the creator of the plan in zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_in_term_renewal": {"name": "is_in_term_renewal", "description": "Indicates if the renewal_opportunity_type = 'In Term Renewal'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "renewal_opportunity_id": {"name": "renewal_opportunity_id", "description": "The opportunity_id of the latest renewal opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_opportunity_type": {"name": "renewal_opportunity_type", "description": "The opportunity_type of the latest renewal opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_opportunity_stage": {"name": "renewal_opportunity_stage", "description": "The opportunity_stage of the latest renewal opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "indicates if the subscription is lost after won or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "lost_after_won_date": {"name": "lost_after_won_date", "description": "The date in which the lost after won occured. null if the subscription is not lost after won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "lost_after_won_reason": {"name": "lost_after_won_reason", "description": "the reason for the lost after won from salesforce. null if the subscription is not lost after won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082639.5291677, "relation_name": "dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time", "raw_code": "WITH import_mrr_details AS (\n\n SELECT * FROM {{ ref('analytics___finance__rate_plan_mrr_details') }}\n\n), import_opportunity AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__opportunity') }}\n\n), \n\nevergreen_mrr_calc AS (\n\n SELECT\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_account_id,\n subscription_name,\n version,\n subscription_id,\n subscription_status,\n product_id,\n plan_name,\n provisioned_plan_name,\n product_family,\n effective_start_date AS from_date,\n DATE(COALESCE(effective_end_date,next_from_date_per_product_family,'2999-01-01')) AS to_date,\n NULL AS renewal_date,\n IF(effective_start_date = DATE(COALESCE(effective_end_date,next_from_date_per_product_family,'2999-01-01')) \n AND next_from_date_per_product_family IS NOT NULL,1,0) AS is_artifial_line,\n currency,\n conversion_rate,\n price_in_original_currency,\n discount_in_original_currency,\n price_after_discount_in_original_currency,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n version_created_date,\n is_expired_subscription,\n is_staggered_subscription,\n 1 AS is_self_service,\n IF(LOWER(billing_period) = 'annual',1,0) AS is_annual_billing,\n is_core_plan,\n 0 AS is_lost_after_won,\n NULL AS lost_after_won_date,\n NULL AS lost_after_won_reason\n FROM import_mrr_details\n WHERE LOWER(term_type) = 'evergreen'\n AND is_subscription_change_term_type = 0\n\n),\ntermed_mrr_calc AS (\n\n SELECT\n mrr.account_id,\n mrr.organization_key,\n mrr.sf_opportunity_id,\n mrr.sf_account_id,\n mrr.subscription_name,\n mrr.version,\n mrr.subscription_id,\n mrr.subscription_status,\n mrr.product_id,\n mrr.plan_name,\n mrr.provisioned_plan_name,\n mrr.product_family,\n mrr.effective_start_date AS from_date,\n IF(mrr.is_latest_version = 0,mrr.termed_to_date,DATE(GREATEST(mrr.termed_to_date,law.last_stage_change_date))) AS to_date,\n mrr.effective_end_date AS renewal_date,\n 0 AS is_artifial_line,\n mrr.currency,\n mrr.conversion_rate,\n mrr.price_in_original_currency,\n mrr.discount_in_original_currency,\n mrr.price_after_discount_in_original_currency,\n mrr.mrr_in_original_currency,\n mrr.mrr_in_usd,\n mrr.original_contract_duration,\n mrr.version_created_date,\n mrr.is_expired_subscription,\n mrr.is_staggered_subscription,\n 0 AS is_self_service,\n 1 AS is_annual_billing,\n mrr.is_core_plan,\n SMALLINT(IFNULL(law.is_lost_after_won,0)) AS is_lost_after_won,\n law.last_stage_change_date AS lost_after_won_date,\n law.lost_after_won_reason\n FROM import_mrr_details AS mrr\n LEFT JOIN import_opportunity AS law\n ON mrr.sf_opportunity_id = law.opportunity_id\n AND law.is_deleted = 0\n AND law.is_lost_after_won = 1\n WHERE LOWER(term_type) = 'termed'\n AND is_subscription_change_term_type = 0\n AND (\n is_latest_version = 1\n OR effective_start_date <> termed_to_date -- In those cases we will get earlier versions for cases where the effective start date was changed between versions.\n )\n\n),\ncancelled_evergreen_mrr_calc AS (\n\n-- dealing with annual self service (EVERGREEN) subscriptions that were cancelled and turned into TERMED subscriptions.\n\n SELECT\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_account_id,\n subscription_name,\n version,\n subscription_id,\n subscription_status,\n product_id,\n plan_name,\n provisioned_plan_name,\n product_family,\n effective_start_date AS from_date,\n DATE(COALESCE(next_from_date_per_product_family,effective_end_date,'2999-01-01')) AS to_date,\n NULL AS renewal_date,\n IF(effective_start_date = DATE(COALESCE(next_from_date_per_product_family,effective_end_date,'2999-01-01')) \n AND next_from_date_per_product_family is not null,1,0) AS is_artifial_line,\n currency,\n conversion_rate,\n price_in_original_currency,\n discount_in_original_currency,\n price_after_discount_in_original_currency,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n version_created_date,\n is_expired_subscription,\n is_staggered_subscription,\n 1 AS is_self_service,\n IF(LOWER(billing_period) = 'annual',1,0) AS is_annual_billing,\n is_core_plan,\n 0 AS is_lost_after_won,\n NULL AS lost_after_won_date,\n NULL AS lost_after_won_reason\n FROM import_mrr_details\n WHERE is_subscription_change_term_type = 1\n \n \n),\nunion_tern_type_mrr_calc AS (\n\n SELECT *\n FROM cancelled_evergreen_mrr_calc\n UNION ALL\n SELECT *\n FROM termed_mrr_calc\n UNION ALL\n SELECT *\n FROM evergreen_mrr_calc\n\n),\n\nlatest_renewal_opportunity AS (\n\n SELECT \n renewal_to_opportunity_id AS opportunity_id,\n opportunity_id AS renewal_opportunity_id,\n type AS renewal_opportunity_type,\n stage AS renewal_opportunity_stage\n FROM import_opportunity\n WHERE renewal_to_opportunity_id IS NOT NULL\n QUALIFY ROW_NUMBER() OVER(PARTITION BY renewal_to_opportunity_id ORDER BY created_at DESC) = 1 -- Latest opportunity\n\n),\n\nzuora_subscription_mrr_over_time_res AS (\n\n SELECT\n mrr.account_id,\n mrr.organization_key,\n mrr.sf_opportunity_id,\n opp.type AS sf_opportunity_type,\n opp.stage AS sf_opportunity_stage,\n mrr.sf_account_id,\n mrr.subscription_name,\n mrr.version,\n mrr.subscription_id,\n mrr.subscription_status,\n mrr.product_id,\n mrr.plan_name,\n mrr.provisioned_plan_name,\n mrr.product_family,\n mrr.from_date,\n mrr.to_date,\n mrr.renewal_date,\n mrr.currency,\n mrr.conversion_rate,\n FLOAT(SUM(mrr.price_in_original_currency)) AS price_in_original_currency,\n FLOAT(SUM(mrr.discount_in_original_currency)) AS discount_in_original_currency,\n FLOAT(SUM(mrr.price_after_discount_in_original_currency)) AS price_after_discount_in_original_currency,\n FLOAT(SUM(mrr.discount_in_original_currency) / SUM(mrr.price_in_original_currency)) AS discount_percentage,\n FLOAT(SUM(mrr.mrr_in_original_currency)) AS mrr_in_original_currency,\n FLOAT(SUM(mrr.mrr_in_usd)) AS mrr_in_usd,\n MAX(mrr.original_contract_duration) AS original_contract_duration,\n SMALLINT(MAX(mrr.is_expired_subscription)) AS is_expired_subscription,\n SMALLINT(MAX(mrr.is_staggered_subscription)) AS is_staggered_subscription,\n SMALLINT(MAX(NVL(mrr.is_self_service,0))) AS is_self_service,\n SMALLINT(MAX(NVL(mrr.is_annual_billing,0))) AS is_annual_billing,\n SMALLINT(MAX(NVL(mrr.is_core_plan,0))) AS is_core_plan,\n MAX(SMALLINT(NVL(renewal_opp.renewal_opportunity_type,'') = 'In Term Renewal')) AS is_in_term_renewal,\n MAX(renewal_opp.renewal_opportunity_id) AS renewal_opportunity_id,\n MAX(renewal_opp.renewal_opportunity_type) AS renewal_opportunity_type,\n MAX(renewal_opp.renewal_opportunity_stage) AS renewal_opportunity_stage,\n SMALLINT(MAX(NVL(mrr.is_lost_after_won,0))) AS is_lost_after_won,\n MAX(mrr.lost_after_won_date) AS lost_after_won_date,\n MAX(mrr.lost_after_won_reason) AS lost_after_won_reason,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM union_tern_type_mrr_calc AS mrr\n LEFT JOIN import_opportunity AS opp\n ON mrr.sf_opportunity_id = opp.opportunity_id\n LEFT JOIN latest_renewal_opportunity AS renewal_opp\n ON mrr.sf_opportunity_id = renewal_opp.opportunity_id\n WHERE is_artifial_line = 0\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19\n)\n \nSELECT *\nFROM zuora_subscription_mrr_over_time_res", "language": "sql", "refs": [{"name": "analytics___finance__rate_plan_mrr_details", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance__rate_plan_mrr_details", "model.yoda.analytics___salesforce__opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.sql", "compiled": true, "compiled_code": "WITH import_mrr_details AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance__rate_plan_mrr_details\n\n), import_opportunity AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n\n), \n\nevergreen_mrr_calc AS (\n\n SELECT\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_account_id,\n subscription_name,\n version,\n subscription_id,\n subscription_status,\n product_id,\n plan_name,\n provisioned_plan_name,\n product_family,\n effective_start_date AS from_date,\n DATE(COALESCE(effective_end_date,next_from_date_per_product_family,'2999-01-01')) AS to_date,\n NULL AS renewal_date,\n IF(effective_start_date = DATE(COALESCE(effective_end_date,next_from_date_per_product_family,'2999-01-01')) \n AND next_from_date_per_product_family IS NOT NULL,1,0) AS is_artifial_line,\n currency,\n conversion_rate,\n price_in_original_currency,\n discount_in_original_currency,\n price_after_discount_in_original_currency,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n version_created_date,\n is_expired_subscription,\n is_staggered_subscription,\n 1 AS is_self_service,\n IF(LOWER(billing_period) = 'annual',1,0) AS is_annual_billing,\n is_core_plan,\n 0 AS is_lost_after_won,\n NULL AS lost_after_won_date,\n NULL AS lost_after_won_reason\n FROM import_mrr_details\n WHERE LOWER(term_type) = 'evergreen'\n AND is_subscription_change_term_type = 0\n\n),\ntermed_mrr_calc AS (\n\n SELECT\n mrr.account_id,\n mrr.organization_key,\n mrr.sf_opportunity_id,\n mrr.sf_account_id,\n mrr.subscription_name,\n mrr.version,\n mrr.subscription_id,\n mrr.subscription_status,\n mrr.product_id,\n mrr.plan_name,\n mrr.provisioned_plan_name,\n mrr.product_family,\n mrr.effective_start_date AS from_date,\n IF(mrr.is_latest_version = 0,mrr.termed_to_date,DATE(GREATEST(mrr.termed_to_date,law.last_stage_change_date))) AS to_date,\n mrr.effective_end_date AS renewal_date,\n 0 AS is_artifial_line,\n mrr.currency,\n mrr.conversion_rate,\n mrr.price_in_original_currency,\n mrr.discount_in_original_currency,\n mrr.price_after_discount_in_original_currency,\n mrr.mrr_in_original_currency,\n mrr.mrr_in_usd,\n mrr.original_contract_duration,\n mrr.version_created_date,\n mrr.is_expired_subscription,\n mrr.is_staggered_subscription,\n 0 AS is_self_service,\n 1 AS is_annual_billing,\n mrr.is_core_plan,\n SMALLINT(IFNULL(law.is_lost_after_won,0)) AS is_lost_after_won,\n law.last_stage_change_date AS lost_after_won_date,\n law.lost_after_won_reason\n FROM import_mrr_details AS mrr\n LEFT JOIN import_opportunity AS law\n ON mrr.sf_opportunity_id = law.opportunity_id\n AND law.is_deleted = 0\n AND law.is_lost_after_won = 1\n WHERE LOWER(term_type) = 'termed'\n AND is_subscription_change_term_type = 0\n AND (\n is_latest_version = 1\n OR effective_start_date <> termed_to_date -- In those cases we will get earlier versions for cases where the effective start date was changed between versions.\n )\n\n),\ncancelled_evergreen_mrr_calc AS (\n\n-- dealing with annual self service (EVERGREEN) subscriptions that were cancelled and turned into TERMED subscriptions.\n\n SELECT\n account_id,\n organization_key,\n sf_opportunity_id,\n sf_account_id,\n subscription_name,\n version,\n subscription_id,\n subscription_status,\n product_id,\n plan_name,\n provisioned_plan_name,\n product_family,\n effective_start_date AS from_date,\n DATE(COALESCE(next_from_date_per_product_family,effective_end_date,'2999-01-01')) AS to_date,\n NULL AS renewal_date,\n IF(effective_start_date = DATE(COALESCE(next_from_date_per_product_family,effective_end_date,'2999-01-01')) \n AND next_from_date_per_product_family is not null,1,0) AS is_artifial_line,\n currency,\n conversion_rate,\n price_in_original_currency,\n discount_in_original_currency,\n price_after_discount_in_original_currency,\n mrr_in_original_currency,\n mrr_in_usd,\n original_contract_duration,\n version_created_date,\n is_expired_subscription,\n is_staggered_subscription,\n 1 AS is_self_service,\n IF(LOWER(billing_period) = 'annual',1,0) AS is_annual_billing,\n is_core_plan,\n 0 AS is_lost_after_won,\n NULL AS lost_after_won_date,\n NULL AS lost_after_won_reason\n FROM import_mrr_details\n WHERE is_subscription_change_term_type = 1\n \n \n),\nunion_tern_type_mrr_calc AS (\n\n SELECT *\n FROM cancelled_evergreen_mrr_calc\n UNION ALL\n SELECT *\n FROM termed_mrr_calc\n UNION ALL\n SELECT *\n FROM evergreen_mrr_calc\n\n),\n\nlatest_renewal_opportunity AS (\n\n SELECT \n renewal_to_opportunity_id AS opportunity_id,\n opportunity_id AS renewal_opportunity_id,\n type AS renewal_opportunity_type,\n stage AS renewal_opportunity_stage\n FROM import_opportunity\n WHERE renewal_to_opportunity_id IS NOT NULL\n QUALIFY ROW_NUMBER() OVER(PARTITION BY renewal_to_opportunity_id ORDER BY created_at DESC) = 1 -- Latest opportunity\n\n),\n\nzuora_subscription_mrr_over_time_res AS (\n\n SELECT\n mrr.account_id,\n mrr.organization_key,\n mrr.sf_opportunity_id,\n opp.type AS sf_opportunity_type,\n opp.stage AS sf_opportunity_stage,\n mrr.sf_account_id,\n mrr.subscription_name,\n mrr.version,\n mrr.subscription_id,\n mrr.subscription_status,\n mrr.product_id,\n mrr.plan_name,\n mrr.provisioned_plan_name,\n mrr.product_family,\n mrr.from_date,\n mrr.to_date,\n mrr.renewal_date,\n mrr.currency,\n mrr.conversion_rate,\n FLOAT(SUM(mrr.price_in_original_currency)) AS price_in_original_currency,\n FLOAT(SUM(mrr.discount_in_original_currency)) AS discount_in_original_currency,\n FLOAT(SUM(mrr.price_after_discount_in_original_currency)) AS price_after_discount_in_original_currency,\n FLOAT(SUM(mrr.discount_in_original_currency) / SUM(mrr.price_in_original_currency)) AS discount_percentage,\n FLOAT(SUM(mrr.mrr_in_original_currency)) AS mrr_in_original_currency,\n FLOAT(SUM(mrr.mrr_in_usd)) AS mrr_in_usd,\n MAX(mrr.original_contract_duration) AS original_contract_duration,\n SMALLINT(MAX(mrr.is_expired_subscription)) AS is_expired_subscription,\n SMALLINT(MAX(mrr.is_staggered_subscription)) AS is_staggered_subscription,\n SMALLINT(MAX(NVL(mrr.is_self_service,0))) AS is_self_service,\n SMALLINT(MAX(NVL(mrr.is_annual_billing,0))) AS is_annual_billing,\n SMALLINT(MAX(NVL(mrr.is_core_plan,0))) AS is_core_plan,\n MAX(SMALLINT(NVL(renewal_opp.renewal_opportunity_type,'') = 'In Term Renewal')) AS is_in_term_renewal,\n MAX(renewal_opp.renewal_opportunity_id) AS renewal_opportunity_id,\n MAX(renewal_opp.renewal_opportunity_type) AS renewal_opportunity_type,\n MAX(renewal_opp.renewal_opportunity_stage) AS renewal_opportunity_stage,\n SMALLINT(MAX(NVL(mrr.is_lost_after_won,0))) AS is_lost_after_won,\n MAX(mrr.lost_after_won_date) AS lost_after_won_date,\n MAX(mrr.lost_after_won_reason) AS lost_after_won_reason,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM union_tern_type_mrr_calc AS mrr\n LEFT JOIN import_opportunity AS opp\n ON mrr.sf_opportunity_id = opp.opportunity_id\n LEFT JOIN latest_renewal_opportunity AS renewal_opp\n ON mrr.sf_opportunity_id = renewal_opp.opportunity_id\n WHERE is_artifial_line = 0\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19\n)\n \nSELECT *\nFROM zuora_subscription_mrr_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__account": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__account", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.sql", "unique_id": "model.yoda.analytics___finance_stg__account", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__account", "analytics___finance_stg__account"], "alias": "analytics___finance_stg__account", "checksum": {"name": "sha256", "checksum": "1f8c334f74cad2c2259e2cf4b05ad76a66f547ce69f87dcee9c6fff8b3b5e4c8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "finance_stg__account", "columns": {"accountnumber": {"name": "accountnumber", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "additionalemailaddresses": {"name": "additionalemailaddresses", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "allowinvoiceedit": {"name": "allowinvoiceedit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "appkey__c": {"name": "appkey__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "autopay": {"name": "autopay", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "balance": {"name": "balance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "batch": {"name": "batch", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bcdsettingoption": {"name": "bcdsettingoption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billcycleday": {"name": "billcycleday", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billtocontactid": {"name": "billtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "class__ns": {"name": "class__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "communicationprofileid": {"name": "communicationprofileid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creditbalance": {"name": "creditbalance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "crmid": {"name": "crmid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customerid__ns": {"name": "customerid__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customerservicerepname": {"name": "customerservicerepname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customertype__ns": {"name": "customertype__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "department__ns": {"name": "department__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationid__ns": {"name": "integrationid__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "intercompany__c": {"name": "intercompany__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoicedeliveryprefsemail": {"name": "invoicedeliveryprefsemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "invoicedeliveryprefsprint": {"name": "invoicedeliveryprefsprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "invoicetemplateid": {"name": "invoicetemplateid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastinvoicedate": {"name": "lastinvoicedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "legalentity__c": {"name": "legalentity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "location__ns": {"name": "location__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchantid__c": {"name": "merchantid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mrr": {"name": "mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "notes": {"name": "notes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organisationkey__c": {"name": "organisationkey__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccount__c": {"name": "parentaccount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentid": {"name": "parentid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paymentgateway": {"name": "paymentgateway", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paymentterm": {"name": "paymentterm", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchaseordernumber": {"name": "purchaseordernumber", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer__c": {"name": "referrer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_accountid__c": {"name": "sf_accountid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesrepname": {"name": "salesrepname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sequencesetid": {"name": "sequencesetid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subsidiary__ns": {"name": "subsidiary__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synctonetsuite__ns": {"name": "synctonetsuite__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxcompanycode": {"name": "taxcompanycode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptcertificateid": {"name": "taxexemptcertificateid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptcertificatetype": {"name": "taxexemptcertificatetype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptdescription": {"name": "taxexemptdescription", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptentityusecode": {"name": "taxexemptentityusecode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptissuingjurisdiction": {"name": "taxexemptissuingjurisdiction", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptstatus": {"name": "taxexemptstatus", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "testaccount__c": {"name": "testaccount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "totaldebitmemobalance": {"name": "totaldebitmemobalance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalinvoicebalance": {"name": "totalinvoicebalance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "unappliedbalance": {"name": "unappliedbalance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "unappliedcreditmemoamount": {"name": "unappliedcreditmemoamount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vatid": {"name": "vatid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment__c": {"name": "segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.1352396, "relation_name": "dev_dkruh1.analytics___finance_stg__account", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'account') }}\n\n), finance_stg__account AS (\n\n SELECT\n\t\taccountnumber,\n\t\tadditionalemailaddresses,\n\t\tallowinvoiceedit,\n\t\tappkey__c,\n\t\tautopay,\n\t\tbalance,\n\t\tbatch,\n\t\tbcdsettingoption,\n\t\tbillcycleday,\n\t\tbilltocontactid,\n\t\tclass__ns,\n\t\tcommunicationprofileid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreditbalance,\n\t\tcrmid,\n\t\tcurrency,\n\t\tcustomerid__ns,\n\t\tcustomerservicerepname,\n\t\tcustomertype__ns,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tdepartment__ns,\n\t\tid,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\tintercompany__c,\n\t\tinvoicedeliveryprefsemail,\n\t\tinvoicedeliveryprefsprint,\n\t\tinvoicetemplateid,\n\t\tlastinvoicedate,\n\t\tlegalentity__c,\n\t\tlocation__ns,\n\t\tmerchantid__c,\n\t\tmrr,\n\t\tname,\n\t\tnotes,\n\t\torganisationkey__c,\n\t\tparentaccountid,\n\t\tparentaccount__c,\n\t\tparentid,\n\t\tpaymentgateway,\n\t\tpaymentterm,\n\t\tpurchaseordernumber,\n\t\treferrer__c,\n\t\tsf_accountid__c,\n\t\tsalesrepname,\n\t\tsequencesetid,\n\t\tsoldtocontactid,\n\t\tstatus,\n\t\tsubsidiary__ns,\n\t\tsyncdate__ns,\n\t\tsynctonetsuite__ns,\n\t\ttaxcompanycode,\n\t\ttaxexemptcertificateid,\n\t\ttaxexemptcertificatetype,\n\t\ttaxexemptdescription,\n\t\ttaxexemptentityusecode,\n\t\ttaxexemptissuingjurisdiction,\n\t\ttaxexemptstatus,\n\t\ttestaccount__c,\n\t\ttotaldebitmemobalance,\n\t\ttotalinvoicebalance,\n\t\tunappliedbalance,\n\t\tunappliedcreditmemoamount,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tvatid,\n\t\tsegment__c\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__account", "language": "sql", "refs": [], "sources": [["analytics__zuora", "account"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.account\n\n), finance_stg__account AS (\n\n SELECT\n\t\taccountnumber,\n\t\tadditionalemailaddresses,\n\t\tallowinvoiceedit,\n\t\tappkey__c,\n\t\tautopay,\n\t\tbalance,\n\t\tbatch,\n\t\tbcdsettingoption,\n\t\tbillcycleday,\n\t\tbilltocontactid,\n\t\tclass__ns,\n\t\tcommunicationprofileid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreditbalance,\n\t\tcrmid,\n\t\tcurrency,\n\t\tcustomerid__ns,\n\t\tcustomerservicerepname,\n\t\tcustomertype__ns,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tdepartment__ns,\n\t\tid,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\tintercompany__c,\n\t\tinvoicedeliveryprefsemail,\n\t\tinvoicedeliveryprefsprint,\n\t\tinvoicetemplateid,\n\t\tlastinvoicedate,\n\t\tlegalentity__c,\n\t\tlocation__ns,\n\t\tmerchantid__c,\n\t\tmrr,\n\t\tname,\n\t\tnotes,\n\t\torganisationkey__c,\n\t\tparentaccountid,\n\t\tparentaccount__c,\n\t\tparentid,\n\t\tpaymentgateway,\n\t\tpaymentterm,\n\t\tpurchaseordernumber,\n\t\treferrer__c,\n\t\tsf_accountid__c,\n\t\tsalesrepname,\n\t\tsequencesetid,\n\t\tsoldtocontactid,\n\t\tstatus,\n\t\tsubsidiary__ns,\n\t\tsyncdate__ns,\n\t\tsynctonetsuite__ns,\n\t\ttaxcompanycode,\n\t\ttaxexemptcertificateid,\n\t\ttaxexemptcertificatetype,\n\t\ttaxexemptdescription,\n\t\ttaxexemptentityusecode,\n\t\ttaxexemptissuingjurisdiction,\n\t\ttaxexemptstatus,\n\t\ttestaccount__c,\n\t\ttotaldebitmemobalance,\n\t\ttotalinvoicebalance,\n\t\tunappliedbalance,\n\t\tunappliedcreditmemoamount,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tvatid,\n\t\tsegment__c\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__account", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__contact": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__contact", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__contact/analytics___finance_stg__contact.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__contact/analytics___finance_stg__contact.sql", "unique_id": "model.yoda.analytics___finance_stg__contact", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__contact", "analytics___finance_stg__contact"], "alias": "analytics___finance_stg__contact", "checksum": {"name": "sha256", "checksum": "e88a851880b64cc9341bc97d90f917be3b1bcc4ae3f2bc11a834c0cd565108bf"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "", "columns": {"deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address1": {"name": "address1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address2": {"name": "address2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "city": {"name": "city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "county": {"name": "county", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fax": {"name": "fax", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "firstname": {"name": "firstname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "homephone": {"name": "homephone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastname": {"name": "lastname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mobilephone": {"name": "mobilephone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nickname": {"name": "nickname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "otherphonetype": {"name": "otherphonetype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "otherphone": {"name": "otherphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "personalemail": {"name": "personalemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "postalcode": {"name": "postalcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxregion": {"name": "taxregion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "workemail": {"name": "workemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "workphone": {"name": "workphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__contact/analytics___finance_stg__contact.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.1673949, "relation_name": "dev_dkruh1.analytics___finance_stg__contact", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'contact') }}\n\n), analytics___finance_stg__contact AS (\n\n SELECT \n\t\tdeleted,\n\t\taccountid,\n\t\taddress1,\n\t\taddress2,\n\t\tcity,\n\t\tcountry,\n\t\tcounty,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdescription,\n\t\tfax,\n\t\tfirstname,\n\t\thomephone,\n\t\tid,\n\t\tlastname,\n\t\tmobilephone,\n\t\tnickname,\n\t\totherphonetype,\n\t\totherphone,\n\t\tpersonalemail,\n\t\tpostalcode,\n\t\tstate,\n\t\ttaxregion,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tworkemail,\n\t\tworkphone,\n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version\n FROM source\n\n)\n\nSELECT * \nFROM analytics___finance_stg__contact", "language": "sql", "refs": [], "sources": [["analytics__zuora", "contact"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.contact"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__contact/analytics___finance_stg__contact.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.contact\n\n), analytics___finance_stg__contact AS (\n\n SELECT \n\t\tdeleted,\n\t\taccountid,\n\t\taddress1,\n\t\taddress2,\n\t\tcity,\n\t\tcountry,\n\t\tcounty,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdescription,\n\t\tfax,\n\t\tfirstname,\n\t\thomephone,\n\t\tid,\n\t\tlastname,\n\t\tmobilephone,\n\t\tnickname,\n\t\totherphonetype,\n\t\totherphone,\n\t\tpersonalemail,\n\t\tpostalcode,\n\t\tstate,\n\t\ttaxregion,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tworkemail,\n\t\tworkphone,\n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version\n FROM source\n\n)\n\nSELECT * \nFROM analytics___finance_stg__contact", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__invoice": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__invoice", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.sql", "unique_id": "model.yoda.analytics___finance_stg__invoice", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__invoice", "analytics___finance_stg__invoice"], "alias": "analytics___finance_stg__invoice", "checksum": {"name": "sha256", "checksum": "75bf646b6963bbe872397729151a80132e676dfd3e29e35f3b7dfbdcab9c00da"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "finance_stg__invoice", "columns": {"accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adjustmentamount": {"name": "adjustmentamount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amountwithouttax": {"name": "amountwithouttax", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount": {"name": "amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "autopay": {"name": "autopay", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "balance": {"name": "balance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "billtocontactid": {"name": "billtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactsnapshotid": {"name": "billtocontactsnapshotid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comments": {"name": "comments", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creditbalanceadjustmentamount": {"name": "creditbalanceadjustmentamount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "duedate": {"name": "duedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includesonetime": {"name": "includesonetime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "includesrecurring": {"name": "includesrecurring", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "includesusage": {"name": "includesusage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "integrationid__ns": {"name": "integrationid__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceconversionamountbeforetax__c": {"name": "invoiceconversionamountbeforetax__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceconversionamount__c": {"name": "invoiceconversionamount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceconversioncurrency__c": {"name": "invoiceconversioncurrency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceconversionrate__c": {"name": "invoiceconversionrate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoicedate": {"name": "invoicedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoicenumber": {"name": "invoicenumber", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastemailsentdate": {"name": "lastemailsentdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paymentamount": {"name": "paymentamount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "postedby": {"name": "postedby", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "posteddate": {"name": "posteddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refundamount": {"name": "refundamount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reversed": {"name": "reversed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "soldtocontactid": {"name": "soldtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactsnapshotid": {"name": "soldtocontactsnapshotid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sourceid": {"name": "sourceid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "targetdate": {"name": "targetdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxamount": {"name": "taxamount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxexemptamount": {"name": "taxexemptamount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxmessage": {"name": "taxmessage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxstatus": {"name": "taxstatus", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "transferredtoaccounting": {"name": "transferredtoaccounting", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.209896, "relation_name": "dev_dkruh1.analytics___finance_stg__invoice", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'invoice') }}\n\n), finance_stg__invoice AS (\n\n SELECT\n\t\taccountid,\n\t\tadjustmentamount,\n\t\tamountwithouttax,\n\t\tamount,\n\t\tautopay,\n\t\tbalance,\n\t\tbilltocontactid,\n\t\tbilltocontactsnapshotid,\n\t\tcomments,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreditbalanceadjustmentamount,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tduedate,\n\t\tid,\n\t\tincludesonetime,\n\t\tincludesrecurring,\n\t\tincludesusage,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\tinvoiceconversionamountbeforetax__c,\n\t\tinvoiceconversionamount__c,\n\t\tinvoiceconversioncurrency__c,\n\t\tinvoiceconversionrate__c,\n\t\tinvoicedate,\n\t\tinvoicenumber,\n\t\tlastemailsentdate,\n\t\tparentaccountid,\n\t\tpaymentamount,\n\t\tpostedby,\n\t\tposteddate,\n\t\trefundamount,\n\t\treversed,\n\t\tsoldtocontactid,\n\t\tsoldtocontactsnapshotid,\n\t\tsourceid,\n\t\tsource,\n\t\tstatus,\n\t\tsyncdate__ns,\n\t\ttargetdate,\n\t\ttaxamount,\n\t\ttaxexemptamount,\n\t\ttaxmessage,\n\t\ttaxstatus,\n\t\ttransferredtoaccounting,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__invoice", "language": "sql", "refs": [], "sources": [["analytics__zuora", "invoice"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.invoice\n\n), finance_stg__invoice AS (\n\n SELECT\n\t\taccountid,\n\t\tadjustmentamount,\n\t\tamountwithouttax,\n\t\tamount,\n\t\tautopay,\n\t\tbalance,\n\t\tbilltocontactid,\n\t\tbilltocontactsnapshotid,\n\t\tcomments,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreditbalanceadjustmentamount,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tduedate,\n\t\tid,\n\t\tincludesonetime,\n\t\tincludesrecurring,\n\t\tincludesusage,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\tinvoiceconversionamountbeforetax__c,\n\t\tinvoiceconversionamount__c,\n\t\tinvoiceconversioncurrency__c,\n\t\tinvoiceconversionrate__c,\n\t\tinvoicedate,\n\t\tinvoicenumber,\n\t\tlastemailsentdate,\n\t\tparentaccountid,\n\t\tpaymentamount,\n\t\tpostedby,\n\t\tposteddate,\n\t\trefundamount,\n\t\treversed,\n\t\tsoldtocontactid,\n\t\tsoldtocontactsnapshotid,\n\t\tsourceid,\n\t\tsource,\n\t\tstatus,\n\t\tsyncdate__ns,\n\t\ttargetdate,\n\t\ttaxamount,\n\t\ttaxexemptamount,\n\t\ttaxmessage,\n\t\ttaxstatus,\n\t\ttransferredtoaccounting,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__invoice", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__invoiceitem": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__invoiceitem", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.sql", "unique_id": "model.yoda.analytics___finance_stg__invoiceitem", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__invoiceitem", "analytics___finance_stg__invoiceitem"], "alias": "analytics___finance_stg__invoiceitem", "checksum": {"name": "sha256", "checksum": "0359b0a6276db01dc50a06b27d94fc666a330edc134c5d142859c79ed8fbf2bc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountreceivableaccountingcodeid": {"name": "accountreceivableaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountingcode": {"name": "accountingcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountingperiodid": {"name": "accountingperiodid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendmentid": {"name": "amendmentid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appliedtoinvoiceitemid": {"name": "appliedtoinvoiceitemid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "balance": {"name": "balance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "billtocontactid": {"name": "billtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactsnapshotid": {"name": "billtocontactsnapshotid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeamount": {"name": "chargeamount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "chargedate": {"name": "chargedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargename": {"name": "chargename", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deferredrevenueaccountingcodeid": {"name": "deferredrevenueaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationid__ns": {"name": "integrationid__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceid": {"name": "invoiceid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "journalentryid": {"name": "journalentryid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "journalrunid": {"name": "journalrunid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processingtype": {"name": "processingtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productid": {"name": "productid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanchargeid": {"name": "productrateplanchargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanid": {"name": "productrateplanid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rateplanchargeid": {"name": "rateplanchargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplanid": {"name": "rateplanid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recognizedrevenueaccountingcodeid": {"name": "recognizedrevenueaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "serviceenddate": {"name": "serviceenddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "servicestartdate": {"name": "servicestartdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactsnapshotid": {"name": "soldtocontactsnapshotid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxamount": {"name": "taxamount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxcode": {"name": "taxcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptamount": {"name": "taxexemptamount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxmode": {"name": "taxmode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uom": {"name": "uom", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unitprice": {"name": "unitprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.258895, "relation_name": "dev_dkruh1.analytics___finance_stg__invoiceitem", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'invoiceitem') }}\n\n), analytics___finance_stg__invoiceitem AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\taccountid,\n\t\taccountreceivableaccountingcodeid,\n\t\taccountingcode,\n\t\taccountingperiodid,\n\t\tamendmentid,\n\t\tappliedtoinvoiceitemid,\n\t\tbalance,\n\t\tbilltocontactid,\n\t\tbilltocontactsnapshotid,\n\t\tchargeamount,\n\t\tchargedate,\n\t\tchargename,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdefaultpaymentmethodid,\n\t\tdeferredrevenueaccountingcodeid,\n\t\tdeleted,\n\t\tid,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\tinvoiceid,\n\t\tjournalentryid,\n\t\tjournalrunid,\n\t\tparentaccountid,\n\t\tprocessingtype,\n\t\tproductid,\n\t\tproductrateplanchargeid,\n\t\tproductrateplanid,\n\t\tquantity,\n\t\trateplanchargeid,\n\t\trateplanid,\n\t\trecognizedrevenueaccountingcodeid,\n\t\tsku,\n\t\tserviceenddate,\n\t\tservicestartdate,\n\t\tsoldtocontactid,\n\t\tsoldtocontactsnapshotid,\n\t\tsubscriptionid,\n\t\tsyncdate__ns,\n\t\ttaxamount,\n\t\ttaxcode,\n\t\ttaxexemptamount,\n\t\ttaxmode,\n\t\tuom,\n\t\tunitprice,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM analytics___finance_stg__invoiceitem", "language": "sql", "refs": [], "sources": [["analytics__zuora", "invoiceitem"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.invoiceitem"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.invoiceitem\n\n), analytics___finance_stg__invoiceitem AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\taccountid,\n\t\taccountreceivableaccountingcodeid,\n\t\taccountingcode,\n\t\taccountingperiodid,\n\t\tamendmentid,\n\t\tappliedtoinvoiceitemid,\n\t\tbalance,\n\t\tbilltocontactid,\n\t\tbilltocontactsnapshotid,\n\t\tchargeamount,\n\t\tchargedate,\n\t\tchargename,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdefaultpaymentmethodid,\n\t\tdeferredrevenueaccountingcodeid,\n\t\tdeleted,\n\t\tid,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\tinvoiceid,\n\t\tjournalentryid,\n\t\tjournalrunid,\n\t\tparentaccountid,\n\t\tprocessingtype,\n\t\tproductid,\n\t\tproductrateplanchargeid,\n\t\tproductrateplanid,\n\t\tquantity,\n\t\trateplanchargeid,\n\t\trateplanid,\n\t\trecognizedrevenueaccountingcodeid,\n\t\tsku,\n\t\tserviceenddate,\n\t\tservicestartdate,\n\t\tsoldtocontactid,\n\t\tsoldtocontactsnapshotid,\n\t\tsubscriptionid,\n\t\tsyncdate__ns,\n\t\ttaxamount,\n\t\ttaxcode,\n\t\ttaxexemptamount,\n\t\ttaxmode,\n\t\tuom,\n\t\tunitprice,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM analytics___finance_stg__invoiceitem", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__order": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__order", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.sql", "unique_id": "model.yoda.analytics___finance_stg__order", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__order", "analytics___finance_stg__order"], "alias": "analytics___finance_stg__order", "checksum": {"name": "sha256", "checksum": "88f86a10114e0c572f649e2ffa25f45882ac79955fb317d0260d6eb1431278f9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "finance_stg__order", "columns": {"accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactid": {"name": "billtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orderdate": {"name": "orderdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ordernumber": {"name": "ordernumber", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisiondate__c": {"name": "provisiondate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082640.2807856, "relation_name": "dev_dkruh1.analytics___finance_stg__order", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'order') }}\n\n), finance_stg__order AS (\n\n SELECT \n\t\taccountid,\n\t\tbilltocontactid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tdescription,\n\t\tid,\n\t\torderdate,\n\t\tordernumber,\n\t\tparentaccountid,\n\t\tprovisiondate__c,\n\t\tsoldtocontactid,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__order", "language": "sql", "refs": [], "sources": [["analytics__zuora", "order"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.order"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.order\n\n), finance_stg__order AS (\n\n SELECT \n\t\taccountid,\n\t\tbilltocontactid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tdescription,\n\t\tid,\n\t\torderdate,\n\t\tordernumber,\n\t\tparentaccountid,\n\t\tprovisiondate__c,\n\t\tsoldtocontactid,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__order", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__orderaction": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__orderaction", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.sql", "unique_id": "model.yoda.analytics___finance_stg__orderaction", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__orderaction", "analytics___finance_stg__orderaction"], "alias": "analytics___finance_stg__orderaction", "checksum": {"name": "sha256", "checksum": "b9f2721daca7d89b8f583f9bc06755554fc1d2e3f688ac95571872239813a39e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "finance_stg__orderaction", "columns": {"accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactid": {"name": "billtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contracteffectivedate": {"name": "contracteffectivedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customeracceptancedate": {"name": "customeracceptancedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "downgradedpackage__c": {"name": "downgradedpackage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orderid": {"name": "orderid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisiondone__c": {"name": "provisiondone__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "serviceactivationdate": {"name": "serviceactivationdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "serviceactivation__c": {"name": "serviceactivation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionversionamendmentid": {"name": "subscriptionversionamendmentid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.5297236, "relation_name": "dev_dkruh1.analytics___finance_stg__orderaction", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'orderaction') }}\n\n), finance_stg__orderaction AS (\n\n SELECT \n\t\taccountid,\n\t\tbilltocontactid,\n\t\tcontracteffectivedate,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcustomeracceptancedate,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tdowngradedpackage__c,\n\t\tid,\n\t\torderid,\n\t\tparentaccountid,\n\t\tprovisiondone__c,\n\t\tserviceactivationdate,\n\t\tserviceactivation__c,\n\t\tsoldtocontactid,\n\t\tsubscriptionid,\n\t\tsubscriptionversionamendmentid,\n\t\ttype,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__orderaction", "language": "sql", "refs": [], "sources": [["analytics__zuora", "orderaction"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.orderaction"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.orderaction\n\n), finance_stg__orderaction AS (\n\n SELECT \n\t\taccountid,\n\t\tbilltocontactid,\n\t\tcontracteffectivedate,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcustomeracceptancedate,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tdowngradedpackage__c,\n\t\tid,\n\t\torderid,\n\t\tparentaccountid,\n\t\tprovisiondone__c,\n\t\tserviceactivationdate,\n\t\tserviceactivation__c,\n\t\tsoldtocontactid,\n\t\tsubscriptionid,\n\t\tsubscriptionversionamendmentid,\n\t\ttype,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__orderaction", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__ordermrr": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__ordermrr", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.sql", "unique_id": "model.yoda.analytics___finance_stg__ordermrr", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__ordermrr", "analytics___finance_stg__ordermrr"], "alias": "analytics___finance_stg__ordermrr", "checksum": {"name": "sha256", "checksum": "e925e8367f05e38cd617297b1216a426d72830e763cbd498b83d1c655b50b721"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "finance_stg__ordermrr", "columns": {"accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendmentid": {"name": "amendmentid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactid": {"name": "billtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "discountchargeid": {"name": "discountchargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enddate": {"name": "enddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceownerid": {"name": "invoiceownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orderactionid": {"name": "orderactionid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orderid": {"name": "orderid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productid": {"name": "productid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanchargeid": {"name": "productrateplanchargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanid": {"name": "productrateplanid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplanchargeid": {"name": "rateplanchargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplanid": {"name": "rateplanid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "startdate": {"name": "startdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionownerid": {"name": "subscriptionownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionversionamendmentid": {"name": "subscriptionversionamendmentid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "term": {"name": "term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.5652263, "relation_name": "dev_dkruh1.analytics___finance_stg__ordermrr", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'ordermrr') }}\n\n), finance_stg__ordermrr AS (\n\n SELECT \n\t\taccountid,\n\t\tamendmentid,\n\t\tbilltocontactid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tdiscountchargeid,\n\t\tenddate,\n\t\tid,\n\t\tinvoiceownerid,\n\t\torderactionid,\n\t\torderid,\n\t\tparentaccountid,\n\t\tproductid,\n\t\tproductrateplanchargeid,\n\t\tproductrateplanid,\n\t\trateplanchargeid,\n\t\trateplanid,\n\t\tsoldtocontactid,\n\t\tstartdate,\n\t\tsubscriptionid,\n\t\tsubscriptionownerid,\n\t\tsubscriptionversionamendmentid,\n\t\tterm,\n\t\ttype,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tvalue\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__ordermrr", "language": "sql", "refs": [], "sources": [["analytics__zuora", "ordermrr"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.ordermrr"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.ordermrr\n\n), finance_stg__ordermrr AS (\n\n SELECT \n\t\taccountid,\n\t\tamendmentid,\n\t\tbilltocontactid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tdiscountchargeid,\n\t\tenddate,\n\t\tid,\n\t\tinvoiceownerid,\n\t\torderactionid,\n\t\torderid,\n\t\tparentaccountid,\n\t\tproductid,\n\t\tproductrateplanchargeid,\n\t\tproductrateplanid,\n\t\trateplanchargeid,\n\t\trateplanid,\n\t\tsoldtocontactid,\n\t\tstartdate,\n\t\tsubscriptionid,\n\t\tsubscriptionownerid,\n\t\tsubscriptionversionamendmentid,\n\t\tterm,\n\t\ttype,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tvalue\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__ordermrr", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__product": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__product", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.sql", "unique_id": "model.yoda.analytics___finance_stg__product", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__product", "analytics___finance_stg__product"], "alias": "analytics___finance_stg__product", "checksum": {"name": "sha256", "checksum": "1d9f6ef008bf78d3862d53aaaeb3089f25283f68da36d5029db694f6d7b6e8af"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "finance_stg__product", "columns": {"provisioned_package__c": {"name": "provisioned_package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "allowfeaturechanges": {"name": "allowfeaturechanges", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "category": {"name": "category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectiveenddate": {"name": "effectiveenddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectivestartdate": {"name": "effectivestartdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationid__ns": {"name": "integrationid__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "itemtype__ns": {"name": "itemtype__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_metadata__c": {"name": "plan_metadata__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productfamily__c": {"name": "productfamily__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisionrequired__c": {"name": "provisionrequired__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxengine__c": {"name": "taxengine__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "corepackage__c": {"name": "corepackage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.5929406, "relation_name": "dev_dkruh1.analytics___finance_stg__product", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'product') }}\n\n), finance_stg__product AS (\n\n SELECT \n\t\tprovisioned_package__c,\n\t\tallowfeaturechanges,\n\t\tcategory,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdeleted,\n\t\tdescription,\n\t\teffectiveenddate,\n\t\teffectivestartdate,\n\t\tid,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\titemtype__ns,\n\t\tname,\n\t\tplan_metadata__c,\n\t\tproductfamily__c,\n\t\tprovisionrequired__c,\n\t\tsku,\n\t\tsyncdate__ns,\n\t\ttaxengine__c,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tcorepackage__c\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__product", "language": "sql", "refs": [], "sources": [["analytics__zuora", "product"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.product"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.product\n\n), finance_stg__product AS (\n\n SELECT \n\t\tprovisioned_package__c,\n\t\tallowfeaturechanges,\n\t\tcategory,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdeleted,\n\t\tdescription,\n\t\teffectiveenddate,\n\t\teffectivestartdate,\n\t\tid,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\titemtype__ns,\n\t\tname,\n\t\tplan_metadata__c,\n\t\tproductfamily__c,\n\t\tprovisionrequired__c,\n\t\tsku,\n\t\tsyncdate__ns,\n\t\ttaxengine__c,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tcorepackage__c\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__product", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__productrateplan": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__productrateplan", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.sql", "unique_id": "model.yoda.analytics___finance_stg__productrateplan", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__productrateplan", "analytics___finance_stg__productrateplan"], "alias": "analytics___finance_stg__productrateplan", "checksum": {"name": "sha256", "checksum": "4b7992f02727740d46a75e1dfdca200409876e4b205f596393ba0711f95276c2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingperiod__ns": {"name": "billingperiod__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "class__ns": {"name": "class__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "department__ns": {"name": "department__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectiveenddate": {"name": "effectiveenddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectivestartdate": {"name": "effectivestartdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includechildren__ns": {"name": "includechildren__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationid__ns": {"name": "integrationid__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "itemtype__ns": {"name": "itemtype__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "location__ns": {"name": "location__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "multicurrencyprice__ns": {"name": "multicurrencyprice__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price__ns": {"name": "price__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productid": {"name": "productid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subsidiary__ns": {"name": "subsidiary__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxcode__ns": {"name": "taxcode__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.6291041, "relation_name": "dev_dkruh1.analytics___finance_stg__productrateplan", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'productrateplan') }}\n\n), finance_stg__productrateplan AS (\n\n SELECT \n\t\tid,\n\t\tbillingperiod__ns,\n\t\tclass__ns,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdeleted,\n\t\tdepartment__ns,\n\t\tdescription,\n\t\teffectiveenddate,\n\t\teffectivestartdate,\n\t\tincludechildren__ns,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\titemtype__ns,\n\t\tlocation__ns,\n\t\tmulticurrencyprice__ns,\n\t\tname,\n\t\tprice__ns,\n\t\tproductid,\n\t\tsubsidiary__ns,\n\t\tsyncdate__ns,\n\t\ttaxcode__ns,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__productrateplan", "language": "sql", "refs": [], "sources": [["analytics__zuora", "productrateplan"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.productrateplan"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.productrateplan\n\n), finance_stg__productrateplan AS (\n\n SELECT \n\t\tid,\n\t\tbillingperiod__ns,\n\t\tclass__ns,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdeleted,\n\t\tdepartment__ns,\n\t\tdescription,\n\t\teffectiveenddate,\n\t\teffectivestartdate,\n\t\tincludechildren__ns,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\titemtype__ns,\n\t\tlocation__ns,\n\t\tmulticurrencyprice__ns,\n\t\tname,\n\t\tprice__ns,\n\t\tproductid,\n\t\tsubsidiary__ns,\n\t\tsyncdate__ns,\n\t\ttaxcode__ns,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__productrateplan", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__productrateplancharge": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__productrateplancharge", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.sql", "unique_id": "model.yoda.analytics___finance_stg__productrateplancharge", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__productrateplancharge", "analytics___finance_stg__productrateplancharge"], "alias": "analytics___finance_stg__productrateplancharge", "checksum": {"name": "sha256", "checksum": "e17304ce07a792e0869d0a7be9d88edc45a74552134d931d9d3a5d6ae380f8fc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountreceivableaccountingcodeid": {"name": "accountreceivableaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountingcode": {"name": "accountingcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adjustmentliabilityaccountingcodeid": {"name": "adjustmentliabilityaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adjustmentrevenueaccountingcodeid": {"name": "adjustmentrevenueaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "allocationeligible_zrev__c": {"name": "allocationeligible_zrev__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applydiscountto": {"name": "applydiscountto", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billcycletype": {"name": "billcycletype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingperiodalignment": {"name": "billingperiodalignment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingperiod": {"name": "billingperiod", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingtiming": {"name": "billingtiming", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargemodel": {"name": "chargemodel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargetype": {"name": "chargetype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "class__ns": {"name": "class__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contractassetaccountingcodeid": {"name": "contractassetaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contractliabilityaccountingcodeid": {"name": "contractliabilityaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contractrecognizedrevenueaccountingcodeid": {"name": "contractrecognizedrevenueaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultquantity": {"name": "defaultquantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deferredrevaccount__ns": {"name": "deferredrevaccount__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deferredrevenueaccountingcodeid": {"name": "deferredrevenueaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deferredrevenueaccount": {"name": "deferredrevenueaccount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "department__ns": {"name": "department__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discountclassid": {"name": "discountclassid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discountlevel": {"name": "discountlevel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enddatecondition": {"name": "enddatecondition", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "excludeitembillingfromrevenueaccounting": {"name": "excludeitembillingfromrevenueaccounting", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "excludeitembookingfromrevenueaccounting": {"name": "excludeitembookingfromrevenueaccounting", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "excludefromrevenue__c": {"name": "excludefromrevenue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includechildren__ns": {"name": "includechildren__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includedunits": {"name": "includedunits", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "integrationid__ns": {"name": "integrationid__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "itemtype__ns": {"name": "itemtype__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "legacyrevenuereporting": {"name": "legacyrevenuereporting", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "listpricebase": {"name": "listpricebase", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "location__ns": {"name": "location__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numberofperiod": {"name": "numberofperiod", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overagecalculationoption": {"name": "overagecalculationoption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "overageunusedunitscreditoption": {"name": "overageunusedunitscreditoption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pobidentifier_zrev__c": {"name": "pobidentifier_zrev__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricechangeoption": {"name": "pricechangeoption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priceincreasepercentage": {"name": "priceincreasepercentage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "productid": {"name": "productid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanid": {"name": "productrateplanid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ratinggroup": {"name": "ratinggroup", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recognizedrevaccount__ns": {"name": "recognizedrevaccount__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recognizedrevenueaccountingcodeid": {"name": "recognizedrevenueaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recognizedrevenueaccount": {"name": "recognizedrevenueaccount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revreccode": {"name": "revreccode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revrecend__ns": {"name": "revrecend__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revrecstart__ns": {"name": "revrecstart__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revrectemplatetype__ns": {"name": "revrectemplatetype__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revrectriggercondition": {"name": "revrectriggercondition", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenuerecognitionrulename": {"name": "revenuerecognitionrulename", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smoothingmodel": {"name": "smoothingmodel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subsidiary__ns": {"name": "subsidiary__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxcode": {"name": "taxcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxmode": {"name": "taxmode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxable": {"name": "taxable", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "triggerevent": {"name": "triggerevent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uom": {"name": "uom", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unbilledreceivablesaccountingcodeid": {"name": "unbilledreceivablesaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uptoperiodstype": {"name": "uptoperiodstype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usagerecordratingoption": {"name": "usagerecordratingoption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usediscountspecificaccountingcode": {"name": "usediscountspecificaccountingcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "usetenantdefaultforpricechange": {"name": "usetenantdefaultforpricechange", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "vceligible_zrev__c": {"name": "vceligible_zrev__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "weeklybillcycleday": {"name": "weeklybillcycleday", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billcycleday": {"name": "billcycleday", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.6997302, "relation_name": "dev_dkruh1.analytics___finance_stg__productrateplancharge", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'productrateplancharge') }}\n\n), finance_stg__productrateplancharge AS (\n\n SELECT \n\t\tid,\n\t\taccountreceivableaccountingcodeid,\n\t\taccountingcode,\n\t\tadjustmentliabilityaccountingcodeid,\n\t\tadjustmentrevenueaccountingcodeid,\n\t\tallocationeligible_zrev__c,\n\t\tapplydiscountto,\n\t\tbillcycletype,\n\t\tbillingperiodalignment,\n\t\tbillingperiod,\n\t\tbillingtiming,\n\t\tchargemodel,\n\t\tchargetype,\n\t\tclass__ns,\n\t\tcontractassetaccountingcodeid,\n\t\tcontractliabilityaccountingcodeid,\n\t\tcontractrecognizedrevenueaccountingcodeid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdefaultquantity,\n\t\tdeferredrevaccount__ns,\n\t\tdeferredrevenueaccountingcodeid,\n\t\tdeferredrevenueaccount,\n\t\tdeleted,\n\t\tdepartment__ns,\n\t\tdescription,\n\t\tdiscountclassid,\n\t\tdiscountlevel,\n\t\tenddatecondition,\n\t\texcludeitembillingfromrevenueaccounting,\n\t\texcludeitembookingfromrevenueaccounting,\n\t\texcludefromrevenue__c,\n\t\tincludechildren__ns,\n\t\tincludedunits,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\titemtype__ns,\n\t\tlegacyrevenuereporting,\n\t\tlistpricebase,\n\t\tlocation__ns,\n\t\tname,\n\t\tnumberofperiod,\n\t\toveragecalculationoption,\n\t\toverageunusedunitscreditoption,\n\t\tpobidentifier_zrev__c,\n\t\tpricechangeoption,\n\t\tpriceincreasepercentage,\n\t\tproductid,\n\t\tproductrateplanid,\n\t\tratinggroup,\n\t\trecognizedrevaccount__ns,\n\t\trecognizedrevenueaccountingcodeid,\n\t\trecognizedrevenueaccount,\n\t\trevreccode,\n\t\trevrecend__ns,\n\t\trevrecstart__ns,\n\t\trevrectemplatetype__ns,\n\t\trevrectriggercondition,\n\t\trevenuerecognitionrulename,\n\t\tsmoothingmodel,\n\t\tsubsidiary__ns,\n\t\tsyncdate__ns,\n\t\ttaxcode,\n\t\ttaxmode,\n\t\ttaxable,\n\t\ttriggerevent,\n\t\tuom,\n\t\tunbilledreceivablesaccountingcodeid,\n\t\tuptoperiodstype,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tusagerecordratingoption,\n\t\tusediscountspecificaccountingcode,\n\t\tusetenantdefaultforpricechange,\n\t\tvceligible_zrev__c,\n\t\tweeklybillcycleday,\n\t\tbillcycleday\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__productrateplancharge", "language": "sql", "refs": [], "sources": [["analytics__zuora", "productrateplancharge"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.productrateplancharge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.productrateplancharge\n\n), finance_stg__productrateplancharge AS (\n\n SELECT \n\t\tid,\n\t\taccountreceivableaccountingcodeid,\n\t\taccountingcode,\n\t\tadjustmentliabilityaccountingcodeid,\n\t\tadjustmentrevenueaccountingcodeid,\n\t\tallocationeligible_zrev__c,\n\t\tapplydiscountto,\n\t\tbillcycletype,\n\t\tbillingperiodalignment,\n\t\tbillingperiod,\n\t\tbillingtiming,\n\t\tchargemodel,\n\t\tchargetype,\n\t\tclass__ns,\n\t\tcontractassetaccountingcodeid,\n\t\tcontractliabilityaccountingcodeid,\n\t\tcontractrecognizedrevenueaccountingcodeid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdefaultquantity,\n\t\tdeferredrevaccount__ns,\n\t\tdeferredrevenueaccountingcodeid,\n\t\tdeferredrevenueaccount,\n\t\tdeleted,\n\t\tdepartment__ns,\n\t\tdescription,\n\t\tdiscountclassid,\n\t\tdiscountlevel,\n\t\tenddatecondition,\n\t\texcludeitembillingfromrevenueaccounting,\n\t\texcludeitembookingfromrevenueaccounting,\n\t\texcludefromrevenue__c,\n\t\tincludechildren__ns,\n\t\tincludedunits,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\titemtype__ns,\n\t\tlegacyrevenuereporting,\n\t\tlistpricebase,\n\t\tlocation__ns,\n\t\tname,\n\t\tnumberofperiod,\n\t\toveragecalculationoption,\n\t\toverageunusedunitscreditoption,\n\t\tpobidentifier_zrev__c,\n\t\tpricechangeoption,\n\t\tpriceincreasepercentage,\n\t\tproductid,\n\t\tproductrateplanid,\n\t\tratinggroup,\n\t\trecognizedrevaccount__ns,\n\t\trecognizedrevenueaccountingcodeid,\n\t\trecognizedrevenueaccount,\n\t\trevreccode,\n\t\trevrecend__ns,\n\t\trevrecstart__ns,\n\t\trevrectemplatetype__ns,\n\t\trevrectriggercondition,\n\t\trevenuerecognitionrulename,\n\t\tsmoothingmodel,\n\t\tsubsidiary__ns,\n\t\tsyncdate__ns,\n\t\ttaxcode,\n\t\ttaxmode,\n\t\ttaxable,\n\t\ttriggerevent,\n\t\tuom,\n\t\tunbilledreceivablesaccountingcodeid,\n\t\tuptoperiodstype,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tusagerecordratingoption,\n\t\tusediscountspecificaccountingcode,\n\t\tusetenantdefaultforpricechange,\n\t\tvceligible_zrev__c,\n\t\tweeklybillcycleday,\n\t\tbillcycleday\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__productrateplancharge", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__rateplan": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__rateplan", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.sql", "unique_id": "model.yoda.analytics___finance_stg__rateplan", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__rateplan", "analytics___finance_stg__rateplan"], "alias": "analytics___finance_stg__rateplan", "checksum": {"name": "sha256", "checksum": "efb26122dbed3a028daeebff154c9f3c49c6130078f25cd8121a47a524c5cb69"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "finance_stg__rateplan", "columns": {"total_price__c": {"name": "total_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendmentid": {"name": "amendmentid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendmenttype": {"name": "amendmenttype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactid": {"name": "billtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productid": {"name": "productid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanid": {"name": "productrateplanid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionversionamendmentid": {"name": "subscriptionversionamendmentid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family__c": {"name": "product_family__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.732022, "relation_name": "dev_dkruh1.analytics___finance_stg__rateplan", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'rateplan') }}\n\n), finance_stg__rateplan AS (\n\n SELECT \n\t\ttotal_price__c,\n\t\taccountid,\n\t\tamendmentid,\n\t\tamendmenttype,\n\t\tbilltocontactid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tid,\n\t\tname,\n\t\tparentaccountid,\n\t\tproductid,\n\t\tproductrateplanid,\n\t\tsoldtocontactid,\n\t\tsubscriptionid,\n\t\tsubscriptionversionamendmentid,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tproduct_family__c\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__rateplan", "language": "sql", "refs": [], "sources": [["analytics__zuora", "rateplan"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.rateplan"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.rateplan\n\n), finance_stg__rateplan AS (\n\n SELECT \n\t\ttotal_price__c,\n\t\taccountid,\n\t\tamendmentid,\n\t\tamendmenttype,\n\t\tbilltocontactid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tid,\n\t\tname,\n\t\tparentaccountid,\n\t\tproductid,\n\t\tproductrateplanid,\n\t\tsoldtocontactid,\n\t\tsubscriptionid,\n\t\tsubscriptionversionamendmentid,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tproduct_family__c\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__rateplan", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__rateplancharge": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__rateplancharge", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.sql", "unique_id": "model.yoda.analytics___finance_stg__rateplancharge", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__rateplancharge", "analytics___finance_stg__rateplancharge"], "alias": "analytics___finance_stg__rateplancharge", "checksum": {"name": "sha256", "checksum": "a2c1a559ee99f5775b2ceb9a5c36c8ddadfd3144936520b4995ec716d5fe5928"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "TODO: Update Table Description", "columns": {"accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountreceivableaccountingcodeid": {"name": "accountreceivableaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountingcode": {"name": "accountingcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendmentid": {"name": "amendmentid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applydiscountto": {"name": "applydiscountto", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billcycleday": {"name": "billcycleday", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billcycletype": {"name": "billcycletype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactid": {"name": "billtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingperiodalignment": {"name": "billingperiodalignment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingperiod": {"name": "billingperiod", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingtiming": {"name": "billingtiming", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargemodel": {"name": "chargemodel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargenumber": {"name": "chargenumber", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargetype": {"name": "chargetype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargedthroughdate": {"name": "chargedthroughdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dmrc": {"name": "dmrc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dtcv": {"name": "dtcv", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deferredrevenueaccountingcodeid": {"name": "deferredrevenueaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discountlevel": {"name": "discountlevel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectiveenddate": {"name": "effectiveenddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectivestartdate": {"name": "effectivestartdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enddatecondition": {"name": "enddatecondition", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "islastsegment": {"name": "islastsegment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isprocessed": {"name": "isprocessed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "listpricebase": {"name": "listpricebase", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mrr": {"name": "mrr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numberofperiods": {"name": "numberofperiods", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "originalid": {"name": "originalid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "overagecalculationoption": {"name": "overagecalculationoption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "overageunusedunitscreditoption": {"name": "overageunusedunitscreditoption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricechangeoption": {"name": "pricechangeoption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priceincreasepercentage": {"name": "priceincreasepercentage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processedthroughdate": {"name": "processedthroughdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productid": {"name": "productid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanchargeid": {"name": "productrateplanchargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanid": {"name": "productrateplanid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rateplanid": {"name": "rateplanid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ratinggroup": {"name": "ratinggroup", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recognizedrevenueaccountingcodeid": {"name": "recognizedrevenueaccountingcodeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revreccode": {"name": "revreccode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revrectriggercondition": {"name": "revrectriggercondition", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenuerecognitionrulename": {"name": "revenuerecognitionrulename", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "soldtocontactid": {"name": "soldtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tcv": {"name": "tcv", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "triggerevent": {"name": "triggerevent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uom": {"name": "uom", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uptoperiodstype": {"name": "uptoperiodstype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "weeklybillcycleday": {"name": "weeklybillcycleday", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "excludeitembillingfromrevenueaccounting": {"name": "excludeitembillingfromrevenueaccounting", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "excludeitembookingfromrevenueaccounting": {"name": "excludeitembookingfromrevenueaccounting", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "freedayschargeflag__c": {"name": "freedayschargeflag__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isprepaid": {"name": "isprepaid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "optoutduration__c": {"name": "optoutduration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prepaidoperationtype": {"name": "prepaidoperationtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prepaiduom": {"name": "prepaiduom", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "validityperiodtype": {"name": "validityperiodtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendedbyorderon": {"name": "amendedbyorderon", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bundlename__c": {"name": "bundlename__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bundlesku__c": {"name": "bundlesku__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bundleyn__c": {"name": "bundleyn__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bundleyesno__c": {"name": "bundleyesno__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "originalorderdate": {"name": "originalorderdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.8227832, "relation_name": "dev_dkruh1.analytics___finance_stg__rateplancharge", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'rateplancharge') }}\n\n), finance_stg__rateplancharge AS (\n\n SELECT \n\t\taccountid,\n\t\taccountreceivableaccountingcodeid,\n\t\taccountingcode,\n\t\tamendmentid,\n\t\tapplydiscountto,\n\t\tbillcycleday,\n\t\tbillcycletype,\n\t\tbilltocontactid,\n\t\tbillingperiodalignment,\n\t\tbillingperiod,\n\t\tbillingtiming,\n\t\tchargemodel,\n\t\tchargenumber,\n\t\tchargetype,\n\t\tchargedthroughdate,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdmrc,\n\t\tdtcv,\n\t\tdefaultpaymentmethodid,\n\t\tdeferredrevenueaccountingcodeid,\n\t\tdeleted,\n\t\tdescription,\n\t\tdiscountlevel,\n\t\teffectiveenddate,\n\t\teffectivestartdate,\n\t\tenddatecondition,\n\t\tid,\n\t\tislastsegment,\n\t\tisprocessed,\n\t\tlistpricebase,\n\t\tmrr,\n\t\tname,\n\t\tnumberofperiods,\n\t\toriginalid,\n\t\toveragecalculationoption,\n\t\toverageunusedunitscreditoption,\n\t\tparentaccountid,\n\t\tpricechangeoption,\n\t\tpriceincreasepercentage,\n\t\tprocessedthroughdate,\n\t\tproductid,\n\t\tproductrateplanchargeid,\n\t\tproductrateplanid,\n\t\tquantity,\n\t\trateplanid,\n\t\tratinggroup,\n\t\trecognizedrevenueaccountingcodeid,\n\t\trevreccode,\n\t\trevrectriggercondition,\n\t\trevenuerecognitionrulename,\n\t\tsegment,\n\t\tsoldtocontactid,\n\t\tsubscriptionid,\n\t\ttcv,\n\t\ttriggerevent,\n\t\tuom,\n\t\tuptoperiodstype,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tversion,\n\t\tweeklybillcycleday,\n\t\texcludeitembillingfromrevenueaccounting,\n\t\texcludeitembookingfromrevenueaccounting,\n\t\tfreedayschargeflag__c,\n\t\tisprepaid,\n\t\toptoutduration__c,\n\t\tprepaidoperationtype,\n\t\tprepaiduom,\n\t\tvalidityperiodtype,\n\t\tamendedbyorderon,\n\t\tbundlename__c,\n\t\tbundlesku__c,\n\t\tbundleyn__c,\n\t\tbundleyesno__c,\n\t\toriginalorderdate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__rateplancharge", "language": "sql", "refs": [], "sources": [["analytics__zuora", "rateplancharge"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.rateplancharge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.rateplancharge\n\n), finance_stg__rateplancharge AS (\n\n SELECT \n\t\taccountid,\n\t\taccountreceivableaccountingcodeid,\n\t\taccountingcode,\n\t\tamendmentid,\n\t\tapplydiscountto,\n\t\tbillcycleday,\n\t\tbillcycletype,\n\t\tbilltocontactid,\n\t\tbillingperiodalignment,\n\t\tbillingperiod,\n\t\tbillingtiming,\n\t\tchargemodel,\n\t\tchargenumber,\n\t\tchargetype,\n\t\tchargedthroughdate,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tdmrc,\n\t\tdtcv,\n\t\tdefaultpaymentmethodid,\n\t\tdeferredrevenueaccountingcodeid,\n\t\tdeleted,\n\t\tdescription,\n\t\tdiscountlevel,\n\t\teffectiveenddate,\n\t\teffectivestartdate,\n\t\tenddatecondition,\n\t\tid,\n\t\tislastsegment,\n\t\tisprocessed,\n\t\tlistpricebase,\n\t\tmrr,\n\t\tname,\n\t\tnumberofperiods,\n\t\toriginalid,\n\t\toveragecalculationoption,\n\t\toverageunusedunitscreditoption,\n\t\tparentaccountid,\n\t\tpricechangeoption,\n\t\tpriceincreasepercentage,\n\t\tprocessedthroughdate,\n\t\tproductid,\n\t\tproductrateplanchargeid,\n\t\tproductrateplanid,\n\t\tquantity,\n\t\trateplanid,\n\t\tratinggroup,\n\t\trecognizedrevenueaccountingcodeid,\n\t\trevreccode,\n\t\trevrectriggercondition,\n\t\trevenuerecognitionrulename,\n\t\tsegment,\n\t\tsoldtocontactid,\n\t\tsubscriptionid,\n\t\ttcv,\n\t\ttriggerevent,\n\t\tuom,\n\t\tuptoperiodstype,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tversion,\n\t\tweeklybillcycleday,\n\t\texcludeitembillingfromrevenueaccounting,\n\t\texcludeitembookingfromrevenueaccounting,\n\t\tfreedayschargeflag__c,\n\t\tisprepaid,\n\t\toptoutduration__c,\n\t\tprepaidoperationtype,\n\t\tprepaiduom,\n\t\tvalidityperiodtype,\n\t\tamendedbyorderon,\n\t\tbundlename__c,\n\t\tbundlesku__c,\n\t\tbundleyn__c,\n\t\tbundleyesno__c,\n\t\toriginalorderdate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__rateplancharge", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__rateplanchargetier": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__rateplanchargetier", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.sql", "unique_id": "model.yoda.analytics___finance_stg__rateplanchargetier", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__rateplanchargetier", "analytics___finance_stg__rateplanchargetier"], "alias": "analytics___finance_stg__rateplanchargetier", "checksum": {"name": "sha256", "checksum": "27aadf7c649929cf5556af10ecedf3e681b70b398fa80f66c70e2aad346c9b83"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "TODO: Update Table Description", "columns": {"amendmentid": {"name": "amendmentid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "discountpercentage": {"name": "discountpercentage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includedunits": {"name": "includedunits", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overageprice": {"name": "overageprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "priceformat": {"name": "priceformat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price": {"name": "price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "productid": {"name": "productid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanchargeid": {"name": "productrateplanchargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanid": {"name": "productrateplanid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplanchargeid": {"name": "rateplanchargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplanid": {"name": "rateplanid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tier": {"name": "tier", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bidev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.8650982, "relation_name": "dev_dkruh1.analytics___finance_stg__rateplanchargetier", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'rateplanchargetier') }}\n\n), finance_stg__rateplanchargetier AS (\n\n SELECT \n\t\tamendmentid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcurrency,\n\t\tdeleted,\n\t\tdiscountpercentage,\n\t\tid,\n\t\tincludedunits,\n\t\toverageprice,\n\t\tpriceformat,\n\t\tprice,\n\t\tproductid,\n\t\tproductrateplanchargeid,\n\t\tproductrateplanid,\n\t\trateplanchargeid,\n\t\trateplanid,\n\t\tsubscriptionid,\n\t\ttier,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__rateplanchargetier", "language": "sql", "refs": [], "sources": [["analytics__zuora", "rateplanchargetier"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.rateplanchargetier"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.rateplanchargetier\n\n), finance_stg__rateplanchargetier AS (\n\n SELECT \n\t\tamendmentid,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcurrency,\n\t\tdeleted,\n\t\tdiscountpercentage,\n\t\tid,\n\t\tincludedunits,\n\t\toverageprice,\n\t\tpriceformat,\n\t\tprice,\n\t\tproductid,\n\t\tproductrateplanchargeid,\n\t\tproductrateplanid,\n\t\trateplanchargeid,\n\t\trateplanid,\n\t\tsubscriptionid,\n\t\ttier,\n\t\tupdatedbyid,\n\t\tupdateddate\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__rateplanchargetier", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__shopify_billing_events": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__shopify_billing_events", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.sql", "unique_id": "model.yoda.analytics___finance_stg__shopify_billing_events", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__shopify_billing_events", "analytics___finance_stg__shopify_billing_events"], "alias": "analytics___finance_stg__shopify_billing_events", "checksum": {"name": "sha256", "checksum": "8e6f83422a0ba5e947b3a8c706ad51cfe591bdeb9e8247e2bdcd39b0ea9a9f4a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "chargeid": {"name": "chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "occurredat": {"name": "occurredat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "eventtype": {"name": "eventtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount": {"name": "amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "appid": {"name": "appid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billedon": {"name": "billedon", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "chargename": {"name": "chargename", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformtypename": {"name": "platformtypename", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopid": {"name": "shopid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopname": {"name": "shopname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopifydomain": {"name": "shopifydomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.885849, "relation_name": "dev_dkruh1.analytics___finance_stg__shopify_billing_events", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__billing', 'shopify_billing_events') }}\n\n), analytics___finance_stg__shopify_billing_events AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tchargeid,\n\t\toccurredat,\n\t\teventtype,\n\t\tprocessing_time,\n\t\tamount,\n\t\tappid,\n\t\tbilledon,\n\t\tchargename,\n\t\tplatformtypename,\n\t\tshopid,\n\t\tshopname,\n\t\tshopifydomain\n FROM source\n\n)\n\nSELECT * \nFROM analytics___finance_stg__shopify_billing_events", "language": "sql", "refs": [], "sources": [["analytics__billing", "shopify_billing_events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__billing.shopify_billing_events"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.shopify_billing_events\n\n), analytics___finance_stg__shopify_billing_events AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tchargeid,\n\t\toccurredat,\n\t\teventtype,\n\t\tprocessing_time,\n\t\tamount,\n\t\tappid,\n\t\tbilledon,\n\t\tchargename,\n\t\tplatformtypename,\n\t\tshopid,\n\t\tshopname,\n\t\tshopifydomain\n FROM source\n\n)\n\nSELECT * \nFROM analytics___finance_stg__shopify_billing_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__subscription": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__subscription", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.sql", "unique_id": "model.yoda.analytics___finance_stg__subscription", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__subscription", "analytics___finance_stg__subscription"], "alias": "analytics___finance_stg__subscription", "checksum": {"name": "sha256", "checksum": "eae29f177fc91bbf8d7b74a7d9581c49dca19a1f66c8a1bba5089a34274117f9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "finance_stg__subscription", "columns": {"actual_contract_duration__c": {"name": "actual_contract_duration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_extension_months__c": {"name": "csm_extension_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "end_of_contract_extension_month__c": {"name": "end_of_contract_extension_month__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_contract_duration__c": {"name": "original_contract_duration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price__c": {"name": "total_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "autorenew": {"name": "autorenew", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "billtocontactid": {"name": "billtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelleddate": {"name": "cancelleddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contractacceptancedate": {"name": "contractacceptancedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contracteffectivedate": {"name": "contracteffectivedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cpqbundlejsonid__qt": {"name": "cpqbundlejsonid__qt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creatoraccountid": {"name": "creatoraccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creatorinvoiceownerid": {"name": "creatorinvoiceownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currenttermperiodtype": {"name": "currenttermperiodtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currentterm": {"name": "currentterm", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "downgraded__c": {"name": "downgraded__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_from_dunning_until__c": {"name": "exclude_from_dunning_until__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "excludefromdashboards__c": {"name": "excludefromdashboards__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initialtermperiodtype": {"name": "initialtermperiodtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initialterm": {"name": "initialterm", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "integrationid__ns": {"name": "integrationid__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceownerid": {"name": "invoiceownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvoiceseparate": {"name": "isinvoiceseparate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ismigrationsubscription__c": {"name": "ismigrationsubscription__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "notes": {"name": "notes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunityname__qt": {"name": "opportunityname__qt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "originalcreateddate": {"name": "originalcreateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "originalid": {"name": "originalid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previoussubscriptionid": {"name": "previoussubscriptionid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "project__ns": {"name": "project__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quotebusinesstype__qt": {"name": "quotebusinesstype__qt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quotenumber__qt": {"name": "quotenumber__qt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quotetype__qt": {"name": "quotetype__qt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewalsetting": {"name": "renewalsetting", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewaltermperiodtype": {"name": "renewaltermperiodtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewalterm": {"name": "renewalterm", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sf_opportunityid__c": {"name": "sf_opportunityid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesorder__ns": {"name": "salesorder__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "serviceactivationdate": {"name": "serviceactivationdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionenddate": {"name": "subscriptionenddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstartdate": {"name": "subscriptionstartdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionversionamendmentid": {"name": "subscriptionversionamendmentid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "termenddate": {"name": "termenddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "termstartdate": {"name": "termstartdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "termtype": {"name": "termtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upsctpcode__c": {"name": "upsctpcode__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "originalrenewaldate__c": {"name": "originalrenewaldate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewalfromsubscription__c": {"name": "renewalfromsubscription__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includeinpastduefile__c": {"name": "includeinpastduefile__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment__c": {"name": "segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isstaggered__c": {"name": "isstaggered__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trialsubscription": {"name": "trialsubscription", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082640.948651, "relation_name": "dev_dkruh1.analytics___finance_stg__subscription", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__zuora', 'subscription') }}\n\n), finance_stg__subscription AS (\n\n SELECT \n\t\tactual_contract_duration__c,\n\t\tcsm_extension_months__c,\n\t\tend_of_contract_extension_month__c,\n\t\toriginal_contract_duration__c,\n\t\ttotal_price__c,\n\t\taccountid,\n\t\tautorenew,\n\t\tbilltocontactid,\n\t\tcancelleddate,\n\t\tcontractacceptancedate,\n\t\tcontracteffectivedate,\n\t\tcpqbundlejsonid__qt,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreatoraccountid,\n\t\tcreatorinvoiceownerid,\n\t\tcurrenttermperiodtype,\n\t\tcurrentterm,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tdowngraded__c,\n\t\texclude_from_dunning_until__c,\n\t\texcludefromdashboards__c,\n\t\tid,\n\t\tinitialtermperiodtype,\n\t\tinitialterm,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\tinvoiceownerid,\n\t\tisinvoiceseparate,\n\t\tismigrationsubscription__c,\n\t\tname,\n\t\tnotes,\n\t\topportunityname__qt,\n\t\toriginalcreateddate,\n\t\toriginalid,\n\t\tparentaccountid,\n\t\tprevioussubscriptionid,\n\t\tproject__ns,\n\t\tquotebusinesstype__qt,\n\t\tquotenumber__qt,\n\t\tquotetype__qt,\n\t\trenewalsetting,\n\t\trenewaltermperiodtype,\n\t\trenewalterm,\n\t\tsf_opportunityid__c,\n\t\tsalesorder__ns,\n\t\tserviceactivationdate,\n\t\tsoldtocontactid,\n\t\tstatus,\n\t\tsubscriptionenddate,\n\t\tsubscriptionstartdate,\n\t\tsubscriptionversionamendmentid,\n\t\tsyncdate__ns,\n\t\ttermenddate,\n\t\ttermstartdate,\n\t\ttermtype,\n\t\tupsctpcode__c,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tversion,\n\t\toriginalrenewaldate__c,\n\t\trenewalfromsubscription__c,\n\t\tincludeinpastduefile__c,\n\t\tsegment__c,\n\t\tisstaggered__c,\n\t\ttrialsubscription\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__subscription", "language": "sql", "refs": [], "sources": [["analytics__zuora", "subscription"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__zuora.subscription"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM zuora.subscription\n\n), finance_stg__subscription AS (\n\n SELECT \n\t\tactual_contract_duration__c,\n\t\tcsm_extension_months__c,\n\t\tend_of_contract_extension_month__c,\n\t\toriginal_contract_duration__c,\n\t\ttotal_price__c,\n\t\taccountid,\n\t\tautorenew,\n\t\tbilltocontactid,\n\t\tcancelleddate,\n\t\tcontractacceptancedate,\n\t\tcontracteffectivedate,\n\t\tcpqbundlejsonid__qt,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreatoraccountid,\n\t\tcreatorinvoiceownerid,\n\t\tcurrenttermperiodtype,\n\t\tcurrentterm,\n\t\tdefaultpaymentmethodid,\n\t\tdeleted,\n\t\tdowngraded__c,\n\t\texclude_from_dunning_until__c,\n\t\texcludefromdashboards__c,\n\t\tid,\n\t\tinitialtermperiodtype,\n\t\tinitialterm,\n\t\tintegrationid__ns,\n\t\tintegrationstatus__ns,\n\t\tinvoiceownerid,\n\t\tisinvoiceseparate,\n\t\tismigrationsubscription__c,\n\t\tname,\n\t\tnotes,\n\t\topportunityname__qt,\n\t\toriginalcreateddate,\n\t\toriginalid,\n\t\tparentaccountid,\n\t\tprevioussubscriptionid,\n\t\tproject__ns,\n\t\tquotebusinesstype__qt,\n\t\tquotenumber__qt,\n\t\tquotetype__qt,\n\t\trenewalsetting,\n\t\trenewaltermperiodtype,\n\t\trenewalterm,\n\t\tsf_opportunityid__c,\n\t\tsalesorder__ns,\n\t\tserviceactivationdate,\n\t\tsoldtocontactid,\n\t\tstatus,\n\t\tsubscriptionenddate,\n\t\tsubscriptionstartdate,\n\t\tsubscriptionversionamendmentid,\n\t\tsyncdate__ns,\n\t\ttermenddate,\n\t\ttermstartdate,\n\t\ttermtype,\n\t\tupsctpcode__c,\n\t\tupdatedbyid,\n\t\tupdateddate,\n\t\tversion,\n\t\toriginalrenewaldate__c,\n\t\trenewalfromsubscription__c,\n\t\tincludeinpastduefile__c,\n\t\tsegment__c,\n\t\tisstaggered__c,\n\t\ttrialsubscription\n FROM source\n\n)\n\nSELECT * \nFROM finance_stg__subscription", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__shopify_billing_event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__shopify_billing_event", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.sql", "unique_id": "model.yoda.analytics___finance_stg__shopify_billing_event", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__shopify_billing_event", "analytics___finance_stg__shopify_billing_event"], "alias": "analytics___finance_stg__shopify_billing_event", "checksum": {"name": "sha256", "checksum": "63d36dbbc293285e0b276287e44225267260b15e4b18604bcca69a63935254be"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled View over shopify_billing_events", "columns": {"shop_id": {"name": "shop_id", "description": "shopify generated shop_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_name": {"name": "shop_name", "description": "shop name in shopify. multiple name per shop_id since shop owner can change shop name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_domain": {"name": "shopify_domain", "description": "shop domain in shopify. multiple domains per shop_id since shop owner can change shop domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "internal id for product family", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_family": {"name": "product_family", "description": "comtains: UGC,SMS,Loyalty,Subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_id": {"name": "charge_id", "description": "shopify generated charge_id similar to zuora subscription_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charge_name": {"name": "charge_name", "description": "shopify charge name (DO NOT RELY for plan name)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_type": {"name": "event_type", "description": "category + action", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_category": {"name": "event_category", "description": "USAGE_CHARGE|SUBSCRIPTION_CHARGE|ONE_TIME_CHARGE|RELATIONSHIP|CREDIT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_action": {"name": "event_action", "description": "action of the event category (i.e DECLINED, ACTIVATED, UNFROZEN, ACCEPTED)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "amount = revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "is_active_unfrozen": {"name": "is_active_unfrozen", "description": "event_action LIKE '%ACTIVATED%' OR event_action LIKE '%UNFROZEN%'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_cancel_frozen": {"name": "is_cancel_frozen", "description": "event_action LIKE '%CANCELED%' OR event_action LIKE '%FROZEN%'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscription_charge": {"name": "is_subscription_charge", "description": "indicator = 1 when event_category = 'SUBSCRIPTION_CHARGE'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_usage": {"name": "is_usage", "description": "indicator = 1 when event_category = 'USAGE_CHARGE'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "indicatore = 1 if app_id = 4818605 (product_family = Subscriptions)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc": {"name": "is_ugc", "description": "indicatore = 1 if app_id = 70132 (product can be Reviews or VMS or both)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "indicatore = 1 if app_id = 740217 (product_family can be SMS or Email or both)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "indicatore = 1 if app_id = 902876 (product_family = Loyalty)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "event created at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "event created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "finance"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082640.9845684, "relation_name": "dev_dkruh1.analytics___finance_stg__shopify_billing_event", "raw_code": "-- Import --\n\nWITH import_shopify_billing_event AS (\nSELECT * FROM {{ ref('analytics___finance_stg__shopify_billing_events') }}\n), \n\n-- Logic --\n\nshopify_app_mapping AS (\nSELECT\n app_id,\n product_family\nFROM (VALUES\n (70132, 'UGC'),\n (740217, 'SMS'),\n (902876, 'Loyalty'),\n (4818605, 'Subscriptions')) \n AS (app_id, product_family)\n),\n\nshopify_billing_events_modeled AS (\nSELECT\n event.shopid AS shop_id,\n TRIM(event.shopname) AS shop_name,\n event.shopifydomain AS shopify_domain,\n event.appid AS app_id,\n app.product_family,\n event.chargeid AS charge_id,\n event.chargename AS charge_name,\n event.eventtype AS event_type,\n REPLACE(event.eventtype,'_' || SUBSTRING_INDEX(event.eventtype, '_',-1),'') AS event_category,\n SUBSTRING_INDEX(event.eventtype, '_',-1) AS event_action,\n TIMESTAMP(event.occurredat) AS created_at,\n DATE(event.occurredat) AS created_date,\n FLOAT(event.amount) AS amount\nFROM import_shopify_billing_event AS event\nINNER JOIN shopify_app_mapping AS app\nON event.appid = app.app_id\n),\n\nshopify_billing_event_res AS (\nSELECT\n shop_id,\n shop_name,\n shopify_domain,\n app_id,\n product_family,\n charge_id,\n charge_name,\n event_type,\n event_category,\n event_action,\n amount,\n SMALLINT(IF(event_action = 'ACTIVATED' OR event_action = 'UNFROZEN',1,0)) AS is_active_unfrozen,\n SMALLINT(IF(event_action = 'CANCELED' OR event_action = 'FROZEN',1,0)) AS is_cancel_frozen,\n SMALLINT(IF(event_category = 'SUBSCRIPTION_CHARGE',1,0)) AS is_subscription_charge,\n SMALLINT(IF(event_category = 'USAGE_CHARGE',1,0)) AS is_usage,\n SMALLINT(IF(product_family = 'Subscriptions',1,0)) AS is_subscriptions,\n SMALLINT(IF(product_family = 'UGC',1,0)) AS is_ugc,\n SMALLINT(IF(product_family = 'SMS',1,0)) AS is_sms,\n SMALLINT(IF(product_family = 'Loyalty',1,0)) AS is_loyalty,\n created_at,\n created_date\nFROM shopify_billing_events_modeled\n)\n\nSELECT * \nFROM shopify_billing_event_res", "language": "sql", "refs": [{"name": "analytics___finance_stg__shopify_billing_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__shopify_billing_events"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_shopify_billing_event AS (\nSELECT * FROM dev_dkruh1.analytics___finance_stg__shopify_billing_events\n), \n\n-- Logic --\n\nshopify_app_mapping AS (\nSELECT\n app_id,\n product_family\nFROM (VALUES\n (70132, 'UGC'),\n (740217, 'SMS'),\n (902876, 'Loyalty'),\n (4818605, 'Subscriptions')) \n AS (app_id, product_family)\n),\n\nshopify_billing_events_modeled AS (\nSELECT\n event.shopid AS shop_id,\n TRIM(event.shopname) AS shop_name,\n event.shopifydomain AS shopify_domain,\n event.appid AS app_id,\n app.product_family,\n event.chargeid AS charge_id,\n event.chargename AS charge_name,\n event.eventtype AS event_type,\n REPLACE(event.eventtype,'_' || SUBSTRING_INDEX(event.eventtype, '_',-1),'') AS event_category,\n SUBSTRING_INDEX(event.eventtype, '_',-1) AS event_action,\n TIMESTAMP(event.occurredat) AS created_at,\n DATE(event.occurredat) AS created_date,\n FLOAT(event.amount) AS amount\nFROM import_shopify_billing_event AS event\nINNER JOIN shopify_app_mapping AS app\nON event.appid = app.app_id\n),\n\nshopify_billing_event_res AS (\nSELECT\n shop_id,\n shop_name,\n shopify_domain,\n app_id,\n product_family,\n charge_id,\n charge_name,\n event_type,\n event_category,\n event_action,\n amount,\n SMALLINT(IF(event_action = 'ACTIVATED' OR event_action = 'UNFROZEN',1,0)) AS is_active_unfrozen,\n SMALLINT(IF(event_action = 'CANCELED' OR event_action = 'FROZEN',1,0)) AS is_cancel_frozen,\n SMALLINT(IF(event_category = 'SUBSCRIPTION_CHARGE',1,0)) AS is_subscription_charge,\n SMALLINT(IF(event_category = 'USAGE_CHARGE',1,0)) AS is_usage,\n SMALLINT(IF(product_family = 'Subscriptions',1,0)) AS is_subscriptions,\n SMALLINT(IF(product_family = 'UGC',1,0)) AS is_ugc,\n SMALLINT(IF(product_family = 'SMS',1,0)) AS is_sms,\n SMALLINT(IF(product_family = 'Loyalty',1,0)) AS is_loyalty,\n created_at,\n created_date\nFROM shopify_billing_events_modeled\n)\n\nSELECT * \nFROM shopify_billing_event_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_account": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_account", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_account", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_account", "analytics___finance_stg__zuora_account"], "alias": "analytics___finance_stg__zuora_account", "checksum": {"name": "sha256", "checksum": "95a6928b6b66823bb50fd35daa71d98c71054dc0a6071f62d27a1757d86a4587"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora account object", "columns": {"account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_number": {"name": "account_number", "description": "Organization_key + addition", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_id": {"name": "sf_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_organization_key": {"name": "parent_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "child_organization_key": {"name": "child_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_status": {"name": "account_status", "description": "Status: Active, Canceled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_currency": {"name": "account_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_to_contact_id": {"name": "bill_to_contact_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_legal_entity": {"name": "yotpo_legal_entity", "description": "Which Yotpo Legal entity is responsible for this account \n( Yotpo Inc. || Yotpo LTD. || Yotpo UK.)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_terms": {"name": "payment_terms", "description": "payment term (Net 30/45/60/etc.)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_payment_method_id": {"name": "default_payment_method_id", "description": "Default payment method ID (connects to zuora_payment_method)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "communication_profile_id": {"name": "communication_profile_id", "description": "Account's communication Profile (VIP/Self-Service/ Regular)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_segment": {"name": "account_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_test_account": {"name": "is_test_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_parent_account": {"name": "is_parent_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.069805, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_account", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH import_zuora_account AS (\n\n SELECT * \n FROM {{ ref('analytics___finance_stg__account') }}\n\n), parent_account_calc AS (\n \n SELECT DISTINCT \n parentaccount__c AS parent_org_key\n FROM import_zuora_account\n WHERE LOWER(testaccount__c) <> \"yes\" \n AND NULLIF(ParentAccount__c, '') IS NOT NULL\n\n),\n\nzuora_account AS (\n\n SELECT\n TRIM(id) AS account_id,\n TRIM(name) AS account_name,\n TRIM(organisationkey__c) AS organization_key,\n TRIM(accountnumber) AS account_number,\n NULLIF(sf_accountid__c,'') AS sf_account_id,\n NULLIF(parentaccount__c,'') AS parent_organization_key,\n CASE WHEN (NULLIF(parentaccount__c,'') IS NOT NULL AND parentaccount__c <> organisationkey__c) THEN organisationkey__c ELSE NULL END AS child_organization_key,\n status AS account_status,\n currency AS account_currency,\n NULLIF(billtocontactid,'') AS bill_to_contact_id,\n legalentity__c AS yotpo_legal_entity,\n paymentterm AS payment_terms,\n defaultpaymentmethodid AS default_payment_method_id,\n NULLIF(communicationprofileid,'') AS communication_profile_id,\n NULLIF(segment__c,'') AS account_segment,\n SMALLINT(deleted) AS is_deleted,\n CASE WHEN LOWER(testaccount__c) = 'yes' THEN 1 ELSE 0 END AS is_test_account,\n CASE WHEN parent_account_calc.parent_org_key IS NOT NULL THEN 1 ELSE 0 END AS is_parent_account,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_zuora_account AS zuora_account\n LEFT JOIN parent_account_calc\n ON zuora_account.organisationkey__c = parent_account_calc.parent_org_key\n)\n\nSELECT\n account_id,\n account_name,\n organization_key,\n account_number,\n sf_account_id,\n parent_organization_key,\n child_organization_key,\n account_status,\n account_currency,\n bill_to_contact_id,\n yotpo_legal_entity,\n payment_terms,\n default_payment_method_id,\n communication_profile_id,\n account_segment,\n is_deleted,\n is_test_account,\n is_parent_account,\n created_at,\n updated_at,\n dwh_updated_at\nFROM zuora_account", "language": "sql", "refs": [{"name": "analytics___finance_stg__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH import_zuora_account AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___finance_stg__account\n\n), parent_account_calc AS (\n \n SELECT DISTINCT \n parentaccount__c AS parent_org_key\n FROM import_zuora_account\n WHERE LOWER(testaccount__c) <> \"yes\" \n AND NULLIF(ParentAccount__c, '') IS NOT NULL\n\n),\n\nzuora_account AS (\n\n SELECT\n TRIM(id) AS account_id,\n TRIM(name) AS account_name,\n TRIM(organisationkey__c) AS organization_key,\n TRIM(accountnumber) AS account_number,\n NULLIF(sf_accountid__c,'') AS sf_account_id,\n NULLIF(parentaccount__c,'') AS parent_organization_key,\n CASE WHEN (NULLIF(parentaccount__c,'') IS NOT NULL AND parentaccount__c <> organisationkey__c) THEN organisationkey__c ELSE NULL END AS child_organization_key,\n status AS account_status,\n currency AS account_currency,\n NULLIF(billtocontactid,'') AS bill_to_contact_id,\n legalentity__c AS yotpo_legal_entity,\n paymentterm AS payment_terms,\n defaultpaymentmethodid AS default_payment_method_id,\n NULLIF(communicationprofileid,'') AS communication_profile_id,\n NULLIF(segment__c,'') AS account_segment,\n SMALLINT(deleted) AS is_deleted,\n CASE WHEN LOWER(testaccount__c) = 'yes' THEN 1 ELSE 0 END AS is_test_account,\n CASE WHEN parent_account_calc.parent_org_key IS NOT NULL THEN 1 ELSE 0 END AS is_parent_account,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_zuora_account AS zuora_account\n LEFT JOIN parent_account_calc\n ON zuora_account.organisationkey__c = parent_account_calc.parent_org_key\n)\n\nSELECT\n account_id,\n account_name,\n organization_key,\n account_number,\n sf_account_id,\n parent_organization_key,\n child_organization_key,\n account_status,\n account_currency,\n bill_to_contact_id,\n yotpo_legal_entity,\n payment_terms,\n default_payment_method_id,\n communication_profile_id,\n account_segment,\n is_deleted,\n is_test_account,\n is_parent_account,\n created_at,\n updated_at,\n dwh_updated_at\nFROM zuora_account", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_contact": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_contact", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_contact", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_contact", "analytics___finance_stg__zuora_contact"], "alias": "analytics___finance_stg__zuora_contact", "checksum": {"name": "sha256", "checksum": "be29a24ffc7bf0f17dfce9aeed85c7cc8896b6a7dd1dbc60902c4d7845121f42"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora invoice object.\nPK: contact_id", "columns": {"contact_id": {"name": "contact_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_name": {"name": "first_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "work_email": {"name": "work_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "personal_email": {"name": "personal_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "city": {"name": "city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "postal_code": {"name": "postal_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tax_region": {"name": "tax_region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address1": {"name": "address1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address2": {"name": "address2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "work_phone_number": {"name": "work_phone_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_by_id": {"name": "updated_by_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_id": {"name": "created_by_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.1305518, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_contact", "raw_code": "-- Import --\n\nWITH import_zuora_contact AS (\nSELECT * FROM {{ ref('analytics___finance_stg__contact') }}\n), \n\n-- Model --\n\nzuora_contact_modeled AS (\nSELECT\n id AS contact_id,\n NULLIF(accountid,'') AS account_id,\n NULLIF(firstname,'') AS first_name,\n NULLIF(lastname,'') AS last_name,\n NULLIF(workemail,'') AS work_email,\n NULLIF(personalemail,'') AS personal_email,\n NULLIF(city,'') AS city,\n NULLIF(country,'') AS country,\n NULLIF(postalcode,'') AS postal_code,\n NULLIF(state,'') AS state,\n NULLIF(taxregion,'') AS tax_region,\n NULLIF(address1,'') AS address1,\n NULLIF(address2,'') AS address2,\n workphone AS work_phone_number,\n updatedbyid AS updated_by_id,\n createdbyid AS created_by_id,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n SMALLINT(deleted) as is_deleted\nFROM import_zuora_contact\n)\n\nSELECT * \nFROM zuora_contact_modeled", "language": "sql", "refs": [{"name": "analytics___finance_stg__contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__contact"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_zuora_contact AS (\nSELECT * FROM dev_dkruh1.analytics___finance_stg__contact\n), \n\n-- Model --\n\nzuora_contact_modeled AS (\nSELECT\n id AS contact_id,\n NULLIF(accountid,'') AS account_id,\n NULLIF(firstname,'') AS first_name,\n NULLIF(lastname,'') AS last_name,\n NULLIF(workemail,'') AS work_email,\n NULLIF(personalemail,'') AS personal_email,\n NULLIF(city,'') AS city,\n NULLIF(country,'') AS country,\n NULLIF(postalcode,'') AS postal_code,\n NULLIF(state,'') AS state,\n NULLIF(taxregion,'') AS tax_region,\n NULLIF(address1,'') AS address1,\n NULLIF(address2,'') AS address2,\n workphone AS work_phone_number,\n updatedbyid AS updated_by_id,\n createdbyid AS created_by_id,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n SMALLINT(deleted) as is_deleted\nFROM import_zuora_contact\n)\n\nSELECT * \nFROM zuora_contact_modeled", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_invoice": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_invoice", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_invoice", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_invoice", "analytics___finance_stg__zuora_invoice"], "alias": "analytics___finance_stg__zuora_invoice", "checksum": {"name": "sha256", "checksum": "194eb4bd01b48a2e0e3582ba745c7d44065ed3addd80cd1f617d1c6b3d4bde27"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora invoice object", "columns": {"invoice_id": {"name": "invoice_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoice_number": {"name": "invoice_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "Internal zuora account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "payment_amount": {"name": "payment_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "balance": {"name": "balance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "status": {"name": "status", "description": "Invoice status (Canceled,Draft,Posted)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "due_date": {"name": "due_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "posted_date": {"name": "posted_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "invoice_date": {"name": "invoice_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "posted_at": {"name": "posted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "invoice_month": {"name": "invoice_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reversed": {"name": "is_reversed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_zero_balance": {"name": "is_zero_balance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_status_posted": {"name": "is_status_posted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.1742547, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_invoice", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__invoice') }}\n\n), finance_stg__zuora_invoice AS (\n\n SELECT \n id AS invoice_id,\n invoicenumber AS invoice_number,\n NULLIF(accountid, '') AS account_id,\n FLOAT(amount) AS amount,\n FLOAT(paymentamount) AS payment_amount,\n FLOAT(balance) AS balance,\n status,\n DATE(duedate) AS due_date,\n DATE(posteddate) AS posted_date,\n DATE(invoicedate) AS invoice_date,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n TIMESTAMP(posteddate) AS posted_at,\n TRUNC(DATE(invoicedate),'MM') AS invoice_month,\n SMALLINT(deleted) AS is_deleted,\n SMALLINT(reversed) AS is_reversed,\n SMALLINT(IF(balance = 0,1,0)) AS is_zero_balance,\n SMALLINT(IF(LOWER(status) = 'posted',1,0)) AS is_status_posted\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_invoice", "language": "sql", "refs": [{"name": "analytics___finance_stg__invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__invoice\n\n), finance_stg__zuora_invoice AS (\n\n SELECT \n id AS invoice_id,\n invoicenumber AS invoice_number,\n NULLIF(accountid, '') AS account_id,\n FLOAT(amount) AS amount,\n FLOAT(paymentamount) AS payment_amount,\n FLOAT(balance) AS balance,\n status,\n DATE(duedate) AS due_date,\n DATE(posteddate) AS posted_date,\n DATE(invoicedate) AS invoice_date,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n TIMESTAMP(posteddate) AS posted_at,\n TRUNC(DATE(invoicedate),'MM') AS invoice_month,\n SMALLINT(deleted) AS is_deleted,\n SMALLINT(reversed) AS is_reversed,\n SMALLINT(IF(balance = 0,1,0)) AS is_zero_balance,\n SMALLINT(IF(LOWER(status) = 'posted',1,0)) AS is_status_posted\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_invoice", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_invoice_item": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_invoice_item", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_invoice_item", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_invoice_item", "analytics___finance_stg__zuora_invoice_item"], "alias": "analytics___finance_stg__zuora_invoice_item", "checksum": {"name": "sha256", "checksum": "a666dcccc015dc1e2504264f8f1a5d6ac0b955997c11a7a192eb65522d911677"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled View of zuora invoice_item object.\nPK: invoice_item_id", "columns": {"invoice_item_id": {"name": "invoice_item_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoice_id": {"name": "invoice_id", "description": "FK: analytics___finance_stg__zuora_invoice", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "FK: analytics___finance__zuora_product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplan_charge_id": {"name": "rateplan_charge_id", "description": "FK: analytics___finance__zuora_rateplan_charge", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_id": {"name": "subscription_id", "description": "FK: analytics___finance__zuora_subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "FK: analytics___finance_zuora_account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_name": {"name": "charge_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_amount": {"name": "charge_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "charge_at": {"name": "charge_at", "description": "charge timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_by_id": {"name": "created_by_id", "description": "invoice_item created by id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "invoice_item created timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.229527, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_invoice_item", "raw_code": "WITH import_invoice_item AS (\nSELECT * FROM {{ ref('analytics___finance_stg__invoiceitem') }}\n), \n\nzuora_invoice_item_res AS (\nSELECT \n id AS invoice_item_id,\n NULLIF(invoiceid,'') AS invoice_id,\n NULLIF(productid,'') AS product_id,\n NULLIF(rateplanchargeid,'') AS rateplan_charge_id,\n NULLIF(subscriptionid,'') AS subscription_id,\n NULLIF(accountid, '') AS account_id,\n NULLIF(chargename,'') AS charge_name,\n NULLIF(chargeamount,'') AS charge_amount,\n TIMESTAMP(NULLIF(chargedate,'')) AS charge_at,\n NULLIF(createdbyid,'') AS created_by_id,\n TIMESTAMP(NULLIF(createddate,'')) AS created_at,\n SMALLINT(deleted) AS is_deleted\nFROM import_invoice_item\n)\n \nSELECT * \nFROM zuora_invoice_item_res", "language": "sql", "refs": [{"name": "analytics___finance_stg__invoiceitem", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__invoiceitem"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.sql", "compiled": true, "compiled_code": "WITH import_invoice_item AS (\nSELECT * FROM dev_dkruh1.analytics___finance_stg__invoiceitem\n), \n\nzuora_invoice_item_res AS (\nSELECT \n id AS invoice_item_id,\n NULLIF(invoiceid,'') AS invoice_id,\n NULLIF(productid,'') AS product_id,\n NULLIF(rateplanchargeid,'') AS rateplan_charge_id,\n NULLIF(subscriptionid,'') AS subscription_id,\n NULLIF(accountid, '') AS account_id,\n NULLIF(chargename,'') AS charge_name,\n NULLIF(chargeamount,'') AS charge_amount,\n TIMESTAMP(NULLIF(chargedate,'')) AS charge_at,\n NULLIF(createdbyid,'') AS created_by_id,\n TIMESTAMP(NULLIF(createddate,'')) AS created_at,\n SMALLINT(deleted) AS is_deleted\nFROM import_invoice_item\n)\n \nSELECT * \nFROM zuora_invoice_item_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_order": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_order", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_order", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_order", "analytics___finance_stg__zuora_order"], "alias": "analytics___finance_stg__zuora_order", "checksum": {"name": "sha256", "checksum": "952b80e5035c9819b140458275c8ddfe0efd47ef301bf48f559d4f150305afa5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora order object", "columns": {"order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "Internal zuora account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "The date the order is scheduled to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.2719123, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_order", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__order') }}\n\n), finance_stg__zuora_order AS (\n\n SELECT \n id AS order_id,\n NULLIF(accountid, '') AS account_id,\n DATE(orderdate) AS order_date,\n TIMESTAMP(createddate) AS created_at,\n SMALLINT(deleted) AS is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_order", "language": "sql", "refs": [{"name": "analytics___finance_stg__order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__order"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__order\n\n), finance_stg__zuora_order AS (\n\n SELECT \n id AS order_id,\n NULLIF(accountid, '') AS account_id,\n DATE(orderdate) AS order_date,\n TIMESTAMP(createddate) AS created_at,\n SMALLINT(deleted) AS is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_order", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_order_action": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_order_action", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_order_action", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_order_action", "analytics___finance_stg__zuora_order_action"], "alias": "analytics___finance_stg__zuora_order_action", "checksum": {"name": "sha256", "checksum": "93b23e316c65adbaf914dd3898301cd15e59690c17226e2f9a34f2e142b4bd45"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora order action object", "columns": {"order_action_id": {"name": "order_action_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "Internal zuora account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_id": {"name": "subscription_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_action_type": {"name": "order_action_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.2993748, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_order_action", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__orderaction') }}\n\n), finance_stg__order_action AS (\n\n SELECT \t\t\n id AS order_action_id,\n \tNULLIF(orderid, '') AS order_id,\n \tNULLIF(accountid, '') AS account_id,\n \tNULLIF(subscriptionid, '') AS subscription_id,\n \ttype AS order_action_type,\n \tSMALLINT(deleted) AS is_deleted,\n\t\tTIMESTAMP(updateddate) AS updated_at,\n \tTIMESTAMP(createddate) AS created_at,\n \tCURRENT_TIMESTAMP() AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__order_action", "language": "sql", "refs": [{"name": "analytics___finance_stg__orderaction", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__orderaction"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__orderaction\n\n), finance_stg__order_action AS (\n\n SELECT \t\t\n id AS order_action_id,\n \tNULLIF(orderid, '') AS order_id,\n \tNULLIF(accountid, '') AS account_id,\n \tNULLIF(subscriptionid, '') AS subscription_id,\n \ttype AS order_action_type,\n \tSMALLINT(deleted) AS is_deleted,\n\t\tTIMESTAMP(updateddate) AS updated_at,\n \tTIMESTAMP(createddate) AS created_at,\n \tCURRENT_TIMESTAMP() AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__order_action", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_order_mrr": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_order_mrr", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_order_mrr", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_order_mrr", "analytics___finance_stg__zuora_order_mrr"], "alias": "analytics___finance_stg__zuora_order_mrr", "checksum": {"name": "sha256", "checksum": "19b64fc6212b66bd77dcc23e66c3f0d66746b26ed213eada719d256468ffc460"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora order mrr object", "columns": {"order_mrr_id": {"name": "order_mrr_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_action_id": {"name": "order_action_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "Internal zuora account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_id": {"name": "subscription_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rate_plan_id": {"name": "rate_plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "Internal zuora product_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rate_plan_id": {"name": "product_rate_plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_mrr_type": {"name": "order_mrr_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_mrr_value": {"name": "order_mrr_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "start_date": {"name": "start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "end_date": {"name": "end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.3362281, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_order_mrr", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__ordermrr') }}\n\n), finance_stg__zuora_order_mrr AS (\n\n SELECT \n id AS order_mrr_id,\n NULLIF(orderid,'') AS order_id,\n NULLIF(orderactionid,'') AS order_action_id,\n NULLIF(accountid,'') AS account_id,\n NULLIF(subscriptionid, '') AS subscription_id,\n NULLIF(rateplanid,'') AS rate_plan_id,\n NULLIF(productid,'') AS product_id,\n NULLIF(productrateplanid, '') AS product_rate_plan_id,\n type AS order_mrr_type,\n value AS order_mrr_value,\n \tSMALLINT(deleted) AS is_deleted,\n DATE(startdate) AS start_date,\n DATE(enddate) AS end_date,\n TIMESTAMP(updateddate) AS updated_at,\n TIMESTAMP(createddate) AS created_at,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_order_mrr", "language": "sql", "refs": [{"name": "analytics___finance_stg__ordermrr", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__ordermrr"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__ordermrr\n\n), finance_stg__zuora_order_mrr AS (\n\n SELECT \n id AS order_mrr_id,\n NULLIF(orderid,'') AS order_id,\n NULLIF(orderactionid,'') AS order_action_id,\n NULLIF(accountid,'') AS account_id,\n NULLIF(subscriptionid, '') AS subscription_id,\n NULLIF(rateplanid,'') AS rate_plan_id,\n NULLIF(productid,'') AS product_id,\n NULLIF(productrateplanid, '') AS product_rate_plan_id,\n type AS order_mrr_type,\n value AS order_mrr_value,\n \tSMALLINT(deleted) AS is_deleted,\n DATE(startdate) AS start_date,\n DATE(enddate) AS end_date,\n TIMESTAMP(updateddate) AS updated_at,\n TIMESTAMP(createddate) AS created_at,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_order_mrr", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_product": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_product", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_product", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_product", "analytics___finance_stg__zuora_product"], "alias": "analytics___finance_stg__zuora_product", "checksum": {"name": "sha256", "checksum": "79c9e7333c7134de6364dbb1c51750b7ea587458f7f53e93ed1e3e52e5210d5e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora product object", "columns": {"product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisioned_package_name": {"name": "provisioned_package_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "product family with 'Loyalty' instead of 'Loyalty & referals'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_original_name": {"name": "product_family_original_name", "description": "product family shown in zuora", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_category": {"name": "product_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_provision_required": {"name": "is_provision_required", "description": "is core plan indicator (TO BE DEPRECATED)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_core_plan": {"name": "is_core_plan", "description": "core plan indicator is usually used in full service accounts where a subscription includes one main plan per product (core plan) + extensions (ie. syndication, extra seats,insights).\nfor extensions indicator = 0.\nfield is populated by the creator of the plan in zuora.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.3670871, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_product", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__product') }}\n\n), finance_stg__zuora_product AS (\n\n SELECT\n id AS product_id,\n name AS product_name,\n sku,\n TRIM(provisioned_package__c) AS provisioned_package_name,\n IF(LOWER(NULLIF(productfamily__c,'')) LIKE '%loyalty%','Loyalty',NULLIF(productfamily__c,'')) AS product_family,\n NULLIF(productfamily__c,'') AS product_family_original_name,\n NULLIF(category,'') AS product_category,\n SMALLINT(deleted) AS is_deleted,\n SMALLINT(IF(LOWER(provisionrequired__c) = 'yes',1,0)) AS is_provision_required,\n SMALLINT(IF(LOWER(corepackage__c) = 'yes',1,0)) AS is_core_plan,\n TIMESTAMP(updateddate) AS updated_at,\n TIMESTAMP(createddate) AS created_at,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_product", "language": "sql", "refs": [{"name": "analytics___finance_stg__product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__product"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__product\n\n), finance_stg__zuora_product AS (\n\n SELECT\n id AS product_id,\n name AS product_name,\n sku,\n TRIM(provisioned_package__c) AS provisioned_package_name,\n IF(LOWER(NULLIF(productfamily__c,'')) LIKE '%loyalty%','Loyalty',NULLIF(productfamily__c,'')) AS product_family,\n NULLIF(productfamily__c,'') AS product_family_original_name,\n NULLIF(category,'') AS product_category,\n SMALLINT(deleted) AS is_deleted,\n SMALLINT(IF(LOWER(provisionrequired__c) = 'yes',1,0)) AS is_provision_required,\n SMALLINT(IF(LOWER(corepackage__c) = 'yes',1,0)) AS is_core_plan,\n TIMESTAMP(updateddate) AS updated_at,\n TIMESTAMP(createddate) AS created_at,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_product", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_product_rateplan": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_product_rateplan", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_product_rateplan", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_product_rateplan", "analytics___finance_stg__zuora_product_rateplan"], "alias": "analytics___finance_stg__zuora_product_rateplan", "checksum": {"name": "sha256", "checksum": "c774cc28cf491e95a1e3df85289dffc62ce36a5ce4e0c029b30359fe457a1a3c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora product rate plan object\nPK: zuora_product_rateplan_id", "columns": {"product_rateplan_id": {"name": "product_rateplan_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rateplan_name": {"name": "product_rateplan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "FK: connects to zuora_product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082641.3937664, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_product_rateplan", "raw_code": "WITH import_product_rate_plan AS (\n\n SELECT * \n FROM {{ ref('analytics___finance_stg__productrateplan') }}\n\n), zuora_product_rateplan AS (\n\n SELECT\n id AS product_rateplan_id,\n name AS product_rateplan_name,\n productid AS product_id,\n SMALLINT(deleted) AS is_deleted,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at\n FROM import_product_rate_plan\n\n)\n\nSELECT * \nFROM zuora_product_rateplan", "language": "sql", "refs": [{"name": "analytics___finance_stg__productrateplan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__productrateplan"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.sql", "compiled": true, "compiled_code": "WITH import_product_rate_plan AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___finance_stg__productrateplan\n\n), zuora_product_rateplan AS (\n\n SELECT\n id AS product_rateplan_id,\n name AS product_rateplan_name,\n productid AS product_id,\n SMALLINT(deleted) AS is_deleted,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at\n FROM import_product_rate_plan\n\n)\n\nSELECT * \nFROM zuora_product_rateplan", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_product_rateplan_charge", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_product_rateplan_charge", "analytics___finance_stg__zuora_product_rateplan_charge"], "alias": "analytics___finance_stg__zuora_product_rateplan_charge", "checksum": {"name": "sha256", "checksum": "62a66c9eedba8f537a8d9ec83f7cd67dd874e187a0908b9065442ace2aa19b6c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora product rateplan charge object.\nPK: rateplan_charge_id", "columns": {"product_rateplan_charge_id": {"name": "product_rateplan_charge_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_name": {"name": "charge_name", "description": "product rateplan charge name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "FK: zuora_product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rateplan_id": {"name": "product_rateplan_id", "description": "FK: zuora_product_rateplan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_period": {"name": "billing_period", "description": "Annual|Eighteen Months|Month|null|Semi-Annual|Quarter", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_model": {"name": "charge_model", "description": "Overage Pricing|Per Unit Pricing|Discount-Percentage|Flat Fee Pricing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_type": {"name": "charge_type", "description": "OneTime|Usage|Recurring", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "list_price_base": {"name": "list_price_base", "description": "Per Billing Period|Per Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_period": {"name": "number_of_period", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.4323757, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_product_rateplan_charge", "raw_code": "WITH import_product_rateplan_charge AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__productrateplancharge') }}\n\n), \nzuora_product_rateplan_charge AS (\n\n SELECT\n \t\tid AS product_rateplan_charge_id,\n name AS charge_name,\n NULLIF(productid,'') AS product_id,\n NULLIF(productrateplanid,'') AS product_rateplan_id,\n\t\tNULLIF(billingperiod,'') AS billing_period,\n\t\tNULLIF(chargemodel,'') AS charge_model,\n\t\tNULLIF(chargetype,'') AS charge_type,\n NULLIF(listpricebase,'') AS list_price_base,\n NULLIF(numberofperiod,'') AS number_of_period,\n\t\tNULLIF(description,'') AS description,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n\t\tSMALLINT(deleted) AS is_deleted \n FROM import_product_rateplan_charge\n\n)\n\nSELECT * \nFROM zuora_product_rateplan_charge", "language": "sql", "refs": [{"name": "analytics___finance_stg__productrateplancharge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__productrateplancharge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.sql", "compiled": true, "compiled_code": "WITH import_product_rateplan_charge AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__productrateplancharge\n\n), \nzuora_product_rateplan_charge AS (\n\n SELECT\n \t\tid AS product_rateplan_charge_id,\n name AS charge_name,\n NULLIF(productid,'') AS product_id,\n NULLIF(productrateplanid,'') AS product_rateplan_id,\n\t\tNULLIF(billingperiod,'') AS billing_period,\n\t\tNULLIF(chargemodel,'') AS charge_model,\n\t\tNULLIF(chargetype,'') AS charge_type,\n NULLIF(listpricebase,'') AS list_price_base,\n NULLIF(numberofperiod,'') AS number_of_period,\n\t\tNULLIF(description,'') AS description,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n\t\tSMALLINT(deleted) AS is_deleted \n FROM import_product_rateplan_charge\n\n)\n\nSELECT * \nFROM zuora_product_rateplan_charge", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_rateplan": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_rateplan", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_rateplan", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan", "analytics___finance_stg__zuora_rateplan"], "alias": "analytics___finance_stg__zuora_rateplan", "checksum": {"name": "sha256", "checksum": "fc28f75829d87b40afcd36f159336c265d5e5ac37b5651daa40c9aead15e86ac"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora rateplan object", "columns": {"rateplan_id": {"name": "rateplan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplan_name": {"name": "rateplan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_id": {"name": "subscription_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rateplan_id": {"name": "product_rateplan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_account_id": {"name": "parent_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price_usd": {"name": "total_price_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "amendment_type": {"name": "amendment_type", "description": "amendment type: (NewProduct,UpdateProduct,RemoveProduct)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.4701624, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_rateplan", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__rateplan') }}\n\n), finance_stg__zuora_rateplan AS (\n\n SELECT\n id AS rateplan_id,\n name AS rateplan_name,\n productid AS product_id,\n NULLIF(accountid,'') AS account_id,\n NULLIF(subscriptionid, '') AS subscription_id,\n productrateplanid AS product_rateplan_id,\n NULLIF(parentaccountid, '') AS parent_account_id,\n FLOAT(COALESCE(NULLIF(total_price__c,''), 0)) AS total_price_usd,\n NULLIF(amendmenttype, '') AS amendment_type,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n SMALLINT(deleted) AS is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_rateplan", "language": "sql", "refs": [{"name": "analytics___finance_stg__rateplan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__rateplan"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__rateplan\n\n), finance_stg__zuora_rateplan AS (\n\n SELECT\n id AS rateplan_id,\n name AS rateplan_name,\n productid AS product_id,\n NULLIF(accountid,'') AS account_id,\n NULLIF(subscriptionid, '') AS subscription_id,\n productrateplanid AS product_rateplan_id,\n NULLIF(parentaccountid, '') AS parent_account_id,\n FLOAT(COALESCE(NULLIF(total_price__c,''), 0)) AS total_price_usd,\n NULLIF(amendmenttype, '') AS amendment_type,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n SMALLINT(deleted) AS is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_rateplan", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_rateplan_charge": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_rateplan_charge", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_rateplan_charge", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan_charge", "analytics___finance_stg__zuora_rateplan_charge"], "alias": "analytics___finance_stg__zuora_rateplan_charge", "checksum": {"name": "sha256", "checksum": "791be73a5158079b555c338330cbd2210e7b23165b3825101aaedcd6d3ed93d8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora rateplan charge object.\nPK: rateplan_charge_id", "columns": {"rateplan_charge_id": {"name": "rateplan_charge_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplan_charge_name": {"name": "rateplan_charge_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_rateplan_charge_id": {"name": "original_rateplan_charge_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "zuora account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_id": {"name": "subscription_id", "description": "FK: zuora_subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplan_id": {"name": "rateplan_id", "description": "FK: zuora_rateplan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "FK: zuora_product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rateplan_charge_id": {"name": "product_rateplan_charge_id", "description": "FK: zuora_product_rateplan_charge", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rateplan_id": {"name": "product_rateplan_id", "description": "FK: zuora_product_rateplan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effective_start_date": {"name": "effective_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "effective_end_date": {"name": "effective_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "charge_model": {"name": "charge_model", "description": "Overage Pricing|Per Unit Pricing|Discount-Percentage|Flat Fee Pricing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_number": {"name": "charge_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_type": {"name": "charge_type", "description": "OneTime|Usage|Recurring", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "list_price_base": {"name": "list_price_base", "description": "Per Billing Period|Per Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_period": {"name": "billing_period", "description": "Annual|Eighteen Months|Month|null|Semi-Annual|Quarter", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "apply_discount_charge_type": {"name": "apply_discount_charge_type", "description": "the type of chrage the discount is applied to (onetime,recurring,usage,all)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dmrc": {"name": "dmrc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dtcv": {"name": "dtcv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "tcv": {"name": "tcv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mrr": {"name": "mrr", "description": "does not include discount mrr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "quantity": {"name": "quantity", "description": "number of units per charge", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processed_through_date": {"name": "processed_through_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_exclude_billing": {"name": "is_exclude_billing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_exclude_booking": {"name": "is_exclude_booking", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_repaid": {"name": "is_repaid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_processed": {"name": "is_processed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.5168996, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge", "raw_code": "WITH import_rateplan_charge AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__rateplancharge') }}\n\n), \n\nzuora_rateplan_charge AS (\n SELECT\n id AS rateplan_charge_id,\n name AS rateplan_charge_name,\n version,\n NULLIF(originalid,'') AS original_rateplan_charge_id,\n NULLIF(accountid,'') AS account_id,\n NULLIF(subscriptionid,'') AS subscription_id,\n NULLIF(rateplanid,'') AS rateplan_id,\n NULLIF(productid,'') AS product_id,\n NULLIF(productrateplanchargeid,'') AS product_rateplan_charge_id,\n NULLIF(productrateplanid,'') AS product_rateplan_id,\n DATE(effectivestartdate) AS effective_start_date,\n DATE(effectiveenddate) AS effective_end_date,\n NULLIF(chargemodel,'') AS charge_model,\n NULLIF(chargenumber,'') AS charge_number,\n NULLIF(chargetype,'') AS charge_type,\n NULLIF(listpricebase,'') AS list_price_base,\n NULLIF(billingperiod,'') AS billing_period,\n CASE WHEN applydiscountto = 'ONETIME' THEN 'OneTime'\n WHEN applydiscountto = 'RECURRING' THEN 'Recurring'\n WHEN applydiscountto = 'ONETIMERECURRINGUSAGE' THEN 'OneTime,Recurring,Usage'\n ELSE NULL END AS apply_discount_charge_type,\n dmrc,\n dtcv,\n tcv,\n mrr,\n COALESCE(quantity,1) AS quantity,\n DATE(processedthroughdate) AS processed_through_date,\n SMALLINT(excludeitembillingfromrevenueaccounting) AS is_exclude_billing,\n SMALLINT(excludeitembookingfromrevenueaccounting) AS is_exclude_booking,\n SMALLINT(isprepaid) AS is_repaid,\n SMALLINT(isprocessed) AS is_processed,\n SMALLINT(deleted) AS is_deleted,\n TIMESTAMP(updateddate) AS updated_at,\n TIMESTAMP(createddate) AS created_at\n FROM import_rateplan_charge\n)\n\nSELECT * \nFROM zuora_rateplan_charge", "language": "sql", "refs": [{"name": "analytics___finance_stg__rateplancharge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__rateplancharge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.sql", "compiled": true, "compiled_code": "WITH import_rateplan_charge AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__rateplancharge\n\n), \n\nzuora_rateplan_charge AS (\n SELECT\n id AS rateplan_charge_id,\n name AS rateplan_charge_name,\n version,\n NULLIF(originalid,'') AS original_rateplan_charge_id,\n NULLIF(accountid,'') AS account_id,\n NULLIF(subscriptionid,'') AS subscription_id,\n NULLIF(rateplanid,'') AS rateplan_id,\n NULLIF(productid,'') AS product_id,\n NULLIF(productrateplanchargeid,'') AS product_rateplan_charge_id,\n NULLIF(productrateplanid,'') AS product_rateplan_id,\n DATE(effectivestartdate) AS effective_start_date,\n DATE(effectiveenddate) AS effective_end_date,\n NULLIF(chargemodel,'') AS charge_model,\n NULLIF(chargenumber,'') AS charge_number,\n NULLIF(chargetype,'') AS charge_type,\n NULLIF(listpricebase,'') AS list_price_base,\n NULLIF(billingperiod,'') AS billing_period,\n CASE WHEN applydiscountto = 'ONETIME' THEN 'OneTime'\n WHEN applydiscountto = 'RECURRING' THEN 'Recurring'\n WHEN applydiscountto = 'ONETIMERECURRINGUSAGE' THEN 'OneTime,Recurring,Usage'\n ELSE NULL END AS apply_discount_charge_type,\n dmrc,\n dtcv,\n tcv,\n mrr,\n COALESCE(quantity,1) AS quantity,\n DATE(processedthroughdate) AS processed_through_date,\n SMALLINT(excludeitembillingfromrevenueaccounting) AS is_exclude_billing,\n SMALLINT(excludeitembookingfromrevenueaccounting) AS is_exclude_booking,\n SMALLINT(isprepaid) AS is_repaid,\n SMALLINT(isprocessed) AS is_processed,\n SMALLINT(deleted) AS is_deleted,\n TIMESTAMP(updateddate) AS updated_at,\n TIMESTAMP(createddate) AS created_at\n FROM import_rateplan_charge\n)\n\nSELECT * \nFROM zuora_rateplan_charge", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_rateplan_charge_tier", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan_charge_tier", "analytics___finance_stg__zuora_rateplan_charge_tier"], "alias": "analytics___finance_stg__zuora_rateplan_charge_tier", "checksum": {"name": "sha256", "checksum": "64292766cadb192d54ae7473fbd4be9ad3f60d77c954a1d6e2098ee19ccb1d74"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora rateplan charge object.\nPK: rateplan_charge_tier_id", "columns": {"rateplan_charge_tier_id": {"name": "rateplan_charge_tier_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_id": {"name": "subscription_id", "description": "FK: zuora_subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "FK: zuora_product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplan_id": {"name": "rateplan_id", "description": "FK: zuora_rateplan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplan_charge_id": {"name": "rateplan_charge_id", "description": "FK: zuora_rateplan_charge", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rateplan_id": {"name": "product_rateplan_id", "description": "FK: zuora_product_rateplan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rateplan_charge_id": {"name": "product_rateplan_charge_id", "description": "FK: zuora_product_rateplan_charge", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendment_id": {"name": "amendment_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tier": {"name": "tier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price_in_original_currency": {"name": "price_in_original_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_percentage": {"name": "discount_percentage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "overage_price": {"name": "overage_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_format": {"name": "price_format", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.579012, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge_tier", "raw_code": "WITH import_rateplan_charge_tier AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__rateplanchargetier') }}\n\n), \nzuora_rateplan_charge_tier AS (\n\n SELECT\n id AS rateplan_charge_tier_id,\n NULLIF(subscriptionid,'') AS subscription_id,\n NULLIF(productid,'') AS product_id,\n\t NULLIF(rateplanid,'') AS rateplan_id,\n NULLIF(rateplanchargeid,'') AS rateplan_charge_id,\n NULLIF(productrateplanid,'') AS product_rateplan_id,\n NULLIF(productrateplanchargeid,'') AS product_rateplan_charge_id,\n NULLIF(amendmentid,'') AS amendment_id,\n tier,\n currency,\n price AS price_in_original_currency,\n discountpercentage AS discount_percentage,\n overageprice AS overage_price,\n priceformat AS price_format,\n SMALLINT(deleted) AS is_deleted,\n TIMESTAMP(updateddate) AS updated_at,\n TIMESTAMP(createddate) AS created_at\n FROM import_rateplan_charge_tier\n\n)\n\nSELECT * \nFROM zuora_rateplan_charge_tier", "language": "sql", "refs": [{"name": "analytics___finance_stg__rateplanchargetier", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__rateplanchargetier"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.sql", "compiled": true, "compiled_code": "WITH import_rateplan_charge_tier AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__rateplanchargetier\n\n), \nzuora_rateplan_charge_tier AS (\n\n SELECT\n id AS rateplan_charge_tier_id,\n NULLIF(subscriptionid,'') AS subscription_id,\n NULLIF(productid,'') AS product_id,\n\t NULLIF(rateplanid,'') AS rateplan_id,\n NULLIF(rateplanchargeid,'') AS rateplan_charge_id,\n NULLIF(productrateplanid,'') AS product_rateplan_id,\n NULLIF(productrateplanchargeid,'') AS product_rateplan_charge_id,\n NULLIF(amendmentid,'') AS amendment_id,\n tier,\n currency,\n price AS price_in_original_currency,\n discountpercentage AS discount_percentage,\n overageprice AS overage_price,\n priceformat AS price_format,\n SMALLINT(deleted) AS is_deleted,\n TIMESTAMP(updateddate) AS updated_at,\n TIMESTAMP(createddate) AS created_at\n FROM import_rateplan_charge_tier\n\n)\n\nSELECT * \nFROM zuora_rateplan_charge_tier", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___finance_stg__zuora_subscription": {"database": null, "schema": "dev_dkruh1", "name": "analytics___finance_stg__zuora_subscription", "resource_type": "model", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.sql", "unique_id": "model.yoda.analytics___finance_stg__zuora_subscription", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_subscription", "analytics___finance_stg__zuora_subscription"], "alias": "analytics___finance_stg__zuora_subscription", "checksum": {"name": "sha256", "checksum": "ab961fc8e3ec23745a9372bc025de6d89408df13f25461becebd085589f490e4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "finance"], "description": "Modeled VIEW of zuora subscription object", "columns": {"subscription_id": {"name": "subscription_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_name": {"name": "subscription_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "Internal zuora account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_opportunity_id": {"name": "sf_opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "term_type": {"name": "term_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "term_start_date": {"name": "term_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "term_end_date": {"name": "term_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "exclude_from_dunning_end_date": {"name": "exclude_from_dunning_end_date", "description": "Until which date to exclude from dunning", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "latest_version": {"name": "latest_version", "description": "Max version over subscription name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "actual_contract_duration": {"name": "actual_contract_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "original_contract_duration": {"name": "original_contract_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "csm_extension_months": {"name": "csm_extension_months", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "end_of_contract_extension_month": {"name": "end_of_contract_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "total_price": {"name": "total_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "segment": {"name": "segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelled_at": {"name": "cancelled_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_start_at": {"name": "subscription_start_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_end_at": {"name": "subscription_end_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "original_created_at": {"name": "original_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "original_id": {"name": "original_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_subscription_id": {"name": "previous_subscription_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_setting": {"name": "renewal_setting", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_from_subscription": {"name": "renewal_from_subscription", "description": "Renewal from subscription name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_staggered_subscription": {"name": "is_staggered_subscription", "description": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_migration_subscription": {"name": "is_migration_subscription", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_trial_subscription": {"name": "is_trial_subscription", "description": "indicator on subscription level from zuora = 1 when trial(test) subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_downgraded": {"name": "is_downgraded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_exclude_from_dashboards": {"name": "is_exclude_from_dashboards", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["finance", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.630511, "relation_name": "dev_dkruh1.analytics___finance_stg__zuora_subscription", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM {{ ref('analytics___finance_stg__subscription') }}\n\n), finance_stg__zuora_subscription AS (\n\n SELECT \n TRIM(id) AS subscription_id,\n TRIM(name) AS subscription_name,\n NULLIF(accountid,'') AS account_id,\n NULLIF(sf_opportunityid__c,'') AS sf_opportunity_id,\n status,\n termtype AS term_type,\n DATE(termstartdate) AS term_start_date,\n DATE(termenddate) AS term_end_date,\n DATE(exclude_from_dunning_until__c) AS exclude_from_dunning_end_date,\n version,\n MAX(version) OVER (PARTITION BY name) AS latest_version,\n CAST(actual_contract_duration__c AS FLOAT) AS actual_contract_duration,\n CAST(original_contract_duration__c AS FLOAT) AS original_contract_duration,\n CAST(COALESCE(NULLIF(csm_extension_months__c,''), 0) AS FLOAT) AS csm_extension_months,\n CAST(COALESCE(NULLIF(end_of_contract_extension_month__c,''), 0) AS FLOAT) AS end_of_contract_extension_month,\n CAST(COALESCE(total_price__c, 0) AS FLOAT) AS total_price,\n NULLIF(segment__c,'') AS segment,\n TIMESTAMP(cancelleddate) AS cancelled_at,\n TIMESTAMP(subscriptionstartdate) AS subscription_start_at,\n TIMESTAMP(subscriptionenddate) AS subscription_end_at,\n TIMESTAMP(originalcreateddate) AS original_created_at,\n originalid AS original_id,\n NULLIF(previoussubscriptionid,'') AS previous_subscription_id,\n renewalsetting AS renewal_setting,\n NULLIF(renewalfromsubscription__c,'') AS renewal_from_subscription,\n SMALLINT(IF(LOWER(isstaggered__c) = 'yes',1,0)) AS is_staggered_subscription,\n SMALLINT(IF(LOWER(ismigrationsubscription__c) = 'yes',1,0)) AS is_migration_subscription,\n SMALLINT(IF(LOWER(trialsubscription) = 'yes',1,0)) AS is_trial_subscription,\n SMALLINT(IF(LOWER(downgraded__c) = 'true',1,0)) AS is_downgraded,\n SMALLINT(deleted) AS is_deleted,\n SMALLINT(IF(LOWER(excludefromdashboards__c) = 'true',1,0)) AS is_exclude_from_dashboards,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_subscription", "language": "sql", "refs": [{"name": "analytics___finance_stg__subscription", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__subscription"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance_stg__subscription\n\n), finance_stg__zuora_subscription AS (\n\n SELECT \n TRIM(id) AS subscription_id,\n TRIM(name) AS subscription_name,\n NULLIF(accountid,'') AS account_id,\n NULLIF(sf_opportunityid__c,'') AS sf_opportunity_id,\n status,\n termtype AS term_type,\n DATE(termstartdate) AS term_start_date,\n DATE(termenddate) AS term_end_date,\n DATE(exclude_from_dunning_until__c) AS exclude_from_dunning_end_date,\n version,\n MAX(version) OVER (PARTITION BY name) AS latest_version,\n CAST(actual_contract_duration__c AS FLOAT) AS actual_contract_duration,\n CAST(original_contract_duration__c AS FLOAT) AS original_contract_duration,\n CAST(COALESCE(NULLIF(csm_extension_months__c,''), 0) AS FLOAT) AS csm_extension_months,\n CAST(COALESCE(NULLIF(end_of_contract_extension_month__c,''), 0) AS FLOAT) AS end_of_contract_extension_month,\n CAST(COALESCE(total_price__c, 0) AS FLOAT) AS total_price,\n NULLIF(segment__c,'') AS segment,\n TIMESTAMP(cancelleddate) AS cancelled_at,\n TIMESTAMP(subscriptionstartdate) AS subscription_start_at,\n TIMESTAMP(subscriptionenddate) AS subscription_end_at,\n TIMESTAMP(originalcreateddate) AS original_created_at,\n originalid AS original_id,\n NULLIF(previoussubscriptionid,'') AS previous_subscription_id,\n renewalsetting AS renewal_setting,\n NULLIF(renewalfromsubscription__c,'') AS renewal_from_subscription,\n SMALLINT(IF(LOWER(isstaggered__c) = 'yes',1,0)) AS is_staggered_subscription,\n SMALLINT(IF(LOWER(ismigrationsubscription__c) = 'yes',1,0)) AS is_migration_subscription,\n SMALLINT(IF(LOWER(trialsubscription) = 'yes',1,0)) AS is_trial_subscription,\n SMALLINT(IF(LOWER(downgraded__c) = 'true',1,0)) AS is_downgraded,\n SMALLINT(deleted) AS is_deleted,\n SMALLINT(IF(LOWER(excludefromdashboards__c) = 'true',1,0)) AS is_exclude_from_dashboards,\n TIMESTAMP(createddate) AS created_at,\n TIMESTAMP(updateddate) AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM staging\n\n)\n\nSELECT * \nFROM finance_stg__zuora_subscription", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm__acv_goal_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm__acv_goal_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.sql", "unique_id": "model.yoda.analytics___gtm__acv_goal_daily", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__acv_goal_daily", "analytics___gtm__acv_goal_daily"], "alias": "analytics___gtm__acv_goal_daily", "checksum": {"name": "sha256", "checksum": "8e406d8234e600447402a62bebf6932e0bcd56ed9492434cba03402af93b393a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "new_revenue"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "new_revenue"], "description": "A modeled table conencting each date from the calendar to its ACV goals | PK: goal_id | Granularity: date, deal_type, revenue_stream, segment, region, demand_gen_channel, product", "columns": {"goal_id": {"name": "goal_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "goal_process_internal_id": {"name": "goal_process_internal_id", "description": "Concatenation of fields used to join the goals from this process to the performance", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type": {"name": "deal_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_stream": {"name": "revenue_stream", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_channel": {"name": "demand_gen_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "goal_process_demand_gen_channel": {"name": "goal_process_demand_gen_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_acv_goal": {"name": "monthly_acv_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_acv_goal": {"name": "forecast_acv_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "closing_date": {"name": "closing_date", "description": "date of the closest working day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "working_day_no": {"name": "working_day_no", "description": "working day number (1/2/.../31)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "new_revenue"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082641.6889203, "relation_name": "dev_dkruh1.analytics___gtm__acv_goal_daily", "raw_code": "-- Import --\n\nWITH import_analytics___gtm_stg__acv_goal AS (\n\n SELECT * FROM {{ ref('analytics___gtm_stg__acv_goal') }}\n\n), import_calendar_with_closing_day AS (\n\n SELECT * FROM {{ source('analytics__static', 'calendar_with_closing_day') }}\n\n-- Logic --\n\n), goal_segmentation AS (\n\n SELECT DISTINCT\n SHA2(LOWER(CONCAT(deal_type, revenue_stream, segment, region, demand_gen_channel, product)), 256) AS goal_segmentation_id,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n IF(LOWER(product) LIKE '%sms%', 'SMS', product) AS product_family\n FROM import_analytics___gtm_stg__acv_goal\n\n), acv_goals_with_closing_day AS (\n\n SELECT\n SHA2(LOWER(CONCAT(calendar.date, segmentation.goal_segmentation_id)), 256) AS goal_id,\n LOWER(CONCAT(segmentation.deal_type, segmentation.revenue_stream, segmentation.segment, segmentation.region)) AS goal_process_internal_id,\n segmentation.deal_type,\n segmentation.revenue_stream,\n segmentation.segment,\n segmentation.region,\n segmentation.demand_gen_channel,\n CASE LOWER(segmentation.demand_gen_channel)\n WHEN 'ae self prospecting' THEN 'AE'\n WHEN 'total (post-overlap)' THEN ''\n ELSE segmentation.demand_gen_channel\n END AS goal_process_demand_gen_channel,\n segmentation.product,\n segmentation.product_family,\n goal.monthly_acv_goal,\n goal.forecast_acv_goal,\n calendar.date,\n calendar.closing_date,\n calendar.working_day_no\n FROM import_calendar_with_closing_day AS calendar\n CROSS JOIN goal_segmentation AS segmentation\n LEFT JOIN import_analytics___gtm_stg__acv_goal AS goal\n ON TRUNC(calendar.date, 'MM') = goal.month\n AND segmentation.deal_type = goal.deal_type\n AND segmentation.revenue_stream = goal.revenue_stream\n AND segmentation.segment = goal.segment\n AND segmentation.region = goal.region\n AND segmentation.demand_gen_channel = goal.demand_gen_channel\n AND segmentation.product = goal.product\n WHERE YEAR(calendar.date) <= YEAR(CURRENT_DATE)\n\n)\n\n-- Result\nSELECT * FROM acv_goals_with_closing_day", "language": "sql", "refs": [{"name": "analytics___gtm_stg__acv_goal", "package": null, "version": null}], "sources": [["analytics__static", "calendar_with_closing_day"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.calendar_with_closing_day", "model.yoda.analytics___gtm_stg__acv_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_analytics___gtm_stg__acv_goal AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm_stg__acv_goal\n\n), import_calendar_with_closing_day AS (\n\n SELECT * FROM static.calendar_with_closing_day\n\n-- Logic --\n\n), goal_segmentation AS (\n\n SELECT DISTINCT\n SHA2(LOWER(CONCAT(deal_type, revenue_stream, segment, region, demand_gen_channel, product)), 256) AS goal_segmentation_id,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n IF(LOWER(product) LIKE '%sms%', 'SMS', product) AS product_family\n FROM import_analytics___gtm_stg__acv_goal\n\n), acv_goals_with_closing_day AS (\n\n SELECT\n SHA2(LOWER(CONCAT(calendar.date, segmentation.goal_segmentation_id)), 256) AS goal_id,\n LOWER(CONCAT(segmentation.deal_type, segmentation.revenue_stream, segmentation.segment, segmentation.region)) AS goal_process_internal_id,\n segmentation.deal_type,\n segmentation.revenue_stream,\n segmentation.segment,\n segmentation.region,\n segmentation.demand_gen_channel,\n CASE LOWER(segmentation.demand_gen_channel)\n WHEN 'ae self prospecting' THEN 'AE'\n WHEN 'total (post-overlap)' THEN ''\n ELSE segmentation.demand_gen_channel\n END AS goal_process_demand_gen_channel,\n segmentation.product,\n segmentation.product_family,\n goal.monthly_acv_goal,\n goal.forecast_acv_goal,\n calendar.date,\n calendar.closing_date,\n calendar.working_day_no\n FROM import_calendar_with_closing_day AS calendar\n CROSS JOIN goal_segmentation AS segmentation\n LEFT JOIN import_analytics___gtm_stg__acv_goal AS goal\n ON TRUNC(calendar.date, 'MM') = goal.month\n AND segmentation.deal_type = goal.deal_type\n AND segmentation.revenue_stream = goal.revenue_stream\n AND segmentation.segment = goal.segment\n AND segmentation.region = goal.region\n AND segmentation.demand_gen_channel = goal.demand_gen_channel\n AND segmentation.product = goal.product\n WHERE YEAR(calendar.date) <= YEAR(CURRENT_DATE)\n\n)\n\n-- Result\nSELECT * FROM acv_goals_with_closing_day", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm__crossell_opportunity_attribution": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm__crossell_opportunity_attribution", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.sql", "unique_id": "model.yoda.analytics___gtm__crossell_opportunity_attribution", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__crossell_opportunity_attribution", "analytics___gtm__crossell_opportunity_attribution"], "alias": "analytics___gtm__crossell_opportunity_attribution", "checksum": {"name": "sha256", "checksum": "87cca8fb5b7250ba4749ccb7a365a745e11278f4c43316dad2896a059f549acc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "gtm", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "gtm"], "description": "A table holding attribution channels for crossell/upsell oportunities| PK & Granularity: opportunity_id", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel": {"name": "attribution_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["gtm", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.7191935, "relation_name": "dev_dkruh1.analytics___gtm__crossell_opportunity_attribution", "raw_code": "-- Import --\n\nWITH import_salesforce_opportunity AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__opportunity') }}\n \n), import_salesforce_cs_lead AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_cs_lead') }}\n\n-- Logic --\n\n), sdr_to_exclude AS (\n\n SELECT * FROM VALUES\n ('0053W000000cYEZQA2'),\n ('0057Q000002actKQAQ'),\n ('0050J0000094zAzQAI'),\n ('005b00000035wB2AAI'),\n ('005b00000037TcXAAU'),\n ('0057Q000001T8t2QAC'),\n ('0057Q000004FSHeQAO'),\n ('0057Q000008DConQAG'),\n ('0050J000006svIxQAI'),\n ('0050J000009XXBFQA4'),\n ('0053W000000EgPgQAK')\n AS (sf_user_id)\n\n), opportunity_population AS (\n\n SELECT\n opportunity.opportunity_id,\n cs_lead.source AS cs_lead_source,\n opportunity.is_partner_upsell,\n LOWER(opportunity.original_owner_role) LIKE '%account%' AS is_account_owner_role,\n ISNOTNULL(opportunity.sdr_sf_user_id) AND ISNULL(sdr_to_exclude.sf_user_id) AS is_sdr\n FROM import_salesforce_opportunity AS opportunity\n LEFT JOIN import_salesforce_cs_lead AS cs_lead\n ON opportunity.opportunity_id = cs_lead.related_opportunity_id\n LEFT JOIN sdr_to_exclude\n ON opportunity.sdr_sf_user_id = sdr_to_exclude.sf_user_id\n WHERE opportunity.close_date >= '2022-01-01'\n AND ((LOWER(opportunity.type) = 'upsell')\n OR\n (LOWER(opportunity.type) IN ('in term renewal', 'end term renewal')\n AND LOWER(opportunity.deal_type_as_per_deal_summary) LIKE '%crossell - successful%'))\n\n\n), marketing_opps AS (\n\n SELECT\n opportunity_id,\n 'Marketing' AS attribution_channel\n FROM opportunity_population\n WHERE LOWER(cs_lead_source) = 'marketing campaign'\n\n), partner_opps AS (\n\n SELECT\n opportunity_id,\n 'Partner' AS attribution_channel\n FROM opportunity_population\n WHERE is_partner_upsell = 1\n\n), sdr_opps AS (\n\n SELECT\n opportunity_id,\n 'Osdr' AS attribution_channel\n FROM opportunity_population\n WHERE is_sdr\n AND is_account_owner_role\n\n), csm_opps AS (\n\n SELECT\n opportunity_id,\n 'CS' AS attribution_channel\n FROM opportunity_population\n WHERE LOWER(cs_lead_source) LIKE '%csm%'\n\n), attribution_channel_union AS (\n\n SELECT * FROM marketing_opps\n UNION ALL\n SELECT * FROM partner_opps\n UNION ALL\n SELECT * FROM sdr_opps\n UNION ALL\n SELECT * FROM csm_opps\n\n), crossell_opportunity_attribution_channels (\n\n SELECT \n opportunity_id,\n CONCAT_WS(';',ARRAY_SORT(COLLECT_SET(attribution_channel))) AS attribution_channel\n FROM attribution_channel_union\n GROUP BY 1\n\n), crossell_opportunity_attribution_res (\n\n SELECT DISTINCT\n opportunity.opportunity_id,\n NVL(channel.attribution_channel,'other') AS attribution_channel\n FROM opportunity_population AS opportunity\n LEFT JOIN crossell_opportunity_attribution_channels AS channel\n ON opportunity.opportunity_id = channel.opportunity_id\n\n)\n\n-- Result --\n\nSELECT * FROM crossell_opportunity_attribution_res", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_cs_lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__mc_cs_lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_opportunity AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n \n), import_salesforce_cs_lead AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_cs_lead\n\n-- Logic --\n\n), sdr_to_exclude AS (\n\n SELECT * FROM VALUES\n ('0053W000000cYEZQA2'),\n ('0057Q000002actKQAQ'),\n ('0050J0000094zAzQAI'),\n ('005b00000035wB2AAI'),\n ('005b00000037TcXAAU'),\n ('0057Q000001T8t2QAC'),\n ('0057Q000004FSHeQAO'),\n ('0057Q000008DConQAG'),\n ('0050J000006svIxQAI'),\n ('0050J000009XXBFQA4'),\n ('0053W000000EgPgQAK')\n AS (sf_user_id)\n\n), opportunity_population AS (\n\n SELECT\n opportunity.opportunity_id,\n cs_lead.source AS cs_lead_source,\n opportunity.is_partner_upsell,\n LOWER(opportunity.original_owner_role) LIKE '%account%' AS is_account_owner_role,\n ISNOTNULL(opportunity.sdr_sf_user_id) AND ISNULL(sdr_to_exclude.sf_user_id) AS is_sdr\n FROM import_salesforce_opportunity AS opportunity\n LEFT JOIN import_salesforce_cs_lead AS cs_lead\n ON opportunity.opportunity_id = cs_lead.related_opportunity_id\n LEFT JOIN sdr_to_exclude\n ON opportunity.sdr_sf_user_id = sdr_to_exclude.sf_user_id\n WHERE opportunity.close_date >= '2022-01-01'\n AND ((LOWER(opportunity.type) = 'upsell')\n OR\n (LOWER(opportunity.type) IN ('in term renewal', 'end term renewal')\n AND LOWER(opportunity.deal_type_as_per_deal_summary) LIKE '%crossell - successful%'))\n\n\n), marketing_opps AS (\n\n SELECT\n opportunity_id,\n 'Marketing' AS attribution_channel\n FROM opportunity_population\n WHERE LOWER(cs_lead_source) = 'marketing campaign'\n\n), partner_opps AS (\n\n SELECT\n opportunity_id,\n 'Partner' AS attribution_channel\n FROM opportunity_population\n WHERE is_partner_upsell = 1\n\n), sdr_opps AS (\n\n SELECT\n opportunity_id,\n 'Osdr' AS attribution_channel\n FROM opportunity_population\n WHERE is_sdr\n AND is_account_owner_role\n\n), csm_opps AS (\n\n SELECT\n opportunity_id,\n 'CS' AS attribution_channel\n FROM opportunity_population\n WHERE LOWER(cs_lead_source) LIKE '%csm%'\n\n), attribution_channel_union AS (\n\n SELECT * FROM marketing_opps\n UNION ALL\n SELECT * FROM partner_opps\n UNION ALL\n SELECT * FROM sdr_opps\n UNION ALL\n SELECT * FROM csm_opps\n\n), crossell_opportunity_attribution_channels (\n\n SELECT \n opportunity_id,\n CONCAT_WS(';',ARRAY_SORT(COLLECT_SET(attribution_channel))) AS attribution_channel\n FROM attribution_channel_union\n GROUP BY 1\n\n), crossell_opportunity_attribution_res (\n\n SELECT DISTINCT\n opportunity.opportunity_id,\n NVL(channel.attribution_channel,'other') AS attribution_channel\n FROM opportunity_population AS opportunity\n LEFT JOIN crossell_opportunity_attribution_channels AS channel\n ON opportunity.opportunity_id = channel.opportunity_id\n\n)\n\n-- Result --\n\nSELECT * FROM crossell_opportunity_attribution_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm__new_sale_opportunity_attribution": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm__new_sale_opportunity_attribution", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.sql", "unique_id": "model.yoda.analytics___gtm__new_sale_opportunity_attribution", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__new_sale_opportunity_attribution", "analytics___gtm__new_sale_opportunity_attribution"], "alias": "analytics___gtm__new_sale_opportunity_attribution", "checksum": {"name": "sha256", "checksum": "0a1fdd5ceb289e57ec4a426825a13f72f73aa20b87776d63ce7c86b64fca582b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "gtm", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "gtm"], "description": "A table that holds opportunity attirbution channels and its attirbution related actions | PK & Granularity: opportunity_id, action_name, action_time", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "PK 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_name": {"name": "action_name", "description": "PK 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_time": {"name": "action_time", "description": "PK 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "sf account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_created_at": {"name": "opportunity_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_demo_date": {"name": "entered_demo_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_close_date": {"name": "opportunity_close_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "order_sales_segment": {"name": "order_sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_stage": {"name": "opportunity_stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_attribution_channel": {"name": "sub_attribution_channel", "description": "Attribution channel including all affecting channels", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel": {"name": "attribution_channel", "description": "Attribution channel including only channels for payment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_arr_in_usd": {"name": "estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "delta_acv_in_usd": {"name": "delta_acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "prime_estimated_arr_in_usd": {"name": "prime_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "gold_estimated_arr_in_usd": {"name": "gold_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["gtm", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.761339, "relation_name": "dev_dkruh1.analytics___gtm__new_sale_opportunity_attribution", "raw_code": "-- Import --\n\nWITH import_gtm_opportunity_attribution_action AS (\n\n SELECT * FROM {{ ref('analytics___gtm__new_sale_opportunity_attribution_action') }}\n\n-- Logic --\n\n), opportunity_action_w_dup_action AS (\n\n SELECT\n opportunity_id,\n action_name,\n action_time,\n first_action_timeframe,\n ROW_NUMBER() OVER (PARTITION BY opportunity_id, action_name ORDER BY action_time DESC) AS same_action_rank,\n IF(action_name LIKE '%AE%', 1, 0) AS is_ae_action,\n IF(action_name LIKE '%Opp Creation', 1, 0) AS is_opp_creation_action,\n IF(action_name IN ('AE Phone Connected',\n 'iSDR Phone Connected',\n 'oSDR Email Replied',\n 'oSDR Phone Connected'), 1, 0) AS is_operational_action,\n CASE\n WHEN action_name IN ('Drift Event',\n 'Drift Task',\n 'EOQ Campaign',\n 'Events',\n 'iSDR Opp Creation',\n 'iSDR Phone Connected',\n 'RAD',\n 'RAD Event',\n 'Triggers',\n 'Batch') THEN 'Marketing'\n WHEN action_name IN ('Partner Heads Up',\n 'Partner Influence',\n 'Partner Referral') THEN 'Partner'\n WHEN action_name IN ('oSDR Opp Creation',\n 'oSDR Email Replied',\n 'oSDR Phone Connected') THEN 'Osdr'\n WHEN action_name IN ('AE Phone Connected',\n 'AE Email Replied') THEN 'AE'\n WHEN action_name IN ('LF',\n 'PQL Event') THEN 'Product'\n END AS attribution_channel\n FROM import_gtm_opportunity_attribution_action\n WHERE ISNOTNULL(action_name)\n\n), opportunity_action_wo_dup_action AS (\n\n SELECT\n opportunity_id,\n action_name,\n action_time,\n first_action_timeframe,\n attribution_channel,\n is_ae_action,\n is_opp_creation_action,\n is_operational_action,\n COUNT(1) OVER (PARTITION BY opportunity_id) AS action_cnt,\n SUM(is_ae_action + is_opp_creation_action) OVER (PARTITION BY opportunity_id) AS ae_and_opp_creation_action_cnt\n FROM opportunity_action_w_dup_action\n WHERE same_action_rank = 1\n\n), opp_creation_action AS (\n\n SELECT\n opportunity_id,\n attribution_channel\n FROM opportunity_action_wo_dup_action\n WHERE is_opp_creation_action = 1\n AND action_cnt = 1\n\n), ae_action AS (\n\n SELECT\n opportunity_id,\n attribution_channel\n FROM opportunity_action_wo_dup_action\n WHERE is_ae_action = 1\n AND ae_and_opp_creation_action_cnt = action_cnt\n\n), opportunity_action_w_rank AS (\n\n SELECT\n opportunity_id,\n action_name,\n action_time,\n first_action_timeframe,\n attribution_channel,\n is_operational_action,\n ROW_NUMBER() OVER (PARTITION BY opportunity_id ORDER BY action_time DESC, action_name) AS action_rank\n FROM opportunity_action_wo_dup_action\n WHERE is_ae_action = 0\n AND is_opp_creation_action = 0\n\n), opportunity_action_w_action_to_ignore AS (\n\n SELECT\n opportunity_action.opportunity_id,\n opportunity_action.action_name,\n opportunity_action.action_time,\n opportunity_action.first_action_timeframe,\n opportunity_action.attribution_channel,\n MAX(IF(ISNOTNULL(non_operatioanl_action.opportunity_id), 1, 0)) AS is_action_to_ignore\n FROM opportunity_action_w_rank AS opportunity_action\n LEFT JOIN opportunity_action_w_rank AS non_operatioanl_action\n ON opportunity_action.opportunity_id = non_operatioanl_action.opportunity_id\n AND opportunity_action.action_rank < non_operatioanl_action.action_rank\n AND opportunity_action.is_operational_action = 1\n AND non_operatioanl_action.is_operational_action = 0\n AND DATEDIFF(opportunity_action.action_time, non_operatioanl_action.action_time) <= 10\n GROUP BY 1,2,3,4,5\n\n), opportunity_action_wo_action_to_ignore AS (\n\n SELECT\n opportunity_id,\n action_name,\n action_time,\n first_action_timeframe,\n attribution_channel,\n FIRST(action_time) OVER (PARTITION BY opportunity_id ORDER BY action_time DESC, action_name ASC) AS first_action_time\n FROM opportunity_action_w_action_to_ignore\n WHERE is_action_to_ignore = 0\n\n), opportunity_action AS (\n\n SELECT\n opportunity_id,\n attribution_channel\n FROM opp_creation_action\n UNION ALL\n SELECT \n opportunity_id,\n attribution_channel\n FROM ae_action\n UNION ALL\n SELECT\n opportunity_id,\n attribution_channel\n FROM opportunity_action_wo_action_to_ignore\n WHERE DATEDIFF(first_action_time, action_time) <= first_action_timeframe\n\n), opportunity_attribution_within_90_days AS (\n\n SELECT\n opportunity_id,\n CONCAT_WS(';',ARRAY_SORT(COLLECT_SET(attribution_channel))) AS sub_attribution_channel,\n CONCAT_WS(';',ARRAY_SORT(COLLECT_SET(IF(attribution_channel = 'Product', 'Marketing', attribution_channel)))) AS attribution_channel\n FROM opportunity_action\n GROUP BY 1\n\n), opportunity_attribution_res AS (\n\n SELECT\n opportunity_action.opportunity_id,\n opportunity_action.action_name,\n opportunity_action.action_time,\n opportunity_action.account_id,\n opportunity_action.opportunity_created_at,\n opportunity_action.entered_demo_date,\n opportunity_action.opportunity_close_date,\n opportunity_action.order_sales_segment,\n opportunity_action.opportunity_stage,\n NVL(calculated_attribution.sub_attribution_channel, 'other') AS sub_attribution_channel,\n NVL(calculated_attribution.attribution_channel, 'other') AS attribution_channel,\n opportunity_action.estimated_arr_in_usd,\n opportunity_action.delta_acv_in_usd,\n opportunity_action.prime_estimated_arr_in_usd,\n opportunity_action.gold_estimated_arr_in_usd,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM import_gtm_opportunity_attribution_action AS opportunity_action\n LEFT JOIN opportunity_attribution_within_90_days AS calculated_attribution\n ON opportunity_action.opportunity_id = calculated_attribution.opportunity_id\n\n)\n\n-- Result --\n\nSELECT * FROM opportunity_attribution_res", "language": "sql", "refs": [{"name": "analytics___gtm__new_sale_opportunity_attribution_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_gtm_opportunity_attribution_action AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm__new_sale_opportunity_attribution_action\n\n-- Logic --\n\n), opportunity_action_w_dup_action AS (\n\n SELECT\n opportunity_id,\n action_name,\n action_time,\n first_action_timeframe,\n ROW_NUMBER() OVER (PARTITION BY opportunity_id, action_name ORDER BY action_time DESC) AS same_action_rank,\n IF(action_name LIKE '%AE%', 1, 0) AS is_ae_action,\n IF(action_name LIKE '%Opp Creation', 1, 0) AS is_opp_creation_action,\n IF(action_name IN ('AE Phone Connected',\n 'iSDR Phone Connected',\n 'oSDR Email Replied',\n 'oSDR Phone Connected'), 1, 0) AS is_operational_action,\n CASE\n WHEN action_name IN ('Drift Event',\n 'Drift Task',\n 'EOQ Campaign',\n 'Events',\n 'iSDR Opp Creation',\n 'iSDR Phone Connected',\n 'RAD',\n 'RAD Event',\n 'Triggers',\n 'Batch') THEN 'Marketing'\n WHEN action_name IN ('Partner Heads Up',\n 'Partner Influence',\n 'Partner Referral') THEN 'Partner'\n WHEN action_name IN ('oSDR Opp Creation',\n 'oSDR Email Replied',\n 'oSDR Phone Connected') THEN 'Osdr'\n WHEN action_name IN ('AE Phone Connected',\n 'AE Email Replied') THEN 'AE'\n WHEN action_name IN ('LF',\n 'PQL Event') THEN 'Product'\n END AS attribution_channel\n FROM import_gtm_opportunity_attribution_action\n WHERE ISNOTNULL(action_name)\n\n), opportunity_action_wo_dup_action AS (\n\n SELECT\n opportunity_id,\n action_name,\n action_time,\n first_action_timeframe,\n attribution_channel,\n is_ae_action,\n is_opp_creation_action,\n is_operational_action,\n COUNT(1) OVER (PARTITION BY opportunity_id) AS action_cnt,\n SUM(is_ae_action + is_opp_creation_action) OVER (PARTITION BY opportunity_id) AS ae_and_opp_creation_action_cnt\n FROM opportunity_action_w_dup_action\n WHERE same_action_rank = 1\n\n), opp_creation_action AS (\n\n SELECT\n opportunity_id,\n attribution_channel\n FROM opportunity_action_wo_dup_action\n WHERE is_opp_creation_action = 1\n AND action_cnt = 1\n\n), ae_action AS (\n\n SELECT\n opportunity_id,\n attribution_channel\n FROM opportunity_action_wo_dup_action\n WHERE is_ae_action = 1\n AND ae_and_opp_creation_action_cnt = action_cnt\n\n), opportunity_action_w_rank AS (\n\n SELECT\n opportunity_id,\n action_name,\n action_time,\n first_action_timeframe,\n attribution_channel,\n is_operational_action,\n ROW_NUMBER() OVER (PARTITION BY opportunity_id ORDER BY action_time DESC, action_name) AS action_rank\n FROM opportunity_action_wo_dup_action\n WHERE is_ae_action = 0\n AND is_opp_creation_action = 0\n\n), opportunity_action_w_action_to_ignore AS (\n\n SELECT\n opportunity_action.opportunity_id,\n opportunity_action.action_name,\n opportunity_action.action_time,\n opportunity_action.first_action_timeframe,\n opportunity_action.attribution_channel,\n MAX(IF(ISNOTNULL(non_operatioanl_action.opportunity_id), 1, 0)) AS is_action_to_ignore\n FROM opportunity_action_w_rank AS opportunity_action\n LEFT JOIN opportunity_action_w_rank AS non_operatioanl_action\n ON opportunity_action.opportunity_id = non_operatioanl_action.opportunity_id\n AND opportunity_action.action_rank < non_operatioanl_action.action_rank\n AND opportunity_action.is_operational_action = 1\n AND non_operatioanl_action.is_operational_action = 0\n AND DATEDIFF(opportunity_action.action_time, non_operatioanl_action.action_time) <= 10\n GROUP BY 1,2,3,4,5\n\n), opportunity_action_wo_action_to_ignore AS (\n\n SELECT\n opportunity_id,\n action_name,\n action_time,\n first_action_timeframe,\n attribution_channel,\n FIRST(action_time) OVER (PARTITION BY opportunity_id ORDER BY action_time DESC, action_name ASC) AS first_action_time\n FROM opportunity_action_w_action_to_ignore\n WHERE is_action_to_ignore = 0\n\n), opportunity_action AS (\n\n SELECT\n opportunity_id,\n attribution_channel\n FROM opp_creation_action\n UNION ALL\n SELECT \n opportunity_id,\n attribution_channel\n FROM ae_action\n UNION ALL\n SELECT\n opportunity_id,\n attribution_channel\n FROM opportunity_action_wo_action_to_ignore\n WHERE DATEDIFF(first_action_time, action_time) <= first_action_timeframe\n\n), opportunity_attribution_within_90_days AS (\n\n SELECT\n opportunity_id,\n CONCAT_WS(';',ARRAY_SORT(COLLECT_SET(attribution_channel))) AS sub_attribution_channel,\n CONCAT_WS(';',ARRAY_SORT(COLLECT_SET(IF(attribution_channel = 'Product', 'Marketing', attribution_channel)))) AS attribution_channel\n FROM opportunity_action\n GROUP BY 1\n\n), opportunity_attribution_res AS (\n\n SELECT\n opportunity_action.opportunity_id,\n opportunity_action.action_name,\n opportunity_action.action_time,\n opportunity_action.account_id,\n opportunity_action.opportunity_created_at,\n opportunity_action.entered_demo_date,\n opportunity_action.opportunity_close_date,\n opportunity_action.order_sales_segment,\n opportunity_action.opportunity_stage,\n NVL(calculated_attribution.sub_attribution_channel, 'other') AS sub_attribution_channel,\n NVL(calculated_attribution.attribution_channel, 'other') AS attribution_channel,\n opportunity_action.estimated_arr_in_usd,\n opportunity_action.delta_acv_in_usd,\n opportunity_action.prime_estimated_arr_in_usd,\n opportunity_action.gold_estimated_arr_in_usd,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM import_gtm_opportunity_attribution_action AS opportunity_action\n LEFT JOIN opportunity_attribution_within_90_days AS calculated_attribution\n ON opportunity_action.opportunity_id = calculated_attribution.opportunity_id\n\n)\n\n-- Result --\n\nSELECT * FROM opportunity_attribution_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm__new_sale_opportunity_attribution_action", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.sql", "unique_id": "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__new_sale_opportunity_attribution_action", "analytics___gtm__new_sale_opportunity_attribution_action"], "alias": "analytics___gtm__new_sale_opportunity_attribution_action", "checksum": {"name": "sha256", "checksum": "d19069264fc00863c8e1ba94c7002d6d8af66e83cac0bc50b9fc88d0452442f5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "gtm", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "gtm"], "description": "A table that connects a new sale opportunity to all its actions that affects its attirbution | PK & Granularity: opportunity_id, action_name, action_time", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "PK 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_time": {"name": "action_time", "description": "PK 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "action_name": {"name": "action_name", "description": "PK 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "sf account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "entered_demo_date": {"name": "entered_demo_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_created_at": {"name": "opportunity_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opportunity_close_date": {"name": "opportunity_close_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "order_sales_segment": {"name": "order_sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_stage": {"name": "opportunity_stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delta_acv_in_usd": {"name": "delta_acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "estimated_arr_in_usd": {"name": "estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "prime_estimated_arr_in_usd": {"name": "prime_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "gold_estimated_arr_in_usd": {"name": "gold_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "first_action_timeframe": {"name": "first_action_timeframe", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["gtm", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.80211, "relation_name": "dev_dkruh1.analytics___gtm__new_sale_opportunity_attribution_action", "raw_code": "-- Import --\n\nWITH import_salesforce_user_overtime AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__user_overtime') }}\n\n), import_salesforce_opportunity AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__opportunity') }}\n \n), import_salesforce_contact AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_contact') }}\n \n), import_salesforce_lead AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__lead') }}\n \n), import_dim_sf_campaign_member AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__dim_sf_campaign_member_mapping') }}\n \n), import_salesforce_campaign AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_campaign') }}\n \n), import_salesforce_campaign_member_field_history AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__campaign_member_field_history') }}\n \n), import_salesforce_partner_engagement AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__partner_engagement') }}\n \n), import_salesforce_task AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__task') }}\n\n), import_salesforce_event AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_event') }}\n\n), import_salesforce_account AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__account') }}\n\n-- Logic --\n\n), user_population AS (\n\n SELECT\n user_id,\n user_role_id,\n from_time,\n to_time,\n SMALLINT(IF(LOWER(role_name) LIKE '%account executive%', 1, 0)) AS is_ae,\n SMALLINT(IF(LOWER(role_name) LIKE '%outbound sdr%'\n OR LOWER(role_name) LIKE '%enterprise sdr%'\n OR LOWER(role_name) LIKE '%outbound team leader%', 1, 0)) AS is_osdr,\n SMALLINT(IF(LOWER(role_name) LIKE '%inbound sdr%', 1, 0)) AS is_isdr\n FROM import_salesforce_user_overtime\n\n), opportunity_population AS (\n\n SELECT\n opportunity.opportunity_id,\n opportunity.account_id,\n opportunity.partner_engagement_id,\n opportunity.entered_demo_date,\n opportunity.created_at AS opportunity_created_at,\n LEAST(opportunity.entered_demo_date, DATE(opportunity.created_at)) AS threshold_date,\n opportunity.close_date AS opportunity_close_date,\n opportunity.estimated_arr_in_usd,\n opportunity.delta_acv_in_usd,\n opportunity.prime_estimated_arr_in_usd,\n opportunity.gold_estimated_arr_in_usd,\n opportunity.order_sales_segment,\n IF(opportunity.order_sales_segment = 'MM', 180, 90) AS threshold_timeframe,\n IF(opportunity.order_sales_segment = 'MM', 90, 30) AS first_action_timeframe,\n opportunity.stage,\n user.is_ae,\n user.is_osdr,\n user.is_isdr\n FROM import_salesforce_opportunity AS opportunity\n LEFT JOIN user_population AS user\n ON opportunity.created_by_sf_user_id = user.user_id\n AND opportunity.created_at BETWEEN user.from_time AND COALESCE(user.to_time, '2999-01-01 00:00:00')\n WHERE LOWER(opportunity.type) IN ('migration to annual', 'new sale')\n AND opportunity.created_at >= '2022-01-01'\n AND NOT (LOWER(opportunity.record_type_name) = 'self service opportunity' AND opportunity.is_ht_ss = 0)\n\n), opportunity_prospect AS (\n\n SELECT\n opportunity.opportunity_id,\n opportunity.account_id,\n opportunity.partner_engagement_id,\n opportunity.entered_demo_date,\n opportunity.opportunity_created_at,\n opportunity.opportunity_close_date,\n opportunity.threshold_date,\n opportunity.threshold_timeframe,\n opportunity.is_ae,\n opportunity.is_osdr,\n opportunity.is_isdr,\n contact.contact_id,\n contact.contact_email,\n lead.lead_id,\n lead.lead_email\n FROM opportunity_population AS opportunity\n INNER JOIN import_salesforce_contact AS contact\n ON opportunity.account_id = contact.account_id\n LEFT JOIN import_salesforce_lead AS lead\n ON contact.contact_id = lead.converted_contact_id\n\n), campaign_member_population AS (\n\n SELECT\n campaign_member.campaign_member_mapping_id,\n campaign.campaign_id,\n campaign.name AS campaign_name,\n campaign.type AS campaign_type,\n campaign.sub_type AS campaign_sub_type,\n campaign_member.who_id AS who_object_id,\n campaign_member.who_type AS who_object_type,\n campaign_member.campaign_member_status AS campaign_member_status,\n campaign_member.campaign_member_mapping_updated_at AS action_time\n FROM import_dim_sf_campaign_member AS campaign_member\n LEFT JOIN import_salesforce_campaign AS campaign\n ON campaign_member.sf_campaign_id = campaign.campaign_id\n\n), campaign_member_history_population AS (\n\n SELECT\n campaign_member.campaign_id,\n campaign_member.campaign_name,\n campaign_member.campaign_type,\n campaign_member.who_object_id,\n campaign_member.who_object_type,\n NVL(campaign_member_history.field_value, campaign_member.campaign_member_status) AS campaign_member_status,\n NVL(campaign_member_history.from_time, campaign_member.action_time) AS action_time\n FROM campaign_member_population AS campaign_member\n LEFT JOIN import_salesforce_campaign_member_field_history AS campaign_member_history\n ON campaign_member.campaign_member_mapping_id = campaign_member_history.campaign_member_id\n\n), partner_engagement_population AS (\n \n SELECT DISTINCT\n opportunity.opportunity_id,\n opportunity.account_id,\n opportunity.entered_demo_date,\n opportunity.opportunity_created_at,\n opportunity.opportunity_close_date,\n opportunity.threshold_date,\n opportunity.threshold_timeframe,\n NVL(GREATEST(partner_engagement.referral_date, partner_engagement.converted_from_heads_up_to_referral_at), partner_engagement.created_at) AS action_time,\n SMALLINT(IF(LOWER(partner_engagement.referral_sub_type) = 'referral', 1, 0)) AS is_referral,\n SMALLINT(IF(LOWER(partner_engagement.referral_sub_type) = 'heads up', 1, 0)) AS is_heads_up,\n SMALLINT(IF(LOWER(partner_engagement.referral_sub_type) = 'influence', 1, 0)) AS is_influence\n FROM import_salesforce_partner_engagement AS partner_engagement\n INNER JOIN opportunity_prospect AS opportunity\n ON partner_engagement.partner_engagement_id = opportunity.partner_engagement_id\n\n), task_population AS (\n \n SELECT DISTINCT\n task.what_object_id,\n task.what_object_type,\n task.who_object_id,\n task.who_object_type,\n task.completion_time AS action_time,\n task.phase,\n task.medium,\n task.subject,\n task.call_status,\n user.is_osdr,\n user.is_isdr,\n user.is_ae,\n SMALLINT(IF(LOWER(task.subject) LIKE '%reply%', 1, 0)) AS is_subject_reply\n FROM import_salesforce_task AS task\n LEFT JOIN user_population AS user\n ON task.owner_user_role_id = user.user_role_id\n WHERE task.is_deleted = 0\n AND LOWER(task.status) = 'completed'\n\n), campaign_member_who_object AS (\n\n SELECT \n NVL(opportunity_lead.opportunity_id, opportunity_contact.opportunity_id) AS opportunity_id,\n NVL(opportunity_lead.account_id, opportunity_contact.account_id) AS account_id,\n NVL(opportunity_lead.entered_demo_date, opportunity_contact.entered_demo_date) AS entered_demo_date,\n NVL(opportunity_lead.opportunity_created_at, opportunity_contact.opportunity_created_at) AS opportunity_created_at,\n NVL(opportunity_lead.opportunity_close_date, opportunity_contact.opportunity_close_date) AS opportunity_close_date,\n NVL(opportunity_lead.threshold_date, opportunity_contact.threshold_date) AS threshold_date,\n NVL(opportunity_lead.threshold_timeframe, opportunity_contact.threshold_timeframe) AS threshold_timeframe,\n campaign_member.action_time,\n campaign_member.campaign_id,\n campaign_member.campaign_name,\n campaign_member.campaign_type,\n campaign_member.campaign_sub_type,\n campaign_member.campaign_member_status\n FROM campaign_member_population AS campaign_member\n LEFT JOIN opportunity_prospect AS opportunity_lead\n ON campaign_member.who_object_id = opportunity_lead.lead_id\n AND LOWER(campaign_member.who_object_type) = 'lead'\n LEFT JOIN opportunity_prospect AS opportunity_contact\n ON campaign_member.who_object_id = opportunity_contact.contact_id\n AND LOWER(campaign_member.who_object_type) = 'contact'\n WHERE NVL(opportunity_lead.lead_id, opportunity_contact.contact_id) IS NOT NULL\n\n), campaign_member_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n action_time,\n DATE(action_time) BETWEEN DATE_SUB(threshold_date, threshold_timeframe) AND threshold_date AS is_action_in_threshold,\n CASE\n WHEN LOWER(campaign_type) IN ('conference / event','event','webinar','co-marketing')\n AND LOWER(campaign_sub_type) NOT IN ('ebooks/ guides','partner event')\n AND LOWER(campaign_member_status) LIKE '%attended%'\n AND LOWER(campaign_member_status) NOT LIKE '%not attended%'\n THEN 'Events'\n WHEN LOWER(campaign_name) LIKE '%eoq%'\n AND LOWER(campaign_member_status) IN ('responded','replied')\n AND action_time < '2023-01-01'\n THEN 'EOQ Campaign'\n WHEN LOWER(campaign_type) = 'demo'\n AND campaign_id <>'701b00000006LCAAA2' \n AND LOWER(campaign_name) NOT LIKE '%drift%'\n AND action_time < '2023-01-01'\n THEN 'RAD'\n ELSE NULL END AS action_name\n FROM campaign_member_who_object\n WHERE ISNOTNULL(opportunity_id)\n\n), campaign_member_history_who_object AS (\n\n SELECT \n NVL(opportunity_lead.opportunity_id, opportunity_contact.opportunity_id) AS opportunity_id,\n NVL(opportunity_lead.account_id, opportunity_contact.account_id) AS account_id,\n NVL(opportunity_lead.entered_demo_date, opportunity_contact.entered_demo_date) AS entered_demo_date,\n NVL(opportunity_lead.opportunity_created_at, opportunity_contact.opportunity_created_at) AS opportunity_created_at,\n NVL(opportunity_lead.opportunity_close_date, opportunity_contact.opportunity_close_date) AS opportunity_close_date,\n NVL(opportunity_lead.threshold_date, opportunity_contact.threshold_date) AS threshold_date,\n NVL(opportunity_lead.threshold_timeframe, opportunity_contact.threshold_timeframe) AS threshold_timeframe,\n campaign_member.action_time,\n campaign_member.campaign_id,\n campaign_member.campaign_name,\n campaign_member.campaign_type,\n campaign_member.campaign_member_status\n FROM campaign_member_history_population AS campaign_member\n LEFT JOIN opportunity_prospect AS opportunity_lead\n ON campaign_member.who_object_id = opportunity_lead.lead_id\n AND LOWER(campaign_member.who_object_type) = 'lead'\n LEFT JOIN opportunity_prospect AS opportunity_contact\n ON campaign_member.who_object_id = opportunity_contact.contact_id\n AND LOWER(campaign_member.who_object_type) = 'contact'\n WHERE NVL(opportunity_lead.lead_id, opportunity_contact.contact_id) IS NOT NULL\n\n), campaign_member_history_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n action_time,\n DATE(action_time) BETWEEN DATE_SUB(threshold_date, threshold_timeframe) AND threshold_date AS is_action_in_threshold,\n CASE\n WHEN campaign_id IN ('7010J000001Hm2AQAS','7013W0000005IiuQAE')\n THEN 'Batch'\n WHEN campaign_id IN ('7013W00000054KxQAI','7013W0000004vhIQAQ')\n THEN 'Triggers'\n WHEN campaign_id = '701b00000006LCAAA2'\n THEN 'LF'\n ELSE NULL END AS action_name\n FROM campaign_member_history_who_object\n WHERE ISNOTNULL(opportunity_id)\n\n), partner_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n action_time,\n CASE WHEN entered_demo_date < DATE(opportunity_created_at)\n THEN DATE(action_time) BETWEEN DATE_SUB(entered_demo_date, threshold_timeframe) AND opportunity_created_at\n WHEN ISNOTNULL(entered_demo_date)\n THEN DATE(action_time) BETWEEN DATE_SUB(opportunity_created_at, threshold_timeframe) AND DATE_ADD(entered_demo_date, 5)\n ELSE DATE(action_time) BETWEEN DATE_SUB(opportunity_created_at, threshold_timeframe) AND opportunity_created_at\n END AS is_action_in_threshold,\n CASE WHEN is_referral = 1 THEN 'Partner Referral'\n WHEN is_heads_up = 1 THEN 'Partner Heads Up'\n WHEN is_influence = 1 THEN 'Partner Influence'\n ELSE NULL END AS action_name\n FROM partner_engagement_population\n WHERE ISNOTNULL(opportunity_id)\n\n), opportunity_creation_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n opportunity_created_at AS action_time,\n true AS is_action_in_threshold,\n CASE\n WHEN is_isdr = 1 THEN 'iSDR Opp Creation'\n WHEN is_osdr = 1 THEN 'oSDR Opp Creation'\n ELSE NULL END AS action_name\n FROM opportunity_prospect\n\n), task_what_object AS (\n\n SELECT DISTINCT\n NVL(opportunity.opportunity_id, opportunity_account.opportunity_id) AS opportunity_id,\n NVL(opportunity.account_id, opportunity_account.account_id) AS account_id,\n NVL(opportunity.entered_demo_date, opportunity_account.entered_demo_date) AS entered_demo_date,\n NVL(opportunity.opportunity_created_at, opportunity_account.opportunity_created_at) AS opportunity_created_at,\n NVL(opportunity.opportunity_close_date, opportunity_account.opportunity_close_date) AS opportunity_close_date,\n NVL(opportunity.threshold_date, opportunity_account.threshold_date) AS threshold_date,\n NVL(opportunity.threshold_timeframe, opportunity_account.threshold_timeframe) AS threshold_timeframe,\n task.action_time,\n task.phase,\n task.medium,\n task.subject,\n task.call_status,\n task.is_osdr,\n task.is_isdr,\n task.is_ae,\n task.is_subject_reply\n FROM task_population AS task\n LEFT JOIN opportunity_prospect AS opportunity\n ON task.what_object_id = opportunity.opportunity_id\n AND LOWER(task.what_object_type) = 'opportunity'\n LEFT JOIN opportunity_prospect AS opportunity_account\n ON task.what_object_id = opportunity_account.account_id\n AND LOWER(task.what_object_type) = 'account'\n\n), task_who_object AS (\n\n SELECT DISTINCT\n NVL(opportunity_lead.opportunity_id, opportunity_contact.opportunity_id) AS opportunity_id,\n NVL(opportunity_lead.account_id, opportunity_contact.account_id) AS account_id,\n NVL(opportunity_lead.entered_demo_date, opportunity_contact.entered_demo_date) AS entered_demo_date,\n NVL(opportunity_lead.opportunity_created_at, opportunity_contact.opportunity_created_at) AS opportunity_created_at,\n NVL(opportunity_lead.opportunity_close_date, opportunity_contact.opportunity_close_date) AS opportunity_close_date,\n NVL(opportunity_lead.threshold_date, opportunity_contact.threshold_date) AS threshold_date,\n NVL(opportunity_lead.threshold_timeframe, opportunity_contact.threshold_timeframe) AS threshold_timeframe,\n task.action_time,\n task.phase,\n task.medium,\n task.subject,\n task.call_status,\n task.is_osdr,\n task.is_isdr,\n task.is_ae,\n task.is_subject_reply\n FROM task_population AS task\n LEFT JOIN opportunity_prospect AS opportunity_lead\n ON task.who_object_id = opportunity_lead.lead_id\n AND LOWER(task.who_object_type) = 'lead'\n LEFT JOIN opportunity_prospect AS opportunity_contact\n ON task.who_object_id = opportunity_contact.contact_id\n AND LOWER(task.who_object_type) = 'contact'\n \n), task_object_combined (\n\n SELECT * FROM task_what_object WHERE ISNOTNULL(opportunity_id)\n UNION ALL\n SELECT * FROM task_who_object WHERE ISNOTNULL(opportunity_id)\n \n), task_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n action_time,\n DATE(action_time) BETWEEN DATE_SUB(threshold_date, threshold_timeframe) AND threshold_date AS is_action_in_threshold,\n CASE \n WHEN LOWER(subject) = 'conversation in drift'\n THEN 'Drift Task'\n WHEN LOWER(phase) = 'outreach'\n AND LOWER(medium) = 'email'\n AND is_subject_reply = 1\n AND is_osdr = 1\n THEN 'oSDR Email Replied'\n WHEN LOWER(medium) = 'phone'\n AND LOWER(call_status) = 'connected'\n AND is_osdr = 1\n THEN 'oSDR Phone Connected'\n WHEN LOWER(medium) = 'phone'\n AND LOWER(call_status) = 'connected'\n AND is_isdr = 1\n THEN 'iSDR Phone Connected'\n WHEN LOWER(medium) = 'phone'\n AND LOWER(call_status) = 'connected'\n AND is_ae = 1\n THEN 'AE Phone Connected'\n WHEN LOWER(phase) = 'outreach'\n AND LOWER(medium) = 'email'\n AND is_subject_reply = 1\n AND is_ae = 1\n THEN 'AE Email Replied'\n ELSE NULL END AS action_name\n FROM task_object_combined\n WHERE ISNOTNULL(opportunity_id)\n\n), event_who_object AS (\n\n SELECT\n event.subject,\n event.cp_meeting_type,\n NVL(opportunity_lead.opportunity_id, opportunity_contact.opportunity_id) AS opportunity_id,\n NVL(opportunity_lead.account_id, opportunity_contact.account_id) AS account_id,\n NVL(opportunity_lead.entered_demo_date, opportunity_contact.entered_demo_date) AS entered_demo_date,\n NVL(opportunity_lead.opportunity_created_at, opportunity_contact.opportunity_created_at) AS opportunity_created_at,\n NVL(opportunity_lead.opportunity_close_date, opportunity_contact.opportunity_close_date) AS opportunity_close_date,\n NVL(opportunity_lead.threshold_date, opportunity_contact.threshold_date) AS threshold_date,\n NVL(opportunity_lead.threshold_timeframe, opportunity_contact.threshold_timeframe) AS threshold_timeframe,\n event.created_at AS action_time\n FROM import_salesforce_event AS event\n LEFT JOIN opportunity_prospect AS opportunity_lead\n ON event.who_object_id = opportunity_lead.lead_id\n LEFT JOIN opportunity_prospect AS opportunity_contact\n ON event.who_object_id = opportunity_contact.contact_id\n WHERE NVL(opportunity_lead.lead_id, opportunity_contact.contact_id) IS NOT NULL\n\n), event_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n action_time,\n DATE(action_time) BETWEEN DATE_SUB(threshold_date, threshold_timeframe) AND threshold_date AS is_action_in_threshold,\n CASE\n WHEN cp_meeting_type IN (\n 'Intro Call - US',\n 'Intro Call - UK',\n 'Demo Request - US',\n 'Demo Request - UK',\n 'Demo Request - IL',\n 'Demo Request - AU',\n 'Intro Call - AU',\n 'Demo Request - ALL',\n 'Yotpo Call - RAD',\n 'Yotpo Demo',\n 'Nurture - Loyalty')\n AND action_time >= '2023-01-01'\n THEN 'RAD Event'\n WHEN cp_meeting_type = 'EOQ Campaign'\n AND action_time >= '2023-01-01'\n THEN 'EOQ_campaign_event'\n WHEN (LOWER(cp_meeting_type) LIKE '%pql%'\n OR cp_meeting_type = 'Yotpo SMSBump Call')\n AND action_time >= '2023-01-01'\n THEN 'PQL Event'\n WHEN LOWER(subject) = 'meeting booked with drift'\n AND action_time >= '2021-06-01'\n THEN 'Drift Event'\n ELSE NULL END AS action_name\n FROM event_who_object\n WHERE ISNOTNULL(opportunity_id)\n\n), opportunity_actions_union AS (\n\n SELECT * FROM campaign_member_actions\n WHERE action_name IS NOT NULL\n AND is_action_in_threshold\n UNION ALL\n SELECT * FROM campaign_member_history_actions\n WHERE action_name IS NOT NULL\n AND is_action_in_threshold\n UNION ALL\n SELECT * FROM partner_actions\n WHERE action_name IS NOT NULL\n AND is_action_in_threshold\n UNION ALL\n SELECT * FROM task_actions\n WHERE action_name IS NOT NULL\n AND is_action_in_threshold\n UNION ALL\n SELECT * FROM event_actions\n WHERE action_name IS NOT NULL\n AND is_action_in_threshold\n UNION ALL\n SELECT * FROM opportunity_creation_actions\n WHERE action_name IS NOT NULL\n\n), opportunity_actions_w_daily_rank AS (\n\n SELECT\n opportunity_id,\n action_time,\n action_name,\n ROW_NUMBER() OVER (PARTITION BY opportunity_id, action_name, DATE(action_time) ORDER BY action_time DESC) AS same_action_daily_rank\n FROM opportunity_actions_union\n\n), opportunity_attribution_action_res AS (\n\n SELECT\n opportunity.opportunity_id,\n action.action_time,\n action.action_name,\n opportunity.account_id,\n opportunity.entered_demo_date,\n opportunity.opportunity_created_at,\n opportunity.opportunity_close_date,\n opportunity.order_sales_segment,\n opportunity.stage AS opportunity_stage,\n opportunity.delta_acv_in_usd,\n opportunity.estimated_arr_in_usd,\n opportunity.prime_estimated_arr_in_usd,\n opportunity.gold_estimated_arr_in_usd,\n opportunity.first_action_timeframe,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM opportunity_population AS opportunity\n LEFT JOIN opportunity_actions_w_daily_rank AS action\n ON opportunity.opportunity_id = action.opportunity_id\n AND same_action_daily_rank = 1\n\n)\n\n-- Result --\n\nSELECT * FROM opportunity_attribution_action_res", "language": "sql", "refs": [{"name": "analytics___salesforce__user_overtime", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_contact", "package": null, "version": null}, {"name": "analytics___salesforce__lead", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_campaign", "package": null, "version": null}, {"name": "analytics___salesforce__campaign_member_field_history", "package": null, "version": null}, {"name": "analytics___salesforce__partner_engagement", "package": null, "version": null}, {"name": "analytics___salesforce__task", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_event", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__user_overtime", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__mc_contact", "model.yoda.analytics___salesforce__lead", "model.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping", "model.yoda.analytics___salesforce_stg__mc_campaign", "model.yoda.analytics___salesforce__campaign_member_field_history", "model.yoda.analytics___salesforce__partner_engagement", "model.yoda.analytics___salesforce__task", "model.yoda.analytics___salesforce_stg__mc_event", "model.yoda.analytics___salesforce__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_user_overtime AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__user_overtime\n\n), import_salesforce_opportunity AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n \n), import_salesforce_contact AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_contact\n \n), import_salesforce_lead AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__lead\n \n), import_dim_sf_campaign_member AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__dim_sf_campaign_member_mapping\n \n), import_salesforce_campaign AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_campaign\n \n), import_salesforce_campaign_member_field_history AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__campaign_member_field_history\n \n), import_salesforce_partner_engagement AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__partner_engagement\n \n), import_salesforce_task AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__task\n\n), import_salesforce_event AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_event\n\n), import_salesforce_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__account\n\n-- Logic --\n\n), user_population AS (\n\n SELECT\n user_id,\n user_role_id,\n from_time,\n to_time,\n SMALLINT(IF(LOWER(role_name) LIKE '%account executive%', 1, 0)) AS is_ae,\n SMALLINT(IF(LOWER(role_name) LIKE '%outbound sdr%'\n OR LOWER(role_name) LIKE '%enterprise sdr%'\n OR LOWER(role_name) LIKE '%outbound team leader%', 1, 0)) AS is_osdr,\n SMALLINT(IF(LOWER(role_name) LIKE '%inbound sdr%', 1, 0)) AS is_isdr\n FROM import_salesforce_user_overtime\n\n), opportunity_population AS (\n\n SELECT\n opportunity.opportunity_id,\n opportunity.account_id,\n opportunity.partner_engagement_id,\n opportunity.entered_demo_date,\n opportunity.created_at AS opportunity_created_at,\n LEAST(opportunity.entered_demo_date, DATE(opportunity.created_at)) AS threshold_date,\n opportunity.close_date AS opportunity_close_date,\n opportunity.estimated_arr_in_usd,\n opportunity.delta_acv_in_usd,\n opportunity.prime_estimated_arr_in_usd,\n opportunity.gold_estimated_arr_in_usd,\n opportunity.order_sales_segment,\n IF(opportunity.order_sales_segment = 'MM', 180, 90) AS threshold_timeframe,\n IF(opportunity.order_sales_segment = 'MM', 90, 30) AS first_action_timeframe,\n opportunity.stage,\n user.is_ae,\n user.is_osdr,\n user.is_isdr\n FROM import_salesforce_opportunity AS opportunity\n LEFT JOIN user_population AS user\n ON opportunity.created_by_sf_user_id = user.user_id\n AND opportunity.created_at BETWEEN user.from_time AND COALESCE(user.to_time, '2999-01-01 00:00:00')\n WHERE LOWER(opportunity.type) IN ('migration to annual', 'new sale')\n AND opportunity.created_at >= '2022-01-01'\n AND NOT (LOWER(opportunity.record_type_name) = 'self service opportunity' AND opportunity.is_ht_ss = 0)\n\n), opportunity_prospect AS (\n\n SELECT\n opportunity.opportunity_id,\n opportunity.account_id,\n opportunity.partner_engagement_id,\n opportunity.entered_demo_date,\n opportunity.opportunity_created_at,\n opportunity.opportunity_close_date,\n opportunity.threshold_date,\n opportunity.threshold_timeframe,\n opportunity.is_ae,\n opportunity.is_osdr,\n opportunity.is_isdr,\n contact.contact_id,\n contact.contact_email,\n lead.lead_id,\n lead.lead_email\n FROM opportunity_population AS opportunity\n INNER JOIN import_salesforce_contact AS contact\n ON opportunity.account_id = contact.account_id\n LEFT JOIN import_salesforce_lead AS lead\n ON contact.contact_id = lead.converted_contact_id\n\n), campaign_member_population AS (\n\n SELECT\n campaign_member.campaign_member_mapping_id,\n campaign.campaign_id,\n campaign.name AS campaign_name,\n campaign.type AS campaign_type,\n campaign.sub_type AS campaign_sub_type,\n campaign_member.who_id AS who_object_id,\n campaign_member.who_type AS who_object_type,\n campaign_member.campaign_member_status AS campaign_member_status,\n campaign_member.campaign_member_mapping_updated_at AS action_time\n FROM import_dim_sf_campaign_member AS campaign_member\n LEFT JOIN import_salesforce_campaign AS campaign\n ON campaign_member.sf_campaign_id = campaign.campaign_id\n\n), campaign_member_history_population AS (\n\n SELECT\n campaign_member.campaign_id,\n campaign_member.campaign_name,\n campaign_member.campaign_type,\n campaign_member.who_object_id,\n campaign_member.who_object_type,\n NVL(campaign_member_history.field_value, campaign_member.campaign_member_status) AS campaign_member_status,\n NVL(campaign_member_history.from_time, campaign_member.action_time) AS action_time\n FROM campaign_member_population AS campaign_member\n LEFT JOIN import_salesforce_campaign_member_field_history AS campaign_member_history\n ON campaign_member.campaign_member_mapping_id = campaign_member_history.campaign_member_id\n\n), partner_engagement_population AS (\n \n SELECT DISTINCT\n opportunity.opportunity_id,\n opportunity.account_id,\n opportunity.entered_demo_date,\n opportunity.opportunity_created_at,\n opportunity.opportunity_close_date,\n opportunity.threshold_date,\n opportunity.threshold_timeframe,\n NVL(GREATEST(partner_engagement.referral_date, partner_engagement.converted_from_heads_up_to_referral_at), partner_engagement.created_at) AS action_time,\n SMALLINT(IF(LOWER(partner_engagement.referral_sub_type) = 'referral', 1, 0)) AS is_referral,\n SMALLINT(IF(LOWER(partner_engagement.referral_sub_type) = 'heads up', 1, 0)) AS is_heads_up,\n SMALLINT(IF(LOWER(partner_engagement.referral_sub_type) = 'influence', 1, 0)) AS is_influence\n FROM import_salesforce_partner_engagement AS partner_engagement\n INNER JOIN opportunity_prospect AS opportunity\n ON partner_engagement.partner_engagement_id = opportunity.partner_engagement_id\n\n), task_population AS (\n \n SELECT DISTINCT\n task.what_object_id,\n task.what_object_type,\n task.who_object_id,\n task.who_object_type,\n task.completion_time AS action_time,\n task.phase,\n task.medium,\n task.subject,\n task.call_status,\n user.is_osdr,\n user.is_isdr,\n user.is_ae,\n SMALLINT(IF(LOWER(task.subject) LIKE '%reply%', 1, 0)) AS is_subject_reply\n FROM import_salesforce_task AS task\n LEFT JOIN user_population AS user\n ON task.owner_user_role_id = user.user_role_id\n WHERE task.is_deleted = 0\n AND LOWER(task.status) = 'completed'\n\n), campaign_member_who_object AS (\n\n SELECT \n NVL(opportunity_lead.opportunity_id, opportunity_contact.opportunity_id) AS opportunity_id,\n NVL(opportunity_lead.account_id, opportunity_contact.account_id) AS account_id,\n NVL(opportunity_lead.entered_demo_date, opportunity_contact.entered_demo_date) AS entered_demo_date,\n NVL(opportunity_lead.opportunity_created_at, opportunity_contact.opportunity_created_at) AS opportunity_created_at,\n NVL(opportunity_lead.opportunity_close_date, opportunity_contact.opportunity_close_date) AS opportunity_close_date,\n NVL(opportunity_lead.threshold_date, opportunity_contact.threshold_date) AS threshold_date,\n NVL(opportunity_lead.threshold_timeframe, opportunity_contact.threshold_timeframe) AS threshold_timeframe,\n campaign_member.action_time,\n campaign_member.campaign_id,\n campaign_member.campaign_name,\n campaign_member.campaign_type,\n campaign_member.campaign_sub_type,\n campaign_member.campaign_member_status\n FROM campaign_member_population AS campaign_member\n LEFT JOIN opportunity_prospect AS opportunity_lead\n ON campaign_member.who_object_id = opportunity_lead.lead_id\n AND LOWER(campaign_member.who_object_type) = 'lead'\n LEFT JOIN opportunity_prospect AS opportunity_contact\n ON campaign_member.who_object_id = opportunity_contact.contact_id\n AND LOWER(campaign_member.who_object_type) = 'contact'\n WHERE NVL(opportunity_lead.lead_id, opportunity_contact.contact_id) IS NOT NULL\n\n), campaign_member_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n action_time,\n DATE(action_time) BETWEEN DATE_SUB(threshold_date, threshold_timeframe) AND threshold_date AS is_action_in_threshold,\n CASE\n WHEN LOWER(campaign_type) IN ('conference / event','event','webinar','co-marketing')\n AND LOWER(campaign_sub_type) NOT IN ('ebooks/ guides','partner event')\n AND LOWER(campaign_member_status) LIKE '%attended%'\n AND LOWER(campaign_member_status) NOT LIKE '%not attended%'\n THEN 'Events'\n WHEN LOWER(campaign_name) LIKE '%eoq%'\n AND LOWER(campaign_member_status) IN ('responded','replied')\n AND action_time < '2023-01-01'\n THEN 'EOQ Campaign'\n WHEN LOWER(campaign_type) = 'demo'\n AND campaign_id <>'701b00000006LCAAA2' \n AND LOWER(campaign_name) NOT LIKE '%drift%'\n AND action_time < '2023-01-01'\n THEN 'RAD'\n ELSE NULL END AS action_name\n FROM campaign_member_who_object\n WHERE ISNOTNULL(opportunity_id)\n\n), campaign_member_history_who_object AS (\n\n SELECT \n NVL(opportunity_lead.opportunity_id, opportunity_contact.opportunity_id) AS opportunity_id,\n NVL(opportunity_lead.account_id, opportunity_contact.account_id) AS account_id,\n NVL(opportunity_lead.entered_demo_date, opportunity_contact.entered_demo_date) AS entered_demo_date,\n NVL(opportunity_lead.opportunity_created_at, opportunity_contact.opportunity_created_at) AS opportunity_created_at,\n NVL(opportunity_lead.opportunity_close_date, opportunity_contact.opportunity_close_date) AS opportunity_close_date,\n NVL(opportunity_lead.threshold_date, opportunity_contact.threshold_date) AS threshold_date,\n NVL(opportunity_lead.threshold_timeframe, opportunity_contact.threshold_timeframe) AS threshold_timeframe,\n campaign_member.action_time,\n campaign_member.campaign_id,\n campaign_member.campaign_name,\n campaign_member.campaign_type,\n campaign_member.campaign_member_status\n FROM campaign_member_history_population AS campaign_member\n LEFT JOIN opportunity_prospect AS opportunity_lead\n ON campaign_member.who_object_id = opportunity_lead.lead_id\n AND LOWER(campaign_member.who_object_type) = 'lead'\n LEFT JOIN opportunity_prospect AS opportunity_contact\n ON campaign_member.who_object_id = opportunity_contact.contact_id\n AND LOWER(campaign_member.who_object_type) = 'contact'\n WHERE NVL(opportunity_lead.lead_id, opportunity_contact.contact_id) IS NOT NULL\n\n), campaign_member_history_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n action_time,\n DATE(action_time) BETWEEN DATE_SUB(threshold_date, threshold_timeframe) AND threshold_date AS is_action_in_threshold,\n CASE\n WHEN campaign_id IN ('7010J000001Hm2AQAS','7013W0000005IiuQAE')\n THEN 'Batch'\n WHEN campaign_id IN ('7013W00000054KxQAI','7013W0000004vhIQAQ')\n THEN 'Triggers'\n WHEN campaign_id = '701b00000006LCAAA2'\n THEN 'LF'\n ELSE NULL END AS action_name\n FROM campaign_member_history_who_object\n WHERE ISNOTNULL(opportunity_id)\n\n), partner_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n action_time,\n CASE WHEN entered_demo_date < DATE(opportunity_created_at)\n THEN DATE(action_time) BETWEEN DATE_SUB(entered_demo_date, threshold_timeframe) AND opportunity_created_at\n WHEN ISNOTNULL(entered_demo_date)\n THEN DATE(action_time) BETWEEN DATE_SUB(opportunity_created_at, threshold_timeframe) AND DATE_ADD(entered_demo_date, 5)\n ELSE DATE(action_time) BETWEEN DATE_SUB(opportunity_created_at, threshold_timeframe) AND opportunity_created_at\n END AS is_action_in_threshold,\n CASE WHEN is_referral = 1 THEN 'Partner Referral'\n WHEN is_heads_up = 1 THEN 'Partner Heads Up'\n WHEN is_influence = 1 THEN 'Partner Influence'\n ELSE NULL END AS action_name\n FROM partner_engagement_population\n WHERE ISNOTNULL(opportunity_id)\n\n), opportunity_creation_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n opportunity_created_at AS action_time,\n true AS is_action_in_threshold,\n CASE\n WHEN is_isdr = 1 THEN 'iSDR Opp Creation'\n WHEN is_osdr = 1 THEN 'oSDR Opp Creation'\n ELSE NULL END AS action_name\n FROM opportunity_prospect\n\n), task_what_object AS (\n\n SELECT DISTINCT\n NVL(opportunity.opportunity_id, opportunity_account.opportunity_id) AS opportunity_id,\n NVL(opportunity.account_id, opportunity_account.account_id) AS account_id,\n NVL(opportunity.entered_demo_date, opportunity_account.entered_demo_date) AS entered_demo_date,\n NVL(opportunity.opportunity_created_at, opportunity_account.opportunity_created_at) AS opportunity_created_at,\n NVL(opportunity.opportunity_close_date, opportunity_account.opportunity_close_date) AS opportunity_close_date,\n NVL(opportunity.threshold_date, opportunity_account.threshold_date) AS threshold_date,\n NVL(opportunity.threshold_timeframe, opportunity_account.threshold_timeframe) AS threshold_timeframe,\n task.action_time,\n task.phase,\n task.medium,\n task.subject,\n task.call_status,\n task.is_osdr,\n task.is_isdr,\n task.is_ae,\n task.is_subject_reply\n FROM task_population AS task\n LEFT JOIN opportunity_prospect AS opportunity\n ON task.what_object_id = opportunity.opportunity_id\n AND LOWER(task.what_object_type) = 'opportunity'\n LEFT JOIN opportunity_prospect AS opportunity_account\n ON task.what_object_id = opportunity_account.account_id\n AND LOWER(task.what_object_type) = 'account'\n\n), task_who_object AS (\n\n SELECT DISTINCT\n NVL(opportunity_lead.opportunity_id, opportunity_contact.opportunity_id) AS opportunity_id,\n NVL(opportunity_lead.account_id, opportunity_contact.account_id) AS account_id,\n NVL(opportunity_lead.entered_demo_date, opportunity_contact.entered_demo_date) AS entered_demo_date,\n NVL(opportunity_lead.opportunity_created_at, opportunity_contact.opportunity_created_at) AS opportunity_created_at,\n NVL(opportunity_lead.opportunity_close_date, opportunity_contact.opportunity_close_date) AS opportunity_close_date,\n NVL(opportunity_lead.threshold_date, opportunity_contact.threshold_date) AS threshold_date,\n NVL(opportunity_lead.threshold_timeframe, opportunity_contact.threshold_timeframe) AS threshold_timeframe,\n task.action_time,\n task.phase,\n task.medium,\n task.subject,\n task.call_status,\n task.is_osdr,\n task.is_isdr,\n task.is_ae,\n task.is_subject_reply\n FROM task_population AS task\n LEFT JOIN opportunity_prospect AS opportunity_lead\n ON task.who_object_id = opportunity_lead.lead_id\n AND LOWER(task.who_object_type) = 'lead'\n LEFT JOIN opportunity_prospect AS opportunity_contact\n ON task.who_object_id = opportunity_contact.contact_id\n AND LOWER(task.who_object_type) = 'contact'\n \n), task_object_combined (\n\n SELECT * FROM task_what_object WHERE ISNOTNULL(opportunity_id)\n UNION ALL\n SELECT * FROM task_who_object WHERE ISNOTNULL(opportunity_id)\n \n), task_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n action_time,\n DATE(action_time) BETWEEN DATE_SUB(threshold_date, threshold_timeframe) AND threshold_date AS is_action_in_threshold,\n CASE \n WHEN LOWER(subject) = 'conversation in drift'\n THEN 'Drift Task'\n WHEN LOWER(phase) = 'outreach'\n AND LOWER(medium) = 'email'\n AND is_subject_reply = 1\n AND is_osdr = 1\n THEN 'oSDR Email Replied'\n WHEN LOWER(medium) = 'phone'\n AND LOWER(call_status) = 'connected'\n AND is_osdr = 1\n THEN 'oSDR Phone Connected'\n WHEN LOWER(medium) = 'phone'\n AND LOWER(call_status) = 'connected'\n AND is_isdr = 1\n THEN 'iSDR Phone Connected'\n WHEN LOWER(medium) = 'phone'\n AND LOWER(call_status) = 'connected'\n AND is_ae = 1\n THEN 'AE Phone Connected'\n WHEN LOWER(phase) = 'outreach'\n AND LOWER(medium) = 'email'\n AND is_subject_reply = 1\n AND is_ae = 1\n THEN 'AE Email Replied'\n ELSE NULL END AS action_name\n FROM task_object_combined\n WHERE ISNOTNULL(opportunity_id)\n\n), event_who_object AS (\n\n SELECT\n event.subject,\n event.cp_meeting_type,\n NVL(opportunity_lead.opportunity_id, opportunity_contact.opportunity_id) AS opportunity_id,\n NVL(opportunity_lead.account_id, opportunity_contact.account_id) AS account_id,\n NVL(opportunity_lead.entered_demo_date, opportunity_contact.entered_demo_date) AS entered_demo_date,\n NVL(opportunity_lead.opportunity_created_at, opportunity_contact.opportunity_created_at) AS opportunity_created_at,\n NVL(opportunity_lead.opportunity_close_date, opportunity_contact.opportunity_close_date) AS opportunity_close_date,\n NVL(opportunity_lead.threshold_date, opportunity_contact.threshold_date) AS threshold_date,\n NVL(opportunity_lead.threshold_timeframe, opportunity_contact.threshold_timeframe) AS threshold_timeframe,\n event.created_at AS action_time\n FROM import_salesforce_event AS event\n LEFT JOIN opportunity_prospect AS opportunity_lead\n ON event.who_object_id = opportunity_lead.lead_id\n LEFT JOIN opportunity_prospect AS opportunity_contact\n ON event.who_object_id = opportunity_contact.contact_id\n WHERE NVL(opportunity_lead.lead_id, opportunity_contact.contact_id) IS NOT NULL\n\n), event_actions AS (\n\n SELECT DISTINCT\n opportunity_id,\n action_time,\n DATE(action_time) BETWEEN DATE_SUB(threshold_date, threshold_timeframe) AND threshold_date AS is_action_in_threshold,\n CASE\n WHEN cp_meeting_type IN (\n 'Intro Call - US',\n 'Intro Call - UK',\n 'Demo Request - US',\n 'Demo Request - UK',\n 'Demo Request - IL',\n 'Demo Request - AU',\n 'Intro Call - AU',\n 'Demo Request - ALL',\n 'Yotpo Call - RAD',\n 'Yotpo Demo',\n 'Nurture - Loyalty')\n AND action_time >= '2023-01-01'\n THEN 'RAD Event'\n WHEN cp_meeting_type = 'EOQ Campaign'\n AND action_time >= '2023-01-01'\n THEN 'EOQ_campaign_event'\n WHEN (LOWER(cp_meeting_type) LIKE '%pql%'\n OR cp_meeting_type = 'Yotpo SMSBump Call')\n AND action_time >= '2023-01-01'\n THEN 'PQL Event'\n WHEN LOWER(subject) = 'meeting booked with drift'\n AND action_time >= '2021-06-01'\n THEN 'Drift Event'\n ELSE NULL END AS action_name\n FROM event_who_object\n WHERE ISNOTNULL(opportunity_id)\n\n), opportunity_actions_union AS (\n\n SELECT * FROM campaign_member_actions\n WHERE action_name IS NOT NULL\n AND is_action_in_threshold\n UNION ALL\n SELECT * FROM campaign_member_history_actions\n WHERE action_name IS NOT NULL\n AND is_action_in_threshold\n UNION ALL\n SELECT * FROM partner_actions\n WHERE action_name IS NOT NULL\n AND is_action_in_threshold\n UNION ALL\n SELECT * FROM task_actions\n WHERE action_name IS NOT NULL\n AND is_action_in_threshold\n UNION ALL\n SELECT * FROM event_actions\n WHERE action_name IS NOT NULL\n AND is_action_in_threshold\n UNION ALL\n SELECT * FROM opportunity_creation_actions\n WHERE action_name IS NOT NULL\n\n), opportunity_actions_w_daily_rank AS (\n\n SELECT\n opportunity_id,\n action_time,\n action_name,\n ROW_NUMBER() OVER (PARTITION BY opportunity_id, action_name, DATE(action_time) ORDER BY action_time DESC) AS same_action_daily_rank\n FROM opportunity_actions_union\n\n), opportunity_attribution_action_res AS (\n\n SELECT\n opportunity.opportunity_id,\n action.action_time,\n action.action_name,\n opportunity.account_id,\n opportunity.entered_demo_date,\n opportunity.opportunity_created_at,\n opportunity.opportunity_close_date,\n opportunity.order_sales_segment,\n opportunity.stage AS opportunity_stage,\n opportunity.delta_acv_in_usd,\n opportunity.estimated_arr_in_usd,\n opportunity.prime_estimated_arr_in_usd,\n opportunity.gold_estimated_arr_in_usd,\n opportunity.first_action_timeframe,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM opportunity_population AS opportunity\n LEFT JOIN opportunity_actions_w_daily_rank AS action\n ON opportunity.opportunity_id = action.opportunity_id\n AND same_action_daily_rank = 1\n\n)\n\n-- Result --\n\nSELECT * FROM opportunity_attribution_action_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm__opportunity_attribution": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm__opportunity_attribution", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.sql", "unique_id": "model.yoda.analytics___gtm__opportunity_attribution", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__opportunity_attribution", "analytics___gtm__opportunity_attribution"], "alias": "analytics___gtm__opportunity_attribution", "checksum": {"name": "sha256", "checksum": "1c03f3aa05fc2f30143359c13229d99f9359d936c480fc65f2af4c8aa2f988e3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "gtm", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "gtm"], "description": "A view combining attribution channels for new sales and crossells, this model's data is injected to Salesforce opportunity object | PK & Granularity: opportunity_id", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel": {"name": "attribution_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["gtm", "analytics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.8357174, "relation_name": "dev_dkruh1.analytics___gtm__opportunity_attribution", "raw_code": "{{ config( materialized = 'view' ) }}\n\n-- Import --\n\nWITH import_new_sale_opportunity_attribution AS (\n\n SELECT * FROM {{ ref('analytics___gtm__new_sale_opportunity_attribution') }}\n\n), import_crossell_opportunity_attribution AS (\n\n SELECT * FROM {{ ref('analytics___gtm__crossell_opportunity_attribution') }}\n\n-- Logic --\n\n), new_sale_attribution AS (\n\n SELECT DISTINCT\n opportunity_id,\n attribution_channel\n FROM import_new_sale_opportunity_attribution\n\n), crossell_attribution AS (\n\n SELECT\n opportunity_id,\n attribution_channel\n FROM import_crossell_opportunity_attribution\n\n), attribution_union AS (\n\n SELECT * FROM new_sale_attribution\n UNION ALL\n SELECT * FROM crossell_attribution\n\n)\n\n-- Result --\n\nSELECT * FROM attribution_union", "language": "sql", "refs": [{"name": "analytics___gtm__new_sale_opportunity_attribution", "package": null, "version": null}, {"name": "analytics___gtm__crossell_opportunity_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution", "model.yoda.analytics___gtm__crossell_opportunity_attribution"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_new_sale_opportunity_attribution AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm__new_sale_opportunity_attribution\n\n), import_crossell_opportunity_attribution AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm__crossell_opportunity_attribution\n\n-- Logic --\n\n), new_sale_attribution AS (\n\n SELECT DISTINCT\n opportunity_id,\n attribution_channel\n FROM import_new_sale_opportunity_attribution\n\n), crossell_attribution AS (\n\n SELECT\n opportunity_id,\n attribution_channel\n FROM import_crossell_opportunity_attribution\n\n), attribution_union AS (\n\n SELECT * FROM new_sale_attribution\n UNION ALL\n SELECT * FROM crossell_attribution\n\n)\n\n-- Result --\n\nSELECT * FROM attribution_union", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm__opportunity_goal": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm__opportunity_goal", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.sql", "unique_id": "model.yoda.analytics___gtm__opportunity_goal", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__opportunity_goal", "analytics___gtm__opportunity_goal"], "alias": "analytics___gtm__opportunity_goal", "checksum": {"name": "sha256", "checksum": "684c39b7ac33d9047791340994d24961b1d9689d4146f9355084a1d7fd9663a4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "gtm", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "gtm"], "description": "A modeled table holding new sale/migration to annual opportunitis, exploded on each opportunity's attribution channels and products.|\nEach opportuntiy also holds the according performance goals (acv/sal) including totals (no overlap) goals in columns.|\nIn case a goal doesn't meet any opportunity with the same parameters (month, region, order_bucket...) it will have its own line in the table w/o opporutnity details.|\nPK: opportunity_goal_id | Granulatiry: opportunity_id, acv_goal_id, sal_goal_id, product_family_group, attribution_channel", "columns": {"opportunity_goal_id": {"name": "opportunity_goal_id", "description": "Designated id made of granularity fields combinataion using sha2 hashing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "Granulatiry 1/5", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "acv_goal_id": {"name": "acv_goal_id", "description": "Granulatiry 2/5", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sal_goal_id": {"name": "sal_goal_id", "description": "Granulatiry 3/5", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "opportunity's salesforce account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "entered_demo_date": {"name": "entered_demo_date", "description": "opportunity's demo date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "close_date": {"name": "close_date", "description": "opportunity's close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_acv": {"name": "product_acv", "description": "line item product's acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(30,2)"}, "product_estimated_arr": {"name": "product_estimated_arr", "description": "line item product's earr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_pipeline_usd": {"name": "product_pipeline_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opportunity_order_bucket": {"name": "opportunity_order_bucket", "description": "opportunity's order bucket", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "order_bucket_group": {"name": "order_bucket_group", "description": "order bucket group for opportunity/acv goal/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel": {"name": "attribution_channel", "description": "Granulatiry 5/5 - single (exploded) attribution channel from the opportunity's attribution channels", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel_overlap": {"name": "attribution_channel_overlap", "description": "All related attribution channels for the opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_stage": {"name": "opportunity_stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_stream": {"name": "revenue_stream", "description": "revenue stream for opportunity/acv goal/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type": {"name": "deal_type", "description": "deal type for opportunity/acv goal/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "sales region for opportunity/acv goal/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "Granulatiry 4/5", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "close_month": {"name": "close_month", "description": "close month for opportunity/acv goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sal_month": {"name": "sal_month", "description": "sal (demo) month for opportunity/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "monthly_acv_goal": {"name": "monthly_acv_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_acv_goal": {"name": "forecast_acv_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dg_overlap_monthly_acv_goal": {"name": "dg_overlap_monthly_acv_goal", "description": "monthly acv goal for all attribution channel - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dg_overlap_forecast_acv_goal": {"name": "dg_overlap_forecast_acv_goal", "description": "forecast acv goal for all attribution channel - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "monthly_sal_goal": {"name": "monthly_sal_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_sal_goal": {"name": "forecast_sal_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dg_overlap_monthly_sal_goal": {"name": "dg_overlap_monthly_sal_goal", "description": "monthly sal goal for all attribution channel - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dg_overlap_forecast_sal_goal": {"name": "dg_overlap_forecast_sal_goal", "description": "forecast sal goal for all attribution channel - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_overlap_monthly_sal_goal": {"name": "product_overlap_monthly_sal_goal", "description": "monthly sal goal for all products - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_overlap_forecast_sal_goal": {"name": "product_overlap_forecast_sal_goal", "description": "forecast sal goal for all products - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opportunity_created_date": {"name": "opportunity_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_prime": {"name": "is_prime", "description": "if product is reviews and deal type is self-service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_gold": {"name": "is_gold", "description": "if product is loyalty and deal type is self-service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["gtm", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.890832, "relation_name": "dev_dkruh1.analytics___gtm__opportunity_goal", "raw_code": "-- Import --\n\nWITH import_new_revenue_deal_product AS (\n\n SELECT * FROM {{ ref('analytics___new_revenue__deal_product') }}\n\n), import_gtm_acv_goal AS (\n\n SELECT * FROM {{ ref('analytics___gtm_stg__acv_goal') }}\n\n), import_gtm_sal_goal AS (\n\n SELECT * FROM {{ ref('analytics___gtm_stg__sal_goal') }}\n\n-- Logic --\n\n), opportunity_estimated_orders AS (\n\n SELECT\n opportunity_id,\n account_id,\n entered_demo_date,\n close_date,\n created_date,\n stage,\n attribution_channel AS attribution_channel_overlap,\n EXPLODE_OUTER(SPLIT(attribution_channel, ';')) AS attribution_channel,\n revenue_stream,\n ht_ss_flag AS deal_type,\n goal_process_sales_region AS sales_region,\n platform,\n product AS product_family_group,\n product_line_acv AS product_acv,\n product_line_earr AS product_estimated_arr,\n pipeline_usd AS product_pipeline_usd,\n IF(NVL(INT(estimated_review_requests_per_month), 0) <= 1, 0, INT(estimated_review_requests_per_month)) AS estimated_monthly_orders_at_close,\n CASE WHEN estimated_monthly_order_range LIKE '%-%'\n THEN INT(REPLACE(SPLIT(estimated_monthly_order_range, '-')[0], ',', ''))\n WHEN estimated_monthly_order_range LIKE '%+%'\n THEN INT(REPLACE(REPLACE(estimated_monthly_order_range, '+', ''), ',', ''))\n ELSE INT(estimated_monthly_order_range)\n END AS estimated_monthly_orders_original\n FROM import_new_revenue_deal_product\n WHERE LOWER(type) IN ('migration to annual', 'new sale')\n AND created_date >= '2022-01-01'\n AND NOT (LOWER(record_type_name) = 'self service opportunity' AND is_ht_ss = 0)\n\n), opportunity_order_bucket AS (\n\n SELECT\n opportunity_id,\n account_id,\n entered_demo_date,\n close_date,\n created_date,\n stage,\n attribution_channel,\n attribution_channel_overlap,\n revenue_stream,\n deal_type,\n sales_region,\n platform,\n product_family_group,\n product_estimated_arr,\n IF(estimated_monthly_orders_at_close > 0, estimated_monthly_orders_at_close, NVL(estimated_monthly_orders_original, 0)) AS order_bucket,\n product_acv,\n product_pipeline_usd\n FROM opportunity_estimated_orders\n\n), opportunity_order_bucket_group AS (\n\n SELECT\n opportunity_id,\n account_id,\n entered_demo_date,\n close_date,\n created_date,\n stage,\n attribution_channel,\n attribution_channel_overlap,\n revenue_stream,\n deal_type,\n sales_region,\n platform,\n product_family_group,\n product_acv,\n product_estimated_arr,\n product_pipeline_usd,\n order_bucket,\n LOWER(CONCAT(sales_region, product_family_group, deal_type, revenue_stream, attribution_channel)) AS goal_process_id,\n CASE\n WHEN order_bucket >= 20000 THEN '20K+'\n WHEN order_bucket >= 10000 THEN '10K-20K'\n WHEN order_bucket >= 3000 THEN '3K-10K'\n WHEN order_bucket >= 1000 THEN '1K-3K'\n WHEN order_bucket >= 400 THEN '400-1K'\n WHEN order_bucket >= 0 THEN '0-400'\n END AS order_bucket_group\n FROM opportunity_order_bucket\n\n), segment_to_order_bucket_mapping AS (\n\n SELECT * FROM VALUES \n ('vsb minus', '0-400'),\n ('vsb', '400-1K'),\n ('smb minus', '1K-3K'),\n ('smb', '3K-10K'),\n ('smb plus', '10K-20K'),\n ('mm', '20K+')\n AS (segment, order_bucket_group)\n\n), acv_goal_wo_totals AS (\n\n SELECT\n acv_goal.acv_goal_id,\n acv_goal.month,\n acv_goal.region,\n acv_goal.segment,\n acv_goal.deal_type,\n acv_goal.revenue_stream,\n IF(LOWER(acv_goal.demand_gen_channel) LIKE '%ae%', 'AE', acv_goal.demand_gen_channel) AS demand_gen_channel,\n bucket.order_bucket_group,\n acv_goal.monthly_acv_goal,\n acv_goal.forecast_acv_goal,\n IF(LOWER(acv_goal.product) LIKE '%sms%', 'SMS', acv_goal.product) AS product,\n IF(LOWER(acv_goal.demand_gen_channel) = 'total (post-overlap)', acv_goal.monthly_acv_goal, NULL) AS dg_overlap_monthly_acv_goal,\n IF(LOWER(acv_goal.demand_gen_channel) = 'total (post-overlap)', acv_goal.forecast_acv_goal, NULL) AS dg_overlap_forecast_acv_goal,\n LOWER(CONCAT(acv_goal.month, acv_goal.region, acv_goal.segment, acv_goal.deal_type, acv_goal.revenue_stream, acv_goal.product)) AS dg_overlap_key\n FROM import_gtm_acv_goal AS acv_goal\n LEFT JOIN segment_to_order_bucket_mapping AS bucket\n ON LOWER(acv_goal.segment) = bucket.segment\n WHERE LOWER(acv_goal.product) <> 'sms-usage'\n\n), acv_goal_w_totals AS (\n\n SELECT\n acv_goal_id,\n month,\n region,\n segment,\n deal_type,\n revenue_stream,\n demand_gen_channel,\n order_bucket_group,\n product,\n monthly_acv_goal,\n forecast_acv_goal,\n LOWER(CONCAT(region, product, deal_type, revenue_stream, demand_gen_channel)) AS goal_process_id,\n MAX(dg_overlap_monthly_acv_goal) OVER (PARTITION BY dg_overlap_key) AS dg_overlap_monthly_acv_goal,\n MAX(dg_overlap_forecast_acv_goal) OVER (PARTITION BY dg_overlap_key) AS dg_overlap_forecast_acv_goal\n FROM acv_goal_wo_totals\n\n), sal_goal_wo_totals AS (\n\n SELECT\n sal_goal.sal_goal_id,\n sal_goal.month,\n sal_goal.region,\n sal_goal.product,\n sal_goal.segment,\n sal_goal.deal_type,\n sal_goal.revenue_stream,\n IF(LOWER(sal_goal.demand_gen_channel) LIKE '%ae%', 'AE', sal_goal.demand_gen_channel) AS demand_gen_channel,\n bucket.order_bucket_group,\n sal_goal.monthly_sal_goal,\n sal_goal.forecast_sal_goal,\n LOWER(CONCAT(sal_goal.region, sal_goal.product, sal_goal.deal_type, sal_goal.revenue_stream, sal_goal.demand_gen_channel)) AS goal_process_id,\n IF(LOWER(sal_goal.demand_gen_channel) = 'total (post-overlap)', sal_goal.monthly_sal_goal, NULL) AS dg_overlap_monthly_sal_goal,\n IF(LOWER(sal_goal.demand_gen_channel) = 'total (post-overlap)', sal_goal.forecast_sal_goal, NULL) AS dg_overlap_forecast_sal_goal,\n IF(LOWER(sal_goal.product) = 'total', sal_goal.monthly_sal_goal, NULL) AS product_overlap_monthly_sal_goal,\n IF(LOWER(sal_goal.product) = 'total', sal_goal.forecast_sal_goal, NULL) AS product_overlap_forecast_sal_goal,\n LOWER(CONCAT(sal_goal.month, sal_goal.region, sal_goal.segment, sal_goal.deal_type, sal_goal.revenue_stream, sal_goal.product)) AS dg_overlap_key,\n LOWER(CONCAT(sal_goal.month, sal_goal.region, sal_goal.segment, sal_goal.deal_type, sal_goal.revenue_stream, sal_goal.demand_gen_channel)) AS product_overlap_key\n FROM import_gtm_sal_goal AS sal_goal\n LEFT JOIN segment_to_order_bucket_mapping AS bucket\n ON LOWER(sal_goal.segment) = bucket.segment\n\n), sal_goal_w_totals AS (\n\n SELECT\n sal_goal_id,\n month,\n region,\n product,\n segment,\n deal_type,\n revenue_stream,\n demand_gen_channel,\n order_bucket_group,\n monthly_sal_goal,\n forecast_sal_goal,\n LOWER(CONCAT(sal_goal.region, sal_goal.product, sal_goal.deal_type, sal_goal.revenue_stream, sal_goal.demand_gen_channel)) AS goal_process_id,\n MAX(dg_overlap_monthly_sal_goal) OVER (PARTITION BY dg_overlap_key) AS dg_overlap_monthly_sal_goal,\n MAX(dg_overlap_forecast_sal_goal) OVER (PARTITION BY dg_overlap_key) AS dg_overlap_forecast_sal_goal,\n MAX(product_overlap_monthly_sal_goal) OVER (PARTITION BY product_overlap_key) AS product_overlap_monthly_sal_goal,\n MAX(product_overlap_forecast_sal_goal) OVER (PARTITION BY product_overlap_key) AS product_overlap_forecast_sal_goal\n FROM sal_goal_wo_totals AS sal_goal\n\n), opportunity_goal_wo_total_lines AS (\n\n SELECT\n opportunity.opportunity_id,\n acv_goal.acv_goal_id,\n sal_goal.sal_goal_id,\n opportunity.account_id,\n opportunity.entered_demo_date,\n opportunity.close_date,\n opportunity.product_acv,\n opportunity.attribution_channel_overlap,\n opportunity.stage AS opportunity_stage,\n opportunity.product_estimated_arr,\n opportunity.product_pipeline_usd,\n opportunity.platform,\n opportunity.order_bucket AS opportunity_order_bucket,\n COALESCE(opportunity.order_bucket_group, sal_goal.order_bucket_group, acv_goal.order_bucket_group) AS order_bucket_group,\n COALESCE(opportunity.attribution_channel, sal_goal.demand_gen_channel, acv_goal.demand_gen_channel) AS attribution_channel,\n COALESCE(opportunity.revenue_stream, sal_goal.revenue_stream, acv_goal.revenue_stream) AS revenue_stream,\n COALESCE(opportunity.deal_type, sal_goal.deal_type, acv_goal.deal_type) AS deal_type,\n COALESCE(opportunity.sales_region, sal_goal.region, acv_goal.region) AS sales_region,\n COALESCE(opportunity.product_family_group, sal_goal.product, acv_goal.product) AS product_family_group,\n NVL(TRUNC(opportunity.close_date, 'MM'), acv_goal.month) AS close_month,\n NVL(TRUNC(opportunity.entered_demo_date, 'MM'), sal_goal.month) AS sal_month,\n acv_goal.monthly_acv_goal,\n acv_goal.forecast_acv_goal,\n acv_goal.dg_overlap_monthly_acv_goal,\n acv_goal.dg_overlap_forecast_acv_goal,\n sal_goal.monthly_sal_goal,\n sal_goal.forecast_sal_goal,\n sal_goal.dg_overlap_monthly_sal_goal,\n sal_goal.dg_overlap_forecast_sal_goal,\n sal_goal.product_overlap_monthly_sal_goal,\n sal_goal.product_overlap_forecast_sal_goal,\n opportunity.created_date AS opportunity_created_date\n FROM opportunity_order_bucket_group AS opportunity\n FULL JOIN sal_goal_w_totals AS sal_goal\n ON TRUNC(opportunity.entered_demo_date, 'MM') = sal_goal.month\n AND opportunity.order_bucket_group = sal_goal.order_bucket_group\n AND opportunity.goal_process_id = sal_goal.goal_process_id\n FULL JOIN acv_goal_w_totals AS acv_goal\n ON TRUNC(opportunity.close_date, 'MM') = acv_goal.month\n AND opportunity.order_bucket_group = acv_goal.order_bucket_group\n AND opportunity.goal_process_id = acv_goal.goal_process_id\n AND LOWER(opportunity.stage) = 'won - sale'\n\n), opportunity_goal_res AS (\n\n SELECT\n SHA2(CONCAT(NVL(opportunity_id,'~'), NVL(acv_goal_id,'~'), NVL(sal_goal_id,'~'), NVL(product_family_group,'~'), NVL(attribution_channel,'~')), 256) AS opportunity_goal_id,\n opportunity_id,\n acv_goal_id,\n sal_goal_id,\n account_id,\n entered_demo_date,\n close_date,\n product_acv,\n product_estimated_arr,\n product_pipeline_usd,\n opportunity_order_bucket,\n order_bucket_group,\n attribution_channel,\n attribution_channel_overlap,\n opportunity_stage,\n revenue_stream,\n deal_type,\n sales_region,\n platform,\n product_family_group,\n close_month,\n sal_month,\n monthly_acv_goal,\n forecast_acv_goal,\n dg_overlap_monthly_acv_goal,\n dg_overlap_forecast_acv_goal,\n monthly_sal_goal,\n forecast_sal_goal,\n dg_overlap_monthly_sal_goal,\n dg_overlap_forecast_sal_goal,\n product_overlap_monthly_sal_goal,\n product_overlap_forecast_sal_goal,\n opportunity_created_date,\n SMALLINT(IF(LOWER(deal_type) = 'ss' AND LOWER(product_family_group) = 'reviews', 1, 0)) AS is_prime,\n SMALLINT(IF(LOWER(deal_type) = 'ss' AND LOWER(product_family_group) = 'loyalty', 1, 0)) AS is_gold,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM opportunity_goal_wo_total_lines\n WHERE NVL(LOWER(attribution_channel),'') <> 'total (post-overlap)'\n AND NVL(LOWER(product_family_group),'') <> 'total'\n\n-- Result --\n\n) SELECT * FROM opportunity_goal_res", "language": "sql", "refs": [{"name": "analytics___new_revenue__deal_product", "package": null, "version": null}, {"name": "analytics___gtm_stg__acv_goal", "package": null, "version": null}, {"name": "analytics___gtm_stg__sal_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___new_revenue__deal_product", "model.yoda.analytics___gtm_stg__acv_goal", "model.yoda.analytics___gtm_stg__sal_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_new_revenue_deal_product AS (\n\n SELECT * FROM dev_dkruh1.analytics___new_revenue__deal_product\n\n), import_gtm_acv_goal AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm_stg__acv_goal\n\n), import_gtm_sal_goal AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm_stg__sal_goal\n\n-- Logic --\n\n), opportunity_estimated_orders AS (\n\n SELECT\n opportunity_id,\n account_id,\n entered_demo_date,\n close_date,\n created_date,\n stage,\n attribution_channel AS attribution_channel_overlap,\n EXPLODE_OUTER(SPLIT(attribution_channel, ';')) AS attribution_channel,\n revenue_stream,\n ht_ss_flag AS deal_type,\n goal_process_sales_region AS sales_region,\n platform,\n product AS product_family_group,\n product_line_acv AS product_acv,\n product_line_earr AS product_estimated_arr,\n pipeline_usd AS product_pipeline_usd,\n IF(NVL(INT(estimated_review_requests_per_month), 0) <= 1, 0, INT(estimated_review_requests_per_month)) AS estimated_monthly_orders_at_close,\n CASE WHEN estimated_monthly_order_range LIKE '%-%'\n THEN INT(REPLACE(SPLIT(estimated_monthly_order_range, '-')[0], ',', ''))\n WHEN estimated_monthly_order_range LIKE '%+%'\n THEN INT(REPLACE(REPLACE(estimated_monthly_order_range, '+', ''), ',', ''))\n ELSE INT(estimated_monthly_order_range)\n END AS estimated_monthly_orders_original\n FROM import_new_revenue_deal_product\n WHERE LOWER(type) IN ('migration to annual', 'new sale')\n AND created_date >= '2022-01-01'\n AND NOT (LOWER(record_type_name) = 'self service opportunity' AND is_ht_ss = 0)\n\n), opportunity_order_bucket AS (\n\n SELECT\n opportunity_id,\n account_id,\n entered_demo_date,\n close_date,\n created_date,\n stage,\n attribution_channel,\n attribution_channel_overlap,\n revenue_stream,\n deal_type,\n sales_region,\n platform,\n product_family_group,\n product_estimated_arr,\n IF(estimated_monthly_orders_at_close > 0, estimated_monthly_orders_at_close, NVL(estimated_monthly_orders_original, 0)) AS order_bucket,\n product_acv,\n product_pipeline_usd\n FROM opportunity_estimated_orders\n\n), opportunity_order_bucket_group AS (\n\n SELECT\n opportunity_id,\n account_id,\n entered_demo_date,\n close_date,\n created_date,\n stage,\n attribution_channel,\n attribution_channel_overlap,\n revenue_stream,\n deal_type,\n sales_region,\n platform,\n product_family_group,\n product_acv,\n product_estimated_arr,\n product_pipeline_usd,\n order_bucket,\n LOWER(CONCAT(sales_region, product_family_group, deal_type, revenue_stream, attribution_channel)) AS goal_process_id,\n CASE\n WHEN order_bucket >= 20000 THEN '20K+'\n WHEN order_bucket >= 10000 THEN '10K-20K'\n WHEN order_bucket >= 3000 THEN '3K-10K'\n WHEN order_bucket >= 1000 THEN '1K-3K'\n WHEN order_bucket >= 400 THEN '400-1K'\n WHEN order_bucket >= 0 THEN '0-400'\n END AS order_bucket_group\n FROM opportunity_order_bucket\n\n), segment_to_order_bucket_mapping AS (\n\n SELECT * FROM VALUES \n ('vsb minus', '0-400'),\n ('vsb', '400-1K'),\n ('smb minus', '1K-3K'),\n ('smb', '3K-10K'),\n ('smb plus', '10K-20K'),\n ('mm', '20K+')\n AS (segment, order_bucket_group)\n\n), acv_goal_wo_totals AS (\n\n SELECT\n acv_goal.acv_goal_id,\n acv_goal.month,\n acv_goal.region,\n acv_goal.segment,\n acv_goal.deal_type,\n acv_goal.revenue_stream,\n IF(LOWER(acv_goal.demand_gen_channel) LIKE '%ae%', 'AE', acv_goal.demand_gen_channel) AS demand_gen_channel,\n bucket.order_bucket_group,\n acv_goal.monthly_acv_goal,\n acv_goal.forecast_acv_goal,\n IF(LOWER(acv_goal.product) LIKE '%sms%', 'SMS', acv_goal.product) AS product,\n IF(LOWER(acv_goal.demand_gen_channel) = 'total (post-overlap)', acv_goal.monthly_acv_goal, NULL) AS dg_overlap_monthly_acv_goal,\n IF(LOWER(acv_goal.demand_gen_channel) = 'total (post-overlap)', acv_goal.forecast_acv_goal, NULL) AS dg_overlap_forecast_acv_goal,\n LOWER(CONCAT(acv_goal.month, acv_goal.region, acv_goal.segment, acv_goal.deal_type, acv_goal.revenue_stream, acv_goal.product)) AS dg_overlap_key\n FROM import_gtm_acv_goal AS acv_goal\n LEFT JOIN segment_to_order_bucket_mapping AS bucket\n ON LOWER(acv_goal.segment) = bucket.segment\n WHERE LOWER(acv_goal.product) <> 'sms-usage'\n\n), acv_goal_w_totals AS (\n\n SELECT\n acv_goal_id,\n month,\n region,\n segment,\n deal_type,\n revenue_stream,\n demand_gen_channel,\n order_bucket_group,\n product,\n monthly_acv_goal,\n forecast_acv_goal,\n LOWER(CONCAT(region, product, deal_type, revenue_stream, demand_gen_channel)) AS goal_process_id,\n MAX(dg_overlap_monthly_acv_goal) OVER (PARTITION BY dg_overlap_key) AS dg_overlap_monthly_acv_goal,\n MAX(dg_overlap_forecast_acv_goal) OVER (PARTITION BY dg_overlap_key) AS dg_overlap_forecast_acv_goal\n FROM acv_goal_wo_totals\n\n), sal_goal_wo_totals AS (\n\n SELECT\n sal_goal.sal_goal_id,\n sal_goal.month,\n sal_goal.region,\n sal_goal.product,\n sal_goal.segment,\n sal_goal.deal_type,\n sal_goal.revenue_stream,\n IF(LOWER(sal_goal.demand_gen_channel) LIKE '%ae%', 'AE', sal_goal.demand_gen_channel) AS demand_gen_channel,\n bucket.order_bucket_group,\n sal_goal.monthly_sal_goal,\n sal_goal.forecast_sal_goal,\n LOWER(CONCAT(sal_goal.region, sal_goal.product, sal_goal.deal_type, sal_goal.revenue_stream, sal_goal.demand_gen_channel)) AS goal_process_id,\n IF(LOWER(sal_goal.demand_gen_channel) = 'total (post-overlap)', sal_goal.monthly_sal_goal, NULL) AS dg_overlap_monthly_sal_goal,\n IF(LOWER(sal_goal.demand_gen_channel) = 'total (post-overlap)', sal_goal.forecast_sal_goal, NULL) AS dg_overlap_forecast_sal_goal,\n IF(LOWER(sal_goal.product) = 'total', sal_goal.monthly_sal_goal, NULL) AS product_overlap_monthly_sal_goal,\n IF(LOWER(sal_goal.product) = 'total', sal_goal.forecast_sal_goal, NULL) AS product_overlap_forecast_sal_goal,\n LOWER(CONCAT(sal_goal.month, sal_goal.region, sal_goal.segment, sal_goal.deal_type, sal_goal.revenue_stream, sal_goal.product)) AS dg_overlap_key,\n LOWER(CONCAT(sal_goal.month, sal_goal.region, sal_goal.segment, sal_goal.deal_type, sal_goal.revenue_stream, sal_goal.demand_gen_channel)) AS product_overlap_key\n FROM import_gtm_sal_goal AS sal_goal\n LEFT JOIN segment_to_order_bucket_mapping AS bucket\n ON LOWER(sal_goal.segment) = bucket.segment\n\n), sal_goal_w_totals AS (\n\n SELECT\n sal_goal_id,\n month,\n region,\n product,\n segment,\n deal_type,\n revenue_stream,\n demand_gen_channel,\n order_bucket_group,\n monthly_sal_goal,\n forecast_sal_goal,\n LOWER(CONCAT(sal_goal.region, sal_goal.product, sal_goal.deal_type, sal_goal.revenue_stream, sal_goal.demand_gen_channel)) AS goal_process_id,\n MAX(dg_overlap_monthly_sal_goal) OVER (PARTITION BY dg_overlap_key) AS dg_overlap_monthly_sal_goal,\n MAX(dg_overlap_forecast_sal_goal) OVER (PARTITION BY dg_overlap_key) AS dg_overlap_forecast_sal_goal,\n MAX(product_overlap_monthly_sal_goal) OVER (PARTITION BY product_overlap_key) AS product_overlap_monthly_sal_goal,\n MAX(product_overlap_forecast_sal_goal) OVER (PARTITION BY product_overlap_key) AS product_overlap_forecast_sal_goal\n FROM sal_goal_wo_totals AS sal_goal\n\n), opportunity_goal_wo_total_lines AS (\n\n SELECT\n opportunity.opportunity_id,\n acv_goal.acv_goal_id,\n sal_goal.sal_goal_id,\n opportunity.account_id,\n opportunity.entered_demo_date,\n opportunity.close_date,\n opportunity.product_acv,\n opportunity.attribution_channel_overlap,\n opportunity.stage AS opportunity_stage,\n opportunity.product_estimated_arr,\n opportunity.product_pipeline_usd,\n opportunity.platform,\n opportunity.order_bucket AS opportunity_order_bucket,\n COALESCE(opportunity.order_bucket_group, sal_goal.order_bucket_group, acv_goal.order_bucket_group) AS order_bucket_group,\n COALESCE(opportunity.attribution_channel, sal_goal.demand_gen_channel, acv_goal.demand_gen_channel) AS attribution_channel,\n COALESCE(opportunity.revenue_stream, sal_goal.revenue_stream, acv_goal.revenue_stream) AS revenue_stream,\n COALESCE(opportunity.deal_type, sal_goal.deal_type, acv_goal.deal_type) AS deal_type,\n COALESCE(opportunity.sales_region, sal_goal.region, acv_goal.region) AS sales_region,\n COALESCE(opportunity.product_family_group, sal_goal.product, acv_goal.product) AS product_family_group,\n NVL(TRUNC(opportunity.close_date, 'MM'), acv_goal.month) AS close_month,\n NVL(TRUNC(opportunity.entered_demo_date, 'MM'), sal_goal.month) AS sal_month,\n acv_goal.monthly_acv_goal,\n acv_goal.forecast_acv_goal,\n acv_goal.dg_overlap_monthly_acv_goal,\n acv_goal.dg_overlap_forecast_acv_goal,\n sal_goal.monthly_sal_goal,\n sal_goal.forecast_sal_goal,\n sal_goal.dg_overlap_monthly_sal_goal,\n sal_goal.dg_overlap_forecast_sal_goal,\n sal_goal.product_overlap_monthly_sal_goal,\n sal_goal.product_overlap_forecast_sal_goal,\n opportunity.created_date AS opportunity_created_date\n FROM opportunity_order_bucket_group AS opportunity\n FULL JOIN sal_goal_w_totals AS sal_goal\n ON TRUNC(opportunity.entered_demo_date, 'MM') = sal_goal.month\n AND opportunity.order_bucket_group = sal_goal.order_bucket_group\n AND opportunity.goal_process_id = sal_goal.goal_process_id\n FULL JOIN acv_goal_w_totals AS acv_goal\n ON TRUNC(opportunity.close_date, 'MM') = acv_goal.month\n AND opportunity.order_bucket_group = acv_goal.order_bucket_group\n AND opportunity.goal_process_id = acv_goal.goal_process_id\n AND LOWER(opportunity.stage) = 'won - sale'\n\n), opportunity_goal_res AS (\n\n SELECT\n SHA2(CONCAT(NVL(opportunity_id,'~'), NVL(acv_goal_id,'~'), NVL(sal_goal_id,'~'), NVL(product_family_group,'~'), NVL(attribution_channel,'~')), 256) AS opportunity_goal_id,\n opportunity_id,\n acv_goal_id,\n sal_goal_id,\n account_id,\n entered_demo_date,\n close_date,\n product_acv,\n product_estimated_arr,\n product_pipeline_usd,\n opportunity_order_bucket,\n order_bucket_group,\n attribution_channel,\n attribution_channel_overlap,\n opportunity_stage,\n revenue_stream,\n deal_type,\n sales_region,\n platform,\n product_family_group,\n close_month,\n sal_month,\n monthly_acv_goal,\n forecast_acv_goal,\n dg_overlap_monthly_acv_goal,\n dg_overlap_forecast_acv_goal,\n monthly_sal_goal,\n forecast_sal_goal,\n dg_overlap_monthly_sal_goal,\n dg_overlap_forecast_sal_goal,\n product_overlap_monthly_sal_goal,\n product_overlap_forecast_sal_goal,\n opportunity_created_date,\n SMALLINT(IF(LOWER(deal_type) = 'ss' AND LOWER(product_family_group) = 'reviews', 1, 0)) AS is_prime,\n SMALLINT(IF(LOWER(deal_type) = 'ss' AND LOWER(product_family_group) = 'loyalty', 1, 0)) AS is_gold,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM opportunity_goal_wo_total_lines\n WHERE NVL(LOWER(attribution_channel),'') <> 'total (post-overlap)'\n AND NVL(LOWER(product_family_group),'') <> 'total'\n\n-- Result --\n\n) SELECT * FROM opportunity_goal_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm__opporunity_dg_funnel": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm__opporunity_dg_funnel", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.sql", "unique_id": "model.yoda.analytics___gtm__opporunity_dg_funnel", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__opporunity_dg_funnel", "analytics___gtm__opporunity_dg_funnel"], "alias": "analytics___gtm__opporunity_dg_funnel", "checksum": {"name": "sha256", "checksum": "75a0a28906a9cd69b1ba7a773ee2845ecd4631db1e6dce3d88b493ae33cbbf1d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "dg"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "dg"], "description": "A modeled table of the demang generation channel to opporunity funnel, connecting between top of the funnel entities (PE/MQL) to opportunities.\nsql_date, sal_date and close_date indicates the funnel stages.\nEach opportunity is exploded by its products and attribution channels.\nPK & Granularity: opportunity_id,first_stage_id, product_family_group, attribution_channel", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "PK 1/4", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_stage_id": {"name": "first_stage_id", "description": "sf if of top of funnel entity.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_stage_name": {"name": "first_stage_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "funnel_type": {"name": "funnel_type", "description": "Funnel type based on top of the funnel action.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_interest": {"name": "product_interest", "description": "interest in products at top of funnel creation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "sales region for opportunity/acv goal/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_bucket_group": {"name": "order_bucket_group", "description": "order bucket group for opportunity/acv goal/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel": {"name": "attribution_channel", "description": "PK 4/4", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel_overlap": {"name": "attribution_channel_overlap", "description": "All related attribution channels for the opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_acv": {"name": "product_acv", "description": "acv for the product in the according row.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(30,2)"}, "product_estimated_arr": {"name": "product_estimated_arr", "description": "earr for the product in the according row.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_pipeline_usd": {"name": "product_pipeline_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "first_stage_date": {"name": "first_stage_date", "description": "Top of funnel entity creation date.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_family_group": {"name": "product_family_group", "description": "PK 3/4", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_stage": {"name": "opportunity_stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sql_date": {"name": "sql_date", "description": "Opportunity's creation date - indicated SQL stage for funnel.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sal_date": {"name": "sal_date", "description": "Opportunity's demo date - indicated SAL stage for funnel.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "close_date": {"name": "close_date", "description": "Opportunity's close date.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "won_date": {"name": "won_date", "description": "Opportunity's close date in case it is won.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "dg"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082641.9338443, "relation_name": "dev_dkruh1.analytics___gtm__opporunity_dg_funnel", "raw_code": "-- Import --\n\nWITH import_salesforce_mql AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__mql') }}\n\n), import_salesforce_opportunity AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__opportunity') }}\n\n), import_salesforce_partner_engagement AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__partner_engagement') }}\n \n), import_gtm_opportunity_goal AS (\n\n SELECT * FROM {{ ref('analytics___gtm__opportunity_goal') }}\n WHERE ISNOTNULL(opportunity_id)\n\n-- Logic --\n\n), mql_population AS (\n\n SELECT\n mql_id AS stage_id,\n account_id,\n 'MQL' AS stage_name,\n 'Marketing' AS funnel_type,\n product_interest,\n created_date AS stage_date\n FROM import_salesforce_mql\n QUALIFY RANK() OVER(PARTITION BY account_id ORDER BY created_date DESC, mql_id) = 1\n\n), mql_w_opportunity AS (\n\n SELECT\n mql.stage_id,\n opportunity.opportunity_id,\n mql.stage_name,\n mql.funnel_type,\n mql.product_interest,\n mql.stage_date\n FROM mql_population AS mql\n LEFT JOIN import_salesforce_opportunity AS opportunity\n ON mql.account_id = opportunity.account_id\n AND mql.stage_date <= opportunity.created_date\n\n), partner_engagement_population AS (\n\n SELECT\n partner_engagement.partner_engagement_id AS stage_id,\n opportunity.opportunity_id,\n 'PE' AS stage_name,\n 'Partner' AS funnel_type,\n partner_engagement.product_interest,\n partner_engagement.created_date AS stage_date\n FROM import_salesforce_partner_engagement AS partner_engagement\n LEFT JOIN import_salesforce_opportunity AS opportunity\n ON partner_engagement.partner_engagement_id = opportunity.partner_engagement_id\n\n), mql_pe_union AS (\n\n SELECT * FROM mql_w_opportunity\n UNION ALL\n SELECT * FROM partner_engagement_population\n\n), opporutnity_attribution_funnel_res AS (\n\n SELECT\n NVL(top_of_funnel.opportunity_id, opportunity.opportunity_id) AS opportunity_id,\n top_of_funnel.stage_id AS first_stage_id,\n top_of_funnel.stage_name AS first_stage_name,\n top_of_funnel.funnel_type,\n top_of_funnel.product_interest,\n opportunity.sales_region,\n opportunity.order_bucket_group,\n opportunity.attribution_channel,\n opportunity.attribution_channel_overlap,\n opportunity.product_acv,\n opportunity.product_estimated_arr,\n opportunity.product_pipeline_usd,\n top_of_funnel.stage_date AS first_stage_date,\n opportunity.product_family_group,\n opportunity.opportunity_stage,\n opportunity.platform,\n opportunity.opportunity_created_date AS sql_date,\n opportunity.entered_demo_date AS sal_date,\n opportunity.close_date,\n IF(LOWER(opportunity_stage) = 'won - sale', close_date, NULL) AS won_date\n FROM mql_pe_union AS top_of_funnel\n FULL JOIN import_gtm_opportunity_goal AS opportunity\n ON top_of_funnel.opportunity_id = opportunity.opportunity_id\n AND LOWER(opportunity.attribution_channel_overlap) LIKE '%' || LOWER(top_of_funnel.funnel_type) || '%'\n)\n\n-- Result --\n\nSELECT * FROM opporutnity_attribution_funnel_res", "language": "sql", "refs": [{"name": "analytics___salesforce__mql", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce__partner_engagement", "package": null, "version": null}, {"name": "analytics___gtm__opportunity_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__mql", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__partner_engagement", "model.yoda.analytics___gtm__opportunity_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_mql AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__mql\n\n), import_salesforce_opportunity AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n\n), import_salesforce_partner_engagement AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__partner_engagement\n \n), import_gtm_opportunity_goal AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm__opportunity_goal\n WHERE ISNOTNULL(opportunity_id)\n\n-- Logic --\n\n), mql_population AS (\n\n SELECT\n mql_id AS stage_id,\n account_id,\n 'MQL' AS stage_name,\n 'Marketing' AS funnel_type,\n product_interest,\n created_date AS stage_date\n FROM import_salesforce_mql\n QUALIFY RANK() OVER(PARTITION BY account_id ORDER BY created_date DESC, mql_id) = 1\n\n), mql_w_opportunity AS (\n\n SELECT\n mql.stage_id,\n opportunity.opportunity_id,\n mql.stage_name,\n mql.funnel_type,\n mql.product_interest,\n mql.stage_date\n FROM mql_population AS mql\n LEFT JOIN import_salesforce_opportunity AS opportunity\n ON mql.account_id = opportunity.account_id\n AND mql.stage_date <= opportunity.created_date\n\n), partner_engagement_population AS (\n\n SELECT\n partner_engagement.partner_engagement_id AS stage_id,\n opportunity.opportunity_id,\n 'PE' AS stage_name,\n 'Partner' AS funnel_type,\n partner_engagement.product_interest,\n partner_engagement.created_date AS stage_date\n FROM import_salesforce_partner_engagement AS partner_engagement\n LEFT JOIN import_salesforce_opportunity AS opportunity\n ON partner_engagement.partner_engagement_id = opportunity.partner_engagement_id\n\n), mql_pe_union AS (\n\n SELECT * FROM mql_w_opportunity\n UNION ALL\n SELECT * FROM partner_engagement_population\n\n), opporutnity_attribution_funnel_res AS (\n\n SELECT\n NVL(top_of_funnel.opportunity_id, opportunity.opportunity_id) AS opportunity_id,\n top_of_funnel.stage_id AS first_stage_id,\n top_of_funnel.stage_name AS first_stage_name,\n top_of_funnel.funnel_type,\n top_of_funnel.product_interest,\n opportunity.sales_region,\n opportunity.order_bucket_group,\n opportunity.attribution_channel,\n opportunity.attribution_channel_overlap,\n opportunity.product_acv,\n opportunity.product_estimated_arr,\n opportunity.product_pipeline_usd,\n top_of_funnel.stage_date AS first_stage_date,\n opportunity.product_family_group,\n opportunity.opportunity_stage,\n opportunity.platform,\n opportunity.opportunity_created_date AS sql_date,\n opportunity.entered_demo_date AS sal_date,\n opportunity.close_date,\n IF(LOWER(opportunity_stage) = 'won - sale', close_date, NULL) AS won_date\n FROM mql_pe_union AS top_of_funnel\n FULL JOIN import_gtm_opportunity_goal AS opportunity\n ON top_of_funnel.opportunity_id = opportunity.opportunity_id\n AND LOWER(opportunity.attribution_channel_overlap) LIKE '%' || LOWER(top_of_funnel.funnel_type) || '%'\n)\n\n-- Result --\n\nSELECT * FROM opporutnity_attribution_funnel_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm__sal_goal_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm__sal_goal_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.sql", "unique_id": "model.yoda.analytics___gtm__sal_goal_daily", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__sal_goal_daily", "analytics___gtm__sal_goal_daily"], "alias": "analytics___gtm__sal_goal_daily", "checksum": {"name": "sha256", "checksum": "eb75ab622fda7c929157cac53c46f97fa0dbed36cbb941103e341f9ce4b5ebcc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "new_revenue"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "new_revenue"], "description": "A modeled table conencting each date from the calendar to its SAL goals | PK: goal_id | Granularity: date, deal_type, revenue_stream, segment, region, demand_gen_channel, product", "columns": {"goal_id": {"name": "goal_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "goal_process_internal_id": {"name": "goal_process_internal_id", "description": "Concatenation of fields used to join the goals from this process to the performance", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type": {"name": "deal_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_stream": {"name": "revenue_stream", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_channel": {"name": "demand_gen_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "goal_process_demand_gen_channel": {"name": "goal_process_demand_gen_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_sal_goal": {"name": "monthly_sal_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_sal_goal": {"name": "forecast_sal_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "closing_date": {"name": "closing_date", "description": "date of the closest working day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "working_day_no": {"name": "working_day_no", "description": "working day number (1/2/.../31)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "new_revenue"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082641.9729273, "relation_name": "dev_dkruh1.analytics___gtm__sal_goal_daily", "raw_code": "-- Import --\n\nWITH import_analytics___gtm_stg__sal_goal AS (\n\n SELECT * FROM {{ ref('analytics___gtm_stg__sal_goal') }}\n\n), import_calendar_with_closing_day AS (\n\n SELECT * FROM {{ source('analytics__static', 'calendar_with_closing_day') }}\n\n-- Logic --\n\n), goal_segmentation AS (\n\n SELECT DISTINCT\n SHA2(LOWER(CONCAT(deal_type, revenue_stream, segment, region, demand_gen_channel, product)), 256) AS goal_segmentation_id,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n IF(LOWER(product) LIKE '%sms%', 'SMS', product) AS product_family\n FROM import_analytics___gtm_stg__sal_goal\n\n), acv_goals_with_closing_day AS (\n\n SELECT\n SHA2(LOWER(CONCAT(calendar.date, segmentation.goal_segmentation_id)), 256) AS goal_id,\n LOWER(CONCAT(segmentation.deal_type, segmentation.revenue_stream, segmentation.segment, segmentation.region)) AS goal_process_internal_id,\n segmentation.deal_type,\n segmentation.revenue_stream,\n segmentation.segment,\n segmentation.region,\n segmentation.demand_gen_channel,\n CASE LOWER(segmentation.demand_gen_channel)\n WHEN 'ae self prospecting' THEN 'AE'\n WHEN 'total (post-overlap)' THEN ''\n ELSE segmentation.demand_gen_channel\n END AS goal_process_demand_gen_channel,\n segmentation.product,\n segmentation.product_family,\n goal.monthly_sal_goal,\n goal.forecast_sal_goal,\n calendar.date,\n calendar.closing_date,\n calendar.working_day_no\n FROM import_calendar_with_closing_day AS calendar\n CROSS JOIN goal_segmentation AS segmentation\n LEFT JOIN import_analytics___gtm_stg__sal_goal AS goal\n ON TRUNC(calendar.date, 'MM') = goal.month\n AND segmentation.deal_type = goal.deal_type\n AND segmentation.revenue_stream = goal.revenue_stream\n AND segmentation.segment = goal.segment\n AND segmentation.region = goal.region\n AND segmentation.demand_gen_channel = goal.demand_gen_channel\n AND segmentation.product = goal.product\n WHERE YEAR(calendar.date) <= YEAR(CURRENT_DATE)\n\n)\n\n-- Result\nSELECT * FROM acv_goals_with_closing_day", "language": "sql", "refs": [{"name": "analytics___gtm_stg__sal_goal", "package": null, "version": null}], "sources": [["analytics__static", "calendar_with_closing_day"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.calendar_with_closing_day", "model.yoda.analytics___gtm_stg__sal_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_analytics___gtm_stg__sal_goal AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm_stg__sal_goal\n\n), import_calendar_with_closing_day AS (\n\n SELECT * FROM static.calendar_with_closing_day\n\n-- Logic --\n\n), goal_segmentation AS (\n\n SELECT DISTINCT\n SHA2(LOWER(CONCAT(deal_type, revenue_stream, segment, region, demand_gen_channel, product)), 256) AS goal_segmentation_id,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n IF(LOWER(product) LIKE '%sms%', 'SMS', product) AS product_family\n FROM import_analytics___gtm_stg__sal_goal\n\n), acv_goals_with_closing_day AS (\n\n SELECT\n SHA2(LOWER(CONCAT(calendar.date, segmentation.goal_segmentation_id)), 256) AS goal_id,\n LOWER(CONCAT(segmentation.deal_type, segmentation.revenue_stream, segmentation.segment, segmentation.region)) AS goal_process_internal_id,\n segmentation.deal_type,\n segmentation.revenue_stream,\n segmentation.segment,\n segmentation.region,\n segmentation.demand_gen_channel,\n CASE LOWER(segmentation.demand_gen_channel)\n WHEN 'ae self prospecting' THEN 'AE'\n WHEN 'total (post-overlap)' THEN ''\n ELSE segmentation.demand_gen_channel\n END AS goal_process_demand_gen_channel,\n segmentation.product,\n segmentation.product_family,\n goal.monthly_sal_goal,\n goal.forecast_sal_goal,\n calendar.date,\n calendar.closing_date,\n calendar.working_day_no\n FROM import_calendar_with_closing_day AS calendar\n CROSS JOIN goal_segmentation AS segmentation\n LEFT JOIN import_analytics___gtm_stg__sal_goal AS goal\n ON TRUNC(calendar.date, 'MM') = goal.month\n AND segmentation.deal_type = goal.deal_type\n AND segmentation.revenue_stream = goal.revenue_stream\n AND segmentation.segment = goal.segment\n AND segmentation.region = goal.region\n AND segmentation.demand_gen_channel = goal.demand_gen_channel\n AND segmentation.product = goal.product\n WHERE YEAR(calendar.date) <= YEAR(CURRENT_DATE)\n\n)\n\n-- Result\nSELECT * FROM acv_goals_with_closing_day", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm_stg__stg_nerd_acv_goals": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm_stg__stg_nerd_acv_goals", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.sql", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.sql", "unique_id": "model.yoda.analytics___gtm_stg__stg_nerd_acv_goals", "fqn": ["yoda", "analytics", "gtm", "staging", "base", "analytics___gtm_stg__stg_nerd_acv_goals", "analytics___gtm_stg__stg_nerd_acv_goals"], "alias": "analytics___gtm_stg__stg_nerd_acv_goals", "checksum": {"name": "sha256", "checksum": "bcfb1a1f06f8efee10125d439123c406ae867378700d16c40fd3db9465419a1a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "new_revenue", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alertsggp"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "new_revenue"], "description": "A view over table that pulls acv goals from google-sheets to datalake through rivery", "columns": {"month": {"name": "month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "deal_type": {"name": "deal_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_stream": {"name": "revenue_stream", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_channel": {"name": "demand_gen_channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_goal": {"name": "monthly_goal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_goal": {"name": "forecast_goal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alertsggp"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["new_revenue", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alertsggp"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082642.029855, "relation_name": "dev_dkruh1.analytics___gtm_stg__stg_nerd_acv_goals", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__bi_rivery', 'stg_nerd_acv_goals') }}\n\n), analytics___gtm_stg__stg_nerd_acv_goals AS (\n\n SELECT \n\t\tmonth,\n\t\tdeal_type,\n\t\trevenue_stream,\n\t\tsegment,\n\t\tregion,\n\t\tdemand_gen_channel,\n\t\tproduct,\n\t\tmonthly_goal,\n\t\tforecast_goal\n FROM source\n\n)\n\nSELECT * \nFROM analytics___gtm_stg__stg_nerd_acv_goals", "language": "sql", "refs": [], "sources": [["analytics__bi_rivery", "stg_nerd_acv_goals"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__bi_rivery.stg_nerd_acv_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM bi_rivery.stg_nerd_acv_goals\n\n), analytics___gtm_stg__stg_nerd_acv_goals AS (\n\n SELECT \n\t\tmonth,\n\t\tdeal_type,\n\t\trevenue_stream,\n\t\tsegment,\n\t\tregion,\n\t\tdemand_gen_channel,\n\t\tproduct,\n\t\tmonthly_goal,\n\t\tforecast_goal\n FROM source\n\n)\n\nSELECT * \nFROM analytics___gtm_stg__stg_nerd_acv_goals", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm_stg__stg_nerd_sal_goals": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm_stg__stg_nerd_sal_goals", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.sql", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.sql", "unique_id": "model.yoda.analytics___gtm_stg__stg_nerd_sal_goals", "fqn": ["yoda", "analytics", "gtm", "staging", "base", "analytics___gtm_stg__stg_nerd_sal_goals", "analytics___gtm_stg__stg_nerd_sal_goals"], "alias": "analytics___gtm_stg__stg_nerd_sal_goals", "checksum": {"name": "sha256", "checksum": "84f9d9e72c461b4a9f79a68aaf8b771988c6eb9272a0ae7b9bc108accc1d72d9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "new_revenue", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "new_revenue"], "description": "A view over table that pulls sal goals from google-sheets to datalake through rivery", "columns": {"month": {"name": "month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "deal_type": {"name": "deal_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_stream": {"name": "revenue_stream", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_channel": {"name": "demand_gen_channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_goal": {"name": "monthly_goal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_goal": {"name": "forecast_goal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["new_revenue", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082642.0524778, "relation_name": "dev_dkruh1.analytics___gtm_stg__stg_nerd_sal_goals", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__bi_rivery', 'stg_nerd_sal_goals') }}\n\n), analytics___gtm_stg__stg_nerd_sal_goals AS (\n\n SELECT \n\t\tmonth,\n\t\tdeal_type,\n\t\trevenue_stream,\n\t\tsegment,\n\t\tregion,\n\t\tdemand_gen_channel,\n\t\tproduct,\n\t\tmonthly_goal,\n\t\tforecast_goal\n FROM source\n\n)\n\nSELECT * \nFROM analytics___gtm_stg__stg_nerd_sal_goals", "language": "sql", "refs": [], "sources": [["analytics__bi_rivery", "stg_nerd_sal_goals"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__bi_rivery.stg_nerd_sal_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM bi_rivery.stg_nerd_sal_goals\n\n), analytics___gtm_stg__stg_nerd_sal_goals AS (\n\n SELECT \n\t\tmonth,\n\t\tdeal_type,\n\t\trevenue_stream,\n\t\tsegment,\n\t\tregion,\n\t\tdemand_gen_channel,\n\t\tproduct,\n\t\tmonthly_goal,\n\t\tforecast_goal\n FROM source\n\n)\n\nSELECT * \nFROM analytics___gtm_stg__stg_nerd_sal_goals", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm_stg__acv_goal": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm_stg__acv_goal", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.sql", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.sql", "unique_id": "model.yoda.analytics___gtm_stg__acv_goal", "fqn": ["yoda", "analytics", "gtm", "staging", "marts_compatible", "analytics___gtm_stg__acv_goal", "analytics___gtm_stg__acv_goal"], "alias": "analytics___gtm_stg__acv_goal", "checksum": {"name": "sha256", "checksum": "1eeb7378ff090644ec2eddbb40a0a7c481906fe01601dc5f1b4c5ab9c7385c9c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "new_revenue", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "new_revenue"], "description": "A modeled view for the nerd acv goals | PK: acv_goal_id | Granularity: motnh, segment, region, demand_gen_channel, product", "columns": {"acv_goal_id": {"name": "acv_goal_id", "description": "PK generated with SHA2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "deal_type": {"name": "deal_type", "description": "deal type (HT/SS/...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_stream": {"name": "revenue_stream", "description": "revenue stream (Sales/AM/Total SS)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "Sales Segment (US/IL/...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_channel": {"name": "demand_gen_channel", "description": "demand channel (Marketing/Partner/...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_acv_goal": {"name": "monthly_acv_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_acv_goal": {"name": "forecast_acv_goal", "description": "goal value updated on the fly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["new_revenue", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082642.078894, "relation_name": "dev_dkruh1.analytics___gtm_stg__acv_goal", "raw_code": "WITH import_analytics___gtm_stg__stg_nerd_acv_goals AS (\n\n SELECT * FROM {{ ref('analytics___gtm_stg__stg_nerd_acv_goals') }}\n\n), acv_goal AS (\n\n SELECT\n SHA2(LOWER(CONCAT(month, deal_type, revenue_stream, segment, region, demand_gen_channel, product)), 256) AS acv_goal_id,\n month,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n monthly_goal AS monthly_acv_goal,\n NVL(forecast_goal, monthly_goal) AS forecast_acv_goal\n FROM import_analytics___gtm_stg__stg_nerd_acv_goals\n WHERE ISNOTNULL(month)\n\n)\n\nSELECT * \nFROM acv_goal", "language": "sql", "refs": [{"name": "analytics___gtm_stg__stg_nerd_acv_goals", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___gtm_stg__stg_nerd_acv_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.sql", "compiled": true, "compiled_code": "WITH import_analytics___gtm_stg__stg_nerd_acv_goals AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm_stg__stg_nerd_acv_goals\n\n), acv_goal AS (\n\n SELECT\n SHA2(LOWER(CONCAT(month, deal_type, revenue_stream, segment, region, demand_gen_channel, product)), 256) AS acv_goal_id,\n month,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n monthly_goal AS monthly_acv_goal,\n NVL(forecast_goal, monthly_goal) AS forecast_acv_goal\n FROM import_analytics___gtm_stg__stg_nerd_acv_goals\n WHERE ISNOTNULL(month)\n\n)\n\nSELECT * \nFROM acv_goal", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___gtm_stg__sal_goal": {"database": null, "schema": "dev_dkruh1", "name": "analytics___gtm_stg__sal_goal", "resource_type": "model", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.sql", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.sql", "unique_id": "model.yoda.analytics___gtm_stg__sal_goal", "fqn": ["yoda", "analytics", "gtm", "staging", "marts_compatible", "analytics___new_revenue_stg__sal_goal", "analytics___gtm_stg__sal_goal"], "alias": "analytics___gtm_stg__sal_goal", "checksum": {"name": "sha256", "checksum": "d1ad5b81bba8973ccb2d1104f613c3e69fb3d7e37e8b94030e78a6b7627ec9ba"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "new_revenue", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "new_revenue"], "description": "A modeled view for the nerd sal goals | PK: sal_goal_id | Granularity: motnh, segment, region, demand_gen_channel, product", "columns": {"sal_goal_id": {"name": "sal_goal_id", "description": "PK generated with SHA2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "deal_type": {"name": "deal_type", "description": "deal type (HT/SS/...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_stream": {"name": "revenue_stream", "description": "revenue stream (Sales/AM/Total SS)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "Sales Segment (US/IL/...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_channel": {"name": "demand_gen_channel", "description": "demand channel (Marketing/Partner/...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_sal_goal": {"name": "monthly_sal_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_sal_goal": {"name": "forecast_sal_goal", "description": "goal value updated on the fly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["new_revenue", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082642.113517, "relation_name": "dev_dkruh1.analytics___gtm_stg__sal_goal", "raw_code": "WITH import_analytics___gtm_stg__stg_nerd_sal_goals AS (\n\n SELECT * FROM {{ ref('analytics___gtm_stg__stg_nerd_sal_goals') }}\n\n), sal_goal AS (\n\n SELECT\n SHA2(LOWER(CONCAT(month, deal_type, revenue_stream, segment, region, demand_gen_channel, product)), 256) AS sal_goal_id,\n month,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n monthly_goal AS monthly_sal_goal,\n NVL(forecast_goal, monthly_goal) AS forecast_sal_goal\n FROM import_analytics___gtm_stg__stg_nerd_sal_goals\n WHERE ISNOTNULL(month)\n\n)\n\nSELECT * \nFROM sal_goal", "language": "sql", "refs": [{"name": "analytics___gtm_stg__stg_nerd_sal_goals", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___gtm_stg__stg_nerd_sal_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.sql", "compiled": true, "compiled_code": "WITH import_analytics___gtm_stg__stg_nerd_sal_goals AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm_stg__stg_nerd_sal_goals\n\n), sal_goal AS (\n\n SELECT\n SHA2(LOWER(CONCAT(month, deal_type, revenue_stream, segment, region, demand_gen_channel, product)), 256) AS sal_goal_id,\n month,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n monthly_goal AS monthly_sal_goal,\n NVL(forecast_goal, monthly_goal) AS forecast_sal_goal\n FROM import_analytics___gtm_stg__stg_nerd_sal_goals\n WHERE ISNOTNULL(month)\n\n)\n\nSELECT * \nFROM sal_goal", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__daily_merchant": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__daily_merchant", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.sql", "unique_id": "model.yoda.analytics___loyalty__daily_merchant", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__daily_merchant", "analytics___loyalty__daily_merchant"], "alias": "analytics___loyalty__daily_merchant", "checksum": {"name": "sha256", "checksum": "4960379ce09489201ae4487d5b77f59ad16fea8f8a66a1d05dece72ea93d501e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["merchant_id", "date"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Merchant daily sanpshots", "columns": {"merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_rewards_installed": {"name": "is_rewards_installed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_analytics_installed": {"name": "is_analytics_installed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_widget_enabled": {"name": "is_widget_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_redemptions_enabled": {"name": "is_redemptions_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_program_live": {"name": "is_program_live", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_can_generate_coupons": {"name": "is_can_generate_coupons", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_storefront_css_included": {"name": "is_storefront_css_included", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_combination": {"name": "is_discount_combination", "description": "Is the merchant has discount stacking", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_stacking_order": {"name": "is_discount_stacking_order", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_stacking_product": {"name": "is_discount_stacking_product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_stacking_shiping": {"name": "is_discount_stacking_shiping", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "date": {"name": "date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["merchant_id", "date"], "incremental_strategy": "merge"}, "created_at": 1700082642.195504, "relation_name": "dev_dkruh1.analytics___loyalty__daily_merchant", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key=['merchant_id','date'],\n incremental_strategy = 'merge'\n )\n}}\nWITH loyalty__merchant AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant') }}\n\n), loyalty__daily_merchant AS (\n\n SELECT \n merchant_id,\n app_key,\n is_rewards_installed,\n is_analytics_installed,\n is_widget_enabled,\n is_redemptions_enabled,\n is_program_live,\n is_can_generate_coupons,\n is_storefront_css_included,\n is_discount_stacking_order,\n is_discount_stacking_product,\n is_discount_stacking_shiping,\n GREATEST(is_discount_stacking_shiping,is_discount_stacking_product,is_discount_stacking_order) AS is_discount_combination,\n dwh_updated_date AS date\n FROM loyalty__merchant\n)\n\nSELECT \n merchant_id,\n app_key,\n is_rewards_installed,\n is_analytics_installed,\n is_widget_enabled,\n is_redemptions_enabled,\n is_program_live,\n is_can_generate_coupons,\n is_storefront_css_included,\n is_discount_combination,\n is_discount_stacking_order,\n is_discount_stacking_product,\n is_discount_stacking_shiping,\n date\n FROM loyalty__daily_merchant", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.sql", "compiled": true, "compiled_code": "\nWITH loyalty__merchant AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant\n\n), loyalty__daily_merchant AS (\n\n SELECT \n merchant_id,\n app_key,\n is_rewards_installed,\n is_analytics_installed,\n is_widget_enabled,\n is_redemptions_enabled,\n is_program_live,\n is_can_generate_coupons,\n is_storefront_css_included,\n is_discount_stacking_order,\n is_discount_stacking_product,\n is_discount_stacking_shiping,\n GREATEST(is_discount_stacking_shiping,is_discount_stacking_product,is_discount_stacking_order) AS is_discount_combination,\n dwh_updated_date AS date\n FROM loyalty__merchant\n)\n\nSELECT \n merchant_id,\n app_key,\n is_rewards_installed,\n is_analytics_installed,\n is_widget_enabled,\n is_redemptions_enabled,\n is_program_live,\n is_can_generate_coupons,\n is_storefront_css_included,\n is_discount_combination,\n is_discount_stacking_order,\n is_discount_stacking_product,\n is_discount_stacking_shiping,\n date\n FROM loyalty__daily_merchant", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__earning_rule_activation_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__earning_rule_activation_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.sql", "unique_id": "model.yoda.analytics___loyalty__earning_rule_activation_daily", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__earning_rule_activation_daily", "analytics___loyalty__earning_rule_activation_daily"], "alias": "analytics___loyalty__earning_rule_activation_daily", "checksum": {"name": "sha256", "checksum": "a2943392170aa462b39f241a9beec54f6fccd3c04bff9a74943d79e383782f9d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Modeled table for the last 2 years earning rules activation statuses\nGranularity & PK : date, earning_rule_id", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "earning_rule_id": {"name": "earning_rule_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_active": {"name": "is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "earning_rule_type": {"name": "earning_rule_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_perk_rewarded": {"name": "is_perk_rewarded", "description": "Indication for a date which the earning rule rewarded a customer at least once", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082642.2198496, "relation_name": "dev_dkruh1.analytics___loyalty__earning_rule_activation_daily", "raw_code": "WITH import_dim_calendar AS (\n\n SELECT * FROM {{ ref('platform_stg__dim_calendar') }}\n\n), import_earning_rule AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__earning_rule') }}\n\n), import_earning_rule_activation_history AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__earning_rule_activation_history') }}\n\n), import_perk AS ( \n\n SELECT * FROM {{ ref('analytics___loyalty_stg__perk') }}\n\n), import_merchant AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant') }}\n\n),\n\nlast_earning_rule_in_day_rank AS (\n\n SELECT \n earning_rule_activation_history_id,\n earning_rule_id,\n is_active,\n earning_rule_activation_created_date,\n earning_rule_activation_created_at,\n ROW_NUMBER() OVER (PARTITION BY earning_rule_id,earning_rule_activation_created_date ORDER BY earning_rule_activation_created_at DESC) AS earning_rule_by_day_rank\n FROM import_earning_rule_activation_history\n WHERE earning_rule_id IS NOT NULL\n\n),\n\nearning_rule_activeness_by_date AS (\n\n SELECT \n earning_rule_id,\n earning_rule_activation_created_date,\n is_active\n FROM last_earning_rule_in_day_rank\n WHERE earning_rule_by_day_rank = 1\n\n),\n\nearning_rules_activation_changes_ind AS (\n\n SELECT \n earning_rule_id,\n earning_rule_activation_created_date,\n is_active,\n SMALLINT(CASE WHEN LAG(is_active, 1) OVER (PARTITION BY earning_rule_id ORDER BY earning_rule_activation_created_date ASC) = is_active THEN 0 ELSE 1 END) AS is_change\n FROM earning_rule_activeness_by_date\n\n),\n\nearning_rules_activation_over_time AS (\n\n SELECT \n earning_rule_id,\n earning_rule_activation_created_date AS from_date,\n COALESCE(LEAD(earning_rule_activation_created_date-1, 1) OVER (PARTITION BY earning_rule_id ORDER BY earning_rule_activation_created_date), '2999-12-31') AS to_date,\n is_active\n FROM earning_rules_activation_changes_ind\n WHERE is_change = 1\n\n),\n\ncalendar_dates AS (\n\n SELECT \n date\n FROM import_dim_calendar\n WHERE date BETWEEN MAKE_DATE(YEAR(current_date)-2,1,1) AND DATE_SUB(DATE(current_date),1)\n\n),\n\nearning_rules_with_rewarded_perks AS (\n\n SELECT \n DISTINCT earning_rule_id,\n DATE(created_at) AS perk_rewarded_date\n FROM import_perk\n WHERE customer_id IS NOT NULL\n\n),\n\nearning_rule_activation_daily AS (\n\n SELECT\n dates.date,\n activation.earning_rule_id,\n activation.is_active,\n earning_rule.merchant_id,\n merchant.app_key,\n earning_rule.earning_rule_type, \n CASE WHEN perk.earning_rule_id IS NOT NULL THEN 1 ELSE 0 END AS is_perk_rewarded,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM calendar_dates AS dates\n LEFT JOIN earning_rules_activation_over_time AS activation \n ON dates.date BETWEEN activation.from_date AND activation.to_date\n LEFT JOIN import_earning_rule AS earning_rule\n ON activation.earning_rule_id = earning_rule.earning_rule_id\n LEFT JOIN earning_rules_with_rewarded_perks AS perk\n ON earning_rule.earning_rule_id = perk.earning_rule_id\n AND perk.perk_rewarded_date = dates.date\n LEFT JOIN import_merchant AS merchant\n ON merchant.merchant_id = earning_rule.merchant_id\n\n)\n\nSELECT \n date,\n earning_rule_id,\n is_active,\n merchant_id,\n app_key,\n earning_rule_type, \n is_perk_rewarded,\n dwh_updated_at\nFROM earning_rule_activation_daily", "language": "sql", "refs": [{"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___loyalty_stg__earning_rule", "package": null, "version": null}, {"name": "analytics___loyalty_stg__earning_rule_activation_history", "package": null, "version": null}, {"name": "analytics___loyalty_stg__perk", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___loyalty_stg__earning_rule", "model.yoda.analytics___loyalty_stg__earning_rule_activation_history", "model.yoda.analytics___loyalty_stg__perk", "model.yoda.analytics___loyalty__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.sql", "compiled": true, "compiled_code": "WITH import_dim_calendar AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__dim_calendar\n\n), import_earning_rule AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__earning_rule\n\n), import_earning_rule_activation_history AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__earning_rule_activation_history\n\n), import_perk AS ( \n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__perk\n\n), import_merchant AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant\n\n),\n\nlast_earning_rule_in_day_rank AS (\n\n SELECT \n earning_rule_activation_history_id,\n earning_rule_id,\n is_active,\n earning_rule_activation_created_date,\n earning_rule_activation_created_at,\n ROW_NUMBER() OVER (PARTITION BY earning_rule_id,earning_rule_activation_created_date ORDER BY earning_rule_activation_created_at DESC) AS earning_rule_by_day_rank\n FROM import_earning_rule_activation_history\n WHERE earning_rule_id IS NOT NULL\n\n),\n\nearning_rule_activeness_by_date AS (\n\n SELECT \n earning_rule_id,\n earning_rule_activation_created_date,\n is_active\n FROM last_earning_rule_in_day_rank\n WHERE earning_rule_by_day_rank = 1\n\n),\n\nearning_rules_activation_changes_ind AS (\n\n SELECT \n earning_rule_id,\n earning_rule_activation_created_date,\n is_active,\n SMALLINT(CASE WHEN LAG(is_active, 1) OVER (PARTITION BY earning_rule_id ORDER BY earning_rule_activation_created_date ASC) = is_active THEN 0 ELSE 1 END) AS is_change\n FROM earning_rule_activeness_by_date\n\n),\n\nearning_rules_activation_over_time AS (\n\n SELECT \n earning_rule_id,\n earning_rule_activation_created_date AS from_date,\n COALESCE(LEAD(earning_rule_activation_created_date-1, 1) OVER (PARTITION BY earning_rule_id ORDER BY earning_rule_activation_created_date), '2999-12-31') AS to_date,\n is_active\n FROM earning_rules_activation_changes_ind\n WHERE is_change = 1\n\n),\n\ncalendar_dates AS (\n\n SELECT \n date\n FROM import_dim_calendar\n WHERE date BETWEEN MAKE_DATE(YEAR(current_date)-2,1,1) AND DATE_SUB(DATE(current_date),1)\n\n),\n\nearning_rules_with_rewarded_perks AS (\n\n SELECT \n DISTINCT earning_rule_id,\n DATE(created_at) AS perk_rewarded_date\n FROM import_perk\n WHERE customer_id IS NOT NULL\n\n),\n\nearning_rule_activation_daily AS (\n\n SELECT\n dates.date,\n activation.earning_rule_id,\n activation.is_active,\n earning_rule.merchant_id,\n merchant.app_key,\n earning_rule.earning_rule_type, \n CASE WHEN perk.earning_rule_id IS NOT NULL THEN 1 ELSE 0 END AS is_perk_rewarded,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM calendar_dates AS dates\n LEFT JOIN earning_rules_activation_over_time AS activation \n ON dates.date BETWEEN activation.from_date AND activation.to_date\n LEFT JOIN import_earning_rule AS earning_rule\n ON activation.earning_rule_id = earning_rule.earning_rule_id\n LEFT JOIN earning_rules_with_rewarded_perks AS perk\n ON earning_rule.earning_rule_id = perk.earning_rule_id\n AND perk.perk_rewarded_date = dates.date\n LEFT JOIN import_merchant AS merchant\n ON merchant.merchant_id = earning_rule.merchant_id\n\n)\n\nSELECT \n date,\n earning_rule_id,\n is_active,\n merchant_id,\n app_key,\n earning_rule_type, \n is_perk_rewarded,\n dwh_updated_at\nFROM earning_rule_activation_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__ht_customers_vip_tiers_stats", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.sql", "unique_id": "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__ht_customers_vip_tiers_stats", "analytics___loyalty__ht_customers_vip_tiers_stats"], "alias": "analytics___loyalty__ht_customers_vip_tiers_stats", "checksum": {"name": "sha256", "checksum": "2038ee59df12c6f4a5de21eba69abc29d48f29322920f0f533d1e9d514e52833"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Yearly revenue per merchants customers", "columns": {"loyalty_vip_stat_id": {"name": "loyalty_vip_stat_id", "description": "Table id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tier_status": {"name": "tier_status", "description": "The tier status of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "Merchant id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "App key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "The url domain of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rounded_yearly_revenue_percentail": {"name": "rounded_yearly_revenue_percentail", "description": "Percentail yearly revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "vip_tier_name": {"name": "vip_tier_name", "description": "Tier name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yearly_revenue_in_usd": {"name": "yearly_revenue_in_usd", "description": "Yearly revenue in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "min_yearly_revenue_in_usd": {"name": "min_yearly_revenue_in_usd", "description": "Min yeaerly revenue per tier in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "customers_cnt": {"name": "customers_cnt", "description": "Customers per percentail", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082642.2692747, "relation_name": "dev_dkruh1.analytics___loyalty__ht_customers_vip_tiers_stats", "raw_code": "WITH import_merchant_plan_monthly AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_monthly') }}\n\n), \n import_vip_tiers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__vip_tiers') }}\n),\n\n import_customers_vip_tiers AS (\n \n SELECT * FROM {{ ref('loyalty_stg__customers_vip_tiers') }}\n\n),\n\n import_purhcases AS( \n SELECT * FROM {{ ref('loyalty_stg__purchases') }}\n), \n\n import_currency AS(\n SELECT * FROM {{ ref('loyalty_stg__currency_rates') }}\n \n), \n\nbase_merchant_population AS(\n SELECT \n merchant_id,\n app_key,\n website AS domain,\n closing_plan_name_in_month\nFROM import_merchant_plan_monthly\nWHERE month = TRUNC(DATE_SUB(CURRENT_DATE,1),'month')\n AND LOWER(closing_plan_name_in_month) IN ('enterprise', 'platinum') \n AND is_program_live = 1\n),\n\ntiers AS(\nSELECT \n vip.merchant_id,\n customer_vip.customer_id,\n vip.name AS vip_tier_name\nFROM import_customers_vip_tiers AS customer_vip\nJOIN import_vip_tiers AS vip \n ON customer_vip.tier_id = vip.id \n AND customer_vip.merchant_id = vip.merchant_id\n),\n\nyearly_revenue AS ( \nSELECT \n base.merchant_id,\n IF(tiers.merchant_id IS NULL,0,1) AS is_vip_teir_merchant,\n base.app_key,\n base.domain,\n purchases.customer_id,\n IF(tiers.customer_id IS NULL,'No Tier',tiers.vip_tier_name) AS vip_tier_name,\n SUM((purchases.amount_cents / currency.currency) / 100) AS revenue_in_usd\n FROM base_merchant_population AS base \n INNER JOIN import_purhcases AS purchases \n ON base.merchant_id = purchases.merchant_id \n INNER JOIN import_currency AS currency\n ON DATE(purchases.created_at) = currency.date \n AND purchases.currency = currency.country\n LEFT JOIN tiers \n ON purchases.merchant_id = tiers.merchant_id AND purchases.customer_id = tiers.customer_id\n WHERE purchases.is_refunded = 0 \n AND purchases.amount_cents > 0 \n AND DATE(purchases.created_at) >= DATE_SUB(CURRENT_DATE,365)\n AND DATE(purchases.created_at) < CURRENT_DATE \n AND purchases.customer_id IS NOT NULL \n GROUP BY 1, 2, 3, 4, 5, 6\n),\n\nyearly_revenue_percentails AS (\nSELECT \n merchant_id,\n app_key,\n domain,\n customer_id,\n is_vip_teir_merchant,\n revenue_in_usd AS yearly_revenue_in_usd,\n vip_tier_name,\n ROUND(PERCENT_RANK(revenue_in_usd) OVER (PARTITION BY merchant_id ORDER BY revenue_in_usd),2) AS rounded_yearly_revenue_percentail\nFROM yearly_revenue\n),\n\ntier_agg AS (\nSELECT \n merchant_id,\n app_key,\n domain,\n rounded_yearly_revenue_percentail,\n vip_tier_name,\n SUM(yearly_revenue_in_usd) AS yearly_revenue_in_usd,\n MIN(yearly_revenue_in_usd) AS min_yearly_revenue_in_usd,\n COUNT(DISTINCT customer_id) AS customers_cnt\nFROM yearly_revenue_percentails \nWHERE vip_tier_name IS NOT NULL \nGROUP BY 1, 2, 3, 4, 5\n),\n\nall_merchants_tier_agg AS (\nSELECT \n merchant_id,\n app_key,\n domain,\n rounded_yearly_revenue_percentail,\n SUM(yearly_revenue_in_usd) AS yearly_revenue_in_usd,\n MIN(yearly_revenue_in_usd) AS min_yearly_revenue_in_usd,\n COUNT(DISTINCT customer_id) AS customers_cnt\nFROM yearly_revenue_percentails \nGROUP BY 1, 2, 3, 4\n),\n\nall_merchants_teir_stats AS( \nSELECT \n 'No Tier' AS tier_status,\n merchant_id,\n app_key,\n domain ,\n rounded_yearly_revenue_percentail,\n STRING(NULL) AS vip_tier_name,\n yearly_revenue_in_usd,\n min_yearly_revenue_in_usd,\n customers_cnt\nFROM all_merchants_tier_agg \nUNION ALL \nSELECT \n 'Tier' AS tier_status,\n merchant_id,\n app_key,\n domain,\n rounded_yearly_revenue_percentail,\n vip_tier_name,\n yearly_revenue_in_usd,\n min_yearly_revenue_in_usd,\n customers_cnt\nFROM tier_agg\n),\n\nloyalty_vip_tiers_stats AS (\nSELECT \n SHA2(CONCAT(tier_status,NVL(app_key,'~'),NVL(merchant_id,'~'),NVL(domain,'~'),NVL(rounded_yearly_revenue_percentail,'~')),256) AS loyalty_vip_stat_id,\n tier_status,\n merchant_id,\n app_key,\n domain,\n rounded_yearly_revenue_percentail,\n vip_tier_name,\n yearly_revenue_in_usd,\n min_yearly_revenue_in_usd,\n customers_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM all_merchants_teir_stats\n) \n\nSELECT *\nFROM loyalty_vip_tiers_stats", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}, {"name": "loyalty_stg__vip_tiers", "package": null, "version": null}, {"name": "loyalty_stg__customers_vip_tiers", "package": null, "version": null}, {"name": "loyalty_stg__purchases", "package": null, "version": null}, {"name": "loyalty_stg__currency_rates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.loyalty_stg__vip_tiers", "model.yoda.loyalty_stg__customers_vip_tiers", "model.yoda.loyalty_stg__purchases", "model.yoda.loyalty_stg__currency_rates"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.sql", "compiled": true, "compiled_code": "WITH import_merchant_plan_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_monthly\n\n), \n import_vip_tiers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__vip_tiers\n),\n\n import_customers_vip_tiers AS (\n \n SELECT * FROM dev_dkruh1.loyalty_stg__customers_vip_tiers\n\n),\n\n import_purhcases AS( \n SELECT * FROM dev_dkruh1.loyalty_stg__purchases\n), \n\n import_currency AS(\n SELECT * FROM dev_dkruh1.loyalty_stg__currency_rates\n \n), \n\nbase_merchant_population AS(\n SELECT \n merchant_id,\n app_key,\n website AS domain,\n closing_plan_name_in_month\nFROM import_merchant_plan_monthly\nWHERE month = TRUNC(DATE_SUB(CURRENT_DATE,1),'month')\n AND LOWER(closing_plan_name_in_month) IN ('enterprise', 'platinum') \n AND is_program_live = 1\n),\n\ntiers AS(\nSELECT \n vip.merchant_id,\n customer_vip.customer_id,\n vip.name AS vip_tier_name\nFROM import_customers_vip_tiers AS customer_vip\nJOIN import_vip_tiers AS vip \n ON customer_vip.tier_id = vip.id \n AND customer_vip.merchant_id = vip.merchant_id\n),\n\nyearly_revenue AS ( \nSELECT \n base.merchant_id,\n IF(tiers.merchant_id IS NULL,0,1) AS is_vip_teir_merchant,\n base.app_key,\n base.domain,\n purchases.customer_id,\n IF(tiers.customer_id IS NULL,'No Tier',tiers.vip_tier_name) AS vip_tier_name,\n SUM((purchases.amount_cents / currency.currency) / 100) AS revenue_in_usd\n FROM base_merchant_population AS base \n INNER JOIN import_purhcases AS purchases \n ON base.merchant_id = purchases.merchant_id \n INNER JOIN import_currency AS currency\n ON DATE(purchases.created_at) = currency.date \n AND purchases.currency = currency.country\n LEFT JOIN tiers \n ON purchases.merchant_id = tiers.merchant_id AND purchases.customer_id = tiers.customer_id\n WHERE purchases.is_refunded = 0 \n AND purchases.amount_cents > 0 \n AND DATE(purchases.created_at) >= DATE_SUB(CURRENT_DATE,365)\n AND DATE(purchases.created_at) < CURRENT_DATE \n AND purchases.customer_id IS NOT NULL \n GROUP BY 1, 2, 3, 4, 5, 6\n),\n\nyearly_revenue_percentails AS (\nSELECT \n merchant_id,\n app_key,\n domain,\n customer_id,\n is_vip_teir_merchant,\n revenue_in_usd AS yearly_revenue_in_usd,\n vip_tier_name,\n ROUND(PERCENT_RANK(revenue_in_usd) OVER (PARTITION BY merchant_id ORDER BY revenue_in_usd),2) AS rounded_yearly_revenue_percentail\nFROM yearly_revenue\n),\n\ntier_agg AS (\nSELECT \n merchant_id,\n app_key,\n domain,\n rounded_yearly_revenue_percentail,\n vip_tier_name,\n SUM(yearly_revenue_in_usd) AS yearly_revenue_in_usd,\n MIN(yearly_revenue_in_usd) AS min_yearly_revenue_in_usd,\n COUNT(DISTINCT customer_id) AS customers_cnt\nFROM yearly_revenue_percentails \nWHERE vip_tier_name IS NOT NULL \nGROUP BY 1, 2, 3, 4, 5\n),\n\nall_merchants_tier_agg AS (\nSELECT \n merchant_id,\n app_key,\n domain,\n rounded_yearly_revenue_percentail,\n SUM(yearly_revenue_in_usd) AS yearly_revenue_in_usd,\n MIN(yearly_revenue_in_usd) AS min_yearly_revenue_in_usd,\n COUNT(DISTINCT customer_id) AS customers_cnt\nFROM yearly_revenue_percentails \nGROUP BY 1, 2, 3, 4\n),\n\nall_merchants_teir_stats AS( \nSELECT \n 'No Tier' AS tier_status,\n merchant_id,\n app_key,\n domain ,\n rounded_yearly_revenue_percentail,\n STRING(NULL) AS vip_tier_name,\n yearly_revenue_in_usd,\n min_yearly_revenue_in_usd,\n customers_cnt\nFROM all_merchants_tier_agg \nUNION ALL \nSELECT \n 'Tier' AS tier_status,\n merchant_id,\n app_key,\n domain,\n rounded_yearly_revenue_percentail,\n vip_tier_name,\n yearly_revenue_in_usd,\n min_yearly_revenue_in_usd,\n customers_cnt\nFROM tier_agg\n),\n\nloyalty_vip_tiers_stats AS (\nSELECT \n SHA2(CONCAT(tier_status,NVL(app_key,'~'),NVL(merchant_id,'~'),NVL(domain,'~'),NVL(rounded_yearly_revenue_percentail,'~')),256) AS loyalty_vip_stat_id,\n tier_status,\n merchant_id,\n app_key,\n domain,\n rounded_yearly_revenue_percentail,\n vip_tier_name,\n yearly_revenue_in_usd,\n min_yearly_revenue_in_usd,\n customers_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM all_merchants_teir_stats\n) \n\nSELECT *\nFROM loyalty_vip_tiers_stats", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__ht_ss_retention_cohort": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__ht_ss_retention_cohort", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.sql", "unique_id": "model.yoda.analytics___loyalty__ht_ss_retention_cohort", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__ht_ss_retention_cohort", "analytics___loyalty__ht_ss_retention_cohort"], "alias": "analytics___loyalty__ht_ss_retention_cohort", "checksum": {"name": "sha256", "checksum": "aa0ffe2399c9b1c3385c7f29b4c147c3d5a3933b505706753247e6175e08eb4b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "loyalty"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Dedicated table for HT-SS . Activation and retention cohort.", "columns": {"merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_created_date": {"name": "user_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "cohort_month": {"name": "cohort_month", "description": "The first month of HT-SS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "months_since_start": {"name": "months_since_start", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "time_to_active_1": {"name": "time_to_active_1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active_2": {"name": "time_to_active_2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active_3": {"name": "time_to_active_3", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_plan_name_in_month": {"name": "closing_plan_name_in_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082642.2934175, "relation_name": "dev_dkruh1.analytics___loyalty__ht_ss_retention_cohort", "raw_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_daily') }}\n\n), import_merchant_plan_monthly AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_monthly') }}\n\n), \n\ndata_points AS (\n SELECT \n merchant_id,\n platform,\n user_created_date,\n MIN(date) AS first_time_ht_ss,\n MIN(CASE WHEN is_program_live = 1 THEN date END) AS first_time_active1,\n MIN(CASE WHEN is_active2 = 1 THEN date END) AS first_time_active2,\n MIN(CASE WHEN merchant_acc_unique_redemptions_w_order_cnt >= 4 THEN date END) AS first_time_active3\n FROM import_merchant_plan_daily\n WHERE\n is_dev_account = 0\n AND is_ht_ss = 1\n AND user_created_date >= '2023-01-01'\n GROUP BY 1, 2, 3\n)\n\nSELECT\n data_points.merchant_id,\n data_points.platform,\n user_created_date,\n DATE(DATE_TRUNC('month', first_time_ht_ss)) AS cohort_month,\n monthly.month,\n MONTHS_BETWEEN(monthly.month, DATE_TRUNC('month', first_time_ht_ss)) AS months_since_start,\n DATEDIFF(first_time_active1, first_time_ht_ss) AS time_to_active_1,\n DATEDIFF(first_time_active2, first_time_ht_ss) AS time_to_active_2,\n DATEDIFF(first_time_active3, first_time_ht_ss) AS time_to_active_3,\n monthly.closing_plan_name_in_month,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM data_points \nLEFT JOIN import_merchant_plan_monthly AS monthly\n ON data_points.merchant_id = monthly.merchant_id\n AND monthly.month >= DATE_TRUNC('month', first_time_ht_ss)\n AND monthly.closing_plan_name_in_month NOT IN ('FREE', 'BRONZE')", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.sql", "compiled": true, "compiled_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_daily\n\n), import_merchant_plan_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_monthly\n\n), \n\ndata_points AS (\n SELECT \n merchant_id,\n platform,\n user_created_date,\n MIN(date) AS first_time_ht_ss,\n MIN(CASE WHEN is_program_live = 1 THEN date END) AS first_time_active1,\n MIN(CASE WHEN is_active2 = 1 THEN date END) AS first_time_active2,\n MIN(CASE WHEN merchant_acc_unique_redemptions_w_order_cnt >= 4 THEN date END) AS first_time_active3\n FROM import_merchant_plan_daily\n WHERE\n is_dev_account = 0\n AND is_ht_ss = 1\n AND user_created_date >= '2023-01-01'\n GROUP BY 1, 2, 3\n)\n\nSELECT\n data_points.merchant_id,\n data_points.platform,\n user_created_date,\n DATE(DATE_TRUNC('month', first_time_ht_ss)) AS cohort_month,\n monthly.month,\n MONTHS_BETWEEN(monthly.month, DATE_TRUNC('month', first_time_ht_ss)) AS months_since_start,\n DATEDIFF(first_time_active1, first_time_ht_ss) AS time_to_active_1,\n DATEDIFF(first_time_active2, first_time_ht_ss) AS time_to_active_2,\n DATEDIFF(first_time_active3, first_time_ht_ss) AS time_to_active_3,\n monthly.closing_plan_name_in_month,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM data_points \nLEFT JOIN import_merchant_plan_monthly AS monthly\n ON data_points.merchant_id = monthly.merchant_id\n AND monthly.month >= DATE_TRUNC('month', first_time_ht_ss)\n AND monthly.closing_plan_name_in_month NOT IN ('FREE', 'BRONZE')", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__merchant": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.sql", "unique_id": "model.yoda.analytics___loyalty__merchant", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant", "analytics___loyalty__merchant"], "alias": "analytics___loyalty__merchant", "checksum": {"name": "sha256", "checksum": "184f0523ee2edd44d8c5ae7e4acecc72d80216271612aaabc2111534a112f40b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "merchant_id", "foreign-keys": [{"foreign-key": "merchant_id", "ref-table": "loyalty_stg__loyalty_account", "ref-key": "merchant_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "loyalty__merchant", "columns": {"merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "Merchant enrichment table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_created_at": {"name": "merchant_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "company_name": {"name": "company_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_email": {"name": "from_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "logo_url": {"name": "logo_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_approved": {"name": "is_approved", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_widget_enabled": {"name": "is_widget_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_store": {"name": "has_store", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_rewards_installed": {"name": "is_rewards_installed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "installed_rewards_at": {"name": "installed_rewards_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "uninstalled_rewards_at": {"name": "uninstalled_rewards_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_analytics_installed": {"name": "is_analytics_installed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "installed_analytics_at": {"name": "installed_analytics_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "uninstalled_analytics_at": {"name": "uninstalled_analytics_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_completed_profile": {"name": "is_completed_profile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_redemptions_enabled": {"name": "is_redemptions_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "program_first_activated_date": {"name": "program_first_activated_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_shipping_included": {"name": "is_shipping_included", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_program_live": {"name": "is_program_live", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_cross_origin_store_accounts": {"name": "is_cross_origin_store_accounts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "install_order_volume": {"name": "install_order_volume", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "contact_email": {"name": "contact_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value_per_subscriber_cents": {"name": "value_per_subscriber_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_weekly_digest_enabled": {"name": "is_weekly_digest_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "free_trial_expires_at": {"name": "free_trial_expires_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_on_free_trial": {"name": "is_on_free_trial", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_program_locked": {"name": "is_program_locked", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free_products_enabled": {"name": "is_free_products_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "process_refund_status": {"name": "process_refund_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "process_order_status": {"name": "process_order_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_engine": {"name": "platform_engine", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_reminder_delay_days": {"name": "points_reminder_delay_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_setup_rewards_page": {"name": "is_setup_rewards_page", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sync_fields_with_processor": {"name": "is_sync_fields_with_processor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vip_tiers_job_running": {"name": "is_vip_tiers_job_running", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_can_generate_coupons": {"name": "is_can_generate_coupons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "referral_reminder_days": {"name": "referral_reminder_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "merchant_guid": {"name": "merchant_guid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_app_id": {"name": "facebook_app_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_completed_onboarding": {"name": "is_completed_onboarding", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_first_time_referral_discounts_enable_flag": {"name": "is_first_time_referral_discounts_enable_flag", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_code_based_referral_program_enabled": {"name": "is_discount_code_based_referral_program_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_verified_email_domain": {"name": "is_verified_email_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_test_account": {"name": "is_test_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_dev_account": {"name": "is_dev_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "time_zone": {"name": "time_zone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_opt_in_strategy": {"name": "loyalty_opt_in_strategy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "referral_opt_in_strategy": {"name": "referral_opt_in_strategy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "round_discounts_strategy": {"name": "round_discounts_strategy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_delete_used_coupons_enable": {"name": "is_delete_used_coupons_enable", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_storefront_css_included": {"name": "is_storefront_css_included", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vip_type": {"name": "vip_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_vip_enabled": {"name": "is_vip_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_discount_stacking_order": {"name": "is_discount_stacking_order", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_stacking_product": {"name": "is_discount_stacking_product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_stacking_shiping": {"name": "is_discount_stacking_shiping", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_date": {"name": "dwh_updated_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "merchant_id", "foreign-keys": [{"foreign-key": "merchant_id", "ref-table": "loyalty_stg__loyalty_account", "ref-key": "merchant_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "merchant_id", "foreign-keys": [{"foreign-key": "merchant_id", "ref-table": "loyalty_stg__loyalty_account", "ref-key": "merchant_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "large"}}}, "created_at": 1700082642.3647237, "relation_name": "dev_dkruh1.analytics___loyalty__merchant", "raw_code": "WITH loyalty_stg__loyalty_account AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__loyalty_account') }}\n\n), loyalty_stg__merchant AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__merchant') }}\n\n), loyalty_stg__swell_vip_tiers_settings AS (\n\n SELECT * FROM {{ ref('loyalty_stg__swell_vip_tiers_settings') }}\n\n), loyalty__merchant AS (\n\n SELECT \n account.merchant_id,\n account.app_key,\n account.organization_key,\n merchant.merchant_created_at,\n merchant.company_name,\n merchant.from_email,\n merchant.website,\n merchant.logo_url,\n merchant.currency,\n merchant.is_approved,\n merchant.is_widget_enabled,\n merchant.platform,\n merchant.has_store,\n merchant.is_rewards_installed,\n merchant.installed_rewards_at,\n merchant.uninstalled_rewards_at,\n merchant.is_analytics_installed,\n merchant.installed_analytics_at,\n merchant.uninstalled_analytics_at,\n merchant.is_completed_profile,\n merchant.is_redemptions_enabled,\n merchant.plan_name,\n merchant.program_first_activated_date,\n merchant.is_shipping_included,\n merchant.is_program_live,\n merchant.is_cross_origin_store_accounts,\n merchant.install_order_volume,\n merchant.contact_email,\n merchant.value_per_subscriber_cents,\n merchant.is_weekly_digest_enabled,\n merchant.free_trial_expires_at,\n merchant.is_on_free_trial,\n merchant.is_program_locked,\n merchant.is_free_products_enabled,\n merchant.process_refund_status,\n merchant.process_order_status,\n merchant.platform_engine,\n merchant.points_reminder_delay_days,\n merchant.source,\n merchant.is_setup_rewards_page,\n merchant.is_sync_fields_with_processor,\n merchant.is_vip_tiers_job_running,\n merchant.is_can_generate_coupons,\n merchant.referral_reminder_days,\n merchant.merchant_guid,\n merchant.facebook_app_id,\n merchant.is_completed_onboarding,\n merchant.is_first_time_referral_discounts_enable_flag,\n merchant.is_discount_code_based_referral_program_enabled,\n merchant.is_verified_email_domain,\n merchant.is_test_account,\n merchant.is_dev_account,\n merchant.time_zone,\n merchant.loyalty_opt_in_strategy,\n merchant.referral_opt_in_strategy,\n merchant.round_discounts_strategy,\n merchant.is_delete_used_coupons_enable,\n merchant.is_storefront_css_included,\n merchant.group_id,\n vip_tier.type AS vip_type,\n COALESCE(vip_tier.is_vip_enabled, 0) AS is_vip_enabled,\n COALESCE(merchant.is_discount_stacking_order,0) AS is_discount_stacking_order,\n COALESCE(merchant.is_discount_stacking_product,0) AS is_discount_stacking_product,\n COALESCE(merchant.is_discount_stacking_shipping,0) AS is_discount_stacking_shiping,\n DATE(CURRENT_TIMESTAMP) AS dwh_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__loyalty_account AS account\n LEFT JOIN loyalty_stg__merchant AS merchant\n ON merchant.merchant_id = account.merchant_id\n LEFT JOIN loyalty_stg__swell_vip_tiers_settings AS vip_tier\n ON vip_tier.merchant_id = account.merchant_id\n\n)\n\nSELECT \n merchant_id,\n app_key,\n organization_key,\n merchant_created_at,\n company_name,\n from_email,\n website,\n logo_url,\n currency,\n is_approved,\n is_widget_enabled,\n platform,\n has_store,\n is_rewards_installed,\n installed_rewards_at,\n uninstalled_rewards_at,\n is_analytics_installed,\n installed_analytics_at,\n uninstalled_analytics_at,\n is_completed_profile,\n is_redemptions_enabled,\n plan_name,\n program_first_activated_date,\n is_shipping_included,\n is_program_live,\n is_cross_origin_store_accounts,\n install_order_volume,\n contact_email,\n value_per_subscriber_cents,\n is_weekly_digest_enabled,\n free_trial_expires_at,\n is_on_free_trial,\n is_program_locked,\n is_free_products_enabled,\n process_refund_status,\n process_order_status,\n platform_engine,\n points_reminder_delay_days,\n source,\n is_setup_rewards_page,\n is_sync_fields_with_processor,\n is_vip_tiers_job_running,\n is_can_generate_coupons,\n referral_reminder_days,\n merchant_guid,\n facebook_app_id,\n is_completed_onboarding,\n is_first_time_referral_discounts_enable_flag,\n is_discount_code_based_referral_program_enabled,\n is_verified_email_domain,\n is_test_account,\n is_dev_account,\n time_zone,\n loyalty_opt_in_strategy,\n referral_opt_in_strategy,\n round_discounts_strategy,\n is_delete_used_coupons_enable,\n is_storefront_css_included,\n group_id,\n vip_type,\n is_vip_enabled,\n SMALLINT(is_discount_stacking_order) AS is_discount_stacking_order ,\n SMALLINT(is_discount_stacking_product) AS is_discount_stacking_product ,\n SMALLINT(is_discount_stacking_shiping) AS is_discount_stacking_shiping ,\n dwh_updated_date,\n dwh_updated_at\nFROM loyalty__merchant", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__loyalty_account", "package": null, "version": null}, {"name": "analytics___loyalty_stg__merchant", "package": null, "version": null}, {"name": "loyalty_stg__swell_vip_tiers_settings", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.analytics___loyalty_stg__merchant", "model.yoda.loyalty_stg__swell_vip_tiers_settings"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.sql", "compiled": true, "compiled_code": "WITH loyalty_stg__loyalty_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__loyalty_account\n\n), loyalty_stg__merchant AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__merchant\n\n), loyalty_stg__swell_vip_tiers_settings AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__swell_vip_tiers_settings\n\n), loyalty__merchant AS (\n\n SELECT \n account.merchant_id,\n account.app_key,\n account.organization_key,\n merchant.merchant_created_at,\n merchant.company_name,\n merchant.from_email,\n merchant.website,\n merchant.logo_url,\n merchant.currency,\n merchant.is_approved,\n merchant.is_widget_enabled,\n merchant.platform,\n merchant.has_store,\n merchant.is_rewards_installed,\n merchant.installed_rewards_at,\n merchant.uninstalled_rewards_at,\n merchant.is_analytics_installed,\n merchant.installed_analytics_at,\n merchant.uninstalled_analytics_at,\n merchant.is_completed_profile,\n merchant.is_redemptions_enabled,\n merchant.plan_name,\n merchant.program_first_activated_date,\n merchant.is_shipping_included,\n merchant.is_program_live,\n merchant.is_cross_origin_store_accounts,\n merchant.install_order_volume,\n merchant.contact_email,\n merchant.value_per_subscriber_cents,\n merchant.is_weekly_digest_enabled,\n merchant.free_trial_expires_at,\n merchant.is_on_free_trial,\n merchant.is_program_locked,\n merchant.is_free_products_enabled,\n merchant.process_refund_status,\n merchant.process_order_status,\n merchant.platform_engine,\n merchant.points_reminder_delay_days,\n merchant.source,\n merchant.is_setup_rewards_page,\n merchant.is_sync_fields_with_processor,\n merchant.is_vip_tiers_job_running,\n merchant.is_can_generate_coupons,\n merchant.referral_reminder_days,\n merchant.merchant_guid,\n merchant.facebook_app_id,\n merchant.is_completed_onboarding,\n merchant.is_first_time_referral_discounts_enable_flag,\n merchant.is_discount_code_based_referral_program_enabled,\n merchant.is_verified_email_domain,\n merchant.is_test_account,\n merchant.is_dev_account,\n merchant.time_zone,\n merchant.loyalty_opt_in_strategy,\n merchant.referral_opt_in_strategy,\n merchant.round_discounts_strategy,\n merchant.is_delete_used_coupons_enable,\n merchant.is_storefront_css_included,\n merchant.group_id,\n vip_tier.type AS vip_type,\n COALESCE(vip_tier.is_vip_enabled, 0) AS is_vip_enabled,\n COALESCE(merchant.is_discount_stacking_order,0) AS is_discount_stacking_order,\n COALESCE(merchant.is_discount_stacking_product,0) AS is_discount_stacking_product,\n COALESCE(merchant.is_discount_stacking_shipping,0) AS is_discount_stacking_shiping,\n DATE(CURRENT_TIMESTAMP) AS dwh_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__loyalty_account AS account\n LEFT JOIN loyalty_stg__merchant AS merchant\n ON merchant.merchant_id = account.merchant_id\n LEFT JOIN loyalty_stg__swell_vip_tiers_settings AS vip_tier\n ON vip_tier.merchant_id = account.merchant_id\n\n)\n\nSELECT \n merchant_id,\n app_key,\n organization_key,\n merchant_created_at,\n company_name,\n from_email,\n website,\n logo_url,\n currency,\n is_approved,\n is_widget_enabled,\n platform,\n has_store,\n is_rewards_installed,\n installed_rewards_at,\n uninstalled_rewards_at,\n is_analytics_installed,\n installed_analytics_at,\n uninstalled_analytics_at,\n is_completed_profile,\n is_redemptions_enabled,\n plan_name,\n program_first_activated_date,\n is_shipping_included,\n is_program_live,\n is_cross_origin_store_accounts,\n install_order_volume,\n contact_email,\n value_per_subscriber_cents,\n is_weekly_digest_enabled,\n free_trial_expires_at,\n is_on_free_trial,\n is_program_locked,\n is_free_products_enabled,\n process_refund_status,\n process_order_status,\n platform_engine,\n points_reminder_delay_days,\n source,\n is_setup_rewards_page,\n is_sync_fields_with_processor,\n is_vip_tiers_job_running,\n is_can_generate_coupons,\n referral_reminder_days,\n merchant_guid,\n facebook_app_id,\n is_completed_onboarding,\n is_first_time_referral_discounts_enable_flag,\n is_discount_code_based_referral_program_enabled,\n is_verified_email_domain,\n is_test_account,\n is_dev_account,\n time_zone,\n loyalty_opt_in_strategy,\n referral_opt_in_strategy,\n round_discounts_strategy,\n is_delete_used_coupons_enable,\n is_storefront_css_included,\n group_id,\n vip_type,\n is_vip_enabled,\n SMALLINT(is_discount_stacking_order) AS is_discount_stacking_order ,\n SMALLINT(is_discount_stacking_product) AS is_discount_stacking_product ,\n SMALLINT(is_discount_stacking_shiping) AS is_discount_stacking_shiping ,\n dwh_updated_date,\n dwh_updated_at\nFROM loyalty__merchant", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__merchant_activeness_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_activeness_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.sql", "unique_id": "model.yoda.analytics___loyalty__merchant_activeness_daily", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_activeness_daily", "analytics___loyalty__merchant_activeness_daily"], "alias": "analytics___loyalty__merchant_activeness_daily", "checksum": {"name": "sha256", "checksum": "9365131e02b47c355c5cb0fcfab91e4f3579a3b6d858cf94889ed0c58b4a76ed"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Modeled table which indicates different activness indication per merchant daily (2y back)\nPK & Granularity: date, app_key, merchant_id", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active2": {"name": "is_active2", "description": "Indicates if that store had any widget loaded that date with min 3 distinct 'fingerprints' (users)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active2_1": {"name": "is_active2_1", "description": "Indicates if that store had 'rewards_page' widget loaded that date with min 3 distinct 'fingerprints' (users)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082642.4074347, "relation_name": "dev_dkruh1.analytics___loyalty__merchant_activeness_daily", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by = ['date']\n )\n}}\n\nWITH import_dim_calendar AS (\n\n SELECT * FROM {{ ref('platform_stg__dim_calendar') }}\n\n), import_merchant AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant') }}\n\n), import_store_pixel_daily AS (\n\n SELECT * FROM {{ ref('analytics___platform__store_pixel_metrics_daily') }}\n\n),\n \ncalendar_dates AS (\n\n SELECT \n date\n FROM import_dim_calendar\n WHERE date BETWEEN MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1) AND DATE_SUB(DATE(CURRENT_DATE),1)\n {% if is_incremental() %}\n AND date > (SELECT MAX(date) FROM {{ this }})\n {% endif %}\n\n), \n\nactive2_stores_by_date AS (\n\n SELECT \n DISTINCT app_key,\n date\n FROM import_store_pixel_daily\n WHERE product_name = 'loyalty'\n AND action = 'loaded'\n AND metric = 'unique user count'\n AND date BETWEEN MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1) AND DATE_SUB(DATE(CURRENT_DATE),1)\n GROUP BY app_key, date, widget_element\n HAVING SUM(value) >= 3\n\n),\n\nactive2_1_stores_by_date AS (\n\n SELECT\n app_key,\n date\n FROM import_store_pixel_daily\n WHERE product_name = 'loyalty'\n AND action = 'loaded'\n AND metric = 'unique user count'\n AND widget_element = 'rewards_page_widget'\n AND date BETWEEN MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1) AND DATE_SUB(DATE(CURRENT_DATE),1)\n GROUP BY app_key, date\n HAVING SUM(value) >= 3\n\n),\n\nloyalty__merchant_activeness_daily AS (\n\n SELECT \n DISTINCT calendar.date,\n merchant.merchant_id,\n merchant.app_key,\n CASE WHEN active2.date IS NOT NULL THEN 1 ELSE 0 END AS is_active2,\n CASE WHEN active2_1.date IS NOT NULL THEN 1 ELSE 0 END AS is_active2_1,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_merchant AS merchant\n INNER JOIN calendar_dates AS calendar\n ON DATE(merchant.merchant_created_at) <= calendar.date\n LEFT JOIN active2_stores_by_date AS active2\n ON active2.date = calendar.date\n AND active2.app_key = merchant.app_key\n LEFT JOIN active2_1_stores_by_date AS active2_1\n ON active2_1.date = calendar.date\n AND active2_1.app_key = merchant.app_key \n)\n\nSELECT * \nFROM loyalty__merchant_activeness_daily", "language": "sql", "refs": [{"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}, {"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___platform__store_pixel_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.sql", "compiled": true, "compiled_code": "\n\nWITH import_dim_calendar AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__dim_calendar\n\n), import_merchant AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant\n\n), import_store_pixel_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store_pixel_metrics_daily\n\n),\n \ncalendar_dates AS (\n\n SELECT \n date\n FROM import_dim_calendar\n WHERE date BETWEEN MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1) AND DATE_SUB(DATE(CURRENT_DATE),1)\n \n\n), \n\nactive2_stores_by_date AS (\n\n SELECT \n DISTINCT app_key,\n date\n FROM import_store_pixel_daily\n WHERE product_name = 'loyalty'\n AND action = 'loaded'\n AND metric = 'unique user count'\n AND date BETWEEN MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1) AND DATE_SUB(DATE(CURRENT_DATE),1)\n GROUP BY app_key, date, widget_element\n HAVING SUM(value) >= 3\n\n),\n\nactive2_1_stores_by_date AS (\n\n SELECT\n app_key,\n date\n FROM import_store_pixel_daily\n WHERE product_name = 'loyalty'\n AND action = 'loaded'\n AND metric = 'unique user count'\n AND widget_element = 'rewards_page_widget'\n AND date BETWEEN MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1) AND DATE_SUB(DATE(CURRENT_DATE),1)\n GROUP BY app_key, date\n HAVING SUM(value) >= 3\n\n),\n\nloyalty__merchant_activeness_daily AS (\n\n SELECT \n DISTINCT calendar.date,\n merchant.merchant_id,\n merchant.app_key,\n CASE WHEN active2.date IS NOT NULL THEN 1 ELSE 0 END AS is_active2,\n CASE WHEN active2_1.date IS NOT NULL THEN 1 ELSE 0 END AS is_active2_1,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_merchant AS merchant\n INNER JOIN calendar_dates AS calendar\n ON DATE(merchant.merchant_created_at) <= calendar.date\n LEFT JOIN active2_stores_by_date AS active2\n ON active2.date = calendar.date\n AND active2.app_key = merchant.app_key\n LEFT JOIN active2_1_stores_by_date AS active2_1\n ON active2_1.date = calendar.date\n AND active2_1.app_key = merchant.app_key \n)\n\nSELECT * \nFROM loyalty__merchant_activeness_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__merchant_metrics_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_metrics_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.sql", "unique_id": "model.yoda.analytics___loyalty__merchant_metrics_daily", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_metrics_daily", "analytics___loyalty__merchant_metrics_daily"], "alias": "analytics___loyalty__merchant_metrics_daily", "checksum": {"name": "sha256", "checksum": "ec6969b509ab988494cbf718d3fc73a12cb3badaa99b9d33a52972f1d8c13198"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "primary-key": "merchant_id, date", "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Holds daily information (dimentions & measures) for each merchant", "columns": {"merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "Yotpo store unique id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_rewards_installed": {"name": "is_rewards_installed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_analytics_installed": {"name": "is_analytics_installed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_widget_enabled": {"name": "is_widget_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_redemptions_enabled": {"name": "is_redemptions_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_program_live": {"name": "is_program_live", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_can_generate_coupons": {"name": "is_can_generate_coupons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_storefront_css_included": {"name": "is_storefront_css_included", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active2": {"name": "is_active2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active2_1": {"name": "is_active2_1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "primary-key": "merchant_id, date", "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "primary-key": "merchant_id, date", "cluster_profile": {"name": "large"}}}, "created_at": 1700082642.457353, "relation_name": "dev_dkruh1.analytics___loyalty__merchant_metrics_daily", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\n{{ dbt_data_applications.aggregate_daily_profile(\n sources=[\n {\n 'source': ref('analytics___loyalty__daily_merchant'), \n 'fields': ['app_key','is_rewards_installed','is_analytics_installed','is_widget_enabled','is_redemptions_enabled','is_program_live','is_can_generate_coupons','is_storefront_css_included']\n },\n {\n 'source': ref('analytics___loyalty__merchant_activeness_daily'), \n 'fields': ['is_active2','is_active2_1']\n }\n ],\n keys=['merchant_id', 'date'],\n calendar={\n 'add_calendar': False,\n 'column_foreign_key_name': \"merchant_id\",\n 'column_time_frame_key_name': \"date\",\n 'lower_calendar_limit': \"2022-01-23\"\n }\n) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__daily_merchant", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.aggregate_daily_profile", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__daily_merchant", "model.yoda.analytics___loyalty__merchant_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.sql", "compiled": true, "compiled_code": "\n\n\n \n\n \n\n \n\n WITH sources_union AS (\n \n\n (\n select\n\n cast('dev_dkruh1.analytics___loyalty__daily_merchant' as string) as _dbt_source_relation,\n \n cast(`merchant_id` as bigint) as `merchant_id` ,\n cast(`app_key` as string) as `app_key` ,\n cast(`is_rewards_installed` as smallint) as `is_rewards_installed` ,\n cast(`is_analytics_installed` as smallint) as `is_analytics_installed` ,\n cast(`is_widget_enabled` as smallint) as `is_widget_enabled` ,\n cast(`is_redemptions_enabled` as smallint) as `is_redemptions_enabled` ,\n cast(`is_program_live` as smallint) as `is_program_live` ,\n cast(`is_can_generate_coupons` as smallint) as `is_can_generate_coupons` ,\n cast(`is_storefront_css_included` as smallint) as `is_storefront_css_included` ,\n cast(`date` as date) as `date` ,\n cast(null as int) as `is_active2` ,\n cast(null as int) as `is_active2_1` \n\n from dev_dkruh1.analytics___loyalty__daily_merchant\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.analytics___loyalty__merchant_activeness_daily' as string) as _dbt_source_relation,\n \n cast(`merchant_id` as bigint) as `merchant_id` ,\n cast(`app_key` as string) as `app_key` ,\n cast(null as smallint) as `is_rewards_installed` ,\n cast(null as smallint) as `is_analytics_installed` ,\n cast(null as smallint) as `is_widget_enabled` ,\n cast(null as smallint) as `is_redemptions_enabled` ,\n cast(null as smallint) as `is_program_live` ,\n cast(null as smallint) as `is_can_generate_coupons` ,\n cast(null as smallint) as `is_storefront_css_included` ,\n cast(`date` as date) as `date` ,\n cast(`is_active2` as int) as `is_active2` ,\n cast(`is_active2_1` as int) as `is_active2_1` \n\n from dev_dkruh1.analytics___loyalty__merchant_activeness_daily\n )\n\n \n )\n , sources_union_grouped AS (\n SELECT sources_union.merchant_id as merchant_id, sources_union.date as date\n , MAX(sources_union.app_key) as app_key\n , MAX(sources_union.is_rewards_installed) as is_rewards_installed\n , MAX(sources_union.is_analytics_installed) as is_analytics_installed\n , MAX(sources_union.is_widget_enabled) as is_widget_enabled\n , MAX(sources_union.is_redemptions_enabled) as is_redemptions_enabled\n , MAX(sources_union.is_program_live) as is_program_live\n , MAX(sources_union.is_can_generate_coupons) as is_can_generate_coupons\n , MAX(sources_union.is_storefront_css_included) as is_storefront_css_included\n , MAX(sources_union.is_active2) as is_active2\n , MAX(sources_union.is_active2_1) as is_active2_1\n \n FROM sources_union \n GROUP BY sources_union.merchant_id, sources_union.date)\n\n\n SELECT merchant_id, date\n , app_key\n , is_rewards_installed\n , is_analytics_installed\n , is_widget_enabled\n , is_redemptions_enabled\n , is_program_live\n , is_can_generate_coupons\n , is_storefront_css_included\n , is_active2\n , is_active2_1\n \n FROM sources_union_grouped \n\n \n\n \n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__merchant_monthly_element_activation": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_monthly_element_activation", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.sql", "unique_id": "model.yoda.analytics___loyalty__merchant_monthly_element_activation", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_monthly_element_activation", "analytics___loyalty__merchant_monthly_element_activation"], "alias": "analytics___loyalty__merchant_monthly_element_activation", "checksum": {"name": "sha256", "checksum": "4d5861ff75b9d437a29c66cb9e9f21c62aab810f9bd9afa1ebaf94615c6eb466"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Monthly table for merchants that had redemptions.\nThe table shows for each merchant and month from which type of sources he had redemptions (Not refferal).\nThe start date of the table is '2023-05-03' because the redemption source field was added after this day.\nGranularity and PK : merchant_id,month,redemption_source", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry_name": {"name": "industry_name", "description": "Industry of the store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_source": {"name": "redemption_source", "description": "The source where the redemption was accourd.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name_in_month": {"name": "closing_plan_name_in_month", "description": "The plan name in the last day of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type": {"name": "plan_type", "description": "Loyalty defenition of HT/LT . HT (PLATINUM,'ENTERPRISE)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_completion_date": {"name": "onboarding_completion_date", "description": "Date when the organization_key finished onboarding", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "expiration_policy_type": {"name": "expiration_policy_type", "description": "The point expiration policy in the end of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "retention_period_in_days": {"name": "retention_period_in_days", "description": "The period of time which the points will be expired in the point expiration policy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active3": {"name": "is_active3", "description": "1/0 wether the merchant got to 4 unique redeeemrs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_fixed_amount_redemption_in_month": {"name": "is_fixed_amount_redemption_in_month", "description": "1/0 if the merchant had at least one fixed amount redemption in the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_redeemable_redemption_in_month": {"name": "is_redeemable_redemption_in_month", "description": "1/0 if the merchant had at least one redeemable redemption in the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_discount_stacking_order": {"name": "is_discount_stacking_order", "description": "1/0 if the merchant enbaled discount stacking from type 'order' in the end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_stacking_product": {"name": "is_discount_stacking_product", "description": "1/0 if the merchant enbaled discount stacking from type 'product' in the end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_stacking_shiping": {"name": "is_discount_stacking_shiping", "description": "1/0 if the merchant enbaled discount stacking from type 'shiping' in the end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082642.4886155, "relation_name": "dev_dkruh1.analytics___loyalty__merchant_monthly_element_activation", "raw_code": "WITH import_redemption_details AS (\n\n SELECT * \n FROM {{ ref('analytics___loyalty__redemption_details') }}\n\n), import_merchant_monthly AS (\n\n SELECT * \n FROM {{ ref('analytics___loyalty__merchant_plan_monthly') }}\n\n), import_merchant_daily_snapshot AS (\n\n SELECT * \n FROM {{ ref('analytics___loyalty__daily_merchant') }}\n\n), import_expiration_policy_over_time AS (\n\n SELECT * \n FROM {{ ref('analytics___loyalty__point_expiration_policy_settings_over_time') }}\n\n), import_merchants_data AS (\n\n SELECT * \n FROM {{ ref('analytics___loyalty__merchant') }}\n\n), import_sf_account AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce__account') }}\n\n), import_sf_account_product AS (\n\n SELECT *\n FROM {{ ref('analytics___salesforce__account_product') }}\n\n),\n\nmonthly_redemption_data_points AS (\n\n SELECT \n DISTINCT \n TRUNC(redemption_deatils.point_redemption_created_at,'MONTH') AS month,\n redemption_deatils.merchant_id AS merchant_id,\n redemption_deatils.redemption_source AS redemption_source,\n MAX(IF (redemption_deatils.is_direct_rewarded = 0,1,0)) OVER(PARTITION BY redemption_deatils.merchant_id,TRUNC(redemption_deatils.point_redemption_created_at,'MONTH')) AS is_redeemable_redemption_in_month,\n MAX(IF (redemption_deatils.discount_type = 'fixed_amount',1,0)) OVER(PARTITION BY redemption_deatils.merchant_id,TRUNC(redemption_deatils.point_redemption_created_at,'MONTH')) AS is_fixed_amount_redemption_in_month\n FROM import_redemption_details AS redemption_deatils\n WHERE redemption_deatils.referral_id IS NULL\n AND DATE(redemption_deatils.point_redemption_created_at) >= '2023-05-03'\n AND redemption_deatils.point_redemption_is_deleted = 0\n AND redemption_deatils.is_visible = 1\n\n),\n\nmonthly_merchant_redemption AS (\n\n SELECT \n redemption_data_points.month, \n redemption_data_points.merchant_id, \n merchant_monthly.app_key, \n redemption_data_points.redemption_source, \n merchant_monthly.closing_plan_name_in_month,\n IF(merchant_monthly.closing_plan_name_in_month IN ('PLATINUM','ENTERPRISE'),'HT','LT') AS plan_type,\n merchant_monthly.is_active3,\n redemption_data_points.is_redeemable_redemption_in_month,\n redemption_data_points.is_fixed_amount_redemption_in_month\n FROM monthly_redemption_data_points AS redemption_data_points\n INNER JOIN import_merchant_monthly AS merchant_monthly \n ON merchant_monthly.merchant_id = redemption_data_points.merchant_id\n AND redemption_data_points.month = merchant_monthly.month\n\n),\n\ndiscount_stacking_last_day_in_month AS (\n\n SELECT\n merchant_id,\n date,\n is_discount_stacking_order,\n is_discount_stacking_product,\n is_discount_stacking_shiping,\n ROW_NUMBER() OVER(PARTITION BY merchant_id,TRUNC(date,'MONTH') ORDER BY DATE DESC) AS end_of_month_rank\n FROM import_merchant_daily_snapshot AS merchant_daily_snapshot\n\n),\n\nmonthly_discount_stacking AS (\n\n SELECT \n merchant_id,\n TRUNC(date,'MONTH') AS month,\n is_discount_stacking_order,\n is_discount_stacking_product,\n is_discount_stacking_shiping\n FROM discount_stacking_last_day_in_month\n WHERE end_of_month_rank = 1\n\n),\n\npoint_expiration_policy_last_day_in_month AS (\n\n SELECT \n merchant_id,\n from_date,\n to_date,\n expiration_policy_type,\n retention_period_in_days,\n ROW_NUMBER() OVER(PARTITION BY merchant_id,TRUNC(from_date,'MONTH') ORDER BY from_date DESC) AS end_of_month_rank\n FROM import_expiration_policy_over_time\n\n),\n\npoint_expiration_policy_over_time AS (\n\n SELECT \n merchant_id,\n from_date,\n TRUNC(from_date,'MONTH') AS from_date_month,\n to_date,\n TRUNC(to_date,'MONTH') AS to_date_month,\n expiration_policy_type,\n retention_period_in_days\n FROM point_expiration_policy_last_day_in_month\n WHERE end_of_month_rank = 1\n\n),\n\naccount_onboarding_end_date AS (\n\n SELECT\n sf_account.organization_key,\n MIN(sf_account_product.onboarding_completion_date) AS onboarding_completion_date\n FROM import_sf_account_product AS sf_account_product\n INNER JOIN import_sf_account AS sf_account\n ON sf_account_product.account_id = sf_account.account_id\n GROUP BY 1\n\n),\n\nmerchant_monthly_element_activation_res AS (\n\n SELECT\n monthly_merchant_redemption.month,\n monthly_merchant_redemption.merchant_id,\n monthly_merchant_redemption.app_key,\n IF(LOWER(merchants.platform) = 'shopify' AND LOWER(merchants.plan_name) = 'shopify_plus','shopify_plus',merchants.platform) AS platform,\n sf_account.industry_name,\n merchants.organization_key,\n monthly_merchant_redemption.redemption_source,\n monthly_merchant_redemption.closing_plan_name_in_month,\n monthly_merchant_redemption.plan_type,\n account_onboarding_end_date.onboarding_completion_date,\n point_expiration_policy_over_time.expiration_policy_type,\n point_expiration_policy_over_time.retention_period_in_days,\n monthly_merchant_redemption.is_active3,\n monthly_merchant_redemption.is_fixed_amount_redemption_in_month,\n monthly_merchant_redemption.is_redeemable_redemption_in_month,\n discount_stacking.is_discount_stacking_order,\n discount_stacking.is_discount_stacking_product,\n discount_stacking.is_discount_stacking_shiping,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM monthly_merchant_redemption AS monthly_merchant_redemption\n LEFT JOIN monthly_discount_stacking AS discount_stacking\n ON discount_stacking.merchant_id = monthly_merchant_redemption.merchant_id\n AND discount_stacking.month = monthly_merchant_redemption.month\n LEFT JOIN point_expiration_policy_over_time \n ON point_expiration_policy_over_time.merchant_id = monthly_merchant_redemption.merchant_id\n AND monthly_merchant_redemption.month >= from_date_month \n AND monthly_merchant_redemption.month < to_date_month\n LEFT JOIN import_merchants_data AS merchants\n ON merchants.merchant_id = monthly_merchant_redemption.merchant_id\n LEFT JOIN import_sf_account AS sf_account\n ON sf_account.organization_key = merchants.organization_key\n LEFT JOIN account_onboarding_end_date AS account_onboarding_end_date\n ON account_onboarding_end_date.organization_key = merchants.organization_key\n\n)\n\nSELECT * \nFROM merchant_monthly_element_activation_res", "language": "sql", "refs": [{"name": "analytics___loyalty__redemption_details", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}, {"name": "analytics___loyalty__daily_merchant", "package": null, "version": null}, {"name": "analytics___loyalty__point_expiration_policy_settings_over_time", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___salesforce__account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__daily_merchant", "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.sql", "compiled": true, "compiled_code": "WITH import_redemption_details AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___loyalty__redemption_details\n\n), import_merchant_monthly AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___loyalty__merchant_plan_monthly\n\n), import_merchant_daily_snapshot AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___loyalty__daily_merchant\n\n), import_expiration_policy_over_time AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___loyalty__point_expiration_policy_settings_over_time\n\n), import_merchants_data AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___loyalty__merchant\n\n), import_sf_account AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce__account\n\n), import_sf_account_product AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___salesforce__account_product\n\n),\n\nmonthly_redemption_data_points AS (\n\n SELECT \n DISTINCT \n TRUNC(redemption_deatils.point_redemption_created_at,'MONTH') AS month,\n redemption_deatils.merchant_id AS merchant_id,\n redemption_deatils.redemption_source AS redemption_source,\n MAX(IF (redemption_deatils.is_direct_rewarded = 0,1,0)) OVER(PARTITION BY redemption_deatils.merchant_id,TRUNC(redemption_deatils.point_redemption_created_at,'MONTH')) AS is_redeemable_redemption_in_month,\n MAX(IF (redemption_deatils.discount_type = 'fixed_amount',1,0)) OVER(PARTITION BY redemption_deatils.merchant_id,TRUNC(redemption_deatils.point_redemption_created_at,'MONTH')) AS is_fixed_amount_redemption_in_month\n FROM import_redemption_details AS redemption_deatils\n WHERE redemption_deatils.referral_id IS NULL\n AND DATE(redemption_deatils.point_redemption_created_at) >= '2023-05-03'\n AND redemption_deatils.point_redemption_is_deleted = 0\n AND redemption_deatils.is_visible = 1\n\n),\n\nmonthly_merchant_redemption AS (\n\n SELECT \n redemption_data_points.month, \n redemption_data_points.merchant_id, \n merchant_monthly.app_key, \n redemption_data_points.redemption_source, \n merchant_monthly.closing_plan_name_in_month,\n IF(merchant_monthly.closing_plan_name_in_month IN ('PLATINUM','ENTERPRISE'),'HT','LT') AS plan_type,\n merchant_monthly.is_active3,\n redemption_data_points.is_redeemable_redemption_in_month,\n redemption_data_points.is_fixed_amount_redemption_in_month\n FROM monthly_redemption_data_points AS redemption_data_points\n INNER JOIN import_merchant_monthly AS merchant_monthly \n ON merchant_monthly.merchant_id = redemption_data_points.merchant_id\n AND redemption_data_points.month = merchant_monthly.month\n\n),\n\ndiscount_stacking_last_day_in_month AS (\n\n SELECT\n merchant_id,\n date,\n is_discount_stacking_order,\n is_discount_stacking_product,\n is_discount_stacking_shiping,\n ROW_NUMBER() OVER(PARTITION BY merchant_id,TRUNC(date,'MONTH') ORDER BY DATE DESC) AS end_of_month_rank\n FROM import_merchant_daily_snapshot AS merchant_daily_snapshot\n\n),\n\nmonthly_discount_stacking AS (\n\n SELECT \n merchant_id,\n TRUNC(date,'MONTH') AS month,\n is_discount_stacking_order,\n is_discount_stacking_product,\n is_discount_stacking_shiping\n FROM discount_stacking_last_day_in_month\n WHERE end_of_month_rank = 1\n\n),\n\npoint_expiration_policy_last_day_in_month AS (\n\n SELECT \n merchant_id,\n from_date,\n to_date,\n expiration_policy_type,\n retention_period_in_days,\n ROW_NUMBER() OVER(PARTITION BY merchant_id,TRUNC(from_date,'MONTH') ORDER BY from_date DESC) AS end_of_month_rank\n FROM import_expiration_policy_over_time\n\n),\n\npoint_expiration_policy_over_time AS (\n\n SELECT \n merchant_id,\n from_date,\n TRUNC(from_date,'MONTH') AS from_date_month,\n to_date,\n TRUNC(to_date,'MONTH') AS to_date_month,\n expiration_policy_type,\n retention_period_in_days\n FROM point_expiration_policy_last_day_in_month\n WHERE end_of_month_rank = 1\n\n),\n\naccount_onboarding_end_date AS (\n\n SELECT\n sf_account.organization_key,\n MIN(sf_account_product.onboarding_completion_date) AS onboarding_completion_date\n FROM import_sf_account_product AS sf_account_product\n INNER JOIN import_sf_account AS sf_account\n ON sf_account_product.account_id = sf_account.account_id\n GROUP BY 1\n\n),\n\nmerchant_monthly_element_activation_res AS (\n\n SELECT\n monthly_merchant_redemption.month,\n monthly_merchant_redemption.merchant_id,\n monthly_merchant_redemption.app_key,\n IF(LOWER(merchants.platform) = 'shopify' AND LOWER(merchants.plan_name) = 'shopify_plus','shopify_plus',merchants.platform) AS platform,\n sf_account.industry_name,\n merchants.organization_key,\n monthly_merchant_redemption.redemption_source,\n monthly_merchant_redemption.closing_plan_name_in_month,\n monthly_merchant_redemption.plan_type,\n account_onboarding_end_date.onboarding_completion_date,\n point_expiration_policy_over_time.expiration_policy_type,\n point_expiration_policy_over_time.retention_period_in_days,\n monthly_merchant_redemption.is_active3,\n monthly_merchant_redemption.is_fixed_amount_redemption_in_month,\n monthly_merchant_redemption.is_redeemable_redemption_in_month,\n discount_stacking.is_discount_stacking_order,\n discount_stacking.is_discount_stacking_product,\n discount_stacking.is_discount_stacking_shiping,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM monthly_merchant_redemption AS monthly_merchant_redemption\n LEFT JOIN monthly_discount_stacking AS discount_stacking\n ON discount_stacking.merchant_id = monthly_merchant_redemption.merchant_id\n AND discount_stacking.month = monthly_merchant_redemption.month\n LEFT JOIN point_expiration_policy_over_time \n ON point_expiration_policy_over_time.merchant_id = monthly_merchant_redemption.merchant_id\n AND monthly_merchant_redemption.month >= from_date_month \n AND monthly_merchant_redemption.month < to_date_month\n LEFT JOIN import_merchants_data AS merchants\n ON merchants.merchant_id = monthly_merchant_redemption.merchant_id\n LEFT JOIN import_sf_account AS sf_account\n ON sf_account.organization_key = merchants.organization_key\n LEFT JOIN account_onboarding_end_date AS account_onboarding_end_date\n ON account_onboarding_end_date.organization_key = merchants.organization_key\n\n)\n\nSELECT * \nFROM merchant_monthly_element_activation_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__merchant_plan_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_plan_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.sql", "unique_id": "model.yoda.analytics___loyalty__merchant_plan_daily", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_daily", "analytics___loyalty__merchant_plan_daily"], "alias": "analytics___loyalty__merchant_plan_daily", "checksum": {"name": "sha256", "checksum": "786bb72eba0621db8ce99e29846982961981573d5542cea63ae26837bad5d0a6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Merchants daily plan changes and other enrichments\nPK and granularity: merchant_id, date", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_created_date": {"name": "user_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "program_first_activated_date": {"name": "program_first_activated_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "company_name": {"name": "company_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_install": {"name": "is_install", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_uninstall_date": {"name": "is_uninstall_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_install_date": {"name": "is_install_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_program_live": {"name": "is_program_live", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "platform": {"name": "platform", "description": "Describes the merchant platform with an addition for shopify_plus plan as a platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_dev_account": {"name": "is_dev_account", "description": "Indicates whether the store is a dev one from the merchant end", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_start_day": {"name": "is_start_day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active2": {"name": "is_active2", "description": "Indicates if that store had any widget loaded that date with min 3 distinct 'fingerprints' (users)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active2_1": {"name": "is_active2_1", "description": "Indicates if that store had 'rewards_page' widget loaded that date with min 3 distinct 'fingerprints' (users)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "first_time_active3_date": {"name": "first_time_active3_date", "description": "first date a merchant accumulated 4 distinct users who redeemed points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_ht_ss": {"name": "is_ht_ss", "description": "HT motion Indication for users who made a subscription to GOLD plan with sales", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "first_plan_ever": {"name": "first_plan_ever", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "did_upgrade_first_day": {"name": "did_upgrade_first_day", "description": "Indicates whether the merchant upgraded his plan on the day he was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "changes": {"name": "changes", "description": "Describes the change in the merchant plan from last status plan - upgrade or downgrade", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_prior_to_change": {"name": "plan_prior_to_change", "description": "If there was a change in plan (upgrade/downgrade) this column will show what was the plan name before the change", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id_prior_to_change": {"name": "plan_id_prior_to_change", "description": "If there was a change in plan (upgrade/downgrade) this column will show what was the plan id before the change", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_acc_unique_redemptions_w_order_cnt": {"name": "merchant_acc_unique_redemptions_w_order_cnt", "description": "Accumulated daily count of distinct redeem customer per merchant who made order with cupon", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_acc_unique_purchasers_cnt": {"name": "merchant_acc_unique_purchasers_cnt", "description": "Accumulated daily count of distinct customer who made order per merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082642.5555265, "relation_name": "dev_dkruh1.analytics___loyalty__merchant_plan_daily", "raw_code": "-- Import --\n\nWITH import_calendar AS (\n\n SELECT * FROM {{ ref('analytics___utils_stg__calendar') }}\n\n), import_segment_event_over_time AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__merchant_segment_event_over_time') }}\n\n), import_merchant AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant') }}\n\n), import_subscription AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__loyalty_subscription') }}\n\n), import_plan AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__loyalty_plan') }}\n\n), import_segment_uninstall_event AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__segment_uninstall') }}\n\n), import_segment_install_event AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__segment_install_event_details') }}\n\n), import_merchant_metrics_daily AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_metrics_daily') }}\n\n), import_merchant_activeness_daily AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_activeness_daily') }}\n\n), import_redemption_details AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__redemption_details') }}\n\n), import_sf_opportunity AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_opportunity') }}\n\n), import_sf_account AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_account') }}\n\n), import_purchases AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__purchase') }}\n\n),\n\n-- Logic --\n\nvalid_point_redemptions_with_orders AS (\n\n SELECT \n merchant_id,\n point_redemption_first_order_date AS point_redemption_order_date, \n customer_id\n FROM import_redemption_details\n WHERE customer_id IS NOT NULL\n AND app_key IS NOT NULL\n AND point_redemption_is_deleted = 0\n AND is_visible = 1 \n AND (amount_in_usd > 0 OR amount_redeemed_usd > 0)\n AND point_redemption_orders_cnt > 0\n\n), \n\nredeem_start_day_of_distinct_customer_by_merchant AS (\n\n SELECT \n merchant_id, \n customer_id,\n MIN(point_redemption_order_date) AS start_day \n FROM valid_point_redemptions_with_orders\n GROUP BY 1,2\n\n), \n\nmerchant_acc_distinct_redemptions_by_date AS (\n\n SELECT \n merchant_id,\n start_day,\n SUM(COUNT(*)) OVER (PARTITION BY merchant_id ORDER BY start_day) AS merchant_acc_unique_redemptions_w_order_cnt\n FROM redeem_start_day_of_distinct_customer_by_merchant \n GROUP BY merchant_id, start_day \n ORDER BY merchant_id, start_day\n\n),\n\nactive3_first_date AS (\n\n SELECT \n merchant_id,\n MIN(start_day) AS first_time_active3_date\n FROM merchant_acc_distinct_redemptions_by_date \n WHERE merchant_acc_unique_redemptions_w_order_cnt > 3\n GROUP BY 1\n \n\n),\n\npurchase_start_day_of_distinct_customer_by_merchant AS (\n\n SELECT\n merchant_id,\n customer_id,\n MIN(purchase_date) AS start_day\n FROM import_purchases\n WHERE customer_id IS NOT NULL\n AND purchase_date IS NOT NULL\n GROUP BY merchant_id, customer_id\n\n),\n\nmerchant_acc_distinct_purchasers_by_date AS (\n\n SELECT \n merchant_id,\n start_day,\n SUM(COUNT(*)) OVER (PARTITION BY merchant_id ORDER BY start_day) AS merchant_acc_unique_purchasers_cnt\n FROM purchase_start_day_of_distinct_customer_by_merchant\n GROUP BY merchant_id, start_day \n ORDER BY merchant_id, start_day\n\n),\n\ncalendar_dates AS (\n\n SELECT \n date\n FROM import_calendar\n WHERE date BETWEEN MAKE_DATE(YEAR(current_date)-2,1,1) AND DATE_SUB(DATE(current_date),1)\n\n), \n\nmerchant_upper_bound_date AS (\n\n SELECT\n merchant_id,\n CASE WHEN LOWER(event_type) = 'uninstall' THEN from_time ELSE TIMESTAMP(current_date) END AS upper_bound_date\n FROM import_segment_event_over_time\n WHERE to_time = '2999-12-31T00:00:00.000+0000'\n\n),\n\nmerchant_last_event_by_day_rank AS (\n\n SELECT\n merchant_id,\n event_type,\n DATE(from_time) AS from_date,\n DATE(to_time) AS to_date,\n ROW_NUMBER() OVER (PARTITION BY merchant_id,DATE(from_time) ORDER BY from_time DESC) AS merchant_event_date_rank\n FROM import_segment_event_over_time\n\n),\n\nmerchant_last_event_by_day AS (\n\n SELECT \n merchant_id,\n event_type,\n from_date,\n to_date\n FROM merchant_last_event_by_day_rank \n WHERE merchant_event_date_rank = 1 \n\n),\n\nmerchant_event_by_start_rank AS (\n\n SELECT \n merchant_id,\n event_type,\n from_date,\n to_date,\n ROW_NUMBER() OVER (PARTITION BY merchant_id ORDER BY from_date ASC) AS merchant_event_rank\n FROM merchant_last_event_by_day\n\n),\n\nmerchant_install_as_first_event AS (\n\n SELECT\n event.merchant_id,\n event.event_type,\n CASE WHEN LOWER(event.event_type) = 'install' \n AND event.merchant_event_rank = 1 \n AND DATE(merchant.merchant_created_at) < event.from_date \n THEN DATE(merchant.merchant_created_at) \n ELSE event.from_date \n END AS from_date,\n event.to_date\n FROM merchant_event_by_start_rank AS event\n LEFT JOIN import_merchant AS merchant\n ON event.merchant_id = merchant.merchant_id\n\n),\n\nadditional_install_events AS (\n\n SELECT\n event.merchant_id,\n 'install' AS event_type,\n DATE(merchant.merchant_created_at) AS from_date,\n event.from_date AS to_date\n FROM merchant_event_by_start_rank AS event\n INNER JOIN import_merchant AS merchant\n ON event.merchant_id = merchant.merchant_id\n WHERE event.merchant_event_rank = 1\n AND LOWER(event.event_type) = 'uninstall'\n\n),\n\nadditional_non_segment_install_events AS (\n\n SELECT \n merchant.merchant_id,\n 'install' AS event_type,\n DATE(merchant.merchant_created_at) AS from_date,\n '2999-12-31' AS to_date\n FROM import_merchant AS merchant\n LEFT JOIN merchant_event_by_start_rank AS event\n ON event.merchant_id = merchant.merchant_id\n WHERE event.merchant_id IS NULL\n\n),\n\nmerchant_events_adjusted AS (\n\n SELECT \n merchant_id,\n event_type,\n from_date,\n to_date\n FROM merchant_install_as_first_event\n UNION ALL\n SELECT\n merchant_id,\n event_type,\n from_date,\n to_date\n FROM additional_install_events\n UNION ALL\n SELECT \n merchant_id,\n event_type,\n from_date,\n to_date\n FROM additional_non_segment_install_events\n\n),\n\nsegment_uninstall_event_by_merchant_by_date AS (\n\n SELECT\n DISTINCT merchant_id,\n DATE(uninstall_at) AS uninstall_date\n FROM import_segment_uninstall_event\n\n),\n\nsegment_install_event_by_merchant_by_date AS (\n\n SELECT\n DISTINCT merchant_id,\n DATE(install_at) AS install_date\n FROM import_segment_install_event\n UNION \n SELECT \n merchant_id,\n DATE(merchant_created_at) AS install_date\n FROM import_merchant AS merchant\n\n),\n\nmerchant_pop AS (\n\n SELECT \n merchant.merchant_id,\n merchant.organization_key,\n DATE(merchant.merchant_created_at) AS user_created_date,\n merchant.app_key,\n merchant.program_first_activated_date,\n merchant.website,\n merchant.company_name,\n upper_bound.upper_bound_date,\n CASE WHEN LOWER(merchant.platform) = 'shopify' AND LOWER(merchant.plan_name) = 'shopify_plus' THEN 'shopify_plus' ELSE platform END AS platform,\n merchant.is_dev_account\n FROM import_merchant AS merchant\n LEFT JOIN merchant_upper_bound_date AS upper_bound\n ON merchant.merchant_id = upper_bound.merchant_id\n WHERE is_test_account = 0\n AND LOWER(merchant.from_email) NOT LIKE '%yotpo%' \n\n),\n\nmerchant_from_creation_to_upper_bound_date_daily AS (\n\n SELECT \n calendar.date,\n merchant.merchant_id,\n merchant.organization_key,\n merchant.user_created_date,\n merchant.app_key,\n merchant.program_first_activated_date,\n merchant.website,\n merchant.company_name,\n merchant.platform,\n merchant.is_dev_account,\n merchant_event.event_type\n FROM merchant_pop AS merchant\n INNER JOIN calendar_dates AS calendar\n ON calendar.date BETWEEN merchant.user_created_date AND IFNULL(merchant.upper_bound_date,current_date)\n LEFT JOIN merchant_events_adjusted AS merchant_event \n ON merchant.merchant_id = merchant_event.merchant_id\n AND calendar.date >= merchant_event.from_date\n AND calendar.date < merchant_event.to_date\n),\n\nmerchant_plan_changes AS (\n\n SELECT \n merchant.merchant_id,\n merchant.user_created_date,\n DATE(subscription.created_at) from_date,\n subscription.plan_id,\n plan.plan_name,\n FIRST_VALUE(plan.plan_name, TRUE) OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS first_plan_in_day,\n FIRST_VALUE(plan.plan_name, TRUE) OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS last_plan_in_day,\n FIRST_VALUE(plan.plan_id, TRUE) OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS first_plan_id_in_day,\n FIRST_VALUE(plan.plan_id, TRUE) OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS last_plan_id_in_day,\n ROW_NUMBER() OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at DESC) AS merchant_subscription_date_rank\n FROM merchant_pop AS merchant\n INNER JOIN import_subscription AS subscription\n ON merchant.merchant_id = subscription.merchant_id\n INNER JOIN import_plan AS plan\n ON subscription.plan_id = plan.plan_id\n),\n\nfirst_created_plan_attributes_changes AS (\n\n SELECT \n merchant_id,\n user_created_date,\n CASE WHEN user_created_date = from_date THEN 1 ELSE 0 END AS is_start_day,\n from_date,\n plan_id,\n plan_name,\n CASE WHEN user_created_date = from_date AND last_plan_id_in_day > first_plan_id_in_day THEN 1 ELSE 0 END AS did_upgrade_first_day,\n CASE WHEN LEAD(from_date) OVER (PARTITION BY merchant_id ORDER BY from_date) IS NULL THEN current_date \n ELSE DATE(LEAD(from_date) OVER (PARTITION BY merchant_id ORDER BY from_date )) - 1 \n END AS to_date,\n first_plan_in_day,\n last_plan_in_day,\n first_plan_id_in_day,\n last_plan_id_in_day\n FROM merchant_plan_changes\n WHERE merchant_subscription_date_rank = 1\n),\n\nss_hybrid_opportunities AS (\n\n SELECT \n DISTINCT account.organization_key,\n opportunity.start_date\n FROM import_sf_opportunity AS opportunity\n LEFT JOIN import_sf_account AS account\n ON opportunity.account_id = account.account_id \n AND account.is_test_account = 0\n WHERE opportunity.stage IN ('Won - Sale', 'Won')\n AND opportunity.is_ht_ss = 1\n AND LOWER(opportunity.plan_name) LIKE '%gold%'\n AND opportunity.is_deleted = 0\n AND opportunity.start_date < CURRENT_DATE\n),\n\nmerchant_plan_daily_base AS (\n\n SELECT \n merchant_daily.date,\n merchant_daily.merchant_id,\n merchant_daily.organization_key,\n merchant_daily.user_created_date,\n merchant_daily.app_key,\n merchant_daily.website,\n merchant_daily.company_name,\n merchant_daily.program_first_activated_date,\n merchant_daily.platform,\n merchant_daily.event_type,\n merchant_daily.is_dev_account,\n plan_changes.is_start_day,\n plan_changes.from_date,\n plan_changes.plan_name,\n plan_changes.plan_id,\n plan_changes.did_upgrade_first_day,\n plan_changes.to_date,\n plan_changes.first_plan_in_day,\n plan_changes.last_plan_in_day,\n plan_changes.first_plan_id_in_day,\n plan_changes.last_plan_id_in_day,\n CASE WHEN IFNULL(LAG(plan_changes.plan_id) OVER (PARTITION BY merchant_daily.merchant_id ORDER BY merchant_daily.date ASC),plan_changes.first_plan_id_in_day) < plan_changes.last_plan_id_in_day \n THEN 'Upgrade' \n WHEN IFNULL(LAG(plan_changes.plan_id) OVER (PARTITION BY merchant_daily.merchant_id ORDER BY merchant_daily.date ASC),plan_changes.first_plan_id_in_day) > plan_changes.last_plan_id_in_day \n AND IFNULL(LAG(plan_changes.plan_id) OVER (PARTITION BY merchant_daily.merchant_id ORDER BY merchant_daily.date ASC),plan_changes.first_plan_id_in_day) > 1\n THEN 'Downgrade'\n ELSE 'No Change' \n END AS changes,\n CASE WHEN is_start_day = 1 THEN first_plan_in_day END AS first_plan_ever\n FROM merchant_from_creation_to_upper_bound_date_daily AS merchant_daily\n INNER JOIN first_created_plan_attributes_changes AS plan_changes\n ON merchant_daily.merchant_id = plan_changes.merchant_id \n AND merchant_daily.date BETWEEN plan_changes.from_date AND plan_changes.to_date\n),\n\npotential_ss_hybrid_merchants AS (\n\n SELECT \n merchant.merchant_id,\n hybrid.start_date\n FROM ss_hybrid_opportunities AS hybrid\n INNER JOIN import_merchant AS merchant\n ON hybrid.organization_key = merchant.organization_key\n INNER JOIN first_created_plan_attributes_changes AS plan_changes\n ON LOWER(plan_changes.plan_name) = 'gold'\n AND merchant.merchant_id = plan_changes.merchant_id\n AND hybrid.start_date = plan_changes.from_date\n\n),\n\nhybrid_merchant_over_time AS (\n\n SELECT\n hybrid.merchant_id,\n hybrid.start_date AS from_date,\n COALESCE(MIN(plan_daily.date), '2999-01-01') AS to_date\n FROM potential_ss_hybrid_merchants AS hybrid\n LEFT JOIN merchant_plan_daily_base AS plan_daily\n ON hybrid.merchant_id = plan_daily.merchant_id\n AND plan_daily.date >= hybrid.start_date \n AND plan_daily.plan_name IN ('FREE','BRONZE') \n GROUP BY 1,2\n),\n\nloyalty__merchant_plan_daily AS (\n\n SELECT\n base.date,\n base.merchant_id,\n base.user_created_date,\n base.app_key,\n base.website,\n base.program_first_activated_date,\n base.company_name,\n CASE WHEN LOWER(base.event_type) = 'install' THEN 1 \n WHEN LOWER(base.event_type) = 'uninstall' THEN 0\n END is_install,\n CASE WHEN uninstall.merchant_id IS NOT NULL THEN 1 ELSE 0 END is_uninstall_date,\n CASE WHEN (install.merchant_id IS NOT NULL) OR (base.date=base.user_created_date) THEN 1 ELSE 0 END AS is_install_date,\n is_program_live,\n base.platform,\n base.is_dev_account,\n base.is_start_day,\n activeness_daily.is_active2,\n activeness_daily.is_active2_1,\n active3_first_date.first_time_active3_date,\n SMALLINT(IF(hybrid_merchant.merchant_id IS NOT NULL,1,0)) AS is_ht_ss,\n FIRST_VALUE(base.first_plan_ever, TRUE) OVER (PARTITION BY base.merchant_id ORDER BY base.date ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) first_plan_ever,\n base.plan_name,\n base.plan_id,\n base.did_upgrade_first_day,\n base.changes, \n CASE WHEN base.changes <> 'No Change' THEN IFNULL(LAG(base.plan_name) OVER (PARTITION BY base.merchant_id ORDER BY base.date ASC),first_plan_in_day) END plan_prior_to_change,\n CASE WHEN base.changes <> 'No Change' THEN IFNULL(LAG(base.plan_id) OVER (PARTITION BY base.merchant_id ORDER BY base.date ASC),first_plan_id_in_day) END plan_id_prior_to_change,\n IFNULL(acc_distinct_redemptions.merchant_acc_unique_redemptions_w_order_cnt, LAST(acc_distinct_redemptions.merchant_acc_unique_redemptions_w_order_cnt, TRUE) OVER (PARTITION BY base.merchant_id ORDER BY base.date ASC ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING)) AS merchant_acc_unique_redemptions_w_order_cnt,\n IFNULL(acc_distinct_purchasers.merchant_acc_unique_purchasers_cnt, LAST(acc_distinct_purchasers.merchant_acc_unique_purchasers_cnt, TRUE) OVER (PARTITION BY base.merchant_id ORDER BY base.date ASC ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING)) AS merchant_acc_unique_purchasers_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM merchant_plan_daily_base AS base\n LEFT JOIN segment_uninstall_event_by_merchant_by_date AS uninstall\n ON base.merchant_id = uninstall.merchant_id\n AND base.date = uninstall.uninstall_date\n LEFT JOIN segment_install_event_by_merchant_by_date AS install\n ON base.merchant_id = install.merchant_id\n AND base.date = install.install_date \n LEFT JOIN import_merchant_metrics_daily AS merchant_daily\n ON base.merchant_id = merchant_daily.merchant_id \n AND base.date = merchant_daily.date \n LEFT JOIN import_merchant_activeness_daily AS activeness_daily \n ON base.merchant_id = activeness_daily.merchant_id \n AND base.date = activeness_daily.date \n LEFT JOIN merchant_acc_distinct_redemptions_by_date AS acc_distinct_redemptions \n ON base.merchant_id = acc_distinct_redemptions.merchant_id\n AND base.date = acc_distinct_redemptions.start_day \n LEFT JOIN merchant_acc_distinct_purchasers_by_date AS acc_distinct_purchasers\n ON base.merchant_id = acc_distinct_purchasers.merchant_id\n AND base.date = acc_distinct_purchasers.start_day \n LEFT JOIN hybrid_merchant_over_time AS hybrid_merchant\n ON base.merchant_id = hybrid_merchant.merchant_id\n AND base.date >= hybrid_merchant.from_date\n AND base.date < hybrid_merchant.to_date\n LEFT JOIN active3_first_date \n ON base.merchant_id = active3_first_date.merchant_id\n\n)\n\n-- Result --\n\nSELECT *\nFROM loyalty__merchant_plan_daily", "language": "sql", "refs": [{"name": "analytics___utils_stg__calendar", "package": null, "version": null}, {"name": "analytics___loyalty_stg__merchant_segment_event_over_time", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_subscription", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_plan", "package": null, "version": null}, {"name": "analytics___loyalty_stg__segment_uninstall", "package": null, "version": null}, {"name": "analytics___loyalty_stg__segment_install_event_details", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_metrics_daily", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_activeness_daily", "package": null, "version": null}, {"name": "analytics___loyalty__redemption_details", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}, {"name": "analytics___loyalty_stg__purchase", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___utils_stg__calendar", "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty_stg__loyalty_subscription", "model.yoda.analytics___loyalty_stg__loyalty_plan", "model.yoda.analytics___loyalty_stg__segment_uninstall", "model.yoda.analytics___loyalty_stg__segment_install_event_details", "model.yoda.analytics___loyalty__merchant_metrics_daily", "model.yoda.analytics___loyalty__merchant_activeness_daily", "model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___salesforce_stg__mc_opportunity", "model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___loyalty_stg__purchase"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_calendar AS (\n\n SELECT * FROM dev_dkruh1.analytics___utils_stg__calendar\n\n), import_segment_event_over_time AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__merchant_segment_event_over_time\n\n), import_merchant AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant\n\n), import_subscription AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__loyalty_subscription\n\n), import_plan AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__loyalty_plan\n\n), import_segment_uninstall_event AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__segment_uninstall\n\n), import_segment_install_event AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__segment_install_event_details\n\n), import_merchant_metrics_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_metrics_daily\n\n), import_merchant_activeness_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_activeness_daily\n\n), import_redemption_details AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__redemption_details\n\n), import_sf_opportunity AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_opportunity\n\n), import_sf_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_account\n\n), import_purchases AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__purchase\n\n),\n\n-- Logic --\n\nvalid_point_redemptions_with_orders AS (\n\n SELECT \n merchant_id,\n point_redemption_first_order_date AS point_redemption_order_date, \n customer_id\n FROM import_redemption_details\n WHERE customer_id IS NOT NULL\n AND app_key IS NOT NULL\n AND point_redemption_is_deleted = 0\n AND is_visible = 1 \n AND (amount_in_usd > 0 OR amount_redeemed_usd > 0)\n AND point_redemption_orders_cnt > 0\n\n), \n\nredeem_start_day_of_distinct_customer_by_merchant AS (\n\n SELECT \n merchant_id, \n customer_id,\n MIN(point_redemption_order_date) AS start_day \n FROM valid_point_redemptions_with_orders\n GROUP BY 1,2\n\n), \n\nmerchant_acc_distinct_redemptions_by_date AS (\n\n SELECT \n merchant_id,\n start_day,\n SUM(COUNT(*)) OVER (PARTITION BY merchant_id ORDER BY start_day) AS merchant_acc_unique_redemptions_w_order_cnt\n FROM redeem_start_day_of_distinct_customer_by_merchant \n GROUP BY merchant_id, start_day \n ORDER BY merchant_id, start_day\n\n),\n\nactive3_first_date AS (\n\n SELECT \n merchant_id,\n MIN(start_day) AS first_time_active3_date\n FROM merchant_acc_distinct_redemptions_by_date \n WHERE merchant_acc_unique_redemptions_w_order_cnt > 3\n GROUP BY 1\n \n\n),\n\npurchase_start_day_of_distinct_customer_by_merchant AS (\n\n SELECT\n merchant_id,\n customer_id,\n MIN(purchase_date) AS start_day\n FROM import_purchases\n WHERE customer_id IS NOT NULL\n AND purchase_date IS NOT NULL\n GROUP BY merchant_id, customer_id\n\n),\n\nmerchant_acc_distinct_purchasers_by_date AS (\n\n SELECT \n merchant_id,\n start_day,\n SUM(COUNT(*)) OVER (PARTITION BY merchant_id ORDER BY start_day) AS merchant_acc_unique_purchasers_cnt\n FROM purchase_start_day_of_distinct_customer_by_merchant\n GROUP BY merchant_id, start_day \n ORDER BY merchant_id, start_day\n\n),\n\ncalendar_dates AS (\n\n SELECT \n date\n FROM import_calendar\n WHERE date BETWEEN MAKE_DATE(YEAR(current_date)-2,1,1) AND DATE_SUB(DATE(current_date),1)\n\n), \n\nmerchant_upper_bound_date AS (\n\n SELECT\n merchant_id,\n CASE WHEN LOWER(event_type) = 'uninstall' THEN from_time ELSE TIMESTAMP(current_date) END AS upper_bound_date\n FROM import_segment_event_over_time\n WHERE to_time = '2999-12-31T00:00:00.000+0000'\n\n),\n\nmerchant_last_event_by_day_rank AS (\n\n SELECT\n merchant_id,\n event_type,\n DATE(from_time) AS from_date,\n DATE(to_time) AS to_date,\n ROW_NUMBER() OVER (PARTITION BY merchant_id,DATE(from_time) ORDER BY from_time DESC) AS merchant_event_date_rank\n FROM import_segment_event_over_time\n\n),\n\nmerchant_last_event_by_day AS (\n\n SELECT \n merchant_id,\n event_type,\n from_date,\n to_date\n FROM merchant_last_event_by_day_rank \n WHERE merchant_event_date_rank = 1 \n\n),\n\nmerchant_event_by_start_rank AS (\n\n SELECT \n merchant_id,\n event_type,\n from_date,\n to_date,\n ROW_NUMBER() OVER (PARTITION BY merchant_id ORDER BY from_date ASC) AS merchant_event_rank\n FROM merchant_last_event_by_day\n\n),\n\nmerchant_install_as_first_event AS (\n\n SELECT\n event.merchant_id,\n event.event_type,\n CASE WHEN LOWER(event.event_type) = 'install' \n AND event.merchant_event_rank = 1 \n AND DATE(merchant.merchant_created_at) < event.from_date \n THEN DATE(merchant.merchant_created_at) \n ELSE event.from_date \n END AS from_date,\n event.to_date\n FROM merchant_event_by_start_rank AS event\n LEFT JOIN import_merchant AS merchant\n ON event.merchant_id = merchant.merchant_id\n\n),\n\nadditional_install_events AS (\n\n SELECT\n event.merchant_id,\n 'install' AS event_type,\n DATE(merchant.merchant_created_at) AS from_date,\n event.from_date AS to_date\n FROM merchant_event_by_start_rank AS event\n INNER JOIN import_merchant AS merchant\n ON event.merchant_id = merchant.merchant_id\n WHERE event.merchant_event_rank = 1\n AND LOWER(event.event_type) = 'uninstall'\n\n),\n\nadditional_non_segment_install_events AS (\n\n SELECT \n merchant.merchant_id,\n 'install' AS event_type,\n DATE(merchant.merchant_created_at) AS from_date,\n '2999-12-31' AS to_date\n FROM import_merchant AS merchant\n LEFT JOIN merchant_event_by_start_rank AS event\n ON event.merchant_id = merchant.merchant_id\n WHERE event.merchant_id IS NULL\n\n),\n\nmerchant_events_adjusted AS (\n\n SELECT \n merchant_id,\n event_type,\n from_date,\n to_date\n FROM merchant_install_as_first_event\n UNION ALL\n SELECT\n merchant_id,\n event_type,\n from_date,\n to_date\n FROM additional_install_events\n UNION ALL\n SELECT \n merchant_id,\n event_type,\n from_date,\n to_date\n FROM additional_non_segment_install_events\n\n),\n\nsegment_uninstall_event_by_merchant_by_date AS (\n\n SELECT\n DISTINCT merchant_id,\n DATE(uninstall_at) AS uninstall_date\n FROM import_segment_uninstall_event\n\n),\n\nsegment_install_event_by_merchant_by_date AS (\n\n SELECT\n DISTINCT merchant_id,\n DATE(install_at) AS install_date\n FROM import_segment_install_event\n UNION \n SELECT \n merchant_id,\n DATE(merchant_created_at) AS install_date\n FROM import_merchant AS merchant\n\n),\n\nmerchant_pop AS (\n\n SELECT \n merchant.merchant_id,\n merchant.organization_key,\n DATE(merchant.merchant_created_at) AS user_created_date,\n merchant.app_key,\n merchant.program_first_activated_date,\n merchant.website,\n merchant.company_name,\n upper_bound.upper_bound_date,\n CASE WHEN LOWER(merchant.platform) = 'shopify' AND LOWER(merchant.plan_name) = 'shopify_plus' THEN 'shopify_plus' ELSE platform END AS platform,\n merchant.is_dev_account\n FROM import_merchant AS merchant\n LEFT JOIN merchant_upper_bound_date AS upper_bound\n ON merchant.merchant_id = upper_bound.merchant_id\n WHERE is_test_account = 0\n AND LOWER(merchant.from_email) NOT LIKE '%yotpo%' \n\n),\n\nmerchant_from_creation_to_upper_bound_date_daily AS (\n\n SELECT \n calendar.date,\n merchant.merchant_id,\n merchant.organization_key,\n merchant.user_created_date,\n merchant.app_key,\n merchant.program_first_activated_date,\n merchant.website,\n merchant.company_name,\n merchant.platform,\n merchant.is_dev_account,\n merchant_event.event_type\n FROM merchant_pop AS merchant\n INNER JOIN calendar_dates AS calendar\n ON calendar.date BETWEEN merchant.user_created_date AND IFNULL(merchant.upper_bound_date,current_date)\n LEFT JOIN merchant_events_adjusted AS merchant_event \n ON merchant.merchant_id = merchant_event.merchant_id\n AND calendar.date >= merchant_event.from_date\n AND calendar.date < merchant_event.to_date\n),\n\nmerchant_plan_changes AS (\n\n SELECT \n merchant.merchant_id,\n merchant.user_created_date,\n DATE(subscription.created_at) from_date,\n subscription.plan_id,\n plan.plan_name,\n FIRST_VALUE(plan.plan_name, TRUE) OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS first_plan_in_day,\n FIRST_VALUE(plan.plan_name, TRUE) OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS last_plan_in_day,\n FIRST_VALUE(plan.plan_id, TRUE) OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS first_plan_id_in_day,\n FIRST_VALUE(plan.plan_id, TRUE) OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS last_plan_id_in_day,\n ROW_NUMBER() OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at DESC) AS merchant_subscription_date_rank\n FROM merchant_pop AS merchant\n INNER JOIN import_subscription AS subscription\n ON merchant.merchant_id = subscription.merchant_id\n INNER JOIN import_plan AS plan\n ON subscription.plan_id = plan.plan_id\n),\n\nfirst_created_plan_attributes_changes AS (\n\n SELECT \n merchant_id,\n user_created_date,\n CASE WHEN user_created_date = from_date THEN 1 ELSE 0 END AS is_start_day,\n from_date,\n plan_id,\n plan_name,\n CASE WHEN user_created_date = from_date AND last_plan_id_in_day > first_plan_id_in_day THEN 1 ELSE 0 END AS did_upgrade_first_day,\n CASE WHEN LEAD(from_date) OVER (PARTITION BY merchant_id ORDER BY from_date) IS NULL THEN current_date \n ELSE DATE(LEAD(from_date) OVER (PARTITION BY merchant_id ORDER BY from_date )) - 1 \n END AS to_date,\n first_plan_in_day,\n last_plan_in_day,\n first_plan_id_in_day,\n last_plan_id_in_day\n FROM merchant_plan_changes\n WHERE merchant_subscription_date_rank = 1\n),\n\nss_hybrid_opportunities AS (\n\n SELECT \n DISTINCT account.organization_key,\n opportunity.start_date\n FROM import_sf_opportunity AS opportunity\n LEFT JOIN import_sf_account AS account\n ON opportunity.account_id = account.account_id \n AND account.is_test_account = 0\n WHERE opportunity.stage IN ('Won - Sale', 'Won')\n AND opportunity.is_ht_ss = 1\n AND LOWER(opportunity.plan_name) LIKE '%gold%'\n AND opportunity.is_deleted = 0\n AND opportunity.start_date < CURRENT_DATE\n),\n\nmerchant_plan_daily_base AS (\n\n SELECT \n merchant_daily.date,\n merchant_daily.merchant_id,\n merchant_daily.organization_key,\n merchant_daily.user_created_date,\n merchant_daily.app_key,\n merchant_daily.website,\n merchant_daily.company_name,\n merchant_daily.program_first_activated_date,\n merchant_daily.platform,\n merchant_daily.event_type,\n merchant_daily.is_dev_account,\n plan_changes.is_start_day,\n plan_changes.from_date,\n plan_changes.plan_name,\n plan_changes.plan_id,\n plan_changes.did_upgrade_first_day,\n plan_changes.to_date,\n plan_changes.first_plan_in_day,\n plan_changes.last_plan_in_day,\n plan_changes.first_plan_id_in_day,\n plan_changes.last_plan_id_in_day,\n CASE WHEN IFNULL(LAG(plan_changes.plan_id) OVER (PARTITION BY merchant_daily.merchant_id ORDER BY merchant_daily.date ASC),plan_changes.first_plan_id_in_day) < plan_changes.last_plan_id_in_day \n THEN 'Upgrade' \n WHEN IFNULL(LAG(plan_changes.plan_id) OVER (PARTITION BY merchant_daily.merchant_id ORDER BY merchant_daily.date ASC),plan_changes.first_plan_id_in_day) > plan_changes.last_plan_id_in_day \n AND IFNULL(LAG(plan_changes.plan_id) OVER (PARTITION BY merchant_daily.merchant_id ORDER BY merchant_daily.date ASC),plan_changes.first_plan_id_in_day) > 1\n THEN 'Downgrade'\n ELSE 'No Change' \n END AS changes,\n CASE WHEN is_start_day = 1 THEN first_plan_in_day END AS first_plan_ever\n FROM merchant_from_creation_to_upper_bound_date_daily AS merchant_daily\n INNER JOIN first_created_plan_attributes_changes AS plan_changes\n ON merchant_daily.merchant_id = plan_changes.merchant_id \n AND merchant_daily.date BETWEEN plan_changes.from_date AND plan_changes.to_date\n),\n\npotential_ss_hybrid_merchants AS (\n\n SELECT \n merchant.merchant_id,\n hybrid.start_date\n FROM ss_hybrid_opportunities AS hybrid\n INNER JOIN import_merchant AS merchant\n ON hybrid.organization_key = merchant.organization_key\n INNER JOIN first_created_plan_attributes_changes AS plan_changes\n ON LOWER(plan_changes.plan_name) = 'gold'\n AND merchant.merchant_id = plan_changes.merchant_id\n AND hybrid.start_date = plan_changes.from_date\n\n),\n\nhybrid_merchant_over_time AS (\n\n SELECT\n hybrid.merchant_id,\n hybrid.start_date AS from_date,\n COALESCE(MIN(plan_daily.date), '2999-01-01') AS to_date\n FROM potential_ss_hybrid_merchants AS hybrid\n LEFT JOIN merchant_plan_daily_base AS plan_daily\n ON hybrid.merchant_id = plan_daily.merchant_id\n AND plan_daily.date >= hybrid.start_date \n AND plan_daily.plan_name IN ('FREE','BRONZE') \n GROUP BY 1,2\n),\n\nloyalty__merchant_plan_daily AS (\n\n SELECT\n base.date,\n base.merchant_id,\n base.user_created_date,\n base.app_key,\n base.website,\n base.program_first_activated_date,\n base.company_name,\n CASE WHEN LOWER(base.event_type) = 'install' THEN 1 \n WHEN LOWER(base.event_type) = 'uninstall' THEN 0\n END is_install,\n CASE WHEN uninstall.merchant_id IS NOT NULL THEN 1 ELSE 0 END is_uninstall_date,\n CASE WHEN (install.merchant_id IS NOT NULL) OR (base.date=base.user_created_date) THEN 1 ELSE 0 END AS is_install_date,\n is_program_live,\n base.platform,\n base.is_dev_account,\n base.is_start_day,\n activeness_daily.is_active2,\n activeness_daily.is_active2_1,\n active3_first_date.first_time_active3_date,\n SMALLINT(IF(hybrid_merchant.merchant_id IS NOT NULL,1,0)) AS is_ht_ss,\n FIRST_VALUE(base.first_plan_ever, TRUE) OVER (PARTITION BY base.merchant_id ORDER BY base.date ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) first_plan_ever,\n base.plan_name,\n base.plan_id,\n base.did_upgrade_first_day,\n base.changes, \n CASE WHEN base.changes <> 'No Change' THEN IFNULL(LAG(base.plan_name) OVER (PARTITION BY base.merchant_id ORDER BY base.date ASC),first_plan_in_day) END plan_prior_to_change,\n CASE WHEN base.changes <> 'No Change' THEN IFNULL(LAG(base.plan_id) OVER (PARTITION BY base.merchant_id ORDER BY base.date ASC),first_plan_id_in_day) END plan_id_prior_to_change,\n IFNULL(acc_distinct_redemptions.merchant_acc_unique_redemptions_w_order_cnt, LAST(acc_distinct_redemptions.merchant_acc_unique_redemptions_w_order_cnt, TRUE) OVER (PARTITION BY base.merchant_id ORDER BY base.date ASC ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING)) AS merchant_acc_unique_redemptions_w_order_cnt,\n IFNULL(acc_distinct_purchasers.merchant_acc_unique_purchasers_cnt, LAST(acc_distinct_purchasers.merchant_acc_unique_purchasers_cnt, TRUE) OVER (PARTITION BY base.merchant_id ORDER BY base.date ASC ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING)) AS merchant_acc_unique_purchasers_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM merchant_plan_daily_base AS base\n LEFT JOIN segment_uninstall_event_by_merchant_by_date AS uninstall\n ON base.merchant_id = uninstall.merchant_id\n AND base.date = uninstall.uninstall_date\n LEFT JOIN segment_install_event_by_merchant_by_date AS install\n ON base.merchant_id = install.merchant_id\n AND base.date = install.install_date \n LEFT JOIN import_merchant_metrics_daily AS merchant_daily\n ON base.merchant_id = merchant_daily.merchant_id \n AND base.date = merchant_daily.date \n LEFT JOIN import_merchant_activeness_daily AS activeness_daily \n ON base.merchant_id = activeness_daily.merchant_id \n AND base.date = activeness_daily.date \n LEFT JOIN merchant_acc_distinct_redemptions_by_date AS acc_distinct_redemptions \n ON base.merchant_id = acc_distinct_redemptions.merchant_id\n AND base.date = acc_distinct_redemptions.start_day \n LEFT JOIN merchant_acc_distinct_purchasers_by_date AS acc_distinct_purchasers\n ON base.merchant_id = acc_distinct_purchasers.merchant_id\n AND base.date = acc_distinct_purchasers.start_day \n LEFT JOIN hybrid_merchant_over_time AS hybrid_merchant\n ON base.merchant_id = hybrid_merchant.merchant_id\n AND base.date >= hybrid_merchant.from_date\n AND base.date < hybrid_merchant.to_date\n LEFT JOIN active3_first_date \n ON base.merchant_id = active3_first_date.merchant_id\n\n)\n\n-- Result --\n\nSELECT *\nFROM loyalty__merchant_plan_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.sql", "unique_id": "model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly"], "alias": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "checksum": {"name": "sha256", "checksum": "e4c848d4213c22dc44d082ce3ae017f0a3ad79e7cc80a610278064129f0d8c64"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "loyalty"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Dedicated table for HT-SS . Activation and retention cohort.\nPK & Granularity: month, merchant_id, closing_plan_name_in_month", "columns": {"merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_created_date": {"name": "user_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_month_ht_ss": {"name": "first_month_ht_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "months_since_start": {"name": "months_since_start", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "time_to_active_1": {"name": "time_to_active_1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active_2": {"name": "time_to_active_2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active_3": {"name": "time_to_active_3", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_plan_name_in_month": {"name": "closing_plan_name_in_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082642.60856, "relation_name": "dev_dkruh1.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "raw_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_daily') }}\n\n), import_merchant_plan_monthly AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_monthly') }}\n\n), \n\ndata_points AS (\n SELECT \n merchant_id,\n platform,\n user_created_date,\n MIN(date) AS first_time_ht_ss,\n MIN(CASE WHEN is_program_live = 1 THEN date END) AS first_time_active1,\n MIN(CASE WHEN is_active2 = 1 THEN date END) AS first_time_active2,\n MIN(CASE WHEN merchant_acc_unique_redemptions_w_order_cnt >= 4 THEN date END) AS first_time_active3\n FROM import_merchant_plan_daily\n WHERE\n is_dev_account = 0\n AND is_ht_ss = 1\n AND user_created_date >= '2023-01-01'\n GROUP BY 1, 2, 3\n)\n\nSELECT\n data_points.merchant_id,\n data_points.platform,\n user_created_date,\n DATE(DATE_TRUNC('month', first_time_ht_ss)) AS first_month_ht_ss,\n monthly.month,\n MONTHS_BETWEEN(monthly.month, DATE_TRUNC('month', first_time_ht_ss)) AS months_since_start,\n DATEDIFF(first_time_active1, first_time_ht_ss) AS time_to_active_1,\n DATEDIFF(first_time_active2, first_time_ht_ss) AS time_to_active_2,\n DATEDIFF(first_time_active3, first_time_ht_ss) AS time_to_active_3,\n monthly.closing_plan_name_in_month,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM data_points \nLEFT JOIN import_merchant_plan_monthly AS monthly\n ON data_points.merchant_id = monthly.merchant_id\n AND monthly.month >= DATE_TRUNC('month', first_time_ht_ss)\n AND monthly.closing_plan_name_in_month NOT IN ('FREE', 'BRONZE')", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.sql", "compiled": true, "compiled_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_daily\n\n), import_merchant_plan_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_monthly\n\n), \n\ndata_points AS (\n SELECT \n merchant_id,\n platform,\n user_created_date,\n MIN(date) AS first_time_ht_ss,\n MIN(CASE WHEN is_program_live = 1 THEN date END) AS first_time_active1,\n MIN(CASE WHEN is_active2 = 1 THEN date END) AS first_time_active2,\n MIN(CASE WHEN merchant_acc_unique_redemptions_w_order_cnt >= 4 THEN date END) AS first_time_active3\n FROM import_merchant_plan_daily\n WHERE\n is_dev_account = 0\n AND is_ht_ss = 1\n AND user_created_date >= '2023-01-01'\n GROUP BY 1, 2, 3\n)\n\nSELECT\n data_points.merchant_id,\n data_points.platform,\n user_created_date,\n DATE(DATE_TRUNC('month', first_time_ht_ss)) AS first_month_ht_ss,\n monthly.month,\n MONTHS_BETWEEN(monthly.month, DATE_TRUNC('month', first_time_ht_ss)) AS months_since_start,\n DATEDIFF(first_time_active1, first_time_ht_ss) AS time_to_active_1,\n DATEDIFF(first_time_active2, first_time_ht_ss) AS time_to_active_2,\n DATEDIFF(first_time_active3, first_time_ht_ss) AS time_to_active_3,\n monthly.closing_plan_name_in_month,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM data_points \nLEFT JOIN import_merchant_plan_monthly AS monthly\n ON data_points.merchant_id = monthly.merchant_id\n AND monthly.month >= DATE_TRUNC('month', first_time_ht_ss)\n AND monthly.closing_plan_name_in_month NOT IN ('FREE', 'BRONZE')", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_plan_metrics_cohort", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.sql", "unique_id": "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_metrics_cohort", "analytics___loyalty__merchant_plan_metrics_cohort"], "alias": "analytics___loyalty__merchant_plan_metrics_cohort", "checksum": {"name": "sha256", "checksum": "6e99f42c88becf1f4353b886e333f796741677a7679372bac9ec291b15e92121"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Modeled table of all merchant and their ever plan enriched with cohort metrics \nGranularity & Primary Key: merchant_id, plan_name", "columns": {"merchant_id": {"name": "merchant_id", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_time_plan": {"name": "first_time_plan", "description": "First date in which the merchant subscribed to this plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_plan_ever": {"name": "first_plan_ever", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_created_date": {"name": "user_created_date", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "user_creation_month": {"name": "user_creation_month", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "program_first_activated_date": {"name": "program_first_activated_date", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "time_to_program_activation_from_creation": {"name": "time_to_program_activation_from_creation", "description": "The days from merchant creation to Loyalty activation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active1_from_creation": {"name": "time_to_active1_from_creation", "description": "The days between merchant creation to merchant first active1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active1_from_subscription": {"name": "time_to_active1_from_subscription", "description": "The days between merchant plan subscription to first time active1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active2_from_creation": {"name": "time_to_active2_from_creation", "description": "The days between merchant creation to merchant first active2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active2_from_subscription": {"name": "time_to_active2_from_subscription", "description": "The days between merchant plan subscription to first time active2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active2_1_from_creation": {"name": "time_to_active2_1_from_creation", "description": "The days between merchant creation to merchant first active2_1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active2_1_from_subscription": {"name": "time_to_active2_1_from_subscription", "description": "The days between merchant plan subscription to first time active2_1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active3_from_creation": {"name": "time_to_active3_from_creation", "description": "The days between merchant creation to merchant first active3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_active3_from_subscription": {"name": "time_to_active3_from_subscription", "description": "The days between merchant plan subscription to first time active3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_free": {"name": "time_to_free", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_bronze": {"name": "time_to_bronze", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_silver": {"name": "time_to_silver", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_gold": {"name": "time_to_gold", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_platinum": {"name": "time_to_platinum", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "time_to_enterprise": {"name": "time_to_enterprise", "description": "program_first_activated_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_ht_ss": {"name": "is_ht_ss", "description": "Indication if that merchant subscribed to GOLD plan via sales or subscribed to any other plan after the first GOLD subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082642.6590896, "relation_name": "dev_dkruh1.analytics___loyalty__merchant_plan_metrics_cohort", "raw_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_daily') }}\n\n), import_merchant AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant') }}\n\n), import_subscription AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__loyalty_subscription') }} \n\n), import_plan AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__loyalty_plan') }}\n\n), \n\nmerchant_subscription_date_ranking AS (\n\n SELECT\n merchant.merchant_id,\n plan.plan_name,\n subscription.created_at,\n ROW_NUMBER() OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at DESC) AS merchant_sub_date_rank\n FROM import_merchant AS merchant\n INNER JOIN import_subscription AS subscription\n ON merchant.merchant_id = subscription.merchant_id\n INNER JOIN import_plan AS plan\n ON subscription.plan_id = plan.plan_id\n\n),\n\nmerchant_first_time_plan AS (\n\n SELECT \n merchant_id,\n plan_name,\n DATE(MIN(created_at)) AS first_time_plan\n FROM merchant_subscription_date_ranking\n WHERE merchant_sub_date_rank = 1\n GROUP BY 1,2\n\n),\n\nmerchant_plan_first_time AS (\n\n SELECT \n DISTINCT plan_daily.merchant_id,\n plan_daily.first_plan_ever,\n plan_daily.user_created_date,\n TRUNC(user_created_date,'MONTH') AS user_creation_month,\n plan_daily.program_first_activated_date,\n plan_daily.platform,\n plan_daily.plan_name,\n plan_daily.plan_prior_to_change,\n first_time.first_time_plan\n FROM import_merchant_plan_daily AS plan_daily\n LEFT JOIN merchant_first_time_plan AS first_time\n ON plan_daily.merchant_id = first_time.merchant_id\n AND plan_daily.plan_name = first_time.plan_name\n WHERE is_dev_account = 0\n\n),\n\nmerchant_paying_first AS (\n\n SELECT \n DISTINCT merchant_id,\n first_plan_ever,\n platform,\n user_created_date,\n user_creation_month,\n plan_name, \n program_first_activated_date,\n first_time_plan\n FROM merchant_plan_first_time\n WHERE plan_name IN ('GOLD','PLATINUM','ENTERPRISE','SILVER')\n\n),\n\nmerchant_free_first AS (\n\n SELECT \n DISTINCT merchant_id,\n first_plan_ever,\n platform,\n user_created_date,\n user_creation_month,\n first_plan_ever AS plan_name, \n program_first_activated_date,\n user_created_date AS first_time_plan\n FROM merchant_plan_first_time\n WHERE first_plan_ever IN ('FREE','BRONZE')\n\n),\n\nmerchant_subscription_pop AS (\n\n SELECT \n merchant_id,\n first_plan_ever,\n platform,\n user_created_date,\n user_creation_month,\n plan_name, \n program_first_activated_date,\n first_time_plan\n FROM merchant_paying_first\n UNION ALL\n SELECT\n merchant_id,\n first_plan_ever,\n platform,\n user_created_date,\n user_creation_month,\n plan_name, \n program_first_activated_date,\n first_time_plan\n FROM merchant_free_first\n\n),\n\nmerchant_cohort AS (\n\n SELECT \n merchant_id,\n DATEDIFF(program_first_activated_date,user_created_date) AS time_to_program_activation_from_creation,\n MAX(CASE WHEN plan_name = 'FREE' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_free,\n MAX(CASE WHEN plan_name = 'BRONZE' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_bronze,\n MAX(CASE WHEN plan_name = 'SILVER' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_silver,\n MAX(CASE WHEN plan_name = 'GOLD' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_gold,\n MAX(CASE WHEN plan_name = 'PLATINUM' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_platinum,\n MAX(CASE WHEN plan_name = 'ENTERPRISE' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_enterprise\n FROM merchant_subscription_pop\n GROUP BY 1,2\n\n),\n\nmerchant_first_active1 AS (\n\n SELECT \n merchant_id,\n MIN(date) AS first_time_active1\n FROM import_merchant_plan_daily\n WHERE is_dev_account = 0\n AND is_program_live = 1\n GROUP BY 1\n\n), \n\nmerchant_first_active2 AS (\n\n SELECT \n merchant_id,\n MIN(date) AS first_time_active2\n FROM import_merchant_plan_daily\n WHERE is_dev_account = 0\n AND is_active2 = 1\n GROUP BY 1\n\n), \n\nmerchant_first_active2_1 AS (\n\n SELECT \n merchant_id,\n MIN(date) AS first_time_active2_1\n FROM import_merchant_plan_daily\n WHERE is_dev_account = 0\n AND is_active2_1 = 1\n GROUP BY 1\n\n), \n\nmerchant_first_active3 AS (\n\n SELECT \n merchant_id,\n MIN(date) AS first_time_active3\n FROM import_merchant_plan_daily\n WHERE is_dev_account = 0\n AND merchant_acc_unique_redemptions_w_order_cnt > 3\n GROUP BY 1\n\n), \n\nhybrid_merchant_by_date AS (\n\n SELECT \n merchant_id,\n date\n FROM import_merchant_plan_daily \n WHERE is_ht_ss = 1\n\n), \n\nloyalty__merchant_plan_metrics_cohort AS (\n\n SELECT \n pop.merchant_id,\n pop.plan_name,\n pop.first_time_plan,\n pop.first_plan_ever,\n pop.platform,\n pop.user_created_date,\n pop.user_creation_month,\n pop.program_first_activated_date, \n cohort.time_to_program_activation_from_creation,\n DATEDIFF(pop.program_first_activated_date, pop.user_created_date) AS time_to_active1_from_creation,\n DATEDIFF(pop.program_first_activated_date, pop.first_time_plan) AS time_to_active1_from_subscription,\n DATEDIFF(active2.first_time_active2, pop.user_created_date) AS time_to_active2_from_creation,\n DATEDIFF(active2.first_time_active2, pop.first_time_plan) AS time_to_active2_from_subscription,\n DATEDIFF(active2_1.first_time_active2_1, pop.user_created_date) AS time_to_active2_1_from_creation,\n DATEDIFF(active2_1.first_time_active2_1, pop.first_time_plan) AS time_to_active2_1_from_subscription,\n DATEDIFF(active3.first_time_active3, pop.user_created_date) AS time_to_active3_from_creation,\n DATEDIFF(active3.first_time_active3, pop.first_time_plan) AS time_to_active3_from_subscription,\n cohort.time_to_free,\n cohort.time_to_bronze,\n cohort.time_to_silver,\n cohort.time_to_gold,\n cohort.time_to_platinum,\n cohort.time_to_enterprise,\n SMALLINT(IF(hybrid.merchant_id IS NOT NULL,1,0)) AS is_ht_ss,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM merchant_subscription_pop AS pop\n LEFT JOIN merchant_cohort AS cohort\n ON pop.merchant_id = cohort.merchant_id\n LEFT JOIN merchant_first_active1 AS active1\n ON pop.merchant_id = active1.merchant_id\n LEFT JOIN merchant_first_active2 AS active2\n ON pop.merchant_id = active2.merchant_id\n LEFT JOIN merchant_first_active2_1 AS active2_1\n ON pop.merchant_id = active2_1.merchant_id \n LEFT JOIN merchant_first_active3 AS active3\n ON pop.merchant_id = active3.merchant_id \n LEFT JOIN hybrid_merchant_by_date AS hybrid\n ON pop.merchant_id = hybrid.merchant_id \n AND pop.first_time_plan = hybrid.date \n \n)\n\nSELECT *\nFROM loyalty__merchant_plan_metrics_cohort", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_subscription", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty_stg__loyalty_subscription", "model.yoda.analytics___loyalty_stg__loyalty_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.sql", "compiled": true, "compiled_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_daily\n\n), import_merchant AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant\n\n), import_subscription AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__loyalty_subscription \n\n), import_plan AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__loyalty_plan\n\n), \n\nmerchant_subscription_date_ranking AS (\n\n SELECT\n merchant.merchant_id,\n plan.plan_name,\n subscription.created_at,\n ROW_NUMBER() OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at DESC) AS merchant_sub_date_rank\n FROM import_merchant AS merchant\n INNER JOIN import_subscription AS subscription\n ON merchant.merchant_id = subscription.merchant_id\n INNER JOIN import_plan AS plan\n ON subscription.plan_id = plan.plan_id\n\n),\n\nmerchant_first_time_plan AS (\n\n SELECT \n merchant_id,\n plan_name,\n DATE(MIN(created_at)) AS first_time_plan\n FROM merchant_subscription_date_ranking\n WHERE merchant_sub_date_rank = 1\n GROUP BY 1,2\n\n),\n\nmerchant_plan_first_time AS (\n\n SELECT \n DISTINCT plan_daily.merchant_id,\n plan_daily.first_plan_ever,\n plan_daily.user_created_date,\n TRUNC(user_created_date,'MONTH') AS user_creation_month,\n plan_daily.program_first_activated_date,\n plan_daily.platform,\n plan_daily.plan_name,\n plan_daily.plan_prior_to_change,\n first_time.first_time_plan\n FROM import_merchant_plan_daily AS plan_daily\n LEFT JOIN merchant_first_time_plan AS first_time\n ON plan_daily.merchant_id = first_time.merchant_id\n AND plan_daily.plan_name = first_time.plan_name\n WHERE is_dev_account = 0\n\n),\n\nmerchant_paying_first AS (\n\n SELECT \n DISTINCT merchant_id,\n first_plan_ever,\n platform,\n user_created_date,\n user_creation_month,\n plan_name, \n program_first_activated_date,\n first_time_plan\n FROM merchant_plan_first_time\n WHERE plan_name IN ('GOLD','PLATINUM','ENTERPRISE','SILVER')\n\n),\n\nmerchant_free_first AS (\n\n SELECT \n DISTINCT merchant_id,\n first_plan_ever,\n platform,\n user_created_date,\n user_creation_month,\n first_plan_ever AS plan_name, \n program_first_activated_date,\n user_created_date AS first_time_plan\n FROM merchant_plan_first_time\n WHERE first_plan_ever IN ('FREE','BRONZE')\n\n),\n\nmerchant_subscription_pop AS (\n\n SELECT \n merchant_id,\n first_plan_ever,\n platform,\n user_created_date,\n user_creation_month,\n plan_name, \n program_first_activated_date,\n first_time_plan\n FROM merchant_paying_first\n UNION ALL\n SELECT\n merchant_id,\n first_plan_ever,\n platform,\n user_created_date,\n user_creation_month,\n plan_name, \n program_first_activated_date,\n first_time_plan\n FROM merchant_free_first\n\n),\n\nmerchant_cohort AS (\n\n SELECT \n merchant_id,\n DATEDIFF(program_first_activated_date,user_created_date) AS time_to_program_activation_from_creation,\n MAX(CASE WHEN plan_name = 'FREE' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_free,\n MAX(CASE WHEN plan_name = 'BRONZE' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_bronze,\n MAX(CASE WHEN plan_name = 'SILVER' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_silver,\n MAX(CASE WHEN plan_name = 'GOLD' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_gold,\n MAX(CASE WHEN plan_name = 'PLATINUM' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_platinum,\n MAX(CASE WHEN plan_name = 'ENTERPRISE' THEN DATEDIFF(first_time_plan,user_created_date) END) AS time_to_enterprise\n FROM merchant_subscription_pop\n GROUP BY 1,2\n\n),\n\nmerchant_first_active1 AS (\n\n SELECT \n merchant_id,\n MIN(date) AS first_time_active1\n FROM import_merchant_plan_daily\n WHERE is_dev_account = 0\n AND is_program_live = 1\n GROUP BY 1\n\n), \n\nmerchant_first_active2 AS (\n\n SELECT \n merchant_id,\n MIN(date) AS first_time_active2\n FROM import_merchant_plan_daily\n WHERE is_dev_account = 0\n AND is_active2 = 1\n GROUP BY 1\n\n), \n\nmerchant_first_active2_1 AS (\n\n SELECT \n merchant_id,\n MIN(date) AS first_time_active2_1\n FROM import_merchant_plan_daily\n WHERE is_dev_account = 0\n AND is_active2_1 = 1\n GROUP BY 1\n\n), \n\nmerchant_first_active3 AS (\n\n SELECT \n merchant_id,\n MIN(date) AS first_time_active3\n FROM import_merchant_plan_daily\n WHERE is_dev_account = 0\n AND merchant_acc_unique_redemptions_w_order_cnt > 3\n GROUP BY 1\n\n), \n\nhybrid_merchant_by_date AS (\n\n SELECT \n merchant_id,\n date\n FROM import_merchant_plan_daily \n WHERE is_ht_ss = 1\n\n), \n\nloyalty__merchant_plan_metrics_cohort AS (\n\n SELECT \n pop.merchant_id,\n pop.plan_name,\n pop.first_time_plan,\n pop.first_plan_ever,\n pop.platform,\n pop.user_created_date,\n pop.user_creation_month,\n pop.program_first_activated_date, \n cohort.time_to_program_activation_from_creation,\n DATEDIFF(pop.program_first_activated_date, pop.user_created_date) AS time_to_active1_from_creation,\n DATEDIFF(pop.program_first_activated_date, pop.first_time_plan) AS time_to_active1_from_subscription,\n DATEDIFF(active2.first_time_active2, pop.user_created_date) AS time_to_active2_from_creation,\n DATEDIFF(active2.first_time_active2, pop.first_time_plan) AS time_to_active2_from_subscription,\n DATEDIFF(active2_1.first_time_active2_1, pop.user_created_date) AS time_to_active2_1_from_creation,\n DATEDIFF(active2_1.first_time_active2_1, pop.first_time_plan) AS time_to_active2_1_from_subscription,\n DATEDIFF(active3.first_time_active3, pop.user_created_date) AS time_to_active3_from_creation,\n DATEDIFF(active3.first_time_active3, pop.first_time_plan) AS time_to_active3_from_subscription,\n cohort.time_to_free,\n cohort.time_to_bronze,\n cohort.time_to_silver,\n cohort.time_to_gold,\n cohort.time_to_platinum,\n cohort.time_to_enterprise,\n SMALLINT(IF(hybrid.merchant_id IS NOT NULL,1,0)) AS is_ht_ss,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM merchant_subscription_pop AS pop\n LEFT JOIN merchant_cohort AS cohort\n ON pop.merchant_id = cohort.merchant_id\n LEFT JOIN merchant_first_active1 AS active1\n ON pop.merchant_id = active1.merchant_id\n LEFT JOIN merchant_first_active2 AS active2\n ON pop.merchant_id = active2.merchant_id\n LEFT JOIN merchant_first_active2_1 AS active2_1\n ON pop.merchant_id = active2_1.merchant_id \n LEFT JOIN merchant_first_active3 AS active3\n ON pop.merchant_id = active3.merchant_id \n LEFT JOIN hybrid_merchant_by_date AS hybrid\n ON pop.merchant_id = hybrid.merchant_id \n AND pop.first_time_plan = hybrid.date \n \n)\n\nSELECT *\nFROM loyalty__merchant_plan_metrics_cohort", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__merchant_plan_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_plan_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.sql", "unique_id": "model.yoda.analytics___loyalty__merchant_plan_monthly", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_monthly", "analytics___loyalty__merchant_plan_monthly"], "alias": "analytics___loyalty__merchant_plan_monthly", "checksum": {"name": "sha256", "checksum": "4c79160e7638c68dc3de1aaa04725590ff2cfe132c6c15504b9842c8dcf238a8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Aggregate merchant plan metrics by month", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_name": {"name": "loyalty_csm_name", "description": "Current CSM Name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "Monthly last 3 month avg order bucket", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "Industry", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "Merchants' website", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_program_live": {"name": "is_program_live", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_uninstall_month": {"name": "is_uninstall_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_install_month": {"name": "is_install_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active2": {"name": "is_active2", "description": "Indicates if that store had any widget loaded that month with min 3 distinct 'fingerprints' (users)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active2_1": {"name": "is_active2_1", "description": "Indicates if that store had 'rewards_page' widget loaded that month with min 3 distinct 'fingerprints' (users)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active3": {"name": "is_active3", "description": "Indicates if that store had at least 4 distinct customers who redeemed points that month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_ht_ss": {"name": "is_ht_ss", "description": "Indicates if merchant was HT motion at least once a month in that month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "did_upgrade_first_day_in_month": {"name": "did_upgrade_first_day_in_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_plan_id_in_month": {"name": "opening_plan_id_in_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opening_plan_name_in_month": {"name": "opening_plan_name_in_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_id_in_month": {"name": "closing_plan_id_in_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "closing_plan_name_in_month": {"name": "closing_plan_name_in_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_changes": {"name": "plan_changes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_revenue": {"name": "loyalty_revenue", "description": "Money from orders with a coupon code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue": {"name": "total_revenue", "description": "Total revenue from orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_purchasers": {"name": "total_purchasers", "description": "Total customers that made purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_redeemers": {"name": "total_redeemers", "description": "Total customers that made an order with redemption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_purchasers_cnt": {"name": "last_3m_purchasers_cnt", "description": "Count distinct customer_ids which made purchase at least once in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_redeemers_cnt": {"name": "last_3m_redeemers_cnt", "description": "Count distinct customer_ids which made purchase with cupon code at least once in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_non_redeemers_cnt": {"name": "last_3m_non_redeemers_cnt", "description": "Count distinct customer_ids which didn't make purchase with cupon even once in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_spb_redeemers": {"name": "last_3m_spb_redeemers", "description": "spend per buyer for redeemers - total revenue generated from customers that are redeemers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_spb_non_redeemers": {"name": "last_3m_spb_non_redeemers", "description": "spend per buyer for non redeemers - total revenue generated from customers that are non-redeemers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_added_revenue_rate": {"name": "last_3m_added_revenue_rate", "description": "Added revenue rate (added revenue / total revenue)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_added_revenue": {"name": "last_3m_added_revenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_participation_rate": {"name": "last_3m_participation_rate", "description": "Last 3 month (total redeemers / total purchasers)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "participation_rate": {"name": "participation_rate", "description": "Total redeemers/ total purchasers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_revenue_rate": {"name": "loyalty_revenue_rate", "description": "total loyalty revneue(revenee from orders with coupons) / total revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "added_revenue_rate": {"name": "added_revenue_rate", "description": "generated revenue from redeemers out of total revenue in the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_loyalty_revenue_sum": {"name": "last_3m_loyalty_revenue_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_total_revenue_sum": {"name": "last_3m_total_revenue_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082642.7221968, "relation_name": "dev_dkruh1.analytics___loyalty__merchant_plan_monthly", "raw_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_daily') }}\n\n), import_processors AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__processor') }}\n\n), import_purchases AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__purchase') }}\n WHERE purchase_date BETWEEN MAKE_DATE(YEAR(current_date)-2,1,1) AND DATE_SUB(DATE(current_date),1)\n\n), import_currency AS (\n \n SELECT * FROM {{ ref('loyalty_stg__currency_rates') }}\n \n), import_store_metrics_monthly AS(\n \n SELECT * FROM {{ ref('analytics___platform__store_metrics_monthly') }}\n),\n import_sf_daily AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__account_tracking_daily') }}\n\n), import_sf_account AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__account') }}\n\n),\n import_merchants_data AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__merchant') }}\n\n ),\n\nmerchant_purchases_details AS (\n\n SELECT \n purchase.merchant_id,\n TRUNC((purchase.purchase_date),'MONTH') AS month,\n purchase.customer_id,\n purchase.redemption_code_id,\n ((purchase.amount_cents/currency.currency)/ 100) AS revenue,\n MAX(CASE WHEN redemption_code_id IS NOT NULL THEN 1 ELSE 0 END) OVER(PARTITION BY customer_id,TRUNC((purchase.purchase_date),'MONTH')) AS is_redeemer\n FROM import_purchases AS purchase \n INNER JOIN import_currency AS currency \n ON purchase.purchase_date = currency.date\n AND purchase.purchase_currency = currency.country\n INNER JOIN import_processors AS processor\n ON purchase.processor_id = processor.id\n INNER JOIN import_merchants_data AS merchants\n ON merchants.merchant_id = purchase.merchant_id\n WHERE purchase.customer_id IS NOT NULL\n AND purchase.is_refunded = FALSE\n AND LOWER(processor.type) <> 'shopifyposprocessor'\n AND ((amount_cents/currency.currency)/ 100) < 1135.06\n AND purchase.referral_id IS NULL \n and DATE(purchase.purchase_date) >= merchants.merchant_created_at\n \n),\n\nmerchant_purchase_monthly AS (\n\n SELECT \n merchant_id,\n month,\n ROUND(SUM(revenue),2) AS total_revenue,\n ROUND(SUM(CASE WHEN redemption_code_id IS NOT NULL THEN revenue END),2) AS loyalty_revenue,\n COUNT(DISTINCT customer_id) AS total_purchasers,\n COUNT(DISTINCT CASE WHEN redemption_code_id IS NOT NULL THEN customer_id END) AS total_redeemers,\n SUM(CASE WHEN is_redeemer = 1 THEN revenue END) AS redeemers_revenue,\n SUM(CASE WHEN is_redeemer = 0 THEN revenue END) AS non_redeemers_revenue\n FROM merchant_purchases_details\n GROUP BY 1,2\n \n),\n\nmerchant_perchase_l3m AS (\n\n SELECT \n monthly.merchant_id,\n monthly.month,\n purchase.customer_id,\n purchase.redemption_code_id,\n purchase.revenue,\n SUM(purchase.revenue) OVER (PARTITION BY monthly.merchant_id,monthly.month) AS last_3m_revenue,\n MAX(CASE WHEN purchase.redemption_code_id IS NOT NULL THEN 1 ELSE 0 END) OVER (PARTITION BY purchase.customer_id,monthly.month) AS is_redeemer_last_3m\n FROM merchant_purchase_monthly AS monthly\n LEFT JOIN merchant_purchases_details AS purchase \n ON monthly.merchant_id = purchase.merchant_id\n AND MONTHS_BETWEEN(monthly.month,purchase.month) BETWEEN 1 AND 3\n \n),\n\nmerchant_l3m_purchasers AS (\n\n SELECT \n monthly.merchant_id,\n monthly.month,\n COUNT(DISTINCT purchase.customer_id) AS last_3m_purchasers_cnt\n FROM merchant_purchase_monthly AS monthly\n LEFT JOIN merchant_purchases_details AS purchase \n ON monthly.merchant_id = purchase.merchant_id\n AND MONTHS_BETWEEN(monthly.month,purchase.month) BETWEEN 1 AND 3\n GROUP BY 1,2\n \n),\n\nmerchant_monthly_revenue_base AS (\n\n SELECT\n l3m.merchant_id,\n l3m.month,\n MAX(monthly.total_revenue) AS total_revenue,\n MAX(monthly.loyalty_revenue) AS loyalty_revenue,\n MAX(monthly.total_purchasers) AS total_purchasers,\n MAX(monthly.total_redeemers) AS total_redeemers,\n MAX(monthly.redeemers_revenue) AS redeemers_revenue,\n MAX(monthly.non_redeemers_revenue) AS non_redeemers_revenue,\n MAX(l3m.last_3m_revenue) AS last_3m_revenue,\n MAX(l3m_purchasers.last_3m_purchasers_cnt) AS last_3m_purchasers_cnt,\n COUNT(DISTINCT CASE WHEN l3m.is_redeemer_last_3m = 1 THEN l3m.customer_id END) AS last_3m_redeemers_cnt,\n COUNT(DISTINCT CASE WHEN l3m.is_redeemer_last_3m = 0 THEN l3m.customer_id END) AS last_3m_non_redeemers_cnt,\n ROUND(SUM(CASE WHEN l3m.is_redeemer_last_3m = 1 THEN l3m.revenue END),4) AS last_3m_redeemers_revenue,\n ROUND(SUM(CASE WHEN l3m.is_redeemer_last_3m = 0 THEN l3m.revenue END),4) AS last_3m_non_redeemers_revenue\n FROM merchant_perchase_l3m AS l3m\n LEFT JOIN merchant_purchase_monthly AS monthly\n ON l3m.merchant_id = monthly.merchant_id\n AND l3m.month = monthly.month\n LEFT JOIN merchant_l3m_purchasers AS l3m_purchasers\n ON l3m_purchasers.merchant_id = monthly.merchant_id\n AND l3m_purchasers.month = monthly.month \n GROUP BY 1,2\n \n),\n\nmerchant_monthly_revenue AS (\n\n SELECT \n merchant_id,\n month,\n loyalty_revenue,\n total_revenue,\n total_purchasers,\n total_redeemers,\n last_3m_purchasers_cnt,\n last_3m_redeemers_cnt,\n last_3m_non_redeemers_cnt,\n (redeemers_revenue - non_redeemers_revenue) * total_redeemers AS added_revenue,\n ROUND((last_3m_redeemers_revenue / last_3m_redeemers_cnt),2) AS last_3m_spb_redeemers,\n ROUND((last_3m_non_redeemers_revenue / (last_3m_purchasers_cnt - last_3m_redeemers_cnt)),4) AS last_3m_spb_non_redeemers,\n ROUND(((last_3m_redeemers_revenue / last_3m_redeemers_cnt) - (last_3m_non_redeemers_revenue / (last_3m_purchasers_cnt - last_3m_redeemers_cnt))) * last_3m_redeemers_cnt / last_3m_revenue,4) AS last_3m_added_revenue \n FROM merchant_monthly_revenue_base\n\n \n),\n\ndaily_with_first_and_last_date_rank AS (\n\n SELECT \n date,\n merchant_id,\n user_created_date,\n app_key,\n website,\n program_first_activated_date,\n company_name,\n is_program_live,\n is_install,\n is_uninstall_date,\n is_install_date,\n platform,\n is_dev_account,\n is_start_day,\n is_active2,\n is_active2_1,\n is_ht_ss,\n first_plan_ever,\n plan_name,\n plan_id,\n did_upgrade_first_day,\n changes, \n plan_prior_to_change,\n plan_id_prior_to_change,\n merchant_acc_unique_redemptions_w_order_cnt,\n merchant_acc_unique_purchasers_cnt,\n CASE WHEN (MAX(merchant_acc_unique_redemptions_w_order_cnt) OVER (PARTITION BY merchant_id, TRUNC(date,'MONTH') ORDER BY date)) > 3 THEN 1 ELSE 0 END AS is_active3,\n ROW_NUMBER() OVER (PARTITION BY merchant_id, TRUNC(date,'MONTH') ORDER BY date ASC) AS first_day_in_month_rank,\n ROW_NUMBER() OVER (PARTITION BY merchant_id, TRUNC(date,'MONTH') ORDER BY date DESC) AS last_day_in_month_rank\n FROM import_merchant_plan_daily\n WHERE is_dev_account = 0\n\n),\n\nloyalty__merchant_plan_monthly_base AS (\n\n SELECT \n TRUNC(date,'MONTH') AS month,\n merchant_id,\n app_key,\n platform,\n website,\n MAX(is_program_live) AS is_program_live,\n MAX(is_uninstall_date) AS is_uninstall_month,\n MAX(is_install_date) AS is_install_month,\n MAX(is_active2) AS is_active2,\n MAX(is_active2_1) AS is_active2_1,\n MAX(is_active3) AS is_active3,\n MAX(is_ht_ss) AS is_ht_ss,\n MAX(CASE WHEN first_day_in_month_rank = 1 THEN did_upgrade_first_day END) AS did_upgrade_first_day_in_month,\n MAX(CASE WHEN first_day_in_month_rank = 1 THEN (CASE WHEN plan_id_prior_to_change IS NULL THEN plan_id ELSE plan_id_prior_to_change END) END) AS opening_plan_id_in_month,\n MAX(CASE WHEN first_day_in_month_rank = 1 THEN (CASE WHEN plan_prior_to_change IS NULL THEN plan_name ELSE plan_prior_to_change END) END) AS opening_plan_name_in_month,\n MAX(CASE WHEN last_day_in_month_rank = 1 THEN plan_id END) AS closing_plan_id_in_month,\n MAX(CASE WHEN last_day_in_month_rank = 1 THEN plan_name END) AS closing_plan_name_in_month, \n CASE WHEN MAX(CASE WHEN first_day_in_month_rank = 1 THEN (CASE WHEN plan_id_prior_to_change IS NULL THEN plan_id ELSE plan_id_prior_to_change END) END) <\n MAX(CASE WHEN last_day_in_month_rank = 1 THEN plan_id END) \n THEN 'Upgrade'\n WHEN MAX(CASE WHEN first_day_in_month_rank = 1 THEN (CASE WHEN plan_id_prior_to_change IS NULL THEN plan_id ELSE plan_id_prior_to_change END) END) >\n MAX(CASE WHEN last_day_in_month_rank = 1 THEN plan_id END) \n THEN 'Downgrade'\n ELSE 'No Change'\n END AS plan_changes\n FROM daily_with_first_and_last_date_rank\n GROUP BY 1,2,3,4,5\n\n),\n\ncurrent_csm_name AS (\n SELECT\n sf_account.app_key,\n MAX(loyalty_csm_name) AS loyalty_csm_name\n FROM import_sf_account sf_account\n LEFT JOIN import_sf_daily sf_daily \n ON sf_account.account_id = sf_daily.account_id\n AND sf_daily.date = current_date - 2\n GROUP BY 1\n\n\n),\n\nloyalty__merchant_plan_monthly_res AS (\n \n SELECT\n monthly_base.month,\n monthly_base.merchant_id,\n monthly_base.app_key,\n csm.loyalty_csm_name,\n metrics_monthly.last_3m_orders_avg_bucket,\n metrics_monthly.industry,\n monthly_base.website,\n monthly_base.platform,\n monthly_base.is_program_live,\n monthly_base.is_uninstall_month,\n monthly_base.is_install_month,\n monthly_base.is_active2,\n monthly_base.is_active2_1,\n monthly_base.is_active3,\n monthly_base.is_ht_ss,\n monthly_base.did_upgrade_first_day_in_month,\n monthly_base.opening_plan_id_in_month,\n monthly_base.opening_plan_name_in_month,\n monthly_base.closing_plan_id_in_month,\n monthly_base.closing_plan_name_in_month, \n monthly_base.plan_changes,\n monthly_revenue.loyalty_revenue,\n monthly_revenue.total_revenue,\n monthly_revenue.total_purchasers,\n monthly_revenue.total_redeemers,\n monthly_revenue.last_3m_purchasers_cnt,\n monthly_revenue.last_3m_redeemers_cnt,\n monthly_revenue.last_3m_non_redeemers_cnt,\n monthly_revenue.last_3m_spb_redeemers,\n monthly_revenue.last_3m_spb_non_redeemers,\n monthly_revenue.last_3m_added_revenue AS last_3m_added_revenue_rate,\n (monthly_revenue.last_3m_spb_redeemers - monthly_revenue.last_3m_spb_non_redeemers) * monthly_revenue.last_3m_redeemers_cnt AS last_3m_added_revenue,\n ROUND(monthly_revenue.last_3m_redeemers_cnt / last_3m_purchasers_cnt,2) AS last_3m_participation_rate,\n ROUND(monthly_revenue.total_redeemers / total_purchasers,4) AS participation_rate,\n ROUND(monthly_revenue.loyalty_revenue / total_revenue,4) AS loyalty_revenue_rate,\n ROUND(monthly_revenue.added_revenue / total_revenue,4) AS added_revenue_rate,\n SUM(monthly_revenue.loyalty_revenue) OVER (PARTITION BY monthly_base.merchant_id ORDER BY monthly_base.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) AS last_3m_loyalty_revenue_sum,\n SUM(monthly_revenue.total_revenue) OVER (PARTITION BY monthly_base.merchant_id ORDER BY monthly_base.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) AS last_3m_total_revenue_sum,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty__merchant_plan_monthly_base AS monthly_base\n LEFT JOIN merchant_monthly_revenue AS monthly_revenue \n ON monthly_base.merchant_id = monthly_revenue.merchant_id\n AND monthly_base.month = monthly_revenue.month\n LEFT JOIN import_store_metrics_monthly AS metrics_monthly \n ON metrics_monthly.app_key = monthly_base.app_key\n AND metrics_monthly.month = monthly_base.month\n LEFT JOIN current_csm_name AS csm\n ON csm.app_key = monthly_base.app_key\n\n)\n\nSELECT *\nFROM loyalty__merchant_plan_monthly_res", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}, {"name": "analytics___loyalty_stg__processor", "package": null, "version": null}, {"name": "analytics___loyalty_stg__purchase", "package": null, "version": null}, {"name": "loyalty_stg__currency_rates", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___salesforce__account_tracking_daily", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___loyalty_stg__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty_stg__processor", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.loyalty_stg__currency_rates", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___salesforce__account_tracking_daily", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___loyalty_stg__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.sql", "compiled": true, "compiled_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_daily\n\n), import_processors AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__processor\n\n), import_purchases AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__purchase\n WHERE purchase_date BETWEEN MAKE_DATE(YEAR(current_date)-2,1,1) AND DATE_SUB(DATE(current_date),1)\n\n), import_currency AS (\n \n SELECT * FROM dev_dkruh1.loyalty_stg__currency_rates\n \n), import_store_metrics_monthly AS(\n \n SELECT * FROM dev_dkruh1.analytics___platform__store_metrics_monthly\n),\n import_sf_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__account_tracking_daily\n\n), import_sf_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__account\n\n),\n import_merchants_data AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__merchant\n\n ),\n\nmerchant_purchases_details AS (\n\n SELECT \n purchase.merchant_id,\n TRUNC((purchase.purchase_date),'MONTH') AS month,\n purchase.customer_id,\n purchase.redemption_code_id,\n ((purchase.amount_cents/currency.currency)/ 100) AS revenue,\n MAX(CASE WHEN redemption_code_id IS NOT NULL THEN 1 ELSE 0 END) OVER(PARTITION BY customer_id,TRUNC((purchase.purchase_date),'MONTH')) AS is_redeemer\n FROM import_purchases AS purchase \n INNER JOIN import_currency AS currency \n ON purchase.purchase_date = currency.date\n AND purchase.purchase_currency = currency.country\n INNER JOIN import_processors AS processor\n ON purchase.processor_id = processor.id\n INNER JOIN import_merchants_data AS merchants\n ON merchants.merchant_id = purchase.merchant_id\n WHERE purchase.customer_id IS NOT NULL\n AND purchase.is_refunded = FALSE\n AND LOWER(processor.type) <> 'shopifyposprocessor'\n AND ((amount_cents/currency.currency)/ 100) < 1135.06\n AND purchase.referral_id IS NULL \n and DATE(purchase.purchase_date) >= merchants.merchant_created_at\n \n),\n\nmerchant_purchase_monthly AS (\n\n SELECT \n merchant_id,\n month,\n ROUND(SUM(revenue),2) AS total_revenue,\n ROUND(SUM(CASE WHEN redemption_code_id IS NOT NULL THEN revenue END),2) AS loyalty_revenue,\n COUNT(DISTINCT customer_id) AS total_purchasers,\n COUNT(DISTINCT CASE WHEN redemption_code_id IS NOT NULL THEN customer_id END) AS total_redeemers,\n SUM(CASE WHEN is_redeemer = 1 THEN revenue END) AS redeemers_revenue,\n SUM(CASE WHEN is_redeemer = 0 THEN revenue END) AS non_redeemers_revenue\n FROM merchant_purchases_details\n GROUP BY 1,2\n \n),\n\nmerchant_perchase_l3m AS (\n\n SELECT \n monthly.merchant_id,\n monthly.month,\n purchase.customer_id,\n purchase.redemption_code_id,\n purchase.revenue,\n SUM(purchase.revenue) OVER (PARTITION BY monthly.merchant_id,monthly.month) AS last_3m_revenue,\n MAX(CASE WHEN purchase.redemption_code_id IS NOT NULL THEN 1 ELSE 0 END) OVER (PARTITION BY purchase.customer_id,monthly.month) AS is_redeemer_last_3m\n FROM merchant_purchase_monthly AS monthly\n LEFT JOIN merchant_purchases_details AS purchase \n ON monthly.merchant_id = purchase.merchant_id\n AND MONTHS_BETWEEN(monthly.month,purchase.month) BETWEEN 1 AND 3\n \n),\n\nmerchant_l3m_purchasers AS (\n\n SELECT \n monthly.merchant_id,\n monthly.month,\n COUNT(DISTINCT purchase.customer_id) AS last_3m_purchasers_cnt\n FROM merchant_purchase_monthly AS monthly\n LEFT JOIN merchant_purchases_details AS purchase \n ON monthly.merchant_id = purchase.merchant_id\n AND MONTHS_BETWEEN(monthly.month,purchase.month) BETWEEN 1 AND 3\n GROUP BY 1,2\n \n),\n\nmerchant_monthly_revenue_base AS (\n\n SELECT\n l3m.merchant_id,\n l3m.month,\n MAX(monthly.total_revenue) AS total_revenue,\n MAX(monthly.loyalty_revenue) AS loyalty_revenue,\n MAX(monthly.total_purchasers) AS total_purchasers,\n MAX(monthly.total_redeemers) AS total_redeemers,\n MAX(monthly.redeemers_revenue) AS redeemers_revenue,\n MAX(monthly.non_redeemers_revenue) AS non_redeemers_revenue,\n MAX(l3m.last_3m_revenue) AS last_3m_revenue,\n MAX(l3m_purchasers.last_3m_purchasers_cnt) AS last_3m_purchasers_cnt,\n COUNT(DISTINCT CASE WHEN l3m.is_redeemer_last_3m = 1 THEN l3m.customer_id END) AS last_3m_redeemers_cnt,\n COUNT(DISTINCT CASE WHEN l3m.is_redeemer_last_3m = 0 THEN l3m.customer_id END) AS last_3m_non_redeemers_cnt,\n ROUND(SUM(CASE WHEN l3m.is_redeemer_last_3m = 1 THEN l3m.revenue END),4) AS last_3m_redeemers_revenue,\n ROUND(SUM(CASE WHEN l3m.is_redeemer_last_3m = 0 THEN l3m.revenue END),4) AS last_3m_non_redeemers_revenue\n FROM merchant_perchase_l3m AS l3m\n LEFT JOIN merchant_purchase_monthly AS monthly\n ON l3m.merchant_id = monthly.merchant_id\n AND l3m.month = monthly.month\n LEFT JOIN merchant_l3m_purchasers AS l3m_purchasers\n ON l3m_purchasers.merchant_id = monthly.merchant_id\n AND l3m_purchasers.month = monthly.month \n GROUP BY 1,2\n \n),\n\nmerchant_monthly_revenue AS (\n\n SELECT \n merchant_id,\n month,\n loyalty_revenue,\n total_revenue,\n total_purchasers,\n total_redeemers,\n last_3m_purchasers_cnt,\n last_3m_redeemers_cnt,\n last_3m_non_redeemers_cnt,\n (redeemers_revenue - non_redeemers_revenue) * total_redeemers AS added_revenue,\n ROUND((last_3m_redeemers_revenue / last_3m_redeemers_cnt),2) AS last_3m_spb_redeemers,\n ROUND((last_3m_non_redeemers_revenue / (last_3m_purchasers_cnt - last_3m_redeemers_cnt)),4) AS last_3m_spb_non_redeemers,\n ROUND(((last_3m_redeemers_revenue / last_3m_redeemers_cnt) - (last_3m_non_redeemers_revenue / (last_3m_purchasers_cnt - last_3m_redeemers_cnt))) * last_3m_redeemers_cnt / last_3m_revenue,4) AS last_3m_added_revenue \n FROM merchant_monthly_revenue_base\n\n \n),\n\ndaily_with_first_and_last_date_rank AS (\n\n SELECT \n date,\n merchant_id,\n user_created_date,\n app_key,\n website,\n program_first_activated_date,\n company_name,\n is_program_live,\n is_install,\n is_uninstall_date,\n is_install_date,\n platform,\n is_dev_account,\n is_start_day,\n is_active2,\n is_active2_1,\n is_ht_ss,\n first_plan_ever,\n plan_name,\n plan_id,\n did_upgrade_first_day,\n changes, \n plan_prior_to_change,\n plan_id_prior_to_change,\n merchant_acc_unique_redemptions_w_order_cnt,\n merchant_acc_unique_purchasers_cnt,\n CASE WHEN (MAX(merchant_acc_unique_redemptions_w_order_cnt) OVER (PARTITION BY merchant_id, TRUNC(date,'MONTH') ORDER BY date)) > 3 THEN 1 ELSE 0 END AS is_active3,\n ROW_NUMBER() OVER (PARTITION BY merchant_id, TRUNC(date,'MONTH') ORDER BY date ASC) AS first_day_in_month_rank,\n ROW_NUMBER() OVER (PARTITION BY merchant_id, TRUNC(date,'MONTH') ORDER BY date DESC) AS last_day_in_month_rank\n FROM import_merchant_plan_daily\n WHERE is_dev_account = 0\n\n),\n\nloyalty__merchant_plan_monthly_base AS (\n\n SELECT \n TRUNC(date,'MONTH') AS month,\n merchant_id,\n app_key,\n platform,\n website,\n MAX(is_program_live) AS is_program_live,\n MAX(is_uninstall_date) AS is_uninstall_month,\n MAX(is_install_date) AS is_install_month,\n MAX(is_active2) AS is_active2,\n MAX(is_active2_1) AS is_active2_1,\n MAX(is_active3) AS is_active3,\n MAX(is_ht_ss) AS is_ht_ss,\n MAX(CASE WHEN first_day_in_month_rank = 1 THEN did_upgrade_first_day END) AS did_upgrade_first_day_in_month,\n MAX(CASE WHEN first_day_in_month_rank = 1 THEN (CASE WHEN plan_id_prior_to_change IS NULL THEN plan_id ELSE plan_id_prior_to_change END) END) AS opening_plan_id_in_month,\n MAX(CASE WHEN first_day_in_month_rank = 1 THEN (CASE WHEN plan_prior_to_change IS NULL THEN plan_name ELSE plan_prior_to_change END) END) AS opening_plan_name_in_month,\n MAX(CASE WHEN last_day_in_month_rank = 1 THEN plan_id END) AS closing_plan_id_in_month,\n MAX(CASE WHEN last_day_in_month_rank = 1 THEN plan_name END) AS closing_plan_name_in_month, \n CASE WHEN MAX(CASE WHEN first_day_in_month_rank = 1 THEN (CASE WHEN plan_id_prior_to_change IS NULL THEN plan_id ELSE plan_id_prior_to_change END) END) <\n MAX(CASE WHEN last_day_in_month_rank = 1 THEN plan_id END) \n THEN 'Upgrade'\n WHEN MAX(CASE WHEN first_day_in_month_rank = 1 THEN (CASE WHEN plan_id_prior_to_change IS NULL THEN plan_id ELSE plan_id_prior_to_change END) END) >\n MAX(CASE WHEN last_day_in_month_rank = 1 THEN plan_id END) \n THEN 'Downgrade'\n ELSE 'No Change'\n END AS plan_changes\n FROM daily_with_first_and_last_date_rank\n GROUP BY 1,2,3,4,5\n\n),\n\ncurrent_csm_name AS (\n SELECT\n sf_account.app_key,\n MAX(loyalty_csm_name) AS loyalty_csm_name\n FROM import_sf_account sf_account\n LEFT JOIN import_sf_daily sf_daily \n ON sf_account.account_id = sf_daily.account_id\n AND sf_daily.date = current_date - 2\n GROUP BY 1\n\n\n),\n\nloyalty__merchant_plan_monthly_res AS (\n \n SELECT\n monthly_base.month,\n monthly_base.merchant_id,\n monthly_base.app_key,\n csm.loyalty_csm_name,\n metrics_monthly.last_3m_orders_avg_bucket,\n metrics_monthly.industry,\n monthly_base.website,\n monthly_base.platform,\n monthly_base.is_program_live,\n monthly_base.is_uninstall_month,\n monthly_base.is_install_month,\n monthly_base.is_active2,\n monthly_base.is_active2_1,\n monthly_base.is_active3,\n monthly_base.is_ht_ss,\n monthly_base.did_upgrade_first_day_in_month,\n monthly_base.opening_plan_id_in_month,\n monthly_base.opening_plan_name_in_month,\n monthly_base.closing_plan_id_in_month,\n monthly_base.closing_plan_name_in_month, \n monthly_base.plan_changes,\n monthly_revenue.loyalty_revenue,\n monthly_revenue.total_revenue,\n monthly_revenue.total_purchasers,\n monthly_revenue.total_redeemers,\n monthly_revenue.last_3m_purchasers_cnt,\n monthly_revenue.last_3m_redeemers_cnt,\n monthly_revenue.last_3m_non_redeemers_cnt,\n monthly_revenue.last_3m_spb_redeemers,\n monthly_revenue.last_3m_spb_non_redeemers,\n monthly_revenue.last_3m_added_revenue AS last_3m_added_revenue_rate,\n (monthly_revenue.last_3m_spb_redeemers - monthly_revenue.last_3m_spb_non_redeemers) * monthly_revenue.last_3m_redeemers_cnt AS last_3m_added_revenue,\n ROUND(monthly_revenue.last_3m_redeemers_cnt / last_3m_purchasers_cnt,2) AS last_3m_participation_rate,\n ROUND(monthly_revenue.total_redeemers / total_purchasers,4) AS participation_rate,\n ROUND(monthly_revenue.loyalty_revenue / total_revenue,4) AS loyalty_revenue_rate,\n ROUND(monthly_revenue.added_revenue / total_revenue,4) AS added_revenue_rate,\n SUM(monthly_revenue.loyalty_revenue) OVER (PARTITION BY monthly_base.merchant_id ORDER BY monthly_base.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) AS last_3m_loyalty_revenue_sum,\n SUM(monthly_revenue.total_revenue) OVER (PARTITION BY monthly_base.merchant_id ORDER BY monthly_base.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) AS last_3m_total_revenue_sum,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty__merchant_plan_monthly_base AS monthly_base\n LEFT JOIN merchant_monthly_revenue AS monthly_revenue \n ON monthly_base.merchant_id = monthly_revenue.merchant_id\n AND monthly_base.month = monthly_revenue.month\n LEFT JOIN import_store_metrics_monthly AS metrics_monthly \n ON metrics_monthly.app_key = monthly_base.app_key\n AND metrics_monthly.month = monthly_base.month\n LEFT JOIN current_csm_name AS csm\n ON csm.app_key = monthly_base.app_key\n\n)\n\nSELECT *\nFROM loyalty__merchant_plan_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_plan_retention_cohort_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.sql", "unique_id": "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_retention_cohort_monthly", "analytics___loyalty__merchant_plan_retention_cohort_monthly"], "alias": "analytics___loyalty__merchant_plan_retention_cohort_monthly", "checksum": {"name": "sha256", "checksum": "3a5e1221787493c5421ce4d1ecacd72a5cb636b41001aa1dab6d3cdb29dcd6aa"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Holds retention cohort merchant plan (besides FREE and BRONZE) from each plan first month | Granularity & Primary Key: plan_name,month,merchant_id", "columns": {"plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_first_month": {"name": "plan_first_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_ht_ss": {"name": "is_ht_ss", "description": "Indicates if merchant was HT motion at least once a month in that month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "time_from_plan_first_month": {"name": "time_from_plan_first_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082642.7668774, "relation_name": "dev_dkruh1.analytics___loyalty__merchant_plan_retention_cohort_monthly", "raw_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_daily') }}\n\n), import_merchant_plan_monthly AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_monthly') }}\n\n), import_merchant AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant') }}\n\n), import_subscription AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__loyalty_subscription') }} \n\n), import_plan AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__loyalty_plan') }}\n\n), \n\nmerchant_subscription_date_ranking AS (\n\n SELECT\n merchant.merchant_id,\n subscription.plan_id,\n merchant.platform,\n plan.plan_name,\n subscription.created_at,\n ROW_NUMBER() OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at DESC) AS merchant_sub_date_rank\n FROM import_merchant AS merchant\n INNER JOIN import_subscription AS subscription\n ON merchant.merchant_id = subscription.merchant_id\n INNER JOIN protected_analytics.loyalty_loyalty_plan AS plan\n ON subscription.plan_id = plan.plan_id\n\n),\n\nmerchant_plan_first_month AS (\n\n SELECT \n merchant_id,\n plan_id,\n plan_name,\n platform,\n TRUNC(MIN(created_at),'MONTH') AS plan_first_month\n FROM merchant_subscription_date_ranking\n WHERE merchant_sub_date_rank = 1\n AND plan_id IN (2,3,4,5)\n GROUP BY 1,2,3,4\n\n),\n\nloyalty__merchant_plan_retention_cohort_monthly AS (\n\n SELECT \n first_month.plan_name,\n first_month.merchant_id,\n first_month.platform,\n first_month.plan_first_month,\n monthly.month,\n monthly.is_ht_ss,\n MONTHS_BETWEEN(monthly.month,first_month.plan_first_month) AS time_from_plan_first_month,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM merchant_plan_first_month AS first_month\n LEFT JOIN import_merchant_plan_monthly AS monthly\n ON first_month.merchant_id = monthly.merchant_id\n AND monthly.month >= first_month.plan_first_month\n AND first_month.plan_id <= monthly.closing_plan_id_in_month\n\n)\n\nSELECT *\nFROM loyalty__merchant_plan_retention_cohort_monthly", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_subscription", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty_stg__loyalty_subscription", "model.yoda.analytics___loyalty_stg__loyalty_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.sql", "compiled": true, "compiled_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_daily\n\n), import_merchant_plan_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_monthly\n\n), import_merchant AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant\n\n), import_subscription AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__loyalty_subscription \n\n), import_plan AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__loyalty_plan\n\n), \n\nmerchant_subscription_date_ranking AS (\n\n SELECT\n merchant.merchant_id,\n subscription.plan_id,\n merchant.platform,\n plan.plan_name,\n subscription.created_at,\n ROW_NUMBER() OVER (PARTITION BY merchant.merchant_id, DATE(subscription.created_at) ORDER BY subscription.created_at DESC) AS merchant_sub_date_rank\n FROM import_merchant AS merchant\n INNER JOIN import_subscription AS subscription\n ON merchant.merchant_id = subscription.merchant_id\n INNER JOIN protected_analytics.loyalty_loyalty_plan AS plan\n ON subscription.plan_id = plan.plan_id\n\n),\n\nmerchant_plan_first_month AS (\n\n SELECT \n merchant_id,\n plan_id,\n plan_name,\n platform,\n TRUNC(MIN(created_at),'MONTH') AS plan_first_month\n FROM merchant_subscription_date_ranking\n WHERE merchant_sub_date_rank = 1\n AND plan_id IN (2,3,4,5)\n GROUP BY 1,2,3,4\n\n),\n\nloyalty__merchant_plan_retention_cohort_monthly AS (\n\n SELECT \n first_month.plan_name,\n first_month.merchant_id,\n first_month.platform,\n first_month.plan_first_month,\n monthly.month,\n monthly.is_ht_ss,\n MONTHS_BETWEEN(monthly.month,first_month.plan_first_month) AS time_from_plan_first_month,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM merchant_plan_first_month AS first_month\n LEFT JOIN import_merchant_plan_monthly AS monthly\n ON first_month.merchant_id = monthly.merchant_id\n AND monthly.month >= first_month.plan_first_month\n AND first_month.plan_id <= monthly.closing_plan_id_in_month\n\n)\n\nSELECT *\nFROM loyalty__merchant_plan_retention_cohort_monthly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__merchant_plan_value_cohort_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.sql", "unique_id": "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_value_cohort_monthly", "analytics___loyalty__merchant_plan_value_cohort_monthly"], "alias": "analytics___loyalty__merchant_plan_value_cohort_monthly", "checksum": {"name": "sha256", "checksum": "6150fd838f9c77b0f7ae42c5beb599063440190e3c3f630938850b1378ec5ac3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Merchant lrr and participation cohort\nPK & Granularity: month, merchant_id, plan_name", "columns": {"merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_name": {"name": "company_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "plan in the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_program_live": {"name": "is_program_live", "description": "Monnthly indication if the program is live", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "first_month_active_3": {"name": "first_month_active_3", "description": "First time the merchant became active 3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_plan": {"name": "first_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "plan_in_month": {"name": "plan_in_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "months_from_subscription": {"name": "months_from_subscription", "description": "months since the date of the start of the plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_total_revenue_sum": {"name": "last_3m_total_revenue_sum", "description": "total amount from reddemed purchases in the last 3 months per merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_loyalty_revenue_sum": {"name": "last_3m_loyalty_revenue_sum", "description": "total amount from reddemed purchases in the last 3 months per merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_redeemers_cnt": {"name": "last_3m_redeemers_cnt", "description": "Count distinct customer_ids which made purchase with cupon code at least once in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_non_redeemers_cnt": {"name": "last_3m_non_redeemers_cnt", "description": "Count distinct customer_ids which didn't make purchase with cupon even once in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_purchasers_cnt": {"name": "last_3m_purchasers_cnt", "description": "Count distinct customer_ids which made purchase at least once in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_spb_redeemers": {"name": "last_3m_spb_redeemers", "description": "spend per buyer for redeemers - total revenue generated from customers that are redeemers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_spb_non_redeemers": {"name": "last_3m_spb_non_redeemers", "description": "spend per buyer for non redeemers - total revenue generated from customers that are non-redeemers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_revenue": {"name": "loyalty_revenue", "description": "Total revenue from orders with coupons", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue": {"name": "total_revenue", "description": "Total Revneue in the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_purchasers": {"name": "total_purchasers", "description": "Total Purchasers in Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_redeemers": {"name": "total_redeemers", "description": "total purchasers made an order with a coupon code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_lrr": {"name": "last_3m_lrr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_participation_rate": {"name": "last_3m_participation_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_added_revenue_rate": {"name": "last_3m_added_revenue_rate", "description": "last 3 month (added revenue / total revenue)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_added_revenue": {"name": "last_3m_added_revenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_redemption_from_sticky_bar": {"name": "is_redemption_from_sticky_bar", "description": "1/0 if the merchant had redemption from sticky bar", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_redemption_from_checkout_extension": {"name": "is_redemption_from_checkout_extension", "description": "1/0 if the merchant had redemption from checkout extension", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_earned_date_point_expiration_policy": {"name": "is_earned_date_point_expiration_policy", "description": "1/0 if the merchant enbaled point expiration from 'based on date earned' type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_stacking_enabled": {"name": "is_discount_stacking_enabled", "description": "1/0 if the merchant enbaled discount stacking", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082642.8236902, "relation_name": "dev_dkruh1.analytics___loyalty__merchant_plan_value_cohort_monthly", "raw_code": "WITH import_merchant_plan_monthly AS (\n\n SELECT *\n FROM {{ ref(\"analytics___loyalty__merchant_plan_monthly\") }}\n\n), import_plan_metrics_cohort AS (\n\n SELECT *\n FROM {{ ref(\"analytics___loyalty__merchant_plan_metrics_cohort\") }}\n\n), import_merchant AS (\n\n SELECT *\n FROM {{ ref('analytics___loyalty__merchant') }}\n\n), import_store_metrics_monthly AS (\n \n SELECT *\n FROM {{ ref('analytics___platform__store_metrics_monthly') }}\n\n), import_merchant_monthly_element AS (\n\n SELECT *\n FROM {{ ref('analytics___loyalty__merchant_monthly_element_activation') }}\n\n),\n\nmonthly_merchant_element_indications AS (\n\n SELECT \n month, \n merchant_id,\n MAX(IF(redemption_source = 'module_sticky_bar',1,0)) AS is_redemption_from_sticky_bar,\n MAX(IF(redemption_source = 'shopify_checkout_extension',1,0)) AS is_redemption_from_checkout_extension,\n MAX(IF(expiration_policy_type = 'POINTS_EARNED_DATE',1,0)) AS is_earned_date_point_expiration_policy,\n MAX(IF(is_discount_stacking_order+is_discount_stacking_product+is_discount_stacking_shiping > 0,1,0)) AS is_discount_stacking_enabled\n FROM import_merchant_monthly_element AS merchant_monthly\n GROUP BY 1,2\n),\n\nfirst_month_active3 AS (\n\n SELECT\n merchant_id,\n MIN(month) AS first_month_active_3\n FROM import_merchant_plan_monthly as monthly\n WHERE is_active3 = 1\n GROUP BY 1\n\n),\n\nloyalty__merchant_lrr_cohort_monthly AS (\n\n SELECT\n merchant_monthly.merchant_id,\n merchant_cohort.platform,\n orders.industry, \n merchant.app_key,\n merchant.organization_key,\n merchant.website,\n merchant.company_name,\n merchant_cohort.plan_name,\n merchant_monthly.month,\n merchant_monthly.is_program_live,\n active3.first_month_active_3,\n merchant_cohort.first_time_plan AS first_plan,\n merchant_monthly.closing_plan_name_in_month AS plan_in_month,\n MONTHS_BETWEEN(merchant_monthly.month,TRUNC(merchant_cohort.first_time_plan,'MONTH')) AS months_from_subscription,\n merchant_monthly.last_3m_total_revenue_sum,\n merchant_monthly.last_3m_loyalty_revenue_sum,\n merchant_monthly.last_3m_redeemers_cnt,\n merchant_monthly.last_3m_non_redeemers_cnt,\n merchant_monthly.last_3m_purchasers_cnt,\n merchant_monthly.last_3m_spb_redeemers,\n merchant_monthly.last_3m_spb_non_redeemers,\n merchant_monthly.loyalty_revenue,\n merchant_monthly.total_revenue,\n merchant_monthly.total_purchasers,\n merchant_monthly.total_redeemers,\n ROUND((merchant_monthly.last_3m_loyalty_revenue_sum/ merchant_monthly.last_3m_total_revenue_sum),2) AS last_3m_lrr,\n ROUND((merchant_monthly.last_3m_redeemers_cnt/ merchant_monthly.last_3m_purchasers_cnt),2) AS last_3m_participation_rate,\n merchant_monthly.last_3m_added_revenue_rate,\n merchant_monthly.last_3m_added_revenue,\n orders.last_3m_orders_avg_bucket,\n monthly_element.is_redemption_from_sticky_bar,\n monthly_element.is_redemption_from_checkout_extension,\n monthly_element.is_earned_date_point_expiration_policy,\n monthly_element.is_discount_stacking_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_merchant_plan_monthly AS merchant_monthly\n INNER JOIN import_plan_metrics_cohort AS merchant_cohort \n ON merchant_monthly.merchant_id = merchant_cohort.merchant_id\n INNER JOIN import_merchant AS merchant\n ON merchant.merchant_id = merchant_monthly.merchant_id\n LEFT JOIN import_store_metrics_monthly AS orders \n ON merchant.app_key = orders.app_key\n AND orders.month = merchant_monthly.month\n LEFT JOIN first_month_active3 AS active3 \n ON active3.merchant_id = merchant.merchant_id\n LEFT JOIN monthly_merchant_element_indications AS monthly_element\n ON monthly_element.merchant_id = merchant_monthly.merchant_id\n AND monthly_element.month = merchant_monthly.month\n)\n\nSELECT * \nFROM loyalty__merchant_lrr_cohort_monthly", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_metrics_cohort", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_monthly_element_activation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___loyalty__merchant_monthly_element_activation"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.sql", "compiled": true, "compiled_code": "WITH import_merchant_plan_monthly AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___loyalty__merchant_plan_monthly\n\n), import_plan_metrics_cohort AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___loyalty__merchant_plan_metrics_cohort\n\n), import_merchant AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___loyalty__merchant\n\n), import_store_metrics_monthly AS (\n \n SELECT *\n FROM dev_dkruh1.analytics___platform__store_metrics_monthly\n\n), import_merchant_monthly_element AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___loyalty__merchant_monthly_element_activation\n\n),\n\nmonthly_merchant_element_indications AS (\n\n SELECT \n month, \n merchant_id,\n MAX(IF(redemption_source = 'module_sticky_bar',1,0)) AS is_redemption_from_sticky_bar,\n MAX(IF(redemption_source = 'shopify_checkout_extension',1,0)) AS is_redemption_from_checkout_extension,\n MAX(IF(expiration_policy_type = 'POINTS_EARNED_DATE',1,0)) AS is_earned_date_point_expiration_policy,\n MAX(IF(is_discount_stacking_order+is_discount_stacking_product+is_discount_stacking_shiping > 0,1,0)) AS is_discount_stacking_enabled\n FROM import_merchant_monthly_element AS merchant_monthly\n GROUP BY 1,2\n),\n\nfirst_month_active3 AS (\n\n SELECT\n merchant_id,\n MIN(month) AS first_month_active_3\n FROM import_merchant_plan_monthly as monthly\n WHERE is_active3 = 1\n GROUP BY 1\n\n),\n\nloyalty__merchant_lrr_cohort_monthly AS (\n\n SELECT\n merchant_monthly.merchant_id,\n merchant_cohort.platform,\n orders.industry, \n merchant.app_key,\n merchant.organization_key,\n merchant.website,\n merchant.company_name,\n merchant_cohort.plan_name,\n merchant_monthly.month,\n merchant_monthly.is_program_live,\n active3.first_month_active_3,\n merchant_cohort.first_time_plan AS first_plan,\n merchant_monthly.closing_plan_name_in_month AS plan_in_month,\n MONTHS_BETWEEN(merchant_monthly.month,TRUNC(merchant_cohort.first_time_plan,'MONTH')) AS months_from_subscription,\n merchant_monthly.last_3m_total_revenue_sum,\n merchant_monthly.last_3m_loyalty_revenue_sum,\n merchant_monthly.last_3m_redeemers_cnt,\n merchant_monthly.last_3m_non_redeemers_cnt,\n merchant_monthly.last_3m_purchasers_cnt,\n merchant_monthly.last_3m_spb_redeemers,\n merchant_monthly.last_3m_spb_non_redeemers,\n merchant_monthly.loyalty_revenue,\n merchant_monthly.total_revenue,\n merchant_monthly.total_purchasers,\n merchant_monthly.total_redeemers,\n ROUND((merchant_monthly.last_3m_loyalty_revenue_sum/ merchant_monthly.last_3m_total_revenue_sum),2) AS last_3m_lrr,\n ROUND((merchant_monthly.last_3m_redeemers_cnt/ merchant_monthly.last_3m_purchasers_cnt),2) AS last_3m_participation_rate,\n merchant_monthly.last_3m_added_revenue_rate,\n merchant_monthly.last_3m_added_revenue,\n orders.last_3m_orders_avg_bucket,\n monthly_element.is_redemption_from_sticky_bar,\n monthly_element.is_redemption_from_checkout_extension,\n monthly_element.is_earned_date_point_expiration_policy,\n monthly_element.is_discount_stacking_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_merchant_plan_monthly AS merchant_monthly\n INNER JOIN import_plan_metrics_cohort AS merchant_cohort \n ON merchant_monthly.merchant_id = merchant_cohort.merchant_id\n INNER JOIN import_merchant AS merchant\n ON merchant.merchant_id = merchant_monthly.merchant_id\n LEFT JOIN import_store_metrics_monthly AS orders \n ON merchant.app_key = orders.app_key\n AND orders.month = merchant_monthly.month\n LEFT JOIN first_month_active3 AS active3 \n ON active3.merchant_id = merchant.merchant_id\n LEFT JOIN monthly_merchant_element_indications AS monthly_element\n ON monthly_element.merchant_id = merchant_monthly.merchant_id\n AND monthly_element.month = merchant_monthly.month\n)\n\nSELECT * \nFROM loyalty__merchant_lrr_cohort_monthly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__organization_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__organization_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.sql", "unique_id": "model.yoda.analytics___loyalty__organization_metrics_monthly", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__organization_metrics_monthly", "analytics___loyalty__organization_metrics_monthly"], "alias": "analytics___loyalty__organization_metrics_monthly", "checksum": {"name": "sha256", "checksum": "80bcd380a35b36a4a1b9e7a7be35aeecc1a5ede9baecf8e8f5e363c22f9e5568"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Modeled view of loyalty monthly metrics aggreagted in organization level, PK & Granularity: organization_key, month", "columns": {"month": {"name": "month", "description": "PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_3m_redeemers_cnt": {"name": "last_3m_redeemers_cnt", "description": "Count distinct customer_ids which made purchase with cupon code at least once in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_purchasers_cnt": {"name": "last_3m_purchasers_cnt", "description": "Count distinct customer_ids which made purchase at least once in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_participation_rate": {"name": "last_3m_participation_rate", "description": "Last 3 month (total redeemers / total purchasers)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082642.8639429, "relation_name": "dev_dkruh1.analytics___loyalty__organization_metrics_monthly", "raw_code": "-- Import --\n\nWITH import_processors AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__processor') }}\n\n), import_purchases AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__purchase') }}\n WHERE purchase_date BETWEEN MAKE_DATE(YEAR(current_date)-2,1,1) AND DATE_SUB(DATE(current_date),1)\n\n), import_currency AS (\n \n SELECT * FROM {{ ref('loyalty_stg__currency_rates') }}\n \n), import_platform_store AS (\n\n SELECT * FROM {{ ref('analytics___platform__store') }}\n\n), import_merchants_data AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant') }}\n\n-- Logic --\n\n), organization_purchases_details AS (\n\n SELECT \n store.organization_key,\n TRUNC((purchase.purchase_date),'MONTH') AS month,\n purchase.customer_id,\n purchase.redemption_code_id,\n ((purchase.amount_cents/currency.currency)/ 100) AS revenue,\n MAX(CASE WHEN redemption_code_id IS NOT NULL THEN 1 ELSE 0 END) OVER(PARTITION BY customer_id,TRUNC((purchase.purchase_date),'MONTH')) AS is_redeemer\n FROM import_purchases AS purchase \n INNER JOIN import_currency AS currency \n ON purchase.purchase_date = currency.date\n AND purchase.purchase_currency = currency.country\n INNER JOIN import_processors AS processor\n ON purchase.processor_id = processor.id\n INNER JOIN import_merchants_data AS merchants\n ON merchants.merchant_id = purchase.merchant_id\n LEFT JOIN import_platform_store AS store\n ON merchants.app_key = store.app_key\n WHERE purchase.customer_id IS NOT NULL\n AND purchase.is_refunded = FALSE\n AND LOWER(processor.type) <> 'shopifyposprocessor'\n AND ((amount_cents/currency.currency)/ 100) < 1135.06\n AND purchase.referral_id IS NULL \n and DATE(purchase.purchase_date) >= merchants.merchant_created_at\n \n), organization_purchase_monthly AS (\n\n SELECT \n organization_key,\n month,\n ROUND(SUM(revenue),2) AS total_revenue,\n ROUND(SUM(CASE WHEN redemption_code_id IS NOT NULL THEN revenue END),2) AS loyalty_revenue,\n COUNT(DISTINCT customer_id) AS total_purchasers,\n COUNT(DISTINCT CASE WHEN redemption_code_id IS NOT NULL THEN customer_id END) AS total_redeemers,\n SUM(CASE WHEN is_redeemer = 1 THEN revenue END) AS redeemers_revenue,\n SUM(CASE WHEN is_redeemer = 0 THEN revenue END) AS non_redeemers_revenue\n FROM organization_purchases_details\n GROUP BY 1,2\n \n), organization_perchase_l3m AS (\n\n SELECT \n monthly.organization_key,\n monthly.month,\n purchase.customer_id,\n purchase.redemption_code_id,\n purchase.revenue,\n SUM(purchase.revenue) OVER (PARTITION BY monthly.organization_key, monthly.month) AS last_3m_revenue,\n MAX(CASE WHEN purchase.redemption_code_id IS NOT NULL THEN 1 ELSE 0 END) OVER (PARTITION BY purchase.customer_id, monthly.month) AS is_redeemer_last_3m\n FROM organization_purchase_monthly AS monthly\n LEFT JOIN organization_purchases_details AS purchase \n ON monthly.organization_key = purchase.organization_key\n AND MONTHS_BETWEEN(monthly.month,purchase.month) BETWEEN 1 AND 3\n \n), organization_l3m_purchasers AS (\n\n SELECT \n monthly.organization_key,\n monthly.month,\n COUNT(DISTINCT purchase.customer_id) AS last_3m_purchasers_cnt\n FROM organization_purchase_monthly AS monthly\n LEFT JOIN organization_purchases_details AS purchase \n ON monthly.organization_key = purchase.organization_key\n AND MONTHS_BETWEEN(monthly.month,purchase.month) BETWEEN 1 AND 3\n GROUP BY 1,2\n \n), organization_monthly_revenue_base AS (\n\n SELECT\n l3m.organization_key,\n l3m.month,\n MAX(monthly.total_revenue) AS total_revenue,\n MAX(monthly.loyalty_revenue) AS loyalty_revenue,\n MAX(monthly.total_purchasers) AS total_purchasers,\n MAX(monthly.total_redeemers) AS total_redeemers,\n MAX(monthly.redeemers_revenue) AS redeemers_revenue,\n MAX(monthly.non_redeemers_revenue) AS non_redeemers_revenue,\n MAX(l3m.last_3m_revenue) AS last_3m_revenue,\n MAX(l3m_purchasers.last_3m_purchasers_cnt) AS last_3m_purchasers_cnt,\n COUNT(DISTINCT CASE WHEN l3m.is_redeemer_last_3m = 1 THEN l3m.customer_id END) AS last_3m_redeemers_cnt,\n COUNT(DISTINCT CASE WHEN l3m.is_redeemer_last_3m = 0 THEN l3m.customer_id END) AS last_3m_non_redeemers_cnt,\n ROUND(SUM(CASE WHEN l3m.is_redeemer_last_3m = 1 THEN l3m.revenue END),4) AS last_3m_redeemers_revenue,\n ROUND(SUM(CASE WHEN l3m.is_redeemer_last_3m = 0 THEN l3m.revenue END),4) AS last_3m_non_redeemers_revenue\n FROM organization_perchase_l3m AS l3m\n LEFT JOIN organization_purchase_monthly AS monthly\n ON l3m.organization_key = monthly.organization_key\n AND l3m.month = monthly.month\n LEFT JOIN organization_l3m_purchasers AS l3m_purchasers\n ON l3m_purchasers.organization_key = monthly.organization_key\n AND l3m_purchasers.month = monthly.month \n GROUP BY 1,2\n \n), loyalty_organization_metrics_monthly_res AS (\n\n SELECT\n month,\n organization_key,\n last_3m_redeemers_cnt,\n last_3m_purchasers_cnt,\n ROUND(last_3m_redeemers_cnt / last_3m_purchasers_cnt, 2) AS last_3m_participation_rate\n FROM organization_monthly_revenue_base\n\n)\n\nSELECT * FROM loyalty_organization_metrics_monthly_res", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__processor", "package": null, "version": null}, {"name": "analytics___loyalty_stg__purchase", "package": null, "version": null}, {"name": "loyalty_stg__currency_rates", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty_stg__processor", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.loyalty_stg__currency_rates", "model.yoda.analytics___platform__store", "model.yoda.analytics___loyalty__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_processors AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__processor\n\n), import_purchases AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__purchase\n WHERE purchase_date BETWEEN MAKE_DATE(YEAR(current_date)-2,1,1) AND DATE_SUB(DATE(current_date),1)\n\n), import_currency AS (\n \n SELECT * FROM dev_dkruh1.loyalty_stg__currency_rates\n \n), import_platform_store AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store\n\n), import_merchants_data AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant\n\n-- Logic --\n\n), organization_purchases_details AS (\n\n SELECT \n store.organization_key,\n TRUNC((purchase.purchase_date),'MONTH') AS month,\n purchase.customer_id,\n purchase.redemption_code_id,\n ((purchase.amount_cents/currency.currency)/ 100) AS revenue,\n MAX(CASE WHEN redemption_code_id IS NOT NULL THEN 1 ELSE 0 END) OVER(PARTITION BY customer_id,TRUNC((purchase.purchase_date),'MONTH')) AS is_redeemer\n FROM import_purchases AS purchase \n INNER JOIN import_currency AS currency \n ON purchase.purchase_date = currency.date\n AND purchase.purchase_currency = currency.country\n INNER JOIN import_processors AS processor\n ON purchase.processor_id = processor.id\n INNER JOIN import_merchants_data AS merchants\n ON merchants.merchant_id = purchase.merchant_id\n LEFT JOIN import_platform_store AS store\n ON merchants.app_key = store.app_key\n WHERE purchase.customer_id IS NOT NULL\n AND purchase.is_refunded = FALSE\n AND LOWER(processor.type) <> 'shopifyposprocessor'\n AND ((amount_cents/currency.currency)/ 100) < 1135.06\n AND purchase.referral_id IS NULL \n and DATE(purchase.purchase_date) >= merchants.merchant_created_at\n \n), organization_purchase_monthly AS (\n\n SELECT \n organization_key,\n month,\n ROUND(SUM(revenue),2) AS total_revenue,\n ROUND(SUM(CASE WHEN redemption_code_id IS NOT NULL THEN revenue END),2) AS loyalty_revenue,\n COUNT(DISTINCT customer_id) AS total_purchasers,\n COUNT(DISTINCT CASE WHEN redemption_code_id IS NOT NULL THEN customer_id END) AS total_redeemers,\n SUM(CASE WHEN is_redeemer = 1 THEN revenue END) AS redeemers_revenue,\n SUM(CASE WHEN is_redeemer = 0 THEN revenue END) AS non_redeemers_revenue\n FROM organization_purchases_details\n GROUP BY 1,2\n \n), organization_perchase_l3m AS (\n\n SELECT \n monthly.organization_key,\n monthly.month,\n purchase.customer_id,\n purchase.redemption_code_id,\n purchase.revenue,\n SUM(purchase.revenue) OVER (PARTITION BY monthly.organization_key, monthly.month) AS last_3m_revenue,\n MAX(CASE WHEN purchase.redemption_code_id IS NOT NULL THEN 1 ELSE 0 END) OVER (PARTITION BY purchase.customer_id, monthly.month) AS is_redeemer_last_3m\n FROM organization_purchase_monthly AS monthly\n LEFT JOIN organization_purchases_details AS purchase \n ON monthly.organization_key = purchase.organization_key\n AND MONTHS_BETWEEN(monthly.month,purchase.month) BETWEEN 1 AND 3\n \n), organization_l3m_purchasers AS (\n\n SELECT \n monthly.organization_key,\n monthly.month,\n COUNT(DISTINCT purchase.customer_id) AS last_3m_purchasers_cnt\n FROM organization_purchase_monthly AS monthly\n LEFT JOIN organization_purchases_details AS purchase \n ON monthly.organization_key = purchase.organization_key\n AND MONTHS_BETWEEN(monthly.month,purchase.month) BETWEEN 1 AND 3\n GROUP BY 1,2\n \n), organization_monthly_revenue_base AS (\n\n SELECT\n l3m.organization_key,\n l3m.month,\n MAX(monthly.total_revenue) AS total_revenue,\n MAX(monthly.loyalty_revenue) AS loyalty_revenue,\n MAX(monthly.total_purchasers) AS total_purchasers,\n MAX(monthly.total_redeemers) AS total_redeemers,\n MAX(monthly.redeemers_revenue) AS redeemers_revenue,\n MAX(monthly.non_redeemers_revenue) AS non_redeemers_revenue,\n MAX(l3m.last_3m_revenue) AS last_3m_revenue,\n MAX(l3m_purchasers.last_3m_purchasers_cnt) AS last_3m_purchasers_cnt,\n COUNT(DISTINCT CASE WHEN l3m.is_redeemer_last_3m = 1 THEN l3m.customer_id END) AS last_3m_redeemers_cnt,\n COUNT(DISTINCT CASE WHEN l3m.is_redeemer_last_3m = 0 THEN l3m.customer_id END) AS last_3m_non_redeemers_cnt,\n ROUND(SUM(CASE WHEN l3m.is_redeemer_last_3m = 1 THEN l3m.revenue END),4) AS last_3m_redeemers_revenue,\n ROUND(SUM(CASE WHEN l3m.is_redeemer_last_3m = 0 THEN l3m.revenue END),4) AS last_3m_non_redeemers_revenue\n FROM organization_perchase_l3m AS l3m\n LEFT JOIN organization_purchase_monthly AS monthly\n ON l3m.organization_key = monthly.organization_key\n AND l3m.month = monthly.month\n LEFT JOIN organization_l3m_purchasers AS l3m_purchasers\n ON l3m_purchasers.organization_key = monthly.organization_key\n AND l3m_purchasers.month = monthly.month \n GROUP BY 1,2\n \n), loyalty_organization_metrics_monthly_res AS (\n\n SELECT\n month,\n organization_key,\n last_3m_redeemers_cnt,\n last_3m_purchasers_cnt,\n ROUND(last_3m_redeemers_cnt / last_3m_purchasers_cnt, 2) AS last_3m_participation_rate\n FROM organization_monthly_revenue_base\n\n)\n\nSELECT * FROM loyalty_organization_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__plan_metrics_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__plan_metrics_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.sql", "unique_id": "model.yoda.analytics___loyalty__plan_metrics_daily", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__plan_metrics_daily", "analytics___loyalty__plan_metrics_daily"], "alias": "analytics___loyalty__plan_metrics_daily", "checksum": {"name": "sha256", "checksum": "f7de799e058dac9b9124073a736446aa3fa9dfbce7caff999c11206dfdc58367"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Modeled table which aggrigates the merchant_plan_daily table \nPK & Granularity: date, did_upgrade_first_day, plan,plan_prior_to_change,changes,platform,first_plan_ever,is_ht_ss", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "did_upgrade_first_day": {"name": "did_upgrade_first_day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "plan_prior_to_change": {"name": "plan_prior_to_change", "description": "Describes the plan name which was before the upgrade/downgrade", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "changes": {"name": "changes", "description": "Describes all changes in plan trend (upgrade/downgrade)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_plan_ever": {"name": "first_plan_ever", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ht_ss": {"name": "is_ht_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "program_live_cnt": {"name": "program_live_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "uninstall_cnt": {"name": "uninstall_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "install_cnt": {"name": "install_cnt", "description": "Count of distinct merchant who installed the program that day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active2_cnt": {"name": "active2_cnt", "description": "Aggregates widget loaded that date with min 3 distinct 'fingerprints' (users)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active2_1_cnt": {"name": "active2_1_cnt", "description": "Aggregates 'rewards_page' widget loaded that month with min 3 distinct 'fingerprints' (users)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_cnt": {"name": "merchant_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082642.9150066, "relation_name": "dev_dkruh1.analytics___loyalty__plan_metrics_daily", "raw_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_daily') }}\n\n), loyalty__plan_metrics_daily AS (\n\n SELECT \n date,\n plan_name,\n did_upgrade_first_day,\n plan_prior_to_change,\n changes,\n platform,\n first_plan_ever,\n is_ht_ss,\n SUM(is_program_live) AS program_live_cnt,\n SUM(is_uninstall_date) AS uninstall_cnt,\n SUM(is_install_date) AS install_cnt,\n SUM(is_active2) AS active2_cnt,\n SUM(is_active2_1) AS active2_1_cnt,\n COUNT(DISTINCT merchant_id) merchant_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_merchant_plan_daily\n GROUP BY 1,2,3,4,5,6,7,8\n\n)\n\nSELECT *\nFROM loyalty__plan_metrics_daily", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.sql", "compiled": true, "compiled_code": "WITH import_merchant_plan_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_daily\n\n), loyalty__plan_metrics_daily AS (\n\n SELECT \n date,\n plan_name,\n did_upgrade_first_day,\n plan_prior_to_change,\n changes,\n platform,\n first_plan_ever,\n is_ht_ss,\n SUM(is_program_live) AS program_live_cnt,\n SUM(is_uninstall_date) AS uninstall_cnt,\n SUM(is_install_date) AS install_cnt,\n SUM(is_active2) AS active2_cnt,\n SUM(is_active2_1) AS active2_1_cnt,\n COUNT(DISTINCT merchant_id) merchant_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_merchant_plan_daily\n GROUP BY 1,2,3,4,5,6,7,8\n\n)\n\nSELECT *\nFROM loyalty__plan_metrics_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__plan_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__plan_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.sql", "unique_id": "model.yoda.analytics___loyalty__plan_metrics_monthly", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__plan_metrics_monthly", "analytics___loyalty__plan_metrics_monthly"], "alias": "analytics___loyalty__plan_metrics_monthly", "checksum": {"name": "sha256", "checksum": "1a72b3e4a39bd594bdf7c6e1be4eade4459296b9e1d3605dff5522bffef69246"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Modeled table which aggregate plan metrics daily into monthly grnularity\nPK & Granularity: month, did_upgrade_first_day_in_month, closing_plan_name_in_month,opening_plan_name_in_month,closing_plan_id_in_month,is_ht_ss\nopening_plan_id_in_month,plan_changes,platform", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "did_upgrade_first_day_in_month": {"name": "did_upgrade_first_day_in_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_plan_id_in_month": {"name": "opening_plan_id_in_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opening_plan_name_in_month": {"name": "opening_plan_name_in_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name_in_month": {"name": "closing_plan_name_in_month", "description": "Describe the closing plan name in month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_id_in_month": {"name": "closing_plan_id_in_month", "description": "Describe the closing plan id in month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_changes": {"name": "plan_changes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ht_ss": {"name": "is_ht_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "merchants_cnt": {"name": "merchants_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "installs_cnt": {"name": "installs_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "uninstalls_cnt": {"name": "uninstalls_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "program_live_cnt": {"name": "program_live_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active2_cnt": {"name": "active2_cnt", "description": "Aggregates widget loaded that month and plan with min 3 distinct 'fingerprints' (users)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active2_1_cnt": {"name": "active2_1_cnt", "description": "Aggregates 'rewards_page' widget loaded that month and plan with min 3 distinct 'fingerprints' (users)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active3_cnt": {"name": "active3_cnt", "description": "Aggregates total active3 merchants in a month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082642.9718978, "relation_name": "dev_dkruh1.analytics___loyalty__plan_metrics_monthly", "raw_code": "WITH import_merchant_plan_monthly AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_monthly') }}\n\n), loyalty__plan_metrics_monhtly AS (\n\n SELECT \n month,\n platform,\n did_upgrade_first_day_in_month,\n opening_plan_id_in_month,\n opening_plan_name_in_month,\n closing_plan_name_in_month,\n closing_plan_id_in_month,\n plan_changes,\n is_ht_ss,\n COUNT(DISTINCT merchant_id) AS merchants_cnt,\n SUM(is_install_month) AS installs_cnt,\n SUM(is_uninstall_month) AS uninstalls_cnt,\n SUM(is_program_live) AS program_live_cnt,\n SUM(is_active2) AS active2_cnt,\n SUM(is_active2_1) AS active2_1_cnt,\n SUM(is_active3) AS active3_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_merchant_plan_monthly\n GROUP BY 1,2,3,4,5,6,7,8,9\n \n )\n \n SELECT *\n FROM loyalty__plan_metrics_monhtly", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.sql", "compiled": true, "compiled_code": "WITH import_merchant_plan_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_monthly\n\n), loyalty__plan_metrics_monhtly AS (\n\n SELECT \n month,\n platform,\n did_upgrade_first_day_in_month,\n opening_plan_id_in_month,\n opening_plan_name_in_month,\n closing_plan_name_in_month,\n closing_plan_id_in_month,\n plan_changes,\n is_ht_ss,\n COUNT(DISTINCT merchant_id) AS merchants_cnt,\n SUM(is_install_month) AS installs_cnt,\n SUM(is_uninstall_month) AS uninstalls_cnt,\n SUM(is_program_live) AS program_live_cnt,\n SUM(is_active2) AS active2_cnt,\n SUM(is_active2_1) AS active2_1_cnt,\n SUM(is_active3) AS active3_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_merchant_plan_monthly\n GROUP BY 1,2,3,4,5,6,7,8,9\n \n )\n \n SELECT *\n FROM loyalty__plan_metrics_monhtly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__point_expiration_policy_settings_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.sql", "unique_id": "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__point_expiration_policy_settings_over_time", "analytics___loyalty__point_expiration_policy_settings_over_time"], "alias": "analytics___loyalty__point_expiration_policy_settings_over_time", "checksum": {"name": "sha256", "checksum": "6fc8ace675e6c15f08a388da41b787eafceb567a10a98b4ab397d527cd391b8d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "", "columns": {"merchant_group_id": {"name": "merchant_group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "from_date": {"name": "from_date", "description": "Start date of the policy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "End date of the policy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "expiration_policy_type": {"name": "expiration_policy_type", "description": "The type of the policy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "retention_period_in_days": {"name": "retention_period_in_days", "description": "Time untill the points will expire", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "Time when the event occured", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.0197103, "relation_name": "dev_dkruh1.analytics___loyalty__point_expiration_policy_settings_over_time", "raw_code": "WITH import_loyalty_merchant AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__merchant') }}\n\n), import_point_policy_settings AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__point_expiration_policy_settings_snapshot') }}\n),\n\npolicy_expiration_time_range AS (\n\nSELECT\n\n events.merchant_group_id,\n merchants.merchant_id,\n DATE(events.updated_at) AS from_date,\n DATE(NVL(LEAD(events.updated_at) OVER(PARTITION BY events.merchant_group_id ORDER BY events.updated_at), '2999-12-30')) AS to_date,\n events.expiration_policy_type,\n events.retention_period_in_days,\n events.updated_at\nFROM import_point_policy_settings AS events\nINNER JOIN import_loyalty_merchant AS merchants\nON events.merchant_group_id = merchants.group_id\n\n),\n\npolicy_expiration_w_filter AS (\n SELECT\n merchant_group_id,\n merchant_id,\n from_date,\n to_date,\n expiration_policy_type,\n retention_period_in_days,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM policy_expiration_time_range\nWHERE from_date <> to_date\n\n)\n\nSELECT *\nFROM policy_expiration_w_filter", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__merchant", "package": null, "version": null}, {"name": "analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty_stg__merchant", "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.sql", "compiled": true, "compiled_code": "WITH import_loyalty_merchant AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__merchant\n\n), import_point_policy_settings AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__point_expiration_policy_settings_snapshot\n),\n\npolicy_expiration_time_range AS (\n\nSELECT\n\n events.merchant_group_id,\n merchants.merchant_id,\n DATE(events.updated_at) AS from_date,\n DATE(NVL(LEAD(events.updated_at) OVER(PARTITION BY events.merchant_group_id ORDER BY events.updated_at), '2999-12-30')) AS to_date,\n events.expiration_policy_type,\n events.retention_period_in_days,\n events.updated_at\nFROM import_point_policy_settings AS events\nINNER JOIN import_loyalty_merchant AS merchants\nON events.merchant_group_id = merchants.group_id\n\n),\n\npolicy_expiration_w_filter AS (\n SELECT\n merchant_group_id,\n merchant_id,\n from_date,\n to_date,\n expiration_policy_type,\n retention_period_in_days,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM policy_expiration_time_range\nWHERE from_date <> to_date\n\n)\n\nSELECT *\nFROM policy_expiration_w_filter", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty__redemption_details": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty__redemption_details", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.sql", "unique_id": "model.yoda.analytics___loyalty__redemption_details", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__redemption_details", "analytics___loyalty__redemption_details"], "alias": "analytics___loyalty__redemption_details", "checksum": {"name": "sha256", "checksum": "8f0e0a14abb435f68989e2bef0891b19776d44847bcdb354a4b8eb57350a0062"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Holdes enriched data for redempaiton", "columns": {"redemption_option_id": {"name": "redemption_option_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_method": {"name": "redemption_method", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_option_created_at": {"name": "redemption_option_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_in_usd": {"name": "amount_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_amount_cents": {"name": "discount_amount_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_percentage": {"name": "discount_percentage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_applies_once": {"name": "is_applies_once", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "applies_to_id": {"name": "applies_to_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_product_type": {"name": "applies_to_product_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_type": {"name": "discount_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redempation_option_is_deleted": {"name": "redempation_option_is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_admin": {"name": "is_admin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "point_redemption_id": {"name": "point_redemption_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "point_redemption_created_at": {"name": "point_redemption_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "redemption_source": {"name": "redemption_source", "description": "The source where the redemption was made", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "perk_id": {"name": "perk_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "earning_rule_id": {"name": "earning_rule_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_reversed": {"name": "is_reversed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_checkout": {"name": "is_checkout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "point_redemption_is_deleted": {"name": "point_redemption_is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_visible": {"name": "is_visible", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "amount_redeemed_usd": {"name": "amount_redeemed_usd", "description": "Amount which customer redeemd in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_direct_rewarded": {"name": "is_direct_rewarded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "point_redemption_orders_cnt": {"name": "point_redemption_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "point_redemption_first_order_date": {"name": "point_redemption_first_order_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "point_redemption_last_order_date": {"name": "point_redemption_last_order_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "materialized": "table", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.0651171, "relation_name": "dev_dkruh1.analytics___loyalty__redemption_details", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH import_redemption_option AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__redemption_option') }}\n\n), import_point_redemption AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__point_redemption') }}\n\n), import_purchase_redemption AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__purchase_redemption') }}\n\n), import_purchase AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__purchase') }}\n\n), import_perk AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__perk') }}\n\n), import_loyalty_account AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__loyalty_account') }} \n\n),\n\npoint_redemption_orders_metrics AS (\n\n SELECT \n DISTINCT redemption_id,\n COUNT(redeem_purchase.purchase_id) OVER (PARTITION BY redemption_id) AS point_redemption_orders_cnt,\n FIRST_VALUE(purchase_date,TRUE) OVER (PARTITION BY redemption_id ORDER BY purchase_at ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS point_redemption_first_order_date,\n FIRST_VALUE(purchase_date,TRUE) OVER (PARTITION BY redemption_id ORDER BY purchase_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS point_redemption_last_order_date\n FROM import_purchase_redemption AS redeem_purchase\n INNER JOIN import_purchase AS purchase \n ON redeem_purchase.purchase_id = purchase.purchase_id\n WHERE purchase.referral_id IS NULL \n\n),\n\nredemption_details AS (\n\n SELECT\n option.redemption_option_id,\n option.merchant_id,\n loyalty_account.app_key,\n option.redemption_method,\n option.created_at AS redemption_option_created_at,\n option.amount AS amount_in_usd,\n option.discount_amount_cents,\n option.discount_percentage,\n option.is_applies_once,\n option.applies_to_id,\n option.applies_to_product_type,\n option.discount_type,\n option.is_deleted AS redempation_option_is_deleted,\n point.is_admin,\n point.point_redemption_id,\n point.created_at AS point_redemption_created_at,\n point.redemption_source,\n point.customer_id,\n point.perk_id,\n perk.earning_rule_id,\n point.referral_id,\n point.is_reversed,\n point.is_checkout,\n point.is_deleted AS point_redemption_is_deleted,\n point.is_visible,\n point.amount_redeemed_usd,\n IF(option.is_display_in_popup = 1,0,1) AS is_direct_rewarded,\n orders.point_redemption_orders_cnt,\n orders.point_redemption_first_order_date,\n orders.point_redemption_last_order_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_redemption_option AS option \n INNER JOIN import_point_redemption AS point\n ON point.redemption_option_id = option.redemption_option_id\n LEFT JOIN point_redemption_orders_metrics AS orders\n ON point.point_redemption_id = orders.redemption_id\n LEFT JOIN import_perk AS perk\n ON point.perk_id = perk.perk_id\n LEFT JOIN import_loyalty_account AS loyalty_account\n ON option.merchant_id = loyalty_account.merchant_id\n\n)\n\nSELECT *\nFROM redemption_details", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__redemption_option", "package": null, "version": null}, {"name": "analytics___loyalty_stg__point_redemption", "package": null, "version": null}, {"name": "analytics___loyalty_stg__purchase_redemption", "package": null, "version": null}, {"name": "analytics___loyalty_stg__purchase", "package": null, "version": null}, {"name": "analytics___loyalty_stg__perk", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty_stg__redemption_option", "model.yoda.analytics___loyalty_stg__point_redemption", "model.yoda.analytics___loyalty_stg__purchase_redemption", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.analytics___loyalty_stg__perk", "model.yoda.analytics___loyalty_stg__loyalty_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.sql", "compiled": true, "compiled_code": "\n\nWITH import_redemption_option AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__redemption_option\n\n), import_point_redemption AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__point_redemption\n\n), import_purchase_redemption AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__purchase_redemption\n\n), import_purchase AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__purchase\n\n), import_perk AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__perk\n\n), import_loyalty_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__loyalty_account \n\n),\n\npoint_redemption_orders_metrics AS (\n\n SELECT \n DISTINCT redemption_id,\n COUNT(redeem_purchase.purchase_id) OVER (PARTITION BY redemption_id) AS point_redemption_orders_cnt,\n FIRST_VALUE(purchase_date,TRUE) OVER (PARTITION BY redemption_id ORDER BY purchase_at ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS point_redemption_first_order_date,\n FIRST_VALUE(purchase_date,TRUE) OVER (PARTITION BY redemption_id ORDER BY purchase_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS point_redemption_last_order_date\n FROM import_purchase_redemption AS redeem_purchase\n INNER JOIN import_purchase AS purchase \n ON redeem_purchase.purchase_id = purchase.purchase_id\n WHERE purchase.referral_id IS NULL \n\n),\n\nredemption_details AS (\n\n SELECT\n option.redemption_option_id,\n option.merchant_id,\n loyalty_account.app_key,\n option.redemption_method,\n option.created_at AS redemption_option_created_at,\n option.amount AS amount_in_usd,\n option.discount_amount_cents,\n option.discount_percentage,\n option.is_applies_once,\n option.applies_to_id,\n option.applies_to_product_type,\n option.discount_type,\n option.is_deleted AS redempation_option_is_deleted,\n point.is_admin,\n point.point_redemption_id,\n point.created_at AS point_redemption_created_at,\n point.redemption_source,\n point.customer_id,\n point.perk_id,\n perk.earning_rule_id,\n point.referral_id,\n point.is_reversed,\n point.is_checkout,\n point.is_deleted AS point_redemption_is_deleted,\n point.is_visible,\n point.amount_redeemed_usd,\n IF(option.is_display_in_popup = 1,0,1) AS is_direct_rewarded,\n orders.point_redemption_orders_cnt,\n orders.point_redemption_first_order_date,\n orders.point_redemption_last_order_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_redemption_option AS option \n INNER JOIN import_point_redemption AS point\n ON point.redemption_option_id = option.redemption_option_id\n LEFT JOIN point_redemption_orders_metrics AS orders\n ON point.point_redemption_id = orders.redemption_id\n LEFT JOIN import_perk AS perk\n ON point.perk_id = perk.perk_id\n LEFT JOIN import_loyalty_account AS loyalty_account\n ON option.merchant_id = loyalty_account.merchant_id\n\n)\n\nSELECT *\nFROM redemption_details", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__earning_rule": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__earning_rule", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.sql", "unique_id": "model.yoda.analytics___loyalty_stg__earning_rule", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__earning_rule", "analytics___loyalty_stg__earning_rule"], "alias": "analytics___loyalty_stg__earning_rule", "checksum": {"name": "sha256", "checksum": "98fae7dbeebe529d829f26e816e40d85a3d812497835e78baf103b23c72f8878"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "earning_rule_id", "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Campaigns that Loyalty merchants created", "columns": {"earning_rule_id": {"name": "earning_rule_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "earning_rule_type": {"name": "earning_rule_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_points": {"name": "reward_points", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency_code": {"name": "currency_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_option_id": {"name": "redemption_option_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vip_tier_id": {"name": "vip_tier_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_active": {"name": "is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_expired": {"name": "is_expired", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_archived": {"name": "is_archived", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_hidden": {"name": "is_hidden", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_requires_referral_code": {"name": "is_requires_referral_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_require_product_id": {"name": "is_require_product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_require_product_tag": {"name": "is_require_product_tag", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_require_product_type": {"name": "is_require_product_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_exclude_customer_tags": {"name": "is_exclude_customer_tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_admin_only": {"name": "is_admin_only", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "earning_rule_description": {"name": "earning_rule_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_type": {"name": "reward_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_percentage": {"name": "reward_percentage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "api_key": {"name": "api_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "activated_at": {"name": "activated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "earning_rule_id", "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "earning_rule_id", "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082643.1204343, "relation_name": "dev_dkruh1.analytics___loyalty_stg__earning_rule", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\n\nWITH import_campaigns AS (\n\n SELECT * FROM {{ ref('loyalty_stg__campaigns') }}\n\n), loyalty_stg__earning_rule AS (\n\n SELECT \n id AS earning_rule_id,\n merchant_id AS merchant_id,\n type AS earning_rule_type,\n reward_points,\n currency AS currency_code,\n redemption_option_id,\n vip_tier_id,\n SMALLINT(active) AS is_active,\n SMALLINT(expired) AS is_expired, \n SMALLINT(archived) AS is_archived,\n SMALLINT(hidden) AS is_hidden,\n SMALLINT(requires_referral_code) AS is_requires_referral_code,\n SMALLINT(require_product_by_ids) AS is_require_product_id,\n SMALLINT(require_product_by_tags) AS is_require_product_tag,\n SMALLINT(require_product_by_types) AS is_require_product_type,\n SMALLINT(exclude_customer_tags) AS is_exclude_customer_tags,\n SMALLINT(admin_only) AS is_admin_only, \n details AS earning_rule_description,\n reward_type,\n reward_percentage,\n api_key,\n DATE(created_at) AS created_date,\n activated_at,\n created_at,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_campaigns\n\n)\n\nSELECT \n earning_rule_id,\n merchant_id,\n earning_rule_type,\n reward_points,\n currency_code,\n redemption_option_id,\n vip_tier_id,\n is_active,\n is_expired, \n is_archived,\n is_hidden,\n is_requires_referral_code,\n is_require_product_id,\n is_require_product_tag,\n is_require_product_type,\n is_exclude_customer_tags,\n is_admin_only, \n earning_rule_description,\n reward_type,\n reward_percentage,\n api_key,\n created_date,\n activated_at,\n created_at,\n updated_at,\n dwh_updated_at\nFROM loyalty_stg__earning_rule", "language": "sql", "refs": [{"name": "loyalty_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.sql", "compiled": true, "compiled_code": "\n\n\nWITH import_campaigns AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__campaigns\n\n), loyalty_stg__earning_rule AS (\n\n SELECT \n id AS earning_rule_id,\n merchant_id AS merchant_id,\n type AS earning_rule_type,\n reward_points,\n currency AS currency_code,\n redemption_option_id,\n vip_tier_id,\n SMALLINT(active) AS is_active,\n SMALLINT(expired) AS is_expired, \n SMALLINT(archived) AS is_archived,\n SMALLINT(hidden) AS is_hidden,\n SMALLINT(requires_referral_code) AS is_requires_referral_code,\n SMALLINT(require_product_by_ids) AS is_require_product_id,\n SMALLINT(require_product_by_tags) AS is_require_product_tag,\n SMALLINT(require_product_by_types) AS is_require_product_type,\n SMALLINT(exclude_customer_tags) AS is_exclude_customer_tags,\n SMALLINT(admin_only) AS is_admin_only, \n details AS earning_rule_description,\n reward_type,\n reward_percentage,\n api_key,\n DATE(created_at) AS created_date,\n activated_at,\n created_at,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_campaigns\n\n)\n\nSELECT \n earning_rule_id,\n merchant_id,\n earning_rule_type,\n reward_points,\n currency_code,\n redemption_option_id,\n vip_tier_id,\n is_active,\n is_expired, \n is_archived,\n is_hidden,\n is_requires_referral_code,\n is_require_product_id,\n is_require_product_tag,\n is_require_product_type,\n is_exclude_customer_tags,\n is_admin_only, \n earning_rule_description,\n reward_type,\n reward_percentage,\n api_key,\n created_date,\n activated_at,\n created_at,\n updated_at,\n dwh_updated_at\nFROM loyalty_stg__earning_rule", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__earning_rule_activation_history": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__earning_rule_activation_history", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.sql", "unique_id": "model.yoda.analytics___loyalty_stg__earning_rule_activation_history", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__earning_rule_activation_history", "analytics___loyalty_stg__earning_rule_activation_history"], "alias": "analytics___loyalty_stg__earning_rule_activation_history", "checksum": {"name": "sha256", "checksum": "35899cc6fd1587df0361db26ec818759b1ed05fc78df86089251fe9f68ccfb36"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Modeled view which holds all activation statuses timestamps of earning rules", "columns": {"earning_rule_activation_history_id": {"name": "earning_rule_activation_history_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "earning_rule_id": {"name": "earning_rule_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_active": {"name": "is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "earning_rule_activation_created_date": {"name": "earning_rule_activation_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "earning_rule_activation_created_at": {"name": "earning_rule_activation_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "earning_rule_activation_updated_at": {"name": "earning_rule_activation_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.1425533, "relation_name": "dev_dkruh1.analytics___loyalty_stg__earning_rule_activation_history", "raw_code": "WITH import_campaign_activation_histories AS (\n\n SELECT * FROM {{ ref('loyalty_stg__campaign_activation_histories') }}\n\n), loyalty_stg__earning_rule_activation_history AS (\n\n SELECT\n id AS earning_rule_activation_history_id,\n campaign_id AS earning_rule_id,\n SMALLINT(active) AS is_active,\n DATE(created_at) AS earning_rule_activation_created_date,\n created_at AS earning_rule_activation_created_at,\n updated_at AS earning_rule_activation_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM import_campaign_activation_histories\n\n)\n\nSELECT \n earning_rule_activation_history_id,\n earning_rule_id,\n is_active,\n earning_rule_activation_created_date,\n earning_rule_activation_created_at,\n earning_rule_activation_updated_at,\n dwh_updated_at \nFROM loyalty_stg__earning_rule_activation_history", "language": "sql", "refs": [{"name": "loyalty_stg__campaign_activation_histories", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__campaign_activation_histories"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.sql", "compiled": true, "compiled_code": "WITH import_campaign_activation_histories AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__campaign_activation_histories\n\n), loyalty_stg__earning_rule_activation_history AS (\n\n SELECT\n id AS earning_rule_activation_history_id,\n campaign_id AS earning_rule_id,\n SMALLINT(active) AS is_active,\n DATE(created_at) AS earning_rule_activation_created_date,\n created_at AS earning_rule_activation_created_at,\n updated_at AS earning_rule_activation_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM import_campaign_activation_histories\n\n)\n\nSELECT \n earning_rule_activation_history_id,\n earning_rule_id,\n is_active,\n earning_rule_activation_created_date,\n earning_rule_activation_created_at,\n earning_rule_activation_updated_at,\n dwh_updated_at \nFROM loyalty_stg__earning_rule_activation_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__loyalty_account": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__loyalty_account", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.sql", "unique_id": "model.yoda.analytics___loyalty_stg__loyalty_account", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_account", "analytics___loyalty_stg__loyalty_account"], "alias": "analytics___loyalty_stg__loyalty_account", "checksum": {"name": "sha256", "checksum": "248d3b80b6d591cd80dd77b4509eee27f99f1e1a49eaef4bf4532fe32fb44099"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "merchant_id", "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "loyalty_stg__loyalty_account", "columns": {"app_key": {"name": "app_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "merchant_id", "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "merchant_id", "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.1762702, "relation_name": "dev_dkruh1.analytics___loyalty_stg__loyalty_account", "raw_code": "WITH staging AS (\n\n SELECT * FROM {{ ref('loyalty_stg__yotpo_platform_accounts') }}\n\n), loyalty_stg__loyalty_account AS (\n\n SELECT app_key,\n merchant_id,\n org_key AS organization_key,\n TIMESTAMP(created_at) AS created_at,\n TIMESTAMP(updated_at) AS updated_at\n FROM staging\n\n)\n\nSELECT *\nFROM loyalty_stg__loyalty_account", "language": "sql", "refs": [{"name": "loyalty_stg__yotpo_platform_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__yotpo_platform_accounts"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.sql", "compiled": true, "compiled_code": "WITH staging AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__yotpo_platform_accounts\n\n), loyalty_stg__loyalty_account AS (\n\n SELECT app_key,\n merchant_id,\n org_key AS organization_key,\n TIMESTAMP(created_at) AS created_at,\n TIMESTAMP(updated_at) AS updated_at\n FROM staging\n\n)\n\nSELECT *\nFROM loyalty_stg__loyalty_account", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__loyalty_plan": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__loyalty_plan", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.sql", "unique_id": "model.yoda.analytics___loyalty_stg__loyalty_plan", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_plan", "analytics___loyalty_stg__loyalty_plan"], "alias": "analytics___loyalty_stg__loyalty_plan", "checksum": {"name": "sha256", "checksum": "b64d5c1ee75eecd3b929e14dc68c8b40c5727e11fb354d31b12938316d8d479e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Holds all Loyalty plans id and descriptions", "columns": {"plan_id": {"name": "plan_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "base_price_cents": {"name": "base_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "capped_amount_cents": {"name": "capped_amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "included_orders": {"name": "included_orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "per_order_price_cents": {"name": "per_order_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.2145612, "relation_name": "dev_dkruh1.analytics___loyalty_stg__loyalty_plan", "raw_code": "WITH import_loyalty_plans AS (\n\n SELECT * FROM {{ ref('loyalty_stg__plans') }}\n\n), loyalty_stg__loyalty_plan AS (\n\n SELECT \n id AS plan_id,\n name AS plan_name,\n base_price_cents,\n capped_amount_cents,\n included_orders,\n per_order_price_cents,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_loyalty_plans\n\n)\n\nSELECT \n plan_id,\n plan_name,\n base_price_cents,\n capped_amount_cents,\n included_orders,\n per_order_price_cents,\n dwh_updated_at\nFROM loyalty_stg__loyalty_plan", "language": "sql", "refs": [{"name": "loyalty_stg__plans", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__plans"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.sql", "compiled": true, "compiled_code": "WITH import_loyalty_plans AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__plans\n\n), loyalty_stg__loyalty_plan AS (\n\n SELECT \n id AS plan_id,\n name AS plan_name,\n base_price_cents,\n capped_amount_cents,\n included_orders,\n per_order_price_cents,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_loyalty_plans\n\n)\n\nSELECT \n plan_id,\n plan_name,\n base_price_cents,\n capped_amount_cents,\n included_orders,\n per_order_price_cents,\n dwh_updated_at\nFROM loyalty_stg__loyalty_plan", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__loyalty_subscription": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__loyalty_subscription", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.sql", "unique_id": "model.yoda.analytics___loyalty_stg__loyalty_subscription", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_subscription", "analytics___loyalty_stg__loyalty_subscription"], "alias": "analytics___loyalty_stg__loyalty_subscription", "checksum": {"name": "sha256", "checksum": "bcc777dc3d2f96c68880cee3cba804fcc9b1f948d31363e39b665fb620614e7f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Loyalty merchant subscription event", "columns": {"subscription_id": {"name": "subscription_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_id": {"name": "plan_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "base_price_cents": {"name": "base_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_provider": {"name": "billing_provider", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "included_orders": {"name": "included_orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_usage_charge_at": {"name": "last_usage_charge_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "per_order_price_cents": {"name": "per_order_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "percentage_of_redemptions": {"name": "percentage_of_redemptions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "percentage_of_referrals": {"name": "percentage_of_referrals", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_current": {"name": "is_current", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_overdue": {"name": "is_overdue", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_pending": {"name": "is_pending", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_was_current": {"name": "is_was_current", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "charge_status": {"name": "charge_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurring_charge_id": {"name": "recurring_charge_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manual_price_cents": {"name": "manual_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.2619078, "relation_name": "dev_dkruh1.analytics___loyalty_stg__loyalty_subscription", "raw_code": "WITH import_subscriptions AS (\n\n SELECT * FROM {{ ref('loyalty_stg__subscriptions') }}\n\n), loyalty_stg__loyalty_subscription AS (\n\n SELECT \n\tid AS subscription_id,\n\tmerchant_id,\n\tplan_id,\n base_price_cents,\n\tbilling_provider,\n\tincluded_orders,\n\tlast_usage_charge_at,\n\tper_order_price_cents,\n\tpercentage_of_redemptions,\n\tpercentage_of_referrals,\n\tcurrent AS is_current,\n\toverdue AS is_overdue,\n\tpending AS is_pending,\n\twas_current AS is_was_current,\n\tcharge_status,\n\trecurring_charge_id,\n\tmanual_price_cents,\n\tupdated_at,\n\tcreated_at,\n\tCURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_subscriptions\n\n)\n\nSELECT \n subscription_id,\n\tmerchant_id,\n\tplan_id,\n\tbase_price_cents,\n\tbilling_provider,\n\tincluded_orders,\n\tlast_usage_charge_at,\n\tper_order_price_cents,\n\tpercentage_of_redemptions,\n\tpercentage_of_referrals,\n\tis_current,\n\tis_overdue,\n\tis_pending,\n\tis_was_current,\n\tcharge_status,\n\trecurring_charge_id,\n\tmanual_price_cents,\n\tupdated_at,\n\tcreated_at,\n\tdwh_updated_at\nFROM loyalty_stg__loyalty_subscription", "language": "sql", "refs": [{"name": "loyalty_stg__subscriptions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__subscriptions"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.sql", "compiled": true, "compiled_code": "WITH import_subscriptions AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__subscriptions\n\n), loyalty_stg__loyalty_subscription AS (\n\n SELECT \n\tid AS subscription_id,\n\tmerchant_id,\n\tplan_id,\n base_price_cents,\n\tbilling_provider,\n\tincluded_orders,\n\tlast_usage_charge_at,\n\tper_order_price_cents,\n\tpercentage_of_redemptions,\n\tpercentage_of_referrals,\n\tcurrent AS is_current,\n\toverdue AS is_overdue,\n\tpending AS is_pending,\n\twas_current AS is_was_current,\n\tcharge_status,\n\trecurring_charge_id,\n\tmanual_price_cents,\n\tupdated_at,\n\tcreated_at,\n\tCURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_subscriptions\n\n)\n\nSELECT \n subscription_id,\n\tmerchant_id,\n\tplan_id,\n\tbase_price_cents,\n\tbilling_provider,\n\tincluded_orders,\n\tlast_usage_charge_at,\n\tper_order_price_cents,\n\tpercentage_of_redemptions,\n\tpercentage_of_referrals,\n\tis_current,\n\tis_overdue,\n\tis_pending,\n\tis_was_current,\n\tcharge_status,\n\trecurring_charge_id,\n\tmanual_price_cents,\n\tupdated_at,\n\tcreated_at,\n\tdwh_updated_at\nFROM loyalty_stg__loyalty_subscription", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__merchant": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__merchant", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.sql", "unique_id": "model.yoda.analytics___loyalty_stg__merchant", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__merchant", "analytics___loyalty_stg__merchant"], "alias": "analytics___loyalty_stg__merchant", "checksum": {"name": "sha256", "checksum": "388c941055128ecc20c456bb5c396f3c80c902c167657f09697152f04ed59b44"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "merchant_id", "foreign-keys": [{"foreign-key": "merchant_id", "ref-table": "loyalty_stg__loyalty_account", "ref-key": "merchant_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Modeled VIEW of merchant object", "columns": {"merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "company_name": {"name": "company_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_email": {"name": "from_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "logo_url": {"name": "logo_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_approved": {"name": "is_approved", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_widget_enabled": {"name": "is_widget_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_store": {"name": "has_store", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_rewards_installed": {"name": "is_rewards_installed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "installed_rewards_at": {"name": "installed_rewards_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "uninstalled_rewards_at": {"name": "uninstalled_rewards_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_analytics_installed": {"name": "is_analytics_installed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "installed_analytics_at": {"name": "installed_analytics_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "uninstalled_analytics_at": {"name": "uninstalled_analytics_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_completed_profile": {"name": "is_completed_profile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_redemptions_enabled": {"name": "is_redemptions_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "program_first_activated_date": {"name": "program_first_activated_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_shipping_included": {"name": "is_shipping_included", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_program_live": {"name": "is_program_live", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_cross_origin_store_accounts": {"name": "is_cross_origin_store_accounts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "install_order_volume": {"name": "install_order_volume", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "contact_email": {"name": "contact_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value_per_subscriber_cents": {"name": "value_per_subscriber_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_weekly_digest_enabled": {"name": "is_weekly_digest_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "free_trial_expires_at": {"name": "free_trial_expires_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_on_free_trial": {"name": "is_on_free_trial", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_program_locked": {"name": "is_program_locked", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free_products_enabled": {"name": "is_free_products_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "process_refund_status": {"name": "process_refund_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "process_order_status": {"name": "process_order_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_engine": {"name": "platform_engine", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_reminder_delay_days": {"name": "points_reminder_delay_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_setup_rewards_page": {"name": "is_setup_rewards_page", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sync_fields_with_processor": {"name": "is_sync_fields_with_processor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vip_tiers_job_running": {"name": "is_vip_tiers_job_running", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_can_generate_coupons": {"name": "is_can_generate_coupons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "referral_reminder_days": {"name": "referral_reminder_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "merchant_guid": {"name": "merchant_guid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_app_id": {"name": "facebook_app_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_completed_onboarding": {"name": "is_completed_onboarding", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_first_time_referral_discounts_enable_flag": {"name": "is_first_time_referral_discounts_enable_flag", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_code_based_referral_program_enabled": {"name": "is_discount_code_based_referral_program_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_verified_email_domain": {"name": "is_verified_email_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_dev_account": {"name": "is_dev_account", "description": "Store which were defined from the merchant end as a dev", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_test_account": {"name": "is_test_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "time_zone": {"name": "time_zone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_opt_in_strategy": {"name": "loyalty_opt_in_strategy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "referral_opt_in_strategy": {"name": "referral_opt_in_strategy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "round_discounts_strategy": {"name": "round_discounts_strategy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_delete_used_coupons_enable": {"name": "is_delete_used_coupons_enable", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_storefront_css_included": {"name": "is_storefront_css_included", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_created_at": {"name": "merchant_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_discount_stacking_order": {"name": "is_discount_stacking_order", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_stacking_product": {"name": "is_discount_stacking_product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_stacking_shipping": {"name": "is_discount_stacking_shipping", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "merchant_id", "foreign-keys": [{"foreign-key": "merchant_id", "ref-table": "loyalty_stg__loyalty_account", "ref-key": "merchant_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "merchant_id", "foreign-keys": [{"foreign-key": "merchant_id", "ref-table": "loyalty_stg__loyalty_account", "ref-key": "merchant_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.3300326, "relation_name": "dev_dkruh1.analytics___loyalty_stg__merchant", "raw_code": "WITH import_merchants AS (\n\n SELECT * FROM {{ ref('loyalty_stg__merchants') }}\n\n), loyalty_stg__merchant AS (\n\n SELECT id AS merchant_id,\n company_name,\n from_email,\n website,\n logo_url,\n currency,\n SMALLINT(is_approved) AS is_approved,\n SMALLINT(widget_enabled) AS is_widget_enabled,\n platform,\n has_store,\n SMALLINT(has_rewards_installed) AS is_rewards_installed,\n installed_rewards_at,\n uninstalled_rewards_at,\n SMALLINT(has_analytics_installed) AS is_analytics_installed,\n installed_analytics_at,\n uninstalled_analytics_at,\n SMALLINT(completed_profile) AS is_completed_profile,\n SMALLINT(swell_redemptions_enabled) AS is_redemptions_enabled,\n plan AS plan_name,\n CASE WHEN program_first_activated_at='1970-01-01' THEN NULL ELSE program_first_activated_at END AS program_first_activated_date,\n SMALLINT(include_shipping) AS is_shipping_included,\n SMALLINT(program_live) AS is_program_live,\n SMALLINT(cross_origin_store_accounts) AS is_cross_origin_store_accounts,\n INT(install_order_volume) AS install_order_volume,\n contact_email,\n INT(value_per_subscriber_cents) AS value_per_subscriber_cents,\n SMALLINT(weekly_digest_enabled) AS is_weekly_digest_enabled,\n free_trial_expires_at,\n SMALLINT(on_free_trial) AS is_on_free_trial,\n SMALLINT(program_locked) AS is_program_locked,\n SMALLINT(free_products_enabled) AS is_free_products_enabled,\n process_refund_status,\n process_order_status,\n platform_engine,\n INT(points_reminder_delay_days) AS points_reminder_delay_days,\n source,\n SMALLINT(setup_rewards_page) AS is_setup_rewards_page,\n SMALLINT(sync_fields_with_processor) AS is_sync_fields_with_processor,\n SMALLINT(vip_tiers_job_running) AS is_vip_tiers_job_running,\n SMALLINT(can_generate_coupons) AS is_can_generate_coupons,\n INT(referral_reminder_days) AS referral_reminder_days,\n guid AS merchant_guid,\n facebook_app_id,\n SMALLINT(completed_onboarding) AS is_completed_onboarding,\n SMALLINT(first_time_referral_discounts_enable_flag) AS is_first_time_referral_discounts_enable_flag,\n SMALLINT(discount_code_based_referral_program_enabled) AS is_discount_code_based_referral_program_enabled,\n SMALLINT(verified_email_domain) AS is_verified_email_domain,\n SMALLINT(CASE WHEN (LOWER(website) LIKE '%stg%'\n OR LOWER(website) LIKE '%staging%'\n OR LOWER(website) LIKE '%dev%'\n OR LOWER(website) LIKE '%sandbox%'\n OR LOWER(website) LIKE '%test%') THEN 1 ELSE 0 END) AS is_dev_account,\n SMALLINT(test_account) AS is_test_account,\n time_zone,\n INT(loyalty_opt_in_strategy) AS loyalty_opt_in_strategy,\n INT(referral_opt_in_strategy) AS referral_opt_in_strategy,\n INT(round_discounts_strategy) AS round_discounts_strategy,\n SMALLINT(delete_used_coupons_enable) AS is_delete_used_coupons_enable,\n SMALLINT(include_storefront_css) AS is_storefront_css_included,\n group_id,\n created_at AS merchant_created_at,\n updated_at,\n SMALLINT(discount_stacking_order) AS is_discount_stacking_order,\n SMALLINT(discount_stacking_product) AS is_discount_stacking_product,\n SMALLINT(discount_stacking_shipping) AS is_discount_stacking_shipping,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_merchants\n\n)\n\nSELECT \n merchant_id,\n company_name,\n from_email,\n website,\n logo_url,\n currency,\n is_approved,\n is_widget_enabled,\n platform,\n has_store,\n is_rewards_installed,\n installed_rewards_at,\n uninstalled_rewards_at,\n is_analytics_installed,\n installed_analytics_at,\n uninstalled_analytics_at,\n is_completed_profile,\n is_redemptions_enabled,\n plan_name,\n program_first_activated_date,\n is_shipping_included,\n is_program_live,\n is_cross_origin_store_accounts,\n install_order_volume,\n contact_email,\n value_per_subscriber_cents,\n is_weekly_digest_enabled,\n free_trial_expires_at,\n is_on_free_trial,\n is_program_locked,\n is_free_products_enabled,\n process_refund_status,\n process_order_status,\n platform_engine,\n points_reminder_delay_days,\n source,\n is_setup_rewards_page,\n is_sync_fields_with_processor,\n is_vip_tiers_job_running,\n is_can_generate_coupons,\n referral_reminder_days,\n merchant_guid,\n facebook_app_id,\n is_completed_onboarding,\n is_first_time_referral_discounts_enable_flag,\n is_discount_code_based_referral_program_enabled,\n is_verified_email_domain,\n is_dev_account,\n is_test_account,\n time_zone,\n loyalty_opt_in_strategy,\n referral_opt_in_strategy,\n round_discounts_strategy,\n is_delete_used_coupons_enable,\n is_storefront_css_included,\n group_id,\n merchant_created_at,\n updated_at,\n is_discount_stacking_order,\n is_discount_stacking_product,\n is_discount_stacking_shipping,\n dwh_updated_at\nFROM loyalty_stg__merchant", "language": "sql", "refs": [{"name": "loyalty_stg__merchants", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__merchants"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.sql", "compiled": true, "compiled_code": "WITH import_merchants AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__merchants\n\n), loyalty_stg__merchant AS (\n\n SELECT id AS merchant_id,\n company_name,\n from_email,\n website,\n logo_url,\n currency,\n SMALLINT(is_approved) AS is_approved,\n SMALLINT(widget_enabled) AS is_widget_enabled,\n platform,\n has_store,\n SMALLINT(has_rewards_installed) AS is_rewards_installed,\n installed_rewards_at,\n uninstalled_rewards_at,\n SMALLINT(has_analytics_installed) AS is_analytics_installed,\n installed_analytics_at,\n uninstalled_analytics_at,\n SMALLINT(completed_profile) AS is_completed_profile,\n SMALLINT(swell_redemptions_enabled) AS is_redemptions_enabled,\n plan AS plan_name,\n CASE WHEN program_first_activated_at='1970-01-01' THEN NULL ELSE program_first_activated_at END AS program_first_activated_date,\n SMALLINT(include_shipping) AS is_shipping_included,\n SMALLINT(program_live) AS is_program_live,\n SMALLINT(cross_origin_store_accounts) AS is_cross_origin_store_accounts,\n INT(install_order_volume) AS install_order_volume,\n contact_email,\n INT(value_per_subscriber_cents) AS value_per_subscriber_cents,\n SMALLINT(weekly_digest_enabled) AS is_weekly_digest_enabled,\n free_trial_expires_at,\n SMALLINT(on_free_trial) AS is_on_free_trial,\n SMALLINT(program_locked) AS is_program_locked,\n SMALLINT(free_products_enabled) AS is_free_products_enabled,\n process_refund_status,\n process_order_status,\n platform_engine,\n INT(points_reminder_delay_days) AS points_reminder_delay_days,\n source,\n SMALLINT(setup_rewards_page) AS is_setup_rewards_page,\n SMALLINT(sync_fields_with_processor) AS is_sync_fields_with_processor,\n SMALLINT(vip_tiers_job_running) AS is_vip_tiers_job_running,\n SMALLINT(can_generate_coupons) AS is_can_generate_coupons,\n INT(referral_reminder_days) AS referral_reminder_days,\n guid AS merchant_guid,\n facebook_app_id,\n SMALLINT(completed_onboarding) AS is_completed_onboarding,\n SMALLINT(first_time_referral_discounts_enable_flag) AS is_first_time_referral_discounts_enable_flag,\n SMALLINT(discount_code_based_referral_program_enabled) AS is_discount_code_based_referral_program_enabled,\n SMALLINT(verified_email_domain) AS is_verified_email_domain,\n SMALLINT(CASE WHEN (LOWER(website) LIKE '%stg%'\n OR LOWER(website) LIKE '%staging%'\n OR LOWER(website) LIKE '%dev%'\n OR LOWER(website) LIKE '%sandbox%'\n OR LOWER(website) LIKE '%test%') THEN 1 ELSE 0 END) AS is_dev_account,\n SMALLINT(test_account) AS is_test_account,\n time_zone,\n INT(loyalty_opt_in_strategy) AS loyalty_opt_in_strategy,\n INT(referral_opt_in_strategy) AS referral_opt_in_strategy,\n INT(round_discounts_strategy) AS round_discounts_strategy,\n SMALLINT(delete_used_coupons_enable) AS is_delete_used_coupons_enable,\n SMALLINT(include_storefront_css) AS is_storefront_css_included,\n group_id,\n created_at AS merchant_created_at,\n updated_at,\n SMALLINT(discount_stacking_order) AS is_discount_stacking_order,\n SMALLINT(discount_stacking_product) AS is_discount_stacking_product,\n SMALLINT(discount_stacking_shipping) AS is_discount_stacking_shipping,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_merchants\n\n)\n\nSELECT \n merchant_id,\n company_name,\n from_email,\n website,\n logo_url,\n currency,\n is_approved,\n is_widget_enabled,\n platform,\n has_store,\n is_rewards_installed,\n installed_rewards_at,\n uninstalled_rewards_at,\n is_analytics_installed,\n installed_analytics_at,\n uninstalled_analytics_at,\n is_completed_profile,\n is_redemptions_enabled,\n plan_name,\n program_first_activated_date,\n is_shipping_included,\n is_program_live,\n is_cross_origin_store_accounts,\n install_order_volume,\n contact_email,\n value_per_subscriber_cents,\n is_weekly_digest_enabled,\n free_trial_expires_at,\n is_on_free_trial,\n is_program_locked,\n is_free_products_enabled,\n process_refund_status,\n process_order_status,\n platform_engine,\n points_reminder_delay_days,\n source,\n is_setup_rewards_page,\n is_sync_fields_with_processor,\n is_vip_tiers_job_running,\n is_can_generate_coupons,\n referral_reminder_days,\n merchant_guid,\n facebook_app_id,\n is_completed_onboarding,\n is_first_time_referral_discounts_enable_flag,\n is_discount_code_based_referral_program_enabled,\n is_verified_email_domain,\n is_dev_account,\n is_test_account,\n time_zone,\n loyalty_opt_in_strategy,\n referral_opt_in_strategy,\n round_discounts_strategy,\n is_delete_used_coupons_enable,\n is_storefront_css_included,\n group_id,\n merchant_created_at,\n updated_at,\n is_discount_stacking_order,\n is_discount_stacking_product,\n is_discount_stacking_shipping,\n dwh_updated_at\nFROM loyalty_stg__merchant", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__merchant_segment_event_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.sql", "unique_id": "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__merchant_segment_event_over_time", "analytics___loyalty_stg__merchant_segment_event_over_time"], "alias": "analytics___loyalty_stg__merchant_segment_event_over_time", "checksum": {"name": "sha256", "checksum": "62e47823a88af49037a9979a49f936a3949e7471b2b8a54c91c67232a1677f23"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Loyalty segment events over time by merchant_id", "columns": {"merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_type": {"name": "event_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_time": {"name": "from_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.356057, "relation_name": "dev_dkruh1.analytics___loyalty_stg__merchant_segment_event_over_time", "raw_code": "-- Import --\n\nWITH import_segment_loyalty_install AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__segment_install_event_details') }}\n\n), import_segment_loyalty_uninstall AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__segment_uninstall') }}\n\n),\n\n-- Logic --\n\nall_merchant_events AS (\n\n SELECT \n merchant_id,\n 'install' AS event_type,\n install_at AS event_start_at\n FROM import_segment_loyalty_install\n UNION ALL\n SELECT\n merchant_id,\n 'uninstall' AS event_type,\n uninstall_at AS event_start_at\n FROM import_segment_loyalty_uninstall\n\n),\n\nmerchant_segment_event_over_time_final AS (\n\n SELECT \n merchant_id,\n event_type,\n event_start_at AS from_time,\n TIMESTAMP(COALESCE(LEAD(event_start_at) OVER (PARTITION BY merchant_id ORDER BY event_start_at), '2999-12-31')) AS to_time,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM all_merchant_events\n)\n\n-- Result --\n\nSELECT \n merchant_id,\n event_type,\n from_time,\n to_time,\n dwh_updated_at\nFROM merchant_segment_event_over_time_final", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__segment_install_event_details", "package": null, "version": null}, {"name": "analytics___loyalty_stg__segment_uninstall", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty_stg__segment_install_event_details", "model.yoda.analytics___loyalty_stg__segment_uninstall"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_segment_loyalty_install AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__segment_install_event_details\n\n), import_segment_loyalty_uninstall AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__segment_uninstall\n\n),\n\n-- Logic --\n\nall_merchant_events AS (\n\n SELECT \n merchant_id,\n 'install' AS event_type,\n install_at AS event_start_at\n FROM import_segment_loyalty_install\n UNION ALL\n SELECT\n merchant_id,\n 'uninstall' AS event_type,\n uninstall_at AS event_start_at\n FROM import_segment_loyalty_uninstall\n\n),\n\nmerchant_segment_event_over_time_final AS (\n\n SELECT \n merchant_id,\n event_type,\n event_start_at AS from_time,\n TIMESTAMP(COALESCE(LEAD(event_start_at) OVER (PARTITION BY merchant_id ORDER BY event_start_at), '2999-12-31')) AS to_time,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM all_merchant_events\n)\n\n-- Result --\n\nSELECT \n merchant_id,\n event_type,\n from_time,\n to_time,\n dwh_updated_at\nFROM merchant_segment_event_over_time_final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__perk": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__perk", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.sql", "unique_id": "model.yoda.analytics___loyalty_stg__perk", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__perk", "analytics___loyalty_stg__perk"], "alias": "analytics___loyalty_stg__perk", "checksum": {"name": "sha256", "checksum": "e69baa9ebc5f9759001e0fae4c37b623152802d50690f5c2f171ebf3a10a6122"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Holds all campaign perks which were generated", "columns": {"perk_id": {"name": "perk_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "earning_rule_id": {"name": "earning_rule_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_awarded": {"name": "is_awarded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_admin_only": {"name": "is_admin_only", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "awarded_at": {"name": "awarded_at", "description": "Timestamp in which the perk was awarded at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.3994656, "relation_name": "dev_dkruh1.analytics___loyalty_stg__perk", "raw_code": "WITH import_perks AS (\n\n SELECT * FROM {{ ref('loyalty_stg__perks') }}\n\n), loyalty_stg__perk AS (\n\n SELECT\n id AS perk_id,\n campaign_id AS earning_rule_id,\n customer_id,\n merchant_id,\n redemption_option_id,\n SMALLINT(awarded) AS is_awarded,\n SMALLINT(admin_only) AS is_admin_only,\n created_at,\n updated_at,\n awarded_at\n FROM import_perks\n\n)\n\nSELECT *\nFROM loyalty_stg__perk", "language": "sql", "refs": [{"name": "loyalty_stg__perks", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__perks"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.sql", "compiled": true, "compiled_code": "WITH import_perks AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__perks\n\n), loyalty_stg__perk AS (\n\n SELECT\n id AS perk_id,\n campaign_id AS earning_rule_id,\n customer_id,\n merchant_id,\n redemption_option_id,\n SMALLINT(awarded) AS is_awarded,\n SMALLINT(admin_only) AS is_admin_only,\n created_at,\n updated_at,\n awarded_at\n FROM import_perks\n\n)\n\nSELECT *\nFROM loyalty_stg__perk", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__point_expiration_policy_settings", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.sql", "unique_id": "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__point_expiration_policy_settings", "analytics___loyalty_stg__point_expiration_policy_settings"], "alias": "analytics___loyalty_stg__point_expiration_policy_settings", "checksum": {"name": "sha256", "checksum": "c04ab3bf964715eba0bf10c7cfa3aa432ad7d232d53d78cfea74df59d5350291"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Modeled view over loyalty_stg__config_item \nPK: merchant_group_id", "columns": {"merchant_group_id": {"name": "merchant_group_id", "description": "PK: in source table called tenant_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expiration_policy_type": {"name": "expiration_policy_type", "description": "expiration policy type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "retention_period_in_days": {"name": "retention_period_in_days", "description": "retention period days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "row last update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "row creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082643.4328594, "relation_name": "dev_dkruh1.analytics___loyalty_stg__point_expiration_policy_settings", "raw_code": "-- Import --\n\nWITH import_config_item AS (\nSELECT * FROM {{ ref('loyalty_stg__config_item') }}\n), \n\n-- Logic --\n\nmodel_config_item AS (\nSELECT \n tenant_id AS merchant_group_id,\n GET_JSON_OBJECT(data, '$.expiryType') AS expiration_policy_type,\n INT(GET_JSON_OBJECT(data, '$.retentionPeriodDays')) AS retention_period_in_days,\n TIMESTAMP(updated_at) AS updated_at,\n TIMESTAMP(created_at) AS created_at\nFROM import_config_item\n)\n\n-- Result --\n\nSELECT * \nFROM model_config_item", "language": "sql", "refs": [{"name": "loyalty_stg__config_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__config_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_config_item AS (\nSELECT * FROM dev_dkruh1.loyalty_stg__config_item\n), \n\n-- Logic --\n\nmodel_config_item AS (\nSELECT \n tenant_id AS merchant_group_id,\n GET_JSON_OBJECT(data, '$.expiryType') AS expiration_policy_type,\n INT(GET_JSON_OBJECT(data, '$.retentionPeriodDays')) AS retention_period_in_days,\n TIMESTAMP(updated_at) AS updated_at,\n TIMESTAMP(created_at) AS created_at\nFROM import_config_item\n)\n\n-- Result --\n\nSELECT * \nFROM model_config_item", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.sql", "unique_id": "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "analytics___loyalty_stg__point_expiration_policy_settings_snapshot"], "alias": "analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "checksum": {"name": "sha256", "checksum": "3aac2417f6d39b7f6967bfd7f7fcf91c4e362fab3081d38a4b72d3276a028a5a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Snapshot table on analytics___loyalty_stg__point_expiration_policy_settings. \ntracking changes in fields: expiration_type | retention_period_in_days", "columns": {"merchant_group_id": {"name": "merchant_group_id", "description": "PK: in source table called tenant_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expiration_policy_type": {"name": "expiration_policy_type", "description": "expiration policy type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "retention_period_in_days": {"name": "retention_period_in_days", "description": "retention period days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "field change timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "snapshot timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "materialized": "incremental", "incremental_strategy": "append"}, "created_at": 1700082643.4662971, "relation_name": "dev_dkruh1.analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "raw_code": "{{\nanalytics_snapshot_scd(\n source_model = 'analytics___loyalty_stg__point_expiration_policy_settings',\n unique_key = ['merchant_group_id'],\n tracked_columns = ['expiration_policy_type','retention_period_in_days'],\n updated_at = 'updated_at'\n )\n}}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__point_expiration_policy_settings", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_snapshot_scd", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.sql", "compiled": true, "compiled_code": "\n\n WITH \n \n\n incremental_calculation AS (\n SELECT \n source_table.merchant_group_id, source_table.expiration_policy_type, source_table.retention_period_in_days, source_table.updated_at, \n 1 AS is_new_update\n FROM dev_dkruh1.analytics___loyalty_stg__point_expiration_policy_settings AS source_table\n )\n\n SELECT\n merchant_group_id, expiration_policy_type, retention_period_in_days, updated_at AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM incremental_calculation\n WHERE is_new_update = 1\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__point_redemption": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__point_redemption", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.sql", "unique_id": "model.yoda.analytics___loyalty_stg__point_redemption", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__point_redemption", "analytics___loyalty_stg__point_redemption"], "alias": "analytics___loyalty_stg__point_redemption", "checksum": {"name": "sha256", "checksum": "7403eec61423dba5a3643177000c24562d9ec8db9e5ca2c80f11a3b47a62e134"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "loyalty_stg__point_redemption", "columns": {"point_redemption_id": {"name": "point_redemption_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_redeemed": {"name": "amount_redeemed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refunded_amount": {"name": "refunded_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "point_redemption_currency": {"name": "point_redemption_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_redeemed_usd": {"name": "amount_redeemed_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "perk_id": {"name": "perk_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_checkout": {"name": "is_checkout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_admin": {"name": "is_admin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_approved": {"name": "is_approved", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_pos": {"name": "is_pos", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_visible": {"name": "is_visible", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reversed": {"name": "is_reversed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "reward_title": {"name": "reward_title", "description": "Describes the reward conditions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_text": {"name": "reward_text", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "point_transactions": {"name": "point_transactions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "point_redemption_date": {"name": "point_redemption_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "redemption_source": {"name": "redemption_source", "description": "The source where the redemption was made", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "approved_at": {"name": "approved_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.5024948, "relation_name": "dev_dkruh1.analytics___loyalty_stg__point_redemption", "raw_code": "WITH import_point_redemptions AS (\n\n SELECT * FROM {{ ref('loyalty_stg__point_redemptions') }}\n\n), \n\nimport_currency_rates AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__currency_exchange_rate') }}\n),\n\nloyalty_stg__point_redemption AS (\n\n SELECT \n point.id AS point_redemption_id,\n point.amount AS amount_redeemed,\n point.refunded_amount,\n point.currency AS point_redemption_currency,\n (point.amount / currency_rates.conversion_rate) AS amount_redeemed_usd,\n point.merchant_id,\n point.customer_id,\n point.redemption_option_id,\n point.referral_id,\n point.perk_id,\n SMALLINT(point.at_checkout) AS is_checkout,\n SMALLINT(point.is_admin) AS is_admin,\n SMALLINT(point.approved) AS is_approved,\n SMALLINT(point.is_pos) AS is_pos,\n SMALLINT(point.visible) AS is_visible,\n SMALLINT(point.deleted) AS is_deleted,\n SMALLINT(point.reversed) AS is_reversed,\n NULLIF(reward_title,'') AS reward_title,\n NULLIF(reward_text,'') AS reward_text,\n NULLIF(point_transactions,'') AS point_transactions,\n DATE(point.created_at) AS point_redemption_date,\n point.redemption_source,\n point.created_at,\n point.updated_at,\n point.approved_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_point_redemptions AS point\n LEFT JOIN import_currency_rates AS currency_rates\n ON DATE(point.created_at) = currency_rates.currency_exchange_date\n AND point.currency = currency_rates.to_currency_symbol\n)\n\nSELECT \n point_redemption_id,\n amount_redeemed,\n refunded_amount,\n point_redemption_currency,\n amount_redeemed_usd,\n merchant_id,\n customer_id,\n redemption_option_id,\n referral_id,\n perk_id,\n is_checkout,\n is_admin,\n is_approved,\n is_pos,\n is_visible,\n is_deleted,\n is_reversed,\n reward_title,\n reward_text,\n point_transactions,\n point_redemption_date,\n redemption_source,\n created_at,\n updated_at,\n approved_at,\n dwh_updated_at \nFROM loyalty_stg__point_redemption", "language": "sql", "refs": [{"name": "loyalty_stg__point_redemptions", "package": null, "version": null}, {"name": "analytics___platform_stg__currency_exchange_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__point_redemptions", "model.yoda.analytics___platform_stg__currency_exchange_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.sql", "compiled": true, "compiled_code": "WITH import_point_redemptions AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__point_redemptions\n\n), \n\nimport_currency_rates AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__currency_exchange_rate\n),\n\nloyalty_stg__point_redemption AS (\n\n SELECT \n point.id AS point_redemption_id,\n point.amount AS amount_redeemed,\n point.refunded_amount,\n point.currency AS point_redemption_currency,\n (point.amount / currency_rates.conversion_rate) AS amount_redeemed_usd,\n point.merchant_id,\n point.customer_id,\n point.redemption_option_id,\n point.referral_id,\n point.perk_id,\n SMALLINT(point.at_checkout) AS is_checkout,\n SMALLINT(point.is_admin) AS is_admin,\n SMALLINT(point.approved) AS is_approved,\n SMALLINT(point.is_pos) AS is_pos,\n SMALLINT(point.visible) AS is_visible,\n SMALLINT(point.deleted) AS is_deleted,\n SMALLINT(point.reversed) AS is_reversed,\n NULLIF(reward_title,'') AS reward_title,\n NULLIF(reward_text,'') AS reward_text,\n NULLIF(point_transactions,'') AS point_transactions,\n DATE(point.created_at) AS point_redemption_date,\n point.redemption_source,\n point.created_at,\n point.updated_at,\n point.approved_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_point_redemptions AS point\n LEFT JOIN import_currency_rates AS currency_rates\n ON DATE(point.created_at) = currency_rates.currency_exchange_date\n AND point.currency = currency_rates.to_currency_symbol\n)\n\nSELECT \n point_redemption_id,\n amount_redeemed,\n refunded_amount,\n point_redemption_currency,\n amount_redeemed_usd,\n merchant_id,\n customer_id,\n redemption_option_id,\n referral_id,\n perk_id,\n is_checkout,\n is_admin,\n is_approved,\n is_pos,\n is_visible,\n is_deleted,\n is_reversed,\n reward_title,\n reward_text,\n point_transactions,\n point_redemption_date,\n redemption_source,\n created_at,\n updated_at,\n approved_at,\n dwh_updated_at \nFROM loyalty_stg__point_redemption", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__processor": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__processor", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.sql", "unique_id": "model.yoda.analytics___loyalty_stg__processor", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__processor", "analytics___loyalty_stg__processor"], "alias": "analytics___loyalty_stg__processor", "checksum": {"name": "sha256", "checksum": "7cd0b80ea8eab7a1813dbfc045e334038b3bdb95f9f0c8ff5a619b39d6e28c9c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "Modeled mart compatible for store orders processors", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nshteinberg@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082643.5348015, "relation_name": "dev_dkruh1.analytics___loyalty_stg__processor", "raw_code": "WITH import_processors AS (\n\n SELECT * FROM {{ ref('loyalty_stg__processors') }}\n\n), loyalty__purchases_processors AS (\n\n SELECT\n id,\n type\n FROM import_processors\n\n)\n\nSELECT *\nFROM loyalty__purchases_processors", "language": "sql", "refs": [{"name": "loyalty_stg__processors", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__processors"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.sql", "compiled": true, "compiled_code": "WITH import_processors AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__processors\n\n), loyalty__purchases_processors AS (\n\n SELECT\n id,\n type\n FROM import_processors\n\n)\n\nSELECT *\nFROM loyalty__purchases_processors", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__purchase": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__purchase", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.sql", "unique_id": "model.yoda.analytics___loyalty_stg__purchase", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__purchase", "analytics___loyalty_stg__purchase"], "alias": "analytics___loyalty_stg__purchase", "checksum": {"name": "sha256", "checksum": "9cc8bbcd1b03e240446335913ae861884db5a1040bf2d110169f640dd8527343"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "All merchant orders from the Loyalty product schema", "columns": {"purchase_id": {"name": "purchase_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_at": {"name": "purchase_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "purchase_date": {"name": "purchase_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "amount_cents": {"name": "amount_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_currency": {"name": "purchase_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_amount_in_cents": {"name": "discount_amount_in_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_discount_code_id": {"name": "referral_discount_code_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "The unique external id for the order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processor_id": {"name": "processor_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent_id": {"name": "user_agent_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_code_id": {"name": "redemption_code_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_before_swell_acquisition": {"name": "is_before_swell_acquisition", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_applied_to_campaigns": {"name": "is_applied_to_campaigns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_fraud_review": {"name": "is_fraud_review", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_swell_user": {"name": "is_swell_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_move_merchant_to_new_tier": {"name": "is_move_merchant_to_new_tier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_refunded": {"name": "is_refunded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "billing_country_code": {"name": "billing_country_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_city": {"name": "billing_city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_country_code": {"name": "shipping_country_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_city": {"name": "shipping_city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_ip_address": {"name": "customer_ip_address", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "browser_country_code": {"name": "browser_country_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_address": {"name": "store_address", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_city": {"name": "store_city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_state": {"name": "store_state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.5848584, "relation_name": "dev_dkruh1.analytics___loyalty_stg__purchase", "raw_code": "WITH import_purchases AS (\n\n SELECT * FROM {{ ref('loyalty_stg__purchases') }}\n\n ), loyalty_stg__purchase AS (\n\n SELECT \n id AS purchase_id,\n created_at AS purchase_at,\n DATE(created_at) AS purchase_date,\n amount_cents,\n currency AS purchase_currency,\n swell_discount_cost_cents AS discount_amount_in_cents,\n referral_discount_code_id,\n order_id,\n processor_id,\n merchant_id,\n customer_id,\n referral_id,\n user_agent_id,\n redemption_code_id,\n SMALLINT(before_swellrewards) AS is_before_swell_acquisition,\n SMALLINT(applied_to_campaigns) AS is_applied_to_campaigns,\n SMALLINT(fraud_review) AS is_fraud_review,\n SMALLINT(has_swell_user) AS is_swell_user,\n SMALLINT(eligible_for_vip_tiers) AS is_move_merchant_to_new_tier,\n SMALLINT(is_refunded) AS is_refunded,\n billing_country_code,\n billing_city,\n shipping_country_code,\n shipping_city,\n ip_address AS customer_ip_address,\n browser_country_code,\n store_address,\n store_city,\n store_state, \n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_purchases\n\n)\n\nSELECT *\nFROM loyalty_stg__purchase", "language": "sql", "refs": [{"name": "loyalty_stg__purchases", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__purchases"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.sql", "compiled": true, "compiled_code": "WITH import_purchases AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__purchases\n\n ), loyalty_stg__purchase AS (\n\n SELECT \n id AS purchase_id,\n created_at AS purchase_at,\n DATE(created_at) AS purchase_date,\n amount_cents,\n currency AS purchase_currency,\n swell_discount_cost_cents AS discount_amount_in_cents,\n referral_discount_code_id,\n order_id,\n processor_id,\n merchant_id,\n customer_id,\n referral_id,\n user_agent_id,\n redemption_code_id,\n SMALLINT(before_swellrewards) AS is_before_swell_acquisition,\n SMALLINT(applied_to_campaigns) AS is_applied_to_campaigns,\n SMALLINT(fraud_review) AS is_fraud_review,\n SMALLINT(has_swell_user) AS is_swell_user,\n SMALLINT(eligible_for_vip_tiers) AS is_move_merchant_to_new_tier,\n SMALLINT(is_refunded) AS is_refunded,\n billing_country_code,\n billing_city,\n shipping_country_code,\n shipping_city,\n ip_address AS customer_ip_address,\n browser_country_code,\n store_address,\n store_city,\n store_state, \n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_purchases\n\n)\n\nSELECT *\nFROM loyalty_stg__purchase", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__purchase_redemption": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__purchase_redemption", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.sql", "unique_id": "model.yoda.analytics___loyalty_stg__purchase_redemption", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__purchase_redemption", "analytics___loyalty_stg__purchase_redemption"], "alias": "analytics___loyalty_stg__purchase_redemption", "checksum": {"name": "sha256", "checksum": "ed7d420998f1c6447faf376c2e6269611fd64b5c78ebdf708135eff7ac5fde62"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "This table links between the redemption_id and the puechase_id", "columns": {"purchase_redemption_id": {"name": "purchase_redemption_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_id": {"name": "redemption_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.6170175, "relation_name": "dev_dkruh1.analytics___loyalty_stg__purchase_redemption", "raw_code": "WITH import_purchases_redemptions AS (\n\n SELECT * FROM {{ ref('loyalty_stg__purchases_redemptions') }}\n\n), loyalty_stg__purchase_redemption AS (\n\n SELECT \n id AS purchase_redemption_id,\n purchase_id,\n redemption_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_purchases_redemptions\n\n)\n\nSELECT \n purchase_redemption_id,\n purchase_id,\n redemption_id,\n dwh_updated_at\nFROM loyalty_stg__purchase_redemption", "language": "sql", "refs": [{"name": "loyalty_stg__purchases_redemptions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__purchases_redemptions"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.sql", "compiled": true, "compiled_code": "WITH import_purchases_redemptions AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__purchases_redemptions\n\n), loyalty_stg__purchase_redemption AS (\n\n SELECT \n id AS purchase_redemption_id,\n purchase_id,\n redemption_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_purchases_redemptions\n\n)\n\nSELECT \n purchase_redemption_id,\n purchase_id,\n redemption_id,\n dwh_updated_at\nFROM loyalty_stg__purchase_redemption", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__redemption_code": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__redemption_code", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.sql", "unique_id": "model.yoda.analytics___loyalty_stg__redemption_code", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__redemption_code", "analytics___loyalty_stg__redemption_code"], "alias": "analytics___loyalty_stg__redemption_code", "checksum": {"name": "sha256", "checksum": "89c6187ce9c6c66be982a1e09bb8b0ff6e3dabe54496cbd5ee8f69652a368fc0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "All the redempation codes generated with the actual coupon_code", "columns": {"redemption_code_id": {"name": "redemption_code_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "coupon_code": {"name": "coupon_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_used_cents": {"name": "amount_used_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "point_redemption_id": {"name": "point_redemption_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "The unique discount id on the platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "third_party_rule_id": {"name": "third_party_rule_id", "description": "The type of platform redemption (like redemption option)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_used": {"name": "is_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_uses": {"name": "is_uses", "description": "Indication for purchase made with the specific coupon code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.653265, "relation_name": "dev_dkruh1.analytics___loyalty_stg__redemption_code", "raw_code": "WITH import_redemption_codes AS (\n\n SELECT * FROM {{ ref('loyalty_stg__redemption_codes') }}\n\n), loyalty_stg__redemption_code AS (\n\n SELECT \n id AS redemption_code_id,\n code AS coupon_code,\n amount_used_cents,\n merchant_id,\n redemption_option_id,\n point_redemption_id,\n third_party_id,\n third_party_rule_id,\n SMALLINT(used) AS is_used,\n SMALLINT(uses) AS is_uses,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_redemption_codes\n\n)\n\nSELECT \n redemption_code_id,\n coupon_code,\n amount_used_cents,\n merchant_id,\n redemption_option_id,\n point_redemption_id,\n third_party_id,\n third_party_rule_id,\n is_used,\n is_uses,\n dwh_updated_at\nFROM loyalty_stg__redemption_code", "language": "sql", "refs": [{"name": "loyalty_stg__redemption_codes", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__redemption_codes"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.sql", "compiled": true, "compiled_code": "WITH import_redemption_codes AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__redemption_codes\n\n), loyalty_stg__redemption_code AS (\n\n SELECT \n id AS redemption_code_id,\n code AS coupon_code,\n amount_used_cents,\n merchant_id,\n redemption_option_id,\n point_redemption_id,\n third_party_id,\n third_party_rule_id,\n SMALLINT(used) AS is_used,\n SMALLINT(uses) AS is_uses,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_redemption_codes\n\n)\n\nSELECT \n redemption_code_id,\n coupon_code,\n amount_used_cents,\n merchant_id,\n redemption_option_id,\n point_redemption_id,\n third_party_id,\n third_party_rule_id,\n is_used,\n is_uses,\n dwh_updated_at\nFROM loyalty_stg__redemption_code", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__redemption_option": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__redemption_option", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.sql", "unique_id": "model.yoda.analytics___loyalty_stg__redemption_option", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__redemption_option", "analytics___loyalty_stg__redemption_option"], "alias": "analytics___loyalty_stg__redemption_option", "checksum": {"name": "sha256", "checksum": "b537da3c1f92a60bf8a9e7c0b90cecb7c592f4d9d9f796e78921ec240c532e22"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "loyalty_stg__redemption_option", "columns": {"redemption_option_id": {"name": "redemption_option_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_method": {"name": "redemption_method", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_currency": {"name": "redemption_option_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_usd": {"name": "amount_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_type": {"name": "discount_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_amount_cents": {"name": "discount_amount_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_percentage": {"name": "discount_percentage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_rate_cents": {"name": "discount_rate_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "applies_to_id": {"name": "applies_to_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_product_type": {"name": "applies_to_product_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_pos": {"name": "is_pos", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_applies_once": {"name": "is_applies_once", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_display_in_popup": {"name": "is_display_in_popup", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "redemption_condition": {"name": "redemption_condition", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.6946816, "relation_name": "dev_dkruh1.analytics___loyalty_stg__redemption_option", "raw_code": "WITH import_redemption_options AS (\n\n SELECT * FROM {{ ref('loyalty_stg__redemption_options') }}\n\n),\n\nimport_currency_rates AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__currency_exchange_rate') }}\n),\n\n loyalty_stg__redemption_option AS (\n\n SELECT \n option.id AS redemption_option_id,\n option.merchant_id,\n option.type AS redemption_method,\n option.amount,\n option.currency AS redemption_option_currency,\n (option.amount / currency_rates.conversion_rate) AS amount_usd,\n option.discount_type,\n option.discount_amount_cents,\n option.discount_percentage,\n option.discount_rate_cents,\n option.applies_to_id,\n option.applies_to_product_type,\n SMALLINT(option.is_pos) AS is_pos,\n SMALLINT(option.deleted) AS is_deleted,\n SMALLINT(option.applies_once) AS is_applies_once,\n SMALLINT(option.display_in_popup) AS is_display_in_popup,\n option.description AS redemption_condition,\n created_at,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_redemption_options AS option\n LEFT JOIN import_currency_rates AS currency_rates\n ON DATE(option.created_at) = currency_rates.currency_exchange_date\n AND option.currency = currency_rates.to_currency_symbol\n\n)\n\nSELECT *\nFROM loyalty_stg__redemption_option", "language": "sql", "refs": [{"name": "loyalty_stg__redemption_options", "package": null, "version": null}, {"name": "analytics___platform_stg__currency_exchange_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__redemption_options", "model.yoda.analytics___platform_stg__currency_exchange_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.sql", "compiled": true, "compiled_code": "WITH import_redemption_options AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__redemption_options\n\n),\n\nimport_currency_rates AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__currency_exchange_rate\n),\n\n loyalty_stg__redemption_option AS (\n\n SELECT \n option.id AS redemption_option_id,\n option.merchant_id,\n option.type AS redemption_method,\n option.amount,\n option.currency AS redemption_option_currency,\n (option.amount / currency_rates.conversion_rate) AS amount_usd,\n option.discount_type,\n option.discount_amount_cents,\n option.discount_percentage,\n option.discount_rate_cents,\n option.applies_to_id,\n option.applies_to_product_type,\n SMALLINT(option.is_pos) AS is_pos,\n SMALLINT(option.deleted) AS is_deleted,\n SMALLINT(option.applies_once) AS is_applies_once,\n SMALLINT(option.display_in_popup) AS is_display_in_popup,\n option.description AS redemption_condition,\n created_at,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_redemption_options AS option\n LEFT JOIN import_currency_rates AS currency_rates\n ON DATE(option.created_at) = currency_rates.currency_exchange_date\n AND option.currency = currency_rates.to_currency_symbol\n\n)\n\nSELECT *\nFROM loyalty_stg__redemption_option", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__segment_install_event_details": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__segment_install_event_details", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.sql", "unique_id": "model.yoda.analytics___loyalty_stg__segment_install_event_details", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__segment_install_event_details", "analytics___loyalty_stg__segment_install_event_details"], "alias": "analytics___loyalty_stg__segment_install_event_details", "checksum": {"name": "sha256", "checksum": "83da38835899a166633fdb9b0dff80aa854ac318358c08e02922c3738e09533e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "TODO: Update Table Description", "columns": {"merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "install_at": {"name": "install_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.7303402, "relation_name": "dev_dkruh1.analytics___loyalty_stg__segment_install_event_details", "raw_code": "WITH import_segment_loyalty_install AS (\n\n SELECT * FROM {{ ref('loyalty_stg__install_loyalty') }}\n\n), loyalty_stg__segment_install_event_details AS (\n\n SELECT \n merchant_id,\n partition_date,\n timestamp AS install_at,\n user_id,\n appkey,\n package,\n platform,\n product,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_segment_loyalty_install\n\n)\n\nSELECT \n merchant_id,\n partition_date,\n install_at,\n user_id,\n appkey,\n package,\n platform,\n product,\n dwh_updated_at\nFROM loyalty_stg__segment_install_event_details", "language": "sql", "refs": [{"name": "loyalty_stg__install_loyalty", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__install_loyalty"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.sql", "compiled": true, "compiled_code": "WITH import_segment_loyalty_install AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__install_loyalty\n\n), loyalty_stg__segment_install_event_details AS (\n\n SELECT \n merchant_id,\n partition_date,\n timestamp AS install_at,\n user_id,\n appkey,\n package,\n platform,\n product,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_segment_loyalty_install\n\n)\n\nSELECT \n merchant_id,\n partition_date,\n install_at,\n user_id,\n appkey,\n package,\n platform,\n product,\n dwh_updated_at\nFROM loyalty_stg__segment_install_event_details", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__segment_uninstall": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__segment_uninstall", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.sql", "unique_id": "model.yoda.analytics___loyalty_stg__segment_uninstall", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__segment_uninstall", "analytics___loyalty_stg__segment_uninstall"], "alias": "analytics___loyalty_stg__segment_uninstall", "checksum": {"name": "sha256", "checksum": "fc3a15401833a8662b0038193571322c4628d7b3a4c4a019d1317741962999f9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Uninstalled events as they were sent to segment", "columns": {"merchant_id": {"name": "merchant_id", "description": "merchant id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "uninstall_at": {"name": "uninstall_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.7607226, "relation_name": "dev_dkruh1.analytics___loyalty_stg__segment_uninstall", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH base_uninstall_loyalty AS (\n\n SELECT * FROM {{ ref('loyalty_stg__uninstall_loyalty') }}\n\n), loyalty_stg__segment_uninstall AS (\n\n SELECT \n merchant_id,\n partition_date,\n timestamp AS uninstall_at,\n user_id,\n appkey, \n package,\n platform, \n product,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM base_uninstall_loyalty\n)\n\nSELECT \n merchant_id,\n partition_date,\n uninstall_at,\n user_id,\n appkey, \n package,\n platform, \n product,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM loyalty_stg__segment_uninstall", "language": "sql", "refs": [{"name": "loyalty_stg__uninstall_loyalty", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__uninstall_loyalty"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH base_uninstall_loyalty AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__uninstall_loyalty\n\n), loyalty_stg__segment_uninstall AS (\n\n SELECT \n merchant_id,\n partition_date,\n timestamp AS uninstall_at,\n user_id,\n appkey, \n package,\n platform, \n product,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM base_uninstall_loyalty\n)\n\nSELECT \n merchant_id,\n partition_date,\n uninstall_at,\n user_id,\n appkey, \n package,\n platform, \n product,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM loyalty_stg__segment_uninstall", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__swell_referral_codes": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__swell_referral_codes", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.sql", "unique_id": "model.yoda.analytics___loyalty_stg__swell_referral_codes", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__swell_referral_codes", "analytics___loyalty_stg__swell_referral_codes"], "alias": "analytics___loyalty_stg__swell_referral_codes", "checksum": {"name": "sha256", "checksum": "d8e57e7a4280da7e9f9c8f59583ffdd871447973c2fe22d5b827684b05dfa18f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "referral_code_id", "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "Loyalty referral codes that generates for a customer to refer another customer", "columns": {"referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code": {"name": "referral_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicks": {"name": "clicks", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shares": {"name": "shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id__dim_stores": {"name": "merchant_id__dim_stores", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id__swell_campaigns": {"name": "campaign_id__swell_campaigns", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "referral_code_id", "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "referral_code_id", "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.7796352, "relation_name": "dev_dkruh1.analytics___loyalty_stg__swell_referral_codes", "raw_code": "WITH staging AS (\n\n SELECT * FROM {{ ref('loyalty_stg__referral_codes') }}\n\n ), loyalty_stg__swell_referral_codes AS (\n\n SELECT id AS referral_code_id,\n code AS referral_code,\n clicks,\n shares,\n orders,\n amount_cents,\n merchant_id AS merchant_id__dim_stores,\n campaign_id AS campaign_id__swell_campaigns,\n TIMESTAMP(created_at) AS created_at,\n TIMESTAMP(updated_at) AS updated_at\n FROM staging\n\n)\n\nSELECT *\nFROM loyalty_stg__swell_referral_codes", "language": "sql", "refs": [{"name": "loyalty_stg__referral_codes", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__referral_codes"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.sql", "compiled": true, "compiled_code": "WITH staging AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__referral_codes\n\n ), loyalty_stg__swell_referral_codes AS (\n\n SELECT id AS referral_code_id,\n code AS referral_code,\n clicks,\n shares,\n orders,\n amount_cents,\n merchant_id AS merchant_id__dim_stores,\n campaign_id AS campaign_id__swell_campaigns,\n TIMESTAMP(created_at) AS created_at,\n TIMESTAMP(updated_at) AS updated_at\n FROM staging\n\n)\n\nSELECT *\nFROM loyalty_stg__swell_referral_codes", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___loyalty_stg__swell_referrals": {"database": null, "schema": "dev_dkruh1", "name": "analytics___loyalty_stg__swell_referrals", "resource_type": "model", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.sql", "unique_id": "model.yoda.analytics___loyalty_stg__swell_referrals", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__swell_referrals", "analytics___loyalty_stg__swell_referrals"], "alias": "analytics___loyalty_stg__swell_referrals", "checksum": {"name": "sha256", "checksum": "b9c6daa4708abd307979695da1c7a2e26ba29754b40c9c5f700533c3e5ce1f4f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "referral_id", "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "loyalty"], "description": "loyalty__loyalty_stg__swell_referrals", "columns": {"referral_id": {"name": "referral_id", "description": "TODO: Update Column referral_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id__dim_stores": {"name": "merchant_id__dim_stores", "description": "TODO: Update Column merchant_id__dim_stores Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id__referral_codes": {"name": "referral_code_id__referral_codes", "description": "TODO: Update Column referral_code_id__referral_codes Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referrer_perk_id__swell_perks": {"name": "referrer_perk_id__swell_perks", "description": "TODO: Update Column referrer_perk_id__swell_perks Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id__swell_campaigns": {"name": "campaign_id__swell_campaigns", "description": "TODO: Update Column campaign_id__swell_campaigns Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Column orders Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column created_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "referral_id", "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com"}, "primary-key": "referral_id", "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.7956364, "relation_name": "dev_dkruh1.analytics___loyalty_stg__swell_referrals", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM {{ ref('loyalty_stg__referrals') }}\n\n), loyalty_stg__swell_referrals AS (\n\n SELECT id AS referral_id,\n merchant_id AS merchant_id__dim_stores,\n referral_code_id AS referral_code_id__referral_codes,\n referrer_perk_id AS referrer_perk_id__swell_perks,\n campaign_id AS campaign_id__swell_campaigns,\n orders,\n TIMESTAMP(created_at) AS created_at,\n TIMESTAMP(updated_at) AS updated_at\n FROM staging\n\n)\n\nSELECT *\nFROM loyalty_stg__swell_referrals", "language": "sql", "refs": [{"name": "loyalty_stg__referrals", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__referrals"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH staging AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__referrals\n\n), loyalty_stg__swell_referrals AS (\n\n SELECT id AS referral_id,\n merchant_id AS merchant_id__dim_stores,\n referral_code_id AS referral_code_id__referral_codes,\n referrer_perk_id AS referrer_perk_id__swell_perks,\n campaign_id AS campaign_id__swell_campaigns,\n orders,\n TIMESTAMP(created_at) AS created_at,\n TIMESTAMP(updated_at) AS updated_at\n FROM staging\n\n)\n\nSELECT *\nFROM loyalty_stg__swell_referrals", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___marketing__mql_opportunity_goal": {"database": null, "schema": "dev_dkruh1", "name": "analytics___marketing__mql_opportunity_goal", "resource_type": "model", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.sql", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.sql", "unique_id": "model.yoda.analytics___marketing__mql_opportunity_goal", "fqn": ["yoda", "analytics", "marketing", "marts", "analytics___marketing__mql_opportunity", "analytics___marketing__mql_opportunity_goal"], "alias": "analytics___marketing__mql_opportunity_goal", "checksum": {"name": "sha256", "checksum": "e7bcbef4398b76de4e1461e568ebac40939f5b7936baf99c30bada9272add492"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "marketing"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "marketing"], "description": "A modeled table for the mql opportunity process with goals.|\nEach row represents mql/opportunity/acv goal/sal goal or a combination of those if an opportunity and mql are related or if the opportunity meets goals based on the gtm opportunity goal table.|\nIn case row holds opportunity details it is exploded on products and attribution channel.|\nPK: mql_opportunity_goal_id | Granularity: opportunity_id, acv_goal_id, sal_goal_id, product_family_group, attribution_channel, mql_id", "columns": {"mql_opportunity_goal_id": {"name": "mql_opportunity_goal_id", "description": "Designated id made of granularity fields combinataion using sha2 hashing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "Granularity 1/6", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_id": {"name": "mql_id", "description": "Granularity 4/6", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "acv_goal_id": {"name": "acv_goal_id", "description": "Granularity 3/6", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sal_goal_id": {"name": "sal_goal_id", "description": "Granularity 4/6", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "opportunity's salesforce account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "entered_demo_date": {"name": "entered_demo_date", "description": "opportunity's demo date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "close_date": {"name": "close_date", "description": "opportunity's close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_acv": {"name": "product_acv", "description": "line item product's acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(32,2)"}, "product_estimated_arr": {"name": "product_estimated_arr", "description": "line item product's earr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "opportunity_order_bucket": {"name": "opportunity_order_bucket", "description": "opportunity's order bucket", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "order_bucket_group": {"name": "order_bucket_group", "description": "order bucket group for opportunity/acv goal/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel": {"name": "attribution_channel", "description": "Granularity 5/6", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel_list": {"name": "attribution_channel_list", "description": "Full list of attribution channels of the row's opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_stream": {"name": "revenue_stream", "description": "revenue stream for opportunity/acv goal/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type": {"name": "deal_type", "description": "deal type for opportunity/acv goal/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "sales region for opportunity/acv goal/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "Granularity 6/6", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "close_month": {"name": "close_month", "description": "close month for opportunity/acv goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sal_month": {"name": "sal_month", "description": "sal (demo) month for opportunity/sal goal (coalesced)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "monthly_acv_goal": {"name": "monthly_acv_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_acv_goal": {"name": "forecast_acv_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dg_overlap_monthly_acv_goal": {"name": "dg_overlap_monthly_acv_goal", "description": "monthly acv goal for all attribution channel - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dg_overlap_forecast_acv_goal": {"name": "dg_overlap_forecast_acv_goal", "description": "forecast acv goal for all attribution channel - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "monthly_sal_goal": {"name": "monthly_sal_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_sal_goal": {"name": "forecast_sal_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dg_overlap_monthly_sal_goal": {"name": "dg_overlap_monthly_sal_goal", "description": "monthly sal goal for all attribution channel - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dg_overlap_forecast_sal_goal": {"name": "dg_overlap_forecast_sal_goal", "description": "forecast sal goal for all attribution channel - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_overlap_monthly_sal_goal": {"name": "product_overlap_monthly_sal_goal", "description": "monthly sal goal for all products - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_overlap_forecast_sal_goal": {"name": "product_overlap_forecast_sal_goal", "description": "forecast sal goal for all products - post overlap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mql_contact_id": {"name": "mql_contact_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_lead_id": {"name": "mql_lead_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_territory": {"name": "mql_territory", "description": "Field to show territory code based on Account Billing Country Code or Lead Country Code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_email": {"name": "mql_email", "description": "Email address of the lead or contact related to the MQL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recent_assignment_sub_reason": {"name": "recent_assignment_sub_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recent_assignment_reason": {"name": "recent_assignment_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_time_to_first_response": {"name": "mql_time_to_first_response", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "marketo_estimated_monthly_orders": {"name": "marketo_estimated_monthly_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdr_sales_estimated_monthly_orders": {"name": "isdr_sales_estimated_monthly_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_demand_gen_channel": {"name": "mql_demand_gen_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_order_bucket": {"name": "mql_order_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "mql_order_bucket_group": {"name": "mql_order_bucket_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_sales_order_bucket_group": {"name": "mql_sales_order_bucket_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_tags": {"name": "cs_tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iap_tier": {"name": "iap_tier", "description": "Accounts identified that match Ideal Account Profile (IAP)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_country": {"name": "contact_country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_country": {"name": "lead_country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_owner": {"name": "opportunity_owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_owner_role": {"name": "opportunity_owner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_owner": {"name": "mql_owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_owner_role": {"name": "mql_owner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_stage": {"name": "opportunity_stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "record_type_name": {"name": "record_type_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_product_cnt": {"name": "mql_product_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "mql_is_loyalty": {"name": "mql_is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "mql_is_reviews": {"name": "mql_is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "mql_is_subscriptions": {"name": "mql_is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "mql_is_sms": {"name": "mql_is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "mql_is_vms": {"name": "mql_is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "mql_is_rad": {"name": "mql_is_rad", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "mql_is_ss": {"name": "mql_is_ss", "description": "If corresponding lead's Package_category contains 'ss' then 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "mql_is_platform": {"name": "mql_is_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_mql": {"name": "is_mql", "description": "True if the row represents mql or opportunity with mql", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sql": {"name": "is_sql", "description": "True if the row represents an opportunity (with or without mql/goal)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sal": {"name": "is_sal", "description": "True if the row has opportunity with demo date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_won": {"name": "is_won", "description": "True if the row has opportunity with won stage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_prime": {"name": "is_prime", "description": "True if the row represents 'reviews' product in a self-service opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_gold": {"name": "is_gold", "description": "True if the row represents 'loyalty' product in a self-service opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opportunity_created_date": {"name": "opportunity_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "mql_created_date": {"name": "mql_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "marketing"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.8675568, "relation_name": "dev_dkruh1.analytics___marketing__mql_opportunity_goal", "raw_code": "-- Import --\n\nWITH import_salesforce_mql AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__mql') }}\n\n), import_salesforce_opportunity AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__opportunity') }}\n\n), import_salesforce_account AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__account') }}\n\n), import_salesforce_lead AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__lead') }}\n\n), import_salesforce_contact AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_contact') }}\n\n), import_salesforce_sf_user_scd AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__dim_sf_users_scd') }}\n\n), import_gtm_opportunity_goal AS (\n\n SELECT * FROM {{ ref('analytics___gtm__opportunity_goal') }}\n\n-- Logic --\n\n), mql_population AS (\n\n SELECT\n mql_id,\n created_date,\n contact_id,\n lead_id,\n account_id,\n current_territory,\n email,\n marketo_estimated_monthly_orders,\n isdr_sales_estimated_monthly_orders,\n sf_owner,\n demand_gen_channel,\n is_rad,\n is_ss,\n recent_assignment_sub_reason,\n recent_assignment_reason,\n similarweb_traffic,\n time_to_first_response,\n CASE WHEN isdr_sales_estimated_monthly_orders LIKE '%-%' THEN SPLIT(marketo_estimated_monthly_orders, '-')[0]\n WHEN isdr_sales_estimated_monthly_orders LIKE '%+%' THEN REPLACE(marketo_estimated_monthly_orders, '+', '')\n ELSE isdr_sales_estimated_monthly_orders\n END AS isdr_orders_prefix,\n CASE WHEN marketo_estimated_monthly_orders LIKE '%-%' THEN SPLIT(marketo_estimated_monthly_orders, '-')[0]\n WHEN marketo_estimated_monthly_orders LIKE '%+%' THEN REPLACE(marketo_estimated_monthly_orders, '+', '')\n ELSE marketo_estimated_monthly_orders\n END AS marketo_orders_prefix,\n is_reviews + is_sms + is_loyalty + is_vms + is_subscriptions AS product_cnt,\n is_loyalty,\n is_reviews,\n is_sms,\n is_vms,\n is_subscriptions,\n is_platform\n FROM public_analytics.salesforce_mql\n WHERE LOWER(demand_gen_channel) IN ('mkt', 'pql', 'isdr')\n AND created_date >= '2021-01-01'\n AND ISNOTNULL(NVL(contact_id, lead_id))\n\n), mql_order_bucket AS (\n\n SELECT\n mql_id,\n INT(REPLACE(NVL(isdr_orders_prefix, marketo_orders_prefix), ',', '')) AS order_bucket\n FROM mql_population\n\n), mql_order_bucket_group AS (\n\n SELECT\n mql_id,\n order_bucket,\n CASE WHEN order_bucket >= 20000 THEN '20K+'\n WHEN order_bucket >= 10000 THEN '10K-20K'\n WHEN order_bucket >= 3000 THEN '3K-10K'\n WHEN order_bucket >= 1000 THEN '1K-3K'\n WHEN order_bucket >= 400 THEN '400-1K'\n WHEN order_bucket >= 0 THEN '0-400' \n END AS order_bucket_group,\n CASE WHEN order_bucket >= 15000 THEN '15K+'\n WHEN order_bucket >= 3000 THEN '3K-15K'\n WHEN order_bucket >= 0 THEN '0-1K' \n END AS sales_order_bucket_group\n FROM mql_order_bucket\n\n), opportunity_w_mql_rank AS (\n\n SELECT\n opportunity_goal.opportunity_goal_id,\n opportunity_goal.opportunity_id,\n mql.mql_id,\n opportunity_goal.acv_goal_id,\n opportunity_goal.sal_goal_id,\n opportunity_goal.account_id,\n opportunity_goal.entered_demo_date,\n opportunity_goal.close_date,\n opportunity_goal.product_acv,\n opportunity_goal.product_estimated_arr,\n opportunity_goal.opportunity_order_bucket,\n opportunity_goal.order_bucket_group,\n opportunity_goal.attribution_channel,\n opportunity_goal.revenue_stream,\n opportunity_goal.deal_type,\n opportunity_goal.sales_region,\n opportunity_goal.product_family_group,\n opportunity_goal.close_month,\n opportunity_goal.sal_month,\n opportunity_goal.monthly_acv_goal,\n opportunity_goal.forecast_acv_goal,\n opportunity_goal.dg_overlap_monthly_acv_goal,\n opportunity_goal.dg_overlap_forecast_acv_goal,\n opportunity_goal.monthly_sal_goal,\n opportunity_goal.forecast_sal_goal,\n opportunity_goal.dg_overlap_monthly_sal_goal,\n opportunity_goal.dg_overlap_forecast_sal_goal,\n opportunity_goal.product_overlap_monthly_sal_goal,\n opportunity_goal.product_overlap_forecast_sal_goal,\n opportunity_goal.opportunity_created_date,\n RANK() OVER(PARTITION BY opportunity_goal.opportunity_id ORDER BY mql.created_date DESC, mql_id) AS mql_rank\n FROM import_gtm_opportunity_goal AS opportunity_goal\n FULL JOIN mql_population AS mql\n ON opportunity_goal.account_id = mql.account_id\n AND opportunity_goal.opportunity_created_date >= mql.created_date\n\n), mql_opportunity_res AS (\n\n SELECT\n SHA2(CONCAT(NVL(mql_opportunity_goal.opportunity_goal_id,'~'), NVL(mql_opportunity_goal.mql_id,'~')) ,256) AS mql_opportunity_goal_id,\n mql_opportunity_goal.opportunity_id,\n mql_opportunity_goal.mql_id,\n mql_opportunity_goal.acv_goal_id,\n mql_opportunity_goal.sal_goal_id,\n mql_opportunity_goal.account_id,\n mql_opportunity_goal.entered_demo_date,\n mql_opportunity_goal.close_date,\n mql_opportunity_goal.product_acv,\n mql_opportunity_goal.product_estimated_arr,\n mql_opportunity_goal.opportunity_order_bucket,\n mql_opportunity_goal.order_bucket_group,\n mql_opportunity_goal.attribution_channel,\n opportunity_enrichment.attribution_channel AS attribution_channel_list,\n mql_opportunity_goal.revenue_stream,\n mql_opportunity_goal.deal_type,\n mql_opportunity_goal.sales_region,\n mql_opportunity_goal.product_family_group,\n mql_opportunity_goal.close_month,\n mql_opportunity_goal.sal_month,\n mql_opportunity_goal.monthly_acv_goal,\n mql_opportunity_goal.forecast_acv_goal,\n mql_opportunity_goal.dg_overlap_monthly_acv_goal,\n mql_opportunity_goal.dg_overlap_forecast_acv_goal,\n mql_opportunity_goal.monthly_sal_goal,\n mql_opportunity_goal.forecast_sal_goal,\n mql_opportunity_goal.dg_overlap_monthly_sal_goal,\n mql_opportunity_goal.dg_overlap_forecast_sal_goal,\n mql_opportunity_goal.product_overlap_monthly_sal_goal,\n mql_opportunity_goal.product_overlap_forecast_sal_goal,\n mql.contact_id as mql_contact_id,\n mql.lead_id as mql_lead_id,\n mql.current_territory AS mql_territory,\n mql.email AS mql_email,\n mql.recent_assignment_sub_reason,\n mql.recent_assignment_reason,\n mql.time_to_first_response AS mql_time_to_first_response,\n mql.marketo_estimated_monthly_orders,\n mql.isdr_sales_estimated_monthly_orders,\n mql.demand_gen_channel AS mql_demand_gen_channel,\n mql_bucket.order_bucket AS mql_order_bucket,\n mql_bucket.order_bucket_group AS mql_order_bucket_group,\n mql_bucket.sales_order_bucket_group AS mql_sales_order_bucket_group,\n account.account_name,\n account.cs_tags,\n account.iap_tier,\n account.platform,\n contact.contact_country,\n lead.country AS lead_country,\n opportunity_owner.sf_user_full_name AS opportunity_owner,\n opportunity_owner.sf_user_role AS opportunity_owner_role,\n mql_owner.sf_user_full_name AS mql_owner,\n mql_owner.sf_user_role AS mql_owner_role,\n opportunity_enrichment.stage AS opportunity_stage,\n opportunity_enrichment.record_type_name,\n mql.product_cnt AS mql_product_cnt,\n mql.is_loyalty AS mql_is_loyalty,\n mql.is_reviews AS mql_is_reviews,\n mql.is_subscriptions AS mql_is_subscriptions,\n mql.is_sms AS mql_is_sms,\n mql.is_vms AS mql_is_vms,\n mql.is_rad AS mql_is_rad,\n mql.is_ss AS mql_is_ss,\n mql.is_platform AS mql_is_platform,\n SMALLINT(IF(ISNOTNULL(mql_opportunity_goal.mql_id), 1, 0)) AS is_mql,\n SMALLINT(IF(ISNOTNULL(mql_opportunity_goal.opportunity_id), 1, 0)) AS is_sql,\n SMALLINT(IF(ISNOTNULL(mql_opportunity_goal.entered_demo_date), 1, 0)) AS is_sal,\n SMALLINT(IF(LOWER(opportunity_enrichment.stage) = 'won - sale', 1, 0)) AS is_won,\n SMALLINT(IF(LOWER(mql_opportunity_goal.deal_type) = 'ss' AND LOWER(mql_opportunity_goal.product_family_group) = 'reviews', 1, 0)) AS is_prime,\n SMALLINT(IF(LOWER(mql_opportunity_goal.deal_type) = 'ss' AND LOWER(mql_opportunity_goal.product_family_group) = 'loyalty', 1, 0)) AS is_gold,\n mql_opportunity_goal.opportunity_created_date,\n mql.created_date AS mql_created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM opportunity_w_mql_rank AS mql_opportunity_goal\n LEFT JOIN import_salesforce_opportunity AS opportunity_enrichment\n ON mql_opportunity_goal.opportunity_id = opportunity_enrichment.opportunity_id\n LEFT JOIN mql_population AS mql\n ON mql_opportunity_goal.mql_id = mql.mql_id\n LEFT JOIN mql_order_bucket_group AS mql_bucket\n ON mql_opportunity_goal.mql_id = mql_bucket.mql_id\n LEFT JOIN import_salesforce_account AS account\n ON mql_opportunity_goal.account_id = account.account_id\n LEFT JOIN import_salesforce_lead AS lead\n ON mql.lead_id = lead.lead_id\n LEFT JOIN import_salesforce_contact AS contact\n ON mql.contact_id = contact.contact_id\n LEFT JOIN import_salesforce_sf_user_scd AS opportunity_owner\n ON opportunity_enrichment.created_by_sf_user_id = opportunity_owner.sf_user_id\n AND opportunity_owner.scd_cur_ind = 1\n LEFT JOIN import_salesforce_sf_user_scd AS mql_owner\n ON mql.sf_owner = mql_owner.sf_user_id\n AND mql_owner.scd_cur_ind = 1\n WHERE mql_opportunity_goal.mql_rank = 1\n OR (ISNULL(mql_opportunity_goal.mql_id) AND LOWER(mql_opportunity_goal.attribution_channel) = 'marketing')\n OR (ISNULL(mql_opportunity_goal.opportunity_id) AND ISNOTNULL(mql_opportunity_goal.mql_id))\n\n)\n\n-- Result --\n\nSELECT * FROM mql_opportunity_res", "language": "sql", "refs": [{"name": "analytics___salesforce__mql", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___salesforce__lead", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_contact", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_users_scd", "package": null, "version": null}, {"name": "analytics___gtm__opportunity_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__mql", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__lead", "model.yoda.analytics___salesforce_stg__mc_contact", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___gtm__opportunity_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_mql AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__mql\n\n), import_salesforce_opportunity AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n\n), import_salesforce_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__account\n\n), import_salesforce_lead AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__lead\n\n), import_salesforce_contact AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_contact\n\n), import_salesforce_sf_user_scd AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__dim_sf_users_scd\n\n), import_gtm_opportunity_goal AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm__opportunity_goal\n\n-- Logic --\n\n), mql_population AS (\n\n SELECT\n mql_id,\n created_date,\n contact_id,\n lead_id,\n account_id,\n current_territory,\n email,\n marketo_estimated_monthly_orders,\n isdr_sales_estimated_monthly_orders,\n sf_owner,\n demand_gen_channel,\n is_rad,\n is_ss,\n recent_assignment_sub_reason,\n recent_assignment_reason,\n similarweb_traffic,\n time_to_first_response,\n CASE WHEN isdr_sales_estimated_monthly_orders LIKE '%-%' THEN SPLIT(marketo_estimated_monthly_orders, '-')[0]\n WHEN isdr_sales_estimated_monthly_orders LIKE '%+%' THEN REPLACE(marketo_estimated_monthly_orders, '+', '')\n ELSE isdr_sales_estimated_monthly_orders\n END AS isdr_orders_prefix,\n CASE WHEN marketo_estimated_monthly_orders LIKE '%-%' THEN SPLIT(marketo_estimated_monthly_orders, '-')[0]\n WHEN marketo_estimated_monthly_orders LIKE '%+%' THEN REPLACE(marketo_estimated_monthly_orders, '+', '')\n ELSE marketo_estimated_monthly_orders\n END AS marketo_orders_prefix,\n is_reviews + is_sms + is_loyalty + is_vms + is_subscriptions AS product_cnt,\n is_loyalty,\n is_reviews,\n is_sms,\n is_vms,\n is_subscriptions,\n is_platform\n FROM public_analytics.salesforce_mql\n WHERE LOWER(demand_gen_channel) IN ('mkt', 'pql', 'isdr')\n AND created_date >= '2021-01-01'\n AND ISNOTNULL(NVL(contact_id, lead_id))\n\n), mql_order_bucket AS (\n\n SELECT\n mql_id,\n INT(REPLACE(NVL(isdr_orders_prefix, marketo_orders_prefix), ',', '')) AS order_bucket\n FROM mql_population\n\n), mql_order_bucket_group AS (\n\n SELECT\n mql_id,\n order_bucket,\n CASE WHEN order_bucket >= 20000 THEN '20K+'\n WHEN order_bucket >= 10000 THEN '10K-20K'\n WHEN order_bucket >= 3000 THEN '3K-10K'\n WHEN order_bucket >= 1000 THEN '1K-3K'\n WHEN order_bucket >= 400 THEN '400-1K'\n WHEN order_bucket >= 0 THEN '0-400' \n END AS order_bucket_group,\n CASE WHEN order_bucket >= 15000 THEN '15K+'\n WHEN order_bucket >= 3000 THEN '3K-15K'\n WHEN order_bucket >= 0 THEN '0-1K' \n END AS sales_order_bucket_group\n FROM mql_order_bucket\n\n), opportunity_w_mql_rank AS (\n\n SELECT\n opportunity_goal.opportunity_goal_id,\n opportunity_goal.opportunity_id,\n mql.mql_id,\n opportunity_goal.acv_goal_id,\n opportunity_goal.sal_goal_id,\n opportunity_goal.account_id,\n opportunity_goal.entered_demo_date,\n opportunity_goal.close_date,\n opportunity_goal.product_acv,\n opportunity_goal.product_estimated_arr,\n opportunity_goal.opportunity_order_bucket,\n opportunity_goal.order_bucket_group,\n opportunity_goal.attribution_channel,\n opportunity_goal.revenue_stream,\n opportunity_goal.deal_type,\n opportunity_goal.sales_region,\n opportunity_goal.product_family_group,\n opportunity_goal.close_month,\n opportunity_goal.sal_month,\n opportunity_goal.monthly_acv_goal,\n opportunity_goal.forecast_acv_goal,\n opportunity_goal.dg_overlap_monthly_acv_goal,\n opportunity_goal.dg_overlap_forecast_acv_goal,\n opportunity_goal.monthly_sal_goal,\n opportunity_goal.forecast_sal_goal,\n opportunity_goal.dg_overlap_monthly_sal_goal,\n opportunity_goal.dg_overlap_forecast_sal_goal,\n opportunity_goal.product_overlap_monthly_sal_goal,\n opportunity_goal.product_overlap_forecast_sal_goal,\n opportunity_goal.opportunity_created_date,\n RANK() OVER(PARTITION BY opportunity_goal.opportunity_id ORDER BY mql.created_date DESC, mql_id) AS mql_rank\n FROM import_gtm_opportunity_goal AS opportunity_goal\n FULL JOIN mql_population AS mql\n ON opportunity_goal.account_id = mql.account_id\n AND opportunity_goal.opportunity_created_date >= mql.created_date\n\n), mql_opportunity_res AS (\n\n SELECT\n SHA2(CONCAT(NVL(mql_opportunity_goal.opportunity_goal_id,'~'), NVL(mql_opportunity_goal.mql_id,'~')) ,256) AS mql_opportunity_goal_id,\n mql_opportunity_goal.opportunity_id,\n mql_opportunity_goal.mql_id,\n mql_opportunity_goal.acv_goal_id,\n mql_opportunity_goal.sal_goal_id,\n mql_opportunity_goal.account_id,\n mql_opportunity_goal.entered_demo_date,\n mql_opportunity_goal.close_date,\n mql_opportunity_goal.product_acv,\n mql_opportunity_goal.product_estimated_arr,\n mql_opportunity_goal.opportunity_order_bucket,\n mql_opportunity_goal.order_bucket_group,\n mql_opportunity_goal.attribution_channel,\n opportunity_enrichment.attribution_channel AS attribution_channel_list,\n mql_opportunity_goal.revenue_stream,\n mql_opportunity_goal.deal_type,\n mql_opportunity_goal.sales_region,\n mql_opportunity_goal.product_family_group,\n mql_opportunity_goal.close_month,\n mql_opportunity_goal.sal_month,\n mql_opportunity_goal.monthly_acv_goal,\n mql_opportunity_goal.forecast_acv_goal,\n mql_opportunity_goal.dg_overlap_monthly_acv_goal,\n mql_opportunity_goal.dg_overlap_forecast_acv_goal,\n mql_opportunity_goal.monthly_sal_goal,\n mql_opportunity_goal.forecast_sal_goal,\n mql_opportunity_goal.dg_overlap_monthly_sal_goal,\n mql_opportunity_goal.dg_overlap_forecast_sal_goal,\n mql_opportunity_goal.product_overlap_monthly_sal_goal,\n mql_opportunity_goal.product_overlap_forecast_sal_goal,\n mql.contact_id as mql_contact_id,\n mql.lead_id as mql_lead_id,\n mql.current_territory AS mql_territory,\n mql.email AS mql_email,\n mql.recent_assignment_sub_reason,\n mql.recent_assignment_reason,\n mql.time_to_first_response AS mql_time_to_first_response,\n mql.marketo_estimated_monthly_orders,\n mql.isdr_sales_estimated_monthly_orders,\n mql.demand_gen_channel AS mql_demand_gen_channel,\n mql_bucket.order_bucket AS mql_order_bucket,\n mql_bucket.order_bucket_group AS mql_order_bucket_group,\n mql_bucket.sales_order_bucket_group AS mql_sales_order_bucket_group,\n account.account_name,\n account.cs_tags,\n account.iap_tier,\n account.platform,\n contact.contact_country,\n lead.country AS lead_country,\n opportunity_owner.sf_user_full_name AS opportunity_owner,\n opportunity_owner.sf_user_role AS opportunity_owner_role,\n mql_owner.sf_user_full_name AS mql_owner,\n mql_owner.sf_user_role AS mql_owner_role,\n opportunity_enrichment.stage AS opportunity_stage,\n opportunity_enrichment.record_type_name,\n mql.product_cnt AS mql_product_cnt,\n mql.is_loyalty AS mql_is_loyalty,\n mql.is_reviews AS mql_is_reviews,\n mql.is_subscriptions AS mql_is_subscriptions,\n mql.is_sms AS mql_is_sms,\n mql.is_vms AS mql_is_vms,\n mql.is_rad AS mql_is_rad,\n mql.is_ss AS mql_is_ss,\n mql.is_platform AS mql_is_platform,\n SMALLINT(IF(ISNOTNULL(mql_opportunity_goal.mql_id), 1, 0)) AS is_mql,\n SMALLINT(IF(ISNOTNULL(mql_opportunity_goal.opportunity_id), 1, 0)) AS is_sql,\n SMALLINT(IF(ISNOTNULL(mql_opportunity_goal.entered_demo_date), 1, 0)) AS is_sal,\n SMALLINT(IF(LOWER(opportunity_enrichment.stage) = 'won - sale', 1, 0)) AS is_won,\n SMALLINT(IF(LOWER(mql_opportunity_goal.deal_type) = 'ss' AND LOWER(mql_opportunity_goal.product_family_group) = 'reviews', 1, 0)) AS is_prime,\n SMALLINT(IF(LOWER(mql_opportunity_goal.deal_type) = 'ss' AND LOWER(mql_opportunity_goal.product_family_group) = 'loyalty', 1, 0)) AS is_gold,\n mql_opportunity_goal.opportunity_created_date,\n mql.created_date AS mql_created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM opportunity_w_mql_rank AS mql_opportunity_goal\n LEFT JOIN import_salesforce_opportunity AS opportunity_enrichment\n ON mql_opportunity_goal.opportunity_id = opportunity_enrichment.opportunity_id\n LEFT JOIN mql_population AS mql\n ON mql_opportunity_goal.mql_id = mql.mql_id\n LEFT JOIN mql_order_bucket_group AS mql_bucket\n ON mql_opportunity_goal.mql_id = mql_bucket.mql_id\n LEFT JOIN import_salesforce_account AS account\n ON mql_opportunity_goal.account_id = account.account_id\n LEFT JOIN import_salesforce_lead AS lead\n ON mql.lead_id = lead.lead_id\n LEFT JOIN import_salesforce_contact AS contact\n ON mql.contact_id = contact.contact_id\n LEFT JOIN import_salesforce_sf_user_scd AS opportunity_owner\n ON opportunity_enrichment.created_by_sf_user_id = opportunity_owner.sf_user_id\n AND opportunity_owner.scd_cur_ind = 1\n LEFT JOIN import_salesforce_sf_user_scd AS mql_owner\n ON mql.sf_owner = mql_owner.sf_user_id\n AND mql_owner.scd_cur_ind = 1\n WHERE mql_opportunity_goal.mql_rank = 1\n OR (ISNULL(mql_opportunity_goal.mql_id) AND LOWER(mql_opportunity_goal.attribution_channel) = 'marketing')\n OR (ISNULL(mql_opportunity_goal.opportunity_id) AND ISNOTNULL(mql_opportunity_goal.mql_id))\n\n)\n\n-- Result --\n\nSELECT * FROM mql_opportunity_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___new_revenue__deal_product": {"database": null, "schema": "dev_dkruh1", "name": "analytics___new_revenue__deal_product", "resource_type": "model", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.sql", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.sql", "unique_id": "model.yoda.analytics___new_revenue__deal_product", "fqn": ["yoda", "analytics", "new_revenue", "marts", "analytics___new_revenue__deal_product", "analytics___new_revenue__deal_product"], "alias": "analytics___new_revenue__deal_product", "checksum": {"name": "sha256", "checksum": "d04de526d576dd936763ad0bee1fc64b5629baca7df46d4ed0d13890dde103c3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "new_revenue", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "barnabas.guyatt@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "new_revenue"], "description": "Modeled table of sales deals. | PK & Granularity: opportunity_id,product", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_id": {"name": "owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "goal_process_internal_id": {"name": "goal_process_internal_id", "description": "Concatenation of fields used to join the performance from this process to the goals", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_role": {"name": "owner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_name": {"name": "owner_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_full_name": {"name": "manager_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secondary_seller_id": {"name": "secondary_seller_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_sf_user_id": {"name": "sdr_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_type": {"name": "customer_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stage": {"name": "stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "record_type_name": {"name": "record_type_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_stream": {"name": "revenue_stream", "description": "Flag for whether the deal is Sales or Account Management", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_name": {"name": "opportunity_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment": {"name": "order_sales_segment", "description": "Sales segment based on order volume", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel": {"name": "attribution_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_sales_region": {"name": "opportunity_sales_region", "description": "Sales region of the seller", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_sales_region": {"name": "account_sales_region", "description": "The billing region of the account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "goal_process_sales_region": {"name": "goal_process_sales_region", "description": "'EMEA' for 'UK'/'IL', sales region otherwise", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_country": {"name": "account_country", "description": "Country that account is based in", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_abm_type": {"name": "account_abm_type", "description": "Accounts that match Account Based Marketing (ABM) profile", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_iap_tier": {"name": "account_iap_tier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_list": {"name": "product_list", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisioned_plan_list": {"name": "provisioned_plan_list", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_review_requests_per_month": {"name": "estimated_review_requests_per_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "estimated_monthly_order_range": {"name": "estimated_monthly_order_range", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ht_ss_flag": {"name": "ht_ss_flag", "description": "Indicator for high touch or self service opportunities", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_per_deal": {"name": "products_per_deal", "description": "Number of products in the deal", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_platform_deal": {"name": "is_platform_deal", "description": "Indicator that an opportunity is a platform deal- contains UGC, L&R and SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "deal_summary_type": {"name": "deal_summary_type", "description": "Deal summary at a product level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "won_deal_opp_id": {"name": "won_deal_opp_id", "description": "Opportunity id for products won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closed_deal_opp_id": {"name": "closed_deal_opp_id", "description": "Opportunity id for closed deals, Won, LAW and Lost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line_acv": {"name": "product_line_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(30,2)"}, "product_line_earr": {"name": "product_line_earr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pipeline_usd": {"name": "pipeline_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_ugc": {"name": "is_ugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_marketing": {"name": "is_marketing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_partner_opportunity": {"name": "is_partner_opportunity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_osdr": {"name": "is_osdr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_other_demand_gen_channel": {"name": "is_other_demand_gen_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_account_role_owner": {"name": "is_account_role_owner", "description": "Indicates if opportunity's owenr is of am/ae", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ht_ss": {"name": "is_ht_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at_month": {"name": "created_at_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_date": {"name": "created_date", "description": "Opportunity creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "start_date": {"name": "start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "entered_demo_date": {"name": "entered_demo_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "entered_demo_date_month": {"name": "entered_demo_date_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "close_date": {"name": "close_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "close_month": {"name": "close_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "latest_updated_at": {"name": "latest_updated_at", "description": "Latest updated at time between deal summary and opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "barnabas.guyatt@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["new_revenue", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "barnabas.guyatt@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082643.9513257, "relation_name": "dev_dkruh1.analytics___new_revenue__deal_product", "raw_code": "-- Import --\n\nWITH import_analytics___salesforce__opportunity AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__opportunity') }}\n\n), import_analytics___salesforce__deal_summary_product AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__deal_summary_product') }}\n\n), import_analytics___salesforce__account AS (\n \n SELECT * FROM {{ ref('analytics___salesforce__account') }}\n\n), import_analytics___salesforce__opportunity_line_item AS (\n \n SELECT * FROM {{ ref('analytics___salesforce__opportunity_line_item') }}\n\n), import_analytics___salesforce_stg__dim_sf_users_scd AS ( \n \n SELECT * FROM {{ ref('analytics___salesforce_stg__dim_sf_users_scd') }} \n\n-- Logic --\n\n), deal_summary_product_wo_ugc_duplicates AS (\n\n SELECT\n opportunity_id,\n IF(LOWER(product) IN ('reviews','insights','vms'), 'UGC', product) AS product,\n CONCAT_WS(', ', SORT_ARRAY(COLLECT_LIST(deal_type))) AS deal_summary_type,\n SUM(delta_acv) AS delta_acv,\n SUM(pipeline_usd) AS pipeline_usd,\n MAX(updated_at) AS ds_updated_at\n FROM import_analytics___salesforce__deal_summary_product\n GROUP BY 1,2\n\n), opp_line_item_for_self_serve AS (\n\n SELECT\n opp_full.opportunity_id,\n IF(LOWER(line_item.line_item_product) IN ('reviews','insights','vms'), 'UGC', line_item.line_item_product) AS product\n FROM import_analytics___salesforce__opportunity_line_item AS line_item\n INNER JOIN import_analytics___salesforce__opportunity AS opp_full\n ON line_item.opportunity_id = opp_full.opportunity_id\n WHERE LOWER(opp_full.record_type_name) = 'self service opportunity'\n GROUP BY 1,2\n\n), deal_product AS (\n\n SELECT\n opp.opportunity_id,\n CASE WHEN ISNOTNULL(deal.product) THEN deal.product\n WHEN LOWER(opp.record_type_name) = 'self service opportunity' THEN line_item.product END AS product,\n opp.account_id,\n opp.owner_id,\n opp.original_owner_role AS owner_role,\n owner.sf_user_full_name AS owner_name,\n owner.manager_full_name,\n opp.secondary_seller_id,\n opp.sdr_sf_user_id,\n opp.customer_type,\n opp.type,\n opp.stage,\n opp.record_type_name,\n IF(opp.type = 'New Sale','Sales','AM') AS revenue_stream,\n opp.opportunity_name,\n opp.order_sales_segment,\n NVL(opp.attribution_channel, 'Not attributed') AS attribution_channel,\n account.country as account_country,\n opp.sales_region AS opportunity_sales_region,\n account.sales_region AS account_sales_region,\n account.organization_id,\n account.organization_key,\n IF(LOWER(account.sales_region) IN ('il', 'uk'), 'EMEA', account.sales_region) AS goal_process_sales_region,\n account.platform,\n CASE WHEN account.cs_tags LIKE '%US ABM%' THEN 'US ABM'\n WHEN account.cs_tags LIKE '%UK ABM%' THEN 'UK ABM'\n WHEN account.cs_tags LIKE '%AU ABM%' THEN 'AU ABM'\n ELSE NULL END AS account_abm_type,\n IF(LOWER(account.iap_tier) LIKE 'iap%', iap_tier,NULL) AS account_iap_tier,\n opp.product_list,\n opp.provisioned_plan_list, \n opp.estimated_monthly_order_range,\n opp.estimated_review_requests_per_month,\n IF(LOWER(opp.record_type_name) = 'self service opportunity','SS','HT') AS ht_ss_flag,\n opp.is_loyalty + opp.is_sms + opp.is_subscriptions + IF(opp.is_email_intent = 1 AND opp.is_email > 0, 1, 0) + IF((opp.is_reviews + opp.is_insights + opp.is_vms) > 0, 1, 0) AS products_per_deal,\n SMALLINT(IF((opp.is_loyalty + opp.is_sms + IF((opp.is_reviews + opp.is_insights + opp.is_vms) > 0, 1, 0)) = 3, 1, 0)) AS is_platform_deal,\n deal.deal_summary_type,\n IF(((LOWER(deal.product) <> 'email' AND LOWER(deal.deal_summary_type) LIKE '%success%' AND LOWER(opp.stage) = 'won - sale')\n OR (LOWER(deal.product) = 'email' AND opp.is_email_intent = 1 AND LOWER(deal.deal_summary_type) LIKE '%success%' AND LOWER(opp.stage) = 'won - sale')\n OR (LOWER(opp.record_type_name) = 'self service opportunity' AND LOWER(opp.stage) = 'won - sale')),\n opp.opportunity_id,NULL) AS won_deal_opp_id,\n IF(LOWER(opp.stage) IN ('won - sale','lost','lost after won'),opp.opportunity_id,NULL) AS closed_deal_opp_id,\n CASE WHEN opp.record_type_name = 'Self Service Opportunity' AND opp.product_list = 'Reviews' THEN opp.prime_estimated_arr_in_usd\n WHEN opp.record_type_name = 'Self Service Opportunity' AND opp.product_list = 'Loyalty' THEN opp.gold_estimated_arr_in_usd\n ELSE deal.delta_acv END AS product_line_acv,\n CASE WHEN LOWER(deal.product) = 'sms' AND LOWER(deal.deal_summary_type) LIKE ('%succes%') THEN opp.sms_delta_earr\n WHEN LOWER(deal.product) = 'subscriptions' AND LOWER(deal.deal_summary_type) LIKE ('%success%') THEN opp.subscriptions_delta_earr\n WHEN LOWER(deal.product) = 'email' AND opp.is_email_intent = 1 AND LOWER(deal.deal_summary_type) LIKE '%success%' THEN opp.email_estimated_arr_in_usd\n ELSE 0 END AS product_line_earr,\n deal.pipeline_usd AS pipeline_usd,\n SMALLINT(IF((opp.is_reviews + opp.is_insights + opp.is_vms) > 0, 1, 0)) AS is_ugc,\n SMALLINT(opp.is_loyalty) AS is_loyalty,\n SMALLINT(opp.is_sms) AS is_sms,\n SMALLINT(opp.is_subscriptions) AS is_subscriptions,\n SMALLINT(opp.is_marketing) AS is_marketing,\n SMALLINT(opp.is_partner_opportunity) AS is_partner_opportunity,\n SMALLINT(opp.is_osdr) AS is_osdr,\n SMALLINT(opp.is_other_demand_gen_channel) AS is_other_demand_gen_channel,\n SMALLINT(IF(LOWER(opp.original_owner_role) LIKE '%accoun%', 1, 0)) AS is_account_role_owner,\n opp.is_ht_ss,\n opp.created_at,\n TRUNC(opp.created_at,'MONTH') AS created_at_month,\n opp.created_date,\n opp.start_date,\n opp.entered_demo_date,\n TRUNC(opp.entered_demo_date,'MONTH') AS entered_demo_date_month,\n opp.close_date,\n TRUNC(opp.close_date,'MONTH') AS close_month,\n GREATEST(opp.updated_at, deal.ds_updated_at) AS latest_updated_at\n FROM import_analytics___salesforce__opportunity AS opp\n LEFT JOIN deal_summary_product_wo_ugc_duplicates AS deal\n ON opp.opportunity_id = deal.opportunity_id\n AND deal.product <> 'PS'\n AND LOWER(opp.record_type_name) <> 'self service opportunity'\n LEFT JOIN import_analytics___salesforce__account AS account\n ON account.account_id = opp.account_id\n LEFT JOIN import_analytics___salesforce_stg__dim_sf_users_scd AS owner\n ON opp.owner_id = owner.sf_user_id\n AND owner.scd_cur_ind = 1\n LEFT JOIN opp_line_item_for_self_serve AS line_item\n ON opp.opportunity_id = line_item.opportunity_id\n WHERE LOWER(opp.type) NOT LIKE '%poc%'\n AND opp.close_date >= '2019-01-01'\n\n), deal_product_res AS (\n\n SELECT\n opportunity_id,\n product,\n account_id,\n owner_id,\n LOWER(CONCAT(ht_ss_flag, revenue_stream, order_sales_segment, goal_process_sales_region)) AS goal_process_internal_id,\n owner_role,\n owner_name,\n manager_full_name,\n secondary_seller_id,\n sdr_sf_user_id,\n customer_type,\n type,\n stage,\n record_type_name,\n revenue_stream,\n opportunity_name,\n order_sales_segment,\n attribution_channel,\n opportunity_sales_region,\n account_sales_region,\n goal_process_sales_region,\n organization_id,\n organization_key,\n account_country,\n account_abm_type,\n account_iap_tier,\n platform,\n product_list,\n provisioned_plan_list, \n estimated_review_requests_per_month,\n estimated_monthly_order_range,\n ht_ss_flag,\n products_per_deal,\n is_platform_deal,\n deal_summary_type,\n won_deal_opp_id,\n closed_deal_opp_id,\n product_line_acv,\n product_line_earr, \n pipeline_usd,\n is_ugc,\n is_loyalty,\n is_sms,\n is_subscriptions,\n is_marketing,\n is_partner_opportunity,\n is_osdr,\n is_other_demand_gen_channel,\n is_account_role_owner,\n is_ht_ss,\n created_at,\n created_at_month,\n created_date,\n start_date,\n entered_demo_date,\n entered_demo_date_month,\n close_date,\n close_month,\n latest_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM deal_product\n)\n\n-- Result --\nSELECT * FROM deal_product_res", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce__deal_summary_product", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity_line_item", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_users_scd", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__deal_summary_product", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__opportunity_line_item", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd"]}, "compiled_path": "target/compiled/yoda/models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_analytics___salesforce__opportunity AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n\n), import_analytics___salesforce__deal_summary_product AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__deal_summary_product\n\n), import_analytics___salesforce__account AS (\n \n SELECT * FROM dev_dkruh1.analytics___salesforce__account\n\n), import_analytics___salesforce__opportunity_line_item AS (\n \n SELECT * FROM dev_dkruh1.analytics___salesforce__opportunity_line_item\n\n), import_analytics___salesforce_stg__dim_sf_users_scd AS ( \n \n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__dim_sf_users_scd \n\n-- Logic --\n\n), deal_summary_product_wo_ugc_duplicates AS (\n\n SELECT\n opportunity_id,\n IF(LOWER(product) IN ('reviews','insights','vms'), 'UGC', product) AS product,\n CONCAT_WS(', ', SORT_ARRAY(COLLECT_LIST(deal_type))) AS deal_summary_type,\n SUM(delta_acv) AS delta_acv,\n SUM(pipeline_usd) AS pipeline_usd,\n MAX(updated_at) AS ds_updated_at\n FROM import_analytics___salesforce__deal_summary_product\n GROUP BY 1,2\n\n), opp_line_item_for_self_serve AS (\n\n SELECT\n opp_full.opportunity_id,\n IF(LOWER(line_item.line_item_product) IN ('reviews','insights','vms'), 'UGC', line_item.line_item_product) AS product\n FROM import_analytics___salesforce__opportunity_line_item AS line_item\n INNER JOIN import_analytics___salesforce__opportunity AS opp_full\n ON line_item.opportunity_id = opp_full.opportunity_id\n WHERE LOWER(opp_full.record_type_name) = 'self service opportunity'\n GROUP BY 1,2\n\n), deal_product AS (\n\n SELECT\n opp.opportunity_id,\n CASE WHEN ISNOTNULL(deal.product) THEN deal.product\n WHEN LOWER(opp.record_type_name) = 'self service opportunity' THEN line_item.product END AS product,\n opp.account_id,\n opp.owner_id,\n opp.original_owner_role AS owner_role,\n owner.sf_user_full_name AS owner_name,\n owner.manager_full_name,\n opp.secondary_seller_id,\n opp.sdr_sf_user_id,\n opp.customer_type,\n opp.type,\n opp.stage,\n opp.record_type_name,\n IF(opp.type = 'New Sale','Sales','AM') AS revenue_stream,\n opp.opportunity_name,\n opp.order_sales_segment,\n NVL(opp.attribution_channel, 'Not attributed') AS attribution_channel,\n account.country as account_country,\n opp.sales_region AS opportunity_sales_region,\n account.sales_region AS account_sales_region,\n account.organization_id,\n account.organization_key,\n IF(LOWER(account.sales_region) IN ('il', 'uk'), 'EMEA', account.sales_region) AS goal_process_sales_region,\n account.platform,\n CASE WHEN account.cs_tags LIKE '%US ABM%' THEN 'US ABM'\n WHEN account.cs_tags LIKE '%UK ABM%' THEN 'UK ABM'\n WHEN account.cs_tags LIKE '%AU ABM%' THEN 'AU ABM'\n ELSE NULL END AS account_abm_type,\n IF(LOWER(account.iap_tier) LIKE 'iap%', iap_tier,NULL) AS account_iap_tier,\n opp.product_list,\n opp.provisioned_plan_list, \n opp.estimated_monthly_order_range,\n opp.estimated_review_requests_per_month,\n IF(LOWER(opp.record_type_name) = 'self service opportunity','SS','HT') AS ht_ss_flag,\n opp.is_loyalty + opp.is_sms + opp.is_subscriptions + IF(opp.is_email_intent = 1 AND opp.is_email > 0, 1, 0) + IF((opp.is_reviews + opp.is_insights + opp.is_vms) > 0, 1, 0) AS products_per_deal,\n SMALLINT(IF((opp.is_loyalty + opp.is_sms + IF((opp.is_reviews + opp.is_insights + opp.is_vms) > 0, 1, 0)) = 3, 1, 0)) AS is_platform_deal,\n deal.deal_summary_type,\n IF(((LOWER(deal.product) <> 'email' AND LOWER(deal.deal_summary_type) LIKE '%success%' AND LOWER(opp.stage) = 'won - sale')\n OR (LOWER(deal.product) = 'email' AND opp.is_email_intent = 1 AND LOWER(deal.deal_summary_type) LIKE '%success%' AND LOWER(opp.stage) = 'won - sale')\n OR (LOWER(opp.record_type_name) = 'self service opportunity' AND LOWER(opp.stage) = 'won - sale')),\n opp.opportunity_id,NULL) AS won_deal_opp_id,\n IF(LOWER(opp.stage) IN ('won - sale','lost','lost after won'),opp.opportunity_id,NULL) AS closed_deal_opp_id,\n CASE WHEN opp.record_type_name = 'Self Service Opportunity' AND opp.product_list = 'Reviews' THEN opp.prime_estimated_arr_in_usd\n WHEN opp.record_type_name = 'Self Service Opportunity' AND opp.product_list = 'Loyalty' THEN opp.gold_estimated_arr_in_usd\n ELSE deal.delta_acv END AS product_line_acv,\n CASE WHEN LOWER(deal.product) = 'sms' AND LOWER(deal.deal_summary_type) LIKE ('%succes%') THEN opp.sms_delta_earr\n WHEN LOWER(deal.product) = 'subscriptions' AND LOWER(deal.deal_summary_type) LIKE ('%success%') THEN opp.subscriptions_delta_earr\n WHEN LOWER(deal.product) = 'email' AND opp.is_email_intent = 1 AND LOWER(deal.deal_summary_type) LIKE '%success%' THEN opp.email_estimated_arr_in_usd\n ELSE 0 END AS product_line_earr,\n deal.pipeline_usd AS pipeline_usd,\n SMALLINT(IF((opp.is_reviews + opp.is_insights + opp.is_vms) > 0, 1, 0)) AS is_ugc,\n SMALLINT(opp.is_loyalty) AS is_loyalty,\n SMALLINT(opp.is_sms) AS is_sms,\n SMALLINT(opp.is_subscriptions) AS is_subscriptions,\n SMALLINT(opp.is_marketing) AS is_marketing,\n SMALLINT(opp.is_partner_opportunity) AS is_partner_opportunity,\n SMALLINT(opp.is_osdr) AS is_osdr,\n SMALLINT(opp.is_other_demand_gen_channel) AS is_other_demand_gen_channel,\n SMALLINT(IF(LOWER(opp.original_owner_role) LIKE '%accoun%', 1, 0)) AS is_account_role_owner,\n opp.is_ht_ss,\n opp.created_at,\n TRUNC(opp.created_at,'MONTH') AS created_at_month,\n opp.created_date,\n opp.start_date,\n opp.entered_demo_date,\n TRUNC(opp.entered_demo_date,'MONTH') AS entered_demo_date_month,\n opp.close_date,\n TRUNC(opp.close_date,'MONTH') AS close_month,\n GREATEST(opp.updated_at, deal.ds_updated_at) AS latest_updated_at\n FROM import_analytics___salesforce__opportunity AS opp\n LEFT JOIN deal_summary_product_wo_ugc_duplicates AS deal\n ON opp.opportunity_id = deal.opportunity_id\n AND deal.product <> 'PS'\n AND LOWER(opp.record_type_name) <> 'self service opportunity'\n LEFT JOIN import_analytics___salesforce__account AS account\n ON account.account_id = opp.account_id\n LEFT JOIN import_analytics___salesforce_stg__dim_sf_users_scd AS owner\n ON opp.owner_id = owner.sf_user_id\n AND owner.scd_cur_ind = 1\n LEFT JOIN opp_line_item_for_self_serve AS line_item\n ON opp.opportunity_id = line_item.opportunity_id\n WHERE LOWER(opp.type) NOT LIKE '%poc%'\n AND opp.close_date >= '2019-01-01'\n\n), deal_product_res AS (\n\n SELECT\n opportunity_id,\n product,\n account_id,\n owner_id,\n LOWER(CONCAT(ht_ss_flag, revenue_stream, order_sales_segment, goal_process_sales_region)) AS goal_process_internal_id,\n owner_role,\n owner_name,\n manager_full_name,\n secondary_seller_id,\n sdr_sf_user_id,\n customer_type,\n type,\n stage,\n record_type_name,\n revenue_stream,\n opportunity_name,\n order_sales_segment,\n attribution_channel,\n opportunity_sales_region,\n account_sales_region,\n goal_process_sales_region,\n organization_id,\n organization_key,\n account_country,\n account_abm_type,\n account_iap_tier,\n platform,\n product_list,\n provisioned_plan_list, \n estimated_review_requests_per_month,\n estimated_monthly_order_range,\n ht_ss_flag,\n products_per_deal,\n is_platform_deal,\n deal_summary_type,\n won_deal_opp_id,\n closed_deal_opp_id,\n product_line_acv,\n product_line_earr, \n pipeline_usd,\n is_ugc,\n is_loyalty,\n is_sms,\n is_subscriptions,\n is_marketing,\n is_partner_opportunity,\n is_osdr,\n is_other_demand_gen_channel,\n is_account_role_owner,\n is_ht_ss,\n created_at,\n created_at_month,\n created_date,\n start_date,\n entered_demo_date,\n entered_demo_date_month,\n close_date,\n close_month,\n latest_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM deal_product\n)\n\n-- Result --\nSELECT * FROM deal_product_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___new_revenue__deal_product_scd": {"database": null, "schema": "dev_dkruh1", "name": "analytics___new_revenue__deal_product_scd", "resource_type": "model", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.sql", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.sql", "unique_id": "model.yoda.analytics___new_revenue__deal_product_scd", "fqn": ["yoda", "analytics", "new_revenue", "marts", "analytics___new_revenue__deal_product_scd", "analytics___new_revenue__deal_product_scd"], "alias": "analytics___new_revenue__deal_product_scd", "checksum": {"name": "sha256", "checksum": "0e1e5c853559b7d0071608ebf405a504a8119b2178ccf0587106efab98c44894"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "barnabas.guyatt@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "SCD table for new revenue deal product | PK & Granularity: opportunity_id, product, updated_at", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stage": {"name": "stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisioned_plan_list": {"name": "provisioned_plan_list", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment": {"name": "order_sales_segment", "description": "Sales segment based on order volume", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_monthly_order_range": {"name": "estimated_monthly_order_range", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_summary_type": {"name": "deal_summary_type", "description": "Deal summary at a product level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line_acv": {"name": "product_line_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(30,2)"}, "product_line_earr": {"name": "product_line_earr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "entered_demo_date": {"name": "entered_demo_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "close_date": {"name": "close_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "Latest updated at time between deal summary and opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Table writing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "barnabas.guyatt@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "barnabas.guyatt@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "incremental_strategy": "append"}, "created_at": 1700082643.9871182, "relation_name": "dev_dkruh1.analytics___new_revenue__deal_product_scd", "raw_code": "{{\nanalytics_snapshot_scd(\n source_model = 'analytics___new_revenue__deal_product',\n unique_key = ['opportunity_id','product'],\n tracked_columns =['type',\n 'stage',\n 'provisioned_plan_list',\n 'order_sales_segment',\n 'estimated_monthly_order_range',\n 'deal_summary_type',\n 'product_line_acv',\n 'product_line_earr',\n 'entered_demo_date',\n 'close_date'\n ],\n updated_at = 'latest_updated_at'\n )\n}}", "language": "sql", "refs": [{"name": "analytics___new_revenue__deal_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_snapshot_scd", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___new_revenue__deal_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.sql", "compiled": true, "compiled_code": "\n\n WITH \n \n\n incremental_calculation AS (\n SELECT \n source_table.opportunity_id, source_table.product, source_table.type, source_table.stage, source_table.provisioned_plan_list, source_table.order_sales_segment, source_table.estimated_monthly_order_range, source_table.deal_summary_type, source_table.product_line_acv, source_table.product_line_earr, source_table.entered_demo_date, source_table.close_date, source_table.latest_updated_at, \n 1 AS is_new_update\n FROM dev_dkruh1.analytics___new_revenue__deal_product AS source_table\n )\n\n SELECT\n opportunity_id, product, type, stage, provisioned_plan_list, order_sales_segment, estimated_monthly_order_range, deal_summary_type, product_line_acv, product_line_earr, entered_demo_date, close_date, latest_updated_at AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM incremental_calculation\n WHERE is_new_update = 1\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___new_revenue__operational_performance_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___new_revenue__operational_performance_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.sql", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.sql", "unique_id": "model.yoda.analytics___new_revenue__operational_performance_daily", "fqn": ["yoda", "analytics", "new_revenue", "marts", "analytics___new_revenue__operational_performance_daily", "analytics___new_revenue__operational_performance_daily"], "alias": "analytics___new_revenue__operational_performance_daily", "checksum": {"name": "sha256", "checksum": "040e98e3a92b2c07ec8bae65acd592933f971ff67710cf336dab8f22a2d04b64"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "new_revenue", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "new_revenue"], "description": "Modeled aggregated table for acv/sal performance on a daily level | PK: operational_performance_daily_id | Granularity: date, deal_type, revenue_stream, segment, region, demand_gen_channel, product", "columns": {"operational_performance_daily_id": {"name": "operational_performance_daily_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "deal_type": {"name": "deal_type", "description": "opportunity's deal type (HT/SS)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_stream": {"name": "revenue_stream", "description": "opportunity's revenue stream (AM/SS/Sales)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "opportunity's account sales segment (VSB/SMB/...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "opportunity's account sales region, UK/IL shown as EMEA", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_channel": {"name": "demand_gen_channel", "description": "opportunity's attribution channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "won_opportunities": {"name": "won_opportunities", "description": "total won opportunities count according to granularity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daily_sal": {"name": "daily_sal", "description": "total sal count according to granularity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daily_acv": {"name": "daily_acv", "description": "total acv according to granularity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "expected_sal_daily": {"name": "expected_sal_daily", "description": "expected sal count performance based on previous year progress on the same day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "expected_forecast_sal_daily": {"name": "expected_forecast_sal_daily", "description": "expected sal count performance based on previous year progress on the same day for forceast (fixed) goals", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "expected_acv_daily": {"name": "expected_acv_daily", "description": "expected acv performance based on previous year progress on the same day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "expected_forecast_acv_daily": {"name": "expected_forecast_acv_daily", "description": "expected acv performance based on previous year progress on the same day for forceast (fixed) goals", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["new_revenue", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082644.0268834, "relation_name": "dev_dkruh1.analytics___new_revenue__operational_performance_daily", "raw_code": "-- Import --\n\nWITH import_analytics_sms_store_metrics_daily AS (\n\n SELECT * FROM {{ ref('analytics___sms__store_metrics_daily') }}\n\n), import_analytics_salesforce_account AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__account') }}\n\n), import_analytics_gtm_acv_goal_daily AS (\n\n SELECT * FROM {{ ref('analytics___gtm__acv_goal_daily') }}\n\n), import_analytics_gtm_sal_goal_daily AS (\n\n SELECT * FROM {{ ref('analytics___gtm__sal_goal_daily') }}\n\n), import_analytics_salesforce_new_revenue_deal_proudct AS (\n\n SELECT * FROM {{ ref('analytics___new_revenue__deal_product') }}\n\n-- Logic --\n\n), sales_related_deals AS (\n\n SELECT * FROM import_analytics_salesforce_new_revenue_deal_proudct\n WHERE is_account_role_owner = 1\n\n), sms_monthly_credits_usage AS (\n\n SELECT\n sms_store.date,\n IF(LOWER(sms_store.plan_type) = 'high_touch', sf_account.sales_segment, 'Total') AS sales_segment,\n IF(LOWER(sms_store.plan_type) = 'high_touch', 'HT', 'SS') AS plan_type,\n SUM(sms_store.usage_sum) AS total_credits_used\n FROM import_analytics_sms_store_metrics_daily AS sms_store\n LEFT JOIN import_analytics_salesforce_account AS sf_account\n ON sf_account.organization_key = sms_store.organization_key\n GROUP BY 1,2,3\n\n), acv_goal_and_actual AS (\n\n SELECT \n goal_daily.date,\n goal_daily.closing_date,\n goal_daily.working_day_no,\n goal_daily.revenue_stream,\n goal_daily.segment,\n goal_daily.region,\n goal_daily.demand_gen_channel,\n goal_daily.product,\n goal_daily.deal_type,\n goal_daily.monthly_acv_goal,\n goal_daily.forecast_acv_goal,\n goal_daily.goal_id,\n goal_daily.goal_process_internal_id,\n COUNT(DISTINCT acv_performance.opportunity_id) AS won_opportunities,\n NVL(SUM(CASE WHEN LOWER(goal_daily.product) IN ('ugc', 'loyalty') THEN acv_performance.product_line_acv\n WHEN LOWER(goal_daily.product) IN ('subscriptions', 'sms-earr') THEN acv_performance.product_line_earr END), 0) AS daily_acv\n FROM import_analytics_gtm_acv_goal_daily AS goal_daily\n LEFT JOIN sales_related_deals AS acv_performance\n ON goal_daily.date = acv_performance.close_date\n AND goal_daily.goal_process_internal_id = acv_performance.goal_process_internal_id\n AND LOWER(goal_daily.product_family) = LOWER(acv_performance.product)\n AND LOWER(acv_performance.stage) = 'won - sale'\n AND LOWER(acv_performance.attribution_channel) LIKE '%' || LOWER(goal_daily.goal_process_demand_gen_channel) || '%'\n WHERE LOWER(goal_daily.product) <> 'sms-usage'\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13\n\n), usage_goal_and_actual AS (\n\n SELECT\n goal_daily.date,\n goal_daily.closing_date,\n goal_daily.working_day_no,\n goal_daily.revenue_stream,\n goal_daily.segment,\n goal_daily.region,\n goal_daily.demand_gen_channel,\n goal_daily.product,\n goal_daily.deal_type,\n goal_daily.monthly_acv_goal,\n goal_daily.forecast_acv_goal,\n goal_daily.goal_id,\n goal_daily.goal_process_internal_id,\n 0 AS monthly_sal_goal,\n 0 AS forecast_sal_goal,\n 0 AS won_opportunities,\n 0 AS daily_sal,\n NVL(SUM(sms_usage.total_credits_used), 0) AS daily_acv\n FROM import_analytics_gtm_acv_goal_daily AS goal_daily\n LEFT JOIN sms_monthly_credits_usage AS sms_usage\n ON goal_daily.date = sms_usage.date\n AND LOWER(goal_daily.segment) = LOWER(sms_usage.sales_segment)\n AND LOWER(goal_daily.deal_type) = LOWER(sms_usage.plan_type)\n WHERE LOWER(goal_daily.product) = 'sms-usage'\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13\n\n), sal_goal_and_actual AS (\n\n SELECT\n goal_daily.date,\n goal_daily.closing_date,\n goal_daily.working_day_no,\n goal_daily.revenue_stream,\n goal_daily.segment,\n goal_daily.region,\n goal_daily.demand_gen_channel,\n goal_daily.product,\n goal_daily.deal_type,\n goal_daily.monthly_sal_goal,\n goal_daily.forecast_sal_goal,\n goal_daily.goal_id,\n goal_daily.goal_process_internal_id,\n COUNT(DISTINCT sal_performance.opportunity_id) AS daily_sal\n FROM import_analytics_gtm_sal_goal_daily AS goal_daily\n LEFT JOIN sales_related_deals AS sal_performance\n ON goal_daily.date = sal_performance.entered_demo_date\n AND goal_daily.goal_process_internal_id = sal_performance.goal_process_internal_id\n AND LOWER(goal_daily.product) = LOWER(sal_performance.product)\n AND LOWER(sal_performance.attribution_channel) LIKE '%' || LOWER(goal_daily.goal_process_demand_gen_channel) || '%'\n WHERE LOWER(goal_daily.product) <> 'total'\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13\n\n), total_sal_goal_and_actual AS (\n\n SELECT\n goal_daily.date,\n goal_daily.closing_date,\n goal_daily.working_day_no,\n goal_daily.revenue_stream,\n goal_daily.segment,\n goal_daily.region,\n goal_daily.demand_gen_channel,\n goal_daily.product,\n goal_daily.deal_type,\n goal_daily.monthly_sal_goal,\n goal_daily.forecast_sal_goal,\n goal_daily.goal_id,\n goal_daily.goal_process_internal_id,\n COUNT(DISTINCT sal_performance.opportunity_id) AS daily_sal\n FROM import_analytics_gtm_sal_goal_daily AS goal_daily\n LEFT JOIN sales_related_deals AS sal_performance\n ON goal_daily.date = sal_performance.entered_demo_date\n AND goal_daily.goal_process_internal_id = sal_performance.goal_process_internal_id\n AND LOWER(sal_performance.attribution_channel) LIKE '%' || LOWER(goal_daily.goal_process_demand_gen_channel) || '%'\n WHERE LOWER(goal_daily.product) = 'total'\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13\n\n), sal_goal_and_actual_w_total AS (\n\n SELECT * FROM sal_goal_and_actual\n UNION\n SELECT * FROM total_sal_goal_and_actual\n\n), combined_acv_sal AS (\n\n SELECT\n NVL(sal.date, acv.date) AS date,\n NVL(sal.closing_date, acv.closing_date) AS closing_date,\n NVL(sal.working_day_no, acv.working_day_no) AS working_day_no,\n NVL(sal.goal_process_internal_id, acv.goal_process_internal_id) AS goal_process_internal_id,\n NVL(sal.revenue_stream, acv.revenue_stream) AS revenue_stream,\n NVL(sal.segment, acv.segment) AS segment,\n NVL(sal.region, acv.region) AS region,\n NVL(sal.product, acv.product) AS product,\n NVL(sal.demand_gen_channel, acv.demand_gen_channel) AS demand_gen_channel,\n NVL(sal.deal_type, acv.deal_type) AS deal_type,\n NVL(sal.monthly_sal_goal, 0) AS monthly_sal_goal,\n NVL(sal.forecast_sal_goal, 0) AS forecast_sal_goal,\n NVL(acv.monthly_acv_goal, 0) AS monthly_acv_goal,\n NVL(acv.forecast_acv_goal, 0) AS forecast_acv_goal,\n NVL(sal.daily_sal, 0) AS daily_sal,\n NVL(acv.daily_acv, 0) AS daily_acv,\n NVL(acv.won_opportunities, 0) AS won_opportunities\n FROM sal_goal_and_actual_w_total AS sal\n FULL JOIN acv_goal_and_actual AS acv\n ON sal.date = acv.date\n AND sal.goal_id = acv.goal_id\n\n), combined_acv_sal_previous_years (\n\n SELECT\n current_performance.date,\n current_performance.goal_process_internal_id,\n current_performance.revenue_stream,\n current_performance.segment,\n current_performance.region,\n current_performance.demand_gen_channel,\n current_performance.product,\n current_performance.deal_type,\n current_performance.monthly_sal_goal,\n current_performance.forecast_sal_goal,\n current_performance.monthly_acv_goal,\n current_performance.forecast_acv_goal,\n current_performance.daily_sal,\n current_performance.daily_acv,\n current_performance.won_opportunities,\n NVL(SUM(previous_years_performance.daily_sal), 0) AS working_day_sal_in_past_years,\n NVL(SUM(previous_years_performance.daily_acv), 0) AS working_day_acv_in_past_years\n FROM combined_acv_sal AS current_performance\n LEFT JOIN combined_acv_sal AS previous_years_performance\n ON current_performance.date = current_performance.closing_date\n AND current_performance.working_day_no = previous_years_performance.working_day_no\n AND MONTH(current_performance.closing_date) = MONTH(previous_years_performance.closing_date)\n AND YEAR(current_performance.closing_date) > YEAR(previous_years_performance.closing_date)\n AND current_performance.product = previous_years_performance.product\n AND current_performance.demand_gen_channel = previous_years_performance.demand_gen_channel\n AND current_performance.goal_process_internal_id = previous_years_performance.goal_process_internal_id\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15\n\n), usage_previous_years (\n\n SELECT\n current_performance.date,\n current_performance.goal_process_internal_id,\n current_performance.revenue_stream,\n current_performance.segment,\n current_performance.region,\n current_performance.demand_gen_channel,\n current_performance.product,\n current_performance.deal_type,\n current_performance.monthly_sal_goal,\n current_performance.forecast_sal_goal,\n current_performance.monthly_acv_goal,\n current_performance.forecast_acv_goal,\n current_performance.daily_sal,\n current_performance.daily_acv,\n current_performance.won_opportunities,\n NVL(SUM(previous_years_performance.daily_sal), 0) AS working_day_sal_in_past_years,\n NVL(SUM(previous_years_performance.daily_acv), 0) AS working_day_acv_in_past_years\n FROM usage_goal_and_actual AS current_performance\n LEFT JOIN usage_goal_and_actual AS previous_years_performance\n ON current_performance.date = current_performance.date\n AND current_performance.working_day_no = previous_years_performance.working_day_no\n AND MONTH(current_performance.closing_date) = MONTH(previous_years_performance.closing_date)\n AND YEAR(current_performance.closing_date) > YEAR(previous_years_performance.closing_date)\n AND current_performance.product = previous_years_performance.product\n AND current_performance.demand_gen_channel = previous_years_performance.demand_gen_channel\n AND current_performance.goal_process_internal_id = previous_years_performance.goal_process_internal_id\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15\n\n), combined_performance_w_previous_years AS (\n\n SELECT * FROM combined_acv_sal_previous_years\n UNION\n SELECT * FROM usage_previous_years\n\n), previous_year_acv_sal_agg AS (\n\n SELECT\n date,\n DOUBLE(DAY(LAST_DAY(date))) AS month_days_no,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n monthly_sal_goal,\n forecast_sal_goal,\n monthly_acv_goal,\n forecast_acv_goal,\n won_opportunities,\n daily_sal,\n daily_acv,\n working_day_sal_in_past_years,\n working_day_acv_in_past_years,\n SUM(working_day_sal_in_past_years) OVER(PARTITION BY MONTH(date), YEAR(date), goal_process_internal_id, product, demand_gen_channel) AS monthly_sal_previous_years_agg,\n SUM(working_day_acv_in_past_years) OVER(PARTITION BY MONTH(date), YEAR(date), goal_process_internal_id, product, demand_gen_channel) AS monthly_acv_previous_years_agg\n FROM combined_performance_w_previous_years\n\n), operational_performance_daily_res AS (\n\n SELECT\n SHA2(CONCAT(date, deal_type, revenue_stream, segment, region, demand_gen_channel, product), 256) AS operational_performance_daily_id,\n date,\n TRUNC(date, 'MM') AS month,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n won_opportunities,\n daily_sal,\n daily_acv,\n monthly_sal_goal * IF(monthly_sal_previous_years_agg = 0, 1/month_days_no, working_day_sal_in_past_years/monthly_sal_previous_years_agg) AS expected_sal_daily,\n forecast_sal_goal * IF(monthly_sal_previous_years_agg = 0, 1/month_days_no, working_day_sal_in_past_years/monthly_sal_previous_years_agg) AS expected_forecast_sal_daily,\n monthly_acv_goal * IF(monthly_acv_previous_years_agg = 0, 1/month_days_no, working_day_acv_in_past_years/monthly_acv_previous_years_agg) AS expected_acv_daily,\n forecast_acv_goal * IF(monthly_acv_previous_years_agg = 0, 1/month_days_no, working_day_acv_in_past_years/monthly_acv_previous_years_agg) AS expected_forecast_acv_daily,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM previous_year_acv_sal_agg\n\n)\n\n-- Result --\nSELECT * FROM operational_performance_daily_res", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___gtm__acv_goal_daily", "package": null, "version": null}, {"name": "analytics___gtm__sal_goal_daily", "package": null, "version": null}, {"name": "analytics___new_revenue__deal_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___gtm__acv_goal_daily", "model.yoda.analytics___gtm__sal_goal_daily", "model.yoda.analytics___new_revenue__deal_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_analytics_sms_store_metrics_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___sms__store_metrics_daily\n\n), import_analytics_salesforce_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__account\n\n), import_analytics_gtm_acv_goal_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm__acv_goal_daily\n\n), import_analytics_gtm_sal_goal_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___gtm__sal_goal_daily\n\n), import_analytics_salesforce_new_revenue_deal_proudct AS (\n\n SELECT * FROM dev_dkruh1.analytics___new_revenue__deal_product\n\n-- Logic --\n\n), sales_related_deals AS (\n\n SELECT * FROM import_analytics_salesforce_new_revenue_deal_proudct\n WHERE is_account_role_owner = 1\n\n), sms_monthly_credits_usage AS (\n\n SELECT\n sms_store.date,\n IF(LOWER(sms_store.plan_type) = 'high_touch', sf_account.sales_segment, 'Total') AS sales_segment,\n IF(LOWER(sms_store.plan_type) = 'high_touch', 'HT', 'SS') AS plan_type,\n SUM(sms_store.usage_sum) AS total_credits_used\n FROM import_analytics_sms_store_metrics_daily AS sms_store\n LEFT JOIN import_analytics_salesforce_account AS sf_account\n ON sf_account.organization_key = sms_store.organization_key\n GROUP BY 1,2,3\n\n), acv_goal_and_actual AS (\n\n SELECT \n goal_daily.date,\n goal_daily.closing_date,\n goal_daily.working_day_no,\n goal_daily.revenue_stream,\n goal_daily.segment,\n goal_daily.region,\n goal_daily.demand_gen_channel,\n goal_daily.product,\n goal_daily.deal_type,\n goal_daily.monthly_acv_goal,\n goal_daily.forecast_acv_goal,\n goal_daily.goal_id,\n goal_daily.goal_process_internal_id,\n COUNT(DISTINCT acv_performance.opportunity_id) AS won_opportunities,\n NVL(SUM(CASE WHEN LOWER(goal_daily.product) IN ('ugc', 'loyalty') THEN acv_performance.product_line_acv\n WHEN LOWER(goal_daily.product) IN ('subscriptions', 'sms-earr') THEN acv_performance.product_line_earr END), 0) AS daily_acv\n FROM import_analytics_gtm_acv_goal_daily AS goal_daily\n LEFT JOIN sales_related_deals AS acv_performance\n ON goal_daily.date = acv_performance.close_date\n AND goal_daily.goal_process_internal_id = acv_performance.goal_process_internal_id\n AND LOWER(goal_daily.product_family) = LOWER(acv_performance.product)\n AND LOWER(acv_performance.stage) = 'won - sale'\n AND LOWER(acv_performance.attribution_channel) LIKE '%' || LOWER(goal_daily.goal_process_demand_gen_channel) || '%'\n WHERE LOWER(goal_daily.product) <> 'sms-usage'\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13\n\n), usage_goal_and_actual AS (\n\n SELECT\n goal_daily.date,\n goal_daily.closing_date,\n goal_daily.working_day_no,\n goal_daily.revenue_stream,\n goal_daily.segment,\n goal_daily.region,\n goal_daily.demand_gen_channel,\n goal_daily.product,\n goal_daily.deal_type,\n goal_daily.monthly_acv_goal,\n goal_daily.forecast_acv_goal,\n goal_daily.goal_id,\n goal_daily.goal_process_internal_id,\n 0 AS monthly_sal_goal,\n 0 AS forecast_sal_goal,\n 0 AS won_opportunities,\n 0 AS daily_sal,\n NVL(SUM(sms_usage.total_credits_used), 0) AS daily_acv\n FROM import_analytics_gtm_acv_goal_daily AS goal_daily\n LEFT JOIN sms_monthly_credits_usage AS sms_usage\n ON goal_daily.date = sms_usage.date\n AND LOWER(goal_daily.segment) = LOWER(sms_usage.sales_segment)\n AND LOWER(goal_daily.deal_type) = LOWER(sms_usage.plan_type)\n WHERE LOWER(goal_daily.product) = 'sms-usage'\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13\n\n), sal_goal_and_actual AS (\n\n SELECT\n goal_daily.date,\n goal_daily.closing_date,\n goal_daily.working_day_no,\n goal_daily.revenue_stream,\n goal_daily.segment,\n goal_daily.region,\n goal_daily.demand_gen_channel,\n goal_daily.product,\n goal_daily.deal_type,\n goal_daily.monthly_sal_goal,\n goal_daily.forecast_sal_goal,\n goal_daily.goal_id,\n goal_daily.goal_process_internal_id,\n COUNT(DISTINCT sal_performance.opportunity_id) AS daily_sal\n FROM import_analytics_gtm_sal_goal_daily AS goal_daily\n LEFT JOIN sales_related_deals AS sal_performance\n ON goal_daily.date = sal_performance.entered_demo_date\n AND goal_daily.goal_process_internal_id = sal_performance.goal_process_internal_id\n AND LOWER(goal_daily.product) = LOWER(sal_performance.product)\n AND LOWER(sal_performance.attribution_channel) LIKE '%' || LOWER(goal_daily.goal_process_demand_gen_channel) || '%'\n WHERE LOWER(goal_daily.product) <> 'total'\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13\n\n), total_sal_goal_and_actual AS (\n\n SELECT\n goal_daily.date,\n goal_daily.closing_date,\n goal_daily.working_day_no,\n goal_daily.revenue_stream,\n goal_daily.segment,\n goal_daily.region,\n goal_daily.demand_gen_channel,\n goal_daily.product,\n goal_daily.deal_type,\n goal_daily.monthly_sal_goal,\n goal_daily.forecast_sal_goal,\n goal_daily.goal_id,\n goal_daily.goal_process_internal_id,\n COUNT(DISTINCT sal_performance.opportunity_id) AS daily_sal\n FROM import_analytics_gtm_sal_goal_daily AS goal_daily\n LEFT JOIN sales_related_deals AS sal_performance\n ON goal_daily.date = sal_performance.entered_demo_date\n AND goal_daily.goal_process_internal_id = sal_performance.goal_process_internal_id\n AND LOWER(sal_performance.attribution_channel) LIKE '%' || LOWER(goal_daily.goal_process_demand_gen_channel) || '%'\n WHERE LOWER(goal_daily.product) = 'total'\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13\n\n), sal_goal_and_actual_w_total AS (\n\n SELECT * FROM sal_goal_and_actual\n UNION\n SELECT * FROM total_sal_goal_and_actual\n\n), combined_acv_sal AS (\n\n SELECT\n NVL(sal.date, acv.date) AS date,\n NVL(sal.closing_date, acv.closing_date) AS closing_date,\n NVL(sal.working_day_no, acv.working_day_no) AS working_day_no,\n NVL(sal.goal_process_internal_id, acv.goal_process_internal_id) AS goal_process_internal_id,\n NVL(sal.revenue_stream, acv.revenue_stream) AS revenue_stream,\n NVL(sal.segment, acv.segment) AS segment,\n NVL(sal.region, acv.region) AS region,\n NVL(sal.product, acv.product) AS product,\n NVL(sal.demand_gen_channel, acv.demand_gen_channel) AS demand_gen_channel,\n NVL(sal.deal_type, acv.deal_type) AS deal_type,\n NVL(sal.monthly_sal_goal, 0) AS monthly_sal_goal,\n NVL(sal.forecast_sal_goal, 0) AS forecast_sal_goal,\n NVL(acv.monthly_acv_goal, 0) AS monthly_acv_goal,\n NVL(acv.forecast_acv_goal, 0) AS forecast_acv_goal,\n NVL(sal.daily_sal, 0) AS daily_sal,\n NVL(acv.daily_acv, 0) AS daily_acv,\n NVL(acv.won_opportunities, 0) AS won_opportunities\n FROM sal_goal_and_actual_w_total AS sal\n FULL JOIN acv_goal_and_actual AS acv\n ON sal.date = acv.date\n AND sal.goal_id = acv.goal_id\n\n), combined_acv_sal_previous_years (\n\n SELECT\n current_performance.date,\n current_performance.goal_process_internal_id,\n current_performance.revenue_stream,\n current_performance.segment,\n current_performance.region,\n current_performance.demand_gen_channel,\n current_performance.product,\n current_performance.deal_type,\n current_performance.monthly_sal_goal,\n current_performance.forecast_sal_goal,\n current_performance.monthly_acv_goal,\n current_performance.forecast_acv_goal,\n current_performance.daily_sal,\n current_performance.daily_acv,\n current_performance.won_opportunities,\n NVL(SUM(previous_years_performance.daily_sal), 0) AS working_day_sal_in_past_years,\n NVL(SUM(previous_years_performance.daily_acv), 0) AS working_day_acv_in_past_years\n FROM combined_acv_sal AS current_performance\n LEFT JOIN combined_acv_sal AS previous_years_performance\n ON current_performance.date = current_performance.closing_date\n AND current_performance.working_day_no = previous_years_performance.working_day_no\n AND MONTH(current_performance.closing_date) = MONTH(previous_years_performance.closing_date)\n AND YEAR(current_performance.closing_date) > YEAR(previous_years_performance.closing_date)\n AND current_performance.product = previous_years_performance.product\n AND current_performance.demand_gen_channel = previous_years_performance.demand_gen_channel\n AND current_performance.goal_process_internal_id = previous_years_performance.goal_process_internal_id\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15\n\n), usage_previous_years (\n\n SELECT\n current_performance.date,\n current_performance.goal_process_internal_id,\n current_performance.revenue_stream,\n current_performance.segment,\n current_performance.region,\n current_performance.demand_gen_channel,\n current_performance.product,\n current_performance.deal_type,\n current_performance.monthly_sal_goal,\n current_performance.forecast_sal_goal,\n current_performance.monthly_acv_goal,\n current_performance.forecast_acv_goal,\n current_performance.daily_sal,\n current_performance.daily_acv,\n current_performance.won_opportunities,\n NVL(SUM(previous_years_performance.daily_sal), 0) AS working_day_sal_in_past_years,\n NVL(SUM(previous_years_performance.daily_acv), 0) AS working_day_acv_in_past_years\n FROM usage_goal_and_actual AS current_performance\n LEFT JOIN usage_goal_and_actual AS previous_years_performance\n ON current_performance.date = current_performance.date\n AND current_performance.working_day_no = previous_years_performance.working_day_no\n AND MONTH(current_performance.closing_date) = MONTH(previous_years_performance.closing_date)\n AND YEAR(current_performance.closing_date) > YEAR(previous_years_performance.closing_date)\n AND current_performance.product = previous_years_performance.product\n AND current_performance.demand_gen_channel = previous_years_performance.demand_gen_channel\n AND current_performance.goal_process_internal_id = previous_years_performance.goal_process_internal_id\n GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15\n\n), combined_performance_w_previous_years AS (\n\n SELECT * FROM combined_acv_sal_previous_years\n UNION\n SELECT * FROM usage_previous_years\n\n), previous_year_acv_sal_agg AS (\n\n SELECT\n date,\n DOUBLE(DAY(LAST_DAY(date))) AS month_days_no,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n monthly_sal_goal,\n forecast_sal_goal,\n monthly_acv_goal,\n forecast_acv_goal,\n won_opportunities,\n daily_sal,\n daily_acv,\n working_day_sal_in_past_years,\n working_day_acv_in_past_years,\n SUM(working_day_sal_in_past_years) OVER(PARTITION BY MONTH(date), YEAR(date), goal_process_internal_id, product, demand_gen_channel) AS monthly_sal_previous_years_agg,\n SUM(working_day_acv_in_past_years) OVER(PARTITION BY MONTH(date), YEAR(date), goal_process_internal_id, product, demand_gen_channel) AS monthly_acv_previous_years_agg\n FROM combined_performance_w_previous_years\n\n), operational_performance_daily_res AS (\n\n SELECT\n SHA2(CONCAT(date, deal_type, revenue_stream, segment, region, demand_gen_channel, product), 256) AS operational_performance_daily_id,\n date,\n TRUNC(date, 'MM') AS month,\n deal_type,\n revenue_stream,\n segment,\n region,\n demand_gen_channel,\n product,\n won_opportunities,\n daily_sal,\n daily_acv,\n monthly_sal_goal * IF(monthly_sal_previous_years_agg = 0, 1/month_days_no, working_day_sal_in_past_years/monthly_sal_previous_years_agg) AS expected_sal_daily,\n forecast_sal_goal * IF(monthly_sal_previous_years_agg = 0, 1/month_days_no, working_day_sal_in_past_years/monthly_sal_previous_years_agg) AS expected_forecast_sal_daily,\n monthly_acv_goal * IF(monthly_acv_previous_years_agg = 0, 1/month_days_no, working_day_acv_in_past_years/monthly_acv_previous_years_agg) AS expected_acv_daily,\n forecast_acv_goal * IF(monthly_acv_previous_years_agg = 0, 1/month_days_no, working_day_acv_in_past_years/monthly_acv_previous_years_agg) AS expected_forecast_acv_daily,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM previous_year_acv_sal_agg\n\n)\n\n-- Result --\nSELECT * FROM operational_performance_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___partners__manager_performance_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___partners__manager_performance_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.sql", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.sql", "unique_id": "model.yoda.analytics___partners__manager_performance_monthly", "fqn": ["yoda", "analytics", "partners", "marts", "analytics___partners__manager_performance_monthly", "analytics___partners__manager_performance_monthly"], "alias": "analytics___partners__manager_performance_monthly", "checksum": {"name": "sha256", "checksum": "b1c0733b0d5a6dc07de586fda2bf186bddbdd7b714b32010268f6b976749092a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "partners", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "partners"], "description": "A modeled table of monthly sal and acv/earr performance for partner managers with goals | PK & Granularity: partner_manager_id, month", "columns": {"partner_manager_id": {"name": "partner_manager_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "quarter": {"name": "quarter", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "full_name": {"name": "full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "partner manager's team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team_leader": {"name": "team_leader", "description": "partner manager's team leader name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sal_cnt": {"name": "sal_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_pipeline_in_usd": {"name": "created_pipeline_in_usd", "description": "Created pipeline using New ACV, by the opportunity entered demo date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "open_pipeline": {"name": "open_pipeline", "description": "pipeline by estimated close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "weighted_pipeline": {"name": "weighted_pipeline", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "open_weighted_pipeline": {"name": "open_weighted_pipeline", "description": "weighted pipeline by estimated close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "xsell_won_bookings": {"name": "xsell_won_bookings", "description": "This field zeros if it's not a partner xsell else it's the created pipeline", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_sell_won_bookings": {"name": "new_sell_won_bookings", "description": "This field zeros if it's a partner xsell else it's the created pipeline", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "won_bookings": {"name": "won_bookings", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "quarterly_bookings_goal": {"name": "quarterly_bookings_goal", "description": "total bookings by close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "quarterly_sal_goal": {"name": "quarterly_sal_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["partners", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082644.083679, "relation_name": "dev_dkruh1.analytics___partners__manager_performance_monthly", "raw_code": "-- Import --\n\nWITH import_analytics_partners_partner_engagement_opportunity AS (\n\n SELECT * FROM {{ ref('analytics___partners__partner_engagement_opportunity') }}\n\n), import_analytic_partners_manager_goals AS (\n\n SELECT * FROM {{ ref('analytics___partners_stg__manager_goals') }}\n\n), import_dim_sf_users_scd AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__dim_sf_users_scd') }}\n\n-- Logic --\n\n), monthly_performance_by_enetered_demo_date AS (\n\n SELECT\n original_referrer_owner_id AS partner_manager_id,\n TRUNC(entered_demo_date, 'MM') AS month,\n COUNT(DISTINCT pe_opportunity.opportunity_id) AS sal_cnt,\n SUM(created_pipeline_in_usd) AS created_pipeline_in_usd\n FROM import_analytics_partners_partner_engagement_opportunity AS pe_opportunity\n WHERE ISNOTNULL(entered_demo_date)\n AND ISNOTNULL(original_referrer_owner_id)\n GROUP BY 1,2\n\n), monthly_performance_by_close_date AS (\n\n SELECT\n original_referrer_owner_id AS partner_manager_id,\n TRUNC(close_date, 'MM') AS month,\n SUM(open_pipeline_in_usd) AS open_pipeline,\n SUM(weighted_pipeline_in_usd) AS weighted_pipeline,\n SUM(open_weighted_pipeline_in_usd) AS open_weighted_pipeline,\n SUM(xsell_won_bookings_in_usd) AS xsell_won_bookings,\n SUM(new_sell_won_bookings_in_usd) AS new_sell_won_bookings,\n SUM(won_bookings_in_usd) AS won_bookings\n FROM import_analytics_partners_partner_engagement_opportunity AS pe_opportunity\n WHERE ISNOTNULL(close_date)\n AND ISNOTNULL(original_referrer_owner_id)\n GROUP BY 1,2\n\n), monthly_performance_combined (\n\n SELECT\n NVL(demo_date_performance.partner_manager_id, close_date_performance.partner_manager_id) AS partner_manager_id,\n NVL(demo_date_performance.month, close_date_performance.month) AS month,\n NVL(demo_date_performance.sal_cnt, 0) AS sal_cnt,\n NVL(demo_date_performance.created_pipeline_in_usd, 0) AS created_pipeline_in_usd,\n NVL(close_date_performance.open_pipeline, 0) AS open_pipeline,\n NVL(close_date_performance.weighted_pipeline, 0) AS weighted_pipeline,\n NVL(close_date_performance.open_weighted_pipeline, 0) AS open_weighted_pipeline,\n NVL(close_date_performance.xsell_won_bookings, 0) AS xsell_won_bookings,\n NVL(close_date_performance.new_sell_won_bookings, 0) AS new_sell_won_bookings,\n NVL(close_date_performance.won_bookings, 0) AS won_bookings\n FROM monthly_performance_by_enetered_demo_date AS demo_date_performance\n FULL JOIN monthly_performance_by_close_date AS close_date_performance\n ON demo_date_performance.partner_manager_id = close_date_performance.partner_manager_id\n AND demo_date_performance.month = close_date_performance.month\n\n), partner_manager_performance_monthly_res AS (\n\n SELECT\n NVL(performance.partner_manager_id, goal.partner_manager_id) AS partner_manager_id,\n performance.month,\n TRUNC(performance.month, 'QUARTER') AS quarter,\n user.sf_user_full_name AS full_name,\n goal.team,\n goal.team_leader,\n performance.sal_cnt,\n performance.created_pipeline_in_usd,\n performance.open_pipeline,\n performance.weighted_pipeline,\n performance.open_weighted_pipeline,\n performance.xsell_won_bookings,\n performance.new_sell_won_bookings,\n performance.won_bookings,\n goal.quarterly_bookings_goal,\n goal.quarterly_sal_goal,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM monthly_performance_combined AS performance\n LEFT JOIN import_analytic_partners_manager_goals AS goal\n ON performance.partner_manager_id = goal.partner_manager_id\n AND TRUNC(performance.month, 'QUARTER') = goal.quarter\n LEFT JOIN import_dim_sf_users_scd AS user\n ON NVL(performance.partner_manager_id, goal.partner_manager_id) = user.sf_user_id\n AND user.scd_cur_ind = 1\n\n)\n\n-- Result --\n\nSELECT * FROM partner_manager_performance_monthly_res", "language": "sql", "refs": [{"name": "analytics___partners__partner_engagement_opportunity", "package": null, "version": null}, {"name": "analytics___partners_stg__manager_goals", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_users_scd", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___partners__partner_engagement_opportunity", "model.yoda.analytics___partners_stg__manager_goals", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_analytics_partners_partner_engagement_opportunity AS (\n\n SELECT * FROM dev_dkruh1.analytics___partners__partner_engagement_opportunity\n\n), import_analytic_partners_manager_goals AS (\n\n SELECT * FROM dev_dkruh1.analytics___partners_stg__manager_goals\n\n), import_dim_sf_users_scd AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__dim_sf_users_scd\n\n-- Logic --\n\n), monthly_performance_by_enetered_demo_date AS (\n\n SELECT\n original_referrer_owner_id AS partner_manager_id,\n TRUNC(entered_demo_date, 'MM') AS month,\n COUNT(DISTINCT pe_opportunity.opportunity_id) AS sal_cnt,\n SUM(created_pipeline_in_usd) AS created_pipeline_in_usd\n FROM import_analytics_partners_partner_engagement_opportunity AS pe_opportunity\n WHERE ISNOTNULL(entered_demo_date)\n AND ISNOTNULL(original_referrer_owner_id)\n GROUP BY 1,2\n\n), monthly_performance_by_close_date AS (\n\n SELECT\n original_referrer_owner_id AS partner_manager_id,\n TRUNC(close_date, 'MM') AS month,\n SUM(open_pipeline_in_usd) AS open_pipeline,\n SUM(weighted_pipeline_in_usd) AS weighted_pipeline,\n SUM(open_weighted_pipeline_in_usd) AS open_weighted_pipeline,\n SUM(xsell_won_bookings_in_usd) AS xsell_won_bookings,\n SUM(new_sell_won_bookings_in_usd) AS new_sell_won_bookings,\n SUM(won_bookings_in_usd) AS won_bookings\n FROM import_analytics_partners_partner_engagement_opportunity AS pe_opportunity\n WHERE ISNOTNULL(close_date)\n AND ISNOTNULL(original_referrer_owner_id)\n GROUP BY 1,2\n\n), monthly_performance_combined (\n\n SELECT\n NVL(demo_date_performance.partner_manager_id, close_date_performance.partner_manager_id) AS partner_manager_id,\n NVL(demo_date_performance.month, close_date_performance.month) AS month,\n NVL(demo_date_performance.sal_cnt, 0) AS sal_cnt,\n NVL(demo_date_performance.created_pipeline_in_usd, 0) AS created_pipeline_in_usd,\n NVL(close_date_performance.open_pipeline, 0) AS open_pipeline,\n NVL(close_date_performance.weighted_pipeline, 0) AS weighted_pipeline,\n NVL(close_date_performance.open_weighted_pipeline, 0) AS open_weighted_pipeline,\n NVL(close_date_performance.xsell_won_bookings, 0) AS xsell_won_bookings,\n NVL(close_date_performance.new_sell_won_bookings, 0) AS new_sell_won_bookings,\n NVL(close_date_performance.won_bookings, 0) AS won_bookings\n FROM monthly_performance_by_enetered_demo_date AS demo_date_performance\n FULL JOIN monthly_performance_by_close_date AS close_date_performance\n ON demo_date_performance.partner_manager_id = close_date_performance.partner_manager_id\n AND demo_date_performance.month = close_date_performance.month\n\n), partner_manager_performance_monthly_res AS (\n\n SELECT\n NVL(performance.partner_manager_id, goal.partner_manager_id) AS partner_manager_id,\n performance.month,\n TRUNC(performance.month, 'QUARTER') AS quarter,\n user.sf_user_full_name AS full_name,\n goal.team,\n goal.team_leader,\n performance.sal_cnt,\n performance.created_pipeline_in_usd,\n performance.open_pipeline,\n performance.weighted_pipeline,\n performance.open_weighted_pipeline,\n performance.xsell_won_bookings,\n performance.new_sell_won_bookings,\n performance.won_bookings,\n goal.quarterly_bookings_goal,\n goal.quarterly_sal_goal,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM monthly_performance_combined AS performance\n LEFT JOIN import_analytic_partners_manager_goals AS goal\n ON performance.partner_manager_id = goal.partner_manager_id\n AND TRUNC(performance.month, 'QUARTER') = goal.quarter\n LEFT JOIN import_dim_sf_users_scd AS user\n ON NVL(performance.partner_manager_id, goal.partner_manager_id) = user.sf_user_id\n AND user.scd_cur_ind = 1\n\n)\n\n-- Result --\n\nSELECT * FROM partner_manager_performance_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___partners__partner_engagement_opportunity": {"database": null, "schema": "dev_dkruh1", "name": "analytics___partners__partner_engagement_opportunity", "resource_type": "model", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.sql", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.sql", "unique_id": "model.yoda.analytics___partners__partner_engagement_opportunity", "fqn": ["yoda", "analytics", "partners", "marts", "analytics___partners__partner_engagement_opportunity", "analytics___partners__partner_engagement_opportunity"], "alias": "analytics___partners__partner_engagement_opportunity", "checksum": {"name": "sha256", "checksum": "fc595463d315678f27d04c163af3ba10a8f5aef99c8e0b01c4f74ef17c314eb8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "partners"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "partners"], "description": "The table's level of granularity is Partner Engagement and Opportunity and it's the basis of the Partners domain.\nPK: {partner_engagement_id,opportunity ID}.\nYou can use it for aggregations and Partners funnel analysis: from PE -> SAL -> SQL -> Won/Lost.", "columns": {"partner_engagement_id": {"name": "partner_engagement_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_account_id": {"name": "partner_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_account_name": {"name": "partner_account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_id": {"name": "referred_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_name": {"name": "referred_account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_engagement_product_interest": {"name": "partner_engagement_product_interest", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_engagement_referral_date": {"name": "partner_engagement_referral_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "converted_from_heads_up_to_referral_date": {"name": "converted_from_heads_up_to_referral_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "partner_engagement_rev_share_rate": {"name": "partner_engagement_rev_share_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "partner_engagement_referral_sub_type": {"name": "partner_engagement_referral_sub_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_engagement_referral_type": {"name": "partner_engagement_referral_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_name": {"name": "opportunity_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date": {"name": "start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "entered_demo_date": {"name": "entered_demo_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "close_date": {"name": "close_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_type": {"name": "opportunity_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_stage": {"name": "opportunity_stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_estimated_monthly_order_range": {"name": "opportunity_estimated_monthly_order_range", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_original_owner_role": {"name": "opportunity_original_owner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_order_sales_segment": {"name": "opportunity_order_sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_account_referrer_type": {"name": "partner_account_referrer_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_account_organization_key": {"name": "partner_account_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_account_owner_full_name": {"name": "partner_account_owner_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_account_owner_role": {"name": "partner_account_owner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_organization_key": {"name": "referred_account_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_estimated_monthly_orders_volume": {"name": "referred_account_estimated_monthly_orders_volume", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_industry_name": {"name": "referred_account_industry_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_country": {"name": "referred_account_country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_current_contract_cnt": {"name": "referred_account_current_contract_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "referred_account_packages": {"name": "referred_account_packages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_products_in_tam_list": {"name": "referred_account_products_in_tam_list", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_platform": {"name": "referred_account_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_cs_tags": {"name": "referred_account_cs_tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_owner_id": {"name": "original_referrer_owner_id", "description": "This is the ID of the Partner Manager who gets credit for the Partner Referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_owner_full_name": {"name": "original_referrer_owner_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_owner_role": {"name": "original_referrer_owner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_owner_manager_id": {"name": "original_referrer_owner_manager_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_owner_manager_full_name": {"name": "original_referrer_owner_manager_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager_id": {"name": "partner_manager_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_estimated_arr_in_usd": {"name": "created_estimated_arr_in_usd", "description": "The total eARR of: SMS, Email, Subscriptions, Gold and Prime", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "open_estimated_arr_in_usd": {"name": "open_estimated_arr_in_usd", "description": "The total eARR of: SMS, Email, Subscriptions, Gold and Prime, for all opps that are not in of of the stages: Won/ Lost/Lost after won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "weighted_estimated_arr_in_usd": {"name": "weighted_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(23,4)"}, "open_weighted_estimated_arr_in_usd": {"name": "open_weighted_estimated_arr_in_usd", "description": "The total eARR of: SMS, Email, Subscriptions, Gold and Prime, multiplied by the won probability, for all opps that are not in of of the stages: Won/ Lost/Lost after won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(23,4)"}, "won_estimated_arr_in_usd": {"name": "won_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "upsell_acv_in_usd": {"name": "upsell_acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_pipeline_in_usd": {"name": "created_pipeline_in_usd", "description": "Created pipeline using New ACV, should be measured by the opportunity entered demo date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "open_pipeline_in_usd": {"name": "open_pipeline_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "weighted_pipeline_in_usd": {"name": "weighted_pipeline_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "open_weighted_pipeline_in_usd": {"name": "open_weighted_pipeline_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "won_bookings_in_usd": {"name": "won_bookings_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "xsell_won_bookings_in_usd": {"name": "xsell_won_bookings_in_usd", "description": "This field zeros if it's not a partner xsell else it's the created pipeline", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_sell_won_bookings_in_usd": {"name": "new_sell_won_bookings_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opportunity_won_sale_probability": {"name": "opportunity_won_sale_probability", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "delta_acv_in_usd": {"name": "delta_acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "weighted_delta_acv_in_usd": {"name": "weighted_delta_acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "open_delta_acv_in_usd": {"name": "open_delta_acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "won_delta_acv_in_usd": {"name": "won_delta_acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_acv_in_usd_sum": {"name": "sms_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "won_sms_acv_in_usd_sum": {"name": "won_sms_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "sms_estimated_arr_in_usd": {"name": "sms_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "weighted_sms_estimated_arr_in_usd": {"name": "weighted_sms_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(21,4)"}, "won_sms_estimated_arr_in_usd": {"name": "won_sms_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "sms_delta_earr": {"name": "sms_delta_earr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_estimated_arr_in_usd": {"name": "email_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "weighted_email_estimated_arr_in_usd": {"name": "weighted_email_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(21,4)"}, "won_email_estimated_arr_in_usd": {"name": "won_email_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "reviews_acv_in_usd_sum": {"name": "reviews_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "won_reviews_acv_in_usd_sum": {"name": "won_reviews_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "won_vms_acv_in_usd_sum": {"name": "won_vms_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "vms_acv_in_usd_sum": {"name": "vms_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "insights_acv_in_usd_sum": {"name": "insights_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "prime_estimated_arr_in_usd": {"name": "prime_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "weighted_prime_estimated_arr_in_usd": {"name": "weighted_prime_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(21,4)"}, "won_prime_estimated_arr_in_usd": {"name": "won_prime_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "loyalty_acv_in_usd_sum": {"name": "loyalty_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "won_loyalty_acv_in_usd_sum": {"name": "won_loyalty_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "gold_estimated_arr_in_usd": {"name": "gold_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "weighted_gold_estimated_arr_in_usd": {"name": "weighted_gold_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(21,4)"}, "won_gold_estimated_arr_in_usd": {"name": "won_gold_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "subscriptions_acv_in_usd_sum": {"name": "subscriptions_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "won_subscriptions_acv_in_usd_sum": {"name": "won_subscriptions_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "subscriptions_estimated_arr_in_usd": {"name": "subscriptions_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "weighted_subscriptions_estimated_arr_in_usd": {"name": "weighted_subscriptions_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(21,4)"}, "won_subscriptions_estimated_arr_in_usd": {"name": "won_subscriptions_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "subscriptions_delta_earr": {"name": "subscriptions_delta_earr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_partner_engagement_created_mtd": {"name": "is_partner_engagement_created_mtd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_partner_engagement_created_qtd": {"name": "is_partner_engagement_created_qtd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_opportunity_created_mtd": {"name": "is_opportunity_created_mtd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_opportunity_created_qtd": {"name": "is_opportunity_created_qtd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_opportunity_entered_demo_mtd": {"name": "is_opportunity_entered_demo_mtd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_opportunity_entered_demo_qtd": {"name": "is_opportunity_entered_demo_qtd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_opportunity_closed_mtd": {"name": "is_opportunity_closed_mtd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_opportunity_closed_qtd": {"name": "is_opportunity_closed_qtd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights": {"name": "is_insights", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email_intent": {"name": "is_email_intent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_current_contract": {"name": "is_current_contract", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sal": {"name": "is_sal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_won_sale": {"name": "is_won_sale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_closed": {"name": "is_closed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost": {"name": "is_lost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_bundle": {"name": "is_bundle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_partner_upsell": {"name": "is_partner_upsell", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_partner_opportunity": {"name": "is_partner_opportunity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "partner_engagement_created_date": {"name": "partner_engagement_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_created_at": {"name": "opportunity_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "partners"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082644.196438, "relation_name": "dev_dkruh1.analytics___partners__partner_engagement_opportunity", "raw_code": "WITH import_opportunity AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce__opportunity') }}\n WHERE is_partner_opportunity = 1\n\n), import_partner_engagement AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce__partner_engagement') }}\n\n), partner_engagement_opportunity AS (\n\n SELECT\n partner_engagement.partner_engagement_id,\n opportunity.opportunity_id,\n opportunity.original_referrer_id AS partner_account_id,\n opportunity.partner_account_name,\n opportunity.account_id AS referred_account_id,\n partner_engagement.referred_account_name,\n partner_engagement.product_interest AS partner_engagement_product_interest,\n partner_engagement.referral_date AS partner_engagement_referral_date,\n partner_engagement.converted_from_heads_up_to_referral_date AS converted_from_heads_up_to_referral_date,\n partner_engagement.rev_share_rate AS partner_engagement_rev_share_rate,\n partner_engagement.referral_sub_type AS partner_engagement_referral_sub_type,\n partner_engagement.referral_type AS partner_engagement_referral_type,\n opportunity.opportunity_name,\n opportunity.start_date,\n opportunity.entered_demo_date,\n opportunity.close_date,\n opportunity.type AS opportunity_type,\n opportunity.stage AS opportunity_stage,\n opportunity.estimated_monthly_order_range AS opportunity_estimated_monthly_order_range,\n opportunity.original_owner_role AS opportunity_original_owner_role,\n opportunity.sales_region,\n opportunity.order_sales_segment AS opportunity_order_sales_segment,\n opportunity.partner_account_referrer_type, \n partner_engagement.partner_account_organization_key,\n partner_engagement.partner_account_owner_full_name,\n partner_engagement.partner_account_owner_role,\n partner_engagement.referred_account_organization_key,\n partner_engagement.referred_account_estimated_monthly_orders_volume,\n partner_engagement.referred_account_industry_name,\n partner_engagement.referred_account_country,\n partner_engagement.referred_account_current_contract_cnt,\n partner_engagement.referred_account_packages,\n partner_engagement.referred_account_products_in_tam_list,\n partner_engagement.referred_account_platform,\n partner_engagement.referred_account_cs_tags, \n partner_engagement.original_referrer_owner_id,\n partner_engagement.original_referrer_owner_full_name,\n partner_engagement.original_referrer_owner_role,\n partner_engagement.original_referrer_owner_manager_id,\n partner_engagement.original_referrer_owner_manager_full_name,\n partner_engagement.partner_manager_id,\n opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd AS created_estimated_arr_in_usd,\n IF(opportunity.is_closed = 0, opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd, 0) AS open_estimated_arr_in_usd,\n (opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd) * opportunity.won_sale_probability AS weighted_estimated_arr_in_usd,\n IF(opportunity.is_closed = 0, (opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd) * opportunity.won_sale_probability, 0) AS open_weighted_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd, 0) AS won_estimated_arr_in_usd,\n opportunity.upsell_acv_in_usd,\n opportunity.upsell_acv_in_usd + opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd AS created_pipeline_in_usd,\n IF(opportunity.is_closed = 0, opportunity.created_pipeline_in_usd, 0) AS open_pipeline_in_usd,\n opportunity.won_sale_probability * opportunity.created_pipeline_in_usd AS weighted_pipeline_in_usd,\n IF(opportunity.is_closed = 0, opportunity.won_sale_probability * opportunity.created_pipeline_in_usd, 0) AS open_weighted_pipeline_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.created_pipeline_in_usd, 0) AS won_bookings_in_usd,\n IF(opportunity.is_won_sale = 1 AND opportunity.is_partner_upsell = 1 , opportunity.created_pipeline_in_usd, 0) AS xsell_won_bookings_in_usd,\n IF(opportunity.is_won_sale = 1 AND opportunity.is_partner_upsell = 0 , opportunity.created_pipeline_in_usd, 0) AS new_sell_won_bookings_in_usd,\n opportunity.won_sale_probability AS opportunity_won_sale_probability,\n opportunity.delta_acv_in_usd,\n opportunity.weighted_delta_acv_in_usd,\n opportunity.open_delta_acv_in_usd,\n opportunity.won_delta_acv_in_usd,\n opportunity.sms_acv_in_usd_sum,\n opportunity.won_sms_acv_in_usd_sum,\n opportunity.sms_estimated_arr_in_usd,\n opportunity.weighted_sms_estimated_arr_in_usd,\n opportunity.won_sms_estimated_arr_in_usd, \n opportunity.sms_delta_earr,\n opportunity.email_estimated_arr_in_usd,\n opportunity.weighted_email_estimated_arr_in_usd,\n opportunity.won_email_estimated_arr_in_usd, \n opportunity.reviews_acv_in_usd_sum,\n opportunity.won_reviews_acv_in_usd_sum,\n opportunity.won_vms_acv_in_usd_sum,\n opportunity.vms_acv_in_usd_sum,\n opportunity.insights_acv_in_usd_sum,\n opportunity.prime_estimated_arr_in_usd,\n opportunity.weighted_prime_estimated_arr_in_usd,\n opportunity.won_prime_estimated_arr_in_usd, \n opportunity.loyalty_acv_in_usd_sum,\n opportunity.won_loyalty_acv_in_usd_sum,\n opportunity.gold_estimated_arr_in_usd,\n opportunity.weighted_gold_estimated_arr_in_usd,\n opportunity.won_gold_estimated_arr_in_usd,\n opportunity.subscriptions_acv_in_usd_sum,\n opportunity.won_subscriptions_acv_in_usd_sum,\n opportunity.subscriptions_estimated_arr_in_usd,\n opportunity.weighted_subscriptions_estimated_arr_in_usd,\n opportunity.won_subscriptions_estimated_arr_in_usd,\n opportunity.subscriptions_delta_earr,\n partner_engagement.is_created_mtd AS is_partner_engagement_created_mtd,\n partner_engagement.is_created_qtd AS is_partner_engagement_created_qtd,\n opportunity.is_created_mtd AS is_opportunity_created_mtd,\n opportunity.is_created_qtd AS is_opportunity_created_qtd,\n opportunity.is_entered_demo_mtd AS is_opportunity_entered_demo_mtd,\n opportunity.is_entered_demo_qtd AS is_opportunity_entered_demo_qtd,\n opportunity.is_closed_mtd AS is_opportunity_closed_mtd,\n opportunity.is_closed_qtd AS is_opportunity_closed_qtd,\n opportunity.is_reviews,\n opportunity.is_vms,\n opportunity.is_insights,\n opportunity.is_loyalty,\n opportunity.is_sms,\n opportunity.is_subscriptions,\n opportunity.is_email_intent,\n opportunity.is_current_contract,\n opportunity.is_sal,\n opportunity.is_won_sale,\n opportunity.is_closed,\n opportunity.is_lost,\n opportunity.is_lost_after_won,\n opportunity.is_bundle,\n opportunity.is_partner_upsell,\n opportunity.is_partner_opportunity,\n partner_engagement.created_date AS partner_engagement_created_date,\n opportunity.created_at AS opportunity_created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_partner_engagement AS partner_engagement \n LEFT JOIN import_opportunity AS opportunity\n ON opportunity.partner_engagement_id = partner_engagement.partner_engagement_id \n WHERE LOWER(partner_engagement.referral_sub_type) in ('referral', 'heads up' , 'influence')\n)\n\nSELECT *\nFROM partner_engagement_opportunity", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce__partner_engagement", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__partner_engagement"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.sql", "compiled": true, "compiled_code": "WITH import_opportunity AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce__opportunity\n WHERE is_partner_opportunity = 1\n\n), import_partner_engagement AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce__partner_engagement\n\n), partner_engagement_opportunity AS (\n\n SELECT\n partner_engagement.partner_engagement_id,\n opportunity.opportunity_id,\n opportunity.original_referrer_id AS partner_account_id,\n opportunity.partner_account_name,\n opportunity.account_id AS referred_account_id,\n partner_engagement.referred_account_name,\n partner_engagement.product_interest AS partner_engagement_product_interest,\n partner_engagement.referral_date AS partner_engagement_referral_date,\n partner_engagement.converted_from_heads_up_to_referral_date AS converted_from_heads_up_to_referral_date,\n partner_engagement.rev_share_rate AS partner_engagement_rev_share_rate,\n partner_engagement.referral_sub_type AS partner_engagement_referral_sub_type,\n partner_engagement.referral_type AS partner_engagement_referral_type,\n opportunity.opportunity_name,\n opportunity.start_date,\n opportunity.entered_demo_date,\n opportunity.close_date,\n opportunity.type AS opportunity_type,\n opportunity.stage AS opportunity_stage,\n opportunity.estimated_monthly_order_range AS opportunity_estimated_monthly_order_range,\n opportunity.original_owner_role AS opportunity_original_owner_role,\n opportunity.sales_region,\n opportunity.order_sales_segment AS opportunity_order_sales_segment,\n opportunity.partner_account_referrer_type, \n partner_engagement.partner_account_organization_key,\n partner_engagement.partner_account_owner_full_name,\n partner_engagement.partner_account_owner_role,\n partner_engagement.referred_account_organization_key,\n partner_engagement.referred_account_estimated_monthly_orders_volume,\n partner_engagement.referred_account_industry_name,\n partner_engagement.referred_account_country,\n partner_engagement.referred_account_current_contract_cnt,\n partner_engagement.referred_account_packages,\n partner_engagement.referred_account_products_in_tam_list,\n partner_engagement.referred_account_platform,\n partner_engagement.referred_account_cs_tags, \n partner_engagement.original_referrer_owner_id,\n partner_engagement.original_referrer_owner_full_name,\n partner_engagement.original_referrer_owner_role,\n partner_engagement.original_referrer_owner_manager_id,\n partner_engagement.original_referrer_owner_manager_full_name,\n partner_engagement.partner_manager_id,\n opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd AS created_estimated_arr_in_usd,\n IF(opportunity.is_closed = 0, opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd, 0) AS open_estimated_arr_in_usd,\n (opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd) * opportunity.won_sale_probability AS weighted_estimated_arr_in_usd,\n IF(opportunity.is_closed = 0, (opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd) * opportunity.won_sale_probability, 0) AS open_weighted_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd, 0) AS won_estimated_arr_in_usd,\n opportunity.upsell_acv_in_usd,\n opportunity.upsell_acv_in_usd + opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd AS created_pipeline_in_usd,\n IF(opportunity.is_closed = 0, opportunity.created_pipeline_in_usd, 0) AS open_pipeline_in_usd,\n opportunity.won_sale_probability * opportunity.created_pipeline_in_usd AS weighted_pipeline_in_usd,\n IF(opportunity.is_closed = 0, opportunity.won_sale_probability * opportunity.created_pipeline_in_usd, 0) AS open_weighted_pipeline_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.created_pipeline_in_usd, 0) AS won_bookings_in_usd,\n IF(opportunity.is_won_sale = 1 AND opportunity.is_partner_upsell = 1 , opportunity.created_pipeline_in_usd, 0) AS xsell_won_bookings_in_usd,\n IF(opportunity.is_won_sale = 1 AND opportunity.is_partner_upsell = 0 , opportunity.created_pipeline_in_usd, 0) AS new_sell_won_bookings_in_usd,\n opportunity.won_sale_probability AS opportunity_won_sale_probability,\n opportunity.delta_acv_in_usd,\n opportunity.weighted_delta_acv_in_usd,\n opportunity.open_delta_acv_in_usd,\n opportunity.won_delta_acv_in_usd,\n opportunity.sms_acv_in_usd_sum,\n opportunity.won_sms_acv_in_usd_sum,\n opportunity.sms_estimated_arr_in_usd,\n opportunity.weighted_sms_estimated_arr_in_usd,\n opportunity.won_sms_estimated_arr_in_usd, \n opportunity.sms_delta_earr,\n opportunity.email_estimated_arr_in_usd,\n opportunity.weighted_email_estimated_arr_in_usd,\n opportunity.won_email_estimated_arr_in_usd, \n opportunity.reviews_acv_in_usd_sum,\n opportunity.won_reviews_acv_in_usd_sum,\n opportunity.won_vms_acv_in_usd_sum,\n opportunity.vms_acv_in_usd_sum,\n opportunity.insights_acv_in_usd_sum,\n opportunity.prime_estimated_arr_in_usd,\n opportunity.weighted_prime_estimated_arr_in_usd,\n opportunity.won_prime_estimated_arr_in_usd, \n opportunity.loyalty_acv_in_usd_sum,\n opportunity.won_loyalty_acv_in_usd_sum,\n opportunity.gold_estimated_arr_in_usd,\n opportunity.weighted_gold_estimated_arr_in_usd,\n opportunity.won_gold_estimated_arr_in_usd,\n opportunity.subscriptions_acv_in_usd_sum,\n opportunity.won_subscriptions_acv_in_usd_sum,\n opportunity.subscriptions_estimated_arr_in_usd,\n opportunity.weighted_subscriptions_estimated_arr_in_usd,\n opportunity.won_subscriptions_estimated_arr_in_usd,\n opportunity.subscriptions_delta_earr,\n partner_engagement.is_created_mtd AS is_partner_engagement_created_mtd,\n partner_engagement.is_created_qtd AS is_partner_engagement_created_qtd,\n opportunity.is_created_mtd AS is_opportunity_created_mtd,\n opportunity.is_created_qtd AS is_opportunity_created_qtd,\n opportunity.is_entered_demo_mtd AS is_opportunity_entered_demo_mtd,\n opportunity.is_entered_demo_qtd AS is_opportunity_entered_demo_qtd,\n opportunity.is_closed_mtd AS is_opportunity_closed_mtd,\n opportunity.is_closed_qtd AS is_opportunity_closed_qtd,\n opportunity.is_reviews,\n opportunity.is_vms,\n opportunity.is_insights,\n opportunity.is_loyalty,\n opportunity.is_sms,\n opportunity.is_subscriptions,\n opportunity.is_email_intent,\n opportunity.is_current_contract,\n opportunity.is_sal,\n opportunity.is_won_sale,\n opportunity.is_closed,\n opportunity.is_lost,\n opportunity.is_lost_after_won,\n opportunity.is_bundle,\n opportunity.is_partner_upsell,\n opportunity.is_partner_opportunity,\n partner_engagement.created_date AS partner_engagement_created_date,\n opportunity.created_at AS opportunity_created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_partner_engagement AS partner_engagement \n LEFT JOIN import_opportunity AS opportunity\n ON opportunity.partner_engagement_id = partner_engagement.partner_engagement_id \n WHERE LOWER(partner_engagement.referral_sub_type) in ('referral', 'heads up' , 'influence')\n)\n\nSELECT *\nFROM partner_engagement_opportunity", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___partners_stg__partner_manager_goals": {"database": null, "schema": "dev_dkruh1", "name": "analytics___partners_stg__partner_manager_goals", "resource_type": "model", "package_name": "yoda", "path": "analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.sql", "original_file_path": "models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.sql", "unique_id": "model.yoda.analytics___partners_stg__partner_manager_goals", "fqn": ["yoda", "analytics", "partners", "staging", "base", "analytics___partners_stg__partner_manager_goals", "analytics___partners_stg__partner_manager_goals"], "alias": "analytics___partners_stg__partner_manager_goals", "checksum": {"name": "sha256", "checksum": "3507442b2487f9fc218c755b283309751160124c8f3a5a91932850821212e8be"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "partners", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "partners"], "description": "TODO: Update Table Description", "columns": {"quarter": {"name": "quarter", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "original_referrer_owner_id": {"name": "original_referrer_owner_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "booking_goal": {"name": "booking_goal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sal_goal": {"name": "sal_goal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "partner_manager": {"name": "partner_manager", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager": {"name": "manager", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "second_level_manager": {"name": "second_level_manager", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "river_run_time": {"name": "river_run_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["partners", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082644.2425077, "relation_name": "dev_dkruh1.analytics___partners_stg__partner_manager_goals", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__bi_rivery', 'partner_manager_goals') }}\n\n), analytics___partners_stg__partner_manager_goals AS (\n\n SELECT \n\t\tquarter,\n\t\toriginal_referrer_owner_id,\n\t\tbooking_goal,\n\t\tsal_goal,\n\t\tpartner_manager,\n\t\tmanager,\n\t\tsecond_level_manager,\n\t\tteam,\n\t\triver_run_time\n FROM source\n\n)\n\nSELECT * \nFROM analytics___partners_stg__partner_manager_goals", "language": "sql", "refs": [], "sources": [["analytics__bi_rivery", "partner_manager_goals"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__bi_rivery.partner_manager_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM bi_rivery.partner_manager_goals\n\n), analytics___partners_stg__partner_manager_goals AS (\n\n SELECT \n\t\tquarter,\n\t\toriginal_referrer_owner_id,\n\t\tbooking_goal,\n\t\tsal_goal,\n\t\tpartner_manager,\n\t\tmanager,\n\t\tsecond_level_manager,\n\t\tteam,\n\t\triver_run_time\n FROM source\n\n)\n\nSELECT * \nFROM analytics___partners_stg__partner_manager_goals", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___partners_stg__manager_goals": {"database": null, "schema": "dev_dkruh1", "name": "analytics___partners_stg__manager_goals", "resource_type": "model", "package_name": "yoda", "path": "analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.sql", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.sql", "unique_id": "model.yoda.analytics___partners_stg__manager_goals", "fqn": ["yoda", "analytics", "partners", "staging", "marts_compatible", "analytics___partners_stg__manager_goals", "analytics___partners_stg__manager_goals"], "alias": "analytics___partners_stg__manager_goals", "checksum": {"name": "sha256", "checksum": "5a1e67abe04b86be065f28585dca5c0254cb9cd5f62acbee9245572fd3b455c7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "partners", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "partners"], "description": "A modeled view for partner managers quarterly goals (streamed from google sheets with Rivery) | PK & Granularity: partner_manager_id, quarter", "columns": {"quarter": {"name": "quarter", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "partner_manager_id": {"name": "partner_manager_id", "description": "sf user id of the partner manager", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quarterly_bookings_goal": {"name": "quarterly_bookings_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "quarterly_sal_goal": {"name": "quarterly_sal_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "team_leader": {"name": "team_leader", "description": "partner manager's team leader", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "second_level_manager": {"name": "second_level_manager", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "partner manager's team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["partners", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082644.2585986, "relation_name": "dev_dkruh1.analytics___partners_stg__manager_goals", "raw_code": "-- Import --\n\nWITH import_analytics_partners_stg_partner_manager_goals AS (\n\n SELECT * \n FROM {{ ref('analytics___partners_stg__partner_manager_goals') }}\n\n), \n\n-- Logic --\n\npartner_manager_goals AS (\n\n SELECT\n\t\tquarter,\n\t\toriginal_referrer_owner_id AS partner_manager_id,\n\t\tbooking_goal AS quarterly_bookings_goal,\n\t\tsal_goal AS quarterly_sal_goal,\n manager AS team_leader,\n second_level_manager,\n team\n FROM import_analytics_partners_stg_partner_manager_goals\n\n)\n\n-- Result --\n\nSELECT * FROM partner_manager_goals", "language": "sql", "refs": [{"name": "analytics___partners_stg__partner_manager_goals", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___partners_stg__partner_manager_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_analytics_partners_stg_partner_manager_goals AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___partners_stg__partner_manager_goals\n\n), \n\n-- Logic --\n\npartner_manager_goals AS (\n\n SELECT\n\t\tquarter,\n\t\toriginal_referrer_owner_id AS partner_manager_id,\n\t\tbooking_goal AS quarterly_bookings_goal,\n\t\tsal_goal AS quarterly_sal_goal,\n manager AS team_leader,\n second_level_manager,\n team\n FROM import_analytics_partners_stg_partner_manager_goals\n\n)\n\n-- Result --\n\nSELECT * FROM partner_manager_goals", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__opportunity_ht_ss_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__opportunity_ht_ss_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.sql", "unique_id": "model.yoda.analytics___platform__opportunity_ht_ss_over_time", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__opportunity_ht_ss_over_time", "analytics___platform__opportunity_ht_ss_over_time"], "alias": "analytics___platform__opportunity_ht_ss_over_time", "checksum": {"name": "sha256", "checksum": "a189875d7324ea3383e4a97a6b3fa8711b522fc29c61c123a65c48bc5839983b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Table containing HT motion opportunities (reviews + loyalty).\nEnd date caclculated from organization churn date. Granularity: opportunity_id | product_family", "columns": {"organization_key": {"name": "organization_key", "description": "PK: analytics___platform__organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "PK: analytics___salesforce__opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "Reviews | Loyalty", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "region code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment": {"name": "order_sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_ht_ss_start_date": {"name": "opportunity_ht_ss_start_date", "description": "opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_ht_ss_end_date": {"name": "opportunity_ht_ss_end_date", "description": "End date caclculated from organization product churn date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082644.4661734, "relation_name": "dev_dkruh1.analytics___platform__opportunity_ht_ss_over_time", "raw_code": "-- Import --\n\nWITH import_opportunity AS (\nSELECT * FROM {{ ref('analytics___salesforce__opportunity') }}\n), \n\nimport_sf_account AS (\nSELECT * FROM {{ ref('analytics___salesforce_stg__mc_account') }}\n),\n\nimport_platform_organization_plan_daily AS (\nSELECT * FROM {{ ref('analytics___platform__organization_plan_daily') }}\n),\n\n-- Logic --\n\nht_ss_opportunity AS (\nSELECT DISTINCT\n opportunity.opportunity_id,\n account.organization_key,\n opportunity.start_date,\n opportunity.close_date,\n opportunity.sales_region,\n opportunity.order_sales_segment,\n opportunity.is_reviews,\n opportunity.is_loyalty\nFROM import_opportunity AS opportunity\nINNER JOIN import_sf_account AS account\n ON account.account_id = opportunity.account_id\nWHERE opportunity.is_deleted = 0\nAND opportunity.is_won_sale = 1\nAND LOWER(opportunity.type) <> 'poc'\nAND account.is_test_account = 0\nAND account.is_deleted_account = 0\nAND opportunity.start_date < CURRENT_DATE\nAND account.organization_key IS NOT NULL\nAND is_ht_ss = 1\n),\n\nht_ss_opportunity_product AS (\nSELECT\n opportunity_id,\n organization_key,\n 'Reviews' AS product_family,\n start_date,\n close_date,\n sales_region,\n order_sales_segment\nFROM ht_ss_opportunity\nWHERE is_reviews = 1\nUNION ALL\nSELECT\n opportunity_id,\n organization_key,\n 'Loyalty' AS product_family,\n start_date,\n close_date,\n sales_region,\n order_sales_segment\nFROM ht_ss_opportunity\nWHERE is_loyalty = 1\n),\n\nclosing_organization_plan_daily AS (\nSELECT\n date,\n organization_key,\n product_family,\n is_free\nFROM import_platform_organization_plan_daily\nWHERE is_reviews = 1 \nOR is_loyalty = 1\n),\n\nopening_organization_plan_daily AS (\nSELECT\n DATE_ADD(date,1) AS date,\n organization_key,\n product_family,\n is_free\nFROM closing_organization_plan_daily\nWHERE DATE_ADD(date,1) < CURRENT_DATE\n),\n\nchurn_events_organization_plan_daily AS (\nSELECT\n NVL(opening.date,closing.date) AS date,\n NVL(opening.organization_key,closing.organization_key) AS organization_key,\n NVL(opening.product_family,closing.product_family) AS product_family,\n IF(NVL(closing.is_free,1) = 1 AND NVL(opening.is_free,1) <> 1,1,0) AS is_churn,\n opening.is_free AS opening_is_free,\n closing.is_free AS closing_is_free\nFROM opening_organization_plan_daily AS opening\nFULL OUTER JOIN closing_organization_plan_daily AS closing\n ON opening.date = closing.date\n AND opening.organization_key = closing.organization_key\n AND opening.product_family = closing.product_family\n),\n\nopportunity_ht_ss_churn_end_date AS (\nSELECT\n opportunity.organization_key, \n opportunity.opportunity_id,\n opportunity.product_family,\n opportunity.sales_region,\n opportunity.order_sales_segment,\n opportunity.start_date AS opportunity_ht_ss_start_date,\n NVL(MIN(churn_event.date),'2999-12-31') AS opportunity_ht_ss_end_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM ht_ss_opportunity_product AS opportunity\nLEFT JOIN churn_events_organization_plan_daily AS churn_event\n ON opportunity.organization_key = churn_event.organization_key\n AND opportunity.product_family = churn_event.product_family\n AND churn_event.date > opportunity.start_date\n AND churn_event.is_churn = 1\nGROUP BY 1,2,3,4,5,6,8\n)\n\nSELECT * \nFROM opportunity_ht_ss_churn_end_date", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_opportunity AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n), \n\nimport_sf_account AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_account\n),\n\nimport_platform_organization_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_plan_daily\n),\n\n-- Logic --\n\nht_ss_opportunity AS (\nSELECT DISTINCT\n opportunity.opportunity_id,\n account.organization_key,\n opportunity.start_date,\n opportunity.close_date,\n opportunity.sales_region,\n opportunity.order_sales_segment,\n opportunity.is_reviews,\n opportunity.is_loyalty\nFROM import_opportunity AS opportunity\nINNER JOIN import_sf_account AS account\n ON account.account_id = opportunity.account_id\nWHERE opportunity.is_deleted = 0\nAND opportunity.is_won_sale = 1\nAND LOWER(opportunity.type) <> 'poc'\nAND account.is_test_account = 0\nAND account.is_deleted_account = 0\nAND opportunity.start_date < CURRENT_DATE\nAND account.organization_key IS NOT NULL\nAND is_ht_ss = 1\n),\n\nht_ss_opportunity_product AS (\nSELECT\n opportunity_id,\n organization_key,\n 'Reviews' AS product_family,\n start_date,\n close_date,\n sales_region,\n order_sales_segment\nFROM ht_ss_opportunity\nWHERE is_reviews = 1\nUNION ALL\nSELECT\n opportunity_id,\n organization_key,\n 'Loyalty' AS product_family,\n start_date,\n close_date,\n sales_region,\n order_sales_segment\nFROM ht_ss_opportunity\nWHERE is_loyalty = 1\n),\n\nclosing_organization_plan_daily AS (\nSELECT\n date,\n organization_key,\n product_family,\n is_free\nFROM import_platform_organization_plan_daily\nWHERE is_reviews = 1 \nOR is_loyalty = 1\n),\n\nopening_organization_plan_daily AS (\nSELECT\n DATE_ADD(date,1) AS date,\n organization_key,\n product_family,\n is_free\nFROM closing_organization_plan_daily\nWHERE DATE_ADD(date,1) < CURRENT_DATE\n),\n\nchurn_events_organization_plan_daily AS (\nSELECT\n NVL(opening.date,closing.date) AS date,\n NVL(opening.organization_key,closing.organization_key) AS organization_key,\n NVL(opening.product_family,closing.product_family) AS product_family,\n IF(NVL(closing.is_free,1) = 1 AND NVL(opening.is_free,1) <> 1,1,0) AS is_churn,\n opening.is_free AS opening_is_free,\n closing.is_free AS closing_is_free\nFROM opening_organization_plan_daily AS opening\nFULL OUTER JOIN closing_organization_plan_daily AS closing\n ON opening.date = closing.date\n AND opening.organization_key = closing.organization_key\n AND opening.product_family = closing.product_family\n),\n\nopportunity_ht_ss_churn_end_date AS (\nSELECT\n opportunity.organization_key, \n opportunity.opportunity_id,\n opportunity.product_family,\n opportunity.sales_region,\n opportunity.order_sales_segment,\n opportunity.start_date AS opportunity_ht_ss_start_date,\n NVL(MIN(churn_event.date),'2999-12-31') AS opportunity_ht_ss_end_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM ht_ss_opportunity_product AS opportunity\nLEFT JOIN churn_events_organization_plan_daily AS churn_event\n ON opportunity.organization_key = churn_event.organization_key\n AND opportunity.product_family = churn_event.product_family\n AND churn_event.date > opportunity.start_date\n AND churn_event.is_churn = 1\nGROUP BY 1,2,3,4,5,6,8\n)\n\nSELECT * \nFROM opportunity_ht_ss_churn_end_date", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__order": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__order", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.sql", "unique_id": "model.yoda.analytics___platform__order", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__order", "analytics___platform__order"], "alias": "analytics___platform__order", "checksum": {"name": "sha256", "checksum": "d81f5902179cbb1a002e1d5fcf8ec63bea904221ca7fa82315fc0d17ba9c0ebb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "order_id", "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table for all raw orders from orders service. Granularity & PK: order_id", "columns": {"order_id": {"name": "order_id", "description": "order id - PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_order_id": {"name": "external_order_id", "description": "external order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_at": {"name": "order_at", "description": "order timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_date": {"name": "order_date", "description": "order date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "order_update_at": {"name": "order_update_at", "description": "order row update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_update_date": {"name": "order_update_date", "description": "order row update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "email": {"name": "email", "description": "email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_address_id": {"name": "billing_address_id", "description": "billing address id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shipping_address_id": {"name": "shipping_address_id", "description": "shipping address id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_customer_id": {"name": "external_customer_id", "description": "external customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_name": {"name": "full_name", "description": "full name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_number": {"name": "phone_number", "description": "phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landing_site_url": {"name": "landing_site_url", "description": "landing site url", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_method": {"name": "payment_method", "description": "payment method", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_status_id": {"name": "payment_status_id", "description": "payment status id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source": {"name": "source", "description": "source", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "order external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_amount": {"name": "order_amount", "description": "amount", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_amount_currency": {"name": "order_amount_currency", "description": "amount currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_amount_usd": {"name": "order_amount_usd", "description": "amount in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_account_amount": {"name": "order_account_amount", "description": "account amount", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_account_amount_currency": {"name": "order_account_amount_currency", "description": "account amount currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price": {"name": "total_price", "description": "total price", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "app_key": {"name": "app_key", "description": "Unique id for the store which made the specific order_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_buyer_accepts_sms_marketing": {"name": "is_buyer_accepts_sms_marketing", "description": "indicator whether the buyer accepts marketing sms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_buyer_accepts_email_marketing": {"name": "is_buyer_accepts_email_marketing", "description": "indicator whether the buyer accepts marketing email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_buyer_accepts_marketing": {"name": "is_buyer_accepts_marketing", "description": "indicator whether the buyer accepts marketing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_fulfiled": {"name": "is_fulfiled", "description": "order fulfillment indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at_orders_row": {"name": "updated_at_orders_row", "description": "order row update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at_fulfillments_row": {"name": "updated_at_fulfillments_row", "description": "order fulfillments row update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "latest_updated_at": {"name": "latest_updated_at", "description": "The latest updated_at value among the source models' updated_at columns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "latest_updated_date": {"name": "latest_updated_date", "description": "The latest updated_date value among the source models' updated_date columns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "platform"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": "order_id", "incremental_strategy": "merge"}, "created_at": 1700082644.5449808, "relation_name": "dev_dkruh1.analytics___platform__order", "raw_code": "{{ \n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key = 'order_id',\n incremental_strategy = 'merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.platform_order ZORDER BY order_id;')\n )\n}}\n\n-- import --\n\nWITH import_currency_rates AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__currency_exchange_rate') }}\n\n), import_fulfillment AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__fulfillment') }}\n\n), import_order AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__store_order') }}\n\n {% if is_incremental() %} \n\n WHERE created_date >= CURRENT_DATE - 30\n\n {% endif %}\n\n), \n\n-- Logic --\n\nupdated_fulfillments AS (\n\n SELECT \n order_id,\n MAX(updated_at) AS updated_at_fulfillments_row\n FROM import_fulfillment\n WHERE fulfillment_status_type_id = 3\n AND fulfillment_date >= '2022-01-01'\n GROUP BY 1\n\n), \n\nplatform__order AS (\n\n SELECT\n order.order_id,\n order.external_order_id,\n order.order_at,\n order.order_date,\n order.order_update_at,\n order.order_update_date,\n order.email,\n order.platform,\n order.billing_address_id,\n order.shipping_address_id,\n order.external_customer_id,\n order.full_name,\n order.phone_number,\n order.landing_site_url,\n order.payment_method,\n order.payment_status_id,\n order.source,\n order.external_id,\n order.order_amount,\n order.order_amount_currency,\n (order.order_amount / currency.conversion_rate) AS order_amount_usd,\n order.order_account_amount,\n order.order_account_amount_currency,\n order.total_price,\n order.app_key,\n order.is_buyer_accepts_sms_marketing,\n order.is_buyer_accepts_email_marketing,\n order.is_buyer_accepts_marketing,\n CASE WHEN order.order_date < '2022-01-01' THEN 1 WHEN fulfillment.order_id IS NOT NULL THEN 1 ELSE 0 END AS is_fulfiled,\n order.updated_at AS updated_at_orders_row,\n fulfillment.updated_at_fulfillments_row,\n GREATEST(order.updated_at,fulfillment.updated_at_fulfillments_row) AS latest_updated_at,\n GREATEST(DATE(order.updated_at),DATE(fulfillment.updated_at_fulfillments_row)) AS latest_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_order AS order\n LEFT JOIN updated_fulfillments AS fulfillment\n ON order.order_id = fulfillment.order_id\n LEFT JOIN import_currency_rates AS currency\n ON order.order_date = currency.currency_exchange_date\n AND order.order_amount_currency = currency.to_currency_symbol\n\n) \n\n-- Result --\n\nSELECT * \nFROM platform__order\n\n{% if is_incremental() %}\n\nWHERE (updated_at_orders_row >= (SELECT MAX(updated_at_orders_row) FROM {{ this }}))\n OR \n (updated_at_fulfillments_row >= (SELECT MAX(updated_at_fulfillments_row) FROM {{ this }}))\n\n{% endif %}", "language": "sql", "refs": [{"name": "analytics___platform_stg__currency_exchange_rate", "package": null, "version": null}, {"name": "analytics___platform_stg__fulfillment", "package": null, "version": null}, {"name": "analytics___platform_stg__store_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__currency_exchange_rate", "model.yoda.analytics___platform_stg__fulfillment", "model.yoda.analytics___platform_stg__store_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.sql", "compiled": true, "compiled_code": "\n\n-- import --\n\nWITH import_currency_rates AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__currency_exchange_rate\n\n), import_fulfillment AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__fulfillment\n\n), import_order AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__store_order\n\n \n\n), \n\n-- Logic --\n\nupdated_fulfillments AS (\n\n SELECT \n order_id,\n MAX(updated_at) AS updated_at_fulfillments_row\n FROM import_fulfillment\n WHERE fulfillment_status_type_id = 3\n AND fulfillment_date >= '2022-01-01'\n GROUP BY 1\n\n), \n\nplatform__order AS (\n\n SELECT\n order.order_id,\n order.external_order_id,\n order.order_at,\n order.order_date,\n order.order_update_at,\n order.order_update_date,\n order.email,\n order.platform,\n order.billing_address_id,\n order.shipping_address_id,\n order.external_customer_id,\n order.full_name,\n order.phone_number,\n order.landing_site_url,\n order.payment_method,\n order.payment_status_id,\n order.source,\n order.external_id,\n order.order_amount,\n order.order_amount_currency,\n (order.order_amount / currency.conversion_rate) AS order_amount_usd,\n order.order_account_amount,\n order.order_account_amount_currency,\n order.total_price,\n order.app_key,\n order.is_buyer_accepts_sms_marketing,\n order.is_buyer_accepts_email_marketing,\n order.is_buyer_accepts_marketing,\n CASE WHEN order.order_date < '2022-01-01' THEN 1 WHEN fulfillment.order_id IS NOT NULL THEN 1 ELSE 0 END AS is_fulfiled,\n order.updated_at AS updated_at_orders_row,\n fulfillment.updated_at_fulfillments_row,\n GREATEST(order.updated_at,fulfillment.updated_at_fulfillments_row) AS latest_updated_at,\n GREATEST(DATE(order.updated_at),DATE(fulfillment.updated_at_fulfillments_row)) AS latest_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_order AS order\n LEFT JOIN updated_fulfillments AS fulfillment\n ON order.order_id = fulfillment.order_id\n LEFT JOIN import_currency_rates AS currency\n ON order.order_date = currency.currency_exchange_date\n AND order.order_amount_currency = currency.to_currency_symbol\n\n) \n\n-- Result --\n\nSELECT * \nFROM platform__order\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__order_metrics": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__order_metrics", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.sql", "unique_id": "model.yoda.analytics___platform__order_metrics", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__order_metrics", "analytics___platform__order_metrics"], "alias": "analytics___platform__order_metrics", "checksum": {"name": "sha256", "checksum": "00cc3f977a3bd80bd56f662607a5070500af91179c6583716592f66bf276acf3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "order_id", "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled incremental table of order metrics. \nPK and granularity: order_id", "columns": {"order_id": {"name": "order_id", "description": "order id - PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_cnt": {"name": "product_cnt", "description": "number of different products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_updated_date": {"name": "order_updated_date", "description": "order update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "order_line_updated_date": {"name": "order_line_updated_date", "description": "order line update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "latest_updated_date": {"name": "latest_updated_date", "description": "The latest updated_date value among the source models' updated_date columns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "platform"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": "order_id", "incremental_strategy": "merge"}, "created_at": 1700082644.5597956, "relation_name": "dev_dkruh1.analytics___platform__order_metrics", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental','view'),\n unique_key= 'order_id',\n incremental_strategy = 'merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.platform_order_metrics ZORDER BY order_id;')\n )\n}}\n\n-- Import --\n\nWITH import_order AS (\nSELECT * FROM {{ ref('analytics___platform__order') }}\n),\n\nimport_platform_stg_order_line AS (\nSELECT * FROM {{ ref('analytics___platform_stg__order_line') }}\n),\n\n-- Logic --\n\n{% if is_incremental() -%}\nupdated_orders AS (\nSELECT order_id\nFROM import_order\n{{incremental_condition(data_type='DATE',destination_condition_column='latest_updated_date',subtract=7)}}\nUNION\nSELECT DISTINCT order_id\nFROM import_platform_stg_order_line\n{{incremental_condition(data_type='DATE',destination_condition_column='latest_updated_date',query_condition_column='updated_date',subtract=7)}}\n),\n{%- endif %}\n\norder_products AS (\nSELECT\n line.order_id,\n MAX(line.updated_date) AS order_line_updated_date,\n COUNT(*) AS product_cnt\nFROM import_platform_stg_order_line AS line\n{% if is_incremental() -%}\nINNER JOIN updated_orders\n ON line.order_id = updated_orders.order_id\n{%- endif %}\nGROUP BY 1\n),\n\nplatform_order_metrics_res AS (\nSELECT\n orders.order_id,\n order_products.product_cnt,\n orders.latest_updated_date AS order_updated_date,\n order_products.order_line_updated_date,\n GREATEST(orders.latest_updated_date,order_products.order_line_updated_date) AS latest_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_order AS orders\n{% if is_incremental() -%}\nINNER JOIN updated_orders AS updated\n ON orders.order_id = updated.order_id\n{%- endif %}\nLEFT JOIN order_products\n ON orders.order_id = order_products.order_id\n)\n\n-- Result --\n\nSELECT *\nFROM platform_order_metrics_res", "language": "sql", "refs": [{"name": "analytics___platform__order", "package": null, "version": null}, {"name": "analytics___platform_stg__order_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__order", "model.yoda.analytics___platform_stg__order_line"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_order AS (\nSELECT * FROM dev_dkruh1.analytics___platform__order\n),\n\nimport_platform_stg_order_line AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__order_line\n),\n\n-- Logic --\n\n\n\norder_products AS (\nSELECT\n line.order_id,\n MAX(line.updated_date) AS order_line_updated_date,\n COUNT(*) AS product_cnt\nFROM import_platform_stg_order_line AS line\n\nGROUP BY 1\n),\n\nplatform_order_metrics_res AS (\nSELECT\n orders.order_id,\n order_products.product_cnt,\n orders.latest_updated_date AS order_updated_date,\n order_products.order_line_updated_date,\n GREATEST(orders.latest_updated_date,order_products.order_line_updated_date) AS latest_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_order AS orders\n\nLEFT JOIN order_products\n ON orders.order_id = order_products.order_id\n)\n\n-- Result --\n\nSELECT *\nFROM platform_order_metrics_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.sql", "unique_id": "model.yoda.analytics___platform__organization", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization", "analytics___platform__organization"], "alias": "analytics___platform__organization", "checksum": {"name": "sha256", "checksum": "534c63ba050f819b0922a2c90b4bfc0bedd946b87dca433a480c0abbe755a1be"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table for organization object", "columns": {"organization_id": {"name": "organization_id", "description": "organization id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "organization key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_name": {"name": "organization_name", "description": "Salesforce account name if available, if not, organization name from yotpoapiprod.organizations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_created_at": {"name": "organization_created_at", "description": "timestamp for organization creation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_updated_at": {"name": "organization_updated_at", "description": "timestamp for organization update", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "parent_organization_id": {"name": "parent_organization_id", "description": "parent organization from zuora account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "parent_organization_key": {"name": "parent_organization_key", "description": "parent organization from zuora account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "grand_parent_organization_key": {"name": "grand_parent_organization_key", "description": "grand parent organization from zuora account (parent of the parent)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "Each organization can have multiple stores and each store can have only one platform.\n\nWe define the organization's platform as the platform that occur the most among the organization's stores.\n\nIn case multiple platforms have the exact same number of occurance, we choose the platform that occur the most in the entire population.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_name": {"name": "country_name", "description": "This table determine the country of each organization, using 3 sources:\n\n 1. Zuora billing country\n 2. SF account country\n 3. *SMS store country (most stores country)\n \n *Each organization can have multiple SMS stores and each SMS store can have only one country.\n\n We define the organization's country as the country that occur the most among the organization's SMS stores.\n\n In case multiple countries have the exact same number of occurance, we choose the country that occur the most in the entire population.\n\nNOTE: In case organization have country info from multiple sources, we choose the country by the order above.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "Each organization can have multiple stores and each store can have only one industry.\n\nWe define the organization's industry as the industry that occur the most among the organization's stores.\n\nIn case multiple industries have the exact same number of occurance, we choose the industry that occur the most in the entire population.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin_email": {"name": "admin_email", "description": "email address of moderator user within the account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_shopify": {"name": "is_shopify", "description": "Indicates if the organization platform is Shopify or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_test_organization": {"name": "is_test_organization", "description": "indicator if the organization is test org (1 if test else 0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "registered_at": {"name": "registered_at", "description": "account registration time based on its first store creation time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082644.6016524, "relation_name": "dev_dkruh1.analytics___platform__organization", "raw_code": "-- Import --\n\nWITH import_platform_stg__organization AS (\n SELECT * FROM {{ ref('analytics___platform_stg__organization') }}\n),\n\nimport_platform__store AS (\n SELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_zuora_parent_organization AS (\n SELECT * FROM {{ ref('analytics___finance__zuora_parent_organization') }}\n),\n\nimport_analytics___platform_stg__user AS (\n SELECT * FROM {{ ref('analytics___platform_stg__user') }}\n),\n\nimport_analytics___platform_stg__store_user_mapping AS (\n SELECT * FROM {{ ref('analytics___platform_stg__store_user_mapping') }}\n),\n\nimport_industry AS (\n SELECT * FROM {{ ref('analytics___platform__organization_industry') }}\n),\n\nimport_country AS (\n SELECT * FROM {{ ref('analytics___platform__organization_country') }}\n),\n\nimport_platform AS (\n SELECT * FROM {{ ref('analytics___platform__organization_platform') }}\n),\n\n-- Logic --\n\nadmin_details AS (\n\n SELECT\n store.organization_id,\n MAX(user.email) AS admin_email\n FROM import_platform__store AS store\n INNER JOIN import_analytics___platform_stg__store_user_mapping AS store_user_mapping\n ON store.store_id = store_user_mapping.store_id\n INNER JOIN import_analytics___platform_stg__user AS user\n ON store_user_mapping.user_id = user.user_id\n WHERE store_user_mapping.is_store_admin = 1\n GROUP BY 1\n\n), organization_details AS (\n\n SELECT\n store.organization_id,\n MIN(store.store_created_at) AS registered_at,\n SMALLINT(CASE WHEN COALESCE(MIN(store.is_test),0) = 1 THEN 1 ELSE 0 END) as is_test_organization\n FROM import_platform__store AS store\n GROUP BY 1\n\n), platform__organization AS (\n\n SELECT \n organization.organization_id,\n organization.organization_key,\n organization.organization_name,\n organization.organization_created_at,\n organization.organization_updated_at,\n parent_org.parent_organization_id,\n parent_org.parent_organization_key,\n parent_org.grand_parent_organization_key,\n platform.platform_name,\n country.country_name,\n industry.industry,\n admin_details.admin_email,\n platform.is_shopify,\n org_details.is_test_organization,\n org_details.registered_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_platform_stg__organization AS organization\n LEFT JOIN organization_details AS org_details\n ON organization.organization_id = org_details.organization_id\n LEFT JOIN import_zuora_parent_organization AS parent_org\n ON organization.organization_key = parent_org.organization_key\n LEFT JOIN admin_details AS admin_details\n ON organization.organization_id = admin_details.organization_id\n LEFT JOIN import_industry AS industry\n ON organization.organization_key = industry.organization_key\n LEFT JOIN import_country AS country\n ON organization.organization_key = country.organization_key\n LEFT JOIN import_platform AS platform\n ON organization.organization_key = platform.organization_key\n)\n-- Result --\n\nSELECT *\nFROM platform__organization", "language": "sql", "refs": [{"name": "analytics___platform_stg__organization", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___finance__zuora_parent_organization", "package": null, "version": null}, {"name": "analytics___platform_stg__user", "package": null, "version": null}, {"name": "analytics___platform_stg__store_user_mapping", "package": null, "version": null}, {"name": "analytics___platform__organization_industry", "package": null, "version": null}, {"name": "analytics___platform__organization_country", "package": null, "version": null}, {"name": "analytics___platform__organization_platform", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__organization", "model.yoda.analytics___platform__store", "model.yoda.analytics___finance__zuora_parent_organization", "model.yoda.analytics___platform_stg__user", "model.yoda.analytics___platform_stg__store_user_mapping", "model.yoda.analytics___platform__organization_industry", "model.yoda.analytics___platform__organization_country", "model.yoda.analytics___platform__organization_platform"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__organization AS (\n SELECT * FROM dev_dkruh1.analytics___platform_stg__organization\n),\n\nimport_platform__store AS (\n SELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_zuora_parent_organization AS (\n SELECT * FROM dev_dkruh1.analytics___finance__zuora_parent_organization\n),\n\nimport_analytics___platform_stg__user AS (\n SELECT * FROM dev_dkruh1.analytics___platform_stg__user\n),\n\nimport_analytics___platform_stg__store_user_mapping AS (\n SELECT * FROM dev_dkruh1.analytics___platform_stg__store_user_mapping\n),\n\nimport_industry AS (\n SELECT * FROM dev_dkruh1.analytics___platform__organization_industry\n),\n\nimport_country AS (\n SELECT * FROM dev_dkruh1.analytics___platform__organization_country\n),\n\nimport_platform AS (\n SELECT * FROM dev_dkruh1.analytics___platform__organization_platform\n),\n\n-- Logic --\n\nadmin_details AS (\n\n SELECT\n store.organization_id,\n MAX(user.email) AS admin_email\n FROM import_platform__store AS store\n INNER JOIN import_analytics___platform_stg__store_user_mapping AS store_user_mapping\n ON store.store_id = store_user_mapping.store_id\n INNER JOIN import_analytics___platform_stg__user AS user\n ON store_user_mapping.user_id = user.user_id\n WHERE store_user_mapping.is_store_admin = 1\n GROUP BY 1\n\n), organization_details AS (\n\n SELECT\n store.organization_id,\n MIN(store.store_created_at) AS registered_at,\n SMALLINT(CASE WHEN COALESCE(MIN(store.is_test),0) = 1 THEN 1 ELSE 0 END) as is_test_organization\n FROM import_platform__store AS store\n GROUP BY 1\n\n), platform__organization AS (\n\n SELECT \n organization.organization_id,\n organization.organization_key,\n organization.organization_name,\n organization.organization_created_at,\n organization.organization_updated_at,\n parent_org.parent_organization_id,\n parent_org.parent_organization_key,\n parent_org.grand_parent_organization_key,\n platform.platform_name,\n country.country_name,\n industry.industry,\n admin_details.admin_email,\n platform.is_shopify,\n org_details.is_test_organization,\n org_details.registered_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_platform_stg__organization AS organization\n LEFT JOIN organization_details AS org_details\n ON organization.organization_id = org_details.organization_id\n LEFT JOIN import_zuora_parent_organization AS parent_org\n ON organization.organization_key = parent_org.organization_key\n LEFT JOIN admin_details AS admin_details\n ON organization.organization_id = admin_details.organization_id\n LEFT JOIN import_industry AS industry\n ON organization.organization_key = industry.organization_key\n LEFT JOIN import_country AS country\n ON organization.organization_key = country.organization_key\n LEFT JOIN import_platform AS platform\n ON organization.organization_key = platform.organization_key\n)\n-- Result --\n\nSELECT *\nFROM platform__organization", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_country": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_country", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.sql", "unique_id": "model.yoda.analytics___platform__organization_country", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_country", "analytics___platform__organization_country"], "alias": "analytics___platform__organization_country", "checksum": {"name": "sha256", "checksum": "0bfeae1cc0ffe9cc03db537713a8a076a5d8d94b8193ca307c265cf480db05de"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "PK [organization_key]\n\nThis table determine the country of each organization, using 3 sources:\n\n 1. Zuora billing country\n 2. SF account country\n 3. *SMS store country (most stores country)\n \n *Each organization can have multiple SMS stores and each SMS store can have only one country.\n\n We define the organization's country as the country that occur the most among the organization's SMS stores.\n\n In case multiple countries have the exact same number of occurance, we choose the country that occur the most in the entire population.\n\nNOTE: In case organization have country info from multiple sources, we choose the country by the order above.", "columns": {"organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_name": {"name": "country_name", "description": "This table determine the country of each organization, using 3 sources:\n\n 1. Zuora billing country\n 2. SF account country\n 3. *SMS store country (most stores country)\n \n *Each organization can have multiple SMS stores and each SMS store can have only one country.\n\n We define the organization's country as the country that occur the most among the organization's SMS stores.\n\n In case multiple countries have the exact same number of occurance, we choose the country that occur the most in the entire population.\n\nNOTE: In case organization have country info from multiple sources, we choose the country by the order above.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_country_name": {"name": "zuora_country_name", "description": "The country name from Zuora. NULL if no country was found in Zuora for this organization.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_country_name": {"name": "sf_country_name", "description": "The country name from SF. NULL if no country was found in SF for this organization.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_country_name": {"name": "sms_country_name", "description": "The country name from SMS. NULL if no country was found in SMS for this organization.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_zuora_country": {"name": "is_zuora_country", "description": "Indicates if the chosen country is sourced from Zuora", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_sf_country": {"name": "is_sf_country", "description": "Indicates if the chosen country is sourced from SF", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_sms_country": {"name": "is_sms_country", "description": "Indicates if the chosen country is sourced from SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082644.6462138, "relation_name": "dev_dkruh1.analytics___platform__organization_country", "raw_code": "-- import --\n\nWITH import_zuora_contact AS (\nSELECT * FROM {{ ref('analytics___finance_stg__zuora_contact') }}\n),\n\nimport_zuora_account AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_account') }}\n),\n\nimport_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\nimport_sf_account AS (\nSELECT * FROM {{ ref('analytics___salesforce__account') }}\n),\n\n-- Logic --\n\n-- Zuora --\nzuora_organization_latest_billing_country AS (\nSELECT\n account.organization_key,\n contact.country AS country_name\nFROM import_zuora_account AS account\nINNER JOIN import_zuora_contact AS contact\n ON account.bill_to_contact_id = contact.contact_id\nWHERE account.organization_key IS NOT NULL\nQUALIFY ROW_NUMBER() OVER (PARTITION BY account.organization_key ORDER BY contact.created_at DESC) = 1\n),\n\n-- SF --\nsf_organization_latest_country AS (\nSELECT\n organization_key,\n country AS country_name\nFROM import_sf_account AS sf_account\nWHERE country IS NOT NULL \nAND organization_key IS NOT NULL\nAND sf_account.is_deleted_account = 0\nAND sf_account.is_test_account = 0\nQUALIFY ROW_NUMBER() OVER (PARTITION BY organization_key ORDER BY created_date DESC) = 1\n),\n\n-- SMS --\nsms_organization_country_store_count AS (\nSELECT\n organization_key,\n country_name,\n SUM(IF(country_name IS NOT NULL,1,0.001)) AS store_count -- Giving less weight for NULL country stores.\nFROM import_sms_store AS store\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2\n),\n\nsms_country_store_count AS (\nSELECT\n country_name,\n COUNT(1) AS store_count\nFROM import_sms_store AS store\nWHERE country_name IS NOT NULL\nAND organization_key IS NOT NULL\nGROUP BY 1\nORDER BY 2 DESC\n),\n\nsms_organization_country AS (\nSELECT\n org_country.organization_key,\n org_country.country_name\nFROM sms_organization_country_store_count AS org_country\nLEFT JOIN sms_country_store_count AS total_country USING(country_name)\nQUALIFY ROW_NUMBER() OVER (PARTITION BY org_country.organization_key ORDER BY org_country.store_count DESC, total_country.store_count DESC) = 1 -- Choosing the most stores country\n),\n\n-- JOIN --\norganization_country AS (\nSELECT\n COALESCE(zuora.organization_key,sf.organization_key,sms.organization_key) AS organization_key,\n COALESCE(zuora.country_name,sf.country_name,sms.country_name,'unknown') AS country_name,\n zuora.country_name AS zuora_country_name,\n sf.country_name AS sf_country_name,\n sms.country_name AS sms_country_name,\n IF(zuora.country_name IS NOT NULL,1,0) AS is_zuora_country,\n IF(zuora.country_name IS NULL\n AND sf.country_name IS NOT NULL,1,0) AS is_sf_country,\n IF(zuora.country_name IS NULL\n AND sf.country_name IS NULL\n AND sms.country_name IS NOT NULL,1,0) AS is_sms_country,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM zuora_organization_latest_billing_country AS zuora\nFULL OUTER JOIN sf_organization_latest_country AS sf\n ON zuora.organization_key = sf.organization_key\nFULL OUTER JOIN sms_organization_country AS sms\n ON COALESCE(zuora.organization_key,sf.organization_key) = sms.organization_key\n)\n\nSELECT * \nFROM organization_country", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_contact", "package": null, "version": null}, {"name": "analytics___finance__zuora_account", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___finance_stg__zuora_contact", "model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___sms__store", "model.yoda.analytics___salesforce__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.sql", "compiled": true, "compiled_code": "-- import --\n\nWITH import_zuora_contact AS (\nSELECT * FROM dev_dkruh1.analytics___finance_stg__zuora_contact\n),\n\nimport_zuora_account AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_account\n),\n\nimport_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\nimport_sf_account AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__account\n),\n\n-- Logic --\n\n-- Zuora --\nzuora_organization_latest_billing_country AS (\nSELECT\n account.organization_key,\n contact.country AS country_name\nFROM import_zuora_account AS account\nINNER JOIN import_zuora_contact AS contact\n ON account.bill_to_contact_id = contact.contact_id\nWHERE account.organization_key IS NOT NULL\nQUALIFY ROW_NUMBER() OVER (PARTITION BY account.organization_key ORDER BY contact.created_at DESC) = 1\n),\n\n-- SF --\nsf_organization_latest_country AS (\nSELECT\n organization_key,\n country AS country_name\nFROM import_sf_account AS sf_account\nWHERE country IS NOT NULL \nAND organization_key IS NOT NULL\nAND sf_account.is_deleted_account = 0\nAND sf_account.is_test_account = 0\nQUALIFY ROW_NUMBER() OVER (PARTITION BY organization_key ORDER BY created_date DESC) = 1\n),\n\n-- SMS --\nsms_organization_country_store_count AS (\nSELECT\n organization_key,\n country_name,\n SUM(IF(country_name IS NOT NULL,1,0.001)) AS store_count -- Giving less weight for NULL country stores.\nFROM import_sms_store AS store\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2\n),\n\nsms_country_store_count AS (\nSELECT\n country_name,\n COUNT(1) AS store_count\nFROM import_sms_store AS store\nWHERE country_name IS NOT NULL\nAND organization_key IS NOT NULL\nGROUP BY 1\nORDER BY 2 DESC\n),\n\nsms_organization_country AS (\nSELECT\n org_country.organization_key,\n org_country.country_name\nFROM sms_organization_country_store_count AS org_country\nLEFT JOIN sms_country_store_count AS total_country USING(country_name)\nQUALIFY ROW_NUMBER() OVER (PARTITION BY org_country.organization_key ORDER BY org_country.store_count DESC, total_country.store_count DESC) = 1 -- Choosing the most stores country\n),\n\n-- JOIN --\norganization_country AS (\nSELECT\n COALESCE(zuora.organization_key,sf.organization_key,sms.organization_key) AS organization_key,\n COALESCE(zuora.country_name,sf.country_name,sms.country_name,'unknown') AS country_name,\n zuora.country_name AS zuora_country_name,\n sf.country_name AS sf_country_name,\n sms.country_name AS sms_country_name,\n IF(zuora.country_name IS NOT NULL,1,0) AS is_zuora_country,\n IF(zuora.country_name IS NULL\n AND sf.country_name IS NOT NULL,1,0) AS is_sf_country,\n IF(zuora.country_name IS NULL\n AND sf.country_name IS NULL\n AND sms.country_name IS NOT NULL,1,0) AS is_sms_country,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM zuora_organization_latest_billing_country AS zuora\nFULL OUTER JOIN sf_organization_latest_country AS sf\n ON zuora.organization_key = sf.organization_key\nFULL OUTER JOIN sms_organization_country AS sms\n ON COALESCE(zuora.organization_key,sf.organization_key) = sms.organization_key\n)\n\nSELECT * \nFROM organization_country", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_industry": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_industry", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.sql", "unique_id": "model.yoda.analytics___platform__organization_industry", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_industry", "analytics___platform__organization_industry"], "alias": "analytics___platform__organization_industry", "checksum": {"name": "sha256", "checksum": "9eac44ea70bfb88afddc95d0f5aca4d9d818d6816517bf81adf9c9e4c4bdac81"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "PK [organization_key]\n\nThis table calculate the industry of each organization.\n\nEach organization can have multiple stores and each store can have only one industry.\n\nWe define the organization's industry as the industry that occur the most among the organization's stores.\n\nIn case multiple industries have the exact same number of occurance, we choose the industry that occur the most in the entire population.", "columns": {"organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "Each organization can have multiple stores and each store can have only one industry.\n\nWe define the organization's industry as the industry that occur the most among the organization's stores.\n\nIn case multiple industries have the exact same number of occurance, we choose the industry that occur the most in the entire population.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082644.6857262, "relation_name": "dev_dkruh1.analytics___platform__organization_industry", "raw_code": "-- import --\n\nWITH import_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\n-- Logic --\n\norganization_industry_store_count AS (\nSELECT\n organization_key,\n industry,\n SUM(IF(is_test=0 AND industry IS NOT NULL,1,0.001)) AS store_count -- Giving less weight for test/NULL platform stores.\nFROM import_store\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2\n),\n\nindustry_store_count AS (\nSELECT\n industry,\n SUM(IF(is_test=0,1,0.001)) AS store_count -- Giving less weight for test stores.\nFROM import_store\nWHERE organization_key IS NOT NULL\nAND industry IS NOT NULL\nGROUP BY 1\nORDER BY 2 DESC\n),\n\norganization_industry AS (\nSELECT\n org.organization_key,\n org.industry,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM organization_industry_store_count AS org\nLEFT JOIN industry_store_count AS industry \n ON org.industry = industry.industry\nQUALIFY ROW_NUMBER() OVER (PARTITION BY org.organization_key ORDER BY org.store_count DESC, industry.store_count DESC) = 1 -- Choosing the most stores industry\n)\n\nSELECT * \nFROM organization_industry", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.sql", "compiled": true, "compiled_code": "-- import --\n\nWITH import_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\n-- Logic --\n\norganization_industry_store_count AS (\nSELECT\n organization_key,\n industry,\n SUM(IF(is_test=0 AND industry IS NOT NULL,1,0.001)) AS store_count -- Giving less weight for test/NULL platform stores.\nFROM import_store\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2\n),\n\nindustry_store_count AS (\nSELECT\n industry,\n SUM(IF(is_test=0,1,0.001)) AS store_count -- Giving less weight for test stores.\nFROM import_store\nWHERE organization_key IS NOT NULL\nAND industry IS NOT NULL\nGROUP BY 1\nORDER BY 2 DESC\n),\n\norganization_industry AS (\nSELECT\n org.organization_key,\n org.industry,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM organization_industry_store_count AS org\nLEFT JOIN industry_store_count AS industry \n ON org.industry = industry.industry\nQUALIFY ROW_NUMBER() OVER (PARTITION BY org.organization_key ORDER BY org.store_count DESC, industry.store_count DESC) = 1 -- Choosing the most stores industry\n)\n\nSELECT * \nFROM organization_industry", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.sql", "unique_id": "model.yoda.analytics___platform__organization_metrics_monthly", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_metrics_monthly", "analytics___platform__organization_metrics_monthly"], "alias": "analytics___platform__organization_metrics_monthly", "checksum": {"name": "sha256", "checksum": "5224439387016492f02aaf76ef2ae7d253b95f8d5771d1a223a77f2d55fc46eb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table which holds organiztion indications + orders metrics montly", "columns": {"organization_monthly_id": {"name": "organization_monthly_id", "description": "month_org_key unique key (for sf use)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_created_platform": {"name": "first_created_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_platform_by_orders": {"name": "primary_platform_by_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_organization_id": {"name": "parent_organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "parent_organization_key": {"name": "parent_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_cnt": {"name": "orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_amount_in_usd_sum": {"name": "orders_amount_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_aov": {"name": "orders_aov", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_orders_cnt_avg": {"name": "last_3m_orders_cnt_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_orders_amount_in_usd_avg": {"name": "last_3m_orders_amount_in_usd_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_12m_orders_cnt_avg": {"name": "last_12m_orders_cnt_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_month_orders_cnt": {"name": "last_month_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "3m_ago_orders_cnt": {"name": "3m_ago_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "12m_ago_orders_cnt": {"name": "12m_ago_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_12m_orders_avg_bucket": {"name": "last_12m_orders_avg_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082644.7303586, "relation_name": "dev_dkruh1.analytics___platform__organization_metrics_monthly", "raw_code": "-- import --\n\nWITH import_platform_store AS (\n\n SELECT * FROM {{ ref('analytics___platform__store') }}\n\n), import_store_metrics_monthly AS (\n\n SELECT * FROM {{ ref('analytics___platform__store_metrics_monthly') }}\n\n), \n\n-- Logic --\n\nstore_metrics_monthly_rank AS (\n\n SELECT\n month,\n store_monthly.app_key,\n store_monthly.platform_name,\n FIRST_VALUE(store_monthly.parent_organization_id,TRUE) OVER (PARTITION BY store_monthly.organization_key ORDER BY store_monthly.dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS parent_organization_id,\n FIRST_VALUE(store_monthly.parent_organization_key,TRUE) OVER (PARTITION BY store_monthly.organization_key ORDER BY store_monthly.dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS parent_organization_key,\n store_monthly.organization_id,\n store_monthly.organization_key,\n store_monthly.orders_cnt,\n store_monthly.orders_amount_in_usd_sum,\n ROW_NUMBER() OVER (PARTITION BY store_monthly.month,store_monthly.organization_key ORDER BY stores.store_created_at) AS rank_org_platform_by_store_creation,\n ROW_NUMBER() OVER (PARTITION BY store_monthly.month,store_monthly.organization_key ORDER BY store_monthly.orders_cnt DESC) AS rank_org_platform_by_orders\n FROM import_store_metrics_monthly AS store_monthly\n INNER JOIN import_platform_store AS stores\n ON store_monthly.app_key = stores.app_key\n WHERE store_monthly.organization_key IS NOT NULL\n\n),\n\norganization_metrics_monthly_wo_platform AS (\n\n SELECT\n month,\n organization_key,\n parent_organization_id,\n parent_organization_key,\n organization_id,\n SUM(orders_cnt) AS orders_cnt,\n ROUND(SUM(orders_amount_in_usd_sum),1 ) AS orders_amount_in_usd_sum,\n ROUND(SUM(orders_amount_in_usd_sum) / SUM(orders_cnt), 1) AS orders_aov\n FROM store_metrics_monthly_rank\n GROUP BY 1,2,3,4,5\n\n),\n\norganization_metrics_monthly_base AS (\n\n SELECT\n SHA2(CONCAT(org_monthly.month,org_monthly.organization_key),256) AS organization_monthly_id,\n org_monthly.month,\n org_monthly.organization_key,\n store_creation_rank.platform_name AS first_created_platform,\n store_orders_rank.platform_name AS primary_platform_by_orders,\n org_monthly.parent_organization_id,\n org_monthly.parent_organization_key,\n org_monthly.organization_id,\n org_monthly.orders_cnt,\n org_monthly.orders_amount_in_usd_sum,\n org_monthly.orders_aov,\n COALESCE(ROUND(SUM(COALESCE(org_monthly.orders_cnt, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) / COUNT(org_monthly.orders_cnt) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING), 0), 0) AS last_3m_orders_cnt_avg,\n COALESCE(ROUND(SUM(COALESCE(org_monthly.orders_amount_in_usd_sum, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) / COUNT(org_monthly.orders_amount_in_usd_sum) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING), 0), 0) AS last_3m_orders_amount_in_usd_avg,\n COALESCE(ROUND(SUM(COALESCE(org_monthly.orders_cnt, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING) / COUNT(org_monthly.orders_cnt) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING), 0), 0) AS last_12m_orders_cnt_avg, \n ROUND(SUM(COALESCE(org_monthly.orders_cnt, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING), 0) AS last_month_orders_cnt,\n COALESCE(SUM(COALESCE(org_monthly.orders_cnt, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 3 PRECEDING AND 3 PRECEDING), 0) AS 3m_ago_orders_cnt,\n COALESCE(SUM(COALESCE(org_monthly.orders_cnt, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 12 PRECEDING AND 12 PRECEDING), 0) AS 12m_ago_orders_cnt,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM organization_metrics_monthly_wo_platform AS org_monthly\n LEFT JOIN store_metrics_monthly_rank AS store_creation_rank\n ON org_monthly.month = store_creation_rank.month\n AND org_monthly.organization_key = store_creation_rank.organization_key\n AND store_creation_rank.rank_org_platform_by_store_creation = 1\n LEFT JOIN store_metrics_monthly_rank AS store_orders_rank\n ON org_monthly.month = store_orders_rank.month\n AND org_monthly.organization_key = store_orders_rank.organization_key\n AND store_orders_rank.rank_org_platform_by_orders = 1\n\n),\n\norganization_metrics_monthly_res AS (\n\n SELECT\n organization_monthly_id,\n month,\n organization_key,\n first_created_platform,\n primary_platform_by_orders,\n parent_organization_id,\n parent_organization_key,\n organization_id,\n orders_cnt,\n orders_amount_in_usd_sum,\n orders_aov,\n last_3m_orders_cnt_avg,\n last_3m_orders_amount_in_usd_avg,\n last_12m_orders_cnt_avg, \n last_month_orders_cnt,\n 3m_ago_orders_cnt,\n 12m_ago_orders_cnt,\n CASE WHEN last_3m_orders_cnt_avg BETWEEN 0 AND 999 THEN '0-1K'\n WHEN last_3m_orders_cnt_avg BETWEEN 1000 AND 2999 THEN '1K-3K'\n WHEN last_3m_orders_cnt_avg BETWEEN 3000 AND 9999 THEN '3K-10K'\n WHEN last_3m_orders_cnt_avg >= 10000 THEN '10K+'\n END AS last_3m_orders_avg_bucket,\n CASE WHEN last_12m_orders_cnt_avg BETWEEN 0 AND 999 THEN '0-1K'\n WHEN last_12m_orders_cnt_avg BETWEEN 1000 AND 2999 THEN '1K-3K'\n WHEN last_12m_orders_cnt_avg BETWEEN 3000 AND 9999 THEN '3K-10K'\n WHEN last_12m_orders_cnt_avg >= 10000 THEN '10K+'\n END AS last_12m_orders_avg_bucket,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM organization_metrics_monthly_base\n\n)\n\n-- Result --\n\nSELECT * \nFROM organization_metrics_monthly_res", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.sql", "compiled": true, "compiled_code": "-- import --\n\nWITH import_platform_store AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store\n\n), import_store_metrics_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store_metrics_monthly\n\n), \n\n-- Logic --\n\nstore_metrics_monthly_rank AS (\n\n SELECT\n month,\n store_monthly.app_key,\n store_monthly.platform_name,\n FIRST_VALUE(store_monthly.parent_organization_id,TRUE) OVER (PARTITION BY store_monthly.organization_key ORDER BY store_monthly.dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS parent_organization_id,\n FIRST_VALUE(store_monthly.parent_organization_key,TRUE) OVER (PARTITION BY store_monthly.organization_key ORDER BY store_monthly.dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS parent_organization_key,\n store_monthly.organization_id,\n store_monthly.organization_key,\n store_monthly.orders_cnt,\n store_monthly.orders_amount_in_usd_sum,\n ROW_NUMBER() OVER (PARTITION BY store_monthly.month,store_monthly.organization_key ORDER BY stores.store_created_at) AS rank_org_platform_by_store_creation,\n ROW_NUMBER() OVER (PARTITION BY store_monthly.month,store_monthly.organization_key ORDER BY store_monthly.orders_cnt DESC) AS rank_org_platform_by_orders\n FROM import_store_metrics_monthly AS store_monthly\n INNER JOIN import_platform_store AS stores\n ON store_monthly.app_key = stores.app_key\n WHERE store_monthly.organization_key IS NOT NULL\n\n),\n\norganization_metrics_monthly_wo_platform AS (\n\n SELECT\n month,\n organization_key,\n parent_organization_id,\n parent_organization_key,\n organization_id,\n SUM(orders_cnt) AS orders_cnt,\n ROUND(SUM(orders_amount_in_usd_sum),1 ) AS orders_amount_in_usd_sum,\n ROUND(SUM(orders_amount_in_usd_sum) / SUM(orders_cnt), 1) AS orders_aov\n FROM store_metrics_monthly_rank\n GROUP BY 1,2,3,4,5\n\n),\n\norganization_metrics_monthly_base AS (\n\n SELECT\n SHA2(CONCAT(org_monthly.month,org_monthly.organization_key),256) AS organization_monthly_id,\n org_monthly.month,\n org_monthly.organization_key,\n store_creation_rank.platform_name AS first_created_platform,\n store_orders_rank.platform_name AS primary_platform_by_orders,\n org_monthly.parent_organization_id,\n org_monthly.parent_organization_key,\n org_monthly.organization_id,\n org_monthly.orders_cnt,\n org_monthly.orders_amount_in_usd_sum,\n org_monthly.orders_aov,\n COALESCE(ROUND(SUM(COALESCE(org_monthly.orders_cnt, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) / COUNT(org_monthly.orders_cnt) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING), 0), 0) AS last_3m_orders_cnt_avg,\n COALESCE(ROUND(SUM(COALESCE(org_monthly.orders_amount_in_usd_sum, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) / COUNT(org_monthly.orders_amount_in_usd_sum) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING), 0), 0) AS last_3m_orders_amount_in_usd_avg,\n COALESCE(ROUND(SUM(COALESCE(org_monthly.orders_cnt, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING) / COUNT(org_monthly.orders_cnt) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING), 0), 0) AS last_12m_orders_cnt_avg, \n ROUND(SUM(COALESCE(org_monthly.orders_cnt, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING), 0) AS last_month_orders_cnt,\n COALESCE(SUM(COALESCE(org_monthly.orders_cnt, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 3 PRECEDING AND 3 PRECEDING), 0) AS 3m_ago_orders_cnt,\n COALESCE(SUM(COALESCE(org_monthly.orders_cnt, 0)) OVER (PARTITION BY org_monthly.organization_key ORDER BY org_monthly.month ROWS BETWEEN 12 PRECEDING AND 12 PRECEDING), 0) AS 12m_ago_orders_cnt,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM organization_metrics_monthly_wo_platform AS org_monthly\n LEFT JOIN store_metrics_monthly_rank AS store_creation_rank\n ON org_monthly.month = store_creation_rank.month\n AND org_monthly.organization_key = store_creation_rank.organization_key\n AND store_creation_rank.rank_org_platform_by_store_creation = 1\n LEFT JOIN store_metrics_monthly_rank AS store_orders_rank\n ON org_monthly.month = store_orders_rank.month\n AND org_monthly.organization_key = store_orders_rank.organization_key\n AND store_orders_rank.rank_org_platform_by_orders = 1\n\n),\n\norganization_metrics_monthly_res AS (\n\n SELECT\n organization_monthly_id,\n month,\n organization_key,\n first_created_platform,\n primary_platform_by_orders,\n parent_organization_id,\n parent_organization_key,\n organization_id,\n orders_cnt,\n orders_amount_in_usd_sum,\n orders_aov,\n last_3m_orders_cnt_avg,\n last_3m_orders_amount_in_usd_avg,\n last_12m_orders_cnt_avg, \n last_month_orders_cnt,\n 3m_ago_orders_cnt,\n 12m_ago_orders_cnt,\n CASE WHEN last_3m_orders_cnt_avg BETWEEN 0 AND 999 THEN '0-1K'\n WHEN last_3m_orders_cnt_avg BETWEEN 1000 AND 2999 THEN '1K-3K'\n WHEN last_3m_orders_cnt_avg BETWEEN 3000 AND 9999 THEN '3K-10K'\n WHEN last_3m_orders_cnt_avg >= 10000 THEN '10K+'\n END AS last_3m_orders_avg_bucket,\n CASE WHEN last_12m_orders_cnt_avg BETWEEN 0 AND 999 THEN '0-1K'\n WHEN last_12m_orders_cnt_avg BETWEEN 1000 AND 2999 THEN '1K-3K'\n WHEN last_12m_orders_cnt_avg BETWEEN 3000 AND 9999 THEN '3K-10K'\n WHEN last_12m_orders_cnt_avg >= 10000 THEN '10K+'\n END AS last_12m_orders_avg_bucket,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM organization_metrics_monthly_base\n\n)\n\n-- Result --\n\nSELECT * \nFROM organization_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_name": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_name", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.sql", "unique_id": "model.yoda.analytics___platform__organization_name", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_name", "analytics___platform__organization_name"], "alias": "analytics___platform__organization_name", "checksum": {"name": "sha256", "checksum": "ff10d0aea2f0757b16da184ed83533f6d512bb7cff50c22914e84414e7684070"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Name of each organiozation. PK: [organization_key/organization_id]\n\nSalesforce account name if available, if not, organization name from yotpoapiprod.organizations", "columns": {"organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_name": {"name": "organization_name", "description": "Salesforce account name if available, if not, organization name from yotpoapiprod.organizations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082644.7755084, "relation_name": "dev_dkruh1.analytics___platform__organization_name", "raw_code": "-- Import --\n\nWITH import_platform_stg__organization AS (\n SELECT * FROM {{ ref('analytics___platform_stg__organization') }}\n),\n\nimport_sf_account AS (\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_account') }}\n),\n\n-- Logic --\n\nsf_org_name AS (\n\n SELECT \n organization_key,\n account_name AS organization_name\n FROM import_sf_account\n WHERE organization_key IS NOT NULL\n QUALIFY ROW_NUMBER() OVER (PARTITION BY organization_key ORDER BY created_date DESC) = 1 -- Latest account\n\n), organization_name AS (\n\n SELECT \n organization.organization_id,\n organization.organization_key,\n NVL(sf.organization_name,organization.organization_name) AS organization_name,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_platform_stg__organization AS organization\n LEFT JOIN sf_org_name AS sf\n ON organization.organization_key = sf.organization_key\n)\n-- Result --\n\nSELECT *\nFROM organization_name", "language": "sql", "refs": [{"name": "analytics___platform_stg__organization", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__organization", "model.yoda.analytics___salesforce_stg__mc_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__organization AS (\n SELECT * FROM dev_dkruh1.analytics___platform_stg__organization\n),\n\nimport_sf_account AS (\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_account\n),\n\n-- Logic --\n\nsf_org_name AS (\n\n SELECT \n organization_key,\n account_name AS organization_name\n FROM import_sf_account\n WHERE organization_key IS NOT NULL\n QUALIFY ROW_NUMBER() OVER (PARTITION BY organization_key ORDER BY created_date DESC) = 1 -- Latest account\n\n), organization_name AS (\n\n SELECT \n organization.organization_id,\n organization.organization_key,\n NVL(sf.organization_name,organization.organization_name) AS organization_name,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_platform_stg__organization AS organization\n LEFT JOIN sf_org_name AS sf\n ON organization.organization_key = sf.organization_key\n)\n-- Result --\n\nSELECT *\nFROM organization_name", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_opportunity_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_opportunity_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.sql", "unique_id": "model.yoda.analytics___platform__organization_opportunity_monthly", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_opportunity_monthly", "analytics___platform__organization_opportunity_monthly"], "alias": "analytics___platform__organization_opportunity_monthly", "checksum": {"name": "sha256", "checksum": "5e7030c4a52240d69e8fb419a122ace43af05b5b085b617fd0ead9295b6440c4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled Table of opportunity monthly time range based of over_time calculation (for ht_self_service opportunities).\nOpportunity will have month value if start or end date was in month.\nGranularity: month | opportunity_id", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "PK: platform__organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "PK: salesforce__opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "region code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment": {"name": "order_sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_segment_group": {"name": "sales_segment_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_start_month": {"name": "opportunity_start_month", "description": "opportunity start month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_end_month": {"name": "opportunity_end_month", "description": "opportunity end month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_ht_self_service": {"name": "is_ht_self_service", "description": "opportuinty also called ht_motion.\nself service with AE assitence.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "row_rank_for_organization_and_month": {"name": "row_rank_for_organization_and_month", "description": "rank opportunities for organization by latests in month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082644.8182526, "relation_name": "dev_dkruh1.analytics___platform__organization_opportunity_monthly", "raw_code": "-- Import --\n\nWITH import_opportunity AS (\nSELECT * FROM {{ ref('analytics___salesforce__opportunity') }}\n), \n\nimport_sf_account AS (\nSELECT * FROM {{ ref('analytics___salesforce_stg__mc_account') }}\n),\n\nimport_opportunity_ht_ss_over_time AS (\nSELECT * FROM {{ ref('analytics___platform__opportunity_ht_ss_over_time') }}\n),\n\nimport_calendar AS (\nSELECT DISTINCT TRUNC(date,'MONTH') AS month\nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date < CURRENT_DATE\n),\n\n-- Logic --\n\nwon_opportunity AS (\nSELECT DISTINCT\n opportunity.opportunity_id,\n account.organization_key,\n opportunity.sales_region,\n opportunity.order_sales_segment,\n TRUNC(opportunity.start_date,'MONTH') AS opportunity_start_month,\n TRUNC(NVL(opportunity.actual_end_date,'2999-12-01'),'MONTH') AS opportunity_end_month\nFROM import_opportunity AS opportunity\nINNER JOIN import_sf_account AS account\n ON account.account_id = opportunity.account_id\nWHERE opportunity.is_deleted = 0\nAND opportunity.is_won_sale = 1\nAND LOWER(opportunity.type) <> 'poc'\nAND account.is_test_account = 0\nAND account.is_deleted_account = 0\nAND opportunity.start_date < CURRENT_DATE\nAND account.organization_key IS NOT NULL\nAND opportunity.start_date <> NVL(opportunity.actual_end_date,'2999-12-01')\nAND is_ht_ss = 0 \n),\n\nht_ss_opportunity AS (\nSELECT \n organization_key, \n opportunity_id,\n sales_region,\n order_sales_segment,\n TRUNC(opportunity_ht_ss_start_date,'MONTH') AS opportunity_start_month,\n TRUNC(MAX(opportunity_ht_ss_end_date),'MONTH') AS opportunity_end_month\nFROM import_opportunity_ht_ss_over_time\nGROUP BY 1,2,3,4,5\n),\n\nopportunity_union AS (\nSELECT \n organization_key, \n opportunity_id,\n sales_region,\n order_sales_segment,\n opportunity_start_month,\n opportunity_end_month,\n 1 AS is_ht_self_service\nFROM ht_ss_opportunity\nUNION ALL\nSELECT\n organization_key, \n opportunity_id,\n sales_region,\n order_sales_segment,\n opportunity_start_month,\n opportunity_end_month,\n 0 AS is_ht_self_service\nFROM won_opportunity\n),\n\nopportunity_monthly_res AS (\nSELECT \n dates.month,\n organization_key, \n opportunity_id,\n sales_region,\n order_sales_segment,\n CASE WHEN LOWER(order_sales_segment) IN ('enterprise','mm') THEN 'MM'\n WHEN LOWER(order_sales_segment) LIKE '%smb%' THEN 'SMB'\n WHEN LOWER(order_sales_segment) LIKE '%vsb%' THEN 'VSB'\n ELSE NULL END AS sales_segment_group,\n opportunity_start_month,\n opportunity_end_month,\n SMALLINT(is_ht_self_service) AS is_ht_self_service,\n ROW_NUMBER() OVER (PARTITION BY dates.month, organization_key ORDER BY opportunity_start_month DESC, opportunity_end_month DESC) as row_rank_for_organization_and_month,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM opportunity_union AS opportunity\nINNER JOIN import_calendar AS dates\n ON dates.month BETWEEN opportunity.opportunity_start_month \n AND opportunity.opportunity_end_month\n)\n\nSELECT * \nFROM opportunity_monthly_res", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}, {"name": "analytics___platform__opportunity_ht_ss_over_time", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___platform__opportunity_ht_ss_over_time", "model.yoda.platform_stg__dim_calendar"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_opportunity AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n), \n\nimport_sf_account AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_account\n),\n\nimport_opportunity_ht_ss_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___platform__opportunity_ht_ss_over_time\n),\n\nimport_calendar AS (\nSELECT DISTINCT TRUNC(date,'MONTH') AS month\nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date < CURRENT_DATE\n),\n\n-- Logic --\n\nwon_opportunity AS (\nSELECT DISTINCT\n opportunity.opportunity_id,\n account.organization_key,\n opportunity.sales_region,\n opportunity.order_sales_segment,\n TRUNC(opportunity.start_date,'MONTH') AS opportunity_start_month,\n TRUNC(NVL(opportunity.actual_end_date,'2999-12-01'),'MONTH') AS opportunity_end_month\nFROM import_opportunity AS opportunity\nINNER JOIN import_sf_account AS account\n ON account.account_id = opportunity.account_id\nWHERE opportunity.is_deleted = 0\nAND opportunity.is_won_sale = 1\nAND LOWER(opportunity.type) <> 'poc'\nAND account.is_test_account = 0\nAND account.is_deleted_account = 0\nAND opportunity.start_date < CURRENT_DATE\nAND account.organization_key IS NOT NULL\nAND opportunity.start_date <> NVL(opportunity.actual_end_date,'2999-12-01')\nAND is_ht_ss = 0 \n),\n\nht_ss_opportunity AS (\nSELECT \n organization_key, \n opportunity_id,\n sales_region,\n order_sales_segment,\n TRUNC(opportunity_ht_ss_start_date,'MONTH') AS opportunity_start_month,\n TRUNC(MAX(opportunity_ht_ss_end_date),'MONTH') AS opportunity_end_month\nFROM import_opportunity_ht_ss_over_time\nGROUP BY 1,2,3,4,5\n),\n\nopportunity_union AS (\nSELECT \n organization_key, \n opportunity_id,\n sales_region,\n order_sales_segment,\n opportunity_start_month,\n opportunity_end_month,\n 1 AS is_ht_self_service\nFROM ht_ss_opportunity\nUNION ALL\nSELECT\n organization_key, \n opportunity_id,\n sales_region,\n order_sales_segment,\n opportunity_start_month,\n opportunity_end_month,\n 0 AS is_ht_self_service\nFROM won_opportunity\n),\n\nopportunity_monthly_res AS (\nSELECT \n dates.month,\n organization_key, \n opportunity_id,\n sales_region,\n order_sales_segment,\n CASE WHEN LOWER(order_sales_segment) IN ('enterprise','mm') THEN 'MM'\n WHEN LOWER(order_sales_segment) LIKE '%smb%' THEN 'SMB'\n WHEN LOWER(order_sales_segment) LIKE '%vsb%' THEN 'VSB'\n ELSE NULL END AS sales_segment_group,\n opportunity_start_month,\n opportunity_end_month,\n SMALLINT(is_ht_self_service) AS is_ht_self_service,\n ROW_NUMBER() OVER (PARTITION BY dates.month, organization_key ORDER BY opportunity_start_month DESC, opportunity_end_month DESC) as row_rank_for_organization_and_month,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM opportunity_union AS opportunity\nINNER JOIN import_calendar AS dates\n ON dates.month BETWEEN opportunity.opportunity_start_month \n AND opportunity.opportunity_end_month\n)\n\nSELECT * \nFROM opportunity_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_plan_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_plan_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.sql", "unique_id": "model.yoda.analytics___platform__organization_plan_daily", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "analytics___platform__organization_plan_daily"], "alias": "analytics___platform__organization_plan_daily", "checksum": {"name": "sha256", "checksum": "210fac5c49b452a59e5666b972e97957d01e0506e9bb2ff01f03aad951de1a49"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["date", "organization_key", "product_family"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Daily aggregated table for organization product plan daily.\nGranularity: date|organization_key|product_family", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "plan_name based on priority logic", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "plan_id based on priority logic", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "sms_plan_id": {"name": "sms_plan_id", "description": "FK: plan_id in analytics___sms_stg__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyalty_plan_id": {"name": "loyalty_plan_id", "description": "FK: plan_id in loyalty_stg__plans", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_self_service": {"name": "is_self_service", "description": "Indicates if the plan is a self service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "Indicates if the plan is a free plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "Indicates if the plan is a full service plan or not (also known as is_annual but since we also have self service plans with option to pay annualy, we changed the terminology)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "plan_name_array": {"name": "plan_name_array", "description": "Array of all the plans of the stores under the organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "plan_name_cnt": {"name": "plan_name_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key_array": {"name": "app_key_array", "description": "Array of the app keys under the organization (app keys with plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "incremental_strategy": "merge", "unique_key": ["date", "organization_key", "product_family"], "partition_by": ["date"]}, "created_at": 1700082644.877807, "relation_name": "dev_dkruh1.analytics___platform__organization_plan_daily", "raw_code": "{{ config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'merge',\n unique_key = ['date','organization_key','product_family'],\n partition_by = ['date']\n )\n}}\n\n-- Imports --\nWITH import_store_plan_daily AS (\nSELECT * FROM {{ ref('analytics___platform__store_plan_daily') }}\n{% if is_incremental() %}\nWHERE date > (SELECT DATE_SUB(MAX(date),7) FROM {{ this }})\n{% endif %}\n),\n\nimport_product_plan_name_rank AS (\nSELECT * FROM {{ ref('analytics___platform_stg__product_plan_name_rank') }}\n),\n\n-- Logic --\nstore_plan_rank AS (\nSELECT\n store_plan.date,\n store_plan.app_key,\n store_plan.organization_key,\n store_plan.product_family,\n store_plan.plan_name,\n store_plan.plan_id,\n store_plan.sms_plan_id,\n store_plan.loyalty_plan_id,\n store_plan.is_self_service,\n store_plan.is_free,\n store_plan.is_full_service,\n store_plan.is_reviews,\n store_plan.is_loyalty,\n store_plan.is_vms,\n store_plan.is_subscriptions,\n store_plan.is_sms,\n store_plan.is_email,\n plan_rank.product_plan_rank,\n MAX(plan_rank.product_plan_rank) OVER(PARTITION BY store_plan.organization_key, store_plan.date, store_plan.product_family) AS max_org_product_plan_rank\nFROM import_store_plan_daily AS store_plan\nLEFT JOIN import_product_plan_name_rank AS plan_rank\n ON store_plan.plan_name = plan_rank.plan_name\n AND store_plan.product_family = plan_rank.product_family\nWHERE store_plan.organization_key IS NOT NULL\n),\n\norg_plan_daily AS (\nSELECT\n date,\n organization_key,\n product_family,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,plan_name,NULL)) AS plan_name,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,plan_id,NULL)) AS plan_id,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,sms_plan_id,NULL)) AS sms_plan_id,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,loyalty_plan_id,NULL)) AS loyalty_plan_id,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,is_self_service,NULL)) AS is_self_service,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,is_free,NULL)) AS is_free,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,is_full_service,NULL)) AS is_full_service,\n MAX(is_reviews) AS is_reviews,\n MAX(is_loyalty) AS is_loyalty,\n MAX(is_vms) AS is_vms,\n MAX(is_subscriptions) AS is_subscriptions,\n MAX(is_sms) AS is_sms,\n MAX(is_email) AS is_email,\n SORT_ARRAY(COLLECT_SET(plan_name)) AS plan_name_array,\n SIZE(COLLECT_SET(plan_name)) AS plan_name_cnt,\n SORT_ARRAY(COLLECT_SET(app_key)) AS app_key_array\nFROM store_plan_rank\nGROUP BY 1,2,3\n),\n\norg_plan_daily_w_timestamp AS (\nSELECT\n date,\n organization_key,\n product_family,\n plan_name,\n plan_id,\n sms_plan_id,\n loyalty_plan_id,\n is_self_service,\n is_free,\n is_full_service,\n is_reviews,\n is_loyalty,\n is_vms,\n is_subscriptions,\n is_sms,\n is_email,\n plan_name_array,\n plan_name_cnt,\n app_key_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM org_plan_daily\n)\n\nSELECT *\nFROM org_plan_daily_w_timestamp\n{% if target.name == 'dev' %}\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,8) AND DATE_SUB(CURRENT_DATE,1)\n{% endif %}", "language": "sql", "refs": [{"name": "analytics___platform__store_plan_daily", "package": null, "version": null}, {"name": "analytics___platform_stg__product_plan_name_rank", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform_stg__product_plan_name_rank"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.sql", "compiled": true, "compiled_code": "\n\n-- Imports --\nWITH import_store_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_plan_daily\n\n),\n\nimport_product_plan_name_rank AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__product_plan_name_rank\n),\n\n-- Logic --\nstore_plan_rank AS (\nSELECT\n store_plan.date,\n store_plan.app_key,\n store_plan.organization_key,\n store_plan.product_family,\n store_plan.plan_name,\n store_plan.plan_id,\n store_plan.sms_plan_id,\n store_plan.loyalty_plan_id,\n store_plan.is_self_service,\n store_plan.is_free,\n store_plan.is_full_service,\n store_plan.is_reviews,\n store_plan.is_loyalty,\n store_plan.is_vms,\n store_plan.is_subscriptions,\n store_plan.is_sms,\n store_plan.is_email,\n plan_rank.product_plan_rank,\n MAX(plan_rank.product_plan_rank) OVER(PARTITION BY store_plan.organization_key, store_plan.date, store_plan.product_family) AS max_org_product_plan_rank\nFROM import_store_plan_daily AS store_plan\nLEFT JOIN import_product_plan_name_rank AS plan_rank\n ON store_plan.plan_name = plan_rank.plan_name\n AND store_plan.product_family = plan_rank.product_family\nWHERE store_plan.organization_key IS NOT NULL\n),\n\norg_plan_daily AS (\nSELECT\n date,\n organization_key,\n product_family,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,plan_name,NULL)) AS plan_name,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,plan_id,NULL)) AS plan_id,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,sms_plan_id,NULL)) AS sms_plan_id,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,loyalty_plan_id,NULL)) AS loyalty_plan_id,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,is_self_service,NULL)) AS is_self_service,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,is_free,NULL)) AS is_free,\n MAX(IF(product_plan_rank = max_org_product_plan_rank,is_full_service,NULL)) AS is_full_service,\n MAX(is_reviews) AS is_reviews,\n MAX(is_loyalty) AS is_loyalty,\n MAX(is_vms) AS is_vms,\n MAX(is_subscriptions) AS is_subscriptions,\n MAX(is_sms) AS is_sms,\n MAX(is_email) AS is_email,\n SORT_ARRAY(COLLECT_SET(plan_name)) AS plan_name_array,\n SIZE(COLLECT_SET(plan_name)) AS plan_name_cnt,\n SORT_ARRAY(COLLECT_SET(app_key)) AS app_key_array\nFROM store_plan_rank\nGROUP BY 1,2,3\n),\n\norg_plan_daily_w_timestamp AS (\nSELECT\n date,\n organization_key,\n product_family,\n plan_name,\n plan_id,\n sms_plan_id,\n loyalty_plan_id,\n is_self_service,\n is_free,\n is_full_service,\n is_reviews,\n is_loyalty,\n is_vms,\n is_subscriptions,\n is_sms,\n is_email,\n plan_name_array,\n plan_name_cnt,\n app_key_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM org_plan_daily\n)\n\nSELECT *\nFROM org_plan_daily_w_timestamp\n\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,8) AND DATE_SUB(CURRENT_DATE,1)\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_plan_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_plan_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.sql", "unique_id": "model.yoda.analytics___platform__organization_plan_monthly", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_monthly", "analytics___platform__organization_plan_monthly"], "alias": "analytics___platform__organization_plan_monthly", "checksum": {"name": "sha256", "checksum": "6e7b2d1dc91afbcd6375b81f35968b3255ef13c18f6d89d5bf2b16c7cf1d74e5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Monthly aggregated table for organization product plan daily.\nGranularity: month|organization_key|product_family\n\nThe table shows:\n 1. closing plan - the plan on the last day of the month or the plan today for current month\n 2. opening plan - the plan on the last day of the previous month", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_group": {"name": "opening_plan_group", "description": "opening plan tier (for example, Reviews \"prime 100\" and \"prime 200\" will both get \"prime\")", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_group": {"name": "closing_plan_group", "description": "closing plan tier (for example, Reviews \"prime 100\" and \"prime 200\" will both get \"prime\")", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_name": {"name": "opening_plan_name", "description": "plan_name based on priority logic (relate to the opening plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name": {"name": "closing_plan_name", "description": "plan_name based on priority logic (relate to the closing plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_product_plan_rank": {"name": "opening_product_plan_rank", "description": "The rank of the opening plan from analytics___platform_stg__product_plan_name_rank\nIt gives an indication if the plan is higher or lower than other plans in the product.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_product_plan_rank": {"name": "closing_product_plan_rank", "description": "The rank of the closing plan from analytics___platform_stg__product_plan_name_rank\nIt gives an indication if the plan is higher or lower than other plans in the product.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_is_self_service": {"name": "opening_is_self_service", "description": "Indicates if the opening plan is a self service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_self_service": {"name": "closing_is_self_service", "description": "Indicates if the closing plan is a self service plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_free": {"name": "opening_is_free", "description": "Indicates if the opening plan is a free plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_free": {"name": "closing_is_free", "description": "Indicates if the closing plan is a free plan or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_is_full_service": {"name": "opening_is_full_service", "description": "Indicates if the opening plan is a full service plan or not (also known as is_annual but since we also have self service plans with option to pay annualy, we changed the terminology)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_is_full_service": {"name": "closing_is_full_service", "description": "Indicates if the closing plan is a full service plan or not (also known as is_annual but since we also have self service plans with option to pay annualy, we changed the terminology)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "plan_change_type": {"name": "plan_change_type", "description": "The type of plan change, for example, if:\n 1. opening plan = Reviews free\n 2. closing plan = Reviews Growth 100\n Then the type will be \"upgrade - free to paying\"", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opening_plan_id": {"name": "opening_plan_id", "description": "plan_id based on priority logic (relate to the opening plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_sms_plan_id": {"name": "opening_sms_plan_id", "description": "FK: plan_id in analytics___sms_stg__plan (relate to the opening plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opening_loyalty_plan_id": {"name": "opening_loyalty_plan_id", "description": "FK: plan_id in loyalty_stg__plans (relate to the opening plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "closing_plan_id": {"name": "closing_plan_id", "description": "plan_id based on priority logic (relate to the closing plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_sms_plan_id": {"name": "closing_sms_plan_id", "description": "FK: plan_id in analytics___sms_stg__plan (relate to the closing plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "closing_loyalty_plan_id": {"name": "closing_loyalty_plan_id", "description": "FK: plan_id in loyalty_stg__plans (relate to the closing plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opening_plan_name_array": {"name": "opening_plan_name_array", "description": "Array of all the plans of the stores under the organization (relate to the opening plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "opening_plan_name_cnt": {"name": "opening_plan_name_cnt", "description": "Count of all the plans of the stores under the organization (relate to the opening plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_plan_name_array": {"name": "closing_plan_name_array", "description": "Array of all the plans of the stores under the organization (relate to the closing plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "closing_plan_name_cnt": {"name": "closing_plan_name_cnt", "description": "Count of all the plans of the stores under the organization (relate to the closing plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key_array": {"name": "app_key_array", "description": "Array of the app keys under the organization (app keys with plan)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082645.0233884, "relation_name": "dev_dkruh1.analytics___platform__organization_plan_monthly", "raw_code": "-- Imports --\nWITH import_organization_plan_daily AS (\nSELECT * FROM {{ ref('analytics___platform__organization_plan_daily') }}\n),\n\nimport_product_plan_name_rank AS (\nSELECT * FROM {{ ref('analytics___platform_stg__product_plan_name_rank') }}\n),\n\n-- Logic --\nclosing_organization_plan_monthly AS (\nSELECT\n TRUNC(org_plan.date,'MONTH') AS month,\n org_plan.organization_key,\n org_plan.product_family,\n plan_rank.plan_group,\n org_plan.plan_name,\n org_plan.plan_id,\n org_plan.sms_plan_id,\n org_plan.loyalty_plan_id,\n plan_rank.product_plan_rank,\n org_plan.is_self_service,\n org_plan.is_free,\n org_plan.is_full_service,\n org_plan.is_reviews,\n org_plan.is_loyalty,\n org_plan.is_vms,\n org_plan.is_subscriptions,\n org_plan.is_sms,\n org_plan.is_email,\n org_plan.plan_name_array,\n org_plan.plan_name_cnt,\n org_plan.app_key_array\nFROM import_organization_plan_daily AS org_plan\nLEFT JOIN import_product_plan_name_rank AS plan_rank\n ON org_plan.plan_name = plan_rank.plan_name\n AND org_plan.product_family = plan_rank.product_family\nWHERE LAST_DAY(org_plan.date) = org_plan.date\nOR org_plan.date = DATE_SUB(CURRENT_DATE,1)\n),\n\nopening_organization_plan_monthly AS (\nSELECT\n ADD_MONTHS(month,1) AS month,\n organization_key,\n product_family,\n plan_group,\n plan_name,\n plan_id,\n sms_plan_id,\n loyalty_plan_id,\n product_plan_rank,\n is_self_service,\n is_free,\n is_full_service,\n is_reviews,\n is_loyalty,\n is_vms,\n is_subscriptions,\n is_sms,\n is_email,\n plan_name_array,\n plan_name_cnt,\n app_key_array\nFROM closing_organization_plan_monthly\nWHERE month < TRUNC(CURRENT_DATE,'MONTH')\n),\n\norganization_plan_monthly AS (\nSELECT\n NVL(opening.month,closing.month) AS month,\n NVL(opening.organization_key,closing.organization_key) AS organization_key,\n NVL(opening.product_family,closing.product_family) AS product_family,\n opening.plan_group AS opening_plan_group,\n closing.plan_group AS closing_plan_group,\n opening.plan_name AS opening_plan_name,\n closing.plan_name AS closing_plan_name,\n opening.product_plan_rank AS opening_product_plan_rank,\n closing.product_plan_rank AS closing_product_plan_rank,\n opening.is_self_service AS opening_is_self_service,\n closing.is_self_service AS closing_is_self_service,\n opening.is_free AS opening_is_free,\n closing.is_free AS closing_is_free,\n opening.is_full_service AS opening_is_full_service,\n closing.is_full_service AS closing_is_full_service,\n CASE WHEN opening.plan_name IS NULL \n AND closing.is_free = 1 THEN 'new - free'\n WHEN opening.plan_name IS NULL \n AND closing.is_free = 0 THEN 'new - paying'\n WHEN opening.is_free = 1 \n AND closing.plan_name IS NULL THEN 'churn - free to null'\n WHEN opening.is_free = 0 \n AND closing.plan_name IS NULL THEN 'churn - paying to null'\n WHEN opening.is_free = 1 \n AND closing.is_free = 1 THEN 'retain - free'\n WHEN opening.is_free = 1 \n AND closing.is_free = 0 THEN 'upgrade - free to paying'\n WHEN opening.is_free = 0 \n AND closing.is_free = 1 THEN 'downgrade - paying to free'\n WHEN opening.is_free = 0 \n AND closing.is_free = 0 \n AND opening.product_plan_rank = closing.product_plan_rank THEN 'retain - paying'\n WHEN opening.is_free = 0 \n AND closing.is_free = 0 \n AND opening.product_plan_rank > closing.product_plan_rank THEN 'downgrade - paying'\n WHEN opening.is_free = 0 \n AND closing.is_free = 0 \n AND opening.product_plan_rank < closing.product_plan_rank THEN 'upgrade - paying'\n END AS plan_change_type,\n opening.plan_id AS opening_plan_id,\n opening.sms_plan_id AS opening_sms_plan_id,\n opening.loyalty_plan_id AS opening_loyalty_plan_id,\n closing.plan_id AS closing_plan_id,\n closing.sms_plan_id AS closing_sms_plan_id,\n closing.loyalty_plan_id AS closing_loyalty_plan_id,\n IFNULL(closing.is_reviews,opening.is_reviews) AS is_reviews,\n IFNULL(closing.is_loyalty,opening.is_loyalty) AS is_loyalty,\n IFNULL(closing.is_vms,opening.is_vms) AS is_vms,\n IFNULL(closing.is_subscriptions,opening.is_subscriptions) AS is_subscriptions,\n IFNULL(closing.is_sms,opening.is_sms) AS is_sms,\n IFNULL(closing.is_email,opening.is_email) AS is_email,\n opening.plan_name_array AS opening_plan_name_array,\n opening.plan_name_cnt AS opening_plan_name_cnt,\n closing.plan_name_array AS closing_plan_name_array,\n closing.plan_name_cnt AS closing_plan_name_cnt,\n IFNULL(closing.app_key_array,opening.app_key_array) AS app_key_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM opening_organization_plan_monthly AS opening\nFULL OUTER JOIN closing_organization_plan_monthly AS closing\n ON opening.month = closing.month\n AND opening.organization_key = closing.organization_key\n AND opening.product_family = closing.product_family\n)\n\nSELECT * \nFROM organization_plan_monthly", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}, {"name": "analytics___platform_stg__product_plan_name_rank", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___platform_stg__product_plan_name_rank"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.sql", "compiled": true, "compiled_code": "-- Imports --\nWITH import_organization_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_plan_daily\n),\n\nimport_product_plan_name_rank AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__product_plan_name_rank\n),\n\n-- Logic --\nclosing_organization_plan_monthly AS (\nSELECT\n TRUNC(org_plan.date,'MONTH') AS month,\n org_plan.organization_key,\n org_plan.product_family,\n plan_rank.plan_group,\n org_plan.plan_name,\n org_plan.plan_id,\n org_plan.sms_plan_id,\n org_plan.loyalty_plan_id,\n plan_rank.product_plan_rank,\n org_plan.is_self_service,\n org_plan.is_free,\n org_plan.is_full_service,\n org_plan.is_reviews,\n org_plan.is_loyalty,\n org_plan.is_vms,\n org_plan.is_subscriptions,\n org_plan.is_sms,\n org_plan.is_email,\n org_plan.plan_name_array,\n org_plan.plan_name_cnt,\n org_plan.app_key_array\nFROM import_organization_plan_daily AS org_plan\nLEFT JOIN import_product_plan_name_rank AS plan_rank\n ON org_plan.plan_name = plan_rank.plan_name\n AND org_plan.product_family = plan_rank.product_family\nWHERE LAST_DAY(org_plan.date) = org_plan.date\nOR org_plan.date = DATE_SUB(CURRENT_DATE,1)\n),\n\nopening_organization_plan_monthly AS (\nSELECT\n ADD_MONTHS(month,1) AS month,\n organization_key,\n product_family,\n plan_group,\n plan_name,\n plan_id,\n sms_plan_id,\n loyalty_plan_id,\n product_plan_rank,\n is_self_service,\n is_free,\n is_full_service,\n is_reviews,\n is_loyalty,\n is_vms,\n is_subscriptions,\n is_sms,\n is_email,\n plan_name_array,\n plan_name_cnt,\n app_key_array\nFROM closing_organization_plan_monthly\nWHERE month < TRUNC(CURRENT_DATE,'MONTH')\n),\n\norganization_plan_monthly AS (\nSELECT\n NVL(opening.month,closing.month) AS month,\n NVL(opening.organization_key,closing.organization_key) AS organization_key,\n NVL(opening.product_family,closing.product_family) AS product_family,\n opening.plan_group AS opening_plan_group,\n closing.plan_group AS closing_plan_group,\n opening.plan_name AS opening_plan_name,\n closing.plan_name AS closing_plan_name,\n opening.product_plan_rank AS opening_product_plan_rank,\n closing.product_plan_rank AS closing_product_plan_rank,\n opening.is_self_service AS opening_is_self_service,\n closing.is_self_service AS closing_is_self_service,\n opening.is_free AS opening_is_free,\n closing.is_free AS closing_is_free,\n opening.is_full_service AS opening_is_full_service,\n closing.is_full_service AS closing_is_full_service,\n CASE WHEN opening.plan_name IS NULL \n AND closing.is_free = 1 THEN 'new - free'\n WHEN opening.plan_name IS NULL \n AND closing.is_free = 0 THEN 'new - paying'\n WHEN opening.is_free = 1 \n AND closing.plan_name IS NULL THEN 'churn - free to null'\n WHEN opening.is_free = 0 \n AND closing.plan_name IS NULL THEN 'churn - paying to null'\n WHEN opening.is_free = 1 \n AND closing.is_free = 1 THEN 'retain - free'\n WHEN opening.is_free = 1 \n AND closing.is_free = 0 THEN 'upgrade - free to paying'\n WHEN opening.is_free = 0 \n AND closing.is_free = 1 THEN 'downgrade - paying to free'\n WHEN opening.is_free = 0 \n AND closing.is_free = 0 \n AND opening.product_plan_rank = closing.product_plan_rank THEN 'retain - paying'\n WHEN opening.is_free = 0 \n AND closing.is_free = 0 \n AND opening.product_plan_rank > closing.product_plan_rank THEN 'downgrade - paying'\n WHEN opening.is_free = 0 \n AND closing.is_free = 0 \n AND opening.product_plan_rank < closing.product_plan_rank THEN 'upgrade - paying'\n END AS plan_change_type,\n opening.plan_id AS opening_plan_id,\n opening.sms_plan_id AS opening_sms_plan_id,\n opening.loyalty_plan_id AS opening_loyalty_plan_id,\n closing.plan_id AS closing_plan_id,\n closing.sms_plan_id AS closing_sms_plan_id,\n closing.loyalty_plan_id AS closing_loyalty_plan_id,\n IFNULL(closing.is_reviews,opening.is_reviews) AS is_reviews,\n IFNULL(closing.is_loyalty,opening.is_loyalty) AS is_loyalty,\n IFNULL(closing.is_vms,opening.is_vms) AS is_vms,\n IFNULL(closing.is_subscriptions,opening.is_subscriptions) AS is_subscriptions,\n IFNULL(closing.is_sms,opening.is_sms) AS is_sms,\n IFNULL(closing.is_email,opening.is_email) AS is_email,\n opening.plan_name_array AS opening_plan_name_array,\n opening.plan_name_cnt AS opening_plan_name_cnt,\n closing.plan_name_array AS closing_plan_name_array,\n closing.plan_name_cnt AS closing_plan_name_cnt,\n IFNULL(closing.app_key_array,opening.app_key_array) AS app_key_array,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM opening_organization_plan_monthly AS opening\nFULL OUTER JOIN closing_organization_plan_monthly AS closing\n ON opening.month = closing.month\n AND opening.organization_key = closing.organization_key\n AND opening.product_family = closing.product_family\n)\n\nSELECT * \nFROM organization_plan_monthly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_platform": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_platform", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.sql", "unique_id": "model.yoda.analytics___platform__organization_platform", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_platform", "analytics___platform__organization_platform"], "alias": "analytics___platform__organization_platform", "checksum": {"name": "sha256", "checksum": "7b4af4e98d40cd6a387c2edef0cbae37e28f3daa1ef7388a68a69f4fbb51fb67"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "PK [organization_key]\n\nThis table calculate the platform of each organization.\n\nEach organization can have multiple stores and each store can have only one platform.\n\nWe define the organization's platform as the platform that occur the most among the organization's stores.\n\nIn case multiple platforms have the exact same number of occurance, we choose the platform that occur the most in the entire population.", "columns": {"organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "Each organization can have multiple stores and each store can have only one platform.\n\nWe define the organization's platform as the platform that occur the most among the organization's stores.\n\nIn case multiple platforms have the exact same number of occurance, we choose the platform that occur the most in the entire population.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_shopify": {"name": "is_shopify", "description": "Indicates if the organization platform is Shopify or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082645.095997, "relation_name": "dev_dkruh1.analytics___platform__organization_platform", "raw_code": "-- import --\n\nWITH import_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\n-- Logic --\n\norganization_platform_store_count AS (\nSELECT\n organization_key,\n platform_name,\n SUM(IF(is_test=0 AND platform_name IS NOT NULL,1,0.001)) AS store_count -- Giving less weight for test/NULL platform stores.\nFROM import_store\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2\n),\n\nplatform_store_count AS (\nSELECT\n platform_name,\n SUM(IF(is_test=0,1,0.001)) AS store_count -- Giving less weight for test stores.\nFROM import_store\nWHERE platform_name IS NOT NULL\n AND organization_key IS NOT NULL\nGROUP BY 1\nORDER BY 2 DESC\n),\n\norganization_platform AS (\nSELECT\n org.organization_key,\n org.platform_name,\n SMALLINT(NVL(org.platform_name,'') ='shopify') AS is_shopify,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM organization_platform_store_count AS org\nLEFT JOIN platform_store_count AS platform \n ON org.platform_name = platform.platform_name\nQUALIFY ROW_NUMBER() OVER (PARTITION BY org.organization_key ORDER BY org.store_count DESC, platform.store_count DESC) = 1 -- Choosing the most stores platform\n)\n\nSELECT * \nFROM organization_platform", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.sql", "compiled": true, "compiled_code": "-- import --\n\nWITH import_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\n-- Logic --\n\norganization_platform_store_count AS (\nSELECT\n organization_key,\n platform_name,\n SUM(IF(is_test=0 AND platform_name IS NOT NULL,1,0.001)) AS store_count -- Giving less weight for test/NULL platform stores.\nFROM import_store\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2\n),\n\nplatform_store_count AS (\nSELECT\n platform_name,\n SUM(IF(is_test=0,1,0.001)) AS store_count -- Giving less weight for test stores.\nFROM import_store\nWHERE platform_name IS NOT NULL\n AND organization_key IS NOT NULL\nGROUP BY 1\nORDER BY 2 DESC\n),\n\norganization_platform AS (\nSELECT\n org.organization_key,\n org.platform_name,\n SMALLINT(NVL(org.platform_name,'') ='shopify') AS is_shopify,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM organization_platform_store_count AS org\nLEFT JOIN platform_store_count AS platform \n ON org.platform_name = platform.platform_name\nQUALIFY ROW_NUMBER() OVER (PARTITION BY org.organization_key ORDER BY org.store_count DESC, platform.store_count DESC) = 1 -- Choosing the most stores platform\n)\n\nSELECT * \nFROM organization_platform", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_product_activeness_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_product_activeness_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.sql", "unique_id": "model.yoda.analytics___platform__organization_product_activeness_monthly", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_activeness_monthly", "analytics___platform__organization_product_activeness_monthly"], "alias": "analytics___platform__organization_product_activeness_monthly", "checksum": {"name": "sha256", "checksum": "8c65862578c8ce171886f4c84450d11868108c36106c654fbaa00f713e16d462"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "PK [month, organization_key, product_family_group] OR [organization_product_month_id]\n\nThis table contain indications about product activeness tiers.\nCurrently for only:\n 1.UGC\n 2.Loyalty\n 3.SMS", "columns": {"organization_product_month_id": {"name": "organization_product_month_id", "description": "ID of the combination: [month, organization_key, product_family_group]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active_tier_1": {"name": "is_active_tier_1", "description": "tier 1 product activeness indicator (0/1). \na product is active tier 1 if:\n 1. UGC: review_request_sent_cnt >= 3 AND order_cnt > 0\n 2. Loyalty: is_program_live = 1\n 3. SMS: is_program_live = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_2": {"name": "is_active_tier_2", "description": "tier 2 product activeness indicator (0/1). \na product is active tier 2 if:\n 1. UGC: is_ugc_active_tier_1 = 1 AND is_map_enabled = 1\n 2. Loyalty: any widget was seen by 3 unique shoppers\n 3. SMS: TBD (currently NULL)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_3": {"name": "is_active_tier_3", "description": "tier 3 product activeness indicator (0/1). \na product is active tier 3 if:\n 1. UGC: is_ugc_active_tier_2 = 1 AND is_reviews_widget_loaded = 1\n 2. Loyalty: 4 unique point redeemers\n 3. SMS: TBD (currently NULL)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_4": {"name": "is_active_tier_4", "description": "tier 3 product activeness indicator (0/1). \na product is active tier 3 if:\n 1. UGC: is_ugc_active_tier_3 = 1 AND review_cnt > 0\n 2. Loyalty: TBD (currently NULL)\n 3. SMS: TBD (currently NULL)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "coe", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082645.1310422, "relation_name": "dev_dkruh1.analytics___platform__organization_product_activeness_monthly", "raw_code": "-- Imports --\n\nWITH import_store_product_activeness_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__store_product_activeness_monthly') }}\n),\n\nimport_platform_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\n-- Logic --\n\nstore_product_active_monthly_base AS (\nSELECT \n active.*,\n active.activeness_month AS month,\n store.organization_key\nFROM import_store_product_activeness_monthly AS active\nINNER JOIN import_platform_store AS store\n ON active.app_key = store.app_key\nWHERE store.organization_key IS NOT NULL\nAND store.is_test = 0\n),\n\nstore_ugc_active_monthly AS (\nSELECT \n month,\n organization_key,\n app_key,\n 'UGC' AS product_family_group,\n is_ugc_active_tier_1 AS is_active_tier_1,\n is_ugc_active_tier_2 AS is_active_tier_2,\n is_ugc_active_tier_3 AS is_active_tier_3,\n is_ugc_active_tier_4 AS is_active_tier_4\nFROM store_product_active_monthly_base\n),\n\nstore_loyalty_active_monthly AS (\nSELECT \n month,\n organization_key,\n app_key,\n 'Loyalty' AS product_family_group,\n is_loyalty_active_tier_1 AS is_active_tier_1,\n is_loyalty_active_tier_2 AS is_active_tier_2,\n is_loyalty_active_tier_3 AS is_active_tier_3,\n NULL AS is_active_tier_4\nFROM store_product_active_monthly_base\n),\n\nstore_sms_active_monthly AS (\nSELECT \n month,\n organization_key,\n app_key,\n 'SMS' AS product_family_group,\n is_sms_active_tier_1 AS is_active_tier_1,\n NULL AS is_active_tier_2,\n NULL AS is_active_tier_3,\n NULL AS is_active_tier_4\nFROM store_product_active_monthly_base\n),\n\nstore_active_monthly_union AS (\nSELECT * \nFROM store_ugc_active_monthly\nUNION ALL\nSELECT * \nFROM store_loyalty_active_monthly\nUNION ALL\nSELECT * \nFROM store_sms_active_monthly\n),\n\norganization_product_active_monthly AS (\nSELECT\n SHA2(CONCAT(month,organization_key,product_family_group),256) AS organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n MAX(is_active_tier_1) AS is_active_tier_1,\n MAX(is_active_tier_2) AS is_active_tier_2,\n MAX(is_active_tier_3) AS is_active_tier_3,\n MAX(is_active_tier_4) AS is_active_tier_4,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_active_monthly_union\nGROUP BY 1,2,3,4\n)\n\nSELECT *\nFROM organization_product_active_monthly", "language": "sql", "refs": [{"name": "analytics___platform__store_product_activeness_monthly", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_product_activeness_monthly", "model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.sql", "compiled": true, "compiled_code": "-- Imports --\n\nWITH import_store_product_activeness_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_product_activeness_monthly\n),\n\nimport_platform_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\n-- Logic --\n\nstore_product_active_monthly_base AS (\nSELECT \n active.*,\n active.activeness_month AS month,\n store.organization_key\nFROM import_store_product_activeness_monthly AS active\nINNER JOIN import_platform_store AS store\n ON active.app_key = store.app_key\nWHERE store.organization_key IS NOT NULL\nAND store.is_test = 0\n),\n\nstore_ugc_active_monthly AS (\nSELECT \n month,\n organization_key,\n app_key,\n 'UGC' AS product_family_group,\n is_ugc_active_tier_1 AS is_active_tier_1,\n is_ugc_active_tier_2 AS is_active_tier_2,\n is_ugc_active_tier_3 AS is_active_tier_3,\n is_ugc_active_tier_4 AS is_active_tier_4\nFROM store_product_active_monthly_base\n),\n\nstore_loyalty_active_monthly AS (\nSELECT \n month,\n organization_key,\n app_key,\n 'Loyalty' AS product_family_group,\n is_loyalty_active_tier_1 AS is_active_tier_1,\n is_loyalty_active_tier_2 AS is_active_tier_2,\n is_loyalty_active_tier_3 AS is_active_tier_3,\n NULL AS is_active_tier_4\nFROM store_product_active_monthly_base\n),\n\nstore_sms_active_monthly AS (\nSELECT \n month,\n organization_key,\n app_key,\n 'SMS' AS product_family_group,\n is_sms_active_tier_1 AS is_active_tier_1,\n NULL AS is_active_tier_2,\n NULL AS is_active_tier_3,\n NULL AS is_active_tier_4\nFROM store_product_active_monthly_base\n),\n\nstore_active_monthly_union AS (\nSELECT * \nFROM store_ugc_active_monthly\nUNION ALL\nSELECT * \nFROM store_loyalty_active_monthly\nUNION ALL\nSELECT * \nFROM store_sms_active_monthly\n),\n\norganization_product_active_monthly AS (\nSELECT\n SHA2(CONCAT(month,organization_key,product_family_group),256) AS organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n MAX(is_active_tier_1) AS is_active_tier_1,\n MAX(is_active_tier_2) AS is_active_tier_2,\n MAX(is_active_tier_3) AS is_active_tier_3,\n MAX(is_active_tier_4) AS is_active_tier_4,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_active_monthly_union\nGROUP BY 1,2,3,4\n)\n\nSELECT *\nFROM organization_product_active_monthly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_product_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_product_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.sql", "unique_id": "model.yoda.analytics___platform__organization_product_metrics_monthly", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_metrics_monthly", "analytics___platform__organization_product_metrics_monthly"], "alias": "analytics___platform__organization_product_metrics_monthly", "checksum": {"name": "sha256", "checksum": "b850014ef6586c3202f0180e52a5dadff5f8b31913b6a16ba506ab4867a2beb0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "product_metrics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "product_metrics"], "description": "A modeled of view of orgniazation product metrics profile, PK & Granularity: organization_key, metric_month", "columns": {"metric_month": {"name": "metric_month", "description": "PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_last_3m_redeemers_cnt": {"name": "loyalty_last_3m_redeemers_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyalty_last_3m_purchasers_cnt": {"name": "loyalty_last_3m_purchasers_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyalty_last_3m_participation_rate": {"name": "loyalty_last_3m_participation_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "product_metrics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082645.1621754, "relation_name": "dev_dkruh1.analytics___platform__organization_product_metrics_monthly", "raw_code": "{%- set global_date_field = 'metric_month' -%}\n{%- set global_unit_field = 'organization_key' -%}\n{%- set source_list = [\n {\n 'source_table': ref('analytics___platform__store_dynamic_date_explode_from_creation'),\n 'date_field': 'month',\n 'unit_field': 'organization_key',\n 'fields_mapping':{},\n 'where_conditions':['ISNOTNULL(organization_key)']\n },\n {\n 'source_table': ref('analytics___loyalty__organization_metrics_monthly'),\n 'date_field': 'month',\n 'unit_field': 'organization_key',\n 'fields_mapping':{\n 'last_3m_redeemers_cnt': 'loyalty_last_3m_redeemers_cnt',\n 'last_3m_purchasers_cnt': 'loyalty_last_3m_purchasers_cnt',\n 'last_3m_participation_rate': 'loyalty_last_3m_participation_rate',\n },\n 'where_conditions':[]\n },\n] -%}\n\n{% set expected_schema_mapping = product_metrics_expected_schema(source_list) %}\n\n{{ product_metrics_profile(global_date_field, global_unit_field, source_list, expected_schema_mapping) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_dynamic_date_explode_from_creation", "package": null, "version": null}, {"name": "analytics___loyalty__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.product_metrics_expected_schema", "macro.yoda.product_metrics_profile", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "model.yoda.analytics___loyalty__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.sql", "compiled": true, "compiled_code": "\n\nWITH product_metrics_union AS (\n\n SELECT\n month AS metric_month,\n organization_key AS organization_key,\n CAST(NULL AS STRING) AS loyalty_last_3m_redeemers_cnt,\n CAST(NULL AS STRING) AS loyalty_last_3m_purchasers_cnt,\n CAST(NULL AS STRING) AS loyalty_last_3m_participation_rate\n FROM dev_dkruh1.analytics___platform__store_dynamic_date_explode_from_creation\n WHERE month >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n AND ISNOTNULL(organization_key)\n \n UNION ALL\n\n SELECT\n month AS metric_month,\n organization_key AS organization_key,\n last_3m_redeemers_cnt AS loyalty_last_3m_redeemers_cnt,\n last_3m_purchasers_cnt AS loyalty_last_3m_purchasers_cnt,\n last_3m_participation_rate AS loyalty_last_3m_participation_rate\n FROM dev_dkruh1.analytics___loyalty__organization_metrics_monthly\n WHERE month >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n \n\n\n), product_metrics_res AS (\n\n SELECT \n metric_month,\n organization_key,\n MAX(loyalty_last_3m_redeemers_cnt) AS loyalty_last_3m_redeemers_cnt,\n MAX(loyalty_last_3m_purchasers_cnt) AS loyalty_last_3m_purchasers_cnt,\n MAX(loyalty_last_3m_participation_rate) AS loyalty_last_3m_participation_rate\n FROM product_metrics_union\n GROUP BY 1,2 \n\n)\n\n SELECT *\n FROM product_metrics_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_product_metrics_monthly_unpivot", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.sql", "unique_id": "model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_metrics_monthly_unpivot", "analytics___platform__organization_product_metrics_monthly_unpivot"], "alias": "analytics___platform__organization_product_metrics_monthly_unpivot", "checksum": {"name": "sha256", "checksum": "bd824e745bc7361f5962c2340a33574518952ce1e282990bb834f74e8a207a8c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "product_metrics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "product_metrics"], "description": "A modeled view of organization product metrics as rows in a structure made for injection to external systems.|\nThis model takes the metrics of the last month from the monthly product metrics.|\nPK & Granularity: External_ID_c", "columns": {"Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "External_ID__c": {"name": "External_ID__c", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Organization_Key__c": {"name": "Organization_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "App_Key__c": {"name": "App_Key__c", "description": "Always NULL on this model", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Metrics_Name__c": {"name": "Product_Metrics_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Lines__c": {"name": "Product_Lines__c", "description": "Products related to the metirc in line, in case of few products they will should be sperated with semicolon.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Enabled__c": {"name": "Enabled__c", "description": "Holds value for boolean metrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Metric_Value__c": {"name": "Metric_Value__c", "description": "Holds value for string metrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Quantity__c": {"name": "Quantity__c", "description": "Holds value for quantitive metrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "From_Date__c": {"name": "From_Date__c", "description": "Active date for the metric.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "To_Date__c": {"name": "To_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "Self_Service__c": {"name": "Self_Service__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "Free__c": {"name": "Free__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "product_metrics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082645.1962214, "relation_name": "dev_dkruh1.analytics___platform__organization_product_metrics_monthly_unpivot", "raw_code": "{{ config( materialized = 'view') }}\n\n {%- set source_table = ref(\"analytics___platform__organization_product_metrics_monthly\") -%}\n {%- set group_by_fields = [\"organization_key\", \"metric_month\"] -%}\n {%- set date_granularity = \"month\" -%}\n {%- set fields_mapping = [\n {\n \"source_field\": \"loyalty_last_3m_redeemers_cnt\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'redeeming customers last 3m'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loyalty_last_3m_purchasers_cnt\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'purchasing customers last 3m'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loyalty_last_3m_participation_rate\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'participation rate last 3m'\",\n \"target_field\": \"'Quantity__c'\",\n },\n ] -%}\n\n\n {%- set casting_type = 'STRING' -%}\n {%- set extra_fields_names = ['value','products','metric_name','target_field'] -%}\n {%- set where_clause = \"WHERE metric_month = ADD_MONTHS(TRUNC(CURRENT_DATE, 'MONTH'), -1)\" -%}\n {%- set unpivot_fields_mapping = [] -%}\n {%- for field in fields_mapping -%}\n {%- set field_name = field['source_field'] -%}\n {%- set extra_fields = [field['products'], field['metric_name'], field['target_field']] -%}\n {%- do unpivot_fields_mapping.append({'field_name': field_name, 'agg_function': 'MAX', 'extra_fields': extra_fields}) -%}\n {%- endfor -%}\n\n WITH product_metrics_monthly_unpivot AS (\n\n {{ analytics_unpivot(source_table, group_by_fields, casting_type, where_clause, extra_fields_names, unpivot_fields_mapping) }}\n\n ), product_metrics_monthly_unpivot_mapped AS (\n \n SELECT\n LEFT(CONCAT(organization_key,'-',metric_name), 80) AS Name,\n CONCAT(organization_key,'-',metric_name) AS External_ID__c,\n organization_key AS Organization_Key__c,\n STRING(NULL) AS App_Key__c,\n metric_name AS Product_Metrics_Name__c,\n products AS Product_Lines__c,\n value,\n CASE WHEN target_field = 'From_Date__c' THEN '1'\n WHEN target_field = 'Enabled__c' THEN value\n END AS Enabled__c,\n IF(target_field = 'Metric_Value__c', value, NULL) AS Metric_Value__c,\n IF(target_field = 'Quantity__c', value, NULL) AS Quantity__c,\n IF(target_field = 'From_Date__c', value, metric_month) AS From_Date__c,\n LAST_DAY(metric_month) AS To_Date__c,\n SMALLINT(0) AS Self_Service__c,\n SMALLINT(0) AS Free__c\n FROM product_metrics_monthly_unpivot\n\n )\n\n SELECT * FROM product_metrics_monthly_unpivot_mapped", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_unpivot", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__organization_product_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.sql", "compiled": true, "compiled_code": "WITH product_metrics_monthly_unpivot AS (\n\n SELECT\n organization_key,\n metric_month,\n STACK(3,\n STRING(MAX(loyalty_last_3m_redeemers_cnt)),'loyalty','redeeming customers last 3m','Quantity__c',\n STRING(MAX(loyalty_last_3m_purchasers_cnt)),'loyalty','purchasing customers last 3m','Quantity__c',\n STRING(MAX(loyalty_last_3m_participation_rate)),'loyalty','participation rate last 3m','Quantity__c')\n AS (value, products, metric_name, target_field)\n FROM dev_dkruh1.analytics___platform__organization_product_metrics_monthly\n WHERE metric_month = ADD_MONTHS(TRUNC(CURRENT_DATE, 'MONTH'), -1)\n GROUP BY 1,2\n\n ), product_metrics_monthly_unpivot_mapped AS (\n \n SELECT\n LEFT(CONCAT(organization_key,'-',metric_name), 80) AS Name,\n CONCAT(organization_key,'-',metric_name) AS External_ID__c,\n organization_key AS Organization_Key__c,\n STRING(NULL) AS App_Key__c,\n metric_name AS Product_Metrics_Name__c,\n products AS Product_Lines__c,\n value,\n CASE WHEN target_field = 'From_Date__c' THEN '1'\n WHEN target_field = 'Enabled__c' THEN value\n END AS Enabled__c,\n IF(target_field = 'Metric_Value__c', value, NULL) AS Metric_Value__c,\n IF(target_field = 'Quantity__c', value, NULL) AS Quantity__c,\n IF(target_field = 'From_Date__c', value, metric_month) AS From_Date__c,\n LAST_DAY(metric_month) AS To_Date__c,\n SMALLINT(0) AS Self_Service__c,\n SMALLINT(0) AS Free__c\n FROM product_metrics_monthly_unpivot\n\n )\n\n SELECT * FROM product_metrics_monthly_unpivot_mapped", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_product_segment_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_product_segment_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.sql", "unique_id": "model.yoda.analytics___platform__organization_product_segment_daily", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_daily", "analytics___platform__organization_product_segment_daily"], "alias": "analytics___platform__organization_product_segment_daily", "checksum": {"name": "sha256", "checksum": "696b40e850b9b56cd7801a24b95345ed6f27e859e3e511cc11255e1189e90d43"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["date", "organization_key", "product_family"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Table containing segment KPIs per organization product on a daily basis.\nGranularity: date|organization_key|product_family", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "FK: analytics___platform__organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "Reviews | Email | SMS ext..", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_product_date": {"name": "first_product_date", "description": "first recorded organization's product date in platform_organization_plan_daily", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "plan_name": {"name": "plan_name", "description": "closing plan_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "FK: analytics___platform__plan closing plan_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_self_service": {"name": "is_self_service", "description": "closing plan is_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "closing plan is_free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "closing plan is_full_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "ht_self_service_opportunity_id": {"name": "ht_self_service_opportunity_id", "description": "FK: analytics___platform__opportunity_ht_ss_over_time opportunity_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ht_self_service": {"name": "is_ht_self_service", "description": "indicator = 1 if organization product's opportunity is_ht_self_service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_customer_care": {"name": "is_customer_care", "description": "Indicator = 1 if date after onboarding customer care call and date before churn event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "merge", "unique_key": ["date", "organization_key", "product_family"], "partition_by": ["date"]}, "created_at": 1700082645.2427435, "relation_name": "dev_dkruh1.analytics___platform__organization_product_segment_daily", "raw_code": "{{ config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'merge',\n unique_key = ['date','organization_key','product_family'],\n partition_by = ['date']\n )\n}}\n\n-- Imports --\n\nWITH import_calendar AS (\nSELECT date\nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date < CURRENT_DATE\n{% if is_incremental() %}\n AND date > (SELECT DATE_SUB(MAX(date),8) FROM {{ this }})\n{% endif %}\n{% if target.name == 'dev' %}\n AND date BETWEEN DATE_SUB(CURRENT_DATE,8) AND DATE_SUB(CURRENT_DATE,1)\n{% endif %}\n),\n\nimport_organization_plan_daily AS (\nSELECT * FROM {{ ref('analytics___platform__organization_plan_daily') }}\n),\n\nimport_organization AS (\nSELECT * FROM {{ ref('analytics___platform__organization') }}\n),\n\nimport_opportunity_won AS (\nSELECT * FROM {{ ref('analytics___cs__opportunity_won_product_start_date') }}\n),\n\nimport_customer_care AS (\nSELECT * FROM {{ ref('analytics___delivery__organization_customer_care_over_time') }}\n),\n\n-- Logic --\n\norganization_min_product_date AS (\nSELECT\n organization_key,\n product_family,\n IF(MAX(GREATEST(is_reviews,is_vms)) = 1,'UGC',product_family) AS product_family_group,\n MIN(date) AS first_product_date,\n MAX(is_reviews) AS is_reviews,\n MAX(is_loyalty) AS is_loyalty,\n MAX(is_vms) AS is_vms,\n MAX(is_subscriptions) AS is_subscriptions,\n MAX(is_sms) AS is_sms,\n MAX(is_email) AS is_email\nFROM import_organization_plan_daily\nGROUP BY 1,2\n),\n\norganization_product_plan_ht_ss_opp AS (\nSELECT\n dates.date,\n organization.organization_key,\n organization.product_family,\n organization.product_family_group,\n organization.first_product_date,\n plan.plan_name,\n plan.plan_id,\n plan.is_self_service,\n plan.is_free,\n plan.is_full_service,\n opportunity.opportunity_id AS ht_self_service_opportunity_id,\n SMALLINT(IF(opportunity.opportunity_id IS NOT NULL,1,0)) AS is_ht_self_service,\n SMALLINT(NVL(customer_care.is_customer_care,0)) AS is_customer_care,\n organization.is_reviews,\n organization.is_loyalty,\n organization.is_vms,\n organization.is_subscriptions,\n organization.is_sms,\n organization.is_email,\n ROW_NUMBER() OVER (PARTITION BY dates.date,organization.organization_key,organization.product_family ORDER BY opportunity.line_item_start_date DESC, opportunity.line_item_end_date DESC) AS opportunity_rank\nFROM organization_min_product_date AS organization\nINNER JOIN import_calendar AS dates\n ON organization.first_product_date <= dates.date\nLEFT JOIN import_organization_plan_daily AS plan\n ON dates.date = plan.date\n AND organization.organization_key = plan.organization_key\n AND LOWER(organization.product_family) = LOWER(plan.product_family)\nLEFT JOIN import_opportunity_won AS opportunity\n ON opportunity.is_ht_self_service = 1\n AND organization.organization_key = opportunity.organization_key\n AND LOWER(organization.product_family_group) = LOWER(opportunity.product_family_group)\n AND dates.date >= opportunity.line_item_start_date \n AND dates.date < opportunity.line_item_end_date\nLEFT JOIN import_customer_care AS customer_care\n ON organization.organization_key = customer_care.organization_key\n AND LOWER(organization.product_family_group) = LOWER(customer_care.product_family_group)\n AND dates.date >= customer_care.from_date \n AND dates.date < customer_care.to_date \n),\n\norganization_product_segment_daily_res AS (\nSELECT\n date,\n organization_key,\n product_family,\n first_product_date,\n plan_name,\n plan_id,\n is_self_service,\n is_free,\n is_full_service,\n ht_self_service_opportunity_id,\n is_ht_self_service,\n is_customer_care,\n is_reviews,\n is_loyalty,\n is_vms,\n is_subscriptions,\n is_sms,\n is_email,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_plan_ht_ss_opp\nWHERE opportunity_rank = 1\n{% if is_incremental() %}\nAND date > (SELECT DATE_SUB(MAX(date),5) FROM {{ this }})\n{% endif %}\n)\n\nSELECT *\nFROM organization_product_segment_daily_res", "language": "sql", "refs": [{"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}, {"name": "analytics___platform__organization", "package": null, "version": null}, {"name": "analytics___cs__opportunity_won_product_start_date", "package": null, "version": null}, {"name": "analytics___delivery__organization_customer_care_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___platform__organization", "model.yoda.analytics___cs__opportunity_won_product_start_date", "model.yoda.analytics___delivery__organization_customer_care_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.sql", "compiled": true, "compiled_code": "\n\n-- Imports --\n\nWITH import_calendar AS (\nSELECT date\nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date < CURRENT_DATE\n\n\n AND date BETWEEN DATE_SUB(CURRENT_DATE,8) AND DATE_SUB(CURRENT_DATE,1)\n\n),\n\nimport_organization_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_plan_daily\n),\n\nimport_organization AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization\n),\n\nimport_opportunity_won AS (\nSELECT * FROM dev_dkruh1.analytics___cs__opportunity_won_product_start_date\n),\n\nimport_customer_care AS (\nSELECT * FROM dev_dkruh1.analytics___delivery__organization_customer_care_over_time\n),\n\n-- Logic --\n\norganization_min_product_date AS (\nSELECT\n organization_key,\n product_family,\n IF(MAX(GREATEST(is_reviews,is_vms)) = 1,'UGC',product_family) AS product_family_group,\n MIN(date) AS first_product_date,\n MAX(is_reviews) AS is_reviews,\n MAX(is_loyalty) AS is_loyalty,\n MAX(is_vms) AS is_vms,\n MAX(is_subscriptions) AS is_subscriptions,\n MAX(is_sms) AS is_sms,\n MAX(is_email) AS is_email\nFROM import_organization_plan_daily\nGROUP BY 1,2\n),\n\norganization_product_plan_ht_ss_opp AS (\nSELECT\n dates.date,\n organization.organization_key,\n organization.product_family,\n organization.product_family_group,\n organization.first_product_date,\n plan.plan_name,\n plan.plan_id,\n plan.is_self_service,\n plan.is_free,\n plan.is_full_service,\n opportunity.opportunity_id AS ht_self_service_opportunity_id,\n SMALLINT(IF(opportunity.opportunity_id IS NOT NULL,1,0)) AS is_ht_self_service,\n SMALLINT(NVL(customer_care.is_customer_care,0)) AS is_customer_care,\n organization.is_reviews,\n organization.is_loyalty,\n organization.is_vms,\n organization.is_subscriptions,\n organization.is_sms,\n organization.is_email,\n ROW_NUMBER() OVER (PARTITION BY dates.date,organization.organization_key,organization.product_family ORDER BY opportunity.line_item_start_date DESC, opportunity.line_item_end_date DESC) AS opportunity_rank\nFROM organization_min_product_date AS organization\nINNER JOIN import_calendar AS dates\n ON organization.first_product_date <= dates.date\nLEFT JOIN import_organization_plan_daily AS plan\n ON dates.date = plan.date\n AND organization.organization_key = plan.organization_key\n AND LOWER(organization.product_family) = LOWER(plan.product_family)\nLEFT JOIN import_opportunity_won AS opportunity\n ON opportunity.is_ht_self_service = 1\n AND organization.organization_key = opportunity.organization_key\n AND LOWER(organization.product_family_group) = LOWER(opportunity.product_family_group)\n AND dates.date >= opportunity.line_item_start_date \n AND dates.date < opportunity.line_item_end_date\nLEFT JOIN import_customer_care AS customer_care\n ON organization.organization_key = customer_care.organization_key\n AND LOWER(organization.product_family_group) = LOWER(customer_care.product_family_group)\n AND dates.date >= customer_care.from_date \n AND dates.date < customer_care.to_date \n),\n\norganization_product_segment_daily_res AS (\nSELECT\n date,\n organization_key,\n product_family,\n first_product_date,\n plan_name,\n plan_id,\n is_self_service,\n is_free,\n is_full_service,\n ht_self_service_opportunity_id,\n is_ht_self_service,\n is_customer_care,\n is_reviews,\n is_loyalty,\n is_vms,\n is_subscriptions,\n is_sms,\n is_email,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_plan_ht_ss_opp\nWHERE opportunity_rank = 1\n\n)\n\nSELECT *\nFROM organization_product_segment_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_product_segment_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_product_segment_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.sql", "unique_id": "model.yoda.analytics___platform__organization_product_segment_monthly", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_monthly", "analytics___platform__organization_product_segment_monthly"], "alias": "analytics___platform__organization_product_segment_monthly", "checksum": {"name": "sha256", "checksum": "6b2371f7bbfd502600ecb02aed679fb013b67449a130edbb6fbfb8aed98aaae6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Table containing segment KPIs per organization product on a monthly basis.\nGranularity: [month|organization_key|product_family] OR [organization_product_month_id]", "columns": {"organization_product_month_id": {"name": "organization_product_month_id", "description": "ID of the combination: [month, organization_key, product_family_group]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "aggregation month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "Contains 5 distinct values:\n 1. UGC (Including Reviews, VMS, Insights)\n 2. Loyalty\n 3. SMS\n 4. Email\n 5. Subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "The plan at the end of the month:\n 1.First based on plan_group from analytics___finance__organization_product_revenue_monthly\n 2.If #1 did not found, it's based on analytics___platform__organization_plan_monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_group": {"name": "plan_group", "description": "The group of the plan at the end of the month.\n\nFor example, the group of both \"Reviews Growth 50\" and \"Reviews Growth 100\" is \"Growth\". based on:\n 1.First based on plan_group from analytics___finance__organization_product_revenue_monthly\n 2.If #1 did not found, it's based on analytics___platform__organization_plan_monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_first_paid_month": {"name": "product_first_paid_month", "description": "The first ever paid month for the specific organization and product_family_group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_paid_product": {"name": "is_paid_product", "description": "Indicates if the organization paid for the specific product at the end of the month.\n\nIF(closing_revenue_for_cohorts > 0,1,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_full_service": {"name": "is_full_service", "description": "Indicates if the product is full service or not.\n 1.First based on indication from analytics___finance__organization_product_revenue_monthly\n 2.If #1 did not found, it's based on analytics___platform__organization_plan_monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_self_service": {"name": "is_self_service", "description": "Indicates if the product is self service or not.\n 1.First based on indication from analytics___finance__organization_product_revenue_monthly\n 2.If #1 did not found, it's based on analytics___platform__organization_plan_monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_free": {"name": "is_free", "description": "Indicates if the product is free or not.\n 1.First based on indication from analytics___finance__organization_product_revenue_monthly\n 2.If #1 did not found, it's based on analytics___platform__organization_plan_monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_billing": {"name": "is_annual_billing", "description": "Indicates if the product has annual billing or not.\n\nbased on indication from analytics___finance__organization_product_revenue_monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "opening_is_ht_self_service": {"name": "opening_is_ht_self_service", "description": "Previous month state. indicator = 1 if the product was originated in HT flow (self service plan that was sold by sales person)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_ht_self_service": {"name": "is_ht_self_service", "description": "indicator = 1 if the product was originated in HT flow (self service plan that was sold by sales person)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "ht_self_service_opportunity_id": {"name": "ht_self_service_opportunity_id", "description": "The original HT-SS deal opportunity. Only relevant if is_ht_self_service = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active_tier_1": {"name": "is_active_tier_1", "description": "tier 1 product activeness indicator (0/1). \na product is active tier 1 if:\n 1. UGC: review_request_sent_cnt >= 3 AND order_cnt > 0\n 2. Loyalty: is_program_live = 1\n 3. SMS: is_program_live = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active_tier_2": {"name": "is_active_tier_2", "description": "tier 2 product activeness indicator (0/1). \na product is active tier 2 if:\n 1. UGC: is_ugc_active_tier_1 = 1 AND is_map_enabled = 1\n 2. Loyalty: any widget was seen by 3 unique shoppers\n 3. SMS: TBD (currently NULL)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active_tier_3": {"name": "is_active_tier_3", "description": "tier 3 product activeness indicator (0/1). \na product is active tier 3 if:\n 1. UGC: is_ugc_active_tier_2 = 1 AND is_reviews_widget_loaded = 1\n 2. Loyalty: 4 unique point redeemers\n 3. SMS: TBD (currently NULL)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active_tier_4": {"name": "is_active_tier_4", "description": "tier 3 product activeness indicator (0/1). \na product is active tier 3 if:\n 1. UGC: is_ugc_active_tier_3 = 1 AND review_cnt > 0\n 2. Loyalty: TBD (currently NULL)\n 3. SMS: TBD (currently NULL)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "first_product_date": {"name": "first_product_date", "description": "first recorded organization's product date in platform_organization_plan_daily", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "months_number_since_first_paid_month": {"name": "months_number_since_first_paid_month", "description": "number of months since the organization's first paid month for the specific product. (first paid month = 0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yearly_tenure": {"name": "yearly_tenure", "description": "Yearly tenure, based on the number of months past since first paid month.\nContains 3 distinct values:\n 1. 0-1\n 2. 1-2\n 3. 2+", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ugc": {"name": "is_ugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082645.4555016, "relation_name": "dev_dkruh1.analytics___platform__organization_product_segment_monthly", "raw_code": "-- Imports --\n\nWITH import_organization_product_segment_daily AS (\nSELECT * FROM {{ ref('analytics___platform__organization_product_segment_daily') }}\n),\n\nimport_organization_plan_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_plan_monthly') }}\n),\n\nimport_organization_product_activeness_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_product_activeness_monthly') }}\n),\n\nimport_product_revenue AS (\nSELECT * FROM {{ ref('analytics___finance__organization_product_revenue_monthly') }}\n),\n\n-- Logic --\n\nproduct_first_paid_month AS (\nSELECT \n organization_key,\n product_family_group,\n MIN(product_first_paid_month) AS product_first_paid_month\nFROM import_product_revenue\nGROUP BY 1,2\n),\n\npaid_product_monthly AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n closing_plan_name AS plan_name,\n closing_plan_group AS plan_group,\n closing_is_self_service AS is_self_service,\n closing_is_full_service AS is_full_service,\n closing_is_annual_billing AS is_annual_billing,\n closing_is_paid_product AS is_paid_product\nFROM import_product_revenue\n),\n\norganization_plan_monthly_base AS (\nSELECT\n *,\n MAX(SMALLINT(is_reviews = 1 AND closing_plan_name IS NOT NULL)) OVER(PARTITION BY organization_key,month) AS is_valid_reviews_plan -- will help aggregating plans to product family group level\nFROM import_organization_plan_monthly\n),\n\norganization_product_plan_monthly AS (\nSELECT\n SHA2(CONCAT(month,organization_key,IF(is_reviews = 1 OR is_vms = 1,'UGC',product_family)),256) AS organization_product_month_id,\n month,\n organization_key,\n IF(is_reviews = 1 OR is_vms = 1,'UGC',product_family) AS product_family_group,\n MAX(IF(is_valid_reviews_plan = 1 AND is_vms = 1,NULL,closing_plan_name)) AS plan_name, -- In case customer has both Reviews & VMS plan we keep only the Reviews plan\n MAX(IF(is_valid_reviews_plan = 1 AND is_vms = 1,NULL,closing_plan_group)) AS plan_group,\n IF(MAX(closing_is_full_service) = 1,0,MAX(closing_is_self_service)) AS is_self_service,\n IF(MAX(closing_is_full_service) = 1,0,MAX(closing_is_free)) AS is_free,\n MAX(closing_is_full_service) AS is_full_service\nFROM organization_plan_monthly_base\nGROUP BY 1,2,3,4\n),\n\nht_self_service_monthly AS (\nSELECT\n SHA2(CONCAT(TRUNC(date,'MM'),organization_key,IF(is_reviews = 1 OR is_vms = 1,'UGC',product_family)),256) AS organization_product_month_id,\n TRUNC(date,'MM') AS month,\n organization_key,\n IF(is_reviews = 1 OR is_vms = 1,'UGC',product_family) AS product_family_group,\n MIN(first_product_date) AS first_product_date,\n MIN(ht_self_service_opportunity_id) AS ht_self_service_opportunity_id, -- there is no different ht_self_service_opportunity_id between Reviews & VMS\n MAX(is_ht_self_service) AS is_ht_self_service\nFROM import_organization_product_segment_daily\nWHERE LAST_DAY(date) = date\nOR date = (SELECT MAX(date) FROM import_organization_product_segment_daily)\nGROUP BY 1,2,3,4\n),\n\norganization_product_monthly_base AS (\nSELECT\n COALESCE(paid.organization_product_month_id,\n plan.organization_product_month_id,\n ht_ss.organization_product_month_id,\n active.organization_product_month_id) AS organization_product_month_id,\n COALESCE(paid.month,\n plan.month,\n ht_ss.month,\n active.month) AS month,\n COALESCE(paid.organization_key,\n plan.organization_key,\n ht_ss.organization_key,\n active.organization_key) AS organization_key,\n COALESCE(paid.product_family_group,\n plan.product_family_group,\n ht_ss.product_family_group,\n active.product_family_group) AS product_family_group,\n COALESCE(paid.plan_name,\n plan.plan_name) AS plan_name,\n COALESCE(paid.plan_group,\n plan.plan_group) AS plan_group,\n first_paid_month.product_first_paid_month,\n NVL(paid.is_paid_product,0) AS is_paid_product,\n COALESCE(paid.is_full_service,\n plan.is_full_service,0) AS is_full_service,\n COALESCE(paid.is_self_service,\n plan.is_self_service,0) AS is_self_service,\n NVL(plan.is_free,0) AS is_free,\n NVL(paid.is_annual_billing,0) AS is_annual_billing,\n NVL(ht_ss.is_ht_self_service,0) AS is_ht_self_service,\n ht_ss.ht_self_service_opportunity_id,\n NVL(active.is_active_tier_1,0) AS is_active_tier_1,\n NVL(active.is_active_tier_2,0) AS is_active_tier_2,\n NVL(active.is_active_tier_3,0) AS is_active_tier_3,\n NVL(active.is_active_tier_4,0) AS is_active_tier_4,\n ht_ss.first_product_date\nFROM product_first_paid_month AS first_paid_month\nINNER JOIN paid_product_monthly AS paid\n ON first_paid_month.product_family_group = paid.product_family_group\n AND first_paid_month.organization_key = paid.organization_key\nFULL OUTER JOIN organization_product_plan_monthly AS plan\n ON paid.organization_product_month_id = plan.organization_product_month_id\nFULL OUTER JOIN ht_self_service_monthly AS ht_ss\n ON COALESCE(paid.organization_product_month_id,\n plan.organization_product_month_id) = ht_ss.organization_product_month_id\nFULL OUTER JOIN import_organization_product_activeness_monthly AS active\n ON COALESCE(paid.organization_product_month_id,\n plan.organization_product_month_id,\n ht_ss.organization_product_month_id) = active.organization_product_month_id\n),\n\norganization_product_monthly_res AS (\nSELECT\n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n plan_name,\n plan_group,\n product_first_paid_month,\n is_paid_product,\n is_full_service,\n is_self_service,\n is_free,\n is_annual_billing,\n LAG(is_ht_self_service) OVER(PARTITION BY organization_key, product_family_group ORDER BY month) AS opening_is_ht_self_service,\n is_ht_self_service,\n ht_self_service_opportunity_id,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n is_active_tier_4,\n first_product_date,\n IF(month < product_first_paid_month,NULL,MONTHS_BETWEEN(month,product_first_paid_month)) AS months_number_since_first_paid_month,\n CASE WHEN IF(month < product_first_paid_month,NULL,MONTHS_BETWEEN(month,product_first_paid_month))+1 >= 24 THEN '2+'\n WHEN IF(month < product_first_paid_month,NULL,MONTHS_BETWEEN(month,product_first_paid_month))+1 >= 12 THEN '1-2'\n WHEN IF(month < product_first_paid_month,NULL,MONTHS_BETWEEN(month,product_first_paid_month))+1 >= 1 THEN '0-1' END AS yearly_tenure,\n SMALLINT(product_family_group = 'UGC') AS is_ugc,\n SMALLINT(product_family_group = 'Loyalty') AS is_loyalty,\n SMALLINT(product_family_group = 'SMS') AS is_sms,\n SMALLINT(product_family_group = 'Email') AS is_email,\n SMALLINT(product_family_group = 'Subscriptions') AS is_subscriptions,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_monthly_base\n)\n\nSELECT *\nFROM organization_product_monthly_res\n{% if target.name == 'dev' %}\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\n{% endif %}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_daily", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_product_activeness_monthly", "package": null, "version": null}, {"name": "analytics___finance__organization_product_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_daily", "model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__organization_product_activeness_monthly", "model.yoda.analytics___finance__organization_product_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.sql", "compiled": true, "compiled_code": "-- Imports --\n\nWITH import_organization_product_segment_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_product_segment_daily\n),\n\nimport_organization_plan_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_plan_monthly\n),\n\nimport_organization_product_activeness_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_product_activeness_monthly\n),\n\nimport_product_revenue AS (\nSELECT * FROM dev_dkruh1.analytics___finance__organization_product_revenue_monthly\n),\n\n-- Logic --\n\nproduct_first_paid_month AS (\nSELECT \n organization_key,\n product_family_group,\n MIN(product_first_paid_month) AS product_first_paid_month\nFROM import_product_revenue\nGROUP BY 1,2\n),\n\npaid_product_monthly AS (\nSELECT \n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n closing_plan_name AS plan_name,\n closing_plan_group AS plan_group,\n closing_is_self_service AS is_self_service,\n closing_is_full_service AS is_full_service,\n closing_is_annual_billing AS is_annual_billing,\n closing_is_paid_product AS is_paid_product\nFROM import_product_revenue\n),\n\norganization_plan_monthly_base AS (\nSELECT\n *,\n MAX(SMALLINT(is_reviews = 1 AND closing_plan_name IS NOT NULL)) OVER(PARTITION BY organization_key,month) AS is_valid_reviews_plan -- will help aggregating plans to product family group level\nFROM import_organization_plan_monthly\n),\n\norganization_product_plan_monthly AS (\nSELECT\n SHA2(CONCAT(month,organization_key,IF(is_reviews = 1 OR is_vms = 1,'UGC',product_family)),256) AS organization_product_month_id,\n month,\n organization_key,\n IF(is_reviews = 1 OR is_vms = 1,'UGC',product_family) AS product_family_group,\n MAX(IF(is_valid_reviews_plan = 1 AND is_vms = 1,NULL,closing_plan_name)) AS plan_name, -- In case customer has both Reviews & VMS plan we keep only the Reviews plan\n MAX(IF(is_valid_reviews_plan = 1 AND is_vms = 1,NULL,closing_plan_group)) AS plan_group,\n IF(MAX(closing_is_full_service) = 1,0,MAX(closing_is_self_service)) AS is_self_service,\n IF(MAX(closing_is_full_service) = 1,0,MAX(closing_is_free)) AS is_free,\n MAX(closing_is_full_service) AS is_full_service\nFROM organization_plan_monthly_base\nGROUP BY 1,2,3,4\n),\n\nht_self_service_monthly AS (\nSELECT\n SHA2(CONCAT(TRUNC(date,'MM'),organization_key,IF(is_reviews = 1 OR is_vms = 1,'UGC',product_family)),256) AS organization_product_month_id,\n TRUNC(date,'MM') AS month,\n organization_key,\n IF(is_reviews = 1 OR is_vms = 1,'UGC',product_family) AS product_family_group,\n MIN(first_product_date) AS first_product_date,\n MIN(ht_self_service_opportunity_id) AS ht_self_service_opportunity_id, -- there is no different ht_self_service_opportunity_id between Reviews & VMS\n MAX(is_ht_self_service) AS is_ht_self_service\nFROM import_organization_product_segment_daily\nWHERE LAST_DAY(date) = date\nOR date = (SELECT MAX(date) FROM import_organization_product_segment_daily)\nGROUP BY 1,2,3,4\n),\n\norganization_product_monthly_base AS (\nSELECT\n COALESCE(paid.organization_product_month_id,\n plan.organization_product_month_id,\n ht_ss.organization_product_month_id,\n active.organization_product_month_id) AS organization_product_month_id,\n COALESCE(paid.month,\n plan.month,\n ht_ss.month,\n active.month) AS month,\n COALESCE(paid.organization_key,\n plan.organization_key,\n ht_ss.organization_key,\n active.organization_key) AS organization_key,\n COALESCE(paid.product_family_group,\n plan.product_family_group,\n ht_ss.product_family_group,\n active.product_family_group) AS product_family_group,\n COALESCE(paid.plan_name,\n plan.plan_name) AS plan_name,\n COALESCE(paid.plan_group,\n plan.plan_group) AS plan_group,\n first_paid_month.product_first_paid_month,\n NVL(paid.is_paid_product,0) AS is_paid_product,\n COALESCE(paid.is_full_service,\n plan.is_full_service,0) AS is_full_service,\n COALESCE(paid.is_self_service,\n plan.is_self_service,0) AS is_self_service,\n NVL(plan.is_free,0) AS is_free,\n NVL(paid.is_annual_billing,0) AS is_annual_billing,\n NVL(ht_ss.is_ht_self_service,0) AS is_ht_self_service,\n ht_ss.ht_self_service_opportunity_id,\n NVL(active.is_active_tier_1,0) AS is_active_tier_1,\n NVL(active.is_active_tier_2,0) AS is_active_tier_2,\n NVL(active.is_active_tier_3,0) AS is_active_tier_3,\n NVL(active.is_active_tier_4,0) AS is_active_tier_4,\n ht_ss.first_product_date\nFROM product_first_paid_month AS first_paid_month\nINNER JOIN paid_product_monthly AS paid\n ON first_paid_month.product_family_group = paid.product_family_group\n AND first_paid_month.organization_key = paid.organization_key\nFULL OUTER JOIN organization_product_plan_monthly AS plan\n ON paid.organization_product_month_id = plan.organization_product_month_id\nFULL OUTER JOIN ht_self_service_monthly AS ht_ss\n ON COALESCE(paid.organization_product_month_id,\n plan.organization_product_month_id) = ht_ss.organization_product_month_id\nFULL OUTER JOIN import_organization_product_activeness_monthly AS active\n ON COALESCE(paid.organization_product_month_id,\n plan.organization_product_month_id,\n ht_ss.organization_product_month_id) = active.organization_product_month_id\n),\n\norganization_product_monthly_res AS (\nSELECT\n organization_product_month_id,\n month,\n organization_key,\n product_family_group,\n plan_name,\n plan_group,\n product_first_paid_month,\n is_paid_product,\n is_full_service,\n is_self_service,\n is_free,\n is_annual_billing,\n LAG(is_ht_self_service) OVER(PARTITION BY organization_key, product_family_group ORDER BY month) AS opening_is_ht_self_service,\n is_ht_self_service,\n ht_self_service_opportunity_id,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n is_active_tier_4,\n first_product_date,\n IF(month < product_first_paid_month,NULL,MONTHS_BETWEEN(month,product_first_paid_month)) AS months_number_since_first_paid_month,\n CASE WHEN IF(month < product_first_paid_month,NULL,MONTHS_BETWEEN(month,product_first_paid_month))+1 >= 24 THEN '2+'\n WHEN IF(month < product_first_paid_month,NULL,MONTHS_BETWEEN(month,product_first_paid_month))+1 >= 12 THEN '1-2'\n WHEN IF(month < product_first_paid_month,NULL,MONTHS_BETWEEN(month,product_first_paid_month))+1 >= 1 THEN '0-1' END AS yearly_tenure,\n SMALLINT(product_family_group = 'UGC') AS is_ugc,\n SMALLINT(product_family_group = 'Loyalty') AS is_loyalty,\n SMALLINT(product_family_group = 'SMS') AS is_sms,\n SMALLINT(product_family_group = 'Email') AS is_email,\n SMALLINT(product_family_group = 'Subscriptions') AS is_subscriptions,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_product_monthly_base\n)\n\nSELECT *\nFROM organization_product_monthly_res\n\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__organization_segment_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__organization_segment_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.sql", "unique_id": "model.yoda.analytics___platform__organization_segment_monthly", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_segment_monthly", "analytics___platform__organization_segment_monthly"], "alias": "analytics___platform__organization_segment_monthly", "checksum": {"name": "sha256", "checksum": "7e382803e76539319dc48bace1c1c8b2c7fc9eacef1ac25b64ee15591ea68762"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Table containing segment KPIs per organization on a monthly basis.\nGranularity: [month|organization_key] OR [organization_month_id]", "columns": {"organization_month_id": {"name": "organization_month_id", "description": "ID of the combination: [month, organization_key]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "PK: platform__organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paid_product_list": {"name": "paid_product_list", "description": "list of organization's paid products at the end of month.\nproducts that had closing_revenue_for_cohorts > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_paid_product": {"name": "number_of_paid_product", "description": "Counting the number of products the organization has paid for this month.\nproducts that had closing_revenue_for_cohorts > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "single_multi_product": {"name": "single_multi_product", "description": "Indicating the customer type based on it's number of paid products. Contains 3 distinct values:\n 1. Free (0 paid products)\n 2. Single (1 paid product)\n 3. Multi (2+ paid products)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_paid_ugc": {"name": "is_paid_ugc", "description": "Indicates if the organization has paid for UGC this month.\n\nIn more technical terms, closing_is_paid_ugc = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'UGC'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_paid_loyalty": {"name": "is_paid_loyalty", "description": "Indicates if the organization has paid for Loyalty this month.\n\nIn more technical terms, closing_is_paid_loyalty = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Loyalty'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_paid_sms": {"name": "is_paid_sms", "description": "Indicates if the organization has paid for SMS this month.\n\nIn more technical terms, closing_is_paid_sms = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'SMS'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_paid_email": {"name": "is_paid_email", "description": "Indicates if the organization has paid for Email this month.\n\nIn more technical terms, closing_is_paid_email = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Email'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_paid_subscriptions": {"name": "is_paid_subscriptions", "description": "Indicates if the organization has paid for Subscriptions this month.\n\nIn more technical terms, closing_is_paid_subscriptions = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Subscriptions'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "arr_bucket": {"name": "arr_bucket", "description": "Buckets based on monthly ARR (MRR*12). Contains 6 distinct values:\n 1. 0\n 2. 1-5k\n 3. 5k-10k\n 4. 10k-20k\n 5. 20k-50k\n 6. 50k+", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pro_rated_arr_bucket": {"name": "pro_rated_arr_bucket", "description": "Buckets based on monthly pro-rated ARR (pro-rated MRR*12). Contains 6 distinct values:\n 1. 0\n 2. 1-5k\n 3. 5k-10k\n 4. 10k-20k\n 5. 20k-50k\n 6. 50k+", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_segment_opportunity": {"name": "sf_segment_opportunity", "description": "Opportunity related to the segments from SF opportunity (sales_segment,sales_region, etc...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "sales_region according to month's active opportunity (in case more than 1 opportunity is active - the latest opportunity will determine the sales_region)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment": {"name": "order_sales_segment", "description": "order_sales_segment according to month's active opportunity (in case more than 1 opportunity is active - the latest opportunity will determine the order_sales_segment)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_segment_group": {"name": "sales_segment_group", "description": "Grouping of order_sales_segment. Contains 6 distinct values:\n 1. VSB\n 2. SMB\n 3. MM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "months_number_since_first_paid_month": {"name": "months_number_since_first_paid_month", "description": "number of months since the organization's first paid month. (first paid month = 0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yearly_tenure": {"name": "yearly_tenure", "description": "Yearly tenure, based on the number of months past since first paid month.\nContains 3 distinct values:\n 1. 0-1\n 2. 1-2\n 3. 2+", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "active_tier_1_product_cnt": {"name": "active_tier_1_product_cnt", "description": "number of products that are active_tier_1 (review + vms count as 1 product)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "active_tier_2_product_cnt": {"name": "active_tier_2_product_cnt", "description": "number of products that are active_tier_2 (review + vms count as 1 product)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "active_tier_3_product_cnt": {"name": "active_tier_3_product_cnt", "description": "number of products that are active_tier_3 (review + vms count as 1 product)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "active_tier_4_product_cnt": {"name": "active_tier_4_product_cnt", "description": "number of products that are active_tier_4 (review + vms count as 1 product)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_full_service": {"name": "is_full_service", "description": "Indicates if at least one of the products is full service at the end of the month.\n MAX(Product level is_full_service)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_self_service": {"name": "is_self_service", "description": "Indicates if at least one of the products is self-service at the end of the month (must not be full service org).\n IF(MAX(is_full_service) = 1,0,MAX(is_self_service))", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_free": {"name": "is_free", "description": "Indicates if at least one of the products is free at the end of the month (must not be full service org).\n IF(MAX(is_full_service) = 1,0,MAX(is_free))", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual_billing": {"name": "is_annual_billing", "description": "Indicates if at least one of the products has annual_billing at the end of the month.\n MAX(Product level is_annual_billing)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_ht_self_service": {"name": "is_ht_self_service", "description": "Indicates if at least one of the products was originated in HT flow (self service plan that was sold by sales person).\n MAX(Product level is_ht_self_service)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "ht_self_service_product_opportunity": {"name": "ht_self_service_product_opportunity", "description": "Array of products and it's corresponding HT-SS opportunity id. Only relevant if is_ht_self_service = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "initial_sales_segment": {"name": "initial_sales_segment", "description": "If organization is HT, the value will be the sales_segment of the first HT won opportunity.\nIf organization is LT, the value will be \"Self-Service\"\nIf organization is free/churned, the value will be \"Free\"", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initial_sales_segment_group": {"name": "initial_sales_segment_group", "description": "If organization is HT, the value will be the sales_segment_group of the first HT won opportunity.\nIf organization is LT, the value will be \"Self-Service\"\nIf organization is free/churned, the value will be \"Free\"", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_ht_opportunity_id": {"name": "first_ht_opportunity_id", "description": "The opportunity_id of the organization's first won HT opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_12m_orders_avg_bucket": {"name": "last_12m_orders_avg_bucket", "description": "Buckets based on last 12 months orders avg. Contains 6 distinct values:\n 1. 0\n 2. 1-1K\n 3. 1K-3K\n 4. 3K-10K\n 5. 10K-20K\n 6. 20K+", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_above_3k_orders": {"name": "is_above_3k_orders", "description": "Based on last 12 months orders avg. indicates if the monthly orders avg is above 3k or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "Buckets based on last 3 months orders avg. Contains 6 distinct values:\n 1. 0\n 2. 1-1K\n 3. 1K-3K\n 4. 3K-10K\n 5. 10K-20K\n 6. 20K+", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gmv_bucket": {"name": "gmv_bucket", "description": "Buckets based on (last 12 months GMV avg) * 12. Contains 5 distinct values:\n 1. 0\n 2. 1-100K\n 3. 100K-20M\n 4. 20M-400M\n 5. 400M+", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms_active_synergy": {"name": "is_sms_active_synergy", "description": "Indicates if there is at least one store with active SMS synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_email_active_synergy": {"name": "is_email_active_synergy", "description": "Indicates if there is at least one store with active Email synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_loyalty_active_synergy": {"name": "is_loyalty_active_synergy", "description": "Indicates if there is at least one store with active Loyalty synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_ugc_active_synergy": {"name": "is_ugc_active_synergy", "description": "Indicates if there is at least one store with active UGC synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_subscriptions_active_synergy": {"name": "is_subscriptions_active_synergy", "description": "Indicates if there is at least one store with active Subscriptions synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_loyalty_sms_active_synergy": {"name": "is_loyalty_sms_active_synergy", "description": "Indicates if there is at least one store with active Loyalty<>SMS synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_loyalty_ugc_active_synergy": {"name": "is_loyalty_ugc_active_synergy", "description": "Indicates if there is at least one store with active Loyalty<>UGC synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_loyalty_subscriptions_active_synergy": {"name": "is_loyalty_subscriptions_active_synergy", "description": "Indicates if there is at least one store with active Loyalty<>Subscriptions synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_sms_ugc_active_synergy": {"name": "is_sms_ugc_active_synergy", "description": "Indicates if there is at least one store with active SMS<>UGC synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_sms_subscriptions_active_synergy": {"name": "is_sms_subscriptions_active_synergy", "description": "Indicates if there is at least one store with active SMS<>Subscriptions synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "number_of_active_synergies": {"name": "number_of_active_synergies", "description": "DISTINCT count of total active synergies under the organization.\n\nMeaning, if multiple stores have the same synergy activated, the synergy will count only once.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082645.5322397, "relation_name": "dev_dkruh1.analytics___platform__organization_segment_monthly", "raw_code": "-- Imports --\n\nWITH import_organization_product_segment_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_product_segment_monthly') }}\n{% if target.name == 'dev' %}\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n{% endif %}\n),\n\nimport_organization_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_metrics_monthly') }}\n{% if target.name == 'dev' %}\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n{% endif %}\n),\n\nimport_opportunity_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_opportunity_monthly') }}\n{% if target.name == 'dev' %}\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n{% endif %}\n),\n\nimport_organization_revenue_monthly AS (\nSELECT * FROM {{ ref('analytics___finance__organization_revenue_monthly') }}\n{% if target.name == 'dev' %}\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n{% endif %}\n),\n\nimport_organization_synergy_activeness_monthly AS (\nSELECT * FROM {{ ref('analytics___synergies__organization_synergy_activeness_monthly') }}\n{% if target.name == 'dev' %}\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n{% endif %}\n),\n\nimport_organization_first_ht_opportunity AS (\nSELECT * FROM {{ ref('analytics___cs__organization_first_ht_opportunity') }}\n),\n\n-- Logic --\n\n-- Revenue Segments --\norganization_rev_segment AS (\nSELECT \n organization_month_id,\n month,\n organization_key,\n closing_product_family_group_list AS paid_product_list,\n closing_number_of_paid_product AS number_of_paid_product,\n CASE WHEN closing_number_of_paid_product > 1 THEN 'Multi'\n WHEN closing_number_of_paid_product = 1 THEN 'Single' END AS single_multi_product,\n closing_is_paid_ugc AS is_paid_ugc,\n closing_is_paid_loyalty AS is_paid_loyalty,\n closing_is_paid_sms AS is_paid_sms,\n closing_is_paid_email AS is_paid_email,\n closing_is_paid_subscriptions AS is_paid_subscriptions,\n\n CASE WHEN closing_mrr_in_usd*12 >= 50000 THEN '50k+'\n WHEN closing_mrr_in_usd*12 >= 20000 THEN '20k-50k'\n WHEN closing_mrr_in_usd*12 >= 10000 THEN '10k-20k'\n WHEN closing_mrr_in_usd*12 >= 5000 THEN '5k-10k'\n WHEN closing_mrr_in_usd*12 >= 1 THEN '1-5k' END AS arr_bucket,\n\n CASE WHEN closing_pro_rated_mrr_in_usd*12 >= 50000 THEN '50k+'\n WHEN closing_pro_rated_mrr_in_usd*12 >= 20000 THEN '20k-50k'\n WHEN closing_pro_rated_mrr_in_usd*12 >= 10000 THEN '10k-20k'\n WHEN closing_pro_rated_mrr_in_usd*12 >= 5000 THEN '5k-10k'\n WHEN closing_pro_rated_mrr_in_usd*12 >= 1 THEN '1-5k' END AS pro_rated_arr_bucket\nFROM import_organization_revenue_monthly\n),\n\n-- SF Segments --\norganization_sf_segments AS (\nSELECT\n SHA2(CONCAT(month,organization_key),256) AS organization_month_id,\n month,\n organization_key,\n opportunity_id,\n sales_region,\n order_sales_segment,\n sales_segment_group\nFROM import_opportunity_monthly\nWHERE row_rank_for_organization_and_month = 1\n),\n\n-- Product Segments AGG --\norganization_product_segment_agg AS (\nSELECT\n SHA2(CONCAT(month,organization_key),256) AS organization_month_id,\n month,\n organization_key,\n MAX(months_number_since_first_paid_month) AS months_number_since_first_paid_month,\n INT(SUM(is_active_tier_1)) AS active_tier_1_product_cnt,\n INT(SUM(is_active_tier_2)) AS active_tier_2_product_cnt,\n INT(SUM(is_active_tier_3)) AS active_tier_3_product_cnt,\n INT(SUM(is_active_tier_4)) AS active_tier_4_product_cnt,\n MAX(is_full_service) AS is_full_service,\n IF(MAX(is_full_service) = 1,0,MAX(is_self_service)) AS is_self_service,\n IF(MAX(is_full_service) = 1,0,MAX(is_free)) AS is_free,\n MAX(is_annual_billing) AS is_annual_billing,\n MAX(is_ht_self_service) AS is_ht_self_service,\n SORT_ARRAY(COLLECT_SET(CONCAT(IF(is_ht_self_service = 1,product_family_group,NULL),\n \":\",\n IF(is_ht_self_service = 1,ht_self_service_opportunity_id,NULL)))) AS ht_self_service_product_opportunity\nFROM import_organization_product_segment_monthly\nGROUP BY 1,2,3\n),\n\n-- Order Bucket --\norganization_order_bucket AS (\nSELECT \n SHA2(CONCAT(month,organization_key),256) AS organization_month_id,\n month,\n organization_key,\n CASE WHEN last_12m_orders_cnt_avg >= 20000 THEN '20K+'\n WHEN last_12m_orders_cnt_avg >= 10000 THEN '10K-20K'\n WHEN last_12m_orders_cnt_avg >= 3000 THEN '3K-10K'\n WHEN last_12m_orders_cnt_avg >= 1000 THEN '1K-3K'\n WHEN last_12m_orders_cnt_avg >= 1 THEN '1-1K' END AS last_12m_orders_avg_bucket,\n CASE WHEN last_3m_orders_cnt_avg >= 20000 THEN '20K+'\n WHEN last_3m_orders_cnt_avg >= 10000 THEN '10K-20K'\n WHEN last_3m_orders_cnt_avg >= 3000 THEN '3K-10K'\n WHEN last_3m_orders_cnt_avg >= 1000 THEN '1K-3K'\n WHEN last_3m_orders_cnt_avg >= 1 THEN '1-1K' END AS last_3m_orders_avg_bucket,\n SMALLINT(last_12m_orders_cnt_avg >= 3000) AS is_above_3k_orders\nFROM import_organization_metrics_monthly\n),\n\n-- GMV Bucket --\norganization_l12m_gmv AS (\nSELECT \n SHA2(CONCAT(current_month.month,current_month.organization_key),256) AS organization_month_id,\n current_month.month,\n current_month.organization_key,\n NVL(SUM(l12m.orders_amount_in_usd_sum),0) AS l12m_orders_amount_in_usd,\n MIN(l12m.month) AS lower_bound_month,\n MONTHS_BETWEEN(MAX(current_month.month),MIN(l12m.month))+1 AS months_in_range_cnt\nFROM import_organization_metrics_monthly AS current_month\nLEFT JOIN import_organization_metrics_monthly AS l12m\nON current_month.organization_key = l12m.organization_key\n AND MONTHS_BETWEEN(current_month.month,l12m.month) BETWEEN 0 AND 11\n AND l12m.orders_amount_in_usd_sum > 0\nGROUP BY 1,2,3\n),\n\norganization_gmv_bucket AS (\nSELECT \n organization_month_id,\n month,\n organization_key,\n CASE WHEN (l12m_orders_amount_in_usd/months_in_range_cnt)*12 >= 400000000 THEN '400M+'\n WHEN (l12m_orders_amount_in_usd/months_in_range_cnt)*12 >= 20000000 THEN '20M-400M'\n WHEN (l12m_orders_amount_in_usd/months_in_range_cnt)*12 >= 100000 THEN '100K-20M'\n WHEN (l12m_orders_amount_in_usd/months_in_range_cnt)*12 >= 1 THEN '1-100K' END AS gmv_bucket\nFROM organization_l12m_gmv\n),\n\n-- JOIN --\norganization_monthly_res AS ( \nSELECT\n COALESCE(paid.organization_month_id,\n sf.organization_month_id,\n product.organization_month_id,\n orders.organization_month_id,\n gmv.organization_month_id,\n synergy.organization_month_id) AS organization_month_id,\n COALESCE(paid.month,\n sf.month,\n product.month,\n orders.month,\n gmv.month,\n synergy.month) AS month,\n COALESCE(paid.organization_key,\n sf.organization_key,\n product.organization_key,\n orders.organization_key,\n gmv.organization_key,\n synergy.organization_key) AS organization_key,\n paid.paid_product_list,\n NVL(paid.number_of_paid_product,0) AS number_of_paid_product,\n NVL(paid.single_multi_product,'Free') AS single_multi_product,\n NVL(paid.is_paid_ugc,0) AS is_paid_ugc,\n NVL(paid.is_paid_loyalty,0) AS is_paid_loyalty,\n NVL(paid.is_paid_sms,0) AS is_paid_sms,\n NVL(paid.is_paid_email,0) AS is_paid_email,\n NVL(paid.is_paid_subscriptions,0) AS is_paid_subscriptions,\n NVL(paid.arr_bucket,'0') AS arr_bucket,\n NVL(paid.pro_rated_arr_bucket,'0') AS pro_rated_arr_bucket,\n sf.opportunity_id AS sf_segment_opportunity,\n sf.sales_region,\n sf.order_sales_segment,\n sf.sales_segment_group,\n product.months_number_since_first_paid_month,\n CASE WHEN product.months_number_since_first_paid_month+1 >= 24 THEN '2+'\n WHEN product.months_number_since_first_paid_month+1 >= 12 THEN '1-2'\n WHEN product.months_number_since_first_paid_month+1 >= 1 THEN '0-1' END AS yearly_tenure,\n NVL(product.active_tier_1_product_cnt,0) AS active_tier_1_product_cnt,\n NVL(product.active_tier_2_product_cnt,0) AS active_tier_2_product_cnt,\n NVL(product.active_tier_3_product_cnt,0) AS active_tier_3_product_cnt,\n NVL(product.active_tier_4_product_cnt,0) AS active_tier_4_product_cnt,\n NVL(product.is_full_service,0) AS is_full_service,\n NVL(product.is_self_service,0) AS is_self_service,\n NVL(product.is_free,0) AS is_free,\n NVL(product.is_annual_billing,0) AS is_annual_billing,\n NVL(product.is_ht_self_service,0) AS is_ht_self_service,\n product.ht_self_service_product_opportunity AS ht_self_service_product_opportunity,\n CASE WHEN NVL(product.is_full_service,0) = 1 THEN first_ht_opp.order_sales_segment\n WHEN NVL(product.is_self_service,0) = 1 THEN 'Self-Service'\n ELSE 'Free' END AS initial_sales_segment,\n CASE WHEN NVL(product.is_full_service,0) = 1 THEN first_ht_opp.order_sales_segment_group\n WHEN NVL(product.is_self_service,0) = 1 THEN 'Self-Service'\n ELSE 'Free' END AS initial_sales_segment_group,\n first_ht_opp.opportunity_id AS first_ht_opportunity_id,\n NVL(orders.last_12m_orders_avg_bucket,'0') AS last_12m_orders_avg_bucket,\n NVL(orders.is_above_3k_orders,0) AS is_above_3k_orders,\n NVL(orders.last_3m_orders_avg_bucket,'0') AS last_3m_orders_avg_bucket,\n NVL(gmv.gmv_bucket,'0') AS gmv_bucket,\n NVL(synergy.is_sms_active_synergy,0) AS is_sms_active_synergy,\n NVL(synergy.is_email_active_synergy,0) AS is_email_active_synergy,\n NVL(synergy.is_loyalty_active_synergy,0) AS is_loyalty_active_synergy,\n NVL(synergy.is_ugc_active_synergy,0) AS is_ugc_active_synergy,\n NVL(synergy.is_subscriptions_active_synergy,0) AS is_subscriptions_active_synergy,\n NVL(synergy.is_loyalty_sms_active_synergy,0) AS is_loyalty_sms_active_synergy,\n NVL(synergy.is_loyalty_ugc_active_synergy,0) AS is_loyalty_ugc_active_synergy,\n NVL(synergy.is_loyalty_subscriptions_active_synergy,0) AS is_loyalty_subscriptions_active_synergy,\n NVL(synergy.is_sms_ugc_active_synergy,0) AS is_sms_ugc_active_synergy,\n NVL(synergy.is_sms_subscriptions_active_synergy,0) AS is_sms_subscriptions_active_synergy,\n NVL(synergy.number_of_active_synergies,0) AS number_of_active_synergies,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_rev_segment AS paid\nFULL OUTER JOIN organization_sf_segments AS sf\n ON paid.organization_month_id = sf.organization_month_id\nFULL OUTER JOIN organization_product_segment_agg AS product\n ON COALESCE(paid.organization_month_id,\n sf.organization_month_id) = product.organization_month_id\nFULL OUTER JOIN organization_order_bucket AS orders\n ON COALESCE(paid.organization_month_id,\n sf.organization_month_id,\n product.organization_month_id) = orders.organization_month_id\nLEFT JOIN import_organization_first_ht_opportunity AS first_ht_opp\n ON product.organization_key = first_ht_opp.organization_key\nFULL OUTER JOIN organization_gmv_bucket AS gmv\n ON COALESCE(paid.organization_month_id,\n sf.organization_month_id,\n product.organization_month_id,\n orders.organization_month_id) = gmv.organization_month_id\nFULL OUTER JOIN import_organization_synergy_activeness_monthly AS synergy\n ON COALESCE(paid.organization_month_id,\n sf.organization_month_id,\n product.organization_month_id,\n orders.organization_month_id,\n gmv.organization_month_id) = synergy.organization_month_id\n)\n\nSELECT * \nFROM organization_monthly_res", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_opportunity_monthly", "package": null, "version": null}, {"name": "analytics___finance__organization_revenue_monthly", "package": null, "version": null}, {"name": "analytics___synergies__organization_synergy_activeness_monthly", "package": null, "version": null}, {"name": "analytics___cs__organization_first_ht_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_monthly", "model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__organization_opportunity_monthly", "model.yoda.analytics___finance__organization_revenue_monthly", "model.yoda.analytics___synergies__organization_synergy_activeness_monthly", "model.yoda.analytics___cs__organization_first_ht_opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.sql", "compiled": true, "compiled_code": "-- Imports --\n\nWITH import_organization_product_segment_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_product_segment_monthly\n\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n\n),\n\nimport_organization_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_metrics_monthly\n\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n\n),\n\nimport_opportunity_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_opportunity_monthly\n\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n\n),\n\nimport_organization_revenue_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___finance__organization_revenue_monthly\n\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n\n),\n\nimport_organization_synergy_activeness_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__organization_synergy_activeness_monthly\n\nWHERE month = TRUNC(CURRENT_DATE,'MONTH')\nLIMIT 3\n\n),\n\nimport_organization_first_ht_opportunity AS (\nSELECT * FROM dev_dkruh1.analytics___cs__organization_first_ht_opportunity\n),\n\n-- Logic --\n\n-- Revenue Segments --\norganization_rev_segment AS (\nSELECT \n organization_month_id,\n month,\n organization_key,\n closing_product_family_group_list AS paid_product_list,\n closing_number_of_paid_product AS number_of_paid_product,\n CASE WHEN closing_number_of_paid_product > 1 THEN 'Multi'\n WHEN closing_number_of_paid_product = 1 THEN 'Single' END AS single_multi_product,\n closing_is_paid_ugc AS is_paid_ugc,\n closing_is_paid_loyalty AS is_paid_loyalty,\n closing_is_paid_sms AS is_paid_sms,\n closing_is_paid_email AS is_paid_email,\n closing_is_paid_subscriptions AS is_paid_subscriptions,\n\n CASE WHEN closing_mrr_in_usd*12 >= 50000 THEN '50k+'\n WHEN closing_mrr_in_usd*12 >= 20000 THEN '20k-50k'\n WHEN closing_mrr_in_usd*12 >= 10000 THEN '10k-20k'\n WHEN closing_mrr_in_usd*12 >= 5000 THEN '5k-10k'\n WHEN closing_mrr_in_usd*12 >= 1 THEN '1-5k' END AS arr_bucket,\n\n CASE WHEN closing_pro_rated_mrr_in_usd*12 >= 50000 THEN '50k+'\n WHEN closing_pro_rated_mrr_in_usd*12 >= 20000 THEN '20k-50k'\n WHEN closing_pro_rated_mrr_in_usd*12 >= 10000 THEN '10k-20k'\n WHEN closing_pro_rated_mrr_in_usd*12 >= 5000 THEN '5k-10k'\n WHEN closing_pro_rated_mrr_in_usd*12 >= 1 THEN '1-5k' END AS pro_rated_arr_bucket\nFROM import_organization_revenue_monthly\n),\n\n-- SF Segments --\norganization_sf_segments AS (\nSELECT\n SHA2(CONCAT(month,organization_key),256) AS organization_month_id,\n month,\n organization_key,\n opportunity_id,\n sales_region,\n order_sales_segment,\n sales_segment_group\nFROM import_opportunity_monthly\nWHERE row_rank_for_organization_and_month = 1\n),\n\n-- Product Segments AGG --\norganization_product_segment_agg AS (\nSELECT\n SHA2(CONCAT(month,organization_key),256) AS organization_month_id,\n month,\n organization_key,\n MAX(months_number_since_first_paid_month) AS months_number_since_first_paid_month,\n INT(SUM(is_active_tier_1)) AS active_tier_1_product_cnt,\n INT(SUM(is_active_tier_2)) AS active_tier_2_product_cnt,\n INT(SUM(is_active_tier_3)) AS active_tier_3_product_cnt,\n INT(SUM(is_active_tier_4)) AS active_tier_4_product_cnt,\n MAX(is_full_service) AS is_full_service,\n IF(MAX(is_full_service) = 1,0,MAX(is_self_service)) AS is_self_service,\n IF(MAX(is_full_service) = 1,0,MAX(is_free)) AS is_free,\n MAX(is_annual_billing) AS is_annual_billing,\n MAX(is_ht_self_service) AS is_ht_self_service,\n SORT_ARRAY(COLLECT_SET(CONCAT(IF(is_ht_self_service = 1,product_family_group,NULL),\n \":\",\n IF(is_ht_self_service = 1,ht_self_service_opportunity_id,NULL)))) AS ht_self_service_product_opportunity\nFROM import_organization_product_segment_monthly\nGROUP BY 1,2,3\n),\n\n-- Order Bucket --\norganization_order_bucket AS (\nSELECT \n SHA2(CONCAT(month,organization_key),256) AS organization_month_id,\n month,\n organization_key,\n CASE WHEN last_12m_orders_cnt_avg >= 20000 THEN '20K+'\n WHEN last_12m_orders_cnt_avg >= 10000 THEN '10K-20K'\n WHEN last_12m_orders_cnt_avg >= 3000 THEN '3K-10K'\n WHEN last_12m_orders_cnt_avg >= 1000 THEN '1K-3K'\n WHEN last_12m_orders_cnt_avg >= 1 THEN '1-1K' END AS last_12m_orders_avg_bucket,\n CASE WHEN last_3m_orders_cnt_avg >= 20000 THEN '20K+'\n WHEN last_3m_orders_cnt_avg >= 10000 THEN '10K-20K'\n WHEN last_3m_orders_cnt_avg >= 3000 THEN '3K-10K'\n WHEN last_3m_orders_cnt_avg >= 1000 THEN '1K-3K'\n WHEN last_3m_orders_cnt_avg >= 1 THEN '1-1K' END AS last_3m_orders_avg_bucket,\n SMALLINT(last_12m_orders_cnt_avg >= 3000) AS is_above_3k_orders\nFROM import_organization_metrics_monthly\n),\n\n-- GMV Bucket --\norganization_l12m_gmv AS (\nSELECT \n SHA2(CONCAT(current_month.month,current_month.organization_key),256) AS organization_month_id,\n current_month.month,\n current_month.organization_key,\n NVL(SUM(l12m.orders_amount_in_usd_sum),0) AS l12m_orders_amount_in_usd,\n MIN(l12m.month) AS lower_bound_month,\n MONTHS_BETWEEN(MAX(current_month.month),MIN(l12m.month))+1 AS months_in_range_cnt\nFROM import_organization_metrics_monthly AS current_month\nLEFT JOIN import_organization_metrics_monthly AS l12m\nON current_month.organization_key = l12m.organization_key\n AND MONTHS_BETWEEN(current_month.month,l12m.month) BETWEEN 0 AND 11\n AND l12m.orders_amount_in_usd_sum > 0\nGROUP BY 1,2,3\n),\n\norganization_gmv_bucket AS (\nSELECT \n organization_month_id,\n month,\n organization_key,\n CASE WHEN (l12m_orders_amount_in_usd/months_in_range_cnt)*12 >= 400000000 THEN '400M+'\n WHEN (l12m_orders_amount_in_usd/months_in_range_cnt)*12 >= 20000000 THEN '20M-400M'\n WHEN (l12m_orders_amount_in_usd/months_in_range_cnt)*12 >= 100000 THEN '100K-20M'\n WHEN (l12m_orders_amount_in_usd/months_in_range_cnt)*12 >= 1 THEN '1-100K' END AS gmv_bucket\nFROM organization_l12m_gmv\n),\n\n-- JOIN --\norganization_monthly_res AS ( \nSELECT\n COALESCE(paid.organization_month_id,\n sf.organization_month_id,\n product.organization_month_id,\n orders.organization_month_id,\n gmv.organization_month_id,\n synergy.organization_month_id) AS organization_month_id,\n COALESCE(paid.month,\n sf.month,\n product.month,\n orders.month,\n gmv.month,\n synergy.month) AS month,\n COALESCE(paid.organization_key,\n sf.organization_key,\n product.organization_key,\n orders.organization_key,\n gmv.organization_key,\n synergy.organization_key) AS organization_key,\n paid.paid_product_list,\n NVL(paid.number_of_paid_product,0) AS number_of_paid_product,\n NVL(paid.single_multi_product,'Free') AS single_multi_product,\n NVL(paid.is_paid_ugc,0) AS is_paid_ugc,\n NVL(paid.is_paid_loyalty,0) AS is_paid_loyalty,\n NVL(paid.is_paid_sms,0) AS is_paid_sms,\n NVL(paid.is_paid_email,0) AS is_paid_email,\n NVL(paid.is_paid_subscriptions,0) AS is_paid_subscriptions,\n NVL(paid.arr_bucket,'0') AS arr_bucket,\n NVL(paid.pro_rated_arr_bucket,'0') AS pro_rated_arr_bucket,\n sf.opportunity_id AS sf_segment_opportunity,\n sf.sales_region,\n sf.order_sales_segment,\n sf.sales_segment_group,\n product.months_number_since_first_paid_month,\n CASE WHEN product.months_number_since_first_paid_month+1 >= 24 THEN '2+'\n WHEN product.months_number_since_first_paid_month+1 >= 12 THEN '1-2'\n WHEN product.months_number_since_first_paid_month+1 >= 1 THEN '0-1' END AS yearly_tenure,\n NVL(product.active_tier_1_product_cnt,0) AS active_tier_1_product_cnt,\n NVL(product.active_tier_2_product_cnt,0) AS active_tier_2_product_cnt,\n NVL(product.active_tier_3_product_cnt,0) AS active_tier_3_product_cnt,\n NVL(product.active_tier_4_product_cnt,0) AS active_tier_4_product_cnt,\n NVL(product.is_full_service,0) AS is_full_service,\n NVL(product.is_self_service,0) AS is_self_service,\n NVL(product.is_free,0) AS is_free,\n NVL(product.is_annual_billing,0) AS is_annual_billing,\n NVL(product.is_ht_self_service,0) AS is_ht_self_service,\n product.ht_self_service_product_opportunity AS ht_self_service_product_opportunity,\n CASE WHEN NVL(product.is_full_service,0) = 1 THEN first_ht_opp.order_sales_segment\n WHEN NVL(product.is_self_service,0) = 1 THEN 'Self-Service'\n ELSE 'Free' END AS initial_sales_segment,\n CASE WHEN NVL(product.is_full_service,0) = 1 THEN first_ht_opp.order_sales_segment_group\n WHEN NVL(product.is_self_service,0) = 1 THEN 'Self-Service'\n ELSE 'Free' END AS initial_sales_segment_group,\n first_ht_opp.opportunity_id AS first_ht_opportunity_id,\n NVL(orders.last_12m_orders_avg_bucket,'0') AS last_12m_orders_avg_bucket,\n NVL(orders.is_above_3k_orders,0) AS is_above_3k_orders,\n NVL(orders.last_3m_orders_avg_bucket,'0') AS last_3m_orders_avg_bucket,\n NVL(gmv.gmv_bucket,'0') AS gmv_bucket,\n NVL(synergy.is_sms_active_synergy,0) AS is_sms_active_synergy,\n NVL(synergy.is_email_active_synergy,0) AS is_email_active_synergy,\n NVL(synergy.is_loyalty_active_synergy,0) AS is_loyalty_active_synergy,\n NVL(synergy.is_ugc_active_synergy,0) AS is_ugc_active_synergy,\n NVL(synergy.is_subscriptions_active_synergy,0) AS is_subscriptions_active_synergy,\n NVL(synergy.is_loyalty_sms_active_synergy,0) AS is_loyalty_sms_active_synergy,\n NVL(synergy.is_loyalty_ugc_active_synergy,0) AS is_loyalty_ugc_active_synergy,\n NVL(synergy.is_loyalty_subscriptions_active_synergy,0) AS is_loyalty_subscriptions_active_synergy,\n NVL(synergy.is_sms_ugc_active_synergy,0) AS is_sms_ugc_active_synergy,\n NVL(synergy.is_sms_subscriptions_active_synergy,0) AS is_sms_subscriptions_active_synergy,\n NVL(synergy.number_of_active_synergies,0) AS number_of_active_synergies,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_rev_segment AS paid\nFULL OUTER JOIN organization_sf_segments AS sf\n ON paid.organization_month_id = sf.organization_month_id\nFULL OUTER JOIN organization_product_segment_agg AS product\n ON COALESCE(paid.organization_month_id,\n sf.organization_month_id) = product.organization_month_id\nFULL OUTER JOIN organization_order_bucket AS orders\n ON COALESCE(paid.organization_month_id,\n sf.organization_month_id,\n product.organization_month_id) = orders.organization_month_id\nLEFT JOIN import_organization_first_ht_opportunity AS first_ht_opp\n ON product.organization_key = first_ht_opp.organization_key\nFULL OUTER JOIN organization_gmv_bucket AS gmv\n ON COALESCE(paid.organization_month_id,\n sf.organization_month_id,\n product.organization_month_id,\n orders.organization_month_id) = gmv.organization_month_id\nFULL OUTER JOIN import_organization_synergy_activeness_monthly AS synergy\n ON COALESCE(paid.organization_month_id,\n sf.organization_month_id,\n product.organization_month_id,\n orders.organization_month_id,\n gmv.organization_month_id) = synergy.organization_month_id\n)\n\nSELECT * \nFROM organization_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__owner_plan_event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__owner_plan_event", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.sql", "unique_id": "model.yoda.analytics___platform__owner_plan_event", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__owner_plan_event", "analytics___platform__owner_plan_event"], "alias": "analytics___platform__owner_plan_event", "checksum": {"name": "sha256", "checksum": "c5effde006fb5be08965d2fbe1cb326e2e6e72f37ba66468abd26b19bfa59968"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Table showing plan event history per owner and product.\nfiltering out product_family = Common from owner_plan snapshot and adding owner_plan_history to catch events marked is_deleted = 1,\nthese events mark the end of the owner_plan_id.\nPK: owner_plan_event_id", "columns": {"owner_plan_event_id": {"name": "owner_plan_event_id", "description": "PK: unique table identifier - concat(owner_plan_id + version)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_plan_id": {"name": "owner_plan_id", "description": "id of the owner-plan event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "id of the plan owner:\n- if organization: organization_key\n- if store: app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_type": {"name": "owner_type", "description": "owner type (organization or store)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "Timestamp for when package was updated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lead_updated_at": {"name": "lead_updated_at", "description": "the next event's updated date for owner_plan_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "plan_id": {"name": "plan_id", "description": "plan id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "product name: Reviews,Loyalty etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_core_plan": {"name": "is_core_plan", "description": "indicator = 0 when product_family = Extensions or Common", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_self_service": {"name": "is_self_service", "description": "is self service plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "is free plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "is reviews plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "is loyalty plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "is sms plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "is email plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "is vms plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "is subscriptions plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_organization_owner": {"name": "is_organization_owner", "description": "is the owner of the package is organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_store_owner": {"name": "is_store_owner", "description": "is the owner of the package is store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "is owner_plan_id deleted", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082645.5901215, "relation_name": "dev_dkruh1.analytics___platform__owner_plan_event", "raw_code": "-- Import --\n\nWITH import_platform_stg__owner_plan_snapshot AS (\nSELECT * FROM {{ ref('analytics___platform_stg__owner_plan_snapshot') }}\n),\n\nimport_platform__plan AS (\nSELECT * FROM {{ ref('analytics___platform__plan') }}\n),\n\nimport_owner_plan_history AS (\nSELECT * FROM {{ ref('analytics___platform_stg__owner_plan_history') }}\n),\n\nunion_w_deleted_event AS (\nSELECT \n owner_plan_id,\n owner_id,\n owner_type,\n plan_id,\n created_at,\n started_at,\n is_organization_owner,\n is_store_owner,\n updated_at,\n SMALLINT(0) AS is_deleted\nFROM import_platform_stg__owner_plan_snapshot\nUNION ALL\nSELECT\n owner_plan_id,\n owner_id,\n owner_type,\n plan_id,\n created_at,\n started_at,\n is_organization_owner,\n is_store_owner,\n deleted_at AS updated_at,\n is_deleted\nFROM import_owner_plan_history\nWHERE is_deleted = 1\n),\n\nevent_enriched_wo_common AS (\nSELECT \n CONCAT(event.owner_plan_id,'-',ROW_NUMBER() OVER(PARTITION BY event.owner_plan_id ORDER BY event.updated_at)) AS owner_plan_event_id,\n event.owner_plan_id,\n event.owner_id,\n event.owner_type,\n event.updated_at,\n LEAD(event.updated_at) OVER(PARTITION BY event.owner_plan_id ORDER BY event.updated_at) AS lead_updated_at,\n event.plan_id,\n plan.plan_name,\n CASE WHEN LOWER(plan.category_name) LIKE '%loyalty%' THEN 'Loyalty'\n WHEN LOWER(plan.category_name) LIKE '%email%' THEN 'Email'\n ELSE plan.category_name END AS product_family,\n SMALLINT(IF(plan.category_id IN (4,6),0,1)) AS is_core_plan,\n plan.is_ss AS is_self_service,\n plan.is_free,\n plan.is_reviews,\n plan.is_loyalty,\n plan.is_sms,\n plan.is_email,\n plan.is_vms,\n plan.is_subscriptions,\n event.is_organization_owner,\n event.is_store_owner,\n event.is_deleted\nFROM union_w_deleted_event AS event\nINNER JOIN import_platform__plan AS plan \n ON event.plan_id = plan.plan_id\nWHERE plan.category_id <> 6\n)\n\nSELECT *\nFROM event_enriched_wo_common", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_snapshot", "package": null, "version": null}, {"name": "analytics___platform__plan", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_plan_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_snapshot", "model.yoda.analytics___platform__plan", "model.yoda.analytics___platform_stg__owner_plan_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__owner_plan_snapshot AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__owner_plan_snapshot\n),\n\nimport_platform__plan AS (\nSELECT * FROM dev_dkruh1.analytics___platform__plan\n),\n\nimport_owner_plan_history AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__owner_plan_history\n),\n\nunion_w_deleted_event AS (\nSELECT \n owner_plan_id,\n owner_id,\n owner_type,\n plan_id,\n created_at,\n started_at,\n is_organization_owner,\n is_store_owner,\n updated_at,\n SMALLINT(0) AS is_deleted\nFROM import_platform_stg__owner_plan_snapshot\nUNION ALL\nSELECT\n owner_plan_id,\n owner_id,\n owner_type,\n plan_id,\n created_at,\n started_at,\n is_organization_owner,\n is_store_owner,\n deleted_at AS updated_at,\n is_deleted\nFROM import_owner_plan_history\nWHERE is_deleted = 1\n),\n\nevent_enriched_wo_common AS (\nSELECT \n CONCAT(event.owner_plan_id,'-',ROW_NUMBER() OVER(PARTITION BY event.owner_plan_id ORDER BY event.updated_at)) AS owner_plan_event_id,\n event.owner_plan_id,\n event.owner_id,\n event.owner_type,\n event.updated_at,\n LEAD(event.updated_at) OVER(PARTITION BY event.owner_plan_id ORDER BY event.updated_at) AS lead_updated_at,\n event.plan_id,\n plan.plan_name,\n CASE WHEN LOWER(plan.category_name) LIKE '%loyalty%' THEN 'Loyalty'\n WHEN LOWER(plan.category_name) LIKE '%email%' THEN 'Email'\n ELSE plan.category_name END AS product_family,\n SMALLINT(IF(plan.category_id IN (4,6),0,1)) AS is_core_plan,\n plan.is_ss AS is_self_service,\n plan.is_free,\n plan.is_reviews,\n plan.is_loyalty,\n plan.is_sms,\n plan.is_email,\n plan.is_vms,\n plan.is_subscriptions,\n event.is_organization_owner,\n event.is_store_owner,\n event.is_deleted\nFROM union_w_deleted_event AS event\nINNER JOIN import_platform__plan AS plan \n ON event.plan_id = plan.plan_id\nWHERE plan.category_id <> 6\n)\n\nSELECT *\nFROM event_enriched_wo_common", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__plan": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__plan", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.sql", "unique_id": "model.yoda.analytics___platform__plan", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__plan", "analytics___platform__plan"], "alias": "analytics___platform__plan", "checksum": {"name": "sha256", "checksum": "5a5e6d6456206316476afdf3599885909c27e04c09f6dceadd861e49b8024179"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table that hold all plans for yotpo's products", "columns": {"plan_key": {"name": "plan_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_description": {"name": "plan_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_id": {"name": "category_id", "description": "category id for each plan (usualy it's the product id: Reviews,Loyalty etc.)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "category name for each plan (usualy it's the product name: Reviews,Loyalty etc.)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms_annual": {"name": "is_sms_annual", "description": "is sms annual plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms_ss": {"name": "is_sms_ss", "description": "is sms self service plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms_free": {"name": "is_sms_free", "description": "is sms free plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "is sms plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_annual": {"name": "is_reviews_annual", "description": "is reviews annual plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_ss": {"name": "is_reviews_ss", "description": "is reviews self service plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_free": {"name": "is_reviews_free", "description": "is reviews free plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "is reviews plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms_annual": {"name": "is_vms_annual", "description": "is vms annual plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms_ss": {"name": "is_vms_ss", "description": "is vms self service plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms_free": {"name": "is_vms_free", "description": "is vms free plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "is vms plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty_annual": {"name": "is_loyalty_annual", "description": "is loyalty anuual plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty_ss": {"name": "is_loyalty_ss", "description": "is loyalty self service plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty_free": {"name": "is_loyalty_free", "description": "is loyalty free plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "is loyalty plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email_annual": {"name": "is_email_annual", "description": "is annual email plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email_ss": {"name": "is_email_ss", "description": "is self service email plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email_free": {"name": "is_email_free", "description": "is free email plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "is email plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions_annual": {"name": "is_subscriptions_annual", "description": "is subscriptions annual plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions_ss": {"name": "is_subscriptions_ss", "description": "is subscriptions self service plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions_free": {"name": "is_subscriptions_free", "description": "is subscriptions free plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "is subscriptions plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_annual": {"name": "is_annual", "description": "is the plan tagged as an annual plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_growth": {"name": "is_growth", "description": "is growth plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_premium": {"name": "is_premium", "description": "is premium plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ss": {"name": "is_ss", "description": "is self service plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "is free plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_legacy": {"name": "is_legacy", "description": "is legacy plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_prime": {"name": "is_prime", "description": "is prime plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "tags": {"name": "tags", "description": "concat string of plan tags (for example: monthly, growth)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_tags": {"name": "full_tags", "description": "full concat string of the product and it's tags. (for example: Reviews monthly, Reviews prime)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082645.6434658, "relation_name": "dev_dkruh1.analytics___platform__plan", "raw_code": "-- Import --\n\nWITH import_platform_stg__plan AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__plan') }}\n),\n\nimport_platform_stg__plan_category AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__plan_category') }}\n),\n\nimport_platform_stg__plan_tag AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__plan_tag') }}\n),\n\nimport_platform_stg__plan_tag_type AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__plan_tag_type') }}\n),\n\nimport_platform_stg__static_deprecated_package AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__static_deprecated_package') }}\n),\n\n-- Logic --\n\n plan_unified AS (\n\n SELECT\n packages.plan_key,\n packages.plan_id,\n packages.plan_name,\n packages.plan_description,\n packages.category_id,\n categories.category_name,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 8 THEN 1 ELSE 0 END)) AS is_sms_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 8 THEN 1 ELSE 0 END)) AS is_sms_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 8 THEN 1 ELSE 0 END)) AS is_sms_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 8 THEN 1 ELSE 0 END)) AS is_sms,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 1 THEN 1 ELSE 0 END)) AS is_reviews_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 1 THEN 1 ELSE 0 END)) AS is_reviews_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 1 THEN 1 ELSE 0 END)) AS is_reviews_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 1 THEN 1 ELSE 0 END)) AS is_reviews,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 2 THEN 1 ELSE 0 END)) AS is_vms_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 2 THEN 1 ELSE 0 END)) AS is_vms_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 2 THEN 1 ELSE 0 END)) AS is_vms_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 2 THEN 1 ELSE 0 END)) AS is_vms,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 3 THEN 1 ELSE 0 END)) AS is_loyalty_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 3 THEN 1 ELSE 0 END)) AS is_loyalty_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 3 THEN 1 ELSE 0 END)) AS is_loyalty_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 3 THEN 1 ELSE 0 END)) AS is_loyalty,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 7 THEN 1 ELSE 0 END)) AS is_email_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 7 THEN 1 ELSE 0 END)) AS is_email_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 7 THEN 1 ELSE 0 END)) AS is_email_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 7 THEN 1 ELSE 0 END)) AS is_email,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 9 THEN 1 ELSE 0 END)) AS is_subscriptions_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 9 THEN 1 ELSE 0 END)) AS is_subscriptions_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 9 THEN 1 ELSE 0 END)) AS is_subscriptions_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 9 THEN 1 ELSE 0 END)) AS is_subscriptions,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 THEN 1 ELSE 0 END)) AS is_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 4 THEN 1 ELSE 0 END)) AS is_growth,\n MAX(SMALLINT(CASE WHEN LOWER(packages.plan_name) LIKE '%premium%' THEN 1 ELSE 0 END)) AS is_premium,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 THEN 1 ELSE 0 END)) AS is_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 THEN 1 ELSE 0 END)) AS is_free,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 6 THEN 1 ELSE 0 END)) AS is_legacy,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 7 THEN 1 ELSE 0 END)) AS is_prime,\n CONCAT_WS(', ',\n TRANSFORM(\n ARRAY_SORT(\n COLLECT_SET(ARRAY(package_tag_types.tag_type, package_tag_types.plan_tag_type_id)), (left, right) ->\n CASE WHEN left[1] < right[1] THEN -1 WHEN left[1] > right[1] THEN 1 ELSE 0 END), t -> t[0]))\n AS tags,\n CONCAT_WS(', ',\n TRANSFORM(\n ARRAY_SORT(\n COLLECT_SET(ARRAY(categories.category_name || ' ' || package_tag_types.tag_type, package_tag_types.plan_tag_type_id)), (left, right) ->\n CASE WHEN left[1] < right[1] THEN -1 WHEN left[1] > right[1] THEN 1 ELSE 0 END), t -> t[0]))\n AS full_tags, \n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_platform_stg__plan AS packages\n LEFT JOIN import_platform_stg__plan_tag AS package_tags\n ON packages.plan_id = package_tags.plan_id\n LEFT JOIN import_platform_stg__plan_tag_type AS package_tag_types\n ON package_tags.plan_tag_type_id = package_tag_types.plan_tag_type_id\n LEFT JOIN import_platform_stg__plan_category AS categories\n ON categories.category_id = packages.category_id\n GROUP BY 1,2,3,4,5,6\n UNION ALL\n SELECT\n plan_key,\n plan_id,\n plan_name,\n plan_description,\n category_id,\n category_name,\n is_sms_annual,\n is_sms_ss,\n is_sms_free,\n is_sms,\n is_reviews_annual,\n is_reviews_ss,\n is_reviews_free,\n is_reviews,\n is_vms_annual,\n is_vms_ss,\n is_vms_free,\n is_vms,\n is_loyalty_annual,\n is_loyalty_ss,\n is_loyalty_free,\n is_loyalty,\n is_insights_annual,\n is_insights_ss,\n is_insights_free,\n is_insights,\n is_subscriptions_annual,\n is_subscriptions_ss,\n is_subscriptions_free,\n is_subscriptions,\n is_annual,\n is_growth,\n is_premium,\n is_ss,\n is_free,\n is_legacy,\n is_prime,\n tags,\n full_tags,\n dwh_updated_at\n FROM import_platform_stg__static_deprecated_package\n\n)\n\n-- Result --\n\nSELECT * FROM plan_unified", "language": "sql", "refs": [{"name": "analytics___platform_stg__plan", "package": null, "version": null}, {"name": "analytics___platform_stg__plan_category", "package": null, "version": null}, {"name": "analytics___platform_stg__plan_tag", "package": null, "version": null}, {"name": "analytics___platform_stg__plan_tag_type", "package": null, "version": null}, {"name": "analytics___platform_stg__static_deprecated_package", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__plan", "model.yoda.analytics___platform_stg__plan_category", "model.yoda.analytics___platform_stg__plan_tag", "model.yoda.analytics___platform_stg__plan_tag_type", "model.yoda.analytics___platform_stg__static_deprecated_package"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__plan AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__plan\n),\n\nimport_platform_stg__plan_category AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__plan_category\n),\n\nimport_platform_stg__plan_tag AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__plan_tag\n),\n\nimport_platform_stg__plan_tag_type AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__plan_tag_type\n),\n\nimport_platform_stg__static_deprecated_package AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__static_deprecated_package\n),\n\n-- Logic --\n\n plan_unified AS (\n\n SELECT\n packages.plan_key,\n packages.plan_id,\n packages.plan_name,\n packages.plan_description,\n packages.category_id,\n categories.category_name,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 8 THEN 1 ELSE 0 END)) AS is_sms_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 8 THEN 1 ELSE 0 END)) AS is_sms_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 8 THEN 1 ELSE 0 END)) AS is_sms_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 8 THEN 1 ELSE 0 END)) AS is_sms,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 1 THEN 1 ELSE 0 END)) AS is_reviews_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 1 THEN 1 ELSE 0 END)) AS is_reviews_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 1 THEN 1 ELSE 0 END)) AS is_reviews_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 1 THEN 1 ELSE 0 END)) AS is_reviews,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 2 THEN 1 ELSE 0 END)) AS is_vms_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 2 THEN 1 ELSE 0 END)) AS is_vms_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 2 THEN 1 ELSE 0 END)) AS is_vms_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 2 THEN 1 ELSE 0 END)) AS is_vms,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 3 THEN 1 ELSE 0 END)) AS is_loyalty_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 3 THEN 1 ELSE 0 END)) AS is_loyalty_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 3 THEN 1 ELSE 0 END)) AS is_loyalty_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 3 THEN 1 ELSE 0 END)) AS is_loyalty,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 7 THEN 1 ELSE 0 END)) AS is_email_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 7 THEN 1 ELSE 0 END)) AS is_email_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 7 THEN 1 ELSE 0 END)) AS is_email_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 7 THEN 1 ELSE 0 END)) AS is_email,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 AND categories.category_id = 9 THEN 1 ELSE 0 END)) AS is_subscriptions_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 AND categories.category_id = 9 THEN 1 ELSE 0 END)) AS is_subscriptions_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 AND categories.category_id = 9 THEN 1 ELSE 0 END)) AS is_subscriptions_free,\n MAX(SMALLINT(CASE WHEN categories.category_id = 9 THEN 1 ELSE 0 END)) AS is_subscriptions,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 3 THEN 1 ELSE 0 END)) AS is_annual,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 4 THEN 1 ELSE 0 END)) AS is_growth,\n MAX(SMALLINT(CASE WHEN LOWER(packages.plan_name) LIKE '%premium%' THEN 1 ELSE 0 END)) AS is_premium,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 2 THEN 1 ELSE 0 END)) AS is_ss,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 1 THEN 1 ELSE 0 END)) AS is_free,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 6 THEN 1 ELSE 0 END)) AS is_legacy,\n MAX(SMALLINT(CASE WHEN package_tag_types.plan_tag_type_id = 7 THEN 1 ELSE 0 END)) AS is_prime,\n CONCAT_WS(', ',\n TRANSFORM(\n ARRAY_SORT(\n COLLECT_SET(ARRAY(package_tag_types.tag_type, package_tag_types.plan_tag_type_id)), (left, right) ->\n CASE WHEN left[1] < right[1] THEN -1 WHEN left[1] > right[1] THEN 1 ELSE 0 END), t -> t[0]))\n AS tags,\n CONCAT_WS(', ',\n TRANSFORM(\n ARRAY_SORT(\n COLLECT_SET(ARRAY(categories.category_name || ' ' || package_tag_types.tag_type, package_tag_types.plan_tag_type_id)), (left, right) ->\n CASE WHEN left[1] < right[1] THEN -1 WHEN left[1] > right[1] THEN 1 ELSE 0 END), t -> t[0]))\n AS full_tags, \n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_platform_stg__plan AS packages\n LEFT JOIN import_platform_stg__plan_tag AS package_tags\n ON packages.plan_id = package_tags.plan_id\n LEFT JOIN import_platform_stg__plan_tag_type AS package_tag_types\n ON package_tags.plan_tag_type_id = package_tag_types.plan_tag_type_id\n LEFT JOIN import_platform_stg__plan_category AS categories\n ON categories.category_id = packages.category_id\n GROUP BY 1,2,3,4,5,6\n UNION ALL\n SELECT\n plan_key,\n plan_id,\n plan_name,\n plan_description,\n category_id,\n category_name,\n is_sms_annual,\n is_sms_ss,\n is_sms_free,\n is_sms,\n is_reviews_annual,\n is_reviews_ss,\n is_reviews_free,\n is_reviews,\n is_vms_annual,\n is_vms_ss,\n is_vms_free,\n is_vms,\n is_loyalty_annual,\n is_loyalty_ss,\n is_loyalty_free,\n is_loyalty,\n is_insights_annual,\n is_insights_ss,\n is_insights_free,\n is_insights,\n is_subscriptions_annual,\n is_subscriptions_ss,\n is_subscriptions_free,\n is_subscriptions,\n is_annual,\n is_growth,\n is_premium,\n is_ss,\n is_free,\n is_legacy,\n is_prime,\n tags,\n full_tags,\n dwh_updated_at\n FROM import_platform_stg__static_deprecated_package\n\n)\n\n-- Result --\n\nSELECT * FROM plan_unified", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__platform_store_plan_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__platform_store_plan_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.sql", "unique_id": "model.yoda.analytics___platform__platform_store_plan_over_time", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__platform_store_plan_over_time", "analytics___platform__platform_store_plan_over_time"], "alias": "analytics___platform__platform_store_plan_over_time", "checksum": {"name": "sha256", "checksum": "a061603d6a1c10d8496fa30cd931382b6a47080f0d6eb2ab63d02d755e36e6ef"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled over time table of owner_plan_event_details.\nA store can get a plan on the organization level or on the store level. \nWhen joining this table on date/timestamp make sure to use filter DATE > STORE_CREATED_DATE", "columns": {"owner_plan_event_id": {"name": "owner_plan_event_id", "description": "PK: unique table identifier - concat(owner_plan_id + version)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_plan_id": {"name": "owner_plan_id", "description": "id of the owner-plan event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_created_date": {"name": "store_created_date", "description": "store created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_family": {"name": "product_family", "description": "Reviews, Subscription ect", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "FK: analytics___platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_time": {"name": "from_time", "description": "plan start time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "plan end time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_core_plan": {"name": "is_core_plan", "description": "plan category_name <> Extensions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_self_service": {"name": "is_self_service", "description": "based on is_ss from analytics___platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "based on is_free from analytics___platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "store_plan_source_rank": {"name": "store_plan_source_rank", "description": "plans from organization level = 1 from store level = 2.\nWe give proirity to organization level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "store_plan_source": {"name": "store_plan_source", "description": "source of the plan - organization = platform organization | store = platform store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "dwh update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082645.6961522, "relation_name": "dev_dkruh1.analytics___platform__platform_store_plan_over_time", "raw_code": "-- Import --\n\nWITH import_platform_owner_plan_event AS (\nSELECT * FROM {{ ref('analytics___platform__owner_plan_event') }}\n),\n\nimport_platform_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\n-- Logic --\n\nplatform_store_owner_store_plan AS (\nSELECT \n event.owner_plan_event_id,\n event.owner_plan_id,\n event.owner_id AS app_key,\n store.organization_key,\n store.store_created_date,\n event.updated_at AS from_time,\n TIMESTAMP(NVL(event.lead_updated_at,'2999-12-31')) AS to_time,\n event.plan_id,\n event.plan_name,\n store.store_created_date,\n event.product_family,\n event.is_core_plan,\n event.is_self_service,\n event.is_free,\n event.is_deleted\nFROM import_platform_owner_plan_event AS event\nINNER JOIN import_platform_store AS store \n ON event.owner_id= store.app_key\nWHERE event.is_store_owner = 1\n),\n\nplatform_organization_owner_store_plan AS (\nSELECT \n event.owner_plan_event_id,\n event.owner_plan_id,\n store.app_key AS app_key,\n event.owner_id AS organization_key,\n store.store_created_date,\n event.updated_at AS from_time,\n NVL(event.lead_updated_at,TIMESTAMP('2999-12-31')) AS to_time,\n event.plan_id,\n event.plan_name,\n event.product_family,\n event.is_core_plan,\n event.is_self_service,\n event.is_free,\n event.is_deleted\nFROM import_platform_owner_plan_event AS event\nINNER JOIN import_platform_store AS store \n ON event.owner_id = store.organization_key\nWHERE event.is_organization_owner = 1\n),\n\nunion_store_orgs AS (\nSELECT \n owner_plan_event_id,\n owner_plan_id,\n app_key,\n organization_key,\n store_created_date,\n product_family,\n plan_id,\n plan_name,\n from_time,\n to_time,\n is_core_plan,\n is_self_service,\n is_free,\n is_deleted,\n 2 AS store_plan_source_rank,\n 'platform store' AS store_plan_source\nFROM platform_store_owner_store_plan\nUNION ALL \nSELECT \n owner_plan_event_id,\n owner_plan_id,\n app_key,\n organization_key,\n store_created_date,\n product_family,\n plan_id,\n plan_name,\n from_time,\n to_time,\n is_core_plan,\n is_self_service,\n is_free,\n is_deleted,\n 1 AS store_plan_source_rank,\n 'platform organization' AS store_plan_source\nFROM platform_organization_owner_store_plan\n),\n\nplatform_store_plan_over_time_res AS (\nSELECT \n owner_plan_event_id,\n owner_plan_id,\n app_key,\n organization_key,\n store_created_date,\n product_family,\n INT(plan_id) AS plan_id,\n plan_name,\n from_time,\n to_time,\n is_core_plan,\n is_self_service,\n is_free,\n store_plan_source_rank,\n store_plan_source,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM union_store_orgs\nWHERE is_deleted = 0\n)\n\nSELECT * \nFROM platform_store_plan_over_time_res", "language": "sql", "refs": [{"name": "analytics___platform__owner_plan_event", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__owner_plan_event", "model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_owner_plan_event AS (\nSELECT * FROM dev_dkruh1.analytics___platform__owner_plan_event\n),\n\nimport_platform_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\n-- Logic --\n\nplatform_store_owner_store_plan AS (\nSELECT \n event.owner_plan_event_id,\n event.owner_plan_id,\n event.owner_id AS app_key,\n store.organization_key,\n store.store_created_date,\n event.updated_at AS from_time,\n TIMESTAMP(NVL(event.lead_updated_at,'2999-12-31')) AS to_time,\n event.plan_id,\n event.plan_name,\n store.store_created_date,\n event.product_family,\n event.is_core_plan,\n event.is_self_service,\n event.is_free,\n event.is_deleted\nFROM import_platform_owner_plan_event AS event\nINNER JOIN import_platform_store AS store \n ON event.owner_id= store.app_key\nWHERE event.is_store_owner = 1\n),\n\nplatform_organization_owner_store_plan AS (\nSELECT \n event.owner_plan_event_id,\n event.owner_plan_id,\n store.app_key AS app_key,\n event.owner_id AS organization_key,\n store.store_created_date,\n event.updated_at AS from_time,\n NVL(event.lead_updated_at,TIMESTAMP('2999-12-31')) AS to_time,\n event.plan_id,\n event.plan_name,\n event.product_family,\n event.is_core_plan,\n event.is_self_service,\n event.is_free,\n event.is_deleted\nFROM import_platform_owner_plan_event AS event\nINNER JOIN import_platform_store AS store \n ON event.owner_id = store.organization_key\nWHERE event.is_organization_owner = 1\n),\n\nunion_store_orgs AS (\nSELECT \n owner_plan_event_id,\n owner_plan_id,\n app_key,\n organization_key,\n store_created_date,\n product_family,\n plan_id,\n plan_name,\n from_time,\n to_time,\n is_core_plan,\n is_self_service,\n is_free,\n is_deleted,\n 2 AS store_plan_source_rank,\n 'platform store' AS store_plan_source\nFROM platform_store_owner_store_plan\nUNION ALL \nSELECT \n owner_plan_event_id,\n owner_plan_id,\n app_key,\n organization_key,\n store_created_date,\n product_family,\n plan_id,\n plan_name,\n from_time,\n to_time,\n is_core_plan,\n is_self_service,\n is_free,\n is_deleted,\n 1 AS store_plan_source_rank,\n 'platform organization' AS store_plan_source\nFROM platform_organization_owner_store_plan\n),\n\nplatform_store_plan_over_time_res AS (\nSELECT \n owner_plan_event_id,\n owner_plan_id,\n app_key,\n organization_key,\n store_created_date,\n product_family,\n INT(plan_id) AS plan_id,\n plan_name,\n from_time,\n to_time,\n is_core_plan,\n is_self_service,\n is_free,\n store_plan_source_rank,\n store_plan_source,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM union_store_orgs\nWHERE is_deleted = 0\n)\n\nSELECT * \nFROM platform_store_plan_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__product_metrics_snapshot_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__product_metrics_snapshot_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.sql", "unique_id": "model.yoda.analytics___platform__product_metrics_snapshot_monthly", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__product_metrics_snapshot_monthly", "analytics___platform__product_metrics_snapshot_monthly"], "alias": "analytics___platform__product_metrics_snapshot_monthly", "checksum": {"name": "sha256", "checksum": "03887d10e32f7a1396651bbe7bc96ee15e7f0634001eb50ca1b2ad568088e0e8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "A modeled view that unions all monthly level product metrics from both granularities: organization, store | PK & Granularity: External_ID_c", "columns": {"Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "External_ID__c": {"name": "External_ID__c", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Organization_Key__c": {"name": "Organization_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "App_Key__c": {"name": "App_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Metrics_Name__c": {"name": "Product_Metrics_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Lines__c": {"name": "Product_Lines__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Enabled__c": {"name": "Enabled__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Metric_Value__c": {"name": "Metric_Value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Quantity__c": {"name": "Quantity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "From_Date__c": {"name": "From_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "To_Date__c": {"name": "To_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "Self_Service__c": {"name": "Self_Service__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "Free__c": {"name": "Free__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082645.7357845, "relation_name": "dev_dkruh1.analytics___platform__product_metrics_snapshot_monthly", "raw_code": "{{ config( materialized = 'view' ) }}\n\n-- Import --\n\nWITH import_store_product_metrics_monthly AS (\n\n SELECT * FROM {{ ref('analytics___platform__store_product_metrics_monthly_unpivot') }}\n\n), import_organization_product_metrics_monthly AS (\n\n SELECT * FROM {{ ref('analytics___platform__organization_product_metrics_monthly_unpivot') }}\n\n-- Logic --\n\n), monthly_product_metric AS (\n\n SELECT\n Name,\n External_ID__c,\n Organization_Key__c,\n App_Key__c,\n Product_Metrics_Name__c,\n Product_Lines__c,\n Enabled__c,\n Metric_Value__c,\n Quantity__c,\n From_Date__c,\n To_Date__c,\n Self_Service__c,\n Free__c\n FROM import_store_product_metrics_monthly\n\n UNION ALL\n\n SELECT\n Name,\n External_ID__c,\n Organization_Key__c,\n App_Key__c,\n Product_Metrics_Name__c,\n Product_Lines__c,\n Enabled__c,\n Metric_Value__c,\n Quantity__c,\n From_Date__c,\n To_Date__c,\n Self_Service__c,\n Free__c\n FROM import_organization_product_metrics_monthly\n\n)\n\n-- Result --\n\nSELECT * FROM monthly_product_metric", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_monthly_unpivot", "package": null, "version": null}, {"name": "analytics___platform__organization_product_metrics_monthly_unpivot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_monthly_unpivot", "model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_store_product_metrics_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store_product_metrics_monthly_unpivot\n\n), import_organization_product_metrics_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__organization_product_metrics_monthly_unpivot\n\n-- Logic --\n\n), monthly_product_metric AS (\n\n SELECT\n Name,\n External_ID__c,\n Organization_Key__c,\n App_Key__c,\n Product_Metrics_Name__c,\n Product_Lines__c,\n Enabled__c,\n Metric_Value__c,\n Quantity__c,\n From_Date__c,\n To_Date__c,\n Self_Service__c,\n Free__c\n FROM import_store_product_metrics_monthly\n\n UNION ALL\n\n SELECT\n Name,\n External_ID__c,\n Organization_Key__c,\n App_Key__c,\n Product_Metrics_Name__c,\n Product_Lines__c,\n Enabled__c,\n Metric_Value__c,\n Quantity__c,\n From_Date__c,\n To_Date__c,\n Self_Service__c,\n Free__c\n FROM import_organization_product_metrics_monthly\n\n)\n\n-- Result --\n\nSELECT * FROM monthly_product_metric", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__question_details": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__question_details", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.sql", "unique_id": "model.yoda.analytics___platform__question_details", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__question_details", "analytics___platform__question_details"], "alias": "analytics___platform__question_details", "checksum": {"name": "sha256", "checksum": "0345c6fa9aa58d927710c81825fc893958d08a758f6a52967981f94d83688803"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table for platform questions | PK & Granularity: question_id", "columns": {"question_id": {"name": "question_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "question_created_at": {"name": "question_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "question_updated_at": {"name": "question_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "question_content": {"name": "question_content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "end_user_id": {"name": "end_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_question_was_sent_to_past_customers": {"name": "is_question_was_sent_to_past_customers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_question_archived": {"name": "is_question_archived", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_created_at": {"name": "dwh_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082645.7780943, "relation_name": "dev_dkruh1.analytics___platform__question_details", "raw_code": "WITH import_question AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__question') }}\n\n), import_account AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__account') }}\n\n),\n\nplatform__question_details AS (\n\n SELECT \n question.question_id,\n DATE_FORMAT(question.created_at, \"yyyy-MM-dd HH:mm:ss\") AS question_created_at,\n DATE_FORMAT(question.updated_at, \"yyyy-MM-dd HH:mm:ss\") AS question_updated_at,\n question.account_id AS store_id,\n question.products_app_id AS product_id,\n REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(question.content,\"&\\;quot\\;\",\"\\\"\"),\"&\\;amp\\;\",\"&\"),\""\\;\",\"\\\"\"),\"&\\;\",\"&\"),\"'\\;\",\"'\"),\">\\;\",\">\"),\"<\\;\",\"<\") AS question_content,\n question.user_id AS end_user_id,\n question.is_allow_send AS is_question_was_sent_to_past_customers,\n question.is_archived AS is_question_archived,\n account.organization_id AS organization_id,\n CURRENT_TIMESTAMP AS dwh_created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_question AS question\n LEFT JOIN import_account AS account\n ON account.account_id = question.account_id\n\n)\n\nSELECT * \nFROM platform__question_details", "language": "sql", "refs": [{"name": "analytics___platform_stg__question", "package": null, "version": null}, {"name": "analytics___platform_stg__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__question", "model.yoda.analytics___platform_stg__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.sql", "compiled": true, "compiled_code": "WITH import_question AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__question\n\n), import_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__account\n\n),\n\nplatform__question_details AS (\n\n SELECT \n question.question_id,\n DATE_FORMAT(question.created_at, \"yyyy-MM-dd HH:mm:ss\") AS question_created_at,\n DATE_FORMAT(question.updated_at, \"yyyy-MM-dd HH:mm:ss\") AS question_updated_at,\n question.account_id AS store_id,\n question.products_app_id AS product_id,\n REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(question.content,\"&\\;quot\\;\",\"\\\"\"),\"&\\;amp\\;\",\"&\"),\""\\;\",\"\\\"\"),\"&\\;\",\"&\"),\"'\\;\",\"'\"),\">\\;\",\">\"),\"<\\;\",\"<\") AS question_content,\n question.user_id AS end_user_id,\n question.is_allow_send AS is_question_was_sent_to_past_customers,\n question.is_archived AS is_question_archived,\n account.organization_id AS organization_id,\n CURRENT_TIMESTAMP AS dwh_created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_question AS question\n LEFT JOIN import_account AS account\n ON account.account_id = question.account_id\n\n)\n\nSELECT * \nFROM platform__question_details", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.sql", "unique_id": "model.yoda.analytics___platform__store", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store", "analytics___platform__store"], "alias": "analytics___platform__store", "checksum": {"name": "sha256", "checksum": "5021e936cea26d3628297bd826b63e2a80bd959f372aec0a79bb9875e22ba3bf"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled staging table of all stores in Yotpo\nGranularity & PK: store_id", "columns": {"store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_name": {"name": "store_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_api_name": {"name": "store_api_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_test": {"name": "is_test", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active": {"name": "is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_supports_pull_orders": {"name": "is_supports_pull_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_supports_past_orders": {"name": "is_supports_past_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "store_created_at": {"name": "store_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_created_date": {"name": "store_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_valid_credentials": {"name": "is_valid_credentials", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "platform_name": {"name": "platform_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_description": {"name": "platform_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan_name": {"name": "platform_plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_language": {"name": "store_language", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_enablement_date": {"name": "sms_enablement_date", "description": "First date SMS was enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "loyalty_enablement_date": {"name": "loyalty_enablement_date", "description": "First date Loyalty was enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "reviews_enablement_date": {"name": "reviews_enablement_date", "description": "First date Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "store_category": {"name": "store_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082645.8243215, "relation_name": "dev_dkruh1.analytics___platform__store", "raw_code": "WITH import_account AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__account') }}\n\n), import_account_platform AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__account_platform') }}\n\n), import_platform_type AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__platform_type') }}\n\n), import_platform_category AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__category') }}\n\n), import_sms_store AS (\n\n SELECT * FROM {{ ref('analytics___sms__store') }} \n\n), import_platform_similar_store AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__similar_store') }} \n\n), import_loyalty_account AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__loyalty_account') }} \n\n), import_organization AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__organization') }}\n\n), import_store_feature AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__owner_feature') }}\n),\n\nstore_sms_enablement_date AS (\n\n SELECT\n app_key,\n MIN(created_date) AS sms_enablement_date\n FROM import_sms_store\n WHERE app_key IS NOT NULL \n GROUP BY 1 \n),\n\nstore_loyalty_enablement_date AS (\n\n SELECT\n app_key,\n MIN(DATE(created_at)) AS loyalty_enablement_date\n FROM import_loyalty_account\n WHERE app_key IS NOT NULL \n GROUP BY 1 \n),\n\nstore_reviews_enablement_date AS (\n\n SELECT \n owner_id AS store_id,\n DATE(MIN(created_at)) AS reviews_enablement_date\n FROM import_store_feature\n WHERE feature_id = 9\n AND is_store_owner = 1\n GROUP BY 1\n),\n\nplatform__store AS (\n\n SELECT \n account.account_id AS store_id,\n account.app_key,\n account.organization_id,\n org.organization_key,\n account.account_name AS store_name,\n platform.store_api_name,\n account.is_test,\n account.is_active,\n is_supports_pull_orders,\n is_supports_past_orders,\n account.account_created_at AS store_created_at,\n DATE(account.account_created_at) AS store_created_date,\n platform.is_valid_credentials,\n platform_type.platform_name,\n platform_type.platform_description,\n platform.platform_plan_name,\n account.store_language,\n similar_store.industry,\n sms_enablement.sms_enablement_date,\n loyalty_enablement.loyalty_enablement_date,\n reviews_enablement.reviews_enablement_date,\n category.store_category,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_account AS account\n LEFT JOIN import_account_platform AS platform\n ON platform.account_id = account.account_id\n LEFT JOIN import_platform_type AS platform_type\n ON platform_type.platform_id = platform.platform_type_id\n LEFT JOIN import_platform_category AS category\n ON category.category_id = account.category_id\n LEFT JOIN import_organization AS org\n ON org.organization_id = account.organization_id\n LEFT JOIN store_sms_enablement_date AS sms_enablement\n ON sms_enablement.app_key = account.app_key\n LEFT JOIN import_platform_similar_store AS similar_store\n ON similar_store.app_key = account.app_key\n LEFT JOIN store_loyalty_enablement_date AS loyalty_enablement\n ON loyalty_enablement.app_key = account.app_key \n LEFT JOIN store_reviews_enablement_date AS reviews_enablement\n ON reviews_enablement.store_id = account.account_id\n)\n\nSELECT *\nFROM platform__store", "language": "sql", "refs": [{"name": "analytics___platform_stg__account", "package": null, "version": null}, {"name": "analytics___platform_stg__account_platform", "package": null, "version": null}, {"name": "analytics___platform_stg__platform_type", "package": null, "version": null}, {"name": "analytics___platform_stg__category", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___platform_stg__similar_store", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_account", "package": null, "version": null}, {"name": "analytics___platform_stg__organization", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__account", "model.yoda.analytics___platform_stg__account_platform", "model.yoda.analytics___platform_stg__platform_type", "model.yoda.analytics___platform_stg__category", "model.yoda.analytics___sms__store", "model.yoda.analytics___platform_stg__similar_store", "model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.analytics___platform_stg__organization", "model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.sql", "compiled": true, "compiled_code": "WITH import_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__account\n\n), import_account_platform AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__account_platform\n\n), import_platform_type AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__platform_type\n\n), import_platform_category AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__category\n\n), import_sms_store AS (\n\n SELECT * FROM dev_dkruh1.analytics___sms__store \n\n), import_platform_similar_store AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__similar_store \n\n), import_loyalty_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__loyalty_account \n\n), import_organization AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__organization\n\n), import_store_feature AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__owner_feature\n),\n\nstore_sms_enablement_date AS (\n\n SELECT\n app_key,\n MIN(created_date) AS sms_enablement_date\n FROM import_sms_store\n WHERE app_key IS NOT NULL \n GROUP BY 1 \n),\n\nstore_loyalty_enablement_date AS (\n\n SELECT\n app_key,\n MIN(DATE(created_at)) AS loyalty_enablement_date\n FROM import_loyalty_account\n WHERE app_key IS NOT NULL \n GROUP BY 1 \n),\n\nstore_reviews_enablement_date AS (\n\n SELECT \n owner_id AS store_id,\n DATE(MIN(created_at)) AS reviews_enablement_date\n FROM import_store_feature\n WHERE feature_id = 9\n AND is_store_owner = 1\n GROUP BY 1\n),\n\nplatform__store AS (\n\n SELECT \n account.account_id AS store_id,\n account.app_key,\n account.organization_id,\n org.organization_key,\n account.account_name AS store_name,\n platform.store_api_name,\n account.is_test,\n account.is_active,\n is_supports_pull_orders,\n is_supports_past_orders,\n account.account_created_at AS store_created_at,\n DATE(account.account_created_at) AS store_created_date,\n platform.is_valid_credentials,\n platform_type.platform_name,\n platform_type.platform_description,\n platform.platform_plan_name,\n account.store_language,\n similar_store.industry,\n sms_enablement.sms_enablement_date,\n loyalty_enablement.loyalty_enablement_date,\n reviews_enablement.reviews_enablement_date,\n category.store_category,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_account AS account\n LEFT JOIN import_account_platform AS platform\n ON platform.account_id = account.account_id\n LEFT JOIN import_platform_type AS platform_type\n ON platform_type.platform_id = platform.platform_type_id\n LEFT JOIN import_platform_category AS category\n ON category.category_id = account.category_id\n LEFT JOIN import_organization AS org\n ON org.organization_id = account.organization_id\n LEFT JOIN store_sms_enablement_date AS sms_enablement\n ON sms_enablement.app_key = account.app_key\n LEFT JOIN import_platform_similar_store AS similar_store\n ON similar_store.app_key = account.app_key\n LEFT JOIN store_loyalty_enablement_date AS loyalty_enablement\n ON loyalty_enablement.app_key = account.app_key \n LEFT JOIN store_reviews_enablement_date AS reviews_enablement\n ON reviews_enablement.store_id = account.account_id\n)\n\nSELECT *\nFROM platform__store", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_activeness_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_activeness_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.sql", "unique_id": "model.yoda.analytics___platform__store_activeness_daily", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_activeness_daily", "analytics___platform__store_activeness_daily"], "alias": "analytics___platform__store_activeness_daily", "checksum": {"name": "sha256", "checksum": "0c256bd96c5fc08515f7058ffd7bfd51391ca12ec9bd8e8841e0d4dd810432dc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["activeness_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table of yotpo store activeness history on a daily level | PK and granularity: activeness_date, app_key", "columns": {"activeness_date": {"name": "activeness_date", "description": "store activeness date - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "store identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ugc_app_installed": {"name": "is_ugc_app_installed", "description": "ugc installed app indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_sms_app_installed": {"name": "is_sms_app_installed", "description": "sms installed app indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_subscriptions_app_installed": {"name": "is_subscriptions_app_installed", "description": "subscriptions installed app indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["activeness_date"]}, "created_at": 1700082645.876109, "relation_name": "dev_dkruh1.analytics___platform__store_activeness_daily", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by = ['activeness_date']\n )\n}}\n\n-- Import --\n\nWITH import_platform__store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_sms__store_activeness_daily AS (\nSELECT * FROM {{ ref('analytics___sms__store_activeness_daily') }}\n),\n\nimport_subscriptions__store_activeness_daily AS (\nSELECT * FROM {{ ref('analytics___subscriptions__store_activeness_daily') }}\n),\n\nimport_ugc_store_installation AS (\nSELECT * FROM {{ ref('analytics___ugc__store_installation_over_time') }}\n),\n\nimport_calendar AS (\nSELECT * \nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-4,1,1) AND DATE_SUB(CURRENT_DATE,1)\n{% if is_incremental() %}\nAND date > (SELECT MAX(activeness_date) FROM {{ this }})\n{% endif %}\n),\n\n-- Logic --\n\nstore_daily AS (\nSELECT\n calendar.date AS activeness_date,\n store.app_key,\n store.store_id,\n store.organization_id,\n store.organization_key\nFROM import_platform__store AS store\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= DATE(store.store_created_at)\nWHERE store.is_test = 0\n),\n\nstore_activeness_daily_res AS (\nSELECT\n store.activeness_date,\n store.app_key,\n store.store_id,\n store.organization_id,\n store.organization_key,\n NVL(IF(LOWER(ugc.installation_status) = 'installed',1,0),0) AS is_ugc_app_installed,\n NVL(sms.is_app_installed,0) AS is_sms_app_installed,\n NVL(subscriptions.is_app_installed,0) AS is_subscriptions_app_installed,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_daily AS store\nLEFT JOIN import_ugc_store_installation AS ugc\n ON store.activeness_date >= DATE(ugc.from_time)\n AND store.activeness_date < DATE(ugc.to_time)\n AND store.app_key = ugc.app_key\nLEFT JOIN import_sms__store_activeness_daily AS sms\n ON store.activeness_date = sms.activeness_date\n AND store.app_key = sms.app_key\nLEFT JOIN import_subscriptions__store_activeness_daily AS subscriptions\n ON store.activeness_date = subscriptions.activeness_date\n AND store.app_key = subscriptions.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM store_activeness_daily_res", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___sms__store_activeness_daily", "package": null, "version": null}, {"name": "analytics___subscriptions__store_activeness_daily", "package": null, "version": null}, {"name": "analytics___ugc__store_installation_over_time", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store", "model.yoda.analytics___sms__store_activeness_daily", "model.yoda.analytics___subscriptions__store_activeness_daily", "model.yoda.analytics___ugc__store_installation_over_time", "model.yoda.platform_stg__dim_calendar"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_platform__store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_sms__store_activeness_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store_activeness_daily\n),\n\nimport_subscriptions__store_activeness_daily AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions__store_activeness_daily\n),\n\nimport_ugc_store_installation AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_installation_over_time\n),\n\nimport_calendar AS (\nSELECT * \nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-4,1,1) AND DATE_SUB(CURRENT_DATE,1)\n\n),\n\n-- Logic --\n\nstore_daily AS (\nSELECT\n calendar.date AS activeness_date,\n store.app_key,\n store.store_id,\n store.organization_id,\n store.organization_key\nFROM import_platform__store AS store\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= DATE(store.store_created_at)\nWHERE store.is_test = 0\n),\n\nstore_activeness_daily_res AS (\nSELECT\n store.activeness_date,\n store.app_key,\n store.store_id,\n store.organization_id,\n store.organization_key,\n NVL(IF(LOWER(ugc.installation_status) = 'installed',1,0),0) AS is_ugc_app_installed,\n NVL(sms.is_app_installed,0) AS is_sms_app_installed,\n NVL(subscriptions.is_app_installed,0) AS is_subscriptions_app_installed,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_daily AS store\nLEFT JOIN import_ugc_store_installation AS ugc\n ON store.activeness_date >= DATE(ugc.from_time)\n AND store.activeness_date < DATE(ugc.to_time)\n AND store.app_key = ugc.app_key\nLEFT JOIN import_sms__store_activeness_daily AS sms\n ON store.activeness_date = sms.activeness_date\n AND store.app_key = sms.app_key\nLEFT JOIN import_subscriptions__store_activeness_daily AS subscriptions\n ON store.activeness_date = subscriptions.activeness_date\n AND store.app_key = subscriptions.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM store_activeness_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_dynamic_date_explode_from_creation", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.sql", "unique_id": "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_dynamic_date_explode_from_creation", "analytics___platform__store_dynamic_date_explode_from_creation"], "alias": "analytics___platform__store_dynamic_date_explode_from_creation", "checksum": {"name": "sha256", "checksum": "a44ca7e449786952aa58a5139cf63b81e763271f040b314754d7672e4a278381"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table which holds store date explode from the first store creation date - 2012-01-26\nPK & Granularity: app_key, date", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "platform"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082645.9156454, "relation_name": "dev_dkruh1.analytics___platform__store_dynamic_date_explode_from_creation", "raw_code": "{{ \n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=['date']\n )\n}}\n\n-- Import --\n\nWITH import_dim_calendar AS (\n\n SELECT * FROM {{ ref('platform_stg__dim_calendar') }}\n {% if is_incremental() %}\n WHERE date > (SELECT MAX(date) FROM {{ this }})\n {% endif %}\n {% if target.name == 'dev' %}\n WHERE date >= DATE_SUB(CURRENT_DATE, 3)\n {% endif %}\n\n), import_platform_store AS (\n\n SELECT * FROM {{ ref('analytics___platform__store') }}\n\n),\n\n-- Logic --\n\ncalendar_dates AS (\n\n SELECT \n date\n FROM import_dim_calendar\n WHERE date BETWEEN '2012-01-26' AND DATE_SUB(DATE(current_date),1)\n\n),\n\nstore_dynamic_date_explode_from_creation_res AS (\n\n SELECT \n calendar.date AS date,\n TRUNC(calendar.date, 'MONTH') AS month,\n store.app_key,\n store.organization_key\n FROM calendar_dates AS calendar\n INNER JOIN import_platform_store AS store\n ON store.store_created_date <= calendar.date\n \n)\n\n-- Result --\n\nSELECT * \nFROM store_dynamic_date_explode_from_creation_res", "language": "sql", "refs": [{"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_dim_calendar AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__dim_calendar\n \n \n WHERE date >= DATE_SUB(CURRENT_DATE, 3)\n \n\n), import_platform_store AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store\n\n),\n\n-- Logic --\n\ncalendar_dates AS (\n\n SELECT \n date\n FROM import_dim_calendar\n WHERE date BETWEEN '2012-01-26' AND DATE_SUB(DATE(current_date),1)\n\n),\n\nstore_dynamic_date_explode_from_creation_res AS (\n\n SELECT \n calendar.date AS date,\n TRUNC(calendar.date, 'MONTH') AS month,\n store.app_key,\n store.organization_key\n FROM calendar_dates AS calendar\n INNER JOIN import_platform_store AS store\n ON store.store_created_date <= calendar.date\n \n)\n\n-- Result --\n\nSELECT * \nFROM store_dynamic_date_explode_from_creation_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_metrics_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_metrics_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.sql", "unique_id": "model.yoda.analytics___platform__store_metrics_daily", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_metrics_daily", "analytics___platform__store_metrics_daily"], "alias": "analytics___platform__store_metrics_daily", "checksum": {"name": "sha256", "checksum": "f7baa73b09b171e936845dfa457412cbb54d8a6d615e2c50908f070131b0c40b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["date", "app_key"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table which holds incrementally store indications + orders metrics daily. Increment running data of last 30d\nPK & Granularity: app_key & date", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_organization_id": {"name": "parent_organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "parent_organization_key": {"name": "parent_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_created_at": {"name": "store_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "loyalty_enablement_date": {"name": "loyalty_enablement_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_enablement_date": {"name": "sms_enablement_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "reviews_enablement_date": {"name": "reviews_enablement_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "orders_cnt": {"name": "orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "fulfilled_orders_cnt": {"name": "fulfilled_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_amount_in_usd_sum": {"name": "orders_amount_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fulfilled_orders_amount_in_usd_sum": {"name": "fulfilled_orders_amount_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_in_usd_aov": {"name": "orders_in_usd_aov", "description": "The Average Order Value of a store in that date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fulfilled_orders_in_usd_aov": {"name": "fulfilled_orders_in_usd_aov", "description": "The Average fulfilled Order Value of a store in that date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["date", "app_key"], "incremental_strategy": "merge", "partition_by": ["date"]}, "created_at": 1700082645.9601903, "relation_name": "dev_dkruh1.analytics___platform__store_metrics_daily", "raw_code": "{{ \n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key = ['date','app_key'],\n incremental_strategy = 'merge',\n partition_by=['date']\n )\n}}\n\n-- import --\n\nWITH import_organization AS (\n\n SELECT * FROM {{ ref('analytics___platform__organization') }}\n\n), import_dim_calendar AS (\n\n SELECT * FROM {{ ref('platform_stg__dim_calendar') }}\n \n), import_sf_accounts AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__account') }}\n \n), import_platform_store AS (\n\n SELECT * FROM {{ ref('analytics___platform__store') }}\n\n), import_store_orders_daily AS (\n\n SELECT * FROM {{ ref('analytics___platform__store_order_daily') }}\n\n), import_zuora_account AS (\n\n SELECT * FROM {{ ref('analytics___finance__zuora_account') }}\n\n), \n\n-- Logic --\n\nparent_organizations AS (\n\n SELECT\n DISTINCT child_orgs.organization_key,\n child_orgs.organization_id,\n child_orgs.organization_name,\n parent_orgs.organization_key AS parent_organization_key,\n parent_orgs.organization_id AS parent_organization_id,\n parent_orgs.organization_name AS parent_organization_name\n FROM import_zuora_account AS zuora\n INNER JOIN import_organization AS child_orgs \n ON zuora.organization_key = child_orgs.organization_key\n INNER JOIN import_organization AS parent_orgs \n ON zuora.parent_organization_key = parent_orgs.organization_key \n WHERE is_test_account = 0\n AND NULLIF(zuora.parent_organization_key,'') IS NOT NULL\n\n),\n\ncalendar_dates AS (\n\n SELECT \n date\n FROM import_dim_calendar\n WHERE date BETWEEN MAKE_DATE(YEAR(current_date)-4,1,1) AND DATE_SUB(DATE(current_date),1)\n\n {% if is_incremental() %}\n\n AND DATEDIFF(CURRENT_DATE(), date) <= 30\n\n {% endif %} \n),\n\nfirst_order_day_per_store AS (\n\n SELECT \n app_key,\n MIN(order_date) AS first_order_date\n FROM import_store_orders_daily\n GROUP BY 1\n\n),\n\nstart_date_by_store AS (\n\n SELECT\n stores.app_key,\n LEAST(stores.store_created_date,first_order.first_order_date) AS start_date,\n first_order.first_order_date\n FROM import_platform_store AS stores\n LEFT JOIN first_order_day_per_store AS first_order\n ON stores.app_key = first_order.app_key\n\n),\n\nplatform__store_metrics_daily AS (\n\n SELECT \n calendar.date,\n stores.app_key,\n stores.platform_name, \n parent_org.parent_organization_id,\n parent_org.parent_organization_key,\n stores.organization_id,\n org.organization_key,\n accounts.account_id,\n stores.industry,\n stores.store_created_at,\n stores.loyalty_enablement_date,\n stores.sms_enablement_date,\n stores.reviews_enablement_date,\n CASE WHEN calendar.date < store_start.first_order_date THEN orders.orders_cnt ELSE COALESCE(orders.orders_cnt,0) END AS orders_cnt,\n CASE WHEN calendar.date < store_start.first_order_date THEN orders.fulfilled_orders_cnt ELSE COALESCE(orders.fulfilled_orders_cnt,0) END AS fulfilled_orders_cnt,\n orders.orders_amount_in_usd_sum,\n orders.fulfilled_orders_amount_in_usd_sum,\n orders.orders_in_usd_aov,\n orders.fulfilled_orders_in_usd_aov,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM calendar_dates AS calendar\n INNER JOIN start_date_by_store AS store_start\n ON store_start.start_date <= calendar.date\n INNER JOIN import_platform_store AS stores\n ON store_start.app_key = stores.app_key\n LEFT JOIN import_store_orders_daily AS orders \n ON store_start.app_key = orders.app_key\n AND calendar.date = orders.order_date\n LEFT JOIN import_organization AS org\n ON stores.organization_id = org.organization_id\n LEFT JOIN parent_organizations AS parent_org\n ON stores.organization_id = parent_org.organization_id \n LEFT JOIN import_sf_accounts AS accounts \n ON stores.organization_key = accounts.organization_key\n AND accounts.is_deleted_account = 0\n\n)\n\n-- Result --\n\nSELECT * \nFROM platform__store_metrics_daily", "language": "sql", "refs": [{"name": "analytics___platform__organization", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__store_order_daily", "package": null, "version": null}, {"name": "analytics___finance__zuora_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__organization", "model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___finance__zuora_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.sql", "compiled": true, "compiled_code": "\n\n-- import --\n\nWITH import_organization AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__organization\n\n), import_dim_calendar AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__dim_calendar\n \n), import_sf_accounts AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__account\n \n), import_platform_store AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store\n\n), import_store_orders_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store_order_daily\n\n), import_zuora_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___finance__zuora_account\n\n), \n\n-- Logic --\n\nparent_organizations AS (\n\n SELECT\n DISTINCT child_orgs.organization_key,\n child_orgs.organization_id,\n child_orgs.organization_name,\n parent_orgs.organization_key AS parent_organization_key,\n parent_orgs.organization_id AS parent_organization_id,\n parent_orgs.organization_name AS parent_organization_name\n FROM import_zuora_account AS zuora\n INNER JOIN import_organization AS child_orgs \n ON zuora.organization_key = child_orgs.organization_key\n INNER JOIN import_organization AS parent_orgs \n ON zuora.parent_organization_key = parent_orgs.organization_key \n WHERE is_test_account = 0\n AND NULLIF(zuora.parent_organization_key,'') IS NOT NULL\n\n),\n\ncalendar_dates AS (\n\n SELECT \n date\n FROM import_dim_calendar\n WHERE date BETWEEN MAKE_DATE(YEAR(current_date)-4,1,1) AND DATE_SUB(DATE(current_date),1)\n\n \n),\n\nfirst_order_day_per_store AS (\n\n SELECT \n app_key,\n MIN(order_date) AS first_order_date\n FROM import_store_orders_daily\n GROUP BY 1\n\n),\n\nstart_date_by_store AS (\n\n SELECT\n stores.app_key,\n LEAST(stores.store_created_date,first_order.first_order_date) AS start_date,\n first_order.first_order_date\n FROM import_platform_store AS stores\n LEFT JOIN first_order_day_per_store AS first_order\n ON stores.app_key = first_order.app_key\n\n),\n\nplatform__store_metrics_daily AS (\n\n SELECT \n calendar.date,\n stores.app_key,\n stores.platform_name, \n parent_org.parent_organization_id,\n parent_org.parent_organization_key,\n stores.organization_id,\n org.organization_key,\n accounts.account_id,\n stores.industry,\n stores.store_created_at,\n stores.loyalty_enablement_date,\n stores.sms_enablement_date,\n stores.reviews_enablement_date,\n CASE WHEN calendar.date < store_start.first_order_date THEN orders.orders_cnt ELSE COALESCE(orders.orders_cnt,0) END AS orders_cnt,\n CASE WHEN calendar.date < store_start.first_order_date THEN orders.fulfilled_orders_cnt ELSE COALESCE(orders.fulfilled_orders_cnt,0) END AS fulfilled_orders_cnt,\n orders.orders_amount_in_usd_sum,\n orders.fulfilled_orders_amount_in_usd_sum,\n orders.orders_in_usd_aov,\n orders.fulfilled_orders_in_usd_aov,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM calendar_dates AS calendar\n INNER JOIN start_date_by_store AS store_start\n ON store_start.start_date <= calendar.date\n INNER JOIN import_platform_store AS stores\n ON store_start.app_key = stores.app_key\n LEFT JOIN import_store_orders_daily AS orders \n ON store_start.app_key = orders.app_key\n AND calendar.date = orders.order_date\n LEFT JOIN import_organization AS org\n ON stores.organization_id = org.organization_id\n LEFT JOIN parent_organizations AS parent_org\n ON stores.organization_id = parent_org.organization_id \n LEFT JOIN import_sf_accounts AS accounts \n ON stores.organization_key = accounts.organization_key\n AND accounts.is_deleted_account = 0\n\n)\n\n-- Result --\n\nSELECT * \nFROM platform__store_metrics_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.sql", "unique_id": "model.yoda.analytics___platform__store_metrics_monthly", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_metrics_monthly", "analytics___platform__store_metrics_monthly"], "alias": "analytics___platform__store_metrics_monthly", "checksum": {"name": "sha256", "checksum": "484d95dbf3e3e6df5d9881a59ecbd95b02131fcf0c78b9a15c8af2a83bce9048"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table which holds store indications + orders metrics montly \nPK & Granularity: app_key & date", "columns": {"store_monthly_id": {"name": "store_monthly_id", "description": "month_app_key unique key (for sf use)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_organization_id": {"name": "parent_organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "parent_organization_key": {"name": "parent_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_created_at": {"name": "store_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "reviews_enablement_date": {"name": "reviews_enablement_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "loyalty_enablement_date": {"name": "loyalty_enablement_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_enablement_date": {"name": "sms_enablement_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "orders_cnt": {"name": "orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "fulfilled_orders_cnt": {"name": "fulfilled_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_amount_in_usd_sum": {"name": "orders_amount_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fulfilled_orders_amount_in_usd_sum": {"name": "fulfilled_orders_amount_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_aov": {"name": "orders_aov", "description": "The Average Order Value of a store in that date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fulfilled_orders_aov": {"name": "fulfilled_orders_aov", "description": "The Average fulfilled Order Value of a store in that month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_month_orders_cnt": {"name": "last_month_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "2m_ago_orders_cnt": {"name": "2m_ago_orders_cnt", "description": "Store orders count in month 2m go", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "3m_ago_orders_cnt": {"name": "3m_ago_orders_cnt", "description": "Store orders count in month 3m go", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "12m_ago_orders_cnt": {"name": "12m_ago_orders_cnt", "description": "Store orders count in month 12m go", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_3m_orders_cnt_avg": {"name": "last_3m_orders_cnt_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_fulfilled_orders_cnt_avg": {"name": "last_3m_fulfilled_orders_cnt_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_orders_amount_in_usd_avg": {"name": "last_3m_orders_amount_in_usd_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_12m_orders_cnt_avg": {"name": "last_12m_orders_cnt_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "quarter_orders_cnt": {"name": "quarter_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_quarter_orders_cnt": {"name": "last_quarter_orders_cnt", "description": "Store cnt of all orders in the last quarter", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "2_quarters_ago_orders_cnt": {"name": "2_quarters_ago_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_12m_orders_cnt": {"name": "last_12m_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_13m_to_24m_orders_cnt": {"name": "last_13m_to_24m_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_12m_orders_growth": {"name": "last_12m_orders_growth", "description": "Shows the change YoY", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "Orders bucket of the last 3m avg", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_12m_orders_avg_bucket": {"name": "last_12m_orders_avg_bucket", "description": "Orders bucket of the last 12m avg. The Avarage was calc according to the exsisting months (min 3)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_tenure_year_count": {"name": "yotpo_tenure_year_count", "description": "years at yotpo", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082646.0261722, "relation_name": "dev_dkruh1.analytics___platform__store_metrics_monthly", "raw_code": "-- import --\n\nWITH import_store_metrics_daily AS (\n\n SELECT * FROM {{ ref('analytics___platform__store_metrics_daily') }}\n\n), \n\n-- Logic --\n\nstore_metrics_daily_base AS (\n\n SELECT\n TRUNC(date,'MONTH') AS month,\n app_key,\n FIRST_VALUE(platform_name,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS platform_name,\n FIRST_VALUE(parent_organization_id,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS parent_organization_id,\n FIRST_VALUE(parent_organization_key,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS parent_organization_key,\n FIRST_VALUE(organization_id,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS organization_id,\n FIRST_VALUE(organization_key,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS organization_key,\n FIRST_VALUE(account_id,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS account_id,\n FIRST_VALUE(industry,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS industry,\n store_created_at,\n reviews_enablement_date,\n loyalty_enablement_date,\n sms_enablement_date,\n orders_cnt,\n fulfilled_orders_cnt,\n orders_amount_in_usd_sum,\n fulfilled_orders_amount_in_usd_sum,\n dwh_updated_at\n FROM import_store_metrics_daily \n\n),\n\nstore_metrics_monthly_agg AS (\n\n SELECT\n month,\n app_key,\n platform_name,\n parent_organization_id,\n parent_organization_key,\n organization_id,\n organization_key,\n account_id,\n industry,\n MAX(store_created_at) AS store_created_at,\n MAX(reviews_enablement_date) AS reviews_enablement_date,\n MAX(loyalty_enablement_date) AS loyalty_enablement_date,\n MAX(sms_enablement_date) AS sms_enablement_date,\n SUM(orders_cnt) AS orders_cnt,\n SUM(fulfilled_orders_cnt) AS fulfilled_orders_cnt,\n ROUND(SUM(orders_amount_in_usd_sum), 1) AS orders_amount_in_usd_sum,\n ROUND(SUM(fulfilled_orders_amount_in_usd_sum), 1) AS fulfilled_orders_amount_in_usd_sum,\n ROUND(SUM(orders_amount_in_usd_sum)/SUM(orders_cnt), 1) AS orders_aov,\n ROUND(SUM(orders_amount_in_usd_sum)/SUM(fulfilled_orders_cnt), 1) AS fulfilled_orders_aov\n FROM store_metrics_daily_base \n GROUP BY 1,2,3,4,5,6,7,8,9\n\n),\n\nstore_metrics_monthly_base AS (\n\n SELECT \n SHA2(CONCAT(month,app_key),256) AS store_monthly_id,\n month,\n app_key,\n platform_name,\n parent_organization_id,\n parent_organization_key,\n organization_id,\n organization_key,\n account_id,\n industry,\n store_created_at,\n reviews_enablement_date,\n loyalty_enablement_date,\n sms_enablement_date,\n orders_cnt,\n fulfilled_orders_cnt,\n orders_amount_in_usd_sum,\n fulfilled_orders_amount_in_usd_sum,\n orders_aov,\n fulfilled_orders_aov,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS last_month_orders_cnt,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 2 PRECEDING AND 2 PRECEDING) AS 2m_ago_orders_cnt,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 3 PRECEDING) AS 3m_ago_orders_cnt,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 12 PRECEDING AND 12 PRECEDING) AS 12m_ago_orders_cnt,\n ROUND(SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) / COUNT(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING), 0) AS last_3m_orders_cnt_avg,\n ROUND(SUM(fulfilled_orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) / COUNT(fulfilled_orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING), 0) AS last_3m_fulfilled_orders_cnt_avg,\n ROUND(SUM(orders_amount_in_usd_sum) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) / COUNT(orders_amount_in_usd_sum) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING), 0) AS last_3m_orders_amount_in_usd_avg,\n ROUND(SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING)/IF(COUNT(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING)>2,COUNT(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING),NULL), 0) AS last_12m_orders_cnt_avg,\n SUM(orders_cnt) OVER (PARTITION BY app_key, YEAR(month), QUARTER(month)) AS quarter_orders_cnt,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING) AS last_12m_orders_cnt,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 24 PRECEDING AND 13 PRECEDING) AS last_13m_to_24m_orders_cnt,\n IF(TRUNC(store_created_at,'MONTH') <= month,\n DATEDIFF(YEAR,TRUNC(store_created_at,'MONTH'), month),\n 0) AS yotpo_tenure_year_count,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM store_metrics_monthly_agg \n\n),\n\nplatform__store_metrics_monthly AS (\n\n SELECT \n store_monthly_id,\n month,\n app_key,\n platform_name,\n parent_organization_id,\n parent_organization_key,\n organization_id,\n organization_key,\n account_id,\n industry,\n store_created_at,\n reviews_enablement_date,\n loyalty_enablement_date,\n sms_enablement_date,\n orders_cnt,\n fulfilled_orders_cnt,\n orders_amount_in_usd_sum,\n fulfilled_orders_amount_in_usd_sum,\n orders_aov,\n fulfilled_orders_aov,\n last_month_orders_cnt,\n 2m_ago_orders_cnt,\n 3m_ago_orders_cnt,\n 12m_ago_orders_cnt,\n last_3m_orders_cnt_avg,\n last_3m_fulfilled_orders_cnt_avg,\n last_3m_orders_amount_in_usd_avg,\n last_12m_orders_cnt_avg, \n quarter_orders_cnt,\n SUM(COALESCE(quarter_orders_cnt, 0)) OVER (PARTITION BY app_key ROWS BETWEEN 3 PRECEDING AND 3 PRECEDING) AS last_quarter_orders_cnt,\n SUM(COALESCE(quarter_orders_cnt, 0)) OVER (PARTITION BY app_key ROWS BETWEEN 6 PRECEDING AND 6 PRECEDING) AS 2_quarters_ago_orders_cnt,\n last_12m_orders_cnt,\n last_13m_to_24m_orders_cnt,\n ROUND((last_12m_orders_cnt / last_13m_to_24m_orders_cnt)-1, 0) AS last_12m_orders_growth,\n CASE WHEN last_3m_orders_cnt_avg BETWEEN 0 AND 999 THEN '0-1K'\n WHEN last_3m_orders_cnt_avg BETWEEN 1000 AND 2999 THEN '1K-3K'\n WHEN last_3m_orders_cnt_avg BETWEEN 3000 AND 9999 THEN '3K-10K'\n WHEN last_3m_orders_cnt_avg >= 10000 THEN '10K+'\n END AS last_3m_orders_avg_bucket,\n CASE WHEN last_12m_orders_cnt_avg BETWEEN 0 AND 999 THEN '0-1K'\n WHEN last_12m_orders_cnt_avg BETWEEN 1000 AND 2999 THEN '1K-3K'\n WHEN last_12m_orders_cnt_avg BETWEEN 3000 AND 9999 THEN '3K-10K'\n WHEN last_12m_orders_cnt_avg >= 10000 THEN '10K+'\n END AS last_12m_orders_avg_bucket,\n yotpo_tenure_year_count,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM store_metrics_monthly_base \n\n)\n\n-- Result --\n\nSELECT * \nFROM platform__store_metrics_monthly", "language": "sql", "refs": [{"name": "analytics___platform__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.sql", "compiled": true, "compiled_code": "-- import --\n\nWITH import_store_metrics_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store_metrics_daily\n\n), \n\n-- Logic --\n\nstore_metrics_daily_base AS (\n\n SELECT\n TRUNC(date,'MONTH') AS month,\n app_key,\n FIRST_VALUE(platform_name,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS platform_name,\n FIRST_VALUE(parent_organization_id,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS parent_organization_id,\n FIRST_VALUE(parent_organization_key,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS parent_organization_key,\n FIRST_VALUE(organization_id,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS organization_id,\n FIRST_VALUE(organization_key,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS organization_key,\n FIRST_VALUE(account_id,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS account_id,\n FIRST_VALUE(industry,TRUE) OVER (PARTITION BY app_key ORDER BY dwh_updated_at DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS industry,\n store_created_at,\n reviews_enablement_date,\n loyalty_enablement_date,\n sms_enablement_date,\n orders_cnt,\n fulfilled_orders_cnt,\n orders_amount_in_usd_sum,\n fulfilled_orders_amount_in_usd_sum,\n dwh_updated_at\n FROM import_store_metrics_daily \n\n),\n\nstore_metrics_monthly_agg AS (\n\n SELECT\n month,\n app_key,\n platform_name,\n parent_organization_id,\n parent_organization_key,\n organization_id,\n organization_key,\n account_id,\n industry,\n MAX(store_created_at) AS store_created_at,\n MAX(reviews_enablement_date) AS reviews_enablement_date,\n MAX(loyalty_enablement_date) AS loyalty_enablement_date,\n MAX(sms_enablement_date) AS sms_enablement_date,\n SUM(orders_cnt) AS orders_cnt,\n SUM(fulfilled_orders_cnt) AS fulfilled_orders_cnt,\n ROUND(SUM(orders_amount_in_usd_sum), 1) AS orders_amount_in_usd_sum,\n ROUND(SUM(fulfilled_orders_amount_in_usd_sum), 1) AS fulfilled_orders_amount_in_usd_sum,\n ROUND(SUM(orders_amount_in_usd_sum)/SUM(orders_cnt), 1) AS orders_aov,\n ROUND(SUM(orders_amount_in_usd_sum)/SUM(fulfilled_orders_cnt), 1) AS fulfilled_orders_aov\n FROM store_metrics_daily_base \n GROUP BY 1,2,3,4,5,6,7,8,9\n\n),\n\nstore_metrics_monthly_base AS (\n\n SELECT \n SHA2(CONCAT(month,app_key),256) AS store_monthly_id,\n month,\n app_key,\n platform_name,\n parent_organization_id,\n parent_organization_key,\n organization_id,\n organization_key,\n account_id,\n industry,\n store_created_at,\n reviews_enablement_date,\n loyalty_enablement_date,\n sms_enablement_date,\n orders_cnt,\n fulfilled_orders_cnt,\n orders_amount_in_usd_sum,\n fulfilled_orders_amount_in_usd_sum,\n orders_aov,\n fulfilled_orders_aov,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS last_month_orders_cnt,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 2 PRECEDING AND 2 PRECEDING) AS 2m_ago_orders_cnt,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 3 PRECEDING) AS 3m_ago_orders_cnt,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 12 PRECEDING AND 12 PRECEDING) AS 12m_ago_orders_cnt,\n ROUND(SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) / COUNT(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING), 0) AS last_3m_orders_cnt_avg,\n ROUND(SUM(fulfilled_orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) / COUNT(fulfilled_orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING), 0) AS last_3m_fulfilled_orders_cnt_avg,\n ROUND(SUM(orders_amount_in_usd_sum) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) / COUNT(orders_amount_in_usd_sum) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING), 0) AS last_3m_orders_amount_in_usd_avg,\n ROUND(SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING)/IF(COUNT(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING)>2,COUNT(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING),NULL), 0) AS last_12m_orders_cnt_avg,\n SUM(orders_cnt) OVER (PARTITION BY app_key, YEAR(month), QUARTER(month)) AS quarter_orders_cnt,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 12 PRECEDING AND 1 PRECEDING) AS last_12m_orders_cnt,\n SUM(orders_cnt) OVER (PARTITION BY app_key ORDER BY month ROWS BETWEEN 24 PRECEDING AND 13 PRECEDING) AS last_13m_to_24m_orders_cnt,\n IF(TRUNC(store_created_at,'MONTH') <= month,\n DATEDIFF(YEAR,TRUNC(store_created_at,'MONTH'), month),\n 0) AS yotpo_tenure_year_count,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM store_metrics_monthly_agg \n\n),\n\nplatform__store_metrics_monthly AS (\n\n SELECT \n store_monthly_id,\n month,\n app_key,\n platform_name,\n parent_organization_id,\n parent_organization_key,\n organization_id,\n organization_key,\n account_id,\n industry,\n store_created_at,\n reviews_enablement_date,\n loyalty_enablement_date,\n sms_enablement_date,\n orders_cnt,\n fulfilled_orders_cnt,\n orders_amount_in_usd_sum,\n fulfilled_orders_amount_in_usd_sum,\n orders_aov,\n fulfilled_orders_aov,\n last_month_orders_cnt,\n 2m_ago_orders_cnt,\n 3m_ago_orders_cnt,\n 12m_ago_orders_cnt,\n last_3m_orders_cnt_avg,\n last_3m_fulfilled_orders_cnt_avg,\n last_3m_orders_amount_in_usd_avg,\n last_12m_orders_cnt_avg, \n quarter_orders_cnt,\n SUM(COALESCE(quarter_orders_cnt, 0)) OVER (PARTITION BY app_key ROWS BETWEEN 3 PRECEDING AND 3 PRECEDING) AS last_quarter_orders_cnt,\n SUM(COALESCE(quarter_orders_cnt, 0)) OVER (PARTITION BY app_key ROWS BETWEEN 6 PRECEDING AND 6 PRECEDING) AS 2_quarters_ago_orders_cnt,\n last_12m_orders_cnt,\n last_13m_to_24m_orders_cnt,\n ROUND((last_12m_orders_cnt / last_13m_to_24m_orders_cnt)-1, 0) AS last_12m_orders_growth,\n CASE WHEN last_3m_orders_cnt_avg BETWEEN 0 AND 999 THEN '0-1K'\n WHEN last_3m_orders_cnt_avg BETWEEN 1000 AND 2999 THEN '1K-3K'\n WHEN last_3m_orders_cnt_avg BETWEEN 3000 AND 9999 THEN '3K-10K'\n WHEN last_3m_orders_cnt_avg >= 10000 THEN '10K+'\n END AS last_3m_orders_avg_bucket,\n CASE WHEN last_12m_orders_cnt_avg BETWEEN 0 AND 999 THEN '0-1K'\n WHEN last_12m_orders_cnt_avg BETWEEN 1000 AND 2999 THEN '1K-3K'\n WHEN last_12m_orders_cnt_avg BETWEEN 3000 AND 9999 THEN '3K-10K'\n WHEN last_12m_orders_cnt_avg >= 10000 THEN '10K+'\n END AS last_12m_orders_avg_bucket,\n yotpo_tenure_year_count,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM store_metrics_monthly_base \n\n)\n\n-- Result --\n\nSELECT * \nFROM platform__store_metrics_monthly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_order_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_order_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.sql", "unique_id": "model.yoda.analytics___platform__store_order_daily", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_order_daily", "analytics___platform__store_order_daily"], "alias": "analytics___platform__store_order_daily", "checksum": {"name": "sha256", "checksum": "10d113d72a96c6091574af8d0d396aaa27fb9919d9aa0cebc37870bdf3f89668"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table which aggregates store orders daily, after maxing it from all products data points\nPK & Granularity: app_key & order_date", "columns": {"app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "order_month": {"name": "order_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "orders_cnt": {"name": "orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "fulfilled_orders_cnt": {"name": "fulfilled_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_amount_in_usd_sum": {"name": "orders_amount_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fulfilled_orders_amount_in_usd_sum": {"name": "fulfilled_orders_amount_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_in_usd_aov": {"name": "orders_in_usd_aov", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "fulfilled_orders_in_usd_aov": {"name": "fulfilled_orders_in_usd_aov", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082646.0705674, "relation_name": "dev_dkruh1.analytics___platform__store_order_daily", "raw_code": "WITH import_loyalty_purchases AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__purchase') }}\n\n), import_loyalty_accounts AS (\n\n SELECT * FROM {{ ref('analytics___loyalty_stg__loyalty_account') }}\n\n), import_currency_rates AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__currency_exchange_rate') }}\n\n), import_sms_store AS (\n\n SELECT * FROM {{ ref('analytics___sms__store') }}\n\n), import_fulfillment AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__fulfillment') }}\n\n), import_platform_store_order AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__store_order') }}\n\n), import_sms_shopify_orders AS (\n\n SELECT * FROM {{ ref('analytics___sms_stg__shopify_orders') }}\n\n),\n\ncurrency_convertion AS (\n\n SELECT \n currency_exchange_date,\n from_currency_symbol,\n to_currency_symbol,\n conversion_rate \n FROM import_currency_rates\n WHERE currency_exchange_date BETWEEN MAKE_DATE(YEAR(CURRENT_DATE)-4,1,1) AND DATE_SUB(DATE(CURRENT_DATE),1)\n\n),\n\nreviews_orders_raw AS (\n\n SELECT\n orders.app_key,\n orders.order_date,\n orders.order_id,\n (orders.order_amount / currency_convertion.conversion_rate) AS order_amount\n FROM import_platform_store_order AS orders\n LEFT JOIN currency_convertion AS currency_convertion\n ON orders.order_date = currency_convertion.currency_exchange_date\n AND orders.order_amount_currency = currency_convertion.to_currency_symbol\n WHERE order_date BETWEEN MAKE_DATE(YEAR(current_date)-4,1,1) AND DATE_SUB(DATE(current_date),1)\n\n),\n\nfulfilled_orders AS (\n\n SELECT \n DISTINCT order_id\n FROM import_fulfillment\n WHERE fulfillment_status_type_id = 3\n AND fulfillment_date >= '2022-01-01'\n\n),\n\nreviews_order_fulfillment_ind AS (\n\n SELECT\n reviews_raw.app_key,\n reviews_raw.order_date,\n reviews_raw.order_id,\n reviews_raw.order_amount,\n CASE WHEN reviews_raw.order_date < '2022-01-01' THEN 1\n WHEN fulfilled_orders.order_id IS NOT NULL THEN 1 ELSE 0 END AS is_fulfilled\n FROM reviews_orders_raw AS reviews_raw\n LEFT JOIN fulfilled_orders\n ON reviews_raw.order_id = fulfilled_orders.order_id\n\n),\n\nreviews_orders_daily AS (\n\n SELECT\n app_key,\n order_date,\n COUNT(order_id) AS orders_cnt,\n SUM(order_amount) AS orders_amount,\n SUM(is_fulfilled) AS fulfilled_orders_cnt,\n SUM(CASE WHEN is_fulfilled = 1 THEN order_amount ELSE 0 END) AS fulfilled_orders_amount\n FROM reviews_order_fulfillment_ind\n GROUP BY 1,2\n\n),\n\nsms_orders_daily AS (\n\n SELECT\n sms_stores.app_key,\n sms_orders.created_date AS order_date,\n COUNT(sms_orders.order_line_id) AS orders_cnt,\n SUM(sms_orders.total_price_in_usd) AS orders_amount,\n COUNT(CASE WHEN LOWER(sms_orders.fulfillment_status) = 'fulfilled' AND sms_orders.cancelled_at IS NULL THEN sms_orders.order_line_id END) AS fulfilled_orders_cnt,\n SUM(CASE WHEN LOWER(sms_orders.fulfillment_status) = 'fulfilled' AND sms_orders.cancelled_at IS NULL THEN sms_orders.total_price_in_usd ELSE 0 END) AS fulfilled_orders_amount\n FROM import_sms_shopify_orders AS sms_orders\n INNER JOIN import_sms_store AS sms_stores\n ON sms_stores.sms_user_id = sms_orders.sms_user_id\n WHERE COALESCE(sms_orders.is_test, 0) = 0\n AND sms_orders.created_date BETWEEN MAKE_DATE(YEAR(current_date)-4,1,1) AND DATE_SUB(DATE(current_date),1)\n AND sms_stores.app_key IS NOT NULL\n GROUP BY 1,2\n\n),\n\nloyalty_orders_raw AS (\n\n SELECT\n accounts.app_key,\n purchases.purchase_date AS order_date,\n purchases.purchase_id AS order_id,\n purchases.is_refunded,\n (purchases.amount_cents / currency_convertion.conversion_rate) /100 AS order_amount\n FROM import_loyalty_purchases AS purchases\n INNER JOIN import_loyalty_accounts AS accounts\n ON accounts.merchant_id = purchases.merchant_id\n LEFT JOIN currency_convertion\n ON purchases.purchase_date = currency_convertion.currency_exchange_date\n AND purchases.purchase_currency = currency_convertion.to_currency_symbol\n WHERE purchases.purchase_date BETWEEN MAKE_DATE(YEAR(current_date)-4,1,1) AND DATE_SUB(DATE(current_date),1)\n AND purchases.purchase_id is NOT NULL\n\n),\n\nloyalty_orders_daily AS (\n\n SELECT\n loyalty_orders_raw.app_key,\n order_date,\n COUNT(order_id) AS orders_cnt,\n SUM(order_amount) AS orders_amount,\n COUNT(CASE WHEN is_refunded = false THEN order_id END) AS fulfilled_orders_cnt,\n SUM(CASE WHEN is_refunded = false THEN order_amount ELSE 0 END) AS fulfilled_orders_amount\n FROM loyalty_orders_raw\n GROUP BY 1,2\n\n),\n\ntotal_orders AS (\n\n SELECT\n app_key,\n order_date,\n orders_cnt,\n orders_amount,\n fulfilled_orders_cnt,\n fulfilled_orders_amount\n FROM reviews_orders_daily\n\n UNION ALL\n\n SELECT\n app_key,\n order_date,\n orders_cnt,\n orders_amount,\n fulfilled_orders_cnt,\n fulfilled_orders_amount\n FROM sms_orders_daily\n\n UNION ALL\n\n SELECT\n app_key,\n order_date,\n orders_cnt,\n orders_amount,\n fulfilled_orders_cnt,\n fulfilled_orders_amount\n FROM loyalty_orders_daily\n\n),\n\norders_daily AS (\n\n SELECT\n app_key,\n order_date,\n TRUNC(order_date,'MONTH') AS order_month,\n MAX(orders_cnt) AS orders_cnt,\n MAX(orders_amount) AS orders_amount_sum,\n MAX(fulfilled_orders_cnt) AS fulfilled_orders_cnt,\n MAX(fulfilled_orders_amount) AS fulfilled_orders_amount_sum\n FROM total_orders\n GROUP BY 1,2,3\n\n),\n\norders_monthly AS (\n\n SELECT\n app_key,\n order_month,\n SUM(orders_cnt) AS orders_cnt,\n SUM(fulfilled_orders_cnt) AS fulfilled_orders_cnt,\n SUM(orders_amount_sum) AS orders_amount_sum,\n SUM(fulfilled_orders_amount_sum) AS fulfilled_orders_amount_sum\n FROM orders_daily\n GROUP BY 1,2\n \n),\n\nplatform__store_order_daily AS (\n\n SELECT\n orders_daily.app_key,\n orders_daily.order_date,\n orders_daily.order_month,\n orders_daily.orders_cnt,\n orders_daily.fulfilled_orders_cnt,\n ROUND(orders_daily.orders_amount_sum, 1) AS orders_amount_in_usd_sum,\n ROUND(orders_daily.fulfilled_orders_amount_sum, 1) AS fulfilled_orders_amount_in_usd_sum,\n ROUND(orders_daily.orders_amount_sum / orders_daily.orders_cnt, 1) AS orders_in_usd_aov,\n ROUND(orders_daily.fulfilled_orders_amount_sum / orders_daily.fulfilled_orders_cnt, 1) AS fulfilled_orders_in_usd_aov,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM orders_daily\n LEFT JOIN orders_monthly\n ON orders_daily.app_key = orders_monthly.app_key\n AND orders_monthly.order_month BETWEEN ADD_MONTHS(orders_daily.order_month, -3) AND LAST_DAY(ADD_MONTHS(orders_daily.order_month,-1))\n GROUP BY 1,2,3,4,5,6,7,8,9\n \n)\n\nSELECT * \nFROM platform__store_order_daily", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__purchase", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_account", "package": null, "version": null}, {"name": "analytics___platform_stg__currency_exchange_rate", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___platform_stg__fulfillment", "package": null, "version": null}, {"name": "analytics___platform_stg__store_order", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty_stg__purchase", "model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.analytics___platform_stg__currency_exchange_rate", "model.yoda.analytics___sms__store", "model.yoda.analytics___platform_stg__fulfillment", "model.yoda.analytics___platform_stg__store_order", "model.yoda.analytics___sms_stg__shopify_orders"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.sql", "compiled": true, "compiled_code": "WITH import_loyalty_purchases AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__purchase\n\n), import_loyalty_accounts AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty_stg__loyalty_account\n\n), import_currency_rates AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__currency_exchange_rate\n\n), import_sms_store AS (\n\n SELECT * FROM dev_dkruh1.analytics___sms__store\n\n), import_fulfillment AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__fulfillment\n\n), import_platform_store_order AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__store_order\n\n), import_sms_shopify_orders AS (\n\n SELECT * FROM dev_dkruh1.analytics___sms_stg__shopify_orders\n\n),\n\ncurrency_convertion AS (\n\n SELECT \n currency_exchange_date,\n from_currency_symbol,\n to_currency_symbol,\n conversion_rate \n FROM import_currency_rates\n WHERE currency_exchange_date BETWEEN MAKE_DATE(YEAR(CURRENT_DATE)-4,1,1) AND DATE_SUB(DATE(CURRENT_DATE),1)\n\n),\n\nreviews_orders_raw AS (\n\n SELECT\n orders.app_key,\n orders.order_date,\n orders.order_id,\n (orders.order_amount / currency_convertion.conversion_rate) AS order_amount\n FROM import_platform_store_order AS orders\n LEFT JOIN currency_convertion AS currency_convertion\n ON orders.order_date = currency_convertion.currency_exchange_date\n AND orders.order_amount_currency = currency_convertion.to_currency_symbol\n WHERE order_date BETWEEN MAKE_DATE(YEAR(current_date)-4,1,1) AND DATE_SUB(DATE(current_date),1)\n\n),\n\nfulfilled_orders AS (\n\n SELECT \n DISTINCT order_id\n FROM import_fulfillment\n WHERE fulfillment_status_type_id = 3\n AND fulfillment_date >= '2022-01-01'\n\n),\n\nreviews_order_fulfillment_ind AS (\n\n SELECT\n reviews_raw.app_key,\n reviews_raw.order_date,\n reviews_raw.order_id,\n reviews_raw.order_amount,\n CASE WHEN reviews_raw.order_date < '2022-01-01' THEN 1\n WHEN fulfilled_orders.order_id IS NOT NULL THEN 1 ELSE 0 END AS is_fulfilled\n FROM reviews_orders_raw AS reviews_raw\n LEFT JOIN fulfilled_orders\n ON reviews_raw.order_id = fulfilled_orders.order_id\n\n),\n\nreviews_orders_daily AS (\n\n SELECT\n app_key,\n order_date,\n COUNT(order_id) AS orders_cnt,\n SUM(order_amount) AS orders_amount,\n SUM(is_fulfilled) AS fulfilled_orders_cnt,\n SUM(CASE WHEN is_fulfilled = 1 THEN order_amount ELSE 0 END) AS fulfilled_orders_amount\n FROM reviews_order_fulfillment_ind\n GROUP BY 1,2\n\n),\n\nsms_orders_daily AS (\n\n SELECT\n sms_stores.app_key,\n sms_orders.created_date AS order_date,\n COUNT(sms_orders.order_line_id) AS orders_cnt,\n SUM(sms_orders.total_price_in_usd) AS orders_amount,\n COUNT(CASE WHEN LOWER(sms_orders.fulfillment_status) = 'fulfilled' AND sms_orders.cancelled_at IS NULL THEN sms_orders.order_line_id END) AS fulfilled_orders_cnt,\n SUM(CASE WHEN LOWER(sms_orders.fulfillment_status) = 'fulfilled' AND sms_orders.cancelled_at IS NULL THEN sms_orders.total_price_in_usd ELSE 0 END) AS fulfilled_orders_amount\n FROM import_sms_shopify_orders AS sms_orders\n INNER JOIN import_sms_store AS sms_stores\n ON sms_stores.sms_user_id = sms_orders.sms_user_id\n WHERE COALESCE(sms_orders.is_test, 0) = 0\n AND sms_orders.created_date BETWEEN MAKE_DATE(YEAR(current_date)-4,1,1) AND DATE_SUB(DATE(current_date),1)\n AND sms_stores.app_key IS NOT NULL\n GROUP BY 1,2\n\n),\n\nloyalty_orders_raw AS (\n\n SELECT\n accounts.app_key,\n purchases.purchase_date AS order_date,\n purchases.purchase_id AS order_id,\n purchases.is_refunded,\n (purchases.amount_cents / currency_convertion.conversion_rate) /100 AS order_amount\n FROM import_loyalty_purchases AS purchases\n INNER JOIN import_loyalty_accounts AS accounts\n ON accounts.merchant_id = purchases.merchant_id\n LEFT JOIN currency_convertion\n ON purchases.purchase_date = currency_convertion.currency_exchange_date\n AND purchases.purchase_currency = currency_convertion.to_currency_symbol\n WHERE purchases.purchase_date BETWEEN MAKE_DATE(YEAR(current_date)-4,1,1) AND DATE_SUB(DATE(current_date),1)\n AND purchases.purchase_id is NOT NULL\n\n),\n\nloyalty_orders_daily AS (\n\n SELECT\n loyalty_orders_raw.app_key,\n order_date,\n COUNT(order_id) AS orders_cnt,\n SUM(order_amount) AS orders_amount,\n COUNT(CASE WHEN is_refunded = false THEN order_id END) AS fulfilled_orders_cnt,\n SUM(CASE WHEN is_refunded = false THEN order_amount ELSE 0 END) AS fulfilled_orders_amount\n FROM loyalty_orders_raw\n GROUP BY 1,2\n\n),\n\ntotal_orders AS (\n\n SELECT\n app_key,\n order_date,\n orders_cnt,\n orders_amount,\n fulfilled_orders_cnt,\n fulfilled_orders_amount\n FROM reviews_orders_daily\n\n UNION ALL\n\n SELECT\n app_key,\n order_date,\n orders_cnt,\n orders_amount,\n fulfilled_orders_cnt,\n fulfilled_orders_amount\n FROM sms_orders_daily\n\n UNION ALL\n\n SELECT\n app_key,\n order_date,\n orders_cnt,\n orders_amount,\n fulfilled_orders_cnt,\n fulfilled_orders_amount\n FROM loyalty_orders_daily\n\n),\n\norders_daily AS (\n\n SELECT\n app_key,\n order_date,\n TRUNC(order_date,'MONTH') AS order_month,\n MAX(orders_cnt) AS orders_cnt,\n MAX(orders_amount) AS orders_amount_sum,\n MAX(fulfilled_orders_cnt) AS fulfilled_orders_cnt,\n MAX(fulfilled_orders_amount) AS fulfilled_orders_amount_sum\n FROM total_orders\n GROUP BY 1,2,3\n\n),\n\norders_monthly AS (\n\n SELECT\n app_key,\n order_month,\n SUM(orders_cnt) AS orders_cnt,\n SUM(fulfilled_orders_cnt) AS fulfilled_orders_cnt,\n SUM(orders_amount_sum) AS orders_amount_sum,\n SUM(fulfilled_orders_amount_sum) AS fulfilled_orders_amount_sum\n FROM orders_daily\n GROUP BY 1,2\n \n),\n\nplatform__store_order_daily AS (\n\n SELECT\n orders_daily.app_key,\n orders_daily.order_date,\n orders_daily.order_month,\n orders_daily.orders_cnt,\n orders_daily.fulfilled_orders_cnt,\n ROUND(orders_daily.orders_amount_sum, 1) AS orders_amount_in_usd_sum,\n ROUND(orders_daily.fulfilled_orders_amount_sum, 1) AS fulfilled_orders_amount_in_usd_sum,\n ROUND(orders_daily.orders_amount_sum / orders_daily.orders_cnt, 1) AS orders_in_usd_aov,\n ROUND(orders_daily.fulfilled_orders_amount_sum / orders_daily.fulfilled_orders_cnt, 1) AS fulfilled_orders_in_usd_aov,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM orders_daily\n LEFT JOIN orders_monthly\n ON orders_daily.app_key = orders_monthly.app_key\n AND orders_monthly.order_month BETWEEN ADD_MONTHS(orders_daily.order_month, -3) AND LAST_DAY(ADD_MONTHS(orders_daily.order_month,-1))\n GROUP BY 1,2,3,4,5,6,7,8,9\n \n)\n\nSELECT * \nFROM platform__store_order_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_pixel_metrics_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_pixel_metrics_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.sql", "unique_id": "model.yoda.analytics___platform__store_pixel_metrics_daily", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_pixel_metrics_daily", "analytics___platform__store_pixel_metrics_daily"], "alias": "analytics___platform__store_pixel_metrics_daily", "checksum": {"name": "sha256", "checksum": "048a62dd84248abfe2449990e364e7f51fff279276f5121c44a6dc19fc0fc169"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["product_name", "date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled incremental table of aggregate pixel events metrics for store by date | \nGranularity: product_name, date, app_key, widget_version_type , action, widget_element, medium, source, is_mobile, metric | \nPrimary Key: pixel_metrics_id", "columns": {"pixel_metrics_id": {"name": "pixel_metrics_id", "description": "table's row unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "yotpo's product name: ugc, loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "date of the aggregate pixel events", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_version_type": {"name": "widget_version_type", "description": "pixel widget version: 2, 3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "action": {"name": "action", "description": "user action: shown, loaded, clicked_on, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_element": {"name": "widget_element", "description": "widget element: filter_reviews, questions, sticky_bar_widget, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "medium": {"name": "medium", "description": "pixel event medium: organic, marketing, sms, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "pixel event source: instagram, google-ads, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_mobile": {"name": "is_mobile", "description": "mobile indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "metric": {"name": "metric", "description": "metric description: count, 0.5 - 0.99 duration sec count, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "metric's value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["product_name", "date"]}, "created_at": 1700082646.1177554, "relation_name": "dev_dkruh1.analytics___platform__store_pixel_metrics_daily", "raw_code": "{{ \n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=['product_name', 'date']\n )\n}}\n\n-- import --\n\nWITH current_day_data_existence AS (\nSELECT 1 AS is_current_day_data\nWHERE EXISTS (SELECT * FROM {{ ref('analytics___platform_stg__ugc_pixel_widget_v_two') }} WHERE date = CURRENT_DATE LIMIT 1)\nAND EXISTS (SELECT * FROM {{ ref('analytics___platform_stg__ugc_pixel_widget_v_three') }} WHERE date = CURRENT_DATE LIMIT 1)\nAND EXISTS (SELECT * FROM {{ ref('analytics___platform_stg__loyalty_pixel_widget_v_two') }} WHERE date = CURRENT_DATE LIMIT 1)\nAND EXISTS (SELECT * FROM {{ ref('analytics___platform_stg__loyalty_pixel_widget_v_three') }} WHERE date = CURRENT_DATE LIMIT 1)\nAND EXISTS (SELECT * FROM {{ ref('analytics___platform_stg__subscriptions_pixel_widget_v_three') }} WHERE date = CURRENT_DATE LIMIT 1)\n),\n\nimport_pixel_duration_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_duration_mapping') }}\n),\n\nimport_pixel_os_family_mobile_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_os_family_mobile_mapping') }}\n),\n\nimport_loyalty__merchant AS (\nSELECT *\nFROM {{ ref('analytics___loyalty__merchant') }}\n),\n\nimport_ugc_pixel_widget_v_two AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__ugc_pixel_widget_v_two') }}\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,7) AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n{% if is_incremental() %}\nAND date > (SELECT COALESCE(MAX(date), TRUNC(CURRENT_DATE,'YEAR')) FROM {{ this }})\n{% endif %}\n),\n\nimport_ugc_pixel_widget_v_three AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__ugc_pixel_widget_v_three') }}\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,7) AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n{% if is_incremental() %}\nAND date > (SELECT COALESCE(MAX(date), TRUNC(CURRENT_DATE,'YEAR')) FROM {{ this }})\n{% endif %}\n),\n\nimport_loyalty_pixel_widget_v_two AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__loyalty_pixel_widget_v_two') }}\nWHERE date BETWEEN TRUNC(DATE_SUB(CURRENT_DATE,7),'YEAR') AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n{% if is_incremental() %}\nAND date > (SELECT COALESCE(MAX(date), TRUNC(CURRENT_DATE,'YEAR')) FROM {{ this }})\n{% endif %}\n),\n\nimport_loyalty_pixel_widget_v_three AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__loyalty_pixel_widget_v_three') }}\nWHERE date BETWEEN TRUNC(DATE_SUB(CURRENT_DATE,7),'YEAR') AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n{% if is_incremental() %}\nAND date > (SELECT COALESCE(MAX(date), TRUNC(CURRENT_DATE,'YEAR')) FROM {{ this }})\n{% endif %}\n),\n\nimport_subscriptions_pixel_widget_v_three AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__subscriptions_pixel_widget_v_three') }}\nWHERE date BETWEEN TRUNC(DATE_SUB(CURRENT_DATE,7),'YEAR') AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n{% if is_incremental() %}\nAND date > (SELECT COALESCE(MAX(date), TRUNC(CURRENT_DATE,'YEAR')) FROM {{ this }})\n{% endif %}\n),\n\n-- Logic --\n\nugc_widget_two_event_agg AS (\nSELECT\n 'ugc' AS product_name,\n date,\n app_key,\n 2 AS widget_version_type,\n action,\n 'count' AS metric,\n SUM(IF(category = 'questions_widget',1,0)) AS questions_widget,\n SUM(IF(category = 'questions',1,0)) AS questions,\n SUM(IF(category = 'promoted_products',1,0)) AS promoted_products,\n SUM(IF(category = 'star_rating',1,0)) AS star_rating,\n SUM(IF(category = 'reviews',1,0)) AS reviews_widget,\n SUM(CASE WHEN category = 'reviews' AND label = 'vote_up' THEN 1 ELSE 0 END) AS reviews_widget_vote_up,\n SUM(CASE WHEN category = 'reviews' AND label = 'vote_down' THEN 1 ELSE 0 END) AS reviews_widget_vote_down,\n SUM(IF(category = 'filter_reviews',1,0)) AS filter_reviews,\n SUM(CASE WHEN category = 'filter_reviews' AND ((date >= '2022-12-25' AND context_desktop_topics_count > 0) OR context_cta = 'topic') THEN 1 ELSE 0 END) AS filter_reviews_smart_topics,\n SUM(CASE WHEN category = 'filter_reviews' AND \n ((date >= '2022-12-25' AND (context_custom_fields_count > 0 OR context_free_text_included IS NOT NULL))\n OR context_filter_field_type = 'crf') THEN 1 ELSE 0 END) AS filter_reviews_crf,\n SUM(CASE WHEN category = 'filter_reviews' AND context_cta = 'filter_reviews_images' THEN 1 ELSE 0 END) AS filter_reviews_images,\n SUM(IF(label = 'share_published_facebook',1,0)) AS share_published_facebook,\n SUM(IF(label = 'share_published_twitter',1,0)) AS share_published_twitter,\n SUM(IF(label = 'share_published_linkedin',1,0)) AS share_published_linkedin,\n SUM(IF(label IN ('share_published_facebook','share_published_twitter','share_published_linkedin'),1,0)) AS share_published_social,\n SUM(IF(category = 'tab_popup',1,0)) AS reviews_tab,\n SUM(IF(category = 'reviews_dedicated_page',1,0)) AS reviews_seo_page,\n SUM(IF(category = 'reviews_badge',1,0)) AS reviews_badge, \n SUM(IF(category = 'dedicated_page',1,0)) AS reviews_galleries, \n SUM(IF(category = 'dedicated_page_popup',1,0)) AS reviews_galleries_popup, \n SUM(IF(category = 'pictures_widget',1,0)) AS vugc,\n SUM(IF(category = 'pictures_widget_popup',1,0)) AS vugc_popup,\n SUM(IF(category = 'carousel',1,0)) AS carousel\nFROM import_ugc_pixel_widget_v_two\nGROUP BY 2,3,5\n),\n\nugc_widget_two_user_agg AS (\nSELECT\n 'ugc' AS product_name,\n date,\n app_key,\n 2 AS widget_version_type,\n action,\n 'unique user count' AS metric,\n COUNT(DISTINCT IF(category = 'questions_widget',domain_user_id,NULL)) AS questions_widget,\n COUNT(DISTINCT IF(category = 'questions',domain_user_id,NULL)) AS questions,\n COUNT(DISTINCT IF(category = 'promoted_products',domain_user_id,NULL)) AS promoted_products,\n COUNT(DISTINCT IF(category = 'star_rating',domain_user_id,NULL)) AS star_rating,\n COUNT(DISTINCT IF(category = 'reviews',domain_user_id,NULL)) AS reviews_widget,\n COUNT(DISTINCT IF(category = 'reviews' AND label = 'vote_up',domain_user_id,NULL)) AS reviews_widget_vote_up,\n COUNT(DISTINCT IF(category = 'reviews' AND label = 'vote_down',domain_user_id,NULL)) AS reviews_widget_vote_down,\n COUNT(DISTINCT IF(category = 'filter_reviews',domain_user_id,NULL)) AS filter_reviews,\n COUNT(DISTINCT CASE WHEN category = 'filter_reviews' AND ((date >= '2022-12-25' AND context_desktop_topics_count > 0) OR context_cta = 'topic') THEN domain_user_id END) AS filter_reviews_smart_topics,\n COUNT(DISTINCT CASE WHEN category = 'filter_reviews' AND \n ((date >= '2022-12-25' AND (context_custom_fields_count > 0 OR context_free_text_included IS NOT NULL))\n OR context_filter_field_type = 'crf') THEN domain_user_id END) AS filter_reviews_crf,\n COUNT(DISTINCT IF(category = 'filter_reviews' AND context_cta = 'filter_reviews_images',domain_user_id,NULL)) AS filter_reviews_images,\n COUNT(DISTINCT IF(label = 'share_published_facebook',domain_user_id,NULL)) AS share_published_facebook,\n COUNT(DISTINCT IF(label = 'share_published_twitter',domain_user_id,NULL)) AS share_published_twitter,\n COUNT(DISTINCT IF(label = 'share_published_linkedin',domain_user_id,NULL)) AS share_published_linkedin,\n COUNT(DISTINCT IF(label IN ('share_published_facebook','share_published_twitter','share_published_linkedin'),domain_user_id,NULL)) AS share_published_social,\n COUNT(DISTINCT IF(category = 'tab_popup',domain_user_id,NULL)) AS reviews_tab,\n COUNT(DISTINCT IF(category = 'reviews_dedicated_page',domain_user_id,NULL)) AS reviews_seo_page,\n COUNT(DISTINCT IF(category = 'reviews_badge',domain_user_id,NULL)) AS reviews_badge, \n COUNT(DISTINCT IF(category = 'dedicated_page',domain_user_id,NULL)) AS reviews_galleries, \n COUNT(DISTINCT IF(category = 'dedicated_page_popup',domain_user_id,NULL)) AS reviews_galleries_popup, \n COUNT(DISTINCT IF(category = 'pictures_widget',domain_user_id,NULL)) AS vugc,\n COUNT(DISTINCT IF(category = 'pictures_widget_popup',domain_user_id,NULL)) AS vugc_popup,\n COUNT(DISTINCT IF(category = 'carousel',domain_user_id,NULL)) AS carousel\nFROM import_ugc_pixel_widget_v_two\nGROUP BY 2,3,5\n),\n\nugc_widget_three_event_agg AS (\nSELECT\n 'ugc' AS product_name,\n date,\n app_key,\n 3 AS widget_version_type,\n action,\n 'count' AS metric,\n SUM(CASE WHEN category = 'questions-and-answers-widget' AND context_widget_placement = 'standalone' THEN 1 ELSE 0 END) AS questions_widget,\n SUM(CASE WHEN category = 'questions-and-answers-widget' AND context_widget_placement = 'embedded' THEN 1 ELSE 0 END) AS questions,\n SUM(IF(category = 'star-ratings-widget',1,0)) AS star_rating,\n SUM(IF(category = 'reviews-main-widget',1,0)) AS reviews_widget,\n SUM(CASE WHEN category = 'reviews-main-widget' AND label = 'filters' THEN 1 ELSE 0 END) AS filter_reviews,\n SUM(CASE WHEN category = 'reviews-main-widget' AND label = 'filters' AND context_custom_questions > 0 THEN 1 ELSE 0 END) AS filter_reviews_crf,\n SUM(CASE WHEN category = 'reviews-main-widget' AND label = 'filters' AND context_smart_topics > 0 THEN 1 ELSE 0 END) AS filter_reviews_smart_topics\nFROM import_ugc_pixel_widget_v_three\nGROUP BY 2,3,5\n),\n\nugc_widget_three_user_agg AS (\nSELECT\n 'ugc' AS product_name,\n date,\n app_key,\n 3 AS widget_version_type,\n action,\n 'unique user count' AS metric,\n COUNT(DISTINCT IF(category = 'questions-and-answers-widget' AND context_widget_placement = 'standalone',domain_user_id,NULL)) AS questions_widget,\n COUNT(DISTINCT IF(category = 'questions-and-answers-widget' AND context_widget_placement = 'embedded',domain_user_id,NULL)) AS questions,\n COUNT(DISTINCT IF(category = 'star-ratings-widget',domain_user_id,NULL)) star_rating,\n COUNT(DISTINCT IF(category = 'reviews-main-widget',domain_user_id,NULL)) reviews_widget,\n COUNT(DISTINCT IF(category = 'reviews-main-widget' AND label = 'filters',domain_user_id,NULL)) AS filter_reviews,\n COUNT(DISTINCT IF(category = 'reviews-main-widget' AND label = 'filters' AND context_custom_questions > 0,domain_user_id,NULL)) AS filter_reviews_crf,\n COUNT(DISTINCT IF(category = 'reviews-main-widget' AND label = 'filters' AND context_smart_topics > 0,domain_user_id,NULL)) AS filter_reviews_smart_topics\nFROM import_ugc_pixel_widget_v_three\nGROUP BY 2,3,5\n),\n\nugc_widget_three_duration AS (\nSELECT\n 'ugc' AS product_name,\n widget.date,\n widget.app_key,\n 3 AS widget_version_type,\n widget.action,\n COALESCE(mapping.metric,'unknown') AS metric,\n CASE WHEN widget.category = 'questions-and-answers-widget' AND widget.context_widget_placement = 'standalone' THEN 'questions_widget'\n WHEN widget.category = 'questions-and-answers-widget' AND widget.context_widget_placement = 'embedded' THEN 'questions'\n WHEN widget.category = 'star-ratings-widget' THEN 'star_rating'\n WHEN widget.category = 'reviews-main-widget' THEN 'reviews_widget' END AS widget_element,\n COUNT(*) AS value\nFROM import_ugc_pixel_widget_v_three AS widget\nLEFT JOIN import_pixel_duration_mapping AS mapping\nON widget.context_duration_time_from_widget_mark_in_sec >= mapping.from_seconds\nAND widget.context_duration_time_from_widget_mark_in_sec < COALESCE(mapping.to_seconds, widget.context_duration_time_from_widget_mark_in_sec+1)\nWHERE widget.context_duration_time_from_widget_mark_in_sec > 0\nGROUP BY 2,3,5,6,7\n),\n\nugc_widget_two_event_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n metric,\n STACK(23,\n 'questions_widget', SUM(questions_widget),\n 'questions', SUM(questions),\n 'promoted_products', SUM(promoted_products),\n 'star_rating', SUM(star_rating),\n 'reviews_widget', SUM(reviews_widget),\n 'reviews_widget_vote_up', SUM(reviews_widget_vote_up),\n 'reviews_widget_vote_down', SUM(reviews_widget_vote_down),\n 'filter_reviews', SUM(filter_reviews),\n 'filter_reviews_smart_topics', SUM(filter_reviews_smart_topics),\n 'filter_reviews_crf', SUM(filter_reviews_crf),\n 'filter_reviews_images', SUM(filter_reviews_images),\n 'share_published_facebook', SUM(share_published_facebook),\n 'share_published_twitter', SUM(share_published_twitter),\n 'share_published_linkedin', SUM(share_published_linkedin),\n 'share_published_social', SUM(share_published_social),\n 'reviews_tab', SUM(reviews_tab),\n 'reviews_seo_page', SUM(reviews_seo_page),\n 'reviews_badge', SUM(reviews_badge),\n 'reviews_galleries', SUM(reviews_galleries),\n 'reviews_galleries_popup', SUM(reviews_galleries_popup),\n 'vugc', SUM(vugc),\n 'vugc_popup', SUM(vugc_popup),\n 'carousel', SUM(carousel)\n ) AS (widget_element, value)\nFROM ugc_widget_two_event_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nugc_widget_two_user_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n metric,\n STACK(23,\n 'questions_widget', SUM(questions_widget),\n 'questions', SUM(questions),\n 'promoted_products', SUM(promoted_products),\n 'star_rating', SUM(star_rating),\n 'reviews_widget', SUM(reviews_widget),\n 'reviews_widget_vote_up', SUM(reviews_widget_vote_up),\n 'reviews_widget_vote_down', SUM(reviews_widget_vote_down),\n 'filter_reviews', SUM(filter_reviews),\n 'filter_reviews_smart_topics', SUM(filter_reviews_smart_topics),\n 'filter_reviews_crf', SUM(filter_reviews_crf),\n 'filter_reviews_images', SUM(filter_reviews_images),\n 'share_published_facebook', SUM(share_published_facebook),\n 'share_published_twitter', SUM(share_published_twitter),\n 'share_published_linkedin', SUM(share_published_linkedin),\n 'share_published_social', SUM(share_published_social),\n 'reviews_tab', SUM(reviews_tab),\n 'reviews_seo_page', SUM(reviews_seo_page),\n 'reviews_badge', SUM(reviews_badge),\n 'reviews_galleries', SUM(reviews_galleries),\n 'reviews_galleries_popup', SUM(reviews_galleries_popup),\n 'vugc', SUM(vugc),\n 'vugc_popup', SUM(vugc_popup),\n 'carousel', SUM(carousel)\n ) AS (widget_element, value)\nFROM ugc_widget_two_user_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nugc_widget_three_event_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n metric,\n STACK(7,\n 'questions_widget', SUM(questions_widget),\n 'questions', SUM(questions),\n 'star_rating', SUM(star_rating),\n 'reviews_widget', SUM(reviews_widget),\n 'filter_reviews', SUM(filter_reviews),\n 'filter_reviews_crf', SUM(filter_reviews_crf),\n 'filter_reviews_smart_topics', SUM(filter_reviews_smart_topics)\n ) AS (widget_element, value)\nFROM ugc_widget_three_event_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nugc_widget_three_user_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n metric,\n STACK(7,\n 'questions_widget', SUM(questions_widget),\n 'questions', SUM(questions),\n 'star_rating', SUM(star_rating),\n 'reviews_widget', SUM(reviews_widget),\n 'filter_reviews', SUM(filter_reviews),\n 'filter_reviews_crf', SUM(filter_reviews_crf),\n 'filter_reviews_smart_topics', SUM(filter_reviews_smart_topics)\n ) AS (widget_element, value)\nFROM ugc_widget_three_user_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nloyalty_widget_two_user_agg AS (\nSELECT\n 'loyalty' AS product_name,\n date,\n guid,\n 2 AS widget_version_type,\n action,\n 'unique user count' AS metric,\n COUNT(DISTINCT IF(category = 'referral-widget-page',domain_user_id,NULL)) AS referral_widget_page,\n COUNT(DISTINCT IF(category = 'offline-redemptions-widget',domain_user_id,NULL)) AS offline_redemptions_widget\nFROM import_loyalty_pixel_widget_v_two\nGROUP BY 1,2,3,4,5,6\n),\n\nloyalty_widget_three_user_agg AS (\nSELECT\n 'loyalty' AS product_name,\n date,\n guid,\n 3 AS widget_version_type,\n action,\n 'unique user count' AS metric,\n COUNT(DISTINCT CASE WHEN category = 'share-product-widget' THEN domain_user_id END) AS share_product_widget, \n COUNT(DISTINCT CASE WHEN category = 'lr-coming-soon' THEN domain_user_id END) AS lr_coming_soon_widget,\n COUNT(DISTINCT CASE WHEN category = 'visual-redemption-widget' THEN domain_user_id END) AS visual_redemption_widget,\n COUNT(DISTINCT CASE WHEN category = 'referred-friend' THEN domain_user_id END) AS referred_friend_widget,\n COUNT(DISTINCT CASE WHEN category = 'products-redemption-widget' THEN domain_user_id END) AS products_redemption_widget,\n COUNT(DISTINCT CASE WHEN category = 'hero-section' THEN domain_user_id END) AS hero_section_widget,\n COUNT(DISTINCT CASE WHEN category = 'checkout-redemptions-widget' THEN domain_user_id END) AS checkout_redemptions_widget,\n COUNT(DISTINCT CASE WHEN category = 'checkout-variable-widget' THEN domain_user_id END) AS checkout_variable_widget,\n COUNT(DISTINCT CASE WHEN category = 'vip-tiers-widget' THEN domain_user_id END) AS vip_tiers,\n COUNT(DISTINCT CASE WHEN category = 'referral-widget-page' THEN domain_user_id END) AS referral_widget_page,\n COUNT(DISTINCT CASE WHEN category = 'loyalty-floater-widget' THEN domain_user_id END) AS sticky_bar_widget,\n COUNT(DISTINCT CASE WHEN category = 'loyalty-floater-widget' AND property = 'get_reward_button_clicked' THEN domain_user_id END) AS sticky_bar_get_reward,\n COUNT(DISTINCT CASE WHEN category = 'loyalty-floater-widget' AND property = 'redemption_completed' THEN domain_user_id END) AS sticky_bar_redemption_completed,\n COUNT(DISTINCT CASE WHEN category = 'campaigns-widget' THEN domain_user_id END) AS campaign_widget,\n COUNT(DISTINCT CASE WHEN category = 'widget-coupons-redemption' THEN domain_user_id END) AS coupons_redemption_widget,\n COUNT(DISTINCT CASE WHEN category = 'loyalty-page' THEN domain_user_id END) AS rewards_page_widget,\n COUNT(DISTINCT CASE WHEN category = 'my-rewards-widget' THEN domain_user_id END) AS my_loyalty_widget\nFROM import_loyalty_pixel_widget_v_three\nGROUP BY 1,2,3,4,5,6\n),\n\nloyalty_widget_two_user_unpivot AS (\nSELECT\n product_name,\n date,\n guid,\n widget_version_type,\n action,\n metric,\n STACK(2,\n 'referral_widget_page', SUM(referral_widget_page),\n 'offline_redemptions_widget', SUM(offline_redemptions_widget)\n ) AS (widget_element, value)\nFROM loyalty_widget_two_user_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nloyalty_widget_three_user_unpivot AS (\nSELECT\n product_name,\n date,\n guid,\n widget_version_type,\n action,\n metric,\n STACK(17,\n 'share_product_widget', SUM(share_product_widget),\n 'lr_coming_soon_widget', SUM(lr_coming_soon_widget),\n 'visual_redemption_widget', SUM(visual_redemption_widget),\n 'referred_friend_widget', SUM(referred_friend_widget),\n 'products_redemption_widget', SUM(products_redemption_widget),\n 'hero_section_widget', SUM(hero_section_widget),\n 'checkout_redemptions_widget', SUM(checkout_redemptions_widget),\n 'checkout_variable_widget', SUM(checkout_variable_widget),\n 'vip_tiers', SUM(vip_tiers),\n 'referral_widget_page', SUM(referral_widget_page),\n 'sticky_bar_widget', SUM(sticky_bar_widget),\n 'sticky_bar_get_reward', SUM(sticky_bar_get_reward),\n 'sticky_bar_redemption_completed', SUM(sticky_bar_redemption_completed),\n 'campaign_widget', SUM(campaign_widget),\n 'coupons_redemption_widget', SUM(coupons_redemption_widget),\n 'rewards_page_widget', SUM(rewards_page_widget),\n 'my_loyalty_widget', SUM(my_loyalty_widget)\n ) AS (widget_element, value)\nFROM loyalty_widget_three_user_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nsubs_product_page_widget_event_agg AS (\nSELECT\n 'subscriptions' AS product_name,\n date,\n app_key,\n 3 AS widget_version_type,\n action,\n medium,\n source,\n os_family,\n 'count' AS metric, \n COUNT(*) AS subscriptions_frequency_option\nFROM import_subscriptions_pixel_widget_v_three\nWHERE LOWER(category) = 'product-page-widget'\nAND LOWER(action) = 'clicked_on' \nAND LOWER(label) IS NULL\nGROUP BY 2,3,5,6,7,8\n),\n\nsubs_product_page_widget_user_and_url_agg AS (\nSELECT\n 'subscriptions' AS product_name,\n date,\n app_key,\n 3 AS widget_version_type,\n action,\n medium,\n source,\n os_family,\n 'unique user url count' AS metric,\n COUNT(DISTINCT CASE WHEN LOWER(action) = 'loaded' AND LOWER(label) IS NULL THEN calculated_user_and_url_id END) AS subscriptions_product_page_widget,\n COUNT(DISTINCT CASE WHEN LOWER(action) = 'clicked_on' AND LOWER(label) IS NULL THEN calculated_user_and_url_id END) AS subscriptions_frequency_option,\n COUNT(DISTINCT CASE WHEN LOWER(action) = 'clicked_on' AND LOWER(label) = 'add_to_cart' THEN calculated_user_and_url_id END) AS add_to_cart\nFROM import_subscriptions_pixel_widget_v_three AS pixel\nWHERE LOWER(category) = 'product-page-widget'\nGROUP BY 2,3,5,6,7,8\n),\n\nsubs_subscriptions_customer_portal_user_agg AS (\nSELECT\n 'subscriptions' AS product_name,\n date,\n app_key,\n 3 AS widget_version_type,\n action,\n medium,\n source,\n os_family,\n 'unique user count' AS metric,\n COUNT(DISTINCT domain_user_id) AS subscriptions_customer_portal\nFROM import_subscriptions_pixel_widget_v_three AS pixel\nWHERE LOWER(category) = 'subscriptions-customer-portal'\nAND LOWER(action) = 'loaded'\nGROUP BY 2,3,5,6,7,8\n),\n\nsubs_product_page_widget_event_agg_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n STACK(1,\n 'subscriptions_frequency_option', SUM(subscriptions_frequency_option)\n ) AS (widget_element, value)\nFROM subs_product_page_widget_event_agg\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\nsubs_product_page_widget_user_and_url_agg_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n STACK(3,\n 'subscriptions_product_page_widget', SUM(subscriptions_product_page_widget),\n 'subscriptions_frequency_option', SUM(subscriptions_frequency_option),\n 'add_to_cart', SUM(add_to_cart)\n ) AS (widget_element, value)\nFROM subs_product_page_widget_user_and_url_agg\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\nsubs_subscriptions_customer_portal_user_agg_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n STACK(1,\n 'subscriptions_customer_portal', SUM(subscriptions_customer_portal)\n ) AS (widget_element, value)\nFROM subs_subscriptions_customer_portal_user_agg\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\nugc_union AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM ugc_widget_three_duration\nWHERE widget_element IS NOT NULL\nAND value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM ugc_widget_two_event_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM ugc_widget_two_user_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM ugc_widget_three_event_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM ugc_widget_three_user_unpivot\nWHERE value > 0\n),\n\nloyalty_union AS (\nSELECT\n product_name,\n date,\n guid,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM loyalty_widget_two_user_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n guid,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM loyalty_widget_three_user_unpivot\nWHERE value > 0\n),\n\nloyalty_guid_to_store AS (\nSELECT \n merchant_guid,\n app_key\nFROM import_loyalty__merchant\nWHERE is_test_account = 0\nAND LOWER(from_email) NOT LIKE '%yotpo%'\n),\n\nloyalty_store_mapping AS (\nSELECT\n loyalty.product_name,\n loyalty.date,\n store.app_key,\n loyalty.widget_version_type,\n loyalty.action,\n loyalty.widget_element,\n loyalty.metric,\n SUM(loyalty.value) AS value\nFROM loyalty_union AS loyalty\nINNER JOIN loyalty_guid_to_store AS store\nON loyalty.guid = store.merchant_guid\nGROUP BY 1,2,3,4,5,6,7\n),\n\nsubscriptions_union AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n widget_element,\n value\nFROM subs_product_page_widget_event_agg_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n widget_element,\n value\nFROM subs_product_page_widget_user_and_url_agg_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n widget_element,\n value\nFROM subs_subscriptions_customer_portal_user_agg_unpivot\nWHERE value > 0\n),\n\nsubs_mobile_indicator AS (\nSELECT\n subs_union.product_name,\n subs_union.date,\n subs_union.app_key,\n subs_union.widget_version_type,\n subs_union.action,\n subs_union.medium,\n subs_union.source,\n NVL(mobile.is_mobile,1) AS is_mobile,\n subs_union.metric,\n subs_union.widget_element,\n SUM(subs_union.value) AS value\nFROM subscriptions_union AS subs_union\nLEFT JOIN import_pixel_os_family_mobile_mapping AS mobile\n ON subs_union.os_family = mobile.os_family_name\nGROUP BY 1,2,3,4,5,6,7,8,9,10\n),\n\nproducts_union AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n STRING(NULL) AS medium,\n STRING(NULL) AS source,\n SMALLINT(NULL) AS is_mobile,\n metric,\n value\nFROM ugc_union\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n STRING(NULL) AS medium,\n STRING(NULL) AS source,\n SMALLINT(NULL) AS is_mobile,\n metric,\n value\nFROM loyalty_store_mapping\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n medium,\n source,\n is_mobile,\n metric,\n value\nFROM subs_mobile_indicator\n),\n\nstore_pixel_metrics_daily_res AS (\nSELECT\n SHA2(CONCAT(product_name, date, app_key, widget_version_type, action, widget_element, NVL(medium,'~'), NVL(source,'~'), NVL(is_mobile,0), metric),256) AS pixel_metrics_id,\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n medium,\n source,\n is_mobile,\n metric,\n DOUBLE(value) AS value,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM products_union\n)\n\n-- Result --\n\nSELECT *\nFROM store_pixel_metrics_daily_res\n{% if target.name == 'dev' %}\nWHERE date = DATE_SUB(CURRENT_DATE,1)\n{% endif %}", "language": "sql", "refs": [{"name": "analytics___platform_stg__ugc_pixel_widget_v_two", "package": null, "version": null}, {"name": "analytics___platform_stg__ugc_pixel_widget_v_three", "package": null, "version": null}, {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two", "package": null, "version": null}, {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three", "package": null, "version": null}, {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three", "package": null, "version": null}, {"name": "analytics___platform_stg__pixel_duration_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__pixel_os_family_mobile_mapping", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}, {"name": "analytics___platform_stg__ugc_pixel_widget_v_two", "package": null, "version": null}, {"name": "analytics___platform_stg__ugc_pixel_widget_v_three", "package": null, "version": null}, {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two", "package": null, "version": null}, {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three", "package": null, "version": null}, {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three", "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three", "model.yoda.analytics___platform_stg__pixel_duration_mapping", "model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three", "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.sql", "compiled": true, "compiled_code": "\n\n-- import --\n\nWITH current_day_data_existence AS (\nSELECT 1 AS is_current_day_data\nWHERE EXISTS (SELECT * FROM dev_dkruh1.analytics___platform_stg__ugc_pixel_widget_v_two WHERE date = CURRENT_DATE LIMIT 1)\nAND EXISTS (SELECT * FROM dev_dkruh1.analytics___platform_stg__ugc_pixel_widget_v_three WHERE date = CURRENT_DATE LIMIT 1)\nAND EXISTS (SELECT * FROM dev_dkruh1.analytics___platform_stg__loyalty_pixel_widget_v_two WHERE date = CURRENT_DATE LIMIT 1)\nAND EXISTS (SELECT * FROM dev_dkruh1.analytics___platform_stg__loyalty_pixel_widget_v_three WHERE date = CURRENT_DATE LIMIT 1)\nAND EXISTS (SELECT * FROM dev_dkruh1.analytics___platform_stg__subscriptions_pixel_widget_v_three WHERE date = CURRENT_DATE LIMIT 1)\n),\n\nimport_pixel_duration_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_duration_mapping\n),\n\nimport_pixel_os_family_mobile_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_os_family_mobile_mapping\n),\n\nimport_loyalty__merchant AS (\nSELECT *\nFROM dev_dkruh1.analytics___loyalty__merchant\n),\n\nimport_ugc_pixel_widget_v_two AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__ugc_pixel_widget_v_two\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,7) AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n\n),\n\nimport_ugc_pixel_widget_v_three AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__ugc_pixel_widget_v_three\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,7) AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n\n),\n\nimport_loyalty_pixel_widget_v_two AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__loyalty_pixel_widget_v_two\nWHERE date BETWEEN TRUNC(DATE_SUB(CURRENT_DATE,7),'YEAR') AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n\n),\n\nimport_loyalty_pixel_widget_v_three AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__loyalty_pixel_widget_v_three\nWHERE date BETWEEN TRUNC(DATE_SUB(CURRENT_DATE,7),'YEAR') AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n\n),\n\nimport_subscriptions_pixel_widget_v_three AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__subscriptions_pixel_widget_v_three\nWHERE date BETWEEN TRUNC(DATE_SUB(CURRENT_DATE,7),'YEAR') AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n\n),\n\n-- Logic --\n\nugc_widget_two_event_agg AS (\nSELECT\n 'ugc' AS product_name,\n date,\n app_key,\n 2 AS widget_version_type,\n action,\n 'count' AS metric,\n SUM(IF(category = 'questions_widget',1,0)) AS questions_widget,\n SUM(IF(category = 'questions',1,0)) AS questions,\n SUM(IF(category = 'promoted_products',1,0)) AS promoted_products,\n SUM(IF(category = 'star_rating',1,0)) AS star_rating,\n SUM(IF(category = 'reviews',1,0)) AS reviews_widget,\n SUM(CASE WHEN category = 'reviews' AND label = 'vote_up' THEN 1 ELSE 0 END) AS reviews_widget_vote_up,\n SUM(CASE WHEN category = 'reviews' AND label = 'vote_down' THEN 1 ELSE 0 END) AS reviews_widget_vote_down,\n SUM(IF(category = 'filter_reviews',1,0)) AS filter_reviews,\n SUM(CASE WHEN category = 'filter_reviews' AND ((date >= '2022-12-25' AND context_desktop_topics_count > 0) OR context_cta = 'topic') THEN 1 ELSE 0 END) AS filter_reviews_smart_topics,\n SUM(CASE WHEN category = 'filter_reviews' AND \n ((date >= '2022-12-25' AND (context_custom_fields_count > 0 OR context_free_text_included IS NOT NULL))\n OR context_filter_field_type = 'crf') THEN 1 ELSE 0 END) AS filter_reviews_crf,\n SUM(CASE WHEN category = 'filter_reviews' AND context_cta = 'filter_reviews_images' THEN 1 ELSE 0 END) AS filter_reviews_images,\n SUM(IF(label = 'share_published_facebook',1,0)) AS share_published_facebook,\n SUM(IF(label = 'share_published_twitter',1,0)) AS share_published_twitter,\n SUM(IF(label = 'share_published_linkedin',1,0)) AS share_published_linkedin,\n SUM(IF(label IN ('share_published_facebook','share_published_twitter','share_published_linkedin'),1,0)) AS share_published_social,\n SUM(IF(category = 'tab_popup',1,0)) AS reviews_tab,\n SUM(IF(category = 'reviews_dedicated_page',1,0)) AS reviews_seo_page,\n SUM(IF(category = 'reviews_badge',1,0)) AS reviews_badge, \n SUM(IF(category = 'dedicated_page',1,0)) AS reviews_galleries, \n SUM(IF(category = 'dedicated_page_popup',1,0)) AS reviews_galleries_popup, \n SUM(IF(category = 'pictures_widget',1,0)) AS vugc,\n SUM(IF(category = 'pictures_widget_popup',1,0)) AS vugc_popup,\n SUM(IF(category = 'carousel',1,0)) AS carousel\nFROM import_ugc_pixel_widget_v_two\nGROUP BY 2,3,5\n),\n\nugc_widget_two_user_agg AS (\nSELECT\n 'ugc' AS product_name,\n date,\n app_key,\n 2 AS widget_version_type,\n action,\n 'unique user count' AS metric,\n COUNT(DISTINCT IF(category = 'questions_widget',domain_user_id,NULL)) AS questions_widget,\n COUNT(DISTINCT IF(category = 'questions',domain_user_id,NULL)) AS questions,\n COUNT(DISTINCT IF(category = 'promoted_products',domain_user_id,NULL)) AS promoted_products,\n COUNT(DISTINCT IF(category = 'star_rating',domain_user_id,NULL)) AS star_rating,\n COUNT(DISTINCT IF(category = 'reviews',domain_user_id,NULL)) AS reviews_widget,\n COUNT(DISTINCT IF(category = 'reviews' AND label = 'vote_up',domain_user_id,NULL)) AS reviews_widget_vote_up,\n COUNT(DISTINCT IF(category = 'reviews' AND label = 'vote_down',domain_user_id,NULL)) AS reviews_widget_vote_down,\n COUNT(DISTINCT IF(category = 'filter_reviews',domain_user_id,NULL)) AS filter_reviews,\n COUNT(DISTINCT CASE WHEN category = 'filter_reviews' AND ((date >= '2022-12-25' AND context_desktop_topics_count > 0) OR context_cta = 'topic') THEN domain_user_id END) AS filter_reviews_smart_topics,\n COUNT(DISTINCT CASE WHEN category = 'filter_reviews' AND \n ((date >= '2022-12-25' AND (context_custom_fields_count > 0 OR context_free_text_included IS NOT NULL))\n OR context_filter_field_type = 'crf') THEN domain_user_id END) AS filter_reviews_crf,\n COUNT(DISTINCT IF(category = 'filter_reviews' AND context_cta = 'filter_reviews_images',domain_user_id,NULL)) AS filter_reviews_images,\n COUNT(DISTINCT IF(label = 'share_published_facebook',domain_user_id,NULL)) AS share_published_facebook,\n COUNT(DISTINCT IF(label = 'share_published_twitter',domain_user_id,NULL)) AS share_published_twitter,\n COUNT(DISTINCT IF(label = 'share_published_linkedin',domain_user_id,NULL)) AS share_published_linkedin,\n COUNT(DISTINCT IF(label IN ('share_published_facebook','share_published_twitter','share_published_linkedin'),domain_user_id,NULL)) AS share_published_social,\n COUNT(DISTINCT IF(category = 'tab_popup',domain_user_id,NULL)) AS reviews_tab,\n COUNT(DISTINCT IF(category = 'reviews_dedicated_page',domain_user_id,NULL)) AS reviews_seo_page,\n COUNT(DISTINCT IF(category = 'reviews_badge',domain_user_id,NULL)) AS reviews_badge, \n COUNT(DISTINCT IF(category = 'dedicated_page',domain_user_id,NULL)) AS reviews_galleries, \n COUNT(DISTINCT IF(category = 'dedicated_page_popup',domain_user_id,NULL)) AS reviews_galleries_popup, \n COUNT(DISTINCT IF(category = 'pictures_widget',domain_user_id,NULL)) AS vugc,\n COUNT(DISTINCT IF(category = 'pictures_widget_popup',domain_user_id,NULL)) AS vugc_popup,\n COUNT(DISTINCT IF(category = 'carousel',domain_user_id,NULL)) AS carousel\nFROM import_ugc_pixel_widget_v_two\nGROUP BY 2,3,5\n),\n\nugc_widget_three_event_agg AS (\nSELECT\n 'ugc' AS product_name,\n date,\n app_key,\n 3 AS widget_version_type,\n action,\n 'count' AS metric,\n SUM(CASE WHEN category = 'questions-and-answers-widget' AND context_widget_placement = 'standalone' THEN 1 ELSE 0 END) AS questions_widget,\n SUM(CASE WHEN category = 'questions-and-answers-widget' AND context_widget_placement = 'embedded' THEN 1 ELSE 0 END) AS questions,\n SUM(IF(category = 'star-ratings-widget',1,0)) AS star_rating,\n SUM(IF(category = 'reviews-main-widget',1,0)) AS reviews_widget,\n SUM(CASE WHEN category = 'reviews-main-widget' AND label = 'filters' THEN 1 ELSE 0 END) AS filter_reviews,\n SUM(CASE WHEN category = 'reviews-main-widget' AND label = 'filters' AND context_custom_questions > 0 THEN 1 ELSE 0 END) AS filter_reviews_crf,\n SUM(CASE WHEN category = 'reviews-main-widget' AND label = 'filters' AND context_smart_topics > 0 THEN 1 ELSE 0 END) AS filter_reviews_smart_topics\nFROM import_ugc_pixel_widget_v_three\nGROUP BY 2,3,5\n),\n\nugc_widget_three_user_agg AS (\nSELECT\n 'ugc' AS product_name,\n date,\n app_key,\n 3 AS widget_version_type,\n action,\n 'unique user count' AS metric,\n COUNT(DISTINCT IF(category = 'questions-and-answers-widget' AND context_widget_placement = 'standalone',domain_user_id,NULL)) AS questions_widget,\n COUNT(DISTINCT IF(category = 'questions-and-answers-widget' AND context_widget_placement = 'embedded',domain_user_id,NULL)) AS questions,\n COUNT(DISTINCT IF(category = 'star-ratings-widget',domain_user_id,NULL)) star_rating,\n COUNT(DISTINCT IF(category = 'reviews-main-widget',domain_user_id,NULL)) reviews_widget,\n COUNT(DISTINCT IF(category = 'reviews-main-widget' AND label = 'filters',domain_user_id,NULL)) AS filter_reviews,\n COUNT(DISTINCT IF(category = 'reviews-main-widget' AND label = 'filters' AND context_custom_questions > 0,domain_user_id,NULL)) AS filter_reviews_crf,\n COUNT(DISTINCT IF(category = 'reviews-main-widget' AND label = 'filters' AND context_smart_topics > 0,domain_user_id,NULL)) AS filter_reviews_smart_topics\nFROM import_ugc_pixel_widget_v_three\nGROUP BY 2,3,5\n),\n\nugc_widget_three_duration AS (\nSELECT\n 'ugc' AS product_name,\n widget.date,\n widget.app_key,\n 3 AS widget_version_type,\n widget.action,\n COALESCE(mapping.metric,'unknown') AS metric,\n CASE WHEN widget.category = 'questions-and-answers-widget' AND widget.context_widget_placement = 'standalone' THEN 'questions_widget'\n WHEN widget.category = 'questions-and-answers-widget' AND widget.context_widget_placement = 'embedded' THEN 'questions'\n WHEN widget.category = 'star-ratings-widget' THEN 'star_rating'\n WHEN widget.category = 'reviews-main-widget' THEN 'reviews_widget' END AS widget_element,\n COUNT(*) AS value\nFROM import_ugc_pixel_widget_v_three AS widget\nLEFT JOIN import_pixel_duration_mapping AS mapping\nON widget.context_duration_time_from_widget_mark_in_sec >= mapping.from_seconds\nAND widget.context_duration_time_from_widget_mark_in_sec < COALESCE(mapping.to_seconds, widget.context_duration_time_from_widget_mark_in_sec+1)\nWHERE widget.context_duration_time_from_widget_mark_in_sec > 0\nGROUP BY 2,3,5,6,7\n),\n\nugc_widget_two_event_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n metric,\n STACK(23,\n 'questions_widget', SUM(questions_widget),\n 'questions', SUM(questions),\n 'promoted_products', SUM(promoted_products),\n 'star_rating', SUM(star_rating),\n 'reviews_widget', SUM(reviews_widget),\n 'reviews_widget_vote_up', SUM(reviews_widget_vote_up),\n 'reviews_widget_vote_down', SUM(reviews_widget_vote_down),\n 'filter_reviews', SUM(filter_reviews),\n 'filter_reviews_smart_topics', SUM(filter_reviews_smart_topics),\n 'filter_reviews_crf', SUM(filter_reviews_crf),\n 'filter_reviews_images', SUM(filter_reviews_images),\n 'share_published_facebook', SUM(share_published_facebook),\n 'share_published_twitter', SUM(share_published_twitter),\n 'share_published_linkedin', SUM(share_published_linkedin),\n 'share_published_social', SUM(share_published_social),\n 'reviews_tab', SUM(reviews_tab),\n 'reviews_seo_page', SUM(reviews_seo_page),\n 'reviews_badge', SUM(reviews_badge),\n 'reviews_galleries', SUM(reviews_galleries),\n 'reviews_galleries_popup', SUM(reviews_galleries_popup),\n 'vugc', SUM(vugc),\n 'vugc_popup', SUM(vugc_popup),\n 'carousel', SUM(carousel)\n ) AS (widget_element, value)\nFROM ugc_widget_two_event_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nugc_widget_two_user_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n metric,\n STACK(23,\n 'questions_widget', SUM(questions_widget),\n 'questions', SUM(questions),\n 'promoted_products', SUM(promoted_products),\n 'star_rating', SUM(star_rating),\n 'reviews_widget', SUM(reviews_widget),\n 'reviews_widget_vote_up', SUM(reviews_widget_vote_up),\n 'reviews_widget_vote_down', SUM(reviews_widget_vote_down),\n 'filter_reviews', SUM(filter_reviews),\n 'filter_reviews_smart_topics', SUM(filter_reviews_smart_topics),\n 'filter_reviews_crf', SUM(filter_reviews_crf),\n 'filter_reviews_images', SUM(filter_reviews_images),\n 'share_published_facebook', SUM(share_published_facebook),\n 'share_published_twitter', SUM(share_published_twitter),\n 'share_published_linkedin', SUM(share_published_linkedin),\n 'share_published_social', SUM(share_published_social),\n 'reviews_tab', SUM(reviews_tab),\n 'reviews_seo_page', SUM(reviews_seo_page),\n 'reviews_badge', SUM(reviews_badge),\n 'reviews_galleries', SUM(reviews_galleries),\n 'reviews_galleries_popup', SUM(reviews_galleries_popup),\n 'vugc', SUM(vugc),\n 'vugc_popup', SUM(vugc_popup),\n 'carousel', SUM(carousel)\n ) AS (widget_element, value)\nFROM ugc_widget_two_user_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nugc_widget_three_event_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n metric,\n STACK(7,\n 'questions_widget', SUM(questions_widget),\n 'questions', SUM(questions),\n 'star_rating', SUM(star_rating),\n 'reviews_widget', SUM(reviews_widget),\n 'filter_reviews', SUM(filter_reviews),\n 'filter_reviews_crf', SUM(filter_reviews_crf),\n 'filter_reviews_smart_topics', SUM(filter_reviews_smart_topics)\n ) AS (widget_element, value)\nFROM ugc_widget_three_event_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nugc_widget_three_user_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n metric,\n STACK(7,\n 'questions_widget', SUM(questions_widget),\n 'questions', SUM(questions),\n 'star_rating', SUM(star_rating),\n 'reviews_widget', SUM(reviews_widget),\n 'filter_reviews', SUM(filter_reviews),\n 'filter_reviews_crf', SUM(filter_reviews_crf),\n 'filter_reviews_smart_topics', SUM(filter_reviews_smart_topics)\n ) AS (widget_element, value)\nFROM ugc_widget_three_user_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nloyalty_widget_two_user_agg AS (\nSELECT\n 'loyalty' AS product_name,\n date,\n guid,\n 2 AS widget_version_type,\n action,\n 'unique user count' AS metric,\n COUNT(DISTINCT IF(category = 'referral-widget-page',domain_user_id,NULL)) AS referral_widget_page,\n COUNT(DISTINCT IF(category = 'offline-redemptions-widget',domain_user_id,NULL)) AS offline_redemptions_widget\nFROM import_loyalty_pixel_widget_v_two\nGROUP BY 1,2,3,4,5,6\n),\n\nloyalty_widget_three_user_agg AS (\nSELECT\n 'loyalty' AS product_name,\n date,\n guid,\n 3 AS widget_version_type,\n action,\n 'unique user count' AS metric,\n COUNT(DISTINCT CASE WHEN category = 'share-product-widget' THEN domain_user_id END) AS share_product_widget, \n COUNT(DISTINCT CASE WHEN category = 'lr-coming-soon' THEN domain_user_id END) AS lr_coming_soon_widget,\n COUNT(DISTINCT CASE WHEN category = 'visual-redemption-widget' THEN domain_user_id END) AS visual_redemption_widget,\n COUNT(DISTINCT CASE WHEN category = 'referred-friend' THEN domain_user_id END) AS referred_friend_widget,\n COUNT(DISTINCT CASE WHEN category = 'products-redemption-widget' THEN domain_user_id END) AS products_redemption_widget,\n COUNT(DISTINCT CASE WHEN category = 'hero-section' THEN domain_user_id END) AS hero_section_widget,\n COUNT(DISTINCT CASE WHEN category = 'checkout-redemptions-widget' THEN domain_user_id END) AS checkout_redemptions_widget,\n COUNT(DISTINCT CASE WHEN category = 'checkout-variable-widget' THEN domain_user_id END) AS checkout_variable_widget,\n COUNT(DISTINCT CASE WHEN category = 'vip-tiers-widget' THEN domain_user_id END) AS vip_tiers,\n COUNT(DISTINCT CASE WHEN category = 'referral-widget-page' THEN domain_user_id END) AS referral_widget_page,\n COUNT(DISTINCT CASE WHEN category = 'loyalty-floater-widget' THEN domain_user_id END) AS sticky_bar_widget,\n COUNT(DISTINCT CASE WHEN category = 'loyalty-floater-widget' AND property = 'get_reward_button_clicked' THEN domain_user_id END) AS sticky_bar_get_reward,\n COUNT(DISTINCT CASE WHEN category = 'loyalty-floater-widget' AND property = 'redemption_completed' THEN domain_user_id END) AS sticky_bar_redemption_completed,\n COUNT(DISTINCT CASE WHEN category = 'campaigns-widget' THEN domain_user_id END) AS campaign_widget,\n COUNT(DISTINCT CASE WHEN category = 'widget-coupons-redemption' THEN domain_user_id END) AS coupons_redemption_widget,\n COUNT(DISTINCT CASE WHEN category = 'loyalty-page' THEN domain_user_id END) AS rewards_page_widget,\n COUNT(DISTINCT CASE WHEN category = 'my-rewards-widget' THEN domain_user_id END) AS my_loyalty_widget\nFROM import_loyalty_pixel_widget_v_three\nGROUP BY 1,2,3,4,5,6\n),\n\nloyalty_widget_two_user_unpivot AS (\nSELECT\n product_name,\n date,\n guid,\n widget_version_type,\n action,\n metric,\n STACK(2,\n 'referral_widget_page', SUM(referral_widget_page),\n 'offline_redemptions_widget', SUM(offline_redemptions_widget)\n ) AS (widget_element, value)\nFROM loyalty_widget_two_user_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nloyalty_widget_three_user_unpivot AS (\nSELECT\n product_name,\n date,\n guid,\n widget_version_type,\n action,\n metric,\n STACK(17,\n 'share_product_widget', SUM(share_product_widget),\n 'lr_coming_soon_widget', SUM(lr_coming_soon_widget),\n 'visual_redemption_widget', SUM(visual_redemption_widget),\n 'referred_friend_widget', SUM(referred_friend_widget),\n 'products_redemption_widget', SUM(products_redemption_widget),\n 'hero_section_widget', SUM(hero_section_widget),\n 'checkout_redemptions_widget', SUM(checkout_redemptions_widget),\n 'checkout_variable_widget', SUM(checkout_variable_widget),\n 'vip_tiers', SUM(vip_tiers),\n 'referral_widget_page', SUM(referral_widget_page),\n 'sticky_bar_widget', SUM(sticky_bar_widget),\n 'sticky_bar_get_reward', SUM(sticky_bar_get_reward),\n 'sticky_bar_redemption_completed', SUM(sticky_bar_redemption_completed),\n 'campaign_widget', SUM(campaign_widget),\n 'coupons_redemption_widget', SUM(coupons_redemption_widget),\n 'rewards_page_widget', SUM(rewards_page_widget),\n 'my_loyalty_widget', SUM(my_loyalty_widget)\n ) AS (widget_element, value)\nFROM loyalty_widget_three_user_agg\nGROUP BY 1,2,3,4,5,6\n),\n\nsubs_product_page_widget_event_agg AS (\nSELECT\n 'subscriptions' AS product_name,\n date,\n app_key,\n 3 AS widget_version_type,\n action,\n medium,\n source,\n os_family,\n 'count' AS metric, \n COUNT(*) AS subscriptions_frequency_option\nFROM import_subscriptions_pixel_widget_v_three\nWHERE LOWER(category) = 'product-page-widget'\nAND LOWER(action) = 'clicked_on' \nAND LOWER(label) IS NULL\nGROUP BY 2,3,5,6,7,8\n),\n\nsubs_product_page_widget_user_and_url_agg AS (\nSELECT\n 'subscriptions' AS product_name,\n date,\n app_key,\n 3 AS widget_version_type,\n action,\n medium,\n source,\n os_family,\n 'unique user url count' AS metric,\n COUNT(DISTINCT CASE WHEN LOWER(action) = 'loaded' AND LOWER(label) IS NULL THEN calculated_user_and_url_id END) AS subscriptions_product_page_widget,\n COUNT(DISTINCT CASE WHEN LOWER(action) = 'clicked_on' AND LOWER(label) IS NULL THEN calculated_user_and_url_id END) AS subscriptions_frequency_option,\n COUNT(DISTINCT CASE WHEN LOWER(action) = 'clicked_on' AND LOWER(label) = 'add_to_cart' THEN calculated_user_and_url_id END) AS add_to_cart\nFROM import_subscriptions_pixel_widget_v_three AS pixel\nWHERE LOWER(category) = 'product-page-widget'\nGROUP BY 2,3,5,6,7,8\n),\n\nsubs_subscriptions_customer_portal_user_agg AS (\nSELECT\n 'subscriptions' AS product_name,\n date,\n app_key,\n 3 AS widget_version_type,\n action,\n medium,\n source,\n os_family,\n 'unique user count' AS metric,\n COUNT(DISTINCT domain_user_id) AS subscriptions_customer_portal\nFROM import_subscriptions_pixel_widget_v_three AS pixel\nWHERE LOWER(category) = 'subscriptions-customer-portal'\nAND LOWER(action) = 'loaded'\nGROUP BY 2,3,5,6,7,8\n),\n\nsubs_product_page_widget_event_agg_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n STACK(1,\n 'subscriptions_frequency_option', SUM(subscriptions_frequency_option)\n ) AS (widget_element, value)\nFROM subs_product_page_widget_event_agg\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\nsubs_product_page_widget_user_and_url_agg_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n STACK(3,\n 'subscriptions_product_page_widget', SUM(subscriptions_product_page_widget),\n 'subscriptions_frequency_option', SUM(subscriptions_frequency_option),\n 'add_to_cart', SUM(add_to_cart)\n ) AS (widget_element, value)\nFROM subs_product_page_widget_user_and_url_agg\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\nsubs_subscriptions_customer_portal_user_agg_unpivot AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n STACK(1,\n 'subscriptions_customer_portal', SUM(subscriptions_customer_portal)\n ) AS (widget_element, value)\nFROM subs_subscriptions_customer_portal_user_agg\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\nugc_union AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM ugc_widget_three_duration\nWHERE widget_element IS NOT NULL\nAND value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM ugc_widget_two_event_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM ugc_widget_two_user_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM ugc_widget_three_event_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM ugc_widget_three_user_unpivot\nWHERE value > 0\n),\n\nloyalty_union AS (\nSELECT\n product_name,\n date,\n guid,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM loyalty_widget_two_user_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n guid,\n widget_version_type,\n action,\n widget_element,\n metric,\n value\nFROM loyalty_widget_three_user_unpivot\nWHERE value > 0\n),\n\nloyalty_guid_to_store AS (\nSELECT \n merchant_guid,\n app_key\nFROM import_loyalty__merchant\nWHERE is_test_account = 0\nAND LOWER(from_email) NOT LIKE '%yotpo%'\n),\n\nloyalty_store_mapping AS (\nSELECT\n loyalty.product_name,\n loyalty.date,\n store.app_key,\n loyalty.widget_version_type,\n loyalty.action,\n loyalty.widget_element,\n loyalty.metric,\n SUM(loyalty.value) AS value\nFROM loyalty_union AS loyalty\nINNER JOIN loyalty_guid_to_store AS store\nON loyalty.guid = store.merchant_guid\nGROUP BY 1,2,3,4,5,6,7\n),\n\nsubscriptions_union AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n widget_element,\n value\nFROM subs_product_page_widget_event_agg_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n widget_element,\n value\nFROM subs_product_page_widget_user_and_url_agg_unpivot\nWHERE value > 0\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n medium,\n source,\n os_family,\n metric,\n widget_element,\n value\nFROM subs_subscriptions_customer_portal_user_agg_unpivot\nWHERE value > 0\n),\n\nsubs_mobile_indicator AS (\nSELECT\n subs_union.product_name,\n subs_union.date,\n subs_union.app_key,\n subs_union.widget_version_type,\n subs_union.action,\n subs_union.medium,\n subs_union.source,\n NVL(mobile.is_mobile,1) AS is_mobile,\n subs_union.metric,\n subs_union.widget_element,\n SUM(subs_union.value) AS value\nFROM subscriptions_union AS subs_union\nLEFT JOIN import_pixel_os_family_mobile_mapping AS mobile\n ON subs_union.os_family = mobile.os_family_name\nGROUP BY 1,2,3,4,5,6,7,8,9,10\n),\n\nproducts_union AS (\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n STRING(NULL) AS medium,\n STRING(NULL) AS source,\n SMALLINT(NULL) AS is_mobile,\n metric,\n value\nFROM ugc_union\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n STRING(NULL) AS medium,\n STRING(NULL) AS source,\n SMALLINT(NULL) AS is_mobile,\n metric,\n value\nFROM loyalty_store_mapping\nUNION ALL\nSELECT\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n medium,\n source,\n is_mobile,\n metric,\n value\nFROM subs_mobile_indicator\n),\n\nstore_pixel_metrics_daily_res AS (\nSELECT\n SHA2(CONCAT(product_name, date, app_key, widget_version_type, action, widget_element, NVL(medium,'~'), NVL(source,'~'), NVL(is_mobile,0), metric),256) AS pixel_metrics_id,\n product_name,\n date,\n app_key,\n widget_version_type,\n action,\n widget_element,\n medium,\n source,\n is_mobile,\n metric,\n DOUBLE(value) AS value,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM products_union\n)\n\n-- Result --\n\nSELECT *\nFROM store_pixel_metrics_daily_res\n\nWHERE date = DATE_SUB(CURRENT_DATE,1)\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_plan_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_plan_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.sql", "unique_id": "model.yoda.analytics___platform__store_plan_daily", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_plan_daily", "analytics___platform__store_plan_daily"], "alias": "analytics___platform__store_plan_daily", "checksum": {"name": "sha256", "checksum": "d4197196625d6affffe5d16c4e01904e0f97a50a1d4f5e28c29e4264c9a877af"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["date", "app_key", "product_family"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Daily aggregated table for store product plan daily.\nGranularity: date|app_key|product_family", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_created_date": {"name": "store_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "plan_id based on priority logic", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "plan_name": {"name": "plan_name", "description": "plan_name based on priority logic", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_self_service": {"name": "is_self_service", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "indicator = 1 when is_self_service = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sms_plan_id": {"name": "sms_plan_id", "description": "FK: plan_id in analytics___sms_stg__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyalty_plan_id": {"name": "loyalty_plan_id", "description": "FK: plan_id in loyalty_stg__plans", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overlapping_plan_name_list": {"name": "overlapping_plan_name_list", "description": "list of all plans order by product_plan_rank that have been registered for this date,app_key,product_family", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "overlapping_plan_cnt": {"name": "overlapping_plan_cnt", "description": "count distinct plans that have been registered for this date,app_key,product_family", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sms_plan_map": {"name": "sms_plan_map", "description": "plan from sms db analytics___sms__store_plan_daily", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map"}, "loyalty_plan_map": {"name": "loyalty_plan_map", "description": "plan from loyalty db analytics___loyalty__merchant_plan_daily", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map"}, "platform_plan_map": {"name": "platform_plan_map", "description": "plan from platform db analytics___platform__platform_store_plan_over_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map"}, "zuora_plan_map": {"name": "zuora_plan_map", "description": "plan from zuora analytics___finance__zuora_organization_plan_rank_daily", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map"}, "static_plan_map": {"name": "static_plan_map", "description": "plan from static saas analytics___platform_stg__saas_organization_daily_history", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "incremental_strategy": "merge", "unique_key": ["date", "app_key", "product_family"], "partition_by": ["date"]}, "created_at": 1700082646.1960714, "relation_name": "dev_dkruh1.analytics___platform__store_plan_daily", "raw_code": "{{ config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'merge',\n unique_key = ['date','app_key','product_family'],\n partition_by = ['date']\n )\n}}\n\n-- Import --\n\nWITH import_calendar AS (\nSELECT date\nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date < CURRENT_DATE\n{% if is_incremental() %}\nAND date > (SELECT DATE_SUB(MAX(date),7) FROM {{ this }})\n{% endif %}\n),\n\nimport_saas_organization_daily_history AS (\nSELECT * FROM {{ ref('analytics___platform_stg__saas_organization_daily_history') }}\n),\n\nimport_zuora_organization_plan_rank_daily AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_organization_plan_rank_daily') }} \n),\n\nimport_platform_store_plan_over_time AS (\nSELECT * FROM {{ ref('analytics___platform__platform_store_plan_over_time') }} \n),\n\nimport_sms_store_plan_daily AS (\nSELECT * FROM {{ ref('analytics___sms__store_plan_daily') }}\n),\n\nimport_loyalty_merchant_plan_daily AS (\nSELECT * FROM {{ ref('analytics___loyalty__merchant_plan_daily') }}\n),\n\nimport_platform__store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_platform__plan AS (\nSELECT * FROM {{ ref('analytics___platform__plan') }}\n),\n\nimport_zuora__account AS (\nSELECT * FROM {{ ref('analytics___finance__zuora_account') }}\n),\n\nimport_salesforce__opportunity AS (\nSELECT * FROM {{ ref('analytics___salesforce__opportunity') }}\n),\n\nimport_salesforce__opportunity_line_item AS (\nSELECT * FROM {{ ref('analytics___salesforce__opportunity_line_item') }}\n),\n\nimport_salesforce__account AS (\nSELECT * FROM {{ ref('analytics___salesforce__account') }}\n),\n\n-- Logic --\n\nzuora_org_test_ind AS (\nSELECT\n organization_key,\n IFNULL(MAX(is_test_account),0) AS is_test_org\nFROM import_zuora__account\nWHERE is_deleted = 0\nGROUP BY 1\n),\n\norg_product_poc_daily AS (\nSELECT\n calendar.date,\n act.organization_key,\n item.line_item_product AS product_family,\n SORT_ARRAY(COLLECT_SET(opp.opportunity_id)) AS opportunity_id_array\nFROM import_salesforce__opportunity AS opp\nINNER JOIN import_salesforce__account AS act \n ON opp.account_id = act.account_id \nINNER JOIN import_salesforce__opportunity_line_item AS item \n ON opp.opportunity_id = item.opportunity_id \nINNER JOIN import_calendar AS calendar\n ON opp.start_date <= calendar.date\n AND IFNULL(opp.actual_end_date,contract_renewal_date) > calendar.date\nWHERE act.is_test_account = 0\nAND act.is_deleted_account = 0\nAND opp.is_deleted = 0\nAND item.is_deleted = 0\nAND act.organization_key IS NOT NULL\nAND LOWER(opp.type) = 'poc'\nAND LOWER(opp.stage) = 'won - sale'\nAND LOWER(item.line_item_product) <> 'ps'\nGROUP BY 1,2,3\n),\n\nsaas_static_store_daily AS (\nSELECT \n saas_static.date,\n store.app_key,\n saas_static.product_family,\n saas_static.plan_id,\n saas_static.plan_name,\n NULL AS product_plan_id,\n saas_static.is_self_service,\n saas_static.is_free,\n saas_static.is_annual AS is_full_service,\n 'static saas' AS source_name,\n NULL AS plan_name_array\nFROM import_saas_organization_daily_history AS saas_static\nINNER JOIN import_platform__store AS store\n ON saas_static.organization_key = store.organization_key\nINNER JOIN import_calendar\n ON saas_static.date = import_calendar.date\nWHERE store.store_created_date <= saas_static.date\n),\n\nzuora_store_daily AS (\nSELECT \n org.date,\n store.app_key,\n org.product_family,\n org.plan_id,\n org.plan_name,\n NULL AS product_plan_id,\n org.is_ss AS is_self_service,\n org.is_free,\n IF(org.is_ss = 0 AND org.is_free = 0,1,0) AS is_full_service,\n 'zuora' AS source_name,\n IF(SIZE(plan_name_array) > 1, plan_name_array, NULL) AS plan_name_array\nFROM import_zuora_organization_plan_rank_daily AS org\nINNER JOIN import_platform__store AS store\n ON org.organization_key = store.organization_key\nINNER JOIN import_calendar\n ON org.date = import_calendar.date\nWHERE store.store_created_date <= org.date\nAND org.is_core_plan = 1\nAND org.plan_rank = 1\n),\n\nsms_store_plan_daily AS (\nSELECT\n sms_daily.date,\n app_key,\n 'SMS' AS product_family,\n CASE WHEN (plan_id BETWEEN 1 and 7)\n OR (plan_id BETWEEN 18 and 20)\n OR (plan_id = 31) THEN 100\n WHEN plan_id IN (8,9,11,12,14,15,16,17,21,22,24,25,27,28,29,30) THEN 101\n WHEN plan_id IN (10,13,23,26) THEN 102\n END AS plan_id,\n plan_name,\n plan_id AS product_plan_id,\n IF(LOWER(plan_type_group) = 'self_service',1,0) AS is_self_service,\n IF(LOWER(plan_type_group) = 'free',1,0) AS is_free,\n IF(LOWER(plan_type_group) = 'high_touch',1,0) AS is_full_service,\n 'sms db' AS source_name,\n NULL AS plan_name_array\nFROM import_sms_store_plan_daily AS sms_daily\nINNER JOIN import_calendar\n ON sms_daily.date = import_calendar.date\n),\n\nloyalty_daily_w_plan AS (\nSELECT\n date,\n app_key,\n 'Loyalty' AS product_family,\n CASE\n WHEN plan_id = 0 THEN 141\n WHEN plan_id = 1 THEN 43\n WHEN plan_id = 2 THEN 143\n WHEN plan_id = 3 THEN 144\n WHEN plan_id = 4 THEN 76\n WHEN plan_id = 5 THEN 142\n ELSE plan_id\n END AS plan_id,\n CASE\n WHEN plan_id = 0 THEN 'Loyalty - Free'\n WHEN plan_id = 1 THEN 'Swell Bronze'\n WHEN plan_id = 2 THEN 'Loyalty - Silver'\n WHEN plan_id = 3 THEN 'Loyalty - Gold'\n WHEN plan_id = 4 THEN 'Loyalty - Platinum'\n WHEN plan_id = 5 THEN 'Loyalty - Enterprise'\n ELSE plan_name\n END AS plan_name,\n plan_id AS product_plan_id\nFROM import_loyalty_merchant_plan_daily\n),\n\nloyalty_store_plan_daily AS (\nSELECT\n store.date,\n store.app_key,\n store.product_family,\n store.plan_id,\n store.plan_name,\n store.product_plan_id,\n plan.is_ss AS is_self_service,\n plan.is_free,\n IF(plan.is_ss = 0 AND plan.is_free = 0,1,0) AS is_full_service,\n 'loyalty db' AS source_name,\n NULL AS plan_name_array\nFROM loyalty_daily_w_plan AS store\nINNER JOIN import_platform__plan AS plan\n ON plan.plan_id = store.plan_id\nINNER JOIN import_calendar\n ON store.date = import_calendar.date\n),\n\nsource_platform_store_daily AS (\nSELECT\n date,\n app_key,\n product_family,\n plan_id,\n plan_name,\n is_self_service,\n is_free,\n is_core_plan,\n store_plan_source,\n ROW_NUMBER() OVER(PARTITION BY date,app_key,product_family,is_core_plan ORDER BY store_plan_source_rank, plan_name) AS plan_rank\nFROM import_platform_store_plan_over_time AS platform\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= DATE(platform.from_time)\n AND calendar.date < DATE(platform.to_time)\nWHERE store_created_date <= calendar.date\n),\n\nplatform_store_daily AS (\nSELECT \n date,\n app_key,\n product_family,\n plan_id,\n plan_name,\n NULL AS product_plan_id,\n is_self_service,\n is_free,\n IF(is_self_service = 0 AND is_free = 0,1,0) AS is_full_service,\n 'platform' AS source_name,\n NULL AS plan_name_array\nFROM source_platform_store_daily\nWHERE plan_rank = 1\nAND is_core_plan = 1\n),\n\nunion_source_store_plan_daily AS (\nSELECT *\nFROM saas_static_store_daily\nUNION ALL\nSELECT *\nFROM zuora_store_daily\nUNION ALL\nSELECT *\nFROM sms_store_plan_daily\nUNION ALL\nSELECT *\nFROM loyalty_store_plan_daily\nUNION ALL\nSELECT *\nFROM platform_store_daily\n),\n\nstore_product_daily_plan_map AS (\nSELECT \n plan.date,\n plan.app_key,\n store.store_created_date,\n store.organization_key,\n IF(LOWER(plan.product_family) = 'email marketing','Email',plan.product_family) AS product_family,\n FIRST(IF(plan.source_name = 'sms db',\n MAP(\"plan_id\",plan.plan_id,\"plan_name\",plan.plan_name,\"product_plan_id\",plan.product_plan_id,\"is_self_service\",plan.is_self_service,\"is_free\",plan.is_free,\"is_full_service\",plan.is_full_service),NULL),TRUE) AS sms_plan_map,\n FIRST(IF(plan.source_name = 'loyalty db',\n MAP(\"plan_id\",plan.plan_id,\"plan_name\",plan.plan_name,\"product_plan_id\",plan.product_plan_id,\"is_self_service\",plan.is_self_service,\"is_free\",plan.is_free,\"is_full_service\",plan.is_full_service),NULL),TRUE) AS loyalty_plan_map,\n FIRST(IF(plan.source_name = 'platform',\n MAP(\"plan_id\",plan.plan_id,\"plan_name\",plan.plan_name,\"is_self_service\",plan.is_self_service,\"is_free\",plan.is_free,\"is_full_service\",plan.is_full_service),NULL),TRUE) AS platform_plan_map,\n FIRST(IF(plan.source_name = 'zuora',\n MAP(\"plan_id\",plan.plan_id,\"plan_name\",plan.plan_name,\"is_self_service\",plan.is_self_service,\"is_free\",plan.is_free,\"is_full_service\",plan.is_full_service,\"plan_name_list\",concat_ws(',',plan.plan_name_array),\"plan_name_list_size\",SIZE(plan.plan_name_array)),NULL),TRUE) AS zuora_plan_map,\n FIRST(IF(plan.source_name = 'static saas',\n MAP(\"plan_id\",plan.plan_id,\"plan_name\",plan.plan_name,\"is_self_service\",plan.is_self_service,\"is_free\",plan.is_free,\"is_full_service\",plan.is_full_service),NULL),TRUE) AS static_plan_map\nFROM union_source_store_plan_daily AS plan\nINNER JOIN import_platform__store AS store\n ON plan.app_key = store.app_key\nWHERE store.store_created_date <= plan.date\nGROUP BY 1,2,3,4,5\n),\n\nstore_product_main_plan_map AS (\nSELECT \n date,\n app_key,\n store_created_date,\n organization_key,\n product_family,\n CASE WHEN LOWER(product_family) = 'sms' THEN sms_plan_map\n WHEN LOWER(product_family) = 'loyalty' THEN COALESCE(IF(LOWER(platform_plan_map.plan_name) <> 'loyalty - low touch',platform_plan_map,NULL),loyalty_plan_map,zuora_plan_map,static_plan_map)\n ELSE COALESCE(platform_plan_map,zuora_plan_map,static_plan_map)\n END AS main_plan_map,\n sms_plan_map,\n loyalty_plan_map,\n platform_plan_map,\n zuora_plan_map,\n static_plan_map\nFROM store_product_daily_plan_map\n),\n\nstore_product_plan_daily AS (\nSELECT\n store.date,\n store.app_key,\n store.store_created_date,\n store.organization_key,\n store.product_family,\n INT(store.main_plan_map.plan_id) AS plan_id,\n store.main_plan_map.plan_name AS plan_name,\n SMALLINT(IF(store.main_plan_map.is_free=1,1,store.main_plan_map.is_self_service)) AS is_self_service,\n SMALLINT(IF(INT(store.main_plan_map.plan_id)=43,1,store.main_plan_map.is_free)) AS is_free, -- Loyalty BRONZE is actually free plan\n SMALLINT(store.main_plan_map.is_full_service) AS is_full_service,\n BIGINT(sms_plan_map.product_plan_id) AS sms_plan_id,\n BIGINT(loyalty_plan_map.product_plan_id) AS loyalty_plan_id,\n NULLIF(zuora_plan_map.plan_name_list,'') AS overlapping_plan_name_list,\n NVL(IF(zuora_plan_map.plan_name_list_size = -1,0,zuora_plan_map.plan_name_list_size),0) AS overlapping_plan_cnt,\n SMALLINT(plan.is_reviews) AS is_reviews,\n SMALLINT(plan.is_loyalty) AS is_loyalty,\n SMALLINT(plan.is_vms) AS is_vms,\n SMALLINT(plan.is_subscriptions) AS is_subscriptions,\n SMALLINT(plan.is_sms) AS is_sms,\n SMALLINT(plan.is_email) AS is_email,\n store.sms_plan_map,\n store.loyalty_plan_map,\n store.platform_plan_map,\n store.zuora_plan_map,\n store.static_plan_map,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM store_product_main_plan_map AS store\nINNER JOIN import_platform__plan AS plan\n ON store.main_plan_map.plan_id = plan.plan_id\nLEFT JOIN zuora_org_test_ind AS zuora_org_test\n ON store.organization_key = zuora_org_test.organization_key\nLEFT JOIN import_platform__store AS platform_store\n ON store.app_key = platform_store.app_key\nLEFT JOIN org_product_poc_daily AS poc\n ON store.organization_key = poc.organization_key\n AND store.product_family = poc.product_family\n AND store.date = poc.date\nWHERE main_plan_map.plan_name IS NOT NULL\nAND COALESCE(zuora_org_test.is_test_org, platform_store.is_test, 0) = 0\nAND poc.organization_key IS NULL -- Filtering out all the POC products (there is a plan for these orgs but it's a part of a trial)\n)\n\n-- Result --\n\nSELECT * \nFROM store_product_plan_daily\n{% if target.name == 'dev' %}\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,8) AND DATE_SUB(CURRENT_DATE,1)\n{% endif %}", "language": "sql", "refs": [{"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___platform_stg__saas_organization_daily_history", "package": null, "version": null}, {"name": "analytics___finance__zuora_organization_plan_rank_daily", "package": null, "version": null}, {"name": "analytics___platform__platform_store_plan_over_time", "package": null, "version": null}, {"name": "analytics___sms__store_plan_daily", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__plan", "package": null, "version": null}, {"name": "analytics___finance__zuora_account", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity_line_item", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___platform_stg__saas_organization_daily_history", "model.yoda.analytics___finance__zuora_organization_plan_rank_daily", "model.yoda.analytics___platform__platform_store_plan_over_time", "model.yoda.analytics___sms__store_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__plan", "model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__opportunity_line_item", "model.yoda.analytics___salesforce__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_calendar AS (\nSELECT date\nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date < CURRENT_DATE\n\n),\n\nimport_saas_organization_daily_history AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__saas_organization_daily_history\n),\n\nimport_zuora_organization_plan_rank_daily AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_organization_plan_rank_daily \n),\n\nimport_platform_store_plan_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___platform__platform_store_plan_over_time \n),\n\nimport_sms_store_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store_plan_daily\n),\n\nimport_loyalty_merchant_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_daily\n),\n\nimport_platform__store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_platform__plan AS (\nSELECT * FROM dev_dkruh1.analytics___platform__plan\n),\n\nimport_zuora__account AS (\nSELECT * FROM dev_dkruh1.analytics___finance__zuora_account\n),\n\nimport_salesforce__opportunity AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n),\n\nimport_salesforce__opportunity_line_item AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__opportunity_line_item\n),\n\nimport_salesforce__account AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__account\n),\n\n-- Logic --\n\nzuora_org_test_ind AS (\nSELECT\n organization_key,\n IFNULL(MAX(is_test_account),0) AS is_test_org\nFROM import_zuora__account\nWHERE is_deleted = 0\nGROUP BY 1\n),\n\norg_product_poc_daily AS (\nSELECT\n calendar.date,\n act.organization_key,\n item.line_item_product AS product_family,\n SORT_ARRAY(COLLECT_SET(opp.opportunity_id)) AS opportunity_id_array\nFROM import_salesforce__opportunity AS opp\nINNER JOIN import_salesforce__account AS act \n ON opp.account_id = act.account_id \nINNER JOIN import_salesforce__opportunity_line_item AS item \n ON opp.opportunity_id = item.opportunity_id \nINNER JOIN import_calendar AS calendar\n ON opp.start_date <= calendar.date\n AND IFNULL(opp.actual_end_date,contract_renewal_date) > calendar.date\nWHERE act.is_test_account = 0\nAND act.is_deleted_account = 0\nAND opp.is_deleted = 0\nAND item.is_deleted = 0\nAND act.organization_key IS NOT NULL\nAND LOWER(opp.type) = 'poc'\nAND LOWER(opp.stage) = 'won - sale'\nAND LOWER(item.line_item_product) <> 'ps'\nGROUP BY 1,2,3\n),\n\nsaas_static_store_daily AS (\nSELECT \n saas_static.date,\n store.app_key,\n saas_static.product_family,\n saas_static.plan_id,\n saas_static.plan_name,\n NULL AS product_plan_id,\n saas_static.is_self_service,\n saas_static.is_free,\n saas_static.is_annual AS is_full_service,\n 'static saas' AS source_name,\n NULL AS plan_name_array\nFROM import_saas_organization_daily_history AS saas_static\nINNER JOIN import_platform__store AS store\n ON saas_static.organization_key = store.organization_key\nINNER JOIN import_calendar\n ON saas_static.date = import_calendar.date\nWHERE store.store_created_date <= saas_static.date\n),\n\nzuora_store_daily AS (\nSELECT \n org.date,\n store.app_key,\n org.product_family,\n org.plan_id,\n org.plan_name,\n NULL AS product_plan_id,\n org.is_ss AS is_self_service,\n org.is_free,\n IF(org.is_ss = 0 AND org.is_free = 0,1,0) AS is_full_service,\n 'zuora' AS source_name,\n IF(SIZE(plan_name_array) > 1, plan_name_array, NULL) AS plan_name_array\nFROM import_zuora_organization_plan_rank_daily AS org\nINNER JOIN import_platform__store AS store\n ON org.organization_key = store.organization_key\nINNER JOIN import_calendar\n ON org.date = import_calendar.date\nWHERE store.store_created_date <= org.date\nAND org.is_core_plan = 1\nAND org.plan_rank = 1\n),\n\nsms_store_plan_daily AS (\nSELECT\n sms_daily.date,\n app_key,\n 'SMS' AS product_family,\n CASE WHEN (plan_id BETWEEN 1 and 7)\n OR (plan_id BETWEEN 18 and 20)\n OR (plan_id = 31) THEN 100\n WHEN plan_id IN (8,9,11,12,14,15,16,17,21,22,24,25,27,28,29,30) THEN 101\n WHEN plan_id IN (10,13,23,26) THEN 102\n END AS plan_id,\n plan_name,\n plan_id AS product_plan_id,\n IF(LOWER(plan_type_group) = 'self_service',1,0) AS is_self_service,\n IF(LOWER(plan_type_group) = 'free',1,0) AS is_free,\n IF(LOWER(plan_type_group) = 'high_touch',1,0) AS is_full_service,\n 'sms db' AS source_name,\n NULL AS plan_name_array\nFROM import_sms_store_plan_daily AS sms_daily\nINNER JOIN import_calendar\n ON sms_daily.date = import_calendar.date\n),\n\nloyalty_daily_w_plan AS (\nSELECT\n date,\n app_key,\n 'Loyalty' AS product_family,\n CASE\n WHEN plan_id = 0 THEN 141\n WHEN plan_id = 1 THEN 43\n WHEN plan_id = 2 THEN 143\n WHEN plan_id = 3 THEN 144\n WHEN plan_id = 4 THEN 76\n WHEN plan_id = 5 THEN 142\n ELSE plan_id\n END AS plan_id,\n CASE\n WHEN plan_id = 0 THEN 'Loyalty - Free'\n WHEN plan_id = 1 THEN 'Swell Bronze'\n WHEN plan_id = 2 THEN 'Loyalty - Silver'\n WHEN plan_id = 3 THEN 'Loyalty - Gold'\n WHEN plan_id = 4 THEN 'Loyalty - Platinum'\n WHEN plan_id = 5 THEN 'Loyalty - Enterprise'\n ELSE plan_name\n END AS plan_name,\n plan_id AS product_plan_id\nFROM import_loyalty_merchant_plan_daily\n),\n\nloyalty_store_plan_daily AS (\nSELECT\n store.date,\n store.app_key,\n store.product_family,\n store.plan_id,\n store.plan_name,\n store.product_plan_id,\n plan.is_ss AS is_self_service,\n plan.is_free,\n IF(plan.is_ss = 0 AND plan.is_free = 0,1,0) AS is_full_service,\n 'loyalty db' AS source_name,\n NULL AS plan_name_array\nFROM loyalty_daily_w_plan AS store\nINNER JOIN import_platform__plan AS plan\n ON plan.plan_id = store.plan_id\nINNER JOIN import_calendar\n ON store.date = import_calendar.date\n),\n\nsource_platform_store_daily AS (\nSELECT\n date,\n app_key,\n product_family,\n plan_id,\n plan_name,\n is_self_service,\n is_free,\n is_core_plan,\n store_plan_source,\n ROW_NUMBER() OVER(PARTITION BY date,app_key,product_family,is_core_plan ORDER BY store_plan_source_rank, plan_name) AS plan_rank\nFROM import_platform_store_plan_over_time AS platform\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= DATE(platform.from_time)\n AND calendar.date < DATE(platform.to_time)\nWHERE store_created_date <= calendar.date\n),\n\nplatform_store_daily AS (\nSELECT \n date,\n app_key,\n product_family,\n plan_id,\n plan_name,\n NULL AS product_plan_id,\n is_self_service,\n is_free,\n IF(is_self_service = 0 AND is_free = 0,1,0) AS is_full_service,\n 'platform' AS source_name,\n NULL AS plan_name_array\nFROM source_platform_store_daily\nWHERE plan_rank = 1\nAND is_core_plan = 1\n),\n\nunion_source_store_plan_daily AS (\nSELECT *\nFROM saas_static_store_daily\nUNION ALL\nSELECT *\nFROM zuora_store_daily\nUNION ALL\nSELECT *\nFROM sms_store_plan_daily\nUNION ALL\nSELECT *\nFROM loyalty_store_plan_daily\nUNION ALL\nSELECT *\nFROM platform_store_daily\n),\n\nstore_product_daily_plan_map AS (\nSELECT \n plan.date,\n plan.app_key,\n store.store_created_date,\n store.organization_key,\n IF(LOWER(plan.product_family) = 'email marketing','Email',plan.product_family) AS product_family,\n FIRST(IF(plan.source_name = 'sms db',\n MAP(\"plan_id\",plan.plan_id,\"plan_name\",plan.plan_name,\"product_plan_id\",plan.product_plan_id,\"is_self_service\",plan.is_self_service,\"is_free\",plan.is_free,\"is_full_service\",plan.is_full_service),NULL),TRUE) AS sms_plan_map,\n FIRST(IF(plan.source_name = 'loyalty db',\n MAP(\"plan_id\",plan.plan_id,\"plan_name\",plan.plan_name,\"product_plan_id\",plan.product_plan_id,\"is_self_service\",plan.is_self_service,\"is_free\",plan.is_free,\"is_full_service\",plan.is_full_service),NULL),TRUE) AS loyalty_plan_map,\n FIRST(IF(plan.source_name = 'platform',\n MAP(\"plan_id\",plan.plan_id,\"plan_name\",plan.plan_name,\"is_self_service\",plan.is_self_service,\"is_free\",plan.is_free,\"is_full_service\",plan.is_full_service),NULL),TRUE) AS platform_plan_map,\n FIRST(IF(plan.source_name = 'zuora',\n MAP(\"plan_id\",plan.plan_id,\"plan_name\",plan.plan_name,\"is_self_service\",plan.is_self_service,\"is_free\",plan.is_free,\"is_full_service\",plan.is_full_service,\"plan_name_list\",concat_ws(',',plan.plan_name_array),\"plan_name_list_size\",SIZE(plan.plan_name_array)),NULL),TRUE) AS zuora_plan_map,\n FIRST(IF(plan.source_name = 'static saas',\n MAP(\"plan_id\",plan.plan_id,\"plan_name\",plan.plan_name,\"is_self_service\",plan.is_self_service,\"is_free\",plan.is_free,\"is_full_service\",plan.is_full_service),NULL),TRUE) AS static_plan_map\nFROM union_source_store_plan_daily AS plan\nINNER JOIN import_platform__store AS store\n ON plan.app_key = store.app_key\nWHERE store.store_created_date <= plan.date\nGROUP BY 1,2,3,4,5\n),\n\nstore_product_main_plan_map AS (\nSELECT \n date,\n app_key,\n store_created_date,\n organization_key,\n product_family,\n CASE WHEN LOWER(product_family) = 'sms' THEN sms_plan_map\n WHEN LOWER(product_family) = 'loyalty' THEN COALESCE(IF(LOWER(platform_plan_map.plan_name) <> 'loyalty - low touch',platform_plan_map,NULL),loyalty_plan_map,zuora_plan_map,static_plan_map)\n ELSE COALESCE(platform_plan_map,zuora_plan_map,static_plan_map)\n END AS main_plan_map,\n sms_plan_map,\n loyalty_plan_map,\n platform_plan_map,\n zuora_plan_map,\n static_plan_map\nFROM store_product_daily_plan_map\n),\n\nstore_product_plan_daily AS (\nSELECT\n store.date,\n store.app_key,\n store.store_created_date,\n store.organization_key,\n store.product_family,\n INT(store.main_plan_map.plan_id) AS plan_id,\n store.main_plan_map.plan_name AS plan_name,\n SMALLINT(IF(store.main_plan_map.is_free=1,1,store.main_plan_map.is_self_service)) AS is_self_service,\n SMALLINT(IF(INT(store.main_plan_map.plan_id)=43,1,store.main_plan_map.is_free)) AS is_free, -- Loyalty BRONZE is actually free plan\n SMALLINT(store.main_plan_map.is_full_service) AS is_full_service,\n BIGINT(sms_plan_map.product_plan_id) AS sms_plan_id,\n BIGINT(loyalty_plan_map.product_plan_id) AS loyalty_plan_id,\n NULLIF(zuora_plan_map.plan_name_list,'') AS overlapping_plan_name_list,\n NVL(IF(zuora_plan_map.plan_name_list_size = -1,0,zuora_plan_map.plan_name_list_size),0) AS overlapping_plan_cnt,\n SMALLINT(plan.is_reviews) AS is_reviews,\n SMALLINT(plan.is_loyalty) AS is_loyalty,\n SMALLINT(plan.is_vms) AS is_vms,\n SMALLINT(plan.is_subscriptions) AS is_subscriptions,\n SMALLINT(plan.is_sms) AS is_sms,\n SMALLINT(plan.is_email) AS is_email,\n store.sms_plan_map,\n store.loyalty_plan_map,\n store.platform_plan_map,\n store.zuora_plan_map,\n store.static_plan_map,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM store_product_main_plan_map AS store\nINNER JOIN import_platform__plan AS plan\n ON store.main_plan_map.plan_id = plan.plan_id\nLEFT JOIN zuora_org_test_ind AS zuora_org_test\n ON store.organization_key = zuora_org_test.organization_key\nLEFT JOIN import_platform__store AS platform_store\n ON store.app_key = platform_store.app_key\nLEFT JOIN org_product_poc_daily AS poc\n ON store.organization_key = poc.organization_key\n AND store.product_family = poc.product_family\n AND store.date = poc.date\nWHERE main_plan_map.plan_name IS NOT NULL\nAND COALESCE(zuora_org_test.is_test_org, platform_store.is_test, 0) = 0\nAND poc.organization_key IS NULL -- Filtering out all the POC products (there is a plan for these orgs but it's a part of a trial)\n)\n\n-- Result --\n\nSELECT * \nFROM store_product_plan_daily\n\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,8) AND DATE_SUB(CURRENT_DATE,1)\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_platform_account": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_platform_account", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.sql", "unique_id": "model.yoda.analytics___platform__store_platform_account", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_platform_account", "analytics___platform__store_platform_account"], "alias": "analytics___platform__store_platform_account", "checksum": {"name": "sha256", "checksum": "ca96fb7ffa7e58bc919818516785881dd80d12cf7a41840a9db9c32f69f34cea"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table of analytics___platform_stg__account_platform.\nThis is a mapping table between yotpo store_id and each of the platform's id (external_id)", "columns": {"account_platform_id": {"name": "account_platform_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "FK: platform_store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_type_id": {"name": "platform_type_id", "description": "FK: plarform_type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_name": {"name": "platform_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan_name": {"name": "platform_plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_api_name": {"name": "store_api_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_shop_domain": {"name": "platform_shop_domain", "description": "external pltform domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_account_id": {"name": "platform_account_id", "description": "id in external platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_valid_credentials": {"name": "is_valid_credentials", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "account_platform_created_at": {"name": "account_platform_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_platform_updated_at": {"name": "account_platform_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082646.2633123, "relation_name": "dev_dkruh1.analytics___platform__store_platform_account", "raw_code": "WITH import_account_platform AS (\nSELECT * FROM {{ ref('analytics___platform_stg__account_platform') }}\n),\n\nimport_platform_type AS (\nSELECT * FROM {{ ref('analytics___platform_stg__platform_type') }}\n),\n\naccount_platform_mapping AS (\nSELECT\n platform.account_platform_id,\n platform.account_id AS store_id,\n platform.platform_type_id,\n platform_type.platform_name,\n platform.platform_plan_name,\n platform.store_api_name,\n platform.external_shop_domain AS platform_shop_domain,\n platform.external_account_id AS platform_account_id,\n platform.is_valid_credentials,\n platform.account_platform_created_at,\n platform.account_platform_updated_at,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM import_account_platform AS platform\nLEFT JOIN import_platform_type AS platform_type\n ON platform.platform_type_id = platform_type.platform_id\n)\n\nSELECT * \nFROM account_platform_mapping", "language": "sql", "refs": [{"name": "analytics___platform_stg__account_platform", "package": null, "version": null}, {"name": "analytics___platform_stg__platform_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__account_platform", "model.yoda.analytics___platform_stg__platform_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.sql", "compiled": true, "compiled_code": "WITH import_account_platform AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__account_platform\n),\n\nimport_platform_type AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__platform_type\n),\n\naccount_platform_mapping AS (\nSELECT\n platform.account_platform_id,\n platform.account_id AS store_id,\n platform.platform_type_id,\n platform_type.platform_name,\n platform.platform_plan_name,\n platform.store_api_name,\n platform.external_shop_domain AS platform_shop_domain,\n platform.external_account_id AS platform_account_id,\n platform.is_valid_credentials,\n platform.account_platform_created_at,\n platform.account_platform_updated_at,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM import_account_platform AS platform\nLEFT JOIN import_platform_type AS platform_type\n ON platform.platform_type_id = platform_type.platform_id\n)\n\nSELECT * \nFROM account_platform_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_product_activeness_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_product_activeness_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.sql", "unique_id": "model.yoda.analytics___platform__store_product_activeness_monthly", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_activeness_monthly", "analytics___platform__store_product_activeness_monthly"], "alias": "analytics___platform__store_product_activeness_monthly", "checksum": {"name": "sha256", "checksum": "4e747107f6fc576c9a8289db6d6a8a3d3a7424966a2de230cf391c1d20ff4e4c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table of yotpo stores with activeness indicators in a monthly level.\nThe table includes in each month only stores that are at least active in tier 1 in one product (sms, ugc, loyalty) | PK and granularity: activeness_month, app_key", "columns": {"activeness_month": {"name": "activeness_month", "description": "store activeness month - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ugc_active_tier_1": {"name": "is_ugc_active_tier_1", "description": "ugc tier 1 product activeness indicator: 0/1. Meaning: review_request_sent_cnt >= 3 AND order_cnt > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc_active_tier_2": {"name": "is_ugc_active_tier_2", "description": "ugc tier 2 product activeness indicator: 0/1. Meaning: is_ugc_active_tier_1 = 1 AND is_map_enabled = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc_active_tier_3": {"name": "is_ugc_active_tier_3", "description": "ugc tier 3 product activeness indicator: 0/1. Meaning: is_ugc_active_tier_2 = 1 AND is_reviews_widget_loaded = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ugc_active_tier_4": {"name": "is_ugc_active_tier_4", "description": "ugc tier 4 product activeness indicator: 0/1. Meaning: is_ugc_active_tier_3 = 1 AND review_cnt > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty_active_tier_1": {"name": "is_loyalty_active_tier_1", "description": "loyalty tier 1 product activeness indicator: 0/1. Meaning: is_program_live = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty_active_tier_2": {"name": "is_loyalty_active_tier_2", "description": "loyalty tier 2 product activeness indicator: 0/1. Meaning: any widget was seen by 3 unique shoppers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty_active_tier_3": {"name": "is_loyalty_active_tier_3", "description": "loyalty tier 3 product activeness indicator: 0/1. Meaning: 4 unique point redeemers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms_active_tier_1": {"name": "is_sms_active_tier_1", "description": "sms tier 1 product activeness indicator: 0/1. Meaning: message_cnt > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082646.3015995, "relation_name": "dev_dkruh1.analytics___platform__store_product_activeness_monthly", "raw_code": "-- Import --\n\nWITH import_ugc_store_product_activeness_monthly AS (\nSELECT * FROM {{ ref('analytics___ugc__store_product_activeness_monthly') }}\n),\n\nimport_loyalty_merchant_plan_monthly AS (\nSELECT * FROM {{ ref('analytics___loyalty__merchant_plan_monthly') }}\n),\n\nimport_sms_store_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___sms__store_metrics_monthly') }}\n),\n\n-- Logic --\n\nugc_activeness AS (\nSELECT\n activeness_month,\n app_key,\n 1 AS is_ugc_active_tier_1,\n is_active_tier_2 AS is_ugc_active_tier_2,\n is_active_tier_3 AS is_ugc_active_tier_3,\n is_active_tier_4 AS is_ugc_active_tier_4\nFROM import_ugc_store_product_activeness_monthly\n),\n\nloyalty_activeness AS (\nSELECT\n month AS activeness_month,\n app_key,\n 1 AS is_loyalty_active_tier_1,\n is_active2 AS is_loyalty_active_tier_2,\n is_active3 AS is_loyalty_active_tier_3\nFROM import_loyalty_merchant_plan_monthly\nWHERE is_program_live = 1\n),\n\nsms_activeness AS (\nSELECT\n month AS activeness_month,\n app_key,\n 1 AS is_sms_active_tier_1\nFROM import_sms_store_metrics_monthly\nWHERE message_cnt > 0\n),\n\nunique_stores_per_month AS (\nSELECT\n activeness_month,\n app_key\nFROM ugc_activeness\nUNION\nSELECT\n activeness_month,\n app_key\nFROM loyalty_activeness\nUNION\nSELECT\n activeness_month,\n app_key\nFROM sms_activeness\n),\n\nplatform_store_product_activeness_monthly_res AS (\nSELECT\n stores.activeness_month,\n stores.app_key,\n SMALLINT(NVL(ugc.is_ugc_active_tier_1,0)) AS is_ugc_active_tier_1,\n SMALLINT(NVL(ugc.is_ugc_active_tier_2,0)) AS is_ugc_active_tier_2,\n SMALLINT(NVL(ugc.is_ugc_active_tier_3,0)) AS is_ugc_active_tier_3,\n SMALLINT(NVL(ugc.is_ugc_active_tier_4,0)) AS is_ugc_active_tier_4,\n SMALLINT(NVL(loyalty.is_loyalty_active_tier_1,0)) AS is_loyalty_active_tier_1,\n SMALLINT(NVL(loyalty.is_loyalty_active_tier_2,0)) AS is_loyalty_active_tier_2,\n SMALLINT(NVL(loyalty.is_loyalty_active_tier_3,0)) AS is_loyalty_active_tier_3,\n SMALLINT(NVL(sms.is_sms_active_tier_1,0)) AS is_sms_active_tier_1,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM unique_stores_per_month AS stores\nLEFT JOIN ugc_activeness AS ugc\n ON stores.activeness_month = ugc.activeness_month\n AND stores.app_key = ugc.app_key\nLEFT JOIN loyalty_activeness AS loyalty\n ON stores.activeness_month = loyalty.activeness_month\n AND stores.app_key = loyalty.app_key\nLEFT JOIN sms_activeness AS sms\n ON stores.activeness_month = sms.activeness_month\n AND stores.app_key = sms.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM platform_store_product_activeness_monthly_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_product_activeness_monthly", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}, {"name": "analytics___sms__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_product_activeness_monthly", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___sms__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_store_product_activeness_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_product_activeness_monthly\n),\n\nimport_loyalty_merchant_plan_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_monthly\n),\n\nimport_sms_store_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store_metrics_monthly\n),\n\n-- Logic --\n\nugc_activeness AS (\nSELECT\n activeness_month,\n app_key,\n 1 AS is_ugc_active_tier_1,\n is_active_tier_2 AS is_ugc_active_tier_2,\n is_active_tier_3 AS is_ugc_active_tier_3,\n is_active_tier_4 AS is_ugc_active_tier_4\nFROM import_ugc_store_product_activeness_monthly\n),\n\nloyalty_activeness AS (\nSELECT\n month AS activeness_month,\n app_key,\n 1 AS is_loyalty_active_tier_1,\n is_active2 AS is_loyalty_active_tier_2,\n is_active3 AS is_loyalty_active_tier_3\nFROM import_loyalty_merchant_plan_monthly\nWHERE is_program_live = 1\n),\n\nsms_activeness AS (\nSELECT\n month AS activeness_month,\n app_key,\n 1 AS is_sms_active_tier_1\nFROM import_sms_store_metrics_monthly\nWHERE message_cnt > 0\n),\n\nunique_stores_per_month AS (\nSELECT\n activeness_month,\n app_key\nFROM ugc_activeness\nUNION\nSELECT\n activeness_month,\n app_key\nFROM loyalty_activeness\nUNION\nSELECT\n activeness_month,\n app_key\nFROM sms_activeness\n),\n\nplatform_store_product_activeness_monthly_res AS (\nSELECT\n stores.activeness_month,\n stores.app_key,\n SMALLINT(NVL(ugc.is_ugc_active_tier_1,0)) AS is_ugc_active_tier_1,\n SMALLINT(NVL(ugc.is_ugc_active_tier_2,0)) AS is_ugc_active_tier_2,\n SMALLINT(NVL(ugc.is_ugc_active_tier_3,0)) AS is_ugc_active_tier_3,\n SMALLINT(NVL(ugc.is_ugc_active_tier_4,0)) AS is_ugc_active_tier_4,\n SMALLINT(NVL(loyalty.is_loyalty_active_tier_1,0)) AS is_loyalty_active_tier_1,\n SMALLINT(NVL(loyalty.is_loyalty_active_tier_2,0)) AS is_loyalty_active_tier_2,\n SMALLINT(NVL(loyalty.is_loyalty_active_tier_3,0)) AS is_loyalty_active_tier_3,\n SMALLINT(NVL(sms.is_sms_active_tier_1,0)) AS is_sms_active_tier_1,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM unique_stores_per_month AS stores\nLEFT JOIN ugc_activeness AS ugc\n ON stores.activeness_month = ugc.activeness_month\n AND stores.app_key = ugc.app_key\nLEFT JOIN loyalty_activeness AS loyalty\n ON stores.activeness_month = loyalty.activeness_month\n AND stores.app_key = loyalty.app_key\nLEFT JOIN sms_activeness AS sms\n ON stores.activeness_month = sms.activeness_month\n AND stores.app_key = sms.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM platform_store_product_activeness_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_product_metrics_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_product_metrics_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.sql", "unique_id": "model.yoda.analytics___platform__store_product_metrics_daily", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily", "analytics___platform__store_product_metrics_daily"], "alias": "analytics___platform__store_product_metrics_daily", "checksum": {"name": "sha256", "checksum": "6577b87dbae7f84fd1b93706908179fda5a86120f47ec828eb2018e578f3629f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "product_metrics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "product_metrics"], "description": "A modeled view of product metrics profile based on daily models. PK & Granularity: app_key, metric_date", "columns": {"metric_date": {"name": "metric_date", "description": "PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_is_map_enabled": {"name": "ugc_is_map_enabled", "description": "Metric Name: is map enabled, Field Name: ugc_is_map_enabled, Product: ugc, Type: Enabled__c, Description: MAP (Mail After Purchase) option is enabled.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "ugc_is_video_reviews_enabled": {"name": "ugc_is_video_reviews_enabled", "description": "Is video review option enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "ugc_is_image_reviews_enabled": {"name": "ugc_is_image_reviews_enabled", "description": "ugc_is_image_reviews_enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "ugc_activation_level": {"name": "ugc_activation_level", "description": "consolidates the output the activation level: 0/1/2/3\nis_active_tier_0 smallint indicator: 0/1. Meaning: order_cnt_l30d > 0 and review_request_sent_cnt_l30d >= 3\nis_active_tier_1 smallint indicator: 0/1. Meaning: is_active_tier_0 = 1 and is_map_enabled_l30d = 1 is_active_tier_2 smallint indicator: 0/1. Meaning: is_active_tier_1 = 1 and is_reviews_widget_loaded_l30d = 1\nis_active_tier_3 smallint indicator: 0/1. Meaning: is_active_tier_2 = 1 and review_cnt_l30d >= 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_reviews_store_widget_version": {"name": "ugc_reviews_store_widget_version", "description": "indication of the reviews store wideget verion 2=v2, 3=v3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "ugc_is_store_reviews_exported": {"name": "ugc_is_store_reviews_exported", "description": "indiaction of a store exporting it's reviews (possible churn indication)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "ugc_is_walmart_retail_syndication_enabled": {"name": "ugc_is_walmart_retail_syndication_enabled", "description": "is walmart retail syndication enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "ugc_is_facebook_syndication_enabled": {"name": "ugc_is_facebook_syndication_enabled", "description": "is facebook syndication enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "ugc_is_google_feed_enabled": {"name": "ugc_is_google_feed_enabled", "description": "is google feed (pla) enabled and over 50 product reviews in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "ugc_is_google_seller_rating_enabled": {"name": "ugc_is_google_seller_rating_enabled", "description": "is google sellers rating enabled and over 100 site reviews in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "loyalty_is_active1": {"name": "loyalty_is_active1", "description": "active 1= loyalty program is live and ready to use,", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "loyalty_is_active2": {"name": "loyalty_is_active2", "description": "active 2= 3 unique users a day that have seen any loyalty widget, for account.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "loyalty_is_active2_1": {"name": "loyalty_is_active2_1", "description": "active 2.1= 3 unique users have seen the rewards program page on site in a given date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "loyalty_first_time_active3_date": {"name": "loyalty_first_time_active3_date", "description": "first time a store got to loyalty active3 level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_active_campaign_cnt": {"name": "sms_active_campaign_cnt", "description": "the number of active sms campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_active_flow_cnt": {"name": "sms_active_flow_cnt", "description": "the number of active sms flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_subscriber_cnt": {"name": "sms_subscriber_cnt", "description": "number of sms subscribers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_new_subscriber_cnt": {"name": "sms_new_subscriber_cnt", "description": "number of new sms subscribers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_usage_sum": {"name": "sms_usage_sum", "description": "sms usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,4)"}, "sms_is_pop_up_enabled": {"name": "sms_is_pop_up_enabled", "description": "indiaction for the sms pop up is enablement", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sms_last_day_usage_sum": {"name": "sms_last_day_usage_sum", "description": "previous day sms usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_7_days_usage_sum": {"name": "sms_7_days_usage_sum", "description": "last 7 days sms usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_30_days_usage_sum": {"name": "sms_30_days_usage_sum", "description": "last 30 days usage sum", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_90_days_usage_sum": {"name": "sms_90_days_usage_sum", "description": "last 90 days usage su,", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_last_day_message_cnt": {"name": "sms_last_day_message_cnt", "description": "number sms messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_7_days_message_cnt": {"name": "sms_7_days_message_cnt", "description": "last 7 days sms messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_30_days_message_cnt": {"name": "sms_30_days_message_cnt", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_90_days_message_cnt": {"name": "sms_90_days_message_cnt", "description": "last 90 days sms messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_swell_points_reminder_activation_level": {"name": "sms_flows_swell_points_reminder_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_yotpo_site_review_activation_level": {"name": "sms_flows_yotpo_site_review_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_campaigns_reward_program_activation_level": {"name": "sms_campaigns_reward_program_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_editor_reviews_block_activation_level": {"name": "email_editor_reviews_block_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_earning_rule_loyalty_activation_level": {"name": "review_earning_rule_loyalty_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_campaigns_click_to_redeem_activation_level": {"name": "sms_campaigns_click_to_redeem_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_editor_loyalty_block_activation_level": {"name": "email_editor_loyalty_block_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sign_up_for_sms_earning_rule_loyalty_activation_level": {"name": "sign_up_for_sms_earning_rule_loyalty_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_editor_product_with_reviews_block_activation_level": {"name": "email_editor_product_with_reviews_block_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_swell_tier_earned_activation_level": {"name": "sms_flows_swell_tier_earned_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_campaigns_redemption_reminder_activation_level": {"name": "sms_campaigns_redemption_reminder_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_yotpo_product_review_activation_level": {"name": "sms_flows_yotpo_product_review_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_review_earning_rule_loyalty_activation_level": {"name": "image_review_earning_rule_loyalty_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptions_management_url_notification_flow_activation_level": {"name": "subscriptions_management_url_notification_flow_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "video_review_earning_rule_loyalty_activation_level": {"name": "video_review_earning_rule_loyalty_activation_level", "description": "avtive 1= loyalty program is live and ready to use, active 2= 3 unique users a day that have seen any loyalty widget, for account. active 2.1= 3 unique users have seen the rewards program page on site in a given date, Active 3= 4 distinct users have redeemed points per store,for account taking an indication if at least 1 store is active 3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_subscription_discount_reward_activation_level": {"name": "loyalty_subscription_discount_reward_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_abandoned_checkout_reviews_star_rating_activation_level": {"name": "sms_flows_abandoned_checkout_reviews_star_rating_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_cdp_optin_status_changed_activation_level": {"name": "sms_flows_cdp_optin_status_changed_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_cancellation_notification_flow_activation_level": {"name": "subscription_cancellation_notification_flow_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_confirmation_notification_flow_activation_level": {"name": "subscription_confirmation_notification_flow_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_payment_failure_notification_flow_activation_level": {"name": "subscription_payment_failure_notification_flow_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_campaign_to_grow_product_subscribers_activation_level": {"name": "sms_campaign_to_grow_product_subscribers_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_swell_birthday_activation_level": {"name": "sms_flows_swell_birthday_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_campaigns_vip_tier_activation_level": {"name": "sms_campaigns_vip_tier_activation_level", "description": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "product_metrics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082646.3801143, "relation_name": "dev_dkruh1.analytics___platform__store_product_metrics_daily", "raw_code": "{%- set global_date_field = 'metric_date' -%}\n{%- set global_unit_field = 'app_key' -%}\n{%- set source_list = [\n {\n 'source_table': ref('analytics___platform__store_dynamic_date_explode_from_creation'),\n 'date_field': 'date',\n 'unit_field': 'app_key',\n 'fields_mapping':{\n 'organization_key': 'organization_key',\n },\n 'where_conditions':[]\n },\n {\n 'source_table': ref('analytics___ugc__store_metrics_daily'),\n 'date_field': 'metric_date',\n 'unit_field': 'app_key',\n 'fields_mapping':{\n 'is_map_enabled': 'ugc_is_map_enabled',\n 'is_videosinreviews_enabled': 'ugc_is_video_reviews_enabled',\n 'is_reviewwithpictures_enabled': 'ugc_is_image_reviews_enabled',\n 'CASE WHEN is_active_tier_3 = 1 THEN \"active_tier_3\" WHEN is_active_tier_2 = 1 THEN \"active_tier_2\" WHEN is_active_tier_1 = 1 THEN \"active_tier_1\" WHEN is_active_tier_0 = 1 THEN \"active_tier_0\" END': 'ugc_activation_level',\n 'reviews_widget_version': 'ugc_reviews_store_widget_version',\n 'is_reviews_export': 'ugc_is_store_reviews_exported',\n 'is_retailsyndicationwalmart_enabled': 'ugc_is_walmart_retail_syndication_enabled',\n 'is_facebooksyndication_enabled': 'ugc_is_facebook_syndication_enabled',\n 'is_googlefeed_enabled': 'ugc_is_google_feed_enabled',\n 'is_googlesellerrating_enabled': 'ugc_is_google_seller_rating_enabled',\n },\n 'where_conditions':[]\n },\n { \n 'source_table': ref('analytics___loyalty__merchant_plan_daily'),\n 'date_field': 'date',\n 'unit_field': 'app_key',\n 'fields_mapping':{\n 'is_program_live': 'loyalty_is_active1',\n 'is_active2': 'loyalty_is_active2',\n 'is_active2_1': 'loyalty_is_active2_1',\n 'first_time_active3_date': 'loyalty_first_time_active3_date',\n },\n 'where_conditions':[]\n },\n {\n 'source_table': ref('analytics___sms__store_metrics_daily'),\n 'date_field': 'date',\n 'unit_field': 'app_key',\n 'fields_mapping':{\n 'active_campaign_cnt': 'sms_active_campaign_cnt',\n 'active_flow_cnt': 'sms_active_flow_cnt',\n 'subscriber_cnt': 'sms_subscriber_cnt',\n 'new_subscriber_cnt': 'sms_new_subscriber_cnt',\n 'usage_sum': 'sms_usage_sum',\n 'is_pop_up_enabled': 'sms_is_pop_up_enabled',\n 'SUM(usage_sum) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING)': 'sms_last_day_usage_sum',\n 'SUM(usage_sum) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 7 PRECEDING AND 1 PRECEDING)': 'sms_7_days_usage_sum',\n 'SUM(usage_sum) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 30 PRECEDING AND 1 PRECEDING)': 'sms_30_days_usage_sum',\n 'SUM(usage_sum) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 90 PRECEDING AND 1 PRECEDING)': 'sms_90_days_usage_sum',\n 'SUM(message_cnt) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING)': 'sms_last_day_message_cnt',\n 'SUM(message_cnt) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 7 PRECEDING AND 1 PRECEDING)': 'sms_7_days_message_cnt',\n 'SUM(message_cnt) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 30 PRECEDING AND 1 PRECEDING)': 'sms_30_days_message_cnt',\n 'SUM(message_cnt) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 90 PRECEDING AND 1 PRECEDING)': 'sms_90_days_message_cnt',\n },\n 'where_conditions':['is_active = 1']\n },\n {\n 'source_table': ref('analytics___synergies__activation_level_daily'),\n 'date_field': 'activeness_date',\n 'unit_field': 'app_key',\n 'fields_mapping':{\n 'sms_flows_swell_points_reminder_activation_level': 'sms_flows_swell_points_reminder_activation_level',\n 'sms_flows_yotpo_site_review_activation_level': 'sms_flows_yotpo_site_review_activation_level',\n 'sms_campaigns_reward_program_activation_level': 'sms_campaigns_reward_program_activation_level',\n 'email_editor_reviews_block_activation_level': 'email_editor_reviews_block_activation_level',\n 'review_earning_rule_loyalty_activation_level': 'review_earning_rule_loyalty_activation_level',\n 'sms_campaigns_click_to_redeem_activation_level': 'sms_campaigns_click_to_redeem_activation_level',\n 'email_editor_loyalty_block_activation_level': 'email_editor_loyalty_block_activation_level',\n 'sign_up_for_sms_earning_rule_loyalty_activation_level': 'sign_up_for_sms_earning_rule_loyalty_activation_level',\n 'email_editor_product_with_reviews_block_activation_level': 'email_editor_product_with_reviews_block_activation_level',\n 'sms_flows_swell_tier_earned_activation_level': 'sms_flows_swell_tier_earned_activation_level',\n 'sms_campaigns_redemption_reminder_activation_level': 'sms_campaigns_redemption_reminder_activation_level',\n 'sms_flows_yotpo_product_review_activation_level': 'sms_flows_yotpo_product_review_activation_level',\n 'image_review_earning_rule_loyalty_activation_level': 'image_review_earning_rule_loyalty_activation_level',\n 'subscriptions_management_url_notification_flow_activation_level': 'subscriptions_management_url_notification_flow_activation_level',\n 'video_review_earning_rule_loyalty_activation_level': 'video_review_earning_rule_loyalty_activation_level',\n 'loyalty_subscription_discount_reward_activation_level': 'loyalty_subscription_discount_reward_activation_level',\n 'sms_flows_abandoned_checkout_reviews_star_rating_activation_level': 'sms_flows_abandoned_checkout_reviews_star_rating_activation_level',\n 'sms_flows_cdp_optin_status_changed_activation_level': 'sms_flows_cdp_optin_status_changed_activation_level',\n 'subscription_cancellation_notification_flow_activation_level': 'subscription_cancellation_notification_flow_activation_level',\n 'subscription_confirmation_notification_flow_activation_level': 'subscription_confirmation_notification_flow_activation_level',\n 'subscription_payment_failure_notification_flow_activation_level': 'subscription_payment_failure_notification_flow_activation_level',\n 'sms_campaign_to_grow_product_subscribers_activation_level': 'sms_campaign_to_grow_product_subscribers_activation_level',\n 'sms_flows_swell_birthday_activation_level': 'sms_flows_swell_birthday_activation_level',\n 'sms_campaigns_vip_tier_activation_level': 'sms_campaigns_vip_tier_activation_level',\n },\n 'where_conditions':[]\n }\n] -%}\n\n{% set expected_schema_mapping = product_metrics_expected_schema(source_list) %}\n\n{{ product_metrics_profile(global_date_field, global_unit_field, source_list, expected_schema_mapping) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_dynamic_date_explode_from_creation", "package": null, "version": null}, {"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}, {"name": "analytics___sms__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___synergies__activation_level_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.product_metrics_expected_schema", "macro.yoda.product_metrics_profile", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___synergies__activation_level_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.sql", "compiled": true, "compiled_code": "\n\nWITH product_metrics_union AS (\n\n SELECT\n date AS metric_date,\n app_key AS app_key,\n organization_key AS organization_key,\n CAST(NULL AS SMALLINT) AS ugc_is_map_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_video_reviews_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_image_reviews_enabled,\n CAST(NULL AS STRING) AS ugc_activation_level,\n CAST(NULL AS STRING) AS ugc_reviews_store_widget_version,\n CAST(NULL AS STRING) AS ugc_is_store_reviews_exported,\n CAST(NULL AS SMALLINT) AS ugc_is_walmart_retail_syndication_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_facebook_syndication_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_google_feed_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_google_seller_rating_enabled,\n CAST(NULL AS SMALLINT) AS loyalty_is_active1,\n CAST(NULL AS INT) AS loyalty_is_active2,\n CAST(NULL AS INT) AS loyalty_is_active2_1,\n CAST(NULL AS STRING) AS loyalty_first_time_active3_date,\n CAST(NULL AS BIGINT) AS sms_active_campaign_cnt,\n CAST(NULL AS BIGINT) AS sms_active_flow_cnt,\n CAST(NULL AS BIGINT) AS sms_subscriber_cnt,\n CAST(NULL AS BIGINT) AS sms_new_subscriber_cnt,\n CAST(NULL AS DECIMAL(22,4)) AS sms_usage_sum,\n CAST(NULL AS STRING) AS sms_is_pop_up_enabled,\n CAST(NULL AS STRING) AS sms_last_day_usage_sum,\n CAST(NULL AS STRING) AS sms_7_days_usage_sum,\n CAST(NULL AS STRING) AS sms_30_days_usage_sum,\n CAST(NULL AS STRING) AS sms_90_days_usage_sum,\n CAST(NULL AS STRING) AS sms_last_day_message_cnt,\n CAST(NULL AS STRING) AS sms_7_days_message_cnt,\n CAST(NULL AS STRING) AS sms_30_days_message_cnt,\n CAST(NULL AS STRING) AS sms_90_days_message_cnt,\n CAST(NULL AS STRING) AS sms_flows_swell_points_reminder_activation_level,\n CAST(NULL AS STRING) AS sms_flows_yotpo_site_review_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_reward_program_activation_level,\n CAST(NULL AS STRING) AS email_editor_reviews_block_activation_level,\n CAST(NULL AS STRING) AS review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_click_to_redeem_activation_level,\n CAST(NULL AS STRING) AS email_editor_loyalty_block_activation_level,\n CAST(NULL AS STRING) AS sign_up_for_sms_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS email_editor_product_with_reviews_block_activation_level,\n CAST(NULL AS STRING) AS sms_flows_swell_tier_earned_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_redemption_reminder_activation_level,\n CAST(NULL AS STRING) AS sms_flows_yotpo_product_review_activation_level,\n CAST(NULL AS STRING) AS image_review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS subscriptions_management_url_notification_flow_activation_level,\n CAST(NULL AS STRING) AS video_review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS loyalty_subscription_discount_reward_activation_level,\n CAST(NULL AS STRING) AS sms_flows_abandoned_checkout_reviews_star_rating_activation_level,\n CAST(NULL AS STRING) AS sms_flows_cdp_optin_status_changed_activation_level,\n CAST(NULL AS STRING) AS subscription_cancellation_notification_flow_activation_level,\n CAST(NULL AS STRING) AS subscription_confirmation_notification_flow_activation_level,\n CAST(NULL AS STRING) AS subscription_payment_failure_notification_flow_activation_level,\n CAST(NULL AS STRING) AS sms_campaign_to_grow_product_subscribers_activation_level,\n CAST(NULL AS STRING) AS sms_flows_swell_birthday_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_vip_tier_activation_level\n FROM dev_dkruh1.analytics___platform__store_dynamic_date_explode_from_creation\n WHERE date >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n \n UNION ALL\n\n SELECT\n metric_date AS metric_date,\n app_key AS app_key,\n CAST(NULL AS STRING) AS organization_key,\n is_map_enabled AS ugc_is_map_enabled,\n is_videosinreviews_enabled AS ugc_is_video_reviews_enabled,\n is_reviewwithpictures_enabled AS ugc_is_image_reviews_enabled,\n CASE WHEN is_active_tier_3 = 1 THEN \"active_tier_3\" WHEN is_active_tier_2 = 1 THEN \"active_tier_2\" WHEN is_active_tier_1 = 1 THEN \"active_tier_1\" WHEN is_active_tier_0 = 1 THEN \"active_tier_0\" END AS ugc_activation_level,\n reviews_widget_version AS ugc_reviews_store_widget_version,\n is_reviews_export AS ugc_is_store_reviews_exported,\n is_retailsyndicationwalmart_enabled AS ugc_is_walmart_retail_syndication_enabled,\n is_facebooksyndication_enabled AS ugc_is_facebook_syndication_enabled,\n is_googlefeed_enabled AS ugc_is_google_feed_enabled,\n is_googlesellerrating_enabled AS ugc_is_google_seller_rating_enabled,\n CAST(NULL AS SMALLINT) AS loyalty_is_active1,\n CAST(NULL AS INT) AS loyalty_is_active2,\n CAST(NULL AS INT) AS loyalty_is_active2_1,\n CAST(NULL AS STRING) AS loyalty_first_time_active3_date,\n CAST(NULL AS BIGINT) AS sms_active_campaign_cnt,\n CAST(NULL AS BIGINT) AS sms_active_flow_cnt,\n CAST(NULL AS BIGINT) AS sms_subscriber_cnt,\n CAST(NULL AS BIGINT) AS sms_new_subscriber_cnt,\n CAST(NULL AS DECIMAL(22,4)) AS sms_usage_sum,\n CAST(NULL AS STRING) AS sms_is_pop_up_enabled,\n CAST(NULL AS STRING) AS sms_last_day_usage_sum,\n CAST(NULL AS STRING) AS sms_7_days_usage_sum,\n CAST(NULL AS STRING) AS sms_30_days_usage_sum,\n CAST(NULL AS STRING) AS sms_90_days_usage_sum,\n CAST(NULL AS STRING) AS sms_last_day_message_cnt,\n CAST(NULL AS STRING) AS sms_7_days_message_cnt,\n CAST(NULL AS STRING) AS sms_30_days_message_cnt,\n CAST(NULL AS STRING) AS sms_90_days_message_cnt,\n CAST(NULL AS STRING) AS sms_flows_swell_points_reminder_activation_level,\n CAST(NULL AS STRING) AS sms_flows_yotpo_site_review_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_reward_program_activation_level,\n CAST(NULL AS STRING) AS email_editor_reviews_block_activation_level,\n CAST(NULL AS STRING) AS review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_click_to_redeem_activation_level,\n CAST(NULL AS STRING) AS email_editor_loyalty_block_activation_level,\n CAST(NULL AS STRING) AS sign_up_for_sms_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS email_editor_product_with_reviews_block_activation_level,\n CAST(NULL AS STRING) AS sms_flows_swell_tier_earned_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_redemption_reminder_activation_level,\n CAST(NULL AS STRING) AS sms_flows_yotpo_product_review_activation_level,\n CAST(NULL AS STRING) AS image_review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS subscriptions_management_url_notification_flow_activation_level,\n CAST(NULL AS STRING) AS video_review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS loyalty_subscription_discount_reward_activation_level,\n CAST(NULL AS STRING) AS sms_flows_abandoned_checkout_reviews_star_rating_activation_level,\n CAST(NULL AS STRING) AS sms_flows_cdp_optin_status_changed_activation_level,\n CAST(NULL AS STRING) AS subscription_cancellation_notification_flow_activation_level,\n CAST(NULL AS STRING) AS subscription_confirmation_notification_flow_activation_level,\n CAST(NULL AS STRING) AS subscription_payment_failure_notification_flow_activation_level,\n CAST(NULL AS STRING) AS sms_campaign_to_grow_product_subscribers_activation_level,\n CAST(NULL AS STRING) AS sms_flows_swell_birthday_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_vip_tier_activation_level\n FROM dev_dkruh1.analytics___ugc__store_metrics_daily\n WHERE metric_date >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n \n UNION ALL\n\n SELECT\n date AS metric_date,\n app_key AS app_key,\n CAST(NULL AS STRING) AS organization_key,\n CAST(NULL AS SMALLINT) AS ugc_is_map_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_video_reviews_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_image_reviews_enabled,\n CAST(NULL AS STRING) AS ugc_activation_level,\n CAST(NULL AS STRING) AS ugc_reviews_store_widget_version,\n CAST(NULL AS STRING) AS ugc_is_store_reviews_exported,\n CAST(NULL AS SMALLINT) AS ugc_is_walmart_retail_syndication_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_facebook_syndication_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_google_feed_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_google_seller_rating_enabled,\n is_program_live AS loyalty_is_active1,\n is_active2 AS loyalty_is_active2,\n is_active2_1 AS loyalty_is_active2_1,\n first_time_active3_date AS loyalty_first_time_active3_date,\n CAST(NULL AS BIGINT) AS sms_active_campaign_cnt,\n CAST(NULL AS BIGINT) AS sms_active_flow_cnt,\n CAST(NULL AS BIGINT) AS sms_subscriber_cnt,\n CAST(NULL AS BIGINT) AS sms_new_subscriber_cnt,\n CAST(NULL AS DECIMAL(22,4)) AS sms_usage_sum,\n CAST(NULL AS STRING) AS sms_is_pop_up_enabled,\n CAST(NULL AS STRING) AS sms_last_day_usage_sum,\n CAST(NULL AS STRING) AS sms_7_days_usage_sum,\n CAST(NULL AS STRING) AS sms_30_days_usage_sum,\n CAST(NULL AS STRING) AS sms_90_days_usage_sum,\n CAST(NULL AS STRING) AS sms_last_day_message_cnt,\n CAST(NULL AS STRING) AS sms_7_days_message_cnt,\n CAST(NULL AS STRING) AS sms_30_days_message_cnt,\n CAST(NULL AS STRING) AS sms_90_days_message_cnt,\n CAST(NULL AS STRING) AS sms_flows_swell_points_reminder_activation_level,\n CAST(NULL AS STRING) AS sms_flows_yotpo_site_review_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_reward_program_activation_level,\n CAST(NULL AS STRING) AS email_editor_reviews_block_activation_level,\n CAST(NULL AS STRING) AS review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_click_to_redeem_activation_level,\n CAST(NULL AS STRING) AS email_editor_loyalty_block_activation_level,\n CAST(NULL AS STRING) AS sign_up_for_sms_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS email_editor_product_with_reviews_block_activation_level,\n CAST(NULL AS STRING) AS sms_flows_swell_tier_earned_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_redemption_reminder_activation_level,\n CAST(NULL AS STRING) AS sms_flows_yotpo_product_review_activation_level,\n CAST(NULL AS STRING) AS image_review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS subscriptions_management_url_notification_flow_activation_level,\n CAST(NULL AS STRING) AS video_review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS loyalty_subscription_discount_reward_activation_level,\n CAST(NULL AS STRING) AS sms_flows_abandoned_checkout_reviews_star_rating_activation_level,\n CAST(NULL AS STRING) AS sms_flows_cdp_optin_status_changed_activation_level,\n CAST(NULL AS STRING) AS subscription_cancellation_notification_flow_activation_level,\n CAST(NULL AS STRING) AS subscription_confirmation_notification_flow_activation_level,\n CAST(NULL AS STRING) AS subscription_payment_failure_notification_flow_activation_level,\n CAST(NULL AS STRING) AS sms_campaign_to_grow_product_subscribers_activation_level,\n CAST(NULL AS STRING) AS sms_flows_swell_birthday_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_vip_tier_activation_level\n FROM dev_dkruh1.analytics___loyalty__merchant_plan_daily\n WHERE date >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n \n UNION ALL\n\n SELECT\n date AS metric_date,\n app_key AS app_key,\n CAST(NULL AS STRING) AS organization_key,\n CAST(NULL AS SMALLINT) AS ugc_is_map_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_video_reviews_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_image_reviews_enabled,\n CAST(NULL AS STRING) AS ugc_activation_level,\n CAST(NULL AS STRING) AS ugc_reviews_store_widget_version,\n CAST(NULL AS STRING) AS ugc_is_store_reviews_exported,\n CAST(NULL AS SMALLINT) AS ugc_is_walmart_retail_syndication_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_facebook_syndication_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_google_feed_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_google_seller_rating_enabled,\n CAST(NULL AS SMALLINT) AS loyalty_is_active1,\n CAST(NULL AS INT) AS loyalty_is_active2,\n CAST(NULL AS INT) AS loyalty_is_active2_1,\n CAST(NULL AS STRING) AS loyalty_first_time_active3_date,\n active_campaign_cnt AS sms_active_campaign_cnt,\n active_flow_cnt AS sms_active_flow_cnt,\n subscriber_cnt AS sms_subscriber_cnt,\n new_subscriber_cnt AS sms_new_subscriber_cnt,\n usage_sum AS sms_usage_sum,\n is_pop_up_enabled AS sms_is_pop_up_enabled,\n SUM(usage_sum) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS sms_last_day_usage_sum,\n SUM(usage_sum) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 7 PRECEDING AND 1 PRECEDING) AS sms_7_days_usage_sum,\n SUM(usage_sum) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 30 PRECEDING AND 1 PRECEDING) AS sms_30_days_usage_sum,\n SUM(usage_sum) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 90 PRECEDING AND 1 PRECEDING) AS sms_90_days_usage_sum,\n SUM(message_cnt) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS sms_last_day_message_cnt,\n SUM(message_cnt) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 7 PRECEDING AND 1 PRECEDING) AS sms_7_days_message_cnt,\n SUM(message_cnt) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 30 PRECEDING AND 1 PRECEDING) AS sms_30_days_message_cnt,\n SUM(message_cnt) OVER (PARTITION BY app_key ORDER BY date ROWS BETWEEN 90 PRECEDING AND 1 PRECEDING) AS sms_90_days_message_cnt,\n CAST(NULL AS STRING) AS sms_flows_swell_points_reminder_activation_level,\n CAST(NULL AS STRING) AS sms_flows_yotpo_site_review_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_reward_program_activation_level,\n CAST(NULL AS STRING) AS email_editor_reviews_block_activation_level,\n CAST(NULL AS STRING) AS review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_click_to_redeem_activation_level,\n CAST(NULL AS STRING) AS email_editor_loyalty_block_activation_level,\n CAST(NULL AS STRING) AS sign_up_for_sms_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS email_editor_product_with_reviews_block_activation_level,\n CAST(NULL AS STRING) AS sms_flows_swell_tier_earned_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_redemption_reminder_activation_level,\n CAST(NULL AS STRING) AS sms_flows_yotpo_product_review_activation_level,\n CAST(NULL AS STRING) AS image_review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS subscriptions_management_url_notification_flow_activation_level,\n CAST(NULL AS STRING) AS video_review_earning_rule_loyalty_activation_level,\n CAST(NULL AS STRING) AS loyalty_subscription_discount_reward_activation_level,\n CAST(NULL AS STRING) AS sms_flows_abandoned_checkout_reviews_star_rating_activation_level,\n CAST(NULL AS STRING) AS sms_flows_cdp_optin_status_changed_activation_level,\n CAST(NULL AS STRING) AS subscription_cancellation_notification_flow_activation_level,\n CAST(NULL AS STRING) AS subscription_confirmation_notification_flow_activation_level,\n CAST(NULL AS STRING) AS subscription_payment_failure_notification_flow_activation_level,\n CAST(NULL AS STRING) AS sms_campaign_to_grow_product_subscribers_activation_level,\n CAST(NULL AS STRING) AS sms_flows_swell_birthday_activation_level,\n CAST(NULL AS STRING) AS sms_campaigns_vip_tier_activation_level\n FROM dev_dkruh1.analytics___sms__store_metrics_daily\n WHERE date >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n AND is_active = 1\n \n UNION ALL\n\n SELECT\n activeness_date AS metric_date,\n app_key AS app_key,\n CAST(NULL AS STRING) AS organization_key,\n CAST(NULL AS SMALLINT) AS ugc_is_map_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_video_reviews_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_image_reviews_enabled,\n CAST(NULL AS STRING) AS ugc_activation_level,\n CAST(NULL AS STRING) AS ugc_reviews_store_widget_version,\n CAST(NULL AS STRING) AS ugc_is_store_reviews_exported,\n CAST(NULL AS SMALLINT) AS ugc_is_walmart_retail_syndication_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_facebook_syndication_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_google_feed_enabled,\n CAST(NULL AS SMALLINT) AS ugc_is_google_seller_rating_enabled,\n CAST(NULL AS SMALLINT) AS loyalty_is_active1,\n CAST(NULL AS INT) AS loyalty_is_active2,\n CAST(NULL AS INT) AS loyalty_is_active2_1,\n CAST(NULL AS STRING) AS loyalty_first_time_active3_date,\n CAST(NULL AS BIGINT) AS sms_active_campaign_cnt,\n CAST(NULL AS BIGINT) AS sms_active_flow_cnt,\n CAST(NULL AS BIGINT) AS sms_subscriber_cnt,\n CAST(NULL AS BIGINT) AS sms_new_subscriber_cnt,\n CAST(NULL AS DECIMAL(22,4)) AS sms_usage_sum,\n CAST(NULL AS STRING) AS sms_is_pop_up_enabled,\n CAST(NULL AS STRING) AS sms_last_day_usage_sum,\n CAST(NULL AS STRING) AS sms_7_days_usage_sum,\n CAST(NULL AS STRING) AS sms_30_days_usage_sum,\n CAST(NULL AS STRING) AS sms_90_days_usage_sum,\n CAST(NULL AS STRING) AS sms_last_day_message_cnt,\n CAST(NULL AS STRING) AS sms_7_days_message_cnt,\n CAST(NULL AS STRING) AS sms_30_days_message_cnt,\n CAST(NULL AS STRING) AS sms_90_days_message_cnt,\n sms_flows_swell_points_reminder_activation_level AS sms_flows_swell_points_reminder_activation_level,\n sms_flows_yotpo_site_review_activation_level AS sms_flows_yotpo_site_review_activation_level,\n sms_campaigns_reward_program_activation_level AS sms_campaigns_reward_program_activation_level,\n email_editor_reviews_block_activation_level AS email_editor_reviews_block_activation_level,\n review_earning_rule_loyalty_activation_level AS review_earning_rule_loyalty_activation_level,\n sms_campaigns_click_to_redeem_activation_level AS sms_campaigns_click_to_redeem_activation_level,\n email_editor_loyalty_block_activation_level AS email_editor_loyalty_block_activation_level,\n sign_up_for_sms_earning_rule_loyalty_activation_level AS sign_up_for_sms_earning_rule_loyalty_activation_level,\n email_editor_product_with_reviews_block_activation_level AS email_editor_product_with_reviews_block_activation_level,\n sms_flows_swell_tier_earned_activation_level AS sms_flows_swell_tier_earned_activation_level,\n sms_campaigns_redemption_reminder_activation_level AS sms_campaigns_redemption_reminder_activation_level,\n sms_flows_yotpo_product_review_activation_level AS sms_flows_yotpo_product_review_activation_level,\n image_review_earning_rule_loyalty_activation_level AS image_review_earning_rule_loyalty_activation_level,\n subscriptions_management_url_notification_flow_activation_level AS subscriptions_management_url_notification_flow_activation_level,\n video_review_earning_rule_loyalty_activation_level AS video_review_earning_rule_loyalty_activation_level,\n loyalty_subscription_discount_reward_activation_level AS loyalty_subscription_discount_reward_activation_level,\n sms_flows_abandoned_checkout_reviews_star_rating_activation_level AS sms_flows_abandoned_checkout_reviews_star_rating_activation_level,\n sms_flows_cdp_optin_status_changed_activation_level AS sms_flows_cdp_optin_status_changed_activation_level,\n subscription_cancellation_notification_flow_activation_level AS subscription_cancellation_notification_flow_activation_level,\n subscription_confirmation_notification_flow_activation_level AS subscription_confirmation_notification_flow_activation_level,\n subscription_payment_failure_notification_flow_activation_level AS subscription_payment_failure_notification_flow_activation_level,\n sms_campaign_to_grow_product_subscribers_activation_level AS sms_campaign_to_grow_product_subscribers_activation_level,\n sms_flows_swell_birthday_activation_level AS sms_flows_swell_birthday_activation_level,\n sms_campaigns_vip_tier_activation_level AS sms_campaigns_vip_tier_activation_level\n FROM dev_dkruh1.analytics___synergies__activation_level_daily\n WHERE activeness_date >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n \n\n\n), product_metrics_res AS (\n\n SELECT \n metric_date,\n app_key,\n MAX(organization_key) AS organization_key,\n MAX(ugc_is_map_enabled) AS ugc_is_map_enabled,\n MAX(ugc_is_video_reviews_enabled) AS ugc_is_video_reviews_enabled,\n MAX(ugc_is_image_reviews_enabled) AS ugc_is_image_reviews_enabled,\n MAX(ugc_activation_level) AS ugc_activation_level,\n MAX(ugc_reviews_store_widget_version) AS ugc_reviews_store_widget_version,\n MAX(ugc_is_store_reviews_exported) AS ugc_is_store_reviews_exported,\n MAX(ugc_is_walmart_retail_syndication_enabled) AS ugc_is_walmart_retail_syndication_enabled,\n MAX(ugc_is_facebook_syndication_enabled) AS ugc_is_facebook_syndication_enabled,\n MAX(ugc_is_google_feed_enabled) AS ugc_is_google_feed_enabled,\n MAX(ugc_is_google_seller_rating_enabled) AS ugc_is_google_seller_rating_enabled,\n MAX(loyalty_is_active1) AS loyalty_is_active1,\n MAX(loyalty_is_active2) AS loyalty_is_active2,\n MAX(loyalty_is_active2_1) AS loyalty_is_active2_1,\n MAX(loyalty_first_time_active3_date) AS loyalty_first_time_active3_date,\n MAX(sms_active_campaign_cnt) AS sms_active_campaign_cnt,\n MAX(sms_active_flow_cnt) AS sms_active_flow_cnt,\n MAX(sms_subscriber_cnt) AS sms_subscriber_cnt,\n MAX(sms_new_subscriber_cnt) AS sms_new_subscriber_cnt,\n MAX(sms_usage_sum) AS sms_usage_sum,\n MAX(sms_is_pop_up_enabled) AS sms_is_pop_up_enabled,\n MAX(sms_last_day_usage_sum) AS sms_last_day_usage_sum,\n MAX(sms_7_days_usage_sum) AS sms_7_days_usage_sum,\n MAX(sms_30_days_usage_sum) AS sms_30_days_usage_sum,\n MAX(sms_90_days_usage_sum) AS sms_90_days_usage_sum,\n MAX(sms_last_day_message_cnt) AS sms_last_day_message_cnt,\n MAX(sms_7_days_message_cnt) AS sms_7_days_message_cnt,\n MAX(sms_30_days_message_cnt) AS sms_30_days_message_cnt,\n MAX(sms_90_days_message_cnt) AS sms_90_days_message_cnt,\n MAX(sms_flows_swell_points_reminder_activation_level) AS sms_flows_swell_points_reminder_activation_level,\n MAX(sms_flows_yotpo_site_review_activation_level) AS sms_flows_yotpo_site_review_activation_level,\n MAX(sms_campaigns_reward_program_activation_level) AS sms_campaigns_reward_program_activation_level,\n MAX(email_editor_reviews_block_activation_level) AS email_editor_reviews_block_activation_level,\n MAX(review_earning_rule_loyalty_activation_level) AS review_earning_rule_loyalty_activation_level,\n MAX(sms_campaigns_click_to_redeem_activation_level) AS sms_campaigns_click_to_redeem_activation_level,\n MAX(email_editor_loyalty_block_activation_level) AS email_editor_loyalty_block_activation_level,\n MAX(sign_up_for_sms_earning_rule_loyalty_activation_level) AS sign_up_for_sms_earning_rule_loyalty_activation_level,\n MAX(email_editor_product_with_reviews_block_activation_level) AS email_editor_product_with_reviews_block_activation_level,\n MAX(sms_flows_swell_tier_earned_activation_level) AS sms_flows_swell_tier_earned_activation_level,\n MAX(sms_campaigns_redemption_reminder_activation_level) AS sms_campaigns_redemption_reminder_activation_level,\n MAX(sms_flows_yotpo_product_review_activation_level) AS sms_flows_yotpo_product_review_activation_level,\n MAX(image_review_earning_rule_loyalty_activation_level) AS image_review_earning_rule_loyalty_activation_level,\n MAX(subscriptions_management_url_notification_flow_activation_level) AS subscriptions_management_url_notification_flow_activation_level,\n MAX(video_review_earning_rule_loyalty_activation_level) AS video_review_earning_rule_loyalty_activation_level,\n MAX(loyalty_subscription_discount_reward_activation_level) AS loyalty_subscription_discount_reward_activation_level,\n MAX(sms_flows_abandoned_checkout_reviews_star_rating_activation_level) AS sms_flows_abandoned_checkout_reviews_star_rating_activation_level,\n MAX(sms_flows_cdp_optin_status_changed_activation_level) AS sms_flows_cdp_optin_status_changed_activation_level,\n MAX(subscription_cancellation_notification_flow_activation_level) AS subscription_cancellation_notification_flow_activation_level,\n MAX(subscription_confirmation_notification_flow_activation_level) AS subscription_confirmation_notification_flow_activation_level,\n MAX(subscription_payment_failure_notification_flow_activation_level) AS subscription_payment_failure_notification_flow_activation_level,\n MAX(sms_campaign_to_grow_product_subscribers_activation_level) AS sms_campaign_to_grow_product_subscribers_activation_level,\n MAX(sms_flows_swell_birthday_activation_level) AS sms_flows_swell_birthday_activation_level,\n MAX(sms_campaigns_vip_tier_activation_level) AS sms_campaigns_vip_tier_activation_level\n FROM product_metrics_union\n GROUP BY 1,2 \n\n)\n\n SELECT *\n FROM product_metrics_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_product_metrics_daily_diff": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_product_metrics_daily_diff", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.sql", "unique_id": "model.yoda.analytics___platform__store_product_metrics_daily_diff", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily_diff", "analytics___platform__store_product_metrics_daily_diff"], "alias": "analytics___platform__store_product_metrics_daily_diff", "checksum": {"name": "sha256", "checksum": "6608983c58111620f69c1334538ed180a186ef507ffa6e68525bf8074022eb5e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "product_metrics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "product_metrics"], "description": "A modeled view of product metrics as rows in a structure made for injection to external systems.|\nThis model takes the most recent changes in daily and lifestime store product metrics.|\nPK: External_ID__c | Granularity: App_Key__c, Product_Metrics_Name__c", "columns": {"Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "External_ID__c": {"name": "External_ID__c", "description": "PK - combination of app key and metric name, generated to serve as id in external systems.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Organization_Key__c": {"name": "Organization_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "App_Key__c": {"name": "App_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Metrics_Name__c": {"name": "Product_Metrics_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Lines__c": {"name": "Product_Lines__c", "description": "Products related to the metirc in line, in case of few products they will should be sperated with semicolon.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "The proudct metric value - used for customer.io where value is not mapped to different fields.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Enabled__c": {"name": "Enabled__c", "description": "Holds value for boolean metrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Metric_Value__c": {"name": "Metric_Value__c", "description": "Holds value for string metrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Quantity__c": {"name": "Quantity__c", "description": "Holds value for quantitive metrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "From_Date__c": {"name": "From_Date__c", "description": "Active date for the metric.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "To_Date__c": {"name": "To_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "Self_Service__c": {"name": "Self_Service__c", "description": "Indicates if a synergy activation level metric relates to ss plan.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "Free__c": {"name": "Free__c", "description": "Indicates if a synergy activation level metric relates to free plan.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "product_metrics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082646.427385, "relation_name": "dev_dkruh1.analytics___platform__store_product_metrics_daily_diff", "raw_code": "{{ config(\n materialized = 'view'\n)\n}}\n-- Import --\n\nWITH import_store_product_metrics_snapshot_daily AS (\n\n SELECT * FROM {{ ref('analytics___platform__store_product_metrics_daily_snapshot') }}\n WHERE DATE(dwh_updated_at) = CURRENT_DATE\n\n), import_store_product_metrics_snapshot_scd AS ( \n\n SELECT * FROM {{ ref('analytics___platform__store_product_metrics_lifetime_scd') }}\n WHERE DATE(updated_at) = CURRENT_DATE\n\n-- Logic --\n\n), union_imports AS (\n\n SELECT\n app_key,\n organization_key,\n metric_name,\n products,\n target_field,\n value,\n metric_date\n FROM import_store_product_metrics_snapshot_daily\n\n UNION ALL\n\n SELECT\n app_key,\n organization_key,\n metric_name,\n products,\n target_field,\n value,\n updated_at AS metric_date\n FROM import_store_product_metrics_snapshot_scd\n\n), product_metrics_mapped AS (\n\n SELECT\n LEFT(CONCAT(app_key,'-',metric_name), 80) AS Name,\n CONCAT(app_key,'-',metric_name) AS External_ID__c,\n organization_key AS Organization_Key__c,\n app_key AS App_Key__c,\n metric_name AS Product_Metrics_Name__c,\n products AS Product_Lines__c,\n value,\n CASE WHEN target_field = 'From_Date__c' THEN '1'\n WHEN target_field = 'Enabled__c' THEN value\n END AS Enabled__c,\n CASE WHEN (products LIKE '%synergy%' AND value LIKE '%;%') THEN SPLIT(value, ';')[0]\n WHEN target_field = 'Metric_Value__c' THEN value\n END AS Metric_Value__c,\n IF(target_field = 'Quantity__c', value, NULL) AS Quantity__c,\n IF(target_field = 'From_Date__c', value, metric_date) AS From_Date__c,\n IF(target_field = 'From_Date__c', NULL, metric_date) AS To_Date__c,\n SMALLINT(IF(products LIKE '%synergy%' AND value LIKE '%;self_service', 1, 0)) AS Self_Service__c,\n SMALLINT(IF(products LIKE '%synergy%' AND value LIKE '%;free', 1, 0)) AS Free__c\n FROM union_imports\n WHERE NOT (products LIKE '%synergy%' AND value LIKE '%;churned')\n\n)\n\n-- Result --\n\nSELECT * FROM product_metrics_mapped", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily_snapshot", "package": null, "version": null}, {"name": "analytics___platform__store_product_metrics_lifetime_scd", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot", "model.yoda.analytics___platform__store_product_metrics_lifetime_scd"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.sql", "compiled": true, "compiled_code": "\n-- Import --\n\nWITH import_store_product_metrics_snapshot_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store_product_metrics_daily_snapshot\n WHERE DATE(dwh_updated_at) = CURRENT_DATE\n\n), import_store_product_metrics_snapshot_scd AS ( \n\n SELECT * FROM dev_dkruh1.analytics___platform__store_product_metrics_lifetime_scd\n WHERE DATE(updated_at) = CURRENT_DATE\n\n-- Logic --\n\n), union_imports AS (\n\n SELECT\n app_key,\n organization_key,\n metric_name,\n products,\n target_field,\n value,\n metric_date\n FROM import_store_product_metrics_snapshot_daily\n\n UNION ALL\n\n SELECT\n app_key,\n organization_key,\n metric_name,\n products,\n target_field,\n value,\n updated_at AS metric_date\n FROM import_store_product_metrics_snapshot_scd\n\n), product_metrics_mapped AS (\n\n SELECT\n LEFT(CONCAT(app_key,'-',metric_name), 80) AS Name,\n CONCAT(app_key,'-',metric_name) AS External_ID__c,\n organization_key AS Organization_Key__c,\n app_key AS App_Key__c,\n metric_name AS Product_Metrics_Name__c,\n products AS Product_Lines__c,\n value,\n CASE WHEN target_field = 'From_Date__c' THEN '1'\n WHEN target_field = 'Enabled__c' THEN value\n END AS Enabled__c,\n CASE WHEN (products LIKE '%synergy%' AND value LIKE '%;%') THEN SPLIT(value, ';')[0]\n WHEN target_field = 'Metric_Value__c' THEN value\n END AS Metric_Value__c,\n IF(target_field = 'Quantity__c', value, NULL) AS Quantity__c,\n IF(target_field = 'From_Date__c', value, metric_date) AS From_Date__c,\n IF(target_field = 'From_Date__c', NULL, metric_date) AS To_Date__c,\n SMALLINT(IF(products LIKE '%synergy%' AND value LIKE '%;self_service', 1, 0)) AS Self_Service__c,\n SMALLINT(IF(products LIKE '%synergy%' AND value LIKE '%;free', 1, 0)) AS Free__c\n FROM union_imports\n WHERE NOT (products LIKE '%synergy%' AND value LIKE '%;churned')\n\n)\n\n-- Result --\n\nSELECT * FROM product_metrics_mapped", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_product_metrics_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_product_metrics_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.sql", "unique_id": "model.yoda.analytics___platform__store_product_metrics_daily_snapshot", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily_snapshot", "analytics___platform__store_product_metrics_daily_snapshot"], "alias": "analytics___platform__store_product_metrics_daily_snapshot", "checksum": {"name": "sha256", "checksum": "62f12539f082e1ba06dbcffc4d51f62738eaffb96221cc34464dc90882bf2021"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "product_metrics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["metric_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "product_metrics"], "description": "An incremental model of unpivoted product metrics.|\nThe model is based on a dedicated macro that catches the current value for each new metric (per store) with the date the current value began.|\nIn the incremental terms once a new metric was written for the first time, a new row for that app_key and metric_name will be appended only when a new value appears - with the according metric_date.|\nPK & Granularity: app_key, metric_name, metric_date", "columns": {"app_key": {"name": "app_key", "description": "PK 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_date": {"name": "metric_date", "description": "PK 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "value": {"name": "value", "description": "The value of the metric.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products": {"name": "products", "description": "Products related to the metric line, if there is more than 1 product they should be seperated with semicolon.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_name": {"name": "metric_name", "description": "PK 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "target_field": {"name": "target_field", "description": "Which field in the external systems (customer.io/salesforce) should hold the value of this metric - based on data type (quantivie/string/date..)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "product_metrics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["metric_date"]}, "created_at": 1700082646.4456203, "relation_name": "dev_dkruh1.analytics___platform__store_product_metrics_daily_snapshot", "raw_code": "{%- set source_table = ref(\"analytics___platform__store_product_metrics_daily\") -%}\n{%- set group_by_fields = [\"app_key\", \"organization_key\", \"metric_date\"] -%}\n{%- set fields_mapping = [\n {\n \"source_field\": \"loyalty_is_active1\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'is active 1'\",\n \"target_field\": \"'Enabled__c'\"\n },\n {\n \"source_field\": \"loyalty_is_active2\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'is active 2'\",\n \"target_field\": \"'Enabled__c'\"\n },\n {\n \"source_field\": \"loyalty_is_active2_1\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'is active 2.1'\",\n \"target_field\": \"'Enabled__c'\"\n },\n {\n \"source_field\": \"loyalty_first_time_active3_date\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'first time active3 date'\",\n \"target_field\": \"'From_Date__c'\"\n },\n {\n \"source_field\": \"ugc_is_map_enabled\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'is map enabled'\",\n \"target_field\": \"'Enabled__c'\"\n },\n {\n \"source_field\": \"ugc_is_video_reviews_enabled\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'is video reviews enabled'\",\n \"target_field\": \"'Enabled__c'\"\n },\n {\n \"source_field\": \"ugc_is_image_reviews_enabled\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'is image reviews enabled'\",\n \"target_field\": \"'Enabled__c'\"\n },\n {\n \"source_field\": \"ugc_activation_level\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'ugc activation level'\",\n \"target_field\": \"'Metric_Value__c'\"\n },\n {\n \"source_field\": \"sms_flows_swell_points_reminder_activation_level\",\n \"products\": \"'synergy;sms;loyalty'\",\n \"metric_name\": \"'sms flows swell points reminder'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_flows_yotpo_site_review_activation_level\",\n \"products\": \"'synergy;sms;ugc'\",\n \"metric_name\": \"'sms flows yotpo site review'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_campaigns_reward_program_activation_level\",\n \"products\": \"'synergy;sms;loyalty'\",\n \"metric_name\": \"'sms campaigns reward program'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"email_editor_reviews_block_activation_level\",\n \"products\": \"'synergy;ugc;email'\",\n \"metric_name\": \"'email editor reviews block'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"review_earning_rule_loyalty_activation_level\",\n \"products\": \"'synergy;loyalty;ugc'\",\n \"metric_name\": \"'review earning rule loyalty'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_campaigns_click_to_redeem_activation_level\",\n \"products\": \"'synergy;sms;loyalty'\",\n \"metric_name\": \"'sms campaigns click to redeem'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"email_editor_loyalty_block_activation_level\",\n \"products\": \"'synergy;loyalty;email'\",\n \"metric_name\": \"'email editor loyalty block'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sign_up_for_sms_earning_rule_loyalty_activation_level\",\n \"products\": \"'synergy;sms;loyalty'\",\n \"metric_name\": \"'sign up for sms earning rule loyalty'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"email_editor_product_with_reviews_block_activation_level\",\n \"products\": \"'synergy;ugc;email'\",\n \"metric_name\": \"'email editor product with reviews block'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_flows_swell_tier_earned_activation_level\",\n \"products\": \"'synergy;sms;loyalty'\",\n \"metric_name\": \"'sms flows swell tier earned'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_campaigns_redemption_reminder_activation_level\",\n \"products\": \"'synergy;sms;loyalty'\",\n \"metric_name\": \"'sms campaigns redemption reminder'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_flows_yotpo_product_review_activation_level\",\n \"products\": \"'synergy;sms;ugc'\",\n \"metric_name\": \"'sms flows yotpo product review'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"image_review_earning_rule_loyalty_activation_level\",\n \"products\": \"'synergy;loyalty;ugc'\",\n \"metric_name\": \"'image review earning rule loyalty'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"subscriptions_management_url_notification_flow_activation_level\",\n \"products\": \"'synergy;sms;subscriptions'\",\n \"metric_name\": \"'subscriptions management url notification flow'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_flows_abandoned_checkout_reviews_star_rating_activation_level\",\n \"products\": \"'synergy;sms;ugc'\",\n \"metric_name\": \"'sms flows abandoned checkout reviews star rating'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"video_review_earning_rule_loyalty_activation_level\",\n \"products\": \"'synergy;loyalty;ugc'\",\n \"metric_name\": \"'video review earning rule loyalty'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"loyalty_subscription_discount_reward_activation_level\",\n \"products\": \"'synergy;loyalty;subscriptions'\",\n \"metric_name\": \"'loyalty subscription discount reward'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_flows_cdp_optin_status_changed_activation_level\",\n \"products\": \"'synergy;sms;loyalty;email'\",\n \"metric_name\": \"'sms flows cdp optin status changed'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"subscription_cancellation_notification_flow_activation_level\",\n \"products\": \"'synergy;loyalty;subscriptions'\",\n \"metric_name\": \"'subscription cancellation notification flow'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"subscription_confirmation_notification_flow_activation_level\",\n \"products\": \"'synergy;loyalty;subscriptions'\",\n \"metric_name\": \"'subscription confirmation notification flow'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"subscription_payment_failure_notification_flow_activation_level\",\n \"products\": \"'synergy;loyalty;subscriptions'\",\n \"metric_name\": \"'subscription payment failure notification flow'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_campaign_to_grow_product_subscribers_activation_level\",\n \"products\": \"'synergy;sms;subscriptions'\",\n \"metric_name\": \"'sms campaign to grow product subscribers'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_flows_swell_birthday_activation_level\",\n \"products\": \"'synergy;sms;loyalty'\",\n \"metric_name\": \"'sms flows swell birthday'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_campaigns_vip_tier_activation_level\",\n \"products\": \"'synergy;sms;loyalty'\",\n \"metric_name\": \"'sms campaigns vip tier'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"sms_active_campaign_cnt\",\n \"products\": \"'sms'\",\n \"metric_name\": \"'active campaigns'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"sms_active_flow_cnt\",\n \"products\": \"'sms'\",\n \"metric_name\": \"'active flows'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"ugc_reviews_store_widget_version\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'reviews store widget version'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"ugc_is_store_reviews_exported\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'is store reviews exported'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"ugc_is_walmart_retail_syndication_enabled\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'is walmart retail syndication enabled'\",\n \"target_field\": \"'Enabled__c'\",\n },\n {\n \"source_field\": \"ugc_is_facebook_syndication_enabled\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'is facebook syndication enabled'\",\n \"target_field\": \"'Enabled__c'\",\n },\n {\n \"source_field\": \"ugc_is_google_feed_enabled\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'is google feed enabled'\",\n \"target_field\": \"'Enabled__c'\",\n },\n {\n \"source_field\": \"ugc_is_google_seller_rating_enabled\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'is google seller rating enabled'\",\n \"target_field\": \"'Enabled__c'\",\n },\n {\n \"source_field\": \"sms_is_pop_up_enabled\",\n \"products\": \"'sms'\",\n \"metric_name\": \"'is sms pop up enabled'\",\n \"target_field\": \"'Enabled__c'\",\n },\n] -%}\n\n{{ product_metrics_unpivot_daily(source_table, group_by_fields, fields_mapping) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.product_metrics_unpivot_daily", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.sql", "compiled": true, "compiled_code": "\n \n WITH\n\n new_metrics_unpivoted AS (\n \n SELECT\n app_key,\n organization_key,\n metric_date,\n STACK(41,\n STRING(MAX(loyalty_is_active1)),'loyalty','is active 1','Enabled__c',\n STRING(MAX(loyalty_is_active2)),'loyalty','is active 2','Enabled__c',\n STRING(MAX(loyalty_is_active2_1)),'loyalty','is active 2.1','Enabled__c',\n STRING(MAX(loyalty_first_time_active3_date)),'loyalty','first time active3 date','From_Date__c',\n STRING(MAX(ugc_is_map_enabled)),'ugc','is map enabled','Enabled__c',\n STRING(MAX(ugc_is_video_reviews_enabled)),'ugc','is video reviews enabled','Enabled__c',\n STRING(MAX(ugc_is_image_reviews_enabled)),'ugc','is image reviews enabled','Enabled__c',\n STRING(MAX(ugc_activation_level)),'ugc','ugc activation level','Metric_Value__c',\n STRING(MAX(sms_flows_swell_points_reminder_activation_level)),'synergy;sms;loyalty','sms flows swell points reminder','Metric_Value__c',\n STRING(MAX(sms_flows_yotpo_site_review_activation_level)),'synergy;sms;ugc','sms flows yotpo site review','Metric_Value__c',\n STRING(MAX(sms_campaigns_reward_program_activation_level)),'synergy;sms;loyalty','sms campaigns reward program','Metric_Value__c',\n STRING(MAX(email_editor_reviews_block_activation_level)),'synergy;ugc;email','email editor reviews block','Metric_Value__c',\n STRING(MAX(review_earning_rule_loyalty_activation_level)),'synergy;loyalty;ugc','review earning rule loyalty','Metric_Value__c',\n STRING(MAX(sms_campaigns_click_to_redeem_activation_level)),'synergy;sms;loyalty','sms campaigns click to redeem','Metric_Value__c',\n STRING(MAX(email_editor_loyalty_block_activation_level)),'synergy;loyalty;email','email editor loyalty block','Metric_Value__c',\n STRING(MAX(sign_up_for_sms_earning_rule_loyalty_activation_level)),'synergy;sms;loyalty','sign up for sms earning rule loyalty','Metric_Value__c',\n STRING(MAX(email_editor_product_with_reviews_block_activation_level)),'synergy;ugc;email','email editor product with reviews block','Metric_Value__c',\n STRING(MAX(sms_flows_swell_tier_earned_activation_level)),'synergy;sms;loyalty','sms flows swell tier earned','Metric_Value__c',\n STRING(MAX(sms_campaigns_redemption_reminder_activation_level)),'synergy;sms;loyalty','sms campaigns redemption reminder','Metric_Value__c',\n STRING(MAX(sms_flows_yotpo_product_review_activation_level)),'synergy;sms;ugc','sms flows yotpo product review','Metric_Value__c',\n STRING(MAX(image_review_earning_rule_loyalty_activation_level)),'synergy;loyalty;ugc','image review earning rule loyalty','Metric_Value__c',\n STRING(MAX(subscriptions_management_url_notification_flow_activation_level)),'synergy;sms;subscriptions','subscriptions management url notification flow','Metric_Value__c',\n STRING(MAX(sms_flows_abandoned_checkout_reviews_star_rating_activation_level)),'synergy;sms;ugc','sms flows abandoned checkout reviews star rating','Metric_Value__c',\n STRING(MAX(video_review_earning_rule_loyalty_activation_level)),'synergy;loyalty;ugc','video review earning rule loyalty','Metric_Value__c',\n STRING(MAX(loyalty_subscription_discount_reward_activation_level)),'synergy;loyalty;subscriptions','loyalty subscription discount reward','Metric_Value__c',\n STRING(MAX(sms_flows_cdp_optin_status_changed_activation_level)),'synergy;sms;loyalty;email','sms flows cdp optin status changed','Metric_Value__c',\n STRING(MAX(subscription_cancellation_notification_flow_activation_level)),'synergy;loyalty;subscriptions','subscription cancellation notification flow','Metric_Value__c',\n STRING(MAX(subscription_confirmation_notification_flow_activation_level)),'synergy;loyalty;subscriptions','subscription confirmation notification flow','Metric_Value__c',\n STRING(MAX(subscription_payment_failure_notification_flow_activation_level)),'synergy;loyalty;subscriptions','subscription payment failure notification flow','Metric_Value__c',\n STRING(MAX(sms_campaign_to_grow_product_subscribers_activation_level)),'synergy;sms;subscriptions','sms campaign to grow product subscribers','Metric_Value__c',\n STRING(MAX(sms_flows_swell_birthday_activation_level)),'synergy;sms;loyalty','sms flows swell birthday','Metric_Value__c',\n STRING(MAX(sms_campaigns_vip_tier_activation_level)),'synergy;sms;loyalty','sms campaigns vip tier','Metric_Value__c',\n STRING(MAX(sms_active_campaign_cnt)),'sms','active campaigns','Quantity__c',\n STRING(MAX(sms_active_flow_cnt)),'sms','active flows','Quantity__c',\n STRING(MAX(ugc_reviews_store_widget_version)),'ugc','reviews store widget version','Quantity__c',\n STRING(MAX(ugc_is_store_reviews_exported)),'ugc','is store reviews exported','Quantity__c',\n STRING(MAX(ugc_is_walmart_retail_syndication_enabled)),'ugc','is walmart retail syndication enabled','Enabled__c',\n STRING(MAX(ugc_is_facebook_syndication_enabled)),'ugc','is facebook syndication enabled','Enabled__c',\n STRING(MAX(ugc_is_google_feed_enabled)),'ugc','is google feed enabled','Enabled__c',\n STRING(MAX(ugc_is_google_seller_rating_enabled)),'ugc','is google seller rating enabled','Enabled__c',\n STRING(MAX(sms_is_pop_up_enabled)),'sms','is sms pop up enabled','Enabled__c')\n AS (value, products, metric_name, target_field)\n FROM dev_dkruh1.analytics___platform__store_product_metrics_daily\n \n GROUP BY 1,2,3\n\n ),\n\n new_metrics_diff AS (\n\n SELECT * \n FROM new_metrics_unpivoted\n QUALIFY value <> NVL(LAG(value) OVER (PARTITION BY app_key, metric_name ORDER BY metric_date ASC), '')\n\n ),\n\n new_metrics_diff_latest AS (\n\n SELECT * \n FROM new_metrics_diff\n QUALIFY metric_date = MAX(metric_date) OVER (PARTITION BY app_key, metric_name)\n\n ),\n\n product_metircs_unpivot_daily_diff AS (\n SELECT * FROM new_metrics_diff_latest)\n\n SELECT *,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM product_metircs_unpivot_daily_diff", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_product_metrics_lifetime": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_product_metrics_lifetime", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.sql", "unique_id": "model.yoda.analytics___platform__store_product_metrics_lifetime", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_lifetime", "analytics___platform__store_product_metrics_lifetime"], "alias": "analytics___platform__store_product_metrics_lifetime", "checksum": {"name": "sha256", "checksum": "762532f5ac6d88e5ca701f8118e2474a815f7ec0988d8dbe6f7772a32cd279ba"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "product_metrics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "product_metrics"], "description": "A modeled view of lifetime product metrics per store. PK & Granularity: app_key", "columns": {"app_key": {"name": "app_key", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_enablement_date": {"name": "sms_enablement_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "ugc_enablement_date": {"name": "ugc_enablement_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "loyalty_enablement_date": {"name": "loyalty_enablement_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "loyalty_time_to_active1_from_creation": {"name": "loyalty_time_to_active1_from_creation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "loyalty_time_to_active1_from_subscription": {"name": "loyalty_time_to_active1_from_subscription", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "loyalty_time_to_active2_from_creation": {"name": "loyalty_time_to_active2_from_creation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "loyalty_time_to_active2_from_subscription": {"name": "loyalty_time_to_active2_from_subscription", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "loyalty_live_date": {"name": "loyalty_live_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "loyalty_onboarding_completion_date": {"name": "loyalty_onboarding_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "loyalty_next_renewal_date": {"name": "loyalty_next_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_live_date": {"name": "sms_live_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_onboarding_completion_date": {"name": "sms_onboarding_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_next_renewal_date": {"name": "sms_next_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "email_live_date": {"name": "email_live_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "email_onboarding_completion_date": {"name": "email_onboarding_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "email_next_renewal_date": {"name": "email_next_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscriptions_live_date": {"name": "subscriptions_live_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscriptions_onboarding_completion_date": {"name": "subscriptions_onboarding_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscriptions_next_renewal_date": {"name": "subscriptions_next_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "ugc_live_date": {"name": "ugc_live_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "ugc_onboarding_completion_date": {"name": "ugc_onboarding_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "ugc_next_renewal_date": {"name": "ugc_next_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "product_metrics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082646.5119882, "relation_name": "dev_dkruh1.analytics___platform__store_product_metrics_lifetime", "raw_code": "{{ config( materialized = 'view' ) }}\n\n-- Import --\n\nWITH import_merchant_plan_daily AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_daily') }}\n\n), import_merchant_plan_metrics_cohort AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant_plan_metrics_cohort') }}\n\n), import_salesforce_account AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__account') }}\n\n), import_salesforce_account_product AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__account_product') }}\n\n), import_platfrom_store AS (\n\n SELECT * FROM {{ ref('analytics___platform__store') }}\n\n-- Logic --\n\n), loyalty_merchant_current_plan (\n\n SELECT\n app_key,\n merchant_id,\n plan_name \n FROM import_merchant_plan_daily\n QUALIFY date = MAX(date) OVER (PARTITION BY app_key)\n\n), loyalty_plan_metrics AS (\n\n SELECT\n current_plan.app_key,\n plan_metrics.time_to_active1_from_creation AS loyalty_time_to_active1_from_creation,\n plan_metrics.time_to_active1_from_subscription AS loyalty_time_to_active1_from_subscription,\n plan_metrics.time_to_active2_from_creation AS loyalty_time_to_active2_from_creation,\n plan_metrics.time_to_active2_from_subscription AS loyalty_time_to_active2_from_subscription\n FROM loyalty_merchant_current_plan AS current_plan\n INNER JOIN import_merchant_plan_metrics_cohort AS plan_metrics\n ON current_plan.merchant_id = plan_metrics.merchant_id\n AND current_plan.plan_name = plan_metrics.plan_name\n\n), sf_account_product_metrics AS (\n\n SELECT\n account_id,\n product_name,\n MIN(live_date) AS live_date,\n MIN(onboarding_completion_date) AS onboarding_completion_date,\n MIN(opportunity_renewal_date) AS next_renewal_date\n FROM import_salesforce_account_product\n GROUP BY 1,2\n\n), account_product_metrics_pivot AS (\n\n {%- set products = ['loyalty','sms','email','subscriptions'] -%}\n {%- set metrics_list = [] -%}\n {%- set metrics_select_list = [] -%}\n {%- set fields_suffix = ['live_date','onboarding_completion_date','next_renewal_date'] -%}\n {%- for product in products -%}\n {%- for field in fields_suffix -%}\n {%- do metrics_list.append(product ~ \"_\" ~ field) -%}\n {%- do metrics_select_list.append(\"IF(LOWER(product_name) = '\" ~ product ~ \"',\" ~ field ~ \",NULL) AS \" ~ product ~ \"_\" ~ field) -%}\n {%- endfor -%}\n {%- endfor -%}\n {%- for field in fields_suffix -%}\n {%- do metrics_list.append(\"ugc_\" ~ field) -%}\n {%- do metrics_select_list.append(\"IF(LOWER(product_name) = 'reviews',\" ~ field ~ \",NULL) AS ugc_\" ~ field) -%}\n {%- endfor %}\n\n SELECT\n account_id,\n {{ metrics_select_list | join(',\\n ') }}\n FROM sf_account_product_metrics\n\n), account_product_metrics_pivot_grouped AS (\n\n {%- set metrics_agg_list = [] -%}\n {%- set metrics_res_list = [] -%}\n {%- for metric in metrics_list -%}\n {%- do metrics_agg_list.append(\"MIN(\" ~ metric ~ \") AS \" ~ metric) -%}\n {%- do metrics_res_list.append(\"account_product.\" ~ metric) -%}\n {%- endfor %}\n\n SELECT\n account_id,\n {{ metrics_agg_list | join(',\\n ') }}\n FROM account_product_metrics_pivot\n GROUP BY 1\n\n), store_product_metrics_snapshot_res AS (\n\n SELECT\n store.app_key,\n store.organization_key,\n store.sms_enablement_date,\n store.reviews_enablement_date AS ugc_enablement_date,\n store.loyalty_enablement_date,\n loyalty_plan_metrics.loyalty_time_to_active1_from_creation,\n loyalty_plan_metrics.loyalty_time_to_active1_from_subscription,\n loyalty_plan_metrics.loyalty_time_to_active2_from_creation,\n loyalty_plan_metrics.loyalty_time_to_active2_from_subscription,\n {{ metrics_res_list | join(',\\n ') }}\n FROM import_platfrom_store AS store\n LEFT JOIN loyalty_plan_metrics\n ON store.app_key = loyalty_plan_metrics.app_key\n LEFT JOIN import_salesforce_account AS sf_account\n ON store.organization_key = sf_account.organization_key\n LEFT JOIN account_product_metrics_pivot_grouped AS account_product\n ON sf_account.account_id = account_product.account_id\n\n)\n\n-- Result --\n\nSELECT * FROM store_product_metrics_snapshot_res", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_metrics_cohort", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___salesforce__account_product", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_product", "model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_merchant_plan_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_daily\n\n), import_merchant_plan_metrics_cohort AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant_plan_metrics_cohort\n\n), import_salesforce_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__account\n\n), import_salesforce_account_product AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__account_product\n\n), import_platfrom_store AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store\n\n-- Logic --\n\n), loyalty_merchant_current_plan (\n\n SELECT\n app_key,\n merchant_id,\n plan_name \n FROM import_merchant_plan_daily\n QUALIFY date = MAX(date) OVER (PARTITION BY app_key)\n\n), loyalty_plan_metrics AS (\n\n SELECT\n current_plan.app_key,\n plan_metrics.time_to_active1_from_creation AS loyalty_time_to_active1_from_creation,\n plan_metrics.time_to_active1_from_subscription AS loyalty_time_to_active1_from_subscription,\n plan_metrics.time_to_active2_from_creation AS loyalty_time_to_active2_from_creation,\n plan_metrics.time_to_active2_from_subscription AS loyalty_time_to_active2_from_subscription\n FROM loyalty_merchant_current_plan AS current_plan\n INNER JOIN import_merchant_plan_metrics_cohort AS plan_metrics\n ON current_plan.merchant_id = plan_metrics.merchant_id\n AND current_plan.plan_name = plan_metrics.plan_name\n\n), sf_account_product_metrics AS (\n\n SELECT\n account_id,\n product_name,\n MIN(live_date) AS live_date,\n MIN(onboarding_completion_date) AS onboarding_completion_date,\n MIN(opportunity_renewal_date) AS next_renewal_date\n FROM import_salesforce_account_product\n GROUP BY 1,2\n\n), account_product_metrics_pivot AS (\n\n SELECT\n account_id,\n IF(LOWER(product_name) = 'loyalty',live_date,NULL) AS loyalty_live_date,\n IF(LOWER(product_name) = 'loyalty',onboarding_completion_date,NULL) AS loyalty_onboarding_completion_date,\n IF(LOWER(product_name) = 'loyalty',next_renewal_date,NULL) AS loyalty_next_renewal_date,\n IF(LOWER(product_name) = 'sms',live_date,NULL) AS sms_live_date,\n IF(LOWER(product_name) = 'sms',onboarding_completion_date,NULL) AS sms_onboarding_completion_date,\n IF(LOWER(product_name) = 'sms',next_renewal_date,NULL) AS sms_next_renewal_date,\n IF(LOWER(product_name) = 'email',live_date,NULL) AS email_live_date,\n IF(LOWER(product_name) = 'email',onboarding_completion_date,NULL) AS email_onboarding_completion_date,\n IF(LOWER(product_name) = 'email',next_renewal_date,NULL) AS email_next_renewal_date,\n IF(LOWER(product_name) = 'subscriptions',live_date,NULL) AS subscriptions_live_date,\n IF(LOWER(product_name) = 'subscriptions',onboarding_completion_date,NULL) AS subscriptions_onboarding_completion_date,\n IF(LOWER(product_name) = 'subscriptions',next_renewal_date,NULL) AS subscriptions_next_renewal_date,\n IF(LOWER(product_name) = 'reviews',live_date,NULL) AS ugc_live_date,\n IF(LOWER(product_name) = 'reviews',onboarding_completion_date,NULL) AS ugc_onboarding_completion_date,\n IF(LOWER(product_name) = 'reviews',next_renewal_date,NULL) AS ugc_next_renewal_date\n FROM sf_account_product_metrics\n\n), account_product_metrics_pivot_grouped AS (\n\n SELECT\n account_id,\n MIN(loyalty_live_date) AS loyalty_live_date,\n MIN(loyalty_onboarding_completion_date) AS loyalty_onboarding_completion_date,\n MIN(loyalty_next_renewal_date) AS loyalty_next_renewal_date,\n MIN(sms_live_date) AS sms_live_date,\n MIN(sms_onboarding_completion_date) AS sms_onboarding_completion_date,\n MIN(sms_next_renewal_date) AS sms_next_renewal_date,\n MIN(email_live_date) AS email_live_date,\n MIN(email_onboarding_completion_date) AS email_onboarding_completion_date,\n MIN(email_next_renewal_date) AS email_next_renewal_date,\n MIN(subscriptions_live_date) AS subscriptions_live_date,\n MIN(subscriptions_onboarding_completion_date) AS subscriptions_onboarding_completion_date,\n MIN(subscriptions_next_renewal_date) AS subscriptions_next_renewal_date,\n MIN(ugc_live_date) AS ugc_live_date,\n MIN(ugc_onboarding_completion_date) AS ugc_onboarding_completion_date,\n MIN(ugc_next_renewal_date) AS ugc_next_renewal_date\n FROM account_product_metrics_pivot\n GROUP BY 1\n\n), store_product_metrics_snapshot_res AS (\n\n SELECT\n store.app_key,\n store.organization_key,\n store.sms_enablement_date,\n store.reviews_enablement_date AS ugc_enablement_date,\n store.loyalty_enablement_date,\n loyalty_plan_metrics.loyalty_time_to_active1_from_creation,\n loyalty_plan_metrics.loyalty_time_to_active1_from_subscription,\n loyalty_plan_metrics.loyalty_time_to_active2_from_creation,\n loyalty_plan_metrics.loyalty_time_to_active2_from_subscription,\n account_product.loyalty_live_date,\n account_product.loyalty_onboarding_completion_date,\n account_product.loyalty_next_renewal_date,\n account_product.sms_live_date,\n account_product.sms_onboarding_completion_date,\n account_product.sms_next_renewal_date,\n account_product.email_live_date,\n account_product.email_onboarding_completion_date,\n account_product.email_next_renewal_date,\n account_product.subscriptions_live_date,\n account_product.subscriptions_onboarding_completion_date,\n account_product.subscriptions_next_renewal_date,\n account_product.ugc_live_date,\n account_product.ugc_onboarding_completion_date,\n account_product.ugc_next_renewal_date\n FROM import_platfrom_store AS store\n LEFT JOIN loyalty_plan_metrics\n ON store.app_key = loyalty_plan_metrics.app_key\n LEFT JOIN import_salesforce_account AS sf_account\n ON store.organization_key = sf_account.organization_key\n LEFT JOIN account_product_metrics_pivot_grouped AS account_product\n ON sf_account.account_id = account_product.account_id\n\n)\n\n-- Result --\n\nSELECT * FROM store_product_metrics_snapshot_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_product_metrics_lifetime_scd": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_product_metrics_lifetime_scd", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.sql", "unique_id": "model.yoda.analytics___platform__store_product_metrics_lifetime_scd", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_lifetime_scd", "analytics___platform__store_product_metrics_lifetime_scd"], "alias": "analytics___platform__store_product_metrics_lifetime_scd", "checksum": {"name": "sha256", "checksum": "9b9683c1a01c9bddbf0b11f3da9791c7fdf05b2e32a602a7b109d6a819ad281b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "product_metrics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "product_metrics"], "description": "An incremental model to keep track of changes in the lifetime product metrics, using the analytics_snapshot_scd macro. PK & Granularity: app_key, metric_name, updated_at", "columns": {"app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_name": {"name": "metric_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products": {"name": "products", "description": "Products related to the metric line, if there is more than 1 product they should be seperated with semicolon.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "target_field": {"name": "target_field", "description": "Which field in the external systems (customer.io/salesforce) should hold the value of this metric - based on data type (quantivie/string/date..)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "The value of the metric.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "Date when the line was appended in the model - serves as the active date for the metric in non date metrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "product_metrics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "incremental_strategy": "append"}, "created_at": 1700082646.5490901, "relation_name": "dev_dkruh1.analytics___platform__store_product_metrics_lifetime_scd", "raw_code": "{{\nanalytics_snapshot_scd(\n source_model = 'analytics___platform__store_product_metrics_lifetime_unpivot',\n unique_key = ['app_key', 'metric_name', 'organization_key', 'products', 'target_field'],\n tracked_columns = [ 'value' ],\n updated_at = 'metric_date'\n )\n}}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_lifetime_unpivot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_snapshot_scd", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.sql", "compiled": true, "compiled_code": "\n\n WITH \n \n\n incremental_calculation AS (\n SELECT \n source_table.app_key, source_table.metric_name, source_table.organization_key, source_table.products, source_table.target_field, source_table.value, source_table.metric_date, \n 1 AS is_new_update\n FROM dev_dkruh1.analytics___platform__store_product_metrics_lifetime_unpivot AS source_table\n )\n\n SELECT\n app_key, metric_name, organization_key, products, target_field, value, metric_date AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM incremental_calculation\n WHERE is_new_update = 1\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_product_metrics_lifetime_unpivot", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.sql", "unique_id": "model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_lifetime_unpivot", "analytics___platform__store_product_metrics_lifetime_unpivot"], "alias": "analytics___platform__store_product_metrics_lifetime_unpivot", "checksum": {"name": "sha256", "checksum": "a40d0ecfff50dbccda741e130a841c218be64c4731f87da171b4bab3d5a5bcf9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "product_metrics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "product_metrics"], "description": "A modeled of unpivotd lifetime product metrics into rows to be tracked in scd. PK & Grnaularity: app_key, products, metric_name", "columns": {"app_key": {"name": "app_key", "description": "PK 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "The value of the metric.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products": {"name": "products", "description": "Products related to the metric line, if there is more than 1 product they should be seperated with semicolon, PK 2/3.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_name": {"name": "metric_name", "description": "PK 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "target_field": {"name": "target_field", "description": "Which field in the external systems (customer.io/salesforce) should hold the value of this metric - based on data type (quantivie/string/date..)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_date": {"name": "metric_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "product_metrics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082646.5816572, "relation_name": "dev_dkruh1.analytics___platform__store_product_metrics_lifetime_unpivot", "raw_code": "{{ config( materialized = 'view') }}\n\n{%- set source_table = ref(\"analytics___platform__store_product_metrics_lifetime\") -%}\n{%- set group_by_fields = [\"app_key\", \"organization_key\"] -%}\n{%- set fields_mapping = [\n {\n \"source_field\": \"sms_enablement_date\",\n \"products\": \"'sms'\",\n \"metric_name\": \"'sms enablement date'\",\n \"target_field\": \"'From_Date__c'\",\n },\n {\n \"source_field\": \"ugc_enablement_date\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'ugc enablement date'\",\n \"target_field\": \"'From_Date__c'\",\n },\n {\n \"source_field\": \"loyalty_enablement_date\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'loyalty enablement date'\",\n \"target_field\": \"'From_Date__c'\",\n },\n {\n \"source_field\": \"loyalty_time_to_active1_from_creation\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'time to active 1 from creation'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loyalty_time_to_active1_from_subscription\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'time to active 1 from subscription'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loyalty_time_to_active2_from_creation\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'time to active 2 from creation'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loyalty_time_to_active2_from_subscription\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'time to active 2 from subscription'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\" : \"loyalty_next_renewal_date\",\n \"products\" : \"'loyalty'\",\n \"metric_name\" : \"'next loyalty renewal'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"loyalty_live_date\",\n \"products\" : \"'loyalty'\",\n \"metric_name\" : \"'loyalty live date'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"loyalty_onboarding_completion_date\",\n \"products\" : \"'loyalty'\",\n \"metric_name\" : \"'loyalty onboarding completion'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"sms_next_renewal_date\",\n \"products\" : \"'sms'\",\n \"metric_name\" : \"'next sms renewal'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"sms_live_date\",\n \"products\" : \"'sms'\",\n \"metric_name\" : \"'sms live date'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"sms_onboarding_completion_date\",\n \"products\" : \"'sms'\",\n \"metric_name\" : \"'sms onboarding completion'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"email_next_renewal_date\",\n \"products\" : \"'email'\",\n \"metric_name\" : \"'next email renewal'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"email_live_date\",\n \"products\" : \"'email'\",\n \"metric_name\" : \"'email live date'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"email_onboarding_completion_date\",\n \"products\" : \"'email'\",\n \"metric_name\" : \"'email onboarding completion'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"subscriptions_next_renewal_date\",\n \"products\" : \"'subscriptions'\",\n \"metric_name\" : \"'next subscriptions renewal'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"subscriptions_live_date\",\n \"products\" : \"'subscriptions'\",\n \"metric_name\" : \"'subscriptions live date'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"subscriptions_onboarding_completion_date\",\n \"products\" : \"'subscriptions'\",\n \"metric_name\" : \"'subscriptions onboarding completion'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"ugc_next_renewal_date\",\n \"products\" : \"'ugc'\",\n \"metric_name\" : \"'next ugc renewal'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"ugc_live_date\",\n \"products\" : \"'ugc'\",\n \"metric_name\" : \"'ugc live date'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n {\n \"source_field\" : \"ugc_onboarding_completion_date\",\n \"products\" : \"'ugc'\",\n \"metric_name\" : \"'ugc onboarding completion'\",\n \"target_field\" : \"'From_Date__c'\",\n },\n] -%}\n\n{%- set casting_type = 'STRING' -%}\n{%- set extra_fields_names = ['value','products','metric_name','target_field'] -%}\n{%- set where_clause = \"\" -%}\n{%- set unpivot_fields_mapping = [] -%}\n{%- for field in fields_mapping -%}\n {%- set field_name = field['source_field'] -%}\n {%- set extra_fields = [field['products'], field['metric_name'], field['target_field']] -%}\n {%- do unpivot_fields_mapping.append({'field_name': field_name, 'agg_function': 'MAX', 'extra_fields': extra_fields}) -%}\n{%- endfor -%}\n\nWITH product_metrics_lifetime_unpivot AS (\n\n{{ analytics_unpivot(source_table, group_by_fields, casting_type, where_clause, extra_fields_names, unpivot_fields_mapping) }}\n\n)\n\nSELECT *,\n CURRENT_DATE AS metric_date \nFROM product_metrics_lifetime_unpivot", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_lifetime", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_unpivot", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_lifetime"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.sql", "compiled": true, "compiled_code": "WITH product_metrics_lifetime_unpivot AS (\n\nSELECT\n app_key,\n organization_key,\n STACK(22,\n STRING(MAX(sms_enablement_date)),'sms','sms enablement date','From_Date__c',\n STRING(MAX(ugc_enablement_date)),'ugc','ugc enablement date','From_Date__c',\n STRING(MAX(loyalty_enablement_date)),'loyalty','loyalty enablement date','From_Date__c',\n STRING(MAX(loyalty_time_to_active1_from_creation)),'loyalty','time to active 1 from creation','Quantity__c',\n STRING(MAX(loyalty_time_to_active1_from_subscription)),'loyalty','time to active 1 from subscription','Quantity__c',\n STRING(MAX(loyalty_time_to_active2_from_creation)),'loyalty','time to active 2 from creation','Quantity__c',\n STRING(MAX(loyalty_time_to_active2_from_subscription)),'loyalty','time to active 2 from subscription','Quantity__c',\n STRING(MAX(loyalty_next_renewal_date)),'loyalty','next loyalty renewal','From_Date__c',\n STRING(MAX(loyalty_live_date)),'loyalty','loyalty live date','From_Date__c',\n STRING(MAX(loyalty_onboarding_completion_date)),'loyalty','loyalty onboarding completion','From_Date__c',\n STRING(MAX(sms_next_renewal_date)),'sms','next sms renewal','From_Date__c',\n STRING(MAX(sms_live_date)),'sms','sms live date','From_Date__c',\n STRING(MAX(sms_onboarding_completion_date)),'sms','sms onboarding completion','From_Date__c',\n STRING(MAX(email_next_renewal_date)),'email','next email renewal','From_Date__c',\n STRING(MAX(email_live_date)),'email','email live date','From_Date__c',\n STRING(MAX(email_onboarding_completion_date)),'email','email onboarding completion','From_Date__c',\n STRING(MAX(subscriptions_next_renewal_date)),'subscriptions','next subscriptions renewal','From_Date__c',\n STRING(MAX(subscriptions_live_date)),'subscriptions','subscriptions live date','From_Date__c',\n STRING(MAX(subscriptions_onboarding_completion_date)),'subscriptions','subscriptions onboarding completion','From_Date__c',\n STRING(MAX(ugc_next_renewal_date)),'ugc','next ugc renewal','From_Date__c',\n STRING(MAX(ugc_live_date)),'ugc','ugc live date','From_Date__c',\n STRING(MAX(ugc_onboarding_completion_date)),'ugc','ugc onboarding completion','From_Date__c')\n AS (value, products, metric_name, target_field)\n FROM dev_dkruh1.analytics___platform__store_product_metrics_lifetime\n \n GROUP BY 1,2\n\n)\n\nSELECT *,\n CURRENT_DATE AS metric_date \nFROM product_metrics_lifetime_unpivot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_product_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_product_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.sql", "unique_id": "model.yoda.analytics___platform__store_product_metrics_monthly", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_monthly", "analytics___platform__store_product_metrics_monthly"], "alias": "analytics___platform__store_product_metrics_monthly", "checksum": {"name": "sha256", "checksum": "46cc3697b0a8c55ad3fe3a63a7b940a71e65fef854f8cd184a051e5fc01cf51f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "product_metrics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "product_metrics"], "description": "A modeled view of product metrics profile based on monthly models. PK & Granularity: app_key, metric_month", "columns": {"metric_month": {"name": "metric_month", "description": "PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "business_last_month_orders_cnt": {"name": "business_last_month_orders_cnt", "description": "previous month orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "business_last_3m_orders_cnt_avg": {"name": "business_last_3m_orders_cnt_avg", "description": "avg monthly order volume based on the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "business_last_12m_orders_cnt_avg": {"name": "business_last_12m_orders_cnt_avg", "description": "avg monthly order volume based on the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "business_yotpo_tenure_year_count": {"name": "business_yotpo_tenure_year_count", "description": "The number of years of the organization with Yotpo", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "business_last_3m_orders_avg_bucket": {"name": "business_last_3m_orders_avg_bucket", "description": "order bucket based on last 3 monthly order volume", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "business_last_12m_orders_avg_bucket": {"name": "business_last_12m_orders_avg_bucket", "description": "order bucket based on last 12 monthly order volume", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_credits_used": {"name": "sms_credits_used", "description": "the sum of monthly sms credit used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(32,4)"}, "sms_subscriber_cnt": {"name": "sms_subscriber_cnt", "description": "the number of sms subscribers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "messages_sent_cnt": {"name": "messages_sent_cnt", "description": "monthy number of messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_monthly_roi": {"name": "sms_monthly_roi", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_roi_last_3_months": {"name": "sms_roi_last_3_months", "description": "the ROI of sms credit used in the last 3 months, for example if month=october then ROI of July-September", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_message_per_subscriber": {"name": "sms_message_per_subscriber", "description": "the monthly avg of sms messages sent per subscriber of the store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_price_per_message": {"name": "sms_price_per_message", "description": "the avg price that was paid for each for each sms message sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,10)"}, "loyalty_last_3m_participation_rate": {"name": "loyalty_last_3m_participation_rate", "description": "The share of redeemers out of all purchasers in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_last_3m_added_revenue": {"name": "loyalty_last_3m_added_revenue", "description": "added reveneue - (spend per buyer redeemers - spend per buyer non redeemers) * # of redeeemers .\nMoney generated from Loyalty", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_last_3m_added_revenue_rate": {"name": "loyalty_last_3m_added_revenue_rate", "description": "The share of revenue coming from loyalty (orders amount of order that a coupon was used) out of the total store revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loalty_last_3m_total_store_revenue": {"name": "loalty_last_3m_total_store_revenue", "description": "Store revenue in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loalty_last_3m_revenue": {"name": "loalty_last_3m_revenue", "description": "The store revenue in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loalty_last_3m_redeemers": {"name": "loalty_last_3m_redeemers", "description": "The number of Redeemers purchasers in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loalty_last_3m_non_redeemers": {"name": "loalty_last_3m_non_redeemers", "description": "The number of Non Redeemers purchasers in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loalty_last_3m_purchasers": {"name": "loalty_last_3m_purchasers", "description": "The total number of purchasers in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loalty_last_3m_spb_redeemers": {"name": "loalty_last_3m_spb_redeemers", "description": "The Spend Per Buyer (SPB) of redeemers in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loalty_last_3m_spb_non_redeemers": {"name": "loalty_last_3m_spb_non_redeemers", "description": "The Spend Per Buyer (SPB) of non redeemers in the last 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_last_3m_revenue_rate": {"name": "loyalty_last_3m_revenue_rate", "description": "the share", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_to_review_rate_7d_from_first_email_sent": {"name": "order_to_review_rate_7d_from_first_email_sent", "description": "the ration between orders made to reviews collected- the dates in questions are from the first email sent to 7 days after first email sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "reviews_previous_month_cnt": {"name": "reviews_previous_month_cnt", "description": "last monthy number of reviews", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_open_rate_7d_from_first_email_sent": {"name": "email_open_rate_7d_from_first_email_sent", "description": "orders with Email opened 7 days from last email/orders with emails sent with 7 days from order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "product_metrics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082646.6295638, "relation_name": "dev_dkruh1.analytics___platform__store_product_metrics_monthly", "raw_code": "{%- set global_date_field = 'metric_month' -%}\n{%- set global_unit_field = 'app_key' -%}\n{%- set source_list = [\n {\n 'source_table': ref('analytics___platform__store_dynamic_date_explode_from_creation'),\n 'date_field': 'month',\n 'unit_field': 'app_key',\n 'fields_mapping':{\n 'organization_key': 'organization_key',\n },\n 'where_conditions':[]\n },\n {\n 'source_table': ref('analytics___platform__store_metrics_monthly'),\n 'date_field': 'month',\n 'unit_field': 'app_key',\n 'fields_mapping':{\n 'last_month_orders_cnt': 'business_last_month_orders_cnt',\n 'last_3m_orders_cnt_avg': 'business_last_3m_orders_cnt_avg',\n 'last_12m_orders_cnt_avg': 'business_last_12m_orders_cnt_avg',\n 'yotpo_tenure_year_count': 'business_yotpo_tenure_year_count',\n 'last_3m_orders_avg_bucket': 'business_last_3m_orders_avg_bucket',\n 'last_12m_orders_avg_bucket': 'business_last_12m_orders_avg_bucket',\n },\n 'where_conditions':[]\n },\n { \n 'source_table': ref('analytics___sms__store_metrics_monthly'),\n 'date_field': 'month',\n 'unit_field': 'app_key',\n 'fields_mapping':{\n 'usage_sum': 'sms_credits_used',\n 'subscriber_cnt': 'sms_subscriber_cnt',\n 'message_cnt': 'messages_sent_cnt',\n 'roi_ratio': 'sms_monthly_roi',\n 'roi_last_3_month_ratio': 'sms_roi_last_3_months', \n 'message_to_subscriber_ratio': 'sms_message_per_subscriber',\n 'usage_to_message_ratio': 'sms_price_per_message', \n },\n 'where_conditions':[]\n },\n {\n 'source_table': ref('analytics___loyalty__merchant_plan_value_cohort_monthly'),\n 'date_field': 'month',\n 'unit_field': 'app_key',\n 'fields_mapping':{\n 'last_3m_participation_rate': 'loyalty_last_3m_participation_rate',\n 'last_3m_added_revenue': 'loyalty_last_3m_added_revenue',\n 'last_3m_added_revenue_rate': 'loyalty_last_3m_added_revenue_rate',\n 'last_3m_total_revenue_sum': 'loalty_last_3m_total_store_revenue',\n 'last_3m_loyalty_revenue_sum': 'loalty_last_3m_revenue',\n 'last_3m_redeemers_cnt': 'loalty_last_3m_redeemers',\n 'last_3m_non_redeemers_cnt': 'loalty_last_3m_non_redeemers',\n 'last_3m_purchasers_cnt': 'loalty_last_3m_purchasers',\n 'last_3m_spb_redeemers': 'loalty_last_3m_spb_redeemers',\n 'last_3m_spb_non_redeemers': 'loalty_last_3m_spb_non_redeemers',\n 'last_3m_lrr': 'loyalty_last_3m_revenue_rate',\n },\n 'where_conditions':[]\n }\n ,{\n 'source_table': ref('analytics___ugc__store_metrics_monthly'),\n 'date_field': 'metric_month',\n 'unit_field': 'app_key',\n 'fields_mapping':{\n 'order_with_review_request_to_review_ratio': 'order_to_review_rate_7d_from_first_email_sent',\n 'previous_month_review_cnt': 'reviews_previous_month_cnt',\n 'order_with_first_email_opened_within_7d_ratio': 'email_open_rate_7d_from_first_email_sent',\n },\n 'where_conditions':[]\n }\n] -%}\n\n{% set expected_schema_mapping = product_metrics_expected_schema(source_list) %}\n\n{{ product_metrics_profile(global_date_field, global_unit_field, source_list, expected_schema_mapping) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_dynamic_date_explode_from_creation", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___sms__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly", "package": null, "version": null}, {"name": "analytics___ugc__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.product_metrics_expected_schema", "macro.yoda.product_metrics_profile", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___sms__store_metrics_monthly", "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly", "model.yoda.analytics___ugc__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.sql", "compiled": true, "compiled_code": "\n\nWITH product_metrics_union AS (\n\n SELECT\n month AS metric_month,\n app_key AS app_key,\n organization_key AS organization_key,\n CAST(NULL AS BIGINT) AS business_last_month_orders_cnt,\n CAST(NULL AS STRING) AS business_last_3m_orders_cnt_avg,\n CAST(NULL AS STRING) AS business_last_12m_orders_cnt_avg,\n CAST(NULL AS BIGINT) AS business_yotpo_tenure_year_count,\n CAST(NULL AS STRING) AS business_last_3m_orders_avg_bucket,\n CAST(NULL AS STRING) AS business_last_12m_orders_avg_bucket,\n CAST(NULL AS STRING) AS sms_credits_used,\n CAST(NULL AS STRING) AS sms_subscriber_cnt,\n CAST(NULL AS STRING) AS messages_sent_cnt,\n CAST(NULL AS STRING) AS sms_monthly_roi,\n CAST(NULL AS STRING) AS sms_roi_last_3_months,\n CAST(NULL AS STRING) AS sms_message_per_subscriber,\n CAST(NULL AS STRING) AS sms_price_per_message,\n CAST(NULL AS STRING) AS loyalty_last_3m_participation_rate,\n CAST(NULL AS STRING) AS loyalty_last_3m_added_revenue,\n CAST(NULL AS STRING) AS loyalty_last_3m_added_revenue_rate,\n CAST(NULL AS STRING) AS loalty_last_3m_total_store_revenue,\n CAST(NULL AS STRING) AS loalty_last_3m_revenue,\n CAST(NULL AS STRING) AS loalty_last_3m_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_non_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_purchasers,\n CAST(NULL AS STRING) AS loalty_last_3m_spb_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_spb_non_redeemers,\n CAST(NULL AS STRING) AS loyalty_last_3m_revenue_rate,\n CAST(NULL AS STRING) AS order_to_review_rate_7d_from_first_email_sent,\n CAST(NULL AS STRING) AS reviews_previous_month_cnt,\n CAST(NULL AS STRING) AS email_open_rate_7d_from_first_email_sent\n FROM dev_dkruh1.analytics___platform__store_dynamic_date_explode_from_creation\n WHERE month >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n \n UNION ALL\n\n SELECT\n month AS metric_month,\n app_key AS app_key,\n CAST(NULL AS STRING) AS organization_key,\n last_month_orders_cnt AS business_last_month_orders_cnt,\n last_3m_orders_cnt_avg AS business_last_3m_orders_cnt_avg,\n last_12m_orders_cnt_avg AS business_last_12m_orders_cnt_avg,\n yotpo_tenure_year_count AS business_yotpo_tenure_year_count,\n last_3m_orders_avg_bucket AS business_last_3m_orders_avg_bucket,\n last_12m_orders_avg_bucket AS business_last_12m_orders_avg_bucket,\n CAST(NULL AS STRING) AS sms_credits_used,\n CAST(NULL AS STRING) AS sms_subscriber_cnt,\n CAST(NULL AS STRING) AS messages_sent_cnt,\n CAST(NULL AS STRING) AS sms_monthly_roi,\n CAST(NULL AS STRING) AS sms_roi_last_3_months,\n CAST(NULL AS STRING) AS sms_message_per_subscriber,\n CAST(NULL AS STRING) AS sms_price_per_message,\n CAST(NULL AS STRING) AS loyalty_last_3m_participation_rate,\n CAST(NULL AS STRING) AS loyalty_last_3m_added_revenue,\n CAST(NULL AS STRING) AS loyalty_last_3m_added_revenue_rate,\n CAST(NULL AS STRING) AS loalty_last_3m_total_store_revenue,\n CAST(NULL AS STRING) AS loalty_last_3m_revenue,\n CAST(NULL AS STRING) AS loalty_last_3m_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_non_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_purchasers,\n CAST(NULL AS STRING) AS loalty_last_3m_spb_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_spb_non_redeemers,\n CAST(NULL AS STRING) AS loyalty_last_3m_revenue_rate,\n CAST(NULL AS STRING) AS order_to_review_rate_7d_from_first_email_sent,\n CAST(NULL AS STRING) AS reviews_previous_month_cnt,\n CAST(NULL AS STRING) AS email_open_rate_7d_from_first_email_sent\n FROM dev_dkruh1.analytics___platform__store_metrics_monthly\n WHERE month >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n \n UNION ALL\n\n SELECT\n month AS metric_month,\n app_key AS app_key,\n CAST(NULL AS STRING) AS organization_key,\n CAST(NULL AS BIGINT) AS business_last_month_orders_cnt,\n CAST(NULL AS STRING) AS business_last_3m_orders_cnt_avg,\n CAST(NULL AS STRING) AS business_last_12m_orders_cnt_avg,\n CAST(NULL AS BIGINT) AS business_yotpo_tenure_year_count,\n CAST(NULL AS STRING) AS business_last_3m_orders_avg_bucket,\n CAST(NULL AS STRING) AS business_last_12m_orders_avg_bucket,\n usage_sum AS sms_credits_used,\n subscriber_cnt AS sms_subscriber_cnt,\n message_cnt AS messages_sent_cnt,\n roi_ratio AS sms_monthly_roi,\n roi_last_3_month_ratio AS sms_roi_last_3_months,\n message_to_subscriber_ratio AS sms_message_per_subscriber,\n usage_to_message_ratio AS sms_price_per_message,\n CAST(NULL AS STRING) AS loyalty_last_3m_participation_rate,\n CAST(NULL AS STRING) AS loyalty_last_3m_added_revenue,\n CAST(NULL AS STRING) AS loyalty_last_3m_added_revenue_rate,\n CAST(NULL AS STRING) AS loalty_last_3m_total_store_revenue,\n CAST(NULL AS STRING) AS loalty_last_3m_revenue,\n CAST(NULL AS STRING) AS loalty_last_3m_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_non_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_purchasers,\n CAST(NULL AS STRING) AS loalty_last_3m_spb_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_spb_non_redeemers,\n CAST(NULL AS STRING) AS loyalty_last_3m_revenue_rate,\n CAST(NULL AS STRING) AS order_to_review_rate_7d_from_first_email_sent,\n CAST(NULL AS STRING) AS reviews_previous_month_cnt,\n CAST(NULL AS STRING) AS email_open_rate_7d_from_first_email_sent\n FROM dev_dkruh1.analytics___sms__store_metrics_monthly\n WHERE month >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n \n UNION ALL\n\n SELECT\n month AS metric_month,\n app_key AS app_key,\n CAST(NULL AS STRING) AS organization_key,\n CAST(NULL AS BIGINT) AS business_last_month_orders_cnt,\n CAST(NULL AS STRING) AS business_last_3m_orders_cnt_avg,\n CAST(NULL AS STRING) AS business_last_12m_orders_cnt_avg,\n CAST(NULL AS BIGINT) AS business_yotpo_tenure_year_count,\n CAST(NULL AS STRING) AS business_last_3m_orders_avg_bucket,\n CAST(NULL AS STRING) AS business_last_12m_orders_avg_bucket,\n CAST(NULL AS STRING) AS sms_credits_used,\n CAST(NULL AS STRING) AS sms_subscriber_cnt,\n CAST(NULL AS STRING) AS messages_sent_cnt,\n CAST(NULL AS STRING) AS sms_monthly_roi,\n CAST(NULL AS STRING) AS sms_roi_last_3_months,\n CAST(NULL AS STRING) AS sms_message_per_subscriber,\n CAST(NULL AS STRING) AS sms_price_per_message,\n last_3m_participation_rate AS loyalty_last_3m_participation_rate,\n last_3m_added_revenue AS loyalty_last_3m_added_revenue,\n last_3m_added_revenue_rate AS loyalty_last_3m_added_revenue_rate,\n last_3m_total_revenue_sum AS loalty_last_3m_total_store_revenue,\n last_3m_loyalty_revenue_sum AS loalty_last_3m_revenue,\n last_3m_redeemers_cnt AS loalty_last_3m_redeemers,\n last_3m_non_redeemers_cnt AS loalty_last_3m_non_redeemers,\n last_3m_purchasers_cnt AS loalty_last_3m_purchasers,\n last_3m_spb_redeemers AS loalty_last_3m_spb_redeemers,\n last_3m_spb_non_redeemers AS loalty_last_3m_spb_non_redeemers,\n last_3m_lrr AS loyalty_last_3m_revenue_rate,\n CAST(NULL AS STRING) AS order_to_review_rate_7d_from_first_email_sent,\n CAST(NULL AS STRING) AS reviews_previous_month_cnt,\n CAST(NULL AS STRING) AS email_open_rate_7d_from_first_email_sent\n FROM dev_dkruh1.analytics___loyalty__merchant_plan_value_cohort_monthly\n WHERE month >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n \n UNION ALL\n\n SELECT\n metric_month AS metric_month,\n app_key AS app_key,\n CAST(NULL AS STRING) AS organization_key,\n CAST(NULL AS BIGINT) AS business_last_month_orders_cnt,\n CAST(NULL AS STRING) AS business_last_3m_orders_cnt_avg,\n CAST(NULL AS STRING) AS business_last_12m_orders_cnt_avg,\n CAST(NULL AS BIGINT) AS business_yotpo_tenure_year_count,\n CAST(NULL AS STRING) AS business_last_3m_orders_avg_bucket,\n CAST(NULL AS STRING) AS business_last_12m_orders_avg_bucket,\n CAST(NULL AS STRING) AS sms_credits_used,\n CAST(NULL AS STRING) AS sms_subscriber_cnt,\n CAST(NULL AS STRING) AS messages_sent_cnt,\n CAST(NULL AS STRING) AS sms_monthly_roi,\n CAST(NULL AS STRING) AS sms_roi_last_3_months,\n CAST(NULL AS STRING) AS sms_message_per_subscriber,\n CAST(NULL AS STRING) AS sms_price_per_message,\n CAST(NULL AS STRING) AS loyalty_last_3m_participation_rate,\n CAST(NULL AS STRING) AS loyalty_last_3m_added_revenue,\n CAST(NULL AS STRING) AS loyalty_last_3m_added_revenue_rate,\n CAST(NULL AS STRING) AS loalty_last_3m_total_store_revenue,\n CAST(NULL AS STRING) AS loalty_last_3m_revenue,\n CAST(NULL AS STRING) AS loalty_last_3m_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_non_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_purchasers,\n CAST(NULL AS STRING) AS loalty_last_3m_spb_redeemers,\n CAST(NULL AS STRING) AS loalty_last_3m_spb_non_redeemers,\n CAST(NULL AS STRING) AS loyalty_last_3m_revenue_rate,\n order_with_review_request_to_review_ratio AS order_to_review_rate_7d_from_first_email_sent,\n previous_month_review_cnt AS reviews_previous_month_cnt,\n order_with_first_email_opened_within_7d_ratio AS email_open_rate_7d_from_first_email_sent\n FROM dev_dkruh1.analytics___ugc__store_metrics_monthly\n WHERE metric_month >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\n \n\n\n), product_metrics_res AS (\n\n SELECT \n metric_month,\n app_key,\n MAX(organization_key) AS organization_key,\n MAX(business_last_month_orders_cnt) AS business_last_month_orders_cnt,\n MAX(business_last_3m_orders_cnt_avg) AS business_last_3m_orders_cnt_avg,\n MAX(business_last_12m_orders_cnt_avg) AS business_last_12m_orders_cnt_avg,\n MAX(business_yotpo_tenure_year_count) AS business_yotpo_tenure_year_count,\n MAX(business_last_3m_orders_avg_bucket) AS business_last_3m_orders_avg_bucket,\n MAX(business_last_12m_orders_avg_bucket) AS business_last_12m_orders_avg_bucket,\n MAX(sms_credits_used) AS sms_credits_used,\n MAX(sms_subscriber_cnt) AS sms_subscriber_cnt,\n MAX(messages_sent_cnt) AS messages_sent_cnt,\n MAX(sms_monthly_roi) AS sms_monthly_roi,\n MAX(sms_roi_last_3_months) AS sms_roi_last_3_months,\n MAX(sms_message_per_subscriber) AS sms_message_per_subscriber,\n MAX(sms_price_per_message) AS sms_price_per_message,\n MAX(loyalty_last_3m_participation_rate) AS loyalty_last_3m_participation_rate,\n MAX(loyalty_last_3m_added_revenue) AS loyalty_last_3m_added_revenue,\n MAX(loyalty_last_3m_added_revenue_rate) AS loyalty_last_3m_added_revenue_rate,\n MAX(loalty_last_3m_total_store_revenue) AS loalty_last_3m_total_store_revenue,\n MAX(loalty_last_3m_revenue) AS loalty_last_3m_revenue,\n MAX(loalty_last_3m_redeemers) AS loalty_last_3m_redeemers,\n MAX(loalty_last_3m_non_redeemers) AS loalty_last_3m_non_redeemers,\n MAX(loalty_last_3m_purchasers) AS loalty_last_3m_purchasers,\n MAX(loalty_last_3m_spb_redeemers) AS loalty_last_3m_spb_redeemers,\n MAX(loalty_last_3m_spb_non_redeemers) AS loalty_last_3m_spb_non_redeemers,\n MAX(loyalty_last_3m_revenue_rate) AS loyalty_last_3m_revenue_rate,\n MAX(order_to_review_rate_7d_from_first_email_sent) AS order_to_review_rate_7d_from_first_email_sent,\n MAX(reviews_previous_month_cnt) AS reviews_previous_month_cnt,\n MAX(email_open_rate_7d_from_first_email_sent) AS email_open_rate_7d_from_first_email_sent\n FROM product_metrics_union\n GROUP BY 1,2 \n\n)\n\n SELECT *\n FROM product_metrics_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_product_metrics_monthly_unpivot": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_product_metrics_monthly_unpivot", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.sql", "unique_id": "model.yoda.analytics___platform__store_product_metrics_monthly_unpivot", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_monthly_unpivot", "analytics___platform__store_product_metrics_monthly_unpivot"], "alias": "analytics___platform__store_product_metrics_monthly_unpivot", "checksum": {"name": "sha256", "checksum": "635b0e2224e1de5949965111c4db6161045817f9404fcfd4ae029d8fc5ebbcd4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "product_metrics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "product_metrics"], "description": "A modeled view of store product metrics as rows in a structure made for injection to external systems.|\nThis model takes the metrics of the last month from the monthly product metrics.|\nPK: External_ID__c | Granularity: App_Key__c, Product_Metrics_Name__c", "columns": {"Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "External_ID__c": {"name": "External_ID__c", "description": "PK - combination of app key and metric name, generated to serve as id in external systems.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Organization_Key__c": {"name": "Organization_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "App_Key__c": {"name": "App_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Metrics_Name__c": {"name": "Product_Metrics_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Lines__c": {"name": "Product_Lines__c", "description": "Products related to the metirc in line, in case of few products they will should be sperated with semicolon.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "The proudct metric value - used for customer.io where value is not mapped to different fields.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Enabled__c": {"name": "Enabled__c", "description": "Holds value for boolean metrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Metric_Value__c": {"name": "Metric_Value__c", "description": "Holds value for string metrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Quantity__c": {"name": "Quantity__c", "description": "Holds value for quantitive metrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "From_Date__c": {"name": "From_Date__c", "description": "Active date for the metric.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "To_Date__c": {"name": "To_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "Self_Service__c": {"name": "Self_Service__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "Free__c": {"name": "Free__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "product_metrics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082646.6518874, "relation_name": "dev_dkruh1.analytics___platform__store_product_metrics_monthly_unpivot", "raw_code": "{%- set source_table = ref(\"analytics___platform__store_product_metrics_monthly\") -%}\n{%- set group_by_fields = [\"app_key\", \"organization_key\", \"metric_month\"] -%}\n{%- set date_granularity = \"month\" -%}\n{%- set fields_mapping = [\n {\n \"source_field\": \"loyalty_last_3m_participation_rate\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'participation rate last 3m'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loyalty_last_3m_added_revenue\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'added revenue last 3m'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loyalty_last_3m_added_revenue_rate\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'added revenue rate last 3m'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loyalty_last_3m_revenue_rate\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'loyalty revenue rate last 3m'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"sms_credits_used\",\n \"products\": \"'sms'\",\n \"metric_name\": \"'credits used'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"sms_subscriber_cnt\",\n \"products\": \"'sms'\",\n \"metric_name\": \"'subscirbers'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"messages_sent_cnt\",\n \"products\": \"'sms'\",\n \"metric_name\": \"'messages sent'\",\n \"target_field\": \"'Quantity__c'\",\n }, \n {\n \"source_field\": \"business_last_month_orders_cnt\",\n \"products\": \"'business'\",\n \"metric_name\": \"'orders count last month'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"business_last_3m_orders_cnt_avg\",\n \"products\": \"'business'\",\n \"metric_name\": \"'orders count last 3m avarage'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"business_last_12m_orders_cnt_avg\",\n \"products\": \"'business'\",\n \"metric_name\": \"'orders count last 12m avarage'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"business_yotpo_tenure_year_count\",\n \"products\": \"'business'\",\n \"metric_name\": \"'yotpo tenure year count'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"business_last_3m_orders_avg_bucket\",\n \"products\": \"'business'\",\n \"metric_name\": \"'orders bucket last 3m avarage'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"business_last_12m_orders_avg_bucket\",\n \"products\": \"'business'\",\n \"metric_name\": \"'orders bucket last 12m avarage'\",\n \"target_field\": \"'Metric_Value__c'\",\n },\n {\n \"source_field\": \"loalty_last_3m_total_store_revenue\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'last 3m total store revenue'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loalty_last_3m_revenue\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'last 3m loyalty revenue'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loalty_last_3m_redeemers\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'last 3m redeemers'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loalty_last_3m_non_redeemers\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'last 3m non redeemers'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loalty_last_3m_purchasers\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'last 3m purchasers'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loalty_last_3m_spb_redeemers\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'last 3m spb redeemers'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"loalty_last_3m_spb_non_redeemers\",\n \"products\": \"'loyalty'\",\n \"metric_name\": \"'last 3m spb non redeemers'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"sms_monthly_roi\",\n \"products\": \"'sms'\",\n \"metric_name\": \"'monthly roi'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"sms_roi_last_3_months\",\n \"products\": \"'sms'\",\n \"metric_name\": \"'last 3m roi'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"sms_message_per_subscriber\",\n \"products\": \"'sms'\",\n \"metric_name\": \"'sms message per subscriber'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"sms_price_per_message\",\n \"products\": \"'sms'\",\n \"metric_name\": \"'sms price per message'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"order_to_review_rate_7d_from_first_email_sent\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'order to review rate 7d from first email sent'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"reviews_previous_month_cnt\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'previous month reviews'\",\n \"target_field\": \"'Quantity__c'\",\n },\n {\n \"source_field\": \"email_open_rate_7d_from_first_email_sent\",\n \"products\": \"'ugc'\",\n \"metric_name\": \"'email open rate 7d from first email sent'\",\n \"target_field\": \"'Quantity__c'\",\n },\n] -%}\n\n\n{%- set casting_type = 'STRING' -%}\n{%- set extra_fields_names = ['value','products','metric_name','target_field'] -%}\n{%- set where_clause = \"WHERE metric_month = ADD_MONTHS(TRUNC(CURRENT_DATE, 'MONTH'), -1)\" -%}\n{%- set unpivot_fields_mapping = [] -%}\n{%- for field in fields_mapping -%}\n {%- set field_name = field['source_field'] -%}\n {%- set extra_fields = [field['products'], field['metric_name'], field['target_field']] -%}\n {%- do unpivot_fields_mapping.append({'field_name': field_name, 'agg_function': 'MAX', 'extra_fields': extra_fields}) -%}\n{%- endfor -%}\n\nWITH product_metrics_monthly_unpivot AS (\n\n {{ analytics_unpivot(source_table, group_by_fields, casting_type, where_clause, extra_fields_names, unpivot_fields_mapping) }}\n\n), product_metrics_monthly_unpivot_mapped AS (\n \n SELECT \n LEFT(CONCAT(app_key,'-',metric_name), 80) AS Name,\n CONCAT(app_key,'-',metric_name) AS External_ID__c,\n organization_key AS Organization_Key__c,\n app_key AS App_Key__c,\n metric_name AS Product_Metrics_Name__c,\n products AS Product_Lines__c,\n value,\n CASE WHEN target_field = 'From_Date__c' THEN '1'\n WHEN target_field = 'Enabled__c' THEN value\n END AS Enabled__c,\n IF(target_field = 'Metric_Value__c', value, NULL) AS Metric_Value__c,\n IF(target_field = 'Quantity__c', value, NULL) AS Quantity__c,\n IF(target_field = 'From_Date__c', value, metric_month) AS From_Date__c,\n LAST_DAY(metric_month) AS To_Date__c,\n SMALLINT(0) AS Self_Service__c,\n SMALLINT(0) AS Free__c\n FROM product_metrics_monthly_unpivot\n\n)\n\nSELECT * FROM product_metrics_monthly_unpivot_mapped", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_unpivot", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.sql", "compiled": true, "compiled_code": "WITH product_metrics_monthly_unpivot AS (\n\n SELECT\n app_key,\n organization_key,\n metric_month,\n STACK(27,\n STRING(MAX(loyalty_last_3m_participation_rate)),'loyalty','participation rate last 3m','Quantity__c',\n STRING(MAX(loyalty_last_3m_added_revenue)),'loyalty','added revenue last 3m','Quantity__c',\n STRING(MAX(loyalty_last_3m_added_revenue_rate)),'loyalty','added revenue rate last 3m','Quantity__c',\n STRING(MAX(loyalty_last_3m_revenue_rate)),'loyalty','loyalty revenue rate last 3m','Quantity__c',\n STRING(MAX(sms_credits_used)),'sms','credits used','Quantity__c',\n STRING(MAX(sms_subscriber_cnt)),'sms','subscirbers','Quantity__c',\n STRING(MAX(messages_sent_cnt)),'sms','messages sent','Quantity__c',\n STRING(MAX(business_last_month_orders_cnt)),'business','orders count last month','Quantity__c',\n STRING(MAX(business_last_3m_orders_cnt_avg)),'business','orders count last 3m avarage','Quantity__c',\n STRING(MAX(business_last_12m_orders_cnt_avg)),'business','orders count last 12m avarage','Quantity__c',\n STRING(MAX(business_yotpo_tenure_year_count)),'business','yotpo tenure year count','Quantity__c',\n STRING(MAX(business_last_3m_orders_avg_bucket)),'business','orders bucket last 3m avarage','Metric_Value__c',\n STRING(MAX(business_last_12m_orders_avg_bucket)),'business','orders bucket last 12m avarage','Metric_Value__c',\n STRING(MAX(loalty_last_3m_total_store_revenue)),'loyalty','last 3m total store revenue','Quantity__c',\n STRING(MAX(loalty_last_3m_revenue)),'loyalty','last 3m loyalty revenue','Quantity__c',\n STRING(MAX(loalty_last_3m_redeemers)),'loyalty','last 3m redeemers','Quantity__c',\n STRING(MAX(loalty_last_3m_non_redeemers)),'loyalty','last 3m non redeemers','Quantity__c',\n STRING(MAX(loalty_last_3m_purchasers)),'loyalty','last 3m purchasers','Quantity__c',\n STRING(MAX(loalty_last_3m_spb_redeemers)),'loyalty','last 3m spb redeemers','Quantity__c',\n STRING(MAX(loalty_last_3m_spb_non_redeemers)),'loyalty','last 3m spb non redeemers','Quantity__c',\n STRING(MAX(sms_monthly_roi)),'sms','monthly roi','Quantity__c',\n STRING(MAX(sms_roi_last_3_months)),'sms','last 3m roi','Quantity__c',\n STRING(MAX(sms_message_per_subscriber)),'sms','sms message per subscriber','Quantity__c',\n STRING(MAX(sms_price_per_message)),'sms','sms price per message','Quantity__c',\n STRING(MAX(order_to_review_rate_7d_from_first_email_sent)),'ugc','order to review rate 7d from first email sent','Quantity__c',\n STRING(MAX(reviews_previous_month_cnt)),'ugc','previous month reviews','Quantity__c',\n STRING(MAX(email_open_rate_7d_from_first_email_sent)),'ugc','email open rate 7d from first email sent','Quantity__c')\n AS (value, products, metric_name, target_field)\n FROM dev_dkruh1.analytics___platform__store_product_metrics_monthly\n WHERE metric_month = ADD_MONTHS(TRUNC(CURRENT_DATE, 'MONTH'), -1)\n GROUP BY 1,2,3\n\n), product_metrics_monthly_unpivot_mapped AS (\n \n SELECT \n LEFT(CONCAT(app_key,'-',metric_name), 80) AS Name,\n CONCAT(app_key,'-',metric_name) AS External_ID__c,\n organization_key AS Organization_Key__c,\n app_key AS App_Key__c,\n metric_name AS Product_Metrics_Name__c,\n products AS Product_Lines__c,\n value,\n CASE WHEN target_field = 'From_Date__c' THEN '1'\n WHEN target_field = 'Enabled__c' THEN value\n END AS Enabled__c,\n IF(target_field = 'Metric_Value__c', value, NULL) AS Metric_Value__c,\n IF(target_field = 'Quantity__c', value, NULL) AS Quantity__c,\n IF(target_field = 'From_Date__c', value, metric_month) AS From_Date__c,\n LAST_DAY(metric_month) AS To_Date__c,\n SMALLINT(0) AS Self_Service__c,\n SMALLINT(0) AS Free__c\n FROM product_metrics_monthly_unpivot\n\n)\n\nSELECT * FROM product_metrics_monthly_unpivot_mapped", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform__store_snapshot_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform__store_snapshot_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.sql", "unique_id": "model.yoda.analytics___platform__store_snapshot_daily", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_snapshot_daily", "analytics___platform__store_snapshot_daily"], "alias": "analytics___platform__store_snapshot_daily", "checksum": {"name": "sha256", "checksum": "b3cfaac0f2f798b69126bd4c869630c30008c7789811bfac196acc0a99894a5b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["app_key", "date"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled daily snapshot of basic columns from platform__store table. In case this process didn't run for few days, it would be backfilled with the current running data.\nPK&Granularity: app_key, date", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_name": {"name": "store_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_test": {"name": "is_test", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active": {"name": "is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "platform"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "incremental_strategy": "append", "unique_key": ["app_key", "date"], "partition_by": ["date"]}, "created_at": 1700082646.671194, "relation_name": "dev_dkruh1.analytics___platform__store_snapshot_daily", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n unique_key=['app_key','date'],\n partition_by = ['date']\n )\n}}\n\n-- import --\n\nWITH import_platform_store AS (\n\n SELECT * FROM {{ ref('analytics___platform__store') }}\n\n), import_dim_calendar AS (\n\n SELECT * FROM {{ ref('platform_stg__dim_calendar') }}\n {% if is_incremental() %}\n WHERE date > (SELECT MAX(date) FROM {{ this }})\n {% else %}\n WHERE 1 = 0\n {% endif %}\n\n),\n\n-- Logic --\n\nstore_snapshot_daily_res AS (\n\n SELECT \n DATE(dwh_updated_at) AS date,\n store_id,\n app_key,\n organization_id,\n organization_key,\n store_name,\n is_test,\n is_active,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_platform_store\n \n)\n\n-- result --\n\nSELECT * \nFROM store_snapshot_daily_res", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store", "model.yoda.platform_stg__dim_calendar"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.sql", "compiled": true, "compiled_code": "\n\n-- import --\n\nWITH import_platform_store AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store\n\n), import_dim_calendar AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__dim_calendar\n \n WHERE 1 = 0\n \n\n),\n\n-- Logic --\n\nstore_snapshot_daily_res AS (\n\n SELECT \n DATE(dwh_updated_at) AS date,\n store_id,\n app_key,\n organization_id,\n organization_key,\n store_name,\n is_test,\n is_active,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_platform_store\n \n)\n\n-- result --\n\nSELECT * \nFROM store_snapshot_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.sql", "unique_id": "model.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "analytics___platform_stg__chargify_organization_product_usage_revanue_daily"], "alias": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "checksum": {"name": "sha256", "checksum": "23a01a09747b947d5301b605fcdc6c4bb5b7176a0ccbffa1b79ebc9af1375c4b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Static view of chargify overages max(month)=2020-07-01 min(month)=2014-06-01", "columns": {"revenue_month": {"name": "revenue_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "UGC, SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usage_revenue_in_usd": {"name": "usage_revenue_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "shopify_billing_usage_revenue_in_usd": {"name": "shopify_billing_usage_revenue_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_usage_revenue_in_usd": {"name": "zuora_usage_revenue_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "chargify_usage_revenue_in_usd": {"name": "chargify_usage_revenue_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communication_usage_revenue_in_usd": {"name": "communication_usage_revenue_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communication_usage_in_usd": {"name": "communication_usage_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communication_free_credit_in_usd": {"name": "communication_free_credit_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "additional_orders_cnt": {"name": "additional_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_self_service": {"name": "is_self_service", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082646.7770722, "relation_name": "dev_dkruh1.analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__static', 'chargify_organization_product_usage_revanue_daily') }}\n\n), analytics___platform_stg__chargify_organization_product_usage_revanue_daily AS (\n\n SELECT \n\t\trevenue_month,\n\t\torganization_key,\n\t\tproduct_family,\n\t\tplan_name,\n\t\tusage_revenue_in_usd,\n\t\tshopify_billing_usage_revenue_in_usd,\n\t\tzuora_usage_revenue_in_usd,\n\t\tchargify_usage_revenue_in_usd,\n\t\tcommunication_usage_revenue_in_usd,\n\t\tcommunication_usage_in_usd,\n\t\tcommunication_free_credit_in_usd,\n\t\tadditional_orders_cnt,\n\t\tis_self_service,\n\t\tis_free,\n\t\tis_full_service\n FROM source\n\n)\n\nSELECT * \nFROM analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "language": "sql", "refs": [], "sources": [["analytics__static", "chargify_organization_product_usage_revanue_daily"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.chargify_organization_product_usage_revanue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.chargify_organization_product_usage_revanue_daily\n\n), analytics___platform_stg__chargify_organization_product_usage_revanue_daily AS (\n\n SELECT \n\t\trevenue_month,\n\t\torganization_key,\n\t\tproduct_family,\n\t\tplan_name,\n\t\tusage_revenue_in_usd,\n\t\tshopify_billing_usage_revenue_in_usd,\n\t\tzuora_usage_revenue_in_usd,\n\t\tchargify_usage_revenue_in_usd,\n\t\tcommunication_usage_revenue_in_usd,\n\t\tcommunication_usage_in_usd,\n\t\tcommunication_free_credit_in_usd,\n\t\tadditional_orders_cnt,\n\t\tis_self_service,\n\t\tis_free,\n\t\tis_full_service\n FROM source\n\n)\n\nSELECT * \nFROM analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__deprecated_packages": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__deprecated_packages", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.sql", "unique_id": "model.yoda.analytics___platform_stg__deprecated_packages", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__deprecated_packages", "analytics___platform_stg__deprecated_packages"], "alias": "analytics___platform_stg__deprecated_packages", "checksum": {"name": "sha256", "checksum": "f60d0240d878cb211e715a3be6bd7e703cad0cff8369c6ba72f71601e9f21510"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "This is a static table which holds all deprecated packages", "columns": {"dwh_created_at": {"name": "dwh_created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_key": {"name": "plan_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_display_name": {"name": "plan_display_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_description": {"name": "plan_description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_plan_id": {"name": "old_plan_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_id": {"name": "category_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms_annual": {"name": "is_sms_annual", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms_ss": {"name": "is_sms_ss", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms_free": {"name": "is_sms_free", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms": {"name": "is_sms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_reviews_annual": {"name": "is_reviews_annual", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_reviews_ss": {"name": "is_reviews_ss", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_reviews_free": {"name": "is_reviews_free", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_reviews": {"name": "is_reviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_vms_annual": {"name": "is_vms_annual", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_vms_ss": {"name": "is_vms_ss", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_vms_free": {"name": "is_vms_free", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_vms": {"name": "is_vms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty_annual": {"name": "is_loyalty_annual", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty_ss": {"name": "is_loyalty_ss", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty_free": {"name": "is_loyalty_free", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty": {"name": "is_loyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_insights_annual": {"name": "is_insights_annual", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_insights_ss": {"name": "is_insights_ss", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_insights_free": {"name": "is_insights_free", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_insights": {"name": "is_insights", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_subscriptions_annual": {"name": "is_subscriptions_annual", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_subscriptions_ss": {"name": "is_subscriptions_ss", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_subscriptions_free": {"name": "is_subscriptions_free", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_subscriptions": {"name": "is_subscriptions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_annual": {"name": "is_annual", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_growth": {"name": "is_growth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_premium": {"name": "is_premium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ss": {"name": "is_ss", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_free": {"name": "is_free", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_legacy": {"name": "is_legacy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_prime": {"name": "is_prime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_tags": {"name": "full_tags", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082646.819587, "relation_name": "dev_dkruh1.analytics___platform_stg__deprecated_packages", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__static', 'deprecated_packages') }}\n\n), platform_stg__deprecated_packages AS (\n\n SELECT \n\t\tdwh_created_at,\n\t\tplan_key,\n\t\tplan_id,\n\t\tplan_name,\n\t\tplan_display_name,\n\t\tplan_description,\n\t\told_plan_id,\n\t\tcategory_id,\n\t\tcategory_name,\n\t\tis_sms_annual,\n\t\tis_sms_ss,\n\t\tis_sms_free,\n\t\tis_sms,\n\t\tis_reviews_annual,\n\t\tis_reviews_ss,\n\t\tis_reviews_free,\n\t\tis_reviews,\n\t\tis_vms_annual,\n\t\tis_vms_ss,\n\t\tis_vms_free,\n\t\tis_vms,\n\t\tis_loyalty_annual,\n\t\tis_loyalty_ss,\n\t\tis_loyalty_free,\n\t\tis_loyalty,\n\t\tis_insights_annual,\n\t\tis_insights_ss,\n\t\tis_insights_free,\n\t\tis_insights,\n\t\tis_subscriptions_annual,\n\t\tis_subscriptions_ss,\n\t\tis_subscriptions_free,\n\t\tis_subscriptions,\n\t\tis_annual,\n\t\tis_growth,\n\t\tis_premium,\n\t\tis_ss,\n\t\tis_free,\n\t\tis_legacy,\n\t\tis_prime,\n\t\ttags,\n\t\tfull_tags\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__deprecated_packages", "language": "sql", "refs": [], "sources": [["platform__static", "deprecated_packages"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__static.deprecated_packages"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.deprecated_packages\n\n), platform_stg__deprecated_packages AS (\n\n SELECT \n\t\tdwh_created_at,\n\t\tplan_key,\n\t\tplan_id,\n\t\tplan_name,\n\t\tplan_display_name,\n\t\tplan_description,\n\t\told_plan_id,\n\t\tcategory_id,\n\t\tcategory_name,\n\t\tis_sms_annual,\n\t\tis_sms_ss,\n\t\tis_sms_free,\n\t\tis_sms,\n\t\tis_reviews_annual,\n\t\tis_reviews_ss,\n\t\tis_reviews_free,\n\t\tis_reviews,\n\t\tis_vms_annual,\n\t\tis_vms_ss,\n\t\tis_vms_free,\n\t\tis_vms,\n\t\tis_loyalty_annual,\n\t\tis_loyalty_ss,\n\t\tis_loyalty_free,\n\t\tis_loyalty,\n\t\tis_insights_annual,\n\t\tis_insights_ss,\n\t\tis_insights_free,\n\t\tis_insights,\n\t\tis_subscriptions_annual,\n\t\tis_subscriptions_ss,\n\t\tis_subscriptions_free,\n\t\tis_subscriptions,\n\t\tis_annual,\n\t\tis_growth,\n\t\tis_premium,\n\t\tis_ss,\n\t\tis_free,\n\t\tis_legacy,\n\t\tis_prime,\n\t\ttags,\n\t\tfull_tags\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__deprecated_packages", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.sql", "unique_id": "model.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27"], "alias": "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "checksum": {"name": "sha256", "checksum": "859ecbe84bba5e2651b5f1b3256f1700f476c0619c8db68a3aa75b7e6a7a6d9c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Static table containing date of onboarding call per product per organization.\nUsed for start_date of is_customer_care indicator before 2023-08-27\n[Granularity: organization_key | account_id | product_family_group]", "columns": {"organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "sf_account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_call_date": {"name": "onboarding_call_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "last saved at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082646.8341951, "relation_name": "dev_dkruh1.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__static', 'organization_onboarding_call_pre_2023_08_27') }}\n\n), analytics___platform_stg__organization_onboarding_call_pre_2023_08_27 AS (\n\n SELECT \n\t\torganization_key,\n\t\taccount_id,\n\t\tproduct_family_group,\n\t\tonboarding_call_date,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "language": "sql", "refs": [], "sources": [["analytics__static", "organization_onboarding_call_pre_2023_08_27"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.organization_onboarding_call_pre_2023_08_27"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.organization_onboarding_call_pre_2023_08_27\n\n), analytics___platform_stg__organization_onboarding_call_pre_2023_08_27 AS (\n\n SELECT \n\t\torganization_key,\n\t\taccount_id,\n\t\tproduct_family_group,\n\t\tonboarding_call_date,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__phone_code_country_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__phone_code_country_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.sql", "unique_id": "model.yoda.analytics___platform_stg__phone_code_country_mapping", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__phone_code_country_mapping", "analytics___platform_stg__phone_code_country_mapping"], "alias": "analytics___platform_stg__phone_code_country_mapping", "checksum": {"name": "sha256", "checksum": "1580fb1e2ecf05210457e238231adc03cebed12811db512c4ccd036401a1d94c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "TODO: Update Table Description", "columns": {"phone_code": {"name": "phone_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_name": {"name": "country_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "area_code": {"name": "area_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iso_country_code": {"name": "iso_country_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region_name": {"name": "region_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082646.8511083, "relation_name": "dev_dkruh1.analytics___platform_stg__phone_code_country_mapping", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__static', 'phone_code_country_mapping') }}\n\n), platform_stg__phone_code_country_mapping AS (\n\n SELECT \n\t\tphone_code,\n\t\tcountry_name,\n\t\tarea_code,\n\t\tiso_country_code,\n\t\tregion_name,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__phone_code_country_mapping", "language": "sql", "refs": [], "sources": [["platform__static", "phone_code_country_mapping"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__static.phone_code_country_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.phone_code_country_mapping\n\n), platform_stg__phone_code_country_mapping AS (\n\n SELECT \n\t\tphone_code,\n\t\tcountry_name,\n\t\tarea_code,\n\t\tiso_country_code,\n\t\tregion_name,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__phone_code_country_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__pixel_action_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__pixel_action_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.sql", "unique_id": "model.yoda.analytics___platform_stg__pixel_action_mapping", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__pixel_action_mapping", "analytics___platform_stg__pixel_action_mapping"], "alias": "analytics___platform_stg__pixel_action_mapping", "checksum": {"name": "sha256", "checksum": "8ebd7d88172ea287759dd25d0835c67493c79e80cfb19a24a26e01bed310b19f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "platform_stg__pixel_action_mapping", "columns": {"product": {"name": "product", "description": "yotpo product: ugc, loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "pixel action: shown, loaded, clicked_on, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082646.871326, "relation_name": "dev_dkruh1.analytics___platform_stg__pixel_action_mapping", "raw_code": "WITH source AS (\n SELECT * FROM {{ source('platform__static', 'pixel_action_mapping') }}\n),\n\nplatform_stg__pixel_action_mapping AS (\n SELECT \n product,\n action,\n dwh_updated_at\n FROM source\n)\n\nSELECT\n product,\n action,\n dwh_updated_at\nFROM platform_stg__pixel_action_mapping", "language": "sql", "refs": [], "sources": [["platform__static", "pixel_action_mapping"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__static.pixel_action_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.sql", "compiled": true, "compiled_code": "WITH source AS (\n SELECT * FROM static.pixel_action_mapping\n),\n\nplatform_stg__pixel_action_mapping AS (\n SELECT \n product,\n action,\n dwh_updated_at\n FROM source\n)\n\nSELECT\n product,\n action,\n dwh_updated_at\nFROM platform_stg__pixel_action_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__pixel_category_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__pixel_category_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.sql", "unique_id": "model.yoda.analytics___platform_stg__pixel_category_mapping", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__pixel_category_mapping", "analytics___platform_stg__pixel_category_mapping"], "alias": "analytics___platform_stg__pixel_category_mapping", "checksum": {"name": "sha256", "checksum": "ca7d4a74f6112c80984a059efd13886b679c914a523b09c502b8d4c1b731dc8c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "platform_stg__pixel_category_mapping", "columns": {"product": {"name": "product", "description": "yotpo product: ugc, loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_version_type": {"name": "widget_version_type", "description": "widget version type: 2, 3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "category": {"name": "category", "description": "pixel category", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082646.8946824, "relation_name": "dev_dkruh1.analytics___platform_stg__pixel_category_mapping", "raw_code": "WITH source AS (\n SELECT * FROM {{ source('platform__static', 'pixel_category_mapping') }}\n),\n\nplatform_stg__pixel_category_mapping AS (\nSELECT \n product,\n widget_version_type,\n category,\n dwh_updated_at\nFROM source\n)\n\nSELECT\n product,\n widget_version_type,\n category,\n dwh_updated_at\nFROM platform_stg__pixel_category_mapping", "language": "sql", "refs": [], "sources": [["platform__static", "pixel_category_mapping"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__static.pixel_category_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.sql", "compiled": true, "compiled_code": "WITH source AS (\n SELECT * FROM static.pixel_category_mapping\n),\n\nplatform_stg__pixel_category_mapping AS (\nSELECT \n product,\n widget_version_type,\n category,\n dwh_updated_at\nFROM source\n)\n\nSELECT\n product,\n widget_version_type,\n category,\n dwh_updated_at\nFROM platform_stg__pixel_category_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__pixel_duration_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__pixel_duration_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.sql", "unique_id": "model.yoda.analytics___platform_stg__pixel_duration_mapping", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__pixel_duration_mapping", "analytics___platform_stg__pixel_duration_mapping"], "alias": "analytics___platform_stg__pixel_duration_mapping", "checksum": {"name": "sha256", "checksum": "48f675aecfec485601c1d03b286cf6286467e5e989679d1cd07577387d3d00df"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "platform_stg__pixel_duration_mapping", "columns": {"from_seconds": {"name": "from_seconds", "description": "lower bound of seconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(4,2)"}, "to_seconds": {"name": "to_seconds", "description": "upper bound of seconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(4,2)"}, "metric": {"name": "metric", "description": "duration group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082646.9201787, "relation_name": "dev_dkruh1.analytics___platform_stg__pixel_duration_mapping", "raw_code": "WITH source AS (\n SELECT * FROM {{ source('platform__static', 'pixel_duration_mapping') }}\n), \n\nplatform_stg__pixel_duration_mapping AS (\nSELECT \n from_seconds,\n to_seconds,\n metric,\n dwh_updated_at\nFROM source\n)\n\nSELECT\n from_seconds,\n to_seconds,\n metric,\n dwh_updated_at\nFROM platform_stg__pixel_duration_mapping", "language": "sql", "refs": [], "sources": [["platform__static", "pixel_duration_mapping"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__static.pixel_duration_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.sql", "compiled": true, "compiled_code": "WITH source AS (\n SELECT * FROM static.pixel_duration_mapping\n), \n\nplatform_stg__pixel_duration_mapping AS (\nSELECT \n from_seconds,\n to_seconds,\n metric,\n dwh_updated_at\nFROM source\n)\n\nSELECT\n from_seconds,\n to_seconds,\n metric,\n dwh_updated_at\nFROM platform_stg__pixel_duration_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__pixel_os_family_mobile_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.sql", "unique_id": "model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__pixel_os_family_mobile_mapping", "analytics___platform_stg__pixel_os_family_mobile_mapping"], "alias": "analytics___platform_stg__pixel_os_family_mobile_mapping", "checksum": {"name": "sha256", "checksum": "208126b1e54dfc3b1ec856397ee818d55978b4e382eba2b36747d3a7793570cc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Static table for mapping operating systems names to mobile indicator | granularity and PK: os_family_name", "columns": {"os_family_name": {"name": "os_family_name", "description": "operating system name: ios, kindle, windows, etc. - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_mobile": {"name": "is_mobile", "description": "mobile indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082646.9409406, "relation_name": "dev_dkruh1.analytics___platform_stg__pixel_os_family_mobile_mapping", "raw_code": "WITH source AS (\n SELECT * FROM {{ source('platform__static', 'pixel_os_family_mobile_mapping') }}\n),\n\nplatform_stg__pixel_os_family_mobile_mapping AS (\n SELECT \n os_family_name,\n\t\tis_mobile,\n\t\tdwh_updated_at\n FROM source\n)\n\nSELECT * \nFROM platform_stg__pixel_os_family_mobile_mapping", "language": "sql", "refs": [], "sources": [["platform__static", "pixel_os_family_mobile_mapping"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__static.pixel_os_family_mobile_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.sql", "compiled": true, "compiled_code": "WITH source AS (\n SELECT * FROM static.pixel_os_family_mobile_mapping\n),\n\nplatform_stg__pixel_os_family_mobile_mapping AS (\n SELECT \n os_family_name,\n\t\tis_mobile,\n\t\tdwh_updated_at\n FROM source\n)\n\nSELECT * \nFROM platform_stg__pixel_os_family_mobile_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__product_plan_name_rank": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__product_plan_name_rank", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.sql", "unique_id": "model.yoda.analytics___platform_stg__product_plan_name_rank", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__product_plan_name_rank", "analytics___platform_stg__product_plan_name_rank"], "alias": "analytics___platform_stg__product_plan_name_rank", "checksum": {"name": "sha256", "checksum": "b0e296c65b2fb0aecc73287aa2516b101bc2f6f2ffed36922d846e80057b650f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "static ranking table that ranks plan_name per product - this is used to calculate upgrades and duplicate rank.\nPK: plan_name", "columns": {"product_family": {"name": "product_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_group": {"name": "plan_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_plan_rank": {"name": "product_plan_rank", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082646.9657145, "relation_name": "dev_dkruh1.analytics___platform_stg__product_plan_name_rank", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__static', 'product_plan_name_rank') }}\n\n), analytics___platform_stg__product_plan_name_rank AS (\n\n SELECT \n\t\tproduct_family,\n\t\tplan_group,\n\t\tplan_name,\n\t\tproduct_plan_rank,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___platform_stg__product_plan_name_rank", "language": "sql", "refs": [], "sources": [["analytics__static", "product_plan_name_rank"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.product_plan_name_rank"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.product_plan_name_rank\n\n), analytics___platform_stg__product_plan_name_rank AS (\n\n SELECT \n\t\tproduct_family,\n\t\tplan_group,\n\t\tplan_name,\n\t\tproduct_plan_rank,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___platform_stg__product_plan_name_rank", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__questions": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__questions", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.sql", "unique_id": "model.yoda.analytics___platform_stg__questions", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__questions", "analytics___platform_stg__questions"], "alias": "analytics___platform_stg__questions", "checksum": {"name": "sha256", "checksum": "f78b8d6d0c89aec9ab747fe0fe0c6c33d13fbb56321020b252b4ff9edd99a212"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Tables written by yotpo R&D and serve the platform", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "products_app_id": {"name": "products_app_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "content": {"name": "content", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "asker_display_name": {"name": "asker_display_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_type": {"name": "user_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "allow_send": {"name": "allow_send", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "archived": {"name": "archived", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_type_id": {"name": "source_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "source_question_id": {"name": "source_question_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082647.0025623, "relation_name": "dev_dkruh1.analytics___platform_stg__questions", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'questions') }}\n\n), platform_stg__questions AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taccount_id,\n\t\tproducts_app_id,\n\t\tcontent,\n\t\tasker_display_name,\n\t\tuser_id,\n\t\tuser_type,\n\t\tallow_send,\n\t\tarchived,\n\t\tsource_type_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tsource_question_id,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__questions", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "questions"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.questions"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.questions\n\n), platform_stg__questions AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taccount_id,\n\t\tproducts_app_id,\n\t\tcontent,\n\t\tasker_display_name,\n\t\tuser_id,\n\t\tuser_type,\n\t\tallow_send,\n\t\tarchived,\n\t\tsource_type_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tsource_question_id,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__questions", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__saas_organization_daily_history": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__saas_organization_daily_history", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.sql", "unique_id": "model.yoda.analytics___platform_stg__saas_organization_daily_history", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__saas_organization_daily_history", "analytics___platform_stg__saas_organization_daily_history"], "alias": "analytics___platform_stg__saas_organization_daily_history", "checksum": {"name": "sha256", "checksum": "b3882bf2ae9efc88674df5bd9419e147063d4390f016bbf3de88153be3909787"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "static table from saas phase 1 - explodes dates from_to_time for each organization product family - shows only core plan and only one plan per product family. \nstatic table date < 01-03-2023", "columns": {"organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "explode on date >= from_date and date < to_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "FK: analytics___platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_annual": {"name": "is_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_self_service": {"name": "is_self_service", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "static table saved at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082647.0323842, "relation_name": "dev_dkruh1.analytics___platform_stg__saas_organization_daily_history", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__static', 'saas_organization_daily_history') }}\n\n), analytics___platform_stg__saas_organization_daily_history AS (\n\n SELECT \n\t\torganization_key,\n\t\tdate,\n\t\tproduct_family,\n\t\tplan_id,\n\t\tplan_name,\n\t\tis_annual,\n\t\tis_self_service,\n\t\tis_free,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___platform_stg__saas_organization_daily_history", "language": "sql", "refs": [], "sources": [["analytics__static", "saas_organization_daily_history"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.saas_organization_daily_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.saas_organization_daily_history\n\n), analytics___platform_stg__saas_organization_daily_history AS (\n\n SELECT \n\t\torganization_key,\n\t\tdate,\n\t\tproduct_family,\n\t\tplan_id,\n\t\tplan_name,\n\t\tis_annual,\n\t\tis_self_service,\n\t\tis_free,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___platform_stg__saas_organization_daily_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__saas_store_plan_history": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__saas_store_plan_history", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.sql", "unique_id": "model.yoda.analytics___platform_stg__saas_store_plan_history", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__saas_store_plan_history", "analytics___platform_stg__saas_store_plan_history"], "alias": "analytics___platform_stg__saas_store_plan_history", "checksum": {"name": "sha256", "checksum": "f338c354eeca4201c92fb5dd254b1865fb1cf82c79db3bd51ab34f4d7dcecd22"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "static table from saas phase 1 that holds for each store their plan over time. \nstatic table that holds data until 01-03-2023", "columns": {"from_date": {"name": "from_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "product_name": {"name": "product_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sales_attributed": {"name": "is_sales_attributed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_core_plan": {"name": "is_core_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_annual": {"name": "is_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ss": {"name": "is_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082647.0740132, "relation_name": "dev_dkruh1.analytics___platform_stg__saas_store_plan_history", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__static', 'saas_store_plan_history') }}\n\n), platform_stg__saas_store_plan_history AS (\n\n SELECT \n\t\tfrom_date,\n\t\tto_date,\n\t\torganization_key,\n\t\tapp_key,\n\t\tplan_id,\n\t\tproduct_name,\n\t\tplan_name,\n\t\tis_sales_attributed,\n\t\tis_core_plan,\n\t\tis_annual,\n\t\tis_ss,\n\t\tis_free,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__saas_store_plan_history", "language": "sql", "refs": [], "sources": [["platform__static", "saas_store_plan_history"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__static.saas_store_plan_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.saas_store_plan_history\n\n), platform_stg__saas_store_plan_history AS (\n\n SELECT \n\t\tfrom_date,\n\t\tto_date,\n\t\torganization_key,\n\t\tapp_key,\n\t\tplan_id,\n\t\tproduct_name,\n\t\tplan_name,\n\t\tis_sales_attributed,\n\t\tis_core_plan,\n\t\tis_annual,\n\t\tis_ss,\n\t\tis_free,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__saas_store_plan_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__shopify_billing_charge_plan_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.sql", "unique_id": "model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__shopify_billing_charge_plan_mapping", "analytics___platform_stg__shopify_billing_charge_plan_mapping"], "alias": "analytics___platform_stg__shopify_billing_charge_plan_mapping", "checksum": {"name": "sha256", "checksum": "176496422c137b30a5ac424aabd380c29f72356bb8207a23fdde7109888680a4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Static mapping table between shopify billing unidentified charge names (plan name) and plan metrics.\nGranularity: product_family|charge_name", "columns": {"product_family": {"name": "product_family", "description": "UGC|SMS|Loyalty", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_name": {"name": "charge_name", "description": "charge_name as passed from shopify billing (should represent plan name)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "plan_name according to analytics___platform__store_plan_daily convention.\nCAN BE NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "FK: analytics___platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_self_service": {"name": "is_self_service", "description": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082647.1022005, "relation_name": "dev_dkruh1.analytics___platform_stg__shopify_billing_charge_plan_mapping", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__static', 'shopify_billing_charge_plan_mapping') }}\n\n), analytics___platform_stg__shopify_billing_charge_plan_mapping AS (\n\n SELECT \n\t\tproduct_family,\n\t\tcharge_name,\n\t\tplan_name,\n\t\tplan_id,\n\t\tis_self_service,\n\t\tis_free,\n\t\tis_full_service,\n\t\tis_reviews,\n\t\tis_loyalty,\n\t\tis_vms,\n\t\tis_subscriptions,\n\t\tis_sms,\n\t\tis_email,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___platform_stg__shopify_billing_charge_plan_mapping", "language": "sql", "refs": [], "sources": [["analytics__static", "shopify_billing_charge_plan_mapping"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.shopify_billing_charge_plan_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.shopify_billing_charge_plan_mapping\n\n), analytics___platform_stg__shopify_billing_charge_plan_mapping AS (\n\n SELECT \n\t\tproduct_family,\n\t\tcharge_name,\n\t\tplan_name,\n\t\tplan_id,\n\t\tis_self_service,\n\t\tis_free,\n\t\tis_full_service,\n\t\tis_reviews,\n\t\tis_loyalty,\n\t\tis_vms,\n\t\tis_subscriptions,\n\t\tis_sms,\n\t\tis_email,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___platform_stg__shopify_billing_charge_plan_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__similar_stores": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__similar_stores", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.sql", "unique_id": "model.yoda.analytics___platform_stg__similar_stores", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__similar_stores", "analytics___platform_stg__similar_stores"], "alias": "analytics___platform_stg__similar_stores", "checksum": {"name": "sha256", "checksum": "bda41981829cf140899ef4ad1607a90ecc47cfd25c555eb64ddf3e79da7a80af"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "TODO: Update Table Description", "columns": {"store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cluster_id": {"name": "cluster_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "domain": {"name": "domain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manual_category": {"name": "manual_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "predicted_category": {"name": "predicted_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "similar_stores": {"name": "similar_stores", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "store_embedding": {"name": "store_embedding", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082647.134832, "relation_name": "dev_dkruh1.analytics___platform_stg__similar_stores", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__data_science', 'similar_stores') }}\n\n), platform_stg__similar_stores AS (\n\n SELECT \n\t\tstore_id,\n\t\tcluster_id,\n\t\tdomain,\n\t\tmanual_category,\n\t\tpredicted_category,\n\t\tcategory,\n\t\tsimilar_stores,\n\t\tstore_embedding\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__similar_stores", "language": "sql", "refs": [], "sources": [["platform__data_science", "similar_stores"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__data_science.similar_stores"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM data_science.similar_stores\n\n), platform_stg__similar_stores AS (\n\n SELECT \n\t\tstore_id,\n\t\tcluster_id,\n\t\tdomain,\n\t\tmanual_category,\n\t\tpredicted_category,\n\t\tcategory,\n\t\tsimilar_stores,\n\t\tstore_embedding\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__similar_stores", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__sms_loyalty_synergy_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.sql", "unique_id": "model.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__sms_loyalty_synergy_mapping", "analytics___platform_stg__sms_loyalty_synergy_mapping"], "alias": "analytics___platform_stg__sms_loyalty_synergy_mapping", "checksum": {"name": "sha256", "checksum": "7110cc3f05a6cef4487cfa26ade654d632b11f829f7c36469af5974d3d34d68c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Static table of synergies mapping between sms and loyalty", "columns": {"synergy_category_name": {"name": "synergy_category_name", "description": "synergy category name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_name": {"name": "synergy_name", "description": "synergy name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_value": {"name": "source_value", "description": "synergy column value for filter", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_column_name": {"name": "source_column_name", "description": "synergy column name for filter", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082647.1574888, "relation_name": "dev_dkruh1.analytics___platform_stg__sms_loyalty_synergy_mapping", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__static', 'sms_loyalty_synergy_mapping') }}\n\n), platform_stg__sms_loyalty_synergy_mapping AS (\n\n SELECT \n\t\tsynergy_category_name,\n\t\tsynergy_name,\n\t\tsource_value,\n\t\tsource_column_name,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__sms_loyalty_synergy_mapping", "language": "sql", "refs": [], "sources": [["platform__static", "sms_loyalty_synergy_mapping"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__static.sms_loyalty_synergy_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.sms_loyalty_synergy_mapping\n\n), platform_stg__sms_loyalty_synergy_mapping AS (\n\n SELECT \n\t\tsynergy_category_name,\n\t\tsynergy_name,\n\t\tsource_value,\n\t\tsource_column_name,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__sms_loyalty_synergy_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__subscriptions_contract_history": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__subscriptions_contract_history", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.sql", "unique_id": "model.yoda.analytics___platform_stg__subscriptions_contract_history", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__subscriptions_contract_history", "analytics___platform_stg__subscriptions_contract_history"], "alias": "analytics___platform_stg__subscriptions_contract_history", "checksum": {"name": "sha256", "checksum": "073669a40b0f2333f69b2a82e62257875d3e8cd80edd5cc1f237a7305a1e0294"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Contract over time historical data with syntetic events for missing active events | PK: from_time, app_key, contract_id, status_id", "columns": {"from_time": {"name": "from_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_id": {"name": "contract_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status_id": {"name": "status_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status_name": {"name": "status_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status_started_at": {"name": "status_started_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delivery_frequency_interval": {"name": "delivery_frequency_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_frequency_interval_count": {"name": "delivery_frequency_interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_frequency_interval_name": {"name": "delivery_frequency_interval_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_frequency_interval": {"name": "billing_frequency_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_frequency_interval_count": {"name": "billing_frequency_interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_frequency_interval_name": {"name": "billing_frequency_interval_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_migrated_contract": {"name": "is_migrated_contract", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_prepaid": {"name": "is_prepaid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082647.1865914, "relation_name": "dev_dkruh1.analytics___platform_stg__subscriptions_contract_history", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__static', 'subscriptions_contract_history') }}\n\n), platform_stg__subscriptions_contract_history AS (\n\n SELECT \n\t\tfrom_time,\n\t\tto_time,\n\t\tapp_key,\n\t\tcontract_id,\n\t\tstatus_id,\n\t\tstatus_name,\n\t\tstatus_started_at,\n\t\tdelivery_frequency_interval,\n\t\tdelivery_frequency_interval_count,\n\t\tdelivery_frequency_interval_name,\n\t\tbilling_frequency_interval,\n\t\tbilling_frequency_interval_count,\n\t\tbilling_frequency_interval_name,\n\t\tis_migrated_contract,\n\t\tis_prepaid\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscriptions_contract_history", "language": "sql", "refs": [], "sources": [["platform__static", "subscriptions_contract_history"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__static.subscriptions_contract_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.subscriptions_contract_history\n\n), platform_stg__subscriptions_contract_history AS (\n\n SELECT \n\t\tfrom_time,\n\t\tto_time,\n\t\tapp_key,\n\t\tcontract_id,\n\t\tstatus_id,\n\t\tstatus_name,\n\t\tstatus_started_at,\n\t\tdelivery_frequency_interval,\n\t\tdelivery_frequency_interval_count,\n\t\tdelivery_frequency_interval_name,\n\t\tbilling_frequency_interval,\n\t\tbilling_frequency_interval_count,\n\t\tbilling_frequency_interval_name,\n\t\tis_migrated_contract,\n\t\tis_prepaid\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscriptions_contract_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__account": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__account", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.sql", "unique_id": "model.yoda.analytics___platform_stg__account", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__account", "analytics___platform_stg__account"], "alias": "analytics___platform_stg__account", "checksum": {"name": "sha256", "checksum": "2dd092c76d8a54bb524809ebdff83c6b5e298ef59a900b7b33f55011cd5b40f2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Holds all yotpo platform accounts | PK & Granularity: account_id", "columns": {"account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_domain": {"name": "account_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_test": {"name": "is_test", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active": {"name": "is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_language": {"name": "store_language", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_id": {"name": "category_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_created_at": {"name": "account_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082647.2489498, "relation_name": "dev_dkruh1.analytics___platform_stg__account", "raw_code": "WITH import_accounts AS (\n\n SELECT * FROM {{ ref('platform_stg__accounts') }}\n\n), platform_stg__account AS (\n\n SELECT \n id AS account_id,\n app_key,\n organization_id,\n domain AS account_domain,\n SMALLINT(is_test) AS is_test,\n SMALLINT(is_active) AS is_active,\n name AS account_name,\n customer_language AS store_language,\n category_id,\n created_at AS account_created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_accounts\n\n)\n\nSELECT \n account_id,\n app_key,\n organization_id,\n account_domain,\n is_test,\n is_active,\n account_name,\n store_language,\n category_id,\n account_created_at,\n dwh_updated_at\nFROM platform_stg__account", "language": "sql", "refs": [{"name": "platform_stg__accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__accounts"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.sql", "compiled": true, "compiled_code": "WITH import_accounts AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__accounts\n\n), platform_stg__account AS (\n\n SELECT \n id AS account_id,\n app_key,\n organization_id,\n domain AS account_domain,\n SMALLINT(is_test) AS is_test,\n SMALLINT(is_active) AS is_active,\n name AS account_name,\n customer_language AS store_language,\n category_id,\n created_at AS account_created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_accounts\n\n)\n\nSELECT \n account_id,\n app_key,\n organization_id,\n account_domain,\n is_test,\n is_active,\n account_name,\n store_language,\n category_id,\n account_created_at,\n dwh_updated_at\nFROM platform_stg__account", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__account_platform": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__account_platform", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.sql", "unique_id": "model.yoda.analytics___platform_stg__account_platform", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__account_platform", "analytics___platform_stg__account_platform"], "alias": "analytics___platform_stg__account_platform", "checksum": {"name": "sha256", "checksum": "6473ed944776af6ce09b7d5dc186decc2895c83830aff225f272cd7d21e240f9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled staging table of account and their platform\nGranularity: account and its platform\nPrimary Key: account_platform_id", "columns": {"account_platform_id": {"name": "account_platform_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_type_id": {"name": "platform_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_plan_name": {"name": "platform_plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_api_name": {"name": "store_api_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_shop_domain": {"name": "external_shop_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_account_id": {"name": "external_account_id", "description": "ID of the FK: platform_store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_valid_credentials": {"name": "is_valid_credentials", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "account_platform_created_at": {"name": "account_platform_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_platform_updated_at": {"name": "account_platform_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082647.289405, "relation_name": "dev_dkruh1.analytics___platform_stg__account_platform", "raw_code": "WITH import_account_platforms AS (\n\n SELECT * FROM {{ ref('platform_stg__account_platforms') }}\n\n), platform_stg__account_platform AS (\n\n SELECT \n id AS account_platform_id,\n account_id,\n platform_type_id,\n plan_name AS platform_plan_name,\n shop_domain AS store_api_name,\n external_shop_domain,\n\t\tNULLIF(TRIM(external_account_id),'') AS external_account_id,\n SMALLINT(valid_credentials) AS is_valid_credentials,\n created_at AS account_platform_created_at,\n updated_at AS account_platform_updated_at\n FROM import_account_platforms\n\n)\n\nSELECT *\nFROM platform_stg__account_platform", "language": "sql", "refs": [{"name": "platform_stg__account_platforms", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__account_platforms"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.sql", "compiled": true, "compiled_code": "WITH import_account_platforms AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__account_platforms\n\n), platform_stg__account_platform AS (\n\n SELECT \n id AS account_platform_id,\n account_id,\n platform_type_id,\n plan_name AS platform_plan_name,\n shop_domain AS store_api_name,\n external_shop_domain,\n\t\tNULLIF(TRIM(external_account_id),'') AS external_account_id,\n SMALLINT(valid_credentials) AS is_valid_credentials,\n created_at AS account_platform_created_at,\n updated_at AS account_platform_updated_at\n FROM import_account_platforms\n\n)\n\nSELECT *\nFROM platform_stg__account_platform", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__category": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__category", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.sql", "unique_id": "model.yoda.analytics___platform_stg__category", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__category", "analytics___platform_stg__category"], "alias": "analytics___platform_stg__category", "checksum": {"name": "sha256", "checksum": "302fbc083847802fee8ddf4e556fe0e8958865c06bee93bdfefeeb2df5f6a7c6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view which holds all platforms' categories\nPK & Granularity: category_id", "columns": {"category_id": {"name": "category_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_category": {"name": "store_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082647.3297472, "relation_name": "dev_dkruh1.analytics___platform_stg__category", "raw_code": "WITH import_categories AS (\n\n SELECT * FROM {{ ref('platform_stg__categories') }}\n\n), platform_stg__category AS (\n\n SELECT \n id AS category_id,\n name AS store_category,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_categories\n\n)\n\nSELECT * \nFROM platform_stg__category", "language": "sql", "refs": [{"name": "platform_stg__categories", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__categories"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.sql", "compiled": true, "compiled_code": "WITH import_categories AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__categories\n\n), platform_stg__category AS (\n\n SELECT \n id AS category_id,\n name AS store_category,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_categories\n\n)\n\nSELECT * \nFROM platform_stg__category", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__currency_exchange_rate": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__currency_exchange_rate", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.sql", "unique_id": "model.yoda.analytics___platform_stg__currency_exchange_rate", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__currency_exchange_rate", "analytics___platform_stg__currency_exchange_rate"], "alias": "analytics___platform_stg__currency_exchange_rate", "checksum": {"name": "sha256", "checksum": "81d933b07cc4933cf1afdb52807c877cd1e58b26a16613dcc750a4ba2c007b74"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of exchange rates between 2 currencies in a date level. | Granularity & Primary Key: currency_exchange_date, from_currency_symbol, to_currency_symbol.", "columns": {"currency_exchange_date": {"name": "currency_exchange_date", "description": "The exchange date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "from_currency_symbol": {"name": "from_currency_symbol", "description": "from currency symbol, e.g: USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "to_currency_symbol": {"name": "to_currency_symbol", "description": "to currency symbol: USD, GBP, PYG, MDL, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "conversion_rate": {"name": "conversion_rate", "description": "The conversion rate between the 2 currencies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082647.3458438, "relation_name": "dev_dkruh1.analytics___platform_stg__currency_exchange_rate", "raw_code": "WITH import_currency_rates AS (\n SELECT * FROM {{ ref('platform_stg__currency_rates') }}\n), \n\ncurrency_exchange_rate_res AS (\nSELECT \n DATE(day_of_currency_exchange) AS currency_exchange_date,\n base AS from_currency_symbol,\n country AS to_currency_symbol,\n currency AS conversion_rate\nFROM import_currency_rates\n)\n\nSELECT\n currency_exchange_date,\n from_currency_symbol,\n to_currency_symbol,\n conversion_rate\nFROM currency_exchange_rate_res", "language": "sql", "refs": [{"name": "platform_stg__currency_rates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__currency_rates"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.sql", "compiled": true, "compiled_code": "WITH import_currency_rates AS (\n SELECT * FROM dev_dkruh1.platform_stg__currency_rates\n), \n\ncurrency_exchange_rate_res AS (\nSELECT \n DATE(day_of_currency_exchange) AS currency_exchange_date,\n base AS from_currency_symbol,\n country AS to_currency_symbol,\n currency AS conversion_rate\nFROM import_currency_rates\n)\n\nSELECT\n currency_exchange_date,\n from_currency_symbol,\n to_currency_symbol,\n conversion_rate\nFROM currency_exchange_rate_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__feature": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__feature", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.sql", "unique_id": "model.yoda.analytics___platform_stg__feature", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__feature", "analytics___platform_stg__feature"], "alias": "analytics___platform_stg__feature", "checksum": {"name": "sha256", "checksum": "9366619513627f22253c651def4d59c8c1422cd467937c385c5c99fe71ea05db"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view for features source.\nPK: feature_id", "columns": {"feature_id": {"name": "feature_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_name": {"name": "feature_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_type": {"name": "owner_type", "description": "owner type (Organization, User, Account)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_user_enabled": {"name": "default_user_enabled", "description": "is enabled by default", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_default_user_enabled": {"name": "is_default_user_enabled", "description": "cailesce(default_user_enabled,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "new": {"name": "new", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "feature_key": {"name": "feature_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082647.4000468, "relation_name": "dev_dkruh1.analytics___platform_stg__feature", "raw_code": "WITH import_features AS (\n\n SELECT * FROM {{ ref('platform_stg__features') }}\n\n),\nplatform_features AS (\n\nSELECT \n id AS feature_id,\n name AS feature_name,\n description,\n owner_type,\n default_user_enabled,\n SMALLINT(IFNULL(default_user_enabled,0)) AS is_default_user_enabled,\n new,\n created_at,\n updated_at,\n feature_key\nFROM import_features\n\n)\n\nSELECT * \nFROM platform_features", "language": "sql", "refs": [{"name": "platform_stg__features", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__features"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.sql", "compiled": true, "compiled_code": "WITH import_features AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__features\n\n),\nplatform_features AS (\n\nSELECT \n id AS feature_id,\n name AS feature_name,\n description,\n owner_type,\n default_user_enabled,\n SMALLINT(IFNULL(default_user_enabled,0)) AS is_default_user_enabled,\n new,\n created_at,\n updated_at,\n feature_key\nFROM import_features\n\n)\n\nSELECT * \nFROM platform_features", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__fulfillment": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__fulfillment", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.sql", "unique_id": "model.yoda.analytics___platform_stg__fulfillment", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__fulfillment", "analytics___platform_stg__fulfillment"], "alias": "analytics___platform_stg__fulfillment", "checksum": {"name": "sha256", "checksum": "b4c6eeb60d2038cc43db5af2403e2aa4640cd343b71e794f597bbb38baa68e14"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view for all platform orders and their fulfillment status\nGK: fulfillment_id", "columns": {"fulfillment_id": {"name": "fulfillment_id", "description": "Unique key for this table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_id": {"name": "external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "The order_id which linkes the fulfillment_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "fulfillment_at": {"name": "fulfillment_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "fulfillment_date": {"name": "fulfillment_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "fulfillment_status_type_id": {"name": "fulfillment_status_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shipment_status_type_id": {"name": "shipment_status_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tracking_company": {"name": "tracking_company", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tracking_url": {"name": "tracking_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tracking_number": {"name": "tracking_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082647.4465566, "relation_name": "dev_dkruh1.analytics___platform_stg__fulfillment", "raw_code": "WITH import_fulfillments AS (\n\n SELECT * FROM {{ ref('platform_stg__fulfillments') }}\n\n), \n\nplatform_stg__fulfillment AS (\n\n SELECT\n id AS fulfillment_id,\n external_id,\n order_id,\n fulfillment_at,\n fulfillment_date,\n fulfillment_status_type_id,\n shipment_status_type_id,\n tracking_company,\n tracking_url,\n tracking_number,\n created_at,\n updated_at\n FROM import_fulfillments\n\n)\n\nSELECT * \nFROM platform_stg__fulfillment", "language": "sql", "refs": [{"name": "platform_stg__fulfillments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__fulfillments"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.sql", "compiled": true, "compiled_code": "WITH import_fulfillments AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__fulfillments\n\n), \n\nplatform_stg__fulfillment AS (\n\n SELECT\n id AS fulfillment_id,\n external_id,\n order_id,\n fulfillment_at,\n fulfillment_date,\n fulfillment_status_type_id,\n shipment_status_type_id,\n tracking_company,\n tracking_url,\n tracking_number,\n created_at,\n updated_at\n FROM import_fulfillments\n\n)\n\nSELECT * \nFROM platform_stg__fulfillment", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__home_screen_section": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__home_screen_section", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.sql", "unique_id": "model.yoda.analytics___platform_stg__home_screen_section", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__home_screen_section", "analytics___platform_stg__home_screen_section"], "alias": "analytics___platform_stg__home_screen_section", "checksum": {"name": "sha256", "checksum": "027fecebbd6b864b0c8249f5a1f7aa5c289a4c581bb510357467e825495f4b94"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of home screen sections | PK and granularity: section_id", "columns": {"section_id": {"name": "section_id", "description": "section unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "section_name": {"name": "section_name", "description": "section name: recommendations, synergies, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082647.4708922, "relation_name": "dev_dkruh1.analytics___platform_stg__home_screen_section", "raw_code": "-- Import --\n\nWITH import_platform_stg__sections AS (\nSELECT * FROM {{ ref('platform_stg__sections') }}\n), \n\n-- Logic --\n\nhome_screen_section_res AS (\nSELECT\n id AS section_id,\n name AS section_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_platform_stg__sections\n)\n\n-- Result --\n\nSELECT *\nFROM home_screen_section_res", "language": "sql", "refs": [{"name": "platform_stg__sections", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__sections"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__sections AS (\nSELECT * FROM dev_dkruh1.platform_stg__sections\n), \n\n-- Logic --\n\nhome_screen_section_res AS (\nSELECT\n id AS section_id,\n name AS section_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_platform_stg__sections\n)\n\n-- Result --\n\nSELECT *\nFROM home_screen_section_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__home_screen_widget": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__home_screen_widget", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.sql", "unique_id": "model.yoda.analytics___platform_stg__home_screen_widget", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__home_screen_widget", "analytics___platform_stg__home_screen_widget"], "alias": "analytics___platform_stg__home_screen_widget", "checksum": {"name": "sha256", "checksum": "6e6323ec963a69228f42b65965690a6a1de8e6ba7658af26bee59cce8ec51093"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of home screen widgets | PK and granularity: widget_id", "columns": {"widget_id": {"name": "widget_id", "description": "widget unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "section_id": {"name": "section_id", "description": "section unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_name": {"name": "widget_name", "description": "widget name: popup_form, social_opt_in, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082647.5068939, "relation_name": "dev_dkruh1.analytics___platform_stg__home_screen_widget", "raw_code": "-- Import --\n\nWITH import_platform_stg__widgets AS (\nSELECT * FROM {{ ref('platform_stg__widgets') }}\n), \n\n-- Logic --\n\nplatform_stg__home_screen_widget_res AS (\nSELECT\n id AS widget_id,\n section_id,\n widget_key AS widget_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_platform_stg__widgets\n)\n\n-- Result --\n\nSELECT *\nFROM platform_stg__home_screen_widget_res", "language": "sql", "refs": [{"name": "platform_stg__widgets", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__widgets"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__widgets AS (\nSELECT * FROM dev_dkruh1.platform_stg__widgets\n), \n\n-- Logic --\n\nplatform_stg__home_screen_widget_res AS (\nSELECT\n id AS widget_id,\n section_id,\n widget_key AS widget_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_platform_stg__widgets\n)\n\n-- Result --\n\nSELECT *\nFROM platform_stg__home_screen_widget_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__loyalty_pixel_widget_v_three", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.sql", "unique_id": "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__loyalty_pixel_widget_v_three", "analytics___platform_stg__loyalty_pixel_widget_v_three"], "alias": "analytics___platform_stg__loyalty_pixel_widget_v_three", "checksum": {"name": "sha256", "checksum": "5ba0932b2fd8647a194a0449824f428836115a38dfe93afab32e939f6e9ba0d9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of widget version 3 pixel events for loyalty stores | Granularity & Primary Key: event_id, event_row_rank", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_row_rank": {"name": "event_row_rank", "description": "event's row ranking by processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "date": {"name": "date", "description": "date of the pixel event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "guid": {"name": "guid", "description": "loyalty merchant unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "widget category: products-redemption-widget, hero-section, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "user action: shown, loaded, clicked_on, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "property": {"name": "property", "description": "get_reward_button_clicked, demption_completed, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fingerprint": {"name": "fingerprint", "description": "end user fingerprint", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain_user_id": {"name": "domain_user_id", "description": "End user cookie identifier created on behalf of the store by Yotpo. It is unique within a store, and cannot be used to identify the same shopper in different stores. Its lifecycle is 2 years.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082647.5479414, "relation_name": "dev_dkruh1.analytics___platform_stg__loyalty_pixel_widget_v_three", "raw_code": "-- Import --\n\nWITH import_pixel_category_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_category_mapping') }} \n),\n\nimport_pixel_action_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_action_mapping') }} \n),\n\nimport_pixel_onsite_v3 AS (\nSELECT *\nFROM {{ ref('platform_stg__onsite_v3') }}\n),\n\n-- Logic --\n\ndata_preparation AS (\nSELECT\n pixel.event_id,\n ROW_NUMBER() OVER (PARTITION BY pixel.event_id ORDER BY pixel.processing_time) AS event_row_rank,\n DATE(pixel.partition_date) AS date,\n TRIM(pixel.se_value) AS guid,\n LOWER(pixel.se_category) AS category,\n LOWER(pixel.se_action) AS action,\n pixel.se_property AS property,\n pixel.y_fingerprint AS fingerprint,\n pixel.domain_userid AS domain_user_id\nFROM import_pixel_onsite_v3 AS pixel\nINNER JOIN import_pixel_category_mapping AS category\n ON LOWER(category.product) = 'loyalty'\n AND category.widget_version_type = 3\n AND LOWER(pixel.se_category) = category.category\nINNER JOIN import_pixel_action_mapping AS action\n ON LOWER(action.product) = 'loyalty'\n AND LOWER(pixel.se_action) = action.action\n)\n\n-- Result --\n\nSELECT *\nFROM data_preparation", "language": "sql", "refs": [{"name": "analytics___platform_stg__pixel_category_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__pixel_action_mapping", "package": null, "version": null}, {"name": "platform_stg__onsite_v3", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.platform_stg__onsite_v3"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_pixel_category_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_category_mapping \n),\n\nimport_pixel_action_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_action_mapping \n),\n\nimport_pixel_onsite_v3 AS (\nSELECT *\nFROM dev_dkruh1.platform_stg__onsite_v3\n),\n\n-- Logic --\n\ndata_preparation AS (\nSELECT\n pixel.event_id,\n ROW_NUMBER() OVER (PARTITION BY pixel.event_id ORDER BY pixel.processing_time) AS event_row_rank,\n DATE(pixel.partition_date) AS date,\n TRIM(pixel.se_value) AS guid,\n LOWER(pixel.se_category) AS category,\n LOWER(pixel.se_action) AS action,\n pixel.se_property AS property,\n pixel.y_fingerprint AS fingerprint,\n pixel.domain_userid AS domain_user_id\nFROM import_pixel_onsite_v3 AS pixel\nINNER JOIN import_pixel_category_mapping AS category\n ON LOWER(category.product) = 'loyalty'\n AND category.widget_version_type = 3\n AND LOWER(pixel.se_category) = category.category\nINNER JOIN import_pixel_action_mapping AS action\n ON LOWER(action.product) = 'loyalty'\n AND LOWER(pixel.se_action) = action.action\n)\n\n-- Result --\n\nSELECT *\nFROM data_preparation", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__loyalty_pixel_widget_v_two", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.sql", "unique_id": "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__loyalty_pixel_widget_v_two", "analytics___platform_stg__loyalty_pixel_widget_v_two"], "alias": "analytics___platform_stg__loyalty_pixel_widget_v_two", "checksum": {"name": "sha256", "checksum": "39d1e6d1adf1364c4b2c5696bd1fdc1cb7733c0b1917eac0e0d58b617f9b9aec"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of widget version 2 pixel events for loyalty stores | Granularity & Primary Key: event_id, event_row_rank", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_row_rank": {"name": "event_row_rank", "description": "event's row ranking by processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "date": {"name": "date", "description": "date of the pixel event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "guid": {"name": "guid", "description": "loyalty merchant unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "widget category: referral-widget-page, offline-redemptions-widget, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "user action: shown, loaded, clicked_on, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fingerprint": {"name": "fingerprint", "description": "end user fingerprint", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain_user_id": {"name": "domain_user_id", "description": "End user cookie identifier created on behalf of the store by Yotpo. It is unique within a store, and cannot be used to identify the same shopper in different stores. Its lifecycle is 2 years.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082647.5778868, "relation_name": "dev_dkruh1.analytics___platform_stg__loyalty_pixel_widget_v_two", "raw_code": "-- Import --\n\nWITH import_pixel_category_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_category_mapping') }} \n),\n\nimport_pixel_action_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_action_mapping') }} \n),\n\nimport_pixel_onsite_v2 AS (\nSELECT *\nFROM {{ ref('platform_stg__onsite_v2') }}\n),\n\n-- Logic --\n\ndata_preparation AS (\nSELECT\n pixel.event_id,\n ROW_NUMBER() OVER (PARTITION BY pixel.event_id ORDER BY pixel.processing_time) AS event_row_rank,\n DATE(pixel.partition_date) AS date,\n TRIM(pixel.se_value) AS guid,\n LOWER(pixel.se_category) AS category,\n LOWER(pixel.se_action) AS action,\n pixel.y_fingerprint AS fingerprint,\n pixel.domain_userid AS domain_user_id\nFROM import_pixel_onsite_v2 AS pixel\nINNER JOIN import_pixel_category_mapping AS category\n ON LOWER(category.product) = 'loyalty'\n AND category.widget_version_type = 2\n AND LOWER(pixel.se_category) = category.category\nINNER JOIN import_pixel_action_mapping AS action\n ON LOWER(action.product) = 'loyalty'\n AND LOWER(pixel.se_action) = action.action\n)\n\n-- Result --\n\nSELECT *\nFROM data_preparation", "language": "sql", "refs": [{"name": "analytics___platform_stg__pixel_category_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__pixel_action_mapping", "package": null, "version": null}, {"name": "platform_stg__onsite_v2", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.platform_stg__onsite_v2"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_pixel_category_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_category_mapping \n),\n\nimport_pixel_action_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_action_mapping \n),\n\nimport_pixel_onsite_v2 AS (\nSELECT *\nFROM dev_dkruh1.platform_stg__onsite_v2\n),\n\n-- Logic --\n\ndata_preparation AS (\nSELECT\n pixel.event_id,\n ROW_NUMBER() OVER (PARTITION BY pixel.event_id ORDER BY pixel.processing_time) AS event_row_rank,\n DATE(pixel.partition_date) AS date,\n TRIM(pixel.se_value) AS guid,\n LOWER(pixel.se_category) AS category,\n LOWER(pixel.se_action) AS action,\n pixel.y_fingerprint AS fingerprint,\n pixel.domain_userid AS domain_user_id\nFROM import_pixel_onsite_v2 AS pixel\nINNER JOIN import_pixel_category_mapping AS category\n ON LOWER(category.product) = 'loyalty'\n AND category.widget_version_type = 2\n AND LOWER(pixel.se_category) = category.category\nINNER JOIN import_pixel_action_mapping AS action\n ON LOWER(action.product) = 'loyalty'\n AND LOWER(pixel.se_action) = action.action\n)\n\n-- Result --\n\nSELECT *\nFROM data_preparation", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__order_line": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__order_line", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.sql", "unique_id": "model.yoda.analytics___platform_stg__order_line", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__order_line", "analytics___platform_stg__order_line"], "alias": "analytics___platform_stg__order_line", "checksum": {"name": "sha256", "checksum": "f2d09274fde4baa34e7394281d10145c21617184c23442be820087cd29949a32"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "order_line_id", "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled lean incremental table of order lines. \nPK and granularity: order_line_id", "columns": {"order_line_id": {"name": "order_line_id", "description": "order line id - PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "product id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "variant_id": {"name": "variant_id", "description": "variant id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "quantity": {"name": "quantity", "description": "quantity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cost": {"name": "cost", "description": "cost amount", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subtotal_price": {"name": "subtotal_price", "description": "subtotal price", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_coupon_used": {"name": "is_coupon_used", "description": "coupon used indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "materialized": "incremental", "unique_key": "order_line_id", "incremental_strategy": "merge"}, "created_at": 1700082647.6039345, "relation_name": "dev_dkruh1.analytics___platform_stg__order_line", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental','view'),\n unique_key= 'order_line_id',\n incremental_strategy = 'merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE protected_analytics.platform_order_line ZORDER BY order_id, order_line_id;')\n )\n}}\n\n-- Import --\n\nWITH import_platform_stg_order_lines AS (\nSELECT * FROM {{ ref('platform_stg__order_lines') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='updated_date',query_condition_column='updated_at',subtract=7)}}\n),\n\n-- Logic --\n\nplatform_order_line_res AS (\nSELECT\n id AS order_line_id,\n order_id,\n product_id,\n variant_id,\n quantity,\n cost,\n subtotal_price,\n coupon_used AS is_coupon_used,\n DATE(updated_at) AS updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_platform_stg_order_lines\nWHERE DATE(created_at) <= DATE_SUB(CURRENT_DATE,1)\n)\n\n-- Result --\n\nSELECT *\nFROM platform_order_line_res", "language": "sql", "refs": [{"name": "platform_stg__order_lines", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__order_lines"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_platform_stg_order_lines AS (\nSELECT * FROM dev_dkruh1.platform_stg__order_lines\nWHERE DATE(updated_at) <= DATE_SUB(CURRENT_DATE,1)\n),\n\n-- Logic --\n\nplatform_order_line_res AS (\nSELECT\n id AS order_line_id,\n order_id,\n product_id,\n variant_id,\n quantity,\n cost,\n subtotal_price,\n coupon_used AS is_coupon_used,\n DATE(updated_at) AS updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_platform_stg_order_lines\nWHERE DATE(created_at) <= DATE_SUB(CURRENT_DATE,1)\n)\n\n-- Result --\n\nSELECT *\nFROM platform_order_line_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__organization": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__organization", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.sql", "unique_id": "model.yoda.analytics___platform_stg__organization", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__organization", "analytics___platform_stg__organization"], "alias": "analytics___platform_stg__organization", "checksum": {"name": "sha256", "checksum": "bc400c32fe34a0e3292b5965b7733989c9e355f956c44558a8065bde46ccca2f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view for organization object", "columns": {"organization_id": {"name": "organization_id", "description": "organization id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "organization key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_name": {"name": "organization_name", "description": "organization name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_created_at": {"name": "organization_created_at", "description": "timestamp for organization creation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_updated_at": {"name": "organization_updated_at", "description": "timestamp for organization update", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082647.6387565, "relation_name": "dev_dkruh1.analytics___platform_stg__organization", "raw_code": "-- Import --\n\nWITH import_platform_stg__organizations AS (\n\n SELECT * FROM {{ ref('platform_stg__organizations') }}\n\n),\n\n-- Logic --\n\n platform_stg__organization AS (\n\n SELECT \n\t\tid AS organization_id,\n organization_key,\n name AS organization_name,\n\t\tcreated_at AS organization_created_at,\n\t\tupdated_at AS organization_updated_at\n FROM import_platform_stg__organizations\n\n)\n-- Result --\n\nSELECT \n organization_id,\n organization_key,\n organization_name,\n organization_created_at,\n organization_updated_at\nFROM platform_stg__organization", "language": "sql", "refs": [{"name": "platform_stg__organizations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__organizations"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__organizations AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__organizations\n\n),\n\n-- Logic --\n\n platform_stg__organization AS (\n\n SELECT \n\t\tid AS organization_id,\n organization_key,\n name AS organization_name,\n\t\tcreated_at AS organization_created_at,\n\t\tupdated_at AS organization_updated_at\n FROM import_platform_stg__organizations\n\n)\n-- Result --\n\nSELECT \n organization_id,\n organization_key,\n organization_name,\n organization_created_at,\n organization_updated_at\nFROM platform_stg__organization", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__owner_feature": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__owner_feature", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.sql", "unique_id": "model.yoda.analytics___platform_stg__owner_feature", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "analytics___platform_stg__owner_feature"], "alias": "analytics___platform_stg__owner_feature", "checksum": {"name": "sha256", "checksum": "9afa08a1ae66cbcb56a9c47b328b6497f23c782e2ab991315f7a713406af9992"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view for owners_features source.\nPK: owner_feature_id", "columns": {"owner_feature_id": {"name": "owner_feature_id", "description": "FK - platform_stg__owners_features", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "id of the feature owner according to owner type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_id": {"name": "feature_id", "description": "FK - platform_stg__features", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_type": {"name": "owner_type", "description": "owner type (Organization, User, Account)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "disabled": {"name": "disabled", "description": "If is_diabled = 1 the user is not allowed to connect", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_enabled": {"name": "user_enabled", "description": "User/CSM enabled feature", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "floating": {"name": "floating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_disabled": {"name": "is_disabled", "description": "coalesce(disabled,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_user_enabled": {"name": "is_user_enabled", "description": "coalesce(user_enabled,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_floating": {"name": "is_floating", "description": "coalesce(floating,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_organization_owner": {"name": "is_organization_owner", "description": "is the owner of the feature is organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_user_owner": {"name": "is_user_owner", "description": "is the owner of the feature is user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_store_owner": {"name": "is_store_owner", "description": "is the owner_id of the feature is store_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082647.6815178, "relation_name": "dev_dkruh1.analytics___platform_stg__owner_feature", "raw_code": "WITH import_owners_features AS (\n\n SELECT * FROM {{ ref('platform_stg__owners_features') }}\n\n), \nowner_feature AS (\n\nSELECT\n id AS owner_feature_id,\n owner_id,\n feature_id,\n owner_type,\n disabled,\n user_enabled,\n floating,\n SMALLINT(IFNULL(disabled,0)) AS is_disabled,\n SMALLINT(IFNULL(user_enabled,0)) AS is_user_enabled,\n SMALLINT(IFNULL(floating,0)) AS is_floating,\n SMALLINT(IF(LOWER(owner_type) = 'organization',1,0)) AS is_organization_owner,\n SMALLINT(IF(LOWER(owner_type) = 'user',1,0)) AS is_user_owner,\n SMALLINT(IF(LOWER(owner_type) = 'account',1,0)) AS is_store_owner,\n created_at,\n updated_at\nFROM import_owners_features\n\n)\n\nSELECT * \nFROM owner_feature", "language": "sql", "refs": [{"name": "platform_stg__owners_features", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__owners_features"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.sql", "compiled": true, "compiled_code": "WITH import_owners_features AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__owners_features\n\n), \nowner_feature AS (\n\nSELECT\n id AS owner_feature_id,\n owner_id,\n feature_id,\n owner_type,\n disabled,\n user_enabled,\n floating,\n SMALLINT(IFNULL(disabled,0)) AS is_disabled,\n SMALLINT(IFNULL(user_enabled,0)) AS is_user_enabled,\n SMALLINT(IFNULL(floating,0)) AS is_floating,\n SMALLINT(IF(LOWER(owner_type) = 'organization',1,0)) AS is_organization_owner,\n SMALLINT(IF(LOWER(owner_type) = 'user',1,0)) AS is_user_owner,\n SMALLINT(IF(LOWER(owner_type) = 'account',1,0)) AS is_store_owner,\n created_at,\n updated_at\nFROM import_owners_features\n\n)\n\nSELECT * \nFROM owner_feature", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__owner_feature_setting": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__owner_feature_setting", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.sql", "unique_id": "model.yoda.analytics___platform_stg__owner_feature_setting", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature_setting", "analytics___platform_stg__owner_feature_setting"], "alias": "analytics___platform_stg__owner_feature_setting", "checksum": {"name": "sha256", "checksum": "28c1c186bf80c41bcf555e3f4c2d5c989e2c1a9eed4a6e0397cabb3ef4049929"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view for owner_feature_settings source. \nGranularity: owner_feature_id | key | value", "columns": {"owner_feature_id": {"name": "owner_feature_id", "description": "FK - platform_stg__owners_features", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "key": {"name": "key", "description": "feature settings name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "feature settings value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "floating": {"name": "floating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_floating": {"name": "is_floating", "description": "coalesce(floating,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082647.7829812, "relation_name": "dev_dkruh1.analytics___platform_stg__owner_feature_setting", "raw_code": "WITH import_owner_feature_settings AS (\n\n SELECT * FROM {{ ref('platform_stg__owner_feature_settings') }}\n\n),\nowner_feature_setting AS (\n\nSELECT\n owners_feature_id AS owner_feature_id,\n key,\n value,\n floating,\n SMALLINT(IFNULL(floating,0)) AS is_floating,\n created_at,\n updated_at\nFROM import_owner_feature_settings\n\n)\n\nSELECT * \nFROM owner_feature_setting", "language": "sql", "refs": [{"name": "platform_stg__owner_feature_settings", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__owner_feature_settings"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.sql", "compiled": true, "compiled_code": "WITH import_owner_feature_settings AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__owner_feature_settings\n\n),\nowner_feature_setting AS (\n\nSELECT\n owners_feature_id AS owner_feature_id,\n key,\n value,\n floating,\n SMALLINT(IFNULL(floating,0)) AS is_floating,\n created_at,\n updated_at\nFROM import_owner_feature_settings\n\n)\n\nSELECT * \nFROM owner_feature_setting", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__owner_plan": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__owner_plan", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.sql", "unique_id": "model.yoda.analytics___platform_stg__owner_plan", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan", "analytics___platform_stg__owner_plan"], "alias": "analytics___platform_stg__owner_plan", "checksum": {"name": "sha256", "checksum": "1344af0fdede662a6a56758cc4bbb6e91c185e74b4aa352ac1365f1bc180e0ca"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view for owner_package source", "columns": {"owner_plan_id": {"name": "owner_plan_id", "description": "id of the owner-plan event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "id of the plan owner:\n- if organization: organization_key\n- if store: app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_type": {"name": "owner_type", "description": "owner type (organization or store)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "plan id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "Timestamp for when package was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "Timestamp for when package was updated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "started_at": {"name": "started_at", "description": "plan started at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_organization_owner": {"name": "is_organization_owner", "description": "is the owner of the package is organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_store_owner": {"name": "is_store_owner", "description": "is the owner of the package is store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082647.8257692, "relation_name": "dev_dkruh1.analytics___platform_stg__owner_plan", "raw_code": "-- Import --\n\nWITH import_platform_stg__owners_packages AS (\nSELECT * FROM {{ ref('platform_stg__owners_packages') }}\n),\n\n-- Logic --\nplatform_stg__owner_plan AS (\n\n SELECT \t\t\n id AS owner_plan_id,\n\t\towner_id,\n owner_type,\n\t\tpackage_id AS plan_id,\n\t\tcreated_at,\n\t\tupdated_at,\n started_at,\n SMALLINT(CASE WHEN LOWER(owner_type) = 'organization' THEN 1 ELSE 0 END) AS is_organization_owner,\n SMALLINT(CASE WHEN LOWER(owner_type) = 'store' THEN 1 ELSE 0 END) AS is_store_owner\n FROM import_platform_stg__owners_packages\n WHERE owner_id IS NOT NULL\n)\n\n-- Result --\n\nSELECT * \nFROM platform_stg__owner_plan", "language": "sql", "refs": [{"name": "platform_stg__owners_packages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__owners_packages"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__owners_packages AS (\nSELECT * FROM dev_dkruh1.platform_stg__owners_packages\n),\n\n-- Logic --\nplatform_stg__owner_plan AS (\n\n SELECT \t\t\n id AS owner_plan_id,\n\t\towner_id,\n owner_type,\n\t\tpackage_id AS plan_id,\n\t\tcreated_at,\n\t\tupdated_at,\n started_at,\n SMALLINT(CASE WHEN LOWER(owner_type) = 'organization' THEN 1 ELSE 0 END) AS is_organization_owner,\n SMALLINT(CASE WHEN LOWER(owner_type) = 'store' THEN 1 ELSE 0 END) AS is_store_owner\n FROM import_platform_stg__owners_packages\n WHERE owner_id IS NOT NULL\n)\n\n-- Result --\n\nSELECT * \nFROM platform_stg__owner_plan", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__owner_plan_event_details": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__owner_plan_event_details", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.sql", "unique_id": "model.yoda.analytics___platform_stg__owner_plan_event_details", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_event_details", "analytics___platform_stg__owner_plan_event_details"], "alias": "analytics___platform_stg__owner_plan_event_details", "checksum": {"name": "sha256", "checksum": "81cacc08314af39cd542d37b44ed4978ace0fc085caeac4ee7184f63fb563248"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Incremental table that keeps historical data for each owner(Organization or Store) and his plan per product\nFYI: The plans will not Include common plans (category 6)", "columns": {"owner_plan_id": {"name": "owner_plan_id", "description": "generated id from owner_plan table. identicator for plan per owner.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "id of the plan owner:\n- if organization: organization_key\n- if store: app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_id": {"name": "category_id", "description": "id of the category (product family)\nCategory 6 will not be included in this population", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_event_created_at": {"name": "plan_event_created_at", "description": "Timestamp of when the plan was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_organization_owner": {"name": "is_organization_owner", "description": "Indicates if the owner is organization then 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_store_owner": {"name": "is_store_owner", "description": "Indicates if the owner is store then 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "incremental", "incremental_strategy": "append"}, "created_at": 1700082647.9146965, "relation_name": "dev_dkruh1.analytics___platform_stg__owner_plan_event_details", "raw_code": "{{ config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append'\n )\n}}\n\n-- Import --\n\nWITH import_platform_stg__plan AS (\nSELECT * FROM {{ ref('analytics___platform_stg__plan') }} \n),\n\nimport_platform_stg__plan_category AS (\nSELECT * FROM {{ ref('analytics___platform_stg__plan_category') }} \n),\n\nimport_platform_stg__owner_plan AS (\nSELECT * FROM {{ ref('analytics___platform_stg__owner_plan') }}\n),\n\nimport_platform__organization AS (\nSELECT * FROM {{ ref('analytics___platform__organization') }} \n),\n\nimport_platform__store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\n-- Logic --\n\nowner_plan_event_details AS (\nSELECT\n owner_plan.owner_plan_id,\n owner_plan.owner_id,\n owner_plan.plan_id,\n plans.plan_name,\n categories.category_id, \n categories.category_name AS product_family,\n owner_plan.updated_at AS plan_event_created_at,\n owner_plan.is_organization_owner,\n owner_plan.is_store_owner,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_platform_stg__owner_plan AS owner_plan\n INNER JOIN import_platform_stg__plan AS plans\n ON owner_plan.plan_id = plans.plan_id\n INNER JOIN import_platform_stg__plan_category AS categories\n ON categories.category_id = plans.category_id\n AND categories.category_id <> 6\n LEFT JOIN import_platform__organization AS organizations\n ON owner_plan.owner_id = organizations.organization_key\n AND owner_plan.is_organization_owner = 1\n AND organizations.is_test_organization = 0\n LEFT JOIN import_platform__store AS stores\n ON owner_plan.owner_id = stores.app_key\n AND owner_plan.is_store_owner = 1\n AND stores.is_test = 0\n{% if is_incremental() %}\n LEFT JOIN {{this}}\n ON owner_plan.owner_plan_id = {{this}}.owner_plan_id\n AND owner_plan.plan_id = {{this}}.plan_id\n{% endif %}\nWHERE DATE(owner_plan.updated_at) <= DATE_SUB(CURRENT_DATE, 1)\n{% if is_incremental() %}\n AND DATE(owner_plan.updated_at) > (SELECT MAX(DATE(plan_event_created_at)) FROM {{ this }})\n AND ({{this}}.owner_plan_id IS NULL OR ({{this}}.owner_plan_id IS NOT NULL AND owner_plan.plan_id <> {{this}}.plan_id))\n{% endif %}\n)\n\n-- Result --\n\nSELECT *\nFROM owner_plan_event_details", "language": "sql", "refs": [{"name": "analytics___platform_stg__plan", "package": null, "version": null}, {"name": "analytics___platform_stg__plan_category", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_plan", "package": null, "version": null}, {"name": "analytics___platform__organization", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__plan", "model.yoda.analytics___platform_stg__plan_category", "model.yoda.analytics___platform_stg__owner_plan", "model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_platform_stg__plan AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__plan \n),\n\nimport_platform_stg__plan_category AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__plan_category \n),\n\nimport_platform_stg__owner_plan AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__owner_plan\n),\n\nimport_platform__organization AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization \n),\n\nimport_platform__store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\n-- Logic --\n\nowner_plan_event_details AS (\nSELECT\n owner_plan.owner_plan_id,\n owner_plan.owner_id,\n owner_plan.plan_id,\n plans.plan_name,\n categories.category_id, \n categories.category_name AS product_family,\n owner_plan.updated_at AS plan_event_created_at,\n owner_plan.is_organization_owner,\n owner_plan.is_store_owner,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_platform_stg__owner_plan AS owner_plan\n INNER JOIN import_platform_stg__plan AS plans\n ON owner_plan.plan_id = plans.plan_id\n INNER JOIN import_platform_stg__plan_category AS categories\n ON categories.category_id = plans.category_id\n AND categories.category_id <> 6\n LEFT JOIN import_platform__organization AS organizations\n ON owner_plan.owner_id = organizations.organization_key\n AND owner_plan.is_organization_owner = 1\n AND organizations.is_test_organization = 0\n LEFT JOIN import_platform__store AS stores\n ON owner_plan.owner_id = stores.app_key\n AND owner_plan.is_store_owner = 1\n AND stores.is_test = 0\n\nWHERE DATE(owner_plan.updated_at) <= DATE_SUB(CURRENT_DATE, 1)\n\n)\n\n-- Result --\n\nSELECT *\nFROM owner_plan_event_details", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__owner_plan_history": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__owner_plan_history", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.sql", "unique_id": "model.yoda.analytics___platform_stg__owner_plan_history", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_history", "analytics___platform_stg__owner_plan_history"], "alias": "analytics___platform_stg__owner_plan_history", "checksum": {"name": "sha256", "checksum": "abb643368ec0bd06b7ef695334519b7228ae70e1004c242da7d79aaf58345d3c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view for platform_stg__owners_packages_history source.\nMost commonly used for tracking deleted owner_plan_id. PK: owner_plan_id", "columns": {"owner_plan_id": {"name": "owner_plan_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "id of the plan owner:\n- if organization: organization_key\n- if store: app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_type": {"name": "owner_type", "description": "owner type (organization or store)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "FK: plan_id analytics___platform__plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "owner_plan_id created Timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "owner_plan_id updated Timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "started_at": {"name": "started_at", "description": "owner_plan_id started Timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "deleted_at": {"name": "deleted_at", "description": "owner_plan_id deleted Timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "is owner_plan_id deleted", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_organization_owner": {"name": "is_organization_owner", "description": "is the owner of the package is organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_store_owner": {"name": "is_store_owner", "description": "is the owner of the package is store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082648.0071757, "relation_name": "dev_dkruh1.analytics___platform_stg__owner_plan_history", "raw_code": "-- Import --\n\nWITH import_packages_owners_packages_history AS (\nSELECT * FROM {{ ref('platform_stg__owners_packages_history') }}\n),\n\n-- Logic --\nplatform_stg__owner_plan_history AS (\nSELECT \t\t\n id AS owner_plan_id,\n owner_id,\n owner_type,\n INT(package_id) AS plan_id,\n created_at,\n updated_at,\n started_at,\n deleted_at,\n SMALLINT(IF(ISNULL(deleted_at),0,1)) AS is_deleted,\n SMALLINT(IF(LOWER(owner_type) = 'organization',1,0)) AS is_organization_owner,\n SMALLINT(IF(LOWER(owner_type) = 'store',1,0)) AS is_store_owner\nFROM import_packages_owners_packages_history\nWHERE owner_id IS NOT NULL\n)\n\n-- Result --\n\nSELECT * \nFROM platform_stg__owner_plan_history", "language": "sql", "refs": [{"name": "platform_stg__owners_packages_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__owners_packages_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_packages_owners_packages_history AS (\nSELECT * FROM dev_dkruh1.platform_stg__owners_packages_history\n),\n\n-- Logic --\nplatform_stg__owner_plan_history AS (\nSELECT \t\t\n id AS owner_plan_id,\n owner_id,\n owner_type,\n INT(package_id) AS plan_id,\n created_at,\n updated_at,\n started_at,\n deleted_at,\n SMALLINT(IF(ISNULL(deleted_at),0,1)) AS is_deleted,\n SMALLINT(IF(LOWER(owner_type) = 'organization',1,0)) AS is_organization_owner,\n SMALLINT(IF(LOWER(owner_type) = 'store',1,0)) AS is_store_owner\nFROM import_packages_owners_packages_history\nWHERE owner_id IS NOT NULL\n)\n\n-- Result --\n\nSELECT * \nFROM platform_stg__owner_plan_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__owner_plan_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__owner_plan_snapshot", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.sql", "unique_id": "model.yoda.analytics___platform_stg__owner_plan_snapshot", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_snapshot", "analytics___platform_stg__owner_plan_snapshot"], "alias": "analytics___platform_stg__owner_plan_snapshot", "checksum": {"name": "sha256", "checksum": "0ab4924ca72032368c5d65896c200b2c37f9e4f3ba20a34177ef0e5909951b5d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Snapshot table on analytics___platform_stg__owner_plan.\ntracking changes in fields: plan_id | created_at | started_at | is_organization_owner | is_store_owner\nunique key: owner_plan_id | owner_id | owner_type", "columns": {"owner_plan_id": {"name": "owner_plan_id", "description": "id of the owner-plan event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "id of the plan owner:\n- if organization: organization_key\n- if store: app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_type": {"name": "owner_type", "description": "owner type (organization or store)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "plan id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "Timestamp for when package was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "started_at": {"name": "started_at", "description": "plan started at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_organization_owner": {"name": "is_organization_owner", "description": "is the owner of the package is organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_store_owner": {"name": "is_store_owner", "description": "is the owner of the package is store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "updated_at": {"name": "updated_at", "description": "Timestamp for when package was updated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "snapshot timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "incremental", "incremental_strategy": "append"}, "created_at": 1700082648.052754, "relation_name": "dev_dkruh1.analytics___platform_stg__owner_plan_snapshot", "raw_code": "{{\nanalytics_snapshot_scd(\n source_model = 'analytics___platform_stg__owner_plan',\n unique_key = ['owner_plan_id','owner_id','owner_type'],\n tracked_columns = ['plan_id','created_at','started_at','is_organization_owner','is_store_owner'],\n updated_at = 'updated_at'\n )\n}}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_snapshot_scd", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.sql", "compiled": true, "compiled_code": "\n\n WITH \n \n\n incremental_calculation AS (\n SELECT \n source_table.owner_plan_id, source_table.owner_id, source_table.owner_type, source_table.plan_id, source_table.created_at, source_table.started_at, source_table.is_organization_owner, source_table.is_store_owner, source_table.updated_at, \n 1 AS is_new_update\n FROM dev_dkruh1.analytics___platform_stg__owner_plan AS source_table\n )\n\n SELECT\n owner_plan_id, owner_id, owner_type, plan_id, created_at, started_at, is_organization_owner, is_store_owner, updated_at AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM incremental_calculation\n WHERE is_new_update = 1\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__plan": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__plan", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.sql", "unique_id": "model.yoda.analytics___platform_stg__plan", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan", "analytics___platform_stg__plan"], "alias": "analytics___platform_stg__plan", "checksum": {"name": "sha256", "checksum": "8e7841d8f0f31831157875182f8d20f8c0c9aae7768937032f39424f3d7658f2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Holdes all products plans information", "columns": {"plan_key": {"name": "plan_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "PK - plan identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "plan_name": {"name": "plan_name", "description": "plan name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_description": {"name": "plan_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_plan_id": {"name": "old_plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "category_id": {"name": "category_id", "description": "plan category (product): Reviews, Loyalty, SMS etc", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082648.0824049, "relation_name": "dev_dkruh1.analytics___platform_stg__plan", "raw_code": "WITH import_packages AS (\n\n SELECT * FROM {{ ref('platform_stg__packages') }}\n\n), platform_stg__plan AS (\n\n SELECT \n package_key AS plan_key,\n INT(id) AS plan_id,\n name AS plan_name,\n description AS plan_description,\n INT(old_package_id) AS old_plan_id,\n INT(category_id) AS category_id,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_packages\n\n)\n\nSELECT \n plan_key,\n plan_id,\n plan_name,\n plan_description,\n old_plan_id,\n category_id,\n dwh_updated_at\nFROM platform_stg__plan", "language": "sql", "refs": [{"name": "platform_stg__packages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__packages"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.sql", "compiled": true, "compiled_code": "WITH import_packages AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__packages\n\n), platform_stg__plan AS (\n\n SELECT \n package_key AS plan_key,\n INT(id) AS plan_id,\n name AS plan_name,\n description AS plan_description,\n INT(old_package_id) AS old_plan_id,\n INT(category_id) AS category_id,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_packages\n\n)\n\nSELECT \n plan_key,\n plan_id,\n plan_name,\n plan_description,\n old_plan_id,\n category_id,\n dwh_updated_at\nFROM platform_stg__plan", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__plan_category": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__plan_category", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.sql", "unique_id": "model.yoda.analytics___platform_stg__plan_category", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan_category", "analytics___platform_stg__plan_category"], "alias": "analytics___platform_stg__plan_category", "checksum": {"name": "sha256", "checksum": "70e2c38d12eb2d4233a6846efe218bb05a5646373ee793f96bfd015758f8ce75"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled View for all plan categories (Products)", "columns": {"category_id": {"name": "category_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "category_name": {"name": "category_name", "description": "product name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082648.1037183, "relation_name": "dev_dkruh1.analytics___platform_stg__plan_category", "raw_code": "-- Import --\n\nWITH import_platform_stg__categories AS (\n\n SELECT * FROM {{ ref('platform_stg__categories') }}\n\n),\n\n-- Logic --\n\n platform_stg__plan_category AS (\n\n SELECT \n\t\tINT(id) AS category_id,\n\t\tname AS category_name,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_platform_stg__categories\n\n)\n-- Result --\n\nSELECT \n category_id,\n category_name,\n dwh_updated_at\nFROM platform_stg__plan_category", "language": "sql", "refs": [{"name": "platform_stg__categories", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__categories"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__categories AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__categories\n\n),\n\n-- Logic --\n\n platform_stg__plan_category AS (\n\n SELECT \n\t\tINT(id) AS category_id,\n\t\tname AS category_name,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_platform_stg__categories\n\n)\n-- Result --\n\nSELECT \n category_id,\n category_name,\n dwh_updated_at\nFROM platform_stg__plan_category", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__plan_tag": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__plan_tag", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.sql", "unique_id": "model.yoda.analytics___platform_stg__plan_tag", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan_tag", "analytics___platform_stg__plan_tag"], "alias": "analytics___platform_stg__plan_tag", "checksum": {"name": "sha256", "checksum": "f6774a52cb3cd534faafe772bf6e56f9da70a6be5d7828126c06f218667bd478"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled View for package tags", "columns": {"plan_tag_id": {"name": "plan_tag_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_id": {"name": "plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_tag_type_id": {"name": "plan_tag_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082648.1445994, "relation_name": "dev_dkruh1.analytics___platform_stg__plan_tag", "raw_code": "-- Import --\n\nWITH import_platform_stg__package_tags AS (\n\n SELECT * FROM {{ ref('platform_stg__package_tags') }}\n\n),\n\n-- Logic --\n\n platform_stg__plan_tag AS (\n\n SELECT \n\t\tid AS plan_tag_id,\n\t\tpackage_id AS plan_id,\n\t\tpackage_tag_type_id AS plan_tag_type_id,\n\t\tcreated_at,\n\t\tupdated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_platform_stg__package_tags\n\n)\n-- Result --\n\nSELECT \n\tplan_tag_id,\n\tplan_id,\n\tplan_tag_type_id,\n\tcreated_at,\n\tupdated_at,\n dwh_updated_at\nFROM platform_stg__plan_tag", "language": "sql", "refs": [{"name": "platform_stg__package_tags", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__package_tags"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__package_tags AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__package_tags\n\n),\n\n-- Logic --\n\n platform_stg__plan_tag AS (\n\n SELECT \n\t\tid AS plan_tag_id,\n\t\tpackage_id AS plan_id,\n\t\tpackage_tag_type_id AS plan_tag_type_id,\n\t\tcreated_at,\n\t\tupdated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_platform_stg__package_tags\n\n)\n-- Result --\n\nSELECT \n\tplan_tag_id,\n\tplan_id,\n\tplan_tag_type_id,\n\tcreated_at,\n\tupdated_at,\n dwh_updated_at\nFROM platform_stg__plan_tag", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__plan_tag_type": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__plan_tag_type", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.sql", "unique_id": "model.yoda.analytics___platform_stg__plan_tag_type", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan_tag_type", "analytics___platform_stg__plan_tag_type"], "alias": "analytics___platform_stg__plan_tag_type", "checksum": {"name": "sha256", "checksum": "76ecf153ecd7b0d9c0c86b8b7ede66be98579a1ac969b9689d00199988cf7605"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view for package tag type (free, monthly, anually etc)", "columns": {"plan_tag_type_id": {"name": "plan_tag_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tag_type": {"name": "tag_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082648.167347, "relation_name": "dev_dkruh1.analytics___platform_stg__plan_tag_type", "raw_code": "-- Import --\n\nWITH import_platform_stg__package_tag_types AS (\n\n SELECT * FROM {{ ref('platform_stg__package_tag_types') }}\n\n),\n\n-- Logic --\n\n platform_stg__plan_tag_type AS (\n\n SELECT \n\t\tid AS plan_tag_type_id,\n\t\ttag_type,\n\t\tcreated_at,\n\t\tupdated_at\n FROM import_platform_stg__package_tag_types\n\n)\n-- Result --\n\nSELECT \n\tplan_tag_type_id,\n\ttag_type,\n\tcreated_at,\n\tupdated_at\nFROM platform_stg__plan_tag_type", "language": "sql", "refs": [{"name": "platform_stg__package_tag_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__package_tag_types"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__package_tag_types AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__package_tag_types\n\n),\n\n-- Logic --\n\n platform_stg__plan_tag_type AS (\n\n SELECT \n\t\tid AS plan_tag_type_id,\n\t\ttag_type,\n\t\tcreated_at,\n\t\tupdated_at\n FROM import_platform_stg__package_tag_types\n\n)\n-- Result --\n\nSELECT \n\tplan_tag_type_id,\n\ttag_type,\n\tcreated_at,\n\tupdated_at\nFROM platform_stg__plan_tag_type", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__platform_type": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__platform_type", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.sql", "unique_id": "model.yoda.analytics___platform_stg__platform_type", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__platform_type", "analytics___platform_stg__platform_type"], "alias": "analytics___platform_stg__platform_type", "checksum": {"name": "sha256", "checksum": "77c18405f6e4232e8130bdc81a424e87347a956e475aa0431aab7c02d4ef02da"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled staging table of platform id and name\nGranularity & PK: platform_id", "columns": {"platform_id": {"name": "platform_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_name": {"name": "platform_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_description": {"name": "platform_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_supports_pull_orders": {"name": "is_supports_pull_orders", "description": "Indicates if this platform type pull orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_supports_past_orders": {"name": "is_supports_past_orders", "description": "Indicates if this platform type holdes past orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082648.2008133, "relation_name": "dev_dkruh1.analytics___platform_stg__platform_type", "raw_code": "WITH import_platform_types AS (\n\n SELECT * FROM {{ ref('platform_stg__platform_types') }}\n\n), platform_stg__platform_type AS (\n\n SELECT \n id AS platform_id,\n platform_name,\n description AS platform_description,\n SMALLINT(is_supports_pull_orders) AS is_supports_pull_orders,\n SMALLINT(is_supports_past_orders) AS is_supports_past_orders,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_platform_types\n\n)\n\nSELECT *\nFROM platform_stg__platform_type", "language": "sql", "refs": [{"name": "platform_stg__platform_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__platform_types"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.sql", "compiled": true, "compiled_code": "WITH import_platform_types AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__platform_types\n\n), platform_stg__platform_type AS (\n\n SELECT \n id AS platform_id,\n platform_name,\n description AS platform_description,\n SMALLINT(is_supports_pull_orders) AS is_supports_pull_orders,\n SMALLINT(is_supports_past_orders) AS is_supports_past_orders,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_platform_types\n\n)\n\nSELECT *\nFROM platform_stg__platform_type", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__product": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__product", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.sql", "unique_id": "model.yoda.analytics___platform_stg__product", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__product", "analytics___platform_stg__product"], "alias": "analytics___platform_stg__product", "checksum": {"name": "sha256", "checksum": "6b5cdb046fe095e9bd45efe3b4676bc014a1ef952572b2a9e13d7c18850f250f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of review types | PK and granularity: review_type_id", "columns": {"product_id": {"name": "product_id", "description": "unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "product name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "product group identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "product status: draft, active, archived, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082648.2409594, "relation_name": "dev_dkruh1.analytics___platform_stg__product", "raw_code": "-- Import --\n\nWITH import_platform_stg__products AS (\nSELECT * FROM {{ ref('platform_stg__products') }}\n),\n\n-- Logic --\n\nplatform_stg__product_res AS (\nSELECT\n id AS product_id,\n store_id AS app_key,\n NULLIF(TRIM(name),'') AS product_name,\n group_id,\n status,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_platform_stg__products\n)\n\n-- Result --\n\nSELECT *\nFROM platform_stg__product_res", "language": "sql", "refs": [{"name": "platform_stg__products", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__products"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__products AS (\nSELECT * FROM dev_dkruh1.platform_stg__products\n),\n\n-- Logic --\n\nplatform_stg__product_res AS (\nSELECT\n id AS product_id,\n store_id AS app_key,\n NULLIF(TRIM(name),'') AS product_name,\n group_id,\n status,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_platform_stg__products\n)\n\n-- Result --\n\nSELECT *\nFROM platform_stg__product_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__question": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__question", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.sql", "unique_id": "model.yoda.analytics___platform_stg__question", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__question", "analytics___platform_stg__question"], "alias": "analytics___platform_stg__question", "checksum": {"name": "sha256", "checksum": "6260179915fce51a1f3829050fc0e523ab1e63f709b05bbb0e5851567ff9c6a8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "", "columns": {"question_id": {"name": "question_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "products_app_id": {"name": "products_app_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "content": {"name": "content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "asker_display_name": {"name": "asker_display_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_type": {"name": "user_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_type_id": {"name": "source_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_question_id": {"name": "source_question_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_allow_send": {"name": "is_allow_send", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_archived": {"name": "is_archived", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082648.272184, "relation_name": "dev_dkruh1.analytics___platform_stg__question", "raw_code": "WITH import_stg_questions AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__questions') }}\n\n), \n\nplatform_stg__question AS (\n\n SELECT \n id AS question_id,\n account_id,\n products_app_id,\n content,\n asker_display_name,\n user_id,\n user_type,\n source_type_id,\n source_question_id,\n SMALLINT(allow_send) AS is_allow_send,\n SMALLINT(archived) AS is_archived,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created_at,\n updated_at\n FROM import_stg_questions\n\n)\n\nSELECT * \nFROM platform_stg__question", "language": "sql", "refs": [{"name": "analytics___platform_stg__questions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__questions"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.sql", "compiled": true, "compiled_code": "WITH import_stg_questions AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__questions\n\n), \n\nplatform_stg__question AS (\n\n SELECT \n id AS question_id,\n account_id,\n products_app_id,\n content,\n asker_display_name,\n user_id,\n user_type,\n source_type_id,\n source_question_id,\n SMALLINT(allow_send) AS is_allow_send,\n SMALLINT(archived) AS is_archived,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created_at,\n updated_at\n FROM import_stg_questions\n\n)\n\nSELECT * \nFROM platform_stg__question", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_account_created": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_account_created", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_account_created", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_account_created", "analytics___platform_stg__segment_account_created"], "alias": "analytics___platform_stg__segment_account_created", "checksum": {"name": "sha256", "checksum": "75696dd45397f9e666cb7e0465147ac7844cdf134bdfb8627a2c0d449661a76e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of segment account created events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "store platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "product name: loyalty, sms, reviews, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_categories_list": {"name": "plan_categories_list", "description": "plan categories list, e.g: reviews,loyalty & rewards", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082648.3094099, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_account_created", "raw_code": "-- Import --\n\nWITH import_account_created (\nSELECT * FROM {{ ref('platform_stg__account_created') }}\n),\n\n-- Logic --\n\nrow_ranking_for_event AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n LOWER(NULLIF(productintent,'')) AS product_name,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n timestamp AS created_at,\n partition_date AS created_date,\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\nFROM import_account_created\n),\n\nsegment_account_created_res AS (\nSELECT\n event_id,\n app_key,\n organization_id,\n organization_key,\n platform_name,\n product_name,\n plan_categories_list,\n created_at,\n created_date\nFROM row_ranking_for_event\nWHERE event_row_ranking = 1\n)\n\n-- Result --\n\nSELECT *\nFROM segment_account_created_res", "language": "sql", "refs": [{"name": "platform_stg__account_created", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__account_created"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_account_created (\nSELECT * FROM dev_dkruh1.platform_stg__account_created\n),\n\n-- Logic --\n\nrow_ranking_for_event AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n LOWER(NULLIF(productintent,'')) AS product_name,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n timestamp AS created_at,\n partition_date AS created_date,\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\nFROM import_account_created\n),\n\nsegment_account_created_res AS (\nSELECT\n event_id,\n app_key,\n organization_id,\n organization_key,\n platform_name,\n product_name,\n plan_categories_list,\n created_at,\n created_date\nFROM row_ranking_for_event\nWHERE event_row_ranking = 1\n)\n\n-- Result --\n\nSELECT *\nFROM segment_account_created_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_activation_step": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_activation_step", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_activation_step", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_activation_step", "analytics___platform_stg__segment_activation_step"], "alias": "analytics___platform_stg__segment_activation_step", "checksum": {"name": "sha256", "checksum": "9241a514572999aabdc17bf3ab5254a535057530f040f257f8c5301de0b1104f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of segment activation step events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "store platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "product name: subscriptions, sms, loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "page url", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_categories_list": {"name": "plan_categories_list", "description": "plan categories list, e.g: reviews,loyalty & rewards", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082648.3492477, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_activation_step", "raw_code": "-- Import --\n\nWITH import_activation_step (\nSELECT * FROM {{ ref('platform_stg__activation_step') }}\n),\n\n-- Logic --\n\nrow_ranking_for_event AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n LOWER(product) AS product_name,\n page_url,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n timestamp AS created_at,\n partition_date AS created_date,\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\nFROM import_activation_step\n),\n\nsegment_activation_step_res AS (\nSELECT\n event_id,\n app_key,\n organization_id,\n organization_key,\n platform_name,\n product_name,\n page_url,\n plan_categories_list,\n created_at,\n created_date\nFROM row_ranking_for_event\nWHERE event_row_ranking = 1\n)\n\n-- Result --\n\nSELECT *\nFROM segment_activation_step_res", "language": "sql", "refs": [{"name": "platform_stg__activation_step", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__activation_step"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_activation_step (\nSELECT * FROM dev_dkruh1.platform_stg__activation_step\n),\n\n-- Logic --\n\nrow_ranking_for_event AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n LOWER(product) AS product_name,\n page_url,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n timestamp AS created_at,\n partition_date AS created_date,\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\nFROM import_activation_step\n),\n\nsegment_activation_step_res AS (\nSELECT\n event_id,\n app_key,\n organization_id,\n organization_key,\n platform_name,\n product_name,\n page_url,\n plan_categories_list,\n created_at,\n created_date\nFROM row_ranking_for_event\nWHERE event_row_ranking = 1\n)\n\n-- Result --\n\nSELECT *\nFROM segment_activation_step_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_app_install_completed": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_app_install_completed", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_app_install_completed", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_app_install_completed", "analytics___platform_stg__segment_app_install_completed"], "alias": "analytics___platform_stg__segment_app_install_completed", "checksum": {"name": "sha256", "checksum": "94ae0252d85dcd74e92989b6c5ec7fbce9b51427af2f8e4eb6be41c942002881"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of segment app install completed events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "row unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "store platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "product name: subscriptions, sms, loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_categories_list": {"name": "plan_categories_list", "description": "plan categories list, e.g: reviews,loyalty & rewards", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_categories_cnt": {"name": "plan_categories_cnt", "description": "plan categories count, e.g: reviews,loyalty & rewards -> 2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082648.3887353, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_app_install_completed", "raw_code": "-- Import --\n\nWITH import_app_install_completed (\nSELECT * FROM {{ ref('platform_stg__app_install_completed') }}\n),\n\n-- Logic --\n\nevent_row_ranking AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n LOWER(NVL(product,productintent)) AS product_name,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n SIZE(SPLIT(packagecategories, ',')) AS plan_categories_cnt,\n timestamp AS created_at,\n partition_date AS created_date,\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\nFROM import_app_install_completed\n),\n\nsegment_app_install_completed_res AS (\nSELECT\n event_id,\n app_key,\n organization_id,\n organization_key,\n platform_name,\n product_name,\n plan_categories_list,\n plan_categories_cnt,\n created_at,\n created_date\nFROM event_row_ranking\nWHERE event_row_ranking = 1\n)\n\n-- Result --\n\nSELECT *\nFROM segment_app_install_completed_res", "language": "sql", "refs": [{"name": "platform_stg__app_install_completed", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__app_install_completed"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_app_install_completed (\nSELECT * FROM dev_dkruh1.platform_stg__app_install_completed\n),\n\n-- Logic --\n\nevent_row_ranking AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n LOWER(NVL(product,productintent)) AS product_name,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n SIZE(SPLIT(packagecategories, ',')) AS plan_categories_cnt,\n timestamp AS created_at,\n partition_date AS created_date,\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\nFROM import_app_install_completed\n),\n\nsegment_app_install_completed_res AS (\nSELECT\n event_id,\n app_key,\n organization_id,\n organization_key,\n platform_name,\n product_name,\n plan_categories_list,\n plan_categories_cnt,\n created_at,\n created_date\nFROM event_row_ranking\nWHERE event_row_ranking = 1\n)\n\n-- Result --\n\nSELECT *\nFROM segment_app_install_completed_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_app_uninstalled": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_app_uninstalled", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_app_uninstalled", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_app_uninstalled", "analytics___platform_stg__segment_app_uninstalled"], "alias": "analytics___platform_stg__segment_app_uninstalled", "checksum": {"name": "sha256", "checksum": "03d3dd804c256cc5622387bd67342bd8c886b1b9ad26b53d6b57d7efb211263a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of segment app uninstall events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "row unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "store platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "product name: subscriptions, sms, loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "page url", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_category_name": {"name": "product_category_name", "description": "product category, e.g: subs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_categories_list": {"name": "plan_categories_list", "description": "plan categories list, e.g: reviews,loyalty & rewards", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_categories_cnt": {"name": "plan_categories_cnt", "description": "plan categories count, e.g: reviews,loyalty & rewards -> 2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082648.4297469, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_app_uninstalled", "raw_code": "-- Import --\n\nWITH import_app_install_completed (\nSELECT * FROM {{ ref('platform_stg__app_uninstalled') }}\n),\n\n-- Logic --\n\nsegment_app_uninstalled_res AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n LOWER(product) AS product_name,\n page_url,\n LOWER(category) AS product_category_name,\n NULLIF(packagecategories,'') AS plan_categories_list,\n NVL(SIZE(SPLIT(packagecategories, ',')),0) AS plan_categories_cnt,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_app_install_completed\n)\n\n-- Result --\n\nSELECT *\nFROM segment_app_uninstalled_res", "language": "sql", "refs": [{"name": "platform_stg__app_uninstalled", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__app_uninstalled"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_app_install_completed (\nSELECT * FROM dev_dkruh1.platform_stg__app_uninstalled\n),\n\n-- Logic --\n\nsegment_app_uninstalled_res AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n LOWER(product) AS product_name,\n page_url,\n LOWER(category) AS product_category_name,\n NULLIF(packagecategories,'') AS plan_categories_list,\n NVL(SIZE(SPLIT(packagecategories, ',')),0) AS plan_categories_cnt,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_app_install_completed\n)\n\n-- Result --\n\nSELECT *\nFROM segment_app_uninstalled_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_b_to_b": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_b_to_b", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_b_to_b", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_b_to_b", "analytics___platform_stg__segment_b_to_b"], "alias": "analytics___platform_stg__segment_b_to_b", "checksum": {"name": "sha256", "checksum": "5b84901afc45aa4c29dc6770de938d391d5a49750d7f807ccb8e8ccbca8b4825"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of segment b2b events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "store platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "page url", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_category_name": {"name": "product_category_name", "description": "product category, e.g: subs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_categories_list": {"name": "plan_categories_list", "description": "plan categories list, e.g: reviews,loyalty & rewards", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082648.4707265, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_b_to_b", "raw_code": "-- Import --\n\nWITH import_b2b (\nSELECT * FROM {{ ref('platform_stg__b2b') }}\n),\n\n-- Logic --\n\nrow_ranking_for_event AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n page_url,\n LOWER(category) AS product_category_name,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n timestamp AS created_at,\n partition_date AS created_date,\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\nFROM import_b2b\n),\n\nsegment_b2b_res AS (\nSELECT\n event_id,\n app_key,\n organization_id,\n organization_key,\n platform_name,\n page_url,\n product_category_name,\n plan_categories_list,\n created_at,\n created_date\nFROM row_ranking_for_event\nWHERE event_row_ranking = 1\n)\n\n-- Result --\n\nSELECT *\nFROM segment_b2b_res", "language": "sql", "refs": [{"name": "platform_stg__b2b", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__b2b"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_b2b (\nSELECT * FROM dev_dkruh1.platform_stg__b2b\n),\n\n-- Logic --\n\nrow_ranking_for_event AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n page_url,\n LOWER(category) AS product_category_name,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n timestamp AS created_at,\n partition_date AS created_date,\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\nFROM import_b2b\n),\n\nsegment_b2b_res AS (\nSELECT\n event_id,\n app_key,\n organization_id,\n organization_key,\n platform_name,\n page_url,\n product_category_name,\n plan_categories_list,\n created_at,\n created_date\nFROM row_ranking_for_event\nWHERE event_row_ranking = 1\n)\n\n-- Result --\n\nSELECT *\nFROM segment_b2b_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_file_exported": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_file_exported", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_file_exported", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_file_exported", "analytics___platform_stg__segment_file_exported"], "alias": "analytics___platform_stg__segment_file_exported", "checksum": {"name": "sha256", "checksum": "3f4ae75b6c94fc81db592ac7d936a97d836a355bda418f50c3f016632a30397a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of segment file exported events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "group id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "report_name": {"name": "report_name", "description": "report name, e.g., Star_rating_over_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "report_type": {"name": "report_type", "description": "report type: NEW_PRODUCTS, REVIEWS_EXPORT, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "product_name: Reviews, loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_rows": {"name": "total_rows", "description": "total rows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "channel: server/client", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082648.511419, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_file_exported", "raw_code": "-- Import --\n\nWITH import_platform_stg_segment_file_exported AS (\n SELECT * FROM {{ ref('platform_stg__file_exported') }}\n),\n\n-- Logic --\n\nsegment_file_exported_res AS (\nSELECT \n message_id AS event_id,\n appkey AS app_key,\n groupid AS group_id,\n orgid AS organization_id,\n orgkey AS organization_key,\n reportname AS report_name,\n reporttype AS report_type,\n product AS product_name,\n totalrows AS total_rows,\n channel,\n timestamp AS created_at,\n DATE(timestamp) AS created_date\nFROM import_platform_stg_segment_file_exported\n)\n\n-- Result --\n\nSELECT *\nFROM segment_file_exported_res", "language": "sql", "refs": [{"name": "platform_stg__file_exported", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__file_exported"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg_segment_file_exported AS (\n SELECT * FROM dev_dkruh1.platform_stg__file_exported\n),\n\n-- Logic --\n\nsegment_file_exported_res AS (\nSELECT \n message_id AS event_id,\n appkey AS app_key,\n groupid AS group_id,\n orgid AS organization_id,\n orgkey AS organization_key,\n reportname AS report_name,\n reporttype AS report_type,\n product AS product_name,\n totalrows AS total_rows,\n channel,\n timestamp AS created_at,\n DATE(timestamp) AS created_date\nFROM import_platform_stg_segment_file_exported\n)\n\n-- Result --\n\nSELECT *\nFROM segment_file_exported_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_limit_reached": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_limit_reached", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_limit_reached", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_limit_reached", "analytics___platform_stg__segment_limit_reached"], "alias": "analytics___platform_stg__segment_limit_reached", "checksum": {"name": "sha256", "checksum": "023bd926e72dcbb5b3470efbf34de2949eb0d6294c59378e5627bca7e99f8466"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of segment limit reached events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "message id | PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "store app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "limit_reached_ratio": {"name": "limit_reached_ratio", "description": "the ratio of limit reached", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082648.5483968, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_limit_reached", "raw_code": "-- Import --\n\nWITH import_limit_reached (\nSELECT * FROM {{ ref('platform_stg__limit_reached') }}\n),\n\n-- Logic --\n\nsegment_limit_reached AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n product AS product_name,\n platform AS platform_name,\n pctreached AS limit_reached_ratio,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_limit_reached\n)\n\n-- Result --\n\nSELECT *\nFROM segment_limit_reached", "language": "sql", "refs": [{"name": "platform_stg__limit_reached", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__limit_reached"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_limit_reached (\nSELECT * FROM dev_dkruh1.platform_stg__limit_reached\n),\n\n-- Logic --\n\nsegment_limit_reached AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n product AS product_name,\n platform AS platform_name,\n pctreached AS limit_reached_ratio,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_limit_reached\n)\n\n-- Result --\n\nSELECT *\nFROM segment_limit_reached", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_onboarding": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_onboarding", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_onboarding", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_onboarding", "analytics___platform_stg__segment_onboarding"], "alias": "analytics___platform_stg__segment_onboarding", "checksum": {"name": "sha256", "checksum": "0fefb0c7c23e540387672b07df8a9d752a0102f242e814244839c285114f84ad"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of segment onboarding events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "store platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "page url", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_category_name": {"name": "product_category_name", "description": "product category, e.g: subs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_categories_list": {"name": "plan_categories_list", "description": "plan categories list, e.g: reviews,loyalty & rewards", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082648.5867374, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_onboarding", "raw_code": "-- Import --\n\nWITH import_onboarding (\nSELECT * FROM {{ ref('platform_stg__onboarding') }}\n),\n\n-- Logic --\n\nrow_ranking_for_event AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n page_url,\n LOWER(category) AS product_category_name,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n timestamp AS created_at,\n partition_date AS created_date,\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\nFROM import_onboarding\n),\n\nsegment_onboarding_res AS (\nSELECT\n event_id,\n app_key,\n organization_id,\n organization_key,\n platform_name,\n page_url,\n product_category_name,\n plan_categories_list,\n created_at,\n created_date\nFROM row_ranking_for_event\nWHERE event_row_ranking = 1\n\n)\n\n-- Result --\n\nSELECT *\nFROM segment_onboarding_res", "language": "sql", "refs": [{"name": "platform_stg__onboarding", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__onboarding"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_onboarding (\nSELECT * FROM dev_dkruh1.platform_stg__onboarding\n),\n\n-- Logic --\n\nrow_ranking_for_event AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n page_url,\n LOWER(category) AS product_category_name,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n timestamp AS created_at,\n partition_date AS created_date,\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\nFROM import_onboarding\n),\n\nsegment_onboarding_res AS (\nSELECT\n event_id,\n app_key,\n organization_id,\n organization_key,\n platform_name,\n page_url,\n product_category_name,\n plan_categories_list,\n created_at,\n created_date\nFROM row_ranking_for_event\nWHERE event_row_ranking = 1\n\n)\n\n-- Result --\n\nSELECT *\nFROM segment_onboarding_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_page_event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_page_event", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_page_event", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_page_event", "analytics___platform_stg__segment_page_event"], "alias": "analytics___platform_stg__segment_page_event", "checksum": {"name": "sha256", "checksum": "11eec36fed1adafe55dc69ed2aa6b05f84145e6ebb41c3ead5fa9948c9362ef5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "naor.daga@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "segment page events | PK and granularity: event_id,app_key", "columns": {"app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_created_at": {"name": "event_created_at", "description": "event timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "page_context": {"name": "page_context", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "naor.daga@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "naor.daga@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082648.6230328, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_page_event", "raw_code": "--Import--\n\nWITH import_page AS (\nSELECT * FROM {{ ref('infra_stg__page') }}\n{% if target.name == 'dev' %}\nWHERE timestamp > DATE_SUB(CURRENT_TIMESTAMP,7)\n{% endif %}\n),\n\n --Logic--\n\nsegment_page_events AS (\nSELECT \n app_key,\n TRIM(message_id) AS event_id,\n timestamp AS event_created_at,\n page_context,\n product,\n page_url \nFROM import_page\nWHERE app_key IS NOT NULL\n)\n\n --Result--\n\n SELECT * FROM segment_page_events", "language": "sql", "refs": [{"name": "infra_stg__page", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__page"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.sql", "compiled": true, "compiled_code": "--Import--\n\nWITH import_page AS (\nSELECT * FROM dev_dkruh1.infra_stg__page\n\nWHERE timestamp > DATE_SUB(CURRENT_TIMESTAMP,7)\n\n),\n\n --Logic--\n\nsegment_page_events AS (\nSELECT \n app_key,\n TRIM(message_id) AS event_id,\n timestamp AS event_created_at,\n page_context,\n product,\n page_url \nFROM import_page\nWHERE app_key IS NOT NULL\n)\n\n --Result--\n\n SELECT * FROM segment_page_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_popup_displayed": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_popup_displayed", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_popup_displayed", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_popup_displayed", "analytics___platform_stg__segment_popup_displayed"], "alias": "analytics___platform_stg__segment_popup_displayed", "checksum": {"name": "sha256", "checksum": "34078b157dc4135c40e38bbe857991b4ad4022e42121e9a3704e0086c509df6a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of segment popup displayed events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "popup_name": {"name": "popup_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "event created timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "event created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082648.6694932, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_popup_displayed", "raw_code": "-- Import --\n\nWITH import_popup_displayed (\nSELECT * FROM {{ ref('platform_stg__popup_displayed') }}\n),\n\n-- Logic --\n\nsegment_popup_displayed AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n page_url,\n popupname AS popup_name,\n product AS product_name,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_popup_displayed\n)\n\n-- Result --\n\nSELECT *\nFROM segment_popup_displayed", "language": "sql", "refs": [{"name": "platform_stg__popup_displayed", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__popup_displayed"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_popup_displayed (\nSELECT * FROM dev_dkruh1.platform_stg__popup_displayed\n),\n\n-- Logic --\n\nsegment_popup_displayed AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n platform AS platform_name,\n page_url,\n popupname AS popup_name,\n product AS product_name,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_popup_displayed\n)\n\n-- Result --\n\nSELECT *\nFROM segment_popup_displayed", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_product_enabled": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_product_enabled", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_product_enabled", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_product_enabled", "analytics___platform_stg__segment_product_enabled"], "alias": "analytics___platform_stg__segment_product_enabled", "checksum": {"name": "sha256", "checksum": "c3bfabf04fbea4df9ea2e49c96451d1cdf14d536294f29f7d3ecd577f2c2eaf2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of segment product enabled events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082648.7077556, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_product_enabled", "raw_code": "-- Import --\n\nWITH import_product_enabled (\nSELECT * FROM {{ ref('platform_stg__product_enabled') }}\n),\n\n\n-- Logic --\n\nsegment_product_enabled AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n product AS platform_name,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_product_enabled\n)\n\n-- Result --\n\nSELECT *\nFROM segment_product_enabled", "language": "sql", "refs": [{"name": "platform_stg__product_enabled", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__product_enabled"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_product_enabled (\nSELECT * FROM dev_dkruh1.platform_stg__product_enabled\n),\n\n\n-- Logic --\n\nsegment_product_enabled AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n orgid AS organization_id,\n orgkey AS organization_key,\n product AS platform_name,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_product_enabled\n)\n\n-- Result --\n\nSELECT *\nFROM segment_product_enabled", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__segment_uninstalled_yotpo": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__segment_uninstalled_yotpo", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.sql", "unique_id": "model.yoda.analytics___platform_stg__segment_uninstalled_yotpo", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_uninstalled_yotpo", "analytics___platform_stg__segment_uninstalled_yotpo"], "alias": "analytics___platform_stg__segment_uninstalled_yotpo", "checksum": {"name": "sha256", "checksum": "6a8b52be2910d926f06c64731b7fa5635f7b129c510896570a07f9199fd91721"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of segment app uninstall events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string - unique - not_null"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "store platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_categories_list": {"name": "plan_categories_list", "description": "plan categories list, e.g: reviews,loyalty & rewards", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_categories_cnt": {"name": "plan_categories_cnt", "description": "plan categories count, e.g: reviews,loyalty & rewards -> 2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082648.746103, "relation_name": "dev_dkruh1.analytics___platform_stg__segment_uninstalled_yotpo", "raw_code": "-- Import --\n\nWITH import_app_uninstalled_yotpo (\nSELECT * FROM {{ ref('platform_stg__uninstalled_yotpo') }}\n),\n\n-- Logic --\n\nsegment_uninstalled_yotpo_res AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n platform AS platform_name,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n NVL(SIZE(SPLIT(packagecategories, ',')),0) AS plan_categories_cnt,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_app_uninstalled_yotpo\n)\n\n-- Result --\n\nSELECT *\nFROM segment_uninstalled_yotpo_res", "language": "sql", "refs": [{"name": "platform_stg__uninstalled_yotpo", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__uninstalled_yotpo"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_app_uninstalled_yotpo (\nSELECT * FROM dev_dkruh1.platform_stg__uninstalled_yotpo\n),\n\n-- Logic --\n\nsegment_uninstalled_yotpo_res AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n platform AS platform_name,\n NULLIF(LOWER(packagecategories),'') AS plan_categories_list,\n NVL(SIZE(SPLIT(packagecategories, ',')),0) AS plan_categories_cnt,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_app_uninstalled_yotpo\n)\n\n-- Result --\n\nSELECT *\nFROM segment_uninstalled_yotpo_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__similar_store": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__similar_store", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.sql", "unique_id": "model.yoda.analytics___platform_stg__similar_store", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__similar_store", "analytics___platform_stg__similar_store"], "alias": "analytics___platform_stg__similar_store", "checksum": {"name": "sha256", "checksum": "0495ad9f619dc72bd09ff82c6bbd607258589ef2cf793e5ac4306a55978316f4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view for categorization of Yotpo's stores and dividing them into clusters by similar characteristics using advanced AI models", "columns": {"app_key": {"name": "app_key", "description": "The origin store_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "Using advanced AI models data science predict the industry of a store when it is not available. If a store industry is NULL, it could be because that store owner didn't provide the category or the sotre didn't have any orders in the past last months or it describes its product in a non-english language so we can predict its industry", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082648.7677426, "relation_name": "dev_dkruh1.analytics___platform_stg__similar_store", "raw_code": "WITH import_similar_store AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__similar_stores') }}\n\n), platform_stg__similar_store AS (\n\n SELECT \n store_id AS app_key,\n domain,\n category AS industry\n FROM import_similar_store\n\n)\n\nSELECT * \nFROM platform_stg__similar_store", "language": "sql", "refs": [{"name": "analytics___platform_stg__similar_stores", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__similar_stores"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.sql", "compiled": true, "compiled_code": "WITH import_similar_store AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__similar_stores\n\n), platform_stg__similar_store AS (\n\n SELECT \n store_id AS app_key,\n domain,\n category AS industry\n FROM import_similar_store\n\n)\n\nSELECT * \nFROM platform_stg__similar_store", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__static_deprecated_package": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__static_deprecated_package", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.sql", "unique_id": "model.yoda.analytics___platform_stg__static_deprecated_package", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__static_deprecated_package", "analytics___platform_stg__static_deprecated_package"], "alias": "analytics___platform_stg__static_deprecated_package", "checksum": {"name": "sha256", "checksum": "4fda7bda7eb7bed5400d0eec8bd8c410034b84ebb539da064d5a5f19ddae9597"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view for static table deprecated old packages", "columns": {"plan_key": {"name": "plan_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_description": {"name": "plan_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_id": {"name": "category_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms_annual": {"name": "is_sms_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms_ss": {"name": "is_sms_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms_free": {"name": "is_sms_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_annual": {"name": "is_reviews_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_ss": {"name": "is_reviews_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_free": {"name": "is_reviews_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms_annual": {"name": "is_vms_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms_ss": {"name": "is_vms_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms_free": {"name": "is_vms_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty_annual": {"name": "is_loyalty_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty_ss": {"name": "is_loyalty_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty_free": {"name": "is_loyalty_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights_annual": {"name": "is_insights_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights_ss": {"name": "is_insights_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights_free": {"name": "is_insights_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights": {"name": "is_insights", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions_annual": {"name": "is_subscriptions_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions_ss": {"name": "is_subscriptions_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions_free": {"name": "is_subscriptions_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_annual": {"name": "is_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_growth": {"name": "is_growth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_premium": {"name": "is_premium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ss": {"name": "is_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_legacy": {"name": "is_legacy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_prime": {"name": "is_prime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "tags": {"name": "tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_tags": {"name": "full_tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082648.8509579, "relation_name": "dev_dkruh1.analytics___platform_stg__static_deprecated_package", "raw_code": "-- Import --\n\nWITH import_platform_stg__deprecated_packages AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__deprecated_packages') }}\n\n),\n\n-- Logic --\n\n platform_stg__static_deprecated_package AS (\n\n SELECT \n\t\tplan_key,\n INT(plan_id) AS plan_id,\n plan_name,\n plan_description,\n category_id,\n category_name,\n SMALLINT(COALESCE(is_sms_annual, 0)) AS is_sms_annual,\n SMALLINT(COALESCE(is_sms_ss, 0)) AS is_sms_ss,\n SMALLINT(COALESCE(is_sms_free, 0)) AS is_sms_free,\n SMALLINT(COALESCE(is_sms, 0)) AS is_sms,\n SMALLINT(COALESCE(is_reviews_annual, 0)) AS is_reviews_annual,\n SMALLINT(COALESCE(is_reviews_ss, 0)) AS is_reviews_ss,\n SMALLINT(COALESCE(is_reviews_free, 0)) AS is_reviews_free,\n SMALLINT(COALESCE(is_reviews, 0)) AS is_reviews,\n SMALLINT(COALESCE(is_vms_annual, 0)) AS is_vms_annual,\n SMALLINT(COALESCE(is_vms_ss, 0)) AS is_vms_ss,\n SMALLINT(COALESCE(is_vms_free, 0)) AS is_vms_free,\n SMALLINT(COALESCE(is_vms, 0)) AS is_vms,\n SMALLINT(COALESCE(is_loyalty_annual, 0)) AS is_loyalty_annual,\n SMALLINT(COALESCE(is_loyalty_ss, 0)) AS is_loyalty_ss,\n SMALLINT(COALESCE(is_loyalty_free, 0)) AS is_loyalty_free,\n SMALLINT(COALESCE(is_loyalty, 0)) AS is_loyalty,\n SMALLINT(COALESCE(is_insights_annual, 0)) AS is_insights_annual,\n SMALLINT(COALESCE(is_insights_ss, 0)) AS is_insights_ss,\n SMALLINT(COALESCE(is_insights_free, 0)) AS is_insights_free,\n SMALLINT(COALESCE(is_insights, 0)) AS is_insights,\n SMALLINT(COALESCE(is_subscriptions_annual, 0)) AS is_subscriptions_annual,\n SMALLINT(COALESCE(is_subscriptions_ss, 0)) AS is_subscriptions_ss,\n SMALLINT(COALESCE(is_subscriptions_free, 0)) AS is_subscriptions_free,\n SMALLINT(COALESCE(is_subscriptions, 0)) AS is_subscriptions,\n SMALLINT(COALESCE(is_annual, 0)) AS is_annual,\n SMALLINT(COALESCE(is_growth, 0)) AS is_growth,\n SMALLINT(COALESCE(is_premium, 0)) AS is_premium,\n SMALLINT(COALESCE(is_ss, 0)) AS is_ss,\n SMALLINT(COALESCE(is_free, 0)) AS is_free,\n SMALLINT(COALESCE(is_legacy, 0)) AS is_legacy,\n SMALLINT(COALESCE(is_prime, 0)) AS is_prime,\n tags,\n full_tags,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_platform_stg__deprecated_packages\n\n)\n-- Result --\n\nSELECT \n plan_key,\n plan_id,\n plan_name,\n plan_description,\n category_id,\n category_name,\n is_sms_annual,\n is_sms_ss,\n is_sms_free,\n is_sms,\n is_reviews_annual,\n is_reviews_ss,\n is_reviews_free,\n is_reviews,\n is_vms_annual,\n is_vms_ss,\n is_vms_free,\n is_vms,\n is_loyalty_annual,\n is_loyalty_ss,\n is_loyalty_free,\n is_loyalty,\n is_insights_annual,\n is_insights_ss,\n is_insights_free,\n is_insights,\n is_subscriptions_annual,\n is_subscriptions_ss,\n is_subscriptions_free,\n is_subscriptions,\n is_annual,\n is_growth,\n is_premium,\n is_ss,\n is_free,\n is_legacy,\n is_prime,\n tags,\n full_tags,\n dwh_updated_at\nFROM platform_stg__static_deprecated_package", "language": "sql", "refs": [{"name": "analytics___platform_stg__deprecated_packages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__deprecated_packages"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__deprecated_packages AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__deprecated_packages\n\n),\n\n-- Logic --\n\n platform_stg__static_deprecated_package AS (\n\n SELECT \n\t\tplan_key,\n INT(plan_id) AS plan_id,\n plan_name,\n plan_description,\n category_id,\n category_name,\n SMALLINT(COALESCE(is_sms_annual, 0)) AS is_sms_annual,\n SMALLINT(COALESCE(is_sms_ss, 0)) AS is_sms_ss,\n SMALLINT(COALESCE(is_sms_free, 0)) AS is_sms_free,\n SMALLINT(COALESCE(is_sms, 0)) AS is_sms,\n SMALLINT(COALESCE(is_reviews_annual, 0)) AS is_reviews_annual,\n SMALLINT(COALESCE(is_reviews_ss, 0)) AS is_reviews_ss,\n SMALLINT(COALESCE(is_reviews_free, 0)) AS is_reviews_free,\n SMALLINT(COALESCE(is_reviews, 0)) AS is_reviews,\n SMALLINT(COALESCE(is_vms_annual, 0)) AS is_vms_annual,\n SMALLINT(COALESCE(is_vms_ss, 0)) AS is_vms_ss,\n SMALLINT(COALESCE(is_vms_free, 0)) AS is_vms_free,\n SMALLINT(COALESCE(is_vms, 0)) AS is_vms,\n SMALLINT(COALESCE(is_loyalty_annual, 0)) AS is_loyalty_annual,\n SMALLINT(COALESCE(is_loyalty_ss, 0)) AS is_loyalty_ss,\n SMALLINT(COALESCE(is_loyalty_free, 0)) AS is_loyalty_free,\n SMALLINT(COALESCE(is_loyalty, 0)) AS is_loyalty,\n SMALLINT(COALESCE(is_insights_annual, 0)) AS is_insights_annual,\n SMALLINT(COALESCE(is_insights_ss, 0)) AS is_insights_ss,\n SMALLINT(COALESCE(is_insights_free, 0)) AS is_insights_free,\n SMALLINT(COALESCE(is_insights, 0)) AS is_insights,\n SMALLINT(COALESCE(is_subscriptions_annual, 0)) AS is_subscriptions_annual,\n SMALLINT(COALESCE(is_subscriptions_ss, 0)) AS is_subscriptions_ss,\n SMALLINT(COALESCE(is_subscriptions_free, 0)) AS is_subscriptions_free,\n SMALLINT(COALESCE(is_subscriptions, 0)) AS is_subscriptions,\n SMALLINT(COALESCE(is_annual, 0)) AS is_annual,\n SMALLINT(COALESCE(is_growth, 0)) AS is_growth,\n SMALLINT(COALESCE(is_premium, 0)) AS is_premium,\n SMALLINT(COALESCE(is_ss, 0)) AS is_ss,\n SMALLINT(COALESCE(is_free, 0)) AS is_free,\n SMALLINT(COALESCE(is_legacy, 0)) AS is_legacy,\n SMALLINT(COALESCE(is_prime, 0)) AS is_prime,\n tags,\n full_tags,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_platform_stg__deprecated_packages\n\n)\n-- Result --\n\nSELECT \n plan_key,\n plan_id,\n plan_name,\n plan_description,\n category_id,\n category_name,\n is_sms_annual,\n is_sms_ss,\n is_sms_free,\n is_sms,\n is_reviews_annual,\n is_reviews_ss,\n is_reviews_free,\n is_reviews,\n is_vms_annual,\n is_vms_ss,\n is_vms_free,\n is_vms,\n is_loyalty_annual,\n is_loyalty_ss,\n is_loyalty_free,\n is_loyalty,\n is_insights_annual,\n is_insights_ss,\n is_insights_free,\n is_insights,\n is_subscriptions_annual,\n is_subscriptions_ss,\n is_subscriptions_free,\n is_subscriptions,\n is_annual,\n is_growth,\n is_premium,\n is_ss,\n is_free,\n is_legacy,\n is_prime,\n tags,\n full_tags,\n dwh_updated_at\nFROM platform_stg__static_deprecated_package", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__store_order": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__store_order", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.sql", "unique_id": "model.yoda.analytics___platform_stg__store_order", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__store_order", "analytics___platform_stg__store_order"], "alias": "analytics___platform_stg__store_order", "checksum": {"name": "sha256", "checksum": "16b2cf4d32c2f62ac36746f3575652f9be2f79e0b3d4d6ffaaadaef1a0c0b578"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of store orders | Granularity & Primary Key: order_id", "columns": {"order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_order_id": {"name": "external_order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_at": {"name": "order_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_date": {"name": "order_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "order_update_at": {"name": "order_update_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_update_date": {"name": "order_update_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_order_display_name": {"name": "external_order_display_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_address_id": {"name": "billing_address_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shipping_address_id": {"name": "shipping_address_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_customer_id": {"name": "external_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_name": {"name": "first_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_name": {"name": "full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_number": {"name": "phone_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landing_site_url": {"name": "landing_site_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "checkout_token": {"name": "checkout_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_method": {"name": "payment_method", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_status_id": {"name": "payment_status_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "custom_properties": {"name": "custom_properties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_amount": {"name": "order_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_amount_currency": {"name": "order_amount_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_account_amount": {"name": "order_account_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_account_amount_currency": {"name": "order_account_amount_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price": {"name": "total_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_buyer_accepts_sms_marketing": {"name": "is_buyer_accepts_sms_marketing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_buyer_accepts_email_marketing": {"name": "is_buyer_accepts_email_marketing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_buyer_accepts_marketing": {"name": "is_buyer_accepts_marketing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082648.9135537, "relation_name": "dev_dkruh1.analytics___platform_stg__store_order", "raw_code": "WITH import_orders AS (\n SELECT * FROM {{ ref('platform_stg__orders') }}\n),\n\nstore_order_res AS (\nSELECT \n id AS order_id,\n external_order_id,\n order_date AS order_at,\n DATE(order_date) AS order_date,\n order_update_date AS order_update_at,\n DATE(order_update_date) AS order_update_date,\n email,\n platform_type AS platform,\n external_order_display_name,\n billing_address_id,\n shipping_address_id,\n external_customer_id,\n first_name,\n last_name,\n CONCAT_WS(' ', first_name, last_name) AS full_name,\n phone_number,\n landing_site_url,\n checkout_token,\n payment_method,\n payment_status_id,\n custom_properties,\n source,\n external_id,\n order_sum_order_currency AS order_amount,\n order_currency_iso AS order_amount_currency,\n order_sum_account_currency AS order_account_amount,\n account_currency_iso AS order_account_amount_currency,\n total_price,\n app_key,\n SMALLINT(COALESCE(buyer_accepts_sms_marketing, 0)) AS is_buyer_accepts_sms_marketing,\n SMALLINT(COALESCE(buyer_accepts_email_marketing, 0)) AS is_buyer_accepts_email_marketing,\n SMALLINT(COALESCE(buyer_accepts_marketing, 0)) AS is_buyer_accepts_marketing,\n created_at,\n DATE(created_at) AS created_date,\n updated_at\nFROM import_orders\n)\n\nSELECT * \nFROM store_order_res", "language": "sql", "refs": [{"name": "platform_stg__orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__orders"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.sql", "compiled": true, "compiled_code": "WITH import_orders AS (\n SELECT * FROM dev_dkruh1.platform_stg__orders\n),\n\nstore_order_res AS (\nSELECT \n id AS order_id,\n external_order_id,\n order_date AS order_at,\n DATE(order_date) AS order_date,\n order_update_date AS order_update_at,\n DATE(order_update_date) AS order_update_date,\n email,\n platform_type AS platform,\n external_order_display_name,\n billing_address_id,\n shipping_address_id,\n external_customer_id,\n first_name,\n last_name,\n CONCAT_WS(' ', first_name, last_name) AS full_name,\n phone_number,\n landing_site_url,\n checkout_token,\n payment_method,\n payment_status_id,\n custom_properties,\n source,\n external_id,\n order_sum_order_currency AS order_amount,\n order_currency_iso AS order_amount_currency,\n order_sum_account_currency AS order_account_amount,\n account_currency_iso AS order_account_amount_currency,\n total_price,\n app_key,\n SMALLINT(COALESCE(buyer_accepts_sms_marketing, 0)) AS is_buyer_accepts_sms_marketing,\n SMALLINT(COALESCE(buyer_accepts_email_marketing, 0)) AS is_buyer_accepts_email_marketing,\n SMALLINT(COALESCE(buyer_accepts_marketing, 0)) AS is_buyer_accepts_marketing,\n created_at,\n DATE(created_at) AS created_date,\n updated_at\nFROM import_orders\n)\n\nSELECT * \nFROM store_order_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__store_user_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__store_user_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.sql", "unique_id": "model.yoda.analytics___platform_stg__store_user_mapping", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__store_user_mapping", "analytics___platform_stg__store_user_mapping"], "alias": "analytics___platform_stg__store_user_mapping", "checksum": {"name": "sha256", "checksum": "157ddfb20b48d5346f77703626deba8d102774f23971a62b4e554c3a392fc7b9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "A modeled view of the table yotpoapiprod.apps | PK: store_user_mapping_id | Granularity: user_id, store_id", "columns": {"store_user_mapping_id": {"name": "store_user_mapping_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint - unique - not_null"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "moderator_role_id": {"name": "moderator_role_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_store_admin": {"name": "is_store_admin", "description": "If moderator role = 1 then user is admin at the store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082648.9519868, "relation_name": "dev_dkruh1.analytics___platform_stg__store_user_mapping", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ ref('platform_stg__apps') }}\n\n), store_user_mapping AS (\n\n SELECT\n id AS store_user_mapping_id,\n user_id,\n account_id AS store_id,\n moderator_role_id,\n SMALLINT(IF(moderator_role_id = 1, 1, 0)) AS is_store_admin,\n DATE(created_at) AS created_date,\n created_at,\n DATE(updated_at) AS updated_date,\n updated_at\n FROM source\n\n)\n\nSELECT * \nFROM store_user_mapping", "language": "sql", "refs": [{"name": "platform_stg__apps", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__apps"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__apps\n\n), store_user_mapping AS (\n\n SELECT\n id AS store_user_mapping_id,\n user_id,\n account_id AS store_id,\n moderator_role_id,\n SMALLINT(IF(moderator_role_id = 1, 1, 0)) AS is_store_admin,\n DATE(created_at) AS created_date,\n created_at,\n DATE(updated_at) AS updated_date,\n updated_at\n FROM source\n\n)\n\nSELECT * \nFROM store_user_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__subscriptions_pixel_widget_v_three", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.sql", "unique_id": "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__subscriptions_pixel_widget_v_three", "analytics___platform_stg__subscriptions_pixel_widget_v_three"], "alias": "analytics___platform_stg__subscriptions_pixel_widget_v_three", "checksum": {"name": "sha256", "checksum": "463cb26603491ac843ba898fe55fadfceaddb75f3a618e6199399b83b1bde668"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of widget version 3 pixel events for subscriptions stores | Granularity & Primary Key: event_id, event_row_rank", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_row_rank": {"name": "event_row_rank", "description": "event's row ranking by processing time - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "date": {"name": "date", "description": "date of the pixel event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "widget category, e.g: product-page-widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "user action: shown, loaded, clicked_on, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "label": {"name": "label", "description": "widget label, e.g: add_to_cart", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fingerprint": {"name": "fingerprint", "description": "end user fingerprint", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain_user_id": {"name": "domain_user_id", "description": "End user cookie identifier created on behalf of the store by Yotpo. It is unique within a store, and cannot be used to identify the same shopper in different stores. Its lifecycle is 2 years.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url_path": {"name": "page_url_path", "description": "the url page of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "calculated_user_and_url_id": {"name": "calculated_user_and_url_id", "description": "calculated unique identifier of end user fingerprint & url page", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "medium": {"name": "medium", "description": "sms, email, marketing, youtube, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "flow, subscriptions_system, newsletter, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_family": {"name": "os_family", "description": "operating system family: android, ios, windows, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "calculated_source": {"name": "calculated_source", "description": "sms, email, organic.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_mobile": {"name": "context_mobile", "description": "use of mobile category: mobile, non-mobile, unknown.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082648.9885476, "relation_name": "dev_dkruh1.analytics___platform_stg__subscriptions_pixel_widget_v_three", "raw_code": "-- Import --\n\nWITH import_pixel_category_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_category_mapping') }}\n),\n\nimport_pixel_action_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_action_mapping') }}\n),\n\nimport_pixel_onsite_v3 AS (\nSELECT *\nFROM {{ ref('platform_stg__onsite_v3') }}\n),\n\n-- Logic --\n\ndata_preparation AS (\nSELECT\n pixel.event_id,\n ROW_NUMBER() OVER (PARTITION BY pixel.event_id ORDER BY pixel.processing_time) AS event_row_rank,\n DATE(pixel.partition_date) AS date,\n TRIM(pixel.se_value) AS app_key,\n LOWER(pixel.se_category) AS category,\n LOWER(pixel.se_action) AS action,\n LOWER(pixel.se_label) AS label,\n pixel.y_fingerprint AS fingerprint,\n pixel.domain_userid AS domain_user_id,\n pixel.page_urlpath AS page_url_path,\n CONCAT(pixel.y_fingerprint,NVL(pixel.page_urlpath,'~')) AS calculated_user_and_url_id,\n NULLIF(TRIM(pixel.mkt_medium),'') AS medium,\n NULLIF(TRIM(pixel.mkt_source),'') AS source,\n LOWER(TRIM(pixel.os_family)) AS os_family,\n CASE WHEN LOWER(pixel.mkt_medium) = 'sms' AND LOWER(pixel.mkt_source) = 'flow' THEN 'sms'\n WHEN LOWER(pixel.mkt_medium) = 'email' AND LOWER(pixel.mkt_source) = 'subscriptions_system' THEN 'email'\n ELSE 'organic' END AS calculated_source,\n CASE LOWER(GET_JSON_OBJECT(pixel.context, '$.is_mobile')) \n WHEN 'true' THEN 'mobile' WHEN 'false' THEN 'non-mobile' ELSE 'unknown' END context_mobile\nFROM import_pixel_onsite_v3 AS pixel\nINNER JOIN import_pixel_category_mapping AS category\n ON LOWER(category.product) = 'subscriptions'\n AND category.widget_version_type = 3\n AND LOWER(pixel.se_category) = category.category\nINNER JOIN import_pixel_action_mapping AS action\n ON LOWER(action.product) = 'subscriptions'\n AND LOWER(pixel.se_action) = action.action\nWHERE LOWER(pixel.se_category) = 'product-page-widget'\n)\n\n-- Result --\n\nSELECT *\nFROM data_preparation\n{% if target.name == 'dev' %}\nWHERE date >= DATE_SUB(CURRENT_DATE,2)\n{% endif %}", "language": "sql", "refs": [{"name": "analytics___platform_stg__pixel_category_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__pixel_action_mapping", "package": null, "version": null}, {"name": "platform_stg__onsite_v3", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.platform_stg__onsite_v3"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_pixel_category_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_category_mapping\n),\n\nimport_pixel_action_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_action_mapping\n),\n\nimport_pixel_onsite_v3 AS (\nSELECT *\nFROM dev_dkruh1.platform_stg__onsite_v3\n),\n\n-- Logic --\n\ndata_preparation AS (\nSELECT\n pixel.event_id,\n ROW_NUMBER() OVER (PARTITION BY pixel.event_id ORDER BY pixel.processing_time) AS event_row_rank,\n DATE(pixel.partition_date) AS date,\n TRIM(pixel.se_value) AS app_key,\n LOWER(pixel.se_category) AS category,\n LOWER(pixel.se_action) AS action,\n LOWER(pixel.se_label) AS label,\n pixel.y_fingerprint AS fingerprint,\n pixel.domain_userid AS domain_user_id,\n pixel.page_urlpath AS page_url_path,\n CONCAT(pixel.y_fingerprint,NVL(pixel.page_urlpath,'~')) AS calculated_user_and_url_id,\n NULLIF(TRIM(pixel.mkt_medium),'') AS medium,\n NULLIF(TRIM(pixel.mkt_source),'') AS source,\n LOWER(TRIM(pixel.os_family)) AS os_family,\n CASE WHEN LOWER(pixel.mkt_medium) = 'sms' AND LOWER(pixel.mkt_source) = 'flow' THEN 'sms'\n WHEN LOWER(pixel.mkt_medium) = 'email' AND LOWER(pixel.mkt_source) = 'subscriptions_system' THEN 'email'\n ELSE 'organic' END AS calculated_source,\n CASE LOWER(GET_JSON_OBJECT(pixel.context, '$.is_mobile')) \n WHEN 'true' THEN 'mobile' WHEN 'false' THEN 'non-mobile' ELSE 'unknown' END context_mobile\nFROM import_pixel_onsite_v3 AS pixel\nINNER JOIN import_pixel_category_mapping AS category\n ON LOWER(category.product) = 'subscriptions'\n AND category.widget_version_type = 3\n AND LOWER(pixel.se_category) = category.category\nINNER JOIN import_pixel_action_mapping AS action\n ON LOWER(action.product) = 'subscriptions'\n AND LOWER(pixel.se_action) = action.action\nWHERE LOWER(pixel.se_category) = 'product-page-widget'\n)\n\n-- Result --\n\nSELECT *\nFROM data_preparation\n\nWHERE date >= DATE_SUB(CURRENT_DATE,2)\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__synergy_enablement_event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__synergy_enablement_event", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.sql", "unique_id": "model.yoda.analytics___platform_stg__synergy_enablement_event", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__synergy_enablement_event", "analytics___platform_stg__synergy_enablement_event"], "alias": "analytics___platform_stg__synergy_enablement_event", "checksum": {"name": "sha256", "checksum": "d9c42db965c2d32fc53eb2277b909889aaef969de2113f313a3dd5cd387dcdb9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of synergies enablement events | PK and granularity: app_key, widget_id, updated_at", "columns": {"app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_id": {"name": "widget_id", "description": "widget unique identifier - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "event update timestamp - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_event_id": {"name": "first_event_id", "description": "the first event identifier for store and widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled": {"name": "is_enabled", "description": "store synergy enablement indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "enablement_status": {"name": "enablement_status", "description": "store synergy enablement status: completed, incomplete", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_widget_event_count": {"name": "store_widget_event_count", "description": "event count for store and widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_widget_row_ranking": {"name": "store_widget_row_ranking", "description": "event ranking for store and widget by updated_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "store_widget_row_ranking_backwards": {"name": "store_widget_row_ranking_backwards", "description": "event ranking for store and widget by updated_at backwards", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "first_event_created_at": {"name": "first_event_created_at", "description": "first event created timestamp for store and widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_event_created_date": {"name": "first_event_created_date", "description": "first event created date for store and widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_date": {"name": "updated_date", "description": "event update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082649.0401032, "relation_name": "dev_dkruh1.analytics___platform_stg__synergy_enablement_event", "raw_code": "-- Import --\n\nWITH import_platform_stg__synergies_crud AS (\nSELECT * FROM {{ ref('platform_stg__synergies_crud') }}\n), \n\n-- Logic --\n\nrow_ranking AS (\nSELECT\n store_id AS app_key,\n widget_id,\n updated_at,\n id AS first_event_id,\n SMALLINT(IF(LOWER(status)='completed',1,0)) AS is_enabled,\n status AS enablement_status,\n created_at AS first_event_created_at,\n DATE(created_at) AS first_event_created_date,\n DATE(updated_at) AS updated_date,\n ROW_NUMBER() OVER (PARTITION BY id, updated_at ORDER BY status DESC, processing_time) AS rank_for_event_and_updated_at\nFROM import_platform_stg__synergies_crud\nWHERE status IN ('completed','incomplete')\n),\n\nplatform_stg__synergy_enablement_event_res AS (\nSELECT\n app_key,\n widget_id,\n updated_at,\n first_event_id,\n is_enabled,\n enablement_status,\n COUNT(*) OVER (PARTITION BY app_key, widget_id) AS store_widget_event_count,\n ROW_NUMBER() OVER (PARTITION BY app_key, widget_id ORDER BY updated_at) AS store_widget_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY app_key, widget_id ORDER BY updated_at DESC) AS store_widget_row_ranking_backwards,\n first_event_created_at,\n first_event_created_date,\n updated_date\nFROM row_ranking\nWHERE rank_for_event_and_updated_at = 1\n)\n\n-- Result --\n\nSELECT *\nFROM platform_stg__synergy_enablement_event_res", "language": "sql", "refs": [{"name": "platform_stg__synergies_crud", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__synergies_crud"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__synergies_crud AS (\nSELECT * FROM dev_dkruh1.platform_stg__synergies_crud\n), \n\n-- Logic --\n\nrow_ranking AS (\nSELECT\n store_id AS app_key,\n widget_id,\n updated_at,\n id AS first_event_id,\n SMALLINT(IF(LOWER(status)='completed',1,0)) AS is_enabled,\n status AS enablement_status,\n created_at AS first_event_created_at,\n DATE(created_at) AS first_event_created_date,\n DATE(updated_at) AS updated_date,\n ROW_NUMBER() OVER (PARTITION BY id, updated_at ORDER BY status DESC, processing_time) AS rank_for_event_and_updated_at\nFROM import_platform_stg__synergies_crud\nWHERE status IN ('completed','incomplete')\n),\n\nplatform_stg__synergy_enablement_event_res AS (\nSELECT\n app_key,\n widget_id,\n updated_at,\n first_event_id,\n is_enabled,\n enablement_status,\n COUNT(*) OVER (PARTITION BY app_key, widget_id) AS store_widget_event_count,\n ROW_NUMBER() OVER (PARTITION BY app_key, widget_id ORDER BY updated_at) AS store_widget_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY app_key, widget_id ORDER BY updated_at DESC) AS store_widget_row_ranking_backwards,\n first_event_created_at,\n first_event_created_date,\n updated_date\nFROM row_ranking\nWHERE rank_for_event_and_updated_at = 1\n)\n\n-- Result --\n\nSELECT *\nFROM platform_stg__synergy_enablement_event_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__ugc_pixel_widget_v_three", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.sql", "unique_id": "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__ugc_pixel_widget_v_three", "analytics___platform_stg__ugc_pixel_widget_v_three"], "alias": "analytics___platform_stg__ugc_pixel_widget_v_three", "checksum": {"name": "sha256", "checksum": "dec8b940c408066e53613aea6f29ee63e675388e810fd5f057a85d61282afbde"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of widget version 3 pixel events for ugc stores | Granularity & Primary Key: event_id, event_row_rank", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_row_rank": {"name": "event_row_rank", "description": "event's row ranking by processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "date": {"name": "date", "description": "date of the pixel event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "widget category: star-ratings-widget, reviews-main-widget, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "user action: shown, loaded, clicked_on, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "label": {"name": "label", "description": "widget label: vote_up, filters, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain_user_id": {"name": "domain_user_id", "description": "End user cookie identifier created on behalf of the store by Yotpo. It is unique within a store, and cannot be used to identify the same shopper in different stores. Its lifecycle is 2 years.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_custom_questions": {"name": "context_custom_questions", "description": "crf count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "context_smart_topics": {"name": "context_smart_topics", "description": "smart topics count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "context_widget_placement": {"name": "context_widget_placement", "description": "widget placement: standalone, embedded, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_duration_time_from_widget_mark_in_sec": {"name": "context_duration_time_from_widget_mark_in_sec", "description": "loading duration time in seconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082649.0983977, "relation_name": "dev_dkruh1.analytics___platform_stg__ugc_pixel_widget_v_three", "raw_code": "-- Import --\n\nWITH import_pixel_category_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_category_mapping') }} \n),\n\nimport_pixel_action_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_action_mapping') }} \n),\n\nimport_pixel_onsite_v3 AS (\nSELECT *\nFROM {{ ref('platform_stg__onsite_v3') }}\n),\n\n-- Logic --\n\ndata_preparation AS (\nSELECT\n pixel.event_id,\n ROW_NUMBER() OVER (PARTITION BY pixel.event_id ORDER BY pixel.processing_time) AS event_row_rank,\n DATE(pixel.partition_date) AS date,\n TRIM(pixel.se_value) AS app_key,\n LOWER(pixel.se_category) AS category,\n LOWER(pixel.se_action) AS action,\n LOWER(pixel.se_label) AS label,\n pixel.domain_userid AS domain_user_id,\n INT(GET_JSON_OBJECT(pixel.context, '$.custom_questions')) AS context_custom_questions,\n INT(GET_JSON_OBJECT(pixel.context, '$.smart_topics')) AS context_smart_topics,\n LOWER(GET_JSON_OBJECT(pixel.context, '$.widget_placement')) AS context_widget_placement,\n BIGINT(GET_JSON_OBJECT(GET_JSON_OBJECT(pixel.context, '$.duration'),'$.time_from_widget_mark'))/1000 AS context_duration_time_from_widget_mark_in_sec\nFROM import_pixel_onsite_v3 AS pixel\nINNER JOIN import_pixel_category_mapping AS category\n ON LOWER(category.product) = 'ugc'\n AND category.widget_version_type = 3\n AND LOWER(pixel.se_category) = category.category\nINNER JOIN import_pixel_action_mapping AS action\n ON LOWER(action.product) = 'ugc'\n AND LOWER(pixel.se_action) = action.action\n)\n\n-- Result --\n\nSELECT *\nFROM data_preparation", "language": "sql", "refs": [{"name": "analytics___platform_stg__pixel_category_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__pixel_action_mapping", "package": null, "version": null}, {"name": "platform_stg__onsite_v3", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.platform_stg__onsite_v3"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_pixel_category_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_category_mapping \n),\n\nimport_pixel_action_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_action_mapping \n),\n\nimport_pixel_onsite_v3 AS (\nSELECT *\nFROM dev_dkruh1.platform_stg__onsite_v3\n),\n\n-- Logic --\n\ndata_preparation AS (\nSELECT\n pixel.event_id,\n ROW_NUMBER() OVER (PARTITION BY pixel.event_id ORDER BY pixel.processing_time) AS event_row_rank,\n DATE(pixel.partition_date) AS date,\n TRIM(pixel.se_value) AS app_key,\n LOWER(pixel.se_category) AS category,\n LOWER(pixel.se_action) AS action,\n LOWER(pixel.se_label) AS label,\n pixel.domain_userid AS domain_user_id,\n INT(GET_JSON_OBJECT(pixel.context, '$.custom_questions')) AS context_custom_questions,\n INT(GET_JSON_OBJECT(pixel.context, '$.smart_topics')) AS context_smart_topics,\n LOWER(GET_JSON_OBJECT(pixel.context, '$.widget_placement')) AS context_widget_placement,\n BIGINT(GET_JSON_OBJECT(GET_JSON_OBJECT(pixel.context, '$.duration'),'$.time_from_widget_mark'))/1000 AS context_duration_time_from_widget_mark_in_sec\nFROM import_pixel_onsite_v3 AS pixel\nINNER JOIN import_pixel_category_mapping AS category\n ON LOWER(category.product) = 'ugc'\n AND category.widget_version_type = 3\n AND LOWER(pixel.se_category) = category.category\nINNER JOIN import_pixel_action_mapping AS action\n ON LOWER(action.product) = 'ugc'\n AND LOWER(pixel.se_action) = action.action\n)\n\n-- Result --\n\nSELECT *\nFROM data_preparation", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__ugc_pixel_widget_v_two", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.sql", "unique_id": "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__ugc_pixel_widget_v_two", "analytics___platform_stg__ugc_pixel_widget_v_two"], "alias": "analytics___platform_stg__ugc_pixel_widget_v_two", "checksum": {"name": "sha256", "checksum": "9af6418f3118f7a8c581d58494b1238bac30dbb7ae1104fb95a0b84416d8a500"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of widget version 2 pixel events for ugc stores | Granularity & Primary Key: event_id, event_row_rank", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_row_rank": {"name": "event_row_rank", "description": "event's row ranking by processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "date": {"name": "date", "description": "date of the pixel event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "widget category: questions_widget, filter_reviews, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "user action: shown, loaded, clicked_on, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "label": {"name": "label", "description": "widget label: vote_up, filters, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain_user_id": {"name": "domain_user_id", "description": "End user cookie identifier created on behalf of the store by Yotpo. It is unique within a store, and cannot be used to identify the same shopper in different stores. Its lifecycle is 2 years.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_desktop_topics_count": {"name": "context_desktop_topics_count", "description": "smart topics count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "context_cta": {"name": "context_cta", "description": "cta type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_custom_fields_count": {"name": "context_custom_fields_count", "description": "custom fields count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "context_free_text_included": {"name": "context_free_text_included", "description": "free text indication", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_filter_field_type": {"name": "context_filter_field_type", "description": "filter field type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082649.1274185, "relation_name": "dev_dkruh1.analytics___platform_stg__ugc_pixel_widget_v_two", "raw_code": "-- Import --\n\nWITH import_pixel_category_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_category_mapping') }} \n),\n\nimport_pixel_action_mapping AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__pixel_action_mapping') }} \n),\n\nimport_pixel_onsite_v2 AS (\nSELECT *\nFROM {{ ref('platform_stg__onsite_v2') }}\n),\n\n-- Logic --\n\ndata_preparation AS (\nSELECT\n pixel.event_id,\n ROW_NUMBER() OVER (PARTITION BY pixel.event_id ORDER BY pixel.processing_time) AS event_row_rank,\n DATE(pixel.partition_date) AS date,\n TRIM(pixel.se_value) AS app_key,\n LOWER(pixel.se_category) AS category,\n LOWER(pixel.se_action) AS action,\n LOWER(pixel.se_label) AS label,\n pixel.domain_userid AS domain_user_id,\n INT(GET_JSON_OBJECT(pixel.context,'$.desktop_topics_count')) AS context_desktop_topics_count,\n LOWER(GET_JSON_OBJECT(pixel.context,'$.cta')) AS context_cta,\n INT(GET_JSON_OBJECT(pixel.context,'$.custom_fields_count')) AS context_custom_fields_count,\n LOWER(GET_JSON_OBJECT(pixel.context,'$.free_text_included')) AS context_free_text_included,\n LOWER(GET_JSON_OBJECT(pixel.context,'$.filter_field_type')) AS context_filter_field_type\nFROM import_pixel_onsite_v2 AS pixel\nINNER JOIN import_pixel_category_mapping AS category\n ON LOWER(category.product) = 'ugc'\n AND category.widget_version_type = 2\n AND NVL(LOWER(pixel.se_category),'~') = NVL(category.category,'~')\nINNER JOIN import_pixel_action_mapping AS action\n ON LOWER(action.product) = 'ugc'\n AND LOWER(pixel.se_action) = action.action\n)\n\n-- Result --\n\nSELECT *\nFROM data_preparation", "language": "sql", "refs": [{"name": "analytics___platform_stg__pixel_category_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__pixel_action_mapping", "package": null, "version": null}, {"name": "platform_stg__onsite_v2", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.platform_stg__onsite_v2"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_pixel_category_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_category_mapping \n),\n\nimport_pixel_action_mapping AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__pixel_action_mapping \n),\n\nimport_pixel_onsite_v2 AS (\nSELECT *\nFROM dev_dkruh1.platform_stg__onsite_v2\n),\n\n-- Logic --\n\ndata_preparation AS (\nSELECT\n pixel.event_id,\n ROW_NUMBER() OVER (PARTITION BY pixel.event_id ORDER BY pixel.processing_time) AS event_row_rank,\n DATE(pixel.partition_date) AS date,\n TRIM(pixel.se_value) AS app_key,\n LOWER(pixel.se_category) AS category,\n LOWER(pixel.se_action) AS action,\n LOWER(pixel.se_label) AS label,\n pixel.domain_userid AS domain_user_id,\n INT(GET_JSON_OBJECT(pixel.context,'$.desktop_topics_count')) AS context_desktop_topics_count,\n LOWER(GET_JSON_OBJECT(pixel.context,'$.cta')) AS context_cta,\n INT(GET_JSON_OBJECT(pixel.context,'$.custom_fields_count')) AS context_custom_fields_count,\n LOWER(GET_JSON_OBJECT(pixel.context,'$.free_text_included')) AS context_free_text_included,\n LOWER(GET_JSON_OBJECT(pixel.context,'$.filter_field_type')) AS context_filter_field_type\nFROM import_pixel_onsite_v2 AS pixel\nINNER JOIN import_pixel_category_mapping AS category\n ON LOWER(category.product) = 'ugc'\n AND category.widget_version_type = 2\n AND NVL(LOWER(pixel.se_category),'~') = NVL(category.category,'~')\nINNER JOIN import_pixel_action_mapping AS action\n ON LOWER(action.product) = 'ugc'\n AND LOWER(pixel.se_action) = action.action\n)\n\n-- Result --\n\nSELECT *\nFROM data_preparation", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___platform_stg__user": {"database": null, "schema": "dev_dkruh1", "name": "analytics___platform_stg__user", "resource_type": "model", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.sql", "unique_id": "model.yoda.analytics___platform_stg__user", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__user", "analytics___platform_stg__user"], "alias": "analytics___platform_stg__user", "checksum": {"name": "sha256", "checksum": "6b69bbe089020aa207d4ad73a78772e28bd222d6ff073cfb23575628cc799e76"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "A lean view of the table yotpoapiprod.users | PK & Granularity: user_id", "columns": {"user_id": {"name": "user_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint - unique - not_null"}, "email": {"name": "email", "description": "email of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082649.1463697, "relation_name": "dev_dkruh1.analytics___platform_stg__user", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ ref('ugc_stg__users') }}\n\n), user AS (\n\n SELECT\n id AS user_id,\n email \n FROM source\n\n)\n\nSELECT * \nFROM user", "language": "sql", "refs": [{"name": "ugc_stg__users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__users"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM dev_dkruh1.ugc_stg__users\n\n), user AS (\n\n SELECT\n id AS user_id,\n email \n FROM source\n\n)\n\nSELECT * \nFROM user", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__account": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__account", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.sql", "unique_id": "model.yoda.analytics___salesforce__account", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account", "analytics___salesforce__account"], "alias": "analytics___salesforce__account", "checksum": {"name": "sha256", "checksum": "95410c9bd4fa3fafb517385d713714769feefc3ab9dce1a6784ea46ea7c67ac1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled table of Account salesforce object\nPK: account_id", "columns": {"account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_id": {"name": "owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_csm_sf_user_id": {"name": "main_csm_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_sf_user_id": {"name": "csm_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "latest_opportunity_id": {"name": "latest_opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_type": {"name": "referrer_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_sales_channel": {"name": "primary_sales_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "The billing region of the account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_estimated_aov": {"name": "cs_estimated_aov", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "cs_estimated_annual_sales": {"name": "cs_estimated_annual_sales", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "extensions": {"name": "extensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_monthly_orders_volume": {"name": "estimated_monthly_orders_volume", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_acv": {"name": "ugc_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(11,2)"}, "loyalty_acv": {"name": "loyalty_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "loyalty_contract_renewal_date": {"name": "loyalty_contract_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "closest_contract_renewal_date": {"name": "closest_contract_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "cs_segment": {"name": "cs_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "influenced_by_agency_id": {"name": "influenced_by_agency_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_services": {"name": "agency_services", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_sf_user_id": {"name": "sms_csm_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_tags": {"name": "cs_tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iap_tier": {"name": "iap_tier", "description": "Accounts identified that match Ideal Account Profile (IAP)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_strategist": {"name": "sms_strategist", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_id": {"name": "lead_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "annual_revenue": {"name": "annual_revenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_code": {"name": "country_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_acv": {"name": "total_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packages": {"name": "packages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_agency_id": {"name": "referred_by_agency_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_account_id": {"name": "parent_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "db_package_category": {"name": "db_package_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_category": {"name": "package_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_package_category": {"name": "previous_package_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_annualized_usage_rev": {"name": "sms_annualized_usage_rev", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscription_seller": {"name": "subscription_seller", "description": "The account manager respinsible for the sell of the closed opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory": {"name": "territory", "description": "Account Territory SF account field in form of \"Region\" and \"Segment\" concatenated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_acv": {"name": "sms_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "industry": {"name": "industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry_name": {"name": "industry_name", "description": "Field to hold the account industry. Values were generated by Product team.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_industry_name": {"name": "sub_industry_name", "description": "Holds the Sub Industry of the lead. Values were generated by the Product Team.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_industry_confidence_level": {"name": "yotpo_industry_confidence_level", "description": "Field to hold the confidence level of the Industry specified on the lead level. Used by product team for insights product.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_limit_roll_up": {"name": "order_limit_roll_up", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "reviews_first_opportunity": {"name": "reviews_first_opportunity", "description": "reviews first closed opportunity id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_first_opportunity_start_date": {"name": "reviews_first_opportunity_start_date", "description": "reviews first closed opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "reviews_first_opportunity_close_date": {"name": "reviews_first_opportunity_close_date", "description": "reviews first closed opportunity close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "vms_first_opportunity": {"name": "vms_first_opportunity", "description": "vms first closed opportunity id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vms_first_opportunity_start_date": {"name": "vms_first_opportunity_start_date", "description": "vms first closed opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "vms_first_opportunity_close_date": {"name": "vms_first_opportunity_close_date", "description": "vms first closed opportunity close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "loyalty_first_opportunity": {"name": "loyalty_first_opportunity", "description": "loyalty first closed opportunity id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_first_opportunity_start_date": {"name": "loyalty_first_opportunity_start_date", "description": "loyalty first closed opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "loyalty_first_opportunity_close_date": {"name": "loyalty_first_opportunity_close_date", "description": "loyalty first closed opportunity close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_first_opportunity": {"name": "sms_first_opportunity", "description": "sms first closed opportunity id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_first_opportunity_start_date": {"name": "sms_first_opportunity_start_date", "description": "sms first closed opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_first_opportunity_close_date": {"name": "sms_first_opportunity_close_date", "description": "sms first closed opportunity close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_won_opportunity": {"name": "first_won_opportunity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_segment": {"name": "sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_zone": {"name": "time_zone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_usage_cancellation_date": {"name": "sms_usage_cancellation_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_total_arr": {"name": "sms_total_arr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "agency_employee_bucket": {"name": "agency_employee_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_in_tam_list": {"name": "products_in_tam_list", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_clients_level_account": {"name": "agency_clients_level_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_contract_cnt": {"name": "current_contract_cnt", "description": "number of current contracts", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "has_a_community_member": {"name": "has_a_community_member", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "account_owner_full_name": {"name": "account_owner_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_owner_role": {"name": "account_owner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_original_dem_gen_partners": {"name": "is_original_dem_gen_partners", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_original_dem_gen_marketing": {"name": "is_original_dem_gen_marketing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_original_dem_gen_osdr": {"name": "is_original_dem_gen_osdr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_original_dem_gen_other": {"name": "is_original_dem_gen_other", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_account_data_excluded": {"name": "is_account_data_excluded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_annual_account": {"name": "is_annual_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_partner_account": {"name": "is_partner_account", "description": "type is one of the following list: ('agency', 'partner', 'referrer')", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_test_account": {"name": "is_test_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted_account": {"name": "is_deleted_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "registered_at": {"name": "registered_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "last_modified_date": {"name": "last_modified_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082649.3263524, "relation_name": "dev_dkruh1.analytics___salesforce__account", "raw_code": "-- Variables --\n\n{% set product_list = ['reviews','loyalty','vms','sms'] -%}\n\n-- Import --\n\nWITH import_account AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_account') }}\n\n), import_platform_organization AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__organization') }}\n\n), import_dim_sf_users_scd AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__dim_sf_users_scd') }}\n\n), import_salesforce__opportunity AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__opportunity') }}\n\n),\n\n-- Logic --\n\nwon_opp_rank_by_account AS (\nSELECT\n account_id,\n opportunity_id,\n start_date,\n close_date,\n{%- for product in product_list -%}\n {{'\\n ' if loop.first -}}\n IF(is_{{product}} = 1, ROW_NUMBER() OVER (PARTITION BY account_id ORDER BY close_date,start_date), 0) AS {{product}}_rank\n {{-',\\n ' if not loop.last }}\n{%- endfor %}\nFROM import_salesforce__opportunity\nWHERE LOWER(stage) = 'won - sale'\nAND LOWER(type) NOT LIKE '%poc%'\n),\n\nfirst_opp_won_per_account_by_product AS (\nSELECT\n account_id,\n{% for product in product_list -%}\n STRING(MAX(IF({{product}}_rank = 1, opportunity_id, NULL))) AS {{product}}_first_opportunity,\n DATE(MAX(IF({{product}}_rank = 1, start_date, NULL))) AS {{product}}_first_opportunity_start_date,\n DATE(MAX(IF({{product}}_rank = 1, close_date, NULL))) AS {{product}}_first_opportunity_close_date\n {{-',\\n ' if not loop.last }}\n{%- endfor %}\nFROM won_opp_rank_by_account\nGROUP BY 1\n),\n\naccount_dem_gen_origin AS (\nSELECT\n account_id,\n MAX(is_partner_opportunity) AS is_original_dem_gen_partners,\n MAX(is_marketing) AS is_original_dem_gen_marketing,\n MAX(is_osdr) AS is_original_dem_gen_osdr,\n MAX(is_other_demand_gen_channel) AS is_original_dem_gen_other\nFROM import_salesforce__opportunity\nWHERE LOWER(stage) = 'won - sale'\nAND LOWER(type) = 'new sale'\nAND is_deleted = 0\nGROUP BY 1\n),\n\nsalesforce__account AS (\nSELECT \n account.account_id,\n organization.organization_id,\n account.organization_key,\n account.owner_id,\n account.app_key,\n account.type,\n account.account_name,\n account.description,\n account.main_csm_sf_user_id,\n account.csm_sf_user_id,\n account.latest_opportunity_id,\n account.referrer_type,\n account.primary_sales_channel,\n account.sales_region,\n account.cs_estimated_aov,\n account.cs_estimated_annual_sales,\n account.extensions,\n account.estimated_monthly_orders_volume,\n account.ugc_acv,\n account.loyalty_acv,\n account.loyalty_contract_renewal_date,\n account.closest_contract_renewal_date,\n account.cs_segment,\n account.influenced_by_agency_id,\n account.agency_services,\n account.sms_csm_sf_user_id,\n account.cs_tags,\n account.iap_tier,\n account.sms_strategist, \n account.country,\n account.lead_id,\n account.annual_revenue,\n account.status,\n account.domain,\n account.email,\n account.plan_name,\n account.country_code,\n account.total_acv,\n account.merchant_id,\n account.platform,\n account.packages,\n account.referred_by_agency_id,\n account.parent_account_id,\n account.db_package_category,\n account.package_category,\n account.previous_package_category,\n account.sms_annualized_usage_rev,\n account.subscription_seller,\n account.territory,\n account.sms_acv,\n account.industry,\n account.industry_name,\n account.sub_industry_name,\n account.yotpo_industry_confidence_level,\n account.order_limit_roll_up,\n first_won_opp_by_product.reviews_first_opportunity,\n first_won_opp_by_product.reviews_first_opportunity_start_date,\n first_won_opp_by_product.reviews_first_opportunity_close_date,\n first_won_opp_by_product.vms_first_opportunity,\n first_won_opp_by_product.vms_first_opportunity_start_date,\n first_won_opp_by_product.vms_first_opportunity_close_date,\n first_won_opp_by_product.loyalty_first_opportunity,\n first_won_opp_by_product.loyalty_first_opportunity_start_date,\n first_won_opp_by_product.loyalty_first_opportunity_close_date,\n first_won_opp_by_product.sms_first_opportunity,\n first_won_opp_by_product.sms_first_opportunity_start_date,\n first_won_opp_by_product.sms_first_opportunity_close_date,\n LEAST(first_won_opp_by_product.reviews_first_opportunity,first_won_opp_by_product.vms_first_opportunity,first_won_opp_by_product.loyalty_first_opportunity,first_won_opp_by_product.sms_first_opportunity) AS first_won_opportunity,\n account.sales_segment,\n account.time_zone,\n account.sms_usage_cancellation_date,\n account.sms_total_arr,\n account.agency_employee_bucket,\n account.products_in_tam_list,\n account.agency_clients_level_account,\n account.current_contract_cnt,\n account.has_a_community_member,\n account_owner_user.sf_user_full_name AS account_owner_full_name,\n account_owner_user.sf_user_role AS account_owner_role,\n SMALLINT(dem_gen_origin.is_original_dem_gen_partners) AS is_original_dem_gen_partners,\n SMALLINT(dem_gen_origin.is_original_dem_gen_marketing) AS is_original_dem_gen_marketing,\n SMALLINT(dem_gen_origin.is_original_dem_gen_osdr) AS is_original_dem_gen_osdr,\n SMALLINT(dem_gen_origin.is_original_dem_gen_other) AS is_original_dem_gen_other,\n account.is_account_data_excluded,\n account.is_annual_account,\n account.is_partner_account,\n account.is_test_account,\n account.is_deleted_account,\n account.registered_at,\n account.created_date,\n account.last_modified_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_account AS account\nLEFT JOIN import_platform_organization AS organization\n ON organization.organization_key = account.organization_key\nLEFT JOIN first_opp_won_per_account_by_product AS first_won_opp_by_product\n ON account.account_id = first_won_opp_by_product.account_id\nLEFT JOIN account_dem_gen_origin AS dem_gen_origin\n ON account.account_id = dem_gen_origin.account_id \nLEFT JOIN import_dim_sf_users_scd AS account_owner_user\n ON account.owner_id = account_owner_user.sf_user_id\n AND account_owner_user.scd_cur_ind = 1\n)\n\n-- Result --\n\nSELECT *\nFROM salesforce__account", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}, {"name": "analytics___platform_stg__organization", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_users_scd", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___platform_stg__organization", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce__opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.sql", "compiled": true, "compiled_code": "-- Variables --\n\n-- Import --\n\nWITH import_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_account\n\n), import_platform_organization AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__organization\n\n), import_dim_sf_users_scd AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__dim_sf_users_scd\n\n), import_salesforce__opportunity AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__opportunity\n\n),\n\n-- Logic --\n\nwon_opp_rank_by_account AS (\nSELECT\n account_id,\n opportunity_id,\n start_date,\n close_date,\n IF(is_reviews = 1, ROW_NUMBER() OVER (PARTITION BY account_id ORDER BY close_date,start_date), 0) AS reviews_rank,\n IF(is_loyalty = 1, ROW_NUMBER() OVER (PARTITION BY account_id ORDER BY close_date,start_date), 0) AS loyalty_rank,\n IF(is_vms = 1, ROW_NUMBER() OVER (PARTITION BY account_id ORDER BY close_date,start_date), 0) AS vms_rank,\n IF(is_sms = 1, ROW_NUMBER() OVER (PARTITION BY account_id ORDER BY close_date,start_date), 0) AS sms_rank\nFROM import_salesforce__opportunity\nWHERE LOWER(stage) = 'won - sale'\nAND LOWER(type) NOT LIKE '%poc%'\n),\n\nfirst_opp_won_per_account_by_product AS (\nSELECT\n account_id,\nSTRING(MAX(IF(reviews_rank = 1, opportunity_id, NULL))) AS reviews_first_opportunity,\n DATE(MAX(IF(reviews_rank = 1, start_date, NULL))) AS reviews_first_opportunity_start_date,\n DATE(MAX(IF(reviews_rank = 1, close_date, NULL))) AS reviews_first_opportunity_close_date,\n STRING(MAX(IF(loyalty_rank = 1, opportunity_id, NULL))) AS loyalty_first_opportunity,\n DATE(MAX(IF(loyalty_rank = 1, start_date, NULL))) AS loyalty_first_opportunity_start_date,\n DATE(MAX(IF(loyalty_rank = 1, close_date, NULL))) AS loyalty_first_opportunity_close_date,\n STRING(MAX(IF(vms_rank = 1, opportunity_id, NULL))) AS vms_first_opportunity,\n DATE(MAX(IF(vms_rank = 1, start_date, NULL))) AS vms_first_opportunity_start_date,\n DATE(MAX(IF(vms_rank = 1, close_date, NULL))) AS vms_first_opportunity_close_date,\n STRING(MAX(IF(sms_rank = 1, opportunity_id, NULL))) AS sms_first_opportunity,\n DATE(MAX(IF(sms_rank = 1, start_date, NULL))) AS sms_first_opportunity_start_date,\n DATE(MAX(IF(sms_rank = 1, close_date, NULL))) AS sms_first_opportunity_close_date\nFROM won_opp_rank_by_account\nGROUP BY 1\n),\n\naccount_dem_gen_origin AS (\nSELECT\n account_id,\n MAX(is_partner_opportunity) AS is_original_dem_gen_partners,\n MAX(is_marketing) AS is_original_dem_gen_marketing,\n MAX(is_osdr) AS is_original_dem_gen_osdr,\n MAX(is_other_demand_gen_channel) AS is_original_dem_gen_other\nFROM import_salesforce__opportunity\nWHERE LOWER(stage) = 'won - sale'\nAND LOWER(type) = 'new sale'\nAND is_deleted = 0\nGROUP BY 1\n),\n\nsalesforce__account AS (\nSELECT \n account.account_id,\n organization.organization_id,\n account.organization_key,\n account.owner_id,\n account.app_key,\n account.type,\n account.account_name,\n account.description,\n account.main_csm_sf_user_id,\n account.csm_sf_user_id,\n account.latest_opportunity_id,\n account.referrer_type,\n account.primary_sales_channel,\n account.sales_region,\n account.cs_estimated_aov,\n account.cs_estimated_annual_sales,\n account.extensions,\n account.estimated_monthly_orders_volume,\n account.ugc_acv,\n account.loyalty_acv,\n account.loyalty_contract_renewal_date,\n account.closest_contract_renewal_date,\n account.cs_segment,\n account.influenced_by_agency_id,\n account.agency_services,\n account.sms_csm_sf_user_id,\n account.cs_tags,\n account.iap_tier,\n account.sms_strategist, \n account.country,\n account.lead_id,\n account.annual_revenue,\n account.status,\n account.domain,\n account.email,\n account.plan_name,\n account.country_code,\n account.total_acv,\n account.merchant_id,\n account.platform,\n account.packages,\n account.referred_by_agency_id,\n account.parent_account_id,\n account.db_package_category,\n account.package_category,\n account.previous_package_category,\n account.sms_annualized_usage_rev,\n account.subscription_seller,\n account.territory,\n account.sms_acv,\n account.industry,\n account.industry_name,\n account.sub_industry_name,\n account.yotpo_industry_confidence_level,\n account.order_limit_roll_up,\n first_won_opp_by_product.reviews_first_opportunity,\n first_won_opp_by_product.reviews_first_opportunity_start_date,\n first_won_opp_by_product.reviews_first_opportunity_close_date,\n first_won_opp_by_product.vms_first_opportunity,\n first_won_opp_by_product.vms_first_opportunity_start_date,\n first_won_opp_by_product.vms_first_opportunity_close_date,\n first_won_opp_by_product.loyalty_first_opportunity,\n first_won_opp_by_product.loyalty_first_opportunity_start_date,\n first_won_opp_by_product.loyalty_first_opportunity_close_date,\n first_won_opp_by_product.sms_first_opportunity,\n first_won_opp_by_product.sms_first_opportunity_start_date,\n first_won_opp_by_product.sms_first_opportunity_close_date,\n LEAST(first_won_opp_by_product.reviews_first_opportunity,first_won_opp_by_product.vms_first_opportunity,first_won_opp_by_product.loyalty_first_opportunity,first_won_opp_by_product.sms_first_opportunity) AS first_won_opportunity,\n account.sales_segment,\n account.time_zone,\n account.sms_usage_cancellation_date,\n account.sms_total_arr,\n account.agency_employee_bucket,\n account.products_in_tam_list,\n account.agency_clients_level_account,\n account.current_contract_cnt,\n account.has_a_community_member,\n account_owner_user.sf_user_full_name AS account_owner_full_name,\n account_owner_user.sf_user_role AS account_owner_role,\n SMALLINT(dem_gen_origin.is_original_dem_gen_partners) AS is_original_dem_gen_partners,\n SMALLINT(dem_gen_origin.is_original_dem_gen_marketing) AS is_original_dem_gen_marketing,\n SMALLINT(dem_gen_origin.is_original_dem_gen_osdr) AS is_original_dem_gen_osdr,\n SMALLINT(dem_gen_origin.is_original_dem_gen_other) AS is_original_dem_gen_other,\n account.is_account_data_excluded,\n account.is_annual_account,\n account.is_partner_account,\n account.is_test_account,\n account.is_deleted_account,\n account.registered_at,\n account.created_date,\n account.last_modified_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_account AS account\nLEFT JOIN import_platform_organization AS organization\n ON organization.organization_key = account.organization_key\nLEFT JOIN first_opp_won_per_account_by_product AS first_won_opp_by_product\n ON account.account_id = first_won_opp_by_product.account_id\nLEFT JOIN account_dem_gen_origin AS dem_gen_origin\n ON account.account_id = dem_gen_origin.account_id \nLEFT JOIN import_dim_sf_users_scd AS account_owner_user\n ON account.owner_id = account_owner_user.sf_user_id\n AND account_owner_user.scd_cur_ind = 1\n)\n\n-- Result --\n\nSELECT *\nFROM salesforce__account", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__account_enrichment": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__account_enrichment", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.sql", "unique_id": "model.yoda.analytics___salesforce__account_enrichment", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment", "analytics___salesforce__account_enrichment"], "alias": "analytics___salesforce__account_enrichment", "checksum": {"name": "sha256", "checksum": "f315b0a30c938d2b5b6b38629acdc8a980ba40f541415cb426c4696ff668bb58"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce", "write_to_saleforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce", "write_to_saleforce"], "description": "Modeled table of salesforce account enrichments with fields to write back to salesforce | PK & Granularity: Id", "columns": {"Id": {"name": "Id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Email__c": {"name": "Account_Email__c", "description": "Email of use leading user in the organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Registration_Date__c": {"name": "Registration_Date__c", "description": "Account's first store creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Platform__c": {"name": "Platform__c", "description": "Account's leading store's platform based on last 3 month orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "DB_Package_Category__c": {"name": "DB_Package_Category__c", "description": "Account's plans tags list (e.g Reviews free, SMS annually)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Package__c": {"name": "Package__c", "description": "Account's plans (e.g Common - Prime,Reviews - Prime 250)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_Annualized_Usage_Rev__c": {"name": "SMS_Annualized_Usage_Rev__c", "description": "When account's sms live date is less than a year ago: 12 times the avg usage of the last 1-4 months based on live date, otherwise: last 12 months usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,6)"}, "SMS_Total_ARR__c": {"name": "SMS_Total_ARR__c", "description": "Annualized usage + account's sms acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,6)"}, "account_last_modified_date": {"name": "account_last_modified_date", "description": "date of when the related salesforce account object has updated for the last time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce", "write_to_saleforce"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082649.3672128, "relation_name": "dev_dkruh1.analytics___salesforce__account_enrichment", "raw_code": "-- Import --\nWITH import_analytics___salesforce__account AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__account') }}\n\n), import_analytics___platform__organization AS (\n\n SELECT * FROM {{ ref('analytics___platform__organization') }}\n\n), import_analytics___salesforce__account_product AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__account_product') }}\n\n), import_analytics___platform__store_metrics_monthly AS (\n\n SELECT * FROM {{ ref('analytics___platform__store_metrics_monthly') }}\n\n), import_analytics___platform__plan AS (\n\n SELECT * FROM {{ ref('analytics___platform__plan') }}\n\n), import_analytics___platform__store_plan_daily AS (\n\n SELECT * FROM {{ ref('analytics___platform__store_plan_daily') }}\n\n), import_analytics___platform__organization_plan_daily AS (\n\n SELECT * FROM {{ ref('analytics___platform__organization_plan_daily') }}\n\n), import_analytics___sms__store_metrics_monthly AS (\n\n SELECT * FROM {{ ref('analytics___sms__store_metrics_monthly') }}\n\n-- Logic --\n\n), organization_platforms_orders_rank AS (\n\n SELECT \n organization_key,\n platform_name,\n ROW_NUMBER() OVER (PARTITION BY organization_key ORDER BY month DESC, last_3m_orders_cnt_avg DESC, app_key) AS org_rank_by_store_orders\n FROM import_analytics___platform__store_metrics_monthly\n\n), plan_full_tags AS (\n\n SELECT\n plan_id,\n EXPLODE(SPLIT(full_tags,',')) AS full_tag\n FROM import_analytics___platform__plan\n\n), organization_plans AS (\n\n SELECT DISTINCT\n organization_key,\n plan_id\n FROM import_analytics___platform__store_plan_daily\n WHERE date = DATE_SUB(CURRENT_DATE,1)\n\n), org_plan_tags AS (\n\n SELECT\n org_plan.organization_key,\n CONCAT_WS(', ', SORT_ARRAY(COLLECT_LIST(TRIM(plan_tag.full_tag)))) AS organization_plan_tags\n FROM organization_plans AS org_plan\n LEFT JOIN plan_full_tags AS plan_tag\n ON org_plan.plan_id = plan_tag.plan_id\n WHERE LOWER(REVERSE(SPLIT(TRIM(plan_tag.full_tag),' '))[0]) IN ('free', 'monthly', 'annually')\n GROUP BY 1\n\n), organization_plan_list AS (\n\n SELECT\n organization_key,\n CONCAT_WS(',',ARRAY_SORT(COLLECT_SET(IF(product_family = 'SMS', product_family || ' - ' || plan_name, plan_name)))) AS plan_list\n FROM import_analytics___platform__organization_plan_daily\n WHERE plan_name_array IS NOT NULL AND date = DATE_SUB(CURRENT_DATE,1)\n GROUP BY 1\n\n), annualized_usage_rev_by_mon AS (\n SELECT\n acc.organization_key,\n profile_monthly.month,\n acc.sms_acv AS account_sms_acv,\n SUM(profile_monthly.usage_sum) AS credits_used\nFROM import_analytics___sms__store_metrics_monthly AS profile_monthly\nINNER JOIN import_analytics___salesforce__account AS acc ON acc.organization_key = profile_monthly.organization_key\nGROUP BY 1,2,3\n\n), sms_live_date_by_org AS (\n SELECT DISTINCT\n sf_account.organization_key,\n MIN(account_product.live_date) AS sms_live_date\n FROM import_analytics___salesforce__account AS sf_account\n INNER JOIN import_analytics___salesforce__account_product AS account_product\n ON sf_account.account_id = account_product.account_id\n AND LOWER(account_product.product_line) = 'sms'\n WHERE sf_account.organization_key IS NOT NULL\n GROUP BY 1\n\n), users_over_12m_from_live_date (\n SELECT\n annualized_usage.organization_key, \n SUM(annualized_usage.credits_used) AS sms_annualized_usage_rev,\n SUM(annualized_usage.credits_used) + COALESCE(FIRST(annualized_usage.account_sms_acv),0) AS sms_total_bookings\n FROM annualized_usage_rev_by_mon AS annualized_usage\n INNER JOIN sms_live_date_by_org AS live_date\n ON annualized_usage.organization_key = live_date.organization_key\n WHERE MONTHS_BETWEEN(CURRENT_DATE,live_date.sms_live_date) >= 12\n AND FLOOR(MONTHS_BETWEEN(CURRENT_DATE,month)) BETWEEN 1 AND 12\n GROUP BY 1\n\n), users_less_then_12m_from_live_date (\n SELECT \n annualized_usage.organization_key,\n AVG(annualized_usage.credits_used)*12 AS sms_annualized_usage_rev,\n AVG(annualized_usage.credits_used)*12 + COALESCE(FIRST(annualized_usage.account_sms_acv),0) AS sms_total_bookings\n FROM annualized_usage_rev_by_mon AS annualized_usage\n LEFT JOIN sms_live_date_by_org AS live_date\n ON annualized_usage.organization_key = live_date.organization_key\n WHERE MONTHS_BETWEEN(CURRENT_DATE, NVL(live_date.sms_live_date,CURRENT_DATE)) < 12\n AND FLOOR(MONTHS_BETWEEN(CURRENT_DATE,month)) BETWEEN 1 AND 4\n GROUP BY 1\n\n), annualized_sms_usage_rev AS (\n SELECT \n organization_key,\n sms_annualized_usage_rev,\n sms_total_bookings\n FROM users_over_12m_from_live_date\n UNION ALL\n SELECT \n organization_key,\n sms_annualized_usage_rev,\n sms_total_bookings\n FROM users_less_then_12m_from_live_date\n\n), account_enrichment_res AS (\n SELECT DISTINCT\n sf_account.account_id AS Id,\n NVL(org.admin_email, sf_account.email) AS Account_Email__c,\n NVL(DATE_FORMAT(org.registered_at, \"yyyy-MM-dd'T'HH:mm:ss\"), sf_account.registered_at) AS Registration_Date__c,\n NVL(store_platform.platform_name, sf_account.platform) AS Platform__c,\n NVL(plan_tags.organization_plan_tags, sf_account.db_package_category) AS DB_Package_Category__c,\n NVL(org_plan_list.plan_list, sf_account.packages) AS Package__c,\n NVL(sms_rev.sms_annualized_usage_rev, 0) AS SMS_Annualized_Usage_Rev__c,\n NVL(sms_rev.sms_total_bookings, 0) AS SMS_Total_ARR__c,\n sf_account.last_modified_date AS account_last_modified_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_analytics___salesforce__account AS sf_account\n LEFT JOIN import_analytics___platform__organization AS org\n ON sf_account.organization_key = org.organization_key\n LEFT JOIN organization_platforms_orders_rank AS store_platform\n ON sf_account.organization_key = store_platform.organization_key\n AND store_platform.org_rank_by_store_orders = 1\n LEFT JOIN org_plan_tags AS plan_tags\n ON sf_account.organization_key = plan_tags.organization_key\n LEFT JOIN organization_plan_list AS org_plan_list\n ON sf_account.organization_key = org_plan_list.organization_key\n LEFT JOIN annualized_sms_usage_rev AS sms_rev\n ON sf_account.organization_key = sms_rev.organization_key\n WHERE sf_account.is_deleted_account = 0\n)\n\n-- Result --\n\nSELECT * FROM account_enrichment_res", "language": "sql", "refs": [{"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___platform__organization", "package": null, "version": null}, {"name": "analytics___salesforce__account_product", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__plan", "package": null, "version": null}, {"name": "analytics___platform__store_plan_daily", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}, {"name": "analytics___sms__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__account", "model.yoda.analytics___platform__organization", "model.yoda.analytics___salesforce__account_product", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___platform__plan", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___sms__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.sql", "compiled": true, "compiled_code": "-- Import --\nWITH import_analytics___salesforce__account AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__account\n\n), import_analytics___platform__organization AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__organization\n\n), import_analytics___salesforce__account_product AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__account_product\n\n), import_analytics___platform__store_metrics_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store_metrics_monthly\n\n), import_analytics___platform__plan AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__plan\n\n), import_analytics___platform__store_plan_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store_plan_daily\n\n), import_analytics___platform__organization_plan_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__organization_plan_daily\n\n), import_analytics___sms__store_metrics_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___sms__store_metrics_monthly\n\n-- Logic --\n\n), organization_platforms_orders_rank AS (\n\n SELECT \n organization_key,\n platform_name,\n ROW_NUMBER() OVER (PARTITION BY organization_key ORDER BY month DESC, last_3m_orders_cnt_avg DESC, app_key) AS org_rank_by_store_orders\n FROM import_analytics___platform__store_metrics_monthly\n\n), plan_full_tags AS (\n\n SELECT\n plan_id,\n EXPLODE(SPLIT(full_tags,',')) AS full_tag\n FROM import_analytics___platform__plan\n\n), organization_plans AS (\n\n SELECT DISTINCT\n organization_key,\n plan_id\n FROM import_analytics___platform__store_plan_daily\n WHERE date = DATE_SUB(CURRENT_DATE,1)\n\n), org_plan_tags AS (\n\n SELECT\n org_plan.organization_key,\n CONCAT_WS(', ', SORT_ARRAY(COLLECT_LIST(TRIM(plan_tag.full_tag)))) AS organization_plan_tags\n FROM organization_plans AS org_plan\n LEFT JOIN plan_full_tags AS plan_tag\n ON org_plan.plan_id = plan_tag.plan_id\n WHERE LOWER(REVERSE(SPLIT(TRIM(plan_tag.full_tag),' '))[0]) IN ('free', 'monthly', 'annually')\n GROUP BY 1\n\n), organization_plan_list AS (\n\n SELECT\n organization_key,\n CONCAT_WS(',',ARRAY_SORT(COLLECT_SET(IF(product_family = 'SMS', product_family || ' - ' || plan_name, plan_name)))) AS plan_list\n FROM import_analytics___platform__organization_plan_daily\n WHERE plan_name_array IS NOT NULL AND date = DATE_SUB(CURRENT_DATE,1)\n GROUP BY 1\n\n), annualized_usage_rev_by_mon AS (\n SELECT\n acc.organization_key,\n profile_monthly.month,\n acc.sms_acv AS account_sms_acv,\n SUM(profile_monthly.usage_sum) AS credits_used\nFROM import_analytics___sms__store_metrics_monthly AS profile_monthly\nINNER JOIN import_analytics___salesforce__account AS acc ON acc.organization_key = profile_monthly.organization_key\nGROUP BY 1,2,3\n\n), sms_live_date_by_org AS (\n SELECT DISTINCT\n sf_account.organization_key,\n MIN(account_product.live_date) AS sms_live_date\n FROM import_analytics___salesforce__account AS sf_account\n INNER JOIN import_analytics___salesforce__account_product AS account_product\n ON sf_account.account_id = account_product.account_id\n AND LOWER(account_product.product_line) = 'sms'\n WHERE sf_account.organization_key IS NOT NULL\n GROUP BY 1\n\n), users_over_12m_from_live_date (\n SELECT\n annualized_usage.organization_key, \n SUM(annualized_usage.credits_used) AS sms_annualized_usage_rev,\n SUM(annualized_usage.credits_used) + COALESCE(FIRST(annualized_usage.account_sms_acv),0) AS sms_total_bookings\n FROM annualized_usage_rev_by_mon AS annualized_usage\n INNER JOIN sms_live_date_by_org AS live_date\n ON annualized_usage.organization_key = live_date.organization_key\n WHERE MONTHS_BETWEEN(CURRENT_DATE,live_date.sms_live_date) >= 12\n AND FLOOR(MONTHS_BETWEEN(CURRENT_DATE,month)) BETWEEN 1 AND 12\n GROUP BY 1\n\n), users_less_then_12m_from_live_date (\n SELECT \n annualized_usage.organization_key,\n AVG(annualized_usage.credits_used)*12 AS sms_annualized_usage_rev,\n AVG(annualized_usage.credits_used)*12 + COALESCE(FIRST(annualized_usage.account_sms_acv),0) AS sms_total_bookings\n FROM annualized_usage_rev_by_mon AS annualized_usage\n LEFT JOIN sms_live_date_by_org AS live_date\n ON annualized_usage.organization_key = live_date.organization_key\n WHERE MONTHS_BETWEEN(CURRENT_DATE, NVL(live_date.sms_live_date,CURRENT_DATE)) < 12\n AND FLOOR(MONTHS_BETWEEN(CURRENT_DATE,month)) BETWEEN 1 AND 4\n GROUP BY 1\n\n), annualized_sms_usage_rev AS (\n SELECT \n organization_key,\n sms_annualized_usage_rev,\n sms_total_bookings\n FROM users_over_12m_from_live_date\n UNION ALL\n SELECT \n organization_key,\n sms_annualized_usage_rev,\n sms_total_bookings\n FROM users_less_then_12m_from_live_date\n\n), account_enrichment_res AS (\n SELECT DISTINCT\n sf_account.account_id AS Id,\n NVL(org.admin_email, sf_account.email) AS Account_Email__c,\n NVL(DATE_FORMAT(org.registered_at, \"yyyy-MM-dd'T'HH:mm:ss\"), sf_account.registered_at) AS Registration_Date__c,\n NVL(store_platform.platform_name, sf_account.platform) AS Platform__c,\n NVL(plan_tags.organization_plan_tags, sf_account.db_package_category) AS DB_Package_Category__c,\n NVL(org_plan_list.plan_list, sf_account.packages) AS Package__c,\n NVL(sms_rev.sms_annualized_usage_rev, 0) AS SMS_Annualized_Usage_Rev__c,\n NVL(sms_rev.sms_total_bookings, 0) AS SMS_Total_ARR__c,\n sf_account.last_modified_date AS account_last_modified_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_analytics___salesforce__account AS sf_account\n LEFT JOIN import_analytics___platform__organization AS org\n ON sf_account.organization_key = org.organization_key\n LEFT JOIN organization_platforms_orders_rank AS store_platform\n ON sf_account.organization_key = store_platform.organization_key\n AND store_platform.org_rank_by_store_orders = 1\n LEFT JOIN org_plan_tags AS plan_tags\n ON sf_account.organization_key = plan_tags.organization_key\n LEFT JOIN organization_plan_list AS org_plan_list\n ON sf_account.organization_key = org_plan_list.organization_key\n LEFT JOIN annualized_sms_usage_rev AS sms_rev\n ON sf_account.organization_key = sms_rev.organization_key\n WHERE sf_account.is_deleted_account = 0\n)\n\n-- Result --\n\nSELECT * FROM account_enrichment_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__account_enrichment_daily_diff": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__account_enrichment_daily_diff", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.sql", "unique_id": "model.yoda.analytics___salesforce__account_enrichment_daily_diff", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment_daily_diff", "analytics___salesforce__account_enrichment_daily_diff"], "alias": "analytics___salesforce__account_enrichment_daily_diff", "checksum": {"name": "sha256", "checksum": "ffe7a168d8f1e0f1a63808635159e4e77ddeafdfa11be7c8e0ce399f1c8794d0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce", "write_to_saleforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce", "write_to_saleforce"], "description": "Modeled view which holds only the last delta of changes for account_enrichment_snapshot_daily", "columns": {"Id": {"name": "Id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Email__c": {"name": "Account_Email__c", "description": "Email of use leading user in the organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Registration_Date__c": {"name": "Registration_Date__c", "description": "Account's first store creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Platform__c": {"name": "Platform__c", "description": "Account's leading store's platform based on last 3 month orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "DB_Package_Category__c": {"name": "DB_Package_Category__c", "description": "Account's plans tags list (e.g Reviews free, SMS annually)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Package__c": {"name": "Package__c", "description": "Account's plans (e.g Common - Prime,Reviews - Prime 250)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_Annualized_Usage_Rev__c": {"name": "SMS_Annualized_Usage_Rev__c", "description": "When account's sms live date is less than a year ago: 12 times the avg usage of the last 1-4 months based on live date, otherwise: last 12 months usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,6)"}, "SMS_Total_ARR__c": {"name": "SMS_Total_ARR__c", "description": "Annualized usage + account's sms acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,6)"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce", "write_to_saleforce"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082649.4040315, "relation_name": "dev_dkruh1.analytics___salesforce__account_enrichment_daily_diff", "raw_code": "{{\nanalytics_wts_daily_diff(\n snapshot_model = 'analytics___salesforce__account_enrichment_snapshot_daily',\n columns = ['Id',\n 'Account_Email__c',\n 'Registration_Date__c',\n 'Platform__c',\n 'DB_Package_Category__c',\n 'Package__c',\n 'SMS_Annualized_Usage_Rev__c',\n 'SMS_Total_ARR__c'\n ],\n key_list = ['Id']\n )\n}}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_enrichment_snapshot_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_wts_daily_diff", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__account_enrichment_snapshot_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.sql", "compiled": true, "compiled_code": "\n\n\n\nWITH diff_update_rank AS (\n\n SELECT\n *,\n ROW_NUMBER() OVER (PARTITION BY Id ORDER BY dwh_updated_at DESC) AS update_rank\n FROM dev_dkruh1.analytics___salesforce__account_enrichment_snapshot_daily\n WHERE DATE(dwh_updated_at) = CURRENT_DATE\n\n)\n\n SELECT\n Id,\n Account_Email__c,\n Registration_Date__c,\n Platform__c,\n DB_Package_Category__c,\n Package__c,\n SMS_Annualized_Usage_Rev__c,\n SMS_Total_ARR__c\n FROM diff_update_rank\n WHERE update_rank = 1", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__account_enrichment_snapshot_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__account_enrichment_snapshot_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.sql", "unique_id": "model.yoda.analytics___salesforce__account_enrichment_snapshot_daily", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment_snapshot_daily", "analytics___salesforce__account_enrichment_snapshot_daily"], "alias": "analytics___salesforce__account_enrichment_snapshot_daily", "checksum": {"name": "sha256", "checksum": "1aa3706a724ce681b38ba6f5d01a6805bf53ef1349e28f8d4267394dfc8c9fa4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce", "write_to_saleforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce", "write_to_saleforce"], "description": "A modeled incremental table to keep tracking of salesforce account enrichment values | PK & Granularity: Id, updated_at", "columns": {"Id": {"name": "Id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Email__c": {"name": "Account_Email__c", "description": "Email of use leading user in the organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Registration_Date__c": {"name": "Registration_Date__c", "description": "Account's first store creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Platform__c": {"name": "Platform__c", "description": "Account's leading store's platform based on last 3 month orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "DB_Package_Category__c": {"name": "DB_Package_Category__c", "description": "Account's plans tags list (e.g Reviews free, SMS annually)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Package__c": {"name": "Package__c", "description": "Account's plans (e.g Common - Prime,Reviews - Prime 250)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_Annualized_Usage_Rev__c": {"name": "SMS_Annualized_Usage_Rev__c", "description": "When account's sms live date is less than a year ago: 12 times the avg usage of the last 1-4 months based on live date, otherwise: last 12 months usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,6)"}, "SMS_Total_ARR__c": {"name": "SMS_Total_ARR__c", "description": "Annualized usage + account's sms acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,6)"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce", "write_to_saleforce"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "incremental_strategy": "append"}, "created_at": 1700082649.4439561, "relation_name": "dev_dkruh1.analytics___salesforce__account_enrichment_snapshot_daily", "raw_code": "{{\nanalytics_snapshot_scd(\n source_model = 'analytics___salesforce__account_enrichment',\n unique_key = ['Id'],\n tracked_columns =['Account_Email__c',\n 'Registration_Date__c',\n 'Platform__c',\n 'DB_Package_Category__c',\n 'Package__c',\n 'SMS_Annualized_Usage_Rev__c',\n 'SMS_Total_ARR__c'\n ],\n updated_at = 'account_last_modified_date'\n )\n}}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_enrichment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_snapshot_scd", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__account_enrichment"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.sql", "compiled": true, "compiled_code": "\n\n WITH \n \n\n incremental_calculation AS (\n SELECT \n source_table.Id, source_table.Account_Email__c, source_table.Registration_Date__c, source_table.Platform__c, source_table.DB_Package_Category__c, source_table.Package__c, source_table.SMS_Annualized_Usage_Rev__c, source_table.SMS_Total_ARR__c, source_table.account_last_modified_date, \n 1 AS is_new_update\n FROM dev_dkruh1.analytics___salesforce__account_enrichment AS source_table\n )\n\n SELECT\n Id, Account_Email__c, Registration_Date__c, Platform__c, DB_Package_Category__c, Package__c, SMS_Annualized_Usage_Rev__c, SMS_Total_ARR__c, account_last_modified_date AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM incremental_calculation\n WHERE is_new_update = 1\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__account_product": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__account_product", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.sql", "unique_id": "model.yoda.analytics___salesforce__account_product", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_product", "analytics___salesforce__account_product"], "alias": "analytics___salesforce__account_product", "checksum": {"name": "sha256", "checksum": "b9c6ffae737704d9c54f70d425c8cbd68735efee24d8b3ea70738ebd9fb01a45"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled Table Salseforce Account Product \nPK & granularity: account_product_id", "columns": {"account_product_id": {"name": "account_product_id", "description": "unique id for the account & product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_stage": {"name": "product_stage", "description": "the stage of the product: Renewal/Lost After Won/Onboarding/Churned/Optimization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_product_family_list": {"name": "main_product_family_list", "description": "all the product families in a string", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_type": {"name": "opportunity_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_start_date": {"name": "opportunity_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_renewal_date": {"name": "opportunity_renewal_date", "description": "next renewal date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "initially_won_opportunity_id": {"name": "initially_won_opportunity_id", "description": "the opportunity id of when this product was first won- only for ss opps", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_initial_won_date": {"name": "product_initial_won_date", "description": "when this product was first won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "initially_won_ss_opportunity_id": {"name": "initially_won_ss_opportunity_id", "description": "when this product was first won- for ss only", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_initial_won_ss_date": {"name": "product_initial_won_ss_date", "description": "the opportunity id of when this product was first won- only for ss opps", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "live_date": {"name": "live_date", "description": "unique product indication to indicate the product is live.\nREVIEWS - the date when reviews widget/ star-rating widget was first loaded\nVMS - the date when any VMS gallery was first loaded\nSMS - the date when $3 of credit were used\nLOYALTY - the date when there was a redemption of points by 10+ customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "onboarding_completion_status": {"name": "onboarding_completion_status", "description": "csm filled indication for the completion of the onboarding", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_completion_date": {"name": "onboarding_completion_date", "description": "indication for the date of completion of the onboarding according to CSM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "onboarding_manager_csm_team": {"name": "onboarding_manager_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_manager_id": {"name": "onboarding_manager_id", "description": "onboarding manager id for the onboarding project", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_project_cnt": {"name": "onboarding_project_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "acv_in_usd": {"name": "acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_current_contract": {"name": "is_current_contract", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082649.4977176, "relation_name": "dev_dkruh1.analytics___salesforce__account_product", "raw_code": "-- Import --\n\nWITH import_account_product AS (\n\n SELECT *\n FROM {{ ref('analytics___salesforce_stg__mc_account_product') }}\n\n-- Logic -- \n), account_product AS (\n\n SELECT \n account_product_id,\n account_id,\n product_id,\n product_name,\n product_stage,\n main_product_family_list,\n product_line,\n opportunity_id,\n opportunity_type,\n opportunity_start_date,\n opportunity_renewal_date,\n initially_won_opportunity_id,\n product_initial_won_date,\n initially_won_ss_opportunity_id,\n product_initial_won_ss_date,\n live_date,\n onboarding_completion_status,\n onboarding_completion_date,\n onboarding_manager_csm_team,\n onboarding_manager_id,\n onboarding_project_cnt,\n acv_in_usd,\n is_current_contract,\n is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_account_product\n)\n\n-- Result\nSELECT * \nFROM account_product", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_account_product AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___salesforce_stg__mc_account_product\n\n-- Logic -- \n), account_product AS (\n\n SELECT \n account_product_id,\n account_id,\n product_id,\n product_name,\n product_stage,\n main_product_family_list,\n product_line,\n opportunity_id,\n opportunity_type,\n opportunity_start_date,\n opportunity_renewal_date,\n initially_won_opportunity_id,\n product_initial_won_date,\n initially_won_ss_opportunity_id,\n product_initial_won_ss_date,\n live_date,\n onboarding_completion_status,\n onboarding_completion_date,\n onboarding_manager_csm_team,\n onboarding_manager_id,\n onboarding_project_cnt,\n acv_in_usd,\n is_current_contract,\n is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_account_product\n)\n\n-- Result\nSELECT * \nFROM account_product", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__account_tracking_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__account_tracking_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.sql", "unique_id": "model.yoda.analytics___salesforce__account_tracking_daily", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_tracking_daily", "analytics___salesforce__account_tracking_daily"], "alias": "analytics___salesforce__account_tracking_daily", "checksum": {"name": "sha256", "checksum": "cebfc740d757e01dc28204e858df6cb2664558e79a7e2213bcbda96a9749be61"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled incremental table of account daily snapshot. Backfilled with fact_account_profile_daily history\nGranularity | PK : date, account_id", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_id": {"name": "loyalty_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_name": {"name": "loyalty_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_team": {"name": "loyalty_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_id": {"name": "ugc_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_name": {"name": "ugc_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_team": {"name": "ugc_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_id": {"name": "sms_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_name": {"name": "sms_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_team": {"name": "sms_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_id": {"name": "primary_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_name": {"name": "primary_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team": {"name": "primary_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_strategist_id": {"name": "sms_strategist_id", "description": "points to SMS CSM from 2023-05-08", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_strategist_name": {"name": "sms_strategist_name", "description": "points to SMS CSM from 2023-05-08", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_strategist_team": {"name": "sms_strategist_team", "description": "points to SMS CSM team from 2023-05-08", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_csm_id": {"name": "subscription_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptions_csm_name": {"name": "subscriptions_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptions_csm_team": {"name": "subscriptions_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_csm_id": {"name": "email_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_csm_name": {"name": "email_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_csm_team": {"name": "email_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "incremental_strategy": "append"}, "created_at": 1700082649.5633013, "relation_name": "dev_dkruh1.analytics___salesforce__account_tracking_daily", "raw_code": "{{ \n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append'\n )\n}}\n\n-- import --\n\nWITH import_static_account_profile_daily AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__fact_account_profile_daily') }}\n {% if is_incremental() %}\n WHERE 1 = 0\n {% endif %}\n\n), \n\nimport_dim_calendar AS (\n\n SELECT * FROM {{ ref('platform_stg__dim_calendar') }}\n {% if is_incremental() %}\n WHERE date > (SELECT MAX(date) FROM {{ this }})\n {% else %}\n WHERE 1 = 0\n {% endif %}\n\n),\n\nimport_dim_sf_users_scd AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__dim_sf_users_scd') }}\n {% if is_incremental() == False %} \n WHERE 1 = 0\n {% endif %}\n\n),\n\nimport_account AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__account_full') }}\n {% if is_incremental() == False %} \n WHERE 1 = 0\n {% endif %}\n\n),\n\n-- Logic --\n\nsf_users_att (\n\n SELECT \n DISTINCT sf_user_id,\n FIRST_VALUE(sf_user_full_name,TRUE) OVER (PARTITION BY sf_user_id ORDER BY from_time ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS csm_name,\n FIRST_VALUE(csm_team,TRUE) OVER (PARTITION BY sf_user_id ORDER BY from_time DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS csm_team\n FROM import_dim_sf_users_scd\n {% if is_incremental() == False %} \n WHERE 1 = 0\n {% endif %}\n\n),\n\nsalesforce__account_tracking_daily (\n\n SELECT\n calendar.date AS date,\n account.id AS account_id,\n account.name AS account_name,\n account.swell_csm__c AS loyalty_csm_id,\n sf_users_loyalty.csm_name AS loyalty_csm_name,\n sf_users_loyalty.csm_team AS loyalty_csm_team,\n account.csm_lookup__c AS ugc_csm_id,\n sf_users_ugc.csm_name AS ugc_csm_name,\n sf_users_ugc.csm_team AS ugc_csm_team,\n account.sms_csm__c AS sms_csm_id,\n sf_users_sms.csm_name AS sms_csm_name,\n sf_users_sms.csm_team AS sms_csm_team,\n account.main_csm__c AS primary_csm_id,\n sf_users_primary.csm_name AS primary_csm_name,\n sf_users_primary.csm_team AS primary_csm_team,\n account.sms_csm__c AS sms_strategist_id,\n sf_users_sms.csm_name AS sms_strategist_name,\n sf_users_sms.csm_team AS sms_strategist_team, \n account.subscriptions_csm__c AS subscription_csm_id,\n sf_users_subscriptions.csm_name AS subscriptions_csm_name,\n sf_users_subscriptions.csm_team AS subscriptions_csm_team,\n account.email_csm_name__c AS email_csm_id,\n sf_users_email.csm_name AS email_csm_name,\n sf_users_email.csm_team AS email_csm_team,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_account AS account\n INNER JOIN import_dim_calendar AS calendar\n ON calendar.date >= DATE(account.createddate)\n AND calendar.date < current_date\n LEFT JOIN sf_users_att AS sf_users_loyalty\n ON account.swell_csm__c = sf_users_loyalty.sf_user_id\n LEFT JOIN sf_users_att AS sf_users_ugc\n ON account.csm_lookup__c = sf_users_ugc.sf_user_id\n LEFT JOIN sf_users_att AS sf_users_sms\n ON account.sms_csm__c = sf_users_sms.sf_user_id\n LEFT JOIN sf_users_att AS sf_users_primary\n ON account.main_csm__c = sf_users_primary.sf_user_id\n LEFT JOIN sf_users_att AS sf_users_subscriptions\n ON account.subscriptions_csm__c = sf_users_subscriptions.sf_user_id\n LEFT JOIN sf_users_att AS sf_users_email\n ON account.email_csm_name__c = sf_users_email.sf_user_id\n \n UNION ALL\n\n SELECT\n date,\n account_id,\n account_name,\n loyalty_csm_id,\n loyalty_csm_name,\n loyalty_csm_team,\n ugc_csm_id,\n ugc_csm_name,\n ugc_csm_team,\n sms_csm_id,\n sms_csm_name,\n sms_csm_team,\n primary_csm_id,\n primary_csm_name,\n primary_csm_team,\n sms_strategist_id,\n sms_strategist_name,\n sms_strategist_team, \n subscription_csm_id,\n subscriptions_csm_name,\n subscriptions_csm_team,\n email_csm_id,\n email_csm_name,\n email_csm_team,\n dwh_updated_at\n FROM import_static_account_profile_daily\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce__account_tracking_daily", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__fact_account_profile_daily", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_users_scd", "package": null, "version": null}, {"name": "analytics___salesforce_stg__account_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__fact_account_profile_daily", "model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce_stg__account_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.sql", "compiled": true, "compiled_code": "\n\n-- import --\n\nWITH import_static_account_profile_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__fact_account_profile_daily\n \n\n), \n\nimport_dim_calendar AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__dim_calendar\n \n WHERE 1 = 0\n \n\n),\n\nimport_dim_sf_users_scd AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__dim_sf_users_scd\n \n WHERE 1 = 0\n \n\n),\n\nimport_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__account_full\n \n WHERE 1 = 0\n \n\n),\n\n-- Logic --\n\nsf_users_att (\n\n SELECT \n DISTINCT sf_user_id,\n FIRST_VALUE(sf_user_full_name,TRUE) OVER (PARTITION BY sf_user_id ORDER BY from_time ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS csm_name,\n FIRST_VALUE(csm_team,TRUE) OVER (PARTITION BY sf_user_id ORDER BY from_time DESC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS csm_team\n FROM import_dim_sf_users_scd\n \n WHERE 1 = 0\n \n\n),\n\nsalesforce__account_tracking_daily (\n\n SELECT\n calendar.date AS date,\n account.id AS account_id,\n account.name AS account_name,\n account.swell_csm__c AS loyalty_csm_id,\n sf_users_loyalty.csm_name AS loyalty_csm_name,\n sf_users_loyalty.csm_team AS loyalty_csm_team,\n account.csm_lookup__c AS ugc_csm_id,\n sf_users_ugc.csm_name AS ugc_csm_name,\n sf_users_ugc.csm_team AS ugc_csm_team,\n account.sms_csm__c AS sms_csm_id,\n sf_users_sms.csm_name AS sms_csm_name,\n sf_users_sms.csm_team AS sms_csm_team,\n account.main_csm__c AS primary_csm_id,\n sf_users_primary.csm_name AS primary_csm_name,\n sf_users_primary.csm_team AS primary_csm_team,\n account.sms_csm__c AS sms_strategist_id,\n sf_users_sms.csm_name AS sms_strategist_name,\n sf_users_sms.csm_team AS sms_strategist_team, \n account.subscriptions_csm__c AS subscription_csm_id,\n sf_users_subscriptions.csm_name AS subscriptions_csm_name,\n sf_users_subscriptions.csm_team AS subscriptions_csm_team,\n account.email_csm_name__c AS email_csm_id,\n sf_users_email.csm_name AS email_csm_name,\n sf_users_email.csm_team AS email_csm_team,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_account AS account\n INNER JOIN import_dim_calendar AS calendar\n ON calendar.date >= DATE(account.createddate)\n AND calendar.date < current_date\n LEFT JOIN sf_users_att AS sf_users_loyalty\n ON account.swell_csm__c = sf_users_loyalty.sf_user_id\n LEFT JOIN sf_users_att AS sf_users_ugc\n ON account.csm_lookup__c = sf_users_ugc.sf_user_id\n LEFT JOIN sf_users_att AS sf_users_sms\n ON account.sms_csm__c = sf_users_sms.sf_user_id\n LEFT JOIN sf_users_att AS sf_users_primary\n ON account.main_csm__c = sf_users_primary.sf_user_id\n LEFT JOIN sf_users_att AS sf_users_subscriptions\n ON account.subscriptions_csm__c = sf_users_subscriptions.sf_user_id\n LEFT JOIN sf_users_att AS sf_users_email\n ON account.email_csm_name__c = sf_users_email.sf_user_id\n \n UNION ALL\n\n SELECT\n date,\n account_id,\n account_name,\n loyalty_csm_id,\n loyalty_csm_name,\n loyalty_csm_team,\n ugc_csm_id,\n ugc_csm_name,\n ugc_csm_team,\n sms_csm_id,\n sms_csm_name,\n sms_csm_team,\n primary_csm_id,\n primary_csm_name,\n primary_csm_team,\n sms_strategist_id,\n sms_strategist_name,\n sms_strategist_team, \n subscription_csm_id,\n subscriptions_csm_name,\n subscriptions_csm_team,\n email_csm_id,\n email_csm_name,\n email_csm_team,\n dwh_updated_at\n FROM import_static_account_profile_daily\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce__account_tracking_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__campaign_member_field_history": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__campaign_member_field_history", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.sql", "unique_id": "model.yoda.analytics___salesforce__campaign_member_field_history", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__campaign_member_field_history", "analytics___salesforce__campaign_member_field_history"], "alias": "analytics___salesforce__campaign_member_field_history", "checksum": {"name": "sha256", "checksum": "66925dff4a86ed1dc61ed8cf72727dc834b58280a51525d97bfb2c899527153e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A modeled table of the salesforce object custom_field_history_tracking__c including union of old values from static table | PK & Granularity: campaign_member_id, field_name, from_time", "columns": {"campaign_member_id": {"name": "campaign_member_id", "description": "PK 1/3 - sf id of the affected campaign member object", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "field_name": {"name": "field_name", "description": "PK 2/3 - the field that was changed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "field_value": {"name": "field_value", "description": "the value inserted to the changed field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_time": {"name": "from_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_current": {"name": "is_current", "description": "indicator if field_value the current value held in the field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082649.6001916, "relation_name": "dev_dkruh1.analytics___salesforce__campaign_member_field_history", "raw_code": "-- Import --\nWITH import_custom_field_history AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__custom_field_history') }}\n\n), import_campaign_member_history_creation_records AS (\n\n SELECT * FROM {{ source('analytics__static', 'campaign_member_history_creation_records') }}\n\n-- Logic --\n), campaign_member_field_history_union AS (\n\n SELECT\n parent_object_id,\n field_name,\n created_at,\n sf_event_id,\n created_by_sf_user_id,\n new_value\n FROM import_custom_field_history\n WHERE LEFT(parent_object_id, 3) = '00v'\n UNION ALL\n SELECT\n parent_object_id,\n field_name,\n created_at,\n sf_event_id,\n created_by_sf_user_id,\n new_value\n FROM import_campaign_member_history_creation_records\n\n), sf_campaign_member_field_history_res AS (\n\n SELECT\n parent_object_id AS campaign_member_id,\n created_by_sf_user_id,\n field_name,\n new_value AS field_value,\n created_at AS from_time,\n TIMESTAMP(NVL(LEAD(created_at) OVER (PARTITION BY parent_object_id, field_name ORDER BY created_at ASC, sf_event_id ASC), '2200-01-01')) AS to_time,\n SMALLINT(IF(ROW_NUMBER() OVER (PARTITION BY parent_object_id, field_name ORDER BY created_at DESC, sf_event_id DESC) = 1, 1, 0)) AS is_current,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM campaign_member_field_history_union\n WHERE LEFT(parent_object_id, 3) = '00v'\n\n)\n\n-- Result --\nSELECT * FROM sf_campaign_member_field_history_res", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__custom_field_history", "package": null, "version": null}], "sources": [["analytics__static", "campaign_member_history_creation_records"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.campaign_member_history_creation_records", "model.yoda.analytics___salesforce_stg__custom_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.sql", "compiled": true, "compiled_code": "-- Import --\nWITH import_custom_field_history AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__custom_field_history\n\n), import_campaign_member_history_creation_records AS (\n\n SELECT * FROM static.campaign_member_history_creation_records\n\n-- Logic --\n), campaign_member_field_history_union AS (\n\n SELECT\n parent_object_id,\n field_name,\n created_at,\n sf_event_id,\n created_by_sf_user_id,\n new_value\n FROM import_custom_field_history\n WHERE LEFT(parent_object_id, 3) = '00v'\n UNION ALL\n SELECT\n parent_object_id,\n field_name,\n created_at,\n sf_event_id,\n created_by_sf_user_id,\n new_value\n FROM import_campaign_member_history_creation_records\n\n), sf_campaign_member_field_history_res AS (\n\n SELECT\n parent_object_id AS campaign_member_id,\n created_by_sf_user_id,\n field_name,\n new_value AS field_value,\n created_at AS from_time,\n TIMESTAMP(NVL(LEAD(created_at) OVER (PARTITION BY parent_object_id, field_name ORDER BY created_at ASC, sf_event_id ASC), '2200-01-01')) AS to_time,\n SMALLINT(IF(ROW_NUMBER() OVER (PARTITION BY parent_object_id, field_name ORDER BY created_at DESC, sf_event_id DESC) = 1, 1, 0)) AS is_current,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM campaign_member_field_history_union\n WHERE LEFT(parent_object_id, 3) = '00v'\n\n)\n\n-- Result --\nSELECT * FROM sf_campaign_member_field_history_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__deal_summary": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__deal_summary", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.sql", "unique_id": "model.yoda.analytics___salesforce__deal_summary", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__deal_summary", "analytics___salesforce__deal_summary"], "alias": "analytics___salesforce__deal_summary", "checksum": {"name": "sha256", "checksum": "9c76541216042927868bc2a57c7b93988ef709a3a88a669367246971ee05b729"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled table of salesforce deal_summary_new new object | PK & Granularity: deal_summary_id", "columns": {"deal_summary_id": {"name": "deal_summary_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan": {"name": "plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_plan_id": {"name": "opportunity_plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type_summary": {"name": "deal_type_summary", "description": "deal type: Renewal/Sale", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency_iso_code": {"name": "currency_iso_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_from_opportunity_line": {"name": "renewal_from_opportunity_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_gk": {"name": "created_by_sf_user_gk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_by_sf_user_id": {"name": "updated_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_by_sf_user_gk": {"name": "updated_by_sf_user_gk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "previous_acv_original_currency": {"name": "previous_acv_original_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "current_acv_original_currency": {"name": "current_acv_original_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "previous_acv_usd": {"name": "previous_acv_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "current_acv_usd": {"name": "current_acv_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "current_acv_for_retention_usd": {"name": "current_acv_for_retention_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "current_acv_for_retention_original_currency": {"name": "current_acv_for_retention_original_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "delta_acv_usd": {"name": "delta_acv_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "delta_acv_for_retention_usd": {"name": "delta_acv_for_retention_usd", "description": "difference of current acv for retention and previous acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "delta_acv_calculated_usd": {"name": "delta_acv_calculated_usd", "description": "current_acv - previous_acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "pipeline_usd": {"name": "pipeline_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opportunity_product_deal_type": {"name": "opportunity_product_deal_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_owner_id": {"name": "opportunity_owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_type": {"name": "opportunity_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_id": {"name": "sf_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_company_expansion": {"name": "is_company_expansion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opportunity_stage": {"name": "opportunity_stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_start_date": {"name": "opportunity_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "contract_start_date": {"name": "contract_start_date", "description": "line item contract start date - match staggered contract start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_deal_type_as_per_deal_summary": {"name": "opportunity_deal_type_as_per_deal_summary", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_conversion_rate": {"name": "opportunity_conversion_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_extra_domain": {"name": "is_extra_domain", "description": "indicates if the opportunity product is not a plan product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082649.663567, "relation_name": "dev_dkruh1.analytics___salesforce__deal_summary", "raw_code": "-- Import\nWITH import_mc_deal_summary AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_deal_summary') }}\n\n), import_opportunity AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce__opportunity') }}\n\n), import_dim_sf_users AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__dim_sf_users_scd') }}\n\n), import_sf_account AS (\n\n SELECT *\n FROM {{ ref('analytics___salesforce__account') }}\n\n), import_line_items AS (\n\n SELECT *\n FROM {{ ref('analytics___salesforce__opportunity_line_item') }}\n\n-- Logic\n\n), deal_summary_wo_deleted_rows AS (\n\n SELECT\n deal_summary_id,\n opportunity_id,\n product,\n plan,\n opportunity_plan_id,\n deal_type_summary,\n currency_iso_code,\n status,\n renewal_from_opportunity_line,\n previous_acv_original_currency,\n current_acv_original_currency,\n previous_acv_usd,\n current_acv_usd,\n current_acv_for_retention_usd,\n current_acv_for_retention_original_currency,\n delta_acv_usd,\n delta_acv_for_retention_usd,\n delta_acv_calculated_usd,\n pipeline_usd,\n created_by_sf_user_id,\n created_at,\n updated_by_sf_user_id,\n updated_at,\n is_extra_domain,\n is_deleted,\n row_rank_opp_plan\n FROM import_mc_deal_summary\n WHERE is_deleted = 0\n\n), opp_deal_types AS (\n\n SELECT\n opportunity_id,\n EXPLODE(SPLIT(deal_type_as_per_deal_summary,',')) AS deal_type\n FROM import_opportunity\n WHERE deal_type_as_per_deal_summary IS NOT NULL AND deal_type_as_per_deal_summary LIKE '%:%'\n\n), opp_deal_types_product_calculation AS (\n\n SELECT\n opportunity_id,\n deal_type,\n TRIM(SUBSTR(deal_type, 1, INSTR(deal_type,':')-1)) AS product\n FROM opp_deal_types\n\n), opp_product_deal_types AS (\n\n SELECT\n opportunity_id,\n product,\n TRIM(CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(deal_type)))) AS opportunity_product_deal_type\n FROM opp_deal_types_product_calculation\n GROUP BY 1,2\n\n), salesforce_deal_summary AS (\n\n SELECT\n deal_summary.deal_summary_id,\n deal_summary.opportunity_id,\n deal_summary.product,\n deal_summary.plan,\n deal_summary.opportunity_plan_id,\n deal_summary.deal_type_summary,\n deal_summary.currency_iso_code,\n deal_summary.status,\n deal_summary.renewal_from_opportunity_line,\n deal_summary.created_by_sf_user_id,\n user_created.sf_user_gk AS created_by_sf_user_gk,\n deal_summary.created_at,\n deal_summary.updated_by_sf_user_id,\n user_updated.sf_user_gk AS updated_by_sf_user_gk,\n deal_summary.updated_at,\n deal_summary.previous_acv_original_currency,\n deal_summary.current_acv_original_currency,\n deal_summary.previous_acv_usd,\n deal_summary.current_acv_usd,\n deal_summary.current_acv_for_retention_usd,\n deal_summary.current_acv_for_retention_original_currency,\n deal_summary.delta_acv_usd,\n deal_summary.delta_acv_for_retention_usd,\n deal_summary.delta_acv_calculated_usd,\n deal_summary.pipeline_usd,\n deal_type.opportunity_product_deal_type,\n opportunity.owner_id AS opportunity_owner_id,\n opportunity.type AS opportunity_type,\n opportunity.account_id AS sf_account_id, \n opportunity.is_company_expansion,\n opportunity.stage AS opportunity_stage, \n opportunity.start_date AS opportunity_start_date,\n line_item.contract_start_date,\n opportunity.deal_type_as_per_deal_summary AS opportunity_deal_type_as_per_deal_summary,\n opportunity.conversion_rate AS opportunity_conversion_rate,\n account.organization_id AS organization_id,\n account.organization_key AS organization_key,\n deal_summary.is_extra_domain,\n deal_summary.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM deal_summary_wo_deleted_rows AS deal_summary\n LEFT JOIN import_dim_sf_users AS user_created\n ON deal_summary.created_by_sf_user_id = user_created.sf_user_id\n AND deal_summary.created_at BETWEEN user_created.from_time AND COALESCE(user_created.to_time,'2999-01-01 00:00:00')\n LEFT JOIN import_dim_sf_users AS user_updated\n ON deal_summary.updated_by_sf_user_id = user_updated.sf_user_id\n AND deal_summary.updated_at BETWEEN user_updated.from_time AND COALESCE(user_updated.to_time,'2999-01-01 00:00:00')\n LEFT JOIN import_opportunity AS opportunity\n ON deal_summary.opportunity_id = opportunity.opportunity_id\n LEFT JOIN import_sf_account AS account\n ON opportunity.account_id = account.account_id\n LEFT JOIN opp_product_deal_types AS deal_type\n ON deal_summary.opportunity_id = deal_type.opportunity_id\n AND deal_summary.product = deal_type.product\n LEFT JOIN import_line_items AS line_item \n ON line_item.line_item_id = deal_summary.opportunity_plan_id\n WHERE deal_summary.row_rank_opp_plan = 1\n\n)\n\n-- Result\nSELECT *\nFROM salesforce_deal_summary", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_deal_summary", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_users_scd", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity_line_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_deal_summary", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__opportunity_line_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.sql", "compiled": true, "compiled_code": "-- Import\nWITH import_mc_deal_summary AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_deal_summary\n\n), import_opportunity AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce__opportunity\n\n), import_dim_sf_users AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__dim_sf_users_scd\n\n), import_sf_account AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___salesforce__account\n\n), import_line_items AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___salesforce__opportunity_line_item\n\n-- Logic\n\n), deal_summary_wo_deleted_rows AS (\n\n SELECT\n deal_summary_id,\n opportunity_id,\n product,\n plan,\n opportunity_plan_id,\n deal_type_summary,\n currency_iso_code,\n status,\n renewal_from_opportunity_line,\n previous_acv_original_currency,\n current_acv_original_currency,\n previous_acv_usd,\n current_acv_usd,\n current_acv_for_retention_usd,\n current_acv_for_retention_original_currency,\n delta_acv_usd,\n delta_acv_for_retention_usd,\n delta_acv_calculated_usd,\n pipeline_usd,\n created_by_sf_user_id,\n created_at,\n updated_by_sf_user_id,\n updated_at,\n is_extra_domain,\n is_deleted,\n row_rank_opp_plan\n FROM import_mc_deal_summary\n WHERE is_deleted = 0\n\n), opp_deal_types AS (\n\n SELECT\n opportunity_id,\n EXPLODE(SPLIT(deal_type_as_per_deal_summary,',')) AS deal_type\n FROM import_opportunity\n WHERE deal_type_as_per_deal_summary IS NOT NULL AND deal_type_as_per_deal_summary LIKE '%:%'\n\n), opp_deal_types_product_calculation AS (\n\n SELECT\n opportunity_id,\n deal_type,\n TRIM(SUBSTR(deal_type, 1, INSTR(deal_type,':')-1)) AS product\n FROM opp_deal_types\n\n), opp_product_deal_types AS (\n\n SELECT\n opportunity_id,\n product,\n TRIM(CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(deal_type)))) AS opportunity_product_deal_type\n FROM opp_deal_types_product_calculation\n GROUP BY 1,2\n\n), salesforce_deal_summary AS (\n\n SELECT\n deal_summary.deal_summary_id,\n deal_summary.opportunity_id,\n deal_summary.product,\n deal_summary.plan,\n deal_summary.opportunity_plan_id,\n deal_summary.deal_type_summary,\n deal_summary.currency_iso_code,\n deal_summary.status,\n deal_summary.renewal_from_opportunity_line,\n deal_summary.created_by_sf_user_id,\n user_created.sf_user_gk AS created_by_sf_user_gk,\n deal_summary.created_at,\n deal_summary.updated_by_sf_user_id,\n user_updated.sf_user_gk AS updated_by_sf_user_gk,\n deal_summary.updated_at,\n deal_summary.previous_acv_original_currency,\n deal_summary.current_acv_original_currency,\n deal_summary.previous_acv_usd,\n deal_summary.current_acv_usd,\n deal_summary.current_acv_for_retention_usd,\n deal_summary.current_acv_for_retention_original_currency,\n deal_summary.delta_acv_usd,\n deal_summary.delta_acv_for_retention_usd,\n deal_summary.delta_acv_calculated_usd,\n deal_summary.pipeline_usd,\n deal_type.opportunity_product_deal_type,\n opportunity.owner_id AS opportunity_owner_id,\n opportunity.type AS opportunity_type,\n opportunity.account_id AS sf_account_id, \n opportunity.is_company_expansion,\n opportunity.stage AS opportunity_stage, \n opportunity.start_date AS opportunity_start_date,\n line_item.contract_start_date,\n opportunity.deal_type_as_per_deal_summary AS opportunity_deal_type_as_per_deal_summary,\n opportunity.conversion_rate AS opportunity_conversion_rate,\n account.organization_id AS organization_id,\n account.organization_key AS organization_key,\n deal_summary.is_extra_domain,\n deal_summary.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM deal_summary_wo_deleted_rows AS deal_summary\n LEFT JOIN import_dim_sf_users AS user_created\n ON deal_summary.created_by_sf_user_id = user_created.sf_user_id\n AND deal_summary.created_at BETWEEN user_created.from_time AND COALESCE(user_created.to_time,'2999-01-01 00:00:00')\n LEFT JOIN import_dim_sf_users AS user_updated\n ON deal_summary.updated_by_sf_user_id = user_updated.sf_user_id\n AND deal_summary.updated_at BETWEEN user_updated.from_time AND COALESCE(user_updated.to_time,'2999-01-01 00:00:00')\n LEFT JOIN import_opportunity AS opportunity\n ON deal_summary.opportunity_id = opportunity.opportunity_id\n LEFT JOIN import_sf_account AS account\n ON opportunity.account_id = account.account_id\n LEFT JOIN opp_product_deal_types AS deal_type\n ON deal_summary.opportunity_id = deal_type.opportunity_id\n AND deal_summary.product = deal_type.product\n LEFT JOIN import_line_items AS line_item \n ON line_item.line_item_id = deal_summary.opportunity_plan_id\n WHERE deal_summary.row_rank_opp_plan = 1\n\n)\n\n-- Result\nSELECT *\nFROM salesforce_deal_summary", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__deal_summary_product": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__deal_summary_product", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.sql", "unique_id": "model.yoda.analytics___salesforce__deal_summary_product", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__deal_summary_product", "analytics___salesforce__deal_summary_product"], "alias": "analytics___salesforce__deal_summary_product", "checksum": {"name": "sha256", "checksum": "6a120d4714576dfb8e1c4b76170522debcaf480477ddf8c39594945291be441e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled table of product level from salesforce deal_summary_new object | PK & Granularity: product_id, opportunity_id", "columns": {"deal_summary_product_id": {"name": "deal_summary_product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency_iso_code": {"name": "currency_iso_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_owner_id": {"name": "opportunity_owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_type": {"name": "opportunity_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_stage": {"name": "opportunity_stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_id": {"name": "sf_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_company_expansion": {"name": "is_company_expansion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "opportunity_start_date": {"name": "opportunity_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "contract_start_date": {"name": "contract_start_date", "description": "line item contract start date - match staggered contract start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_deal_type_as_per_deal_summary": {"name": "opportunity_deal_type_as_per_deal_summary", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_conversion_rate": {"name": "opportunity_conversion_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type": {"name": "deal_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_current_acv": {"name": "total_current_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "total_delta_acv": {"name": "total_delta_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(20,2)"}, "total_previous_acv": {"name": "total_previous_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(20,2)"}, "new_acv": {"name": "new_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "old_acv": {"name": "old_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(20,2)"}, "new_plans": {"name": "new_plans", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_plans": {"name": "old_plans", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_acv": {"name": "previous_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(20,2)"}, "previous_acv_original_currency": {"name": "previous_acv_original_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(20,2)"}, "current_acv": {"name": "current_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "current_acv_original_currency": {"name": "current_acv_original_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "renewal_acv": {"name": "renewal_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "delta_acv": {"name": "delta_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(20,2)"}, "pipeline_usd": {"name": "pipeline_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_acv_open": {"name": "delta_acv_open", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(20,2)"}, "plans_added": {"name": "plans_added", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plans_removed": {"name": "plans_removed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_plans": {"name": "previous_plans", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_plans": {"name": "current_plans", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_gk": {"name": "created_by_sf_user_gk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_by_sf_user_id": {"name": "updated_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_by_sf_user_gk": {"name": "updated_by_sf_user_gk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_product_won": {"name": "is_product_won", "description": "If deal type contains successful then 1, if lost or churn then 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_crossell": {"name": "is_crossell", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082649.7430022, "relation_name": "dev_dkruh1.analytics___salesforce__deal_summary_product", "raw_code": "-- Import\nWITH import_salesforce_deal_summary AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce__deal_summary') }}\n\n-- Logic\n\n), ds_attributes_opp_product_rank AS (\n\n SELECT\n SHA2(CONCAT(opportunity_id, product),256) AS deal_summary_product_id,\n opportunity_id,\n product,\n deal_type_summary,\n currency_iso_code,\n opportunity_product_deal_type,\n opportunity_owner_id,\n opportunity_type,\n opportunity_stage,\n sf_account_id,\n opportunity_start_date,\n contract_start_date,\n opportunity_deal_type_as_per_deal_summary,\n opportunity_conversion_rate,\n organization_id,\n organization_key,\n created_by_sf_user_id,\n created_by_sf_user_gk,\n created_at,\n updated_by_sf_user_id,\n updated_by_sf_user_gk,\n updated_at,\n ROW_NUMBER() OVER (PARTITION BY opportunity_id, product ORDER BY created_at DESC, is_extra_domain, current_acv_usd DESC, deal_summary_id DESC) AS row_rank_opp_product,\n is_company_expansion,\n is_deleted\n FROM import_salesforce_deal_summary\n\n), ds_attributes_one_row_opp_product AS (\n\n SELECT *\n FROM ds_attributes_opp_product_rank\n WHERE row_rank_opp_product = 1\n\n), opp_and_product_agg_concat_added AS (\n\n SELECT\n opportunity_id,\n product,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS plans_added\n FROM import_salesforce_deal_summary\n WHERE opportunity_plan_id IS NOT NULL\n GROUP BY 1,2\n\n), opp_and_product_agg_concat_removed AS (\n\n SELECT\n opportunity_id,\n product,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS plans_removed\n FROM import_salesforce_deal_summary\n WHERE previous_acv_usd <> 0\n AND current_acv_for_retention_usd = 0\n GROUP BY 1,2\n\n), opp_and_product_agg_concat_current AS (\n\n SELECT\n opportunity_id,\n product,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS current_plans\n FROM import_salesforce_deal_summary\n WHERE current_acv_for_retention_usd <> 0\n OR (LOWER(product) = 'sms'\n AND opportunity_plan_id IS NOT NULL\n AND LOWER(opportunity_stage) NOT IN ('lost after won','lost'))\n GROUP BY 1,2\n \n), opp_and_product_agg_concat_previous AS (\n\n SELECT\n opportunity_id,\n product,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS previous_plans\n FROM import_salesforce_deal_summary\n WHERE previous_acv_usd <> 0\n GROUP BY 1,2\n \n), opp_and_product_agg_acv AS (\n\n SELECT\n opportunity_id,\n product,\n SUM(IF(ISNOTNULL(opportunity_plan_id), current_acv_for_retention_usd, 0)) AS current_acv,\n SUM(IF(ISNOTNULL(opportunity_plan_id), current_acv_for_retention_original_currency, 0)) AS current_acv_original_currency,\n NVL(SUM(delta_acv_calculated_usd), 0) AS delta_acv,\n NVL(SUM(pipeline_usd), 0) AS pipeline_usd,\n NVL(SUM(previous_acv_usd), 0) AS previous_acv,\n NVL(SUM(previous_acv_original_currency), 0) AS previous_acv_original_currency,\n SUM(IF(ISNOTNULL(opportunity_plan_id), current_acv_for_retention_usd, 0)) AS renewal_acv,\n NVL(SUM(previous_acv_usd), 0) AS old_acv,\n NVL(SUM(delta_acv_calculated_usd), 0) AS delta_acv_open\n FROM import_salesforce_deal_summary\n GROUP BY 1,2\n\n), opp_agg_concat_new_plans AS (\n\n SELECT\n opportunity_id,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS new_plans\n FROM import_salesforce_deal_summary\n WHERE opportunity_plan_id IS NOT NULL\n GROUP BY 1\n\n), opp_agg_concat_old_plans AS (\n\n SELECT\n opportunity_id,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS old_plans\n FROM import_salesforce_deal_summary\n WHERE previous_acv_usd <> 0\n GROUP BY 1\n\n), opp_agg_acv AS (\n\n SELECT\n opportunity_id,\n COALESCE(SUM(CASE WHEN opportunity_plan_id IS NOT NULL THEN current_acv_for_retention_usd ELSE 0 END),0) AS total_current_acv,\n COALESCE(SUM(delta_acv_calculated_usd),0) AS total_delta_acv,\n COALESCE(SUM(previous_acv_usd),0) AS total_previous_acv,\n COALESCE(SUM(CASE WHEN opportunity_plan_id IS NOT NULL THEN current_acv_for_retention_usd ELSE 0 END),0) AS new_acv,\n COALESCE(SUM(previous_acv_usd),0) AS old_acv\n FROM import_salesforce_deal_summary\n GROUP BY 1\n\n), deal_summary_product AS (\n\n SELECT\n ds_attributes.deal_summary_product_id,\n ds_attributes.opportunity_id,\n ds_attributes.product,\n IF(LOWER(ds_attributes.product) IN ('reviews', 'vms', 'insights'), 'UGC', ds_attributes.product) AS product_family_group,\n ds_attributes.currency_iso_code,\n ds_attributes.opportunity_owner_id,\n ds_attributes.opportunity_type,\n ds_attributes.opportunity_stage,\n ds_attributes.sf_account_id,\n ds_attributes.is_company_expansion,\n ds_attributes.opportunity_start_date,\n ds_attributes.contract_start_date,\n ds_attributes.opportunity_deal_type_as_per_deal_summary,\n ds_attributes.opportunity_conversion_rate,\n ds_attributes.organization_id,\n ds_attributes.organization_key,\n ds_attributes.opportunity_product_deal_type AS deal_type,\n opp_acv.total_current_acv,\n opp_acv.total_delta_acv,\n opp_acv.total_previous_acv,\n opp_acv.new_acv,\n opp_acv.old_acv,\n opp_new_pack.new_plans,\n opp_old_pack.old_plans,\n opp_and_prod_acv.previous_acv,\n opp_and_prod_acv.previous_acv_original_currency,\n opp_and_prod_acv.current_acv,\n opp_and_prod_acv.current_acv_original_currency,\n opp_and_prod_acv.renewal_acv,\n opp_and_prod_acv.delta_acv,\n opp_and_prod_acv.pipeline_usd,\n opp_and_prod_acv.delta_acv_open,\n opp_and_prod_added.plans_added,\n opp_and_prod_removed.plans_removed,\n opp_and_prod_previous.previous_plans,\n opp_and_prod_current.current_plans,\n ds_attributes.created_by_sf_user_id,\n ds_attributes.created_by_sf_user_gk,\n ds_attributes.created_at,\n ds_attributes.updated_by_sf_user_id,\n ds_attributes.updated_by_sf_user_gk,\n ds_attributes.updated_at,\n CASE WHEN LOWER(ds_attributes.opportunity_product_deal_type) LIKE '%successful%' THEN 1\n WHEN LOWER(ds_attributes.opportunity_product_deal_type) LIKE '%lost%' OR LOWER(ds_attributes.opportunity_product_deal_type) LIKE '%churn%' THEN 0 \n ELSE NULL END AS is_product_won,\n SMALLINT(LOWER(ds_attributes.opportunity_product_deal_type) LIKE '%crossell%') AS is_crossell,\n ds_attributes.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM ds_attributes_one_row_opp_product AS ds_attributes\n INNER JOIN opp_agg_acv AS opp_acv\n ON ds_attributes.opportunity_id = opp_acv.opportunity_id\n INNER JOIN opp_and_product_agg_acv AS opp_and_prod_acv\n ON ds_attributes.opportunity_id = opp_and_prod_acv.opportunity_id\n AND ds_attributes.product = opp_and_prod_acv.product\n LEFT JOIN opp_agg_concat_new_plans AS opp_new_pack\n ON ds_attributes.opportunity_id = opp_new_pack.opportunity_id\n LEFT JOIN opp_agg_concat_old_plans AS opp_old_pack\n ON ds_attributes.opportunity_id = opp_old_pack.opportunity_id\n LEFT JOIN opp_and_product_agg_concat_added AS opp_and_prod_added\n ON ds_attributes.opportunity_id = opp_and_prod_added.opportunity_id\n AND ds_attributes.product = opp_and_prod_added.product\n LEFT JOIN opp_and_product_agg_concat_removed AS opp_and_prod_removed\n ON ds_attributes.opportunity_id = opp_and_prod_removed.opportunity_id\n AND ds_attributes.product = opp_and_prod_removed.product\n LEFT JOIN opp_and_product_agg_concat_current AS opp_and_prod_current\n ON ds_attributes.opportunity_id = opp_and_prod_current.opportunity_id\n AND ds_attributes.product = opp_and_prod_current.product\n LEFT JOIN opp_and_product_agg_concat_previous AS opp_and_prod_previous\n ON ds_attributes.opportunity_id = opp_and_prod_previous.opportunity_id\n AND ds_attributes.product = opp_and_prod_previous.product\n\n)\n\n-- Result\nSELECT *\nFROM deal_summary_product", "language": "sql", "refs": [{"name": "analytics___salesforce__deal_summary", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__deal_summary"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.sql", "compiled": true, "compiled_code": "-- Import\nWITH import_salesforce_deal_summary AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce__deal_summary\n\n-- Logic\n\n), ds_attributes_opp_product_rank AS (\n\n SELECT\n SHA2(CONCAT(opportunity_id, product),256) AS deal_summary_product_id,\n opportunity_id,\n product,\n deal_type_summary,\n currency_iso_code,\n opportunity_product_deal_type,\n opportunity_owner_id,\n opportunity_type,\n opportunity_stage,\n sf_account_id,\n opportunity_start_date,\n contract_start_date,\n opportunity_deal_type_as_per_deal_summary,\n opportunity_conversion_rate,\n organization_id,\n organization_key,\n created_by_sf_user_id,\n created_by_sf_user_gk,\n created_at,\n updated_by_sf_user_id,\n updated_by_sf_user_gk,\n updated_at,\n ROW_NUMBER() OVER (PARTITION BY opportunity_id, product ORDER BY created_at DESC, is_extra_domain, current_acv_usd DESC, deal_summary_id DESC) AS row_rank_opp_product,\n is_company_expansion,\n is_deleted\n FROM import_salesforce_deal_summary\n\n), ds_attributes_one_row_opp_product AS (\n\n SELECT *\n FROM ds_attributes_opp_product_rank\n WHERE row_rank_opp_product = 1\n\n), opp_and_product_agg_concat_added AS (\n\n SELECT\n opportunity_id,\n product,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS plans_added\n FROM import_salesforce_deal_summary\n WHERE opportunity_plan_id IS NOT NULL\n GROUP BY 1,2\n\n), opp_and_product_agg_concat_removed AS (\n\n SELECT\n opportunity_id,\n product,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS plans_removed\n FROM import_salesforce_deal_summary\n WHERE previous_acv_usd <> 0\n AND current_acv_for_retention_usd = 0\n GROUP BY 1,2\n\n), opp_and_product_agg_concat_current AS (\n\n SELECT\n opportunity_id,\n product,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS current_plans\n FROM import_salesforce_deal_summary\n WHERE current_acv_for_retention_usd <> 0\n OR (LOWER(product) = 'sms'\n AND opportunity_plan_id IS NOT NULL\n AND LOWER(opportunity_stage) NOT IN ('lost after won','lost'))\n GROUP BY 1,2\n \n), opp_and_product_agg_concat_previous AS (\n\n SELECT\n opportunity_id,\n product,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS previous_plans\n FROM import_salesforce_deal_summary\n WHERE previous_acv_usd <> 0\n GROUP BY 1,2\n \n), opp_and_product_agg_acv AS (\n\n SELECT\n opportunity_id,\n product,\n SUM(IF(ISNOTNULL(opportunity_plan_id), current_acv_for_retention_usd, 0)) AS current_acv,\n SUM(IF(ISNOTNULL(opportunity_plan_id), current_acv_for_retention_original_currency, 0)) AS current_acv_original_currency,\n NVL(SUM(delta_acv_calculated_usd), 0) AS delta_acv,\n NVL(SUM(pipeline_usd), 0) AS pipeline_usd,\n NVL(SUM(previous_acv_usd), 0) AS previous_acv,\n NVL(SUM(previous_acv_original_currency), 0) AS previous_acv_original_currency,\n SUM(IF(ISNOTNULL(opportunity_plan_id), current_acv_for_retention_usd, 0)) AS renewal_acv,\n NVL(SUM(previous_acv_usd), 0) AS old_acv,\n NVL(SUM(delta_acv_calculated_usd), 0) AS delta_acv_open\n FROM import_salesforce_deal_summary\n GROUP BY 1,2\n\n), opp_agg_concat_new_plans AS (\n\n SELECT\n opportunity_id,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS new_plans\n FROM import_salesforce_deal_summary\n WHERE opportunity_plan_id IS NOT NULL\n GROUP BY 1\n\n), opp_agg_concat_old_plans AS (\n\n SELECT\n opportunity_id,\n CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(plan))) AS old_plans\n FROM import_salesforce_deal_summary\n WHERE previous_acv_usd <> 0\n GROUP BY 1\n\n), opp_agg_acv AS (\n\n SELECT\n opportunity_id,\n COALESCE(SUM(CASE WHEN opportunity_plan_id IS NOT NULL THEN current_acv_for_retention_usd ELSE 0 END),0) AS total_current_acv,\n COALESCE(SUM(delta_acv_calculated_usd),0) AS total_delta_acv,\n COALESCE(SUM(previous_acv_usd),0) AS total_previous_acv,\n COALESCE(SUM(CASE WHEN opportunity_plan_id IS NOT NULL THEN current_acv_for_retention_usd ELSE 0 END),0) AS new_acv,\n COALESCE(SUM(previous_acv_usd),0) AS old_acv\n FROM import_salesforce_deal_summary\n GROUP BY 1\n\n), deal_summary_product AS (\n\n SELECT\n ds_attributes.deal_summary_product_id,\n ds_attributes.opportunity_id,\n ds_attributes.product,\n IF(LOWER(ds_attributes.product) IN ('reviews', 'vms', 'insights'), 'UGC', ds_attributes.product) AS product_family_group,\n ds_attributes.currency_iso_code,\n ds_attributes.opportunity_owner_id,\n ds_attributes.opportunity_type,\n ds_attributes.opportunity_stage,\n ds_attributes.sf_account_id,\n ds_attributes.is_company_expansion,\n ds_attributes.opportunity_start_date,\n ds_attributes.contract_start_date,\n ds_attributes.opportunity_deal_type_as_per_deal_summary,\n ds_attributes.opportunity_conversion_rate,\n ds_attributes.organization_id,\n ds_attributes.organization_key,\n ds_attributes.opportunity_product_deal_type AS deal_type,\n opp_acv.total_current_acv,\n opp_acv.total_delta_acv,\n opp_acv.total_previous_acv,\n opp_acv.new_acv,\n opp_acv.old_acv,\n opp_new_pack.new_plans,\n opp_old_pack.old_plans,\n opp_and_prod_acv.previous_acv,\n opp_and_prod_acv.previous_acv_original_currency,\n opp_and_prod_acv.current_acv,\n opp_and_prod_acv.current_acv_original_currency,\n opp_and_prod_acv.renewal_acv,\n opp_and_prod_acv.delta_acv,\n opp_and_prod_acv.pipeline_usd,\n opp_and_prod_acv.delta_acv_open,\n opp_and_prod_added.plans_added,\n opp_and_prod_removed.plans_removed,\n opp_and_prod_previous.previous_plans,\n opp_and_prod_current.current_plans,\n ds_attributes.created_by_sf_user_id,\n ds_attributes.created_by_sf_user_gk,\n ds_attributes.created_at,\n ds_attributes.updated_by_sf_user_id,\n ds_attributes.updated_by_sf_user_gk,\n ds_attributes.updated_at,\n CASE WHEN LOWER(ds_attributes.opportunity_product_deal_type) LIKE '%successful%' THEN 1\n WHEN LOWER(ds_attributes.opportunity_product_deal_type) LIKE '%lost%' OR LOWER(ds_attributes.opportunity_product_deal_type) LIKE '%churn%' THEN 0 \n ELSE NULL END AS is_product_won,\n SMALLINT(LOWER(ds_attributes.opportunity_product_deal_type) LIKE '%crossell%') AS is_crossell,\n ds_attributes.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM ds_attributes_one_row_opp_product AS ds_attributes\n INNER JOIN opp_agg_acv AS opp_acv\n ON ds_attributes.opportunity_id = opp_acv.opportunity_id\n INNER JOIN opp_and_product_agg_acv AS opp_and_prod_acv\n ON ds_attributes.opportunity_id = opp_and_prod_acv.opportunity_id\n AND ds_attributes.product = opp_and_prod_acv.product\n LEFT JOIN opp_agg_concat_new_plans AS opp_new_pack\n ON ds_attributes.opportunity_id = opp_new_pack.opportunity_id\n LEFT JOIN opp_agg_concat_old_plans AS opp_old_pack\n ON ds_attributes.opportunity_id = opp_old_pack.opportunity_id\n LEFT JOIN opp_and_product_agg_concat_added AS opp_and_prod_added\n ON ds_attributes.opportunity_id = opp_and_prod_added.opportunity_id\n AND ds_attributes.product = opp_and_prod_added.product\n LEFT JOIN opp_and_product_agg_concat_removed AS opp_and_prod_removed\n ON ds_attributes.opportunity_id = opp_and_prod_removed.opportunity_id\n AND ds_attributes.product = opp_and_prod_removed.product\n LEFT JOIN opp_and_product_agg_concat_current AS opp_and_prod_current\n ON ds_attributes.opportunity_id = opp_and_prod_current.opportunity_id\n AND ds_attributes.product = opp_and_prod_current.product\n LEFT JOIN opp_and_product_agg_concat_previous AS opp_and_prod_previous\n ON ds_attributes.opportunity_id = opp_and_prod_previous.opportunity_id\n AND ds_attributes.product = opp_and_prod_previous.product\n\n)\n\n-- Result\nSELECT *\nFROM deal_summary_product", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__lead": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__lead", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.sql", "unique_id": "model.yoda.analytics___salesforce__lead", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__lead", "analytics___salesforce__lead"], "alias": "analytics___salesforce__lead", "checksum": {"name": "sha256", "checksum": "c9940a6e9cb6f8c0e4875c6bfa0e7e4b127b48ae8b04636978f31b1171ff6b8d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled table over salesforce lead view", "columns": {"lead_id": {"name": "lead_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_website": {"name": "lead_website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_domain": {"name": "lead_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_title": {"name": "lead_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_full_name": {"name": "lead_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_email": {"name": "lead_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_source": {"name": "lead_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_source": {"name": "utm_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_medium": {"name": "utm_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_campaign": {"name": "utm_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_status": {"name": "lead_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_type": {"name": "lead_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_phone": {"name": "lead_phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_referrer": {"name": "lead_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_industry": {"name": "lead_industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_platform": {"name": "lead_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_sdr": {"name": "lead_sdr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_id": {"name": "segment_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_account_id": {"name": "converted_account_id", "description": "account id of converted lead", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_contact_id": {"name": "converted_contact_id", "description": "contact id of converted lead", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_opportunity_id": {"name": "converted_opportunity_id", "description": "opportunity id of converted lead", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_first_campaign": {"name": "lead_first_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_first_campaign_name": {"name": "lead_first_campaign_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_first_campaign_type": {"name": "lead_first_campaign_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_rank": {"name": "prospect_fit_rank", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_reason": {"name": "prospect_fit_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_rank": {"name": "prospect_intent_rank", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_reason": {"name": "prospect_intent_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_product_of_last_subscription_event": {"name": "last_product_of_last_subscription_event", "description": "indicate what was the last product event before the trigger", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_subscription_event_change": {"name": "last_subscription_event_change", "description": "indicate what was the product in the last product event before the trigger", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "booking_status_chilipiper": {"name": "booking_status_chilipiper", "description": "status for lead meeting booked with chilli piper", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_activity_at": {"name": "first_activity_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lead_mql_at": {"name": "lead_mql_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lead_created_at": {"name": "lead_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lead_converted_at": {"name": "lead_converted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_converted": {"name": "is_converted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_interested_in_reviews": {"name": "is_interested_in_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_interested_in_loyalty": {"name": "is_interested_in_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_interested_in_sms": {"name": "is_interested_in_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_interested_in_vms": {"name": "is_interested_in_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_interested_in_subscription": {"name": "is_interested_in_subscription", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082649.844313, "relation_name": "dev_dkruh1.analytics___salesforce__lead", "raw_code": "-- Import\nWITH import_salesforce_stg__mc_lead AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_lead') }}\n\n), \n\n-- Logic\n\nsalesforce__lead AS (\n SELECT\n lead_id,\n lead_website,\n lead_domain,\n lead_title,\n lead_full_name,\n lead_email,\n lead_source,\n utm_source,\n utm_medium,\n utm_campaign,\n lead_status,\n lead_type,\n lead_phone,\n country,\n lead_referrer,\n lead_industry,\n lead_platform,\n lead_sdr,\n segment_id,\n converted_account_id,\n converted_contact_id,\n converted_opportunity_id,\n organization_key,\n lead_first_campaign,\n lead_first_campaign_name,\n lead_first_campaign_type,\n prospect_fit_rank,\n prospect_fit_reason,\n prospect_intent_rank,\n prospect_intent_reason,\n last_product_of_last_subscription_event,\n last_subscription_event_change,\n booking_status_chilipiper,\n first_activity_at,\n lead_mql_at,\n lead_created_at,\n lead_converted_at,\n is_converted,\n is_deleted,\n is_interested_in_reviews,\n is_interested_in_loyalty,\n is_interested_in_sms,\n is_interested_in_vms,\n is_interested_in_subscription,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg__mc_lead\n\n)\n\n-- Result\nSELECT *\nFROM salesforce__lead", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.sql", "compiled": true, "compiled_code": "-- Import\nWITH import_salesforce_stg__mc_lead AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_lead\n\n), \n\n-- Logic\n\nsalesforce__lead AS (\n SELECT\n lead_id,\n lead_website,\n lead_domain,\n lead_title,\n lead_full_name,\n lead_email,\n lead_source,\n utm_source,\n utm_medium,\n utm_campaign,\n lead_status,\n lead_type,\n lead_phone,\n country,\n lead_referrer,\n lead_industry,\n lead_platform,\n lead_sdr,\n segment_id,\n converted_account_id,\n converted_contact_id,\n converted_opportunity_id,\n organization_key,\n lead_first_campaign,\n lead_first_campaign_name,\n lead_first_campaign_type,\n prospect_fit_rank,\n prospect_fit_reason,\n prospect_intent_rank,\n prospect_intent_reason,\n last_product_of_last_subscription_event,\n last_subscription_event_change,\n booking_status_chilipiper,\n first_activity_at,\n lead_mql_at,\n lead_created_at,\n lead_converted_at,\n is_converted,\n is_deleted,\n is_interested_in_reviews,\n is_interested_in_loyalty,\n is_interested_in_sms,\n is_interested_in_vms,\n is_interested_in_subscription,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg__mc_lead\n\n)\n\n-- Result\nSELECT *\nFROM salesforce__lead", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__live_chat_transcript": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__live_chat_transcript", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.sql", "unique_id": "model.yoda.analytics___salesforce__live_chat_transcript", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__live_chat_transcript", "analytics___salesforce__live_chat_transcript"], "alias": "analytics___salesforce__live_chat_transcript", "checksum": {"name": "sha256", "checksum": "00c73c337644b88570bea0c60e5f7a68c656291e306c6fb2106d947016e111a9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled table which presents all of the live chats PK : chat_transcript_name, chat_id", "columns": {"chat_id": {"name": "chat_id", "description": "live chat id - unique value - PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "SF account ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "chat requester app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_id": {"name": "contact_id", "description": "SF contact id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_body": {"name": "chat_body", "description": "chat body - chat full transcript", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "supervisor_transcript_body": {"name": "supervisor_transcript_body", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "case_id": {"name": "case_id", "description": "related case ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_key": {"name": "chat_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_owner_id": {"name": "chat_owner_id", "description": "sf user id - agent id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_started_at": {"name": "chat_started_at", "description": "chat started at - full date and timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "chat_ended_at": {"name": "chat_ended_at", "description": "chat ended at - full date and timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "chat_abandoned_seconds": {"name": "chat_abandoned_seconds", "description": "chat abandoned time in seconds - only if the requestor abandoned", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chat_duration_seconds": {"name": "chat_duration_seconds", "description": "chat duration in seconds - only if the requestor didn't abandon", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chat_waiting_time_seconds": {"name": "chat_waiting_time_seconds", "description": "total waiting time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chat_ended_by": {"name": "chat_ended_by", "description": "chat ended by - Agent/Visitor", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_status": {"name": "chat_status", "description": "chat status - InProgress/Missed/Waiting/Completed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_topic": {"name": "chat_topic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "created by SF user ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "chat transcript created at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_modified_by_sf_user_id": {"name": "last_modified_by_sf_user_id", "description": "last modified by sf user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_modified_at": {"name": "last_modified_at", "description": "last modified date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "average_response_time_operator": {"name": "average_response_time_operator", "description": "avg time to response - operator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_response_time_visitor": {"name": "average_response_time_visitor", "description": "avg time to response - requestor", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "visitor_message_count": {"name": "visitor_message_count", "description": "visitor message cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "team_id_15_character": {"name": "team_id_15_character", "description": "case team id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team_name": {"name": "team_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "live_chat_visitor_id": {"name": "live_chat_visitor_id", "description": "Visitor ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_transcript_name": {"name": "chat_transcript_name", "description": "PK - 8 digit unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "request_time": {"name": "request_time", "description": "chat request time - good for both abandoned and not abadoned chats", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "operator_message_count": {"name": "operator_message_count", "description": "operator message count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_concern_addressed": {"name": "is_concern_addressed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_chatbot_session": {"name": "is_chatbot_session", "description": "is chatbot session - 1/0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "is deleted - 1/0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082649.917055, "relation_name": "dev_dkruh1.analytics___salesforce__live_chat_transcript", "raw_code": "-- Import --\n\nWITH import_salesforce_stg__mc_live_chat_transcript AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_live_chat_transcript') }}\n\n), import_salesforce_chat_teams AS (\n\n SELECT *\n FROM (VALUES ('5733W0000008OJc','Tier 1 - Swell Growth'),\n ('5733W0000008OJh','Tier 1 - Swell Premium'),\n ('5733W000000k9bN','SMS High Touch Support'),\n ('5733W000000k9bS','SMS Low Touch Support'),\n ('5733W0000008OJr','Tier 1 - Enterprise'),\n ('5733W0000008OK1','Tier 1 - Premium'),\n ('5733W0000008OJw','Tier 1 - Growth'),\n ('5737Q0000004MZJ','Subscriptions'),\n ('5737Q0000004MZO','Subscriptions'),\n ('5737Q0000004Qtg','Customer Care') AS (team_id,team_name))\n), \n\n-- Logic -- \n\nsalseforce__live_chat_transcript AS (\n\n SELECT \n live_chat.chat_id,\n live_chat.account_id,\n live_chat.app_key,\n live_chat.contact_id,\n live_chat.chat_body,\n live_chat.supervisor_transcript_body,\n live_chat.case_id,\n live_chat.chat_key,\n live_chat.chat_owner_id,\n live_chat.chat_started_at,\n live_chat.chat_ended_at,\n live_chat.chat_abandoned_seconds,\n live_chat.chat_duration_seconds,\n live_chat.chat_waiting_time_seconds,\n live_chat.chat_ended_by,\n live_chat.chat_status,\n live_chat.chat_topic,\n live_chat.created_by_sf_user_id,\n live_chat.created_at,\n live_chat.last_modified_by_sf_user_id,\n live_chat.last_modified_at,\n live_chat.average_response_time_operator,\n live_chat.average_response_time_visitor,\n live_chat.visitor_message_count,\n live_chat.team_id_15_character,\n teams.team_name,\n live_chat.live_chat_visitor_id,\n live_chat.chat_transcript_name,\n live_chat.request_time,\n live_chat.operator_message_count,\n live_chat.is_concern_addressed,\n live_chat.is_chatbot_session,\n live_chat.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg__mc_live_chat_transcript AS live_chat\n LEFT JOIN import_salesforce_chat_teams AS teams\n ON team_id_15_character = team_id \n \n)\n\nSELECT * \nFROM salseforce__live_chat_transcript", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_live_chat_transcript", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_stg__mc_live_chat_transcript AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_live_chat_transcript\n\n), import_salesforce_chat_teams AS (\n\n SELECT *\n FROM (VALUES ('5733W0000008OJc','Tier 1 - Swell Growth'),\n ('5733W0000008OJh','Tier 1 - Swell Premium'),\n ('5733W000000k9bN','SMS High Touch Support'),\n ('5733W000000k9bS','SMS Low Touch Support'),\n ('5733W0000008OJr','Tier 1 - Enterprise'),\n ('5733W0000008OK1','Tier 1 - Premium'),\n ('5733W0000008OJw','Tier 1 - Growth'),\n ('5737Q0000004MZJ','Subscriptions'),\n ('5737Q0000004MZO','Subscriptions'),\n ('5737Q0000004Qtg','Customer Care') AS (team_id,team_name))\n), \n\n-- Logic -- \n\nsalseforce__live_chat_transcript AS (\n\n SELECT \n live_chat.chat_id,\n live_chat.account_id,\n live_chat.app_key,\n live_chat.contact_id,\n live_chat.chat_body,\n live_chat.supervisor_transcript_body,\n live_chat.case_id,\n live_chat.chat_key,\n live_chat.chat_owner_id,\n live_chat.chat_started_at,\n live_chat.chat_ended_at,\n live_chat.chat_abandoned_seconds,\n live_chat.chat_duration_seconds,\n live_chat.chat_waiting_time_seconds,\n live_chat.chat_ended_by,\n live_chat.chat_status,\n live_chat.chat_topic,\n live_chat.created_by_sf_user_id,\n live_chat.created_at,\n live_chat.last_modified_by_sf_user_id,\n live_chat.last_modified_at,\n live_chat.average_response_time_operator,\n live_chat.average_response_time_visitor,\n live_chat.visitor_message_count,\n live_chat.team_id_15_character,\n teams.team_name,\n live_chat.live_chat_visitor_id,\n live_chat.chat_transcript_name,\n live_chat.request_time,\n live_chat.operator_message_count,\n live_chat.is_concern_addressed,\n live_chat.is_chatbot_session,\n live_chat.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg__mc_live_chat_transcript AS live_chat\n LEFT JOIN import_salesforce_chat_teams AS teams\n ON team_id_15_character = team_id \n \n)\n\nSELECT * \nFROM salseforce__live_chat_transcript", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__mql": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__mql", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.sql", "unique_id": "model.yoda.analytics___salesforce__mql", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__mql", "analytics___salesforce__mql"], "alias": "analytics___salesforce__mql", "checksum": {"name": "sha256", "checksum": "926b401be9ec2f2a9fda9a5d6956e173397ef5e29a6dc8c2c6dde4ec25201a08"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A modeled table of the salesforce object mql | PK & Granularity: mql_id", "columns": {"mql_id": {"name": "mql_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "sf account id of corresponding account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_id": {"name": "contact_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_id": {"name": "lead_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_owner": {"name": "sf_owner", "description": "salesforce user id of mql owner", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_channel": {"name": "demand_gen_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "Email address of the lead or contact related to the MQL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_territory": {"name": "current_territory", "description": "Field to show territory code based on Account Billing Country Code or Lead Country Code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recent_assignment_sub_reason": {"name": "recent_assignment_sub_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recent_assignment_reason": {"name": "recent_assignment_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_estimated_monthly_orders": {"name": "marketo_estimated_monthly_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdr_sales_estimated_monthly_orders": {"name": "isdr_sales_estimated_monthly_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "similarweb_traffic": {"name": "similarweb_traffic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "time_to_first_response": {"name": "time_to_first_response", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_interest": {"name": "product_interest", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_platform": {"name": "is_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ss": {"name": "is_ss", "description": "If corresponding lead's Package_category contains 'ss' then 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_rad": {"name": "is_rad", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_product_qualified": {"name": "is_product_qualified", "description": "Indicates if the mql comes from product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "sf account id of corresponding account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082649.9750876, "relation_name": "dev_dkruh1.analytics___salesforce__mql", "raw_code": "-- Import --\n\nWITH import_salesforce_stg_mc_mql AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_mql') }}\n\n), import_salesforce_contact AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_contact') }}\n\n), import_salesforce_lead (\n\n SELECT * FROM {{ ref('analytics___salesforce__lead') }}\n\n-- Logic --\n\n), salesforce_mql_res AS (\n\n SELECT\n mql.mql_id,\n NVL(lead.converted_account_id, contact.account_id) AS account_id,\n mql.contact_id,\n mql.lead_id,\n mql.sf_owner,\n mql.demand_gen_channel,\n mql.email,\n mql.current_territory,\n mql.recent_assignment_sub_reason,\n mql.recent_assignment_reason,\n mql.marketo_estimated_monthly_orders,\n mql.isdr_sales_estimated_monthly_orders,\n mql.similarweb_traffic,\n mql.time_to_first_response,\n mql.product_interest,\n mql.is_loyalty,\n mql.is_reviews,\n mql.is_sms,\n mql.is_vms,\n mql.is_platform,\n mql.is_subscriptions,\n mql.is_email,\n mql.is_ss,\n mql.is_rad,\n mql.is_product_qualified,\n mql.is_deleted,\n mql.created_date,\n mql.created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg_mc_mql AS mql\n LEFT JOIN import_salesforce_contact AS contact\n ON mql.contact_id = contact.contact_id\n LEFT JOIN import_salesforce_lead AS lead\n ON mql.lead_id = lead.lead_id\n\n)\n\n-- result --\n\nSELECT * FROM salesforce_mql_res", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_mql", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_contact", "package": null, "version": null}, {"name": "analytics___salesforce__lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_mql", "model.yoda.analytics___salesforce_stg__mc_contact", "model.yoda.analytics___salesforce__lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_stg_mc_mql AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_mql\n\n), import_salesforce_contact AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_contact\n\n), import_salesforce_lead (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__lead\n\n-- Logic --\n\n), salesforce_mql_res AS (\n\n SELECT\n mql.mql_id,\n NVL(lead.converted_account_id, contact.account_id) AS account_id,\n mql.contact_id,\n mql.lead_id,\n mql.sf_owner,\n mql.demand_gen_channel,\n mql.email,\n mql.current_territory,\n mql.recent_assignment_sub_reason,\n mql.recent_assignment_reason,\n mql.marketo_estimated_monthly_orders,\n mql.isdr_sales_estimated_monthly_orders,\n mql.similarweb_traffic,\n mql.time_to_first_response,\n mql.product_interest,\n mql.is_loyalty,\n mql.is_reviews,\n mql.is_sms,\n mql.is_vms,\n mql.is_platform,\n mql.is_subscriptions,\n mql.is_email,\n mql.is_ss,\n mql.is_rad,\n mql.is_product_qualified,\n mql.is_deleted,\n mql.created_date,\n mql.created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg_mc_mql AS mql\n LEFT JOIN import_salesforce_contact AS contact\n ON mql.contact_id = contact.contact_id\n LEFT JOIN import_salesforce_lead AS lead\n ON mql.lead_id = lead.lead_id\n\n)\n\n-- result --\n\nSELECT * FROM salesforce_mql_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__new_organization": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__new_organization", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.sql", "unique_id": "model.yoda.analytics___salesforce__new_organization", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__new_organization", "analytics___salesforce__new_organization"], "alias": "analytics___salesforce__new_organization", "checksum": {"name": "sha256", "checksum": "52aca112b2fb18b1b82e6af983c9dfd784db8fd77112e4339932ac742ea47883"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "A modeled view of organizations that do not exist in Salesforce but has paid plan | PK & Granularity: Organization_Key__c", "columns": {"Organization_Key__c": {"name": "Organization_Key__c", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Name": {"name": "Name", "description": "Account's name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082650.0067387, "relation_name": "dev_dkruh1.analytics___salesforce__new_organization", "raw_code": "{{ config( materialized = 'view' ) }}\n\n-- Import --\n\nWITH import_organization_plan_daily AS (\n\n SELECT * FROM {{ ref('analytics___platform__organization_plan_daily') }}\n\n), import_salesforce_account AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__account_full') }}\n\n), import_platform_organization AS(\n\n SELECT * FROM {{ ref('analytics___platform__organization') }}\n\n-- Logic --\n\n), current_paying_organization AS (\n\n SELECT DISTINCT\n organization_key\n FROM import_organization_plan_daily\n WHERE date = (SELECT MAX(date) FROM import_organization_plan_daily)\n AND is_free = 0\n\n), organization_wo_sf_account AS (\n\n SELECT\n organization_key AS Organization_Key__c\n FROM current_paying_organization\n\n EXCEPT ALL \n\n SELECT\n Organization_Key__c\n FROM import_salesforce_account\n\n), organization_enrichment AS (\n\n SELECT\n new_account.Organization_Key__c,\n SPLIT(REPLACE(REPLACE(REPLACE(organization.organization_name, 'http://', ''), 'https://', ''), 'www.', ''), '\\\\.')[0] AS Name\n FROM organization_wo_sf_account AS new_account\n LEFT JOIN import_platform_organization AS organization\n ON new_account.Organization_Key__c = organization.organization_key\n\n)\n\n-- Result -- \n\nSELECT * FROM organization_enrichment", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}, {"name": "analytics___salesforce_stg__account_full", "package": null, "version": null}, {"name": "analytics___platform__organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___salesforce_stg__account_full", "model.yoda.analytics___platform__organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_organization_plan_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__organization_plan_daily\n\n), import_salesforce_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__account_full\n\n), import_platform_organization AS(\n\n SELECT * FROM dev_dkruh1.analytics___platform__organization\n\n-- Logic --\n\n), current_paying_organization AS (\n\n SELECT DISTINCT\n organization_key\n FROM import_organization_plan_daily\n WHERE date = (SELECT MAX(date) FROM import_organization_plan_daily)\n AND is_free = 0\n\n), organization_wo_sf_account AS (\n\n SELECT\n organization_key AS Organization_Key__c\n FROM current_paying_organization\n\n EXCEPT ALL \n\n SELECT\n Organization_Key__c\n FROM import_salesforce_account\n\n), organization_enrichment AS (\n\n SELECT\n new_account.Organization_Key__c,\n SPLIT(REPLACE(REPLACE(REPLACE(organization.organization_name, 'http://', ''), 'https://', ''), 'www.', ''), '\\\\.')[0] AS Name\n FROM organization_wo_sf_account AS new_account\n LEFT JOIN import_platform_organization AS organization\n ON new_account.Organization_Key__c = organization.organization_key\n\n)\n\n-- Result -- \n\nSELECT * FROM organization_enrichment", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__onboarding_project": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__onboarding_project", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.sql", "unique_id": "model.yoda.analytics___salesforce__onboarding_project", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__onboarding_project", "analytics___salesforce__onboarding_project"], "alias": "analytics___salesforce__onboarding_project", "checksum": {"name": "sha256", "checksum": "8b30644590b6844fa099d3c9413e8a760c95233c67d378c621b2ae669c4ca430"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled Table Salseforce Onboarding project\nPK & granularity: onboarding project id", "columns": {"onboarding_project_id": {"name": "onboarding_project_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_project_name": {"name": "onboarding_project_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "project_created_at": {"name": "project_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_product_id": {"name": "account_product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_domain": {"name": "account_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_domains": {"name": "number_of_domains", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "stage": {"name": "stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "koc_date": {"name": "koc_date", "description": "Kick off call - relevant to customer care projects", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "onboarding_start_date": {"name": "onboarding_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "project_start_date": {"name": "project_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "process_paused_date": {"name": "process_paused_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "process_resumed_date": {"name": "process_resumed_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "paused_duration": {"name": "paused_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "due_date": {"name": "due_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "project_completion_date": {"name": "project_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "target_launch_date": {"name": "target_launch_date", "description": "when the account wants to launch the product, will influence prioritization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_initial_won_date": {"name": "product_initial_won_date", "description": "the date that the product opportunity was won at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_by_id": {"name": "created_by_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_role": {"name": "owner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_id": {"name": "owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_manager": {"name": "onboarding_manager", "description": "this indicates who is the onboarding manager if the onboarding is closed or who is the csm if open", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_manager_team": {"name": "onboarding_manager_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_name": {"name": "csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_email": {"name": "csm_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_segment": {"name": "cs_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_score": {"name": "total_score", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "complexity_score": {"name": "complexity_score", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,0)"}, "onboarding_reason": {"name": "onboarding_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planned_duration_days": {"name": "planned_duration_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "actual_duration_gross_days": {"name": "actual_duration_gross_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "actual_duration_net": {"name": "actual_duration_net", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "net_duration": {"name": "net_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "customization_level": {"name": "customization_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "red_flag_bucket": {"name": "red_flag_bucket", "description": "the bucket of risk the account is in within the onboarding project, the CSM will fill this when risk spotted.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "red_flag_notes": {"name": "red_flag_notes", "description": "CSM comments on the red flag that they are raising", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "red_flag_date": {"name": "red_flag_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "red_flag_reason": {"name": "red_flag_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_headless_platform": {"name": "is_headless_platform", "description": "a type of store that requires different attention", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_agency": {"name": "is_agency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_multi_product": {"name": "is_multi_product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_multi_store": {"name": "is_multi_store", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_se_needed": {"name": "is_se_needed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_customer_care_project": {"name": "is_customer_care_project", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082650.0823812, "relation_name": "dev_dkruh1.analytics___salesforce__onboarding_project", "raw_code": "-- Import --\n\nWITH import_onboarding_project AS (\n\n SELECT *\n FROM {{ ref('analytics___salesforce_stg__mc_onboarding_project') }}\n\n-- Logic -- \n), onboarding_project AS (\n\n SELECT \n onboarding_project_id,\n onboarding_project_name,\n project_created_at,\n organization_key,\n app_key,\n merchant_id,\n account_id,\n account_name,\n account_product_id,\n account_domain,\n number_of_domains,\n stage,\n koc_date,\n onboarding_start_date,\n project_start_date,\n process_paused_date,\n process_resumed_date,\n paused_duration,\n due_date,\n project_completion_date,\n target_launch_date,\n product_initial_won_date,\n created_by_id,\n owner_role,\n owner_id,\n onboarding_manager,\n onboarding_manager_team,\n csm_name,\n csm_email,\n cs_segment,\n platform,\n product_line,\n total_score,\n complexity_score,\n onboarding_reason,\n planned_duration_days,\n actual_duration_gross_days,\n actual_duration_net,\n net_duration,\n customization_level,\n red_flag_bucket,\n red_flag_notes,\n red_flag_date,\n red_flag_reason,\n is_headless_platform,\n is_agency,\n is_multi_product,\n is_multi_store,\n is_se_needed,\n is_customer_care_project,\n is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_onboarding_project\n)\n\n-- Result\nSELECT * \nFROM onboarding_project", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_onboarding_project", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_onboarding_project"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_onboarding_project AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___salesforce_stg__mc_onboarding_project\n\n-- Logic -- \n), onboarding_project AS (\n\n SELECT \n onboarding_project_id,\n onboarding_project_name,\n project_created_at,\n organization_key,\n app_key,\n merchant_id,\n account_id,\n account_name,\n account_product_id,\n account_domain,\n number_of_domains,\n stage,\n koc_date,\n onboarding_start_date,\n project_start_date,\n process_paused_date,\n process_resumed_date,\n paused_duration,\n due_date,\n project_completion_date,\n target_launch_date,\n product_initial_won_date,\n created_by_id,\n owner_role,\n owner_id,\n onboarding_manager,\n onboarding_manager_team,\n csm_name,\n csm_email,\n cs_segment,\n platform,\n product_line,\n total_score,\n complexity_score,\n onboarding_reason,\n planned_duration_days,\n actual_duration_gross_days,\n actual_duration_net,\n net_duration,\n customization_level,\n red_flag_bucket,\n red_flag_notes,\n red_flag_date,\n red_flag_reason,\n is_headless_platform,\n is_agency,\n is_multi_product,\n is_multi_store,\n is_se_needed,\n is_customer_care_project,\n is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_onboarding_project\n)\n\n-- Result\nSELECT * \nFROM onboarding_project", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__opportunity": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__opportunity", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.sql", "unique_id": "model.yoda.analytics___salesforce__opportunity", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__opportunity", "analytics___salesforce__opportunity"], "alias": "analytics___salesforce__opportunity", "checksum": {"name": "sha256", "checksum": "64ce66c65e3cac7308da991c2e8e03c3c31093ab833a5e37da637394afb9bc3b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled table of Opportunity salesforce object\nPK: account_id", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "salesforce account_id (FK: account)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_name": {"name": "opportunity_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_sf_url": {"name": "opportunity_sf_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date": {"name": "start_date", "description": "Contract starting date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "close_date": {"name": "close_date", "description": "Contract signing date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "entered_demo_date": {"name": "entered_demo_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "actual_end_date": {"name": "actual_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "cs_comp_paid_date": {"name": "cs_comp_paid_date", "description": "Timestamp to the day the CS comp paid", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "contract_renewal_date": {"name": "contract_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "last_stage_change_date": {"name": "last_stage_change_date", "description": "The date where the last stage change occured", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stage": {"name": "stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type": {"name": "deal_type", "description": "Product: changes in desl status. example: Reviews: Same Rate, Loyalty: Usage Expansion, VMS: Discount Decrease, Insights: Same Rate", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type_as_per_deal_summary": {"name": "deal_type_as_per_deal_summary", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel": {"name": "attribution_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_monthly_order_range": {"name": "estimated_monthly_order_range", "description": "order volume range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_review_requests_per_month": {"name": "estimated_review_requests_per_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_id": {"name": "owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_upon_closed": {"name": "loyalty_csm_upon_closed", "description": "csm stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_team_upon_closed": {"name": "loyalty_csm_team_upon_closed", "description": "csm team stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_upon_closed": {"name": "ugc_csm_upon_closed", "description": "csm stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_team_upon_closed": {"name": "ugc_csm_team_upon_closed", "description": "csm team stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_upon_closed": {"name": "primary_csm_upon_closed", "description": "csm stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team_upon_closed": {"name": "primary_csm_team_upon_closed", "description": "csm team stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_upon_closed": {"name": "sms_csm_upon_closed", "description": "csm stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_team_upon_closed": {"name": "sms_csm_team_upon_closed", "description": "csm team stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptions_seller_id": {"name": "subscriptions_seller_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_owner_role": {"name": "original_owner_role", "description": "role of sf user that owns the opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secondary_seller_id": {"name": "secondary_seller_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_sf_user_id": {"name": "sdr_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_currency": {"name": "original_currency", "description": "original currency ISO code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_commitment_term": {"name": "sms_commitment_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_first_commitment_value": {"name": "sms_first_commitment_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_second_commitment_value": {"name": "sms_second_commitment_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "customer_type": {"name": "customer_type", "description": "Type of customer by subscription type, greenfield or migration", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "record_type_name": {"name": "record_type_name", "description": "Enterprise Opportunity|Standard Opportunity|Self Service Opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "record_type_id": {"name": "record_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "region code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_sales_region": {"name": "account_sales_region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment": {"name": "order_sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment_group": {"name": "order_sales_segment_group", "description": "Group of the order_sales_segment:\n 1. VSB -> VSB\n 2. SMB Minus/SMB/SMB Plus -> SMB\n 3. MM/Enterprise -> MM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "num_of_end_of_contract_extension_month": {"name": "num_of_end_of_contract_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "num_of_csm_extension_month": {"name": "num_of_csm_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "discount_rate": {"name": "discount_rate", "description": "Opportunity discount rate in precent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_booking": {"name": "delta_booking", "description": "Total Ds Delta ACV + Delta eARR + Prime eARR + Gold eARR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_delta_earr": {"name": "sms_delta_earr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_delta_earr": {"name": "subscriptions_delta_earr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_acv_in_usd": {"name": "delta_acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "conversion_rate": {"name": "conversion_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "estimated_arr_in_usd": {"name": "estimated_arr_in_usd", "description": "SMS eARR + Subscriptions eARR + Prime eARR + Gold eARR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "sms_estimated_arr_in_usd": {"name": "sms_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "email_estimated_arr_in_usd": {"name": "email_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "subscriptions_estimated_arr_in_usd": {"name": "subscriptions_estimated_arr_in_usd", "description": "The Subscriptions eARR. Does not reflect the delta, meaning renewals may have an eARR value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "prime_estimated_arr_in_usd": {"name": "prime_estimated_arr_in_usd", "description": "eARR associated with particular Prime package", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "gold_estimated_arr_in_usd": {"name": "gold_estimated_arr_in_usd", "description": "eARR of Gold as based on value of the sales: estimated monthly orders field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "created_pipeline_in_usd": {"name": "created_pipeline_in_usd", "description": "total delta acv + total earr", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pipeline_usd": {"name": "pipeline_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pre_opp_ht_product_list": {"name": "pre_opp_ht_product_list", "description": "all ht annual products concatenated, the day prior to opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "product_list": {"name": "product_list", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisioned_plan_list": {"name": "provisioned_plan_list", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_acv_in_usd_sum": {"name": "reviews_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "reviews_acv_in_original_currency_sum": {"name": "reviews_acv_in_original_currency_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "vms_acv_in_usd_sum": {"name": "vms_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "vms_acv_in_original_currency_sum": {"name": "vms_acv_in_original_currency_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "insights_acv_in_usd_sum": {"name": "insights_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "insights_acv_in_original_currency_sum": {"name": "insights_acv_in_original_currency_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "loyalty_acv_in_usd_sum": {"name": "loyalty_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "loyalty_acv_in_original_currency_sum": {"name": "loyalty_acv_in_original_currency_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "sms_acv_in_usd_sum": {"name": "sms_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "sms_acv_in_original_currency_sum": {"name": "sms_acv_in_original_currency_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "subscriptions_acv_in_usd_sum": {"name": "subscriptions_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "subscriptions_acv_in_original_currency_sum": {"name": "subscriptions_acv_in_original_currency_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights": {"name": "is_insights", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email_intent": {"name": "is_email_intent", "description": "An indicator to show if the customer intends on using email product when sold alongside SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_closed": {"name": "is_closed", "description": "Stage is not one of the following: Won - Closed, Lost After Won, Lost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_excluded_from_compensation": {"name": "is_excluded_from_compensation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_current_contract": {"name": "is_current_contract", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_company_expansion": {"name": "is_company_expansion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sal": {"name": "is_sal", "description": "ISNOTNULL(enterted_demo_date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_won_sale": {"name": "is_won_sale", "description": "Opportunity stage = 'won - sale'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost": {"name": "is_lost", "description": "Opportunity stage = 'lost'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "Opportunity stage = 'lost after won'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "lost_reason": {"name": "lost_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_sub_reason": {"name": "lost_sub_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_reason_details": {"name": "lost_reason_details", "description": "The details to why the Opportunity was lost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_after_won_reason": {"name": "lost_after_won_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_new_account_opportunity": {"name": "is_new_account_opportunity", "description": "Opportunity type IN 'new sale','migration to annual','poc renewal','recycled opp'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_marketing": {"name": "is_marketing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_osdr": {"name": "is_osdr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_other_demand_gen_channel": {"name": "is_other_demand_gen_channel", "description": "An indicator where the opportunity has not come from marketing, partners or oSDR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_bundle": {"name": "is_bundle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_scsm_deal": {"name": "is_scsm_deal", "description": "is super CSM deal", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_partner_upsell": {"name": "is_partner_upsell", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_created_mtd": {"name": "is_created_mtd", "description": "The difference in days between the beggining of the created date month and the created date\nis less than/equal to the difference in days between the beggining of current month and today", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_created_qtd": {"name": "is_created_qtd", "description": "The difference in days between the beggining of the created date quarter and the created date\nis less than/equal to the difference in days between the beggining of current quarter and today", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_entered_demo_mtd": {"name": "is_entered_demo_mtd", "description": "The difference in days between the beggining of the entered demo date month and the entered demo date\nis less than/equal to the difference in days between the beggining of current month and today", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_entered_demo_qtd": {"name": "is_entered_demo_qtd", "description": "The difference in days between the beggining of the entered demo date quarter and the entered demo date\nis less than/equal to the difference in days between the beggining of current quarter and today", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_closed_mtd": {"name": "is_closed_mtd", "description": "The difference in days between the beggining of the close date month and the close date\nis less than/equal to the difference in days between the beggining of current month and today", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_closed_qtd": {"name": "is_closed_qtd", "description": "The difference in days between the beggining of the close date quarter and the close date\nis less than/equal to the difference in days between the beggining of current quarter and today", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "partner_engagement_id": {"name": "partner_engagement_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_type": {"name": "referral_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_id": {"name": "original_referrer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_duration_months": {"name": "contract_duration_months", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "contract_actual_duration_months": {"name": "contract_actual_duration_months", "description": "contract duration + free months + csm extention months, actual duration is NULL unless in opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_duration_with_extension_months": {"name": "contract_duration_with_extension_months", "description": "months between contract renewal date and opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "original_referrer_owner": {"name": "original_referrer_owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_owner_name": {"name": "referrer_owner_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_account_name": {"name": "partner_account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_account_referrer_type": {"name": "partner_account_referrer_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "won_sale_probability": {"name": "won_sale_probability", "description": "The opportunity's probability to be Won - Sale [0...1].\nEach stage has a matching probability (0 = Lost, 1 = Won - Sale).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "upsell_acv_in_usd": {"name": "upsell_acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "weighted_subscriptions_estimated_arr_in_usd": {"name": "weighted_subscriptions_estimated_arr_in_usd", "description": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the Subscriptions eARR * probability, else zero", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(21,4)"}, "weighted_sms_estimated_arr_in_usd": {"name": "weighted_sms_estimated_arr_in_usd", "description": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the SMS eARR * probability, else zero", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(21,4)"}, "weighted_email_estimated_arr_in_usd": {"name": "weighted_email_estimated_arr_in_usd", "description": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the delta email eARR * probability, else zero", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(21,4)"}, "weighted_prime_estimated_arr_in_usd": {"name": "weighted_prime_estimated_arr_in_usd", "description": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the Prime eARR * probability, else zero", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(21,4)"}, "weighted_gold_estimated_arr_in_usd": {"name": "weighted_gold_estimated_arr_in_usd", "description": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the Gold eARR * probability, else zero", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(21,4)"}, "won_subscriptions_estimated_arr_in_usd": {"name": "won_subscriptions_estimated_arr_in_usd", "description": "If stage is 'Won - Sale' then relevant eARR in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "won_sms_estimated_arr_in_usd": {"name": "won_sms_estimated_arr_in_usd", "description": "If stage is 'Won - Sale' then relevant eARR in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "won_email_estimated_arr_in_usd": {"name": "won_email_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "won_prime_estimated_arr_in_usd": {"name": "won_prime_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "won_gold_estimated_arr_in_usd": {"name": "won_gold_estimated_arr_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "won_reviews_acv_in_usd_sum": {"name": "won_reviews_acv_in_usd_sum", "description": "If stage is 'Won - Sale' then relevant ACV in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "won_loyalty_acv_in_usd_sum": {"name": "won_loyalty_acv_in_usd_sum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "won_sms_acv_in_usd_sum": {"name": "won_sms_acv_in_usd_sum", "description": "If stage is 'Won - Sale' then relevant ACV in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "won_subscriptions_acv_in_usd_sum": {"name": "won_subscriptions_acv_in_usd_sum", "description": "If stage is 'Won - Sale' then relevant ACV in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "won_vms_acv_in_usd_sum": {"name": "won_vms_acv_in_usd_sum", "description": "If stage is 'Won - Sale' then relevant ACV in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,2)"}, "won_upsell_acv_in_usd": {"name": "won_upsell_acv_in_usd", "description": "If stage is 'Won - Sale' then relevant ACV in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "weighted_delta_acv_in_usd": {"name": "weighted_delta_acv_in_usd", "description": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the delta ACV * probability, else zero", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "open_delta_acv_in_usd": {"name": "open_delta_acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "won_delta_acv_in_usd": {"name": "won_delta_acv_in_usd", "description": "Delta ACV from previous opportunity in USD (can be negative)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_partner_opportunity": {"name": "is_partner_opportunity", "description": "Logic (is SMB Partner) OR (is MM Partners)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "prediction_reviews_previous_acv": {"name": "prediction_reviews_previous_acv", "description": "the renewal ACV of the product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_reviews_current_acv": {"name": "prediction_reviews_current_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_reviews_certainty": {"name": "prediction_reviews_certainty", "description": "a field that is changed by the CSM to express the certainty level in the prediction", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_predicted_reviews_acv": {"name": "prediction_predicted_reviews_acv", "description": "the csm prediction of the reviews+VMS ACV- if it is open, if closed-> shows the actual closed acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_reviews_current_hedged_acv": {"name": "prediction_reviews_current_hedged_acv", "description": "We use a hedging formula to take into consideration the certainty level: 0% certainty->acv*0.2 ,25% certainty->acv*0.5 50% certainty->acv*0.8 75% certainty and above ->acv*1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_reviews_risk_buckets": {"name": "prediction_reviews_risk_buckets", "description": "this field is used to bucket accounts that are within risk buckets such as 'not responsive' 'change in business' etc", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prediction_loyalty_previous_acv": {"name": "prediction_loyalty_previous_acv", "description": "the renewal ACV of the product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_loyalty_current_acv": {"name": "prediction_loyalty_current_acv", "description": "Current ACV takes the actual ACV that was closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_loyalty_certainty": {"name": "prediction_loyalty_certainty", "description": "a field that is changed by the CSM to express the certainty level in the prediction", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_predicted_loyalty_acv": {"name": "prediction_predicted_loyalty_acv", "description": "the csm prediction of the loyalty ACV- if it is open, if closed-> shows the actual closed acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_loyalty_current_hedged_acv": {"name": "prediction_loyalty_current_hedged_acv", "description": "We use a hedging formula to take into consideration the certainty level: 0% certainty->acv*0.2 ,25% certainty->acv*0.5 50% certainty->acv*0.8 75% certainty and above ->acv*1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "prediction_loyalty_risk_buckets": {"name": "prediction_loyalty_risk_buckets", "description": "this field is used to bucket accounts that are within risk buckets such as 'not responsive' 'change in business' etc", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_to_opportunity_id": {"name": "renewal_to_opportunity_id", "description": "reference to previous opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_ugc_renewals_cnt": {"name": "previous_ugc_renewals_cnt", "description": "Number of previous renewals prior to current opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "previous_loyalty_renewals_cnt": {"name": "previous_loyalty_renewals_cnt", "description": "Number of previous renewals prior to current opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "previous_sms_renewals_cnt": {"name": "previous_sms_renewals_cnt", "description": "Number of previous renewals prior to current opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "previous_renewals_cnt": {"name": "previous_renewals_cnt", "description": "Number of previous renewals prior to current opportunity - all renewals", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_ht_ss": {"name": "is_ht_ss", "description": "indicator = 1 if opportunity was HT motion.\nclassified as Hybrid_Deal_HT_SS = true in salesforce", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_staggered_contract": {"name": "is_staggered_contract", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "updated_at": {"name": "updated_at", "description": "object's update time in salesforce", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082650.2399788, "relation_name": "dev_dkruh1.analytics___salesforce__opportunity", "raw_code": "WITH import_opportunity_line_item AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce__opportunity_line_item') }}\n\n), import_salesforce_stg__mc_account AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_account') }}\n\n), import_mc_opportunity AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_opportunity') }}\n\n), import_dim_sf_users AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__dim_sf_users_scd') }}\n\n), import_opportunity_prediction AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__opportunity_prediction') }}\n\n), import_opp_field_history AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_opportunity_field_history') }}\n\n), opp_last_stage_change_date AS (\n\n SELECT\n opportunity_id,\n DATE(MAX(created_date)) AS last_stage_change_date\n FROM import_opp_field_history\n WHERE LOWER(field_name) = 'stagename'\n AND is_deleted = 0\n GROUP BY 1\n\n), opportunity_by_prediction AS (\n\n SELECT \n prediction_id,\n opportunity_id,\n reviews_previous_acv AS prediction_reviews_previous_acv,\n reviews_current_acv AS prediction_reviews_current_acv,\n reviews_predictions_certainty_ratio AS prediction_reviews_certainty,\n predicted_reviews_acv AS prediction_predicted_reviews_acv,\n reviews_current_hedged_acv AS prediction_reviews_current_hedged_acv,\n reviews_risk_buckets AS prediction_reviews_risk_buckets,\n loyalty_previous_acv AS prediction_loyalty_previous_acv,\n loyalty_current_acv AS prediction_loyalty_current_acv,\n loyalty_predictions_certainty_ratio AS prediction_loyalty_certainty,\n predicted_loyalty_acv AS prediction_predicted_loyalty_acv,\n loyalty_current_hedged_acv AS prediction_loyalty_current_hedged_acv,\n loyalty_risk_buckets AS prediction_loyalty_risk_buckets,\n ROW_NUMBER() OVER (PARTITION BY opportunity_id ORDER BY opportunity_prediction_created_at DESC) AS opportunity_by_prediction_rank\n FROM import_opportunity_prediction\n\n\n), opportunities_with_partners AS (\n\n SELECT DISTINCT\n opportunity_id,\n IF(ISNOTNULL(opportunity.partner_engagement_id) \n AND (opportunity.is_partner_upsell = 1 OR LOWER(type) IN ('new sale','migration to annual','recycled opp','winback'))\n AND ((LOWER(opportunity.order_sales_segment) NOT IN ('vsb','smb','smb minus','smb plus')\n AND LOWER(opportunity.referral_type) IN ('influence','referral'))\n OR \n (LOWER(opportunity.order_sales_segment) IN ('vsb','smb','smb minus','smb plus')\n AND (LOWER(opportunity.referral_type) = 'referral')))\n ,1,0) AS is_partner_opportunity\n FROM import_mc_opportunity AS opportunity\n\n), partner_account AS (\n\n SELECT \n account_id as partner_account_id,\n account_name AS partner_account_name,\n referrer_type AS partner_account_referrer_type\n FROM import_salesforce_stg__mc_account\n WHERE is_partner_account = 1\n AND is_test_account = 0\n AND is_deleted_account = 0\n\n), line_item_agg_by_opp AS (\n\n SELECT\n opportunity_id,\n CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(line_item_product))) AS product_list,\n CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(provisioned_plan_name))) AS provisioned_plan_list,\n SUM(IF(is_reviews = 1,price_in_usd,0)) AS reviews_acv_in_usd_sum,\n SUM(IF(is_vms = 1,price_in_usd,0)) AS vms_acv_in_usd_sum,\n SUM(IF(is_insights = 1,price_in_usd,0)) AS insights_acv_in_usd_sum,\n SUM(IF(is_loyalty = 1,price_in_usd,0)) AS loyalty_acv_in_usd_sum,\n SUM(IF(is_sms = 1,price_in_usd,0)) AS sms_acv_in_usd_sum,\n SUM(IF(is_subscriptions = 1,price_in_usd,0)) AS subscriptions_acv_in_usd_sum,\n SUM(IF(is_reviews = 1,price_in_original_currency,0)) AS reviews_acv_in_original_currency_sum,\n SUM(IF(is_vms = 1,price_in_original_currency,0)) AS vms_acv_in_original_currency_sum,\n SUM(IF(is_insights = 1,price_in_original_currency,0)) AS insights_acv_in_original_currency_sum,\n SUM(IF(is_loyalty = 1,price_in_original_currency,0)) AS loyalty_acv_in_original_currency_sum,\n SUM(IF(is_sms = 1,price_in_original_currency,0)) AS sms_acv_in_original_currency_sum,\n SUM(IF(is_subscriptions = 1,price_in_original_currency,0)) AS subscriptions_acv_in_original_currency_sum,\n SMALLINT(COALESCE(MAX(is_reviews),0)) AS is_reviews,\n SMALLINT(COALESCE(MAX(is_vms),0)) AS is_vms,\n SMALLINT(COALESCE(MAX(is_insights),0)) AS is_insights,\n SMALLINT(COALESCE(MAX(is_loyalty),0)) AS is_loyalty,\n SMALLINT(COALESCE(MAX(is_sms),0)) AS is_sms,\n SMALLINT(COALESCE(MAX(is_subscriptions),0)) AS is_subscriptions,\n SMALLINT(COALESCE(MAX(is_email),0)) AS is_email\n FROM import_opportunity_line_item\n WHERE is_deleted = 0 \n AND LOWER(line_item_product) <> 'ps'\n GROUP BY 1\n\n), renewasl_by_products AS (\n\n SELECT\n opportunity.opportunity_id,\n COUNT(IF(LOWER(opportunity.deal_type_as_per_deal_summary) LIKE '%reviews : renewal successful%',opportunity.opportunity_id,NULL)) \n OVER (PARTITION BY opportunity.account_id ORDER BY opportunity.start_date ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING) AS previous_ugc_renewals_cnt,\n COUNT(IF(LOWER(opportunity.deal_type_as_per_deal_summary) LIKE '%loyalty : renewal successful%',opportunity.opportunity_id,NULL)) \n OVER (PARTITION BY opportunity.account_id ORDER BY opportunity.start_date ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING) AS previous_loyalty_renewals_cnt,\n COUNT(IF(LOWER(opportunity.deal_type_as_per_deal_summary) LIKE '%sms : renewal successful%',opportunity.opportunity_id,NULL)) \n OVER (PARTITION BY opportunity.account_id ORDER BY opportunity.start_date ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING) AS previous_sms_renewals_cnt,\n COUNT(IF(LOWER(opportunity.deal_type_as_per_deal_summary) LIKE '%renewal successful%',opportunity.opportunity_id,NULL))\n OVER (PARTITION BY opportunity.account_id ORDER BY opportunity.start_date ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING) AS previous_renewals_cnt\n FROM import_mc_opportunity AS opportunity\n WHERE opportunity.is_won_sale = 1 \n AND LOWER(opportunity.type) IN ('end term renewal', 'in term renewal') \n \n),salesforce_opportunity AS (\n\n SELECT\n opportunity.opportunity_id,\n opportunity.account_id,\n opportunity.opportunity_name,\n opportunity.opportunity_sf_url,\n opportunity.start_date,\n opportunity.close_date,\n opportunity.entered_demo_date,\n opportunity.actual_end_date,\n opportunity.cs_comp_paid_date,\n opportunity.contract_renewal_date,\n opp_last_stage_change_date.last_stage_change_date,\n opportunity.type,\n opportunity.stage,\n opportunity.deal_type,\n opportunity.deal_type_as_per_deal_summary,\n opportunity.attribution_channel,\n opportunity.estimated_monthly_order_range,\n opportunity.estimated_review_requests_per_month,\n opportunity.description,\n opportunity.owner_id,\n opportunity.loyalty_csm_upon_closed,\n opportunity.loyalty_csm_team_upon_closed,\n opportunity.ugc_csm_upon_closed,\n opportunity.ugc_csm_team_upon_closed,\n opportunity.primary_csm_upon_closed,\n opportunity.primary_csm_team_upon_closed,\n opportunity.sms_csm_upon_closed,\n opportunity.sms_csm_team_upon_closed,\n opportunity.subscriptions_seller_id,\n opportunity.original_owner_role,\n opportunity.secondary_seller_id,\n opportunity.created_by_sf_user_id,\n opportunity.sdr_sf_user_id,\n opportunity.original_currency,\n opportunity.sms_commitment_term,\n opportunity.sms_first_commitment_value,\n opportunity.sms_second_commitment_value,\n opportunity.customer_type,\n opportunity.record_type_name,\n opportunity.record_type_id,\n opportunity.sales_region,\n sf_account.sales_region AS account_sales_region,\n opportunity.order_sales_segment,\n CASE WHEN LOWER(opportunity.order_sales_segment) IN ('enterprise','mm') THEN 'MM'\n WHEN LOWER(opportunity.order_sales_segment) LIKE '%smb%' THEN 'SMB'\n WHEN LOWER(opportunity.order_sales_segment) LIKE '%vsb%' THEN 'VSB'\n ELSE NULL END AS order_sales_segment_group,\n opportunity.num_of_end_of_contract_extension_month,\n opportunity.num_of_csm_extension_month,\n opportunity.discount_rate,\n opportunity.delta_booking,\n opportunity.sms_delta_earr,\n opportunity.subscriptions_delta_earr,\n opportunity.delta_acv_in_usd,\n opportunity.conversion_rate,\n opportunity.estimated_arr_in_usd,\n opportunity.sms_estimated_arr_in_usd,\n opportunity.email_estimated_arr_in_usd,\n opportunity.subscriptions_estimated_arr_in_usd,\n opportunity.prime_estimated_arr_in_usd,\n opportunity.gold_estimated_arr_in_usd,\n opportunity.delta_acv_in_usd + opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd AS created_pipeline_in_usd,\n opportunity.pipeline_usd,\n opportunity.pre_opp_ht_product_list,\n line_item.product_list,\n line_item.provisioned_plan_list,\n line_item.reviews_acv_in_usd_sum,\n line_item.reviews_acv_in_original_currency_sum,\n line_item.vms_acv_in_usd_sum,\n line_item.vms_acv_in_original_currency_sum,\n line_item.insights_acv_in_usd_sum,\n line_item.insights_acv_in_original_currency_sum,\n line_item.loyalty_acv_in_usd_sum,\n line_item.loyalty_acv_in_original_currency_sum,\n line_item.sms_acv_in_usd_sum,\n line_item.sms_acv_in_original_currency_sum,\n line_item.subscriptions_acv_in_usd_sum,\n line_item.subscriptions_acv_in_original_currency_sum,\n line_item.is_reviews,\n line_item.is_vms,\n line_item.is_insights,\n line_item.is_loyalty,\n line_item.is_sms,\n line_item.is_subscriptions,\n line_item.is_email,\n opportunity.is_email_intent,\n opportunity.is_closed,\n opportunity.is_excluded_from_compensation,\n opportunity.is_current_contract,\n opportunity.is_company_expansion,\n opportunity.is_sal,\n opportunity.is_won_sale,\n opportunity.is_lost,\n opportunity.is_lost_after_won,\n opportunity.lost_reason,\n opportunity.lost_sub_reason,\n opportunity.lost_reason_details,\n opportunity.lost_after_won_reason,\n opportunity.is_new_account_opportunity,\n opportunity.is_marketing,\n opportunity.is_osdr,\n opportunity.is_other_demand_gen_channel,\n opportunity.is_bundle,\n opportunity.is_scsm_deal,\n opportunity.is_partner_upsell,\n SMALLINT(IF(DATEDIFF(opportunity.created_date, TRUNC(opportunity.created_date, 'month')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'month')), 1, 0)) AS is_created_mtd,\n SMALLINT(IF(DATEDIFF(opportunity.created_date, TRUNC(opportunity.created_date, 'quarter')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'quarter')), 1, 0)) AS is_created_qtd,\n SMALLINT(IF(DATEDIFF(opportunity.entered_demo_date, TRUNC(opportunity.entered_demo_date, 'month')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'month')), 1, 0)) AS is_entered_demo_mtd,\n SMALLINT(IF(DATEDIFF(opportunity.entered_demo_date, TRUNC(opportunity.entered_demo_date, 'quarter')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'quarter')), 1, 0)) AS is_entered_demo_qtd,\n SMALLINT(IF(DATEDIFF(opportunity.close_date, TRUNC(opportunity.close_date, 'month')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'month')), 1, 0)) AS is_closed_mtd,\n SMALLINT(IF(DATEDIFF(opportunity.close_date, TRUNC(opportunity.close_date, 'quarter')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'quarter')), 1, 0)) AS is_closed_qtd,\n opportunity.partner_engagement_id,\n opportunity.referral_type,\n opportunity.original_referrer_id,\n opportunity.contract_duration_months,\n opportunity.contract_actual_duration_months,\n NVL(MONTHS_BETWEEN(opportunity.contract_renewal_date,opportunity.start_date),0) AS contract_duration_with_extension_months,\n opportunity.original_referrer_owner,\n referrer_owner.sf_user_full_name AS referrer_owner_name,\n partner.partner_account_name,\n partner.partner_account_referrer_type,\n opportunity.won_sale_probability,\n opportunity.upsell_acv_in_usd,\n opportunity.subscriptions_estimated_arr_in_usd * opportunity.won_sale_probability AS weighted_subscriptions_estimated_arr_in_usd,\n opportunity.sms_estimated_arr_in_usd * opportunity.won_sale_probability AS weighted_sms_estimated_arr_in_usd,\n opportunity.email_estimated_arr_in_usd * opportunity.won_sale_probability AS weighted_email_estimated_arr_in_usd,\n opportunity.prime_estimated_arr_in_usd * opportunity.won_sale_probability AS weighted_prime_estimated_arr_in_usd,\n opportunity.gold_estimated_arr_in_usd * opportunity.won_sale_probability AS weighted_gold_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.subscriptions_estimated_arr_in_usd, 0) AS won_subscriptions_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.sms_estimated_arr_in_usd, 0) AS won_sms_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.email_estimated_arr_in_usd, 0) AS won_email_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.prime_estimated_arr_in_usd, 0) AS won_prime_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.gold_estimated_arr_in_usd, 0) AS won_gold_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, line_item.reviews_acv_in_usd_sum, 0) AS won_reviews_acv_in_usd_sum,\n IF(opportunity.is_won_sale = 1, line_item.loyalty_acv_in_usd_sum, 0) AS won_loyalty_acv_in_usd_sum,\n IF(opportunity.is_won_sale = 1, line_item.sms_acv_in_usd_sum, 0) AS won_sms_acv_in_usd_sum,\n IF(opportunity.is_won_sale = 1, line_item.subscriptions_acv_in_usd_sum, 0) AS won_subscriptions_acv_in_usd_sum,\n IF(opportunity.is_won_sale = 1, line_item.vms_acv_in_usd_sum, 0) AS won_vms_acv_in_usd_sum,\n IF(opportunity.is_won_sale = 1, opportunity.upsell_acv_in_usd, 0) AS won_upsell_acv_in_usd,\n opportunity.delta_acv_in_usd * opportunity.won_sale_probability AS weighted_delta_acv_in_usd,\n IF(opportunity.is_closed = 0, opportunity.delta_acv_in_usd, 0) AS open_delta_acv_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.delta_acv_in_usd, 0) AS won_delta_acv_in_usd,\n SMALLINT(NVL(partner_opportunity.is_partner_opportunity,0)) AS is_partner_opportunity,\n prediction.prediction_reviews_previous_acv,\n prediction.prediction_reviews_current_acv,\n prediction.prediction_reviews_certainty,\n prediction.prediction_predicted_reviews_acv,\n prediction.prediction_reviews_current_hedged_acv,\n prediction.prediction_reviews_risk_buckets,\n prediction.prediction_loyalty_previous_acv,\n prediction.prediction_loyalty_current_acv,\n prediction.prediction_loyalty_certainty,\n prediction.prediction_predicted_loyalty_acv,\n prediction.prediction_loyalty_current_hedged_acv,\n prediction.prediction_loyalty_risk_buckets,\n opportunity.renewal_to_opportunity_id,\n renewals.previous_ugc_renewals_cnt,\n renewals.previous_loyalty_renewals_cnt,\n renewals.previous_sms_renewals_cnt,\n renewals.previous_renewals_cnt,\n opportunity.is_ht_ss,\n opportunity.is_staggered_contract, \n opportunity.is_deleted,\n opportunity.updated_at,\n opportunity.created_date,\n opportunity.created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_mc_opportunity AS opportunity\n INNER JOIN import_salesforce_stg__mc_account AS sf_account\n ON opportunity.account_id = sf_account.account_id\n LEFT JOIN line_item_agg_by_opp AS line_item\n ON opportunity.opportunity_id = line_item.opportunity_id\n LEFT JOIN opportunities_with_partners AS partner_opportunity\n ON opportunity.opportunity_id = partner_opportunity.opportunity_id\n LEFT JOIN partner_account AS partner\n ON partner.partner_account_id = opportunity.original_referrer_id\n LEFT JOIN opportunity_by_prediction AS prediction\n ON opportunity.opportunity_id = prediction.opportunity_id AND opportunity_by_prediction_rank = 1\n LEFT JOIN renewasl_by_products AS renewals\n ON renewals.opportunity_id = opportunity.opportunity_id\n LEFT JOIN import_dim_sf_users AS referrer_owner\n ON opportunity.referrer_owner_id = referrer_owner.sf_user_id\n AND referrer_owner.scd_cur_ind = 1\n LEFT JOIN opp_last_stage_change_date\n ON opportunity.opportunity_id = opp_last_stage_change_date.opportunity_id\n\n)\n\nSELECT *\nFROM salesforce_opportunity", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity_line_item", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_users_scd", "package": null, "version": null}, {"name": "analytics___salesforce_stg__opportunity_prediction", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_opportunity_field_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__opportunity_line_item", "model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___salesforce_stg__mc_opportunity", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce_stg__opportunity_prediction", "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.sql", "compiled": true, "compiled_code": "WITH import_opportunity_line_item AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce__opportunity_line_item\n\n), import_salesforce_stg__mc_account AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_account\n\n), import_mc_opportunity AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_opportunity\n\n), import_dim_sf_users AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__dim_sf_users_scd\n\n), import_opportunity_prediction AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__opportunity_prediction\n\n), import_opp_field_history AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_opportunity_field_history\n\n), opp_last_stage_change_date AS (\n\n SELECT\n opportunity_id,\n DATE(MAX(created_date)) AS last_stage_change_date\n FROM import_opp_field_history\n WHERE LOWER(field_name) = 'stagename'\n AND is_deleted = 0\n GROUP BY 1\n\n), opportunity_by_prediction AS (\n\n SELECT \n prediction_id,\n opportunity_id,\n reviews_previous_acv AS prediction_reviews_previous_acv,\n reviews_current_acv AS prediction_reviews_current_acv,\n reviews_predictions_certainty_ratio AS prediction_reviews_certainty,\n predicted_reviews_acv AS prediction_predicted_reviews_acv,\n reviews_current_hedged_acv AS prediction_reviews_current_hedged_acv,\n reviews_risk_buckets AS prediction_reviews_risk_buckets,\n loyalty_previous_acv AS prediction_loyalty_previous_acv,\n loyalty_current_acv AS prediction_loyalty_current_acv,\n loyalty_predictions_certainty_ratio AS prediction_loyalty_certainty,\n predicted_loyalty_acv AS prediction_predicted_loyalty_acv,\n loyalty_current_hedged_acv AS prediction_loyalty_current_hedged_acv,\n loyalty_risk_buckets AS prediction_loyalty_risk_buckets,\n ROW_NUMBER() OVER (PARTITION BY opportunity_id ORDER BY opportunity_prediction_created_at DESC) AS opportunity_by_prediction_rank\n FROM import_opportunity_prediction\n\n\n), opportunities_with_partners AS (\n\n SELECT DISTINCT\n opportunity_id,\n IF(ISNOTNULL(opportunity.partner_engagement_id) \n AND (opportunity.is_partner_upsell = 1 OR LOWER(type) IN ('new sale','migration to annual','recycled opp','winback'))\n AND ((LOWER(opportunity.order_sales_segment) NOT IN ('vsb','smb','smb minus','smb plus')\n AND LOWER(opportunity.referral_type) IN ('influence','referral'))\n OR \n (LOWER(opportunity.order_sales_segment) IN ('vsb','smb','smb minus','smb plus')\n AND (LOWER(opportunity.referral_type) = 'referral')))\n ,1,0) AS is_partner_opportunity\n FROM import_mc_opportunity AS opportunity\n\n), partner_account AS (\n\n SELECT \n account_id as partner_account_id,\n account_name AS partner_account_name,\n referrer_type AS partner_account_referrer_type\n FROM import_salesforce_stg__mc_account\n WHERE is_partner_account = 1\n AND is_test_account = 0\n AND is_deleted_account = 0\n\n), line_item_agg_by_opp AS (\n\n SELECT\n opportunity_id,\n CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(line_item_product))) AS product_list,\n CONCAT_WS(',',SORT_ARRAY(COLLECT_SET(provisioned_plan_name))) AS provisioned_plan_list,\n SUM(IF(is_reviews = 1,price_in_usd,0)) AS reviews_acv_in_usd_sum,\n SUM(IF(is_vms = 1,price_in_usd,0)) AS vms_acv_in_usd_sum,\n SUM(IF(is_insights = 1,price_in_usd,0)) AS insights_acv_in_usd_sum,\n SUM(IF(is_loyalty = 1,price_in_usd,0)) AS loyalty_acv_in_usd_sum,\n SUM(IF(is_sms = 1,price_in_usd,0)) AS sms_acv_in_usd_sum,\n SUM(IF(is_subscriptions = 1,price_in_usd,0)) AS subscriptions_acv_in_usd_sum,\n SUM(IF(is_reviews = 1,price_in_original_currency,0)) AS reviews_acv_in_original_currency_sum,\n SUM(IF(is_vms = 1,price_in_original_currency,0)) AS vms_acv_in_original_currency_sum,\n SUM(IF(is_insights = 1,price_in_original_currency,0)) AS insights_acv_in_original_currency_sum,\n SUM(IF(is_loyalty = 1,price_in_original_currency,0)) AS loyalty_acv_in_original_currency_sum,\n SUM(IF(is_sms = 1,price_in_original_currency,0)) AS sms_acv_in_original_currency_sum,\n SUM(IF(is_subscriptions = 1,price_in_original_currency,0)) AS subscriptions_acv_in_original_currency_sum,\n SMALLINT(COALESCE(MAX(is_reviews),0)) AS is_reviews,\n SMALLINT(COALESCE(MAX(is_vms),0)) AS is_vms,\n SMALLINT(COALESCE(MAX(is_insights),0)) AS is_insights,\n SMALLINT(COALESCE(MAX(is_loyalty),0)) AS is_loyalty,\n SMALLINT(COALESCE(MAX(is_sms),0)) AS is_sms,\n SMALLINT(COALESCE(MAX(is_subscriptions),0)) AS is_subscriptions,\n SMALLINT(COALESCE(MAX(is_email),0)) AS is_email\n FROM import_opportunity_line_item\n WHERE is_deleted = 0 \n AND LOWER(line_item_product) <> 'ps'\n GROUP BY 1\n\n), renewasl_by_products AS (\n\n SELECT\n opportunity.opportunity_id,\n COUNT(IF(LOWER(opportunity.deal_type_as_per_deal_summary) LIKE '%reviews : renewal successful%',opportunity.opportunity_id,NULL)) \n OVER (PARTITION BY opportunity.account_id ORDER BY opportunity.start_date ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING) AS previous_ugc_renewals_cnt,\n COUNT(IF(LOWER(opportunity.deal_type_as_per_deal_summary) LIKE '%loyalty : renewal successful%',opportunity.opportunity_id,NULL)) \n OVER (PARTITION BY opportunity.account_id ORDER BY opportunity.start_date ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING) AS previous_loyalty_renewals_cnt,\n COUNT(IF(LOWER(opportunity.deal_type_as_per_deal_summary) LIKE '%sms : renewal successful%',opportunity.opportunity_id,NULL)) \n OVER (PARTITION BY opportunity.account_id ORDER BY opportunity.start_date ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING) AS previous_sms_renewals_cnt,\n COUNT(IF(LOWER(opportunity.deal_type_as_per_deal_summary) LIKE '%renewal successful%',opportunity.opportunity_id,NULL))\n OVER (PARTITION BY opportunity.account_id ORDER BY opportunity.start_date ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING) AS previous_renewals_cnt\n FROM import_mc_opportunity AS opportunity\n WHERE opportunity.is_won_sale = 1 \n AND LOWER(opportunity.type) IN ('end term renewal', 'in term renewal') \n \n),salesforce_opportunity AS (\n\n SELECT\n opportunity.opportunity_id,\n opportunity.account_id,\n opportunity.opportunity_name,\n opportunity.opportunity_sf_url,\n opportunity.start_date,\n opportunity.close_date,\n opportunity.entered_demo_date,\n opportunity.actual_end_date,\n opportunity.cs_comp_paid_date,\n opportunity.contract_renewal_date,\n opp_last_stage_change_date.last_stage_change_date,\n opportunity.type,\n opportunity.stage,\n opportunity.deal_type,\n opportunity.deal_type_as_per_deal_summary,\n opportunity.attribution_channel,\n opportunity.estimated_monthly_order_range,\n opportunity.estimated_review_requests_per_month,\n opportunity.description,\n opportunity.owner_id,\n opportunity.loyalty_csm_upon_closed,\n opportunity.loyalty_csm_team_upon_closed,\n opportunity.ugc_csm_upon_closed,\n opportunity.ugc_csm_team_upon_closed,\n opportunity.primary_csm_upon_closed,\n opportunity.primary_csm_team_upon_closed,\n opportunity.sms_csm_upon_closed,\n opportunity.sms_csm_team_upon_closed,\n opportunity.subscriptions_seller_id,\n opportunity.original_owner_role,\n opportunity.secondary_seller_id,\n opportunity.created_by_sf_user_id,\n opportunity.sdr_sf_user_id,\n opportunity.original_currency,\n opportunity.sms_commitment_term,\n opportunity.sms_first_commitment_value,\n opportunity.sms_second_commitment_value,\n opportunity.customer_type,\n opportunity.record_type_name,\n opportunity.record_type_id,\n opportunity.sales_region,\n sf_account.sales_region AS account_sales_region,\n opportunity.order_sales_segment,\n CASE WHEN LOWER(opportunity.order_sales_segment) IN ('enterprise','mm') THEN 'MM'\n WHEN LOWER(opportunity.order_sales_segment) LIKE '%smb%' THEN 'SMB'\n WHEN LOWER(opportunity.order_sales_segment) LIKE '%vsb%' THEN 'VSB'\n ELSE NULL END AS order_sales_segment_group,\n opportunity.num_of_end_of_contract_extension_month,\n opportunity.num_of_csm_extension_month,\n opportunity.discount_rate,\n opportunity.delta_booking,\n opportunity.sms_delta_earr,\n opportunity.subscriptions_delta_earr,\n opportunity.delta_acv_in_usd,\n opportunity.conversion_rate,\n opportunity.estimated_arr_in_usd,\n opportunity.sms_estimated_arr_in_usd,\n opportunity.email_estimated_arr_in_usd,\n opportunity.subscriptions_estimated_arr_in_usd,\n opportunity.prime_estimated_arr_in_usd,\n opportunity.gold_estimated_arr_in_usd,\n opportunity.delta_acv_in_usd + opportunity.estimated_arr_in_usd + opportunity.prime_estimated_arr_in_usd + opportunity.gold_estimated_arr_in_usd AS created_pipeline_in_usd,\n opportunity.pipeline_usd,\n opportunity.pre_opp_ht_product_list,\n line_item.product_list,\n line_item.provisioned_plan_list,\n line_item.reviews_acv_in_usd_sum,\n line_item.reviews_acv_in_original_currency_sum,\n line_item.vms_acv_in_usd_sum,\n line_item.vms_acv_in_original_currency_sum,\n line_item.insights_acv_in_usd_sum,\n line_item.insights_acv_in_original_currency_sum,\n line_item.loyalty_acv_in_usd_sum,\n line_item.loyalty_acv_in_original_currency_sum,\n line_item.sms_acv_in_usd_sum,\n line_item.sms_acv_in_original_currency_sum,\n line_item.subscriptions_acv_in_usd_sum,\n line_item.subscriptions_acv_in_original_currency_sum,\n line_item.is_reviews,\n line_item.is_vms,\n line_item.is_insights,\n line_item.is_loyalty,\n line_item.is_sms,\n line_item.is_subscriptions,\n line_item.is_email,\n opportunity.is_email_intent,\n opportunity.is_closed,\n opportunity.is_excluded_from_compensation,\n opportunity.is_current_contract,\n opportunity.is_company_expansion,\n opportunity.is_sal,\n opportunity.is_won_sale,\n opportunity.is_lost,\n opportunity.is_lost_after_won,\n opportunity.lost_reason,\n opportunity.lost_sub_reason,\n opportunity.lost_reason_details,\n opportunity.lost_after_won_reason,\n opportunity.is_new_account_opportunity,\n opportunity.is_marketing,\n opportunity.is_osdr,\n opportunity.is_other_demand_gen_channel,\n opportunity.is_bundle,\n opportunity.is_scsm_deal,\n opportunity.is_partner_upsell,\n SMALLINT(IF(DATEDIFF(opportunity.created_date, TRUNC(opportunity.created_date, 'month')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'month')), 1, 0)) AS is_created_mtd,\n SMALLINT(IF(DATEDIFF(opportunity.created_date, TRUNC(opportunity.created_date, 'quarter')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'quarter')), 1, 0)) AS is_created_qtd,\n SMALLINT(IF(DATEDIFF(opportunity.entered_demo_date, TRUNC(opportunity.entered_demo_date, 'month')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'month')), 1, 0)) AS is_entered_demo_mtd,\n SMALLINT(IF(DATEDIFF(opportunity.entered_demo_date, TRUNC(opportunity.entered_demo_date, 'quarter')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'quarter')), 1, 0)) AS is_entered_demo_qtd,\n SMALLINT(IF(DATEDIFF(opportunity.close_date, TRUNC(opportunity.close_date, 'month')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'month')), 1, 0)) AS is_closed_mtd,\n SMALLINT(IF(DATEDIFF(opportunity.close_date, TRUNC(opportunity.close_date, 'quarter')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'quarter')), 1, 0)) AS is_closed_qtd,\n opportunity.partner_engagement_id,\n opportunity.referral_type,\n opportunity.original_referrer_id,\n opportunity.contract_duration_months,\n opportunity.contract_actual_duration_months,\n NVL(MONTHS_BETWEEN(opportunity.contract_renewal_date,opportunity.start_date),0) AS contract_duration_with_extension_months,\n opportunity.original_referrer_owner,\n referrer_owner.sf_user_full_name AS referrer_owner_name,\n partner.partner_account_name,\n partner.partner_account_referrer_type,\n opportunity.won_sale_probability,\n opportunity.upsell_acv_in_usd,\n opportunity.subscriptions_estimated_arr_in_usd * opportunity.won_sale_probability AS weighted_subscriptions_estimated_arr_in_usd,\n opportunity.sms_estimated_arr_in_usd * opportunity.won_sale_probability AS weighted_sms_estimated_arr_in_usd,\n opportunity.email_estimated_arr_in_usd * opportunity.won_sale_probability AS weighted_email_estimated_arr_in_usd,\n opportunity.prime_estimated_arr_in_usd * opportunity.won_sale_probability AS weighted_prime_estimated_arr_in_usd,\n opportunity.gold_estimated_arr_in_usd * opportunity.won_sale_probability AS weighted_gold_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.subscriptions_estimated_arr_in_usd, 0) AS won_subscriptions_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.sms_estimated_arr_in_usd, 0) AS won_sms_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.email_estimated_arr_in_usd, 0) AS won_email_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.prime_estimated_arr_in_usd, 0) AS won_prime_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.gold_estimated_arr_in_usd, 0) AS won_gold_estimated_arr_in_usd,\n IF(opportunity.is_won_sale = 1, line_item.reviews_acv_in_usd_sum, 0) AS won_reviews_acv_in_usd_sum,\n IF(opportunity.is_won_sale = 1, line_item.loyalty_acv_in_usd_sum, 0) AS won_loyalty_acv_in_usd_sum,\n IF(opportunity.is_won_sale = 1, line_item.sms_acv_in_usd_sum, 0) AS won_sms_acv_in_usd_sum,\n IF(opportunity.is_won_sale = 1, line_item.subscriptions_acv_in_usd_sum, 0) AS won_subscriptions_acv_in_usd_sum,\n IF(opportunity.is_won_sale = 1, line_item.vms_acv_in_usd_sum, 0) AS won_vms_acv_in_usd_sum,\n IF(opportunity.is_won_sale = 1, opportunity.upsell_acv_in_usd, 0) AS won_upsell_acv_in_usd,\n opportunity.delta_acv_in_usd * opportunity.won_sale_probability AS weighted_delta_acv_in_usd,\n IF(opportunity.is_closed = 0, opportunity.delta_acv_in_usd, 0) AS open_delta_acv_in_usd,\n IF(opportunity.is_won_sale = 1, opportunity.delta_acv_in_usd, 0) AS won_delta_acv_in_usd,\n SMALLINT(NVL(partner_opportunity.is_partner_opportunity,0)) AS is_partner_opportunity,\n prediction.prediction_reviews_previous_acv,\n prediction.prediction_reviews_current_acv,\n prediction.prediction_reviews_certainty,\n prediction.prediction_predicted_reviews_acv,\n prediction.prediction_reviews_current_hedged_acv,\n prediction.prediction_reviews_risk_buckets,\n prediction.prediction_loyalty_previous_acv,\n prediction.prediction_loyalty_current_acv,\n prediction.prediction_loyalty_certainty,\n prediction.prediction_predicted_loyalty_acv,\n prediction.prediction_loyalty_current_hedged_acv,\n prediction.prediction_loyalty_risk_buckets,\n opportunity.renewal_to_opportunity_id,\n renewals.previous_ugc_renewals_cnt,\n renewals.previous_loyalty_renewals_cnt,\n renewals.previous_sms_renewals_cnt,\n renewals.previous_renewals_cnt,\n opportunity.is_ht_ss,\n opportunity.is_staggered_contract, \n opportunity.is_deleted,\n opportunity.updated_at,\n opportunity.created_date,\n opportunity.created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_mc_opportunity AS opportunity\n INNER JOIN import_salesforce_stg__mc_account AS sf_account\n ON opportunity.account_id = sf_account.account_id\n LEFT JOIN line_item_agg_by_opp AS line_item\n ON opportunity.opportunity_id = line_item.opportunity_id\n LEFT JOIN opportunities_with_partners AS partner_opportunity\n ON opportunity.opportunity_id = partner_opportunity.opportunity_id\n LEFT JOIN partner_account AS partner\n ON partner.partner_account_id = opportunity.original_referrer_id\n LEFT JOIN opportunity_by_prediction AS prediction\n ON opportunity.opportunity_id = prediction.opportunity_id AND opportunity_by_prediction_rank = 1\n LEFT JOIN renewasl_by_products AS renewals\n ON renewals.opportunity_id = opportunity.opportunity_id\n LEFT JOIN import_dim_sf_users AS referrer_owner\n ON opportunity.referrer_owner_id = referrer_owner.sf_user_id\n AND referrer_owner.scd_cur_ind = 1\n LEFT JOIN opp_last_stage_change_date\n ON opportunity.opportunity_id = opp_last_stage_change_date.opportunity_id\n\n)\n\nSELECT *\nFROM salesforce_opportunity", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__opportunity_line_item": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__opportunity_line_item", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.sql", "unique_id": "model.yoda.analytics___salesforce__opportunity_line_item", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__opportunity_line_item", "analytics___salesforce__opportunity_line_item"], "alias": "analytics___salesforce__opportunity_line_item", "checksum": {"name": "sha256", "checksum": "a48efbd080e745a0a1d1e6bd546f4cd2c97e2303fa4322164251afd37d53492e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled table of Opportunity line item salesforce object.\nPK: line_item_id", "columns": {"line_item_id": {"name": "line_item_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "FK: opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_product": {"name": "line_item_product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_plan": {"name": "line_item_plan", "description": "product plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisioned_plan_name": {"name": "provisioned_plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_rate": {"name": "discount_rate", "description": "percent of discount given on line item", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "sales_price_in_original_currency": {"name": "sales_price_in_original_currency", "description": "The initial price of the line item before applying the discount rate", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "sales_price_in_usd": {"name": "sales_price_in_usd", "description": "Sales price, which is the initial price for the line item, prior to discount, in USD.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "price_in_original_currency": {"name": "price_in_original_currency", "description": "the price of the line item after discount in original currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "price_in_usd": {"name": "price_in_usd", "description": "The price of the line item, after discount in original usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "zuora_product_rate_plan_id": {"name": "zuora_product_rate_plan_id", "description": "FK: zuora_rate_plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_start_date": {"name": "contract_start_date", "description": "line item contract start date - match staggered contract start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights": {"name": "is_insights", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_core_plan": {"name": "is_core_plan", "description": "is that the core plan of the product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "description": {"name": "description", "description": "line item description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082650.288533, "relation_name": "dev_dkruh1.analytics___salesforce__opportunity_line_item", "raw_code": "WITH import_opportunity_line_item AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_opportunity_line_item') }}\n\n), import_salesforce_conversion_rate AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_conversion_rate') }}\n\n), import_mc_opportunity AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_opportunity') }}\n\n), opportunity_line_item AS (\n\n SELECT\n line_item.line_item_id,\n line_item.opportunity_id,\n line_item.line_item_product,\n line_item.line_item_plan,\n line_item.provisioned_plan_name,\n line_item.discount_rate,\n line_item.sales_price_in_original_currency,\n CAST(line_item.sales_price_in_original_currency/CAST(rate.conversion_rate AS DECIMAL(10,2)) AS DECIMAL(10,2)) AS sales_price_in_usd,\n line_item.price_in_original_currency,\n CAST(line_item.price_in_original_currency/CAST(rate.conversion_rate AS DECIMAL(10,2)) AS DECIMAL(10,2)) AS price_in_usd,\n line_item.zuora_product_rate_plan_id,\n line_item.contract_start_date,\n line_item.is_reviews,\n line_item.is_vms,\n line_item.is_insights,\n line_item.is_loyalty,\n line_item.is_sms,\n line_item.is_subscriptions,\n line_item.is_email,\n line_item.is_core_plan,\n line_item.description,\n line_item.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_opportunity_line_item AS line_item\n INNER JOIN import_mc_opportunity AS opportunity\n ON line_item.opportunity_id = opportunity.opportunity_id\n LEFT JOIN import_salesforce_conversion_rate AS rate\n ON opportunity.close_date >= rate.from_date\n AND opportunity.close_date < rate.to_date\n AND opportunity.original_currency = rate.currency_symbol\n\n)\n\nSELECT * \nFROM opportunity_line_item", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_opportunity_line_item", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_conversion_rate", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_opportunity_line_item", "model.yoda.analytics___salesforce_stg__mc_conversion_rate", "model.yoda.analytics___salesforce_stg__mc_opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.sql", "compiled": true, "compiled_code": "WITH import_opportunity_line_item AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_opportunity_line_item\n\n), import_salesforce_conversion_rate AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_conversion_rate\n\n), import_mc_opportunity AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_opportunity\n\n), opportunity_line_item AS (\n\n SELECT\n line_item.line_item_id,\n line_item.opportunity_id,\n line_item.line_item_product,\n line_item.line_item_plan,\n line_item.provisioned_plan_name,\n line_item.discount_rate,\n line_item.sales_price_in_original_currency,\n CAST(line_item.sales_price_in_original_currency/CAST(rate.conversion_rate AS DECIMAL(10,2)) AS DECIMAL(10,2)) AS sales_price_in_usd,\n line_item.price_in_original_currency,\n CAST(line_item.price_in_original_currency/CAST(rate.conversion_rate AS DECIMAL(10,2)) AS DECIMAL(10,2)) AS price_in_usd,\n line_item.zuora_product_rate_plan_id,\n line_item.contract_start_date,\n line_item.is_reviews,\n line_item.is_vms,\n line_item.is_insights,\n line_item.is_loyalty,\n line_item.is_sms,\n line_item.is_subscriptions,\n line_item.is_email,\n line_item.is_core_plan,\n line_item.description,\n line_item.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_opportunity_line_item AS line_item\n INNER JOIN import_mc_opportunity AS opportunity\n ON line_item.opportunity_id = opportunity.opportunity_id\n LEFT JOIN import_salesforce_conversion_rate AS rate\n ON opportunity.close_date >= rate.from_date\n AND opportunity.close_date < rate.to_date\n AND opportunity.original_currency = rate.currency_symbol\n\n)\n\nSELECT * \nFROM opportunity_line_item", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__partner_engagement": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__partner_engagement", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.sql", "unique_id": "model.yoda.analytics___salesforce__partner_engagement", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__partner_engagement", "analytics___salesforce__partner_engagement"], "alias": "analytics___salesforce__partner_engagement", "checksum": {"name": "sha256", "checksum": "a22aefc865e2c6c995490399feeff335de5bae052742e5c9c16652b890e986de"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Partner Engagement object is an enrichment of the Salesforce Partner Referral object. \nThe terms \"Partner Engagement\" and \"Partner Referral\" are practically interchangeable, yet Partner Referral implies that a partner completed a referral, while this is not always the case.", "columns": {"partner_engagement_id": {"name": "partner_engagement_id", "description": "The primary key of the table. It can also be found as a foreign key in dim_opportunity where it's called partner_referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_type": {"name": "referral_type", "description": "Identifies whether its an inbound vs outbound Partner", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_sub_type": {"name": "referral_sub_type", "description": "Tells us whether it's a referral, an influence, or a heads up \n(if it's an outbound there are some other types which you can ask Angelo Carlo about)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_date": {"name": "referral_date", "description": "The date of the referral. If it's null you can also use created_at in some use-cases", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "partner_account_id": {"name": "partner_account_id", "description": "The account id of the partner account that made the referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_account_organization_key": {"name": "partner_account_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_account_owner_full_name": {"name": "partner_account_owner_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_account_owner_role": {"name": "partner_account_owner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_contact_id": {"name": "partner_contact_id", "description": "The contact id of the employee (who works for the partner) that made the referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager_id": {"name": "partner_manager_id", "description": "The id of the partner manager who sourced the referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_id": {"name": "referred_account_id", "description": "Recall that a partner referral aka a Partner Engagement can be a referral of an account or a referral of a lead. If it's a referral of an account, then you can see which account was referred here.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_organization_key": {"name": "referred_account_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_partner_upsell": {"name": "is_partner_upsell", "description": "Tells whether the partner referral is connected to as Cross-sell Lead", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "referred_lead_id": {"name": "referred_lead_id", "description": "If thePartner Engagementis a lead referral then you can find the lead ID here", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_contact_id": {"name": "referred_contact_id", "description": "If the referred account/lead has a specific contact associated with it, the contact id can be found here", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "original_referrer_owner_id": {"name": "original_referrer_owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_owner_full_name": {"name": "original_referrer_owner_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_owner_role": {"name": "original_referrer_owner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_owner_manager_id": {"name": "original_referrer_owner_manager_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_owner_manager_full_name": {"name": "original_referrer_owner_manager_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_owner_name": {"name": "partner_owner_name", "description": "The name of the partner owner. The owner and the original_referrer_owner can definetly be different, and it's the original referrer owner that receives/received attribution. The partner owner is the current owner.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_interest": {"name": "product_interest", "description": "What products the customer is potentially interested in, though speak to Gilad Wilk, Alex Lazoff, Eric Griego etc. to find out how carefully they fill out this field. I have a feeling it's not done very carefully by the PM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_claim_duration_months": {"name": "referral_claim_duration_months", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "referral_claim_period_end_date": {"name": "referral_claim_period_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "referee_owner_name": {"name": "referee_owner_name", "description": "The name of the owner of the lead or account that was referred by the partner", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_contact_name": {"name": "referred_by_contact_name", "description": "The partner contact name that made the referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_contact_email": {"name": "partner_contact_email", "description": "The partner contact email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referree_annual_revenue_bucket": {"name": "referree_annual_revenue_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referee_platform": {"name": "referee_platform", "description": "Which ecom platform the referee uses (referee means the account or lead being referred by the partner)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rev_share_rate": {"name": "rev_share_rate", "description": "Check if this is maintained before using it, but it should be based off the partner tier (different tiers receive different rev share rates)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "converted_from_heads_up_to_referral_at": {"name": "converted_from_heads_up_to_referral_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "converted_from_heads_up_to_referral_date": {"name": "converted_from_heads_up_to_referral_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_referred_to_growth": {"name": "is_referred_to_growth", "description": "A lot of PEs don't ever convert into opportunities, and you may look at that and wonder why none of them are converting into opportunities. This field tells us which PEs are converting to Growth, one of our Low Touch (LT) plans. In other words the customer did not join through an AE but rather through a LT plan which was done by the customer without a sales rep (hency no opportunity created). Speak to Alex Lazoff and Gilad wilk to see if the field is maintained and when they started using it, as it's relatively recent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "referred_account_name": {"name": "referred_account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_country": {"name": "referred_account_country", "description": "The billing country on the referred account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_estimated_monthly_orders_volume": {"name": "referred_account_estimated_monthly_orders_volume", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_industry_name": {"name": "referred_account_industry_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_sub_industry_name": {"name": "referred_account_sub_industry_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_current_contract_cnt": {"name": "referred_account_current_contract_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "referred_account_packages": {"name": "referred_account_packages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_products_in_tam_list": {"name": "referred_account_products_in_tam_list", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_platform": {"name": "referred_account_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_cs_tags": {"name": "referred_account_cs_tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_created_mtd": {"name": "is_created_mtd", "description": "The difference in days between the beggining of the created date month and the created date\nis less than/equal to the difference in days between the beggining of current month and today", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_created_qtd": {"name": "is_created_qtd", "description": "The difference in days between the beggining of the created date quarter and the created date\nis less than/equal to the difference in days between the beggining of current quarter and today", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082650.357493, "relation_name": "dev_dkruh1.analytics___salesforce__partner_engagement", "raw_code": "WITH import_salesforce_mc_partner_referral AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_partner_referral') }}\n\n), import_salesforce_account AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce__account') }}\n\n), import_dim_sf_users_scd AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__dim_sf_users_scd') }}\n\n), salesforce_partner_engagement AS (\n\n SELECT\n partner_referral.partner_engagement_id,\n partner_referral.name,\n partner_referral.referral_type,\n partner_referral.referral_sub_type,\n partner_referral.referral_date,\n partner_referral.partner_account_id,\n partner_account.organization_key AS partner_account_organization_key,\n partner_account.account_owner_full_name AS partner_account_owner_full_name,\n partner_account.account_owner_role AS partner_account_owner_role,\n partner_referral.partner_contact_id,\n partner_referral.partner_manager_id,\n partner_referral.referred_account_id,\n referred_account.organization_key AS referred_account_organization_key,\n partner_referral.is_partner_upsell,\n partner_referral.referred_lead_id,\n partner_referral.referred_contact_id,\n partner_referral.is_deleted,\n partner_referral.original_referrer_owner_id,\n original_referrer_owner_user.sf_user_full_name AS original_referrer_owner_full_name,\n original_referrer_owner_user.sf_user_role AS original_referrer_owner_role,\n original_referrer_owner_user.manager_sf_user_id AS original_referrer_owner_manager_id,\n original_referrer_owner_user.manager_full_name AS original_referrer_owner_manager_full_name,\n partner_referral.partner_owner_name,\n partner_referral.product_interest,\n partner_referral.referral_claim_duration_months,\n partner_referral.referral_claim_period_end_date,\n partner_referral.referee_owner_name,\n partner_referral.referred_by_contact_name,\n partner_referral.partner_contact_email,\n partner_referral.referree_annual_revenue_bucket,\n partner_referral.referee_platform,\n partner_referral.rev_share_rate,\n partner_referral.converted_from_heads_up_to_referral_at,\n partner_referral.converted_from_heads_up_to_referral_date,\n partner_referral.is_referred_to_growth,\n referred_account.account_name AS referred_account_name,\n referred_account.country AS referred_account_country,\n referred_account.estimated_monthly_orders_volume AS referred_account_estimated_monthly_orders_volume,\n referred_account.industry_name AS referred_account_industry_name,\n referred_account.sub_industry_name AS referred_account_sub_industry_name,\n referred_account.current_contract_cnt AS referred_account_current_contract_cnt,\n referred_account.packages AS referred_account_packages,\n referred_account.products_in_tam_list AS referred_account_products_in_tam_list,\n referred_account.platform AS referred_account_platform,\n referred_account.cs_tags AS referred_account_cs_tags,\n partner_referral.created_date,\n partner_referral.created_at,\n SMALLINT(IF(DATEDIFF(partner_referral.created_date, TRUNC(partner_referral.created_date, 'month')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'month')), 1, 0)) AS is_created_mtd,\n SMALLINT(IF(DATEDIFF(partner_referral.created_date, TRUNC(partner_referral.created_date, 'quarter')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'quarter')), 1, 0)) AS is_created_qtd,\n partner_referral.dwh_updated_at\n FROM import_salesforce_mc_partner_referral AS partner_referral\n LEFT JOIN import_salesforce_account AS referred_account\n ON referred_account.account_id = partner_referral.referred_account_id\n LEFT JOIN import_salesforce_account AS partner_account\n ON partner_account.account_id = partner_referral.partner_account_id \n LEFT JOIN import_dim_sf_users_scd AS original_referrer_owner_user\n ON original_referrer_owner_user.sf_user_id = partner_referral.original_referrer_owner_id \n AND original_referrer_owner_user.scd_cur_ind = 1\n\n)\n\nSELECT * \nFROM salesforce_partner_engagement", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_partner_referral", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_users_scd", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_partner_referral", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.sql", "compiled": true, "compiled_code": "WITH import_salesforce_mc_partner_referral AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_partner_referral\n\n), import_salesforce_account AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce__account\n\n), import_dim_sf_users_scd AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__dim_sf_users_scd\n\n), salesforce_partner_engagement AS (\n\n SELECT\n partner_referral.partner_engagement_id,\n partner_referral.name,\n partner_referral.referral_type,\n partner_referral.referral_sub_type,\n partner_referral.referral_date,\n partner_referral.partner_account_id,\n partner_account.organization_key AS partner_account_organization_key,\n partner_account.account_owner_full_name AS partner_account_owner_full_name,\n partner_account.account_owner_role AS partner_account_owner_role,\n partner_referral.partner_contact_id,\n partner_referral.partner_manager_id,\n partner_referral.referred_account_id,\n referred_account.organization_key AS referred_account_organization_key,\n partner_referral.is_partner_upsell,\n partner_referral.referred_lead_id,\n partner_referral.referred_contact_id,\n partner_referral.is_deleted,\n partner_referral.original_referrer_owner_id,\n original_referrer_owner_user.sf_user_full_name AS original_referrer_owner_full_name,\n original_referrer_owner_user.sf_user_role AS original_referrer_owner_role,\n original_referrer_owner_user.manager_sf_user_id AS original_referrer_owner_manager_id,\n original_referrer_owner_user.manager_full_name AS original_referrer_owner_manager_full_name,\n partner_referral.partner_owner_name,\n partner_referral.product_interest,\n partner_referral.referral_claim_duration_months,\n partner_referral.referral_claim_period_end_date,\n partner_referral.referee_owner_name,\n partner_referral.referred_by_contact_name,\n partner_referral.partner_contact_email,\n partner_referral.referree_annual_revenue_bucket,\n partner_referral.referee_platform,\n partner_referral.rev_share_rate,\n partner_referral.converted_from_heads_up_to_referral_at,\n partner_referral.converted_from_heads_up_to_referral_date,\n partner_referral.is_referred_to_growth,\n referred_account.account_name AS referred_account_name,\n referred_account.country AS referred_account_country,\n referred_account.estimated_monthly_orders_volume AS referred_account_estimated_monthly_orders_volume,\n referred_account.industry_name AS referred_account_industry_name,\n referred_account.sub_industry_name AS referred_account_sub_industry_name,\n referred_account.current_contract_cnt AS referred_account_current_contract_cnt,\n referred_account.packages AS referred_account_packages,\n referred_account.products_in_tam_list AS referred_account_products_in_tam_list,\n referred_account.platform AS referred_account_platform,\n referred_account.cs_tags AS referred_account_cs_tags,\n partner_referral.created_date,\n partner_referral.created_at,\n SMALLINT(IF(DATEDIFF(partner_referral.created_date, TRUNC(partner_referral.created_date, 'month')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'month')), 1, 0)) AS is_created_mtd,\n SMALLINT(IF(DATEDIFF(partner_referral.created_date, TRUNC(partner_referral.created_date, 'quarter')) <= DATEDIFF(CURRENT_DATE, TRUNC(CURRENT_DATE, 'quarter')), 1, 0)) AS is_created_qtd,\n partner_referral.dwh_updated_at\n FROM import_salesforce_mc_partner_referral AS partner_referral\n LEFT JOIN import_salesforce_account AS referred_account\n ON referred_account.account_id = partner_referral.referred_account_id\n LEFT JOIN import_salesforce_account AS partner_account\n ON partner_account.account_id = partner_referral.partner_account_id \n LEFT JOIN import_dim_sf_users_scd AS original_referrer_owner_user\n ON original_referrer_owner_user.sf_user_id = partner_referral.original_referrer_owner_id \n AND original_referrer_owner_user.scd_cur_ind = 1\n\n)\n\nSELECT * \nFROM salesforce_partner_engagement", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__service_case": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__service_case", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.sql", "unique_id": "model.yoda.analytics___salesforce__service_case", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__service_case", "analytics___salesforce__service_case"], "alias": "analytics___salesforce__service_case", "checksum": {"name": "sha256", "checksum": "58708e4670e76c27309b8a075f7675b7b764fba71d9be1babb85cba93c3a5234"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled Table Salseforce Cases, contains support cases, escelated and semi escelated cases\nPK & granularity: case_id, case_number", "columns": {"case_id": {"name": "case_id", "description": "PK: case id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "case_number": {"name": "case_number", "description": "PK: case number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opened_at": {"name": "opened_at", "description": "case open time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "closed_at": {"name": "closed_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "origin": {"name": "origin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subject": {"name": "subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "topic": {"name": "topic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "inquiry_type": {"name": "inquiry_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feature": {"name": "feature", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "initial case team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team_formula": {"name": "team_formula", "description": "current case team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "live_chat_started_at": {"name": "live_chat_started_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "live_chat_ended_at": {"name": "live_chat_ended_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "case app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_segment": {"name": "customer_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "submitter_email": {"name": "submitter_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "severity_score": {"name": "severity_score", "description": "case severity score (1 - highest, 4 - lowest)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "survey_score": {"name": "survey_score", "description": "customer survey score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "record_type": {"name": "record_type", "description": "case record type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "survey_response_at": {"name": "survey_response_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_response_at": {"name": "first_response_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "agent_replies_cnt": {"name": "agent_replies_cnt", "description": "total agents replies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "replies_cnt": {"name": "replies_cnt", "description": "number of total case replies: agent replies + customer replies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "de_escalated_at": {"name": "de_escalated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "escalated_to_tier2_at": {"name": "escalated_to_tier2_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "escalation_severity": {"name": "escalation_severity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "escalation_type": {"name": "escalation_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bug_fix_due_date": {"name": "bug_fix_due_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "bug_number": {"name": "bug_number", "description": "related bug number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bug_status": {"name": "bug_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bug_fix_due_date_initial": {"name": "bug_fix_due_date_initial", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "Bug_actual_ttr": {"name": "Bug_actual_ttr", "description": "bugs actual time to response", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "bug_number_days_in_delay": {"name": "bug_number_days_in_delay", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "incident_id": {"name": "incident_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "requester_wait_time_in_hours": {"name": "requester_wait_time_in_hours", "description": "RWT in hours", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "requester_wait_time_t1_in_hours": {"name": "requester_wait_time_t1_in_hours", "description": "RWT tier 1 in hours", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "requester_wait_time_t2_in_hours": {"name": "requester_wait_time_t2_in_hours", "description": "RWT tier 2 in hours", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "time_to_first_response_in_minutes": {"name": "time_to_first_response_in_minutes", "description": "TTFR in minutes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "time_to_first_response_t2_in_minutes": {"name": "time_to_first_response_t2_in_minutes", "description": "TTFR tier 2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pending_rnd_in_hours": {"name": "pending_rnd_in_hours", "description": "number of hours pending for R&D response", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,0)"}, "timer_t1_net_support_rwt": {"name": "timer_t1_net_support_rwt", "description": "tier 1 Net RWT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "timer_t2_net_support_rwt": {"name": "timer_t2_net_support_rwt", "description": "tier 2 Net RWT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_type_customer_care": {"name": "is_type_customer_care", "description": "indicator = 1 IF record_type = '0127Q0000003ROgQAM' --> customer care", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_onboarding": {"name": "is_onboarding", "description": "indicator = 1 IF subject LIKE onboarding", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_escalated": {"name": "is_escalated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_closed": {"name": "is_closed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082650.4222496, "relation_name": "dev_dkruh1.analytics___salesforce__service_case", "raw_code": "-- Import --\n\nWITH import_salesforce_stg__mc_service_case AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_service_case') }}\n\n), import_platform__store AS (\n\n SELECT * \n FROM {{ ref('analytics___platform__store') }}\n\n), import_platform__organization AS (\n\n SELECT * \n FROM {{ ref('analytics___platform__organization') }}\n),\n\n-- Logic -- \n\nsalseforce__service_case AS (\n\n SELECT \n service_case.case_id,\n service_case.case_number,\n service_case.opened_at,\n service_case.closed_at,\n service_case.origin,\n service_case.status,\n service_case.subject,\n service_case.topic,\n service_case.inquiry_type,\n service_case.feature,\n service_case.description,\n service_case.product_family,\n service_case.team,\n service_case.team_formula,\n service_case.live_chat_started_at,\n service_case.live_chat_ended_at,\n service_case.app_key,\n NVL(store.organization_key,organization.organization_key) AS organization_key, \n NVL(store.organization_id,organization.organization_id) AS organization_id,\n service_case.account_id,\n service_case.customer_segment,\n service_case.submitter_email,\n service_case.severity_score,\n service_case.survey_score,\n service_case.record_type,\n service_case.survey_response_at,\n service_case.first_response_at,\n service_case.agent_replies_cnt,\n service_case.replies_cnt,\n service_case.de_escalated_at,\n service_case.escalated_to_tier2_at,\n service_case.escalation_severity,\n service_case.escalation_type,\n service_case.bug_fix_due_date,\n service_case.bug_number,\n service_case.bug_status,\n service_case.bug_fix_due_date_initial,\n service_case.Bug_actual_ttr,\n service_case.bug_number_days_in_delay,\n service_case.incident_id,\n service_case.requester_wait_time_in_hours,\n service_case.requester_wait_time_t1_in_hours,\n service_case.requester_wait_time_t2_in_hours,\n service_case.time_to_first_response_in_minutes,\n service_case.time_to_first_response_t2_in_minutes,\n service_case.pending_rnd_in_hours,\n service_case.timer_t1_net_support_rwt,\n service_case.timer_t2_net_support_rwt,\n SMALLINT(IF(service_case.record_type = '0127Q0000003ROgQAM',1,0)) AS is_type_customer_care,\n SMALLINT(IF(LOWER(subject) LIKE '%onboarding%',1,0)) AS is_onboarding,\n service_case.is_escalated,\n service_case.is_closed,\n service_case.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg__mc_service_case AS service_case\n LEFT JOIN import_platform__store AS store\n ON service_case.app_key = store.app_key\n LEFT JOIN import_platform__organization AS organization\n ON service_case.organization_Key = organization.organization_Key\n \n)\n\n-- Result --\n\nSELECT * \nFROM salseforce__service_case", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_service_case", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_service_case", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_stg__mc_service_case AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_service_case\n\n), import_platform__store AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___platform__store\n\n), import_platform__organization AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___platform__organization\n),\n\n-- Logic -- \n\nsalseforce__service_case AS (\n\n SELECT \n service_case.case_id,\n service_case.case_number,\n service_case.opened_at,\n service_case.closed_at,\n service_case.origin,\n service_case.status,\n service_case.subject,\n service_case.topic,\n service_case.inquiry_type,\n service_case.feature,\n service_case.description,\n service_case.product_family,\n service_case.team,\n service_case.team_formula,\n service_case.live_chat_started_at,\n service_case.live_chat_ended_at,\n service_case.app_key,\n NVL(store.organization_key,organization.organization_key) AS organization_key, \n NVL(store.organization_id,organization.organization_id) AS organization_id,\n service_case.account_id,\n service_case.customer_segment,\n service_case.submitter_email,\n service_case.severity_score,\n service_case.survey_score,\n service_case.record_type,\n service_case.survey_response_at,\n service_case.first_response_at,\n service_case.agent_replies_cnt,\n service_case.replies_cnt,\n service_case.de_escalated_at,\n service_case.escalated_to_tier2_at,\n service_case.escalation_severity,\n service_case.escalation_type,\n service_case.bug_fix_due_date,\n service_case.bug_number,\n service_case.bug_status,\n service_case.bug_fix_due_date_initial,\n service_case.Bug_actual_ttr,\n service_case.bug_number_days_in_delay,\n service_case.incident_id,\n service_case.requester_wait_time_in_hours,\n service_case.requester_wait_time_t1_in_hours,\n service_case.requester_wait_time_t2_in_hours,\n service_case.time_to_first_response_in_minutes,\n service_case.time_to_first_response_t2_in_minutes,\n service_case.pending_rnd_in_hours,\n service_case.timer_t1_net_support_rwt,\n service_case.timer_t2_net_support_rwt,\n SMALLINT(IF(service_case.record_type = '0127Q0000003ROgQAM',1,0)) AS is_type_customer_care,\n SMALLINT(IF(LOWER(subject) LIKE '%onboarding%',1,0)) AS is_onboarding,\n service_case.is_escalated,\n service_case.is_closed,\n service_case.is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg__mc_service_case AS service_case\n LEFT JOIN import_platform__store AS store\n ON service_case.app_key = store.app_key\n LEFT JOIN import_platform__organization AS organization\n ON service_case.organization_Key = organization.organization_Key\n \n)\n\n-- Result --\n\nSELECT * \nFROM salseforce__service_case", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__store_product_metrics_snapshot_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.sql", "unique_id": "model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__store_product_metrics_snapshot_daily", "analytics___salesforce__store_product_metrics_snapshot_daily"], "alias": "analytics___salesforce__store_product_metrics_snapshot_daily", "checksum": {"name": "sha256", "checksum": "4e7e6cc0f28469af24107c3ad232f00ace5e6e39ab9191b57a86b3ea6807be8c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "write_to_saleforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "write_to_saleforce"], "description": "A view holding product metrics to write to salesforce, it takes all rows from the product metrics daily diff where the metrics are relevant to write to salesforce. PK & Granularity: App_Key__c, Product_Metrics_Name__c", "columns": {"Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "External_ID__c": {"name": "External_ID__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Organization_Key__c": {"name": "Organization_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "App_Key__c": {"name": "App_Key__c", "description": "PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Metrics_Name__c": {"name": "Product_Metrics_Name__c", "description": "PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Lines__c": {"name": "Product_Lines__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Enabled__c": {"name": "Enabled__c", "description": "Field to write to salesforce in case metric is of boolean type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Metric_Value__c": {"name": "Metric_Value__c", "description": "Field to write to salesforce in case metric is of string type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Quantity__c": {"name": "Quantity__c", "description": "Field to write to salesforce in case metric is of numeric type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "From_Date__c": {"name": "From_Date__c", "description": "Field to write to salesforce in case metric is of date type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "To_Date__c": {"name": "To_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "Self_Service__c": {"name": "Self_Service__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "Free__c": {"name": "Free__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "write_to_saleforce"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082650.4757433, "relation_name": "dev_dkruh1.analytics___salesforce__store_product_metrics_snapshot_daily", "raw_code": "{{ config( materialized = 'view' ) }}\n\nWITH import_store_product_metrics_daily_diff AS (\n\n SELECT * FROM {{ ref('analytics___platform__store_product_metrics_daily_diff') }}\n\n), daily_product_metrics_for_sf AS (\n\n SELECT\n Name,\n External_ID__c,\n Organization_Key__c,\n App_Key__c,\n Product_Metrics_Name__c,\n Product_Lines__c,\n Enabled__c,\n Metric_Value__c,\n Quantity__c,\n From_Date__c,\n To_Date__c,\n Self_Service__c,\n Free__c\n FROM import_store_product_metrics_daily_diff\n WHERE Product_Metrics_Name__c IN (\n -- Loyalty metrics --\n 'first time active3 date',\n 'is active 1',\n 'is active 2',\n 'is active 2.1',\n 'time to active 1 from creation',\n 'time to active 1 from subscription',\n 'time to active 2 from creation',\n 'time to active 2 from subscription',\n 'loyalty enablement date',\n -- UGC metrics --\n 'is map enabled',\n 'is video reviews enabled',\n 'is image reviews enabled',\n 'is google shopping pla enabled enabled',\n 'ugc activation level',\n 'reviews store widget version',\n 'is store reviews exported',\n 'is walmart retail syndication enabled',\n 'is facebook syndication enabled',\n 'is google feed enabled',\n 'is google seller rating enabled',\n 'ugc enablement date',\n -- SMS metrics --\n 'sms enablement date',\n 'active campaigns',\n 'active flows',\n 'is sms pop up enabled',\n 'sms enablement date',\n -- Synergies metrics --\n 'sms flows swell points reminder',\n 'sms flows yotpo site review',\n 'sms campaigns reward program',\n 'email editor reviews block',\n 'review earning rule loyalty',\n 'sms campaigns click to redeem',\n 'email editor loyalty block',\n 'sign up for sms earning rule loyalty',\n 'email editor product with reviews block',\n 'sms flows swell tier earned',\n 'sms campaigns redemption reminder',\n 'sms flows yotpo product review',\n 'image review earning rule loyalty',\n 'subscriptions management url notification flow',\n 'sms flows abandoned checkout reviews star rating',\n 'video review earning rule loyalty',\n 'loyalty subscription discount reward',\n 'sms flows cdp optin status changed',\n 'subscription cancellation notification flow',\n 'subscription confirmation notification flow',\n 'subscription payment failure notification flow',\n 'sms campaign to grow product subscribers',\n 'sms flows swell birthday',\n 'sms campaigns vip tier'\n )\n\n)\n\nSELECT * FROM daily_product_metrics_for_sf", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily_diff", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily_diff"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.sql", "compiled": true, "compiled_code": "\n\nWITH import_store_product_metrics_daily_diff AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store_product_metrics_daily_diff\n\n), daily_product_metrics_for_sf AS (\n\n SELECT\n Name,\n External_ID__c,\n Organization_Key__c,\n App_Key__c,\n Product_Metrics_Name__c,\n Product_Lines__c,\n Enabled__c,\n Metric_Value__c,\n Quantity__c,\n From_Date__c,\n To_Date__c,\n Self_Service__c,\n Free__c\n FROM import_store_product_metrics_daily_diff\n WHERE Product_Metrics_Name__c IN (\n -- Loyalty metrics --\n 'first time active3 date',\n 'is active 1',\n 'is active 2',\n 'is active 2.1',\n 'time to active 1 from creation',\n 'time to active 1 from subscription',\n 'time to active 2 from creation',\n 'time to active 2 from subscription',\n 'loyalty enablement date',\n -- UGC metrics --\n 'is map enabled',\n 'is video reviews enabled',\n 'is image reviews enabled',\n 'is google shopping pla enabled enabled',\n 'ugc activation level',\n 'reviews store widget version',\n 'is store reviews exported',\n 'is walmart retail syndication enabled',\n 'is facebook syndication enabled',\n 'is google feed enabled',\n 'is google seller rating enabled',\n 'ugc enablement date',\n -- SMS metrics --\n 'sms enablement date',\n 'active campaigns',\n 'active flows',\n 'is sms pop up enabled',\n 'sms enablement date',\n -- Synergies metrics --\n 'sms flows swell points reminder',\n 'sms flows yotpo site review',\n 'sms campaigns reward program',\n 'email editor reviews block',\n 'review earning rule loyalty',\n 'sms campaigns click to redeem',\n 'email editor loyalty block',\n 'sign up for sms earning rule loyalty',\n 'email editor product with reviews block',\n 'sms flows swell tier earned',\n 'sms campaigns redemption reminder',\n 'sms flows yotpo product review',\n 'image review earning rule loyalty',\n 'subscriptions management url notification flow',\n 'sms flows abandoned checkout reviews star rating',\n 'video review earning rule loyalty',\n 'loyalty subscription discount reward',\n 'sms flows cdp optin status changed',\n 'subscription cancellation notification flow',\n 'subscription confirmation notification flow',\n 'subscription payment failure notification flow',\n 'sms campaign to grow product subscribers',\n 'sms flows swell birthday',\n 'sms campaigns vip tier'\n )\n\n)\n\nSELECT * FROM daily_product_metrics_for_sf", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__store_product_metrics_snapshot_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.sql", "unique_id": "model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__store_product_metrics_snapshot_monthly", "analytics___salesforce__store_product_metrics_snapshot_monthly"], "alias": "analytics___salesforce__store_product_metrics_snapshot_monthly", "checksum": {"name": "sha256", "checksum": "db7e12057c5891edebdced1c91f8da24c50c16c93c27477fe92aa4f7d3446c3f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "write_to_saleforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "write_to_saleforce"], "description": "A view holding product metrics to write to salesforce, it takes all rows from the product metrics monthly unpivot where the metrics are relevant to write to salesforce. PK & Granularity: External_ID__c", "columns": {"Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "External_ID__c": {"name": "External_ID__c", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Organization_Key__c": {"name": "Organization_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "App_Key__c": {"name": "App_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Metrics_Name__c": {"name": "Product_Metrics_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Lines__c": {"name": "Product_Lines__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Enabled__c": {"name": "Enabled__c", "description": "Field to write to salesforce in case metric is of boolean type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Metric_Value__c": {"name": "Metric_Value__c", "description": "Field to write to salesforce in case metric is of string type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Quantity__c": {"name": "Quantity__c", "description": "Field to write to salesforce in case metric is of numeric type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "From_Date__c": {"name": "From_Date__c", "description": "Field to write to salesforce in case metric is of date type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "To_Date__c": {"name": "To_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "Self_Service__c": {"name": "Self_Service__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "Free__c": {"name": "Free__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "write_to_saleforce"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082650.525632, "relation_name": "dev_dkruh1.analytics___salesforce__store_product_metrics_snapshot_monthly", "raw_code": "{{ config( materialized = 'view' ) }}\n\nWITH import_product_metrics_monthly AS (\n\n SELECT * FROM {{ ref('analytics___platform__product_metrics_snapshot_monthly') }}\n\n), monthly_product_metrics_for_sf AS (\n\n SELECT\n Name,\n External_ID__c,\n Organization_Key__c,\n App_Key__c,\n Product_Metrics_Name__c,\n Product_Lines__c,\n Enabled__c,\n Metric_Value__c,\n Quantity__c,\n From_Date__c,\n To_Date__c,\n Self_Service__c,\n Free__c\n FROM import_product_metrics_monthly\n WHERE Product_Metrics_Name__c IN (\n -- Business metrics --\n 'orders count last month',\n 'orders count last 3m avarage',\n 'orders count last 12m avarage',\n 'yotpo tenure year count',\n 'orders bucket last 3m avarage',\n 'orders bucket last 12m avarage',\n -- Loyalty metrics --\n 'participation rate last 3m',\n 'added revenue last 3m',\n 'loyalty revenue rate last 3m',\n 'last 3m total store revenue',\n 'last 3m loyalty revenue',\n 'last 3m redeemers',\n 'last 3m non redeemers',\n 'last 3m purchasers',\n 'last 3m spb redeemers',\n 'last 3m spb non redeemers',\n 'added revenue rate last 3m',\n -- UGC metrics --\n 'order to review rate 7d from first email sent',\n 'previous month reviews',\n 'email open rate 7d from first email sent',\n -- SMS metrics --\n 'monthly roi',\n 'last 3m roi',\n 'sms message per subscriber',\n 'sms price per message'\n 'credits used',\n 'subscirbers',\n 'messages sent'\n )\n\n)\n\nSELECT * FROM monthly_product_metrics_for_sf", "language": "sql", "refs": [{"name": "analytics___platform__product_metrics_snapshot_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__product_metrics_snapshot_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.sql", "compiled": true, "compiled_code": "\n\nWITH import_product_metrics_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__product_metrics_snapshot_monthly\n\n), monthly_product_metrics_for_sf AS (\n\n SELECT\n Name,\n External_ID__c,\n Organization_Key__c,\n App_Key__c,\n Product_Metrics_Name__c,\n Product_Lines__c,\n Enabled__c,\n Metric_Value__c,\n Quantity__c,\n From_Date__c,\n To_Date__c,\n Self_Service__c,\n Free__c\n FROM import_product_metrics_monthly\n WHERE Product_Metrics_Name__c IN (\n -- Business metrics --\n 'orders count last month',\n 'orders count last 3m avarage',\n 'orders count last 12m avarage',\n 'yotpo tenure year count',\n 'orders bucket last 3m avarage',\n 'orders bucket last 12m avarage',\n -- Loyalty metrics --\n 'participation rate last 3m',\n 'added revenue last 3m',\n 'loyalty revenue rate last 3m',\n 'last 3m total store revenue',\n 'last 3m loyalty revenue',\n 'last 3m redeemers',\n 'last 3m non redeemers',\n 'last 3m purchasers',\n 'last 3m spb redeemers',\n 'last 3m spb non redeemers',\n 'added revenue rate last 3m',\n -- UGC metrics --\n 'order to review rate 7d from first email sent',\n 'previous month reviews',\n 'email open rate 7d from first email sent',\n -- SMS metrics --\n 'monthly roi',\n 'last 3m roi',\n 'sms message per subscriber',\n 'sms price per message'\n 'credits used',\n 'subscirbers',\n 'messages sent'\n )\n\n)\n\nSELECT * FROM monthly_product_metrics_for_sf", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__task": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__task", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.sql", "unique_id": "model.yoda.analytics___salesforce__task", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__task", "analytics___salesforce__task"], "alias": "analytics___salesforce__task", "checksum": {"name": "sha256", "checksum": "8c308a8c1fc10efb27b89476dbf443533333309098c6c2f64a3725ed13333f72"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled table of salesforce task object | PK: task_id | granularity: task_id", "columns": {"task_id": {"name": "task_id", "description": "id of the task.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_sf_user_id": {"name": "owner_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_user_role_id": {"name": "owner_user_role_id", "description": "user role id of the user assigned to the task and his role at the time task was updated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "who_object_id": {"name": "who_object_id", "description": "salesforce who object id (lead)id, contact_id, ...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "who_object_type": {"name": "who_object_type", "description": "type of salesforce what object (lead/contact/etc)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "what_object_id": {"name": "what_object_id", "description": "salesforce what object id (opportunity_id, account_id, ...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "what_object_type": {"name": "what_object_type", "description": "type of salesforce what object (opportunity/account/etc)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subject": {"name": "subject", "description": "Subject of the task.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "Status of the task.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phase": {"name": "phase", "description": "Phase of the task: Outreach, Pre-Renewal, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "medium": {"name": "medium", "description": "Medium of the task: Phone, Email, Social,", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "call_status": {"name": "call_status", "description": "Call status for the task: Connected, Left Voicemail, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "completion_time": {"name": "completion_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "completion_date": {"name": "completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082650.577845, "relation_name": "dev_dkruh1.analytics___salesforce__task", "raw_code": "-- Import\nWITH import_salesforce_stg__mc_task AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce_stg__mc_task') }}\n\n),\n\nimport_salesforce_object_prefix_id AS (\n\n SELECT * \n FROM {{ source('analytics__static', 'salesforce_object_prefix_id') }}\n\n),\n\nimport_salesforce_user_overtime AS (\n\n SELECT * \n FROM {{ ref('analytics___salesforce__user_overtime') }}\n\n-- Logic\n\n), salesforce_task AS (\n\n SELECT\n task.task_id,\n task.owner_sf_user_id,\n user_assigned.user_role_id AS owner_user_role_id,\n task.who_object_id,\n who_object_prefix.object_name AS who_object_type,\n task.what_object_id,\n what_object_prefix.object_name AS what_object_type,\n task.subject,\n task.status,\n task.phase,\n task.medium,\n task.call_status,\n task.is_deleted,\n task.completion_time,\n task.completion_date,\n task.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg__mc_task AS task\n LEFT JOIN import_salesforce_object_prefix_id AS what_object_prefix\n ON LEFT(task.what_object_id,3) = what_object_prefix.id_prefix\n LEFT JOIN import_salesforce_object_prefix_id AS who_object_prefix\n ON LEFT(task.who_object_id,3) = who_object_prefix.id_prefix\n LEFT JOIN import_salesforce_user_overtime AS user_assigned\n ON task.owner_sf_user_id = user_assigned.user_id\n AND task.updated_at BETWEEN user_assigned.from_time AND COALESCE(user_assigned.to_time,'2999-01-01 00:00:00')\n)\n\n-- Result\nSELECT * FROM salesforce_task", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_task", "package": null, "version": null}, {"name": "analytics___salesforce__user_overtime", "package": null, "version": null}], "sources": [["analytics__static", "salesforce_object_prefix_id"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.salesforce_object_prefix_id", "model.yoda.analytics___salesforce_stg__mc_task", "model.yoda.analytics___salesforce__user_overtime"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.sql", "compiled": true, "compiled_code": "-- Import\nWITH import_salesforce_stg__mc_task AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce_stg__mc_task\n\n),\n\nimport_salesforce_object_prefix_id AS (\n\n SELECT * \n FROM static.salesforce_object_prefix_id\n\n),\n\nimport_salesforce_user_overtime AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___salesforce__user_overtime\n\n-- Logic\n\n), salesforce_task AS (\n\n SELECT\n task.task_id,\n task.owner_sf_user_id,\n user_assigned.user_role_id AS owner_user_role_id,\n task.who_object_id,\n who_object_prefix.object_name AS who_object_type,\n task.what_object_id,\n what_object_prefix.object_name AS what_object_type,\n task.subject,\n task.status,\n task.phase,\n task.medium,\n task.call_status,\n task.is_deleted,\n task.completion_time,\n task.completion_date,\n task.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg__mc_task AS task\n LEFT JOIN import_salesforce_object_prefix_id AS what_object_prefix\n ON LEFT(task.what_object_id,3) = what_object_prefix.id_prefix\n LEFT JOIN import_salesforce_object_prefix_id AS who_object_prefix\n ON LEFT(task.who_object_id,3) = who_object_prefix.id_prefix\n LEFT JOIN import_salesforce_user_overtime AS user_assigned\n ON task.owner_sf_user_id = user_assigned.user_id\n AND task.updated_at BETWEEN user_assigned.from_time AND COALESCE(user_assigned.to_time,'2999-01-01 00:00:00')\n)\n\n-- Result\nSELECT * FROM salesforce_task", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__user_overtime": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__user_overtime", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.sql", "unique_id": "model.yoda.analytics___salesforce__user_overtime", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__user_overtime", "analytics___salesforce__user_overtime"], "alias": "analytics___salesforce__user_overtime", "checksum": {"name": "sha256", "checksum": "fecb88b1c4440283f6047e3d838d910dd21301625bd1391673104ff3fe3aa48e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A modeled table of salesforce user exploded over time according to role changes | PK: user_role_id | Granularity: user_id, from_time", "columns": {"user_role_id": {"name": "user_role_id", "description": "PK unique id for the combination of user of and role based on the role starting time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_id": {"name": "role_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_id": {"name": "manager_id", "description": "Manager's user sf id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id_15_digits": {"name": "account_id_15_digits", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_id": {"name": "created_by_id", "description": "user's creator sf id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_modified_by_id": {"name": "last_modified_by_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_name": {"name": "full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_name": {"name": "first_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "alias_name": {"name": "alias_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_name": {"name": "role_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_zone": {"name": "time_zone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_name": {"name": "manager_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager": {"name": "partner_manager", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_owner_name": {"name": "account_owner_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_team": {"name": "csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_pod_account_manager_id": {"name": "csm_pod_account_manager_id", "description": "account_manager_csm_pod__c AS csm_pod_account_manager_id, --", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "queue_type": {"name": "queue_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "badge_text": {"name": "badge_text", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_name": {"name": "company_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_login_date": {"name": "last_login_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "from_time": {"name": "from_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_current_role": {"name": "is_current_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active": {"name": "is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_integration_user": {"name": "is_integration_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_profile_photo_active": {"name": "is_profile_photo_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_queue": {"name": "is_queue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_low_touch_csm": {"name": "is_low_touch_csm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_super_csm": {"name": "is_super_csm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_login_user_member": {"name": "is_login_user_member", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_exclude_from_assignment_tracking": {"name": "is_exclude_from_assignment_tracking", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_marketing_activity_user": {"name": "is_marketing_activity_user", "description": "Will be checked for user that is used to log marketing activities to SF using Yesware", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082650.6398935, "relation_name": "dev_dkruh1.analytics___salesforce__user_overtime", "raw_code": "-- Import --\n\nWITH import_salesforce_user AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__mc_user') }}\n\n), import_salesforce_user_rold_scd AS (\n\n SELECT * FROM {{ ref('analytics___salesforce__user_role_scd') }}\n\n-- Logic --\n\n), user_role_overtime AS (\n\n SELECT\n user_id,\n role_id,\n role_name,\n is_super_csm,\n csm_team,\n updated_at - INTERVAL '1' SECOND AS from_time,\n NVL(LEAD(updated_at) OVER (PARTITION BY user_id ORDER BY updated_at), TIMESTAMP('2200-01-01')) AS to_time,\n ROW_NUMBER() OVER(PARTITION BY user_id ORDER BY updated_at DESC) AS role_rank\n FROM import_salesforce_user_rold_scd\n WHERE ISNOTNULL(role_name)\n\n), salesforce_user_overtime_res AS (\n\n SELECT\n SHA2(CONCAT(role.user_id, role.from_time), 256) AS user_role_id,\n role.user_id,\n role.role_id,\n user.manager_id,\n user.account_id,\n user.account_id_15_digits,\n user.created_by_id,\n user.last_modified_by_id,\n user.full_name,\n user.first_name,\n user.last_name,\n user.email,\n user.alias_name,\n role.role_name,\n user.title,\n user.team,\n user.time_zone,\n user.manager_name,\n user.partner_manager,\n user.account_owner_name,\n role.csm_team,\n user.csm_pod_account_manager_id,\n user.queue_type,\n user.badge_text,\n user.company_name,\n user.last_login_date,\n role.from_time,\n role.to_time,\n SMALLINT(IF(role_rank = 1, 1, 0)) AS is_current_role,\n user.is_active,\n user.is_integration_user,\n user.is_profile_photo_active,\n user.is_queue,\n user.is_low_touch_csm,\n role.is_super_csm,\n user.is_login_user_member,\n user.is_exclude_from_assignment_tracking,\n user.is_marketing_activity_user,\n user.created_at,\n user.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM user_role_overtime AS role\n LEFT JOIN import_salesforce_user AS user\n ON role.user_id = user.user_id\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_user_overtime_res", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_user", "package": null, "version": null}, {"name": "analytics___salesforce__user_role_scd", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_user", "model.yoda.analytics___salesforce__user_role_scd"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_user AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_user\n\n), import_salesforce_user_rold_scd AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce__user_role_scd\n\n-- Logic --\n\n), user_role_overtime AS (\n\n SELECT\n user_id,\n role_id,\n role_name,\n is_super_csm,\n csm_team,\n updated_at - INTERVAL '1' SECOND AS from_time,\n NVL(LEAD(updated_at) OVER (PARTITION BY user_id ORDER BY updated_at), TIMESTAMP('2200-01-01')) AS to_time,\n ROW_NUMBER() OVER(PARTITION BY user_id ORDER BY updated_at DESC) AS role_rank\n FROM import_salesforce_user_rold_scd\n WHERE ISNOTNULL(role_name)\n\n), salesforce_user_overtime_res AS (\n\n SELECT\n SHA2(CONCAT(role.user_id, role.from_time), 256) AS user_role_id,\n role.user_id,\n role.role_id,\n user.manager_id,\n user.account_id,\n user.account_id_15_digits,\n user.created_by_id,\n user.last_modified_by_id,\n user.full_name,\n user.first_name,\n user.last_name,\n user.email,\n user.alias_name,\n role.role_name,\n user.title,\n user.team,\n user.time_zone,\n user.manager_name,\n user.partner_manager,\n user.account_owner_name,\n role.csm_team,\n user.csm_pod_account_manager_id,\n user.queue_type,\n user.badge_text,\n user.company_name,\n user.last_login_date,\n role.from_time,\n role.to_time,\n SMALLINT(IF(role_rank = 1, 1, 0)) AS is_current_role,\n user.is_active,\n user.is_integration_user,\n user.is_profile_photo_active,\n user.is_queue,\n user.is_low_touch_csm,\n role.is_super_csm,\n user.is_login_user_member,\n user.is_exclude_from_assignment_tracking,\n user.is_marketing_activity_user,\n user.created_at,\n user.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM user_role_overtime AS role\n LEFT JOIN import_salesforce_user AS user\n ON role.user_id = user.user_id\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_user_overtime_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce__user_role_scd": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce__user_role_scd", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.sql", "unique_id": "model.yoda.analytics___salesforce__user_role_scd", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__user_role_scd", "analytics___salesforce__user_role_scd"], "alias": "analytics___salesforce__user_role_scd", "checksum": {"name": "sha256", "checksum": "ac57715a5f146e40d1ed48d4118140284148fe43d5fb3a935a71dc38ffaa38fd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A table that tracks role changes for Salesforce users | PK & Granularity: user_id, updated_at", "columns": {"user_id": {"name": "user_id", "description": "PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_id": {"name": "role_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_name": {"name": "role_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_super_csm": {"name": "is_super_csm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "csm_team": {"name": "csm_team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "incremental_strategy": "append"}, "created_at": 1700082650.6754508, "relation_name": "dev_dkruh1.analytics___salesforce__user_role_scd", "raw_code": "{{\nanalytics_snapshot_scd(\n source_model = 'analytics___salesforce_stg__mc_user',\n unique_key = ['user_id'],\n tracked_columns =['role_id',\n 'role_name',\n 'is_super_csm',\n 'csm_team'\n ],\n updated_at = 'updated_at'\n )\n}}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_snapshot_scd", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.sql", "compiled": true, "compiled_code": "\n\n WITH \n \n\n incremental_calculation AS (\n SELECT \n source_table.user_id, source_table.role_id, source_table.role_name, source_table.is_super_csm, source_table.csm_team, source_table.updated_at, \n 1 AS is_new_update\n FROM dev_dkruh1.analytics___salesforce_stg__mc_user AS source_table\n )\n\n SELECT\n user_id, role_id, role_name, is_super_csm, csm_team, updated_at AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM incremental_calculation\n WHERE is_new_update = 1\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__account_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__account_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__account_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__account_full", "analytics___salesforce_stg__account_full"], "alias": "analytics___salesforce_stg__account_full", "checksum": {"name": "sha256", "checksum": "31f5829f9ea013ea4330715bf966c1e26390ee4b97704df9c5a67ed9c08c5078"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled view which holds all sf account records", "columns": {"ACV_to_next_tier__c": {"name": "ACV_to_next_tier__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Account_Email__c": {"name": "Account_Email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Stage__c": {"name": "Account_Stage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Territory__c": {"name": "Account_Territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Tier__c": {"name": "Account_Tier__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Active_Leads_Referred__c": {"name": "Active_Leads_Referred__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Ads_Provider__c": {"name": "Ads_Provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Agency_Lost_Reason__c": {"name": "Agency_Lost_Reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Agency_Potential__c": {"name": "Agency_Potential__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Agency_Segment__c": {"name": "Agency_Segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Agency_Services__c": {"name": "Agency_Services__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Agency_Stage__c": {"name": "Agency_Stage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Agency_Supported_Platforms_Account__c": {"name": "Agency_Supported_Platforms_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Alexa_Rank__c": {"name": "Alexa_Rank__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Annual_Account_Indication__c": {"name": "Annual_Account_Indication__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Annual_Revenue__c": {"name": "Annual_Revenue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "App_Key__c": {"name": "App_Key__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "BillingCity": {"name": "BillingCity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "BillingCountry": {"name": "BillingCountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "BillingCountryCode": {"name": "BillingCountryCode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "BillingPostalCode": {"name": "BillingPostalCode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "BillingState": {"name": "BillingState", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "BillingStateCode": {"name": "BillingStateCode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "BillingStreet": {"name": "BillingStreet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CDP_Provider__c": {"name": "CDP_Provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CSM_Lookup__c": {"name": "CSM_Lookup__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CS_Estimated_AOV__c": {"name": "CS_Estimated_AOV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "CS_Estimated_Annual_Sales__c": {"name": "CS_Estimated_Annual_Sales__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "CS_Segment__c": {"name": "CS_Segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CS_Tags__c": {"name": "CS_Tags__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Chat_bots_Provider__c": {"name": "Chat_bots_Provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Client_s_Agency2__c": {"name": "Client_s_Agency2__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Closest_Contract_Renewal__c": {"name": "Closest_Contract_Renewal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Confidence_Level_Account__c": {"name": "Confidence_Level_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Cross_Sell_Status__c": {"name": "Cross_Sell_Status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Cross_sell_Type__c": {"name": "Cross_sell_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Customer_Type__c": {"name": "Customer_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "DB_Package_Category__c": {"name": "DB_Package_Category__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Datanayze_Current_Curation_Solution__c": {"name": "Datanayze_Current_Curation_Solution__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Datanayze_Monthly_Tech_Spend__c": {"name": "Datanayze_Monthly_Tech_Spend__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Datanyze_Funding__c": {"name": "Datanyze_Funding__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Description": {"name": "Description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Domain__c": {"name": "Domain__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Email_CSM_Name__c": {"name": "Email_CSM_Name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Email_Service_Provider_ESP__c": {"name": "Email_Service_Provider_ESP__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Engagement_Level__c": {"name": "Engagement_Level__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Enterprise_Account__c": {"name": "Enterprise_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Has_A_Community_member__c": {"name": "Has_A_Community_member__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Help_Desk_Provider__c": {"name": "Help_Desk_Provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IAP_Tier__c": {"name": "IAP_Tier__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Id": {"name": "Id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Industry": {"name": "Industry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Influencer__c": {"name": "Influencer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsDeleted": {"name": "IsDeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Junk_Reason__c": {"name": "Junk_Reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Last_AE__c": {"name": "Last_AE__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Last_SDR__c": {"name": "Last_SDR__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Latest_Opportunity__c": {"name": "Latest_Opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Lead_ID__c": {"name": "Lead_ID__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Lead_Referred_Date__c": {"name": "Lead_Referred_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_Referral_Provider__c": {"name": "Loyalty_Referral_Provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "MAP_Limit_Roll_Up__c": {"name": "MAP_Limit_Roll_Up__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "MS_Churn_Date__c": {"name": "MS_Churn_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "MS_Inbound_Outbound__c": {"name": "MS_Inbound_Outbound__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "MS_Live_Date__c": {"name": "MS_Live_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Main_CSM__c": {"name": "Main_CSM__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Managed_Services_Agency__c": {"name": "Managed_Services_Agency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Merchant_ID__c": {"name": "Merchant_ID__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Multi_Product_Account__c": {"name": "Multi_Product_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Name": {"name": "Name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Next_Partner_Tier__c": {"name": "Next_Partner_Tier__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Number_of_Employees__c": {"name": "Number_of_Employees__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Nurturing_Reason__c": {"name": "Nurturing_Reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Organization_Key__c": {"name": "Organization_Key__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "OwnerId": {"name": "OwnerId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "POS_Provider__c": {"name": "POS_Provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Package_Base__c": {"name": "Package_Base__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Package_Category__c": {"name": "Package_Category__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Package_Extensions__c": {"name": "Package_Extensions__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Package__c": {"name": "Package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ParentId": {"name": "ParentId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Influencer_Referrer_Type__c": {"name": "Partner_Influencer_Referrer_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Tier__c": {"name": "Partner_Tier__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Payment_Provider__c": {"name": "Payment_Provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Personalization_Provider__c": {"name": "Personalization_Provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Platform__c": {"name": "Platform__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Primary_Sales_Channel__c": {"name": "Primary_Sales_Channel__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_db_package__c": {"name": "previous_db_package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Rating": {"name": "Rating", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Agreement_Signed__c": {"name": "Referral_Agreement_Signed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Referrer_Type_Sub_Category__c": {"name": "Referrer_Type_Sub_Category__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referrer_Type__c": {"name": "Referrer_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referrer__c": {"name": "Referrer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Registration_Date__c": {"name": "Registration_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Renewal_Cycle__c": {"name": "Renewal_Cycle__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_Provider_List__c": {"name": "Reviews_Provider_List__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SAL_to_next_tier__c": {"name": "SAL_to_next_tier__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Sales_Region_new__c": {"name": "Sales_Region_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SDR_Owner__c": {"name": "SDR_Owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_ACV__c": {"name": "SMS_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SMS_Annualized_Usage_Rev__c": {"name": "SMS_Annualized_Usage_Rev__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SMS_CSM__c": {"name": "SMS_CSM__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_Provider__c": {"name": "SMS_Provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_Strategist__c": {"name": "SMS_Strategist__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_Total_ARR__c": {"name": "SMS_Total_ARR__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SMS_Usage_Cancellation_Date__c": {"name": "SMS_Usage_Cancellation_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_User_ID__c": {"name": "SMS_User_ID__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Sales_Estimated_Monthly_Orders__c": {"name": "Sales_Estimated_Monthly_Orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Sales_Estimated_Subscribers__c": {"name": "Sales_Estimated_Subscribers__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Sales_Segment__c": {"name": "Sales_Segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Search_Provider__c": {"name": "Search_Provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SimilarWeb_Traffic__c": {"name": "SimilarWeb_Traffic__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Status__c": {"name": "Status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Strategic_Priority__c": {"name": "Strategic_Priority__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Sub_Nurturing_Reason__c": {"name": "Sub_Nurturing_Reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Subscription_Seller__c": {"name": "Subscription_Seller__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Subscriptions_CSM__c": {"name": "Subscriptions_CSM__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Swell_ACV__c": {"name": "Swell_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Swell_CSM__c": {"name": "Swell_CSM__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Swell_Contract_Renewal_Date__c": {"name": "Swell_Contract_Renewal_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SystemModstamp": {"name": "SystemModstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Test_Account__c": {"name": "Test_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Time_Zone__c": {"name": "Time_Zone__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Total_ACV__c": {"name": "Total_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "UTM_Campaign__c": {"name": "UTM_Campaign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "UTM_Content__c": {"name": "UTM_Content__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "UTM_Medium__c": {"name": "UTM_Medium__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "UTM_Source__c": {"name": "UTM_Source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "UTM_Term__c": {"name": "UTM_Term__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "VMS_ACV__c": {"name": "VMS_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "VMS_Contract_Renewal_Date__c": {"name": "VMS_Contract_Renewal_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Yotpo_ACV__c": {"name": "Yotpo_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Yotpo_Contract_Renewal_Date__c": {"name": "Yotpo_Contract_Renewal_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Yotpo_Industry_Account__c": {"name": "Yotpo_Industry_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Yotpo_Industry_Verified_Account__c": {"name": "Yotpo_Industry_Verified_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Yotpo_Sub_Industry_Account__c": {"name": "Yotpo_Sub_Industry_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "Agency_No_of_Employees_Account__c": {"name": "Agency_No_of_Employees_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Products_In_The_TAM_New__c": {"name": "Products_In_The_TAM_New__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Agency_Clients_Level_Account__c": {"name": "Agency_Clients_Level_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "of_Current_Contracts__c": {"name": "of_Current_Contracts__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082653.7261152, "relation_name": "dev_dkruh1.analytics___salesforce_stg__account_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'account_full') }}\n\n), salesforce_stg__account_full AS (\n\n SELECT \n\t\tACV_to_next_tier__c,\n\t\tAccount_Email__c,\n\t\tAccount_Stage__c,\n\t\tAccount_Territory__c,\n\t\tAccount_Tier__c,\n\t\tActive_Leads_Referred__c,\n\t\tAds_Provider__c,\n\t\tAgency_Lost_Reason__c,\n\t\tAgency_Potential__c,\n\t\tAgency_Segment__c,\n\t\tAgency_Services__c,\n\t\tAgency_Stage__c,\n\t\tAgency_Supported_Platforms_Account__c,\n\t\tAlexa_Rank__c,\n\t\tAnnual_Account_Indication__c,\n\t\tAnnual_Revenue__c,\n\t\tApp_Key__c,\n\t\tBillingCity,\n\t\tBillingCountry,\n\t\tBillingCountryCode,\n\t\tBillingPostalCode,\n\t\tBillingState,\n\t\tBillingStateCode,\n\t\tBillingStreet,\n\t\tCDP_Provider__c,\n\t\tCSM_Lookup__c,\n\t\tCS_Estimated_AOV__c,\n\t\tCS_Estimated_Annual_Sales__c,\n\t\tCS_Segment__c,\n\t\tCS_Tags__c,\n\t\tChat_bots_Provider__c,\n\t\tClient_s_Agency2__c,\n\t\tClosest_Contract_Renewal__c,\n\t\tConfidence_Level_Account__c,\n\t\tCreatedDate,\n\t\tCross_Sell_Status__c,\n\t\tCross_sell_Type__c,\n\t\tCustomer_Type__c,\n\t\tDB_Package_Category__c,\n\t\tDatanayze_Current_Curation_Solution__c,\n\t\tDatanayze_Monthly_Tech_Spend__c,\n\t\tDatanyze_Funding__c,\n\t\tDescription,\n\t\tDomain__c,\n\t\tEmail_CSM_Name__c,\n\t\tEmail_Service_Provider_ESP__c,\n\t\tEngagement_Level__c,\n\t\tEnterprise_Account__c,\n\t\tHas_A_Community_member__c,\n\t\tHelp_Desk_Provider__c,\n\t\tIAP_Tier__c,\n\t\tId,\n\t\tIndustry,\n\t\tInfluencer__c,\n\t\tIsDeleted,\n\t\tJunk_Reason__c,\n\t\tLastModifiedDate,\n\t\tLast_AE__c,\n\t\tLast_SDR__c,\n\t\tLatest_Opportunity__c,\n\t\tLead_ID__c,\n\t\tLead_Referred_Date__c,\n\t\tLoyalty_Referral_Provider__c,\n\t\tMAP_Limit_Roll_Up__c,\n\t\tMS_Churn_Date__c,\n\t\tMS_Inbound_Outbound__c,\n\t\tMS_Live_Date__c,\n\t\tMain_CSM__c,\n\t\tManaged_Services_Agency__c,\n\t\tMerchant_ID__c,\n\t\tMulti_Product_Account__c,\n\t\tName,\n\t\tNext_Partner_Tier__c,\n\t\tNumber_of_Employees__c,\n\t\tNurturing_Reason__c,\n\t\tOrganization_Key__c,\n\t\tOwnerId,\n\t\tPOS_Provider__c,\n\t\tPackage_Base__c,\n\t\tPackage_Category__c,\n\t\tPackage_Extensions__c,\n\t\tPackage__c,\n\t\tParentId,\n\t\tPartner_Influencer_Referrer_Type__c,\n\t\tPartner_Tier__c,\n\t\tPayment_Provider__c,\n\t\tPersonalization_Provider__c,\n\t\tPlatform__c,\n\t\tPrimary_Sales_Channel__c,\n\t\tprevious_db_package__c,\n\t\tRating,\n\t\tReferral_Agreement_Signed__c,\n\t\tReferrer_Type_Sub_Category__c,\n\t\tReferrer_Type__c,\n\t\tReferrer__c,\n\t\tRegistration_Date__c,\n\t\tRenewal_Cycle__c,\n\t\tReviews_Provider_List__c,\n\t\tSAL_to_next_tier__c,\n\t\tSales_Region_new__c,\n\t\tSDR_Owner__c,\n\t\tSMS_ACV__c,\n\t\tSMS_Annualized_Usage_Rev__c,\n\t\tSMS_CSM__c,\n\t\tSMS_Provider__c,\n\t\tSMS_Strategist__c,\n\t\tSMS_Total_ARR__c,\n\t\tSMS_Usage_Cancellation_Date__c,\n\t\tSMS_User_ID__c,\n\t\tSales_Estimated_Monthly_Orders__c,\n\t\tSales_Estimated_Subscribers__c,\n\t\tSales_Segment__c,\n\t\tSearch_Provider__c,\n\t\tSimilarWeb_Traffic__c,\n\t\tStatus__c,\n\t\tStrategic_Priority__c,\n\t\tSub_Nurturing_Reason__c,\n\t\tSubscription_Seller__c,\n\t\tSubscriptions_CSM__c,\n\t\tSwell_ACV__c,\n\t\tSwell_CSM__c,\n\t\tSwell_Contract_Renewal_Date__c,\n\t\tSystemModstamp,\n\t\tTest_Account__c,\n\t\tTime_Zone__c,\n\t\tTotal_ACV__c,\n\t\tUTM_Campaign__c,\n\t\tUTM_Content__c,\n\t\tUTM_Medium__c,\n\t\tUTM_Source__c,\n\t\tUTM_Term__c,\n\t\tVMS_ACV__c,\n\t\tVMS_Contract_Renewal_Date__c,\n\t\tYotpo_ACV__c,\n\t\tYotpo_Contract_Renewal_Date__c,\n\t\tYotpo_Industry_Account__c,\n\t\tYotpo_Industry_Verified_Account__c,\n\t\tYotpo_Sub_Industry_Account__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn,\n\t\tAgency_No_of_Employees_Account__c,\n\t\tProducts_In_The_TAM_New__c,\n\t\tAgency_Clients_Level_Account__c,\n\t\tof_Current_Contracts__c\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__account_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "account_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.account_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.account_full\n\n), salesforce_stg__account_full AS (\n\n SELECT \n\t\tACV_to_next_tier__c,\n\t\tAccount_Email__c,\n\t\tAccount_Stage__c,\n\t\tAccount_Territory__c,\n\t\tAccount_Tier__c,\n\t\tActive_Leads_Referred__c,\n\t\tAds_Provider__c,\n\t\tAgency_Lost_Reason__c,\n\t\tAgency_Potential__c,\n\t\tAgency_Segment__c,\n\t\tAgency_Services__c,\n\t\tAgency_Stage__c,\n\t\tAgency_Supported_Platforms_Account__c,\n\t\tAlexa_Rank__c,\n\t\tAnnual_Account_Indication__c,\n\t\tAnnual_Revenue__c,\n\t\tApp_Key__c,\n\t\tBillingCity,\n\t\tBillingCountry,\n\t\tBillingCountryCode,\n\t\tBillingPostalCode,\n\t\tBillingState,\n\t\tBillingStateCode,\n\t\tBillingStreet,\n\t\tCDP_Provider__c,\n\t\tCSM_Lookup__c,\n\t\tCS_Estimated_AOV__c,\n\t\tCS_Estimated_Annual_Sales__c,\n\t\tCS_Segment__c,\n\t\tCS_Tags__c,\n\t\tChat_bots_Provider__c,\n\t\tClient_s_Agency2__c,\n\t\tClosest_Contract_Renewal__c,\n\t\tConfidence_Level_Account__c,\n\t\tCreatedDate,\n\t\tCross_Sell_Status__c,\n\t\tCross_sell_Type__c,\n\t\tCustomer_Type__c,\n\t\tDB_Package_Category__c,\n\t\tDatanayze_Current_Curation_Solution__c,\n\t\tDatanayze_Monthly_Tech_Spend__c,\n\t\tDatanyze_Funding__c,\n\t\tDescription,\n\t\tDomain__c,\n\t\tEmail_CSM_Name__c,\n\t\tEmail_Service_Provider_ESP__c,\n\t\tEngagement_Level__c,\n\t\tEnterprise_Account__c,\n\t\tHas_A_Community_member__c,\n\t\tHelp_Desk_Provider__c,\n\t\tIAP_Tier__c,\n\t\tId,\n\t\tIndustry,\n\t\tInfluencer__c,\n\t\tIsDeleted,\n\t\tJunk_Reason__c,\n\t\tLastModifiedDate,\n\t\tLast_AE__c,\n\t\tLast_SDR__c,\n\t\tLatest_Opportunity__c,\n\t\tLead_ID__c,\n\t\tLead_Referred_Date__c,\n\t\tLoyalty_Referral_Provider__c,\n\t\tMAP_Limit_Roll_Up__c,\n\t\tMS_Churn_Date__c,\n\t\tMS_Inbound_Outbound__c,\n\t\tMS_Live_Date__c,\n\t\tMain_CSM__c,\n\t\tManaged_Services_Agency__c,\n\t\tMerchant_ID__c,\n\t\tMulti_Product_Account__c,\n\t\tName,\n\t\tNext_Partner_Tier__c,\n\t\tNumber_of_Employees__c,\n\t\tNurturing_Reason__c,\n\t\tOrganization_Key__c,\n\t\tOwnerId,\n\t\tPOS_Provider__c,\n\t\tPackage_Base__c,\n\t\tPackage_Category__c,\n\t\tPackage_Extensions__c,\n\t\tPackage__c,\n\t\tParentId,\n\t\tPartner_Influencer_Referrer_Type__c,\n\t\tPartner_Tier__c,\n\t\tPayment_Provider__c,\n\t\tPersonalization_Provider__c,\n\t\tPlatform__c,\n\t\tPrimary_Sales_Channel__c,\n\t\tprevious_db_package__c,\n\t\tRating,\n\t\tReferral_Agreement_Signed__c,\n\t\tReferrer_Type_Sub_Category__c,\n\t\tReferrer_Type__c,\n\t\tReferrer__c,\n\t\tRegistration_Date__c,\n\t\tRenewal_Cycle__c,\n\t\tReviews_Provider_List__c,\n\t\tSAL_to_next_tier__c,\n\t\tSales_Region_new__c,\n\t\tSDR_Owner__c,\n\t\tSMS_ACV__c,\n\t\tSMS_Annualized_Usage_Rev__c,\n\t\tSMS_CSM__c,\n\t\tSMS_Provider__c,\n\t\tSMS_Strategist__c,\n\t\tSMS_Total_ARR__c,\n\t\tSMS_Usage_Cancellation_Date__c,\n\t\tSMS_User_ID__c,\n\t\tSales_Estimated_Monthly_Orders__c,\n\t\tSales_Estimated_Subscribers__c,\n\t\tSales_Segment__c,\n\t\tSearch_Provider__c,\n\t\tSimilarWeb_Traffic__c,\n\t\tStatus__c,\n\t\tStrategic_Priority__c,\n\t\tSub_Nurturing_Reason__c,\n\t\tSubscription_Seller__c,\n\t\tSubscriptions_CSM__c,\n\t\tSwell_ACV__c,\n\t\tSwell_CSM__c,\n\t\tSwell_Contract_Renewal_Date__c,\n\t\tSystemModstamp,\n\t\tTest_Account__c,\n\t\tTime_Zone__c,\n\t\tTotal_ACV__c,\n\t\tUTM_Campaign__c,\n\t\tUTM_Content__c,\n\t\tUTM_Medium__c,\n\t\tUTM_Source__c,\n\t\tUTM_Term__c,\n\t\tVMS_ACV__c,\n\t\tVMS_Contract_Renewal_Date__c,\n\t\tYotpo_ACV__c,\n\t\tYotpo_Contract_Renewal_Date__c,\n\t\tYotpo_Industry_Account__c,\n\t\tYotpo_Industry_Verified_Account__c,\n\t\tYotpo_Sub_Industry_Account__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn,\n\t\tAgency_No_of_Employees_Account__c,\n\t\tProducts_In_The_TAM_New__c,\n\t\tAgency_Clients_Level_Account__c,\n\t\tof_Current_Contracts__c\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__account_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__account_product_c_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__account_product_c_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__account_product_c_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__account_product_c_full", "analytics___salesforce_stg__account_product_c_full"], "alias": "analytics___salesforce_stg__account_product_c_full", "checksum": {"name": "sha256", "checksum": "bfb7468ea6a6370b2fcc01b34eab9ce153454cd5fe0ebb280a0a7282966963f0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"ACV_USD__c": {"name": "ACV_USD__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ACV__c": {"name": "ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Account_Product_CSM_Role__c": {"name": "Account_Product_CSM_Role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Product_CSM_Team__c": {"name": "Account_Product_CSM_Team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account__c": {"name": "Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_s_Product_CSM_Is_LT_SCSM__c": {"name": "Account_s_Product_CSM_Is_LT_SCSM__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Contract_Renewal_Date__c": {"name": "Contract_Renewal_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_Contract__c": {"name": "Current_Contract__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Current_Usage_Commitment_Credits_Spent__c": {"name": "Current_Usage_Commitment_Credits_Spent__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Current_Usage_Commitment_Term_End_Date__c": {"name": "Current_Usage_Commitment_Term_End_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_Usage_Commitment_Term_Start_Date__c": {"name": "Current_Usage_Commitment_Term_Start_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_Usage_Commitment_Term__c": {"name": "Current_Usage_Commitment_Term__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_Usage_Commitment_Value__c": {"name": "Current_Usage_Commitment_Value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Date_of_Live_on_Site_Loyalty__c": {"name": "Date_of_Live_on_Site_Loyalty__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Days_Until_Contract_Renewal__c": {"name": "Days_Until_Contract_Renewal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Delta_Current_Commitment__c": {"name": "Delta_Current_Commitment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Has_Met_Current_Usage_Commitment__c": {"name": "Has_Met_Current_Usage_Commitment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Id": {"name": "Id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Initially_Won_Opportunity__c": {"name": "Initially_Won_Opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Initially_Won_Self_Service_Opportunity__c": {"name": "Initially_Won_Self_Service_Opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsDeleted": {"name": "IsDeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Live_Date__c": {"name": "Live_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Live_on_Site_Loyalty__c": {"name": "Live_on_Site_Loyalty__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Main_Product_Families__c": {"name": "Main_Product_Families__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Name": {"name": "Name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Number_of_OB__c": {"name": "Number_of_OB__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Onboarding_Completion_Date__c": {"name": "Onboarding_Completion_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Onboarding_Manager_CSM_Team__c": {"name": "Onboarding_Manager_CSM_Team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Onboarding_Manager__c": {"name": "Onboarding_Manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Conversion_Rate__c": {"name": "Opportunity_Conversion_Rate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Opportunity_Start_Date__c": {"name": "Opportunity_Start_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Type__c": {"name": "Opportunity_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity__c": {"name": "Opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Initial_Won_Date_Self_Service__c": {"name": "Product_Initial_Won_Date_Self_Service__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Initial_Won_Date__c": {"name": "Product_Initial_Won_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Line__c": {"name": "Product_Line__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product__c": {"name": "Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Stage__c": {"name": "Stage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Strategic_Priority_Account__c": {"name": "Strategic_Priority_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Super_CSM_Account_Product__c": {"name": "Super_CSM_Account_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SystemModstamp": {"name": "SystemModstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082653.7837825, "relation_name": "dev_dkruh1.analytics___salesforce_stg__account_product_c_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'account_product__c_full') }}\n\n), analytics___salesforce_stg__account_product_c_full AS (\n\n SELECT \n\t\tACV_USD__c,\n\t\tACV__c,\n\t\tAccount_Product_CSM_Role__c,\n\t\tAccount_Product_CSM_Team__c,\n\t\tAccount__c,\n\t\tAccount_s_Product_CSM_Is_LT_SCSM__c,\n\t\tContract_Renewal_Date__c,\n\t\tCurrencyIsoCode,\n\t\tCurrent_Contract__c,\n\t\tCurrent_Usage_Commitment_Credits_Spent__c,\n\t\tCurrent_Usage_Commitment_Term_End_Date__c,\n\t\tCurrent_Usage_Commitment_Term_Start_Date__c,\n\t\tCurrent_Usage_Commitment_Term__c,\n\t\tCurrent_Usage_Commitment_Value__c,\n\t\tDate_of_Live_on_Site_Loyalty__c,\n\t\tDays_Until_Contract_Renewal__c,\n\t\tDelta_Current_Commitment__c,\n\t\tHas_Met_Current_Usage_Commitment__c,\n\t\tId,\n\t\tInitially_Won_Opportunity__c,\n\t\tInitially_Won_Self_Service_Opportunity__c,\n\t\tIsDeleted,\n\t\tLive_Date__c,\n\t\tLive_on_Site_Loyalty__c,\n\t\tMain_Product_Families__c,\n\t\tName,\n\t\tNumber_of_OB__c,\n\t\tOnboarding_Completion_Date__c,\n\t\tOnboarding_Manager_CSM_Team__c,\n\t\tOnboarding_Manager__c,\n\t\tOpportunity_Conversion_Rate__c,\n\t\tOpportunity_Start_Date__c,\n\t\tOpportunity_Type__c,\n\t\tOpportunity__c,\n\t\tProduct_Initial_Won_Date_Self_Service__c,\n\t\tProduct_Initial_Won_Date__c,\n\t\tProduct_Line__c,\n\t\tProduct__c,\n\t\tStage__c,\n\t\tStrategic_Priority_Account__c,\n\t\tSuper_CSM_Account_Product__c,\n\t\tSystemModstamp,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__account_product_c_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "account_product__c_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.account_product__c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.account_product__c_full\n\n), analytics___salesforce_stg__account_product_c_full AS (\n\n SELECT \n\t\tACV_USD__c,\n\t\tACV__c,\n\t\tAccount_Product_CSM_Role__c,\n\t\tAccount_Product_CSM_Team__c,\n\t\tAccount__c,\n\t\tAccount_s_Product_CSM_Is_LT_SCSM__c,\n\t\tContract_Renewal_Date__c,\n\t\tCurrencyIsoCode,\n\t\tCurrent_Contract__c,\n\t\tCurrent_Usage_Commitment_Credits_Spent__c,\n\t\tCurrent_Usage_Commitment_Term_End_Date__c,\n\t\tCurrent_Usage_Commitment_Term_Start_Date__c,\n\t\tCurrent_Usage_Commitment_Term__c,\n\t\tCurrent_Usage_Commitment_Value__c,\n\t\tDate_of_Live_on_Site_Loyalty__c,\n\t\tDays_Until_Contract_Renewal__c,\n\t\tDelta_Current_Commitment__c,\n\t\tHas_Met_Current_Usage_Commitment__c,\n\t\tId,\n\t\tInitially_Won_Opportunity__c,\n\t\tInitially_Won_Self_Service_Opportunity__c,\n\t\tIsDeleted,\n\t\tLive_Date__c,\n\t\tLive_on_Site_Loyalty__c,\n\t\tMain_Product_Families__c,\n\t\tName,\n\t\tNumber_of_OB__c,\n\t\tOnboarding_Completion_Date__c,\n\t\tOnboarding_Manager_CSM_Team__c,\n\t\tOnboarding_Manager__c,\n\t\tOpportunity_Conversion_Rate__c,\n\t\tOpportunity_Start_Date__c,\n\t\tOpportunity_Type__c,\n\t\tOpportunity__c,\n\t\tProduct_Initial_Won_Date_Self_Service__c,\n\t\tProduct_Initial_Won_Date__c,\n\t\tProduct_Line__c,\n\t\tProduct__c,\n\t\tStage__c,\n\t\tStrategic_Priority_Account__c,\n\t\tSuper_CSM_Account_Product__c,\n\t\tSystemModstamp,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__account_product_c_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__campaign": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__campaign", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.sql", "unique_id": "model.yoda.analytics___salesforce_stg__campaign", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__campaign", "analytics___salesforce_stg__campaign"], "alias": "analytics___salesforce_stg__campaign", "checksum": {"name": "sha256", "checksum": "7a33bfe4f1a895ad76a427a632f46619283bd350847fcef62b1194ae9c7c4691"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "actualcost": {"name": "actualcost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amountallopportunities": {"name": "amountallopportunities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amountwonopportunities": {"name": "amountwonopportunities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "campaign_url__c": {"name": "campaign_url__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enddate": {"name": "enddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expectedresponse": {"name": "expectedresponse", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchyactualcost": {"name": "hierarchyactualcost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "hierarchyamountallopportunities": {"name": "hierarchyamountallopportunities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "hierarchyamountwonopportunities": {"name": "hierarchyamountwonopportunities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "hierarchybudgetedcost": {"name": "hierarchybudgetedcost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchyexpectedrevenue": {"name": "hierarchyexpectedrevenue", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofcontacts": {"name": "hierarchynumberofcontacts", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofconvertedleads": {"name": "hierarchynumberofconvertedleads", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofleads": {"name": "hierarchynumberofleads", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofopportunities": {"name": "hierarchynumberofopportunities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofresponses": {"name": "hierarchynumberofresponses", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofwonopportunities": {"name": "hierarchynumberofwonopportunities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumbersent": {"name": "hierarchynumbersent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isactive": {"name": "isactive", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastactivitydate": {"name": "lastactivitydate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numberofcontacts": {"name": "numberofcontacts", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numberofconvertedleads": {"name": "numberofconvertedleads", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numberofleads": {"name": "numberofleads", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numberofopportunities": {"name": "numberofopportunities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numberofresponses": {"name": "numberofresponses", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numberofwonopportunities": {"name": "numberofwonopportunities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numbersent": {"name": "numbersent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_source__c": {"name": "original_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentid": {"name": "parentid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_products__c": {"name": "related_products__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "startdate": {"name": "startdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_type__c": {"name": "sub_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082653.8449643, "relation_name": "dev_dkruh1.analytics___salesforce_stg__campaign", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'campaign') }}\n\n), salesforce_stg__campaign AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\tactualcost,\n\t\tamountallopportunities,\n\t\tamountwonopportunities,\n\t\tcampaign_url__c,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcurrencyisocode,\n\t\tdescription,\n\t\tenddate,\n\t\texpectedresponse,\n\t\thierarchyactualcost,\n\t\thierarchyamountallopportunities,\n\t\thierarchyamountwonopportunities,\n\t\thierarchybudgetedcost,\n\t\thierarchyexpectedrevenue,\n\t\thierarchynumberofcontacts,\n\t\thierarchynumberofconvertedleads,\n\t\thierarchynumberofleads,\n\t\thierarchynumberofopportunities,\n\t\thierarchynumberofresponses,\n\t\thierarchynumberofwonopportunities,\n\t\thierarchynumbersent,\n\t\tid,\n\t\tisactive,\n\t\tisdeleted,\n\t\tlastactivitydate,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tlastreferenceddate,\n\t\tlastvieweddate,\n\t\tname,\n\t\tnumberofcontacts,\n\t\tnumberofconvertedleads,\n\t\tnumberofleads,\n\t\tnumberofopportunities,\n\t\tnumberofresponses,\n\t\tnumberofwonopportunities,\n\t\tnumbersent,\n\t\toriginal_source__c,\n\t\townerid,\n\t\tparentid,\n\t\trelated_products__c,\n\t\tstartdate,\n\t\tstatus,\n\t\tsub_type__c,\n\t\tsystemmodstamp,\n\t\ttype\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__campaign", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "campaign"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.campaign\n\n), salesforce_stg__campaign AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\tactualcost,\n\t\tamountallopportunities,\n\t\tamountwonopportunities,\n\t\tcampaign_url__c,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcurrencyisocode,\n\t\tdescription,\n\t\tenddate,\n\t\texpectedresponse,\n\t\thierarchyactualcost,\n\t\thierarchyamountallopportunities,\n\t\thierarchyamountwonopportunities,\n\t\thierarchybudgetedcost,\n\t\thierarchyexpectedrevenue,\n\t\thierarchynumberofcontacts,\n\t\thierarchynumberofconvertedleads,\n\t\thierarchynumberofleads,\n\t\thierarchynumberofopportunities,\n\t\thierarchynumberofresponses,\n\t\thierarchynumberofwonopportunities,\n\t\thierarchynumbersent,\n\t\tid,\n\t\tisactive,\n\t\tisdeleted,\n\t\tlastactivitydate,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tlastreferenceddate,\n\t\tlastvieweddate,\n\t\tname,\n\t\tnumberofcontacts,\n\t\tnumberofconvertedleads,\n\t\tnumberofleads,\n\t\tnumberofopportunities,\n\t\tnumberofresponses,\n\t\tnumberofwonopportunities,\n\t\tnumbersent,\n\t\toriginal_source__c,\n\t\townerid,\n\t\tparentid,\n\t\trelated_products__c,\n\t\tstartdate,\n\t\tstatus,\n\t\tsub_type__c,\n\t\tsystemmodstamp,\n\t\ttype\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__campaign", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__case_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__case_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__case_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__case_full", "analytics___salesforce_stg__case_full"], "alias": "analytics___salesforce_stg__case_full", "checksum": {"name": "sha256", "checksum": "2faa61ead305d593846c489e75d789d6924934b7a2b9f3012964f2692aba736b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"AccountId": {"name": "AccountId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bug_Actual_TTR__c": {"name": "Bug_Actual_TTR__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Bug_Fix_Due_Date_Initial__c": {"name": "Bug_Fix_Due_Date_Initial__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bug_Fix_Due_Date__c": {"name": "Bug_Fix_Due_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bug_Number__c": {"name": "Bug_Number__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bug_Status__c": {"name": "Bug_Status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bug_number_days_in_delay_timer__c": {"name": "Bug_number_days_in_delay_timer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CaseNumber": {"name": "CaseNumber", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Case_Group__c": {"name": "Case_Group__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Case_Score__c": {"name": "Case_Score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Case_Team_Formula__c": {"name": "Case_Team_Formula__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Case_Team__c": {"name": "Case_Team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ClosedDate": {"name": "ClosedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Counter_Agent_Replies__c": {"name": "Counter_Agent_Replies__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Counter_Total_Replies__c": {"name": "Counter_Total_Replies__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "CreatedDate": {"name": "CreatedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "De_escalated_At__c": {"name": "De_escalated_At__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Description": {"name": "Description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Escalated_to_Tier_2_at__c": {"name": "Escalated_to_Tier_2_at__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Escalation_Severity__c": {"name": "Escalation_Severity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Escalation_Type__c": {"name": "Escalation_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Feature__c": {"name": "Feature__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "First_Response_Date__c": {"name": "First_Response_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Id": {"name": "Id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Incident__c": {"name": "Incident__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Inquiry_Type__c": {"name": "Inquiry_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsClosed": {"name": "IsClosed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "IsDeleted": {"name": "IsDeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "IsEscalated": {"name": "IsEscalated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Live_Chat_End_Date__c": {"name": "Live_Chat_End_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Live_Chat_Start_Date__c": {"name": "Live_Chat_Start_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Organization_Key__c": {"name": "Organization_Key__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Origin": {"name": "Origin", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Line__c": {"name": "Product_Line__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "RecordTypeId": {"name": "RecordTypeId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Requester_Email__c": {"name": "Requester_Email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SE_Time_in_Pending_R_D_hr__c": {"name": "SE_Time_in_Pending_R_D_hr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Severity_Score__c": {"name": "Severity_Score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Snapshot_Customer_Segment__c": {"name": "Snapshot_Customer_Segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Status": {"name": "Status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Store_App_Key_Text__c": {"name": "Store_App_Key_Text__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Subject": {"name": "Subject", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Survey_Response_Date__c": {"name": "Survey_Response_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Survey_Score__c": {"name": "Survey_Score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SystemModstamp": {"name": "SystemModstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Tier_2_First_Response_Date__c": {"name": "Tier_2_First_Response_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Time_to_First_Response_Tier_2_Min__c": {"name": "Time_to_First_Response_Tier_2_Min__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Time_to_First_Response__c": {"name": "Time_to_First_Response__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Time_to_Resolution__c": {"name": "Time_to_Resolution__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Requester_Wait_Time_T1__c": {"name": "Timer_Requester_Wait_Time_T1__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Requester_Wait_Time_T2__c": {"name": "Timer_Requester_Wait_Time_T2__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Requester_Wait_Time__c": {"name": "Timer_Requester_Wait_Time__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_T1_Net_Support_RWT__c": {"name": "Timer_T1_Net_Support_RWT__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_T2_Net_Support_RWT__c": {"name": "Timer_T2_Net_Support_RWT__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Time_In_Development__c": {"name": "Timer_Time_In_Development__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Time_In_Pending_CSM__c": {"name": "Timer_Time_In_Pending_CSM__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Time_in_P_Escalation_hr__c": {"name": "Timer_Time_in_P_Escalation_hr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Topic__c": {"name": "Topic__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082653.9183476, "relation_name": "dev_dkruh1.analytics___salesforce_stg__case_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'case_full') }}\n\n), salesforce_stg__case_full AS (\n\n SELECT \n\t\tAccountId,\n\t\tBug_Actual_TTR__c,\n\t\tBug_Fix_Due_Date_Initial__c,\n\t\tBug_Fix_Due_Date__c,\n\t\tBug_Number__c,\n\t\tBug_Status__c,\n\t\tBug_number_days_in_delay_timer__c,\n\t\tCaseNumber,\n\t\tCase_Group__c,\n\t\tCase_Score__c,\n\t\tCase_Team_Formula__c,\n\t\tCase_Team__c,\n\t\tClosedDate,\n\t\tCounter_Agent_Replies__c,\n\t\tCounter_Total_Replies__c,\n\t\tCreatedDate,\n\t\tDe_escalated_At__c,\n\t\tDescription,\n\t\tEscalated_to_Tier_2_at__c,\n\t\tEscalation_Severity__c,\n\t\tEscalation_Type__c,\n\t\tFeature__c,\n\t\tFirst_Response_Date__c,\n\t\tId,\n\t\tIncident__c,\n\t\tInquiry_Type__c,\n\t\tIsClosed,\n\t\tIsDeleted,\n\t\tIsEscalated,\n\t\tLive_Chat_End_Date__c,\n\t\tLive_Chat_Start_Date__c,\n\t\tOrganization_Key__c,\n\t\tOrigin,\n\t\tProduct_Line__c,\n\t\tRecordTypeId,\n\t\tRequester_Email__c,\n\t\tSE_Time_in_Pending_R_D_hr__c,\n\t\tSeverity_Score__c,\n\t\tSnapshot_Customer_Segment__c,\n\t\tStatus,\n\t\tStore_App_Key_Text__c,\n\t\tSubject,\n\t\tSurvey_Response_Date__c,\n\t\tSurvey_Score__c,\n\t\tSystemModstamp,\n\t\tTier_2_First_Response_Date__c,\n\t\tTime_to_First_Response_Tier_2_Min__c,\n\t\tTime_to_First_Response__c,\n\t\tTime_to_Resolution__c,\n\t\tTimer_Requester_Wait_Time_T1__c,\n\t\tTimer_Requester_Wait_Time_T2__c,\n\t\tTimer_Requester_Wait_Time__c,\n\t\tTimer_T1_Net_Support_RWT__c,\n\t\tTimer_T2_Net_Support_RWT__c,\n\t\tTimer_Time_In_Development__c,\n\t\tTimer_Time_In_Pending_CSM__c,\n\t\tTimer_Time_in_P_Escalation_hr__c,\n\t\tTopic__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__case_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "case_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.case_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.case_full\n\n), salesforce_stg__case_full AS (\n\n SELECT \n\t\tAccountId,\n\t\tBug_Actual_TTR__c,\n\t\tBug_Fix_Due_Date_Initial__c,\n\t\tBug_Fix_Due_Date__c,\n\t\tBug_Number__c,\n\t\tBug_Status__c,\n\t\tBug_number_days_in_delay_timer__c,\n\t\tCaseNumber,\n\t\tCase_Group__c,\n\t\tCase_Score__c,\n\t\tCase_Team_Formula__c,\n\t\tCase_Team__c,\n\t\tClosedDate,\n\t\tCounter_Agent_Replies__c,\n\t\tCounter_Total_Replies__c,\n\t\tCreatedDate,\n\t\tDe_escalated_At__c,\n\t\tDescription,\n\t\tEscalated_to_Tier_2_at__c,\n\t\tEscalation_Severity__c,\n\t\tEscalation_Type__c,\n\t\tFeature__c,\n\t\tFirst_Response_Date__c,\n\t\tId,\n\t\tIncident__c,\n\t\tInquiry_Type__c,\n\t\tIsClosed,\n\t\tIsDeleted,\n\t\tIsEscalated,\n\t\tLive_Chat_End_Date__c,\n\t\tLive_Chat_Start_Date__c,\n\t\tOrganization_Key__c,\n\t\tOrigin,\n\t\tProduct_Line__c,\n\t\tRecordTypeId,\n\t\tRequester_Email__c,\n\t\tSE_Time_in_Pending_R_D_hr__c,\n\t\tSeverity_Score__c,\n\t\tSnapshot_Customer_Segment__c,\n\t\tStatus,\n\t\tStore_App_Key_Text__c,\n\t\tSubject,\n\t\tSurvey_Response_Date__c,\n\t\tSurvey_Score__c,\n\t\tSystemModstamp,\n\t\tTier_2_First_Response_Date__c,\n\t\tTime_to_First_Response_Tier_2_Min__c,\n\t\tTime_to_First_Response__c,\n\t\tTime_to_Resolution__c,\n\t\tTimer_Requester_Wait_Time_T1__c,\n\t\tTimer_Requester_Wait_Time_T2__c,\n\t\tTimer_Requester_Wait_Time__c,\n\t\tTimer_T1_Net_Support_RWT__c,\n\t\tTimer_T2_Net_Support_RWT__c,\n\t\tTimer_Time_In_Development__c,\n\t\tTimer_Time_In_Pending_CSM__c,\n\t\tTimer_Time_in_P_Escalation_hr__c,\n\t\tTopic__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__case_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__contact": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__contact", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.sql", "unique_id": "model.yoda.analytics___salesforce_stg__contact", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__contact", "analytics___salesforce_stg__contact"], "alias": "analytics___salesforce_stg__contact", "checksum": {"name": "sha256", "checksum": "b1ae51207250c8cd3528d7e3ea31b42efa911905560f77281484926678069b45"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "avg_traffic_6_months__c": {"name": "avg_traffic_6_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_country__c": {"name": "account_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_db_package__c": {"name": "account_db_package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_in_cross_sell_process__c": {"name": "account_in_cross_sell_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "account_name__c": {"name": "account_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_owner__c": {"name": "account_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_sdr_owner__c": {"name": "account_sdr_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_status__c": {"name": "account_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_territory__c": {"name": "account_territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_s_organization_key__c": {"name": "account_s_organization_key__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "active_community_member__c": {"name": "active_community_member__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "active_contact_14_days__c": {"name": "active_contact_14_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "additional_email_address__c": {"name": "additional_email_address__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "additional_email__c": {"name": "additional_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "additional_phone_number__c": {"name": "additional_phone_number__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ads_provider__c": {"name": "ads_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_potential__c": {"name": "agency_potential__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_stage__c": {"name": "agency_stage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "annual_revenue__c": {"name": "annual_revenue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ask_to_renew__c": {"name": "ask_to_renew__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "automate_contact_status_timestamp__c": {"name": "automate_contact_status_timestamp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bounce_rate__c": {"name": "bounce_rate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cdp_provider__c": {"name": "cdp_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_email_re_engaged__c": {"name": "csm_email_re_engaged__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "champion__c": {"name": "champion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "chat_bots_provider__c": {"name": "chat_bots_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comments__c": {"name": "comments__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "commonalities__c": {"name": "commonalities__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "community_user_my_account_s_contacts__c": {"name": "community_user_my_account_s_contacts__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "contact_count__c": {"name": "contact_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "contact_id_18__c": {"name": "contact_id_18__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_last_campaign__c": {"name": "contact_last_campaign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_last_hubspot_engagement__c": {"name": "contact_last_hubspot_engagement__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_notes__c": {"name": "contact_notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_role__c": {"name": "contact_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_status__c": {"name": "contact_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_owner_not_account_owner__c": {"name": "contact_owner_not_account_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "contacts_in_common__c": {"name": "contacts_in_common__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_by_ringlead_webhook__c": {"name": "converted_by_ringlead_webhook__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_region__c": {"name": "country_region__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_via_docusign__c": {"name": "created_via_docusign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "critical_event__c": {"name": "critical_event__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_curation_solution__c": {"name": "current_curation_solution__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_marketing_efforts__c": {"name": "current_marketing_efforts__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_company_id__c": {"name": "dozisf__zoominfo_company_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_first_updated__c": {"name": "dozisf__zoominfo_first_updated__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_id__c": {"name": "dozisf__zoominfo_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_last_updated__c": {"name": "dozisf__zoominfo_last_updated__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ds_account_id__c": {"name": "ds_account_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_from_last_activity__c": {"name": "days_from_last_activity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_activity_after_assign__c": {"name": "days_since_last_activity_after_assign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_activity_after_engage__c": {"name": "days_since_last_activity_after_engage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_activity_after_mql__c": {"name": "days_since_last_activity_after_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_communicated__c": {"name": "days_since_last_communicated__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_from_last_assign_to_first_touch__c": {"name": "days_from_last_assign_to_first_touch__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decision_maker__c": {"name": "decision_maker__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "department": {"name": "department", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "direct_traffic_share__c": {"name": "direct_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "donotcall": {"name": "donotcall", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "doesn_t_work_here__c": {"name": "doesn_t_work_here__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "domain__c": {"name": "domain__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain_copy__c": {"name": "domain_copy__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "drift_assignee__c": {"name": "drift_assignee__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effective_source__c": {"name": "effective_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "emailbounceddate": {"name": "emailbounceddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "emailbouncedreason": {"name": "emailbouncedreason", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_domain__c": {"name": "email_domain__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_validation__c": {"name": "email_validation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enterprise_contact_formula__c": {"name": "enterprise_contact_formula__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "enterprise_contact__c": {"name": "enterprise_contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "estimated_aov__c": {"name": "estimated_aov__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "estimated_of_orders__c": {"name": "estimated_of_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fb_likes__c": {"name": "fb_likes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fax": {"name": "fax", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "features_to_focus_on__c": {"name": "features_to_focus_on__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "firstname": {"name": "firstname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_activity_date__c": {"name": "first_activity_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_contact_on_account_indication__c": {"name": "first_contact_on_account_indication__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "follow_up_date__c": {"name": "follow_up_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "follow_up_in__c": {"name": "follow_up_in__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "follow_up_num_of_days__c": {"name": "follow_up_num_of_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "funding__c": {"name": "funding__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "global_rank__c": {"name": "global_rank__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "good_fit_for_the_annual_plan_contact__c": {"name": "good_fit_for_the_annual_plan_contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "google_click_id__c": {"name": "google_click_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "google_seller_rating__c": {"name": "google_seller_rating__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hasoptedoutofemail": {"name": "hasoptedoutofemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hasoptedoutoffax": {"name": "hasoptedoutoffax", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "help_desk_provider__c": {"name": "help_desk_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "homephone": {"name": "homephone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hours_since_account_last_transfer__c": {"name": "hours_since_account_last_transfer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "import_reason__c": {"name": "import_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "inbound_reason_for_interest_in_yotpo__c": {"name": "inbound_reason_for_interest_in_yotpo__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_email_marketing__c": {"name": "integrations_email_marketing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_loyalty__c": {"name": "integrations_loyalty__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_onsite_engagement__c": {"name": "integrations_onsite_engagement__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_search__c": {"name": "integrations_search__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "internal_use__c": {"name": "internal_use__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "invalid_email_address_marketo__c": {"name": "invalid_email_address_marketo__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isemailbounced": {"name": "isemailbounced", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "jigsawcontactid": {"name": "jigsawcontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "jigsaw": {"name": "jigsaw", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "junk_reason__c": {"name": "junk_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnpath__c": {"name": "lnpath__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnstage__c": {"name": "lnstage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnstatus__c": {"name": "lnstatus__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ln_interest__c": {"name": "ln_interest__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastactivitydate": {"name": "lastactivitydate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastname": {"name": "lastname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_activity_date__c": {"name": "last_activity_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_call_date__c": {"name": "last_call_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_communication_date__c": {"name": "last_communication_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_nps_date__c": {"name": "last_nps_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_ringlead_merge_activity__c": {"name": "last_ringlead_merge_activity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "latest_nps_score__c": {"name": "latest_nps_score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "leadsource": {"name": "leadsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_hubspot_engagement_mapped__c": {"name": "lead_last_hubspot_engagement_mapped__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_source_type__c": {"name": "lead_source_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "linkedin__c": {"name": "linkedin__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "location__c": {"name": "location__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_date__c": {"name": "mql_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mail_traffic_share__c": {"name": "mail_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mailingcity": {"name": "mailingcity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingcountrycode": {"name": "mailingcountrycode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingcountry": {"name": "mailingcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingpostalcode": {"name": "mailingpostalcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingstatecode": {"name": "mailingstatecode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingstate": {"name": "mailingstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingstreet": {"name": "mailingstreet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_hlql_date__c": {"name": "marketing_filter_hlql_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_hql_date__c": {"name": "marketing_filter_hql_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_lql_date__c": {"name": "marketing_filter_lql_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_last_qualified_tier__c": {"name": "marketing_filter_last_qualified_tier__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_product_push_counter__c": {"name": "marketing_product_push_counter__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_fit_score_first_mql__c": {"name": "marketo_fit_score_first_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_fit_score_last_mql__c": {"name": "marketo_fit_score_last_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_fit_score__c": {"name": "marketo_fit_score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_tier_last_mql__c": {"name": "marketo_tier_last_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_tier_mql__c": {"name": "marketo_tier_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "meeting_type_cp__c": {"name": "meeting_type_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id__c": {"name": "merchant_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merged_contact__c": {"name": "merged_contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mobilephone": {"name": "mobilephone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_fb_ads_budget__c": {"name": "monthly_fb_ads_budget__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "most_recent_assignment_bucket__c": {"name": "most_recent_assignment_bucket__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_date__c": {"name": "most_recent_assignment_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_reason__c": {"name": "most_recent_assignment_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_sub_reason__c": {"name": "most_recent_assignment_sub_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_date__c": {"name": "most_recent_engagement_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_reason__c": {"name": "most_recent_engagement_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "move_to_nurture__c": {"name": "move_to_nurture__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nps_response__c": {"name": "nps_response__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_outbound_referral__c": {"name": "new_outbound_referral__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_accounts_s_open_opportunities__c": {"name": "number_of_accounts_s_open_opportunities__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number_of_instagram_followers__c": {"name": "number_of_instagram_followers__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_reason__c": {"name": "nurturing_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_to_new__c": {"name": "nurturing_to_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opt_out_partner_marketing__c": {"name": "opt_out_partner_marketing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "original_source__c": {"name": "original_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "otherphone": {"name": "otherphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "other_contact_notes__c": {"name": "other_contact_notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owned_by_sdr_salesloft__c": {"name": "owned_by_sdr_salesloft__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ownerid": {"name": "ownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_manager_email__c": {"name": "owner_manager_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_is_active__c": {"name": "owner_is_active__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "owner_is_queue__c": {"name": "owner_is_queue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pos_provider__c": {"name": "pos_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_base__c": {"name": "package_base__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_extensions__c": {"name": "package_extensions__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package__c": {"name": "package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paid_referrals_traffic_share__c": {"name": "paid_referrals_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pain_points__c": {"name": "pain_points__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_outbound_referral__c": {"name": "partner_outbound_referral__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_provider__c": {"name": "payment_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "personalization_provider__c": {"name": "personalization_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_country_code_contact__c": {"name": "phone_country_code_contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_extension__c": {"name": "phone_extension__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "photourl": {"name": "photourl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform__c": {"name": "platform__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_companies__c": {"name": "previous_companies__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_roles__c": {"name": "previous_roles__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_lead_engagement__c": {"name": "product_lead_engagement__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "prospect_fit_rank__c": {"name": "prospect_fit_rank__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_reason__c": {"name": "prospect_fit_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_rank__c": {"name": "prospect_intent_rank__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_reason__c": {"name": "prospect_intent_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_role__c": {"name": "prospect_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ready_for_routing__c": {"name": "ready_for_routing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "referrals_traffic_share__c": {"name": "referrals_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referrer_agency_potential__c": {"name": "referrer_agency_potential__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_type__c": {"name": "referrer_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_recent_social_media_posts__c": {"name": "relevant_recent_social_media_posts__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_yotpo_deployments__c": {"name": "relevant_yotpo_deployments__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "remove_from_primary__c": {"name": "remove_from_primary__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_provider__c": {"name": "reviews_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ringlead_dms_status__c": {"name": "ringlead_dms_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_email__c": {"name": "sdr_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_notes__c": {"name": "sdr_notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_territory__c": {"name": "sales_territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_tier_first_mql__c": {"name": "sales_tier_first_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_tier_routing__c": {"name": "sales_tier_routing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salutation": {"name": "salutation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "search_traffic_share__c": {"name": "search_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "second_best_country__c": {"name": "second_best_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_id__c": {"name": "segment_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "send_to_growth__c": {"name": "send_to_growth__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "similarweb_traffic_new__c": {"name": "similarweb_traffic_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "skype_id__c": {"name": "skype_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "social_traffic_share__c": {"name": "social_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "state_region__c": {"name": "state_region__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscribed_to_blog__c": {"name": "subscribed_to_blog__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "subscription_billing_provider__c": {"name": "subscription_billing_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "super_csm_generic_account__c": {"name": "super_csm_generic_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "swell_engagement__c": {"name": "swell_engagement__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_package__c": {"name": "swell_package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "talk_to_csm__c": {"name": "talk_to_csm__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "third_best_country__c": {"name": "third_best_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_at_company__c": {"name": "time_at_company__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_in_current_role__c": {"name": "time_in_current_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_country__c": {"name": "top_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_organic_keyword__c": {"name": "top_organic_keyword__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_paid_keyword__c": {"name": "top_paid_keyword__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id__c": {"name": "user_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "verify_as_primary__c": {"name": "verify_as_primary__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "wrong_number_indication_date__c": {"name": "wrong_number_indication_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdr_low_fit_qualification_date__c": {"name": "isdr_low_fit_qualification_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdr_low_fit_qualification_status__c": {"name": "isdr_low_fit_qualification_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__acquisition_date__c": {"name": "mkto2__acquisition_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_city__c": {"name": "mkto2__inferred_city__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_company__c": {"name": "mkto2__inferred_company__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_country__c": {"name": "mkto2__inferred_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_metropolitan_area__c": {"name": "mkto2__inferred_metropolitan_area__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_phone_area_code__c": {"name": "mkto2__inferred_phone_area_code__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_postal_code__c": {"name": "mkto2__inferred_postal_code__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_state_region__c": {"name": "mkto2__inferred_state_region__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__lead_score__c": {"name": "mkto2__lead_score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto2__original_referrer__c": {"name": "mkto2__original_referrer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_search_engine__c": {"name": "mkto2__original_search_engine__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_search_phrase__c": {"name": "mkto2__original_search_phrase__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_source_info__c": {"name": "mkto2__original_source_info__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_source_type__c": {"name": "mkto2__original_source_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto71_acquisition_date__c": {"name": "mkto71_acquisition_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto71_acquisition_program_id__c": {"name": "mkto71_acquisition_program_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto71_acquisition_program__c": {"name": "mkto71_acquisition_program__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__add_to_marketo_campaign__c": {"name": "mkto_si__add_to_marketo_campaign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_date__c": {"name": "mkto_si__last_interesting_moment_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_desc__c": {"name": "mkto_si__last_interesting_moment_desc__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_source__c": {"name": "mkto_si__last_interesting_moment_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_type__c": {"name": "mkto_si__last_interesting_moment_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment__c": {"name": "mkto_si__last_interesting_moment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__priority__c": {"name": "mkto_si__priority__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto_si__relative_score_value__c": {"name": "mkto_si__relative_score_value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto_si__relative_score__c": {"name": "mkto_si__relative_score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__sales_insight__c": {"name": "mkto_si__sales_insight__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__urgency_value__c": {"name": "mkto_si__urgency_value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto_si__urgency__c": {"name": "mkto_si__urgency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__view_in_marketo__c": {"name": "mkto_si__view_in_marketo__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__sendsms__c": {"name": "rcsfl__sendsms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_profile__c": {"name": "company_profile__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "decision__c": {"name": "decision__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "good_fit_for_growth__c": {"name": "good_fit_for_growth__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "impact__c": {"name": "impact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_in_person_meeting__c": {"name": "last_in_person_meeting__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_opp_feedback_process__c": {"name": "lost_opp_feedback_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_notification_engagement_type__c": {"name": "mql_notification_engagement_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_notification_reason__c": {"name": "mql_notification_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "othercity": {"name": "othercity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "othercountrycode": {"name": "othercountrycode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "othercountry": {"name": "othercountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "otherpostalcode": {"name": "otherpostalcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "otherstreet": {"name": "otherstreet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pain__c": {"name": "pain__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_team_routing__c": {"name": "partner_team_routing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reportstoid": {"name": "reportstoid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_industry__c": {"name": "salesloft_industry__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "situation__c": {"name": "situation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager_email_referral_form__c": {"name": "partner_manager_email_referral_form__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rating__c": {"name": "rating__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_email_referral_form__c": {"name": "referred_by_email_referral_form__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_referral_form__c": {"name": "referred_by_referral_form__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_partner_code__c": {"name": "referred_partner_code__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_assignment__c": {"name": "contact_assignment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_to_cross_sell_by__c": {"name": "referred_to_cross_sell_by__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "topics_to_avoid__c": {"name": "topics_to_avoid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "added_to_self_service_by_role__c": {"name": "added_to_self_service_by_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "added_to_self_service_by__c": {"name": "added_to_self_service_by__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__acquisition_program_id__c": {"name": "mkto2__acquisition_program_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto2__acquisition_program__c": {"name": "mkto2__acquisition_program__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_triggered_mql__c": {"name": "marketo_triggered_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "community_user_profile__c": {"name": "community_user_profile__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "community_user__c": {"name": "community_user__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_interest_referral_form__c": {"name": "products_interest_referral_form__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "community_user_last_login_date__c": {"name": "community_user_last_login_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_growth_referral_account_name__c": {"name": "most_recent_growth_referral_account_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engaged_with_cross_sell_campaign__c": {"name": "engaged_with_cross_sell_campaign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_assignee__c": {"name": "swell_assignee__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "birthdate": {"name": "birthdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "masterrecordid": {"name": "masterrecordid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_product_preference__c": {"name": "most_recent_product_preference__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_session_starting_page__c": {"name": "most_recent_session_starting_page__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_of_funnel_touches__c": {"name": "top_of_funnel_touches__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_touches__c": {"name": "product_touches__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_of_funnel_sessions__c": {"name": "top_of_funnel_sessions__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sales_estimated_product_preference__c": {"name": "sales_estimated_product_preference__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bottom_of_funnel_sessions__c": {"name": "bottom_of_funnel_sessions__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "prospect_fit_score_test__c": {"name": "prospect_fit_score_test__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "next_steps__c": {"name": "next_steps__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_sub_reason__c": {"name": "most_recent_engagement_sub_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recordval__rv2status__c": {"name": "recordval__rv2status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recordval__rv2validation__c": {"name": "recordval__rv2validation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "send_docusign__c": {"name": "send_docusign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "interested_in_sms__c": {"name": "interested_in_sms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_vms__c": {"name": "interested_in_vms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_loyalty__c": {"name": "interested_in_loyalty__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_reviews__c": {"name": "interested_in_reviews__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "package_category__c": {"name": "package_category__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_status_time_stamp__c": {"name": "contact_status_time_stamp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_segment__c": {"name": "sales_segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_contact_role__c": {"name": "partner_contact_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_since_last_partner_portal_modify__c": {"name": "days_since_last_partner_portal_modify__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner_portal_status__c": {"name": "partner_portal_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "qualification_question_monthly_orders__c": {"name": "qualification_question_monthly_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_portal_last_modify__c": {"name": "partner_portal_last_modify__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "was_portal_inactive__c": {"name": "was_portal_inactive__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "customer_care_tagged__c": {"name": "customer_care_tagged__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_claimed_rev_share__c": {"name": "partner_claimed_rev_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastproductoflastsubscriptionevent__c": {"name": "lastproductoflastsubscriptionevent__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastsubscriptioneventchange__c": {"name": "lastsubscriptioneventchange__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "booking_status_cp__c": {"name": "booking_status_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_revshare__c": {"name": "exclude_revshare__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "discoverorg_person_country__c": {"name": "discoverorg_person_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__active_contact__c": {"name": "salesloft1__active_contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "community_member__c": {"name": "community_member__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activitymetricid": {"name": "activitymetricid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activitymetricrollupid": {"name": "activitymetricrollupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enable_email_to_case_ugc_prime__c": {"name": "enable_email_to_case_ugc_prime__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "salesloft1__most_recent_cadence_next_step_due_date__c": {"name": "salesloft1__most_recent_cadence_next_step_due_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_last_completed_step__c": {"name": "salesloft1__most_recent_last_completed_step__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "salesloft1__most_recent_cadence_name__c": {"name": "salesloft1__most_recent_cadence_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "interested_in_subscription__c": {"name": "interested_in_subscription__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mql_motion__c": {"name": "mql_motion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_referral_via_the_portal__c": {"name": "last_referral_via_the_portal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_login__c": {"name": "last_login__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_login__c": {"name": "previous_login__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_login__c": {"name": "first_login__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_role_primary__c": {"name": "contact_role_primary__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pe_reassignment_date__c": {"name": "pe_reassignment_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_account_territory__c": {"name": "new_account_territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_is_primary_sms__c": {"name": "contact_is_primary_sms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "last_campaign_engagement_date__c": {"name": "last_campaign_engagement_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_id__c": {"name": "zuora_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_estimated_monthly_orders__c": {"name": "sales_estimated_monthly_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082654.2167802, "relation_name": "dev_dkruh1.analytics___salesforce_stg__contact", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'contact') }}\n\n), salesforce_stg__contact AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\tavg_traffic_6_months__c,\n\t\taccountid,\n\t\taccount_country__c,\n\t\taccount_db_package__c,\n\t\taccount_in_cross_sell_process__c,\n\t\taccount_name__c,\n\t\taccount_owner__c,\n\t\taccount_sdr_owner__c,\n\t\taccount_status__c,\n\t\taccount_territory__c,\n\t\taccount_s_organization_key__c,\n\t\tactive_community_member__c,\n\t\tactive_contact_14_days__c,\n\t\tadditional_email_address__c,\n\t\tadditional_email__c,\n\t\tadditional_phone_number__c,\n\t\tads_provider__c,\n\t\tagency_potential__c,\n\t\tagency_stage__c,\n\t\tannual_revenue__c,\n\t\task_to_renew__c,\n\t\tautomate_contact_status_timestamp__c,\n\t\tbounce_rate__c,\n\t\tcdp_provider__c,\n\t\tcsm_email_re_engaged__c,\n\t\tchampion__c,\n\t\tchat_bots_provider__c,\n\t\tcomments__c,\n\t\tcommonalities__c,\n\t\tcommunity_user_my_account_s_contacts__c,\n\t\tcontact_count__c,\n\t\tcontact_id_18__c,\n\t\tcontact_last_campaign__c,\n\t\tcontact_last_hubspot_engagement__c,\n\t\tcontact_notes__c,\n\t\tcontact_role__c,\n\t\tcontact_status__c,\n\t\tcontact_owner_not_account_owner__c,\n\t\tcontacts_in_common__c,\n\t\tconverted_by_ringlead_webhook__c,\n\t\tcountry_region__c,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreated_via_docusign__c,\n\t\tcritical_event__c,\n\t\tcurrencyisocode,\n\t\tcurrent_curation_solution__c,\n\t\tcurrent_marketing_efforts__c,\n\t\tdozisf__zoominfo_company_id__c,\n\t\tdozisf__zoominfo_first_updated__c,\n\t\tdozisf__zoominfo_id__c,\n\t\tdozisf__zoominfo_last_updated__c,\n\t\tds_account_id__c,\n\t\tdays_from_last_activity__c,\n\t\tdays_since_last_activity_after_assign__c,\n\t\tdays_since_last_activity_after_engage__c,\n\t\tdays_since_last_activity_after_mql__c,\n\t\tdays_since_last_communicated__c,\n\t\tdays_from_last_assign_to_first_touch__c,\n\t\tdecision_maker__c,\n\t\tdepartment,\n\t\tdescription,\n\t\tdirect_traffic_share__c,\n\t\tdonotcall,\n\t\tdoesn_t_work_here__c,\n\t\tdomain__c,\n\t\tdomain_copy__c,\n\t\tdrift_assignee__c,\n\t\teffective_source__c,\n\t\temailbounceddate,\n\t\temailbouncedreason,\n\t\temail_domain__c,\n\t\temail_validation__c,\n\t\temail,\n\t\tenterprise_contact_formula__c,\n\t\tenterprise_contact__c,\n\t\testimated_aov__c,\n\t\testimated_of_orders__c,\n\t\tfb_likes__c,\n\t\tfax,\n\t\tfeatures_to_focus_on__c,\n\t\tfirstname,\n\t\tfirst_activity_date__c,\n\t\tfirst_contact_on_account_indication__c,\n\t\tfollow_up_date__c,\n\t\tfollow_up_in__c,\n\t\tfollow_up_num_of_days__c,\n\t\tfunding__c,\n\t\tglobal_rank__c,\n\t\tgood_fit_for_the_annual_plan_contact__c,\n\t\tgoogle_click_id__c,\n\t\tgoogle_seller_rating__c,\n\t\thasoptedoutofemail,\n\t\thasoptedoutoffax,\n\t\thelp_desk_provider__c,\n\t\thomephone,\n\t\thours_since_account_last_transfer__c,\n\t\tid,\n\t\timport_reason__c,\n\t\tinbound_reason_for_interest_in_yotpo__c,\n\t\tintegrations_email_marketing__c,\n\t\tintegrations_loyalty__c,\n\t\tintegrations_onsite_engagement__c,\n\t\tintegrations_search__c,\n\t\tinternal_use__c,\n\t\tinvalid_email_address_marketo__c,\n\t\tisdeleted,\n\t\tisemailbounced,\n\t\tjigsawcontactid,\n\t\tjigsaw,\n\t\tjunk_reason__c,\n\t\tlnpath__c,\n\t\tlnstage__c,\n\t\tlnstatus__c,\n\t\tln_interest__c,\n\t\tlastactivitydate,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tlastname,\n\t\tlast_activity_date__c,\n\t\tlast_call_date__c,\n\t\tlast_communication_date__c,\n\t\tlast_nps_date__c,\n\t\tlast_ringlead_merge_activity__c,\n\t\tlatest_nps_score__c,\n\t\tleadsource,\n\t\tlead_last_hubspot_engagement_mapped__c,\n\t\tlead_source_type__c,\n\t\tlinkedin__c,\n\t\tlocation__c,\n\t\tmql_date__c,\n\t\tmail_traffic_share__c,\n\t\tmailingcity,\n\t\tmailingcountrycode,\n\t\tmailingcountry,\n\t\tmailingpostalcode,\n\t\tmailingstatecode,\n\t\tmailingstate,\n\t\tmailingstreet,\n\t\tmarketing_filter_hlql_date__c,\n\t\tmarketing_filter_hql_date__c,\n\t\tmarketing_filter_lql_date__c,\n\t\tmarketing_filter_last_qualified_tier__c,\n\t\tmarketing_product_push_counter__c,\n\t\tmarketo_fit_score_first_mql__c,\n\t\tmarketo_fit_score_last_mql__c,\n\t\tmarketo_fit_score__c,\n\t\tmarketo_tier_last_mql__c,\n\t\tmarketo_tier_mql__c,\n\t\tmeeting_type_cp__c,\n\t\tmerchant_id__c,\n\t\tmerged_contact__c,\n\t\tmobilephone,\n\t\tmonthly_fb_ads_budget__c,\n\t\tmost_recent_assignment_bucket__c,\n\t\tmost_recent_assignment_date__c,\n\t\tmost_recent_assignment_reason__c,\n\t\tmost_recent_assignment_sub_reason__c,\n\t\tmost_recent_engagement_date__c,\n\t\tmost_recent_engagement_reason__c,\n\t\tmove_to_nurture__c,\n\t\tnps_response__c,\n\t\tname,\n\t\tnew_outbound_referral__c,\n\t\tnumber_of_accounts_s_open_opportunities__c,\n\t\tnumber_of_instagram_followers__c,\n\t\tnurturing_reason__c,\n\t\tnurturing_to_new__c,\n\t\topt_out_partner_marketing__c,\n\t\toriginal_source__c,\n\t\totherphone,\n\t\tother_contact_notes__c,\n\t\towned_by_sdr_salesloft__c,\n\t\townerid,\n\t\towner_manager_email__c,\n\t\towner_is_active__c,\n\t\towner_is_queue__c,\n\t\tpos_provider__c,\n\t\tpackage_base__c,\n\t\tpackage_extensions__c,\n\t\tpackage__c,\n\t\tpaid_referrals_traffic_share__c,\n\t\tpain_points__c,\n\t\tpartner_outbound_referral__c,\n\t\tpayment_provider__c,\n\t\tpersonalization_provider__c,\n\t\tphone_country_code_contact__c,\n\t\tphone_extension__c,\n\t\tphone,\n\t\tphotourl,\n\t\tplatform__c,\n\t\tprevious_companies__c,\n\t\tprevious_roles__c,\n\t\tproduct_lead_engagement__c,\n\t\tprospect_fit_rank__c,\n\t\tprospect_fit_reason__c,\n\t\tprospect_intent_rank__c,\n\t\tprospect_intent_reason__c,\n\t\tprospect_role__c,\n\t\tready_for_routing__c,\n\t\treferrals_traffic_share__c,\n\t\treferrer_agency_potential__c,\n\t\treferrer_type__c,\n\t\trelevant_recent_social_media_posts__c,\n\t\trelevant_yotpo_deployments__c,\n\t\tremove_from_primary__c,\n\t\treviews_provider__c,\n\t\tringlead_dms_status__c,\n\t\tsdr_email__c,\n\t\tsdr_notes__c,\n\t\tsales_territory__c,\n\t\tsales_tier_first_mql__c,\n\t\tsales_tier_routing__c,\n\t\tsalutation,\n\t\tsearch_traffic_share__c,\n\t\tsecond_best_country__c,\n\t\tsegment_id__c,\n\t\tsend_to_growth__c,\n\t\tsimilarweb_traffic_new__c,\n\t\tskype_id__c,\n\t\tsocial_traffic_share__c,\n\t\tstate_region__c,\n\t\tsubscribed_to_blog__c,\n\t\tsubscription_billing_provider__c,\n\t\tsuper_csm_generic_account__c,\n\t\tswell_engagement__c,\n\t\tswell_package__c,\n\t\tsystemmodstamp,\n\t\ttalk_to_csm__c,\n\t\tthird_best_country__c,\n\t\ttime_at_company__c,\n\t\ttime_in_current_role__c,\n\t\ttitle,\n\t\ttop_country__c,\n\t\ttop_organic_keyword__c,\n\t\ttop_paid_keyword__c,\n\t\tuser_id__c,\n\t\tverify_as_primary__c,\n\t\twrong_number_indication_date__c,\n\t\tisdr_low_fit_qualification_date__c,\n\t\tisdr_low_fit_qualification_status__c,\n\t\tmkto2__acquisition_date__c,\n\t\tmkto2__inferred_city__c,\n\t\tmkto2__inferred_company__c,\n\t\tmkto2__inferred_country__c,\n\t\tmkto2__inferred_metropolitan_area__c,\n\t\tmkto2__inferred_phone_area_code__c,\n\t\tmkto2__inferred_postal_code__c,\n\t\tmkto2__inferred_state_region__c,\n\t\tmkto2__lead_score__c,\n\t\tmkto2__original_referrer__c,\n\t\tmkto2__original_search_engine__c,\n\t\tmkto2__original_search_phrase__c,\n\t\tmkto2__original_source_info__c,\n\t\tmkto2__original_source_type__c,\n\t\tmkto71_acquisition_date__c,\n\t\tmkto71_acquisition_program_id__c,\n\t\tmkto71_acquisition_program__c,\n\t\tmkto_si__add_to_marketo_campaign__c,\n\t\tmkto_si__last_interesting_moment_date__c,\n\t\tmkto_si__last_interesting_moment_desc__c,\n\t\tmkto_si__last_interesting_moment_source__c,\n\t\tmkto_si__last_interesting_moment_type__c,\n\t\tmkto_si__last_interesting_moment__c,\n\t\tmkto_si__priority__c,\n\t\tmkto_si__relative_score_value__c,\n\t\tmkto_si__relative_score__c,\n\t\tmkto_si__sales_insight__c,\n\t\tmkto_si__urgency_value__c,\n\t\tmkto_si__urgency__c,\n\t\tmkto_si__view_in_marketo__c,\n\t\trcsfl__sendsms__c,\n\t\tcompany_profile__c,\n\t\tdecision__c,\n\t\tgood_fit_for_growth__c,\n\t\timpact__c,\n\t\tlast_in_person_meeting__c,\n\t\tlost_opp_feedback_process__c,\n\t\tmql_notification_engagement_type__c,\n\t\tmql_notification_reason__c,\n\t\tothercity,\n\t\tothercountrycode,\n\t\tothercountry,\n\t\totherpostalcode,\n\t\totherstreet,\n\t\tpain__c,\n\t\tpartner_team_routing__c,\n\t\treportstoid,\n\t\tsalesloft_industry__c,\n\t\tsituation__c,\n\t\tpartner_manager_email_referral_form__c,\n\t\trating__c,\n\t\treferred_by_email_referral_form__c,\n\t\treferred_by_referral_form__c,\n\t\treferred_partner_code__c,\n\t\tcontact_assignment__c,\n\t\treferred_to_cross_sell_by__c,\n\t\ttopics_to_avoid__c,\n\t\tadded_to_self_service_by_role__c,\n\t\tadded_to_self_service_by__c,\n\t\tmkto2__acquisition_program_id__c,\n\t\tmkto2__acquisition_program__c,\n\t\tmarketo_triggered_mql__c,\n\t\tcommunity_user_profile__c,\n\t\tcommunity_user__c,\n\t\tproducts_interest_referral_form__c,\n\t\tcommunity_user_last_login_date__c,\n\t\tmost_recent_growth_referral_account_name__c,\n\t\tengaged_with_cross_sell_campaign__c,\n\t\tswell_assignee__c,\n\t\tbirthdate,\n\t\tmasterrecordid,\n\t\tlastreferenceddate,\n\t\tlastvieweddate,\n\t\tmost_recent_product_preference__c,\n\t\tmost_recent_session_starting_page__c,\n\t\ttop_of_funnel_touches__c,\n\t\tproduct_touches__c,\n\t\ttop_of_funnel_sessions__c,\n\t\tsales_estimated_product_preference__c,\n\t\tbottom_of_funnel_sessions__c,\n\t\tprospect_fit_score_test__c,\n\t\tnext_steps__c,\n\t\tmost_recent_engagement_sub_reason__c,\n\t\trecordval__rv2status__c,\n\t\trecordval__rv2validation__c,\n\t\tsend_docusign__c,\n\t\tinterested_in_sms__c,\n\t\tinterested_in_vms__c,\n\t\tinterested_in_loyalty__c,\n\t\tinterested_in_reviews__c,\n\t\tpackage_category__c,\n\t\tcontact_status_time_stamp__c,\n\t\tsales_segment__c,\n\t\tpartner_contact_role__c,\n\t\tdays_since_last_partner_portal_modify__c,\n\t\tpartner_portal_status__c,\n\t\tqualification_question_monthly_orders__c,\n\t\tpartner_portal_last_modify__c,\n\t\twas_portal_inactive__c,\n\t\tcustomer_care_tagged__c,\n\t\tpartner_claimed_rev_share__c,\n\t\tlastproductoflastsubscriptionevent__c,\n\t\tlastsubscriptioneventchange__c,\n\t\tbooking_status_cp__c,\n\t\texclude_revshare__c,\n\t\tdiscoverorg_person_country__c,\n\t\tsalesloft1__active_contact__c,\n\t\tcommunity_member__c,\n\t\tactivitymetricid,\n\t\tactivitymetricrollupid,\n\t\tenable_email_to_case_ugc_prime__c,\n\t\tsalesloft1__most_recent_cadence_next_step_due_date__c,\n\t\tsalesloft1__most_recent_last_completed_step__c,\n\t\tsalesloft1__most_recent_cadence_name__c,\n\t\tinterested_in_subscription__c,\n\t\tmql_motion__c,\n\t\tlast_referral_via_the_portal__c,\n\t\tlast_login__c,\n\t\tprevious_login__c,\n\t\tfirst_login__c,\n\t\tcontact_role_primary__c,\n\t\tpe_reassignment_date__c,\n\t\tnew_account_territory__c,\n\t\tcontact_is_primary_sms__c,\n\t\tlast_campaign_engagement_date__c,\n\t\tzuora_id__c,\n\t\tsales_estimated_monthly_orders__c\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__contact", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "contact"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.contact"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.contact\n\n), salesforce_stg__contact AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\tavg_traffic_6_months__c,\n\t\taccountid,\n\t\taccount_country__c,\n\t\taccount_db_package__c,\n\t\taccount_in_cross_sell_process__c,\n\t\taccount_name__c,\n\t\taccount_owner__c,\n\t\taccount_sdr_owner__c,\n\t\taccount_status__c,\n\t\taccount_territory__c,\n\t\taccount_s_organization_key__c,\n\t\tactive_community_member__c,\n\t\tactive_contact_14_days__c,\n\t\tadditional_email_address__c,\n\t\tadditional_email__c,\n\t\tadditional_phone_number__c,\n\t\tads_provider__c,\n\t\tagency_potential__c,\n\t\tagency_stage__c,\n\t\tannual_revenue__c,\n\t\task_to_renew__c,\n\t\tautomate_contact_status_timestamp__c,\n\t\tbounce_rate__c,\n\t\tcdp_provider__c,\n\t\tcsm_email_re_engaged__c,\n\t\tchampion__c,\n\t\tchat_bots_provider__c,\n\t\tcomments__c,\n\t\tcommonalities__c,\n\t\tcommunity_user_my_account_s_contacts__c,\n\t\tcontact_count__c,\n\t\tcontact_id_18__c,\n\t\tcontact_last_campaign__c,\n\t\tcontact_last_hubspot_engagement__c,\n\t\tcontact_notes__c,\n\t\tcontact_role__c,\n\t\tcontact_status__c,\n\t\tcontact_owner_not_account_owner__c,\n\t\tcontacts_in_common__c,\n\t\tconverted_by_ringlead_webhook__c,\n\t\tcountry_region__c,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreated_via_docusign__c,\n\t\tcritical_event__c,\n\t\tcurrencyisocode,\n\t\tcurrent_curation_solution__c,\n\t\tcurrent_marketing_efforts__c,\n\t\tdozisf__zoominfo_company_id__c,\n\t\tdozisf__zoominfo_first_updated__c,\n\t\tdozisf__zoominfo_id__c,\n\t\tdozisf__zoominfo_last_updated__c,\n\t\tds_account_id__c,\n\t\tdays_from_last_activity__c,\n\t\tdays_since_last_activity_after_assign__c,\n\t\tdays_since_last_activity_after_engage__c,\n\t\tdays_since_last_activity_after_mql__c,\n\t\tdays_since_last_communicated__c,\n\t\tdays_from_last_assign_to_first_touch__c,\n\t\tdecision_maker__c,\n\t\tdepartment,\n\t\tdescription,\n\t\tdirect_traffic_share__c,\n\t\tdonotcall,\n\t\tdoesn_t_work_here__c,\n\t\tdomain__c,\n\t\tdomain_copy__c,\n\t\tdrift_assignee__c,\n\t\teffective_source__c,\n\t\temailbounceddate,\n\t\temailbouncedreason,\n\t\temail_domain__c,\n\t\temail_validation__c,\n\t\temail,\n\t\tenterprise_contact_formula__c,\n\t\tenterprise_contact__c,\n\t\testimated_aov__c,\n\t\testimated_of_orders__c,\n\t\tfb_likes__c,\n\t\tfax,\n\t\tfeatures_to_focus_on__c,\n\t\tfirstname,\n\t\tfirst_activity_date__c,\n\t\tfirst_contact_on_account_indication__c,\n\t\tfollow_up_date__c,\n\t\tfollow_up_in__c,\n\t\tfollow_up_num_of_days__c,\n\t\tfunding__c,\n\t\tglobal_rank__c,\n\t\tgood_fit_for_the_annual_plan_contact__c,\n\t\tgoogle_click_id__c,\n\t\tgoogle_seller_rating__c,\n\t\thasoptedoutofemail,\n\t\thasoptedoutoffax,\n\t\thelp_desk_provider__c,\n\t\thomephone,\n\t\thours_since_account_last_transfer__c,\n\t\tid,\n\t\timport_reason__c,\n\t\tinbound_reason_for_interest_in_yotpo__c,\n\t\tintegrations_email_marketing__c,\n\t\tintegrations_loyalty__c,\n\t\tintegrations_onsite_engagement__c,\n\t\tintegrations_search__c,\n\t\tinternal_use__c,\n\t\tinvalid_email_address_marketo__c,\n\t\tisdeleted,\n\t\tisemailbounced,\n\t\tjigsawcontactid,\n\t\tjigsaw,\n\t\tjunk_reason__c,\n\t\tlnpath__c,\n\t\tlnstage__c,\n\t\tlnstatus__c,\n\t\tln_interest__c,\n\t\tlastactivitydate,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tlastname,\n\t\tlast_activity_date__c,\n\t\tlast_call_date__c,\n\t\tlast_communication_date__c,\n\t\tlast_nps_date__c,\n\t\tlast_ringlead_merge_activity__c,\n\t\tlatest_nps_score__c,\n\t\tleadsource,\n\t\tlead_last_hubspot_engagement_mapped__c,\n\t\tlead_source_type__c,\n\t\tlinkedin__c,\n\t\tlocation__c,\n\t\tmql_date__c,\n\t\tmail_traffic_share__c,\n\t\tmailingcity,\n\t\tmailingcountrycode,\n\t\tmailingcountry,\n\t\tmailingpostalcode,\n\t\tmailingstatecode,\n\t\tmailingstate,\n\t\tmailingstreet,\n\t\tmarketing_filter_hlql_date__c,\n\t\tmarketing_filter_hql_date__c,\n\t\tmarketing_filter_lql_date__c,\n\t\tmarketing_filter_last_qualified_tier__c,\n\t\tmarketing_product_push_counter__c,\n\t\tmarketo_fit_score_first_mql__c,\n\t\tmarketo_fit_score_last_mql__c,\n\t\tmarketo_fit_score__c,\n\t\tmarketo_tier_last_mql__c,\n\t\tmarketo_tier_mql__c,\n\t\tmeeting_type_cp__c,\n\t\tmerchant_id__c,\n\t\tmerged_contact__c,\n\t\tmobilephone,\n\t\tmonthly_fb_ads_budget__c,\n\t\tmost_recent_assignment_bucket__c,\n\t\tmost_recent_assignment_date__c,\n\t\tmost_recent_assignment_reason__c,\n\t\tmost_recent_assignment_sub_reason__c,\n\t\tmost_recent_engagement_date__c,\n\t\tmost_recent_engagement_reason__c,\n\t\tmove_to_nurture__c,\n\t\tnps_response__c,\n\t\tname,\n\t\tnew_outbound_referral__c,\n\t\tnumber_of_accounts_s_open_opportunities__c,\n\t\tnumber_of_instagram_followers__c,\n\t\tnurturing_reason__c,\n\t\tnurturing_to_new__c,\n\t\topt_out_partner_marketing__c,\n\t\toriginal_source__c,\n\t\totherphone,\n\t\tother_contact_notes__c,\n\t\towned_by_sdr_salesloft__c,\n\t\townerid,\n\t\towner_manager_email__c,\n\t\towner_is_active__c,\n\t\towner_is_queue__c,\n\t\tpos_provider__c,\n\t\tpackage_base__c,\n\t\tpackage_extensions__c,\n\t\tpackage__c,\n\t\tpaid_referrals_traffic_share__c,\n\t\tpain_points__c,\n\t\tpartner_outbound_referral__c,\n\t\tpayment_provider__c,\n\t\tpersonalization_provider__c,\n\t\tphone_country_code_contact__c,\n\t\tphone_extension__c,\n\t\tphone,\n\t\tphotourl,\n\t\tplatform__c,\n\t\tprevious_companies__c,\n\t\tprevious_roles__c,\n\t\tproduct_lead_engagement__c,\n\t\tprospect_fit_rank__c,\n\t\tprospect_fit_reason__c,\n\t\tprospect_intent_rank__c,\n\t\tprospect_intent_reason__c,\n\t\tprospect_role__c,\n\t\tready_for_routing__c,\n\t\treferrals_traffic_share__c,\n\t\treferrer_agency_potential__c,\n\t\treferrer_type__c,\n\t\trelevant_recent_social_media_posts__c,\n\t\trelevant_yotpo_deployments__c,\n\t\tremove_from_primary__c,\n\t\treviews_provider__c,\n\t\tringlead_dms_status__c,\n\t\tsdr_email__c,\n\t\tsdr_notes__c,\n\t\tsales_territory__c,\n\t\tsales_tier_first_mql__c,\n\t\tsales_tier_routing__c,\n\t\tsalutation,\n\t\tsearch_traffic_share__c,\n\t\tsecond_best_country__c,\n\t\tsegment_id__c,\n\t\tsend_to_growth__c,\n\t\tsimilarweb_traffic_new__c,\n\t\tskype_id__c,\n\t\tsocial_traffic_share__c,\n\t\tstate_region__c,\n\t\tsubscribed_to_blog__c,\n\t\tsubscription_billing_provider__c,\n\t\tsuper_csm_generic_account__c,\n\t\tswell_engagement__c,\n\t\tswell_package__c,\n\t\tsystemmodstamp,\n\t\ttalk_to_csm__c,\n\t\tthird_best_country__c,\n\t\ttime_at_company__c,\n\t\ttime_in_current_role__c,\n\t\ttitle,\n\t\ttop_country__c,\n\t\ttop_organic_keyword__c,\n\t\ttop_paid_keyword__c,\n\t\tuser_id__c,\n\t\tverify_as_primary__c,\n\t\twrong_number_indication_date__c,\n\t\tisdr_low_fit_qualification_date__c,\n\t\tisdr_low_fit_qualification_status__c,\n\t\tmkto2__acquisition_date__c,\n\t\tmkto2__inferred_city__c,\n\t\tmkto2__inferred_company__c,\n\t\tmkto2__inferred_country__c,\n\t\tmkto2__inferred_metropolitan_area__c,\n\t\tmkto2__inferred_phone_area_code__c,\n\t\tmkto2__inferred_postal_code__c,\n\t\tmkto2__inferred_state_region__c,\n\t\tmkto2__lead_score__c,\n\t\tmkto2__original_referrer__c,\n\t\tmkto2__original_search_engine__c,\n\t\tmkto2__original_search_phrase__c,\n\t\tmkto2__original_source_info__c,\n\t\tmkto2__original_source_type__c,\n\t\tmkto71_acquisition_date__c,\n\t\tmkto71_acquisition_program_id__c,\n\t\tmkto71_acquisition_program__c,\n\t\tmkto_si__add_to_marketo_campaign__c,\n\t\tmkto_si__last_interesting_moment_date__c,\n\t\tmkto_si__last_interesting_moment_desc__c,\n\t\tmkto_si__last_interesting_moment_source__c,\n\t\tmkto_si__last_interesting_moment_type__c,\n\t\tmkto_si__last_interesting_moment__c,\n\t\tmkto_si__priority__c,\n\t\tmkto_si__relative_score_value__c,\n\t\tmkto_si__relative_score__c,\n\t\tmkto_si__sales_insight__c,\n\t\tmkto_si__urgency_value__c,\n\t\tmkto_si__urgency__c,\n\t\tmkto_si__view_in_marketo__c,\n\t\trcsfl__sendsms__c,\n\t\tcompany_profile__c,\n\t\tdecision__c,\n\t\tgood_fit_for_growth__c,\n\t\timpact__c,\n\t\tlast_in_person_meeting__c,\n\t\tlost_opp_feedback_process__c,\n\t\tmql_notification_engagement_type__c,\n\t\tmql_notification_reason__c,\n\t\tothercity,\n\t\tothercountrycode,\n\t\tothercountry,\n\t\totherpostalcode,\n\t\totherstreet,\n\t\tpain__c,\n\t\tpartner_team_routing__c,\n\t\treportstoid,\n\t\tsalesloft_industry__c,\n\t\tsituation__c,\n\t\tpartner_manager_email_referral_form__c,\n\t\trating__c,\n\t\treferred_by_email_referral_form__c,\n\t\treferred_by_referral_form__c,\n\t\treferred_partner_code__c,\n\t\tcontact_assignment__c,\n\t\treferred_to_cross_sell_by__c,\n\t\ttopics_to_avoid__c,\n\t\tadded_to_self_service_by_role__c,\n\t\tadded_to_self_service_by__c,\n\t\tmkto2__acquisition_program_id__c,\n\t\tmkto2__acquisition_program__c,\n\t\tmarketo_triggered_mql__c,\n\t\tcommunity_user_profile__c,\n\t\tcommunity_user__c,\n\t\tproducts_interest_referral_form__c,\n\t\tcommunity_user_last_login_date__c,\n\t\tmost_recent_growth_referral_account_name__c,\n\t\tengaged_with_cross_sell_campaign__c,\n\t\tswell_assignee__c,\n\t\tbirthdate,\n\t\tmasterrecordid,\n\t\tlastreferenceddate,\n\t\tlastvieweddate,\n\t\tmost_recent_product_preference__c,\n\t\tmost_recent_session_starting_page__c,\n\t\ttop_of_funnel_touches__c,\n\t\tproduct_touches__c,\n\t\ttop_of_funnel_sessions__c,\n\t\tsales_estimated_product_preference__c,\n\t\tbottom_of_funnel_sessions__c,\n\t\tprospect_fit_score_test__c,\n\t\tnext_steps__c,\n\t\tmost_recent_engagement_sub_reason__c,\n\t\trecordval__rv2status__c,\n\t\trecordval__rv2validation__c,\n\t\tsend_docusign__c,\n\t\tinterested_in_sms__c,\n\t\tinterested_in_vms__c,\n\t\tinterested_in_loyalty__c,\n\t\tinterested_in_reviews__c,\n\t\tpackage_category__c,\n\t\tcontact_status_time_stamp__c,\n\t\tsales_segment__c,\n\t\tpartner_contact_role__c,\n\t\tdays_since_last_partner_portal_modify__c,\n\t\tpartner_portal_status__c,\n\t\tqualification_question_monthly_orders__c,\n\t\tpartner_portal_last_modify__c,\n\t\twas_portal_inactive__c,\n\t\tcustomer_care_tagged__c,\n\t\tpartner_claimed_rev_share__c,\n\t\tlastproductoflastsubscriptionevent__c,\n\t\tlastsubscriptioneventchange__c,\n\t\tbooking_status_cp__c,\n\t\texclude_revshare__c,\n\t\tdiscoverorg_person_country__c,\n\t\tsalesloft1__active_contact__c,\n\t\tcommunity_member__c,\n\t\tactivitymetricid,\n\t\tactivitymetricrollupid,\n\t\tenable_email_to_case_ugc_prime__c,\n\t\tsalesloft1__most_recent_cadence_next_step_due_date__c,\n\t\tsalesloft1__most_recent_last_completed_step__c,\n\t\tsalesloft1__most_recent_cadence_name__c,\n\t\tinterested_in_subscription__c,\n\t\tmql_motion__c,\n\t\tlast_referral_via_the_portal__c,\n\t\tlast_login__c,\n\t\tprevious_login__c,\n\t\tfirst_login__c,\n\t\tcontact_role_primary__c,\n\t\tpe_reassignment_date__c,\n\t\tnew_account_territory__c,\n\t\tcontact_is_primary_sms__c,\n\t\tlast_campaign_engagement_date__c,\n\t\tzuora_id__c,\n\t\tsales_estimated_monthly_orders__c\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__contact", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__cs_lead_c": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__cs_lead_c", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.sql", "unique_id": "model.yoda.analytics___salesforce_stg__cs_lead_c", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__cs_lead_c", "analytics___salesforce_stg__cs_lead_c"], "alias": "analytics___salesforce_stg__cs_lead_c", "checksum": {"name": "sha256", "checksum": "8caa2a2932d70adfe0e2e38f075608396697b9623c6b159927baf9b73432312d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A view of cs_lead object's non-formula fields, based on rivery's incremental salesforce river", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastactivitydate": {"name": "lastactivitydate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "am_rejection_reason__c": {"name": "am_rejection_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name__c": {"name": "account_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account__c": {"name": "account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "assignment_date__c": {"name": "assignment_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csl_source__c": {"name": "csl_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_comments__c": {"name": "csm_comments__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_first_name__c": {"name": "csm_first_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_rejection_reason__c": {"name": "csm_rejection_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm__c": {"name": "csm__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closest_renewal_date__c": {"name": "closest_renewal_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_date__c": {"name": "converted_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "funding__c": {"name": "funding__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry__c": {"name": "industry__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_orders__c": {"name": "last_30_days_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_date__c": {"name": "lost_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_tech_spend__c": {"name": "monthly_tech_spend__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_employees__c": {"name": "number_of_employees__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "on_hold_due_date__c": {"name": "on_hold_due_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contains_vms_mockup__c": {"name": "contains_vms_mockup__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "package__c": {"name": "package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform__c": {"name": "platform__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line__c": {"name": "product_line__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_contact__c": {"name": "related_contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_opportunity__c": {"name": "related_opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_store__c": {"name": "related_store__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "send_csm_notification__c": {"name": "send_csm_notification__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "status__c": {"name": "status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_acv__c": {"name": "total_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "related_opportunity_stage__c": {"name": "related_opportunity_stage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_opp_closed__c": {"name": "related_opp_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "rejected_date__c": {"name": "rejected_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upsell_from_opportunity__c": {"name": "upsell_from_opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_cs_segment__c": {"name": "account_cs_segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_office__c": {"name": "csm_office__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "qualify_csl__c": {"name": "qualify_csl__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reject_csl__c": {"name": "reject_csl__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csl_owner_manager__c": {"name": "csl_owner_manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_manager__c": {"name": "csm_manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "am_notes__c": {"name": "am_notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "snoozed_in__c": {"name": "snoozed_in__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "snoozed_due_date__c": {"name": "snoozed_due_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_org_key__c": {"name": "account_org_key__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_email__c": {"name": "csm_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_email__c": {"name": "owner_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_first_name__c": {"name": "owner_first_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "request_csm_intro__c": {"name": "request_csm_intro__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "intro_sent_at__c": {"name": "intro_sent_at__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "send_custom_email__c": {"name": "send_custom_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "send_intro_email__c": {"name": "send_intro_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mockup_priority__c": {"name": "mockup_priority__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increase_mockup_priority__c": {"name": "increase_mockup_priority__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "swell_renewal_date__c": {"name": "swell_renewal_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_renewal_date__c": {"name": "ugc_renewal_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_manager__c": {"name": "ugc_csm_manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_csm_manager__c": {"name": "swell_csm_manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vms_mockups_sent__c": {"name": "vms_mockups_sent__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "vms_mockups_sent_date__c": {"name": "vms_mockups_sent_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_source_location__c": {"name": "product_source_location__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "potential_acv__c": {"name": "potential_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_to_convert__c": {"name": "days_to_convert__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_to_lost__c": {"name": "days_to_lost__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "demo_scheduled_date__c": {"name": "demo_scheduled_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_to_nurture__c": {"name": "days_to_nurture__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "follow_up_in_date__c": {"name": "follow_up_in_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "follow_up_in_helper__c": {"name": "follow_up_in_helper__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "follow_up_in_c__c": {"name": "follow_up_in_c__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_date__c": {"name": "nurturing_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_reason__c": {"name": "nurturing_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initiate__c": {"name": "initiate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_is_current_user__c": {"name": "csm_is_current_user__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "total_open_csls_under_account__c": {"name": "total_open_csls_under_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "another_open_csl__c": {"name": "another_open_csl__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "average_monthly_orders_last_3_months__c": {"name": "average_monthly_orders_last_3_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_with_campaign__c": {"name": "engaged_with_campaign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "main_partner_manager__c": {"name": "main_partner_manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "test__c": {"name": "test__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_partner_manager_email__c": {"name": "relevant_partner_manager_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_partner_manager__c": {"name": "relevant_partner_manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csl_score__c": {"name": "csl_score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_warmth__c": {"name": "lead_warmth__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status_last_updated__c": {"name": "status_last_updated__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "mql_notification_engagement_type__c": {"name": "mql_notification_engagement_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "in_progress_date__c": {"name": "in_progress_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_notification_reason__c": {"name": "mql_notification_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_at_time_of_csl_creation__c": {"name": "primary_csm_at_time_of_csl_creation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_email_routing_notification__c": {"name": "primary_csm_email_routing_notification__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_reason__c": {"name": "lost_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_account_cs_segment__c": {"name": "original_account_cs_segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_referral__c": {"name": "partner_referral__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_owner__c": {"name": "sdr_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_lead_owner_role__c": {"name": "cs_lead_owner_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_seller_csl__c": {"name": "subscription_seller_csl__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usage_seller_csl__c": {"name": "usage_seller_csl__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_contact__c": {"name": "partner_contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager__c": {"name": "partner_manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_name__c": {"name": "partner_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_date__c": {"name": "referral_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_type__c": {"name": "referral_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "all_relevant_products__c": {"name": "all_relevant_products__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team_at_csl_creation__c": {"name": "primary_csm_team_at_csl_creation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "temp_product_holder__c": {"name": "temp_product_holder__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_account__c": {"name": "top_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_avg_3_months_orders_swell__c": {"name": "last_avg_3_months_orders_swell__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082654.324227, "relation_name": "dev_dkruh1.analytics___salesforce_stg__cs_lead_c", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce_rivery', 'cs_lead__c') }}\n\n), analytics___salesforce_stg__cs_lead_c AS (\n\n SELECT \n\t\tid,\n\t\townerid,\n\t\tisdeleted,\n\t\tname,\n\t\tcurrencyisocode,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tlastactivitydate,\n\t\tlastvieweddate,\n\t\tlastreferenceddate,\n\t\tam_rejection_reason__c,\n\t\taccount_name__c,\n\t\taccount__c,\n\t\tassignment_date__c,\n\t\tcsl_source__c,\n\t\tcsm_comments__c,\n\t\tcsm_first_name__c,\n\t\tcsm_rejection_reason__c,\n\t\tcsm__c,\n\t\tclosest_renewal_date__c,\n\t\tconverted_date__c,\n\t\tfunding__c,\n\t\tindustry__c,\n\t\tlast_30_days_orders__c,\n\t\tlost_date__c,\n\t\tmonthly_tech_spend__c,\n\t\tnumber_of_employees__c,\n\t\ton_hold_due_date__c,\n\t\tcontains_vms_mockup__c,\n\t\tpackage__c,\n\t\tplatform__c,\n\t\tproduct_line__c,\n\t\trelated_contact__c,\n\t\trelated_opportunity__c,\n\t\trelated_store__c,\n\t\tsend_csm_notification__c,\n\t\tstatus__c,\n\t\ttotal_acv__c,\n\t\trelated_opportunity_stage__c,\n\t\trelated_opp_closed__c,\n\t\trejected_date__c,\n\t\tupsell_from_opportunity__c,\n\t\taccount_cs_segment__c,\n\t\tcsm_office__c,\n\t\tqualify_csl__c,\n\t\treject_csl__c,\n\t\tcsl_owner_manager__c,\n\t\tcsm_manager__c,\n\t\tam_notes__c,\n\t\tsnoozed_in__c,\n\t\tsnoozed_due_date__c,\n\t\taccount_org_key__c,\n\t\tcsm_email__c,\n\t\towner_email__c,\n\t\towner_first_name__c,\n\t\trequest_csm_intro__c,\n\t\tintro_sent_at__c,\n\t\tsend_custom_email__c,\n\t\tsend_intro_email__c,\n\t\tmockup_priority__c,\n\t\tincrease_mockup_priority__c,\n\t\tswell_renewal_date__c,\n\t\tugc_renewal_date__c,\n\t\tugc_csm_manager__c,\n\t\tswell_csm_manager__c,\n\t\tvms_mockups_sent__c,\n\t\tvms_mockups_sent_date__c,\n\t\tproduct_source_location__c,\n\t\tpotential_acv__c,\n\t\tdays_to_convert__c,\n\t\tdays_to_lost__c,\n\t\tdemo_scheduled_date__c,\n\t\tdays_to_nurture__c,\n\t\tfollow_up_in_date__c,\n\t\tfollow_up_in_helper__c,\n\t\tfollow_up_in_c__c,\n\t\tnurturing_date__c,\n\t\tnurturing_reason__c,\n\t\tinitiate__c,\n\t\tcsm_is_current_user__c,\n\t\ttotal_open_csls_under_account__c,\n\t\tanother_open_csl__c,\n\t\taverage_monthly_orders_last_3_months__c,\n\t\tengaged_with_campaign__c,\n\t\tmain_partner_manager__c,\n\t\ttest__c,\n\t\trelevant_partner_manager_email__c,\n\t\trelevant_partner_manager__c,\n\t\tcsl_score__c,\n\t\tlead_warmth__c,\n\t\tstatus_last_updated__c,\n\t\tmql_notification_engagement_type__c,\n\t\tin_progress_date__c,\n\t\tmql_notification_reason__c,\n\t\tprimary_csm_at_time_of_csl_creation__c,\n\t\tprimary_csm_email_routing_notification__c,\n\t\tlost_reason__c,\n\t\toriginal_account_cs_segment__c,\n\t\tpartner_referral__c,\n\t\tsdr_owner__c,\n\t\tcs_lead_owner_role__c,\n\t\tsubscription_seller_csl__c,\n\t\tusage_seller_csl__c,\n\t\tpartner_contact__c,\n\t\tpartner_manager__c,\n\t\tpartner_name__c,\n\t\treferral_date__c,\n\t\treferral_type__c,\n\t\tall_relevant_products__c,\n\t\tprimary_csm_team_at_csl_creation__c,\n\t\ttemp_product_holder__c,\n\t\ttop_account__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update,\n\t\tlast_avg_3_months_orders_swell__c\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__cs_lead_c", "language": "sql", "refs": [], "sources": [["analytics__salesforce_rivery", "cs_lead__c"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce_rivery.cs_lead__c"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce_rivery.cs_lead__c\n\n), analytics___salesforce_stg__cs_lead_c AS (\n\n SELECT \n\t\tid,\n\t\townerid,\n\t\tisdeleted,\n\t\tname,\n\t\tcurrencyisocode,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tlastactivitydate,\n\t\tlastvieweddate,\n\t\tlastreferenceddate,\n\t\tam_rejection_reason__c,\n\t\taccount_name__c,\n\t\taccount__c,\n\t\tassignment_date__c,\n\t\tcsl_source__c,\n\t\tcsm_comments__c,\n\t\tcsm_first_name__c,\n\t\tcsm_rejection_reason__c,\n\t\tcsm__c,\n\t\tclosest_renewal_date__c,\n\t\tconverted_date__c,\n\t\tfunding__c,\n\t\tindustry__c,\n\t\tlast_30_days_orders__c,\n\t\tlost_date__c,\n\t\tmonthly_tech_spend__c,\n\t\tnumber_of_employees__c,\n\t\ton_hold_due_date__c,\n\t\tcontains_vms_mockup__c,\n\t\tpackage__c,\n\t\tplatform__c,\n\t\tproduct_line__c,\n\t\trelated_contact__c,\n\t\trelated_opportunity__c,\n\t\trelated_store__c,\n\t\tsend_csm_notification__c,\n\t\tstatus__c,\n\t\ttotal_acv__c,\n\t\trelated_opportunity_stage__c,\n\t\trelated_opp_closed__c,\n\t\trejected_date__c,\n\t\tupsell_from_opportunity__c,\n\t\taccount_cs_segment__c,\n\t\tcsm_office__c,\n\t\tqualify_csl__c,\n\t\treject_csl__c,\n\t\tcsl_owner_manager__c,\n\t\tcsm_manager__c,\n\t\tam_notes__c,\n\t\tsnoozed_in__c,\n\t\tsnoozed_due_date__c,\n\t\taccount_org_key__c,\n\t\tcsm_email__c,\n\t\towner_email__c,\n\t\towner_first_name__c,\n\t\trequest_csm_intro__c,\n\t\tintro_sent_at__c,\n\t\tsend_custom_email__c,\n\t\tsend_intro_email__c,\n\t\tmockup_priority__c,\n\t\tincrease_mockup_priority__c,\n\t\tswell_renewal_date__c,\n\t\tugc_renewal_date__c,\n\t\tugc_csm_manager__c,\n\t\tswell_csm_manager__c,\n\t\tvms_mockups_sent__c,\n\t\tvms_mockups_sent_date__c,\n\t\tproduct_source_location__c,\n\t\tpotential_acv__c,\n\t\tdays_to_convert__c,\n\t\tdays_to_lost__c,\n\t\tdemo_scheduled_date__c,\n\t\tdays_to_nurture__c,\n\t\tfollow_up_in_date__c,\n\t\tfollow_up_in_helper__c,\n\t\tfollow_up_in_c__c,\n\t\tnurturing_date__c,\n\t\tnurturing_reason__c,\n\t\tinitiate__c,\n\t\tcsm_is_current_user__c,\n\t\ttotal_open_csls_under_account__c,\n\t\tanother_open_csl__c,\n\t\taverage_monthly_orders_last_3_months__c,\n\t\tengaged_with_campaign__c,\n\t\tmain_partner_manager__c,\n\t\ttest__c,\n\t\trelevant_partner_manager_email__c,\n\t\trelevant_partner_manager__c,\n\t\tcsl_score__c,\n\t\tlead_warmth__c,\n\t\tstatus_last_updated__c,\n\t\tmql_notification_engagement_type__c,\n\t\tin_progress_date__c,\n\t\tmql_notification_reason__c,\n\t\tprimary_csm_at_time_of_csl_creation__c,\n\t\tprimary_csm_email_routing_notification__c,\n\t\tlost_reason__c,\n\t\toriginal_account_cs_segment__c,\n\t\tpartner_referral__c,\n\t\tsdr_owner__c,\n\t\tcs_lead_owner_role__c,\n\t\tsubscription_seller_csl__c,\n\t\tusage_seller_csl__c,\n\t\tpartner_contact__c,\n\t\tpartner_manager__c,\n\t\tpartner_name__c,\n\t\treferral_date__c,\n\t\treferral_type__c,\n\t\tall_relevant_products__c,\n\t\tprimary_csm_team_at_csl_creation__c,\n\t\ttemp_product_holder__c,\n\t\ttop_account__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update,\n\t\tlast_avg_3_months_orders_swell__c\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__cs_lead_c", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__cs_lead_c_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__cs_lead_c_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__cs_lead_c_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__cs_lead_c_full", "analytics___salesforce_stg__cs_lead_c_full"], "alias": "analytics___salesforce_stg__cs_lead_c_full", "checksum": {"name": "sha256", "checksum": "716b8faf3bd1906d1e5e3e1e7dafa3bb55a37d036d06d063d3b23aa916d7e44c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A view of cs_lead object's formula fields, based on rivery's full salesforce river", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_name__c": {"name": "account_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_first_name__c": {"name": "csm_first_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closest_renewal_date__c": {"name": "closest_renewal_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "funding__c": {"name": "funding__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry__c": {"name": "industry__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_orders__c": {"name": "last_30_days_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "monthly_tech_spend__c": {"name": "monthly_tech_spend__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_employees__c": {"name": "number_of_employees__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform__c": {"name": "platform__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_acv__c": {"name": "total_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "related_opportunity_stage__c": {"name": "related_opportunity_stage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_opp_closed__c": {"name": "related_opp_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "account_cs_segment__c": {"name": "account_cs_segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_office__c": {"name": "csm_office__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csl_owner_manager__c": {"name": "csl_owner_manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_manager__c": {"name": "csm_manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_org_key__c": {"name": "account_org_key__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_email__c": {"name": "csm_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_email__c": {"name": "owner_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_first_name__c": {"name": "owner_first_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_source_location__c": {"name": "product_source_location__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_to_convert__c": {"name": "days_to_convert__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_to_lost__c": {"name": "days_to_lost__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_to_nurture__c": {"name": "days_to_nurture__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "follow_up_in_date__c": {"name": "follow_up_in_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "all_relevant_products__c": {"name": "all_relevant_products__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team_at_csl_creation__c": {"name": "primary_csm_team_at_csl_creation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "temp_product_holder__c": {"name": "temp_product_holder__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_account__c": {"name": "top_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082654.3626542, "relation_name": "dev_dkruh1.analytics___salesforce_stg__cs_lead_c_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce_rivery', 'cs_lead__c_full') }}\n\n), analytics___salesforce_stg__cs_lead_c_full AS (\n\n SELECT \n\t\tid,\n\t\tsystemmodstamp,\n\t\taccount_name__c,\n\t\tcsm_first_name__c,\n\t\tclosest_renewal_date__c,\n\t\tfunding__c,\n\t\tindustry__c,\n\t\tlast_30_days_orders__c,\n\t\tmonthly_tech_spend__c,\n\t\tnumber_of_employees__c,\n\t\tplatform__c,\n\t\ttotal_acv__c,\n\t\trelated_opportunity_stage__c,\n\t\trelated_opp_closed__c,\n\t\taccount_cs_segment__c,\n\t\tcsm_office__c,\n\t\tcsl_owner_manager__c,\n\t\tcsm_manager__c,\n\t\taccount_org_key__c,\n\t\tcsm_email__c,\n\t\towner_email__c,\n\t\towner_first_name__c,\n\t\tproduct_source_location__c,\n\t\tdays_to_convert__c,\n\t\tdays_to_lost__c,\n\t\tdays_to_nurture__c,\n\t\tfollow_up_in_date__c,\n\t\tall_relevant_products__c,\n\t\tprimary_csm_team_at_csl_creation__c,\n\t\ttemp_product_holder__c,\n\t\ttop_account__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__cs_lead_c_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce_rivery", "cs_lead__c_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce_rivery.cs_lead__c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce_rivery.cs_lead__c_full\n\n), analytics___salesforce_stg__cs_lead_c_full AS (\n\n SELECT \n\t\tid,\n\t\tsystemmodstamp,\n\t\taccount_name__c,\n\t\tcsm_first_name__c,\n\t\tclosest_renewal_date__c,\n\t\tfunding__c,\n\t\tindustry__c,\n\t\tlast_30_days_orders__c,\n\t\tmonthly_tech_spend__c,\n\t\tnumber_of_employees__c,\n\t\tplatform__c,\n\t\ttotal_acv__c,\n\t\trelated_opportunity_stage__c,\n\t\trelated_opp_closed__c,\n\t\taccount_cs_segment__c,\n\t\tcsm_office__c,\n\t\tcsl_owner_manager__c,\n\t\tcsm_manager__c,\n\t\taccount_org_key__c,\n\t\tcsm_email__c,\n\t\towner_email__c,\n\t\towner_first_name__c,\n\t\tproduct_source_location__c,\n\t\tdays_to_convert__c,\n\t\tdays_to_lost__c,\n\t\tdays_to_nurture__c,\n\t\tfollow_up_in_date__c,\n\t\tall_relevant_products__c,\n\t\tprimary_csm_team_at_csl_creation__c,\n\t\ttemp_product_holder__c,\n\t\ttop_account__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__cs_lead_c_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__custom_field_history_tracking_c": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__custom_field_history_tracking_c", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.sql", "unique_id": "model.yoda.analytics___salesforce_stg__custom_field_history_tracking_c", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__custom_field_history_tracking_c", "analytics___salesforce_stg__custom_field_history_tracking_c"], "alias": "analytics___salesforce_stg__custom_field_history_tracking_c", "checksum": {"name": "sha256", "checksum": "b3da8099b8fd0d545a01d509882959fbec9292b05e6a3a7df2a6fdca6e11bbdc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account__c": {"name": "account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action__c": {"name": "action__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_value__c": {"name": "new_value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_value__c": {"name": "old_value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_object_id__c": {"name": "parent_object_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_name__c": {"name": "object_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "count__c": {"name": "count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "on_creation__c": {"name": "on_creation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "onboarding_project__c": {"name": "onboarding_project__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_prediction__c": {"name": "opportunity_prediction__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "record_count__c": {"name": "record_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "spend_time__c": {"name": "spend_time__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date__c": {"name": "start_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ticket__c": {"name": "ticket__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "end_date__c": {"name": "end_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_record__c": {"name": "previous_record__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_record_id__c": {"name": "parent_record_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "changed_field_name__c": {"name": "changed_field_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_services__c": {"name": "delivery_services__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "spend_time_number__c": {"name": "spend_time_number__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "error_message__c": {"name": "error_message__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "case__c": {"name": "case__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082654.4038048, "relation_name": "dev_dkruh1.analytics___salesforce_stg__custom_field_history_tracking_c", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'custom_field_history_tracking__c') }}\n\n), analytics___salesforce_stg__custom_field_history_tracking_c AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\taccount__c,\n\t\taction__c,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcurrencyisocode,\n\t\tisdeleted,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tname,\n\t\tnew_value__c,\n\t\told_value__c,\n\t\townerid,\n\t\tparent_object_id__c,\n\t\tsystemmodstamp,\n\t\tobject_name__c,\n\t\tcount__c,\n\t\ton_creation__c,\n\t\tonboarding_project__c,\n\t\topportunity_prediction__c,\n\t\trecord_count__c,\n\t\tspend_time__c,\n\t\tstart_date__c,\n\t\tticket__c,\n\t\tend_date__c,\n\t\tprevious_record__c,\n\t\tparent_record_id__c,\n\t\tchanged_field_name__c,\n\t\tdelivery_services__c,\n\t\tspend_time_number__c,\n\t\terror_message__c,\n\t\tcase__c\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__custom_field_history_tracking_c", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "custom_field_history_tracking__c"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.custom_field_history_tracking__c"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.custom_field_history_tracking__c\n\n), analytics___salesforce_stg__custom_field_history_tracking_c AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\taccount__c,\n\t\taction__c,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcurrencyisocode,\n\t\tisdeleted,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tname,\n\t\tnew_value__c,\n\t\told_value__c,\n\t\townerid,\n\t\tparent_object_id__c,\n\t\tsystemmodstamp,\n\t\tobject_name__c,\n\t\tcount__c,\n\t\ton_creation__c,\n\t\tonboarding_project__c,\n\t\topportunity_prediction__c,\n\t\trecord_count__c,\n\t\tspend_time__c,\n\t\tstart_date__c,\n\t\tticket__c,\n\t\tend_date__c,\n\t\tprevious_record__c,\n\t\tparent_record_id__c,\n\t\tchanged_field_name__c,\n\t\tdelivery_services__c,\n\t\tspend_time_number__c,\n\t\terror_message__c,\n\t\tcase__c\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__custom_field_history_tracking_c", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__datedconversionrate": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__datedconversionrate", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.sql", "unique_id": "model.yoda.analytics___salesforce_stg__datedconversionrate", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__datedconversionrate", "analytics___salesforce_stg__datedconversionrate"], "alias": "analytics___salesforce_stg__datedconversionrate", "checksum": {"name": "sha256", "checksum": "8c51b419bbf15d1478740788d6fbf3adf9d6f80e8b1f08d1771a321a365f501a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "conversionrate": {"name": "conversionrate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isocode": {"name": "isocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nextstartdate": {"name": "nextstartdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "startdate": {"name": "startdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082654.4292672, "relation_name": "dev_dkruh1.analytics___salesforce_stg__datedconversionrate", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'datedconversionrate') }}\n\n), salesforce_stg__datedconversionrate AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\tconversionrate,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tid,\n\t\tisocode,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tnextstartdate,\n\t\tstartdate,\n\t\tsystemmodstamp\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__datedconversionrate", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "datedconversionrate"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.datedconversionrate"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.datedconversionrate\n\n), salesforce_stg__datedconversionrate AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\tconversionrate,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tid,\n\t\tisocode,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tnextstartdate,\n\t\tstartdate,\n\t\tsystemmodstamp\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__datedconversionrate", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__deal_summary_new_c": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__deal_summary_new_c", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.sql", "unique_id": "model.yoda.analytics___salesforce_stg__deal_summary_new_c", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__deal_summary_new_c", "analytics___salesforce_stg__deal_summary_new_c"], "alias": "analytics___salesforce_stg__deal_summary_new_c", "checksum": {"name": "sha256", "checksum": "535aee370fa6cc260d0b0a6b3267b95a6378bc8aa0c3aa60baf917031f9e91b7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastactivitydate": {"name": "lastactivitydate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opportunity__c": {"name": "opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_acv_original_currency__c": {"name": "current_acv_original_currency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end_date__c": {"name": "end_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oli_product_code__c": {"name": "oli_product_code__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_product__c": {"name": "opportunity_product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "override_current_acv_usd__c": {"name": "override_current_acv_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "override_previous_acv_usd__c": {"name": "override_previous_acv_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "package_product__c": {"name": "package_product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "previous_acv_override__c": {"name": "previous_acv_override__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_original_currency__c": {"name": "previous_acv_original_currency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_family__c": {"name": "product_family__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product__c": {"name": "product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_from_opportunity_line__c": {"name": "renewal_from_opportunity_line__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date__c": {"name": "start_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status__c": {"name": "status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "copy_of_current_acv_for_retention__c": {"name": "copy_of_current_acv_for_retention__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "copy_of_previous_acv_usd_calculated__c": {"name": "copy_of_previous_acv_usd_calculated__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "deletion_date__c": {"name": "deletion_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line_close_date__c": {"name": "product_line_close_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_at_the_time_of_deletion__c": {"name": "owner_at_the_time_of_deletion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_role_at_the_time_of_deletion__c": {"name": "owner_role_at_the_time_of_deletion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "p_line_owner_role__c": {"name": "p_line_owner_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_acv_controlling_for_conversion__c": {"name": "current_acv_controlling_for_conversion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_for_retention_original__c": {"name": "current_acv_for_retention_original__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "custom_earr__c": {"name": "custom_earr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "earr_usd__c": {"name": "earr_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "latest_ds__c": {"name": "latest_ds__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pipeline_usd__c": {"name": "pipeline_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082654.480675, "relation_name": "dev_dkruh1.analytics___salesforce_stg__deal_summary_new_c", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce_rivery', 'deal_summary_new__c') }}\n\n), analytics___salesforce_stg__deal_summary_new__c AS (\n\n SELECT \n\t\tid,\n\t\tisdeleted,\n\t\tname,\n\t\tcurrencyisocode,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tlastactivitydate,\n\t\tlastvieweddate,\n\t\tlastreferenceddate,\n\t\topportunity__c,\n\t\tcurrent_acv_original_currency__c,\n\t\tend_date__c,\n\t\toli_product_code__c,\n\t\topportunity_product__c,\n\t\toverride_current_acv_usd__c,\n\t\toverride_previous_acv_usd__c,\n\t\tpackage_product__c,\n\t\tprevious_acv_override__c,\n\t\tprevious_acv_original_currency__c,\n\t\tproduct_family__c,\n\t\tproduct__c,\n\t\trenewal_from_opportunity_line__c,\n\t\tstart_date__c,\n\t\tstatus__c,\n\t\tcopy_of_current_acv_for_retention__c,\n\t\tcopy_of_previous_acv_usd_calculated__c,\n\t\tdeletion_date__c,\n\t\tproduct_line_close_date__c,\n\t\towner_at_the_time_of_deletion__c,\n\t\towner_role_at_the_time_of_deletion__c,\n\t\tp_line_owner_role__c,\n\t\tcurrent_acv_controlling_for_conversion__c,\n\t\tcurrent_acv_for_retention_original__c,\n\t\tcustom_earr__c,\n\t\tearr_usd__c,\n\t\tlatest_ds__c,\n\t\tpipeline_usd__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__deal_summary_new__c", "language": "sql", "refs": [], "sources": [["analytics__salesforce_rivery", "deal_summary_new__c"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce_rivery.deal_summary_new__c"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce_rivery.deal_summary_new__c\n\n), analytics___salesforce_stg__deal_summary_new__c AS (\n\n SELECT \n\t\tid,\n\t\tisdeleted,\n\t\tname,\n\t\tcurrencyisocode,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tlastactivitydate,\n\t\tlastvieweddate,\n\t\tlastreferenceddate,\n\t\topportunity__c,\n\t\tcurrent_acv_original_currency__c,\n\t\tend_date__c,\n\t\toli_product_code__c,\n\t\topportunity_product__c,\n\t\toverride_current_acv_usd__c,\n\t\toverride_previous_acv_usd__c,\n\t\tpackage_product__c,\n\t\tprevious_acv_override__c,\n\t\tprevious_acv_original_currency__c,\n\t\tproduct_family__c,\n\t\tproduct__c,\n\t\trenewal_from_opportunity_line__c,\n\t\tstart_date__c,\n\t\tstatus__c,\n\t\tcopy_of_current_acv_for_retention__c,\n\t\tcopy_of_previous_acv_usd_calculated__c,\n\t\tdeletion_date__c,\n\t\tproduct_line_close_date__c,\n\t\towner_at_the_time_of_deletion__c,\n\t\towner_role_at_the_time_of_deletion__c,\n\t\tp_line_owner_role__c,\n\t\tcurrent_acv_controlling_for_conversion__c,\n\t\tcurrent_acv_for_retention_original__c,\n\t\tcustom_earr__c,\n\t\tearr_usd__c,\n\t\tlatest_ds__c,\n\t\tpipeline_usd__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__deal_summary_new__c", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__deal_summary_new_c_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__deal_summary_new_c_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__deal_summary_new_c_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__deal_summary_new_c_full", "analytics___salesforce_stg__deal_summary_new_c_full"], "alias": "analytics___salesforce_stg__deal_summary_new_c_full", "checksum": {"name": "sha256", "checksum": "0beb5a356eac1fc9c2a815c6e1b86214a37cbb3dbc79d6b29f5b043caacef385"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opportunity__c": {"name": "opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_acv_original_currency__c": {"name": "current_acv_original_currency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opportunity_product__c": {"name": "opportunity_product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_product__c": {"name": "package_product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "previous_acv_original_currency__c": {"name": "previous_acv_original_currency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_family__c": {"name": "product_family__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product__c": {"name": "product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_from_opportunity_line__c": {"name": "renewal_from_opportunity_line__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status__c": {"name": "status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_acv_usd_calculated__c": {"name": "current_acv_usd_calculated__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_usd__c": {"name": "current_acv_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_for_retention__c": {"name": "current_acv_for_retention__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv__c": {"name": "current_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "deal_type__c": {"name": "deal_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_delta_acv__c": {"name": "line_delta_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_delta_acv_for_retention__c": {"name": "line_delta_acv_for_retention__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_from_opportunity_product__c": {"name": "previous_acv_from_opportunity_product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_usd_calculated__c": {"name": "previous_acv_usd_calculated__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_usd__c": {"name": "previous_acv_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv__c": {"name": "previous_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_controlling_for_conversion__c": {"name": "current_acv_controlling_for_conversion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_for_retention_original__c": {"name": "current_acv_for_retention_original__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "custom_earr__c": {"name": "custom_earr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "earr_usd__c": {"name": "earr_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "latest_ds__c": {"name": "latest_ds__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pipeline_usd__c": {"name": "pipeline_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082654.5199957, "relation_name": "dev_dkruh1.analytics___salesforce_stg__deal_summary_new_c_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce_rivery', 'deal_summary_new__c_full') }}\n\n), analytics___salesforce_stg__deal_summary_new_c_full AS (\n\n SELECT \n\t\tid,\n\t\tisdeleted,\n\t\tcurrencyisocode,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\topportunity__c,\n\t\tcurrent_acv_original_currency__c,\n\t\topportunity_product__c,\n\t\tpackage_product__c,\n\t\tprevious_acv_original_currency__c,\n\t\tproduct_family__c,\n\t\tproduct__c,\n\t\trenewal_from_opportunity_line__c,\n\t\tstatus__c,\n\t\tcurrent_acv_usd_calculated__c,\n\t\tcurrent_acv_usd__c,\n\t\tcurrent_acv_for_retention__c,\n\t\tcurrent_acv__c,\n\t\tdeal_type__c,\n\t\tline_delta_acv__c,\n\t\tline_delta_acv_for_retention__c,\n\t\tprevious_acv_from_opportunity_product__c,\n\t\tprevious_acv_usd_calculated__c,\n\t\tprevious_acv_usd__c,\n\t\tprevious_acv__c,\n\t\tcurrent_acv_controlling_for_conversion__c,\n\t\tcurrent_acv_for_retention_original__c,\n\t\tcustom_earr__c,\n\t\tearr_usd__c,\n\t\tlatest_ds__c,\n\t\tpipeline_usd__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__deal_summary_new_c_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce_rivery", "deal_summary_new__c_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce_rivery.deal_summary_new__c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce_rivery.deal_summary_new__c_full\n\n), analytics___salesforce_stg__deal_summary_new_c_full AS (\n\n SELECT \n\t\tid,\n\t\tisdeleted,\n\t\tcurrencyisocode,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\topportunity__c,\n\t\tcurrent_acv_original_currency__c,\n\t\topportunity_product__c,\n\t\tpackage_product__c,\n\t\tprevious_acv_original_currency__c,\n\t\tproduct_family__c,\n\t\tproduct__c,\n\t\trenewal_from_opportunity_line__c,\n\t\tstatus__c,\n\t\tcurrent_acv_usd_calculated__c,\n\t\tcurrent_acv_usd__c,\n\t\tcurrent_acv_for_retention__c,\n\t\tcurrent_acv__c,\n\t\tdeal_type__c,\n\t\tline_delta_acv__c,\n\t\tline_delta_acv_for_retention__c,\n\t\tprevious_acv_from_opportunity_product__c,\n\t\tprevious_acv_usd_calculated__c,\n\t\tprevious_acv_usd__c,\n\t\tprevious_acv__c,\n\t\tcurrent_acv_controlling_for_conversion__c,\n\t\tcurrent_acv_for_retention_original__c,\n\t\tcustom_earr__c,\n\t\tearr_usd__c,\n\t\tlatest_ds__c,\n\t\tpipeline_usd__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__deal_summary_new_c_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.sql", "unique_id": "model.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__dim_sf_campaign_member_mapping", "analytics___salesforce_stg__dim_sf_campaign_member_mapping"], "alias": "analytics___salesforce_stg__dim_sf_campaign_member_mapping", "checksum": {"name": "sha256", "checksum": "91bfd67aa70c3b59fe8129a3f5a2878c37c8eff7ac29279c0b958ca9f2006e46"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Temporary pointer to the modeled table dim_sf_campaign_member_mapping | Granularity & Primary Key: campaign_member_mapping_id", "columns": {"campaign_member_mapping_id": {"name": "campaign_member_mapping_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_campaign_id": {"name": "sf_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "who_id": {"name": "who_id", "description": "salesforce who object (lead_id/contact_id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "who_type": {"name": "who_type", "description": "salesforce who object type (Lead/Contact)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_member_status": {"name": "campaign_member_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_member_mapping_created_at": {"name": "campaign_member_mapping_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "campaign_member_mapping_updated_at": {"name": "campaign_member_mapping_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "campaign_member_mapping_created_by_sf_user_gk": {"name": "campaign_member_mapping_created_by_sf_user_gk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "campaign_member_mapping_created_by_sf_user_id": {"name": "campaign_member_mapping_created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_member_mapping_updated_by_sf_user_gk": {"name": "campaign_member_mapping_updated_by_sf_user_gk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "campaign_member_mapping_updated_by_sf_user_id": {"name": "campaign_member_mapping_updated_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_responded_by_member_date": {"name": "first_responded_by_member_date", "description": "date when the campaign member first responded", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_responded_by_member": {"name": "is_responded_by_member", "description": "indicates if the campaign member has responded", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "campagin_member_added_at": {"name": "campagin_member_added_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082654.5444007, "relation_name": "dev_dkruh1.analytics___salesforce_stg__dim_sf_campaign_member_mapping", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__default', 'dim_sf_campaign_member_mapping') }}\n\n), analytics___salesforce_stg__dim_sf_campaign_member_mapping AS (\n\n SELECT \n\t\tcampaign_member_mapping_id,\n\t\tsf_campaign_id,\n\t\twho_id,\n\t\twho_type,\n\t\tcampaign_member_status,\n\t\tcampaign_member_mapping_created_at,\n\t\tcampaign_member_mapping_updated_at,\n\t\tcampaign_member_mapping_created_by_sf_user_gk,\n\t\tcampaign_member_mapping_created_by_sf_user_id,\n\t\tcampaign_member_mapping_updated_by_sf_user_gk,\n\t\tcampaign_member_mapping_updated_by_sf_user_id,\n\t\tfirst_responded_by_member_date,\n\t\tis_responded_by_member,\n\t\tis_deleted,\n\t\tcampagin_member_added_at,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__dim_sf_campaign_member_mapping", "language": "sql", "refs": [], "sources": [["analytics__default", "dim_sf_campaign_member_mapping"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__default.dim_sf_campaign_member_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM default.dim_sf_campaign_member_mapping\n\n), analytics___salesforce_stg__dim_sf_campaign_member_mapping AS (\n\n SELECT \n\t\tcampaign_member_mapping_id,\n\t\tsf_campaign_id,\n\t\twho_id,\n\t\twho_type,\n\t\tcampaign_member_status,\n\t\tcampaign_member_mapping_created_at,\n\t\tcampaign_member_mapping_updated_at,\n\t\tcampaign_member_mapping_created_by_sf_user_gk,\n\t\tcampaign_member_mapping_created_by_sf_user_id,\n\t\tcampaign_member_mapping_updated_by_sf_user_gk,\n\t\tcampaign_member_mapping_updated_by_sf_user_id,\n\t\tfirst_responded_by_member_date,\n\t\tis_responded_by_member,\n\t\tis_deleted,\n\t\tcampagin_member_added_at,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__dim_sf_campaign_member_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__dim_sf_users_scd": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__dim_sf_users_scd", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.sql", "unique_id": "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__dim_sf_users_scd", "analytics___salesforce_stg__dim_sf_users_scd"], "alias": "analytics___salesforce_stg__dim_sf_users_scd", "checksum": {"name": "sha256", "checksum": "b2783bcd738a659e2a3875102fb0fe33969a09a40eeffd699a9e13fc6b34ccfc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Temporary pointer to the modeled table dim_sf_suers_scd. | Granularity & Primary Key: sf_user_id , from_time", "columns": {"sf_user_gk": {"name": "sf_user_gk", "description": "record ID counter for a user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "sf_user_id": {"name": "sf_user_id", "description": "unique identifier of salesforce user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_name": {"name": "sf_user_name", "description": "salesforce user name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_last_name": {"name": "sf_user_last_name", "description": "user last name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_first_name": {"name": "sf_user_first_name", "description": "user first name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_full_name": {"name": "sf_user_full_name", "description": "user full name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_title": {"name": "sf_user_title", "description": "user title: Manager, Managing Partner, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_email": {"name": "sf_user_email", "description": "user's email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_role": {"name": "sf_user_role", "description": "user role", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_role_id": {"name": "sf_user_role_id", "description": "user role id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sales_rep_role": {"name": "is_sales_rep_role", "description": "indicator for sales role: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_partner_role": {"name": "is_partner_role", "description": "indicator for partner role: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sf_user_alias": {"name": "sf_user_alias", "description": "user alias name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_sf_user_id": {"name": "manager_sf_user_id", "description": "user's manager unique identifier of salesforce user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_full_name": {"name": "manager_full_name", "description": "user's manager full name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "second_level_manager_sf_user_id": {"name": "second_level_manager_sf_user_id", "description": "user's second level manager unique identifier of salesforce user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "second_level_manager_full_name": {"name": "second_level_manager_full_name", "description": "user's second level manager full name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_is_active": {"name": "sf_user_is_active", "description": "indicator for active user: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sf_user_last_login_date": {"name": "sf_user_last_login_date", "description": "last login date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sf_user_created_at": {"name": "sf_user_created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sf_user_updated_at": {"name": "sf_user_updated_at", "description": "user modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sf_user_created_by_sf_user_id": {"name": "sf_user_created_by_sf_user_id", "description": "the created user unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_updated_by_sf_user_id": {"name": "sf_user_updated_by_sf_user_id", "description": "salesforce user unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_time": {"name": "from_time", "description": "user version range start timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "user version range end timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "scd_cur_ind": {"name": "scd_cur_ind", "description": "indicator for user current row: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sf_user_location": {"name": "sf_user_location", "description": "user location: America/New_York, Asia/Jerusalem, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_super_csm": {"name": "is_super_csm", "description": "indicator for super csm: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "csm_team": {"name": "csm_team", "description": "csm team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_exclude_from_tracking": {"name": "is_exclude_from_tracking", "description": "indicator for exclude from tracking: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_marketing_activity_user": {"name": "is_marketing_activity_user", "description": "indicator for marketing activity: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_integration": {"name": "is_integration", "description": "indicator for integration: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "queue_type": {"name": "queue_type", "description": "queue type: Nurturing, Re-Engaged, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_queue": {"name": "is_queue", "description": "indicator for queue: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_created_at": {"name": "dwh_created_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082654.5835314, "relation_name": "dev_dkruh1.analytics___salesforce_stg__dim_sf_users_scd", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__default', 'dim_sf_users_scd') }}\n\n), salesforce_stg__dim_sf_users_scd AS (\n\n SELECT \n\t\tsf_user_gk,\n\t\tsf_user_id,\n\t\tsf_user_name,\n\t\tsf_user_last_name,\n\t\tsf_user_first_name,\n\t\tsf_user_full_name,\n\t\tsf_user_title,\n\t\tsf_user_email,\n\t\tsf_user_role,\n\t\tsf_user_role_id,\n\t\tis_sales_rep_role,\n\t\tis_partner_role,\n\t\tsf_user_alias,\n\t\tmanager_sf_user_id,\n\t\tmanager_full_name,\n\t\tsecond_level_manager_sf_user_id,\n\t\tsecond_level_manager_full_name,\n\t\tsf_user_is_active,\n\t\tsf_user_last_login_date,\n\t\tsf_user_created_at,\n\t\tsf_user_updated_at,\n\t\tsf_user_created_by_sf_user_id,\n\t\tsf_user_updated_by_sf_user_id,\n\t\tfrom_time,\n\t\tto_time,\n\t\tscd_cur_ind,\n\t\tsf_user_location,\n\t\tis_super_csm,\n\t\tcsm_team,\n\t\tis_exclude_from_tracking,\n\t\tis_marketing_activity_user,\n\t\tis_integration,\n\t\tqueue_type,\n\t\tis_queue,\n\t\tdwh_created_at\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__dim_sf_users_scd", "language": "sql", "refs": [], "sources": [["analytics__default", "dim_sf_users_scd"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__default.dim_sf_users_scd"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM default.dim_sf_users_scd\n\n), salesforce_stg__dim_sf_users_scd AS (\n\n SELECT \n\t\tsf_user_gk,\n\t\tsf_user_id,\n\t\tsf_user_name,\n\t\tsf_user_last_name,\n\t\tsf_user_first_name,\n\t\tsf_user_full_name,\n\t\tsf_user_title,\n\t\tsf_user_email,\n\t\tsf_user_role,\n\t\tsf_user_role_id,\n\t\tis_sales_rep_role,\n\t\tis_partner_role,\n\t\tsf_user_alias,\n\t\tmanager_sf_user_id,\n\t\tmanager_full_name,\n\t\tsecond_level_manager_sf_user_id,\n\t\tsecond_level_manager_full_name,\n\t\tsf_user_is_active,\n\t\tsf_user_last_login_date,\n\t\tsf_user_created_at,\n\t\tsf_user_updated_at,\n\t\tsf_user_created_by_sf_user_id,\n\t\tsf_user_updated_by_sf_user_id,\n\t\tfrom_time,\n\t\tto_time,\n\t\tscd_cur_ind,\n\t\tsf_user_location,\n\t\tis_super_csm,\n\t\tcsm_team,\n\t\tis_exclude_from_tracking,\n\t\tis_marketing_activity_user,\n\t\tis_integration,\n\t\tqueue_type,\n\t\tis_queue,\n\t\tdwh_created_at\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__dim_sf_users_scd", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__event", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.sql", "unique_id": "model.yoda.analytics___salesforce_stg__event", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__event", "analytics___salesforce_stg__event"], "alias": "analytics___salesforce_stg__event", "checksum": {"name": "sha256", "checksum": "0e2f6c712ff5f69eb863e7f639de11ae46c0ae95b191a61e38b3172d1a3c69cd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "whoid": {"name": "whoid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "whatid": {"name": "whatid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "whocount": {"name": "whocount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "whatcount": {"name": "whatcount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "subject": {"name": "subject", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "location": {"name": "location", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isalldayevent": {"name": "isalldayevent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "activitydatetime": {"name": "activitydatetime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "activitydate": {"name": "activitydate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "durationinminutes": {"name": "durationinminutes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "startdatetime": {"name": "startdatetime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "enddatetime": {"name": "enddatetime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "enddate": {"name": "enddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isprivate": {"name": "isprivate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "showas": {"name": "showas", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ischild": {"name": "ischild", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isgroupevent": {"name": "isgroupevent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "groupeventtype": {"name": "groupeventtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "isarchived": {"name": "isarchived", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvisibleinselfservice": {"name": "isvisibleinselfservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recurrenceactivityid": {"name": "recurrenceactivityid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isrecurrence": {"name": "isrecurrence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recurrencestartdatetime": {"name": "recurrencestartdatetime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "recurrenceenddateonly": {"name": "recurrenceenddateonly", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencetimezonesidkey": {"name": "recurrencetimezonesidkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencetype": {"name": "recurrencetype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrenceinterval": {"name": "recurrenceinterval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrencedayofweekmask": {"name": "recurrencedayofweekmask", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrencedayofmonth": {"name": "recurrencedayofmonth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrenceinstance": {"name": "recurrenceinstance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencemonthofyear": {"name": "recurrencemonthofyear", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reminderdatetime": {"name": "reminderdatetime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "isreminderset": {"name": "isreminderset", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "eventsubtype": {"name": "eventsubtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isrecurrence2exclusion": {"name": "isrecurrence2exclusion", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recurrence2patterntext": {"name": "recurrence2patterntext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrence2patternversion": {"name": "recurrence2patternversion", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isrecurrence2": {"name": "isrecurrence2", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isrecurrence2exception": {"name": "isrecurrence2exception", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recurrence2patternstartdate": {"name": "recurrence2patternstartdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "recurrence2patterntimezone": {"name": "recurrence2patterntimezone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__call_disposition__c": {"name": "salesloft1__call_disposition__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "del_yeswaretemplatenames__c": {"name": "del_yeswaretemplatenames__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswarecampaignid__c": {"name": "yeswarecampaignid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yeswarecampaignname__c": {"name": "yeswarecampaignname__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswarecampaigntotaltouches__c": {"name": "yeswarecampaigntotaltouches__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yeswarecampaigntouchnumber__c": {"name": "yeswarecampaigntouchnumber__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yeswarecampaigntouchtype__c": {"name": "yeswarecampaigntouchtype__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswareiscampaign__c": {"name": "yeswareiscampaign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "salesloft1__call_duration_in_minutes__c": {"name": "salesloft1__call_duration_in_minutes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__call_sentiment__c": {"name": "salesloft1__call_sentiment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phase__c": {"name": "phase__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_cadence_name__c": {"name": "salesloft1__salesloft_cadence_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_clicked_count__c": {"name": "salesloft1__salesloft_clicked_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__salesloft_email_template_title__c": {"name": "salesloft1__salesloft_email_template_title__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloftreplycount__c": {"name": "salesloftreplycount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft_cadence_id__c": {"name": "salesloft_cadence_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_cadence_name__c": {"name": "salesloft_cadence_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_clicked_count__c": {"name": "salesloft_clicked_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft_email_template_id__c": {"name": "salesloft_email_template_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_email_template_title__c": {"name": "salesloft_email_template_title__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_external_identifier__c": {"name": "salesloft_external_identifier__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_day_new__c": {"name": "salesloft_step_day_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft_step_id__c": {"name": "salesloft_step_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_name__c": {"name": "salesloft_step_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_type__c": {"name": "salesloft_step_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_viewed_count__c": {"name": "salesloft_viewed_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "unique_click_count__c": {"name": "unique_click_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "unique_reply_count__c": {"name": "unique_reply_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "unique_view_count__c": {"name": "unique_view_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__salesloft_replies_count__c": {"name": "salesloft1__salesloft_replies_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_sdr_email__c": {"name": "last_sdr_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ae_email__c": {"name": "ae_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_step_day__c": {"name": "salesloft1__salesloft_step_day__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "canceled_cp__c": {"name": "canceled_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "no_show_cp__c": {"name": "no_show_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "rescheduled_cp__c": {"name": "rescheduled_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "response_schedule_cp__c": {"name": "response_schedule_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswareismailmerge__c": {"name": "yeswareismailmerge__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yeswaremailmergename__c": {"name": "yeswaremailmergename__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswaretemplateids__c": {"name": "yeswaretemplateids__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_activitytype__c": {"name": "yesware_activitytype__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "medium__c": {"name": "medium__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswaretemplatenames__c": {"name": "yeswaretemplatenames__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_activity_time__c": {"name": "yesware_activity_time__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "presentation_link__c": {"name": "presentation_link__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_call_duration_minutes__c": {"name": "yesware_call_duration_minutes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yesware_connectcall__c": {"name": "yesware_connectcall__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_day__c": {"name": "yesware_day__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "call_status__c": {"name": "call_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_status__c": {"name": "demo_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_modified_date_for_report__c": {"name": "last_modified_date_for_report__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "salesloft1__salesloft_type__c": {"name": "salesloft1__salesloft_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_event_stage__c": {"name": "agency_event_stage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_view_count__c": {"name": "salesloft1__salesloft_view_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_task_from_external_system__c": {"name": "is_task_from_external_system__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "activity_id_18_digit__c": {"name": "activity_id_18_digit__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "task_completion_date__c": {"name": "task_completion_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "demo_approval_status__c": {"name": "demo_approval_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gong__gong_selected_process__c": {"name": "gong__gong_selected_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_emailtype__c": {"name": "yesware_emailtype__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_meeting__c": {"name": "yesware_meeting__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_topics_discussed__c": {"name": "sms_topics_discussed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_connected_count__c": {"name": "salesloft1__salesloft_connected_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_by_role__c": {"name": "created_by_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr__c": {"name": "sdr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_unique_click_count__c": {"name": "salesloft1__salesloft_unique_click_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__salesloft_unique_reply_count__c": {"name": "salesloft1__salesloft_unique_reply_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "selected_product_for_lead_conversion__c": {"name": "selected_product_for_lead_conversion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_cancellation_reason__c": {"name": "demo_cancellation_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_unique_view_count__c": {"name": "salesloft1__salesloft_unique_view_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yesware_open__c": {"name": "yesware_open__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "workspacename_cp__c": {"name": "workspacename_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "designated_assignee_cp__c": {"name": "designated_assignee_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_goal__c": {"name": "main_goal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_demo_feedback__c": {"name": "sales_demo_feedback__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "labsactionplans__taskaptask__c": {"name": "labsactionplans__taskaptask__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_qbr__c": {"name": "last_qbr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lead_lookup__c": {"name": "lead_lookup__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_flow__c": {"name": "created_by_flow__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "send_cp_slack_communication__c": {"name": "send_cp_slack_communication__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_reply__c": {"name": "yesware_reply__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yesware_sent__c": {"name": "yesware_sent__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yesware_subject__c": {"name": "yesware_subject__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_template__c": {"name": "yesware_template__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_totalcall__c": {"name": "yesware_totalcall__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "meeting_type_cp__c": {"name": "meeting_type_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "queue_name_cp__c": {"name": "queue_name_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "assigned_to_role__c": {"name": "assigned_to_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "router_name_cp__c": {"name": "router_name_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_shown__c": {"name": "products_shown__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "on_opp__c": {"name": "on_opp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "call_sentiment__c": {"name": "call_sentiment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_me__c": {"name": "created_by_me__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082654.7052703, "relation_name": "dev_dkruh1.analytics___salesforce_stg__event", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce_rivery', 'event') }}\n\n), analytics___salesforce_stg__event AS (\n\n SELECT \n\t\tid,\n\t\twhoid,\n\t\twhatid,\n\t\twhocount,\n\t\twhatcount,\n\t\tsubject,\n\t\tlocation,\n\t\tisalldayevent,\n\t\tactivitydatetime,\n\t\tactivitydate,\n\t\tdurationinminutes,\n\t\tstartdatetime,\n\t\tenddatetime,\n\t\tenddate,\n\t\tdescription,\n\t\taccountid,\n\t\townerid,\n\t\tcurrencyisocode,\n\t\ttype,\n\t\tisprivate,\n\t\tshowas,\n\t\tisdeleted,\n\t\tischild,\n\t\tisgroupevent,\n\t\tgroupeventtype,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tisarchived,\n\t\tisvisibleinselfservice,\n\t\trecurrenceactivityid,\n\t\tisrecurrence,\n\t\trecurrencestartdatetime,\n\t\trecurrenceenddateonly,\n\t\trecurrencetimezonesidkey,\n\t\trecurrencetype,\n\t\trecurrenceinterval,\n\t\trecurrencedayofweekmask,\n\t\trecurrencedayofmonth,\n\t\trecurrenceinstance,\n\t\trecurrencemonthofyear,\n\t\treminderdatetime,\n\t\tisreminderset,\n\t\teventsubtype,\n\t\tisrecurrence2exclusion,\n\t\trecurrence2patterntext,\n\t\trecurrence2patternversion,\n\t\tisrecurrence2,\n\t\tisrecurrence2exception,\n\t\trecurrence2patternstartdate,\n\t\trecurrence2patterntimezone,\n\t\tsalesloft1__call_disposition__c,\n\t\tdel_yeswaretemplatenames__c,\n\t\tyeswarecampaignid__c,\n\t\tyeswarecampaignname__c,\n\t\tyeswarecampaigntotaltouches__c,\n\t\tyeswarecampaigntouchnumber__c,\n\t\tyeswarecampaigntouchtype__c,\n\t\tyeswareiscampaign__c,\n\t\tsalesloft1__call_duration_in_minutes__c,\n\t\tsalesloft1__call_sentiment__c,\n\t\tphase__c,\n\t\tsalesloft1__salesloft_cadence_name__c,\n\t\tsalesloft1__salesloft_clicked_count__c,\n\t\tsalesloft1__salesloft_email_template_title__c,\n\t\tsalesloftreplycount__c,\n\t\tsalesloft_cadence_id__c,\n\t\tsalesloft_cadence_name__c,\n\t\tsalesloft_clicked_count__c,\n\t\tsalesloft_email_template_id__c,\n\t\tsalesloft_email_template_title__c,\n\t\tsalesloft_external_identifier__c,\n\t\tsalesloft_step_day_new__c,\n\t\tsalesloft_step_id__c,\n\t\tsalesloft_step_name__c,\n\t\tsalesloft_step_type__c,\n\t\tsalesloft_viewed_count__c,\n\t\tunique_click_count__c,\n\t\tunique_reply_count__c,\n\t\tunique_view_count__c,\n\t\tsalesloft1__salesloft_replies_count__c,\n\t\tlast_sdr_email__c,\n\t\tae_email__c,\n\t\tsalesloft1__salesloft_step_day__c,\n\t\tcanceled_cp__c,\n\t\tno_show_cp__c,\n\t\trescheduled_cp__c,\n\t\tresponse_schedule_cp__c,\n\t\tyeswareismailmerge__c,\n\t\tyeswaremailmergename__c,\n\t\tyeswaretemplateids__c,\n\t\tyesware_activitytype__c,\n\t\tmedium__c,\n\t\tyeswaretemplatenames__c,\n\t\tyesware_activity_time__c,\n\t\tpresentation_link__c,\n\t\tyesware_call_duration_minutes__c,\n\t\tyesware_connectcall__c,\n\t\tyesware_day__c,\n\t\tcall_status__c,\n\t\tdemo_status__c,\n\t\tlast_modified_date_for_report__c,\n\t\tsalesloft1__salesloft_type__c,\n\t\tagency_event_stage__c,\n\t\tsalesloft1__salesloft_view_count__c,\n\t\tis_task_from_external_system__c,\n\t\tactivity_id_18_digit__c,\n\t\ttask_completion_date__c,\n\t\tdemo_approval_status__c,\n\t\tgong__gong_selected_process__c,\n\t\tyesware_emailtype__c,\n\t\tyesware_meeting__c,\n\t\tsms_topics_discussed__c,\n\t\tsalesloft1__salesloft_connected_count__c,\n\t\tcreated_by_role__c,\n\t\tsdr__c,\n\t\tsalesloft1__salesloft_unique_click_count__c,\n\t\tsalesloft1__salesloft_unique_reply_count__c,\n\t\tselected_product_for_lead_conversion__c,\n\t\tdemo_cancellation_reason__c,\n\t\tsalesloft1__salesloft_unique_view_count__c,\n\t\tyesware_open__c,\n\t\tworkspacename_cp__c,\n\t\tdesignated_assignee_cp__c,\n\t\tmain_goal__c,\n\t\tsales_demo_feedback__c,\n\t\tlabsactionplans__taskaptask__c,\n\t\tlast_qbr__c,\n\t\tlead_lookup__c,\n\t\tcreated_by_flow__c,\n\t\tsend_cp_slack_communication__c,\n\t\tyesware_reply__c,\n\t\tyesware_sent__c,\n\t\tyesware_subject__c,\n\t\tyesware_template__c,\n\t\tyesware_totalcall__c,\n\t\tmeeting_type_cp__c,\n\t\tqueue_name_cp__c,\n\t\tassigned_to_role__c,\n\t\trouter_name_cp__c,\n\t\tproducts_shown__c,\n\t\ton_opp__c,\n\t\tcall_sentiment__c,\n\t\tcreated_by_me__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__event", "language": "sql", "refs": [], "sources": [["analytics__salesforce_rivery", "event"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce_rivery.event"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce_rivery.event\n\n), analytics___salesforce_stg__event AS (\n\n SELECT \n\t\tid,\n\t\twhoid,\n\t\twhatid,\n\t\twhocount,\n\t\twhatcount,\n\t\tsubject,\n\t\tlocation,\n\t\tisalldayevent,\n\t\tactivitydatetime,\n\t\tactivitydate,\n\t\tdurationinminutes,\n\t\tstartdatetime,\n\t\tenddatetime,\n\t\tenddate,\n\t\tdescription,\n\t\taccountid,\n\t\townerid,\n\t\tcurrencyisocode,\n\t\ttype,\n\t\tisprivate,\n\t\tshowas,\n\t\tisdeleted,\n\t\tischild,\n\t\tisgroupevent,\n\t\tgroupeventtype,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tisarchived,\n\t\tisvisibleinselfservice,\n\t\trecurrenceactivityid,\n\t\tisrecurrence,\n\t\trecurrencestartdatetime,\n\t\trecurrenceenddateonly,\n\t\trecurrencetimezonesidkey,\n\t\trecurrencetype,\n\t\trecurrenceinterval,\n\t\trecurrencedayofweekmask,\n\t\trecurrencedayofmonth,\n\t\trecurrenceinstance,\n\t\trecurrencemonthofyear,\n\t\treminderdatetime,\n\t\tisreminderset,\n\t\teventsubtype,\n\t\tisrecurrence2exclusion,\n\t\trecurrence2patterntext,\n\t\trecurrence2patternversion,\n\t\tisrecurrence2,\n\t\tisrecurrence2exception,\n\t\trecurrence2patternstartdate,\n\t\trecurrence2patterntimezone,\n\t\tsalesloft1__call_disposition__c,\n\t\tdel_yeswaretemplatenames__c,\n\t\tyeswarecampaignid__c,\n\t\tyeswarecampaignname__c,\n\t\tyeswarecampaigntotaltouches__c,\n\t\tyeswarecampaigntouchnumber__c,\n\t\tyeswarecampaigntouchtype__c,\n\t\tyeswareiscampaign__c,\n\t\tsalesloft1__call_duration_in_minutes__c,\n\t\tsalesloft1__call_sentiment__c,\n\t\tphase__c,\n\t\tsalesloft1__salesloft_cadence_name__c,\n\t\tsalesloft1__salesloft_clicked_count__c,\n\t\tsalesloft1__salesloft_email_template_title__c,\n\t\tsalesloftreplycount__c,\n\t\tsalesloft_cadence_id__c,\n\t\tsalesloft_cadence_name__c,\n\t\tsalesloft_clicked_count__c,\n\t\tsalesloft_email_template_id__c,\n\t\tsalesloft_email_template_title__c,\n\t\tsalesloft_external_identifier__c,\n\t\tsalesloft_step_day_new__c,\n\t\tsalesloft_step_id__c,\n\t\tsalesloft_step_name__c,\n\t\tsalesloft_step_type__c,\n\t\tsalesloft_viewed_count__c,\n\t\tunique_click_count__c,\n\t\tunique_reply_count__c,\n\t\tunique_view_count__c,\n\t\tsalesloft1__salesloft_replies_count__c,\n\t\tlast_sdr_email__c,\n\t\tae_email__c,\n\t\tsalesloft1__salesloft_step_day__c,\n\t\tcanceled_cp__c,\n\t\tno_show_cp__c,\n\t\trescheduled_cp__c,\n\t\tresponse_schedule_cp__c,\n\t\tyeswareismailmerge__c,\n\t\tyeswaremailmergename__c,\n\t\tyeswaretemplateids__c,\n\t\tyesware_activitytype__c,\n\t\tmedium__c,\n\t\tyeswaretemplatenames__c,\n\t\tyesware_activity_time__c,\n\t\tpresentation_link__c,\n\t\tyesware_call_duration_minutes__c,\n\t\tyesware_connectcall__c,\n\t\tyesware_day__c,\n\t\tcall_status__c,\n\t\tdemo_status__c,\n\t\tlast_modified_date_for_report__c,\n\t\tsalesloft1__salesloft_type__c,\n\t\tagency_event_stage__c,\n\t\tsalesloft1__salesloft_view_count__c,\n\t\tis_task_from_external_system__c,\n\t\tactivity_id_18_digit__c,\n\t\ttask_completion_date__c,\n\t\tdemo_approval_status__c,\n\t\tgong__gong_selected_process__c,\n\t\tyesware_emailtype__c,\n\t\tyesware_meeting__c,\n\t\tsms_topics_discussed__c,\n\t\tsalesloft1__salesloft_connected_count__c,\n\t\tcreated_by_role__c,\n\t\tsdr__c,\n\t\tsalesloft1__salesloft_unique_click_count__c,\n\t\tsalesloft1__salesloft_unique_reply_count__c,\n\t\tselected_product_for_lead_conversion__c,\n\t\tdemo_cancellation_reason__c,\n\t\tsalesloft1__salesloft_unique_view_count__c,\n\t\tyesware_open__c,\n\t\tworkspacename_cp__c,\n\t\tdesignated_assignee_cp__c,\n\t\tmain_goal__c,\n\t\tsales_demo_feedback__c,\n\t\tlabsactionplans__taskaptask__c,\n\t\tlast_qbr__c,\n\t\tlead_lookup__c,\n\t\tcreated_by_flow__c,\n\t\tsend_cp_slack_communication__c,\n\t\tyesware_reply__c,\n\t\tyesware_sent__c,\n\t\tyesware_subject__c,\n\t\tyesware_template__c,\n\t\tyesware_totalcall__c,\n\t\tmeeting_type_cp__c,\n\t\tqueue_name_cp__c,\n\t\tassigned_to_role__c,\n\t\trouter_name_cp__c,\n\t\tproducts_shown__c,\n\t\ton_opp__c,\n\t\tcall_sentiment__c,\n\t\tcreated_by_me__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__event", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__fact_account_profile_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__fact_account_profile_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.sql", "unique_id": "model.yoda.analytics___salesforce_stg__fact_account_profile_daily", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__fact_account_profile_daily", "analytics___salesforce_stg__fact_account_profile_daily"], "alias": "analytics___salesforce_stg__fact_account_profile_daily", "checksum": {"name": "sha256", "checksum": "d362e3e7d8f4571f9b00e62bebd49a63127deaa304d6c6f392bb68b99e62f3fa"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled view for static table fact_account_profile_daily", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_id": {"name": "loyalty_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_name": {"name": "loyalty_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_team": {"name": "loyalty_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_id": {"name": "ugc_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_name": {"name": "ugc_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_team": {"name": "ugc_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_id": {"name": "sms_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_name": {"name": "sms_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_team": {"name": "sms_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_id": {"name": "primary_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_name": {"name": "primary_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team": {"name": "primary_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_strategist_id": {"name": "sms_strategist_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_strategist_name": {"name": "sms_strategist_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_strategist_team": {"name": "sms_strategist_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_csm_id": {"name": "subscription_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptions_csm_name": {"name": "subscriptions_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptions_csm_team": {"name": "subscriptions_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_csm_id": {"name": "email_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_csm_name": {"name": "email_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_csm_team": {"name": "email_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082654.7353961, "relation_name": "dev_dkruh1.analytics___salesforce_stg__fact_account_profile_daily", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__static', 'fact_account_profile_daily') }}\n\n), salesforce_stg__fact_account_profile_daily AS (\n\n SELECT \n\t\tdate,\n\t\taccount_id,\n\t\taccount_name,\n\t\tloyalty_csm_id,\n\t\tloyalty_csm_name,\n\t\tloyalty_csm_team,\n\t\tugc_csm_id,\n\t\tugc_csm_name,\n\t\tugc_csm_team,\n\t\tsms_csm_id,\n\t\tsms_csm_name,\n\t\tsms_csm_team,\n\t\tprimary_csm_id,\n\t\tprimary_csm_name,\n\t\tprimary_csm_team,\n\t\tsms_strategist_id,\n\t\tsms_strategist_name,\n\t\tsms_strategist_team,\n\t\tsubscription_csm_id,\n\t\tsubscriptions_csm_name,\n\t\tsubscriptions_csm_team,\n\t\temail_csm_id,\n\t\temail_csm_name,\n\t\temail_csm_team,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__fact_account_profile_daily", "language": "sql", "refs": [], "sources": [["analytics__static", "fact_account_profile_daily"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.fact_account_profile_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.fact_account_profile_daily\n\n), salesforce_stg__fact_account_profile_daily AS (\n\n SELECT \n\t\tdate,\n\t\taccount_id,\n\t\taccount_name,\n\t\tloyalty_csm_id,\n\t\tloyalty_csm_name,\n\t\tloyalty_csm_team,\n\t\tugc_csm_id,\n\t\tugc_csm_name,\n\t\tugc_csm_team,\n\t\tsms_csm_id,\n\t\tsms_csm_name,\n\t\tsms_csm_team,\n\t\tprimary_csm_id,\n\t\tprimary_csm_name,\n\t\tprimary_csm_team,\n\t\tsms_strategist_id,\n\t\tsms_strategist_name,\n\t\tsms_strategist_team,\n\t\tsubscription_csm_id,\n\t\tsubscriptions_csm_name,\n\t\tsubscriptions_csm_team,\n\t\temail_csm_id,\n\t\temail_csm_name,\n\t\temail_csm_team,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__fact_account_profile_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__lead": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__lead", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.sql", "unique_id": "model.yoda.analytics___salesforce_stg__lead", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__lead", "analytics___salesforce_stg__lead"], "alias": "analytics___salesforce_stg__lead", "checksum": {"name": "sha256", "checksum": "3afc765fc15fdc03ebf55c385f512a812ba117ce97c6dba09b1243afee0f0065"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_id__c": {"name": "account_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_phone__c": {"name": "account_phone__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creation_date_time__c": {"name": "creation_date_time__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "no_specified_domain_com__c": {"name": "no_specified_domain_com__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "score__c": {"name": "score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "utm_campaign__c": {"name": "utm_campaign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_medium__c": {"name": "utm_medium__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_source__c": {"name": "utm_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "aov__c": {"name": "aov__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_email__c": {"name": "account_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_status__c": {"name": "account_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "active_lead__c": {"name": "active_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "additional_email__c": {"name": "additional_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_pdr_lookup__c": {"name": "agency_pdr_lookup__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_potential__c": {"name": "agency_potential__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_sales_owner__c": {"name": "agency_sales_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_services__c": {"name": "agency_services__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "alexa_rank__c": {"name": "alexa_rank__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "annualrevenue": {"name": "annualrevenue", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "annual_revenue__c": {"name": "annual_revenue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key__c": {"name": "app_key__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "assigned_by_de__c": {"name": "assigned_by_de__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "came_from_nurturing__c": {"name": "came_from_nurturing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "city": {"name": "city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "claim_status__c": {"name": "claim_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "client_s_agency2__c": {"name": "client_s_agency2__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comments__c": {"name": "comments__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company": {"name": "company", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "confidence_level_lead__c": {"name": "confidence_level_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "convert_to_existing_account__c": {"name": "convert_to_existing_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "convertedaccountid": {"name": "convertedaccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "convertedcontactid": {"name": "convertedcontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converteddate": {"name": "converteddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "convertedopportunityid": {"name": "convertedopportunityid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countrycode": {"name": "countrycode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_region_text__c": {"name": "country_region_text__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_region__c": {"name": "country_region__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_role__c": {"name": "created_by_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date_day_less_than_today_day__c": {"name": "created_date_day_less_than_today_day__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_cycle_calls_completed__c": {"name": "current_cycle_calls_completed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_cycle_emails_sent__c": {"name": "current_cycle_emails_sent__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_cycle_first_call_email_date__c": {"name": "current_cycle_first_call_email_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_cycle_last_call_email_date__c": {"name": "current_cycle_last_call_email_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_cycle_total_activities__c": {"name": "current_cycle_total_activities__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "datanayze_annual_revenue_changed__c": {"name": "datanayze_annual_revenue_changed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "datanayze_annual_revenue__c": {"name": "datanayze_annual_revenue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "datanayze_current_curation_solution__c": {"name": "datanayze_current_curation_solution__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "datanayze_monthly_tech_spend__c": {"name": "datanayze_monthly_tech_spend__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "datanyze_funding__c": {"name": "datanyze_funding__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date_assigned_to_sdr__c": {"name": "date_assigned_to_sdr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_between_nurture_to_new__c": {"name": "days_between_nurture_to_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_from_last_activity__c": {"name": "days_from_last_activity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_activity_after_engage__c": {"name": "days_since_last_activity_after_engage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_activity_after_mql__c": {"name": "days_since_last_activity_after_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "decision_maker__c": {"name": "decision_maker__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "demo_task_subject__c": {"name": "demo_task_subject__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain__c": {"name": "domain__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "donotcall": {"name": "donotcall", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "doesn_t_work_here__c": {"name": "doesn_t_work_here__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "drift_assignee__c": {"name": "drift_assignee__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "duration_in_lead_status__c": {"name": "duration_in_lead_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "effective_source__c": {"name": "effective_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_domain__c": {"name": "email_domain__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_validation__c": {"name": "email_validation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enterprise_lead__c": {"name": "enterprise_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "fax": {"name": "fax", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "firstname": {"name": "firstname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_activity_date__c": {"name": "first_activity_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_campaign_name__c": {"name": "first_campaign_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_campaign_type__c": {"name": "first_campaign_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_campaign__c": {"name": "first_campaign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "follow_up_date__c": {"name": "follow_up_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "funding__c": {"name": "funding__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "google_fake_lead__c": {"name": "google_fake_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "growth_date__c": {"name": "growth_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hasoptedoutofemail": {"name": "hasoptedoutofemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hasoptedoutoffax": {"name": "hasoptedoutoffax", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hours_since_last_transfer__c": {"name": "hours_since_last_transfer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "how_did_they_hear_about_yotpo__c": {"name": "how_did_they_hear_about_yotpo__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "import_reason__c": {"name": "import_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "influencer_owner__c": {"name": "influencer_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "influencer__c": {"name": "influencer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "instagram_followers__c": {"name": "instagram_followers__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_email_marketing__c": {"name": "integrations_email_marketing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_loyalty__c": {"name": "integrations_loyalty__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_onsite_engagement__c": {"name": "integrations_onsite_engagement__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_search__c": {"name": "integrations_search__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invalid_email_address_marketo__c": {"name": "invalid_email_address_marketo__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isconverted": {"name": "isconverted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isunreadbyowner": {"name": "isunreadbyowner", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "junk_reason__c": {"name": "junk_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "keep_in_owner_name__c": {"name": "keep_in_owner_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lninterest__c": {"name": "lninterest__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnpath__c": {"name": "lnpath__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnstage__c": {"name": "lnstage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnstatus__c": {"name": "lnstatus__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastname": {"name": "lastname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "laststatuschange__c": {"name": "laststatuschange__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lasttransferdate": {"name": "lasttransferdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_maps_total__c": {"name": "last_30_days_maps_total__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_30_days_reviews__c": {"name": "last_30_days_reviews__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_30_days_maps__c": {"name": "last_30_days_maps__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_30_days_orders__c": {"name": "last_30_days_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_30_days_sales__c": {"name": "last_30_days_sales__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_ae_team__c": {"name": "last_ae_team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_ae__c": {"name": "last_ae__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_activity_date__c": {"name": "last_activity_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner_email__c": {"name": "last_lead_owner_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner_lookup__c": {"name": "last_lead_owner_lookup__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner_phone__c": {"name": "last_lead_owner_phone__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner_role__c": {"name": "last_lead_owner_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner_without_queue__c": {"name": "last_lead_owner_without_queue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner__c": {"name": "last_lead_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_nurture_reason__c": {"name": "last_nurture_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_packaged_change_date__c": {"name": "last_packaged_change_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_ringlead_merge_activity__c": {"name": "last_ringlead_merge_activity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_sdr_team__c": {"name": "last_sdr_team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_sdr__c": {"name": "last_sdr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_sub_nurture_reason__c": {"name": "last_sub_nurture_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_transfer_datetime_without_queue__c": {"name": "last_transfer_datetime_without_queue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_transfer_date_date_time__c": {"name": "last_transfer_date_date_time__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_transfer_date_without_queue__c": {"name": "last_transfer_date_without_queue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "leadsource": {"name": "leadsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_bucket_when_referred__c": {"name": "lead_bucket_when_referred__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_bucket__c": {"name": "lead_bucket__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_creation_date__c": {"name": "lead_creation_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_emails_sent__c": {"name": "lead_emails_sent__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lead_id_18_digit__c": {"name": "lead_id_18_digit__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_id_map_to_opp__c": {"name": "lead_id_map_to_opp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_id__c": {"name": "lead_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_influenced_by__c": {"name": "lead_influenced_by__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_influenced_date__c": {"name": "lead_influenced_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_campaign2__c": {"name": "lead_last_campaign2__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_campaign_contact__c": {"name": "lead_last_campaign_contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_campaign_name__c": {"name": "lead_last_campaign_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_campaign_type__c": {"name": "lead_last_campaign_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_hubspot_engagement__c": {"name": "lead_last_hubspot_engagement__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_referred_by__c": {"name": "lead_referred_by__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_referred_date__c": {"name": "lead_referred_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_source_type__c": {"name": "lead_source_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_source__c": {"name": "lead_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_territory__c": {"name": "lead_territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_type__c": {"name": "lead_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "linkedin__c": {"name": "linkedin__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_date__c": {"name": "mql_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_hql_date__c": {"name": "marketing_filter_hql_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_last_qualified_tier__c": {"name": "marketing_filter_last_qualified_tier__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_fit_score_first_mql__c": {"name": "marketo_fit_score_first_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_fit_score_grade__c": {"name": "marketo_fit_score_grade__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_fit_score_last_mql__c": {"name": "marketo_fit_score_last_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_fit_score__c": {"name": "marketo_fit_score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_tier_last_mql__c": {"name": "marketo_tier_last_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_tier_mql__c": {"name": "marketo_tier_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "matched_account_ring_lead__c": {"name": "matched_account_ring_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "meeting_type_cp__c": {"name": "meeting_type_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mobilephone": {"name": "mobilephone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_fb_ads_budget__c": {"name": "monthly_fb_ads_budget__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "move_to_nurture__c": {"name": "move_to_nurture__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numberofemployees": {"name": "numberofemployees", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number_of_open_outreach_tasks__c": {"name": "number_of_open_outreach_tasks__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number_of_employees__c": {"name": "number_of_employees__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_reason__c": {"name": "nurturing_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_to_new__c": {"name": "nurturing_to_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_month_estimate__c": {"name": "orders_month_estimate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key__c": {"name": "organization_key__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_source__c": {"name": "original_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_is_active__c": {"name": "owner_is_active__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "owner_is_queue__c": {"name": "owner_is_queue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pct_usage_reached__c": {"name": "pct_usage_reached__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "package_category__c": {"name": "package_category__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package__c": {"name": "package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_country_code_lead__c": {"name": "phone_country_code_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "photourl": {"name": "photourl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform__c": {"name": "platform__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "postalcode": {"name": "postalcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_db_package__c": {"name": "previous_db_package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_rank__c": {"name": "prospect_fit_rank__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_reason__c": {"name": "prospect_fit_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_reason__c": {"name": "prospect_intent_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospecting_alexa_ranking__c": {"name": "prospecting_alexa_ranking__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "prospecting_fb_likes__c": {"name": "prospecting_fb_likes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospecting_google_ads_spent_spyfu__c": {"name": "prospecting_google_ads_spent_spyfu__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rating": {"name": "rating", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ready_for_routing__c": {"name": "ready_for_routing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recordtypeid": {"name": "recordtypeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recycling_status__c": {"name": "recycling_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_agency_potential__c": {"name": "referrer_agency_potential__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_name__c": {"name": "referrer_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_owner__c": {"name": "referrer_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_type__c": {"name": "referrer_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer__c": {"name": "referrer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_provider_from_list__c": {"name": "reviews_provider_from_list__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ringlead_dms_status__c": {"name": "ringlead_dms_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ringlead_merged_ids_leads__c": {"name": "ringlead_merged_ids_leads__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr__c": {"name": "sdr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sla_status__c": {"name": "sla_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_estimated_monthly_orders__c": {"name": "sales_estimated_monthly_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_territory__c": {"name": "sales_territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_tier_first_mql__c": {"name": "sales_tier_first_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_tier_routing__c": {"name": "sales_tier_routing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salutation": {"name": "salutation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_id__c": {"name": "segment_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_plan__c": {"name": "shopify_plan__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sign_in_count__c": {"name": "sign_in_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "statecode": {"name": "statecode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state_region__c": {"name": "state_region__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status_before_convert__c": {"name": "status_before_convert__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "street": {"name": "street", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_nurturing_reason__c": {"name": "sub_nurturing_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subjective_score__c": {"name": "subjective_score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscribed_to_blog__c": {"name": "subscribed_to_blog__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sync_with_zendesk__c": {"name": "sync_with_zendesk__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory__c": {"name": "territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_to_mql_days__c": {"name": "time_to_mql_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "time_zone_formula__c": {"name": "time_zone_formula__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_zone_new__c": {"name": "time_zone_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_orders__c": {"name": "total_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_reviews__c": {"name": "total_reviews__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_sales__c": {"name": "total_sales__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "utm_campaign_account__c": {"name": "utm_campaign_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_content_account__c": {"name": "utm_content_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_content__c": {"name": "utm_content__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_medium_account__c": {"name": "utm_medium_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_source_account__c": {"name": "utm_source_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_term_account__c": {"name": "utm_term_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_term__c": {"name": "utm_term__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_manually_annual_revenue__c": {"name": "updated_manually_annual_revenue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "updated_manually_country__c": {"name": "updated_manually_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "user_id__c": {"name": "user_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "web_traffic__c": {"name": "web_traffic__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website_text__c": {"name": "website_text__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "x18_digits_id__c": {"name": "x18_digits_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_industry_lead__c": {"name": "yotpo_industry_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_industry_verified_lead__c": {"name": "yotpo_industry_verified_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yotpo_sub_industry_lead__c": {"name": "yotpo_sub_industry_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zendesk_sync__c": {"name": "zendesk_sync__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_outreach_completed__c": {"name": "lead_outreach_completed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto2__acquisition_date__c": {"name": "mkto2__acquisition_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__acquisition_program_id__c": {"name": "mkto2__acquisition_program_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto2__acquisition_program__c": {"name": "mkto2__acquisition_program__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_city__c": {"name": "mkto2__inferred_city__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_company__c": {"name": "mkto2__inferred_company__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_country__c": {"name": "mkto2__inferred_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_metropolitan_area__c": {"name": "mkto2__inferred_metropolitan_area__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_phone_area_code__c": {"name": "mkto2__inferred_phone_area_code__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_postal_code__c": {"name": "mkto2__inferred_postal_code__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_state_region__c": {"name": "mkto2__inferred_state_region__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__lead_score__c": {"name": "mkto2__lead_score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto2__original_referrer__c": {"name": "mkto2__original_referrer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_search_engine__c": {"name": "mkto2__original_search_engine__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_search_phrase__c": {"name": "mkto2__original_search_phrase__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_source_info__c": {"name": "mkto2__original_source_info__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_source_type__c": {"name": "mkto2__original_source_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto71_acquisition_date__c": {"name": "mkto71_acquisition_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto71_acquisition_program_id__c": {"name": "mkto71_acquisition_program_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto71_acquisition_program__c": {"name": "mkto71_acquisition_program__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__add_to_marketo_campaign__c": {"name": "mkto_si__add_to_marketo_campaign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_date__c": {"name": "mkto_si__last_interesting_moment_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_desc__c": {"name": "mkto_si__last_interesting_moment_desc__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_source__c": {"name": "mkto_si__last_interesting_moment_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_type__c": {"name": "mkto_si__last_interesting_moment_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment__c": {"name": "mkto_si__last_interesting_moment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__priority__c": {"name": "mkto_si__priority__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto_si__relative_score_value__c": {"name": "mkto_si__relative_score_value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto_si__relative_score__c": {"name": "mkto_si__relative_score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__urgency__c": {"name": "mkto_si__urgency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__view_in_marketo__c": {"name": "mkto_si__view_in_marketo__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_supported_platforms_lead__c": {"name": "agency_supported_platforms_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "annual_revenue_est__c": {"name": "annual_revenue_est__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "was_referred_by_the_agency__c": {"name": "was_referred_by_the_agency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_type__c": {"name": "agency_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "business_days_to_first_connect__c": {"name": "business_days_to_first_connect__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "business_days_to_first_touch__c": {"name": "business_days_to_first_touch__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_cycle_first_activity__c": {"name": "current_cycle_first_activity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_cycle_first_connected_activity__c": {"name": "current_cycle_first_connected_activity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gray_area__c": {"name": "gray_area__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hours_to_first_connect__c": {"name": "hours_to_first_connect__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hours_to_first_touch__c": {"name": "hours_to_first_touch__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_from_last_assign_to_first_touch__c": {"name": "days_from_last_assign_to_first_touch__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lastactivitydate": {"name": "lastactivitydate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_swell_sales__c": {"name": "last_30_days_swell_sales__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id__c": {"name": "merchant_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_bucket__c": {"name": "most_recent_assignment_bucket__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_date__c": {"name": "most_recent_assignment_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_reason__c": {"name": "most_recent_assignment_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_sub_reason__c": {"name": "most_recent_assignment_sub_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_rank__c": {"name": "prospect_intent_rank__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_engagement__c": {"name": "swell_engagement__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_package__c": {"name": "swell_package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avg_traffic_6_months__c": {"name": "avg_traffic_6_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "bounce_rate__c": {"name": "bounce_rate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "direct_traffic_share__c": {"name": "direct_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "emailbounceddate": {"name": "emailbounceddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "emailbouncedreason": {"name": "emailbouncedreason", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "global_rank__c": {"name": "global_rank__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mail_traffic_share__c": {"name": "mail_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "paid_referrals_traffic_share__c": {"name": "paid_referrals_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referrals_traffic_share__c": {"name": "referrals_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sdr_email__c": {"name": "sdr_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_owner__c": {"name": "sdr_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_role__c": {"name": "sdr_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "search_traffic_share__c": {"name": "search_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "second_best_country__c": {"name": "second_best_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "similarweb_traffic_new__c": {"name": "similarweb_traffic_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "social_traffic_share__c": {"name": "social_traffic_share__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "third_best_country__c": {"name": "third_best_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_country__c": {"name": "top_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_organic_keyword__c": {"name": "top_organic_keyword__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_paid_keyword__c": {"name": "top_paid_keyword__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "critical_event__c": {"name": "critical_event__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discoverorg_company_industry__c": {"name": "discoverorg_company_industry__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "impact__c": {"name": "impact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_using_loyalty_campaigns__c": {"name": "is_using_loyalty_campaigns__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_swell_orders__c": {"name": "last_30_days_swell_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_6_months_points_earned__c": {"name": "last_6_months_points_earned__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_6_months_points_redeemed__c": {"name": "last_6_months_points_redeemed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "latest_partner_referral_influencer__c": {"name": "latest_partner_referral_influencer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "latest_partner_referral__c": {"name": "latest_partner_referral__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_referrer_owner_role__c": {"name": "lead_referrer_owner_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_date__c": {"name": "most_recent_engagement_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_reason__c": {"name": "most_recent_engagement_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pain__c": {"name": "pain__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_team_routing_team__c": {"name": "partner_team_routing_team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_owner_email__c": {"name": "referrer_owner_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_owner_new__c": {"name": "referrer_owner_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "situation__c": {"name": "situation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status_swell__c": {"name": "status_swell__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_orders_swell__c": {"name": "total_orders_swell__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_orders_from_referral_links_shares__c": {"name": "total_orders_from_referral_links_shares__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_referrals_links_clickes__c": {"name": "total_referrals_links_clickes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_referrals_links_shares__c": {"name": "total_referrals_links_shares__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_revenue_from_referral_links_shares__c": {"name": "total_revenue_from_referral_links_shares__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "additional_phone_number__c": {"name": "additional_phone_number__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ads_provider__c": {"name": "ads_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cdp_provider__c": {"name": "cdp_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_bots_provider__c": {"name": "chat_bots_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_company_id__c": {"name": "dozisf__zoominfo_company_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_first_updated__c": {"name": "dozisf__zoominfo_first_updated__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_id__c": {"name": "dozisf__zoominfo_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_last_updated__c": {"name": "dozisf__zoominfo_last_updated__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "help_desk_provider__c": {"name": "help_desk_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pos_provider__c": {"name": "pos_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager_email_referral_form__c": {"name": "partner_manager_email_referral_form__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_provider__c": {"name": "payment_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "personalization_provider__c": {"name": "personalization_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_email_referral_form__c": {"name": "referred_by_email_referral_form__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_referral_form__c": {"name": "referred_by_referral_form__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_partner_code__c": {"name": "referred_partner_code__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sql_assignment__c": {"name": "sql_assignment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "wrong_number_indication_date__c": {"name": "wrong_number_indication_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "additional_email_address__c": {"name": "additional_email_address__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_segment__c": {"name": "agency_segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_provider__c": {"name": "sms_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "active_automations_flows_3_months_avg__c": {"name": "active_automations_flows_3_months_avg__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "active_automations_flows_last_30_days__c": {"name": "active_automations_flows_last_30_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_campaigns__c": {"name": "active_campaigns__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "credits_used_last_30_days__c": {"name": "credits_used_last_30_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits_used_last_90_days__c": {"name": "credits_used_last_90_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "good_fit_for_growth__c": {"name": "good_fit_for_growth__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "incorrect_score_reason__c": {"name": "incorrect_score_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "messages_sent_last_30_days__c": {"name": "messages_sent_last_30_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "messages_sent_last_90_days__c": {"name": "messages_sent_last_90_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "percent_subscribers_from_customers__c": {"name": "percent_subscribers_from_customers__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "num_of_subscribers__c": {"name": "num_of_subscribers__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cs_tags__c": {"name": "cs_tags__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id__c": {"name": "sms_user_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "managed_services_agency__c": {"name": "managed_services_agency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_triggered_mql__c": {"name": "marketo_triggered_mql__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partneraccountid": {"name": "partneraccountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_interest_referral_form__c": {"name": "products_interest_referral_form__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "jigsawcontactid": {"name": "jigsawcontactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "jigsaw": {"name": "jigsaw", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_segment__c": {"name": "sales_segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "a_b_testing_provider__c": {"name": "a_b_testing_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_billing_provider__c": {"name": "subscription_billing_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "masterrecordid": {"name": "masterrecordid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_product_preference__c": {"name": "most_recent_product_preference__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_session_starting_page__c": {"name": "most_recent_session_starting_page__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_of_funnel_touches__c": {"name": "top_of_funnel_touches__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_touches__c": {"name": "product_touches__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_of_funnel_sessions__c": {"name": "top_of_funnel_sessions__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_30_days_orders_sms__c": {"name": "last_30_days_orders_sms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sales_estimated_subscribers__c": {"name": "sales_estimated_subscribers__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_enabled_automations__c": {"name": "sms_enabled_automations__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_enabled_flows__c": {"name": "sms_enabled_flows__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "bottom_of_funnel_sessions__c": {"name": "bottom_of_funnel_sessions__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "prospect_fit_score_test__c": {"name": "prospect_fit_score_test__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "connect_with_a_yotpo_rep__c": {"name": "connect_with_a_yotpo_rep__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_for_snr_form__c": {"name": "platform_for_snr_form__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "interested_in_sms__c": {"name": "interested_in_sms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_vms__c": {"name": "interested_in_vms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_loyalty__c": {"name": "interested_in_loyalty__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_reviews__c": {"name": "interested_in_reviews__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lead_status_time_stamp__c": {"name": "lead_status_time_stamp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_care_tagged__c": {"name": "customer_care_tagged__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "interested_in_subscription__c": {"name": "interested_in_subscription__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastproductoflastsubscriptionevent__c": {"name": "lastproductoflastsubscriptionevent__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastsubscriptioneventchange__c": {"name": "lastsubscriptioneventchange__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "booking_status_cp__c": {"name": "booking_status_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__active_lead__c": {"name": "salesloft1__active_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "no_of_touchpoints_before_nurturing__c": {"name": "no_of_touchpoints_before_nurturing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "activitymetricid": {"name": "activitymetricid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activitymetricrollupid": {"name": "activitymetricrollupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_cadence_name__c": {"name": "salesloft1__most_recent_cadence_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_cadence_next_step_due_date__c": {"name": "salesloft1__most_recent_cadence_next_step_due_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_last_completed_step__c": {"name": "salesloft1__most_recent_last_completed_step__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mql_motion__c": {"name": "mql_motion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "do_not_update_territory__c": {"name": "do_not_update_territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "region__c": {"name": "region__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory_new__c": {"name": "territory_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pe_reassignment_date__c": {"name": "pe_reassignment_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_enrichment_date__c": {"name": "last_enrichment_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082655.092344, "relation_name": "dev_dkruh1.analytics___salesforce_stg__lead", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'lead') }}\n\n), salesforce_stg__lead AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\taccount_id__c,\n\t\taccount_phone__c,\n\t\tcreation_date_time__c,\n\t\tno_specified_domain_com__c,\n\t\tscore__c,\n\t\tutm_campaign__c,\n\t\tutm_medium__c,\n\t\tutm_source__c,\n\t\taov__c,\n\t\taccount_email__c,\n\t\taccount_status__c,\n\t\tactive_lead__c,\n\t\tadditional_email__c,\n\t\tagency_pdr_lookup__c,\n\t\tagency_potential__c,\n\t\tagency_sales_owner__c,\n\t\tagency_services__c,\n\t\talexa_rank__c,\n\t\tannualrevenue,\n\t\tannual_revenue__c,\n\t\tapp_key__c,\n\t\tassigned_by_de__c,\n\t\tcame_from_nurturing__c,\n\t\tcity,\n\t\tclaim_status__c,\n\t\tclient_s_agency2__c,\n\t\tcomments__c,\n\t\tcompany,\n\t\tconfidence_level_lead__c,\n\t\tconvert_to_existing_account__c,\n\t\tconvertedaccountid,\n\t\tconvertedcontactid,\n\t\tconverteddate,\n\t\tconvertedopportunityid,\n\t\tcountrycode,\n\t\tcountry_region_text__c,\n\t\tcountry_region__c,\n\t\tcountry,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreated_by_role__c,\n\t\tcreated_date_day_less_than_today_day__c,\n\t\tcurrencyisocode,\n\t\tcurrent_cycle_calls_completed__c,\n\t\tcurrent_cycle_emails_sent__c,\n\t\tcurrent_cycle_first_call_email_date__c,\n\t\tcurrent_cycle_last_call_email_date__c,\n\t\tcurrent_cycle_total_activities__c,\n\t\tdatanayze_annual_revenue_changed__c,\n\t\tdatanayze_annual_revenue__c,\n\t\tdatanayze_current_curation_solution__c,\n\t\tdatanayze_monthly_tech_spend__c,\n\t\tdatanyze_funding__c,\n\t\tdate_assigned_to_sdr__c,\n\t\tdays_between_nurture_to_new__c,\n\t\tdays_from_last_activity__c,\n\t\tdays_since_last_activity_after_engage__c,\n\t\tdays_since_last_activity_after_mql__c,\n\t\tdecision_maker__c,\n\t\tdemo_task_subject__c,\n\t\tdescription,\n\t\tdomain__c,\n\t\tdonotcall,\n\t\tdoesn_t_work_here__c,\n\t\tdrift_assignee__c,\n\t\tduration_in_lead_status__c,\n\t\teffective_source__c,\n\t\temail_domain__c,\n\t\temail_validation__c,\n\t\temail,\n\t\tenterprise_lead__c,\n\t\tfax,\n\t\tfirstname,\n\t\tfirst_activity_date__c,\n\t\tfirst_campaign_name__c,\n\t\tfirst_campaign_type__c,\n\t\tfirst_campaign__c,\n\t\tfollow_up_date__c,\n\t\tfunding__c,\n\t\tgoogle_fake_lead__c,\n\t\tgrowth_date__c,\n\t\thasoptedoutofemail,\n\t\thasoptedoutoffax,\n\t\thours_since_last_transfer__c,\n\t\thow_did_they_hear_about_yotpo__c,\n\t\tid,\n\t\timport_reason__c,\n\t\tindustry,\n\t\tinfluencer_owner__c,\n\t\tinfluencer__c,\n\t\tinstagram_followers__c,\n\t\tintegrations_email_marketing__c,\n\t\tintegrations_loyalty__c,\n\t\tintegrations_onsite_engagement__c,\n\t\tintegrations_search__c,\n\t\tinvalid_email_address_marketo__c,\n\t\tisconverted,\n\t\tisdeleted,\n\t\tisunreadbyowner,\n\t\tjunk_reason__c,\n\t\tkeep_in_owner_name__c,\n\t\tlninterest__c,\n\t\tlnpath__c,\n\t\tlnstage__c,\n\t\tlnstatus__c,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tlastname,\n\t\tlaststatuschange__c,\n\t\tlasttransferdate,\n\t\tlast_30_days_maps_total__c,\n\t\tlast_30_days_reviews__c,\n\t\tlast_30_days_maps__c,\n\t\tlast_30_days_orders__c,\n\t\tlast_30_days_sales__c,\n\t\tlast_ae_team__c,\n\t\tlast_ae__c,\n\t\tlast_activity_date__c,\n\t\tlast_lead_owner_email__c,\n\t\tlast_lead_owner_lookup__c,\n\t\tlast_lead_owner_phone__c,\n\t\tlast_lead_owner_role__c,\n\t\tlast_lead_owner_without_queue__c,\n\t\tlast_lead_owner__c,\n\t\tlast_nurture_reason__c,\n\t\tlast_packaged_change_date__c,\n\t\tlast_ringlead_merge_activity__c,\n\t\tlast_sdr_team__c,\n\t\tlast_sdr__c,\n\t\tlast_sub_nurture_reason__c,\n\t\tlast_transfer_datetime_without_queue__c,\n\t\tlast_transfer_date_date_time__c,\n\t\tlast_transfer_date_without_queue__c,\n\t\tleadsource,\n\t\tlead_bucket_when_referred__c,\n\t\tlead_bucket__c,\n\t\tlead_creation_date__c,\n\t\tlead_emails_sent__c,\n\t\tlead_id_18_digit__c,\n\t\tlead_id_map_to_opp__c,\n\t\tlead_id__c,\n\t\tlead_influenced_by__c,\n\t\tlead_influenced_date__c,\n\t\tlead_last_campaign2__c,\n\t\tlead_last_campaign_contact__c,\n\t\tlead_last_campaign_name__c,\n\t\tlead_last_campaign_type__c,\n\t\tlead_last_hubspot_engagement__c,\n\t\tlead_referred_by__c,\n\t\tlead_referred_date__c,\n\t\tlead_source_type__c,\n\t\tlead_source__c,\n\t\tlead_territory__c,\n\t\tlead_type__c,\n\t\tlinkedin__c,\n\t\tmql_date__c,\n\t\tmarketing_filter_hql_date__c,\n\t\tmarketing_filter_last_qualified_tier__c,\n\t\tmarketo_fit_score_first_mql__c,\n\t\tmarketo_fit_score_grade__c,\n\t\tmarketo_fit_score_last_mql__c,\n\t\tmarketo_fit_score__c,\n\t\tmarketo_tier_last_mql__c,\n\t\tmarketo_tier_mql__c,\n\t\tmatched_account_ring_lead__c,\n\t\tmeeting_type_cp__c,\n\t\tmobilephone,\n\t\tmonthly_fb_ads_budget__c,\n\t\tmove_to_nurture__c,\n\t\tname,\n\t\tnumberofemployees,\n\t\tnumber_of_open_outreach_tasks__c,\n\t\tnumber_of_employees__c,\n\t\tnurturing_reason__c,\n\t\tnurturing_to_new__c,\n\t\torders_month_estimate__c,\n\t\torganization_key__c,\n\t\toriginal_source__c,\n\t\townerid,\n\t\towner_is_active__c,\n\t\towner_is_queue__c,\n\t\tpct_usage_reached__c,\n\t\tpackage_category__c,\n\t\tpackage__c,\n\t\tphone_country_code_lead__c,\n\t\tphone,\n\t\tphotourl,\n\t\tplatform__c,\n\t\tpostalcode,\n\t\tprevious_db_package__c,\n\t\tprospect_fit_rank__c,\n\t\tprospect_fit_reason__c,\n\t\tprospect_intent_reason__c,\n\t\tprospecting_alexa_ranking__c,\n\t\tprospecting_fb_likes__c,\n\t\tprospecting_google_ads_spent_spyfu__c,\n\t\trating,\n\t\tready_for_routing__c,\n\t\trecordtypeid,\n\t\trecycling_status__c,\n\t\treferrer_agency_potential__c,\n\t\treferrer_name__c,\n\t\treferrer_owner__c,\n\t\treferrer_type__c,\n\t\treferrer__c,\n\t\treviews_provider_from_list__c,\n\t\tringlead_dms_status__c,\n\t\tringlead_merged_ids_leads__c,\n\t\tsdr__c,\n\t\tsla_status__c,\n\t\tsales_estimated_monthly_orders__c,\n\t\tsales_territory__c,\n\t\tsales_tier_first_mql__c,\n\t\tsales_tier_routing__c,\n\t\tsalutation,\n\t\tsegment_id__c,\n\t\tshopify_plan__c,\n\t\tsign_in_count__c,\n\t\tstatecode,\n\t\tstate_region__c,\n\t\tstate,\n\t\tstatus_before_convert__c,\n\t\tstatus,\n\t\tstreet,\n\t\tsub_nurturing_reason__c,\n\t\tsubjective_score__c,\n\t\tsubscribed_to_blog__c,\n\t\tsync_with_zendesk__c,\n\t\tsystemmodstamp,\n\t\tterritory__c,\n\t\ttime_to_mql_days__c,\n\t\ttime_zone_formula__c,\n\t\ttime_zone_new__c,\n\t\ttitle,\n\t\ttotal_orders__c,\n\t\ttotal_reviews__c,\n\t\ttotal_sales__c,\n\t\tutm_campaign_account__c,\n\t\tutm_content_account__c,\n\t\tutm_content__c,\n\t\tutm_medium_account__c,\n\t\tutm_source_account__c,\n\t\tutm_term_account__c,\n\t\tutm_term__c,\n\t\tupdated_manually_annual_revenue__c,\n\t\tupdated_manually_country__c,\n\t\tuser_id__c,\n\t\tweb_traffic__c,\n\t\twebsite_text__c,\n\t\twebsite,\n\t\tx18_digits_id__c,\n\t\tyotpo_industry_lead__c,\n\t\tyotpo_industry_verified_lead__c,\n\t\tyotpo_sub_industry_lead__c,\n\t\tzendesk_sync__c,\n\t\tlead_outreach_completed__c,\n\t\tmkto2__acquisition_date__c,\n\t\tmkto2__acquisition_program_id__c,\n\t\tmkto2__acquisition_program__c,\n\t\tmkto2__inferred_city__c,\n\t\tmkto2__inferred_company__c,\n\t\tmkto2__inferred_country__c,\n\t\tmkto2__inferred_metropolitan_area__c,\n\t\tmkto2__inferred_phone_area_code__c,\n\t\tmkto2__inferred_postal_code__c,\n\t\tmkto2__inferred_state_region__c,\n\t\tmkto2__lead_score__c,\n\t\tmkto2__original_referrer__c,\n\t\tmkto2__original_search_engine__c,\n\t\tmkto2__original_search_phrase__c,\n\t\tmkto2__original_source_info__c,\n\t\tmkto2__original_source_type__c,\n\t\tmkto71_acquisition_date__c,\n\t\tmkto71_acquisition_program_id__c,\n\t\tmkto71_acquisition_program__c,\n\t\tmkto_si__add_to_marketo_campaign__c,\n\t\tmkto_si__last_interesting_moment_date__c,\n\t\tmkto_si__last_interesting_moment_desc__c,\n\t\tmkto_si__last_interesting_moment_source__c,\n\t\tmkto_si__last_interesting_moment_type__c,\n\t\tmkto_si__last_interesting_moment__c,\n\t\tmkto_si__priority__c,\n\t\tmkto_si__relative_score_value__c,\n\t\tmkto_si__relative_score__c,\n\t\tmkto_si__urgency__c,\n\t\tmkto_si__view_in_marketo__c,\n\t\tagency_supported_platforms_lead__c,\n\t\tannual_revenue_est__c,\n\t\twas_referred_by_the_agency__c,\n\t\tagency_type__c,\n\t\tbusiness_days_to_first_connect__c,\n\t\tbusiness_days_to_first_touch__c,\n\t\tcurrent_cycle_first_activity__c,\n\t\tcurrent_cycle_first_connected_activity__c,\n\t\tgray_area__c,\n\t\thours_to_first_connect__c,\n\t\thours_to_first_touch__c,\n\t\tdays_from_last_assign_to_first_touch__c,\n\t\tlastactivitydate,\n\t\tlast_30_days_swell_sales__c,\n\t\tmerchant_id__c,\n\t\tmost_recent_assignment_bucket__c,\n\t\tmost_recent_assignment_date__c,\n\t\tmost_recent_assignment_reason__c,\n\t\tmost_recent_assignment_sub_reason__c,\n\t\tprospect_intent_rank__c,\n\t\tswell_engagement__c,\n\t\tswell_package__c,\n\t\tavg_traffic_6_months__c,\n\t\tbounce_rate__c,\n\t\tdirect_traffic_share__c,\n\t\temailbounceddate,\n\t\temailbouncedreason,\n\t\tglobal_rank__c,\n\t\tmail_traffic_share__c,\n\t\tpaid_referrals_traffic_share__c,\n\t\treferrals_traffic_share__c,\n\t\tsdr_email__c,\n\t\tsdr_owner__c,\n\t\tsdr_role__c,\n\t\tsearch_traffic_share__c,\n\t\tsecond_best_country__c,\n\t\tsimilarweb_traffic_new__c,\n\t\tsocial_traffic_share__c,\n\t\tthird_best_country__c,\n\t\ttop_country__c,\n\t\ttop_organic_keyword__c,\n\t\ttop_paid_keyword__c,\n\t\tcritical_event__c,\n\t\tdiscoverorg_company_industry__c,\n\t\timpact__c,\n\t\tis_using_loyalty_campaigns__c,\n\t\tlast_30_days_swell_orders__c,\n\t\tlast_6_months_points_earned__c,\n\t\tlast_6_months_points_redeemed__c,\n\t\tlatest_partner_referral_influencer__c,\n\t\tlatest_partner_referral__c,\n\t\tlead_referrer_owner_role__c,\n\t\tmost_recent_engagement_date__c,\n\t\tmost_recent_engagement_reason__c,\n\t\tpain__c,\n\t\tpartner_team_routing_team__c,\n\t\treferrer_owner_email__c,\n\t\treferrer_owner_new__c,\n\t\tsituation__c,\n\t\tstatus_swell__c,\n\t\ttotal_orders_swell__c,\n\t\ttotal_orders_from_referral_links_shares__c,\n\t\ttotal_referrals_links_clickes__c,\n\t\ttotal_referrals_links_shares__c,\n\t\ttotal_revenue_from_referral_links_shares__c,\n\t\tadditional_phone_number__c,\n\t\tads_provider__c,\n\t\tcdp_provider__c,\n\t\tchat_bots_provider__c,\n\t\tdozisf__zoominfo_company_id__c,\n\t\tdozisf__zoominfo_first_updated__c,\n\t\tdozisf__zoominfo_id__c,\n\t\tdozisf__zoominfo_last_updated__c,\n\t\thelp_desk_provider__c,\n\t\tpos_provider__c,\n\t\tpartner_manager_email_referral_form__c,\n\t\tpayment_provider__c,\n\t\tpersonalization_provider__c,\n\t\treferred_by_email_referral_form__c,\n\t\treferred_by_referral_form__c,\n\t\treferred_partner_code__c,\n\t\tsql_assignment__c,\n\t\twrong_number_indication_date__c,\n\t\tadditional_email_address__c,\n\t\tagency_segment__c,\n\t\tsms_provider__c,\n\t\tactive_automations_flows_3_months_avg__c,\n\t\tactive_automations_flows_last_30_days__c,\n\t\tactive_campaigns__c,\n\t\tcredits_used_last_30_days__c,\n\t\tcredits_used_last_90_days__c,\n\t\tgood_fit_for_growth__c,\n\t\tincorrect_score_reason__c,\n\t\tmessages_sent_last_30_days__c,\n\t\tmessages_sent_last_90_days__c,\n\t\tpercent_subscribers_from_customers__c,\n\t\tnum_of_subscribers__c,\n\t\tcs_tags__c,\n\t\tsms_user_id__c,\n\t\tmanaged_services_agency__c,\n\t\tmarketo_triggered_mql__c,\n\t\tpartneraccountid,\n\t\tproducts_interest_referral_form__c,\n\t\tjigsawcontactid,\n\t\tjigsaw,\n\t\tsales_segment__c,\n\t\ta_b_testing_provider__c,\n\t\tsubscription_billing_provider__c,\n\t\tmasterrecordid,\n\t\tmost_recent_product_preference__c,\n\t\tmost_recent_session_starting_page__c,\n\t\ttop_of_funnel_touches__c,\n\t\tproduct_touches__c,\n\t\ttop_of_funnel_sessions__c,\n\t\tlast_30_days_orders_sms__c,\n\t\tsales_estimated_subscribers__c,\n\t\tsms_enabled_automations__c,\n\t\tsms_enabled_flows__c,\n\t\tbottom_of_funnel_sessions__c,\n\t\tprospect_fit_score_test__c,\n\t\tconnect_with_a_yotpo_rep__c,\n\t\tplatform_for_snr_form__c,\n\t\tlastreferenceddate,\n\t\tlastvieweddate,\n\t\tinterested_in_sms__c,\n\t\tinterested_in_vms__c,\n\t\tinterested_in_loyalty__c,\n\t\tinterested_in_reviews__c,\n\t\tlead_status_time_stamp__c,\n\t\tcustomer_care_tagged__c,\n\t\tinterested_in_subscription__c,\n\t\tlastproductoflastsubscriptionevent__c,\n\t\tlastsubscriptioneventchange__c,\n\t\tbooking_status_cp__c,\n\t\tsalesloft1__active_lead__c,\n\t\tno_of_touchpoints_before_nurturing__c,\n\t\tactivitymetricid,\n\t\tactivitymetricrollupid,\n\t\tsalesloft1__most_recent_cadence_name__c,\n\t\tsalesloft1__most_recent_cadence_next_step_due_date__c,\n\t\tsalesloft1__most_recent_last_completed_step__c,\n\t\tmql_motion__c,\n\t\tdo_not_update_territory__c,\n\t\tregion__c,\n\t\tterritory_new__c,\n\t\tpe_reassignment_date__c,\n\t\tlast_enrichment_date__c\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__lead", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "lead"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.lead\n\n), salesforce_stg__lead AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\taccount_id__c,\n\t\taccount_phone__c,\n\t\tcreation_date_time__c,\n\t\tno_specified_domain_com__c,\n\t\tscore__c,\n\t\tutm_campaign__c,\n\t\tutm_medium__c,\n\t\tutm_source__c,\n\t\taov__c,\n\t\taccount_email__c,\n\t\taccount_status__c,\n\t\tactive_lead__c,\n\t\tadditional_email__c,\n\t\tagency_pdr_lookup__c,\n\t\tagency_potential__c,\n\t\tagency_sales_owner__c,\n\t\tagency_services__c,\n\t\talexa_rank__c,\n\t\tannualrevenue,\n\t\tannual_revenue__c,\n\t\tapp_key__c,\n\t\tassigned_by_de__c,\n\t\tcame_from_nurturing__c,\n\t\tcity,\n\t\tclaim_status__c,\n\t\tclient_s_agency2__c,\n\t\tcomments__c,\n\t\tcompany,\n\t\tconfidence_level_lead__c,\n\t\tconvert_to_existing_account__c,\n\t\tconvertedaccountid,\n\t\tconvertedcontactid,\n\t\tconverteddate,\n\t\tconvertedopportunityid,\n\t\tcountrycode,\n\t\tcountry_region_text__c,\n\t\tcountry_region__c,\n\t\tcountry,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreated_by_role__c,\n\t\tcreated_date_day_less_than_today_day__c,\n\t\tcurrencyisocode,\n\t\tcurrent_cycle_calls_completed__c,\n\t\tcurrent_cycle_emails_sent__c,\n\t\tcurrent_cycle_first_call_email_date__c,\n\t\tcurrent_cycle_last_call_email_date__c,\n\t\tcurrent_cycle_total_activities__c,\n\t\tdatanayze_annual_revenue_changed__c,\n\t\tdatanayze_annual_revenue__c,\n\t\tdatanayze_current_curation_solution__c,\n\t\tdatanayze_monthly_tech_spend__c,\n\t\tdatanyze_funding__c,\n\t\tdate_assigned_to_sdr__c,\n\t\tdays_between_nurture_to_new__c,\n\t\tdays_from_last_activity__c,\n\t\tdays_since_last_activity_after_engage__c,\n\t\tdays_since_last_activity_after_mql__c,\n\t\tdecision_maker__c,\n\t\tdemo_task_subject__c,\n\t\tdescription,\n\t\tdomain__c,\n\t\tdonotcall,\n\t\tdoesn_t_work_here__c,\n\t\tdrift_assignee__c,\n\t\tduration_in_lead_status__c,\n\t\teffective_source__c,\n\t\temail_domain__c,\n\t\temail_validation__c,\n\t\temail,\n\t\tenterprise_lead__c,\n\t\tfax,\n\t\tfirstname,\n\t\tfirst_activity_date__c,\n\t\tfirst_campaign_name__c,\n\t\tfirst_campaign_type__c,\n\t\tfirst_campaign__c,\n\t\tfollow_up_date__c,\n\t\tfunding__c,\n\t\tgoogle_fake_lead__c,\n\t\tgrowth_date__c,\n\t\thasoptedoutofemail,\n\t\thasoptedoutoffax,\n\t\thours_since_last_transfer__c,\n\t\thow_did_they_hear_about_yotpo__c,\n\t\tid,\n\t\timport_reason__c,\n\t\tindustry,\n\t\tinfluencer_owner__c,\n\t\tinfluencer__c,\n\t\tinstagram_followers__c,\n\t\tintegrations_email_marketing__c,\n\t\tintegrations_loyalty__c,\n\t\tintegrations_onsite_engagement__c,\n\t\tintegrations_search__c,\n\t\tinvalid_email_address_marketo__c,\n\t\tisconverted,\n\t\tisdeleted,\n\t\tisunreadbyowner,\n\t\tjunk_reason__c,\n\t\tkeep_in_owner_name__c,\n\t\tlninterest__c,\n\t\tlnpath__c,\n\t\tlnstage__c,\n\t\tlnstatus__c,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tlastname,\n\t\tlaststatuschange__c,\n\t\tlasttransferdate,\n\t\tlast_30_days_maps_total__c,\n\t\tlast_30_days_reviews__c,\n\t\tlast_30_days_maps__c,\n\t\tlast_30_days_orders__c,\n\t\tlast_30_days_sales__c,\n\t\tlast_ae_team__c,\n\t\tlast_ae__c,\n\t\tlast_activity_date__c,\n\t\tlast_lead_owner_email__c,\n\t\tlast_lead_owner_lookup__c,\n\t\tlast_lead_owner_phone__c,\n\t\tlast_lead_owner_role__c,\n\t\tlast_lead_owner_without_queue__c,\n\t\tlast_lead_owner__c,\n\t\tlast_nurture_reason__c,\n\t\tlast_packaged_change_date__c,\n\t\tlast_ringlead_merge_activity__c,\n\t\tlast_sdr_team__c,\n\t\tlast_sdr__c,\n\t\tlast_sub_nurture_reason__c,\n\t\tlast_transfer_datetime_without_queue__c,\n\t\tlast_transfer_date_date_time__c,\n\t\tlast_transfer_date_without_queue__c,\n\t\tleadsource,\n\t\tlead_bucket_when_referred__c,\n\t\tlead_bucket__c,\n\t\tlead_creation_date__c,\n\t\tlead_emails_sent__c,\n\t\tlead_id_18_digit__c,\n\t\tlead_id_map_to_opp__c,\n\t\tlead_id__c,\n\t\tlead_influenced_by__c,\n\t\tlead_influenced_date__c,\n\t\tlead_last_campaign2__c,\n\t\tlead_last_campaign_contact__c,\n\t\tlead_last_campaign_name__c,\n\t\tlead_last_campaign_type__c,\n\t\tlead_last_hubspot_engagement__c,\n\t\tlead_referred_by__c,\n\t\tlead_referred_date__c,\n\t\tlead_source_type__c,\n\t\tlead_source__c,\n\t\tlead_territory__c,\n\t\tlead_type__c,\n\t\tlinkedin__c,\n\t\tmql_date__c,\n\t\tmarketing_filter_hql_date__c,\n\t\tmarketing_filter_last_qualified_tier__c,\n\t\tmarketo_fit_score_first_mql__c,\n\t\tmarketo_fit_score_grade__c,\n\t\tmarketo_fit_score_last_mql__c,\n\t\tmarketo_fit_score__c,\n\t\tmarketo_tier_last_mql__c,\n\t\tmarketo_tier_mql__c,\n\t\tmatched_account_ring_lead__c,\n\t\tmeeting_type_cp__c,\n\t\tmobilephone,\n\t\tmonthly_fb_ads_budget__c,\n\t\tmove_to_nurture__c,\n\t\tname,\n\t\tnumberofemployees,\n\t\tnumber_of_open_outreach_tasks__c,\n\t\tnumber_of_employees__c,\n\t\tnurturing_reason__c,\n\t\tnurturing_to_new__c,\n\t\torders_month_estimate__c,\n\t\torganization_key__c,\n\t\toriginal_source__c,\n\t\townerid,\n\t\towner_is_active__c,\n\t\towner_is_queue__c,\n\t\tpct_usage_reached__c,\n\t\tpackage_category__c,\n\t\tpackage__c,\n\t\tphone_country_code_lead__c,\n\t\tphone,\n\t\tphotourl,\n\t\tplatform__c,\n\t\tpostalcode,\n\t\tprevious_db_package__c,\n\t\tprospect_fit_rank__c,\n\t\tprospect_fit_reason__c,\n\t\tprospect_intent_reason__c,\n\t\tprospecting_alexa_ranking__c,\n\t\tprospecting_fb_likes__c,\n\t\tprospecting_google_ads_spent_spyfu__c,\n\t\trating,\n\t\tready_for_routing__c,\n\t\trecordtypeid,\n\t\trecycling_status__c,\n\t\treferrer_agency_potential__c,\n\t\treferrer_name__c,\n\t\treferrer_owner__c,\n\t\treferrer_type__c,\n\t\treferrer__c,\n\t\treviews_provider_from_list__c,\n\t\tringlead_dms_status__c,\n\t\tringlead_merged_ids_leads__c,\n\t\tsdr__c,\n\t\tsla_status__c,\n\t\tsales_estimated_monthly_orders__c,\n\t\tsales_territory__c,\n\t\tsales_tier_first_mql__c,\n\t\tsales_tier_routing__c,\n\t\tsalutation,\n\t\tsegment_id__c,\n\t\tshopify_plan__c,\n\t\tsign_in_count__c,\n\t\tstatecode,\n\t\tstate_region__c,\n\t\tstate,\n\t\tstatus_before_convert__c,\n\t\tstatus,\n\t\tstreet,\n\t\tsub_nurturing_reason__c,\n\t\tsubjective_score__c,\n\t\tsubscribed_to_blog__c,\n\t\tsync_with_zendesk__c,\n\t\tsystemmodstamp,\n\t\tterritory__c,\n\t\ttime_to_mql_days__c,\n\t\ttime_zone_formula__c,\n\t\ttime_zone_new__c,\n\t\ttitle,\n\t\ttotal_orders__c,\n\t\ttotal_reviews__c,\n\t\ttotal_sales__c,\n\t\tutm_campaign_account__c,\n\t\tutm_content_account__c,\n\t\tutm_content__c,\n\t\tutm_medium_account__c,\n\t\tutm_source_account__c,\n\t\tutm_term_account__c,\n\t\tutm_term__c,\n\t\tupdated_manually_annual_revenue__c,\n\t\tupdated_manually_country__c,\n\t\tuser_id__c,\n\t\tweb_traffic__c,\n\t\twebsite_text__c,\n\t\twebsite,\n\t\tx18_digits_id__c,\n\t\tyotpo_industry_lead__c,\n\t\tyotpo_industry_verified_lead__c,\n\t\tyotpo_sub_industry_lead__c,\n\t\tzendesk_sync__c,\n\t\tlead_outreach_completed__c,\n\t\tmkto2__acquisition_date__c,\n\t\tmkto2__acquisition_program_id__c,\n\t\tmkto2__acquisition_program__c,\n\t\tmkto2__inferred_city__c,\n\t\tmkto2__inferred_company__c,\n\t\tmkto2__inferred_country__c,\n\t\tmkto2__inferred_metropolitan_area__c,\n\t\tmkto2__inferred_phone_area_code__c,\n\t\tmkto2__inferred_postal_code__c,\n\t\tmkto2__inferred_state_region__c,\n\t\tmkto2__lead_score__c,\n\t\tmkto2__original_referrer__c,\n\t\tmkto2__original_search_engine__c,\n\t\tmkto2__original_search_phrase__c,\n\t\tmkto2__original_source_info__c,\n\t\tmkto2__original_source_type__c,\n\t\tmkto71_acquisition_date__c,\n\t\tmkto71_acquisition_program_id__c,\n\t\tmkto71_acquisition_program__c,\n\t\tmkto_si__add_to_marketo_campaign__c,\n\t\tmkto_si__last_interesting_moment_date__c,\n\t\tmkto_si__last_interesting_moment_desc__c,\n\t\tmkto_si__last_interesting_moment_source__c,\n\t\tmkto_si__last_interesting_moment_type__c,\n\t\tmkto_si__last_interesting_moment__c,\n\t\tmkto_si__priority__c,\n\t\tmkto_si__relative_score_value__c,\n\t\tmkto_si__relative_score__c,\n\t\tmkto_si__urgency__c,\n\t\tmkto_si__view_in_marketo__c,\n\t\tagency_supported_platforms_lead__c,\n\t\tannual_revenue_est__c,\n\t\twas_referred_by_the_agency__c,\n\t\tagency_type__c,\n\t\tbusiness_days_to_first_connect__c,\n\t\tbusiness_days_to_first_touch__c,\n\t\tcurrent_cycle_first_activity__c,\n\t\tcurrent_cycle_first_connected_activity__c,\n\t\tgray_area__c,\n\t\thours_to_first_connect__c,\n\t\thours_to_first_touch__c,\n\t\tdays_from_last_assign_to_first_touch__c,\n\t\tlastactivitydate,\n\t\tlast_30_days_swell_sales__c,\n\t\tmerchant_id__c,\n\t\tmost_recent_assignment_bucket__c,\n\t\tmost_recent_assignment_date__c,\n\t\tmost_recent_assignment_reason__c,\n\t\tmost_recent_assignment_sub_reason__c,\n\t\tprospect_intent_rank__c,\n\t\tswell_engagement__c,\n\t\tswell_package__c,\n\t\tavg_traffic_6_months__c,\n\t\tbounce_rate__c,\n\t\tdirect_traffic_share__c,\n\t\temailbounceddate,\n\t\temailbouncedreason,\n\t\tglobal_rank__c,\n\t\tmail_traffic_share__c,\n\t\tpaid_referrals_traffic_share__c,\n\t\treferrals_traffic_share__c,\n\t\tsdr_email__c,\n\t\tsdr_owner__c,\n\t\tsdr_role__c,\n\t\tsearch_traffic_share__c,\n\t\tsecond_best_country__c,\n\t\tsimilarweb_traffic_new__c,\n\t\tsocial_traffic_share__c,\n\t\tthird_best_country__c,\n\t\ttop_country__c,\n\t\ttop_organic_keyword__c,\n\t\ttop_paid_keyword__c,\n\t\tcritical_event__c,\n\t\tdiscoverorg_company_industry__c,\n\t\timpact__c,\n\t\tis_using_loyalty_campaigns__c,\n\t\tlast_30_days_swell_orders__c,\n\t\tlast_6_months_points_earned__c,\n\t\tlast_6_months_points_redeemed__c,\n\t\tlatest_partner_referral_influencer__c,\n\t\tlatest_partner_referral__c,\n\t\tlead_referrer_owner_role__c,\n\t\tmost_recent_engagement_date__c,\n\t\tmost_recent_engagement_reason__c,\n\t\tpain__c,\n\t\tpartner_team_routing_team__c,\n\t\treferrer_owner_email__c,\n\t\treferrer_owner_new__c,\n\t\tsituation__c,\n\t\tstatus_swell__c,\n\t\ttotal_orders_swell__c,\n\t\ttotal_orders_from_referral_links_shares__c,\n\t\ttotal_referrals_links_clickes__c,\n\t\ttotal_referrals_links_shares__c,\n\t\ttotal_revenue_from_referral_links_shares__c,\n\t\tadditional_phone_number__c,\n\t\tads_provider__c,\n\t\tcdp_provider__c,\n\t\tchat_bots_provider__c,\n\t\tdozisf__zoominfo_company_id__c,\n\t\tdozisf__zoominfo_first_updated__c,\n\t\tdozisf__zoominfo_id__c,\n\t\tdozisf__zoominfo_last_updated__c,\n\t\thelp_desk_provider__c,\n\t\tpos_provider__c,\n\t\tpartner_manager_email_referral_form__c,\n\t\tpayment_provider__c,\n\t\tpersonalization_provider__c,\n\t\treferred_by_email_referral_form__c,\n\t\treferred_by_referral_form__c,\n\t\treferred_partner_code__c,\n\t\tsql_assignment__c,\n\t\twrong_number_indication_date__c,\n\t\tadditional_email_address__c,\n\t\tagency_segment__c,\n\t\tsms_provider__c,\n\t\tactive_automations_flows_3_months_avg__c,\n\t\tactive_automations_flows_last_30_days__c,\n\t\tactive_campaigns__c,\n\t\tcredits_used_last_30_days__c,\n\t\tcredits_used_last_90_days__c,\n\t\tgood_fit_for_growth__c,\n\t\tincorrect_score_reason__c,\n\t\tmessages_sent_last_30_days__c,\n\t\tmessages_sent_last_90_days__c,\n\t\tpercent_subscribers_from_customers__c,\n\t\tnum_of_subscribers__c,\n\t\tcs_tags__c,\n\t\tsms_user_id__c,\n\t\tmanaged_services_agency__c,\n\t\tmarketo_triggered_mql__c,\n\t\tpartneraccountid,\n\t\tproducts_interest_referral_form__c,\n\t\tjigsawcontactid,\n\t\tjigsaw,\n\t\tsales_segment__c,\n\t\ta_b_testing_provider__c,\n\t\tsubscription_billing_provider__c,\n\t\tmasterrecordid,\n\t\tmost_recent_product_preference__c,\n\t\tmost_recent_session_starting_page__c,\n\t\ttop_of_funnel_touches__c,\n\t\tproduct_touches__c,\n\t\ttop_of_funnel_sessions__c,\n\t\tlast_30_days_orders_sms__c,\n\t\tsales_estimated_subscribers__c,\n\t\tsms_enabled_automations__c,\n\t\tsms_enabled_flows__c,\n\t\tbottom_of_funnel_sessions__c,\n\t\tprospect_fit_score_test__c,\n\t\tconnect_with_a_yotpo_rep__c,\n\t\tplatform_for_snr_form__c,\n\t\tlastreferenceddate,\n\t\tlastvieweddate,\n\t\tinterested_in_sms__c,\n\t\tinterested_in_vms__c,\n\t\tinterested_in_loyalty__c,\n\t\tinterested_in_reviews__c,\n\t\tlead_status_time_stamp__c,\n\t\tcustomer_care_tagged__c,\n\t\tinterested_in_subscription__c,\n\t\tlastproductoflastsubscriptionevent__c,\n\t\tlastsubscriptioneventchange__c,\n\t\tbooking_status_cp__c,\n\t\tsalesloft1__active_lead__c,\n\t\tno_of_touchpoints_before_nurturing__c,\n\t\tactivitymetricid,\n\t\tactivitymetricrollupid,\n\t\tsalesloft1__most_recent_cadence_name__c,\n\t\tsalesloft1__most_recent_cadence_next_step_due_date__c,\n\t\tsalesloft1__most_recent_last_completed_step__c,\n\t\tmql_motion__c,\n\t\tdo_not_update_territory__c,\n\t\tregion__c,\n\t\tterritory_new__c,\n\t\tpe_reassignment_date__c,\n\t\tlast_enrichment_date__c\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__lead", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__livechattranscript_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__livechattranscript_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__livechattranscript_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__livechattranscript_full", "analytics___salesforce_stg__livechattranscript_full"], "alias": "analytics___salesforce_stg__livechattranscript_full", "checksum": {"name": "sha256", "checksum": "d7c020ad1f85d83e053d1f3402c130ffccc4cf01aa4afaf12dc6334b86844596"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"Abandoned": {"name": "Abandoned", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "AccountId": {"name": "AccountId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "App_Key__c": {"name": "App_Key__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "AverageResponseTimeOperator": {"name": "AverageResponseTimeOperator", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "AverageResponseTimeVisitor": {"name": "AverageResponseTimeVisitor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "Body": {"name": "Body", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Browser": {"name": "Browser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "BrowserLanguage": {"name": "BrowserLanguage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Can_I_help_you_with_anything_else__c": {"name": "Can_I_help_you_with_anything_else__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CaseId": {"name": "CaseId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ChatDuration": {"name": "ChatDuration", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ChatKey": {"name": "ChatKey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Chat_Button__c": {"name": "Chat_Button__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Choice_selected_Installing_Yotpo_UGC__c": {"name": "Choice_selected_Installing_Yotpo_UGC__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Choice_selected__c": {"name": "Choice_selected__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Concern_Addressed__c": {"name": "Concern_Addressed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Confused__c": {"name": "Confused__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ContactId": {"name": "ContactId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedById": {"name": "CreatedById", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Dialog__c": {"name": "Dialog__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "EndTime": {"name": "EndTime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "EndedBy": {"name": "EndedBy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Id": {"name": "Id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IpAddress": {"name": "IpAddress", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsChatbotSession": {"name": "IsChatbotSession", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "IsDeleted": {"name": "IsDeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "LastModifiedById": {"name": "LastModifiedById", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastReferencedDate": {"name": "LastReferencedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastViewedDate": {"name": "LastViewedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LeadId": {"name": "LeadId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LiveChatButtonId": {"name": "LiveChatButtonId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LiveChatDeploymentId": {"name": "LiveChatDeploymentId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LiveChatVisitorId": {"name": "LiveChatVisitorId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Location": {"name": "Location", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "MaxResponseTimeOperator": {"name": "MaxResponseTimeOperator", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "MaxResponseTimeVisitor": {"name": "MaxResponseTimeVisitor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "Merchant_ID__c": {"name": "Merchant_ID__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Name": {"name": "Name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "OperatorMessageCount": {"name": "OperatorMessageCount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "OwnerId": {"name": "OwnerId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Platform": {"name": "Platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ReferrerUri": {"name": "ReferrerUri", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reply_to_Email__c": {"name": "Reply_to_Email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "RequestTime": {"name": "RequestTime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ScreenResolution": {"name": "ScreenResolution", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SkillId": {"name": "SkillId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "StartTime": {"name": "StartTime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Status": {"name": "Status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SupervisorTranscriptBody": {"name": "SupervisorTranscriptBody", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SystemModstamp": {"name": "SystemModstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Topic__c": {"name": "Topic__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "UserAgent": {"name": "UserAgent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "VisitorMessageCount": {"name": "VisitorMessageCount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "VisitorNetwork": {"name": "VisitorNetwork", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "WaitTime": {"name": "WaitTime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "Was_This_Result_Helpful_Text__c": {"name": "Was_This_Result_Helpful_Text__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Was_this_resault_helpful__c": {"name": "Was_this_resault_helpful__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Welcome_Dialog__c": {"name": "Welcome_Dialog__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082655.1663277, "relation_name": "dev_dkruh1.analytics___salesforce_stg__livechattranscript_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'livechattranscript_full') }}\n\n), salesforce_stg__livechattranscript_full AS (\n\n SELECT \n\t\tAbandoned,\n\t\tAccountId,\n\t\tApp_Key__c,\n\t\tAverageResponseTimeOperator,\n\t\tAverageResponseTimeVisitor,\n\t\tBody,\n\t\tBrowser,\n\t\tBrowserLanguage,\n\t\tCan_I_help_you_with_anything_else__c,\n\t\tCaseId,\n\t\tChatDuration,\n\t\tChatKey,\n\t\tChat_Button__c,\n\t\tChoice_selected_Installing_Yotpo_UGC__c,\n\t\tChoice_selected__c,\n\t\tConcern_Addressed__c,\n\t\tConfused__c,\n\t\tContactId,\n\t\tCreatedById,\n\t\tCreatedDate,\n\t\tCurrencyIsoCode,\n\t\tDialog__c,\n\t\tEndTime,\n\t\tEndedBy,\n\t\tId,\n\t\tIpAddress,\n\t\tIsChatbotSession,\n\t\tIsDeleted,\n\t\tLastModifiedById,\n\t\tLastModifiedDate,\n\t\tLastReferencedDate,\n\t\tLastViewedDate,\n\t\tLeadId,\n\t\tLiveChatButtonId,\n\t\tLiveChatDeploymentId,\n\t\tLiveChatVisitorId,\n\t\tLocation,\n\t\tMaxResponseTimeOperator,\n\t\tMaxResponseTimeVisitor,\n\t\tMerchant_ID__c,\n\t\tName,\n\t\tOperatorMessageCount,\n\t\tOwnerId,\n\t\tPlatform,\n\t\tReferrerUri,\n\t\tReply_to_Email__c,\n\t\tRequestTime,\n\t\tScreenResolution,\n\t\tSkillId,\n\t\tStartTime,\n\t\tStatus,\n\t\tSupervisorTranscriptBody,\n\t\tSystemModstamp,\n\t\tTopic__c,\n\t\tUserAgent,\n\t\tVisitorMessageCount,\n\t\tVisitorNetwork,\n\t\tWaitTime,\n\t\tWas_This_Result_Helpful_Text__c,\n\t\tWas_this_resault_helpful__c,\n\t\tWelcome_Dialog__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__livechattranscript_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "livechattranscript_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.livechattranscript_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.livechattranscript_full\n\n), salesforce_stg__livechattranscript_full AS (\n\n SELECT \n\t\tAbandoned,\n\t\tAccountId,\n\t\tApp_Key__c,\n\t\tAverageResponseTimeOperator,\n\t\tAverageResponseTimeVisitor,\n\t\tBody,\n\t\tBrowser,\n\t\tBrowserLanguage,\n\t\tCan_I_help_you_with_anything_else__c,\n\t\tCaseId,\n\t\tChatDuration,\n\t\tChatKey,\n\t\tChat_Button__c,\n\t\tChoice_selected_Installing_Yotpo_UGC__c,\n\t\tChoice_selected__c,\n\t\tConcern_Addressed__c,\n\t\tConfused__c,\n\t\tContactId,\n\t\tCreatedById,\n\t\tCreatedDate,\n\t\tCurrencyIsoCode,\n\t\tDialog__c,\n\t\tEndTime,\n\t\tEndedBy,\n\t\tId,\n\t\tIpAddress,\n\t\tIsChatbotSession,\n\t\tIsDeleted,\n\t\tLastModifiedById,\n\t\tLastModifiedDate,\n\t\tLastReferencedDate,\n\t\tLastViewedDate,\n\t\tLeadId,\n\t\tLiveChatButtonId,\n\t\tLiveChatDeploymentId,\n\t\tLiveChatVisitorId,\n\t\tLocation,\n\t\tMaxResponseTimeOperator,\n\t\tMaxResponseTimeVisitor,\n\t\tMerchant_ID__c,\n\t\tName,\n\t\tOperatorMessageCount,\n\t\tOwnerId,\n\t\tPlatform,\n\t\tReferrerUri,\n\t\tReply_to_Email__c,\n\t\tRequestTime,\n\t\tScreenResolution,\n\t\tSkillId,\n\t\tStartTime,\n\t\tStatus,\n\t\tSupervisorTranscriptBody,\n\t\tSystemModstamp,\n\t\tTopic__c,\n\t\tUserAgent,\n\t\tVisitorMessageCount,\n\t\tVisitorNetwork,\n\t\tWaitTime,\n\t\tWas_This_Result_Helpful_Text__c,\n\t\tWas_this_resault_helpful__c,\n\t\tWelcome_Dialog__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__livechattranscript_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mql_c": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mql_c", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mql_c", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__mql_c", "analytics___salesforce_stg__mql_c"], "alias": "analytics___salesforce_stg__mql_c", "checksum": {"name": "sha256", "checksum": "a9b812779272daeaf5f4237e049b5e0a01470612e4be3c92fdc2fe856d74a280"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A view pullig fields from the incremental rivery process of salesforce object mql.", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastactivitydate": {"name": "lastactivitydate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "contact_record__c": {"name": "contact_record__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_unit__c": {"name": "demand_gen_unit__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain__c": {"name": "domain__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_address__c": {"name": "email_address__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_record__c": {"name": "lead_record__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_country__c": {"name": "mql_country__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_reason__c": {"name": "most_recent_engagement_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_sub_reason__c": {"name": "most_recent_engagement_sub_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_rank__c": {"name": "prospect_fit_rank__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment__c": {"name": "segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status_upon_creation__c": {"name": "status_upon_creation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory__c": {"name": "territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_date__c": {"name": "mql_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "activity_id__c": {"name": "activity_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date_of_first_activity__c": {"name": "date_of_first_activity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id__c": {"name": "user_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_product_preference__c": {"name": "mql_product_preference__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_bucket__c": {"name": "most_recent_assignment_bucket__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_reason__c": {"name": "most_recent_assignment_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_sub_reason__c": {"name": "most_recent_assignment_sub_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_category__c": {"name": "package_category__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_rad__c": {"name": "is_rad__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_self_service__c": {"name": "is_self_service__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sdr_owner__c": {"name": "sdr_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_touchpoints_before_nurturing__c": {"name": "number_of_touchpoints_before_nurturing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "time_to_first_response__c": {"name": "time_to_first_response__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lead_source__c": {"name": "lead_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "automation_created_by__c": {"name": "automation_created_by__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_touch_points__c": {"name": "number_of_touch_points__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_name__c": {"name": "account_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_swell_orders__c": {"name": "last_30_days_swell_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_30_days_orders_sms__c": {"name": "last_30_days_orders_sms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_30_days_orders__c": {"name": "last_30_days_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_month_estimate__c": {"name": "orders_month_estimate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform__c": {"name": "platform__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_estimated_monthly_orders__c": {"name": "sales_estimated_monthly_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "similarweb_traffic_new__c": {"name": "similarweb_traffic_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yotpo_industry__c": {"name": "yotpo_industry__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sixsense_profile_fit__c": {"name": "sixsense_profile_fit__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_role__c": {"name": "owner_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_motion__c": {"name": "mql_motion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_manual_create__c": {"name": "mql_manual_create__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "territory_new__c": {"name": "territory_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_chili_piper__c": {"name": "created_by_chili_piper__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "product_qualified_lead__c": {"name": "product_qualified_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082655.233603, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mql_c", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce_rivery', 'mql__c') }}\n\n), analytics___salesforce_stg__mql_c AS (\n\n SELECT \n\t\tid,\n\t\townerid,\n\t\tisdeleted,\n\t\tname,\n\t\tcurrencyisocode,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tlastactivitydate,\n\t\tlastvieweddate,\n\t\tlastreferenceddate,\n\t\tcontact_record__c,\n\t\tdemand_gen_unit__c,\n\t\tdomain__c,\n\t\temail_address__c,\n\t\tlead_record__c,\n\t\tmql_country__c,\n\t\tmost_recent_engagement_reason__c,\n\t\tmost_recent_engagement_sub_reason__c,\n\t\tprospect_fit_rank__c,\n\t\tsegment__c,\n\t\tstatus_upon_creation__c,\n\t\tterritory__c,\n\t\tmql_date__c,\n\t\tactivity_id__c,\n\t\tdate_of_first_activity__c,\n\t\tuser_id__c,\n\t\tmql_product_preference__c,\n\t\tmost_recent_assignment_bucket__c,\n\t\tmost_recent_assignment_reason__c,\n\t\tmost_recent_assignment_sub_reason__c,\n\t\tpackage_category__c,\n\t\tis_rad__c,\n\t\tis_self_service__c,\n\t\tsdr_owner__c,\n\t\tnumber_of_touchpoints_before_nurturing__c,\n\t\ttime_to_first_response__c,\n\t\tlead_source__c,\n\t\tautomation_created_by__c,\n\t\tnumber_of_touch_points__c,\n\t\taccount_name__c,\n\t\tlast_30_days_swell_orders__c,\n\t\tlast_30_days_orders_sms__c,\n\t\tlast_30_days_orders__c,\n\t\torders_month_estimate__c,\n\t\tplatform__c,\n\t\tsales_estimated_monthly_orders__c,\n\t\tsimilarweb_traffic_new__c,\n\t\tyotpo_industry__c,\n\t\tsixsense_profile_fit__c,\n\t\towner_role__c,\n\t\tmql_motion__c,\n\t\tmql_manual_create__c,\n\t\tterritory_new__c,\n\t\tcreated_by_chili_piper__c,\n\t\tproduct_qualified_lead__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__mql_c", "language": "sql", "refs": [], "sources": [["analytics__salesforce_rivery", "mql__c"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce_rivery.mql__c"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce_rivery.mql__c\n\n), analytics___salesforce_stg__mql_c AS (\n\n SELECT \n\t\tid,\n\t\townerid,\n\t\tisdeleted,\n\t\tname,\n\t\tcurrencyisocode,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tlastactivitydate,\n\t\tlastvieweddate,\n\t\tlastreferenceddate,\n\t\tcontact_record__c,\n\t\tdemand_gen_unit__c,\n\t\tdomain__c,\n\t\temail_address__c,\n\t\tlead_record__c,\n\t\tmql_country__c,\n\t\tmost_recent_engagement_reason__c,\n\t\tmost_recent_engagement_sub_reason__c,\n\t\tprospect_fit_rank__c,\n\t\tsegment__c,\n\t\tstatus_upon_creation__c,\n\t\tterritory__c,\n\t\tmql_date__c,\n\t\tactivity_id__c,\n\t\tdate_of_first_activity__c,\n\t\tuser_id__c,\n\t\tmql_product_preference__c,\n\t\tmost_recent_assignment_bucket__c,\n\t\tmost_recent_assignment_reason__c,\n\t\tmost_recent_assignment_sub_reason__c,\n\t\tpackage_category__c,\n\t\tis_rad__c,\n\t\tis_self_service__c,\n\t\tsdr_owner__c,\n\t\tnumber_of_touchpoints_before_nurturing__c,\n\t\ttime_to_first_response__c,\n\t\tlead_source__c,\n\t\tautomation_created_by__c,\n\t\tnumber_of_touch_points__c,\n\t\taccount_name__c,\n\t\tlast_30_days_swell_orders__c,\n\t\tlast_30_days_orders_sms__c,\n\t\tlast_30_days_orders__c,\n\t\torders_month_estimate__c,\n\t\tplatform__c,\n\t\tsales_estimated_monthly_orders__c,\n\t\tsimilarweb_traffic_new__c,\n\t\tyotpo_industry__c,\n\t\tsixsense_profile_fit__c,\n\t\towner_role__c,\n\t\tmql_motion__c,\n\t\tmql_manual_create__c,\n\t\tterritory_new__c,\n\t\tcreated_by_chili_piper__c,\n\t\tproduct_qualified_lead__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__mql_c", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mql_c_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mql_c_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mql_c_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__mql_c_full", "analytics___salesforce_stg__mql_c_full"], "alias": "analytics___salesforce_stg__mql_c_full", "checksum": {"name": "sha256", "checksum": "7e0e6984e39b6640a629e2fe48a614b8f16a5f4bce76292fa7910d472545f332"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A view pullig fields from the full rivery process of salesforce object mql.", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lead_or_contact_current_territory__c": {"name": "lead_or_contact_current_territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory_new__c": {"name": "territory_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_chili_piper__c": {"name": "created_by_chili_piper__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "product_qualified_lead__c": {"name": "product_qualified_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082655.2517354, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mql_c_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce_rivery', 'mql__c_full') }}\n\n), analytics___salesforce_stg__mql_c_full AS (\n\n SELECT \n\t\tid,\n\t\tsystemmodstamp,\n\t\tlead_or_contact_current_territory__c,\n\t\tterritory_new__c,\n\t\tcreated_by_chili_piper__c,\n\t\tproduct_qualified_lead__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__mql_c_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce_rivery", "mql__c_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce_rivery.mql__c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce_rivery.mql__c_full\n\n), analytics___salesforce_stg__mql_c_full AS (\n\n SELECT \n\t\tid,\n\t\tsystemmodstamp,\n\t\tlead_or_contact_current_territory__c,\n\t\tterritory_new__c,\n\t\tcreated_by_chili_piper__c,\n\t\tproduct_qualified_lead__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__mql_c_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__onboarding_project_c_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__onboarding_project_c_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__onboarding_project_c_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__onboarding_project_c_full", "analytics___salesforce_stg__onboarding_project_c_full"], "alias": "analytics___salesforce_stg__onboarding_project_c_full", "checksum": {"name": "sha256", "checksum": "60c3dc2030a4a1e8ecf94036b5dc2f0d3b3b841917c6f38c5ad78f6bc345f911"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"APP_Key__c": {"name": "APP_Key__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_ID__c": {"name": "Account_ID__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Name__c": {"name": "Account_Name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Product_Currency__c": {"name": "Account_Product_Currency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Product__c": {"name": "Account_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account__c": {"name": "Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Actual_Duration_NET__c": {"name": "Actual_Duration_NET__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Agency__c": {"name": "Agency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Assign_SE__c": {"name": "Assign_SE__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CSM_Email__c": {"name": "CSM_Email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CSM__c": {"name": "CSM__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CS_Segment__c": {"name": "CS_Segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Cancelled_Date__c": {"name": "Cancelled_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Cases_Report__c": {"name": "Cases_Report__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Complexity_Score__c": {"name": "Complexity_Score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Contract_Start_Date__c": {"name": "Contract_Start_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedById": {"name": "CreatedById", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Customer_Care_OB_project__c": {"name": "Customer_Care_OB_project__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Customization_Level__c": {"name": "Customization_Level__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Date_onboarding_completed__c": {"name": "Date_onboarding_completed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Days_Since_Onboarding_Creation__c": {"name": "Days_Since_Onboarding_Creation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_since_start_date__c": {"name": "Days_since_start_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Domain__c": {"name": "Domain__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Duration_SE_Kickoff_to_Completion__c": {"name": "Duration_SE_Kickoff_to_Completion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Final_AP_initial_won_date__c": {"name": "Final_AP_initial_won_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Gross_duration__c": {"name": "Gross_duration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Headless_platform__c": {"name": "Headless_platform__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Id": {"name": "Id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsDeleted": {"name": "IsDeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Is_Owner_is_the_current_User__c": {"name": "Is_Owner_is_the_current_User__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "KOC_Date__c": {"name": "KOC_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedById": {"name": "LastModifiedById", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Merchant_Id__c": {"name": "Merchant_Id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Multi_Store__c": {"name": "Multi_Store__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Multi_product__c": {"name": "Multi_product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Name": {"name": "Name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Net_duration__c": {"name": "Net_duration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_Of_Domains__c": {"name": "Number_Of_Domains__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Onboarding_Manager_CSM_Team__c": {"name": "Onboarding_Manager_CSM_Team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Onboarding_completed__c": {"name": "Onboarding_completed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Onboarding_duration__c": {"name": "Onboarding_duration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Onboarding_start_date__c": {"name": "Onboarding_start_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Package__c": {"name": "Opportunity_Package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Organization_Key__c": {"name": "Organization_Key__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Owner_Role__c": {"name": "Owner_Role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Owner__c": {"name": "Owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Paused_Duration__c": {"name": "Paused_Duration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Platform__c": {"name": "Platform__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Process_Paused_Date__c": {"name": "Process_Paused_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Process_Resumed_Date__c": {"name": "Process_Resumed_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Line_ACV__c": {"name": "Product_Line_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Line__c": {"name": "Product_Line__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Proejct_Actual_duration_gross_Days__c": {"name": "Proejct_Actual_duration_gross_Days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Project_Completion_Date__c": {"name": "Project_Completion_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Project_Due_Date__c": {"name": "Project_Due_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Project_Planned_Duration_Days__c": {"name": "Project_Planned_Duration_Days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Project_Start_Date__c": {"name": "Project_Start_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Red_Flag_Date__c": {"name": "Red_Flag_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Red_Flag_Reason__c": {"name": "Red_Flag_Reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Red_flag_Bucket__c": {"name": "Red_flag_Bucket__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Red_flag_Notes__c": {"name": "Red_flag_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_Onboarding_Manager__c": {"name": "Relevant_Onboarding_Manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SE_Needed__c": {"name": "SE_Needed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Stage__c": {"name": "Stage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SystemModstamp": {"name": "SystemModstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Target_Launch_Date__c": {"name": "Target_Launch_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "The_Reason_for_the_onboarding__c": {"name": "The_Reason_for_the_onboarding__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Total_ACV__c": {"name": "Total_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Score__c": {"name": "Total_Score__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "X18_Digits_Id__c": {"name": "X18_Digits_Id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082655.3222127, "relation_name": "dev_dkruh1.analytics___salesforce_stg__onboarding_project_c_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'onboarding_project__c_full') }}\n\n), analytics___salesforce_stg__onboarding_project_c_full AS (\n\n SELECT \n\t\tAPP_Key__c,\n\t\tAccount_ID__c,\n\t\tAccount_Name__c,\n\t\tAccount_Product_Currency__c,\n\t\tAccount_Product__c,\n\t\tAccount__c,\n\t\tActual_Duration_NET__c,\n\t\tAgency__c,\n\t\tAssign_SE__c,\n\t\tCSM_Email__c,\n\t\tCSM__c,\n\t\tCS_Segment__c,\n\t\tCancelled_Date__c,\n\t\tCases_Report__c,\n\t\tComplexity_Score__c,\n\t\tContract_Start_Date__c,\n\t\tCreatedById,\n\t\tCreatedDate,\n\t\tCustomer_Care_OB_project__c,\n\t\tCustomization_Level__c,\n\t\tDate_onboarding_completed__c,\n\t\tDays_Since_Onboarding_Creation__c,\n\t\tDays_since_start_date__c,\n\t\tDomain__c,\n\t\tDuration_SE_Kickoff_to_Completion__c,\n\t\tFinal_AP_initial_won_date__c,\n\t\tGross_duration__c,\n\t\tHeadless_platform__c,\n\t\tId,\n\t\tIsDeleted,\n\t\tIs_Owner_is_the_current_User__c,\n\t\tKOC_Date__c,\n\t\tLastModifiedById,\n\t\tLastModifiedDate,\n\t\tMerchant_Id__c,\n\t\tMulti_Store__c,\n\t\tMulti_product__c,\n\t\tName,\n\t\tNet_duration__c,\n\t\tNumber_Of_Domains__c,\n\t\tOnboarding_Manager_CSM_Team__c,\n\t\tOnboarding_completed__c,\n\t\tOnboarding_duration__c,\n\t\tOnboarding_start_date__c,\n\t\tOpportunity_Package__c,\n\t\tOrganization_Key__c,\n\t\tOwner_Role__c,\n\t\tOwner__c,\n\t\tPaused_Duration__c,\n\t\tPlatform__c,\n\t\tProcess_Paused_Date__c,\n\t\tProcess_Resumed_Date__c,\n\t\tProduct_Line_ACV__c,\n\t\tProduct_Line__c,\n\t\tProejct_Actual_duration_gross_Days__c,\n\t\tProject_Completion_Date__c,\n\t\tProject_Due_Date__c,\n\t\tProject_Planned_Duration_Days__c,\n\t\tProject_Start_Date__c,\n\t\tRed_Flag_Date__c,\n\t\tRed_Flag_Reason__c,\n\t\tRed_flag_Bucket__c,\n\t\tRed_flag_Notes__c,\n\t\tRelevant_Onboarding_Manager__c,\n\t\tSE_Needed__c,\n\t\tStage__c,\n\t\tSystemModstamp,\n\t\tTarget_Launch_Date__c,\n\t\tThe_Reason_for_the_onboarding__c,\n\t\tTotal_ACV__c,\n\t\tTotal_Score__c,\n\t\tX18_Digits_Id__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__onboarding_project_c_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "onboarding_project__c_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.onboarding_project__c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.onboarding_project__c_full\n\n), analytics___salesforce_stg__onboarding_project_c_full AS (\n\n SELECT \n\t\tAPP_Key__c,\n\t\tAccount_ID__c,\n\t\tAccount_Name__c,\n\t\tAccount_Product_Currency__c,\n\t\tAccount_Product__c,\n\t\tAccount__c,\n\t\tActual_Duration_NET__c,\n\t\tAgency__c,\n\t\tAssign_SE__c,\n\t\tCSM_Email__c,\n\t\tCSM__c,\n\t\tCS_Segment__c,\n\t\tCancelled_Date__c,\n\t\tCases_Report__c,\n\t\tComplexity_Score__c,\n\t\tContract_Start_Date__c,\n\t\tCreatedById,\n\t\tCreatedDate,\n\t\tCustomer_Care_OB_project__c,\n\t\tCustomization_Level__c,\n\t\tDate_onboarding_completed__c,\n\t\tDays_Since_Onboarding_Creation__c,\n\t\tDays_since_start_date__c,\n\t\tDomain__c,\n\t\tDuration_SE_Kickoff_to_Completion__c,\n\t\tFinal_AP_initial_won_date__c,\n\t\tGross_duration__c,\n\t\tHeadless_platform__c,\n\t\tId,\n\t\tIsDeleted,\n\t\tIs_Owner_is_the_current_User__c,\n\t\tKOC_Date__c,\n\t\tLastModifiedById,\n\t\tLastModifiedDate,\n\t\tMerchant_Id__c,\n\t\tMulti_Store__c,\n\t\tMulti_product__c,\n\t\tName,\n\t\tNet_duration__c,\n\t\tNumber_Of_Domains__c,\n\t\tOnboarding_Manager_CSM_Team__c,\n\t\tOnboarding_completed__c,\n\t\tOnboarding_duration__c,\n\t\tOnboarding_start_date__c,\n\t\tOpportunity_Package__c,\n\t\tOrganization_Key__c,\n\t\tOwner_Role__c,\n\t\tOwner__c,\n\t\tPaused_Duration__c,\n\t\tPlatform__c,\n\t\tProcess_Paused_Date__c,\n\t\tProcess_Resumed_Date__c,\n\t\tProduct_Line_ACV__c,\n\t\tProduct_Line__c,\n\t\tProejct_Actual_duration_gross_Days__c,\n\t\tProject_Completion_Date__c,\n\t\tProject_Due_Date__c,\n\t\tProject_Planned_Duration_Days__c,\n\t\tProject_Start_Date__c,\n\t\tRed_Flag_Date__c,\n\t\tRed_Flag_Reason__c,\n\t\tRed_flag_Bucket__c,\n\t\tRed_flag_Notes__c,\n\t\tRelevant_Onboarding_Manager__c,\n\t\tSE_Needed__c,\n\t\tStage__c,\n\t\tSystemModstamp,\n\t\tTarget_Launch_Date__c,\n\t\tThe_Reason_for_the_onboarding__c,\n\t\tTotal_ACV__c,\n\t\tTotal_Score__c,\n\t\tX18_Digits_Id__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__onboarding_project_c_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__opportunity": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__opportunity", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.sql", "unique_id": "model.yoda.analytics___salesforce_stg__opportunity", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__opportunity", "analytics___salesforce_stg__opportunity"], "alias": "analytics___salesforce_stg__opportunity", "checksum": {"name": "sha256", "checksum": "b594102470a1c531969070595f39bc3e4adc4e32ecfccdf43aabc98ce7be2fdb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A view for salesforce opportunity object including all non-formula fields pulled in Rivery incremental river", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recordtypeid": {"name": "recordtypeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stagename": {"name": "stagename", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "probability": {"name": "probability", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closedate": {"name": "closedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nextstep": {"name": "nextstep", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "leadsource": {"name": "leadsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isclosed": {"name": "isclosed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "iswon": {"name": "iswon", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "forecastcategory": {"name": "forecastcategory", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "forecastcategoryname": {"name": "forecastcategoryname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaignid": {"name": "campaignid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hasopportunitylineitem": {"name": "hasopportunitylineitem", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pricebook2id": {"name": "pricebook2id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastactivitydate": {"name": "lastactivitydate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fiscal": {"name": "fiscal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contactid": {"name": "contactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "syncedquoteid": {"name": "syncedquoteid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hasopenactivity": {"name": "hasopenactivity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hasoverduetask": {"name": "hasoverduetask", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "activitymetricid": {"name": "activitymetricid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activitymetricrollupid": {"name": "activitymetricrollupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_integration_error__c": {"name": "zuora_integration_error__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_intent__c": {"name": "email_intent__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "why_lost__c": {"name": "why_lost__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "winback_reason__c": {"name": "winback_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelled_during_trial__c": {"name": "cancelled_during_trial__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "why_lost_description__c": {"name": "why_lost_description__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_from_opportunity__c": {"name": "account_from_opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date__c": {"name": "start_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_from_renewal_reminder__c": {"name": "exclude_from_renewal_reminder__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "value_proposition__c": {"name": "value_proposition__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "winback_notes__c": {"name": "winback_notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "winback_date__c": {"name": "winback_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active_subscription__c": {"name": "is_active_subscription__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "contract_duration__c": {"name": "contract_duration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expiration_date__c": {"name": "expiration_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount__c": {"name": "discount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "exclude_from_feedback_process__c": {"name": "exclude_from_feedback_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "package__c": {"name": "package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_included__c": {"name": "orders_included__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gong__currentgenerators__c": {"name": "gong__currentgenerators__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gong__deliveryinstallationstatus__c": {"name": "gong__deliveryinstallationstatus__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_comments__c": {"name": "order_comments__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "commercial_contact__c": {"name": "commercial_contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_internal_comments__c": {"name": "order_internal_comments__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gong__maincompetitors__c": {"name": "gong__maincompetitors__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_id__c": {"name": "lead_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gong__ordernumber__c": {"name": "gong__ordernumber__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_commitment_value__c": {"name": "sms_commitment_value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cancellation_date__c": {"name": "cancellation_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "insights_product_name__c": {"name": "insights_product_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr__c": {"name": "sdr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_commitment_term__c": {"name": "sms_commitment_term__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "retention_csm_free_days__c": {"name": "retention_csm_free_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_csm_free_days_delta__c": {"name": "zuora_csm_free_days_delta__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "prevent_downgrading__c": {"name": "prevent_downgrading__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "end_of_contract_extension_days__c": {"name": "end_of_contract_extension_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "optout_duration__c": {"name": "optout_duration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_period_charge_flag__c": {"name": "free_period_charge_flag__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tertiary_seller__c": {"name": "tertiary_seller__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_package_discount__c": {"name": "main_package_discount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "retention_csm_free_months_reason__c": {"name": "retention_csm_free_months_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "retention_csm_free_months__c": {"name": "retention_csm_free_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_upsell__c": {"name": "partner_upsell__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "current_contact_role__c": {"name": "current_contact_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "decision_maker_job_title__c": {"name": "decision_maker_job_title__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_aov__c": {"name": "estimated_aov__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "follow_up_in__c": {"name": "follow_up_in__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "follow_up_date_2__c": {"name": "follow_up_date_2__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hidden_lost_reason_values__c": {"name": "hidden_lost_reason_values__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "strategic_investment__c": {"name": "strategic_investment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_updated_through_flow__c": {"name": "lost_updated_through_flow__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "monthly_budget__c": {"name": "monthly_budget__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "requested_feature__c": {"name": "requested_feature__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_competitor_price__c": {"name": "reviews_competitor_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_competitor__c": {"name": "reviews_competitor__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_willing_to_commit_of_months__c": {"name": "time_willing_to_commit_of_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vms_competitor_price__c": {"name": "vms_competitor_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vms_competitor__c": {"name": "vms_competitor__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "web_traffic__c": {"name": "web_traffic__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "why_bad_timing__c": {"name": "why_bad_timing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "end_of_contract_extension_month__c": {"name": "end_of_contract_extension_month__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_opportunity__c": {"name": "renewal_opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_activity_date__c": {"name": "last_activity_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "why_do_you_think_they_didn_t_respond__c": {"name": "why_do_you_think_they_didn_t_respond__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merged_contract__c": {"name": "merged_contract__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "initial_account_product_process__c": {"name": "initial_account_product_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "gong__trackingnumber__c": {"name": "gong__trackingnumber__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_main_add_on_list_price__c": {"name": "dealhub_main_add_on_list_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "owner_manager_email__c": {"name": "owner_manager_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pre_lost_status__c": {"name": "pre_lost_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_id__c": {"name": "sdr_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_to__c": {"name": "bill_to__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_account_billing__c": {"name": "parent_account_billing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_ups_sales_free_months__c": {"name": "zuora_sync_ups_sales_free_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "next_contact_date__c": {"name": "next_contact_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upsell_opportunity__c": {"name": "upsell_opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "extra_domain_pricing__c": {"name": "extra_domain_pricing__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_estimated_subscribers__c": {"name": "sales_estimated_subscribers__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "num_of_extra_domain_products__c": {"name": "num_of_extra_domain_products__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_usage_cancellation_date__c": {"name": "sms_usage_cancellation_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_ups_csm_free_months__c": {"name": "zuora_sync_ups_csm_free_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "push_as_new_sale__c": {"name": "push_as_new_sale__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "secondary_seller__c": {"name": "secondary_seller__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_iap_tier__c": {"name": "original_iap_tier__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secondary_seller_role__c": {"name": "secondary_seller_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "earr_usd__c": {"name": "earr_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end_date__c": {"name": "end_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_csm__c": {"name": "main_csm__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "law_reason__c": {"name": "law_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "include_mr__c": {"name": "include_mr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "usage_opportunity__c": {"name": "usage_opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "purchased_as_mr__c": {"name": "purchased_as_mr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "number_of_extra_domains__c": {"name": "number_of_extra_domains__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "original_referrer__c": {"name": "original_referrer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "added_extra_seats__c": {"name": "added_extra_seats__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "included_seats__c": {"name": "included_seats__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "no_dedicated_csm__c": {"name": "no_dedicated_csm__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "number_of_insights_products__c": {"name": "number_of_insights_products__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ask_to_renew__c": {"name": "ask_to_renew__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "talk_to_csm__c": {"name": "talk_to_csm__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "exclude_from_auto_renewal_process__c": {"name": "exclude_from_auto_renewal_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "csm_team_leader__c": {"name": "csm_team_leader__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_owner_role__c": {"name": "original_owner_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_sdr_role__c": {"name": "original_sdr_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_owner__c": {"name": "referrer_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_demo_feedback__c": {"name": "sales_demo_feedback__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_quote_id__c": {"name": "dealhub_quote_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_rev_share_paid__c": {"name": "total_rev_share_paid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "initiate_rev_share_process_temp__c": {"name": "initiate_rev_share_process_temp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "winback_opportunity__c": {"name": "winback_opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "add_to_winback_process__c": {"name": "add_to_winback_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_estimated_monthly_orders__c": {"name": "sales_estimated_monthly_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_renewal_contact_name__c": {"name": "auto_renewal_contact_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "selected_product_for_lead_conversion__c": {"name": "selected_product_for_lead_conversion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_frequency__c": {"name": "billing_frequency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "duplicate_product_family__c": {"name": "duplicate_product_family__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "estimated_subscriptions_gmv__c": {"name": "estimated_subscriptions_gmv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dealhub_main_add_on_total_price__c": {"name": "dealhub_main_add_on_total_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "add_on_product__c": {"name": "add_on_product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "temporary_ar_process_include__c": {"name": "temporary_ar_process_include__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "estimated_review_requests_per_month__c": {"name": "estimated_review_requests_per_month__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "main_package_prodcut__c": {"name": "main_package_prodcut__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_marketing_earr__c": {"name": "email_marketing_earr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "number_of_add_ons__c": {"name": "number_of_add_ons__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "number_of_main_products__c": {"name": "number_of_main_products__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opp_products_contain_discount__c": {"name": "opp_products_contain_discount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sum_of_sales_price__c": {"name": "sum_of_sales_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rev_share_rate__c": {"name": "rev_share_rate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_refund_required__c": {"name": "customer_refund_required__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "good_fit_for_the_annual_plan_opp__c": {"name": "good_fit_for_the_annual_plan_opp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "change_currency_flag__c": {"name": "change_currency_flag__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "conversion_rate_raw__c": {"name": "conversion_rate_raw__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_enginieer__c": {"name": "sales_enginieer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoices_in_dunning__c": {"name": "invoices_in_dunning__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_invoice_fully_paid__c": {"name": "last_invoice_fully_paid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ps_products_flag__c": {"name": "ps_products_flag__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "omnichannel_deal__c": {"name": "omnichannel_deal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "number_of_professional_services__c": {"name": "number_of_professional_services__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "number_of_whitelabel_products__c": {"name": "number_of_whitelabel_products__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ps_cost__c": {"name": "ps_cost__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "saas_amount__c": {"name": "saas_amount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "saas_extra_domain_w_disc__c": {"name": "saas_extra_domain_w_disc__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "saas_wl_amount__c": {"name": "saas_wl_amount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dealhub_additional_comments__c": {"name": "dealhub_additional_comments__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hidden_lost_reason_values_renewal_opp__c": {"name": "hidden_lost_reason_values_renewal_opp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_sub_reason__c": {"name": "lost_sub_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mid_market_pricing_tier__c": {"name": "mid_market_pricing_tier__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "remove_auto_renew_clause__c": {"name": "remove_auto_renew_clause__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "partner_commission_percentage__c": {"name": "partner_commission_percentage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_trial_products__c": {"name": "number_of_trial_products__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_sync_manually__c": {"name": "zuora_sync_manually__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "swell_orders__c": {"name": "swell_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_months_for_contract_alignment__c": {"name": "free_months_for_contract_alignment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actual_end_date__c": {"name": "actual_end_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_renewal_helpe_number__c": {"name": "contract_renewal_helpe_number__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_renewal_helper_number_year__c": {"name": "contract_renewal_helper_number_year__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_renewal_helper_record_type__c": {"name": "contract_renewal_helper_record_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_renewal_manual__c": {"name": "contract_renewal_manual__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merge_to_opportunity__c": {"name": "merge_to_opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_acv__c": {"name": "swell_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "of_won_child_opps__c": {"name": "of_won_child_opps__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "initiate_contract_renewal_datafix__c": {"name": "initiate_contract_renewal_datafix__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dealhub_signed_date__c": {"name": "dealhub_signed_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dealhub_stage__c": {"name": "dealhub_stage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "technical_contact_first_name__c": {"name": "technical_contact_first_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "technical_contact_last_name__c": {"name": "technical_contact_last_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "technical_contact_email__c": {"name": "technical_contact_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "technical_contact_phone__c": {"name": "technical_contact_phone__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_second_commitment_value__c": {"name": "sms_second_commitment_value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "client_s_agency__c": {"name": "client_s_agency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_reason__c": {"name": "most_recent_assignment_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_sub_reason__c": {"name": "most_recent_assignment_sub_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initiate_deal_type_calculation__c": {"name": "initiate_deal_type_calculation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "deal_type__c": {"name": "deal_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_closed_by_ar__c": {"name": "auto_closed_by_ar__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "most_recent_assignment_date__c": {"name": "most_recent_assignment_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "include_in_auto_renewal_process__c": {"name": "include_in_auto_renewal_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loss_to_syndication__c": {"name": "loss_to_syndication__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "added_to_lockdown_process_date__c": {"name": "added_to_lockdown_process_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "loyalty_csm_team_upon_closed__c": {"name": "loyalty_csm_team_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_contact_name__c": {"name": "primary_contact_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_yotpo_acv__c": {"name": "total_yotpo_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dealhub_end_date__c": {"name": "dealhub_end_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "scsm_deal__c": {"name": "scsm_deal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "remove_from_al_process__c": {"name": "remove_from_al_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dealhub_url__c": {"name": "dealhub_url__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_new_address__c": {"name": "dealhub_new_address__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_domain_list__c": {"name": "dealhub_domain_list__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_custom_terms__c": {"name": "dealhub_custom_terms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signed_with_auto_renewal_clause__c": {"name": "signed_with_auto_renewal_clause__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "no_touch_notification_date__c": {"name": "no_touch_notification_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_upon_closed_won__c": {"name": "loyalty_csm_upon_closed_won__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team_upon_closed__c": {"name": "primary_csm_team_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_upon_closed__c": {"name": "primary_csm_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actual_end_date_new__c": {"name": "actual_end_date_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_csm_team_upon_closed__c": {"name": "reviews_csm_team_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_csm_upon_closed__c": {"name": "reviews_csm_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_and_referrals_competitors__c": {"name": "loyalty_and_referrals_competitors__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_team_upon_closed__c": {"name": "sms_csm_team_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delayed_start_date_approved_partners__c": {"name": "delayed_start_date_approved_partners__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "align_with_original_contract_renewal__c": {"name": "align_with_original_contract_renewal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "create_potential_opportunity__c": {"name": "create_potential_opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_bundle__c": {"name": "is_bundle__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "locked_account__c": {"name": "locked_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "initiate_tcv_flow__c": {"name": "initiate_tcv_flow__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "total_domains__c": {"name": "total_domains__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sdr_role__c": {"name": "sdr_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "remove_from_no_touch__c": {"name": "remove_from_no_touch__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_total_seats__c": {"name": "dealhub_total_seats__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_csm_upon_closed__c": {"name": "sms_csm_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_number__c": {"name": "subscription_number__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loss_reason_lr__c": {"name": "loss_reason_lr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loss_reason_reviews__c": {"name": "loss_reason_reviews__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initiate_renewal_opportunity_creation__c": {"name": "initiate_renewal_opportunity_creation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "partner_referral__c": {"name": "partner_referral__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_from_cs_lead__c": {"name": "created_from_cs_lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_invoice_end_date__c": {"name": "last_invoice_end_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_segment__c": {"name": "sales_segment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region__c": {"name": "sales_region__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_free_months__c": {"name": "zuora_sync_free_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_curation_provider__c": {"name": "original_curation_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_lost__c": {"name": "zuora_sync_lost__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sync_account__c": {"name": "zuora_sync_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_opportunity__c": {"name": "zuora_sync_opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_period_change_start_date__c": {"name": "zuora_period_change_start_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel__c": {"name": "attribution_channel__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_loyalty_referral_provider_m__c": {"name": "original_loyalty_referral_provider_m__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_review_provider__c": {"name": "original_review_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "entered_discovery__c": {"name": "entered_discovery__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_demo__c": {"name": "entered_demo__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_evaluation__c": {"name": "entered_evaluation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_propose__c": {"name": "entered_propose__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_contracting__c": {"name": "entered_contracting__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_contract_signed__c": {"name": "entered_contract_signed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_closed__c": {"name": "entered_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "zuora_sync_merge_opportunity__c": {"name": "zuora_sync_merge_opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sql_assignment__c": {"name": "sql_assignment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recent_source__c": {"name": "recent_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_bucket__c": {"name": "most_recent_assignment_bucket__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "downgraded_package__c": {"name": "downgraded_package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_this_a_downgrade_to_a_monthly_plan__c": {"name": "is_this_a_downgrade_to_a_monthly_plan__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_expansion__c": {"name": "company_expansion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "account_manager_assignment_date__c": {"name": "account_manager_assignment_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "combined_opportunities_earr__c": {"name": "combined_opportunities_earr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "situation__c": {"name": "situation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pain__c": {"name": "pain__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "impact__c": {"name": "impact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "critical_event__c": {"name": "critical_event__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "decision__c": {"name": "decision__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_csm_for_cs_outreach__c": {"name": "relevant_csm_for_cs_outreach__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initial_relevant_csm_update__c": {"name": "initial_relevant_csm_update__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sync_sales_free_months__c": {"name": "zuora_sync_sales_free_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "include_in_no_touch_process__c": {"name": "include_in_no_touch_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "exclude_from_no_touch_process__c": {"name": "exclude_from_no_touch_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "done_t_send_auto_renewal_notification__c": {"name": "done_t_send_auto_renewal_notification__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sync_batch_update__c": {"name": "zuora_sync_batch_update__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sales_free_month_delta__c": {"name": "zuora_sales_free_month_delta__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_csm_free_months_delta__c": {"name": "zuora_csm_free_months_delta__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "owns_by_group__c": {"name": "owns_by_group__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ar_helper_order_exclusion__c": {"name": "ar_helper_order_exclusion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mark_as_master__c": {"name": "mark_as_master__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_last_charge_amount__c": {"name": "zuora_last_charge_amount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_last_charge_date__c": {"name": "zuora_last_charge_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "add_auto_renew_clause__c": {"name": "add_auto_renew_clause__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "entered_to_renewal_assist_process_date__c": {"name": "entered_to_renewal_assist_process_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_to_auto_renewal_process_date__c": {"name": "entered_to_auto_renewal_process_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "migration_from_monthly__c": {"name": "migration_from_monthly__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_acv__c": {"name": "sms_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "purchase_order_number__c": {"name": "purchase_order_number__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_details_update_date__c": {"name": "lost_details_update_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "main_product_families__c": {"name": "main_product_families__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_interest__c": {"name": "product_interest__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "covid_implications__c": {"name": "covid_implications__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ae_forecast_category__c": {"name": "ae_forecast_category__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_poc_extension__c": {"name": "zuora_sync_poc_extension__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp_retention_csm_free_months__c": {"name": "timestamp_retention_csm_free_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_quote_email_sent__c": {"name": "entered_quote_email_sent__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "cs_comp_paid__c": {"name": "cs_comp_paid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted__c": {"name": "converted__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "timestamp_billing_frequency__c": {"name": "timestamp_billing_frequency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "segment_for_bi__c": {"name": "segment_for_bi__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "overlay_ae__c": {"name": "overlay_ae__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_app_keys_for_sms__c": {"name": "relevant_app_keys_for_sms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includes_sms_product__c": {"name": "includes_sms_product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "includes_self_service_product__c": {"name": "includes_self_service_product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "excluded_from_comp_on__c": {"name": "excluded_from_comp_on__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ups_acv__c": {"name": "ups_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loss_reason_sms__c": {"name": "loss_reason_sms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_domains_lr__c": {"name": "total_domains_lr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_domains_sms__c": {"name": "total_domains_sms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "vms_acv__c": {"name": "vms_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loss_reason_vms__c": {"name": "loss_reason_vms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_opps_products_considered__c": {"name": "lost_opps_products_considered__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctp_code__c": {"name": "ctp_code__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ups_account__c": {"name": "ups_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_ups_lost__c": {"name": "zuora_sync_ups_lost__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "concession_reason__c": {"name": "concession_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ups_subscription_number__c": {"name": "ups_subscription_number__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "annual_reviews_for_syndication__c": {"name": "annual_reviews_for_syndication__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_domains_vms__c": {"name": "total_domains_vms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sdr_lookup__c": {"name": "sdr_lookup__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includes_syndication__c": {"name": "includes_syndication__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "syndication_domains__c": {"name": "syndication_domains__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp_sales_free_months__c": {"name": "timestamp_sales_free_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "deprovisioning_outcome__c": {"name": "deprovisioning_outcome__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "do_not_update_territory__c": {"name": "do_not_update_territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "territory_new__c": {"name": "territory_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "key_agency_stakeholder_contact__c": {"name": "key_agency_stakeholder_contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "close_date_pushed__c": {"name": "close_date_pushed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "must_win__c": {"name": "must_win__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lost_main_products__c": {"name": "lost_main_products__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opt_out_clause__c": {"name": "opt_out_clause__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "end_of_opt_out_period__c": {"name": "end_of_opt_out_period__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gold_earr_usd__c": {"name": "gold_earr_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "prime_earr_usd__c": {"name": "prime_earr_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_csm_manager_upon_closed__c": {"name": "reviews_csm_manager_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_manager_upon_closed__c": {"name": "sms_csm_manager_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "l_r_number_of_total_orders_included__c": {"name": "l_r_number_of_total_orders_included__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_number_of_total_orders_included__c": {"name": "reviews_number_of_total_orders_included__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upsell_with_in_term_renewal__c": {"name": "upsell_with_in_term_renewal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "memo__c": {"name": "memo__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_included_l_r__c": {"name": "orders_included_l_r__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "other__c": {"name": "other__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pos_provider__c": {"name": "pos_provider__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_to_opp_won_sale__c": {"name": "renewal_to_opp_won_sale__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mrr__c": {"name": "mrr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "usage_team_attribution__c": {"name": "usage_team_attribution__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "x6sense_attribution__c": {"name": "x6sense_attribution__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "secondary_sales_engineer__c": {"name": "secondary_sales_engineer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_cadence_name__c": {"name": "salesloft1__most_recent_cadence_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_last_completed_step__c": {"name": "salesloft1__most_recent_last_completed_step__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__primary_contact__c": {"name": "salesloft1__primary_contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type_as_per_deal_summary__c": {"name": "deal_type_as_per_deal_summary__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "msa_type__c": {"name": "msa_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manual_team_attribution__c": {"name": "manual_team_attribution__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "purchase_order_expiration_date__c": {"name": "purchase_order_expiration_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recalculate_deal_type__c": {"name": "recalculate_deal_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "show_discount_percentage__c": {"name": "show_discount_percentage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_pb__c": {"name": "run_pb__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "run_pb2__c": {"name": "run_pb2__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "current_acv_for_retention_usd_loyalty__c": {"name": "current_acv_for_retention_usd_loyalty__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_for_retention_usd_sms__c": {"name": "current_acv_for_retention_usd_sms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_for_retention_usd_ugc__c": {"name": "current_acv_for_retention_usd_ugc__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_usd_loyalty__c": {"name": "previous_acv_usd_loyalty__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_usd_sms__c": {"name": "previous_acv_usd_sms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_usd_ugc__c": {"name": "previous_acv_usd_ugc__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_csm_manager_upon_closed__c": {"name": "loyalty_csm_manager_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "l_r_orders_included_yearly__c": {"name": "l_r_orders_included_yearly__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_annual_included_orders__c": {"name": "reviews_annual_included_orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "annual_products__c": {"name": "annual_products__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bundle_total__c": {"name": "bundle_total__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "primary_csm_manager_upon_closed__c": {"name": "primary_csm_manager_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loss_reason_subscription__c": {"name": "loss_reason_subscription__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_of_am_ownership__c": {"name": "time_of_am_ownership__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gmv__c": {"name": "gmv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "no_price_increase_upon_auto_renewal__c": {"name": "no_price_increase_upon_auto_renewal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "opt_out_for_multi_year_deals__c": {"name": "opt_out_for_multi_year_deals__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "opt_out_without_refund_of_pre_paid__c": {"name": "opt_out_without_refund_of_pre_paid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "price_cap_percentage_for_renewal__c": {"name": "price_cap_percentage_for_renewal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_cap_applied__c": {"name": "price_cap_applied__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sms_fourth_commitment_value__c": {"name": "sms_fourth_commitment_value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_third_commitment_value__c": {"name": "sms_third_commitment_value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscription_customer_type__c": {"name": "subscription_customer_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "termination_for_convenience_no_refund__c": {"name": "termination_for_convenience_no_refund__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sms_earr_usd__c": {"name": "sms_earr_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_earr_usd__c": {"name": "subscriptions_earr_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "early_release_for_partners__c": {"name": "early_release_for_partners__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "early_release_from__c": {"name": "early_release_from__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "staggered_contract__c": {"name": "staggered_contract__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pipeline_inspection_metric__c": {"name": "pipeline_inspection_metric__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pipeline_usd__c": {"name": "pipeline_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_per_installment__c": {"name": "price_per_installment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082655.6476364, "relation_name": "dev_dkruh1.analytics___salesforce_stg__opportunity", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce_rivery', 'opportunity') }}\n\n), analytics___salesforce_stg__opportunity AS (\n\n SELECT\n\t\tid,\n\t\tisdeleted,\n\t\taccountid,\n\t\trecordtypeid,\n\t\tname,\n\t\tdescription,\n\t\tstagename,\n\t\tamount,\n\t\tprobability,\n\t\tclosedate,\n\t\ttype,\n\t\tnextstep,\n\t\tleadsource,\n\t\tisclosed,\n\t\tiswon,\n\t\tforecastcategory,\n\t\tforecastcategoryname,\n\t\tcurrencyisocode,\n\t\tcampaignid,\n\t\thasopportunitylineitem,\n\t\tpricebook2id,\n\t\townerid,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tlastactivitydate,\n\t\tfiscal,\n\t\tcontactid,\n\t\tlastvieweddate,\n\t\tlastreferenceddate,\n\t\tsyncedquoteid,\n\t\thasopenactivity,\n\t\thasoverduetask,\n\t\tactivitymetricid,\n\t\tactivitymetricrollupid,\n\t\tzuora_integration_error__c,\n\t\temail_intent__c,\n\t\twhy_lost__c,\n\t\twinback_reason__c,\n\t\tcancelled_during_trial__c,\n\t\twhy_lost_description__c,\n\t\taccount_from_opportunity__c,\n\t\tstart_date__c,\n\t\texclude_from_renewal_reminder__c,\n\t\tvalue_proposition__c,\n\t\twinback_notes__c,\n\t\twinback_date__c,\n\t\tis_active_subscription__c,\n\t\tcontract_duration__c,\n\t\texpiration_date__c,\n\t\tdiscount__c,\n\t\texclude_from_feedback_process__c,\n\t\tpackage__c,\n\t\torders_included__c,\n\t\tgong__currentgenerators__c,\n\t\tgong__deliveryinstallationstatus__c,\n\t\torder_comments__c,\n\t\tcommercial_contact__c,\n\t\torder_internal_comments__c,\n\t\tgong__maincompetitors__c,\n\t\tlead_id__c,\n\t\tgong__ordernumber__c,\n\t\tsms_commitment_value__c,\n\t\tcancellation_date__c,\n\t\tinsights_product_name__c,\n\t\tsdr__c,\n\t\tsms_commitment_term__c,\n\t\tretention_csm_free_days__c,\n\t\tzuora_csm_free_days_delta__c,\n\t\tprevent_downgrading__c,\n\t\tend_of_contract_extension_days__c,\n\t\toptout_duration__c,\n\t\tfree_period_charge_flag__c,\n\t\ttertiary_seller__c,\n\t\tmain_package_discount__c,\n\t\tretention_csm_free_months_reason__c,\n\t\tretention_csm_free_months__c,\n\t\tpartner_upsell__c,\n\t\tcurrent_contact_role__c,\n\t\tdecision_maker_job_title__c,\n\t\testimated_aov__c,\n\t\tfollow_up_in__c,\n\t\tfollow_up_date_2__c,\n\t\thidden_lost_reason_values__c,\n\t\tstrategic_investment__c,\n\t\tlost_updated_through_flow__c,\n\t\tmonthly_budget__c,\n\t\trequested_feature__c,\n\t\treviews_competitor_price__c,\n\t\treviews_competitor__c,\n\t\ttime_willing_to_commit_of_months__c,\n\t\tvms_competitor_price__c,\n\t\tvms_competitor__c,\n\t\tweb_traffic__c,\n\t\twhy_bad_timing__c,\n\t\tend_of_contract_extension_month__c,\n\t\trenewal_opportunity__c,\n\t\tlast_activity_date__c,\n\t\twhy_do_you_think_they_didn_t_respond__c,\n\t\tmerged_contract__c,\n\t\tinitial_account_product_process__c,\n\t\tgong__trackingnumber__c,\n\t\tdealhub_main_add_on_list_price__c,\n\t\towner_manager_email__c,\n\t\tpre_lost_status__c,\n\t\tsdr_id__c,\n\t\tbill_to__c,\n\t\tparent_account_billing__c,\n\t\tzuora_sync_ups_sales_free_months__c,\n\t\tnext_contact_date__c,\n\t\tupsell_opportunity__c,\n\t\textra_domain_pricing__c,\n\t\tsales_estimated_subscribers__c,\n\t\tnum_of_extra_domain_products__c,\n\t\tsms_usage_cancellation_date__c,\n\t\tzuora_sync_ups_csm_free_months__c,\n\t\tpush_as_new_sale__c,\n\t\tsecondary_seller__c,\n\t\toriginal_iap_tier__c,\n\t\tsecondary_seller_role__c,\n\t\tearr_usd__c,\n\t\tend_date__c,\n\t\tmain_csm__c,\n\t\tlaw_reason__c,\n\t\tinclude_mr__c,\n\t\tusage_opportunity__c,\n\t\tpurchased_as_mr__c,\n\t\tnumber_of_extra_domains__c,\n\t\toriginal_referrer__c,\n\t\tadded_extra_seats__c,\n\t\tincluded_seats__c,\n\t\tno_dedicated_csm__c,\n\t\tnumber_of_insights_products__c,\n\t\task_to_renew__c,\n\t\ttalk_to_csm__c,\n\t\texclude_from_auto_renewal_process__c,\n\t\tcsm_team_leader__c,\n\t\toriginal_owner_role__c,\n\t\toriginal_sdr_role__c,\n\t\treferrer_owner__c,\n\t\tsales_demo_feedback__c,\n\t\tdealhub_quote_id__c,\n\t\ttotal_rev_share_paid__c,\n\t\tinitiate_rev_share_process_temp__c,\n\t\twinback_opportunity__c,\n\t\tadd_to_winback_process__c,\n\t\tsales_estimated_monthly_orders__c,\n\t\tauto_renewal_contact_name__c,\n\t\tselected_product_for_lead_conversion__c,\n\t\tbilling_frequency__c,\n\t\tduplicate_product_family__c,\n\t\testimated_subscriptions_gmv__c,\n\t\tdealhub_main_add_on_total_price__c,\n\t\tadd_on_product__c,\n\t\ttemporary_ar_process_include__c,\n\t\testimated_review_requests_per_month__c,\n\t\tmain_package_prodcut__c,\n\t\temail_marketing_earr__c,\n\t\tnumber_of_add_ons__c,\n\t\tnumber_of_main_products__c,\n\t\topp_products_contain_discount__c,\n\t\tsum_of_sales_price__c,\n\t\trev_share_rate__c,\n\t\tcustomer_refund_required__c,\n\t\tgood_fit_for_the_annual_plan_opp__c,\n\t\tchange_currency_flag__c,\n\t\tconversion_rate_raw__c,\n\t\tsales_enginieer__c,\n\t\tinvoices_in_dunning__c,\n\t\tlast_invoice_fully_paid__c,\n\t\tps_products_flag__c,\n\t\tomnichannel_deal__c,\n\t\tnumber_of_professional_services__c,\n\t\tnumber_of_whitelabel_products__c,\n\t\tps_cost__c,\n\t\tsaas_amount__c,\n\t\tsaas_extra_domain_w_disc__c,\n\t\tsaas_wl_amount__c,\n\t\tdealhub_additional_comments__c,\n\t\thidden_lost_reason_values_renewal_opp__c,\n\t\tlost_sub_reason__c,\n\t\tmid_market_pricing_tier__c,\n\t\tremove_auto_renew_clause__c,\n\t\tpartner_commission_percentage__c,\n\t\tnumber_of_trial_products__c,\n\t\tzuora_sync_manually__c,\n\t\tswell_orders__c,\n\t\tfree_months_for_contract_alignment__c,\n\t\tactual_end_date__c,\n\t\tcontract_renewal_helpe_number__c,\n\t\tcontract_renewal_helper_number_year__c,\n\t\tcontract_renewal_helper_record_type__c,\n\t\tcontract_renewal_manual__c,\n\t\tmerge_to_opportunity__c,\n\t\tswell_acv__c,\n\t\tof_won_child_opps__c,\n\t\tinitiate_contract_renewal_datafix__c,\n\t\tdealhub_signed_date__c,\n\t\tdealhub_stage__c,\n\t\ttechnical_contact_first_name__c,\n\t\ttechnical_contact_last_name__c,\n\t\ttechnical_contact_email__c,\n\t\ttechnical_contact_phone__c,\n\t\tsms_second_commitment_value__c,\n\t\tclient_s_agency__c,\n\t\tmost_recent_assignment_reason__c,\n\t\tmost_recent_assignment_sub_reason__c,\n\t\tinitiate_deal_type_calculation__c,\n\t\tdeal_type__c,\n\t\tauto_closed_by_ar__c,\n\t\tmost_recent_assignment_date__c,\n\t\tinclude_in_auto_renewal_process__c,\n\t\tloss_to_syndication__c,\n\t\tadded_to_lockdown_process_date__c,\n\t\tloyalty_csm_team_upon_closed__c,\n\t\tprimary_contact_name__c,\n\t\ttotal_yotpo_acv__c,\n\t\tdealhub_end_date__c,\n\t\tscsm_deal__c,\n\t\tremove_from_al_process__c,\n\t\tdealhub_url__c,\n\t\tdealhub_new_address__c,\n\t\tdealhub_domain_list__c,\n\t\tdealhub_custom_terms__c,\n\t\tsigned_with_auto_renewal_clause__c,\n\t\tno_touch_notification_date__c,\n\t\tloyalty_csm_upon_closed_won__c,\n\t\tprimary_csm_team_upon_closed__c,\n\t\tprimary_csm_upon_closed__c,\n\t\tactual_end_date_new__c,\n\t\treviews_csm_team_upon_closed__c,\n\t\treviews_csm_upon_closed__c,\n\t\tloyalty_and_referrals_competitors__c,\n\t\tsms_csm_team_upon_closed__c,\n\t\tdelayed_start_date_approved_partners__c,\n\t\talign_with_original_contract_renewal__c,\n\t\tcreate_potential_opportunity__c,\n\t\tis_bundle__c,\n\t\tlocked_account__c,\n\t\tinitiate_tcv_flow__c,\n\t\ttotal_domains__c,\n\t\tsdr_role__c,\n\t\tremove_from_no_touch__c,\n\t\tdealhub_total_seats__c,\n\t\tsms_csm_upon_closed__c,\n\t\tsubscription_number__c,\n\t\tloss_reason_lr__c,\n\t\tloss_reason_reviews__c,\n\t\tinitiate_renewal_opportunity_creation__c,\n\t\tpartner_referral__c,\n\t\tcreated_from_cs_lead__c,\n\t\tlast_invoice_end_date__c,\n\t\tsales_segment__c,\n\t\tsales_region__c,\n\t\tzuora_sync_free_months__c,\n\t\toriginal_curation_provider__c,\n\t\tzuora_sync_lost__c,\n\t\tzuora_sync_account__c,\n\t\tzuora_sync_opportunity__c,\n\t\tzuora_period_change_start_date__c,\n\t\tattribution_channel__c,\n\t\toriginal_loyalty_referral_provider_m__c,\n\t\toriginal_review_provider__c,\n\t\tentered_discovery__c,\n\t\tentered_demo__c,\n\t\tentered_evaluation__c,\n\t\tentered_propose__c,\n\t\tentered_contracting__c,\n\t\tentered_contract_signed__c,\n\t\tentered_closed__c,\n\t\tzuora_sync_merge_opportunity__c,\n\t\tsql_assignment__c,\n\t\trecent_source__c,\n\t\tmost_recent_assignment_bucket__c,\n\t\tdowngraded_package__c,\n\t\tis_this_a_downgrade_to_a_monthly_plan__c,\n\t\tcompany_expansion__c,\n\t\taccount_manager_assignment_date__c,\n\t\tcombined_opportunities_earr__c,\n\t\tsituation__c,\n\t\tpain__c,\n\t\timpact__c,\n\t\tcritical_event__c,\n\t\tdecision__c,\n\t\trelevant_csm_for_cs_outreach__c,\n\t\tinitial_relevant_csm_update__c,\n\t\tzuora_sync_sales_free_months__c,\n\t\tinclude_in_no_touch_process__c,\n\t\texclude_from_no_touch_process__c,\n\t\tdone_t_send_auto_renewal_notification__c,\n\t\tzuora_sync_batch_update__c,\n\t\tzuora_sales_free_month_delta__c,\n\t\tzuora_csm_free_months_delta__c,\n\t\towns_by_group__c,\n\t\tar_helper_order_exclusion__c,\n\t\tmark_as_master__c,\n\t\tzuora_last_charge_amount__c,\n\t\tzuora_last_charge_date__c,\n\t\tadd_auto_renew_clause__c,\n\t\tentered_to_renewal_assist_process_date__c,\n\t\tentered_to_auto_renewal_process_date__c,\n\t\tmigration_from_monthly__c,\n\t\tsms_acv__c,\n\t\tpurchase_order_number__c,\n\t\tlost_details_update_date__c,\n\t\tmain_product_families__c,\n\t\tproduct_interest__c,\n\t\tcovid_implications__c,\n\t\tae_forecast_category__c,\n\t\tzuora_sync_poc_extension__c,\n\t\ttimestamp_retention_csm_free_months__c,\n\t\tentered_quote_email_sent__c,\n\t\tcs_comp_paid__c,\n\t\tconverted__c,\n\t\ttimestamp_billing_frequency__c,\n\t\tsegment_for_bi__c,\n\t\toverlay_ae__c,\n\t\trelevant_app_keys_for_sms__c,\n\t\tincludes_sms_product__c,\n\t\tincludes_self_service_product__c,\n\t\texcluded_from_comp_on__c,\n\t\tups_acv__c,\n\t\tloss_reason_sms__c,\n\t\ttotal_domains_lr__c,\n\t\ttotal_domains_sms__c,\n\t\tvms_acv__c,\n\t\tloss_reason_vms__c,\n\t\tlost_opps_products_considered__c,\n\t\tctp_code__c,\n\t\tups_account__c,\n\t\tzuora_sync_ups_lost__c,\n\t\tconcession_reason__c,\n\t\tups_subscription_number__c,\n\t\tannual_reviews_for_syndication__c,\n\t\ttotal_domains_vms__c,\n\t\tsdr_lookup__c,\n\t\tincludes_syndication__c,\n\t\tsyndication_domains__c,\n\t\ttimestamp_sales_free_months__c,\n\t\tdeprovisioning_outcome__c,\n\t\tdo_not_update_territory__c,\n\t\tterritory_new__c,\n\t\tkey_agency_stakeholder_contact__c,\n\t\tclose_date_pushed__c,\n\t\tmust_win__c,\n\t\tlost_main_products__c,\n\t\topt_out_clause__c,\n\t\tend_of_opt_out_period__c,\n\t\tgold_earr_usd__c,\n\t\tprime_earr_usd__c,\n\t\treviews_csm_manager_upon_closed__c,\n\t\tsms_csm_manager_upon_closed__c,\n\t\tl_r_number_of_total_orders_included__c,\n\t\treviews_number_of_total_orders_included__c,\n\t\tupsell_with_in_term_renewal__c,\n\t\tmemo__c,\n\t\torders_included_l_r__c,\n\t\tother__c,\n\t\tpos_provider__c,\n\t\trenewal_to_opp_won_sale__c,\n\t\tmrr__c,\n\t\tusage_team_attribution__c,\n\t\tx6sense_attribution__c,\n\t\tsecondary_sales_engineer__c,\n\t\tsalesloft1__most_recent_cadence_name__c,\n\t\tsalesloft1__most_recent_last_completed_step__c,\n\t\tsalesloft1__primary_contact__c,\n\t\tdeal_type_as_per_deal_summary__c,\n\t\tmsa_type__c,\n\t\tmanual_team_attribution__c,\n\t\tpurchase_order_expiration_date__c,\n\t\trecalculate_deal_type__c,\n\t\tshow_discount_percentage__c,\n\t\trun_pb__c,\n\t\trun_pb2__c,\n\t\tcurrent_acv_for_retention_usd_loyalty__c,\n\t\tcurrent_acv_for_retention_usd_sms__c,\n\t\tcurrent_acv_for_retention_usd_ugc__c,\n\t\tprevious_acv_usd_loyalty__c,\n\t\tprevious_acv_usd_sms__c,\n\t\tprevious_acv_usd_ugc__c,\n\t\tloyalty_csm_manager_upon_closed__c,\n\t\tl_r_orders_included_yearly__c,\n\t\treviews_annual_included_orders__c,\n\t\tannual_products__c,\n\t\tbundle_total__c,\n\t\tprimary_csm_manager_upon_closed__c,\n\t\tloss_reason_subscription__c,\n\t\ttime_of_am_ownership__c,\n\t\tgmv__c,\n\t\tno_price_increase_upon_auto_renewal__c,\n\t\topt_out_for_multi_year_deals__c,\n\t\topt_out_without_refund_of_pre_paid__c,\n\t\tprice_cap_percentage_for_renewal__c,\n\t\tprice_cap_applied__c,\n\t\tsms_fourth_commitment_value__c,\n\t\tsms_third_commitment_value__c,\n\t\tsubscription_customer_type__c,\n\t\ttermination_for_convenience_no_refund__c,\n\t\tsms_earr_usd__c,\n\t\tsubscriptions_earr_usd__c,\n\t\tearly_release_for_partners__c,\n\t\tearly_release_from__c,\n\t\tstaggered_contract__c,\n\t\tpipeline_inspection_metric__c,\n\t\tpipeline_usd__c,\n\t\tprice_per_installment__c\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__opportunity", "language": "sql", "refs": [], "sources": [["analytics__salesforce_rivery", "opportunity"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce_rivery.opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce_rivery.opportunity\n\n), analytics___salesforce_stg__opportunity AS (\n\n SELECT\n\t\tid,\n\t\tisdeleted,\n\t\taccountid,\n\t\trecordtypeid,\n\t\tname,\n\t\tdescription,\n\t\tstagename,\n\t\tamount,\n\t\tprobability,\n\t\tclosedate,\n\t\ttype,\n\t\tnextstep,\n\t\tleadsource,\n\t\tisclosed,\n\t\tiswon,\n\t\tforecastcategory,\n\t\tforecastcategoryname,\n\t\tcurrencyisocode,\n\t\tcampaignid,\n\t\thasopportunitylineitem,\n\t\tpricebook2id,\n\t\townerid,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tlastactivitydate,\n\t\tfiscal,\n\t\tcontactid,\n\t\tlastvieweddate,\n\t\tlastreferenceddate,\n\t\tsyncedquoteid,\n\t\thasopenactivity,\n\t\thasoverduetask,\n\t\tactivitymetricid,\n\t\tactivitymetricrollupid,\n\t\tzuora_integration_error__c,\n\t\temail_intent__c,\n\t\twhy_lost__c,\n\t\twinback_reason__c,\n\t\tcancelled_during_trial__c,\n\t\twhy_lost_description__c,\n\t\taccount_from_opportunity__c,\n\t\tstart_date__c,\n\t\texclude_from_renewal_reminder__c,\n\t\tvalue_proposition__c,\n\t\twinback_notes__c,\n\t\twinback_date__c,\n\t\tis_active_subscription__c,\n\t\tcontract_duration__c,\n\t\texpiration_date__c,\n\t\tdiscount__c,\n\t\texclude_from_feedback_process__c,\n\t\tpackage__c,\n\t\torders_included__c,\n\t\tgong__currentgenerators__c,\n\t\tgong__deliveryinstallationstatus__c,\n\t\torder_comments__c,\n\t\tcommercial_contact__c,\n\t\torder_internal_comments__c,\n\t\tgong__maincompetitors__c,\n\t\tlead_id__c,\n\t\tgong__ordernumber__c,\n\t\tsms_commitment_value__c,\n\t\tcancellation_date__c,\n\t\tinsights_product_name__c,\n\t\tsdr__c,\n\t\tsms_commitment_term__c,\n\t\tretention_csm_free_days__c,\n\t\tzuora_csm_free_days_delta__c,\n\t\tprevent_downgrading__c,\n\t\tend_of_contract_extension_days__c,\n\t\toptout_duration__c,\n\t\tfree_period_charge_flag__c,\n\t\ttertiary_seller__c,\n\t\tmain_package_discount__c,\n\t\tretention_csm_free_months_reason__c,\n\t\tretention_csm_free_months__c,\n\t\tpartner_upsell__c,\n\t\tcurrent_contact_role__c,\n\t\tdecision_maker_job_title__c,\n\t\testimated_aov__c,\n\t\tfollow_up_in__c,\n\t\tfollow_up_date_2__c,\n\t\thidden_lost_reason_values__c,\n\t\tstrategic_investment__c,\n\t\tlost_updated_through_flow__c,\n\t\tmonthly_budget__c,\n\t\trequested_feature__c,\n\t\treviews_competitor_price__c,\n\t\treviews_competitor__c,\n\t\ttime_willing_to_commit_of_months__c,\n\t\tvms_competitor_price__c,\n\t\tvms_competitor__c,\n\t\tweb_traffic__c,\n\t\twhy_bad_timing__c,\n\t\tend_of_contract_extension_month__c,\n\t\trenewal_opportunity__c,\n\t\tlast_activity_date__c,\n\t\twhy_do_you_think_they_didn_t_respond__c,\n\t\tmerged_contract__c,\n\t\tinitial_account_product_process__c,\n\t\tgong__trackingnumber__c,\n\t\tdealhub_main_add_on_list_price__c,\n\t\towner_manager_email__c,\n\t\tpre_lost_status__c,\n\t\tsdr_id__c,\n\t\tbill_to__c,\n\t\tparent_account_billing__c,\n\t\tzuora_sync_ups_sales_free_months__c,\n\t\tnext_contact_date__c,\n\t\tupsell_opportunity__c,\n\t\textra_domain_pricing__c,\n\t\tsales_estimated_subscribers__c,\n\t\tnum_of_extra_domain_products__c,\n\t\tsms_usage_cancellation_date__c,\n\t\tzuora_sync_ups_csm_free_months__c,\n\t\tpush_as_new_sale__c,\n\t\tsecondary_seller__c,\n\t\toriginal_iap_tier__c,\n\t\tsecondary_seller_role__c,\n\t\tearr_usd__c,\n\t\tend_date__c,\n\t\tmain_csm__c,\n\t\tlaw_reason__c,\n\t\tinclude_mr__c,\n\t\tusage_opportunity__c,\n\t\tpurchased_as_mr__c,\n\t\tnumber_of_extra_domains__c,\n\t\toriginal_referrer__c,\n\t\tadded_extra_seats__c,\n\t\tincluded_seats__c,\n\t\tno_dedicated_csm__c,\n\t\tnumber_of_insights_products__c,\n\t\task_to_renew__c,\n\t\ttalk_to_csm__c,\n\t\texclude_from_auto_renewal_process__c,\n\t\tcsm_team_leader__c,\n\t\toriginal_owner_role__c,\n\t\toriginal_sdr_role__c,\n\t\treferrer_owner__c,\n\t\tsales_demo_feedback__c,\n\t\tdealhub_quote_id__c,\n\t\ttotal_rev_share_paid__c,\n\t\tinitiate_rev_share_process_temp__c,\n\t\twinback_opportunity__c,\n\t\tadd_to_winback_process__c,\n\t\tsales_estimated_monthly_orders__c,\n\t\tauto_renewal_contact_name__c,\n\t\tselected_product_for_lead_conversion__c,\n\t\tbilling_frequency__c,\n\t\tduplicate_product_family__c,\n\t\testimated_subscriptions_gmv__c,\n\t\tdealhub_main_add_on_total_price__c,\n\t\tadd_on_product__c,\n\t\ttemporary_ar_process_include__c,\n\t\testimated_review_requests_per_month__c,\n\t\tmain_package_prodcut__c,\n\t\temail_marketing_earr__c,\n\t\tnumber_of_add_ons__c,\n\t\tnumber_of_main_products__c,\n\t\topp_products_contain_discount__c,\n\t\tsum_of_sales_price__c,\n\t\trev_share_rate__c,\n\t\tcustomer_refund_required__c,\n\t\tgood_fit_for_the_annual_plan_opp__c,\n\t\tchange_currency_flag__c,\n\t\tconversion_rate_raw__c,\n\t\tsales_enginieer__c,\n\t\tinvoices_in_dunning__c,\n\t\tlast_invoice_fully_paid__c,\n\t\tps_products_flag__c,\n\t\tomnichannel_deal__c,\n\t\tnumber_of_professional_services__c,\n\t\tnumber_of_whitelabel_products__c,\n\t\tps_cost__c,\n\t\tsaas_amount__c,\n\t\tsaas_extra_domain_w_disc__c,\n\t\tsaas_wl_amount__c,\n\t\tdealhub_additional_comments__c,\n\t\thidden_lost_reason_values_renewal_opp__c,\n\t\tlost_sub_reason__c,\n\t\tmid_market_pricing_tier__c,\n\t\tremove_auto_renew_clause__c,\n\t\tpartner_commission_percentage__c,\n\t\tnumber_of_trial_products__c,\n\t\tzuora_sync_manually__c,\n\t\tswell_orders__c,\n\t\tfree_months_for_contract_alignment__c,\n\t\tactual_end_date__c,\n\t\tcontract_renewal_helpe_number__c,\n\t\tcontract_renewal_helper_number_year__c,\n\t\tcontract_renewal_helper_record_type__c,\n\t\tcontract_renewal_manual__c,\n\t\tmerge_to_opportunity__c,\n\t\tswell_acv__c,\n\t\tof_won_child_opps__c,\n\t\tinitiate_contract_renewal_datafix__c,\n\t\tdealhub_signed_date__c,\n\t\tdealhub_stage__c,\n\t\ttechnical_contact_first_name__c,\n\t\ttechnical_contact_last_name__c,\n\t\ttechnical_contact_email__c,\n\t\ttechnical_contact_phone__c,\n\t\tsms_second_commitment_value__c,\n\t\tclient_s_agency__c,\n\t\tmost_recent_assignment_reason__c,\n\t\tmost_recent_assignment_sub_reason__c,\n\t\tinitiate_deal_type_calculation__c,\n\t\tdeal_type__c,\n\t\tauto_closed_by_ar__c,\n\t\tmost_recent_assignment_date__c,\n\t\tinclude_in_auto_renewal_process__c,\n\t\tloss_to_syndication__c,\n\t\tadded_to_lockdown_process_date__c,\n\t\tloyalty_csm_team_upon_closed__c,\n\t\tprimary_contact_name__c,\n\t\ttotal_yotpo_acv__c,\n\t\tdealhub_end_date__c,\n\t\tscsm_deal__c,\n\t\tremove_from_al_process__c,\n\t\tdealhub_url__c,\n\t\tdealhub_new_address__c,\n\t\tdealhub_domain_list__c,\n\t\tdealhub_custom_terms__c,\n\t\tsigned_with_auto_renewal_clause__c,\n\t\tno_touch_notification_date__c,\n\t\tloyalty_csm_upon_closed_won__c,\n\t\tprimary_csm_team_upon_closed__c,\n\t\tprimary_csm_upon_closed__c,\n\t\tactual_end_date_new__c,\n\t\treviews_csm_team_upon_closed__c,\n\t\treviews_csm_upon_closed__c,\n\t\tloyalty_and_referrals_competitors__c,\n\t\tsms_csm_team_upon_closed__c,\n\t\tdelayed_start_date_approved_partners__c,\n\t\talign_with_original_contract_renewal__c,\n\t\tcreate_potential_opportunity__c,\n\t\tis_bundle__c,\n\t\tlocked_account__c,\n\t\tinitiate_tcv_flow__c,\n\t\ttotal_domains__c,\n\t\tsdr_role__c,\n\t\tremove_from_no_touch__c,\n\t\tdealhub_total_seats__c,\n\t\tsms_csm_upon_closed__c,\n\t\tsubscription_number__c,\n\t\tloss_reason_lr__c,\n\t\tloss_reason_reviews__c,\n\t\tinitiate_renewal_opportunity_creation__c,\n\t\tpartner_referral__c,\n\t\tcreated_from_cs_lead__c,\n\t\tlast_invoice_end_date__c,\n\t\tsales_segment__c,\n\t\tsales_region__c,\n\t\tzuora_sync_free_months__c,\n\t\toriginal_curation_provider__c,\n\t\tzuora_sync_lost__c,\n\t\tzuora_sync_account__c,\n\t\tzuora_sync_opportunity__c,\n\t\tzuora_period_change_start_date__c,\n\t\tattribution_channel__c,\n\t\toriginal_loyalty_referral_provider_m__c,\n\t\toriginal_review_provider__c,\n\t\tentered_discovery__c,\n\t\tentered_demo__c,\n\t\tentered_evaluation__c,\n\t\tentered_propose__c,\n\t\tentered_contracting__c,\n\t\tentered_contract_signed__c,\n\t\tentered_closed__c,\n\t\tzuora_sync_merge_opportunity__c,\n\t\tsql_assignment__c,\n\t\trecent_source__c,\n\t\tmost_recent_assignment_bucket__c,\n\t\tdowngraded_package__c,\n\t\tis_this_a_downgrade_to_a_monthly_plan__c,\n\t\tcompany_expansion__c,\n\t\taccount_manager_assignment_date__c,\n\t\tcombined_opportunities_earr__c,\n\t\tsituation__c,\n\t\tpain__c,\n\t\timpact__c,\n\t\tcritical_event__c,\n\t\tdecision__c,\n\t\trelevant_csm_for_cs_outreach__c,\n\t\tinitial_relevant_csm_update__c,\n\t\tzuora_sync_sales_free_months__c,\n\t\tinclude_in_no_touch_process__c,\n\t\texclude_from_no_touch_process__c,\n\t\tdone_t_send_auto_renewal_notification__c,\n\t\tzuora_sync_batch_update__c,\n\t\tzuora_sales_free_month_delta__c,\n\t\tzuora_csm_free_months_delta__c,\n\t\towns_by_group__c,\n\t\tar_helper_order_exclusion__c,\n\t\tmark_as_master__c,\n\t\tzuora_last_charge_amount__c,\n\t\tzuora_last_charge_date__c,\n\t\tadd_auto_renew_clause__c,\n\t\tentered_to_renewal_assist_process_date__c,\n\t\tentered_to_auto_renewal_process_date__c,\n\t\tmigration_from_monthly__c,\n\t\tsms_acv__c,\n\t\tpurchase_order_number__c,\n\t\tlost_details_update_date__c,\n\t\tmain_product_families__c,\n\t\tproduct_interest__c,\n\t\tcovid_implications__c,\n\t\tae_forecast_category__c,\n\t\tzuora_sync_poc_extension__c,\n\t\ttimestamp_retention_csm_free_months__c,\n\t\tentered_quote_email_sent__c,\n\t\tcs_comp_paid__c,\n\t\tconverted__c,\n\t\ttimestamp_billing_frequency__c,\n\t\tsegment_for_bi__c,\n\t\toverlay_ae__c,\n\t\trelevant_app_keys_for_sms__c,\n\t\tincludes_sms_product__c,\n\t\tincludes_self_service_product__c,\n\t\texcluded_from_comp_on__c,\n\t\tups_acv__c,\n\t\tloss_reason_sms__c,\n\t\ttotal_domains_lr__c,\n\t\ttotal_domains_sms__c,\n\t\tvms_acv__c,\n\t\tloss_reason_vms__c,\n\t\tlost_opps_products_considered__c,\n\t\tctp_code__c,\n\t\tups_account__c,\n\t\tzuora_sync_ups_lost__c,\n\t\tconcession_reason__c,\n\t\tups_subscription_number__c,\n\t\tannual_reviews_for_syndication__c,\n\t\ttotal_domains_vms__c,\n\t\tsdr_lookup__c,\n\t\tincludes_syndication__c,\n\t\tsyndication_domains__c,\n\t\ttimestamp_sales_free_months__c,\n\t\tdeprovisioning_outcome__c,\n\t\tdo_not_update_territory__c,\n\t\tterritory_new__c,\n\t\tkey_agency_stakeholder_contact__c,\n\t\tclose_date_pushed__c,\n\t\tmust_win__c,\n\t\tlost_main_products__c,\n\t\topt_out_clause__c,\n\t\tend_of_opt_out_period__c,\n\t\tgold_earr_usd__c,\n\t\tprime_earr_usd__c,\n\t\treviews_csm_manager_upon_closed__c,\n\t\tsms_csm_manager_upon_closed__c,\n\t\tl_r_number_of_total_orders_included__c,\n\t\treviews_number_of_total_orders_included__c,\n\t\tupsell_with_in_term_renewal__c,\n\t\tmemo__c,\n\t\torders_included_l_r__c,\n\t\tother__c,\n\t\tpos_provider__c,\n\t\trenewal_to_opp_won_sale__c,\n\t\tmrr__c,\n\t\tusage_team_attribution__c,\n\t\tx6sense_attribution__c,\n\t\tsecondary_sales_engineer__c,\n\t\tsalesloft1__most_recent_cadence_name__c,\n\t\tsalesloft1__most_recent_last_completed_step__c,\n\t\tsalesloft1__primary_contact__c,\n\t\tdeal_type_as_per_deal_summary__c,\n\t\tmsa_type__c,\n\t\tmanual_team_attribution__c,\n\t\tpurchase_order_expiration_date__c,\n\t\trecalculate_deal_type__c,\n\t\tshow_discount_percentage__c,\n\t\trun_pb__c,\n\t\trun_pb2__c,\n\t\tcurrent_acv_for_retention_usd_loyalty__c,\n\t\tcurrent_acv_for_retention_usd_sms__c,\n\t\tcurrent_acv_for_retention_usd_ugc__c,\n\t\tprevious_acv_usd_loyalty__c,\n\t\tprevious_acv_usd_sms__c,\n\t\tprevious_acv_usd_ugc__c,\n\t\tloyalty_csm_manager_upon_closed__c,\n\t\tl_r_orders_included_yearly__c,\n\t\treviews_annual_included_orders__c,\n\t\tannual_products__c,\n\t\tbundle_total__c,\n\t\tprimary_csm_manager_upon_closed__c,\n\t\tloss_reason_subscription__c,\n\t\ttime_of_am_ownership__c,\n\t\tgmv__c,\n\t\tno_price_increase_upon_auto_renewal__c,\n\t\topt_out_for_multi_year_deals__c,\n\t\topt_out_without_refund_of_pre_paid__c,\n\t\tprice_cap_percentage_for_renewal__c,\n\t\tprice_cap_applied__c,\n\t\tsms_fourth_commitment_value__c,\n\t\tsms_third_commitment_value__c,\n\t\tsubscription_customer_type__c,\n\t\ttermination_for_convenience_no_refund__c,\n\t\tsms_earr_usd__c,\n\t\tsubscriptions_earr_usd__c,\n\t\tearly_release_for_partners__c,\n\t\tearly_release_from__c,\n\t\tstaggered_contract__c,\n\t\tpipeline_inspection_metric__c,\n\t\tpipeline_usd__c,\n\t\tprice_per_installment__c\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__opportunity", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__opportunity_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__opportunity_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__opportunity_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__opportunity_full", "analytics___salesforce_stg__opportunity_full"], "alias": "analytics___salesforce_stg__opportunity_full", "checksum": {"name": "sha256", "checksum": "8785f64d5a9d7df95d299753aafc9a522b3f77215e3dc6620fb5424bde18c23a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A view for salesforce opportunity object including all formula fields pulled in Rivery full river", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_in_sal__c": {"name": "days_in_sal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "user_id__c": {"name": "user_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key_account__c": {"name": "app_key_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_referrer__c": {"name": "account_referrer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "inherited_lead_source__c": {"name": "inherited_lead_source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "acv_expectancy__c": {"name": "acv_expectancy__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referral_date__c": {"name": "referral_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_count__c": {"name": "opportunity_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referral_type__c": {"name": "referral_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ups_deal__c": {"name": "ups_deal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "deal_type_filter_gs__c": {"name": "deal_type_filter_gs__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gong__gong_count__c": {"name": "gong__gong_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "acv__c": {"name": "acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "platform__c": {"name": "platform__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "close_date_day_less_than_today_day__c": {"name": "close_date_day_less_than_today_day__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_from_last_activity__c": {"name": "days_from_last_activity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "actual_contract_duration__c": {"name": "actual_contract_duration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_csm_super__c": {"name": "account_csm_super__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "conga_csm_notes__c": {"name": "conga_csm_notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "conga_seats_info__c": {"name": "conga_seats_info__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contains_dedicated_csm__c": {"name": "contains_dedicated_csm__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "standalone_insights__c": {"name": "standalone_insights__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_seats__c": {"name": "total_seats__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "csm_free_months_value__c": {"name": "csm_free_months_value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mkto_si__marketoanalyzer__c": {"name": "mkto_si__marketoanalyzer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opp_id_18_digit__c": {"name": "opp_id_18_digit__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "create_date_day_less_than_today_day__c": {"name": "create_date_day_less_than_today_day__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "owner_role_custom__c": {"name": "owner_role_custom__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mm_renewal_notification__c": {"name": "mm_renewal_notification__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "template_id__c": {"name": "template_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name__c": {"name": "account_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_acv__c": {"name": "new_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_duration_months__c": {"name": "contract_duration_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "parent_account__c": {"name": "parent_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tcv__c": {"name": "tcv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_name_formula__c": {"name": "account_name_formula__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sign_test_udi__c": {"name": "sign_test_udi__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_opportunity_package__c": {"name": "renewal_opportunity_package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "conga_payment_terms_days__c": {"name": "conga_payment_terms_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "conga_reminder__c": {"name": "conga_reminder__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "conga_remindin__c": {"name": "conga_remindin__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "csm_owner_role__c": {"name": "csm_owner_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_acv_usd__c": {"name": "new_acv_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sdr_role_old__c": {"name": "sdr_role_old__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_vs_include_review_requests__c": {"name": "estimated_vs_include_review_requests__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_duration_of_contract__c": {"name": "full_duration_of_contract__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dealhub_main_add_on_discount__c": {"name": "dealhub_main_add_on_discount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "per_installment__c": {"name": "per_installment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_discount__c": {"name": "total_discount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "conversion_rate__c": {"name": "conversion_rate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "conga_culture_currency__c": {"name": "conga_culture_currency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sla_status__c": {"name": "sla_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "acv_usd__c": {"name": "acv_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_per_installment_usd__c": {"name": "price_per_installment_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "auto_renewal_request_type__c": {"name": "auto_renewal_request_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "record_type_name__c": {"name": "record_type_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_tax_region__c": {"name": "zuora_tax_region__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "template_id_test__c": {"name": "template_id_test__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_csm_free_days_scenario_price__c": {"name": "zuora_csm_free_days_scenario_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opportunity_age__c": {"name": "opportunity_age__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_renewal_date__c": {"name": "contract_renewal_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_contract__c": {"name": "current_contract__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "days_until_contract_renewal__c": {"name": "days_until_contract_renewal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_paid_by_ups__c": {"name": "total_paid_by_ups__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "visible_name_for_migration__c": {"name": "visible_name_for_migration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "commercial_contact_email__c": {"name": "commercial_contact_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "import_products_to_dealhub__c": {"name": "import_products_to_dealhub__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_acv__c": {"name": "yotpo_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_to_start_date__c": {"name": "days_to_start_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "auto_renewal_exclusion_reason__c": {"name": "auto_renewal_exclusion_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "include_exclude_from_auto_renewal_link__c": {"name": "include_exclude_from_auto_renewal_link__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_acv_swell__c": {"name": "new_acv_swell__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_acv_yotpo__c": {"name": "new_acv_yotpo__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "auto_renewal_customer_choice__c": {"name": "auto_renewal_customer_choice__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date_week_day_name__c": {"name": "start_date_week_day_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actual_duration_new__c": {"name": "actual_duration_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mcv__c": {"name": "mcv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_free_months_value__c": {"name": "sales_free_months_value__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "legal_entity__c": {"name": "legal_entity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "next_rounded_months_from_start_date__c": {"name": "next_rounded_months_from_start_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_address_valid__c": {"name": "account_address_valid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sync_error_reason__c": {"name": "zuora_sync_error_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_bill_cycle_day__c": {"name": "zuora_bill_cycle_day__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "won_opp__c": {"name": "won_opp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_duration_days__c": {"name": "contract_duration_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_period_type__c": {"name": "zuora_period_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_contract_duration__c": {"name": "zuora_contract_duration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_payment_method__c": {"name": "zuora_payment_method__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_duration_for_billing_period__c": {"name": "zuora_duration_for_billing_period__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_discovery__c": {"name": "days_in_discovery__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_demo__c": {"name": "days_in_demo__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_evaluation__c": {"name": "days_in_evaluation__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_propose__c": {"name": "days_in_propose__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_contracting__c": {"name": "days_in_contracting__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_contract_signed__c": {"name": "days_in_contract_signed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "my_opp_sdr__c": {"name": "my_opp_sdr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sal_mtd__c": {"name": "sal_mtd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_communication_profile__c": {"name": "zuora_communication_profile__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_csm_id_helper__c": {"name": "relevant_csm_id_helper__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_free_month_scenario_price__c": {"name": "zuora_free_month_scenario_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "today_s_date__c": {"name": "today_s_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "no_touch_exclusion_reason__c": {"name": "no_touch_exclusion_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "remove_from_nt_process__c": {"name": "remove_from_nt_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sales_free_month_scenario_price__c": {"name": "zuora_sales_free_month_scenario_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "include_exclude_from_no_touch_link__c": {"name": "include_exclude_from_no_touch_link__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "which_renewal_process__c": {"name": "which_renewal_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effective_date_free_months__c": {"name": "effective_date_free_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_discount_for_matan_and_adi__c": {"name": "total_discount_for_matan_and_adi__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "relevant_csm_for_cs_outreach_first_name__c": {"name": "relevant_csm_for_cs_outreach_first_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_accepted_date__c": {"name": "sales_accepted_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_master_opp_id__c": {"name": "account_master_opp_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sal__c": {"name": "sal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "previous_opp_package__c": {"name": "previous_opp_package__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_opp_total_discount__c": {"name": "previous_opp_total_discount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_current_stage__c": {"name": "days_in_current_stage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_earr__c": {"name": "delta_earr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "partner_referral_referrer_type__c": {"name": "partner_referral_referrer_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_in_zuora__c": {"name": "account_in_zuora__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sales_free_days_scenario_price__c": {"name": "zuora_sales_free_days_scenario_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "prevent_sync__c": {"name": "prevent_sync__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "email_service_provider_esp__c": {"name": "email_service_provider_esp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sql_mtd__c": {"name": "sql_mtd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "opportunity_alert__c": {"name": "opportunity_alert__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "test_account__c": {"name": "test_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dealhub_salesallowlegacy__c": {"name": "dealhub_salesallowlegacy__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sales_free_month_price_customer__c": {"name": "zuora_sales_free_month_price_customer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_csm_free_month_price_ups__c": {"name": "zuora_csm_free_month_price_ups__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_csm_free_month_price_customer__c": {"name": "zuora_csm_free_month_price_customer__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_sales_free_month_price_ups__c": {"name": "zuora_sales_free_month_price_ups__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end_date_finance__c": {"name": "end_date_finance__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delta_earr_subscriptions__c": {"name": "delta_earr_subscriptions__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reference_call__c": {"name": "reference_call__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "billing_contract_duration_days__c": {"name": "billing_contract_duration_days__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "start_date_difference_today__c": {"name": "start_date_difference_today__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "close_month__c": {"name": "close_month__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address_validation_needed__c": {"name": "address_validation_needed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hybrid_deal_ht_ss__c": {"name": "hybrid_deal_ht_ss__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "original_referrer_owner__c": {"name": "original_referrer_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "saas_csms_teams_upon_closed__c": {"name": "saas_csms_teams_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "saas_csms_upon_closed__c": {"name": "saas_csms_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_is_csm__c": {"name": "user_is_csm__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "user_is_from_csm_team__c": {"name": "user_is_from_csm_team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_usage_commitment_term_end_date__c": {"name": "current_usage_commitment_term_end_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "downgraded_package_price__c": {"name": "downgraded_package_price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_ds_delta_acv__c": {"name": "total_ds_delta_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_acv_usd_loyalty__c": {"name": "delta_acv_usd_loyalty__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_acv_usd_sms__c": {"name": "delta_acv_usd_sms__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_acv_usd_ugc__c": {"name": "delta_acv_usd_ugc__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_current_acv__c": {"name": "total_current_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_previous_acv__c": {"name": "total_previous_acv__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "partner_involvement_in_onboarding__c": {"name": "partner_involvement_in_onboarding__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_involvement_throughout_deployment__c": {"name": "agency_involvement_throughout_deployment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "additional_context__c": {"name": "additional_context__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_text__c": {"name": "original_referrer_text__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_segment_old__c": {"name": "sales_segment_old__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_usage_commitment_term_start_date__c": {"name": "current_usage_commitment_term_start_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_referral_text__c": {"name": "partner_referral_text__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delta_booking__c": {"name": "delta_booking__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "am_age__c": {"name": "am_age__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_earr_usd__c": {"name": "total_earr_usd__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "seller_region__c": {"name": "seller_region__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082655.7806234, "relation_name": "dev_dkruh1.analytics___salesforce_stg__opportunity_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce_rivery', 'opportunity_full') }}\n\n), analytics___salesforce_stg__opportunity_full AS (\n\n SELECT\n\t\tid,\n\t\tdays_in_sal__c,\n\t\tuser_id__c,\n\t\tapp_key_account__c,\n\t\taccount_referrer__c,\n\t\tinherited_lead_source__c,\n\t\tacv_expectancy__c,\n\t\treferral_date__c,\n\t\topportunity_count__c,\n\t\treferral_type__c,\n\t\tups_deal__c,\n\t\tdeal_type_filter_gs__c,\n\t\tgong__gong_count__c,\n\t\tacv__c,\n\t\tplatform__c,\n\t\tclose_date_day_less_than_today_day__c,\n\t\tdays_from_last_activity__c,\n\t\tactual_contract_duration__c,\n\t\taccount_csm_super__c,\n\t\tconga_csm_notes__c,\n\t\tconga_seats_info__c,\n\t\tcontains_dedicated_csm__c,\n\t\tstandalone_insights__c,\n\t\ttotal_seats__c,\n\t\tcsm_free_months_value__c,\n\t\tmkto_si__marketoanalyzer__c,\n\t\topp_id_18_digit__c,\n\t\tcreate_date_day_less_than_today_day__c,\n\t\towner_role_custom__c,\n\t\tmm_renewal_notification__c,\n\t\ttemplate_id__c,\n\t\taccount_name__c,\n\t\tnew_acv__c,\n\t\tcontract_duration_months__c,\n\t\tparent_account__c,\n\t\ttcv__c,\n\t\taccount_name_formula__c,\n\t\tsign_test_udi__c,\n\t\trenewal_opportunity_package__c,\n\t\tconga_payment_terms_days__c,\n\t\tconga_reminder__c,\n\t\tconga_remindin__c,\n\t\tcsm_owner_role__c,\n\t\tnew_acv_usd__c,\n\t\tsdr_role_old__c,\n\t\testimated_vs_include_review_requests__c,\n\t\tfull_duration_of_contract__c,\n\t\tdealhub_main_add_on_discount__c,\n\t\tper_installment__c,\n\t\ttotal_discount__c,\n\t\tconversion_rate__c,\n\t\tconga_culture_currency__c,\n\t\tsla_status__c,\n\t\tacv_usd__c,\n\t\tprice_per_installment_usd__c,\n\t\tauto_renewal_request_type__c,\n\t\trecord_type_name__c,\n\t\tzuora_tax_region__c,\n\t\ttemplate_id_test__c,\n\t\tzuora_csm_free_days_scenario_price__c,\n\t\topportunity_age__c,\n\t\tcontract_renewal_date__c,\n\t\tcurrent_contract__c,\n\t\tdays_until_contract_renewal__c,\n\t\ttotal_paid_by_ups__c,\n\t\tvisible_name_for_migration__c,\n\t\tcommercial_contact_email__c,\n\t\timport_products_to_dealhub__c,\n\t\tyotpo_acv__c,\n\t\tdays_to_start_date__c,\n\t\tauto_renewal_exclusion_reason__c,\n\t\tinclude_exclude_from_auto_renewal_link__c,\n\t\tnew_acv_swell__c,\n\t\tnew_acv_yotpo__c,\n\t\tauto_renewal_customer_choice__c,\n\t\tstart_date_week_day_name__c,\n\t\tactual_duration_new__c,\n\t\tmcv__c,\n\t\tsales_free_months_value__c,\n\t\tlegal_entity__c,\n\t\tnext_rounded_months_from_start_date__c,\n\t\taccount_address_valid__c,\n\t\tzuora_sync_error_reason__c,\n\t\tzuora_bill_cycle_day__c,\n\t\twon_opp__c,\n\t\tcontract_duration_days__c,\n\t\tzuora_period_type__c,\n\t\tzuora_contract_duration__c,\n\t\tzuora_payment_method__c,\n\t\tzuora_duration_for_billing_period__c,\n\t\tdays_in_discovery__c,\n\t\tdays_in_demo__c,\n\t\tdays_in_evaluation__c,\n\t\tdays_in_propose__c,\n\t\tdays_in_contracting__c,\n\t\tdays_in_contract_signed__c,\n\t\tmy_opp_sdr__c,\n\t\tsal_mtd__c,\n\t\tzuora_communication_profile__c,\n\t\trelevant_csm_id_helper__c,\n\t\tzuora_free_month_scenario_price__c,\n\t\ttoday_s_date__c,\n\t\tno_touch_exclusion_reason__c,\n\t\tremove_from_nt_process__c,\n\t\tzuora_sales_free_month_scenario_price__c,\n\t\tinclude_exclude_from_no_touch_link__c,\n\t\twhich_renewal_process__c,\n\t\teffective_date_free_months__c,\n\t\ttotal_discount_for_matan_and_adi__c,\n\t\trelevant_csm_for_cs_outreach_first_name__c,\n\t\tsales_accepted_date__c,\n\t\taccount_master_opp_id__c,\n\t\tsal__c,\n\t\tprevious_opp_package__c,\n\t\tprevious_opp_total_discount__c,\n\t\tdays_in_current_stage__c,\n\t\tdelta_earr__c,\n\t\tpartner_referral_referrer_type__c,\n\t\taccount_in_zuora__c,\n\t\tzuora_sales_free_days_scenario_price__c,\n\t\tprevent_sync__c,\n\t\temail_service_provider_esp__c,\n\t\tsql_mtd__c,\n\t\topportunity_alert__c,\n\t\ttest_account__c,\n\t\tdealhub_salesallowlegacy__c,\n\t\tzuora_sales_free_month_price_customer__c,\n\t\tzuora_csm_free_month_price_ups__c,\n\t\tzuora_csm_free_month_price_customer__c,\n\t\tzuora_sales_free_month_price_ups__c,\n\t\tend_date_finance__c,\n\t\tdelta_earr_subscriptions__c,\n\t\treference_call__c,\n\t\tbilling_contract_duration_days__c,\n\t\tstart_date_difference_today__c,\n\t\tclose_month__c,\n\t\taddress_validation_needed__c,\n\t\thybrid_deal_ht_ss__c,\n\t\toriginal_referrer_owner__c,\n\t\tsaas_csms_teams_upon_closed__c,\n\t\tsaas_csms_upon_closed__c,\n\t\tuser_is_csm__c,\n\t\tuser_is_from_csm_team__c,\n\t\tcurrent_usage_commitment_term_end_date__c,\n\t\tdowngraded_package_price__c,\n\t\ttotal_ds_delta_acv__c,\n\t\tdelta_acv_usd_loyalty__c,\n\t\tdelta_acv_usd_sms__c,\n\t\tdelta_acv_usd_ugc__c,\n\t\ttotal_current_acv__c,\n\t\ttotal_previous_acv__c,\n\t\tpartner_involvement_in_onboarding__c,\n\t\tagency_involvement_throughout_deployment__c,\n\t\tadditional_context__c,\n\t\toriginal_referrer_text__c,\n\t\tsales_segment_old__c,\n\t\tcurrent_usage_commitment_term_start_date__c,\n\t\tpartner_referral_text__c,\n\t\tdelta_booking__c,\n\t\tam_age__c,\n\t\ttotal_earr_usd__c,\n\t\tseller_region__c\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__opportunity_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce_rivery", "opportunity_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce_rivery.opportunity_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce_rivery.opportunity_full\n\n), analytics___salesforce_stg__opportunity_full AS (\n\n SELECT\n\t\tid,\n\t\tdays_in_sal__c,\n\t\tuser_id__c,\n\t\tapp_key_account__c,\n\t\taccount_referrer__c,\n\t\tinherited_lead_source__c,\n\t\tacv_expectancy__c,\n\t\treferral_date__c,\n\t\topportunity_count__c,\n\t\treferral_type__c,\n\t\tups_deal__c,\n\t\tdeal_type_filter_gs__c,\n\t\tgong__gong_count__c,\n\t\tacv__c,\n\t\tplatform__c,\n\t\tclose_date_day_less_than_today_day__c,\n\t\tdays_from_last_activity__c,\n\t\tactual_contract_duration__c,\n\t\taccount_csm_super__c,\n\t\tconga_csm_notes__c,\n\t\tconga_seats_info__c,\n\t\tcontains_dedicated_csm__c,\n\t\tstandalone_insights__c,\n\t\ttotal_seats__c,\n\t\tcsm_free_months_value__c,\n\t\tmkto_si__marketoanalyzer__c,\n\t\topp_id_18_digit__c,\n\t\tcreate_date_day_less_than_today_day__c,\n\t\towner_role_custom__c,\n\t\tmm_renewal_notification__c,\n\t\ttemplate_id__c,\n\t\taccount_name__c,\n\t\tnew_acv__c,\n\t\tcontract_duration_months__c,\n\t\tparent_account__c,\n\t\ttcv__c,\n\t\taccount_name_formula__c,\n\t\tsign_test_udi__c,\n\t\trenewal_opportunity_package__c,\n\t\tconga_payment_terms_days__c,\n\t\tconga_reminder__c,\n\t\tconga_remindin__c,\n\t\tcsm_owner_role__c,\n\t\tnew_acv_usd__c,\n\t\tsdr_role_old__c,\n\t\testimated_vs_include_review_requests__c,\n\t\tfull_duration_of_contract__c,\n\t\tdealhub_main_add_on_discount__c,\n\t\tper_installment__c,\n\t\ttotal_discount__c,\n\t\tconversion_rate__c,\n\t\tconga_culture_currency__c,\n\t\tsla_status__c,\n\t\tacv_usd__c,\n\t\tprice_per_installment_usd__c,\n\t\tauto_renewal_request_type__c,\n\t\trecord_type_name__c,\n\t\tzuora_tax_region__c,\n\t\ttemplate_id_test__c,\n\t\tzuora_csm_free_days_scenario_price__c,\n\t\topportunity_age__c,\n\t\tcontract_renewal_date__c,\n\t\tcurrent_contract__c,\n\t\tdays_until_contract_renewal__c,\n\t\ttotal_paid_by_ups__c,\n\t\tvisible_name_for_migration__c,\n\t\tcommercial_contact_email__c,\n\t\timport_products_to_dealhub__c,\n\t\tyotpo_acv__c,\n\t\tdays_to_start_date__c,\n\t\tauto_renewal_exclusion_reason__c,\n\t\tinclude_exclude_from_auto_renewal_link__c,\n\t\tnew_acv_swell__c,\n\t\tnew_acv_yotpo__c,\n\t\tauto_renewal_customer_choice__c,\n\t\tstart_date_week_day_name__c,\n\t\tactual_duration_new__c,\n\t\tmcv__c,\n\t\tsales_free_months_value__c,\n\t\tlegal_entity__c,\n\t\tnext_rounded_months_from_start_date__c,\n\t\taccount_address_valid__c,\n\t\tzuora_sync_error_reason__c,\n\t\tzuora_bill_cycle_day__c,\n\t\twon_opp__c,\n\t\tcontract_duration_days__c,\n\t\tzuora_period_type__c,\n\t\tzuora_contract_duration__c,\n\t\tzuora_payment_method__c,\n\t\tzuora_duration_for_billing_period__c,\n\t\tdays_in_discovery__c,\n\t\tdays_in_demo__c,\n\t\tdays_in_evaluation__c,\n\t\tdays_in_propose__c,\n\t\tdays_in_contracting__c,\n\t\tdays_in_contract_signed__c,\n\t\tmy_opp_sdr__c,\n\t\tsal_mtd__c,\n\t\tzuora_communication_profile__c,\n\t\trelevant_csm_id_helper__c,\n\t\tzuora_free_month_scenario_price__c,\n\t\ttoday_s_date__c,\n\t\tno_touch_exclusion_reason__c,\n\t\tremove_from_nt_process__c,\n\t\tzuora_sales_free_month_scenario_price__c,\n\t\tinclude_exclude_from_no_touch_link__c,\n\t\twhich_renewal_process__c,\n\t\teffective_date_free_months__c,\n\t\ttotal_discount_for_matan_and_adi__c,\n\t\trelevant_csm_for_cs_outreach_first_name__c,\n\t\tsales_accepted_date__c,\n\t\taccount_master_opp_id__c,\n\t\tsal__c,\n\t\tprevious_opp_package__c,\n\t\tprevious_opp_total_discount__c,\n\t\tdays_in_current_stage__c,\n\t\tdelta_earr__c,\n\t\tpartner_referral_referrer_type__c,\n\t\taccount_in_zuora__c,\n\t\tzuora_sales_free_days_scenario_price__c,\n\t\tprevent_sync__c,\n\t\temail_service_provider_esp__c,\n\t\tsql_mtd__c,\n\t\topportunity_alert__c,\n\t\ttest_account__c,\n\t\tdealhub_salesallowlegacy__c,\n\t\tzuora_sales_free_month_price_customer__c,\n\t\tzuora_csm_free_month_price_ups__c,\n\t\tzuora_csm_free_month_price_customer__c,\n\t\tzuora_sales_free_month_price_ups__c,\n\t\tend_date_finance__c,\n\t\tdelta_earr_subscriptions__c,\n\t\treference_call__c,\n\t\tbilling_contract_duration_days__c,\n\t\tstart_date_difference_today__c,\n\t\tclose_month__c,\n\t\taddress_validation_needed__c,\n\t\thybrid_deal_ht_ss__c,\n\t\toriginal_referrer_owner__c,\n\t\tsaas_csms_teams_upon_closed__c,\n\t\tsaas_csms_upon_closed__c,\n\t\tuser_is_csm__c,\n\t\tuser_is_from_csm_team__c,\n\t\tcurrent_usage_commitment_term_end_date__c,\n\t\tdowngraded_package_price__c,\n\t\ttotal_ds_delta_acv__c,\n\t\tdelta_acv_usd_loyalty__c,\n\t\tdelta_acv_usd_sms__c,\n\t\tdelta_acv_usd_ugc__c,\n\t\ttotal_current_acv__c,\n\t\ttotal_previous_acv__c,\n\t\tpartner_involvement_in_onboarding__c,\n\t\tagency_involvement_throughout_deployment__c,\n\t\tadditional_context__c,\n\t\toriginal_referrer_text__c,\n\t\tsales_segment_old__c,\n\t\tcurrent_usage_commitment_term_start_date__c,\n\t\tpartner_referral_text__c,\n\t\tdelta_booking__c,\n\t\tam_age__c,\n\t\ttotal_earr_usd__c,\n\t\tseller_region__c\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__opportunity_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__opportunity_prediction_c_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__opportunity_prediction_c_full", "analytics___salesforce_stg__opportunity_prediction_c_full"], "alias": "analytics___salesforce_stg__opportunity_prediction_c_full", "checksum": {"name": "sha256", "checksum": "e05a4f532974feb98853f83f76dc7838add040e5f7b41b97095177865844f830"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ygelband@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"AM_contribution_Assumption__c": {"name": "AM_contribution_Assumption__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "CSM_Loyalty_Risk__c": {"name": "CSM_Loyalty_Risk__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "CSM_Reviews_Risk__c": {"name": "CSM_Reviews_Risk__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "CreatedById": {"name": "CreatedById", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Deal_Summary__c": {"name": "Deal_Summary__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Forecast_Prediction_Notes__c": {"name": "Forecast_Prediction_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Gross_account__c": {"name": "Gross_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Id": {"name": "Id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsDeleted": {"name": "IsDeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "LastModifiedById": {"name": "LastModifiedById", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastReferencedDate": {"name": "LastReferencedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastViewedDate": {"name": "LastViewedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Logo_retention_account__c": {"name": "Logo_retention_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_CSM_Notes__c": {"name": "Loyalty_CSM_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_CSM_Notes_rich__c": {"name": "Loyalty_CSM_Notes_rich__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_Current_ACV__c": {"name": "Loyalty_Current_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_Current_Hedged_ACV__c": {"name": "Loyalty_Current_Hedged_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_Manager_Notes__c": {"name": "Loyalty_Manager_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_Manager_Notes_rich__c": {"name": "Loyalty_Manager_Notes_rich__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_Predictions_Certainty__c": {"name": "Loyalty_Predictions_Certainty__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_Previous_ACV__c": {"name": "Loyalty_Previous_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_Result_Type__c": {"name": "Loyalty_Result_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_Risk_Buckets__c": {"name": "Loyalty_Risk_Buckets__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_logo_retainment_hedged__c": {"name": "Loyalty_logo_retainment_hedged__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_previous_ACV_with_ITC__c": {"name": "Loyalty_previous_ACV_with_ITC__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_result_type_hedged__c": {"name": "Loyalty_result_type_hedged__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Manager_Notes__c": {"name": "Manager_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Name": {"name": "Name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity__c": {"name": "Opportunity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Predicted_Loyalty_ACV__c": {"name": "Predicted_Loyalty_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Predicted_Reviews_ACV__c": {"name": "Predicted_Reviews_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Primary_CSM_Notes__c": {"name": "Primary_CSM_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Primary_CSM_Notes_rich__c": {"name": "Primary_CSM_Notes_rich__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Primary_Manager_Notes__c": {"name": "Primary_Manager_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Primary_Manager_Notes_rich__c": {"name": "Primary_Manager_Notes_rich__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_CSMS_teams_upon_closed__c": {"name": "Relevant_CSMS_teams_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_CSMS_upon_closed__c": {"name": "Relevant_CSMS_upon_closed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_Loyalty_CSM_Team__c": {"name": "Relevant_Loyalty_CSM_Team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_Loyalty_CSM__c": {"name": "Relevant_Loyalty_CSM__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_Reviews_CSM_Team__c": {"name": "Relevant_Reviews_CSM_Team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_Reviews_CSM__c": {"name": "Relevant_Reviews_CSM__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_CSM_Notes__c": {"name": "Reviews_CSM_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_CSM_Notes_rich__c": {"name": "Reviews_CSM_Notes_rich__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Current_ACV__c": {"name": "Reviews_Current_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_Current_Hedged_ACV__c": {"name": "Reviews_Current_Hedged_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_Manager_Notes__c": {"name": "Reviews_Manager_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Manager_Notes_rich__c": {"name": "Reviews_Manager_Notes_rich__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Predictions_Certainty__c": {"name": "Reviews_Predictions_Certainty__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Previous_ACV__c": {"name": "Reviews_Previous_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_Result_Type__c": {"name": "Reviews_Result_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Risk_Buckets__c": {"name": "Reviews_Risk_Buckets__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_logo_retainment_hedged__c": {"name": "Reviews_logo_retainment_hedged__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_previous_ACV_with_ITC__c": {"name": "Reviews_previous_ACV_with_ITC__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_result_type_hedged__c": {"name": "Reviews_result_type_hedged__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_CSM_ACV_Prediction__c": {"name": "SMS_CSM_ACV_Prediction__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SMS_CSM_Notes__c": {"name": "SMS_CSM_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_CSM_Renewal_Prediction__c": {"name": "SMS_CSM_Renewal_Prediction__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SMS_Manager_Notes__c": {"name": "SMS_Manager_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SystemModstamp": {"name": "SystemModstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Total_Hedged_ACV_with_assumptions__c": {"name": "Total_Hedged_ACV_with_assumptions__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Previous_ACV_with_assumptions__c": {"name": "Total_Previous_ACV_with_assumptions__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "USER_is_from_relevant_CSM_team__c": {"name": "USER_is_from_relevant_CSM_team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "USER_is_relevant_CSM__c": {"name": "USER_is_relevant_CSM__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "X2_Months_ACV_Prediction__c": {"name": "X2_Months_ACV_Prediction__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "X2_Months_Contract_Renewal_Prediction__c": {"name": "X2_Months_Contract_Renewal_Prediction__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "X4_Months_ACV_Prediction__c": {"name": "X4_Months_ACV_Prediction__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "X4_Months_Contract_Renewal_Prediction__c": {"name": "X4_Months_Contract_Renewal_Prediction__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ygelband@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ygelband@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082655.8497603, "relation_name": "dev_dkruh1.analytics___salesforce_stg__opportunity_prediction_c_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'opportunity_prediction__c_full') }}\n\n), salesforce_stg__opportunity_prediction_c_full AS (\n\n SELECT \n\t\tAM_contribution_Assumption__c,\n\t\tCSM_Loyalty_Risk__c,\n\t\tCSM_Reviews_Risk__c,\n\t\tCreatedById,\n\t\tCreatedDate,\n\t\tCurrencyIsoCode,\n\t\tDeal_Summary__c,\n\t\tForecast_Prediction_Notes__c,\n\t\tGross_account__c,\n\t\tId,\n\t\tIsDeleted,\n\t\tLastModifiedById,\n\t\tLastModifiedDate,\n\t\tLastReferencedDate,\n\t\tLastViewedDate,\n\t\tLogo_retention_account__c,\n\t\tLoyalty_CSM_Notes__c,\n\t\tLoyalty_CSM_Notes_rich__c,\n\t\tLoyalty_Current_ACV__c,\n\t\tLoyalty_Current_Hedged_ACV__c,\n\t\tLoyalty_Manager_Notes__c,\n\t\tLoyalty_Manager_Notes_rich__c,\n\t\tLoyalty_Predictions_Certainty__c,\n\t\tLoyalty_Previous_ACV__c,\n\t\tLoyalty_Result_Type__c,\n\t\tLoyalty_Risk_Buckets__c,\n\t\tLoyalty_logo_retainment_hedged__c,\n\t\tLoyalty_previous_ACV_with_ITC__c,\n\t\tLoyalty_result_type_hedged__c,\n\t\tManager_Notes__c,\n\t\tName,\n\t\tOpportunity__c,\n\t\tPredicted_Loyalty_ACV__c,\n\t\tPredicted_Reviews_ACV__c,\n\t\tPrimary_CSM_Notes__c,\n\t\tPrimary_CSM_Notes_rich__c,\n\t\tPrimary_Manager_Notes__c,\n\t\tPrimary_Manager_Notes_rich__c,\n\t\tRelevant_CSMS_teams_upon_closed__c,\n\t\tRelevant_CSMS_upon_closed__c,\n\t\tRelevant_Loyalty_CSM_Team__c,\n\t\tRelevant_Loyalty_CSM__c,\n\t\tRelevant_Reviews_CSM_Team__c,\n\t\tRelevant_Reviews_CSM__c,\n\t\tReviews_CSM_Notes__c,\n\t\tReviews_CSM_Notes_rich__c,\n\t\tReviews_Current_ACV__c,\n\t\tReviews_Current_Hedged_ACV__c,\n\t\tReviews_Manager_Notes__c,\n\t\tReviews_Manager_Notes_rich__c,\n\t\tReviews_Predictions_Certainty__c,\n\t\tReviews_Previous_ACV__c,\n\t\tReviews_Result_Type__c,\n\t\tReviews_Risk_Buckets__c,\n\t\tReviews_logo_retainment_hedged__c,\n\t\tReviews_previous_ACV_with_ITC__c,\n\t\tReviews_result_type_hedged__c,\n\t\tSMS_CSM_ACV_Prediction__c,\n\t\tSMS_CSM_Notes__c,\n\t\tSMS_CSM_Renewal_Prediction__c,\n\t\tSMS_Manager_Notes__c,\n\t\tSystemModstamp,\n\t\tTotal_Hedged_ACV_with_assumptions__c,\n\t\tTotal_Previous_ACV_with_assumptions__c,\n\t\tUSER_is_from_relevant_CSM_team__c,\n\t\tUSER_is_relevant_CSM__c,\n\t\tX2_Months_ACV_Prediction__c,\n\t\tX2_Months_Contract_Renewal_Prediction__c,\n\t\tX4_Months_ACV_Prediction__c,\n\t\tX4_Months_Contract_Renewal_Prediction__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__opportunity_prediction_c_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "opportunity_prediction__c_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.opportunity_prediction__c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.opportunity_prediction__c_full\n\n), salesforce_stg__opportunity_prediction_c_full AS (\n\n SELECT \n\t\tAM_contribution_Assumption__c,\n\t\tCSM_Loyalty_Risk__c,\n\t\tCSM_Reviews_Risk__c,\n\t\tCreatedById,\n\t\tCreatedDate,\n\t\tCurrencyIsoCode,\n\t\tDeal_Summary__c,\n\t\tForecast_Prediction_Notes__c,\n\t\tGross_account__c,\n\t\tId,\n\t\tIsDeleted,\n\t\tLastModifiedById,\n\t\tLastModifiedDate,\n\t\tLastReferencedDate,\n\t\tLastViewedDate,\n\t\tLogo_retention_account__c,\n\t\tLoyalty_CSM_Notes__c,\n\t\tLoyalty_CSM_Notes_rich__c,\n\t\tLoyalty_Current_ACV__c,\n\t\tLoyalty_Current_Hedged_ACV__c,\n\t\tLoyalty_Manager_Notes__c,\n\t\tLoyalty_Manager_Notes_rich__c,\n\t\tLoyalty_Predictions_Certainty__c,\n\t\tLoyalty_Previous_ACV__c,\n\t\tLoyalty_Result_Type__c,\n\t\tLoyalty_Risk_Buckets__c,\n\t\tLoyalty_logo_retainment_hedged__c,\n\t\tLoyalty_previous_ACV_with_ITC__c,\n\t\tLoyalty_result_type_hedged__c,\n\t\tManager_Notes__c,\n\t\tName,\n\t\tOpportunity__c,\n\t\tPredicted_Loyalty_ACV__c,\n\t\tPredicted_Reviews_ACV__c,\n\t\tPrimary_CSM_Notes__c,\n\t\tPrimary_CSM_Notes_rich__c,\n\t\tPrimary_Manager_Notes__c,\n\t\tPrimary_Manager_Notes_rich__c,\n\t\tRelevant_CSMS_teams_upon_closed__c,\n\t\tRelevant_CSMS_upon_closed__c,\n\t\tRelevant_Loyalty_CSM_Team__c,\n\t\tRelevant_Loyalty_CSM__c,\n\t\tRelevant_Reviews_CSM_Team__c,\n\t\tRelevant_Reviews_CSM__c,\n\t\tReviews_CSM_Notes__c,\n\t\tReviews_CSM_Notes_rich__c,\n\t\tReviews_Current_ACV__c,\n\t\tReviews_Current_Hedged_ACV__c,\n\t\tReviews_Manager_Notes__c,\n\t\tReviews_Manager_Notes_rich__c,\n\t\tReviews_Predictions_Certainty__c,\n\t\tReviews_Previous_ACV__c,\n\t\tReviews_Result_Type__c,\n\t\tReviews_Risk_Buckets__c,\n\t\tReviews_logo_retainment_hedged__c,\n\t\tReviews_previous_ACV_with_ITC__c,\n\t\tReviews_result_type_hedged__c,\n\t\tSMS_CSM_ACV_Prediction__c,\n\t\tSMS_CSM_Notes__c,\n\t\tSMS_CSM_Renewal_Prediction__c,\n\t\tSMS_Manager_Notes__c,\n\t\tSystemModstamp,\n\t\tTotal_Hedged_ACV_with_assumptions__c,\n\t\tTotal_Previous_ACV_with_assumptions__c,\n\t\tUSER_is_from_relevant_CSM_team__c,\n\t\tUSER_is_relevant_CSM__c,\n\t\tX2_Months_ACV_Prediction__c,\n\t\tX2_Months_Contract_Renewal_Prediction__c,\n\t\tX4_Months_ACV_Prediction__c,\n\t\tX4_Months_Contract_Renewal_Prediction__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__opportunity_prediction_c_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__opportunityfieldhistory": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__opportunityfieldhistory", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.sql", "unique_id": "model.yoda.analytics___salesforce_stg__opportunityfieldhistory", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__opportunityfieldhistory", "analytics___salesforce_stg__opportunityfieldhistory"], "alias": "analytics___salesforce_stg__opportunityfieldhistory", "checksum": {"name": "sha256", "checksum": "dbfe009d9d19af637d5dbbdbf976b7ec345ce31754ffd29a51c78160c295e77a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "field": {"name": "field", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "newvalue": {"name": "newvalue", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oldvalue": {"name": "oldvalue", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunityid": {"name": "opportunityid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "datatype": {"name": "datatype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082655.8808637, "relation_name": "dev_dkruh1.analytics___salesforce_stg__opportunityfieldhistory", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'opportunityfieldhistory') }}\n\n), analytics___salesforce_stg__opportunityfieldhistory AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tfield,\n\t\tid,\n\t\tisdeleted,\n\t\tnewvalue,\n\t\toldvalue,\n\t\topportunityid,\n\t\tdatatype\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__opportunityfieldhistory", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "opportunityfieldhistory"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.opportunityfieldhistory"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.opportunityfieldhistory\n\n), analytics___salesforce_stg__opportunityfieldhistory AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tfield,\n\t\tid,\n\t\tisdeleted,\n\t\tnewvalue,\n\t\toldvalue,\n\t\topportunityid,\n\t\tdatatype\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__opportunityfieldhistory", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__opportunitylineitem_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__opportunitylineitem_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__opportunitylineitem_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__opportunitylineitem_full", "analytics___salesforce_stg__opportunitylineitem_full"], "alias": "analytics___salesforce_stg__opportunitylineitem_full", "checksum": {"name": "sha256", "checksum": "cf996027b2f5a11fb8a81e3f278967f9e9529669f0f665ef671fba2ab46a9cea"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"Add_On_Product__c": {"name": "Add_On_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Average_ACV__c": {"name": "Average_ACV__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Billing_Frequency__c": {"name": "Billing_Frequency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Billing_Frequency_in_number__c": {"name": "Billing_Frequency_in_number__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Bundle_Description__c": {"name": "Bundle_Description__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedById": {"name": "CreatedById", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Customer_Portion_from_List_Price__c": {"name": "Customer_Portion_from_List_Price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Customer_Portion_from_Total_Price__c": {"name": "Customer_Portion_from_Total_Price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Dealhub_Main_Add_on_Product__c": {"name": "Dealhub_Main_Add_on_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Description": {"name": "Description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Discount": {"name": "Discount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Docusign_AnchorTag_Helper__c": {"name": "Docusign_AnchorTag_Helper__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Domain_Product__c": {"name": "Domain_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Estimated_Orders__c": {"name": "Estimated_Orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Id": {"name": "Id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Included_Orders__c": {"name": "Included_Orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Insight_Number_of_Order_Reviews__c": {"name": "Insight_Number_of_Order_Reviews__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Insights_Dashboard__c": {"name": "Insights_Dashboard__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Installment_Amount__c": {"name": "Installment_Amount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "IsDeleted": {"name": "IsDeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Is_Add_On__c": {"name": "Is_Add_On__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Is_Bundle__c": {"name": "Is_Bundle__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "LastModifiedById": {"name": "LastModifiedById", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Legacy_Product__c": {"name": "Legacy_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ListPrice": {"name": "ListPrice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Moderation_Service__c": {"name": "Moderation_Service__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Name": {"name": "Name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "No_CSM__c": {"name": "No_CSM__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Number_of_Hours__c": {"name": "Number_of_Hours__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_of_Included_Reviews__c": {"name": "Number_of_Included_Reviews__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_of_Seats__c": {"name": "Number_of_Seats__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "OpportunityId": {"name": "OpportunityId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Merge_To_Id__c": {"name": "Opportunity_Merge_To_Id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Product_ID__c": {"name": "Opportunity_Product_ID__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Overage_Charge__c": {"name": "Overage_Charge__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Package_Name__c": {"name": "Package_Name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Package_Product__c": {"name": "Package_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Parent_Bundle_SKU__c": {"name": "Parent_Bundle_SKU__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Parent_Bundle__c": {"name": "Parent_Bundle__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Pre_Overage_Price__c": {"name": "Pre_Overage_Price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "PricebookEntryId": {"name": "PricebookEntryId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product2Id": {"name": "Product2Id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ProductCode": {"name": "ProductCode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Category__c": {"name": "Product_Category__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Family__c": {"name": "Product_Family__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Included_Seats_Total__c": {"name": "Product_Included_Seats_Total__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Included_Seats__c": {"name": "Product_Included_Seats__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Line_MRR__c": {"name": "Product_Line_MRR__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Name__c": {"name": "Product_Name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Proration_Today__c": {"name": "Product_Proration_Today__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Proration__c": {"name": "Product_Proration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Production_Rate_Paln_Id__c": {"name": "Production_Rate_Paln_Id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Production_Rate_Plan_Charge_Discount_Id__c": {"name": "Production_Rate_Plan_Charge_Discount_Id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Production_Rate_Plan_Charge_Recurring_Id__c": {"name": "Production_Rate_Plan_Charge_Recurring_Id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Professional_Service_Product__c": {"name": "Professional_Service_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Quantity": {"name": "Quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Rate_Paln_Id__c": {"name": "Rate_Paln_Id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Rate_Plan_Charge_Discount_Id__c": {"name": "Rate_Plan_Charge_Discount_Id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Rate_Plan_Charge_Recurring_Id__c": {"name": "Rate_Plan_Charge_Recurring_Id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Seat_License_Product__c": {"name": "Seat_License_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Self_Service__c": {"name": "Self_Service__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ServiceDate": {"name": "ServiceDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Start_Date__c": {"name": "Start_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SortOrder": {"name": "SortOrder", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "Syndication_Product__c": {"name": "Syndication_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SystemModstamp": {"name": "SystemModstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "TotalPrice": {"name": "TotalPrice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Discount_Amount__c": {"name": "Total_Discount_Amount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_List_Price__c": {"name": "Total_List_Price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Price_No_Discount__c": {"name": "Total_Price_No_Discount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Price_USD__c": {"name": "Total_Price_USD__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Trial_Product__c": {"name": "Trial_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "UPS_Portion_from_List_Price__c": {"name": "UPS_Portion_from_List_Price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "UPS_Portion_from_Total_Price__c": {"name": "UPS_Portion_from_Total_Price__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "UnitPrice": {"name": "UnitPrice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Unit_Price_For_Free_Months_Scenario__c": {"name": "Unit_Price_For_Free_Months_Scenario__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Whitelabel_Product__c": {"name": "Whitelabel_Product__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Zuora_Charge_Model__c": {"name": "Zuora_Charge_Model__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_applyToDiscount_Type__c": {"name": "Zuora_applyToDiscount_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "test__c": {"name": "test__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rn": {"name": "rn", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082655.9655323, "relation_name": "dev_dkruh1.analytics___salesforce_stg__opportunitylineitem_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'opportunitylineitem_full') }}\n\n), salesforce_stg__opportunitylineitem_full AS (\n\n SELECT \n\t\tAdd_On_Product__c,\n\t\tAverage_ACV__c,\n\t\tBilling_Frequency__c,\n\t\tBilling_Frequency_in_number__c,\n\t\tBundle_Description__c,\n\t\tCreatedById,\n\t\tCreatedDate,\n\t\tCurrencyIsoCode,\n\t\tCustomer_Portion_from_List_Price__c,\n\t\tCustomer_Portion_from_Total_Price__c,\n\t\tDealhub_Main_Add_on_Product__c,\n\t\tDescription,\n\t\tDiscount,\n\t\tDocusign_AnchorTag_Helper__c,\n\t\tDomain_Product__c,\n\t\tEstimated_Orders__c,\n\t\tId,\n\t\tIncluded_Orders__c,\n\t\tInsight_Number_of_Order_Reviews__c,\n\t\tInsights_Dashboard__c,\n\t\tInstallment_Amount__c,\n\t\tIsDeleted,\n\t\tIs_Add_On__c,\n\t\tIs_Bundle__c,\n\t\tLastModifiedById,\n\t\tLastModifiedDate,\n\t\tLegacy_Product__c,\n\t\tListPrice,\n\t\tModeration_Service__c,\n\t\tName,\n\t\tNo_CSM__c,\n\t\tNumber_of_Hours__c,\n\t\tNumber_of_Included_Reviews__c,\n\t\tNumber_of_Seats__c,\n\t\tOpportunityId,\n\t\tOpportunity_Merge_To_Id__c,\n\t\tOpportunity_Product_ID__c,\n\t\tOverage_Charge__c,\n\t\tPackage_Name__c,\n\t\tPackage_Product__c,\n\t\tParent_Bundle_SKU__c,\n\t\tParent_Bundle__c,\n\t\tPre_Overage_Price__c,\n\t\tPricebookEntryId,\n\t\tProduct2Id,\n\t\tProductCode,\n\t\tProduct_Category__c,\n\t\tProduct_Family__c,\n\t\tProduct_Included_Seats_Total__c,\n\t\tProduct_Included_Seats__c,\n\t\tProduct_Line_MRR__c,\n\t\tProduct_Name__c,\n\t\tProduct_Proration_Today__c,\n\t\tProduct_Proration__c,\n\t\tProduction_Rate_Paln_Id__c,\n\t\tProduction_Rate_Plan_Charge_Discount_Id__c,\n\t\tProduction_Rate_Plan_Charge_Recurring_Id__c,\n\t\tProfessional_Service_Product__c,\n\t\tQuantity,\n\t\tRate_Paln_Id__c,\n\t\tRate_Plan_Charge_Discount_Id__c,\n\t\tRate_Plan_Charge_Recurring_Id__c,\n\t\tSeat_License_Product__c,\n\t\tSelf_Service__c,\n\t\tServiceDate,\n\t\tStart_Date__c,\n\t\tSortOrder,\n\t\tSyndication_Product__c,\n\t\tSystemModstamp,\n\t\tTotalPrice,\n\t\tTotal_Discount_Amount__c,\n\t\tTotal_List_Price__c,\n\t\tTotal_Price_No_Discount__c,\n\t\tTotal_Price_USD__c,\n\t\tTrial_Product__c,\n\t\tUPS_Portion_from_List_Price__c,\n\t\tUPS_Portion_from_Total_Price__c,\n\t\tUnitPrice,\n\t\tUnit_Price_For_Free_Months_Scenario__c,\n\t\tWhitelabel_Product__c,\n\t\tZuora_Charge_Model__c,\n\t\tZuora_applyToDiscount_Type__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\ttest__c,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__opportunitylineitem_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "opportunitylineitem_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.opportunitylineitem_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.opportunitylineitem_full\n\n), salesforce_stg__opportunitylineitem_full AS (\n\n SELECT \n\t\tAdd_On_Product__c,\n\t\tAverage_ACV__c,\n\t\tBilling_Frequency__c,\n\t\tBilling_Frequency_in_number__c,\n\t\tBundle_Description__c,\n\t\tCreatedById,\n\t\tCreatedDate,\n\t\tCurrencyIsoCode,\n\t\tCustomer_Portion_from_List_Price__c,\n\t\tCustomer_Portion_from_Total_Price__c,\n\t\tDealhub_Main_Add_on_Product__c,\n\t\tDescription,\n\t\tDiscount,\n\t\tDocusign_AnchorTag_Helper__c,\n\t\tDomain_Product__c,\n\t\tEstimated_Orders__c,\n\t\tId,\n\t\tIncluded_Orders__c,\n\t\tInsight_Number_of_Order_Reviews__c,\n\t\tInsights_Dashboard__c,\n\t\tInstallment_Amount__c,\n\t\tIsDeleted,\n\t\tIs_Add_On__c,\n\t\tIs_Bundle__c,\n\t\tLastModifiedById,\n\t\tLastModifiedDate,\n\t\tLegacy_Product__c,\n\t\tListPrice,\n\t\tModeration_Service__c,\n\t\tName,\n\t\tNo_CSM__c,\n\t\tNumber_of_Hours__c,\n\t\tNumber_of_Included_Reviews__c,\n\t\tNumber_of_Seats__c,\n\t\tOpportunityId,\n\t\tOpportunity_Merge_To_Id__c,\n\t\tOpportunity_Product_ID__c,\n\t\tOverage_Charge__c,\n\t\tPackage_Name__c,\n\t\tPackage_Product__c,\n\t\tParent_Bundle_SKU__c,\n\t\tParent_Bundle__c,\n\t\tPre_Overage_Price__c,\n\t\tPricebookEntryId,\n\t\tProduct2Id,\n\t\tProductCode,\n\t\tProduct_Category__c,\n\t\tProduct_Family__c,\n\t\tProduct_Included_Seats_Total__c,\n\t\tProduct_Included_Seats__c,\n\t\tProduct_Line_MRR__c,\n\t\tProduct_Name__c,\n\t\tProduct_Proration_Today__c,\n\t\tProduct_Proration__c,\n\t\tProduction_Rate_Paln_Id__c,\n\t\tProduction_Rate_Plan_Charge_Discount_Id__c,\n\t\tProduction_Rate_Plan_Charge_Recurring_Id__c,\n\t\tProfessional_Service_Product__c,\n\t\tQuantity,\n\t\tRate_Paln_Id__c,\n\t\tRate_Plan_Charge_Discount_Id__c,\n\t\tRate_Plan_Charge_Recurring_Id__c,\n\t\tSeat_License_Product__c,\n\t\tSelf_Service__c,\n\t\tServiceDate,\n\t\tStart_Date__c,\n\t\tSortOrder,\n\t\tSyndication_Product__c,\n\t\tSystemModstamp,\n\t\tTotalPrice,\n\t\tTotal_Discount_Amount__c,\n\t\tTotal_List_Price__c,\n\t\tTotal_Price_No_Discount__c,\n\t\tTotal_Price_USD__c,\n\t\tTrial_Product__c,\n\t\tUPS_Portion_from_List_Price__c,\n\t\tUPS_Portion_from_Total_Price__c,\n\t\tUnitPrice,\n\t\tUnit_Price_For_Free_Months_Scenario__c,\n\t\tWhitelabel_Product__c,\n\t\tZuora_Charge_Model__c,\n\t\tZuora_applyToDiscount_Type__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\ttest__c,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__opportunitylineitem_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__partner_referral_c_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__partner_referral_c_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__partner_referral_c_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__partner_referral_c_full", "analytics___salesforce_stg__partner_referral_c_full"], "alias": "analytics___salesforce_stg__partner_referral_c_full", "checksum": {"name": "sha256", "checksum": "04923e61e88ffa83512d4fbafefc9cd53abc951ad9fbee0c1157cb0d77153fe4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"Account_Referrer_Type__c": {"name": "Account_Referrer_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Additional_Context__c": {"name": "Additional_Context__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Agency_Involvement_Throughout_Deployment__c": {"name": "Agency_Involvement_Throughout_Deployment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Annual_Revenue_Referred_Lead_Account__c": {"name": "Annual_Revenue_Referred_Lead_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CS_Tags__c": {"name": "CS_Tags__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedById": {"name": "CreatedById", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Date_Changed_From_Heads_Up__c": {"name": "Date_Changed_From_Heads_Up__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Days_Until_Heads_Up_Change__c": {"name": "Days_Until_Heads_Up_Change__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Id": {"name": "Id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Imported_Datafix__c": {"name": "Imported_Datafix__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Include_Renewals__c": {"name": "Include_Renewals__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsDeleted": {"name": "IsDeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "LastActivityDate": {"name": "LastActivityDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedById": {"name": "LastModifiedById", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastReferencedDate": {"name": "LastReferencedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastViewedDate": {"name": "LastViewedDate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Managed_Services_Agency__c": {"name": "Managed_Services_Agency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Monthly_Budget__c": {"name": "Monthly_Budget__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "My_PE__c": {"name": "My_PE__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Name": {"name": "Name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_Referrer_Owner_New__c": {"name": "Original_Referrer_Owner_New__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_Referrer_Owner__c": {"name": "Original_Referrer_Owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Outbound_Referral_Status__c": {"name": "Outbound_Referral_Status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "OwnerId": {"name": "OwnerId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "PM_Role__c": {"name": "PM_Role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Account_Community_Acc_Help__c": {"name": "Partner_Account_Community_Acc_Help__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Partner_Account__c": {"name": "Partner_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Contact__c": {"name": "Partner_Contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Involvement_in_Onboarding__c": {"name": "Partner_Involvement_in_Onboarding__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Manger__c": {"name": "Partner_Manger__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Marketing_Campaign__c": {"name": "Partner_Marketing_Campaign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Owner__c": {"name": "Partner_Owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Referral_ID_18_Digit__c": {"name": "Partner_Referral_ID_18_Digit__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Upsell__c": {"name": "Partner_Upsell__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Partner_name_text__c": {"name": "Partner_name_text__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Phase_2_Date__c": {"name": "Phase_2_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Phase_2_Notes__c": {"name": "Phase_2_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Phase_2_Product_Interest__c": {"name": "Phase_2_Product_Interest__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Platforms_Considering__c": {"name": "Platforms_Considering__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Interest__c": {"name": "Product_Interest__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Claim_Duration__c": {"name": "Referral_Claim_Duration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Claim_Period_End_Date__c": {"name": "Referral_Claim_Period_End_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Date__c": {"name": "Referral_Date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Notes__c": {"name": "Referral_Notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Source__c": {"name": "Referral_Source__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Sub_Type__c": {"name": "Referral_Sub_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Type__c": {"name": "Referral_Type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Account__c": {"name": "Referred_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_By_Email_Partner_Referral_Form__c": {"name": "Referred_By_Email_Partner_Referral_Form__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_By_Partner_Referral_Form__c": {"name": "Referred_By_Partner_Referral_Form__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Contact__c": {"name": "Referred_Contact__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Account_Owner__c": {"name": "Referred_Lead_Account_Owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Account_Status__c": {"name": "Referred_Lead_Account_Status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Account__c": {"name": "Referred_Lead_Account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Contact_Annual_Revenue__c": {"name": "Referred_Lead_Contact_Annual_Revenue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Contact_Monthly_Orders__c": {"name": "Referred_Lead_Contact_Monthly_Orders__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Contact_Platform__c": {"name": "Referred_Lead_Contact_Platform__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead__c": {"name": "Referred_Lead__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_lead_Account_Name_Text__c": {"name": "Referred_lead_Account_Name_Text__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_to_Growth__c": {"name": "Referred_to_Growth__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Renewal_Rev_Share_Rate__c": {"name": "Renewal_Rev_Share_Rate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Rev_Share_Rate__c": {"name": "Rev_Share_Rate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Solution_Needed__c": {"name": "Solution_Needed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SystemModstamp": {"name": "SystemModstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Trigger_Notification__c": {"name": "Trigger_Notification__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082656.0331652, "relation_name": "dev_dkruh1.analytics___salesforce_stg__partner_referral_c_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'partner_referral__c_full') }}\n\n), salesforce_stg__partner_referral_c_full AS (\n\n SELECT \n\t\tAccount_Referrer_Type__c,\n\t\tAdditional_Context__c,\n\t\tAgency_Involvement_Throughout_Deployment__c,\n\t\tAnnual_Revenue_Referred_Lead_Account__c,\n\t\tCS_Tags__c,\n\t\tCreatedById,\n\t\tCreatedDate,\n\t\tCurrencyIsoCode,\n\t\tDate_Changed_From_Heads_Up__c,\n\t\tDays_Until_Heads_Up_Change__c,\n\t\tId,\n\t\tImported_Datafix__c,\n\t\tInclude_Renewals__c,\n\t\tIsDeleted,\n\t\tLastActivityDate,\n\t\tLastModifiedById,\n\t\tLastModifiedDate,\n\t\tLastReferencedDate,\n\t\tLastViewedDate,\n\t\tManaged_Services_Agency__c,\n\t\tMonthly_Budget__c,\n\t\tMy_PE__c,\n\t\tName,\n\t\tOriginal_Referrer_Owner_New__c,\n\t\tOriginal_Referrer_Owner__c,\n\t\tOutbound_Referral_Status__c,\n\t\tOwnerId,\n\t\tPM_Role__c,\n\t\tPartner_Account_Community_Acc_Help__c,\n\t\tPartner_Account__c,\n\t\tPartner_Contact__c,\n\t\tPartner_Involvement_in_Onboarding__c,\n\t\tPartner_Manger__c,\n\t\tPartner_Marketing_Campaign__c,\n\t\tPartner_Owner__c,\n\t\tPartner_Referral_ID_18_Digit__c,\n\t\tPartner_Upsell__c,\n\t\tPartner_name_text__c,\n\t\tPhase_2_Date__c,\n\t\tPhase_2_Notes__c,\n\t\tPhase_2_Product_Interest__c,\n\t\tPlatforms_Considering__c,\n\t\tProduct_Interest__c,\n\t\tReferral_Claim_Duration__c,\n\t\tReferral_Claim_Period_End_Date__c,\n\t\tReferral_Date__c,\n\t\tReferral_Notes__c,\n\t\tReferral_Source__c,\n\t\tReferral_Sub_Type__c,\n\t\tReferral_Type__c,\n\t\tReferred_Account__c,\n\t\tReferred_By_Email_Partner_Referral_Form__c,\n\t\tReferred_By_Partner_Referral_Form__c,\n\t\tReferred_Contact__c,\n\t\tReferred_Lead_Account_Owner__c,\n\t\tReferred_Lead_Account_Status__c,\n\t\tReferred_Lead_Account__c,\n\t\tReferred_Lead_Contact_Annual_Revenue__c,\n\t\tReferred_Lead_Contact_Monthly_Orders__c,\n\t\tReferred_Lead_Contact_Platform__c,\n\t\tReferred_Lead__c,\n\t\tReferred_lead_Account_Name_Text__c,\n\t\tReferred_to_Growth__c,\n\t\tRenewal_Rev_Share_Rate__c,\n\t\tRev_Share_Rate__c,\n\t\tSolution_Needed__c,\n\t\tSystemModstamp,\n\t\tTrigger_Notification__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__partner_referral_c_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "partner_referral__c_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.partner_referral__c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.partner_referral__c_full\n\n), salesforce_stg__partner_referral_c_full AS (\n\n SELECT \n\t\tAccount_Referrer_Type__c,\n\t\tAdditional_Context__c,\n\t\tAgency_Involvement_Throughout_Deployment__c,\n\t\tAnnual_Revenue_Referred_Lead_Account__c,\n\t\tCS_Tags__c,\n\t\tCreatedById,\n\t\tCreatedDate,\n\t\tCurrencyIsoCode,\n\t\tDate_Changed_From_Heads_Up__c,\n\t\tDays_Until_Heads_Up_Change__c,\n\t\tId,\n\t\tImported_Datafix__c,\n\t\tInclude_Renewals__c,\n\t\tIsDeleted,\n\t\tLastActivityDate,\n\t\tLastModifiedById,\n\t\tLastModifiedDate,\n\t\tLastReferencedDate,\n\t\tLastViewedDate,\n\t\tManaged_Services_Agency__c,\n\t\tMonthly_Budget__c,\n\t\tMy_PE__c,\n\t\tName,\n\t\tOriginal_Referrer_Owner_New__c,\n\t\tOriginal_Referrer_Owner__c,\n\t\tOutbound_Referral_Status__c,\n\t\tOwnerId,\n\t\tPM_Role__c,\n\t\tPartner_Account_Community_Acc_Help__c,\n\t\tPartner_Account__c,\n\t\tPartner_Contact__c,\n\t\tPartner_Involvement_in_Onboarding__c,\n\t\tPartner_Manger__c,\n\t\tPartner_Marketing_Campaign__c,\n\t\tPartner_Owner__c,\n\t\tPartner_Referral_ID_18_Digit__c,\n\t\tPartner_Upsell__c,\n\t\tPartner_name_text__c,\n\t\tPhase_2_Date__c,\n\t\tPhase_2_Notes__c,\n\t\tPhase_2_Product_Interest__c,\n\t\tPlatforms_Considering__c,\n\t\tProduct_Interest__c,\n\t\tReferral_Claim_Duration__c,\n\t\tReferral_Claim_Period_End_Date__c,\n\t\tReferral_Date__c,\n\t\tReferral_Notes__c,\n\t\tReferral_Source__c,\n\t\tReferral_Sub_Type__c,\n\t\tReferral_Type__c,\n\t\tReferred_Account__c,\n\t\tReferred_By_Email_Partner_Referral_Form__c,\n\t\tReferred_By_Partner_Referral_Form__c,\n\t\tReferred_Contact__c,\n\t\tReferred_Lead_Account_Owner__c,\n\t\tReferred_Lead_Account_Status__c,\n\t\tReferred_Lead_Account__c,\n\t\tReferred_Lead_Contact_Annual_Revenue__c,\n\t\tReferred_Lead_Contact_Monthly_Orders__c,\n\t\tReferred_Lead_Contact_Platform__c,\n\t\tReferred_Lead__c,\n\t\tReferred_lead_Account_Name_Text__c,\n\t\tReferred_to_Growth__c,\n\t\tRenewal_Rev_Share_Rate__c,\n\t\tRev_Share_Rate__c,\n\t\tSolution_Needed__c,\n\t\tSystemModstamp,\n\t\tTrigger_Notification__c,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\trn\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__partner_referral_c_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__task": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__task", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.sql", "unique_id": "model.yoda.analytics___salesforce_stg__task", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__task", "analytics___salesforce_stg__task"], "alias": "analytics___salesforce_stg__task", "checksum": {"name": "sha256", "checksum": "2c0be30f63b4b6ef78ac1b3055db4eb940f20c37cacfacd789a4df936698c0ee"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activitydate": {"name": "activitydate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activity_id_18_digit__c": {"name": "activity_id_18_digit__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_event_stage__c": {"name": "agency_event_stage__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "automate_lead_status_hidden_field__c": {"name": "automate_lead_status_hidden_field__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "booked_by_prospect_c__c": {"name": "booked_by_prospect_c__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "call_status__c": {"name": "call_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completion__c": {"name": "completion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "connected_count__c": {"name": "connected_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_role__c": {"name": "created_by_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_flow__c": {"name": "created_by_flow__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "created_by_me__c": {"name": "created_by_me__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_assignment__c": {"name": "demo_assignment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_cancellation_reason__c": {"name": "demo_cancellation_reason__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_status__c": {"name": "demo_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_approval_status__c": {"name": "demo_approval_status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "during_dst__c": {"name": "during_dst__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "gong__gong_selected_process__c": {"name": "gong__gong_selected_process__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isarchived": {"name": "isarchived", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isclosed": {"name": "isclosed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishighpriority": {"name": "ishighpriority", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isrecurrence": {"name": "isrecurrence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreminderset": {"name": "isreminderset", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvisibleinselfservice": {"name": "isvisibleinselfservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_task_from_external_system__c": {"name": "is_task_from_external_system__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_modified_date_for_report__c": {"name": "last_modified_date_for_report__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_lookup__c": {"name": "lead_lookup__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "live_transfer_sdr__c": {"name": "live_transfer_sdr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "medium__c": {"name": "medium__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "on_opp__c": {"name": "on_opp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ownerid": {"name": "ownerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phase__c": {"name": "phase__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priority": {"name": "priority", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_shown__c": {"name": "products_shown__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recordtypeid": {"name": "recordtypeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reminderdatetime": {"name": "reminderdatetime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reschedule__c": {"name": "reschedule__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sdr_role__c": {"name": "sdr_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_role_old__c": {"name": "sdr_role_old__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr__c": {"name": "sdr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_demo_feedback__c": {"name": "sales_demo_feedback__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "selected_product_for_lead_conversion__c": {"name": "selected_product_for_lead_conversion__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "social_activity__c": {"name": "social_activity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subject": {"name": "subject", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tasksubtype": {"name": "tasksubtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "task_completion_date__c": {"name": "task_completion_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "task_creation_time_bucket__c": {"name": "task_creation_time_bucket__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "task_creation_time__c": {"name": "task_creation_time__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "voicemail_count__c": {"name": "voicemail_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "whatid": {"name": "whatid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "whoid": {"name": "whoid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswareiscampaign__c": {"name": "yeswareiscampaign__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yeswareismailmerge__c": {"name": "yeswareismailmerge__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_activitytype__c": {"name": "yesware_activitytype__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_activity_time__c": {"name": "yesware_activity_time__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_bounce__c": {"name": "yesware_bounce__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_connectcall__c": {"name": "yesware_connectcall__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_day__c": {"name": "yesware_day__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_link_click__c": {"name": "yesware_link_click__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_meeting__c": {"name": "yesware_meeting__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_open__c": {"name": "yesware_open__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_reply__c": {"name": "yesware_reply__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_sent__c": {"name": "yesware_sent__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_subject__c": {"name": "yesware_subject__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_template__c": {"name": "yesware_template__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_totalcall__c": {"name": "yesware_totalcall__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "calldurationinseconds": {"name": "calldurationinseconds", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "calltype": {"name": "calltype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloftreplycount__c": {"name": "salesloftreplycount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "salesloft_cadence_id__c": {"name": "salesloft_cadence_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_cadence_name__c": {"name": "salesloft_cadence_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_clicked_count__c": {"name": "salesloft_clicked_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "salesloft_email_template_id__c": {"name": "salesloft_email_template_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_email_template_title__c": {"name": "salesloft_email_template_title__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_day_new__c": {"name": "salesloft_step_day_new__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "salesloft_step_id__c": {"name": "salesloft_step_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_name__c": {"name": "salesloft_step_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_type__c": {"name": "salesloft_step_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_viewed_count__c": {"name": "salesloft_viewed_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unique_click_count__c": {"name": "unique_click_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unique_reply_count__c": {"name": "unique_reply_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unique_view_count__c": {"name": "unique_view_count__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yeswarecampaignid__c": {"name": "yeswarecampaignid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yeswarecampaignname__c": {"name": "yeswarecampaignname__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswarecampaigntotaltouches__c": {"name": "yeswarecampaigntotaltouches__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yeswarecampaigntouchnumber__c": {"name": "yeswarecampaigntouchnumber__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yeswarecampaigntouchtype__c": {"name": "yeswarecampaigntouchtype__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswaretemplateids__c": {"name": "yeswaretemplateids__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswaretemplatenames__c": {"name": "yeswaretemplatenames__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_emailtype__c": {"name": "yesware_emailtype__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "medium_type__c": {"name": "medium_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discovery_call_account_name__c": {"name": "discovery_call_account_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discovery_call_contact_name__c": {"name": "discovery_call_contact_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswaremailmergename__c": {"name": "yeswaremailmergename__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "considering_replatforming_in_12_months__c": {"name": "considering_replatforming_in_12_months__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_topics_discussed__c": {"name": "sms_topics_discussed__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id__c": {"name": "sms_user_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "call_sentiment__c": {"name": "call_sentiment__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "call_disposition__c": {"name": "call_disposition__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_considering__c": {"name": "platform_considering__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "re_platform_notes__c": {"name": "re_platform_notes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "calldisposition": {"name": "calldisposition", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "callobject": {"name": "callobject", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__call_unique_id__c": {"name": "rcsfl__call_unique_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__rc_logging_type__c": {"name": "rcsfl__rc_logging_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__external_whoid__c": {"name": "rcsfl__external_whoid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__call_recording__c": {"name": "rcsfl__call_recording__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__recording_information__c": {"name": "rcsfl__recording_information__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrenceactivityid": {"name": "recurrenceactivityid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencedayofmonth": {"name": "recurrencedayofmonth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrencedayofweekmask": {"name": "recurrencedayofweekmask", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrenceenddateonly": {"name": "recurrenceenddateonly", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrenceinterval": {"name": "recurrenceinterval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrencestartdateonly": {"name": "recurrencestartdateonly", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencetimezonesidkey": {"name": "recurrencetimezonesidkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencetype": {"name": "recurrencetype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completeddatetime": {"name": "completeddatetime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "whatcount": {"name": "whatcount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "whocount": {"name": "whocount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "main_goal__c": {"name": "main_goal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "canceled_cp__c": {"name": "canceled_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "no_show_cp__c": {"name": "no_show_cp__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "salesloft1__call_duration_in_minutes__c": {"name": "salesloft1__call_duration_in_minutes__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__salesloft_type__c": {"name": "salesloft1__salesloft_type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "presentation_link__c": {"name": "presentation_link__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_qbr__c": {"name": "last_qbr__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "labsactionplans__taskaptask__c": {"name": "labsactionplans__taskaptask__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082656.1610785, "relation_name": "dev_dkruh1.analytics___salesforce_stg__task", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce', 'task') }}\n\n), salesforce_stg__task AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\taccountid,\n\t\tactivitydate,\n\t\tactivity_id_18_digit__c,\n\t\tagency_event_stage__c,\n\t\tautomate_lead_status_hidden_field__c,\n\t\tbooked_by_prospect_c__c,\n\t\tcall_status__c,\n\t\tcompletion__c,\n\t\tconnected_count__c,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreated_by_role__c,\n\t\tcreated_by_flow__c,\n\t\tcreated_by_me__c,\n\t\tcurrencyisocode,\n\t\tdemo_assignment__c,\n\t\tdemo_cancellation_reason__c,\n\t\tdemo_status__c,\n\t\tdemo_approval_status__c,\n\t\tdescription,\n\t\tduring_dst__c,\n\t\tgong__gong_selected_process__c,\n\t\tid,\n\t\tisarchived,\n\t\tisclosed,\n\t\tisdeleted,\n\t\tishighpriority,\n\t\tisrecurrence,\n\t\tisreminderset,\n\t\tisvisibleinselfservice,\n\t\tis_task_from_external_system__c,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tlast_modified_date_for_report__c,\n\t\tlead_lookup__c,\n\t\tlive_transfer_sdr__c,\n\t\tmedium__c,\n\t\ton_opp__c,\n\t\townerid,\n\t\tphase__c,\n\t\tpriority,\n\t\tproducts_shown__c,\n\t\trecordtypeid,\n\t\treminderdatetime,\n\t\treschedule__c,\n\t\tsdr_role__c,\n\t\tsdr_role_old__c,\n\t\tsdr__c,\n\t\tsales_demo_feedback__c,\n\t\tselected_product_for_lead_conversion__c,\n\t\tsocial_activity__c,\n\t\tstatus,\n\t\tsubject,\n\t\tsystemmodstamp,\n\t\ttasksubtype,\n\t\ttask_completion_date__c,\n\t\ttask_creation_time_bucket__c,\n\t\ttask_creation_time__c,\n\t\tvoicemail_count__c,\n\t\twhatid,\n\t\twhoid,\n\t\tyeswareiscampaign__c,\n\t\tyeswareismailmerge__c,\n\t\tyesware_activitytype__c,\n\t\tyesware_activity_time__c,\n\t\tyesware_bounce__c,\n\t\tyesware_connectcall__c,\n\t\tyesware_day__c,\n\t\tyesware_link_click__c,\n\t\tyesware_meeting__c,\n\t\tyesware_open__c,\n\t\tyesware_reply__c,\n\t\tyesware_sent__c,\n\t\tyesware_subject__c,\n\t\tyesware_template__c,\n\t\tyesware_totalcall__c,\n\t\tcalldurationinseconds,\n\t\tcalltype,\n\t\tsalesloftreplycount__c,\n\t\tsalesloft_cadence_id__c,\n\t\tsalesloft_cadence_name__c,\n\t\tsalesloft_clicked_count__c,\n\t\tsalesloft_email_template_id__c,\n\t\tsalesloft_email_template_title__c,\n\t\tsalesloft_step_day_new__c,\n\t\tsalesloft_step_id__c,\n\t\tsalesloft_step_name__c,\n\t\tsalesloft_step_type__c,\n\t\tsalesloft_viewed_count__c,\n\t\tunique_click_count__c,\n\t\tunique_reply_count__c,\n\t\tunique_view_count__c,\n\t\tyeswarecampaignid__c,\n\t\tyeswarecampaignname__c,\n\t\tyeswarecampaigntotaltouches__c,\n\t\tyeswarecampaigntouchnumber__c,\n\t\tyeswarecampaigntouchtype__c,\n\t\tyeswaretemplateids__c,\n\t\tyeswaretemplatenames__c,\n\t\tyesware_emailtype__c,\n\t\tmedium_type__c,\n\t\tdiscovery_call_account_name__c,\n\t\tdiscovery_call_contact_name__c,\n\t\ttype,\n\t\tyeswaremailmergename__c,\n\t\tconsidering_replatforming_in_12_months__c,\n\t\tsms_topics_discussed__c,\n\t\tsms_user_id__c,\n\t\tcall_sentiment__c,\n\t\tcall_disposition__c,\n\t\tplatform_considering__c,\n\t\tre_platform_notes__c,\n\t\tcalldisposition,\n\t\tcallobject,\n\t\trcsfl__call_unique_id__c,\n\t\trcsfl__rc_logging_type__c,\n\t\trcsfl__external_whoid__c,\n\t\trcsfl__call_recording__c,\n\t\trcsfl__recording_information__c,\n\t\trecurrenceactivityid,\n\t\trecurrencedayofmonth,\n\t\trecurrencedayofweekmask,\n\t\trecurrenceenddateonly,\n\t\trecurrenceinterval,\n\t\trecurrencestartdateonly,\n\t\trecurrencetimezonesidkey,\n\t\trecurrencetype,\n\t\tcompleteddatetime,\n\t\twhatcount,\n\t\twhocount,\n\t\tmain_goal__c,\n\t\tcanceled_cp__c,\n\t\tno_show_cp__c,\n\t\tsalesloft1__call_duration_in_minutes__c,\n\t\tsalesloft1__salesloft_type__c,\n\t\tpresentation_link__c,\n\t\tlast_qbr__c,\n\t\tlabsactionplans__taskaptask__c\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__task", "language": "sql", "refs": [], "sources": [["analytics__salesforce", "task"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce.task"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce.task\n\n), salesforce_stg__task AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\td,\n\t\tprocessing_time,\n\t\t_sdc_batched_at,\n\t\t_sdc_extracted_at,\n\t\t_sdc_received_at,\n\t\t_sdc_sequence,\n\t\t_sdc_table_version,\n\t\taccountid,\n\t\tactivitydate,\n\t\tactivity_id_18_digit__c,\n\t\tagency_event_stage__c,\n\t\tautomate_lead_status_hidden_field__c,\n\t\tbooked_by_prospect_c__c,\n\t\tcall_status__c,\n\t\tcompletion__c,\n\t\tconnected_count__c,\n\t\tcreatedbyid,\n\t\tcreateddate,\n\t\tcreated_by_role__c,\n\t\tcreated_by_flow__c,\n\t\tcreated_by_me__c,\n\t\tcurrencyisocode,\n\t\tdemo_assignment__c,\n\t\tdemo_cancellation_reason__c,\n\t\tdemo_status__c,\n\t\tdemo_approval_status__c,\n\t\tdescription,\n\t\tduring_dst__c,\n\t\tgong__gong_selected_process__c,\n\t\tid,\n\t\tisarchived,\n\t\tisclosed,\n\t\tisdeleted,\n\t\tishighpriority,\n\t\tisrecurrence,\n\t\tisreminderset,\n\t\tisvisibleinselfservice,\n\t\tis_task_from_external_system__c,\n\t\tlastmodifiedbyid,\n\t\tlastmodifieddate,\n\t\tlast_modified_date_for_report__c,\n\t\tlead_lookup__c,\n\t\tlive_transfer_sdr__c,\n\t\tmedium__c,\n\t\ton_opp__c,\n\t\townerid,\n\t\tphase__c,\n\t\tpriority,\n\t\tproducts_shown__c,\n\t\trecordtypeid,\n\t\treminderdatetime,\n\t\treschedule__c,\n\t\tsdr_role__c,\n\t\tsdr_role_old__c,\n\t\tsdr__c,\n\t\tsales_demo_feedback__c,\n\t\tselected_product_for_lead_conversion__c,\n\t\tsocial_activity__c,\n\t\tstatus,\n\t\tsubject,\n\t\tsystemmodstamp,\n\t\ttasksubtype,\n\t\ttask_completion_date__c,\n\t\ttask_creation_time_bucket__c,\n\t\ttask_creation_time__c,\n\t\tvoicemail_count__c,\n\t\twhatid,\n\t\twhoid,\n\t\tyeswareiscampaign__c,\n\t\tyeswareismailmerge__c,\n\t\tyesware_activitytype__c,\n\t\tyesware_activity_time__c,\n\t\tyesware_bounce__c,\n\t\tyesware_connectcall__c,\n\t\tyesware_day__c,\n\t\tyesware_link_click__c,\n\t\tyesware_meeting__c,\n\t\tyesware_open__c,\n\t\tyesware_reply__c,\n\t\tyesware_sent__c,\n\t\tyesware_subject__c,\n\t\tyesware_template__c,\n\t\tyesware_totalcall__c,\n\t\tcalldurationinseconds,\n\t\tcalltype,\n\t\tsalesloftreplycount__c,\n\t\tsalesloft_cadence_id__c,\n\t\tsalesloft_cadence_name__c,\n\t\tsalesloft_clicked_count__c,\n\t\tsalesloft_email_template_id__c,\n\t\tsalesloft_email_template_title__c,\n\t\tsalesloft_step_day_new__c,\n\t\tsalesloft_step_id__c,\n\t\tsalesloft_step_name__c,\n\t\tsalesloft_step_type__c,\n\t\tsalesloft_viewed_count__c,\n\t\tunique_click_count__c,\n\t\tunique_reply_count__c,\n\t\tunique_view_count__c,\n\t\tyeswarecampaignid__c,\n\t\tyeswarecampaignname__c,\n\t\tyeswarecampaigntotaltouches__c,\n\t\tyeswarecampaigntouchnumber__c,\n\t\tyeswarecampaigntouchtype__c,\n\t\tyeswaretemplateids__c,\n\t\tyeswaretemplatenames__c,\n\t\tyesware_emailtype__c,\n\t\tmedium_type__c,\n\t\tdiscovery_call_account_name__c,\n\t\tdiscovery_call_contact_name__c,\n\t\ttype,\n\t\tyeswaremailmergename__c,\n\t\tconsidering_replatforming_in_12_months__c,\n\t\tsms_topics_discussed__c,\n\t\tsms_user_id__c,\n\t\tcall_sentiment__c,\n\t\tcall_disposition__c,\n\t\tplatform_considering__c,\n\t\tre_platform_notes__c,\n\t\tcalldisposition,\n\t\tcallobject,\n\t\trcsfl__call_unique_id__c,\n\t\trcsfl__rc_logging_type__c,\n\t\trcsfl__external_whoid__c,\n\t\trcsfl__call_recording__c,\n\t\trcsfl__recording_information__c,\n\t\trecurrenceactivityid,\n\t\trecurrencedayofmonth,\n\t\trecurrencedayofweekmask,\n\t\trecurrenceenddateonly,\n\t\trecurrenceinterval,\n\t\trecurrencestartdateonly,\n\t\trecurrencetimezonesidkey,\n\t\trecurrencetype,\n\t\tcompleteddatetime,\n\t\twhatcount,\n\t\twhocount,\n\t\tmain_goal__c,\n\t\tcanceled_cp__c,\n\t\tno_show_cp__c,\n\t\tsalesloft1__call_duration_in_minutes__c,\n\t\tsalesloft1__salesloft_type__c,\n\t\tpresentation_link__c,\n\t\tlast_qbr__c,\n\t\tlabsactionplans__taskaptask__c\n FROM source\n\n)\n\nSELECT * \nFROM salesforce_stg__task", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__user": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__user", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.sql", "unique_id": "model.yoda.analytics___salesforce_stg__user", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__user", "analytics___salesforce_stg__user"], "alias": "analytics___salesforce_stg__user", "checksum": {"name": "sha256", "checksum": "03b5d52425cc3266b6e711f7589dc147beab8ff934a558c0a5e91473df4443ad"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "base model for Salesforce user object's incremental table (non-formula fields)", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "username": {"name": "username", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastname": {"name": "lastname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "firstname": {"name": "firstname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "companyname": {"name": "companyname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "division": {"name": "division", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "department": {"name": "department", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "street": {"name": "street", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "city": {"name": "city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "postalcode": {"name": "postalcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "statecode": {"name": "statecode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countrycode": {"name": "countrycode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "latitude": {"name": "latitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "longitude": {"name": "longitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geocodeaccuracy": {"name": "geocodeaccuracy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "emailpreferencesautobcc": {"name": "emailpreferencesautobcc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "emailpreferencesautobccstayintouch": {"name": "emailpreferencesautobccstayintouch", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "emailpreferencesstayintouchreminder": {"name": "emailpreferencesstayintouchreminder", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "senderemail": {"name": "senderemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sendername": {"name": "sendername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signature": {"name": "signature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stayintouchsubject": {"name": "stayintouchsubject", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stayintouchsignature": {"name": "stayintouchsignature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stayintouchnote": {"name": "stayintouchnote", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fax": {"name": "fax", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mobilephone": {"name": "mobilephone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "alias": {"name": "alias", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "communitynickname": {"name": "communitynickname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "badgetext": {"name": "badgetext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isactive": {"name": "isactive", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "timezonesidkey": {"name": "timezonesidkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userroleid": {"name": "userroleid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "localesidkey": {"name": "localesidkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "receivesinfoemails": {"name": "receivesinfoemails", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "receivesadmininfoemails": {"name": "receivesadmininfoemails", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "emailencodingkey": {"name": "emailencodingkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultcurrencyisocode": {"name": "defaultcurrencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "profileid": {"name": "profileid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usertype": {"name": "usertype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "languagelocalekey": {"name": "languagelocalekey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "employeenumber": {"name": "employeenumber", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delegatedapproverid": {"name": "delegatedapproverid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "managerid": {"name": "managerid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastlogindate": {"name": "lastlogindate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastpasswordchangedate": {"name": "lastpasswordchangedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "numberoffailedlogins": {"name": "numberoffailedlogins", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "offlinetrialexpirationdate": {"name": "offlinetrialexpirationdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "offlinepdatrialexpirationdate": {"name": "offlinepdatrialexpirationdate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "userpermissionsmarketinguser": {"name": "userpermissionsmarketinguser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionsofflineuser": {"name": "userpermissionsofflineuser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionscallcenterautologin": {"name": "userpermissionscallcenterautologin", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionssfcontentuser": {"name": "userpermissionssfcontentuser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionsknowledgeuser": {"name": "userpermissionsknowledgeuser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionsinteractionuser": {"name": "userpermissionsinteractionuser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionssupportuser": {"name": "userpermissionssupportuser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionsliveagentuser": {"name": "userpermissionsliveagentuser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionschatteranswersuser": {"name": "userpermissionschatteranswersuser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "forecastenabled": {"name": "forecastenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesactivityreminderspopup": {"name": "userpreferencesactivityreminderspopup", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceseventreminderscheckboxdefault": {"name": "userpreferenceseventreminderscheckboxdefault", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencestaskreminderscheckboxdefault": {"name": "userpreferencestaskreminderscheckboxdefault", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesremindersoundoff": {"name": "userpreferencesremindersoundoff", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisableallfeedsemail": {"name": "userpreferencesdisableallfeedsemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablefollowersemail": {"name": "userpreferencesdisablefollowersemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisableprofilepostemail": {"name": "userpreferencesdisableprofilepostemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablechangecommentemail": {"name": "userpreferencesdisablechangecommentemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablelatercommentemail": {"name": "userpreferencesdisablelatercommentemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisprofpostcommentemail": {"name": "userpreferencesdisprofpostcommentemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencescontentnoemail": {"name": "userpreferencescontentnoemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencescontentemailasandwhen": {"name": "userpreferencescontentemailasandwhen", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesapexpagesdevelopermode": {"name": "userpreferencesapexpagesdevelopermode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesreceivenonotificationsasapprover": {"name": "userpreferencesreceivenonotificationsasapprover", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesreceivenotificationsasdelegatedapprover": {"name": "userpreferencesreceivenotificationsasdelegatedapprover", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidecsngetchattermobiletask": {"name": "userpreferenceshidecsngetchattermobiletask", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablementionspostemail": {"name": "userpreferencesdisablementionspostemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdismentionscommentemail": {"name": "userpreferencesdismentionscommentemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidecsndesktoptask": {"name": "userpreferenceshidecsndesktoptask", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidechatteronboardingsplash": {"name": "userpreferenceshidechatteronboardingsplash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidesecondchatteronboardingsplash": {"name": "userpreferenceshidesecondchatteronboardingsplash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdiscommentafterlikeemail": {"name": "userpreferencesdiscommentafterlikeemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablelikeemail": {"name": "userpreferencesdisablelikeemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencessortfeedbycomment": {"name": "userpreferencessortfeedbycomment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablemessageemail": {"name": "userpreferencesdisablemessageemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablebookmarkemail": {"name": "userpreferencesdisablebookmarkemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablesharepostemail": {"name": "userpreferencesdisablesharepostemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesenableautosubforfeeds": {"name": "userpreferencesenableautosubforfeeds", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablefilesharenotificationsforapi": {"name": "userpreferencesdisablefilesharenotificationsforapi", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowtitletoexternalusers": {"name": "userpreferencesshowtitletoexternalusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowmanagertoexternalusers": {"name": "userpreferencesshowmanagertoexternalusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowemailtoexternalusers": {"name": "userpreferencesshowemailtoexternalusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowworkphonetoexternalusers": {"name": "userpreferencesshowworkphonetoexternalusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowmobilephonetoexternalusers": {"name": "userpreferencesshowmobilephonetoexternalusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowfaxtoexternalusers": {"name": "userpreferencesshowfaxtoexternalusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowstreetaddresstoexternalusers": {"name": "userpreferencesshowstreetaddresstoexternalusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowcitytoexternalusers": {"name": "userpreferencesshowcitytoexternalusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowstatetoexternalusers": {"name": "userpreferencesshowstatetoexternalusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowpostalcodetoexternalusers": {"name": "userpreferencesshowpostalcodetoexternalusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowcountrytoexternalusers": {"name": "userpreferencesshowcountrytoexternalusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowprofilepictoguestusers": {"name": "userpreferencesshowprofilepictoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowtitletoguestusers": {"name": "userpreferencesshowtitletoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowcitytoguestusers": {"name": "userpreferencesshowcitytoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowstatetoguestusers": {"name": "userpreferencesshowstatetoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowpostalcodetoguestusers": {"name": "userpreferencesshowpostalcodetoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowcountrytoguestusers": {"name": "userpreferencesshowcountrytoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencespipelineviewhidehelppopover": {"name": "userpreferencespipelineviewhidehelppopover", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshides1browserui": {"name": "userpreferenceshides1browserui", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisableendorsementemail": {"name": "userpreferencesdisableendorsementemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencespathassistantcollapsed": {"name": "userpreferencespathassistantcollapsed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencescachediagnostics": {"name": "userpreferencescachediagnostics", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowemailtoguestusers": {"name": "userpreferencesshowemailtoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowmanagertoguestusers": {"name": "userpreferencesshowmanagertoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowworkphonetoguestusers": {"name": "userpreferencesshowworkphonetoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowmobilephonetoguestusers": {"name": "userpreferencesshowmobilephonetoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowfaxtoguestusers": {"name": "userpreferencesshowfaxtoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowstreetaddresstoguestusers": {"name": "userpreferencesshowstreetaddresstoguestusers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceslightningexperiencepreferred": {"name": "userpreferenceslightningexperiencepreferred", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencespreviewlightning": {"name": "userpreferencespreviewlightning", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshideenduseronboardingassistantmodal": {"name": "userpreferenceshideenduseronboardingassistantmodal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidelightningmigrationmodal": {"name": "userpreferenceshidelightningmigrationmodal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidesfxwelcomemat": {"name": "userpreferenceshidesfxwelcomemat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidebiggerphotocallout": {"name": "userpreferenceshidebiggerphotocallout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesglobalnavbarwtshown": {"name": "userpreferencesglobalnavbarwtshown", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesglobalnavgridmenuwtshown": {"name": "userpreferencesglobalnavgridmenuwtshown", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencescreatelexappswtshown": {"name": "userpreferencescreatelexappswtshown", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesfavoriteswtshown": {"name": "userpreferencesfavoriteswtshown", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesrecordhomesectioncollapsewtshown": {"name": "userpreferencesrecordhomesectioncollapsewtshown", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesrecordhomereservedwtshown": {"name": "userpreferencesrecordhomereservedwtshown", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesfavoritesshowtopfavorites": {"name": "userpreferencesfavoritesshowtopfavorites", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesexcludemailappattachments": {"name": "userpreferencesexcludemailappattachments", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencessuppresstasksfxreminders": {"name": "userpreferencessuppresstasksfxreminders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencessuppresseventsfxreminders": {"name": "userpreferencessuppresseventsfxreminders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencespreviewcustomtheme": {"name": "userpreferencespreviewcustomtheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshascelebrationbadge": {"name": "userpreferenceshascelebrationbadge", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesuserdebugmodepref": {"name": "userpreferencesuserdebugmodepref", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencessrhoverrideactivities": {"name": "userpreferencessrhoverrideactivities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesnewlightningreportrunpageenabled": {"name": "userpreferencesnewlightningreportrunpageenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesnativeemailclient": {"name": "userpreferencesnativeemailclient", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "contactid": {"name": "contactid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "callcenterid": {"name": "callcenterid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "extension": {"name": "extension", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "portalrole": {"name": "portalrole", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isportalenabled": {"name": "isportalenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "federationidentifier": {"name": "federationidentifier", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "aboutme": {"name": "aboutme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fullphotourl": {"name": "fullphotourl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smallphotourl": {"name": "smallphotourl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isextindicatorvisible": {"name": "isextindicatorvisible", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "outofofficemessage": {"name": "outofofficemessage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mediumphotourl": {"name": "mediumphotourl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "digestfrequency": {"name": "digestfrequency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultgroupnotificationfrequency": {"name": "defaultgroupnotificationfrequency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bannerphotourl": {"name": "bannerphotourl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smallbannerphotourl": {"name": "smallbannerphotourl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mediumbannerphotourl": {"name": "mediumbannerphotourl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isprofilephotoactive": {"name": "isprofilephotoactive", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "individualid": {"name": "individualid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "low_touch_csm__c": {"name": "low_touch_csm__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "account_manager_csm_pod__c": {"name": "account_manager_csm_pod__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_from_assignment_tracking__c": {"name": "exclude_from_assignment_tracking__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dsfs__dsprosfmembershipstatus__c": {"name": "dsfs__dsprosfmembershipstatus__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dsfs__dsprosfpassword__c": {"name": "dsfs__dsprosfpassword__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dsfs__dsprosfusername__c": {"name": "dsfs__dsprosfusername__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__iscachinganonwebactivitylist__c": {"name": "mkto_si__iscachinganonwebactivitylist__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingbestbets__c": {"name": "mkto_si__iscachingbestbets__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingemailactivitylist__c": {"name": "mkto_si__iscachingemailactivitylist__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachinggroupedwebactivitylist__c": {"name": "mkto_si__iscachinggroupedwebactivitylist__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachinginterestingmomentslist__c": {"name": "mkto_si__iscachinginterestingmomentslist__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingscoringlist__c": {"name": "mkto_si__iscachingscoringlist__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingstreamlist__c": {"name": "mkto_si__iscachingstreamlist__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingwatchlist__c": {"name": "mkto_si__iscachingwatchlist__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingwebactivitylist__c": {"name": "mkto_si__iscachingwebactivitylist__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__sales_insight_counter__c": {"name": "mkto_si__sales_insight_counter__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "calendar_link__c": {"name": "calendar_link__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "s4g_currencies__endpoint__c": {"name": "s4g_currencies__endpoint__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_currency__c": {"name": "user_currency__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gmt__c": {"name": "gmt__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "x18_digits_id__c": {"name": "x18_digits_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_activity_user__c": {"name": "marketing_activity_user__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ignore_claim__c": {"name": "ignore_claim__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "super_csm__c": {"name": "super_csm__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "csm_team__c": {"name": "csm_team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_name__c": {"name": "role_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team__c": {"name": "team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priority_escalation_permission__c": {"name": "priority_escalation_permission__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isqueue__c": {"name": "isqueue__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isintegration__c": {"name": "isintegration__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "queuetype__c": {"name": "queuetype__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_text__c": {"name": "manager_text__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_name__c": {"name": "full_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_assignee__c": {"name": "onboarding_assignee__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "multi_product_csm__c": {"name": "multi_product_csm__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "account_id__c": {"name": "account_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_s_owner__c": {"name": "account_s_owner__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address_fields__c": {"name": "address_fields__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "business_email__c": {"name": "business_email__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "business_name__c": {"name": "business_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company__c": {"name": "company__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_login_date_custom__c": {"name": "last_login_date_custom__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "my_content__c": {"name": "my_content__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "prm_role__c": {"name": "prm_role__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager__c": {"name": "partner_manager__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paypal_account__c": {"name": "paypal_account__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "profile_formula__c": {"name": "profile_formula__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website__c": {"name": "website__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "wire_details_del__c": {"name": "wire_details_del__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "login_user_member__c": {"name": "login_user_member__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "process_base_time_1_min__c": {"name": "process_base_time_1_min__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "invitation_date__c": {"name": "invitation_date__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "wwid__c": {"name": "wwid__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "finance_department_description__c": {"name": "finance_department_description__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type__c": {"name": "type__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ticket_department__c": {"name": "ticket_department__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recordval__rv2disableautovalidate__c": {"name": "recordval__rv2disableautovalidate__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recordval__rv2disabletriggers__c": {"name": "recordval__rv2disabletriggers__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dfsle__canmanageaccount__c": {"name": "dfsle__canmanageaccount__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dfsle__provisioned__c": {"name": "dfsle__provisioned__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dfsle__status__c": {"name": "dfsle__status__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dfsle__username__c": {"name": "dfsle__username__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_seller__c": {"name": "subscription_seller__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usage_seller__c": {"name": "usage_seller__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quota__c": {"name": "quota__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "seller_s_capacity__c": {"name": "seller_s_capacity__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "us_smb_senior_ae__c": {"name": "us_smb_senior_ae__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ambition__isambitionuser__c": {"name": "ambition__isambitionuser__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "retention_goal__c": {"name": "retention_goal__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "wwid_legacy__c": {"name": "wwid_legacy__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "slack_channel_id__c": {"name": "slack_channel_id__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory__c": {"name": "territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082656.361537, "relation_name": "dev_dkruh1.analytics___salesforce_stg__user", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce_rivery', 'user') }}\n\n), analytics___salesforce_stg__user AS (\n\n SELECT \n\t\tid,\n\t\tusername,\n\t\tlastname,\n\t\tfirstname,\n\t\tname,\n\t\tcompanyname,\n\t\tdivision,\n\t\tdepartment,\n\t\ttitle,\n\t\tstreet,\n\t\tcity,\n\t\tstate,\n\t\tpostalcode,\n\t\tcountry,\n\t\tstatecode,\n\t\tcountrycode,\n\t\tlatitude,\n\t\tlongitude,\n\t\tgeocodeaccuracy,\n\t\temail,\n\t\temailpreferencesautobcc,\n\t\temailpreferencesautobccstayintouch,\n\t\temailpreferencesstayintouchreminder,\n\t\tsenderemail,\n\t\tsendername,\n\t\tsignature,\n\t\tstayintouchsubject,\n\t\tstayintouchsignature,\n\t\tstayintouchnote,\n\t\tphone,\n\t\tfax,\n\t\tmobilephone,\n\t\talias,\n\t\tcommunitynickname,\n\t\tbadgetext,\n\t\tisactive,\n\t\ttimezonesidkey,\n\t\tuserroleid,\n\t\tlocalesidkey,\n\t\treceivesinfoemails,\n\t\treceivesadmininfoemails,\n\t\temailencodingkey,\n\t\tdefaultcurrencyisocode,\n\t\tcurrencyisocode,\n\t\tprofileid,\n\t\tusertype,\n\t\tlanguagelocalekey,\n\t\temployeenumber,\n\t\tdelegatedapproverid,\n\t\tmanagerid,\n\t\tlastlogindate,\n\t\tlastpasswordchangedate,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tnumberoffailedlogins,\n\t\tofflinetrialexpirationdate,\n\t\tofflinepdatrialexpirationdate,\n\t\tuserpermissionsmarketinguser,\n\t\tuserpermissionsofflineuser,\n\t\tuserpermissionscallcenterautologin,\n\t\tuserpermissionssfcontentuser,\n\t\tuserpermissionsknowledgeuser,\n\t\tuserpermissionsinteractionuser,\n\t\tuserpermissionssupportuser,\n\t\tuserpermissionsliveagentuser,\n\t\tuserpermissionschatteranswersuser,\n\t\tforecastenabled,\n\t\tuserpreferencesactivityreminderspopup,\n\t\tuserpreferenceseventreminderscheckboxdefault,\n\t\tuserpreferencestaskreminderscheckboxdefault,\n\t\tuserpreferencesremindersoundoff,\n\t\tuserpreferencesdisableallfeedsemail,\n\t\tuserpreferencesdisablefollowersemail,\n\t\tuserpreferencesdisableprofilepostemail,\n\t\tuserpreferencesdisablechangecommentemail,\n\t\tuserpreferencesdisablelatercommentemail,\n\t\tuserpreferencesdisprofpostcommentemail,\n\t\tuserpreferencescontentnoemail,\n\t\tuserpreferencescontentemailasandwhen,\n\t\tuserpreferencesapexpagesdevelopermode,\n\t\tuserpreferencesreceivenonotificationsasapprover,\n\t\tuserpreferencesreceivenotificationsasdelegatedapprover,\n\t\tuserpreferenceshidecsngetchattermobiletask,\n\t\tuserpreferencesdisablementionspostemail,\n\t\tuserpreferencesdismentionscommentemail,\n\t\tuserpreferenceshidecsndesktoptask,\n\t\tuserpreferenceshidechatteronboardingsplash,\n\t\tuserpreferenceshidesecondchatteronboardingsplash,\n\t\tuserpreferencesdiscommentafterlikeemail,\n\t\tuserpreferencesdisablelikeemail,\n\t\tuserpreferencessortfeedbycomment,\n\t\tuserpreferencesdisablemessageemail,\n\t\tuserpreferencesdisablebookmarkemail,\n\t\tuserpreferencesdisablesharepostemail,\n\t\tuserpreferencesenableautosubforfeeds,\n\t\tuserpreferencesdisablefilesharenotificationsforapi,\n\t\tuserpreferencesshowtitletoexternalusers,\n\t\tuserpreferencesshowmanagertoexternalusers,\n\t\tuserpreferencesshowemailtoexternalusers,\n\t\tuserpreferencesshowworkphonetoexternalusers,\n\t\tuserpreferencesshowmobilephonetoexternalusers,\n\t\tuserpreferencesshowfaxtoexternalusers,\n\t\tuserpreferencesshowstreetaddresstoexternalusers,\n\t\tuserpreferencesshowcitytoexternalusers,\n\t\tuserpreferencesshowstatetoexternalusers,\n\t\tuserpreferencesshowpostalcodetoexternalusers,\n\t\tuserpreferencesshowcountrytoexternalusers,\n\t\tuserpreferencesshowprofilepictoguestusers,\n\t\tuserpreferencesshowtitletoguestusers,\n\t\tuserpreferencesshowcitytoguestusers,\n\t\tuserpreferencesshowstatetoguestusers,\n\t\tuserpreferencesshowpostalcodetoguestusers,\n\t\tuserpreferencesshowcountrytoguestusers,\n\t\tuserpreferencespipelineviewhidehelppopover,\n\t\tuserpreferenceshides1browserui,\n\t\tuserpreferencesdisableendorsementemail,\n\t\tuserpreferencespathassistantcollapsed,\n\t\tuserpreferencescachediagnostics,\n\t\tuserpreferencesshowemailtoguestusers,\n\t\tuserpreferencesshowmanagertoguestusers,\n\t\tuserpreferencesshowworkphonetoguestusers,\n\t\tuserpreferencesshowmobilephonetoguestusers,\n\t\tuserpreferencesshowfaxtoguestusers,\n\t\tuserpreferencesshowstreetaddresstoguestusers,\n\t\tuserpreferenceslightningexperiencepreferred,\n\t\tuserpreferencespreviewlightning,\n\t\tuserpreferenceshideenduseronboardingassistantmodal,\n\t\tuserpreferenceshidelightningmigrationmodal,\n\t\tuserpreferenceshidesfxwelcomemat,\n\t\tuserpreferenceshidebiggerphotocallout,\n\t\tuserpreferencesglobalnavbarwtshown,\n\t\tuserpreferencesglobalnavgridmenuwtshown,\n\t\tuserpreferencescreatelexappswtshown,\n\t\tuserpreferencesfavoriteswtshown,\n\t\tuserpreferencesrecordhomesectioncollapsewtshown,\n\t\tuserpreferencesrecordhomereservedwtshown,\n\t\tuserpreferencesfavoritesshowtopfavorites,\n\t\tuserpreferencesexcludemailappattachments,\n\t\tuserpreferencessuppresstasksfxreminders,\n\t\tuserpreferencessuppresseventsfxreminders,\n\t\tuserpreferencespreviewcustomtheme,\n\t\tuserpreferenceshascelebrationbadge,\n\t\tuserpreferencesuserdebugmodepref,\n\t\tuserpreferencessrhoverrideactivities,\n\t\tuserpreferencesnewlightningreportrunpageenabled,\n\t\tuserpreferencesnativeemailclient,\n\t\tcontactid,\n\t\taccountid,\n\t\tcallcenterid,\n\t\textension,\n\t\tportalrole,\n\t\tisportalenabled,\n\t\tfederationidentifier,\n\t\taboutme,\n\t\tfullphotourl,\n\t\tsmallphotourl,\n\t\tisextindicatorvisible,\n\t\toutofofficemessage,\n\t\tmediumphotourl,\n\t\tdigestfrequency,\n\t\tdefaultgroupnotificationfrequency,\n\t\tlastvieweddate,\n\t\tlastreferenceddate,\n\t\tbannerphotourl,\n\t\tsmallbannerphotourl,\n\t\tmediumbannerphotourl,\n\t\tisprofilephotoactive,\n\t\tindividualid,\n\t\tlow_touch_csm__c,\n\t\taccount_manager_csm_pod__c,\n\t\texclude_from_assignment_tracking__c,\n\t\tdsfs__dsprosfmembershipstatus__c,\n\t\tdsfs__dsprosfpassword__c,\n\t\tdsfs__dsprosfusername__c,\n\t\tmkto_si__iscachinganonwebactivitylist__c,\n\t\tmkto_si__iscachingbestbets__c,\n\t\tmkto_si__iscachingemailactivitylist__c,\n\t\tmkto_si__iscachinggroupedwebactivitylist__c,\n\t\tmkto_si__iscachinginterestingmomentslist__c,\n\t\tmkto_si__iscachingscoringlist__c,\n\t\tmkto_si__iscachingstreamlist__c,\n\t\tmkto_si__iscachingwatchlist__c,\n\t\tmkto_si__iscachingwebactivitylist__c,\n\t\tmkto_si__sales_insight_counter__c,\n\t\tcalendar_link__c,\n\t\ts4g_currencies__endpoint__c,\n\t\tuser_currency__c,\n\t\tgmt__c,\n\t\tx18_digits_id__c,\n\t\tmarketing_activity_user__c,\n\t\tignore_claim__c,\n\t\tsuper_csm__c,\n\t\tcsm_team__c,\n\t\trole_name__c,\n\t\tteam__c,\n\t\tpriority_escalation_permission__c,\n\t\tisqueue__c,\n\t\tisintegration__c,\n\t\tqueuetype__c,\n\t\tmanager_text__c,\n\t\tfull_name__c,\n\t\tonboarding_assignee__c,\n\t\tmulti_product_csm__c,\n\t\taccount_id__c,\n\t\taccount_s_owner__c,\n\t\taddress_fields__c,\n\t\tbusiness_email__c,\n\t\tbusiness_name__c,\n\t\tcompany__c,\n\t\tlast_login_date_custom__c,\n\t\tmy_content__c,\n\t\tprm_role__c,\n\t\tpartner_manager__c,\n\t\tpaypal_account__c,\n\t\tprofile_formula__c,\n\t\twebsite__c,\n\t\twire_details_del__c,\n\t\tlogin_user_member__c,\n\t\tprocess_base_time_1_min__c,\n\t\tinvitation_date__c,\n\t\twwid__c,\n\t\tfinance_department_description__c,\n\t\ttype__c,\n\t\tticket_department__c,\n\t\trecordval__rv2disableautovalidate__c,\n\t\trecordval__rv2disabletriggers__c,\n\t\tdfsle__canmanageaccount__c,\n\t\tdfsle__provisioned__c,\n\t\tdfsle__status__c,\n\t\tdfsle__username__c,\n\t\tsubscription_seller__c,\n\t\tusage_seller__c,\n\t\tquota__c,\n\t\tseller_s_capacity__c,\n\t\tus_smb_senior_ae__c,\n\t\tambition__isambitionuser__c,\n\t\tretention_goal__c,\n\t\twwid_legacy__c,\n\t\tslack_channel_id__c,\n\t\tterritory__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__user", "language": "sql", "refs": [], "sources": [["analytics__salesforce_rivery", "user"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce_rivery.user"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce_rivery.user\n\n), analytics___salesforce_stg__user AS (\n\n SELECT \n\t\tid,\n\t\tusername,\n\t\tlastname,\n\t\tfirstname,\n\t\tname,\n\t\tcompanyname,\n\t\tdivision,\n\t\tdepartment,\n\t\ttitle,\n\t\tstreet,\n\t\tcity,\n\t\tstate,\n\t\tpostalcode,\n\t\tcountry,\n\t\tstatecode,\n\t\tcountrycode,\n\t\tlatitude,\n\t\tlongitude,\n\t\tgeocodeaccuracy,\n\t\temail,\n\t\temailpreferencesautobcc,\n\t\temailpreferencesautobccstayintouch,\n\t\temailpreferencesstayintouchreminder,\n\t\tsenderemail,\n\t\tsendername,\n\t\tsignature,\n\t\tstayintouchsubject,\n\t\tstayintouchsignature,\n\t\tstayintouchnote,\n\t\tphone,\n\t\tfax,\n\t\tmobilephone,\n\t\talias,\n\t\tcommunitynickname,\n\t\tbadgetext,\n\t\tisactive,\n\t\ttimezonesidkey,\n\t\tuserroleid,\n\t\tlocalesidkey,\n\t\treceivesinfoemails,\n\t\treceivesadmininfoemails,\n\t\temailencodingkey,\n\t\tdefaultcurrencyisocode,\n\t\tcurrencyisocode,\n\t\tprofileid,\n\t\tusertype,\n\t\tlanguagelocalekey,\n\t\temployeenumber,\n\t\tdelegatedapproverid,\n\t\tmanagerid,\n\t\tlastlogindate,\n\t\tlastpasswordchangedate,\n\t\tcreateddate,\n\t\tcreatedbyid,\n\t\tlastmodifieddate,\n\t\tlastmodifiedbyid,\n\t\tsystemmodstamp,\n\t\tnumberoffailedlogins,\n\t\tofflinetrialexpirationdate,\n\t\tofflinepdatrialexpirationdate,\n\t\tuserpermissionsmarketinguser,\n\t\tuserpermissionsofflineuser,\n\t\tuserpermissionscallcenterautologin,\n\t\tuserpermissionssfcontentuser,\n\t\tuserpermissionsknowledgeuser,\n\t\tuserpermissionsinteractionuser,\n\t\tuserpermissionssupportuser,\n\t\tuserpermissionsliveagentuser,\n\t\tuserpermissionschatteranswersuser,\n\t\tforecastenabled,\n\t\tuserpreferencesactivityreminderspopup,\n\t\tuserpreferenceseventreminderscheckboxdefault,\n\t\tuserpreferencestaskreminderscheckboxdefault,\n\t\tuserpreferencesremindersoundoff,\n\t\tuserpreferencesdisableallfeedsemail,\n\t\tuserpreferencesdisablefollowersemail,\n\t\tuserpreferencesdisableprofilepostemail,\n\t\tuserpreferencesdisablechangecommentemail,\n\t\tuserpreferencesdisablelatercommentemail,\n\t\tuserpreferencesdisprofpostcommentemail,\n\t\tuserpreferencescontentnoemail,\n\t\tuserpreferencescontentemailasandwhen,\n\t\tuserpreferencesapexpagesdevelopermode,\n\t\tuserpreferencesreceivenonotificationsasapprover,\n\t\tuserpreferencesreceivenotificationsasdelegatedapprover,\n\t\tuserpreferenceshidecsngetchattermobiletask,\n\t\tuserpreferencesdisablementionspostemail,\n\t\tuserpreferencesdismentionscommentemail,\n\t\tuserpreferenceshidecsndesktoptask,\n\t\tuserpreferenceshidechatteronboardingsplash,\n\t\tuserpreferenceshidesecondchatteronboardingsplash,\n\t\tuserpreferencesdiscommentafterlikeemail,\n\t\tuserpreferencesdisablelikeemail,\n\t\tuserpreferencessortfeedbycomment,\n\t\tuserpreferencesdisablemessageemail,\n\t\tuserpreferencesdisablebookmarkemail,\n\t\tuserpreferencesdisablesharepostemail,\n\t\tuserpreferencesenableautosubforfeeds,\n\t\tuserpreferencesdisablefilesharenotificationsforapi,\n\t\tuserpreferencesshowtitletoexternalusers,\n\t\tuserpreferencesshowmanagertoexternalusers,\n\t\tuserpreferencesshowemailtoexternalusers,\n\t\tuserpreferencesshowworkphonetoexternalusers,\n\t\tuserpreferencesshowmobilephonetoexternalusers,\n\t\tuserpreferencesshowfaxtoexternalusers,\n\t\tuserpreferencesshowstreetaddresstoexternalusers,\n\t\tuserpreferencesshowcitytoexternalusers,\n\t\tuserpreferencesshowstatetoexternalusers,\n\t\tuserpreferencesshowpostalcodetoexternalusers,\n\t\tuserpreferencesshowcountrytoexternalusers,\n\t\tuserpreferencesshowprofilepictoguestusers,\n\t\tuserpreferencesshowtitletoguestusers,\n\t\tuserpreferencesshowcitytoguestusers,\n\t\tuserpreferencesshowstatetoguestusers,\n\t\tuserpreferencesshowpostalcodetoguestusers,\n\t\tuserpreferencesshowcountrytoguestusers,\n\t\tuserpreferencespipelineviewhidehelppopover,\n\t\tuserpreferenceshides1browserui,\n\t\tuserpreferencesdisableendorsementemail,\n\t\tuserpreferencespathassistantcollapsed,\n\t\tuserpreferencescachediagnostics,\n\t\tuserpreferencesshowemailtoguestusers,\n\t\tuserpreferencesshowmanagertoguestusers,\n\t\tuserpreferencesshowworkphonetoguestusers,\n\t\tuserpreferencesshowmobilephonetoguestusers,\n\t\tuserpreferencesshowfaxtoguestusers,\n\t\tuserpreferencesshowstreetaddresstoguestusers,\n\t\tuserpreferenceslightningexperiencepreferred,\n\t\tuserpreferencespreviewlightning,\n\t\tuserpreferenceshideenduseronboardingassistantmodal,\n\t\tuserpreferenceshidelightningmigrationmodal,\n\t\tuserpreferenceshidesfxwelcomemat,\n\t\tuserpreferenceshidebiggerphotocallout,\n\t\tuserpreferencesglobalnavbarwtshown,\n\t\tuserpreferencesglobalnavgridmenuwtshown,\n\t\tuserpreferencescreatelexappswtshown,\n\t\tuserpreferencesfavoriteswtshown,\n\t\tuserpreferencesrecordhomesectioncollapsewtshown,\n\t\tuserpreferencesrecordhomereservedwtshown,\n\t\tuserpreferencesfavoritesshowtopfavorites,\n\t\tuserpreferencesexcludemailappattachments,\n\t\tuserpreferencessuppresstasksfxreminders,\n\t\tuserpreferencessuppresseventsfxreminders,\n\t\tuserpreferencespreviewcustomtheme,\n\t\tuserpreferenceshascelebrationbadge,\n\t\tuserpreferencesuserdebugmodepref,\n\t\tuserpreferencessrhoverrideactivities,\n\t\tuserpreferencesnewlightningreportrunpageenabled,\n\t\tuserpreferencesnativeemailclient,\n\t\tcontactid,\n\t\taccountid,\n\t\tcallcenterid,\n\t\textension,\n\t\tportalrole,\n\t\tisportalenabled,\n\t\tfederationidentifier,\n\t\taboutme,\n\t\tfullphotourl,\n\t\tsmallphotourl,\n\t\tisextindicatorvisible,\n\t\toutofofficemessage,\n\t\tmediumphotourl,\n\t\tdigestfrequency,\n\t\tdefaultgroupnotificationfrequency,\n\t\tlastvieweddate,\n\t\tlastreferenceddate,\n\t\tbannerphotourl,\n\t\tsmallbannerphotourl,\n\t\tmediumbannerphotourl,\n\t\tisprofilephotoactive,\n\t\tindividualid,\n\t\tlow_touch_csm__c,\n\t\taccount_manager_csm_pod__c,\n\t\texclude_from_assignment_tracking__c,\n\t\tdsfs__dsprosfmembershipstatus__c,\n\t\tdsfs__dsprosfpassword__c,\n\t\tdsfs__dsprosfusername__c,\n\t\tmkto_si__iscachinganonwebactivitylist__c,\n\t\tmkto_si__iscachingbestbets__c,\n\t\tmkto_si__iscachingemailactivitylist__c,\n\t\tmkto_si__iscachinggroupedwebactivitylist__c,\n\t\tmkto_si__iscachinginterestingmomentslist__c,\n\t\tmkto_si__iscachingscoringlist__c,\n\t\tmkto_si__iscachingstreamlist__c,\n\t\tmkto_si__iscachingwatchlist__c,\n\t\tmkto_si__iscachingwebactivitylist__c,\n\t\tmkto_si__sales_insight_counter__c,\n\t\tcalendar_link__c,\n\t\ts4g_currencies__endpoint__c,\n\t\tuser_currency__c,\n\t\tgmt__c,\n\t\tx18_digits_id__c,\n\t\tmarketing_activity_user__c,\n\t\tignore_claim__c,\n\t\tsuper_csm__c,\n\t\tcsm_team__c,\n\t\trole_name__c,\n\t\tteam__c,\n\t\tpriority_escalation_permission__c,\n\t\tisqueue__c,\n\t\tisintegration__c,\n\t\tqueuetype__c,\n\t\tmanager_text__c,\n\t\tfull_name__c,\n\t\tonboarding_assignee__c,\n\t\tmulti_product_csm__c,\n\t\taccount_id__c,\n\t\taccount_s_owner__c,\n\t\taddress_fields__c,\n\t\tbusiness_email__c,\n\t\tbusiness_name__c,\n\t\tcompany__c,\n\t\tlast_login_date_custom__c,\n\t\tmy_content__c,\n\t\tprm_role__c,\n\t\tpartner_manager__c,\n\t\tpaypal_account__c,\n\t\tprofile_formula__c,\n\t\twebsite__c,\n\t\twire_details_del__c,\n\t\tlogin_user_member__c,\n\t\tprocess_base_time_1_min__c,\n\t\tinvitation_date__c,\n\t\twwid__c,\n\t\tfinance_department_description__c,\n\t\ttype__c,\n\t\tticket_department__c,\n\t\trecordval__rv2disableautovalidate__c,\n\t\trecordval__rv2disabletriggers__c,\n\t\tdfsle__canmanageaccount__c,\n\t\tdfsle__provisioned__c,\n\t\tdfsle__status__c,\n\t\tdfsle__username__c,\n\t\tsubscription_seller__c,\n\t\tusage_seller__c,\n\t\tquota__c,\n\t\tseller_s_capacity__c,\n\t\tus_smb_senior_ae__c,\n\t\tambition__isambitionuser__c,\n\t\tretention_goal__c,\n\t\twwid_legacy__c,\n\t\tslack_channel_id__c,\n\t\tterritory__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__user", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__user_full": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__user_full", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.sql", "unique_id": "model.yoda.analytics___salesforce_stg__user_full", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__user_full", "analytics___salesforce_stg__user_full"], "alias": "analytics___salesforce_stg__user_full", "checksum": {"name": "sha256", "checksum": "b4ad21e1fbd7f938ec15a442757b4970a4fd93b9073c29f7be43de7738f8edb4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "base model for Salesforce user object's full table (formula fields)", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userroleid": {"name": "userroleid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "csm_team__c": {"name": "csm_team__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_name__c": {"name": "role_name__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_text__c": {"name": "manager_text__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory__c": {"name": "territory__c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082656.3808584, "relation_name": "dev_dkruh1.analytics___salesforce_stg__user_full", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__salesforce_rivery', 'user_full') }}\n\n), analytics___salesforce_stg__user_full AS (\n\n SELECT \n\t\tid,\n\t\tuserroleid,\n\t\tsystemmodstamp,\n\t\tcsm_team__c,\n\t\trole_name__c,\n\t\tmanager_text__c,\n\t\tterritory__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__user_full", "language": "sql", "refs": [], "sources": [["analytics__salesforce_rivery", "user_full"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__salesforce_rivery.user_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM salesforce_rivery.user_full\n\n), analytics___salesforce_stg__user_full AS (\n\n SELECT \n\t\tid,\n\t\tuserroleid,\n\t\tsystemmodstamp,\n\t\tcsm_team__c,\n\t\trole_name__c,\n\t\tmanager_text__c,\n\t\tterritory__c,\n\t\t_rivery_river_id,\n\t\t_rivery_run_id,\n\t\t_rivery_last_update\n FROM source\n\n)\n\nSELECT * \nFROM analytics___salesforce_stg__user_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__custom_field_history": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__custom_field_history", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.sql", "unique_id": "model.yoda.analytics___salesforce_stg__custom_field_history", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__custom_field_history", "analytics___salesforce_stg__custom_field_history"], "alias": "analytics___salesforce_stg__custom_field_history", "checksum": {"name": "sha256", "checksum": "8f10b8414544b1ba7feb1afef936c32d277d9d60830c2197ea411528b52a04d6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A modeled view of the salesforce object custom_field_history_tracking__c | PK & Granularity: sf_event_id", "columns": {"sf_event_id": {"name": "sf_event_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_object_id": {"name": "parent_object_id", "description": "sf id of related sf campaign member", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_project_id": {"name": "onboarding_project_id", "description": "The onboarding project id for joining with other tables", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "field_name": {"name": "field_name", "description": "the field that was change", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_value": {"name": "new_value", "description": "the value inserted to the changed field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082656.397869, "relation_name": "dev_dkruh1.analytics___salesforce_stg__custom_field_history", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__custom_field_history_tracking_c') }}\n WHERE isdeleted = false\n\n), custom_field_history AS (\n\n SELECT \n id AS sf_event_id,\n parent_object_id__c AS parent_object_id,\n onboarding_project__c AS onboarding_project_id,\n createdbyid AS created_by_sf_user_id,\n name AS field_name,\n new_value__c AS new_value,\n DATE(createddate) AS created_date,\n TIMESTAMP(createddate) AS created_at\n FROM source\n\n)\n\nSELECT * \nFROM custom_field_history", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__custom_field_history_tracking_c", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__custom_field_history_tracking_c"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__custom_field_history_tracking_c\n WHERE isdeleted = false\n\n), custom_field_history AS (\n\n SELECT \n id AS sf_event_id,\n parent_object_id__c AS parent_object_id,\n onboarding_project__c AS onboarding_project_id,\n createdbyid AS created_by_sf_user_id,\n name AS field_name,\n new_value__c AS new_value,\n DATE(createddate) AS created_date,\n TIMESTAMP(createddate) AS created_at\n FROM source\n\n)\n\nSELECT * \nFROM custom_field_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_account": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_account", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_account", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_account", "analytics___salesforce_stg__mc_account"], "alias": "analytics___salesforce_stg__mc_account", "checksum": {"name": "sha256", "checksum": "5f191187541d5b778e55c11729e74f5ad38de4d4a5423e8e19feb9d2650015fe"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled view of Account salesforce object.\nPK: account_id", "columns": {"account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rating": {"name": "rating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_csm_sf_user_id": {"name": "main_csm_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_sf_user_id": {"name": "csm_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_modified_date": {"name": "last_modified_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "num_of_active_leads_referred_by_agency": {"name": "num_of_active_leads_referred_by_agency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "agency_lost_reason": {"name": "agency_lost_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_potential": {"name": "agency_potential", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_stage": {"name": "agency_stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_segment": {"name": "agency_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_agency_id": {"name": "referred_by_agency_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_zone": {"name": "time_zone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id_15_digits": {"name": "id_15_digits", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted_account": {"name": "is_deleted_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "lead_id": {"name": "lead_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_campaign": {"name": "utm_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_content": {"name": "utm_content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_medium": {"name": "utm_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_source": {"name": "utm_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_term": {"name": "utm_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "latest_opportunity_id": {"name": "latest_opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tier": {"name": "tier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_type": {"name": "referrer_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_engagement_level": {"name": "agency_engagement_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_referral_agreement_signed": {"name": "is_referral_agreement_signed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_enterprise_account": {"name": "is_enterprise_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "lead_referred_date": {"name": "lead_referred_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "stage": {"name": "stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_sales_channel": {"name": "primary_sales_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry_name": {"name": "industry_name", "description": "yotpo insustry name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_industry_name": {"name": "sub_industry_name", "description": "yotpo sub industry", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_industry_confidence_level": {"name": "yotpo_industry_confidence_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_yotpo_industry_verified": {"name": "is_yotpo_industry_verified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "annual_revenue": {"name": "annual_revenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_employees": {"name": "number_of_employees", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "alexa_rank": {"name": "alexa_rank", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region": {"name": "sales_region", "description": "The billing region of the account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "funding": {"name": "funding", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_reason": {"name": "nurturing_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_nurturing_reason": {"name": "sub_nurturing_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "junk_reason": {"name": "junk_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_account_data_excluded": {"name": "is_account_data_excluded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "renewal_cycle": {"name": "renewal_cycle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "managing_agency_id": {"name": "managing_agency_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_estimated_aov": {"name": "cs_estimated_aov", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "cs_estimated_annual_sales": {"name": "cs_estimated_annual_sales", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "extensions": {"name": "extensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "city": {"name": "city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_code": {"name": "country_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state_code": {"name": "state_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "street": {"name": "street", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "postal_code": {"name": "postal_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_monthly_orders_volume": {"name": "estimated_monthly_orders_volume", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_acv": {"name": "ugc_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(11,2)"}, "loyalty_acv": {"name": "loyalty_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "loyalty_contract_renewal_date": {"name": "loyalty_contract_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "yotpo_contract_renewal_date": {"name": "yotpo_contract_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "vms_contract_renewal_date": {"name": "vms_contract_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "total_acv": {"name": "total_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "closest_contract_renewal_date": {"name": "closest_contract_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "cross_sale_status": {"name": "cross_sale_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_sdr_id": {"name": "last_sdr_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_ae_id": {"name": "last_ae_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_csm_sf_user_id": {"name": "swell_csm_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_supported_platforms": {"name": "agency_supported_platforms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_annual_account": {"name": "is_annual_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_partner_account": {"name": "is_partner_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sdr_owner_id": {"name": "sdr_owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_segment": {"name": "cs_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "search_provider": {"name": "search_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_provider": {"name": "reviews_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_provider": {"name": "loyalty_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "curation_provider": {"name": "curation_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_marketing_provider": {"name": "email_marketing_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cross_sell_type": {"name": "cross_sell_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "influenced_by_agency_id": {"name": "influenced_by_agency_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory": {"name": "territory", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_test_account": {"name": "is_test_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "agency_services": {"name": "agency_services", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_category": {"name": "package_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_package_category": {"name": "previous_package_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "personalization_provider": {"name": "personalization_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_provider": {"name": "payment_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "help_desk_provider": {"name": "help_desk_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pos_provider": {"name": "pos_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cdp_provider": {"name": "cdp_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_bots_provider": {"name": "chat_bots_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ads_provider": {"name": "ads_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_acv": {"name": "sms_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "datanayze_monthly_tech_spend": {"name": "datanayze_monthly_tech_spend", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_sf_user_id": {"name": "sms_csm_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_influencer_referrer_type": {"name": "partner_influencer_referrer_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_referral_referrer_type": {"name": "partner_referral_referrer_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_strategic_priority": {"name": "is_strategic_priority", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "similarweb_traffic": {"name": "similarweb_traffic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "cs_tags": {"name": "cs_tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_strategist": {"name": "sms_strategist", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_provider": {"name": "sms_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_account_id": {"name": "parent_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_limit_roll_up": {"name": "order_limit_roll_up", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_multi_product_account": {"name": "is_multi_product_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sales_segment": {"name": "sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "managed_services_agency_id": {"name": "managed_services_agency_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ms_account_live_date": {"name": "ms_account_live_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "ms_account_churn_date": {"name": "ms_account_churn_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "ms_account_source": {"name": "ms_account_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ms_sms_user_id": {"name": "ms_sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "partner_tier": {"name": "partner_tier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_id": {"name": "owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sal_to_next_tier": {"name": "sal_to_next_tier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "acv_to_next_tier": {"name": "acv_to_next_tier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(18,2)"}, "next_partner_tier": {"name": "next_partner_tier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iap_tier": {"name": "iap_tier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_type_sub_category": {"name": "partner_type_sub_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_seller": {"name": "subscription_seller", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_estimated_subscribers": {"name": "sales_estimated_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "registered_at": {"name": "registered_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packages": {"name": "packages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "db_package_category": {"name": "db_package_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_annualized_usage_rev": {"name": "sms_annualized_usage_rev", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_total_arr": {"name": "sms_total_arr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "has_a_community_member": {"name": "has_a_community_member", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "sms_usage_cancellation_date": {"name": "sms_usage_cancellation_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "agency_employee_bucket": {"name": "agency_employee_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_in_tam_list": {"name": "products_in_tam_list", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_clients_level_account": {"name": "agency_clients_level_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_contract_cnt": {"name": "current_contract_cnt", "description": "number of current contracts", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082656.538743, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_account", "raw_code": "WITH import_account_full AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__account_full') }}\n WHERE isdeleted = false\n AND Test_Account__c = false\n\n), \n\nsalesforce_stg__mc_account AS (\n\n SELECT \n Id AS account_id,\n organization_key__c AS organization_key,\n customer_type__c AS type,\n app_key__c AS app_key,\n Name AS account_name,\n Rating AS rating,\n CASE WHEN COALESCE(createddate, '') <> '' THEN DATE(createddate) END AS created_date,\n Description AS description,\n CAST(Main_CSM__c AS VARCHAR(100)) AS main_csm_sf_user_id,\n csm_lookup__c AS csm_sf_user_id,\n CASE WHEN COALESCE(LastModifiedDate, '') <> '' THEN DATE(LastModifiedDate) END AS last_modified_date,\n CAST(Active_Leads_Referred__c AS DECIMAL(10,2)) AS num_of_active_leads_referred_by_agency,\n Agency_Lost_Reason__c AS agency_lost_reason,\n Agency_Potential__c AS agency_potential,\n Agency_Stage__c AS agency_stage,\n Agency_segment__c AS agency_segment,\n Industry AS industry,\n Referrer__c AS referred_by_agency_id,\n Time_Zone__c AS time_zone,\n LEFT(Id, 15) AS id_15_digits,\n BillingCountry AS country,\n SMALLINT(isDeleted) AS is_deleted_account,\n lead_id__c AS lead_id,\n UTM_Campaign__c AS utm_campaign,\n UTM_Content__c AS utm_content,\n UTM_Medium__c AS utm_medium,\n UTM_Source__c AS utm_source,\n UTM_Term__c AS utm_term,\n latest_opportunity__c AS latest_opportunity_id,\n Account_Tier__c AS tier,\n Referrer_Type__c AS referrer_type,\n Engagement_Level__c AS agency_engagement_level,\n SMALLINT(Referral_Agreement_Signed__c) AS is_referral_agreement_signed,\n SMALLINT(Enterprise_Account__c) AS is_enterprise_account,\n DATE(Lead_Referred_Date__c) AS lead_referred_date,\n Account_Stage__c AS stage,\n Primary_Sales_Channel__c AS primary_sales_channel,\n Yotpo_Industry_Account__c AS industry_name,\n Yotpo_Sub_Industry_Account__c AS sub_industry_name,\n Confidence_Level_Account__c AS yotpo_industry_confidence_level,\n SMALLINT(Yotpo_Industry_Verified_Account__c) AS is_yotpo_industry_verified,\n Annual_Revenue__c AS annual_revenue,\n Number_of_Employees__c AS number_of_employees,\n CAST(Alexa_Rank__c AS VARCHAR(100)) AS alexa_rank,\n\t\tSales_Region_new__c AS sales_region,\n Datanyze_Funding__c AS funding,\n Status__c AS status,\n Nurturing_Reason__c AS nurturing_reason,\n Sub_Nurturing_Reason__c AS sub_nurturing_reason,\n Junk_Reason__c AS junk_reason,\n Domain__c AS domain,\n SMALLINT(CASE WHEN LOWER(Account_Stage__c) = 'yes' THEN 1 ELSE 0 END) AS is_account_data_excluded,\n CASE WHEN Renewal_Cycle__c <> '' THEN INT(FLOAT(Renewal_Cycle__c)) ELSE NULL END AS renewal_cycle,\n Client_s_Agency2__c AS managing_agency_id,\n CASE WHEN CS_Estimated_AOV__c <> '' THEN INT(FLOAT(CS_Estimated_AOV__c)) ELSE NULL END AS cs_estimated_aov, \n CASE WHEN CS_Estimated_Annual_Sales__c <> '' THEN INT(FLOAT(CS_Estimated_Annual_Sales__c)) ELSE NULL END AS cs_estimated_annual_sales,\n Account_Email__c AS email,\n Package_Base__c AS plan_name,\n Package_Extensions__c AS extensions,\n BillingCity AS city,\n BillingCountryCode AS country_code,\n BillingState AS state,\n BillingStateCode AS state_code,\n BillingStreet AS street,\n BillingPostalCode AS postal_code, \n Sales_Estimated_Monthly_Orders__c AS estimated_monthly_orders_volume,\n CAST(Yotpo_ACV__c AS DECIMAL(10,2)) + CAST(VMS_ACV__c AS DECIMAL(10,2)) AS ugc_acv,\n CAST(Swell_ACV__c AS DECIMAL(10,2)) AS loyalty_acv,\n DATE(Swell_Contract_Renewal_Date__c) AS loyalty_contract_renewal_date,\n DATE(Yotpo_Contract_Renewal_Date__c) AS yotpo_contract_renewal_date,\n DATE(VMS_Contract_Renewal_Date__c) AS vms_contract_renewal_date,\n CAST(Total_ACV__c AS DECIMAL(10,2)) AS total_acv,\n DATE(Closest_Contract_Renewal__c) AS closest_contract_renewal_date,\n CAST(Cross_Sell_Status__c AS VARCHAR(100)) AS cross_sale_status,\n CAST(Last_SDR__c AS VARCHAR(100)) AS last_sdr_id,\n CAST(Last_AE__c AS VARCHAR(100)) AS last_ae_id,\n CAST(Merchant_ID__c AS VARCHAR(100)) AS merchant_id,\n CAST(Swell_CSM__c AS VARCHAR(100)) AS swell_csm_sf_user_id,\n Agency_Supported_Platforms_Account__c AS agency_supported_platforms,\n Platform__c AS platform,\n SMALLINT(CASE WHEN Annual_Account_Indication__c IS NULL THEN 0 ELSE 1 END) AS is_annual_account, \n SMALLINT(IF(LOWER(customer_type__c) IN ('agency', 'partner', 'referrer'),1,0)) AS is_partner_account,\n SDR_Owner__c AS sdr_owner_id,\n CS_Segment__c AS cs_segment,\n Search_Provider__c AS search_provider,\n Reviews_Provider_List__c AS reviews_provider,\n Loyalty_Referral_Provider__c AS loyalty_provider,\n Datanayze_Current_Curation_Solution__c AS curation_provider,\n Email_Service_Provider_ESP__c AS email_marketing_provider,\n Cross_sell_Type__c AS cross_sell_type,\n Influencer__c AS influenced_by_agency_id,\n Account_Territory__c AS territory,\n SMALLINT(Test_Account__c) AS is_test_account,\n CAST(Agency_Services__c AS VARCHAR(255)) AS agency_services,\n CAST(DB_Package_Category__c AS VARCHAR(255)) AS package_category, \n CAST(Previous_DB_Package__c AS VARCHAR(255)) AS previous_package_category, \n CAST(Personalization_Provider__c AS VARCHAR(255)) AS personalization_provider,\n CAST(Payment_Provider__c AS VARCHAR(255)) AS payment_provider,\n CAST(Help_Desk_Provider__c AS VARCHAR(255)) AS help_desk_provider,\n CAST(POS_Provider__c AS VARCHAR(255)) AS pos_provider,\n CAST(CDP_Provider__c AS VARCHAR(255)) AS cdp_provider,\n CAST(Chat_bots_Provider__c AS VARCHAR(255)) AS chat_bots_provider,\n CAST(Ads_Provider__c AS VARCHAR(255)) AS ads_provider,\n CAST(SMS_ACV__c AS DECIMAL(10,2)) AS sms_acv,\n Datanayze_Monthly_Tech_Spend__c AS datanayze_monthly_tech_spend,\n CAST(SMS_CSM__c AS VARCHAR(255)) AS sms_csm_sf_user_id,\n Partner_Influencer_Referrer_Type__c AS partner_influencer_referrer_type,\n CAST(NULL AS STRING) AS partner_referral_referrer_type,\n SMALLINT(Strategic_Priority__c) AS is_strategic_priority,\n INT(SimilarWeb_Traffic__c) AS similarweb_traffic,\n CAST(CS_Tags__c AS VARCHAR(100)) AS cs_tags,\n CAST(SMS_Strategist__c AS VARCHAR(100)) AS sms_strategist,\n CAST(SMS_Provider__c AS VARCHAR(100)) AS sms_provider,\n CAST(parentid AS VARCHAR(100)) AS parent_account_id,\n INT(MAP_Limit_Roll_Up__c) AS order_limit_roll_up,\n SMALLINT(Multi_Product_Account__c) AS is_multi_product_account,\n CAST(CASE WHEN LOWER(Sales_Segment__c) = 'mid-market' THEN 'MM' ELSE Sales_Segment__c END AS VARCHAR(100)) AS sales_segment,\n managed_services_agency__c AS managed_services_agency_id,\n DATE(ms_live_date__c) AS ms_account_live_date,\n DATE(ms_churn_date__c) AS ms_account_churn_date,\n ms_inbound_outbound__c AS ms_account_source,\n INT(SMS_User_ID__c) AS ms_sms_user_id,\n CAST(Partner_Tier__c AS VARCHAR(100)) AS partner_tier,\n ownerId AS owner_id,\n INT(SAL_to_next_tier__c) AS sal_to_next_tier,\n CAST(ACV_to_next_tier__c AS DECIMAL(18,2)) AS acv_to_next_tier,\n Next_Partner_Tier__c AS next_partner_tier,\n CAST(IAP_Tier__c AS VARCHAR(100)) AS iap_tier,\n Referrer_Type_Sub_Category__c AS partner_type_sub_category,\n Subscription_Seller__c AS subscription_seller,\n Sales_Estimated_Subscribers__c AS sales_estimated_subscribers,\n Registration_Date__c AS registered_at,\n Package__c AS packages,\n DB_Package_Category__c AS db_package_category,\n SMS_Annualized_Usage_Rev__c AS sms_annualized_usage_rev,\n SMS_Total_ARR__c AS sms_total_arr,\n CASE WHEN LOWER(Has_A_Community_member__c) = 'true' THEN 1 ELSE 0 END AS has_a_community_member,\n DATE(sms_usage_cancellation_date__c) AS sms_usage_cancellation_date,\n Agency_No_of_Employees_Account__c AS agency_employee_bucket,\n IF(Products_In_The_TAM_New__c = 'Not in TAM',NULL,replace(replace(Products_In_The_TAM_New__c,' and',',' ),'TAM','')) AS products_in_tam_list,\n Agency_Clients_Level_Account__c AS agency_clients_level_account,\n INT(of_Current_Contracts__c) AS current_contract_cnt\n FROM import_account_full\n\n)\n\nSELECT *\nFROM salesforce_stg__mc_account", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__account_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__account_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.sql", "compiled": true, "compiled_code": "WITH import_account_full AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__account_full\n WHERE isdeleted = false\n AND Test_Account__c = false\n\n), \n\nsalesforce_stg__mc_account AS (\n\n SELECT \n Id AS account_id,\n organization_key__c AS organization_key,\n customer_type__c AS type,\n app_key__c AS app_key,\n Name AS account_name,\n Rating AS rating,\n CASE WHEN COALESCE(createddate, '') <> '' THEN DATE(createddate) END AS created_date,\n Description AS description,\n CAST(Main_CSM__c AS VARCHAR(100)) AS main_csm_sf_user_id,\n csm_lookup__c AS csm_sf_user_id,\n CASE WHEN COALESCE(LastModifiedDate, '') <> '' THEN DATE(LastModifiedDate) END AS last_modified_date,\n CAST(Active_Leads_Referred__c AS DECIMAL(10,2)) AS num_of_active_leads_referred_by_agency,\n Agency_Lost_Reason__c AS agency_lost_reason,\n Agency_Potential__c AS agency_potential,\n Agency_Stage__c AS agency_stage,\n Agency_segment__c AS agency_segment,\n Industry AS industry,\n Referrer__c AS referred_by_agency_id,\n Time_Zone__c AS time_zone,\n LEFT(Id, 15) AS id_15_digits,\n BillingCountry AS country,\n SMALLINT(isDeleted) AS is_deleted_account,\n lead_id__c AS lead_id,\n UTM_Campaign__c AS utm_campaign,\n UTM_Content__c AS utm_content,\n UTM_Medium__c AS utm_medium,\n UTM_Source__c AS utm_source,\n UTM_Term__c AS utm_term,\n latest_opportunity__c AS latest_opportunity_id,\n Account_Tier__c AS tier,\n Referrer_Type__c AS referrer_type,\n Engagement_Level__c AS agency_engagement_level,\n SMALLINT(Referral_Agreement_Signed__c) AS is_referral_agreement_signed,\n SMALLINT(Enterprise_Account__c) AS is_enterprise_account,\n DATE(Lead_Referred_Date__c) AS lead_referred_date,\n Account_Stage__c AS stage,\n Primary_Sales_Channel__c AS primary_sales_channel,\n Yotpo_Industry_Account__c AS industry_name,\n Yotpo_Sub_Industry_Account__c AS sub_industry_name,\n Confidence_Level_Account__c AS yotpo_industry_confidence_level,\n SMALLINT(Yotpo_Industry_Verified_Account__c) AS is_yotpo_industry_verified,\n Annual_Revenue__c AS annual_revenue,\n Number_of_Employees__c AS number_of_employees,\n CAST(Alexa_Rank__c AS VARCHAR(100)) AS alexa_rank,\n\t\tSales_Region_new__c AS sales_region,\n Datanyze_Funding__c AS funding,\n Status__c AS status,\n Nurturing_Reason__c AS nurturing_reason,\n Sub_Nurturing_Reason__c AS sub_nurturing_reason,\n Junk_Reason__c AS junk_reason,\n Domain__c AS domain,\n SMALLINT(CASE WHEN LOWER(Account_Stage__c) = 'yes' THEN 1 ELSE 0 END) AS is_account_data_excluded,\n CASE WHEN Renewal_Cycle__c <> '' THEN INT(FLOAT(Renewal_Cycle__c)) ELSE NULL END AS renewal_cycle,\n Client_s_Agency2__c AS managing_agency_id,\n CASE WHEN CS_Estimated_AOV__c <> '' THEN INT(FLOAT(CS_Estimated_AOV__c)) ELSE NULL END AS cs_estimated_aov, \n CASE WHEN CS_Estimated_Annual_Sales__c <> '' THEN INT(FLOAT(CS_Estimated_Annual_Sales__c)) ELSE NULL END AS cs_estimated_annual_sales,\n Account_Email__c AS email,\n Package_Base__c AS plan_name,\n Package_Extensions__c AS extensions,\n BillingCity AS city,\n BillingCountryCode AS country_code,\n BillingState AS state,\n BillingStateCode AS state_code,\n BillingStreet AS street,\n BillingPostalCode AS postal_code, \n Sales_Estimated_Monthly_Orders__c AS estimated_monthly_orders_volume,\n CAST(Yotpo_ACV__c AS DECIMAL(10,2)) + CAST(VMS_ACV__c AS DECIMAL(10,2)) AS ugc_acv,\n CAST(Swell_ACV__c AS DECIMAL(10,2)) AS loyalty_acv,\n DATE(Swell_Contract_Renewal_Date__c) AS loyalty_contract_renewal_date,\n DATE(Yotpo_Contract_Renewal_Date__c) AS yotpo_contract_renewal_date,\n DATE(VMS_Contract_Renewal_Date__c) AS vms_contract_renewal_date,\n CAST(Total_ACV__c AS DECIMAL(10,2)) AS total_acv,\n DATE(Closest_Contract_Renewal__c) AS closest_contract_renewal_date,\n CAST(Cross_Sell_Status__c AS VARCHAR(100)) AS cross_sale_status,\n CAST(Last_SDR__c AS VARCHAR(100)) AS last_sdr_id,\n CAST(Last_AE__c AS VARCHAR(100)) AS last_ae_id,\n CAST(Merchant_ID__c AS VARCHAR(100)) AS merchant_id,\n CAST(Swell_CSM__c AS VARCHAR(100)) AS swell_csm_sf_user_id,\n Agency_Supported_Platforms_Account__c AS agency_supported_platforms,\n Platform__c AS platform,\n SMALLINT(CASE WHEN Annual_Account_Indication__c IS NULL THEN 0 ELSE 1 END) AS is_annual_account, \n SMALLINT(IF(LOWER(customer_type__c) IN ('agency', 'partner', 'referrer'),1,0)) AS is_partner_account,\n SDR_Owner__c AS sdr_owner_id,\n CS_Segment__c AS cs_segment,\n Search_Provider__c AS search_provider,\n Reviews_Provider_List__c AS reviews_provider,\n Loyalty_Referral_Provider__c AS loyalty_provider,\n Datanayze_Current_Curation_Solution__c AS curation_provider,\n Email_Service_Provider_ESP__c AS email_marketing_provider,\n Cross_sell_Type__c AS cross_sell_type,\n Influencer__c AS influenced_by_agency_id,\n Account_Territory__c AS territory,\n SMALLINT(Test_Account__c) AS is_test_account,\n CAST(Agency_Services__c AS VARCHAR(255)) AS agency_services,\n CAST(DB_Package_Category__c AS VARCHAR(255)) AS package_category, \n CAST(Previous_DB_Package__c AS VARCHAR(255)) AS previous_package_category, \n CAST(Personalization_Provider__c AS VARCHAR(255)) AS personalization_provider,\n CAST(Payment_Provider__c AS VARCHAR(255)) AS payment_provider,\n CAST(Help_Desk_Provider__c AS VARCHAR(255)) AS help_desk_provider,\n CAST(POS_Provider__c AS VARCHAR(255)) AS pos_provider,\n CAST(CDP_Provider__c AS VARCHAR(255)) AS cdp_provider,\n CAST(Chat_bots_Provider__c AS VARCHAR(255)) AS chat_bots_provider,\n CAST(Ads_Provider__c AS VARCHAR(255)) AS ads_provider,\n CAST(SMS_ACV__c AS DECIMAL(10,2)) AS sms_acv,\n Datanayze_Monthly_Tech_Spend__c AS datanayze_monthly_tech_spend,\n CAST(SMS_CSM__c AS VARCHAR(255)) AS sms_csm_sf_user_id,\n Partner_Influencer_Referrer_Type__c AS partner_influencer_referrer_type,\n CAST(NULL AS STRING) AS partner_referral_referrer_type,\n SMALLINT(Strategic_Priority__c) AS is_strategic_priority,\n INT(SimilarWeb_Traffic__c) AS similarweb_traffic,\n CAST(CS_Tags__c AS VARCHAR(100)) AS cs_tags,\n CAST(SMS_Strategist__c AS VARCHAR(100)) AS sms_strategist,\n CAST(SMS_Provider__c AS VARCHAR(100)) AS sms_provider,\n CAST(parentid AS VARCHAR(100)) AS parent_account_id,\n INT(MAP_Limit_Roll_Up__c) AS order_limit_roll_up,\n SMALLINT(Multi_Product_Account__c) AS is_multi_product_account,\n CAST(CASE WHEN LOWER(Sales_Segment__c) = 'mid-market' THEN 'MM' ELSE Sales_Segment__c END AS VARCHAR(100)) AS sales_segment,\n managed_services_agency__c AS managed_services_agency_id,\n DATE(ms_live_date__c) AS ms_account_live_date,\n DATE(ms_churn_date__c) AS ms_account_churn_date,\n ms_inbound_outbound__c AS ms_account_source,\n INT(SMS_User_ID__c) AS ms_sms_user_id,\n CAST(Partner_Tier__c AS VARCHAR(100)) AS partner_tier,\n ownerId AS owner_id,\n INT(SAL_to_next_tier__c) AS sal_to_next_tier,\n CAST(ACV_to_next_tier__c AS DECIMAL(18,2)) AS acv_to_next_tier,\n Next_Partner_Tier__c AS next_partner_tier,\n CAST(IAP_Tier__c AS VARCHAR(100)) AS iap_tier,\n Referrer_Type_Sub_Category__c AS partner_type_sub_category,\n Subscription_Seller__c AS subscription_seller,\n Sales_Estimated_Subscribers__c AS sales_estimated_subscribers,\n Registration_Date__c AS registered_at,\n Package__c AS packages,\n DB_Package_Category__c AS db_package_category,\n SMS_Annualized_Usage_Rev__c AS sms_annualized_usage_rev,\n SMS_Total_ARR__c AS sms_total_arr,\n CASE WHEN LOWER(Has_A_Community_member__c) = 'true' THEN 1 ELSE 0 END AS has_a_community_member,\n DATE(sms_usage_cancellation_date__c) AS sms_usage_cancellation_date,\n Agency_No_of_Employees_Account__c AS agency_employee_bucket,\n IF(Products_In_The_TAM_New__c = 'Not in TAM',NULL,replace(replace(Products_In_The_TAM_New__c,' and',',' ),'TAM','')) AS products_in_tam_list,\n Agency_Clients_Level_Account__c AS agency_clients_level_account,\n INT(of_Current_Contracts__c) AS current_contract_cnt\n FROM import_account_full\n\n)\n\nSELECT *\nFROM salesforce_stg__mc_account", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_account_product": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_account_product", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_account_product", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_account_product", "analytics___salesforce_stg__mc_account_product"], "alias": "analytics___salesforce_stg__mc_account_product", "checksum": {"name": "sha256", "checksum": "f22da2cd44ab76865626d60b7216864f58e191e5fa809ca9e1c2162ff15835e6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled View Salseforce Account Product \nPK & granularity: account_product_id", "columns": {"account_product_id": {"name": "account_product_id", "description": "unique id for the account & product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_stage": {"name": "product_stage", "description": "the stage of the product: Renewal/Lost After Won/Onboarding/Churned/Optimization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_product_family_list": {"name": "main_product_family_list", "description": "all the product families in a string", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_type": {"name": "opportunity_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_start_date": {"name": "opportunity_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "opportunity_renewal_date": {"name": "opportunity_renewal_date", "description": "next renewal date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "initially_won_opportunity_id": {"name": "initially_won_opportunity_id", "description": "the opportunity id of when this product was first won- only for ss opps", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_initial_won_date": {"name": "product_initial_won_date", "description": "when this product was first won", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "initially_won_ss_opportunity_id": {"name": "initially_won_ss_opportunity_id", "description": "when this product was first won- for ss only", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_initial_won_ss_date": {"name": "product_initial_won_ss_date", "description": "the opportunity id of when this product was first won- only for ss opps", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "live_date": {"name": "live_date", "description": "unique product indication to indicate the product is live.\nREVIEWS - the date when reviews widget/ star-rating widget was first loaded\nVMS - the date when any VMS gallery was first loaded\nSMS - the date when $3 of credit were used\nLOYALTY - the date when there was a redemption of points by 10+ customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "onboarding_completion_status": {"name": "onboarding_completion_status", "description": "csm filled indication for the completion of the onboarding", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_completion_date": {"name": "onboarding_completion_date", "description": "indication for the date of completion of the onboarding according to CSM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "onboarding_manager_csm_team": {"name": "onboarding_manager_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_manager_id": {"name": "onboarding_manager_id", "description": "onboarding manager id for the onboarding project", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_project_cnt": {"name": "onboarding_project_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "acv_in_usd": {"name": "acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_current_contract": {"name": "is_current_contract", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082656.5871816, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_account_product", "raw_code": "-- Import --\n\nWITH import_salesforce_account_product AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__account_product_c_full') }}\n WHERE isdeleted = false\n\n-- Logic\n\n), mc_account_product AS (\n\n SELECT id AS account_product_id,\n account__c AS account_id,\n product__c AS product_id,\n name AS product_name,\n stage__c AS product_stage,\n main_product_families__c AS main_product_family_list,\n product_line__c AS product_line,\n opportunity__c AS opportunity_id,\n opportunity_type__c AS opportunity_type,\n DATE(opportunity_start_date__c) AS opportunity_start_date,\n DATE(contract_renewal_date__c) AS opportunity_renewal_date,\n initially_won_opportunity__c AS initially_won_opportunity_id,\n DATE(product_initial_won_date__c) AS product_initial_won_date,\n initially_won_self_service_opportunity__c AS initially_won_ss_opportunity_id,\n DATE(product_initial_won_date_self_service__c) AS product_initial_won_ss_date,\n DATE(live_date__c) AS live_date,\n live_on_site_loyalty__c AS onboarding_completion_status,\n DATE(date_of_live_on_site_loyalty__c) AS onboarding_completion_date,\n onboarding_manager_csm_team__c AS onboarding_manager_csm_team,\n onboarding_manager__c AS onboarding_manager_id,\n number_of_ob__c AS onboarding_project_cnt,\n IF(acv_usd__c IS NULL AND LOWER(currencyisocode) = 'usd',acv__c,acv_usd__c) AS acv_in_usd,\n SMALLINT(current_contract__c) AS is_current_contract,\n SMALLINT(isdeleted) AS is_deleted\n FROM import_salesforce_account_product \n \n)\n\n-- Result --\n\nSELECT * FROM mc_account_product", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__account_product_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__account_product_c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_account_product AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__account_product_c_full\n WHERE isdeleted = false\n\n-- Logic\n\n), mc_account_product AS (\n\n SELECT id AS account_product_id,\n account__c AS account_id,\n product__c AS product_id,\n name AS product_name,\n stage__c AS product_stage,\n main_product_families__c AS main_product_family_list,\n product_line__c AS product_line,\n opportunity__c AS opportunity_id,\n opportunity_type__c AS opportunity_type,\n DATE(opportunity_start_date__c) AS opportunity_start_date,\n DATE(contract_renewal_date__c) AS opportunity_renewal_date,\n initially_won_opportunity__c AS initially_won_opportunity_id,\n DATE(product_initial_won_date__c) AS product_initial_won_date,\n initially_won_self_service_opportunity__c AS initially_won_ss_opportunity_id,\n DATE(product_initial_won_date_self_service__c) AS product_initial_won_ss_date,\n DATE(live_date__c) AS live_date,\n live_on_site_loyalty__c AS onboarding_completion_status,\n DATE(date_of_live_on_site_loyalty__c) AS onboarding_completion_date,\n onboarding_manager_csm_team__c AS onboarding_manager_csm_team,\n onboarding_manager__c AS onboarding_manager_id,\n number_of_ob__c AS onboarding_project_cnt,\n IF(acv_usd__c IS NULL AND LOWER(currencyisocode) = 'usd',acv__c,acv_usd__c) AS acv_in_usd,\n SMALLINT(current_contract__c) AS is_current_contract,\n SMALLINT(isdeleted) AS is_deleted\n FROM import_salesforce_account_product \n \n)\n\n-- Result --\n\nSELECT * FROM mc_account_product", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_campaign": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_campaign", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_campaign", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_campaign", "analytics___salesforce_stg__mc_campaign"], "alias": "analytics___salesforce_stg__mc_campaign", "checksum": {"name": "sha256", "checksum": "130b493883d478f132c05c9baf3123a819945be58132a3ac72fabcf31ba9ebbf"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lwiener@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "The table is based on the SFDC campaign object", "columns": {"campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_id": {"name": "owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_by_sf_user_id": {"name": "updated_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active": {"name": "is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sub_type": {"name": "sub_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_source": {"name": "original_source", "description": "Represent wheter the campaign is an Yotpo website asset or Swell for historical campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_campaign_id": {"name": "parent_campaign_id", "description": "Connects the campaign to a parent campaign id in cases that the campaigns has a main parent that they are associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_url": {"name": "campaign_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_products": {"name": "related_products", "description": "Shows the related products that were associated with the asset", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_campaign_created_at": {"name": "sf_campaign_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sf_campaign_updated_at": {"name": "sf_campaign_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sf_campaign_start_date": {"name": "sf_campaign_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sf_campaign_end_date": {"name": "sf_campaign_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lwiener@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lwiener@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082656.645564, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_campaign", "raw_code": "-- Import --\n\nWITH import_campaign AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__campaign') }}\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_stg___mc_campaign AS (\n\n SELECT\n id AS campaign_id,\n name,\n description,\n type,\n status,\n ownerId AS owner_id,\n createdbyid AS created_by_sf_user_id,\n lastmodifiedbyId AS updated_by_sf_user_id,\n SMALLINT(isactive) AS is_active,\n SMALLINT(isdeleted) AS is_deleted,\n Sub_Type__c AS sub_type,\n Original_Source__c AS original_source,\n ParentId AS parent_campaign_id,\n Campaign_URL__c AS campaign_url,\n Related_Products__c AS related_products,\n TIMESTAMP(IF (COALESCE(CreatedDate,'')='',NULL,CreatedDate)) AS sf_campaign_created_at,\n TIMESTAMP(IF (COALESCE(LastModifiedDate,'')='',NULL,LastModifiedDate)) AS sf_campaign_updated_at,\n TIMESTAMP(IF (COALESCE(startdate,'')='',NULL,startdate)) AS sf_campaign_start_date,\n TIMESTAMP(IF (COALESCE(enddate,'')='',NULL,enddate)) AS sf_campaign_end_date\n FROM import_campaign\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg___mc_campaign", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_campaign AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__campaign\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_stg___mc_campaign AS (\n\n SELECT\n id AS campaign_id,\n name,\n description,\n type,\n status,\n ownerId AS owner_id,\n createdbyid AS created_by_sf_user_id,\n lastmodifiedbyId AS updated_by_sf_user_id,\n SMALLINT(isactive) AS is_active,\n SMALLINT(isdeleted) AS is_deleted,\n Sub_Type__c AS sub_type,\n Original_Source__c AS original_source,\n ParentId AS parent_campaign_id,\n Campaign_URL__c AS campaign_url,\n Related_Products__c AS related_products,\n TIMESTAMP(IF (COALESCE(CreatedDate,'')='',NULL,CreatedDate)) AS sf_campaign_created_at,\n TIMESTAMP(IF (COALESCE(LastModifiedDate,'')='',NULL,LastModifiedDate)) AS sf_campaign_updated_at,\n TIMESTAMP(IF (COALESCE(startdate,'')='',NULL,startdate)) AS sf_campaign_start_date,\n TIMESTAMP(IF (COALESCE(enddate,'')='',NULL,enddate)) AS sf_campaign_end_date\n FROM import_campaign\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg___mc_campaign", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_contact": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_contact", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_contact", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_contact", "analytics___salesforce_stg__mc_contact"], "alias": "analytics___salesforce_stg__mc_contact", "checksum": {"name": "sha256", "checksum": "9edbc36d3f1aa2c129790abc2dcd479cae8be6617b95d1c19757b0686ed4e0d0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled table of Salesforce contacts\nGranularity: contact_id", "columns": {"contact_id": {"name": "contact_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "contact_email": {"name": "contact_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_name": {"name": "contact_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "create_date": {"name": "create_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "contact_last_name": {"name": "contact_last_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_first_name": {"name": "contact_first_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_phone_number": {"name": "contact_phone_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_title": {"name": "contact_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_description": {"name": "contact_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_segment_id": {"name": "contact_segment_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_original_source": {"name": "contact_original_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_bucket": {"name": "most_recent_assignment_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_date": {"name": "most_recent_assignment_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "most_recent_assignment_reason": {"name": "most_recent_assignment_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_sub_reason": {"name": "most_recent_assignment_sub_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_rank": {"name": "prospect_fit_rank", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_source": {"name": "contact_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_country": {"name": "contact_country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_role": {"name": "contact_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "booking_status_chilipiper": {"name": "booking_status_chilipiper", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082656.6927805, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_contact", "raw_code": "-- Import --\n\nWITH import_contact AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__contact') }}\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_stg__mc_contact AS (\n\n SELECT \n id AS contact_id\n ,accountid AS account_id\n ,CASE WHEN user_id__c RLIKE '^[0-9]*$' AND length(user_id__c) > 0 AND length(user_id__c) < 11 THEN CAST(user_id__c AS int) ELSE null END AS user_id\n ,email AS contact_email\n ,name AS contact_name\n ,TIMESTAMP(NULLIF(createddate,'')) AS create_date\n --,sf_usrs_owner.sf_user_gk AS contact_owner_sf_user_gk\n ,lastname AS contact_last_name\n ,firstname AS contact_first_name\n ,phone AS contact_phone_number\n ,title AS contact_title\n ,description AS contact_description\n --,sf_usrs_created.sf_user_gk AS contact_created_by_sf_user_gk\n ,segment_id__c AS contact_segment_id\n ,original_source__c AS contact_original_source\n ,Most_Recent_Assignment_Bucket__c AS most_recent_assignment_bucket\n ,CAST(Most_Recent_Assignment_Date__c AS DATE) AS most_recent_assignment_date\n ,Most_Recent_Assignment_Reason__c AS most_recent_assignment_reason\n ,Most_Recent_Assignment_Sub_Reason__c AS most_recent_assignment_sub_reason\n ,Prospect_Fit_Rank__c AS prospect_fit_rank\n ,LeadSource AS contact_source\n ,Account_Country__c AS contact_country\n ,Contact_Role__c AS contact_role\n ,Booking_Status_CP__c AS booking_status_chilipiper\n ,SMALLINT(isdeleted) AS is_deleted\n FROM import_contact AS contact\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg__mc_contact", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__contact"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_contact AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__contact\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_stg__mc_contact AS (\n\n SELECT \n id AS contact_id\n ,accountid AS account_id\n ,CASE WHEN user_id__c RLIKE '^[0-9]*$' AND length(user_id__c) > 0 AND length(user_id__c) < 11 THEN CAST(user_id__c AS int) ELSE null END AS user_id\n ,email AS contact_email\n ,name AS contact_name\n ,TIMESTAMP(NULLIF(createddate,'')) AS create_date\n --,sf_usrs_owner.sf_user_gk AS contact_owner_sf_user_gk\n ,lastname AS contact_last_name\n ,firstname AS contact_first_name\n ,phone AS contact_phone_number\n ,title AS contact_title\n ,description AS contact_description\n --,sf_usrs_created.sf_user_gk AS contact_created_by_sf_user_gk\n ,segment_id__c AS contact_segment_id\n ,original_source__c AS contact_original_source\n ,Most_Recent_Assignment_Bucket__c AS most_recent_assignment_bucket\n ,CAST(Most_Recent_Assignment_Date__c AS DATE) AS most_recent_assignment_date\n ,Most_Recent_Assignment_Reason__c AS most_recent_assignment_reason\n ,Most_Recent_Assignment_Sub_Reason__c AS most_recent_assignment_sub_reason\n ,Prospect_Fit_Rank__c AS prospect_fit_rank\n ,LeadSource AS contact_source\n ,Account_Country__c AS contact_country\n ,Contact_Role__c AS contact_role\n ,Booking_Status_CP__c AS booking_status_chilipiper\n ,SMALLINT(isdeleted) AS is_deleted\n FROM import_contact AS contact\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg__mc_contact", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_conversion_rate": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_conversion_rate", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_conversion_rate", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_conversion_rate", "analytics___salesforce_stg__mc_conversion_rate"], "alias": "analytics___salesforce_stg__mc_conversion_rate", "checksum": {"name": "sha256", "checksum": "eb68fb3ae3e4c87f4ddbbe7f4ae5324100e488590ef0949dfb88ba3971f071dc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled view of salesforce conversion rate object (convertion rate between USD to other currencies) | PK: conversion_rate_id | granularity: currency, from_time", "columns": {"conversion_rate_id": {"name": "conversion_rate_id", "description": "Id of the conversion rate - Primary Key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency_symbol": {"name": "currency_symbol", "description": "Currency symbol: EUR,GBP,etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_date": {"name": "from_date", "description": "Start date of the given conversion rate - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "End date of the given conversion rate - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "conversion_rate": {"name": "conversion_rate", "description": "The conversion rate from USD to the given currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_current_rate": {"name": "is_current_rate", "description": "Indicates if the conversion rate relates to current date: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082656.7287652, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_conversion_rate", "raw_code": "-- Import --\n\nWITH import_salesforce_stg__datedconversionrate AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__datedconversionrate') }}\n\n-- Logic --\n\n), salesforce_stg__mc_conversion_rate AS (\n\n SELECT\n Id AS conversion_rate_id,\n isocode AS currency_symbol,\n DATE(startdate) AS from_date,\n DATE(nextstartdate) AS to_date,\n conversionrate AS conversion_rate,\n SMALLINT(CURRENT_DATE >= startdate AND CURRENT_DATE < nextstartdate) AS is_current_rate\n FROM import_salesforce_stg__datedconversionrate\n \n)\n\n-- Result --\nSELECT * FROM salesforce_stg__mc_conversion_rate", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__datedconversionrate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__datedconversionrate"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_stg__datedconversionrate AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__datedconversionrate\n\n-- Logic --\n\n), salesforce_stg__mc_conversion_rate AS (\n\n SELECT\n Id AS conversion_rate_id,\n isocode AS currency_symbol,\n DATE(startdate) AS from_date,\n DATE(nextstartdate) AS to_date,\n conversionrate AS conversion_rate,\n SMALLINT(CURRENT_DATE >= startdate AND CURRENT_DATE < nextstartdate) AS is_current_rate\n FROM import_salesforce_stg__datedconversionrate\n \n)\n\n-- Result --\nSELECT * FROM salesforce_stg__mc_conversion_rate", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_cs_lead": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_cs_lead", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_cs_lead", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_cs_lead", "analytics___salesforce_stg__mc_cs_lead"], "alias": "analytics___salesforce_stg__mc_cs_lead", "checksum": {"name": "sha256", "checksum": "f6477c91bf6115f9c0585e898b417539627498abcdb4ad0086754226f58d8e3e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A modeled view of the salesforce object cs_lead (crossell lead) | PK & Granularity: cs_lead_id", "columns": {"cs_lead_id": {"name": "cs_lead_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_opportunity_id": {"name": "related_opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082656.7826335, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_cs_lead", "raw_code": "-- Import --\n\n{{\nanalytics_selective_merge(\n inc_model = 'analytics___salesforce_stg__cs_lead_c',\n full_model = 'analytics___salesforce_stg__cs_lead_c_full',\n join_key =['Id']\n )\n}}\n\ncs_lead_merged_wo_deleted AS (\n\n SELECT * FROM selective_merge\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_mc_cs_lead_res AS (\n\n SELECT\n id AS cs_lead_id,\n Related_Opportunity__c AS related_opportunity_id,\n CSL_Source__c AS source\n FROM cs_lead_merged_wo_deleted\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_mc_cs_lead_res", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__cs_lead_c_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__cs_lead_c", "package": null, "version": null}, {"name": "analytics___salesforce_stg__cs_lead_c", "package": null, "version": null}, {"name": "analytics___salesforce_stg__cs_lead_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_selective_merge", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__cs_lead_c_full", "model.yoda.analytics___salesforce_stg__cs_lead_c", "model.yoda.analytics___salesforce_stg__cs_lead_c", "model.yoda.analytics___salesforce_stg__cs_lead_c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_inc_model AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__cs_lead_c\n\n), import_full_model AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__cs_lead_c_full\n\n), selective_merge AS (\n\n SELECT\n NULLIF(NVL(full_model.id, inc_model.id), '') AS id,\n FROM import_inc_model AS inc_model\n FULL JOIN import_full_model AS full_model\n ON inc_model.id = full_model.id\n\n),\n\ncs_lead_merged_wo_deleted AS (\n\n SELECT * FROM selective_merge\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_mc_cs_lead_res AS (\n\n SELECT\n id AS cs_lead_id,\n Related_Opportunity__c AS related_opportunity_id,\n CSL_Source__c AS source\n FROM cs_lead_merged_wo_deleted\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_mc_cs_lead_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_deal_summary": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_deal_summary", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_deal_summary", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_deal_summary", "analytics___salesforce_stg__mc_deal_summary"], "alias": "analytics___salesforce_stg__mc_deal_summary", "checksum": {"name": "sha256", "checksum": "7b2e945847a07acff6ccbfeb1a2e7c468ef360c5cbf5312765b653170ca7b422"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled view of salesforce deal summary new object | PK & Granularity: deal_summary_id", "columns": {"deal_summary_id": {"name": "deal_summary_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan": {"name": "plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_plan_id": {"name": "opportunity_plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type_summary": {"name": "deal_type_summary", "description": "deal type: Renewal/Sale", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency_iso_code": {"name": "currency_iso_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_from_opportunity_line": {"name": "renewal_from_opportunity_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_acv_original_currency": {"name": "previous_acv_original_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "current_acv_original_currency": {"name": "current_acv_original_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "previous_acv_usd": {"name": "previous_acv_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "current_acv_usd": {"name": "current_acv_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "current_acv_for_retention_usd": {"name": "current_acv_for_retention_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "current_acv_for_retention_original_currency": {"name": "current_acv_for_retention_original_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "delta_acv_usd": {"name": "delta_acv_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "delta_acv_for_retention_usd": {"name": "delta_acv_for_retention_usd", "description": "difference of current acv for retention and previous acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "delta_acv_calculated_usd": {"name": "delta_acv_calculated_usd", "description": "current_acv - previous_acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "pipeline_usd": {"name": "pipeline_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "row_rank_opp_plan": {"name": "row_rank_opp_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_by_sf_user_id": {"name": "updated_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_extra_domain": {"name": "is_extra_domain", "description": "indicates if the opportunity product is not a plan product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082656.8341653, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_deal_summary", "raw_code": "-- Import --\n\n{{\nanalytics_selective_merge(\n inc_model = 'analytics___salesforce_stg__deal_summary_new_c',\n full_model = 'analytics___salesforce_stg__deal_summary_new_c_full',\n join_key =['Id']\n )\n}}\n\ndeal_summary_merged_wo_deleted AS (\n\n SELECT * FROM selective_merge\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_mc_deal_summary AS (\n\n SELECT\n id AS deal_summary_id,\n opportunity__c AS opportunity_id,\n product_family__c AS product,\n product__c AS plan,\n opportunity_product__c AS opportunity_plan_id,\n deal_type__c AS deal_type_summary,\n currencyisocode AS currency_iso_code,\n status__c AS status,\n renewal_from_opportunity_line__c AS renewal_from_opportunity_line,\n CAST(previous_acv_original_currency__c AS DECIMAL(10,2)) AS previous_acv_original_currency,\n CAST(current_acv_original_currency__c AS DECIMAL(10,2)) AS current_acv_original_currency,\n CAST(previous_acv_usd_calculated__c AS DECIMAL(10,2)) AS previous_acv_usd,\n CAST(current_acv_usd_calculated__c AS DECIMAL(10,2)) AS current_acv_usd,\n CAST(current_acv_for_retention__c AS DECIMAL(10,2)) AS current_acv_for_retention_usd,\n CAST(current_acv_for_retention_original__c AS DECIMAL(10,2)) AS current_acv_for_retention_original_currency,\n CAST(line_delta_acv__c AS DECIMAL(10,2)) AS delta_acv_usd,\n CAST(line_delta_acv_for_retention__c AS DECIMAL(10,2)) AS delta_acv_for_retention_usd,\n CAST(CASE WHEN opportunity_product__c IS NULL THEN 0 ELSE Current_Acv_For_Retention__c END - previous_acv_usd_calculated__c AS DECIMAL(10,2)) AS delta_acv_calculated_usd,\n IF(latest_ds__c, pipeline_usd__c, 0) AS pipeline_usd,\n ROW_NUMBER() OVER (PARTITION BY opportunity__c, opportunity_product__c, product__c ORDER BY TIMESTAMP(createddate) DESC) AS row_rank_opp_plan,\n createdbyid AS created_by_sf_user_id,\n TIMESTAMP(createddate) AS created_at,\n lastmodifiedbyid AS updated_by_sf_user_id,\n TIMESTAMP(lastmodifieddate) AS updated_at,\n SMALLINT(CASE WHEN package_product__c = FALSE THEN 1 ELSE 0 END) AS is_extra_domain,\n SMALLINT(isdeleted) AS is_deleted\n FROM deal_summary_merged_wo_deleted\n \n)\n\n-- Result --\n\nSELECT * FROM salesforce_mc_deal_summary", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__deal_summary_new_c_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__deal_summary_new_c", "package": null, "version": null}, {"name": "analytics___salesforce_stg__deal_summary_new_c", "package": null, "version": null}, {"name": "analytics___salesforce_stg__deal_summary_new_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_selective_merge", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__deal_summary_new_c_full", "model.yoda.analytics___salesforce_stg__deal_summary_new_c", "model.yoda.analytics___salesforce_stg__deal_summary_new_c", "model.yoda.analytics___salesforce_stg__deal_summary_new_c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_inc_model AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__deal_summary_new_c\n\n), import_full_model AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__deal_summary_new_c_full\n\n), selective_merge AS (\n\n SELECT\n NULLIF(NVL(full_model.id, inc_model.id), '') AS id,\n FROM import_inc_model AS inc_model\n FULL JOIN import_full_model AS full_model\n ON inc_model.id = full_model.id\n\n),\n\ndeal_summary_merged_wo_deleted AS (\n\n SELECT * FROM selective_merge\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_mc_deal_summary AS (\n\n SELECT\n id AS deal_summary_id,\n opportunity__c AS opportunity_id,\n product_family__c AS product,\n product__c AS plan,\n opportunity_product__c AS opportunity_plan_id,\n deal_type__c AS deal_type_summary,\n currencyisocode AS currency_iso_code,\n status__c AS status,\n renewal_from_opportunity_line__c AS renewal_from_opportunity_line,\n CAST(previous_acv_original_currency__c AS DECIMAL(10,2)) AS previous_acv_original_currency,\n CAST(current_acv_original_currency__c AS DECIMAL(10,2)) AS current_acv_original_currency,\n CAST(previous_acv_usd_calculated__c AS DECIMAL(10,2)) AS previous_acv_usd,\n CAST(current_acv_usd_calculated__c AS DECIMAL(10,2)) AS current_acv_usd,\n CAST(current_acv_for_retention__c AS DECIMAL(10,2)) AS current_acv_for_retention_usd,\n CAST(current_acv_for_retention_original__c AS DECIMAL(10,2)) AS current_acv_for_retention_original_currency,\n CAST(line_delta_acv__c AS DECIMAL(10,2)) AS delta_acv_usd,\n CAST(line_delta_acv_for_retention__c AS DECIMAL(10,2)) AS delta_acv_for_retention_usd,\n CAST(CASE WHEN opportunity_product__c IS NULL THEN 0 ELSE Current_Acv_For_Retention__c END - previous_acv_usd_calculated__c AS DECIMAL(10,2)) AS delta_acv_calculated_usd,\n IF(latest_ds__c, pipeline_usd__c, 0) AS pipeline_usd,\n ROW_NUMBER() OVER (PARTITION BY opportunity__c, opportunity_product__c, product__c ORDER BY TIMESTAMP(createddate) DESC) AS row_rank_opp_plan,\n createdbyid AS created_by_sf_user_id,\n TIMESTAMP(createddate) AS created_at,\n lastmodifiedbyid AS updated_by_sf_user_id,\n TIMESTAMP(lastmodifieddate) AS updated_at,\n SMALLINT(CASE WHEN package_product__c = FALSE THEN 1 ELSE 0 END) AS is_extra_domain,\n SMALLINT(isdeleted) AS is_deleted\n FROM deal_summary_merged_wo_deleted\n \n)\n\n-- Result --\n\nSELECT * FROM salesforce_mc_deal_summary", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_event", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_event", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_event", "analytics___salesforce_stg__mc_event"], "alias": "analytics___salesforce_stg__mc_event", "checksum": {"name": "sha256", "checksum": "6b89675f87c341d72d91bb10f87e1e0da15dd796ddd929b0882cbb96c540aa54"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled view of salesforce lead object | PK & Granularity event_id", "columns": {"event_id": {"name": "event_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "salesforce account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "who_object_id": {"name": "who_object_id", "description": "salesforce id of related who object (lead/contact)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subject": {"name": "subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cp_meeting_type": {"name": "cp_meeting_type", "description": "meeting type from chillipiper", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "activity_date": {"name": "activity_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082656.8718119, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_event", "raw_code": "-- Import --\n\nWITH import_analytics_salesforce_stg_event AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__event') }}\n WHERE isdeleted = false\n\n), \n\n-- Logic --\n\nsalesforce_stg__mc_event AS (\n\n SELECT\n id AS event_id,\n accountid AS account_id,\n whoid AS who_object_id,\n subject,\n meeting_type_cp__c AS cp_meeting_type,\n SMALLINT(isdeleted) AS is_deleted,\n DATE(activitydate) AS activity_date,\n TIMESTAMP(createddate) AS created_at\n FROM import_analytics_salesforce_stg_event\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg__mc_event", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__event"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_analytics_salesforce_stg_event AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__event\n WHERE isdeleted = false\n\n), \n\n-- Logic --\n\nsalesforce_stg__mc_event AS (\n\n SELECT\n id AS event_id,\n accountid AS account_id,\n whoid AS who_object_id,\n subject,\n meeting_type_cp__c AS cp_meeting_type,\n SMALLINT(isdeleted) AS is_deleted,\n DATE(activitydate) AS activity_date,\n TIMESTAMP(createddate) AS created_at\n FROM import_analytics_salesforce_stg_event\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg__mc_event", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_lead": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_lead", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_lead", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_lead", "analytics___salesforce_stg__mc_lead"], "alias": "analytics___salesforce_stg__mc_lead", "checksum": {"name": "sha256", "checksum": "ecb661933d10d4c212a37939dd3251b8705e6075fff9056b4a04e26a10c8dcd7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled view of salesforce lead object", "columns": {"lead_id": {"name": "lead_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_website": {"name": "lead_website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_domain": {"name": "lead_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_title": {"name": "lead_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_full_name": {"name": "lead_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_email": {"name": "lead_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_source": {"name": "lead_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_source": {"name": "utm_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_medium": {"name": "utm_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_campaign": {"name": "utm_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_status": {"name": "lead_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_type": {"name": "lead_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_phone": {"name": "lead_phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_referrer": {"name": "lead_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_industry": {"name": "lead_industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_platform": {"name": "lead_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_sdr": {"name": "lead_sdr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_id": {"name": "segment_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_account_id": {"name": "converted_account_id", "description": "account id of converted lead", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_contact_id": {"name": "converted_contact_id", "description": "contact id of converted lead", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_opportunity_id": {"name": "converted_opportunity_id", "description": "opportunity id of converted lead", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_first_campaign": {"name": "lead_first_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_first_campaign_name": {"name": "lead_first_campaign_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_first_campaign_type": {"name": "lead_first_campaign_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_rank": {"name": "prospect_fit_rank", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_reason": {"name": "prospect_fit_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_rank": {"name": "prospect_intent_rank", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_reason": {"name": "prospect_intent_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_product_of_last_subscription_event": {"name": "last_product_of_last_subscription_event", "description": "indicate what was the last product event before the trigger", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_subscription_event_change": {"name": "last_subscription_event_change", "description": "indicate what was the product in the last product event before the trigger", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "booking_status_chilipiper": {"name": "booking_status_chilipiper", "description": "status for lead meeting booked with chilli piper", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_activity_at": {"name": "first_activity_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lead_mql_at": {"name": "lead_mql_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lead_created_at": {"name": "lead_created_at", "description": "timestamp of when the lead was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lead_converted_at": {"name": "lead_converted_at", "description": "timestamp of when the lead was converted", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_converted": {"name": "is_converted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_interested_in_reviews": {"name": "is_interested_in_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_interested_in_loyalty": {"name": "is_interested_in_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_interested_in_sms": {"name": "is_interested_in_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_interested_in_vms": {"name": "is_interested_in_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_interested_in_subscription": {"name": "is_interested_in_subscription", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082656.9370463, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_lead", "raw_code": "-- Import --\n\nWITH import_salesforce_stg__lead AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__lead') }}\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_stg_mc_lead AS (\n \n SELECT\n Id AS lead_id,\n Website AS lead_website,\n Domain__c AS lead_domain,\n Title AS lead_title,\n Name AS lead_full_name,\n Email AS lead_email,\n LeadSource AS lead_source,\n utm_source__c AS utm_source,\n utm_medium__c AS utm_medium,\n utm_campaign__c AS utm_campaign,\n status AS lead_status,\n Lead_type__c AS lead_type,\n Phone AS lead_phone,\n country,\n Referrer__c AS lead_referrer,\n Industry AS lead_industry,\n Platform__c AS lead_platform,\n SDR__c AS lead_sdr,\n Segment_ID__c AS segment_id,\n ConvertedAccountId AS converted_account_id,\n ConvertedContactId AS converted_contact_id,\n ConvertedOpportunityId AS converted_opportunity_id,\n organization_key__c AS organization_key,\n first_campaign__c AS lead_first_campaign,\n first_campaign_name__c AS lead_first_campaign_name,\n first_campaign_type__c AS lead_first_campaign_type,\n Prospect_Fit_Rank__c AS prospect_fit_rank,\n Prospect_Fit_Reason__c AS prospect_fit_reason,\n Prospect_Intent_Rank__c AS prospect_intent_rank,\n Prospect_Intent_Reason__c AS prospect_intent_reason,\n lastproductoflastsubscriptionevent__c\tAS last_product_of_last_subscription_event,\n lastsubscriptioneventchange__c AS last_subscription_event_change,\n booking_status_cp__c AS booking_status_chilipiper,\n TIMESTAMP(First_Activity_Date__c) AS first_activity_at,\n TIMESTAMP(MQL_Date__c) AS lead_mql_at,\n TIMESTAMP(CreatedDate) AS lead_created_at,\n TIMESTAMP(ConvertedDate) AS lead_converted_at,\n SMALLINT(IsConverted) AS is_converted,\n SMALLINT(IsDeleted) AS is_deleted,\n SMALLINT(interested_in_reviews__c) AS is_interested_in_reviews,\n SMALLINT(interested_in_loyalty__c) AS is_interested_in_loyalty,\n SMALLINT(interested_in_sms__c) AS is_interested_in_sms,\n SMALLINT(interested_in_vms__c) AS is_interested_in_vms,\n SMALLINT(interested_in_subscription__c) AS is_interested_in_subscription\n FROM import_salesforce_stg__lead\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg_mc_lead", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_stg__lead AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__lead\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_stg_mc_lead AS (\n \n SELECT\n Id AS lead_id,\n Website AS lead_website,\n Domain__c AS lead_domain,\n Title AS lead_title,\n Name AS lead_full_name,\n Email AS lead_email,\n LeadSource AS lead_source,\n utm_source__c AS utm_source,\n utm_medium__c AS utm_medium,\n utm_campaign__c AS utm_campaign,\n status AS lead_status,\n Lead_type__c AS lead_type,\n Phone AS lead_phone,\n country,\n Referrer__c AS lead_referrer,\n Industry AS lead_industry,\n Platform__c AS lead_platform,\n SDR__c AS lead_sdr,\n Segment_ID__c AS segment_id,\n ConvertedAccountId AS converted_account_id,\n ConvertedContactId AS converted_contact_id,\n ConvertedOpportunityId AS converted_opportunity_id,\n organization_key__c AS organization_key,\n first_campaign__c AS lead_first_campaign,\n first_campaign_name__c AS lead_first_campaign_name,\n first_campaign_type__c AS lead_first_campaign_type,\n Prospect_Fit_Rank__c AS prospect_fit_rank,\n Prospect_Fit_Reason__c AS prospect_fit_reason,\n Prospect_Intent_Rank__c AS prospect_intent_rank,\n Prospect_Intent_Reason__c AS prospect_intent_reason,\n lastproductoflastsubscriptionevent__c\tAS last_product_of_last_subscription_event,\n lastsubscriptioneventchange__c AS last_subscription_event_change,\n booking_status_cp__c AS booking_status_chilipiper,\n TIMESTAMP(First_Activity_Date__c) AS first_activity_at,\n TIMESTAMP(MQL_Date__c) AS lead_mql_at,\n TIMESTAMP(CreatedDate) AS lead_created_at,\n TIMESTAMP(ConvertedDate) AS lead_converted_at,\n SMALLINT(IsConverted) AS is_converted,\n SMALLINT(IsDeleted) AS is_deleted,\n SMALLINT(interested_in_reviews__c) AS is_interested_in_reviews,\n SMALLINT(interested_in_loyalty__c) AS is_interested_in_loyalty,\n SMALLINT(interested_in_sms__c) AS is_interested_in_sms,\n SMALLINT(interested_in_vms__c) AS is_interested_in_vms,\n SMALLINT(interested_in_subscription__c) AS is_interested_in_subscription\n FROM import_salesforce_stg__lead\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg_mc_lead", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_live_chat_transcript", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_live_chat_transcript", "analytics___salesforce_stg__mc_live_chat_transcript"], "alias": "analytics___salesforce_stg__mc_live_chat_transcript", "checksum": {"name": "sha256", "checksum": "d536b9f0bd862141d03622c1acea04b8204925548b59619177d427b8b0922aa0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled table which presents all of the live chats\nPK : chat_transcript_name, chat_id", "columns": {"chat_id": {"name": "chat_id", "description": "live chat id - unique value - PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "SF account ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "chat requester app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_id": {"name": "contact_id", "description": "SF contact id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_body": {"name": "chat_body", "description": "chat body - chat full transcript", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "supervisor_transcript_body": {"name": "supervisor_transcript_body", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "case_id": {"name": "case_id", "description": "related case ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_key": {"name": "chat_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_owner_id": {"name": "chat_owner_id", "description": "sf user id - agent id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_started_at": {"name": "chat_started_at", "description": "chat started at - full date and timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "chat_ended_at": {"name": "chat_ended_at", "description": "chat ended at - full date and timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "chat_abandoned_seconds": {"name": "chat_abandoned_seconds", "description": "chat abandoned time in seconds - only if the requestor abandoned", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chat_duration_seconds": {"name": "chat_duration_seconds", "description": "chat duration in seconds - only if the requestor didn't abandon", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chat_waiting_time_seconds": {"name": "chat_waiting_time_seconds", "description": "total waiting time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chat_ended_by": {"name": "chat_ended_by", "description": "chat ended by - Agent/Visitor", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_status": {"name": "chat_status", "description": "chat status - InProgress/Missed/Waiting/Completed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_topic": {"name": "chat_topic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "created by SF user ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "chat transcript created at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_modified_by_sf_user_id": {"name": "last_modified_by_sf_user_id", "description": "last modified by sf user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_modified_at": {"name": "last_modified_at", "description": "last modified date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "average_response_time_operator": {"name": "average_response_time_operator", "description": "avg time to response - operator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_response_time_visitor": {"name": "average_response_time_visitor", "description": "avg time to response - requestor", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "visitor_message_count": {"name": "visitor_message_count", "description": "visitor message cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "team_id_15_character": {"name": "team_id_15_character", "description": "case team id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "live_chat_visitor_id": {"name": "live_chat_visitor_id", "description": "Visitor ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_transcript_name": {"name": "chat_transcript_name", "description": "PK - 8 digit unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "request_time": {"name": "request_time", "description": "chat request time - good for both abandoned and not abadoned chats", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "operator_message_count": {"name": "operator_message_count", "description": "operator message count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_concern_addressed": {"name": "is_concern_addressed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_chatbot_session": {"name": "is_chatbot_session", "description": "is chatbot session - 1/0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "is deleted - 1/0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082656.9921858, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_live_chat_transcript", "raw_code": "-- Import -- \n\nWITH import_live_chat_transcript AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__livechattranscript_full') }}\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_stg__mc_live_chat_transcript AS (\n\n SELECT \n id AS chat_id,\n accountid AS account_id,\n app_key__c AS app_key,\n contactid AS contact_id,\n body AS chat_body,\n supervisortranscriptbody AS supervisor_transcript_body,\n caseid AS case_id,\n chatkey AS chat_key,\n ownerid AS chat_owner_id,\n TIMESTAMP(starttime) AS chat_started_at,\n TIMESTAMP(endtime) AS chat_ended_at,\n abandoned AS chat_abandoned_seconds,\n chatduration AS chat_duration_seconds,\n waittime AS chat_waiting_time_seconds,\n endedby AS chat_ended_by,\n status AS chat_status,\n topic__c AS chat_topic,\n createdbyid AS created_by_sf_user_id,\n TIMESTAMP(createddate) AS created_at,\n lastmodifiedbyid AS last_modified_by_sf_user_id,\n TIMESTAMP(lastmodifieddate) AS last_modified_at,\n averageresponsetimeoperator AS average_response_time_operator,\n averageresponsetimevisitor AS average_response_time_visitor,\n visitormessagecount AS visitor_message_count,\n LEFT(livechatbuttonid, 15) AS team_id_15_character,\n livechatvisitorid AS live_chat_visitor_id,\n name AS chat_transcript_name,\n TIMESTAMP(requesttime) AS request_time,\n operatormessagecount AS operator_message_count,\n CASE WHEN LOWER(concern_addressed__c) = 'yes' THEN 1\n WHEN LOWER(concern_addressed__c) = 'no' THEN 0\n ELSE NULL END AS is_concern_addressed,\n SMALLINT(ischatbotsession) AS is_chatbot_session,\n SMALLINT(isdeleted) AS is_deleted\n FROM import_live_chat_transcript\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg__mc_live_chat_transcript", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__livechattranscript_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__livechattranscript_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.sql", "compiled": true, "compiled_code": "-- Import -- \n\nWITH import_live_chat_transcript AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__livechattranscript_full\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_stg__mc_live_chat_transcript AS (\n\n SELECT \n id AS chat_id,\n accountid AS account_id,\n app_key__c AS app_key,\n contactid AS contact_id,\n body AS chat_body,\n supervisortranscriptbody AS supervisor_transcript_body,\n caseid AS case_id,\n chatkey AS chat_key,\n ownerid AS chat_owner_id,\n TIMESTAMP(starttime) AS chat_started_at,\n TIMESTAMP(endtime) AS chat_ended_at,\n abandoned AS chat_abandoned_seconds,\n chatduration AS chat_duration_seconds,\n waittime AS chat_waiting_time_seconds,\n endedby AS chat_ended_by,\n status AS chat_status,\n topic__c AS chat_topic,\n createdbyid AS created_by_sf_user_id,\n TIMESTAMP(createddate) AS created_at,\n lastmodifiedbyid AS last_modified_by_sf_user_id,\n TIMESTAMP(lastmodifieddate) AS last_modified_at,\n averageresponsetimeoperator AS average_response_time_operator,\n averageresponsetimevisitor AS average_response_time_visitor,\n visitormessagecount AS visitor_message_count,\n LEFT(livechatbuttonid, 15) AS team_id_15_character,\n livechatvisitorid AS live_chat_visitor_id,\n name AS chat_transcript_name,\n TIMESTAMP(requesttime) AS request_time,\n operatormessagecount AS operator_message_count,\n CASE WHEN LOWER(concern_addressed__c) = 'yes' THEN 1\n WHEN LOWER(concern_addressed__c) = 'no' THEN 0\n ELSE NULL END AS is_concern_addressed,\n SMALLINT(ischatbotsession) AS is_chatbot_session,\n SMALLINT(isdeleted) AS is_deleted\n FROM import_live_chat_transcript\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg__mc_live_chat_transcript", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_mql": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_mql", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_mql", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_mql", "analytics___salesforce_stg__mc_mql"], "alias": "analytics___salesforce_stg__mc_mql", "checksum": {"name": "sha256", "checksum": "d2fa7c7a3b6c894c6c9c27ab0571b461ddd4fd2e79dfc3c1f9e8524ee47cd941"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A modeled view of the salesforce object mql | PK & Granularity: mql_id", "columns": {"mql_id": {"name": "mql_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_id": {"name": "contact_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_id": {"name": "lead_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_owner": {"name": "sf_owner", "description": "salesforce user id of mql owner", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_channel": {"name": "demand_gen_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "Email address of the lead or contact related to the MQL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_territory": {"name": "current_territory", "description": "Field to show territory code based on Account Billing Country Code or Lead Country Code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recent_assignment_sub_reason": {"name": "recent_assignment_sub_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recent_assignment_reason": {"name": "recent_assignment_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_estimated_monthly_orders": {"name": "marketo_estimated_monthly_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdr_sales_estimated_monthly_orders": {"name": "isdr_sales_estimated_monthly_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "similarweb_traffic": {"name": "similarweb_traffic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "time_to_first_response": {"name": "time_to_first_response", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_interest": {"name": "product_interest", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_platform": {"name": "is_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ss": {"name": "is_ss", "description": "If corresponding lead's Package_category contains 'ss' then 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_rad": {"name": "is_rad", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_product_qualified": {"name": "is_product_qualified", "description": "Indicates if the mql comes from product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082657.2096295, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_mql", "raw_code": "-- Import --\n\n{{\nanalytics_selective_merge(\n inc_model = 'analytics___salesforce_stg__mql_c',\n full_model = 'analytics___salesforce_stg__mql_c_full',\n join_key =['Id']\n )\n}}\n\nmql_merged_wo_deleted AS (\n\n SELECT * FROM selective_merge\n WHERE isdeleted = false\n\n-- Logic --\n\n), mc_mql_res AS (\n\n SELECT\n Id AS mql_id,\n Contact_Record__c AS contact_id,\n Lead_Record__c AS lead_id,\n OwnerId AS sf_owner,\n Demand_Gen_Unit__c AS demand_gen_channel,\n Email_Address__c AS email,\n Lead_or_Contact_Current_Territory__c AS current_territory,\n Most_Recent_Assignment_Sub_Reason__c AS recent_assignment_sub_reason,\n Most_Recent_Assignment_Reason__c AS recent_assignment_reason,\n Orders_month_Estimate__c AS marketo_estimated_monthly_orders,\n Sales_Estimated_Monthly_Orders__c AS isdr_sales_estimated_monthly_orders,\n SimilarWeb_Traffic_New__c AS similarweb_traffic,\n Time_to_First_Response__c AS time_to_first_response,\n MQL_Product_Preference__c AS product_interest,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%loyalty%', 1, 0)) AS is_loyalty,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%review%', 1, 0)) AS is_reviews,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%sms%', 1, 0)) AS is_sms,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%vms%', 1, 0)) AS is_vms,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%platform%', 1, 0)) AS is_platform,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%subscription%', 1, 0)) AS is_subscriptions,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%email%', 1, 0)) AS is_email,\n SMALLINT(is_self_service__c) AS is_ss,\n SMALLINT(is_rad__c) AS is_rad,\n SMALLINT(product_qualified_lead__c) AS is_product_qualified,\n SMALLINT(isdeleted) AS is_deleted,\n DATE(MQL_Date__c) AS created_date,\n TIMESTAMP(MQL_Date__c) AS created_at\n FROM mql_merged_wo_deleted\n\n)\n\n-- Result --\n\nSELECT * FROM mc_mql_res", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mql_c_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mql_c", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mql_c", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mql_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_selective_merge", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__mql_c_full", "model.yoda.analytics___salesforce_stg__mql_c", "model.yoda.analytics___salesforce_stg__mql_c", "model.yoda.analytics___salesforce_stg__mql_c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_inc_model AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mql_c\n\n), import_full_model AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__mql_c_full\n\n), selective_merge AS (\n\n SELECT\n NULLIF(NVL(full_model.id, inc_model.id), '') AS id,\n FROM import_inc_model AS inc_model\n FULL JOIN import_full_model AS full_model\n ON inc_model.id = full_model.id\n\n),\n\nmql_merged_wo_deleted AS (\n\n SELECT * FROM selective_merge\n WHERE isdeleted = false\n\n-- Logic --\n\n), mc_mql_res AS (\n\n SELECT\n Id AS mql_id,\n Contact_Record__c AS contact_id,\n Lead_Record__c AS lead_id,\n OwnerId AS sf_owner,\n Demand_Gen_Unit__c AS demand_gen_channel,\n Email_Address__c AS email,\n Lead_or_Contact_Current_Territory__c AS current_territory,\n Most_Recent_Assignment_Sub_Reason__c AS recent_assignment_sub_reason,\n Most_Recent_Assignment_Reason__c AS recent_assignment_reason,\n Orders_month_Estimate__c AS marketo_estimated_monthly_orders,\n Sales_Estimated_Monthly_Orders__c AS isdr_sales_estimated_monthly_orders,\n SimilarWeb_Traffic_New__c AS similarweb_traffic,\n Time_to_First_Response__c AS time_to_first_response,\n MQL_Product_Preference__c AS product_interest,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%loyalty%', 1, 0)) AS is_loyalty,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%review%', 1, 0)) AS is_reviews,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%sms%', 1, 0)) AS is_sms,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%vms%', 1, 0)) AS is_vms,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%platform%', 1, 0)) AS is_platform,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%subscription%', 1, 0)) AS is_subscriptions,\n SMALLINT(IF(LOWER(MQL_Product_Preference__c) LIKE '%email%', 1, 0)) AS is_email,\n SMALLINT(is_self_service__c) AS is_ss,\n SMALLINT(is_rad__c) AS is_rad,\n SMALLINT(product_qualified_lead__c) AS is_product_qualified,\n SMALLINT(isdeleted) AS is_deleted,\n DATE(MQL_Date__c) AS created_date,\n TIMESTAMP(MQL_Date__c) AS created_at\n FROM mql_merged_wo_deleted\n\n)\n\n-- Result --\n\nSELECT * FROM mc_mql_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_onboarding_project": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_onboarding_project", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_onboarding_project", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_onboarding_project", "analytics___salesforce_stg__mc_onboarding_project"], "alias": "analytics___salesforce_stg__mc_onboarding_project", "checksum": {"name": "sha256", "checksum": "a51fbbb55c0c4d96df345fc7da217d1219eff52e14ba7f01f128b970b4c830cf"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled View Salseforce Onboarding project\nPK & granularity: onboarding project id", "columns": {"onboarding_project_id": {"name": "onboarding_project_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_project_name": {"name": "onboarding_project_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "project_created_at": {"name": "project_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_product_id": {"name": "account_product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_domain": {"name": "account_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_domains": {"name": "number_of_domains", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "stage": {"name": "stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "koc_date": {"name": "koc_date", "description": "Kick off call - relevant to customer care projects", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "onboarding_start_date": {"name": "onboarding_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "project_start_date": {"name": "project_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "process_paused_date": {"name": "process_paused_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "process_resumed_date": {"name": "process_resumed_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "paused_duration": {"name": "paused_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "due_date": {"name": "due_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "project_completion_date": {"name": "project_completion_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "target_launch_date": {"name": "target_launch_date", "description": "when the account wants to launch the product, will influence prioritization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_initial_won_date": {"name": "product_initial_won_date", "description": "the date that the product opportunity was won at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_by_id": {"name": "created_by_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_role": {"name": "owner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_id": {"name": "owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_manager": {"name": "onboarding_manager", "description": "this indicates who is the onboarding manager if the onboarding is closed or who is the csm if open", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_manager_team": {"name": "onboarding_manager_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_name": {"name": "csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_email": {"name": "csm_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_segment": {"name": "cs_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_score": {"name": "total_score", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "complexity_score": {"name": "complexity_score", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,0)"}, "onboarding_reason": {"name": "onboarding_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planned_duration_days": {"name": "planned_duration_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "actual_duration_gross_days": {"name": "actual_duration_gross_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "actual_duration_net": {"name": "actual_duration_net", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "net_duration": {"name": "net_duration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "customization_level": {"name": "customization_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "red_flag_bucket": {"name": "red_flag_bucket", "description": "the bucket of risk the account is in within the onboarding project, the CSM will fill this when risk spotted.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "red_flag_notes": {"name": "red_flag_notes", "description": "CSM comments on the red flag that they are raising", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "red_flag_date": {"name": "red_flag_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "red_flag_reason": {"name": "red_flag_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_headless_platform": {"name": "is_headless_platform", "description": "a type of store that requires different attention", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_agency": {"name": "is_agency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_multi_product": {"name": "is_multi_product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_multi_store": {"name": "is_multi_store", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_se_needed": {"name": "is_se_needed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_customer_care_project": {"name": "is_customer_care_project", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082657.2767353, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_onboarding_project", "raw_code": "-- Import -- \n\nWITH import_salesforce_onboarding_full AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__onboarding_project_c_full')}}\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_mc_onboarding_project AS (\n\n SELECT id AS onboarding_project_id,\n name AS onboarding_project_name,\n TIMESTAMP(createddate) AS project_created_at,\n organization_key__c AS organization_key,\n app_key__c AS app_key,\n STRING(merchant_id__c) AS merchant_id,\n account__c AS account_id,\n account_name__c AS account_name,\n account_product__c AS account_product_id,\n domain__c AS account_domain,\n INT(number_of_domains__c) AS number_of_domains,\n stage__c AS stage,\n DATE(koc_date__c) AS koc_date,\n DATE(onboarding_start_date__c) AS onboarding_start_date,\n DATE(project_start_date__c) AS project_start_date,\n DATE(process_paused_date__c) AS process_paused_date,\n DATE(process_resumed_date__c) AS process_resumed_date,\n INT(paused_duration__c) AS paused_duration,\n DATE(project_due_date__c) AS due_date,\n DATE(project_completion_date__c) AS project_completion_date,\n DATE(target_launch_date__c) AS target_launch_date,\n DATE(Final_AP_initial_won_date__c) AS product_initial_won_date,\n createdbyid AS created_by_id,\n owner_role__c AS owner_role,\n owner__c AS owner_id,\n Relevant_Onboarding_Manager__c AS onboarding_manager,\n Onboarding_Manager_CSM_Team__c AS onboarding_manager_team,\n csm__c AS csm_name,\n csm_email__c AS csm_email,\n cs_segment__c AS cs_segment,\n platform__c AS platform,\n product_line__c AS product_line,\n INT(total_score__c) AS total_score,\n DECIMAL(Complexity_Score__c) AS complexity_score,\n STRING(The_Reason_for_the_onboarding__c) AS onboarding_reason,\n INT(project_planned_duration_days__c) AS planned_duration_days,\n INT(proejct_actual_duration_gross_days__c) AS actual_duration_gross_days,\n INT(actual_duration_net__c) AS actual_duration_net,\n INT(Net_duration__c) AS net_duration,\n customization_level__c AS customization_level,\n red_flag_bucket__c AS red_flag_bucket,\n red_flag_notes__c AS red_flag_notes,\n DATE(red_flag_date__c) AS red_flag_date,\n red_flag_reason__c AS red_flag_reason,\n SMALLINT(headless_platform__c) AS is_headless_platform,\n IF(LOWER(agency__c) = 'yes', 1, 0) AS is_agency,\n IF(LOWER(Multi_product__c) = 'yes', 1 ,0) AS is_multi_product,\n SMALLINT(Multi_Store__c) AS is_multi_store,\n SMALLINT(se_needed__c) AS is_se_needed,\n SMALLINT(Customer_Care_OB_project__c) AS is_customer_care_project,\n SMALLINT(isdeleted) AS is_deleted\n FROM import_salesforce_onboarding_full \n\n)\n\n-- Result -- \n\nSELECT * FROM salesforce_mc_onboarding_project", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__onboarding_project_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__onboarding_project_c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.sql", "compiled": true, "compiled_code": "-- Import -- \n\nWITH import_salesforce_onboarding_full AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__onboarding_project_c_full\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_mc_onboarding_project AS (\n\n SELECT id AS onboarding_project_id,\n name AS onboarding_project_name,\n TIMESTAMP(createddate) AS project_created_at,\n organization_key__c AS organization_key,\n app_key__c AS app_key,\n STRING(merchant_id__c) AS merchant_id,\n account__c AS account_id,\n account_name__c AS account_name,\n account_product__c AS account_product_id,\n domain__c AS account_domain,\n INT(number_of_domains__c) AS number_of_domains,\n stage__c AS stage,\n DATE(koc_date__c) AS koc_date,\n DATE(onboarding_start_date__c) AS onboarding_start_date,\n DATE(project_start_date__c) AS project_start_date,\n DATE(process_paused_date__c) AS process_paused_date,\n DATE(process_resumed_date__c) AS process_resumed_date,\n INT(paused_duration__c) AS paused_duration,\n DATE(project_due_date__c) AS due_date,\n DATE(project_completion_date__c) AS project_completion_date,\n DATE(target_launch_date__c) AS target_launch_date,\n DATE(Final_AP_initial_won_date__c) AS product_initial_won_date,\n createdbyid AS created_by_id,\n owner_role__c AS owner_role,\n owner__c AS owner_id,\n Relevant_Onboarding_Manager__c AS onboarding_manager,\n Onboarding_Manager_CSM_Team__c AS onboarding_manager_team,\n csm__c AS csm_name,\n csm_email__c AS csm_email,\n cs_segment__c AS cs_segment,\n platform__c AS platform,\n product_line__c AS product_line,\n INT(total_score__c) AS total_score,\n DECIMAL(Complexity_Score__c) AS complexity_score,\n STRING(The_Reason_for_the_onboarding__c) AS onboarding_reason,\n INT(project_planned_duration_days__c) AS planned_duration_days,\n INT(proejct_actual_duration_gross_days__c) AS actual_duration_gross_days,\n INT(actual_duration_net__c) AS actual_duration_net,\n INT(Net_duration__c) AS net_duration,\n customization_level__c AS customization_level,\n red_flag_bucket__c AS red_flag_bucket,\n red_flag_notes__c AS red_flag_notes,\n DATE(red_flag_date__c) AS red_flag_date,\n red_flag_reason__c AS red_flag_reason,\n SMALLINT(headless_platform__c) AS is_headless_platform,\n IF(LOWER(agency__c) = 'yes', 1, 0) AS is_agency,\n IF(LOWER(Multi_product__c) = 'yes', 1 ,0) AS is_multi_product,\n SMALLINT(Multi_Store__c) AS is_multi_store,\n SMALLINT(se_needed__c) AS is_se_needed,\n SMALLINT(Customer_Care_OB_project__c) AS is_customer_care_project,\n SMALLINT(isdeleted) AS is_deleted\n FROM import_salesforce_onboarding_full \n\n)\n\n-- Result -- \n\nSELECT * FROM salesforce_mc_onboarding_project", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_opportunity": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_opportunity", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_opportunity", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity", "analytics___salesforce_stg__mc_opportunity"], "alias": "analytics___salesforce_stg__mc_opportunity", "checksum": {"name": "sha256", "checksum": "64be400dd295e8050340a10590629333eb3cbb054da1e51db9482474b7e41600"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled view of Opportunity salesforce object.\nPK: opportunity_id", "columns": {"opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "salesforce account_id (FK: account)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_name": {"name": "opportunity_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date": {"name": "start_date", "description": "Contract starting date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "close_date": {"name": "close_date", "description": "Contract signing date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "entered_demo_date": {"name": "entered_demo_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "actual_end_date": {"name": "actual_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sales_region": {"name": "sales_region", "description": "region code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sales_segment": {"name": "order_sales_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secondary_seller_id": {"name": "secondary_seller_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "Creator of opportunity- Salesforce id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_sf_user_id": {"name": "sdr_sf_user_id", "description": "SDR salesforce id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stage": {"name": "stage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type": {"name": "deal_type", "description": "Product: changes in desl status. example: Reviews: Same Rate, Loyalty: Usage Expansion, VMS: Discount Decrease, Insights: Same Rate", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type_as_per_deal_summary": {"name": "deal_type_as_per_deal_summary", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel": {"name": "attribution_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "All plans included in the opportunity seperated by '+'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_type": {"name": "customer_type", "description": "Type of customer by subscription type, greenfield or migration", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "record_type_name": {"name": "record_type_name", "description": "Enterprise Opportunity|Standard Opportunity|Self Service Opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "record_type_id": {"name": "record_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_id": {"name": "owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptions_seller_id": {"name": "subscriptions_seller_id", "description": "SF User ID of subscription seller", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_owner_role": {"name": "original_owner_role", "description": "role of sf user that owns the opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_currency": {"name": "original_currency", "description": "original currency ISO code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_rate": {"name": "discount_rate", "description": "Opportunity discount rate in precent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_booking": {"name": "delta_booking", "description": "Total Ds Delta ACV + Delta eARR + Prime eARR + Gold eARR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_delta_earr": {"name": "sms_delta_earr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_delta_earr": {"name": "subscriptions_delta_earr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_acv_in_usd": {"name": "delta_acv_in_usd", "description": "Delta ACV compared to previous opp. Used for upsell and x-sell deals", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pipeline_usd": {"name": "pipeline_usd", "description": "Pipeline delta bookings for all products included in the deal cycle, looks at maximum value throguhout deal, so even if a product is removed this is still included in the figure", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "won_sale_probability": {"name": "won_sale_probability", "description": "The opportunity's probability to be Won - Sale [0...1].\nEach stage has a matching probability (0 = Lost, 1 = Won - Sale).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "conversion_rate": {"name": "conversion_rate", "description": "currency conversion rate from original opportunity's original currency to usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "estimated_arr_in_usd": {"name": "estimated_arr_in_usd", "description": "SMS eARR + Subscriptions eARR + Prime eARR + Gold eARR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "sms_estimated_arr_in_usd": {"name": "sms_estimated_arr_in_usd", "description": "The SMS eARR. Does not reflect the delta, meaning renewals may have an eARR value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "email_estimated_arr_in_usd": {"name": "email_estimated_arr_in_usd", "description": "Email marketing product estimated ARR", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "subscriptions_estimated_arr_in_usd": {"name": "subscriptions_estimated_arr_in_usd", "description": "The Subscriptions eARR. Does not reflect the delta, meaning renewals may have an eARR value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "prime_estimated_arr_in_usd": {"name": "prime_estimated_arr_in_usd", "description": "eARR associated with particular Prime package", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "gold_estimated_arr_in_usd": {"name": "gold_estimated_arr_in_usd", "description": "eARR of Gold as based on value of the sales: estimated monthly orders field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "estimated_monthly_order_range": {"name": "estimated_monthly_order_range", "description": "order volume range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_review_requests_per_month": {"name": "estimated_review_requests_per_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "num_of_end_of_contract_extension_month": {"name": "num_of_end_of_contract_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "num_of_csm_extension_month": {"name": "num_of_csm_extension_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "sms_commitment_term": {"name": "sms_commitment_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merged_to_opportunity_id": {"name": "merged_to_opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_email_intent": {"name": "is_email_intent", "description": "An indicator to show if the customer intends on using email product when sold alongside SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "contract_duration_months": {"name": "contract_duration_months", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "contract_actual_duration_months": {"name": "contract_actual_duration_months", "description": "contract duration + free months + csm extention months, actual duration is NULL unless in opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "original_referrer_owner": {"name": "original_referrer_owner", "description": "The original referrer owner is the partner manager who gets credit for this deal in case it is won.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_closed": {"name": "is_closed", "description": "Stage is not one of the following: Won - Closed, Lost After Won, Lost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_excluded_from_compensation": {"name": "is_excluded_from_compensation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_marketing": {"name": "is_marketing", "description": "An indicator to show opporutnity has been driven by a marketing channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_osdr": {"name": "is_osdr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_other_demand_gen_channel": {"name": "is_other_demand_gen_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_bundle": {"name": "is_bundle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_company_expansion": {"name": "is_company_expansion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_current_contract": {"name": "is_current_contract", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sal": {"name": "is_sal", "description": "ISNOTNULL(enterted_demo_date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_won_sale": {"name": "is_won_sale", "description": "Opportunity stage = 'won - sale'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost": {"name": "is_lost", "description": "Opportunity stage = 'lost'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_lost_after_won": {"name": "is_lost_after_won", "description": "Opportunity stage = 'lost after won'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_new_account_opportunity": {"name": "is_new_account_opportunity", "description": "Opportunity type IN 'new sale','migration to annual','poc renewal','recycled opp'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_partner_upsell": {"name": "is_partner_upsell", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ht_ss": {"name": "is_ht_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "partner_engagement_id": {"name": "partner_engagement_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_id": {"name": "original_referrer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_type": {"name": "referral_type", "description": "Common types:Heads Up, Referral, Influence", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_owner_id": {"name": "referrer_owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upsell_acv_in_usd": {"name": "upsell_acv_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_csm_upon_closed": {"name": "loyalty_csm_upon_closed", "description": "csm stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_team_upon_closed": {"name": "loyalty_csm_team_upon_closed", "description": "csm team stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_upon_closed": {"name": "ugc_csm_upon_closed", "description": "csm stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_team_upon_closed": {"name": "ugc_csm_team_upon_closed", "description": "csm team stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_upon_closed": {"name": "primary_csm_upon_closed", "description": "csm stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team_upon_closed": {"name": "primary_csm_team_upon_closed", "description": "csm team stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_upon_closed": {"name": "sms_csm_upon_closed", "description": "csm stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_team_upon_closed": {"name": "sms_csm_team_upon_closed", "description": "csm team stamped when the opportunity is closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_comp_paid_date": {"name": "cs_comp_paid_date", "description": "Timestamp to the day the CS comp paid", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_scsm_deal": {"name": "is_scsm_deal", "description": "is super CSM deal", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_staggered_contract": {"name": "is_staggered_contract", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "contract_renewal_date": {"name": "contract_renewal_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "lost_reason": {"name": "lost_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_sub_reason": {"name": "lost_sub_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_reason_details": {"name": "lost_reason_details", "description": "The details to why the Opportunity was lost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_after_won_reason": {"name": "lost_after_won_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pre_opp_ht_product_list": {"name": "pre_opp_ht_product_list", "description": "all ht annual products concatenated, the day prior to opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "sms_first_commitment_value": {"name": "sms_first_commitment_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_second_commitment_value": {"name": "sms_second_commitment_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "renewal_to_opportunity_id": {"name": "renewal_to_opportunity_id", "description": "reference to previous opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_sf_url": {"name": "opportunity_sf_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "updated_at": {"name": "updated_at", "description": "object's update time in salesforce", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082657.3787844, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_opportunity", "raw_code": "-- Import --\n\n{{\nanalytics_selective_merge(\n inc_model = 'analytics___salesforce_stg__opportunity',\n full_model = 'analytics___salesforce_stg__opportunity_full',\n join_key =['Id']\n )\n}}\n\nopportunity_merged_wo_deleted AS (\n\n SELECT * FROM selective_merge\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_mc_opportunity_full AS (\n\n SELECT\n id AS opportunity_id,\n accountid AS account_id,\n name AS opportunity_name,\n DATE(NULLIF(start_date__c,'')) AS start_date,\n DATE(NULLIF(closedate,'')) AS close_date,\n DATE(NULLIF(entered_demo__c,'')) AS entered_demo_date,\n DATE(NULLIF(actual_end_date_new__c,'')) AS actual_end_date,\n sales_region__c AS sales_region,\n IF(LOWER(sales_segment__c) = 'mid-market','MM',sales_segment__c) AS order_sales_segment,\n secondary_seller__c AS secondary_seller_id,\n createdbyid AS created_by_sf_user_id,\n sdr_id__c AS sdr_sf_user_id,\n type AS type,\n stagename AS stage,\n deal_type__c AS deal_type,\n deal_type_as_per_deal_summary__c AS deal_type_as_per_deal_summary,\n attribution_channel__c AS attribution_channel,\n package__c AS plan_name,\n Subscription_Customer_Type__c as customer_type,\n record_type_name__c AS record_type_name,\n recordtypeid as record_type_id,\n description AS description,\n ownerid AS owner_id,\n tertiary_seller__c AS subscriptions_seller_id,\n original_owner_role__c as original_owner_role,\n UPPER(currencyisocode) AS original_currency,\n total_discount__c AS discount_rate,\n delta_booking__c AS delta_booking,\n delta_earr__c AS sms_delta_earr,\n delta_earr_subscriptions__c AS subscriptions_delta_earr,\n total_ds_delta_acv__c AS delta_acv_in_usd,\n pipeline_usd__c AS pipeline_usd,\n CAST(Probability/100 AS DECIMAL(10,2)) AS won_sale_probability,\n CAST(conversion_rate__c AS DECIMAL(10,2)) AS conversion_rate,\n CAST(total_earr_usd__c AS DECIMAL(10,2)) AS estimated_arr_in_usd,\n CAST(sms_earr_usd__c AS DECIMAL(10,2)) AS sms_estimated_arr_in_usd,\n CAST(Email_Marketing_eARR__c AS DECIMAL(10,2)) AS email_estimated_arr_in_usd,\n CAST(subscriptions_earr_usd__c AS DECIMAL(10,2)) AS subscriptions_estimated_arr_in_usd,\n CAST(prime_earr_usd__c AS DECIMAL(10,2)) AS prime_estimated_arr_in_usd,\n CAST(gold_earr_usd__c AS DECIMAL(10,2)) AS gold_estimated_arr_in_usd,\n sales_estimated_monthly_orders__c AS estimated_monthly_order_range,\n Estimated_Review_Requests_Per_Month__c AS estimated_review_requests_per_month,\n INT(end_of_contract_extension_month__c) AS num_of_end_of_contract_extension_month,\n INT(retention_csm_free_months__c) AS num_of_csm_extension_month,\n sms_commitment_term__c AS sms_commitment_term,\n merge_to_opportunity__c AS merged_to_opportunity_id,\n SMALLINT(Email_Intent__c) AS is_email_intent,\n INT(Contract_Duration__c) AS contract_duration_months,\n Actual_Duration_New__c AS contract_actual_duration_months,\n Original_Referrer_Owner__c AS original_referrer_owner,\n SMALLINT(IsClosed) AS is_closed,\n SMALLINT(Excluded_from_COMP_on__c) AS is_excluded_from_compensation,\n SMALLINT(IF(LOWER(attribution_channel__c) LIKE '%marketing%',1,0)) AS is_marketing,\n SMALLINT(IF(LOWER(attribution_channel__c) LIKE '%osdr%',1,0)) AS is_osdr,\n SMALLINT(IF(LOWER(attribution_channel__c) = 'other',1,0)) AS is_other_demand_gen_channel,\n SMALLINT(is_bundle__c) AS is_bundle,\n SMALLINT(company_expansion__c) AS is_company_expansion,\n SMALLINT(current_contract__c) AS is_current_contract,\n SMALLINT(IF(ISNOTNULL(entered_demo__c),1,0)) AS is_sal,\n SMALLINT(IF(LOWER(stagename) = 'won - sale',1,0)) AS is_won_sale,\n SMALLINT(IF(LOWER(stagename) = 'lost',1,0)) AS is_lost,\n SMALLINT(IF(LOWER(stagename) = 'lost after won',1,0)) AS is_lost_after_won,\n SMALLINT(IF(LOWER(type) IN ('new sale','migration to annual','poc renewal','recycled opp'),1,0)) AS is_new_account_opportunity,\n SMALLINT(partner_upsell__c) AS is_partner_upsell,\n SMALLINT(Hybrid_Deal_HT_SS__c) AS is_ht_ss,\n partner_referral__c AS partner_engagement_id,\n original_referrer__c AS original_referrer_id,\n referral_type__c AS referral_type,\n referrer_owner__c AS referrer_owner_id,\n new_acv_usd__c AS upsell_acv_in_usd,\n loyalty_csm_upon_closed_won__c AS loyalty_csm_upon_closed,\n loyalty_csm_team_upon_closed__c AS loyalty_csm_team_upon_closed,\n reviews_csm_upon_closed__c AS ugc_csm_upon_closed,\n reviews_csm_team_upon_closed__c AS ugc_csm_team_upon_closed,\n primary_csm_upon_closed__c AS primary_csm_upon_closed,\n primary_csm_team_upon_closed__c AS primary_csm_team_upon_closed,\n sms_csm_upon_closed__c AS sms_csm_upon_closed,\n sms_csm_team_upon_closed__c AS sms_csm_team_upon_closed,\n DATE(CS_Comp_Paid__c) AS cs_comp_paid_date,\n SMALLINT(SCSM_Deal__c) AS is_scsm_deal,\n SMALLINT(Staggered_Contract__c) AS is_staggered_contract,\n DATE(Contract_Renewal_Date__c) AS contract_renewal_date,\n Why_Lost__c AS lost_reason,\n lost_sub_reason__c AS lost_sub_reason,\n Why_lost_Description__c AS lost_reason_details,\n LAW_Reason__c AS lost_after_won_reason,\n NVL(ARRAY_SORT(SPLIT(TRIM(',', REPLACE(IF(LOWER(Annual_Products__C) LIKE '%not annual%' ,NULL, LOWER(Annual_Products__C)),' ')),',')),ARRAY()) AS pre_opp_ht_product_list,\n SMS_Commitment_Value__c AS sms_first_commitment_value,\n SMS_Second_Commitment_Value__c AS sms_second_commitment_value,\n renewal_opportunity__c AS renewal_to_opportunity_id,\n CONCAT('https://yotpo.lightning.force.com/',id) AS opportunity_sf_url,\n SMALLINT(isdeleted) AS is_deleted,\n TIMESTAMP(lastmodifieddate) AS updated_at,\n DATE(createddate) AS created_date,\n TIMESTAMP(createddate) AS created_at\n FROM opportunity_merged_wo_deleted\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_mc_opportunity_full", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__opportunity_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__opportunity_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_selective_merge", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__opportunity_full", "model.yoda.analytics___salesforce_stg__opportunity", "model.yoda.analytics___salesforce_stg__opportunity", "model.yoda.analytics___salesforce_stg__opportunity_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_inc_model AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__opportunity\n\n), import_full_model AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__opportunity_full\n\n), selective_merge AS (\n\n SELECT\n NULLIF(NVL(full_model.id, inc_model.id), '') AS id,\n NULLIF(full_model.ACV_Expectancy__c, '') AS ACV_Expectancy__c,\n NULLIF(full_model.ACV_USD__c, '') AS ACV_USD__c,\n NULLIF(full_model.ACV__c, '') AS ACV__c,\n NULLIF(full_model.AE_Forecast_Category__c, '') AS AE_Forecast_Category__c,\n NULLIF(full_model.AM_Age__c, '') AS AM_Age__c,\n NULLIF(full_model.APP_KEY_account__c, '') AS APP_KEY_account__c,\n NULLIF(full_model.AR_Helper_Order_Exclusion__c, '') AS AR_Helper_Order_Exclusion__c,\n NULLIF(full_model.AccountId, '') AS AccountId,\n NULLIF(full_model.Account_Address_Valid__c, '') AS Account_Address_Valid__c,\n NULLIF(full_model.Account_CSM_Super__c, '') AS Account_CSM_Super__c,\n NULLIF(full_model.Account_Manager_Assignment_Date__c, '') AS Account_Manager_Assignment_Date__c,\n NULLIF(full_model.Account_Master_Opp_Id__c, '') AS Account_Master_Opp_Id__c,\n NULLIF(full_model.Account_Name_Formula__c, '') AS Account_Name_Formula__c,\n NULLIF(full_model.Account_Name__c, '') AS Account_Name__c,\n NULLIF(full_model.Account_Referrer__c, '') AS Account_Referrer__c,\n NULLIF(full_model.Account_from_Opportunity__c, '') AS Account_from_Opportunity__c,\n NULLIF(full_model.Account_in_Zuora__c, '') AS Account_in_Zuora__c,\n NULLIF(full_model.ActivityMetricId, '') AS ActivityMetricId,\n NULLIF(full_model.ActivityMetricRollupId, '') AS ActivityMetricRollupId,\n NULLIF(full_model.Actual_Contract_Duration__c, '') AS Actual_Contract_Duration__c,\n NULLIF(full_model.Actual_Duration_New__c, '') AS Actual_Duration_New__c,\n NULLIF(full_model.Actual_End_Date_New__c, '') AS Actual_End_Date_New__c,\n NULLIF(full_model.Actual_End_Date__c, '') AS Actual_End_Date__c,\n NULLIF(full_model.Add_Auto_Renew_Clause__c, '') AS Add_Auto_Renew_Clause__c,\n NULLIF(full_model.Add_On_Product__c, '') AS Add_On_Product__c,\n NULLIF(full_model.Add_to_Winback_Process__c, '') AS Add_to_Winback_Process__c,\n NULLIF(full_model.Added_Extra_Seats__c, '') AS Added_Extra_Seats__c,\n NULLIF(full_model.Added_to_Lockdown_Process_Date__c, '') AS Added_to_Lockdown_Process_Date__c,\n NULLIF(full_model.Additional_Context__c, '') AS Additional_Context__c,\n NULLIF(full_model.Address_validation_needed__c, '') AS Address_validation_needed__c,\n NULLIF(full_model.Agency_Involvement_Throughout_Deployment__c, '') AS Agency_Involvement_Throughout_Deployment__c,\n NULLIF(full_model.Align_with_Original_Contract_Renewal__c, '') AS Align_with_Original_Contract_Renewal__c,\n NULLIF(full_model.Amount, '') AS Amount,\n NULLIF(full_model.Annual_Products__c, '') AS Annual_Products__c,\n NULLIF(full_model.Annual_Reviews_for_Syndication__c, '') AS Annual_Reviews_for_Syndication__c,\n NULLIF(full_model.Ask_to_Renew__c, '') AS Ask_to_Renew__c,\n NULLIF(full_model.Attribution_Channel__c, '') AS Attribution_Channel__c,\n NULLIF(full_model.Auto_Closed_by_AR__c, '') AS Auto_Closed_by_AR__c,\n NULLIF(full_model.Auto_Renewal_Contact_Name__c, '') AS Auto_Renewal_Contact_Name__c,\n NULLIF(full_model.Auto_Renewal_Customer_Choice__c, '') AS Auto_Renewal_Customer_Choice__c,\n NULLIF(full_model.Auto_Renewal_Exclusion_Reason__c, '') AS Auto_Renewal_Exclusion_Reason__c,\n NULLIF(full_model.Auto_Renewal_Request_Type__c, '') AS Auto_Renewal_Request_Type__c,\n NULLIF(full_model.Bill_To__c, '') AS Bill_To__c,\n NULLIF(full_model.Billing_Contract_Duration_Days__c, '') AS Billing_Contract_Duration_Days__c,\n NULLIF(full_model.Billing_Frequency__c, '') AS Billing_Frequency__c,\n NULLIF(full_model.Bundle_Total__c, '') AS Bundle_Total__c,\n NULLIF(full_model.COVID_implications__c, '') AS COVID_implications__c,\n NULLIF(full_model.CSM_Free_Months_Value__c, '') AS CSM_Free_Months_Value__c,\n NULLIF(full_model.CSM_Owner_Role__c, '') AS CSM_Owner_Role__c,\n NULLIF(full_model.CSM_Team_Leader__c, '') AS CSM_Team_Leader__c,\n NULLIF(full_model.CS_Comp_Paid__c, '') AS CS_Comp_Paid__c,\n NULLIF(full_model.CTP_Code__c, '') AS CTP_Code__c,\n NULLIF(full_model.CampaignId, '') AS CampaignId,\n NULLIF(full_model.Cancellation_Date__c, '') AS Cancellation_Date__c,\n NULLIF(full_model.Cancelled_during_trial__c, '') AS Cancelled_during_trial__c,\n NULLIF(full_model.Change_Currency_Flag__c, '') AS Change_Currency_Flag__c,\n NULLIF(full_model.Client_s_Agency__c, '') AS Client_s_Agency__c,\n NULLIF(full_model.CloseDate, '') AS CloseDate,\n NULLIF(full_model.Close_Date_Day_Less_Than_Today_Day__c, '') AS Close_Date_Day_Less_Than_Today_Day__c,\n NULLIF(full_model.Close_Date_Pushed__c, '') AS Close_Date_Pushed__c,\n NULLIF(full_model.Close_Month__c, '') AS Close_Month__c,\n NULLIF(full_model.Combined_Opportunities_EARR__c, '') AS Combined_Opportunities_EARR__c,\n NULLIF(full_model.Commercial_Contact_Email__c, '') AS Commercial_Contact_Email__c,\n NULLIF(full_model.Commercial_Contact__c, '') AS Commercial_Contact__c,\n NULLIF(full_model.Company_Expansion__c, '') AS Company_Expansion__c,\n NULLIF(full_model.Compelling_Event_del__c, '') AS Compelling_Event_del__c,\n NULLIF(full_model.Concession_Reason__c, '') AS Concession_Reason__c,\n NULLIF(full_model.Conga_CSM_Notes__c, '') AS Conga_CSM_Notes__c,\n NULLIF(full_model.Conga_Culture_Currency__c, '') AS Conga_Culture_Currency__c,\n NULLIF(full_model.Conga_Payment_Terms_Days__c, '') AS Conga_Payment_Terms_Days__c,\n NULLIF(full_model.Conga_RemindIn__c, '') AS Conga_RemindIn__c,\n NULLIF(full_model.Conga_Reminder__c, '') AS Conga_Reminder__c,\n NULLIF(full_model.Conga_Seats_Info__c, '') AS Conga_Seats_Info__c,\n NULLIF(full_model.ContactId, '') AS ContactId,\n NULLIF(full_model.Contains_Dedicated_CSM__c, '') AS Contains_Dedicated_CSM__c,\n NULLIF(full_model.ContractId, '') AS ContractId,\n NULLIF(full_model.Contract_Duration_Days__c, '') AS Contract_Duration_Days__c,\n NULLIF(full_model.Contract_Duration_Months__c, '') AS Contract_Duration_Months__c,\n NULLIF(full_model.Contract_Duration__c, '') AS Contract_Duration__c,\n NULLIF(full_model.Contract_Renewal_Date__c, '') AS Contract_Renewal_Date__c,\n NULLIF(full_model.Contract_Renewal_Helpe_Number__c, '') AS Contract_Renewal_Helpe_Number__c,\n NULLIF(full_model.Contract_Renewal_Helper_Number_Year__c, '') AS Contract_Renewal_Helper_Number_Year__c,\n NULLIF(full_model.Contract_Renewal_Helper_Record_Type__c, '') AS Contract_Renewal_Helper_Record_Type__c,\n NULLIF(full_model.Contract_Renewal_Manual__c, '') AS Contract_Renewal_Manual__c,\n NULLIF(full_model.Conversion_Rate_Raw__c, '') AS Conversion_Rate_Raw__c,\n NULLIF(full_model.Conversion_Rate__c, '') AS Conversion_Rate__c,\n NULLIF(full_model.Converted__c, '') AS Converted__c,\n NULLIF(full_model.Create_Date_Day_Less_Than_Today_Day__c, '') AS Create_Date_Day_Less_Than_Today_Day__c,\n NULLIF(full_model.Create_Potential_Opportunity__c, '') AS Create_Potential_Opportunity__c,\n NULLIF(full_model.CreatedById, '') AS CreatedById,\n NULLIF(full_model.CreatedDate, '') AS CreatedDate,\n NULLIF(full_model.Created_from_CS_Lead__c, '') AS Created_from_CS_Lead__c,\n NULLIF(full_model.Critical_Event__c, '') AS Critical_Event__c,\n NULLIF(full_model.CurrencyIsoCode, '') AS CurrencyIsoCode,\n NULLIF(full_model.Current_ACV_For_Retention_USD_Loyalty__c, '') AS Current_ACV_For_Retention_USD_Loyalty__c,\n NULLIF(full_model.Current_ACV_For_Retention_USD_SMS__c, '') AS Current_ACV_For_Retention_USD_SMS__c,\n NULLIF(full_model.Current_ACV_For_Retention_USD_UGC__c, '') AS Current_ACV_For_Retention_USD_UGC__c,\n NULLIF(full_model.Current_Contact_Role__c, '') AS Current_Contact_Role__c,\n NULLIF(full_model.Current_Contract__c, '') AS Current_Contract__c,\n NULLIF(full_model.Current_Usage_Commitment_Term_End_Date__c, '') AS Current_Usage_Commitment_Term_End_Date__c,\n NULLIF(full_model.Current_Usage_Commitment_Term_Start_Date__c, '') AS Current_Usage_Commitment_Term_Start_Date__c,\n NULLIF(full_model.Customer_Refund_Required__c, '') AS Customer_Refund_Required__c,\n NULLIF(full_model.Date_Of_Converting_Nurturing_Email__c, '') AS Date_Of_Converting_Nurturing_Email__c,\n NULLIF(full_model.Days_From_Last_Activity__c, '') AS Days_From_Last_Activity__c,\n NULLIF(full_model.Days_In_Current_Stage__c, '') AS Days_In_Current_Stage__c,\n NULLIF(full_model.Days_Until_Contract_Renewal__c, '') AS Days_Until_Contract_Renewal__c,\n NULLIF(full_model.Days_in_Contract_Signed__c, '') AS Days_in_Contract_Signed__c,\n NULLIF(full_model.Days_in_Contracting__c, '') AS Days_in_Contracting__c,\n NULLIF(full_model.Days_in_Demo__c, '') AS Days_in_Demo__c,\n NULLIF(full_model.Days_in_Discovery__c, '') AS Days_in_Discovery__c,\n NULLIF(full_model.Days_in_Evaluation__c, '') AS Days_in_Evaluation__c,\n NULLIF(full_model.Days_in_Propose__c, '') AS Days_in_Propose__c,\n NULLIF(full_model.Days_in_SAL__c, '') AS Days_in_SAL__c,\n NULLIF(full_model.Days_to_Start_Date__c, '') AS Days_to_Start_Date__c,\n NULLIF(full_model.Deal_Type_Filter_GS__c, '') AS Deal_Type_Filter_GS__c,\n NULLIF(full_model.Deal_Type__c, '') AS Deal_Type__c,\n NULLIF(full_model.Deal_Type_as_per_Deal_Summary__c, '') AS Deal_Type_as_per_Deal_Summary__c,\n NULLIF(full_model.Dealhub_Additional_comments__c, '') AS Dealhub_Additional_comments__c,\n NULLIF(full_model.Dealhub_Custom_Terms__c, '') AS Dealhub_Custom_Terms__c,\n NULLIF(full_model.Dealhub_Domain_List__c, '') AS Dealhub_Domain_List__c,\n NULLIF(full_model.Dealhub_End_Date__c, '') AS Dealhub_End_Date__c,\n NULLIF(full_model.Dealhub_Main_Add_on_Discount__c, '') AS Dealhub_Main_Add_on_Discount__c,\n NULLIF(full_model.Dealhub_Main_Add_on_List_Price__c, '') AS Dealhub_Main_Add_on_List_Price__c,\n NULLIF(full_model.Dealhub_Main_Add_on_Total_Price__c, '') AS Dealhub_Main_Add_on_Total_Price__c,\n NULLIF(full_model.Dealhub_New_Address__c, '') AS Dealhub_New_Address__c,\n NULLIF(full_model.Dealhub_Quote_ID__c, '') AS Dealhub_Quote_ID__c,\n NULLIF(full_model.Dealhub_SalesAllowLegacy__c, '') AS Dealhub_SalesAllowLegacy__c,\n NULLIF(full_model.Dealhub_Signed_Date__c, '') AS Dealhub_Signed_Date__c,\n NULLIF(full_model.Dealhub_Stage__c, '') AS Dealhub_Stage__c,\n NULLIF(full_model.Dealhub_Total_Seats__c, '') AS Dealhub_Total_Seats__c,\n NULLIF(full_model.Dealhub_URL__c, '') AS Dealhub_URL__c,\n NULLIF(full_model.Decision_Maker_Job_Title__c, '') AS Decision_Maker_Job_Title__c,\n NULLIF(full_model.Decision__c, '') AS Decision__c,\n NULLIF(full_model.Delayed_Start_Date_Approved_Partners__c, '') AS Delayed_Start_Date_Approved_Partners__c,\n NULLIF(full_model.Delta_ACV_USD_Loyalty__c, '') AS Delta_ACV_USD_Loyalty__c,\n NULLIF(full_model.Delta_ACV_USD_SMS__c, '') AS Delta_ACV_USD_SMS__c,\n NULLIF(full_model.Delta_ACV_USD_UGC__c, '') AS Delta_ACV_USD_UGC__c,\n NULLIF(full_model.Delta_Booking__c, '') AS Delta_Booking__c,\n NULLIF(full_model.Delta_eARR__c, '') AS Delta_eARR__c,\n NULLIF(full_model.Delta_eARR_Subscriptions__c, '') AS Delta_eARR_Subscriptions__c,\n NULLIF(full_model.Deprovisioning_Outcome__c, '') AS Deprovisioning_Outcome__c,\n NULLIF(full_model.Description, '') AS Description,\n NULLIF(full_model.Discount__c, '') AS Discount__c,\n NULLIF(full_model.Do_not_update_territory__c, '') AS Do_not_update_territory__c,\n NULLIF(full_model.Don_t_Recalculate_eARR__c, '') AS Don_t_Recalculate_eARR__c,\n NULLIF(full_model.Done_t_Send_Auto_Renewal_Notification__c, '') AS Done_t_Send_Auto_Renewal_Notification__c,\n NULLIF(full_model.Downgraded_Package__c, '') AS Downgraded_Package__c,\n NULLIF(full_model.Downgraded_package_price__c, '') AS Downgraded_package_price__c,\n NULLIF(full_model.Duration_for_Free_Months_Scenario__c, '') AS Duration_for_Free_Months_Scenario__c,\n NULLIF(full_model.Effective_Date_Free_months_SB__c, '') AS Effective_Date_Free_months_SB__c,\n NULLIF(full_model.Effective_Date_Free_months__c, '') AS Effective_Date_Free_months__c,\n NULLIF(full_model.Email_Intent__c, '') AS Email_Intent__c,\n NULLIF(full_model.Email_Service_Provider_ESP__c, '') AS Email_Service_Provider_ESP__c,\n NULLIF(full_model.End_Date_Finance__c, '') AS End_Date_Finance__c,\n NULLIF(full_model.End_Date__c, '') AS End_Date__c,\n NULLIF(full_model.End_Of_Contract_Extension_Days__c, '') AS End_Of_Contract_Extension_Days__c,\n NULLIF(full_model.End_Of_Contract_Extension_Month__c, '') AS End_Of_Contract_Extension_Month__c,\n NULLIF(full_model.End_of_Opt_out_Period__c, '') AS End_of_Opt_out_Period__c,\n NULLIF(full_model.Entered_Closed__c, '') AS Entered_Closed__c,\n NULLIF(full_model.Entered_Contract_Signed__c, '') AS Entered_Contract_Signed__c,\n NULLIF(full_model.Entered_Contracting__c, '') AS Entered_Contracting__c,\n NULLIF(full_model.Entered_Demo__c, '') AS Entered_Demo__c,\n NULLIF(full_model.Entered_Discovery__c, '') AS Entered_Discovery__c,\n NULLIF(full_model.Entered_Evaluation__c, '') AS Entered_Evaluation__c,\n NULLIF(full_model.Entered_Propose__c, '') AS Entered_Propose__c,\n NULLIF(full_model.Entered_Quote_Email_Sent__c, '') AS Entered_Quote_Email_Sent__c,\n NULLIF(full_model.Entered_to_Auto_Renewal_Process_Date__c, '') AS Entered_to_Auto_Renewal_Process_Date__c,\n NULLIF(full_model.Entered_to_Renewal_Assist_Process_Date__c, '') AS Entered_to_Renewal_Assist_Process_Date__c,\n NULLIF(full_model.Enterprise_Lead__c, '') AS Enterprise_Lead__c,\n NULLIF(full_model.Estimated_AOV__c, '') AS Estimated_AOV__c,\n NULLIF(full_model.Estimated_Review_Requests_Per_Month__c, '') AS Estimated_Review_Requests_Per_Month__c,\n NULLIF(full_model.Estimated_vs_Include_Review_Requests__c, '') AS Estimated_vs_Include_Review_Requests__c,\n NULLIF(full_model.Exclude_From_Feedback_Process__c, '') AS Exclude_From_Feedback_Process__c,\n NULLIF(full_model.Exclude_from_Auto_Renewal_Process__c, '') AS Exclude_from_Auto_Renewal_Process__c,\n NULLIF(full_model.Exclude_from_No_Touch_Process__c, '') AS Exclude_from_No_Touch_Process__c,\n NULLIF(full_model.Exclude_from_Renewal_Reminder__c, '') AS Exclude_from_Renewal_Reminder__c,\n NULLIF(full_model.Excluded_from_COMP_on__c, '') AS Excluded_from_COMP_on__c,\n NULLIF(full_model.ExpectedRevenue, '') AS ExpectedRevenue,\n NULLIF(full_model.Expiration_Date__c, '') AS Expiration_Date__c,\n NULLIF(full_model.Extra_Domain_Pricing__c, '') AS Extra_Domain_Pricing__c,\n NULLIF(full_model.Fiscal, '') AS Fiscal,\n NULLIF(full_model.FiscalQuarter, '') AS FiscalQuarter,\n NULLIF(full_model.FiscalYear, '') AS FiscalYear,\n NULLIF(full_model.Follow_Up_In__c, '') AS Follow_Up_In__c,\n NULLIF(full_model.Follow_up_date_2__c, '') AS Follow_up_date_2__c,\n NULLIF(full_model.ForecastCategory, '') AS ForecastCategory,\n NULLIF(full_model.ForecastCategoryName, '') AS ForecastCategoryName,\n NULLIF(full_model.Free_Months_for_Contract_Alignment__c, '') AS Free_Months_for_Contract_Alignment__c,\n NULLIF(full_model.Free_period_charge_flag__c, '') AS Free_period_charge_flag__c,\n NULLIF(full_model.Full_Duration_Of_Contract__c, '') AS Full_Duration_Of_Contract__c,\n NULLIF(full_model.Gong__CurrentGenerators__c, '') AS Gong__CurrentGenerators__c,\n NULLIF(full_model.Gong__DeliveryInstallationStatus__c, '') AS Gong__DeliveryInstallationStatus__c,\n NULLIF(full_model.Gong__Gong_Count__c, '') AS Gong__Gong_Count__c,\n NULLIF(full_model.Gong__MainCompetitors__c, '') AS Gong__MainCompetitors__c,\n NULLIF(full_model.Gong__OrderNumber__c, '') AS Gong__OrderNumber__c,\n NULLIF(full_model.Gong__TrackingNumber__c, '') AS Gong__TrackingNumber__c,\n NULLIF(full_model.Good_Fit_for_the_Annual_Plan_Opp__c, '') AS Good_Fit_for_the_Annual_Plan_Opp__c,\n NULLIF(full_model.HasOpenActivity, '') AS HasOpenActivity,\n NULLIF(full_model.HasOpportunityLineItem, '') AS HasOpportunityLineItem,\n NULLIF(full_model.HasOverdueTask, '') AS HasOverdueTask,\n NULLIF(full_model.Hidden_Lost_Reason_Values_Renewal_Opp__c, '') AS Hidden_Lost_Reason_Values_Renewal_Opp__c,\n NULLIF(full_model.Hidden_Lost_Reason_Values__c, '') AS Hidden_Lost_Reason_Values__c,\n NULLIF(full_model.Hybrid_Deal_HT_SS__c, '') AS Hybrid_Deal_HT_SS__c,\n NULLIF(full_model.Id, '') AS Id,\n NULLIF(full_model.Ignore_Legacy__c, '') AS Ignore_Legacy__c,\n NULLIF(full_model.Impact__c, '') AS Impact__c,\n NULLIF(full_model.Import_Products_to_Dealhub__c, '') AS Import_Products_to_Dealhub__c,\n NULLIF(full_model.Include_Exclude_from_Auto_Renewal_Link__c, '') AS Include_Exclude_from_Auto_Renewal_Link__c,\n NULLIF(full_model.Include_Exclude_from_No_Touch_Link__c, '') AS Include_Exclude_from_No_Touch_Link__c,\n NULLIF(full_model.Include_In_No_Touch_Process__c, '') AS Include_In_No_Touch_Process__c,\n NULLIF(full_model.Include_MR__c, '') AS Include_MR__c,\n NULLIF(full_model.Include_in_Auto_Renewal_Process__c, '') AS Include_in_Auto_Renewal_Process__c,\n NULLIF(full_model.Included_Seats__c, '') AS Included_Seats__c,\n NULLIF(full_model.Includes_SMS_Product__c, '') AS Includes_SMS_Product__c,\n NULLIF(full_model.Includes_Self_Service_Product__c, '') AS Includes_Self_Service_Product__c,\n NULLIF(full_model.Includes_Syndication__c, '') AS Includes_Syndication__c,\n NULLIF(full_model.Inherited_Lead_Source__c, '') AS Inherited_Lead_Source__c,\n NULLIF(full_model.Initial_Account_Product_Process__c, '') AS Initial_Account_Product_Process__c,\n NULLIF(full_model.Initial_Relevant_CSM_Update__c, '') AS Initial_Relevant_CSM_Update__c,\n NULLIF(full_model.Initiate_Contract_Renewal_Datafix__c, '') AS Initiate_Contract_Renewal_Datafix__c,\n NULLIF(full_model.Initiate_Credit_Notification__c, '') AS Initiate_Credit_Notification__c,\n NULLIF(full_model.Initiate_Renewal_Opportunity_Creation__c, '') AS Initiate_Renewal_Opportunity_Creation__c,\n NULLIF(full_model.Initiate_Rev_Share_Process_Temp__c, '') AS Initiate_Rev_Share_Process_Temp__c,\n NULLIF(full_model.Initiate_TCV_Flow__c, '') AS Initiate_TCV_Flow__c,\n NULLIF(full_model.Initiate_deal_Type_Calculation__c, '') AS Initiate_deal_Type_Calculation__c,\n NULLIF(full_model.Insights_Product_Name__c, '') AS Insights_Product_Name__c,\n NULLIF(full_model.Intiate_GBP_Conversion_Rate_Fix__c, '') AS Intiate_GBP_Conversion_Rate_Fix__c,\n NULLIF(full_model.Invoices_In_Dunning__c, '') AS Invoices_In_Dunning__c,\n NULLIF(full_model.IsClosed, '') AS IsClosed,\n NULLIF(full_model.IsDeleted, '') AS IsDeleted,\n NULLIF(full_model.IsPrivate, '') AS IsPrivate,\n NULLIF(full_model.IsWon, '') AS IsWon,\n NULLIF(full_model.Is_Active_Subscription__c, '') AS Is_Active_Subscription__c,\n NULLIF(full_model.Is_Bundle__c, '') AS Is_Bundle__c,\n NULLIF(full_model.Is_this_a_downgrade_to_a_monthly_plan__c, '') AS Is_this_a_downgrade_to_a_monthly_plan__c,\n NULLIF(full_model.Key_Agency_Stakeholder_Contact__c, '') AS Key_Agency_Stakeholder_Contact__c,\n NULLIF(full_model.LAW_Reason__c, '') AS LAW_Reason__c,\n NULLIF(full_model.L_R_Orders_Included_Yearly__c, '') AS L_R_Orders_Included_Yearly__c,\n NULLIF(full_model.LastActivityDate, '') AS LastActivityDate,\n NULLIF(full_model.LastAmountChangedHistoryId, '') AS LastAmountChangedHistoryId,\n NULLIF(full_model.LastCloseDateChangedHistoryId, '') AS LastCloseDateChangedHistoryId,\n NULLIF(full_model.LastModifiedById, '') AS LastModifiedById,\n NULLIF(full_model.LastModifiedDate, '') AS LastModifiedDate,\n NULLIF(full_model.LastReferencedDate, '') AS LastReferencedDate,\n NULLIF(full_model.LastStageChangeDate, '') AS LastStageChangeDate,\n NULLIF(full_model.LastViewedDate, '') AS LastViewedDate,\n NULLIF(full_model.Last_Activity_Date__c, '') AS Last_Activity_Date__c,\n NULLIF(full_model.Last_Invoice_End_Date__c, '') AS Last_Invoice_End_Date__c,\n NULLIF(full_model.Last_Invoice_Fully_Paid__c, '') AS Last_Invoice_Fully_Paid__c,\n NULLIF(full_model.Last_Paid_Service_Date__c, '') AS Last_Paid_Service_Date__c,\n NULLIF(full_model.LeadSource, '') AS LeadSource,\n NULLIF(full_model.Lead_ID__c, '') AS Lead_ID__c,\n NULLIF(full_model.Lead_Source_Desscription__c, '') AS Lead_Source_Desscription__c,\n NULLIF(full_model.Legal_Entity__c, '') AS Legal_Entity__c,\n NULLIF(full_model.Locked_Account__c, '') AS Locked_Account__c,\n NULLIF(full_model.Loss_Reason_LR__c, '') AS Loss_Reason_LR__c,\n NULLIF(full_model.Loss_Reason_Reviews__c, '') AS Loss_Reason_Reviews__c,\n NULLIF(full_model.Loss_Reason_SMS__c, '') AS Loss_Reason_SMS__c,\n NULLIF(full_model.Loss_Reason_Subscription__c, '') AS Loss_Reason_Subscription__c,\n NULLIF(full_model.Loss_Reason_VMS__c, '') AS Loss_Reason_VMS__c,\n NULLIF(full_model.Loss_to_Syndication__c, '') AS Loss_to_Syndication__c,\n NULLIF(full_model.Lost_Details_Update_Date__c, '') AS Lost_Details_Update_Date__c,\n NULLIF(full_model.Lost_Main_Products__c, '') AS Lost_Main_Products__c,\n NULLIF(full_model.Lost_Opps_Products_Considered__c, '') AS Lost_Opps_Products_Considered__c,\n NULLIF(full_model.Lost_Sub_Reason__c, '') AS Lost_Sub_Reason__c,\n NULLIF(full_model.Lost_updated_through_Flow__c, '') AS Lost_updated_through_Flow__c,\n NULLIF(full_model.Loyalty_And_Referrals_Competitors__c, '') AS Loyalty_And_Referrals_Competitors__c,\n NULLIF(full_model.Loyalty_CSM_Team_Upon_Closed__c, '') AS Loyalty_CSM_Team_Upon_Closed__c,\n NULLIF(full_model.Loyalty_CSM_Upon_Closed_Won__c, '') AS Loyalty_CSM_Upon_Closed_Won__c,\n NULLIF(full_model.MCV__c, '') AS MCV__c,\n NULLIF(full_model.MM_Renewal_Notification__c, '') AS MM_Renewal_Notification__c,\n NULLIF(full_model.MRR__c, '') AS MRR__c,\n NULLIF(full_model.MSA_Type__c, '') AS MSA_Type__c,\n NULLIF(full_model.Main_CSM__c, '') AS Main_CSM__c,\n NULLIF(full_model.Main_Package_Discount__c, '') AS Main_Package_Discount__c,\n NULLIF(full_model.Main_Package_Prodcut__c, '') AS Main_Package_Prodcut__c,\n NULLIF(full_model.Main_Product_Families__c, '') AS Main_Product_Families__c,\n NULLIF(full_model.Manual_Team_Attribution__c, '') AS Manual_Team_Attribution__c,\n NULLIF(full_model.Mark_as_Master__c, '') AS Mark_as_Master__c,\n NULLIF(full_model.Memo__c, '') AS Memo__c,\n NULLIF(full_model.Merge_to_Opportunity__c, '') AS Merge_to_Opportunity__c,\n NULLIF(full_model.Merged_Contract__c, '') AS Merged_Contract__c,\n NULLIF(full_model.Mid_Market_Pricing_Tier__c, '') AS Mid_Market_Pricing_Tier__c,\n NULLIF(full_model.Migration_From_Monthly__c, '') AS Migration_From_Monthly__c,\n NULLIF(full_model.Monthly_Budget__c, '') AS Monthly_Budget__c,\n NULLIF(full_model.Most_Recent_Assignment_Bucket__c, '') AS Most_Recent_Assignment_Bucket__c,\n NULLIF(full_model.Most_Recent_Assignment_Date__c, '') AS Most_Recent_Assignment_Date__c,\n NULLIF(full_model.Most_Recent_Assignment_Reason__c, '') AS Most_Recent_Assignment_Reason__c,\n NULLIF(full_model.Most_Recent_Assignment_Sub_Reason__c, '') AS Most_Recent_Assignment_Sub_Reason__c,\n NULLIF(full_model.Must_Win__c, '') AS Must_Win__c,\n NULLIF(full_model.My_Opp_SDR__c, '') AS My_Opp_SDR__c,\n NULLIF(full_model.Name, '') AS Name,\n NULLIF(full_model.New_ACV_Swell__c, '') AS New_ACV_Swell__c,\n NULLIF(full_model.New_ACV_USD__c, '') AS New_ACV_USD__c,\n NULLIF(full_model.New_ACV_Yotpo__c, '') AS New_ACV_Yotpo__c,\n NULLIF(full_model.New_ACV__c, '') AS New_ACV__c,\n NULLIF(full_model.NextStep, '') AS NextStep,\n NULLIF(full_model.Next_Contact_Date__c, '') AS Next_Contact_Date__c,\n NULLIF(full_model.Next_Contact_Type__c, '') AS Next_Contact_Type__c,\n NULLIF(full_model.Next_Invoice_Start_Date_For_Free_Month__c, '') AS Next_Invoice_Start_Date_For_Free_Month__c,\n NULLIF(full_model.Next_Invoice_Start_Date__c, '') AS Next_Invoice_Start_Date__c,\n NULLIF(full_model.Next_Rounded_Months_From_Start_Date__c, '') AS Next_Rounded_Months_From_Start_Date__c,\n NULLIF(full_model.No_Dedicated_CSM__c, '') AS No_Dedicated_CSM__c,\n NULLIF(full_model.No_Touch_Exclusion_Reason__c, '') AS No_Touch_Exclusion_Reason__c,\n NULLIF(full_model.No_Touch_Notification_Date__c, '') AS No_Touch_Notification_Date__c,\n NULLIF(full_model.Num_of_Extra_Domain_Products__c, '') AS Num_of_Extra_Domain_Products__c,\n NULLIF(full_model.Number_of_Add_Ons__c, '') AS Number_of_Add_Ons__c,\n NULLIF(full_model.Number_of_Extra_Domains__c, '') AS Number_of_Extra_Domains__c,\n NULLIF(full_model.Number_of_Insights_Products__c, '') AS Number_of_Insights_Products__c,\n NULLIF(full_model.Number_of_Main_Products__c, '') AS Number_of_Main_Products__c,\n NULLIF(full_model.Number_of_Professional_Services__c, '') AS Number_of_Professional_Services__c,\n NULLIF(full_model.Number_of_Trial_Products__c, '') AS Number_of_Trial_Products__c,\n NULLIF(full_model.Number_of_Whitelabel_Products__c, '') AS Number_of_Whitelabel_Products__c,\n NULLIF(full_model.Omnichannel_Deal__c, '') AS Omnichannel_Deal__c,\n NULLIF(full_model.Opp_ID_18_Digit__c, '') AS Opp_ID_18_Digit__c,\n NULLIF(full_model.Opp_Products_Contain_Discount__c, '') AS Opp_Products_Contain_Discount__c,\n NULLIF(full_model.Opportunity_Age__c, '') AS Opportunity_Age__c,\n NULLIF(full_model.Opportunity_Alert__c, '') AS Opportunity_Alert__c,\n NULLIF(full_model.Opportunity_Assignment__c, '') AS Opportunity_Assignment__c,\n NULLIF(full_model.Opportunity_Count__c, '') AS Opportunity_Count__c,\n NULLIF(full_model.Opportunity_Insights_Total_Amount__c, '') AS Opportunity_Insights_Total_Amount__c,\n NULLIF(full_model.Opportunity_Loyalty_Total_Amount__c, '') AS Opportunity_Loyalty_Total_Amount__c,\n NULLIF(full_model.Opportunity_Reviews_Total_Amount__c, '') AS Opportunity_Reviews_Total_Amount__c,\n NULLIF(full_model.Opportunity_SMS_Total_Amount__c, '') AS Opportunity_SMS_Total_Amount__c,\n NULLIF(full_model.Opportunity_VMS_Total_Amount__c, '') AS Opportunity_VMS_Total_Amount__c,\n NULLIF(full_model.Opt_out_Clause__c, '') AS Opt_out_Clause__c,\n NULLIF(full_model.Optout_Duration__c, '') AS Optout_Duration__c,\n NULLIF(full_model.Order_Comments__c, '') AS Order_Comments__c,\n NULLIF(full_model.Order_Internal_Comments__c, '') AS Order_Internal_Comments__c,\n NULLIF(full_model.Orders_Included_L_R__c, '') AS Orders_Included_L_R__c,\n NULLIF(full_model.Orders_Included__c, '') AS Orders_Included__c,\n NULLIF(full_model.Original_Curation_Provider__c, '') AS Original_Curation_Provider__c,\n NULLIF(full_model.Original_IAP_Tier__c, '') AS Original_IAP_Tier__c,\n NULLIF(full_model.Original_Loyalty_Referral_Provider_M__c, '') AS Original_Loyalty_Referral_Provider_M__c,\n NULLIF(full_model.Original_Owner_Role__c, '') AS Original_Owner_Role__c,\n NULLIF(full_model.Original_Referrer_Owner__c, '') AS Original_Referrer_Owner__c,\n NULLIF(full_model.Original_Referrer__c, '') AS Original_Referrer__c,\n NULLIF(full_model.Original_Referrer_text__c, '') AS Original_Referrer_text__c,\n NULLIF(full_model.Original_Review_Provider__c, '') AS Original_Review_Provider__c,\n NULLIF(full_model.Original_SDR_Role__c, '') AS Original_SDR_Role__c,\n NULLIF(full_model.Other__c, '') AS Other__c,\n NULLIF(full_model.Overlay_AE__c, '') AS Overlay_AE__c,\n NULLIF(full_model.OwnerId, '') AS OwnerId,\n NULLIF(full_model.Owner_Manager_Email__c, '') AS Owner_Manager_Email__c,\n NULLIF(full_model.Owner_Role_Custom__c, '') AS Owner_Role_Custom__c,\n NULLIF(full_model.Owns_By_Group__c, '') AS Owns_By_Group__c,\n NULLIF(full_model.POS_Provider__c, '') AS POS_Provider__c,\n NULLIF(full_model.PS_Cost__c, '') AS PS_Cost__c,\n NULLIF(full_model.PS_Products_Flag__c, '') AS PS_Products_Flag__c,\n NULLIF(full_model.Package_Category__c, '') AS Package_Category__c,\n NULLIF(full_model.Package__c, '') AS Package__c,\n NULLIF(full_model.Pain__c, '') AS Pain__c,\n NULLIF(full_model.Parent_Account_Billing__c, '') AS Parent_Account_Billing__c,\n NULLIF(full_model.Parent_Account__c, '') AS Parent_Account__c,\n NULLIF(full_model.PartnerAccountId, '') AS PartnerAccountId,\n NULLIF(full_model.Partner_Commission_Percentage__c, '') AS Partner_Commission_Percentage__c,\n NULLIF(full_model.Partner_Involvement_in_Onboarding__c, '') AS Partner_Involvement_in_Onboarding__c,\n NULLIF(full_model.Partner_Referral_Referrer_Type__c, '') AS Partner_Referral_Referrer_Type__c,\n NULLIF(full_model.Partner_Referral__c, '') AS Partner_Referral__c,\n NULLIF(full_model.Partner_Upsell__c, '') AS Partner_Upsell__c,\n NULLIF(full_model.Partner_referral_text__c, '') AS Partner_referral_text__c,\n NULLIF(full_model.Per_Installment__c, '') AS Per_Installment__c,\n NULLIF(full_model.Platform__c, '') AS Platform__c,\n NULLIF(full_model.Pre_Lost_Status__c, '') AS Pre_Lost_Status__c,\n NULLIF(full_model.Prevent_Sync__c, '') AS Prevent_Sync__c,\n NULLIF(full_model.Prevent_downgrading__c, '') AS Prevent_downgrading__c,\n NULLIF(full_model.Previous_ACV_USD_Loyalty__c, '') AS Previous_ACV_USD_Loyalty__c,\n NULLIF(full_model.Previous_ACV_USD_SMS__c, '') AS Previous_ACV_USD_SMS__c,\n NULLIF(full_model.Previous_ACV_USD_UGC__c, '') AS Previous_ACV_USD_UGC__c,\n NULLIF(full_model.Previous_Opp_Package__c, '') AS Previous_Opp_Package__c,\n NULLIF(full_model.Previous_Opp_Total_Discount__c, '') AS Previous_Opp_Total_Discount__c,\n NULLIF(full_model.Price_Per_Installment_USD__c, '') AS Price_Per_Installment_USD__c,\n NULLIF(full_model.Price_per_Installment__c, '') AS Price_per_Installment__c,\n NULLIF(full_model.Pricebook2Id, '') AS Pricebook2Id,\n NULLIF(full_model.Primary_CSM_Team_Upon_Closed__c, '') AS Primary_CSM_Team_Upon_Closed__c,\n NULLIF(full_model.Primary_CSM_Upon_Closed__c, '') AS Primary_CSM_Upon_Closed__c,\n NULLIF(full_model.Probability, '') AS Probability,\n NULLIF(full_model.Product_Interest__c, '') AS Product_Interest__c,\n NULLIF(full_model.Purchase_Order_Expiration_Date__c, '') AS Purchase_Order_Expiration_Date__c,\n NULLIF(full_model.Purchase_Order_Number__c, '') AS Purchase_Order_Number__c,\n NULLIF(full_model.Purchased_as_MR__c, '') AS Purchased_as_MR__c,\n NULLIF(full_model.Push_as_New_Sale__c, '') AS Push_as_New_Sale__c,\n NULLIF(full_model.Recalculate_Deal_Type__c, '') AS Recalculate_Deal_Type__c,\n NULLIF(full_model.Recent_Source__c, '') AS Recent_Source__c,\n NULLIF(full_model.RecordTypeId, '') AS RecordTypeId,\n NULLIF(full_model.Record_Type_Name__c, '') AS Record_Type_Name__c,\n NULLIF(full_model.Referral_Date__c, '') AS Referral_Date__c,\n NULLIF(full_model.Referral_Type__c, '') AS Referral_Type__c,\n NULLIF(full_model.Referrer_Owner__c, '') AS Referrer_Owner__c,\n NULLIF(full_model.Relevant_App_keys_for_SMS__c, '') AS Relevant_App_keys_for_SMS__c,\n NULLIF(full_model.Relevant_CSM_Id_Helper__c, '') AS Relevant_CSM_Id_Helper__c,\n NULLIF(full_model.Relevant_CSM_for_CS_Outreach_First_Name__c, '') AS Relevant_CSM_for_CS_Outreach_First_Name__c,\n NULLIF(full_model.Relevant_CSM_for_CS_Outreach__c, '') AS Relevant_CSM_for_CS_Outreach__c,\n NULLIF(full_model.Remove_Auto_Renew_Clause__c, '') AS Remove_Auto_Renew_Clause__c,\n NULLIF(full_model.Remove_from_AL_Process__c, '') AS Remove_from_AL_Process__c,\n NULLIF(full_model.Remove_from_NT_Process__c, '') AS Remove_from_NT_Process__c,\n NULLIF(full_model.Remove_from_No_Touch__c, '') AS Remove_from_No_Touch__c,\n NULLIF(full_model.Renewal_Opportunity_Package__c, '') AS Renewal_Opportunity_Package__c,\n NULLIF(full_model.Renewal_Opportunity__c, '') AS Renewal_Opportunity__c,\n NULLIF(full_model.Renewal_To_Opp_Won_Sale__c, '') AS Renewal_To_Opp_Won_Sale__c,\n NULLIF(full_model.Requested_Feature__c, '') AS Requested_Feature__c,\n NULLIF(full_model.Retention_CSM_Free_Days__c, '') AS Retention_CSM_Free_Days__c,\n NULLIF(full_model.Retention_CSM_Free_Months_Reason__c, '') AS Retention_CSM_Free_Months_Reason__c,\n NULLIF(full_model.Retention_CSM_Free_Months__c, '') AS Retention_CSM_Free_Months__c,\n NULLIF(full_model.Retention_Goal_by_viewer__c, '') AS Retention_Goal_by_viewer__c,\n NULLIF(full_model.Rev_Share_Rate__c, '') AS Rev_Share_Rate__c,\n NULLIF(full_model.Reviews_Annual_Included_Orders__c, '') AS Reviews_Annual_Included_Orders__c,\n NULLIF(full_model.Reviews_CSM_Team_Upon_Closed__c, '') AS Reviews_CSM_Team_Upon_Closed__c,\n NULLIF(full_model.Reviews_CSM_Upon_Closed__c, '') AS Reviews_CSM_Upon_Closed__c,\n NULLIF(full_model.Reviews_Competitor_Price__c, '') AS Reviews_Competitor_Price__c,\n NULLIF(full_model.Reviews_Competitor__c, '') AS Reviews_Competitor__c,\n NULLIF(full_model.Run_PB2__c, '') AS Run_PB2__c,\n NULLIF(full_model.Run_PB__c, '') AS Run_PB__c,\n NULLIF(full_model.SAAS_Amount__c, '') AS SAAS_Amount__c,\n NULLIF(full_model.SAAS_CSMS_teams_upon_closed__c, '') AS SAAS_CSMS_teams_upon_closed__c,\n NULLIF(full_model.SAAS_CSMS_upon_closed__c, '') AS SAAS_CSMS_upon_closed__c,\n NULLIF(full_model.SAAS_Extra_Domain_w_Disc__c, '') AS SAAS_Extra_Domain_w_Disc__c,\n NULLIF(full_model.SAAS_WL_Amount__c, '') AS SAAS_WL_Amount__c,\n NULLIF(full_model.SAL_MTD__c, '') AS SAL_MTD__c,\n NULLIF(full_model.SAL__c, '') AS SAL__c,\n NULLIF(full_model.SCSM_Deal__c, '') AS SCSM_Deal__c,\n NULLIF(full_model.SDR_ID__c, '') AS SDR_ID__c,\n NULLIF(full_model.SDR_Lookup__c, '') AS SDR_Lookup__c,\n NULLIF(full_model.SDR_Role__c, '') AS SDR_Role__c,\n NULLIF(full_model.SDR_Role_old__c, '') AS SDR_Role_old__c,\n NULLIF(full_model.SDR__c, '') AS SDR__c,\n NULLIF(full_model.SLA_Status__c, '') AS SLA_Status__c,\n NULLIF(full_model.SMS_ACV__c, '') AS SMS_ACV__c,\n NULLIF(full_model.SMS_CSM_Team_Upon_Closed__c, '') AS SMS_CSM_Team_Upon_Closed__c,\n NULLIF(full_model.SMS_CSM_Upon_Closed__c, '') AS SMS_CSM_Upon_Closed__c,\n NULLIF(full_model.SMS_Commitment_Term__c, '') AS SMS_Commitment_Term__c,\n NULLIF(full_model.SMS_Commitment_Value__c, '') AS SMS_Commitment_Value__c,\n NULLIF(full_model.SMS_Second_Commitment_Value__c, '') AS SMS_Second_Commitment_Value__c,\n NULLIF(full_model.SMS_Usage_Cancellation_Date__c, '') AS SMS_Usage_Cancellation_Date__c,\n NULLIF(full_model.SQL_Assignment__c, '') AS SQL_Assignment__c,\n NULLIF(full_model.SQL_MTD__c, '') AS SQL_MTD__c,\n NULLIF(full_model.SalesLoft1__Most_Recent_Cadence_Name__c, '') AS SalesLoft1__Most_Recent_Cadence_Name__c,\n NULLIF(full_model.SalesLoft1__Most_Recent_Last_Completed_Step__c, '') AS SalesLoft1__Most_Recent_Last_Completed_Step__c,\n NULLIF(full_model.SalesLoft1__Primary_Contact__c, '') AS SalesLoft1__Primary_Contact__c,\n NULLIF(full_model.Sales_Accepted_Date__c, '') AS Sales_Accepted_Date__c,\n NULLIF(full_model.Sales_Demo_Feedback__c, '') AS Sales_Demo_Feedback__c,\n NULLIF(full_model.Sales_Enginieer__c, '') AS Sales_Enginieer__c,\n NULLIF(full_model.Sales_Estimated_Monthly_Orders__c, '') AS Sales_Estimated_Monthly_Orders__c,\n NULLIF(full_model.Sales_Estimated_Subscribers__c, '') AS Sales_Estimated_Subscribers__c,\n NULLIF(full_model.Sales_Free_Months_Value__c, '') AS Sales_Free_Months_Value__c,\n NULLIF(full_model.Sales_Region__c, '') AS Sales_Region__c,\n NULLIF(full_model.Sales_Segment__c, '') AS Sales_Segment__c,\n NULLIF(full_model.Sales_Segment_old__c, '') AS Sales_Segment_old__c,\n NULLIF(full_model.Secondary_Sales_Engineer__c, '') AS Secondary_Sales_Engineer__c,\n NULLIF(full_model.Secondary_Seller_Role__c, '') AS Secondary_Seller_Role__c,\n NULLIF(full_model.Secondary_Seller__c, '') AS Secondary_Seller__c,\n NULLIF(full_model.Segment_for_BI__c, '') AS Segment_for_BI__c,\n NULLIF(full_model.Selected_Product_ID_Conversion__c, '') AS Selected_Product_ID_Conversion__c,\n NULLIF(full_model.Selected_Product_for_Lead_Conversion__c, '') AS Selected_Product_for_Lead_Conversion__c,\n NULLIF(full_model.Show_Discount_Percentage__c, '') AS Show_Discount_Percentage__c,\n NULLIF(full_model.Signed_with_Auto_Renewal_Clause__c, '') AS Signed_with_Auto_Renewal_Clause__c,\n NULLIF(full_model.Situation__c, '') AS Situation__c,\n NULLIF(full_model.StageName, '') AS StageName,\n NULLIF(full_model.Standalone_Insights__c, '') AS Standalone_Insights__c,\n NULLIF(full_model.Start_Date_Difference_Today__c, '') AS Start_Date_Difference_Today__c,\n NULLIF(full_model.Start_Date_Week_Day_Name__c, '') AS Start_Date_Week_Day_Name__c,\n NULLIF(full_model.Start_Date__c, '') AS Start_Date__c,\n NULLIF(full_model.Start_Paid_Service_Date__c, '') AS Start_Paid_Service_Date__c,\n NULLIF(full_model.Strategic_Investment__c, '') AS Strategic_Investment__c,\n NULLIF(full_model.Submitted_Ads_LP_form__c, '') AS Submitted_Ads_LP_form__c,\n NULLIF(full_model.Subscription_Number__c, '') AS Subscription_Number__c,\n NULLIF(full_model.Sum_of_Sales_price__c, '') AS Sum_of_Sales_price__c,\n NULLIF(full_model.Swell_ACV__c, '') AS Swell_ACV__c,\n NULLIF(full_model.Swell_Orders__c, '') AS Swell_Orders__c,\n NULLIF(full_model.SyncedQuoteId, '') AS SyncedQuoteId,\n NULLIF(full_model.Syndication_Domains__c, '') AS Syndication_Domains__c,\n NULLIF(full_model.SystemModstamp, '') AS SystemModstamp,\n NULLIF(full_model.TCV__c, '') AS TCV__c,\n NULLIF(full_model.Talk_to_CSM__c, '') AS Talk_to_CSM__c,\n NULLIF(full_model.Technical_Contact_Email__c, '') AS Technical_Contact_Email__c,\n NULLIF(full_model.Technical_Contact_First_Name__c, '') AS Technical_Contact_First_Name__c,\n NULLIF(full_model.Technical_Contact_Last_Name__c, '') AS Technical_Contact_Last_Name__c,\n NULLIF(full_model.Technical_Contact_Phone__c, '') AS Technical_Contact_Phone__c,\n NULLIF(full_model.Template_ID_TEST__c, '') AS Template_ID_TEST__c,\n NULLIF(full_model.Template_ID__c, '') AS Template_ID__c,\n NULLIF(full_model.Temporary_AR_process_Include__c, '') AS Temporary_AR_process_Include__c,\n NULLIF(full_model.Territory_New__c, '') AS Territory_New__c,\n NULLIF(full_model.Tertiary_Seller__c, '') AS Tertiary_Seller__c,\n NULLIF(full_model.Test_Account__c, '') AS Test_Account__c,\n NULLIF(full_model.Time_of_AM_Ownership__c, '') AS Time_of_AM_Ownership__c,\n NULLIF(full_model.Time_willing_to_commit_of_months__c, '') AS Time_willing_to_commit_of_months__c,\n NULLIF(full_model.Timestamp_Billing_Frequency__c, '') AS Timestamp_Billing_Frequency__c,\n NULLIF(full_model.Timestamp_Retention_CSM_Free_Months__c, '') AS Timestamp_Retention_CSM_Free_Months__c,\n NULLIF(full_model.Timestamp_Sales_Free_Months__c, '') AS Timestamp_Sales_Free_Months__c,\n NULLIF(full_model.Today_s_Date__c, '') AS Today_s_Date__c,\n NULLIF(full_model.TotalOpportunityQuantity, '') AS TotalOpportunityQuantity,\n NULLIF(full_model.Total_Current_ACV__c, '') AS Total_Current_ACV__c,\n NULLIF(full_model.Total_Discount_For_Matan_and_Adi__c, '') AS Total_Discount_For_Matan_and_Adi__c,\n NULLIF(full_model.Total_Discount__c, '') AS Total_Discount__c,\n NULLIF(full_model.Total_Domains_LR__c, '') AS Total_Domains_LR__c,\n NULLIF(full_model.Total_Domains_SMS__c, '') AS Total_Domains_SMS__c,\n NULLIF(full_model.Total_Domains_VMS__c, '') AS Total_Domains_VMS__c,\n NULLIF(full_model.Total_Domains__c, '') AS Total_Domains__c,\n NULLIF(full_model.Total_Ds_Delta_ACV__c, '') AS Total_Ds_Delta_ACV__c,\n NULLIF(full_model.Total_Paid_by_UPS__c, '') AS Total_Paid_by_UPS__c,\n NULLIF(full_model.Total_Previous_ACV__c, '') AS Total_Previous_ACV__c,\n NULLIF(full_model.Total_Rev_Share_Paid__c, '') AS Total_Rev_Share_Paid__c,\n NULLIF(full_model.Total_Seats__c, '') AS Total_Seats__c,\n NULLIF(full_model.Total_Yotpo_ACV__c, '') AS Total_Yotpo_ACV__c,\n NULLIF(full_model.Type, '') AS Type,\n NULLIF(full_model.UPS_ACV__c, '') AS UPS_ACV__c,\n NULLIF(full_model.UPS_Account__c, '') AS UPS_Account__c,\n NULLIF(full_model.UPS_Deal__c, '') AS UPS_Deal__c,\n NULLIF(full_model.UPS_Subscription_Number__c, '') AS UPS_Subscription_Number__c,\n NULLIF(full_model.USER_is_CSM__c, '') AS USER_is_CSM__c,\n NULLIF(full_model.USER_is_from_CSM_team__c, '') AS USER_is_from_CSM_team__c,\n NULLIF(full_model.UTM_Content__c, '') AS UTM_Content__c,\n NULLIF(full_model.UTM_Term__c, '') AS UTM_Term__c,\n NULLIF(full_model.Upsell_Opportunity__c, '') AS Upsell_Opportunity__c,\n NULLIF(full_model.Usage_Opportunity__c, '') AS Usage_Opportunity__c,\n NULLIF(full_model.Usage_Team_Attribution__c, '') AS Usage_Team_Attribution__c,\n NULLIF(full_model.VMS_ACV__c, '') AS VMS_ACV__c,\n NULLIF(full_model.VMS_Competitor_Price__c, '') AS VMS_Competitor_Price__c,\n NULLIF(full_model.VMS_Competitor__c, '') AS VMS_Competitor__c,\n NULLIF(full_model.Value_Proposition__c, '') AS Value_Proposition__c,\n NULLIF(full_model.Viewed_Yotpo_Ads_LP__c, '') AS Viewed_Yotpo_Ads_LP__c,\n NULLIF(full_model.Visible_Name_for_Migration__c, '') AS Visible_Name_for_Migration__c,\n NULLIF(full_model.Web_Traffic__c, '') AS Web_Traffic__c,\n NULLIF(full_model.Which_Renewal_Process__c, '') AS Which_Renewal_Process__c,\n NULLIF(full_model.Why_Lost__c, '') AS Why_Lost__c,\n NULLIF(full_model.Why_bad_timing__c, '') AS Why_bad_timing__c,\n NULLIF(full_model.Why_do_you_think_they_didn_t_respond__c, '') AS Why_do_you_think_they_didn_t_respond__c,\n NULLIF(full_model.Why_lost_Description__c, '') AS Why_lost_Description__c,\n NULLIF(full_model.Winback_Date__c, '') AS Winback_Date__c,\n NULLIF(full_model.Winback_Notes__c, '') AS Winback_Notes__c,\n NULLIF(full_model.Winback_Opportunity__c, '') AS Winback_Opportunity__c,\n NULLIF(full_model.Winback_Reason__c, '') AS Winback_Reason__c,\n NULLIF(full_model.Won_Opp__c, '') AS Won_Opp__c,\n NULLIF(full_model.Wrong_Field_Do_Not_Touch__c, '') AS Wrong_Field_Do_Not_Touch__c,\n NULLIF(full_model.X6sense_Attribution__c, '') AS X6sense_Attribution__c,\n NULLIF(full_model.Yotpo_ACV__c, '') AS Yotpo_ACV__c,\n NULLIF(full_model.Zuora_Bill_Cycle_Day__c, '') AS Zuora_Bill_Cycle_Day__c,\n NULLIF(full_model.Zuora_CSM_Free_Days_Delta__c, '') AS Zuora_CSM_Free_Days_Delta__c,\n NULLIF(full_model.Zuora_CSM_Free_Days_Scenario_Price__c, '') AS Zuora_CSM_Free_Days_Scenario_Price__c,\n NULLIF(full_model.Zuora_CSM_Free_Month_Price_Customer__c, '') AS Zuora_CSM_Free_Month_Price_Customer__c,\n NULLIF(full_model.Zuora_CSM_Free_Month_Price_UPS__c, '') AS Zuora_CSM_Free_Month_Price_UPS__c,\n NULLIF(full_model.Zuora_CSM_Free_Months_Delta__c, '') AS Zuora_CSM_Free_Months_Delta__c,\n NULLIF(full_model.Zuora_Communication_Profile__c, '') AS Zuora_Communication_Profile__c,\n NULLIF(full_model.Zuora_Contract_Duration__c, '') AS Zuora_Contract_Duration__c,\n NULLIF(full_model.Zuora_Duration_for_Billing_Period__c, '') AS Zuora_Duration_for_Billing_Period__c,\n NULLIF(full_model.Zuora_Free_Month_Scenario_Price__c, '') AS Zuora_Free_Month_Scenario_Price__c,\n NULLIF(full_model.Zuora_Integration_Error__c, '') AS Zuora_Integration_Error__c,\n NULLIF(full_model.Zuora_Last_Charge_Amount__c, '') AS Zuora_Last_Charge_Amount__c,\n NULLIF(full_model.Zuora_Last_Charge_Date__c, '') AS Zuora_Last_Charge_Date__c,\n NULLIF(full_model.Zuora_Payment_Method__c, '') AS Zuora_Payment_Method__c,\n NULLIF(full_model.Zuora_Period_Change_Start_Date__c, '') AS Zuora_Period_Change_Start_Date__c,\n NULLIF(full_model.Zuora_Period_Type__c, '') AS Zuora_Period_Type__c,\n NULLIF(full_model.Zuora_Sales_Free_Days_Scenario_Price__c, '') AS Zuora_Sales_Free_Days_Scenario_Price__c,\n NULLIF(full_model.Zuora_Sales_Free_Month_Delta__c, '') AS Zuora_Sales_Free_Month_Delta__c,\n NULLIF(full_model.Zuora_Sales_Free_Month_Price_Customer__c, '') AS Zuora_Sales_Free_Month_Price_Customer__c,\n NULLIF(full_model.Zuora_Sales_Free_Month_Price_UPS__c, '') AS Zuora_Sales_Free_Month_Price_UPS__c,\n NULLIF(full_model.Zuora_Sales_Free_Month_Scenario_Price__c, '') AS Zuora_Sales_Free_Month_Scenario_Price__c,\n NULLIF(full_model.Zuora_Subscription_Total_Charge__c, '') AS Zuora_Subscription_Total_Charge__c,\n NULLIF(full_model.Zuora_Sync_Account__c, '') AS Zuora_Sync_Account__c,\n NULLIF(full_model.Zuora_Sync_Batch_Update__c, '') AS Zuora_Sync_Batch_Update__c,\n NULLIF(full_model.Zuora_Sync_Error_Reason__c, '') AS Zuora_Sync_Error_Reason__c,\n NULLIF(full_model.Zuora_Sync_Free_Months__c, '') AS Zuora_Sync_Free_Months__c,\n NULLIF(full_model.Zuora_Sync_Lost__c, '') AS Zuora_Sync_Lost__c,\n NULLIF(full_model.Zuora_Sync_Manually__c, '') AS Zuora_Sync_Manually__c,\n NULLIF(full_model.Zuora_Sync_Merge_Opportunity__c, '') AS Zuora_Sync_Merge_Opportunity__c,\n NULLIF(full_model.Zuora_Sync_Opportunity__c, '') AS Zuora_Sync_Opportunity__c,\n NULLIF(full_model.Zuora_Sync_POC_Extension__c, '') AS Zuora_Sync_POC_Extension__c,\n NULLIF(full_model.Zuora_Sync_Sales_Free_Months__c, '') AS Zuora_Sync_Sales_Free_Months__c,\n NULLIF(full_model.Zuora_Sync_UPS_CSM_Free_Months__c, '') AS Zuora_Sync_UPS_CSM_Free_Months__c,\n NULLIF(full_model.Zuora_Sync_UPS_Lost__c, '') AS Zuora_Sync_UPS_Lost__c,\n NULLIF(full_model.Zuora_Sync_UPS_Sales_Free_Months__c, '') AS Zuora_Sync_UPS_Sales_Free_Months__c,\n NULLIF(full_model.Zuora_Tax_Region__c, '') AS Zuora_Tax_Region__c,\n NULLIF(full_model._sdc_batched_at, '') AS _sdc_batched_at,\n NULLIF(full_model._sdc_extracted_at, '') AS _sdc_extracted_at,\n NULLIF(full_model._sdc_received_at, '') AS _sdc_received_at,\n NULLIF(full_model._sdc_sequence, '') AS _sdc_sequence,\n NULLIF(full_model._sdc_table_version, '') AS _sdc_table_version,\n NULLIF(full_model.ambition__timestamp_for_unittest__c, '') AS ambition__timestamp_for_unittest__c,\n NULLIF(full_model.mkto_si__MarketoAnalyzer__c, '') AS mkto_si__MarketoAnalyzer__c,\n NULLIF(full_model.of_Won_Child_Opps__c, '') AS of_Won_Child_Opps__c,\n NULLIF(full_model.sign_test_udi__c, '') AS sign_test_udi__c,\n NULLIF(full_model.user_id__c, '') AS user_id__c,\n NULLIF(full_model.utm_campaign__c, '') AS utm_campaign__c,\n NULLIF(full_model.utm_medium__c, '') AS utm_medium__c,\n NULLIF(full_model.utm_source__c, '') AS utm_source__c,\n NULLIF(full_model.Email_Marketing_eARR__c, '') AS Email_Marketing_eARR__c,\n NULLIF(full_model.SMS_eARR_USD__c, '') AS SMS_eARR_USD__c,\n NULLIF(full_model.Subscriptions_eARR_USD__c, '') AS Subscriptions_eARR_USD__c,\n NULLIF(full_model.Total_eARR_USD__c, '') AS Total_eARR_USD__c,\n NULLIF(full_model.Prime_eARR_USD__c, '') AS Prime_eARR_USD__c,\n NULLIF(full_model.Gold_eARR_USD__c, '') AS Gold_eARR_USD__c,\n NULLIF(full_model.rn, '') AS rn,\n FROM import_inc_model AS inc_model\n FULL JOIN import_full_model AS full_model\n ON inc_model.id = full_model.id\n\n),\n\nopportunity_merged_wo_deleted AS (\n\n SELECT * FROM selective_merge\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_mc_opportunity_full AS (\n\n SELECT\n id AS opportunity_id,\n accountid AS account_id,\n name AS opportunity_name,\n DATE(NULLIF(start_date__c,'')) AS start_date,\n DATE(NULLIF(closedate,'')) AS close_date,\n DATE(NULLIF(entered_demo__c,'')) AS entered_demo_date,\n DATE(NULLIF(actual_end_date_new__c,'')) AS actual_end_date,\n sales_region__c AS sales_region,\n IF(LOWER(sales_segment__c) = 'mid-market','MM',sales_segment__c) AS order_sales_segment,\n secondary_seller__c AS secondary_seller_id,\n createdbyid AS created_by_sf_user_id,\n sdr_id__c AS sdr_sf_user_id,\n type AS type,\n stagename AS stage,\n deal_type__c AS deal_type,\n deal_type_as_per_deal_summary__c AS deal_type_as_per_deal_summary,\n attribution_channel__c AS attribution_channel,\n package__c AS plan_name,\n Subscription_Customer_Type__c as customer_type,\n record_type_name__c AS record_type_name,\n recordtypeid as record_type_id,\n description AS description,\n ownerid AS owner_id,\n tertiary_seller__c AS subscriptions_seller_id,\n original_owner_role__c as original_owner_role,\n UPPER(currencyisocode) AS original_currency,\n total_discount__c AS discount_rate,\n delta_booking__c AS delta_booking,\n delta_earr__c AS sms_delta_earr,\n delta_earr_subscriptions__c AS subscriptions_delta_earr,\n total_ds_delta_acv__c AS delta_acv_in_usd,\n pipeline_usd__c AS pipeline_usd,\n CAST(Probability/100 AS DECIMAL(10,2)) AS won_sale_probability,\n CAST(conversion_rate__c AS DECIMAL(10,2)) AS conversion_rate,\n CAST(total_earr_usd__c AS DECIMAL(10,2)) AS estimated_arr_in_usd,\n CAST(sms_earr_usd__c AS DECIMAL(10,2)) AS sms_estimated_arr_in_usd,\n CAST(Email_Marketing_eARR__c AS DECIMAL(10,2)) AS email_estimated_arr_in_usd,\n CAST(subscriptions_earr_usd__c AS DECIMAL(10,2)) AS subscriptions_estimated_arr_in_usd,\n CAST(prime_earr_usd__c AS DECIMAL(10,2)) AS prime_estimated_arr_in_usd,\n CAST(gold_earr_usd__c AS DECIMAL(10,2)) AS gold_estimated_arr_in_usd,\n sales_estimated_monthly_orders__c AS estimated_monthly_order_range,\n Estimated_Review_Requests_Per_Month__c AS estimated_review_requests_per_month,\n INT(end_of_contract_extension_month__c) AS num_of_end_of_contract_extension_month,\n INT(retention_csm_free_months__c) AS num_of_csm_extension_month,\n sms_commitment_term__c AS sms_commitment_term,\n merge_to_opportunity__c AS merged_to_opportunity_id,\n SMALLINT(Email_Intent__c) AS is_email_intent,\n INT(Contract_Duration__c) AS contract_duration_months,\n Actual_Duration_New__c AS contract_actual_duration_months,\n Original_Referrer_Owner__c AS original_referrer_owner,\n SMALLINT(IsClosed) AS is_closed,\n SMALLINT(Excluded_from_COMP_on__c) AS is_excluded_from_compensation,\n SMALLINT(IF(LOWER(attribution_channel__c) LIKE '%marketing%',1,0)) AS is_marketing,\n SMALLINT(IF(LOWER(attribution_channel__c) LIKE '%osdr%',1,0)) AS is_osdr,\n SMALLINT(IF(LOWER(attribution_channel__c) = 'other',1,0)) AS is_other_demand_gen_channel,\n SMALLINT(is_bundle__c) AS is_bundle,\n SMALLINT(company_expansion__c) AS is_company_expansion,\n SMALLINT(current_contract__c) AS is_current_contract,\n SMALLINT(IF(ISNOTNULL(entered_demo__c),1,0)) AS is_sal,\n SMALLINT(IF(LOWER(stagename) = 'won - sale',1,0)) AS is_won_sale,\n SMALLINT(IF(LOWER(stagename) = 'lost',1,0)) AS is_lost,\n SMALLINT(IF(LOWER(stagename) = 'lost after won',1,0)) AS is_lost_after_won,\n SMALLINT(IF(LOWER(type) IN ('new sale','migration to annual','poc renewal','recycled opp'),1,0)) AS is_new_account_opportunity,\n SMALLINT(partner_upsell__c) AS is_partner_upsell,\n SMALLINT(Hybrid_Deal_HT_SS__c) AS is_ht_ss,\n partner_referral__c AS partner_engagement_id,\n original_referrer__c AS original_referrer_id,\n referral_type__c AS referral_type,\n referrer_owner__c AS referrer_owner_id,\n new_acv_usd__c AS upsell_acv_in_usd,\n loyalty_csm_upon_closed_won__c AS loyalty_csm_upon_closed,\n loyalty_csm_team_upon_closed__c AS loyalty_csm_team_upon_closed,\n reviews_csm_upon_closed__c AS ugc_csm_upon_closed,\n reviews_csm_team_upon_closed__c AS ugc_csm_team_upon_closed,\n primary_csm_upon_closed__c AS primary_csm_upon_closed,\n primary_csm_team_upon_closed__c AS primary_csm_team_upon_closed,\n sms_csm_upon_closed__c AS sms_csm_upon_closed,\n sms_csm_team_upon_closed__c AS sms_csm_team_upon_closed,\n DATE(CS_Comp_Paid__c) AS cs_comp_paid_date,\n SMALLINT(SCSM_Deal__c) AS is_scsm_deal,\n SMALLINT(Staggered_Contract__c) AS is_staggered_contract,\n DATE(Contract_Renewal_Date__c) AS contract_renewal_date,\n Why_Lost__c AS lost_reason,\n lost_sub_reason__c AS lost_sub_reason,\n Why_lost_Description__c AS lost_reason_details,\n LAW_Reason__c AS lost_after_won_reason,\n NVL(ARRAY_SORT(SPLIT(TRIM(',', REPLACE(IF(LOWER(Annual_Products__C) LIKE '%not annual%' ,NULL, LOWER(Annual_Products__C)),' ')),',')),ARRAY()) AS pre_opp_ht_product_list,\n SMS_Commitment_Value__c AS sms_first_commitment_value,\n SMS_Second_Commitment_Value__c AS sms_second_commitment_value,\n renewal_opportunity__c AS renewal_to_opportunity_id,\n CONCAT('https://yotpo.lightning.force.com/',id) AS opportunity_sf_url,\n SMALLINT(isdeleted) AS is_deleted,\n TIMESTAMP(lastmodifieddate) AS updated_at,\n DATE(createddate) AS created_date,\n TIMESTAMP(createddate) AS created_at\n FROM opportunity_merged_wo_deleted\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_mc_opportunity_full", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_opportunity_field_history", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity_field_history", "analytics___salesforce_stg__mc_opportunity_field_history"], "alias": "analytics___salesforce_stg__mc_opportunity_field_history", "checksum": {"name": "sha256", "checksum": "9a50a1151b46e18f44306299645da43b36094d8ab03dda67068d98ea75826225"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "A modeled view of the salesforce object opportunity_field_history.\nThe table contains events for field changes on the opportunity object\n| PK & Granularity: sf_event_id", "columns": {"sf_event_id": {"name": "sf_event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "field_name": {"name": "field_name", "description": "The name of the field that it's value was changed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_value": {"name": "old_value", "description": "the field's value before the change", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_value": {"name": "new_value", "description": "the field's value after the change", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "data_type": {"name": "data_type", "description": "The field data type in sf", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082657.4169962, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_opportunity_field_history", "raw_code": "-- Import --\n\nWITH source AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__opportunityfieldhistory') }}\n WHERE isdeleted = false\n\n-- Logic -- \n\n), opp_field_history AS (\n\n SELECT \n id AS sf_event_id,\n opportunityid AS opportunity_id,\n createdbyid AS created_by_sf_user_id,\n field AS field_name,\n oldvalue AS old_value,\n newvalue AS new_value,\n datatype AS data_type,\n SMALLINT(isdeleted) AS is_deleted,\n DATE(createddate) AS created_date,\n TIMESTAMP(createddate) AS created_at\n FROM source\n\n)\n\n-- Result --\n\nSELECT * FROM opp_field_history", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__opportunityfieldhistory", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__opportunityfieldhistory"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH source AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__opportunityfieldhistory\n WHERE isdeleted = false\n\n-- Logic -- \n\n), opp_field_history AS (\n\n SELECT \n id AS sf_event_id,\n opportunityid AS opportunity_id,\n createdbyid AS created_by_sf_user_id,\n field AS field_name,\n oldvalue AS old_value,\n newvalue AS new_value,\n datatype AS data_type,\n SMALLINT(isdeleted) AS is_deleted,\n DATE(createddate) AS created_date,\n TIMESTAMP(createddate) AS created_at\n FROM source\n\n)\n\n-- Result --\n\nSELECT * FROM opp_field_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_opportunity_line_item", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity_line_item", "analytics___salesforce_stg__mc_opportunity_line_item"], "alias": "analytics___salesforce_stg__mc_opportunity_line_item", "checksum": {"name": "sha256", "checksum": "0df224fb2c7ea823c0b55f77d3036e18838db9f0da55f9475447b201a5e26d89"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled view of Opportunity line item salesforce object.\nPK: line_item_id", "columns": {"line_item_id": {"name": "line_item_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "FK: opportunity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_product": {"name": "line_item_product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_plan": {"name": "line_item_plan", "description": "product plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisioned_plan_name": {"name": "provisioned_plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_start_date": {"name": "contract_start_date", "description": "line item contract start date - match staggered contract start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_modified_at": {"name": "last_modified_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "zuora_product_rate_plan_id": {"name": "zuora_product_rate_plan_id", "description": "FK: zuora_rate_plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price_in_original_currency": {"name": "price_in_original_currency", "description": "the price of the line item after discount in original currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "discount_rate": {"name": "discount_rate", "description": "the discount rate for the sales price, the price in usd would be sales_price*(1-discount rate)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "sales_price_in_original_currency": {"name": "sales_price_in_original_currency", "description": "The initial price of the line item before applying the discount rate", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "price_after_discount_in_usd": {"name": "price_after_discount_in_usd", "description": "the price of the line item after the discount, in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "is_core_plan": {"name": "is_core_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_insights": {"name": "is_insights", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082657.4662278, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_opportunity_line_item", "raw_code": "-- Import --\n\nWITH import_opportunity_line_item AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__opportunitylineitem_full') }}\n WHERE isdeleted = false\n\n-- Logic\n\n), opportunity_line_item AS (\n\n SELECT\n Id AS line_item_id,\n OpportunityId AS opportunity_id,\n TRIM(Product_Family__c) AS line_item_product,\n TRIM(Product_Name__c) AS line_item_plan,\n TRIM(Package_Name__c) AS provisioned_plan_name,\n description,\n DATE(Start_Date__c) AS contract_start_date,\n TIMESTAMP(CreatedDate) AS created_at,\n TIMESTAMP(LastModifiedDate) AS last_modified_at,\n Production_Rate_Paln_Id__c AS zuora_product_rate_plan_id,\n CAST(totalprice AS DECIMAL(10,2)) AS price_in_original_currency,\n CAST(Discount AS DECIMAL(10,2)) AS discount_rate,\n CAST(Total_List_Price__c AS DECIMAL(10,2)) AS sales_price_in_original_currency,\n CAST(Total_Price_USD__c AS DECIMAL(10,2)) AS price_after_discount_in_usd,\n SMALLINT(Package_Product__c) AS is_core_plan,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'reviews',1,0)) AS is_reviews,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'vms',1,0)) AS is_vms,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'insights',1,0)) AS is_insights,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'loyalty',1,0)) AS is_loyalty,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'sms',1,0)) AS is_sms,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'subscriptions',1,0)) AS is_subscriptions,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'email',1,0)) AS is_email,\n SMALLINT(isdeleted) AS is_deleted\n FROM import_opportunity_line_item AS line_item\n\n)\n\n-- Result --\n\nSELECT * FROM opportunity_line_item", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__opportunitylineitem_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__opportunitylineitem_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_opportunity_line_item AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__opportunitylineitem_full\n WHERE isdeleted = false\n\n-- Logic\n\n), opportunity_line_item AS (\n\n SELECT\n Id AS line_item_id,\n OpportunityId AS opportunity_id,\n TRIM(Product_Family__c) AS line_item_product,\n TRIM(Product_Name__c) AS line_item_plan,\n TRIM(Package_Name__c) AS provisioned_plan_name,\n description,\n DATE(Start_Date__c) AS contract_start_date,\n TIMESTAMP(CreatedDate) AS created_at,\n TIMESTAMP(LastModifiedDate) AS last_modified_at,\n Production_Rate_Paln_Id__c AS zuora_product_rate_plan_id,\n CAST(totalprice AS DECIMAL(10,2)) AS price_in_original_currency,\n CAST(Discount AS DECIMAL(10,2)) AS discount_rate,\n CAST(Total_List_Price__c AS DECIMAL(10,2)) AS sales_price_in_original_currency,\n CAST(Total_Price_USD__c AS DECIMAL(10,2)) AS price_after_discount_in_usd,\n SMALLINT(Package_Product__c) AS is_core_plan,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'reviews',1,0)) AS is_reviews,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'vms',1,0)) AS is_vms,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'insights',1,0)) AS is_insights,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'loyalty',1,0)) AS is_loyalty,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'sms',1,0)) AS is_sms,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'subscriptions',1,0)) AS is_subscriptions,\n SMALLINT(IF(LOWER(TRIM(Product_Family__c)) = 'email',1,0)) AS is_email,\n SMALLINT(isdeleted) AS is_deleted\n FROM import_opportunity_line_item AS line_item\n\n)\n\n-- Result --\n\nSELECT * FROM opportunity_line_item", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_partner_referral": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_partner_referral", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_partner_referral", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_partner_referral", "analytics___salesforce_stg__mc_partner_referral"], "alias": "analytics___salesforce_stg__mc_partner_referral", "checksum": {"name": "sha256", "checksum": "20753990463c6f7ceb899b10c9fa47708ad6b2f41e7e929b3b0754000839fe2c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Partner Referrals Full table, cleaned types and column names", "columns": {"partner_engagement_id": {"name": "partner_engagement_id", "description": "The primary key of the table. It can also be found as a foreign key in dim_opportunity where it's called partner_referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "The time the partner engagement (PE) was created in SF, and should be mostly in recent years. \nOn 2019-06-26 there was a mass upload of historical PEs to SF so you may find a lot of PEs where the created_at date is that day.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "The date the partner engagement (PE) was created in SF, and should be mostly in recent years. \nOn 2019-06-26 there was a mass upload of historical PEs to SF so you may find a lot of PEs where the created_at date is that day.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "referral_type": {"name": "referral_type", "description": "Identifies whether its an inbound vs outbound Partner", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_sub_type": {"name": "referral_sub_type", "description": "Tells us whether it's a referral, an influence, or a heads up \n(if it's an outbound there are some other types which you can ask Angelo Carlo about)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_date": {"name": "referral_date", "description": "The date of the referral. If it's null you can also use created_at in some use-cases", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "partner_account_id": {"name": "partner_account_id", "description": "The account id of the partner account that made the referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_contact_id": {"name": "partner_contact_id", "description": "The contact id of the employee (who works for the partner) that made the referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager_id": {"name": "partner_manager_id", "description": "The id of the partner manager who sourced the referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_account_id": {"name": "referred_account_id", "description": "Recall that a partner referral aka a Partner Engagement can be a referral of an account or a referral of a lead. If it's a referral of an account, then you can see which account was referred here.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_partner_upsell": {"name": "is_partner_upsell", "description": "Tells whether the partner referral is connected to as Cross-sell Lead", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "referred_lead_id": {"name": "referred_lead_id", "description": "If thePartner Engagementis a lead referral then you can find the lead ID here", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_contact_id": {"name": "referred_contact_id", "description": "If the referred account/lead has a specific contact associated with it, the contact id can be found here", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "original_referrer_owner_id": {"name": "original_referrer_owner_id", "description": "This is the ID of the Partner Manager who gets credit for the Partner Referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_owner_name": {"name": "partner_owner_name", "description": "The name of the partner owner. The owner and the original_referrer_owner can definetly be different, and it's the original referrer owner that receives/received attribution. The partner owner is the current owner.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_interest": {"name": "product_interest", "description": "What products the customer is potentially interested in, though speak to Gilad Wilk, Alex Lazoff, Eric Griego etc. to find out how carefully they fill out this field. I have a feeling it's not done very carefully by the PM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_claim_duration_months": {"name": "referral_claim_duration_months", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "referral_claim_period_end_date": {"name": "referral_claim_period_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "referee_owner_name": {"name": "referee_owner_name", "description": "The name of the owner of the lead or account that was referred by the partner", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_contact_name": {"name": "referred_by_contact_name", "description": "The partner contact name that made the referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_contact_email": {"name": "partner_contact_email", "description": "The partner contact email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referree_annual_revenue_bucket": {"name": "referree_annual_revenue_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referee_platform": {"name": "referee_platform", "description": "Which ecom platform the referee uses (referee means the account or lead being referred by the partner)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rev_share_rate": {"name": "rev_share_rate", "description": "Check if this is maintained before using it, but it should be based off the partner tier (different tiers receive different rev share rates)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "converted_from_heads_up_to_referral_at": {"name": "converted_from_heads_up_to_referral_at", "description": "The time of the conversion from heads-up to referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "converted_from_heads_up_to_referral_date": {"name": "converted_from_heads_up_to_referral_date", "description": "The date of the conversion from heads-up to referral", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_referred_to_growth": {"name": "is_referred_to_growth", "description": "A lot of PEs don't ever convert into opportunities, and you may look at that and wonder why none of them are converting into opportunities. This field tells us which PEs are converting to Growth, one of our Low Touch (LT) plans. In other words the customer did not join through an AE but rather through a LT plan which was done by the customer without a sales rep (hency no opportunity created). Speak to Alex Lazoff and Gilad wilk to see if the field is maintained and when they started using it, as it's relatively recent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "michael.kobaivanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082657.5185401, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_partner_referral", "raw_code": "-- Import --\n\nWITH import_salesforce_stg_partner_referral_c_full AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__partner_referral_c_full') }}\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_stg__mc_partner_referral AS (\n\n SELECT\n Id AS partner_engagement_id,\n name AS name,\n TIMESTAMP(createddate) AS created_at,\n DATE(createddate) AS created_date,\n referral_type__c AS referral_type,\n referral_sub_type__c AS referral_sub_type,\n DATE(referral_date__c) AS referral_date,\n partner_account__c AS partner_account_id,\n partner_contact__c AS partner_contact_id,\n partner_manger__c AS partner_manager_id,\n referred_account__c AS referred_account_id,\n SMALLINT(partner_upsell__c) AS is_partner_upsell,\n referred_lead__c AS referred_lead_id,\n referred_contact__c AS referred_contact_id,\n SMALLINT(isdeleted) AS is_deleted,\n Original_Referrer_Owner_New__c AS original_referrer_owner_id,\n partner_owner__c AS partner_owner_name,\n product_interest__c AS product_interest,\n INT(TRIM(REPLACE(LOWER(referral_claim_duration__c),\"months\",\"\"))) AS referral_claim_duration_months,\n DATE(referral_claim_period_end_date__c) AS referral_claim_period_end_date,\n referred_lead_account_owner__c AS referee_owner_name,\n referred_by_partner_referral_form__c AS referred_by_contact_name,\n referred_by_email_partner_referral_form__c AS partner_contact_email,\n referred_lead_contact_annual_revenue__c AS referree_annual_revenue_bucket,\n referred_lead_contact_platform__c AS referee_platform,\n FLOAT(REPLACE(rev_share_rate__c,\"%\",\"\"))/100 AS rev_share_rate,\n TIMESTAMP(Date_Changed_From_Heads_Up__c) AS converted_from_heads_up_to_referral_at,\n DATE(Date_Changed_From_Heads_Up__c) AS converted_from_heads_up_to_referral_date,\n SMALLINT(referred_to_growth__c) AS is_referred_to_growth,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg_partner_referral_c_full\n\n)\n\n-- Result -- \n\nSELECT * FROM salesforce_stg__mc_partner_referral", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__partner_referral_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__partner_referral_c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_stg_partner_referral_c_full AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__partner_referral_c_full\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_stg__mc_partner_referral AS (\n\n SELECT\n Id AS partner_engagement_id,\n name AS name,\n TIMESTAMP(createddate) AS created_at,\n DATE(createddate) AS created_date,\n referral_type__c AS referral_type,\n referral_sub_type__c AS referral_sub_type,\n DATE(referral_date__c) AS referral_date,\n partner_account__c AS partner_account_id,\n partner_contact__c AS partner_contact_id,\n partner_manger__c AS partner_manager_id,\n referred_account__c AS referred_account_id,\n SMALLINT(partner_upsell__c) AS is_partner_upsell,\n referred_lead__c AS referred_lead_id,\n referred_contact__c AS referred_contact_id,\n SMALLINT(isdeleted) AS is_deleted,\n Original_Referrer_Owner_New__c AS original_referrer_owner_id,\n partner_owner__c AS partner_owner_name,\n product_interest__c AS product_interest,\n INT(TRIM(REPLACE(LOWER(referral_claim_duration__c),\"months\",\"\"))) AS referral_claim_duration_months,\n DATE(referral_claim_period_end_date__c) AS referral_claim_period_end_date,\n referred_lead_account_owner__c AS referee_owner_name,\n referred_by_partner_referral_form__c AS referred_by_contact_name,\n referred_by_email_partner_referral_form__c AS partner_contact_email,\n referred_lead_contact_annual_revenue__c AS referree_annual_revenue_bucket,\n referred_lead_contact_platform__c AS referee_platform,\n FLOAT(REPLACE(rev_share_rate__c,\"%\",\"\"))/100 AS rev_share_rate,\n TIMESTAMP(Date_Changed_From_Heads_Up__c) AS converted_from_heads_up_to_referral_at,\n DATE(Date_Changed_From_Heads_Up__c) AS converted_from_heads_up_to_referral_date,\n SMALLINT(referred_to_growth__c) AS is_referred_to_growth,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_salesforce_stg_partner_referral_c_full\n\n)\n\n-- Result -- \n\nSELECT * FROM salesforce_stg__mc_partner_referral", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_service_case": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_service_case", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_service_case", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_service_case", "analytics___salesforce_stg__mc_service_case"], "alias": "analytics___salesforce_stg__mc_service_case", "checksum": {"name": "sha256", "checksum": "0751d7596ce6e66b4ab653d131e19a44d81e89abf99479e1d8bf86291b50949c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled View Salseforce Cases, contains support cases, escelated and semi escelated cases, \nPK & granularity: case_id, case_number", "columns": {"case_id": {"name": "case_id", "description": "PK: case id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "case_number": {"name": "case_number", "description": "PK: case number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opened_at": {"name": "opened_at", "description": "case open time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "closed_at": {"name": "closed_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "origin": {"name": "origin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subject": {"name": "subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "topic": {"name": "topic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "inquiry_type": {"name": "inquiry_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feature": {"name": "feature", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "initial case team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team_formula": {"name": "team_formula", "description": "current case team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "live_chat_started_at": {"name": "live_chat_started_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "live_chat_ended_at": {"name": "live_chat_ended_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "case app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_segment": {"name": "customer_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "submitter_email": {"name": "submitter_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "severity_score": {"name": "severity_score", "description": "case severity score (1 - highest, 4 - lowest)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "survey_score": {"name": "survey_score", "description": "customer survey score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "record_type": {"name": "record_type", "description": "case record type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "survey_response_at": {"name": "survey_response_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_response_at": {"name": "first_response_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "agent_replies_cnt": {"name": "agent_replies_cnt", "description": "total agents replies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "replies_cnt": {"name": "replies_cnt", "description": "number of total case replies: agent replies + customer replies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "de_escalated_at": {"name": "de_escalated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "escalated_to_tier2_at": {"name": "escalated_to_tier2_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "escalation_severity": {"name": "escalation_severity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "escalation_type": {"name": "escalation_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bug_fix_due_date": {"name": "bug_fix_due_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "bug_number": {"name": "bug_number", "description": "related bug number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bug_status": {"name": "bug_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bug_fix_due_date_initial": {"name": "bug_fix_due_date_initial", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "Bug_actual_ttr": {"name": "Bug_actual_ttr", "description": "bugs actual time to response", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "bug_number_days_in_delay": {"name": "bug_number_days_in_delay", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "incident_id": {"name": "incident_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "requester_wait_time_in_hours": {"name": "requester_wait_time_in_hours", "description": "RWT in hours", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "requester_wait_time_t1_in_hours": {"name": "requester_wait_time_t1_in_hours", "description": "RWT tier 1 in hours", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "requester_wait_time_t2_in_hours": {"name": "requester_wait_time_t2_in_hours", "description": "RWT tier 2 in hours", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "time_to_first_response_in_minutes": {"name": "time_to_first_response_in_minutes", "description": "TTFR in minutes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "time_to_first_response_t2_in_minutes": {"name": "time_to_first_response_t2_in_minutes", "description": "TTFR tier 2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pending_rnd_in_hours": {"name": "pending_rnd_in_hours", "description": "number of hours pending for R&D response", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,0)"}, "timer_t1_net_support_rwt": {"name": "timer_t1_net_support_rwt", "description": "tier 1 Net RWT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "timer_t2_net_support_rwt": {"name": "timer_t2_net_support_rwt", "description": "tier 2 Net RWT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_escalated": {"name": "is_escalated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_closed": {"name": "is_closed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sdaya@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082657.5756621, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_service_case", "raw_code": "-- Import --\n\nWITH import_salesforce_case_full AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__case_full') }}\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_mc_service_case AS (\n\n SELECT \n id AS case_id,\n casenumber AS case_number,\n TIMESTAMP(createddate) AS opened_at,\n TIMESTAMP(closeddate) AS closed_at,\n origin AS origin,\n status AS status,\n Subject AS subject,\n Topic__c AS topic,\n Inquiry_Type__c AS inquiry_type,\n Feature__c AS feature,\n Description AS description,\n Product_Line__c AS product_family,\n Case_Team__c AS team,\n case_team_formula__c AS team_formula,\n TIMESTAMP(Live_Chat_Start_Date__c) AS live_chat_started_at,\n TIMESTAMP(Live_Chat_End_Date__c) AS live_chat_ended_at,\n Store_App_Key_Text__c AS app_key,\n Organization_Key__c AS organization_key,\n accountid AS account_id,\n snapshot_customer_segment__c AS customer_segment,\n Requester_Email__c AS submitter_email,\n Severity_Score__c AS severity_score,\n Survey_Score__c AS survey_score,\n RecordTypeId AS record_type,\n TIMESTAMP(survey_response_date__c) AS survey_response_at,\n TIMESTAMP(First_Response_Date__c) AS first_response_at,\n Counter_Agent_Replies__c AS agent_replies_cnt,\n Counter_Total_Replies__c AS replies_cnt,\n De_escalated_At__c AS de_escalated_at,\n TIMESTAMP(Escalated_to_Tier_2_at__c) AS escalated_to_tier2_at,\n Escalation_Severity__c AS escalation_severity,\n Escalation_Type__c AS escalation_type,\n DATE(Bug_Fix_Due_Date__c) AS bug_fix_due_date,\n Bug_Number__c AS bug_number,\n Bug_Status__c AS bug_status,\n DATE(Bug_Fix_Due_Date_Initial__c) AS bug_fix_due_date_initial,\n Bug_Actual_TTR__c AS Bug_actual_ttr,\n Bug_number_days_in_delay_timer__c AS bug_number_days_in_delay,\n Incident__c AS incident_id,\n Timer_Requester_Wait_Time__c AS requester_wait_time_in_hours,\n Timer_Requester_Wait_Time_T1__c AS requester_wait_time_t1_in_hours,\n Timer_Requester_Wait_Time_T2__c AS requester_wait_time_t2_in_hours,\n Time_to_First_Response__c AS time_to_first_response_in_minutes,\n Time_to_First_Response_Tier_2_Min__c AS time_to_first_response_t2_in_minutes,\n DECIMAL(SE_Time_in_Pending_R_D_hr__c) AS pending_rnd_in_hours,\n Timer_T1_Net_Support_RWT__c AS timer_t1_net_support_rwt,\n Timer_T2_Net_Support_RWT__c AS timer_t2_net_support_rwt,\n SMALLINT(isescalated) AS is_escalated,\n SMALLINT(isclosed) AS is_closed, \n SMALLINT(isDeleted) AS is_deleted \n FROM import_salesforce_case_full\n\n)\n\n-- Result --\nSELECT * FROM salesforce_mc_service_case", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__case_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__case_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_case_full AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__case_full\n WHERE isdeleted = false\n\n-- Logic --\n\n), salesforce_mc_service_case AS (\n\n SELECT \n id AS case_id,\n casenumber AS case_number,\n TIMESTAMP(createddate) AS opened_at,\n TIMESTAMP(closeddate) AS closed_at,\n origin AS origin,\n status AS status,\n Subject AS subject,\n Topic__c AS topic,\n Inquiry_Type__c AS inquiry_type,\n Feature__c AS feature,\n Description AS description,\n Product_Line__c AS product_family,\n Case_Team__c AS team,\n case_team_formula__c AS team_formula,\n TIMESTAMP(Live_Chat_Start_Date__c) AS live_chat_started_at,\n TIMESTAMP(Live_Chat_End_Date__c) AS live_chat_ended_at,\n Store_App_Key_Text__c AS app_key,\n Organization_Key__c AS organization_key,\n accountid AS account_id,\n snapshot_customer_segment__c AS customer_segment,\n Requester_Email__c AS submitter_email,\n Severity_Score__c AS severity_score,\n Survey_Score__c AS survey_score,\n RecordTypeId AS record_type,\n TIMESTAMP(survey_response_date__c) AS survey_response_at,\n TIMESTAMP(First_Response_Date__c) AS first_response_at,\n Counter_Agent_Replies__c AS agent_replies_cnt,\n Counter_Total_Replies__c AS replies_cnt,\n De_escalated_At__c AS de_escalated_at,\n TIMESTAMP(Escalated_to_Tier_2_at__c) AS escalated_to_tier2_at,\n Escalation_Severity__c AS escalation_severity,\n Escalation_Type__c AS escalation_type,\n DATE(Bug_Fix_Due_Date__c) AS bug_fix_due_date,\n Bug_Number__c AS bug_number,\n Bug_Status__c AS bug_status,\n DATE(Bug_Fix_Due_Date_Initial__c) AS bug_fix_due_date_initial,\n Bug_Actual_TTR__c AS Bug_actual_ttr,\n Bug_number_days_in_delay_timer__c AS bug_number_days_in_delay,\n Incident__c AS incident_id,\n Timer_Requester_Wait_Time__c AS requester_wait_time_in_hours,\n Timer_Requester_Wait_Time_T1__c AS requester_wait_time_t1_in_hours,\n Timer_Requester_Wait_Time_T2__c AS requester_wait_time_t2_in_hours,\n Time_to_First_Response__c AS time_to_first_response_in_minutes,\n Time_to_First_Response_Tier_2_Min__c AS time_to_first_response_t2_in_minutes,\n DECIMAL(SE_Time_in_Pending_R_D_hr__c) AS pending_rnd_in_hours,\n Timer_T1_Net_Support_RWT__c AS timer_t1_net_support_rwt,\n Timer_T2_Net_Support_RWT__c AS timer_t2_net_support_rwt,\n SMALLINT(isescalated) AS is_escalated,\n SMALLINT(isclosed) AS is_closed, \n SMALLINT(isDeleted) AS is_deleted \n FROM import_salesforce_case_full\n\n)\n\n-- Result --\nSELECT * FROM salesforce_mc_service_case", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_task": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_task", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_task", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_task", "analytics___salesforce_stg__mc_task"], "alias": "analytics___salesforce_stg__mc_task", "checksum": {"name": "sha256", "checksum": "b7a2fd07be7b88a0a079c89fc6ef9b6e1822f68c0039037e1f72a632cfd930f8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "Modeled view of salesforce task object | PK: task_id | granularity: task_id", "columns": {"task_id": {"name": "task_id", "description": "id of the task.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_sf_user_id": {"name": "owner_sf_user_id", "description": "sf id of user who is responsible for the task", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completion_time": {"name": "completion_time", "description": "Completion time of the task.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "completion_date": {"name": "completion_date", "description": "Completion date of the task.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subject": {"name": "subject", "description": "Subject of the task.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "Status of the task.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phase": {"name": "phase", "description": "Phase of the task: Outreach, Pre-Renewal, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "medium": {"name": "medium", "description": "Medium of the task: Phone, Email, Social,", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "call_status": {"name": "call_status", "description": "Call status for the task: Connected, Left Voicemail, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "who_object_id": {"name": "who_object_id", "description": "salesforce who object id (lead)id, contact_id, ...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "what_object_id": {"name": "what_object_id", "description": "salesforce what object id (opportunity_id, account_id, ...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082657.631542, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_task", "raw_code": "-- Import --\n\nWITH import_salesforce_stg__task AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__task') }}\n WHERE isdeleted = false\n\n), \n\n-- Logic --\n\nsalesforce_stg__mc_task AS (\n SELECT\n Id AS task_id,\n OwnerId AS owner_sf_user_id,\n TIMESTAMP(NULLIF(Task_Completion_Date__c,'')) AS completion_time,\n DATE(NULLIF(Task_Completion_Date__c,'')) AS completion_date,\n Subject AS subject,\n Status AS status,\n Phase__c AS phase,\n Medium__c AS medium,\n Call_Status__c AS call_status,\n whoid AS who_object_id,\n whatid AS what_object_id,\n TIMESTAMP(NVL(LastModifiedDate, CreatedDate)) AS updated_at,\n SMALLINT(IsDeleted) AS is_deleted\n FROM import_salesforce_stg__task\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg__mc_task", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__task", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__task"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_salesforce_stg__task AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__task\n WHERE isdeleted = false\n\n), \n\n-- Logic --\n\nsalesforce_stg__mc_task AS (\n SELECT\n Id AS task_id,\n OwnerId AS owner_sf_user_id,\n TIMESTAMP(NULLIF(Task_Completion_Date__c,'')) AS completion_time,\n DATE(NULLIF(Task_Completion_Date__c,'')) AS completion_date,\n Subject AS subject,\n Status AS status,\n Phase__c AS phase,\n Medium__c AS medium,\n Call_Status__c AS call_status,\n whoid AS who_object_id,\n whatid AS what_object_id,\n TIMESTAMP(NVL(LastModifiedDate, CreatedDate)) AS updated_at,\n SMALLINT(IsDeleted) AS is_deleted\n FROM import_salesforce_stg__task\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg__mc_task", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__mc_user": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__mc_user", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.sql", "unique_id": "model.yoda.analytics___salesforce_stg__mc_user", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_user", "analytics___salesforce_stg__mc_user"], "alias": "analytics___salesforce_stg__mc_user", "checksum": {"name": "sha256", "checksum": "00c2bc407522d1a0e1bf33f51efbe86eac8e1716da2cf29d0d3a936047e24f6d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A modeled view of the salesforce object user | PK & Granularity: user_id", "columns": {"user_id": {"name": "user_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_id": {"name": "role_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_id": {"name": "manager_id", "description": "Manager's user sf id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id_15_digits": {"name": "account_id_15_digits", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_id": {"name": "created_by_id", "description": "user's creator sf id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_modified_by_id": {"name": "last_modified_by_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_name": {"name": "full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_name": {"name": "first_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "alias_name": {"name": "alias_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_name": {"name": "role_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_zone": {"name": "time_zone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_name": {"name": "manager_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager": {"name": "partner_manager", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_owner_name": {"name": "account_owner_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_team": {"name": "csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_pod_account_manager_id": {"name": "csm_pod_account_manager_id", "description": "account_manager_csm_pod__c AS csm_pod_account_manager_id, --", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "queue_type": {"name": "queue_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "badge_text": {"name": "badge_text", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_name": {"name": "company_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_login_date": {"name": "last_login_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_active": {"name": "is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_integration_user": {"name": "is_integration_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_profile_photo_active": {"name": "is_profile_photo_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_queue": {"name": "is_queue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_low_touch_csm": {"name": "is_low_touch_csm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_super_csm": {"name": "is_super_csm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_login_user_member": {"name": "is_login_user_member", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_exclude_from_assignment_tracking": {"name": "is_exclude_from_assignment_tracking", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_marketing_activity_user": {"name": "is_marketing_activity_user", "description": "Will be checked for user that is used to log marketing activities to SF using Yesware", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "salesforce"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082657.6892304, "relation_name": "dev_dkruh1.analytics___salesforce_stg__mc_user", "raw_code": "-- Import --\n\n{{\nanalytics_selective_merge(\n inc_model = 'analytics___salesforce_stg__user',\n full_model = 'analytics___salesforce_stg__user_full',\n join_key = ['Id']\n )\n}}\n\nuser_merged AS (\n\n SELECT * FROM selective_merge\n\n-- Logic --\n\n), mc_user_res AS (\n\n SELECT\n Id AS user_id,\n UserRoleId AS role_id,\n managerid AS manager_id,\n accountid AS account_id,\n account_id__c AS account_id_15_digits,\n createdbyid AS created_by_id,\n lastmodifiedbyid AS last_modified_by_id,\n name AS full_name,\n firstname AS first_name,\n lastname AS last_name,\n email,\n alias AS alias_name,\n REPLACE(role_name__c, '- ', '') AS role_name,\n title,\n team__c AS team,\n timezonesidkey AS time_zone,\n manager_text__c AS manager_name,\n partner_manager__c AS partner_manager,\n account_s_owner__c AS account_owner_name,\n csm_team__c AS csm_team,\n account_manager_csm_pod__c AS csm_pod_account_manager_id,\n queuetype__c AS queue_type,\n badgetext AS badge_text,\n companyname AS company_name,\n lastlogindate AS last_login_date,\n SMALLINT(isactive) AS is_active,\n SMALLINT(isintegration__c) AS is_integration_user,\n SMALLINT(isprofilephotoactive) AS is_profile_photo_active,\n SMALLINT(isqueue__c) AS is_queue,\n SMALLINT(low_touch_csm__c) AS is_low_touch_csm,\n SMALLINT(Super_CSM__c) AS is_super_csm,\n SMALLINT(login_user_member__c) AS is_login_user_member,\n SMALLINT(exclude_from_assignment_tracking__c) AS is_exclude_from_assignment_tracking,\n SMALLINT(marketing_activity_user__c) AS is_marketing_activity_user,\n CreatedDate AS created_at,\n LastModifiedDate AS updated_at\n FROM user_merged\n\n)\n\n-- Result --\n\nSELECT * FROM mc_user_res", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__user_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__user", "package": null, "version": null}, {"name": "analytics___salesforce_stg__user", "package": null, "version": null}, {"name": "analytics___salesforce_stg__user_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_selective_merge", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__user_full", "model.yoda.analytics___salesforce_stg__user", "model.yoda.analytics___salesforce_stg__user", "model.yoda.analytics___salesforce_stg__user_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_inc_model AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__user\n\n), import_full_model AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__user_full\n\n), selective_merge AS (\n\n SELECT\n NULLIF(NVL(full_model.id, inc_model.id), '') AS id,\n FROM import_inc_model AS inc_model\n FULL JOIN import_full_model AS full_model\n ON inc_model.id = full_model.id\n\n),\n\nuser_merged AS (\n\n SELECT * FROM selective_merge\n\n-- Logic --\n\n), mc_user_res AS (\n\n SELECT\n Id AS user_id,\n UserRoleId AS role_id,\n managerid AS manager_id,\n accountid AS account_id,\n account_id__c AS account_id_15_digits,\n createdbyid AS created_by_id,\n lastmodifiedbyid AS last_modified_by_id,\n name AS full_name,\n firstname AS first_name,\n lastname AS last_name,\n email,\n alias AS alias_name,\n REPLACE(role_name__c, '- ', '') AS role_name,\n title,\n team__c AS team,\n timezonesidkey AS time_zone,\n manager_text__c AS manager_name,\n partner_manager__c AS partner_manager,\n account_s_owner__c AS account_owner_name,\n csm_team__c AS csm_team,\n account_manager_csm_pod__c AS csm_pod_account_manager_id,\n queuetype__c AS queue_type,\n badgetext AS badge_text,\n companyname AS company_name,\n lastlogindate AS last_login_date,\n SMALLINT(isactive) AS is_active,\n SMALLINT(isintegration__c) AS is_integration_user,\n SMALLINT(isprofilephotoactive) AS is_profile_photo_active,\n SMALLINT(isqueue__c) AS is_queue,\n SMALLINT(low_touch_csm__c) AS is_low_touch_csm,\n SMALLINT(Super_CSM__c) AS is_super_csm,\n SMALLINT(login_user_member__c) AS is_login_user_member,\n SMALLINT(exclude_from_assignment_tracking__c) AS is_exclude_from_assignment_tracking,\n SMALLINT(marketing_activity_user__c) AS is_marketing_activity_user,\n CreatedDate AS created_at,\n LastModifiedDate AS updated_at\n FROM user_merged\n\n)\n\n-- Result --\n\nSELECT * FROM mc_user_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___salesforce_stg__opportunity_prediction": {"database": null, "schema": "dev_dkruh1", "name": "analytics___salesforce_stg__opportunity_prediction", "resource_type": "model", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.sql", "unique_id": "model.yoda.analytics___salesforce_stg__opportunity_prediction", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__opportunity_prediction", "analytics___salesforce_stg__opportunity_prediction"], "alias": "analytics___salesforce_stg__opportunity_prediction", "checksum": {"name": "sha256", "checksum": "09457bcb921479273bd7809ea527bacbe6743ba803da21755e372c9ce1ef34ab"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ygelband@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "salesforce"], "description": "A table that takes the predictions object from SF in order to join to opportunity\nPK & Granulrity: prediction_id,opportunity_id", "columns": {"prediction_id": {"name": "prediction_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_id": {"name": "opportunity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_prediction_created_by_sf_user_id": {"name": "opportunity_prediction_created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_prediction_updated_by_sf_user_id": {"name": "opportunity_prediction_updated_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_previous_acv": {"name": "reviews_previous_acv", "description": "the renewal ACV of the product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "reviews_current_acv": {"name": "reviews_current_acv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "reviews_predictions_certainty_ratio": {"name": "reviews_predictions_certainty_ratio", "description": "a field that is changed by the CSM to express the certainty level in the prediction", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "predicted_reviews_acv": {"name": "predicted_reviews_acv", "description": "the csm prediction of the reviews+VMS ACV- if it is open, if closed-> shows the actual closed acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "reviews_current_hedged_acv": {"name": "reviews_current_hedged_acv", "description": "We use a hedging formula to take into consideration the certainty level: 0% certainty->acv*0.2 ,25% certainty->acv*0.5 50% certainty->acv*0.8 75% certainty and above ->acv*1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "reviews_risk_buckets": {"name": "reviews_risk_buckets", "description": "this field is used to bucket accounts that are within risk buckets such as 'not responsive' 'change in business' etc", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_previous_acv": {"name": "loyalty_previous_acv", "description": "the renewal ACV of the product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "loyalty_current_acv": {"name": "loyalty_current_acv", "description": "Current ACV takes the actual ACV that was closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "loyalty_predictions_certainty_ratio": {"name": "loyalty_predictions_certainty_ratio", "description": "a field that is changed by the CSM to express the certainty level in the prediction", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "predicted_loyalty_acv": {"name": "predicted_loyalty_acv", "description": "the csm prediction of the loyalty ACV- if it is open, if closed-> shows the actual closed acv", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "loyalty_current_hedged_acv": {"name": "loyalty_current_hedged_acv", "description": "We use a hedging formula to take into consideration the certainty level: 0% certainty->acv*0.2 ,25% certainty->acv*0.5 50% certainty->acv*0.8 75% certainty and above ->acv*1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,2)"}, "loyalty_risk_buckets": {"name": "loyalty_risk_buckets", "description": "this field is used to bucket accounts that are within risk buckets such as 'not responsive' 'change in business' etc", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_prediction_created_at": {"name": "opportunity_prediction_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opportunity_prediction_updated_at": {"name": "opportunity_prediction_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ygelband@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["salesforce", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ygelband@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082657.733172, "relation_name": "dev_dkruh1.analytics___salesforce_stg__opportunity_prediction", "raw_code": "-- Import --\n\nWITH source AS (\n\n SELECT * FROM {{ ref('analytics___salesforce_stg__opportunity_prediction_c_full') }}\n WHERE isdeleted = false\n\n-- Logic -- \n\n), salesforce_stg__opportunity_prediction AS (\n\n SELECT\n Id AS prediction_id,\n opportunity__c AS opportunity_id,\n createdbyid AS opportunity_prediction_created_by_sf_user_id,\n LastModifiedById AS opportunity_prediction_updated_by_sf_user_id,\n CAST(COALESCE(Reviews_Previous_ACV__c, 0) AS DECIMAL(14,2)) AS reviews_previous_acv,\n CAST(COALESCE(Reviews_Current_ACV__c, 0) AS DECIMAL(14,2)) AS reviews_current_acv,\n CAST(COALESCE(REPLACE(Reviews_Predictions_Certainty__c,'%','')/100, 0) AS DECIMAL(14,2)) AS reviews_predictions_certainty_ratio,\n CAST(COALESCE(Predicted_Reviews_ACV__c, 0) AS DECIMAL(14,2)) AS predicted_reviews_acv,\n CAST(COALESCE(reviews_current_hedged_acv__c, 0) AS DECIMAL(14,2)) AS reviews_current_hedged_acv,\n Reviews_Risk_Buckets__c AS reviews_risk_buckets,\n CAST(COALESCE(Loyalty_Previous_ACV__c ,0) AS DECIMAL(14,2)) AS loyalty_previous_acv,\n CAST(COALESCE(Loyalty_Current_ACV__c, 0) AS DECIMAL(14,2)) AS loyalty_current_acv,\n CAST(COALESCE(REPLACE(Loyalty_Predictions_Certainty__c,'%','')/100, 0) AS DECIMAL(14,2)) AS loyalty_predictions_certainty_ratio,\n CAST(COALESCE(Predicted_Loyalty_ACV__c, 0) AS DECIMAL(14,2)) AS predicted_loyalty_acv,\n CAST(COALESCE(loyalty_current_hedged_acv__c, 0) AS DECIMAL(14,2)) AS loyalty_current_hedged_acv,\n Loyalty_Risk_Buckets__c AS loyalty_risk_buckets,\n TIMESTAMP(createddate) AS opportunity_prediction_created_at,\n TIMESTAMP(lastmodifieddate) AS opportunity_prediction_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM source\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg__opportunity_prediction", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__opportunity_prediction_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH source AS (\n\n SELECT * FROM dev_dkruh1.analytics___salesforce_stg__opportunity_prediction_c_full\n WHERE isdeleted = false\n\n-- Logic -- \n\n), salesforce_stg__opportunity_prediction AS (\n\n SELECT\n Id AS prediction_id,\n opportunity__c AS opportunity_id,\n createdbyid AS opportunity_prediction_created_by_sf_user_id,\n LastModifiedById AS opportunity_prediction_updated_by_sf_user_id,\n CAST(COALESCE(Reviews_Previous_ACV__c, 0) AS DECIMAL(14,2)) AS reviews_previous_acv,\n CAST(COALESCE(Reviews_Current_ACV__c, 0) AS DECIMAL(14,2)) AS reviews_current_acv,\n CAST(COALESCE(REPLACE(Reviews_Predictions_Certainty__c,'%','')/100, 0) AS DECIMAL(14,2)) AS reviews_predictions_certainty_ratio,\n CAST(COALESCE(Predicted_Reviews_ACV__c, 0) AS DECIMAL(14,2)) AS predicted_reviews_acv,\n CAST(COALESCE(reviews_current_hedged_acv__c, 0) AS DECIMAL(14,2)) AS reviews_current_hedged_acv,\n Reviews_Risk_Buckets__c AS reviews_risk_buckets,\n CAST(COALESCE(Loyalty_Previous_ACV__c ,0) AS DECIMAL(14,2)) AS loyalty_previous_acv,\n CAST(COALESCE(Loyalty_Current_ACV__c, 0) AS DECIMAL(14,2)) AS loyalty_current_acv,\n CAST(COALESCE(REPLACE(Loyalty_Predictions_Certainty__c,'%','')/100, 0) AS DECIMAL(14,2)) AS loyalty_predictions_certainty_ratio,\n CAST(COALESCE(Predicted_Loyalty_ACV__c, 0) AS DECIMAL(14,2)) AS predicted_loyalty_acv,\n CAST(COALESCE(loyalty_current_hedged_acv__c, 0) AS DECIMAL(14,2)) AS loyalty_current_hedged_acv,\n Loyalty_Risk_Buckets__c AS loyalty_risk_buckets,\n TIMESTAMP(createddate) AS opportunity_prediction_created_at,\n TIMESTAMP(lastmodifieddate) AS opportunity_prediction_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM source\n\n)\n\n-- Result --\n\nSELECT * FROM salesforce_stg__opportunity_prediction", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__automation_message_dates": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__automation_message_dates", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.sql", "unique_id": "model.yoda.analytics___sms__automation_message_dates", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__automation_message_dates", "analytics___sms__automation_message_dates"], "alias": "analytics___sms__automation_message_dates", "checksum": {"name": "sha256", "checksum": "ae28a4e943f5b7b7b4d1d90042b1fabb4a92b92f3c56ca0772b5a420387b38fc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["automation_id", "message_date"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled incremental table of sms automation messages' date history. \nThe purpose of the table is to save runtimes on recalculating historical dates.\nGranularity: automation_id | message_date", "columns": {"automation_id": {"name": "automation_id", "description": "automation unique identifier - PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_date": {"name": "message_date", "description": "message date - PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["automation_id", "message_date"], "incremental_strategy": "merge"}, "created_at": 1700082657.8576121, "relation_name": "dev_dkruh1.analytics___sms__automation_message_dates", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental','view'),\n unique_key=['automation_id','message_date'],\n incremental_strategy='merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.sms_automation_message_dates ZORDER BY sms_user_id;')\n )\n}}\n\n-- Import --\n\nWITH import_sms_event AS (\nSELECT * FROM {{ ref('analytics___sms_stg__event') }}\n),\n\nimport_sms_api_calls AS (\nSELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='message_date',query_condition_column='created_date',subtract=8)}}\n),\n\n-- Logic --\n\nsms_automations AS (\nSELECT\n event_id AS automation_id,\n sms_user_id\nFROM import_sms_event\nWHERE is_logical_deleted = 0\nAND NVL(sms_user_id,0) <> 0\n),\n\nautomation_messages AS (\nSELECT DISTINCT\n event_id AS automation_id,\n sms_user_id,\n created_date AS message_date\nFROM import_sms_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nAND message_source_type = 1 \nAND event_id <> 0\nAND NVL(sms_user_id,0) <> 0\n),\n\nsms__automation_message_dates_res AS (\nSELECT\n message.automation_id,\n message.message_date,\n message.sms_user_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_automations AS automation\nINNER JOIN automation_messages AS message\n ON automation.automation_id = message.automation_id\n AND automation.sms_user_id = message.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms__automation_message_dates_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__event", "package": null, "version": null}, {"name": "analytics___sms_stg__api_calls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__event", "model.yoda.analytics___sms_stg__api_calls"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_event AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__event\n),\n\nimport_sms_api_calls AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\n-- Logic --\n\nsms_automations AS (\nSELECT\n event_id AS automation_id,\n sms_user_id\nFROM import_sms_event\nWHERE is_logical_deleted = 0\nAND NVL(sms_user_id,0) <> 0\n),\n\nautomation_messages AS (\nSELECT DISTINCT\n event_id AS automation_id,\n sms_user_id,\n created_date AS message_date\nFROM import_sms_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nAND message_source_type = 1 \nAND event_id <> 0\nAND NVL(sms_user_id,0) <> 0\n),\n\nsms__automation_message_dates_res AS (\nSELECT\n message.automation_id,\n message.message_date,\n message.sms_user_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_automations AS automation\nINNER JOIN automation_messages AS message\n ON automation.automation_id = message.automation_id\n AND automation.sms_user_id = message.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms__automation_message_dates_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__campaign_message_dates": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__campaign_message_dates", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.sql", "unique_id": "model.yoda.analytics___sms__campaign_message_dates", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__campaign_message_dates", "analytics___sms__campaign_message_dates"], "alias": "analytics___sms__campaign_message_dates", "checksum": {"name": "sha256", "checksum": "b28c65b45ae696f456d1f3f82adf3ecf8014799c35d8305f438967a7bb5505a5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["campaign_id", "message_date"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled incremental table of sms campaign messages' date history. \nThe purpose of the table is to save runtimes on recalculating historical dates.\nGranularity: campaign_id | message_date", "columns": {"campaign_id": {"name": "campaign_id", "description": "campaign unique identifier - PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_date": {"name": "message_date", "description": "message date - PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["campaign_id", "message_date"], "incremental_strategy": "merge"}, "created_at": 1700082657.8985085, "relation_name": "dev_dkruh1.analytics___sms__campaign_message_dates", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental','view'),\n unique_key=['campaign_id','message_date'],\n incremental_strategy='merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.sms_campaign_message_dates ZORDER BY sms_user_id;')\n )\n}}\n\n\n-- Import --\n\nWITH import_sms_campaign AS (\nSELECT * FROM {{ ref('analytics___sms_stg__campaign') }}\n),\n\nimport_sms_api_calls AS (\nSELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='message_date',query_condition_column='created_date',subtract=8)}}\n),\n\n-- Logic --\n\nsms_campaigns AS (\nSELECT\n campaign_id,\n sms_user_id\nFROM import_sms_campaign\nWHERE is_logical_deleted = 0\nAND LOWER(channel) = 'sms'\nAND NVL(sms_user_id,0) <> 0\n),\n\ncampaign_messages AS (\nSELECT DISTINCT\n campaign_id,\n sms_user_id,\n created_date AS message_date\nFROM import_sms_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nAND message_source_type = 2 \nAND campaign_id <> 0\nAND NVL(sms_user_id,0) <> 0\n),\n\nsms__campaign_message_dates_res AS (\nSELECT\n message.campaign_id,\n message.message_date,\n message.sms_user_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_campaigns AS campaign\nINNER JOIN campaign_messages AS message\n ON campaign.campaign_id = message.campaign_id\n AND campaign.sms_user_id = message.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms__campaign_message_dates_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign", "package": null, "version": null}, {"name": "analytics___sms_stg__api_calls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__campaign", "model.yoda.analytics___sms_stg__api_calls"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.sql", "compiled": true, "compiled_code": "\n\n\n-- Import --\n\nWITH import_sms_campaign AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__campaign\n),\n\nimport_sms_api_calls AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\n-- Logic --\n\nsms_campaigns AS (\nSELECT\n campaign_id,\n sms_user_id\nFROM import_sms_campaign\nWHERE is_logical_deleted = 0\nAND LOWER(channel) = 'sms'\nAND NVL(sms_user_id,0) <> 0\n),\n\ncampaign_messages AS (\nSELECT DISTINCT\n campaign_id,\n sms_user_id,\n created_date AS message_date\nFROM import_sms_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nAND message_source_type = 2 \nAND campaign_id <> 0\nAND NVL(sms_user_id,0) <> 0\n),\n\nsms__campaign_message_dates_res AS (\nSELECT\n message.campaign_id,\n message.message_date,\n message.sms_user_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_campaigns AS campaign\nINNER JOIN campaign_messages AS message\n ON campaign.campaign_id = message.campaign_id\n AND campaign.sms_user_id = message.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms__campaign_message_dates_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__deliverability_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__deliverability_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.sql", "unique_id": "model.yoda.analytics___sms__deliverability_daily", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__deliverability_daily", "analytics___sms__deliverability_daily"], "alias": "analytics___sms__deliverability_daily", "checksum": {"name": "sha256", "checksum": "ababebacc082bc2f04ca38ec6968c4913d3949dc55d03ee28a5e4e63d52822ee"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ideutsch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "daily metric table for SMS deliverability, only pulls data from the start of last year", "columns": {"sms_deliverability_id": {"name": "sms_deliverability_id", "description": "unique id, sha2 of all the dimensions we use for the group by", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "day of aggregation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "daily plan type ht or lt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_country_name": {"name": "store_country_name", "description": "name of store country", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "receiver_country_name": {"name": "receiver_country_name", "description": "name of receiver country based on phone code mapping", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "store order bucket in l3m", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "aggregator_name": {"name": "aggregator_name", "description": "name of sms provider: twillio, nexmo etc", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_source": {"name": "message_source", "description": "source of message: campaign, flow, automation or other", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_type": {"name": "message_type", "description": "type of message - sms/mms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_status": {"name": "message_status", "description": "status of message: sent, landline etc", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_cnt": {"name": "message_cnt", "description": "number of messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billed_message_cnt": {"name": "billed_message_cnt", "description": "number of billed messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_cnt_by_carrier": {"name": "message_cnt_by_carrier", "description": "number of messages sent by carrier - split into parts", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billed_message_cnt_by_carrier": {"name": "billed_message_cnt_by_carrier", "description": "number of billed messages sent by carrier - split into parts", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_billed_in_usd": {"name": "price_billed_in_usd", "description": "price of messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,4)"}, "price_aggregator_cost_in_usd": {"name": "price_aggregator_cost_in_usd", "description": "cost of messages sent from the aggregator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,4)"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ideutsch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ideutsch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082657.9480064, "relation_name": "dev_dkruh1.analytics___sms__deliverability_daily", "raw_code": "-- Import --\n\nWITH import_analytics___sms_api_calls AS (\n SELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\n),\n\nimport_analytics___sms_store_metrics_daily AS (\n SELECT * FROM {{ ref('analytics___sms__store_metrics_daily') }}\n),\n\nimport_analytics___sms_store AS (\n SELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\n-- Logic --\n\nstore_daily_metrics AS (\nSELECT \n sms_user_id,\n date,\n plan_type_ht_lt,\n CASE WHEN avg_orders_cnt_l3m BETWEEN 0 AND 999 THEN '0-1K'\n WHEN avg_orders_cnt_l3m BETWEEN 1000 AND 2999 THEN '1K-3K'\n WHEN avg_orders_cnt_l3m BETWEEN 3000 AND 9999 THEN '3K-10K'\n WHEN avg_orders_cnt_l3m >= 10000 THEN '10K+'\n END AS last_3m_orders_avg_bucket\nFROM import_analytics___sms_store_metrics_daily\nWHERE WHERE YEAR(date) >= YEAR(CURRENT_DATE) - 1\n),\n\napicall_metrics AS (\nSELECT api_call_id,\n sms_user_id,\n created_date,\n receiver_country,\n aggregator_name,\n message_source_type_name AS message_source,\n message_type,\n message_status,\n message_parts_number AS message_parts_cnt,\n price_billed_in_usd,\n price_vendor_cost_in_usd\nFROM import_analytics___sms_api_calls\nWHERE is_logical_deleted = 0\n),\n\ndaily_deliverability AS (\nSELECT SHA2(CONCAT(apicalls.created_date, \n NVL(daily.plan_type_ht_lt,'~'), \n NVL(store.country_name,'~'),\n NVL(apicalls.receiver_country,'~'),\n daily.last_3m_orders_avg_bucket, \n apicalls.aggregator_name,\n apicalls.message_source,\n apicalls.message_type, \n apicalls.message_status),256) AS sms_deliverability_id,\n apicalls.created_date AS date, \n daily.plan_type_ht_lt, \n store.country_name AS store_country_name,\n apicalls.receiver_country AS receiver_country_name,\n daily.last_3m_orders_avg_bucket,\n apicalls.aggregator_name,\n apicalls.message_source,\n apicalls.message_type, \n apicalls.message_status,\n COUNT(apicalls.api_call_id) AS message_cnt, \n COUNT(CASE WHEN apicalls.price_billed_in_usd > 0 THEN apicalls.api_call_id END) AS billed_message_cnt, \n SUM(apicalls.message_parts_cnt) AS message_cnt_by_carrier, \n SUM(CASE WHEN apicalls.price_billed_in_usd > 0 THEN apicalls.message_parts_cnt END) AS billed_message_cnt_by_carrier, \n SUM(apicalls.price_billed_in_usd) AS price_billed_in_usd,\n SUM(CASE WHEN apicalls.price_billed_in_usd > 0 THEN apicalls.price_vendor_cost_in_usd END) AS price_aggregator_cost_in_usd\nFROM apicall_metrics AS apicalls\nINNER JOIN import_analytics___sms_store AS store \n ON apicalls.sms_user_id = store.sms_user_id\nINNER JOIN store_daily_metrics AS daily \n ON daily.sms_user_id = apicalls.sms_user_id \n AND daily.date = apicalls.created_date\nWHERE YEAR(apicalls.created_date) >= YEAR(CURRENT_DATE) - 1\nGROUP BY 1,2,3,4,5,6,7,8,9,10\n)\n\n-- Result --\n\nSELECT *\nFROM daily_deliverability\n{% if target.name == 'dev' %}\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,5) AND DATE(CURRENT_DATE)\n{% endif %}", "language": "sql", "refs": [{"name": "analytics___sms_stg__api_calls", "package": null, "version": null}, {"name": "analytics___sms__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_analytics___sms_api_calls AS (\n SELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\n),\n\nimport_analytics___sms_store_metrics_daily AS (\n SELECT * FROM dev_dkruh1.analytics___sms__store_metrics_daily\n),\n\nimport_analytics___sms_store AS (\n SELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\n-- Logic --\n\nstore_daily_metrics AS (\nSELECT \n sms_user_id,\n date,\n plan_type_ht_lt,\n CASE WHEN avg_orders_cnt_l3m BETWEEN 0 AND 999 THEN '0-1K'\n WHEN avg_orders_cnt_l3m BETWEEN 1000 AND 2999 THEN '1K-3K'\n WHEN avg_orders_cnt_l3m BETWEEN 3000 AND 9999 THEN '3K-10K'\n WHEN avg_orders_cnt_l3m >= 10000 THEN '10K+'\n END AS last_3m_orders_avg_bucket\nFROM import_analytics___sms_store_metrics_daily\nWHERE WHERE YEAR(date) >= YEAR(CURRENT_DATE) - 1\n),\n\napicall_metrics AS (\nSELECT api_call_id,\n sms_user_id,\n created_date,\n receiver_country,\n aggregator_name,\n message_source_type_name AS message_source,\n message_type,\n message_status,\n message_parts_number AS message_parts_cnt,\n price_billed_in_usd,\n price_vendor_cost_in_usd\nFROM import_analytics___sms_api_calls\nWHERE is_logical_deleted = 0\n),\n\ndaily_deliverability AS (\nSELECT SHA2(CONCAT(apicalls.created_date, \n NVL(daily.plan_type_ht_lt,'~'), \n NVL(store.country_name,'~'),\n NVL(apicalls.receiver_country,'~'),\n daily.last_3m_orders_avg_bucket, \n apicalls.aggregator_name,\n apicalls.message_source,\n apicalls.message_type, \n apicalls.message_status),256) AS sms_deliverability_id,\n apicalls.created_date AS date, \n daily.plan_type_ht_lt, \n store.country_name AS store_country_name,\n apicalls.receiver_country AS receiver_country_name,\n daily.last_3m_orders_avg_bucket,\n apicalls.aggregator_name,\n apicalls.message_source,\n apicalls.message_type, \n apicalls.message_status,\n COUNT(apicalls.api_call_id) AS message_cnt, \n COUNT(CASE WHEN apicalls.price_billed_in_usd > 0 THEN apicalls.api_call_id END) AS billed_message_cnt, \n SUM(apicalls.message_parts_cnt) AS message_cnt_by_carrier, \n SUM(CASE WHEN apicalls.price_billed_in_usd > 0 THEN apicalls.message_parts_cnt END) AS billed_message_cnt_by_carrier, \n SUM(apicalls.price_billed_in_usd) AS price_billed_in_usd,\n SUM(CASE WHEN apicalls.price_billed_in_usd > 0 THEN apicalls.price_vendor_cost_in_usd END) AS price_aggregator_cost_in_usd\nFROM apicall_metrics AS apicalls\nINNER JOIN import_analytics___sms_store AS store \n ON apicalls.sms_user_id = store.sms_user_id\nINNER JOIN store_daily_metrics AS daily \n ON daily.sms_user_id = apicalls.sms_user_id \n AND daily.date = apicalls.created_date\nWHERE YEAR(apicalls.created_date) >= YEAR(CURRENT_DATE) - 1\nGROUP BY 1,2,3,4,5,6,7,8,9,10\n)\n\n-- Result --\n\nSELECT *\nFROM daily_deliverability\n\nWHERE date BETWEEN DATE_SUB(CURRENT_DATE,5) AND DATE(CURRENT_DATE)\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__flow_message_dates": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__flow_message_dates", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.sql", "unique_id": "model.yoda.analytics___sms__flow_message_dates", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__flow_message_dates", "analytics___sms__flow_message_dates"], "alias": "analytics___sms__flow_message_dates", "checksum": {"name": "sha256", "checksum": "d112187fc23288a0534817b77851dc37cb2507f7e2c2f8d1e29e9f4fccc7acc1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["flow_id", "message_date"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled incremental table of sms flow messages' date history. \nThe purpose of the table is to save runtimes on recalculating historical dates.\nGranularity: flow_id | message_date", "columns": {"flow_id": {"name": "flow_id", "description": "flow unique identifier - PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_date": {"name": "message_date", "description": "message date - PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["flow_id", "message_date"], "incremental_strategy": "merge"}, "created_at": 1700082657.982458, "relation_name": "dev_dkruh1.analytics___sms__flow_message_dates", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental','view'),\n unique_key=['flow_id','message_date'],\n incremental_strategy='merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.sms_flow_message_dates ZORDER BY sms_user_id;')\n )\n}}\n\n-- Import --\n\nWITH import_sms_flow AS (\nSELECT * FROM {{ ref('analytics___sms_stg__flow') }}\n),\n\nimport_sms_api_calls AS (\nSELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='message_date',query_condition_column='created_date',subtract=8)}}\n),\n\n-- Logic --\n\nsms_flows AS (\nSELECT\n flow_id,\n sms_user_id\nFROM import_sms_flow\nWHERE is_logical_deleted = 0\nAND NVL(sms_user_id,0) <> 0\n),\n\nflow_messages AS (\nSELECT DISTINCT\n flow_id,\n sms_user_id,\n created_date AS message_date\nFROM import_sms_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nAND message_source_type = 3 \nAND flow_id <> 0\nAND NVL(sms_user_id,0) <> 0\n),\n\nsms__flow_message_dates_res AS (\nSELECT\n message.flow_id,\n message.message_date,\n message.sms_user_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_flows AS flows\nINNER JOIN flow_messages AS message\n ON flows.flow_id = message.flow_id\n AND flows.sms_user_id = message.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms__flow_message_dates_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__flow", "package": null, "version": null}, {"name": "analytics___sms_stg__api_calls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__flow", "model.yoda.analytics___sms_stg__api_calls"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_flow AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__flow\n),\n\nimport_sms_api_calls AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\n-- Logic --\n\nsms_flows AS (\nSELECT\n flow_id,\n sms_user_id\nFROM import_sms_flow\nWHERE is_logical_deleted = 0\nAND NVL(sms_user_id,0) <> 0\n),\n\nflow_messages AS (\nSELECT DISTINCT\n flow_id,\n sms_user_id,\n created_date AS message_date\nFROM import_sms_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nAND message_source_type = 3 \nAND flow_id <> 0\nAND NVL(sms_user_id,0) <> 0\n),\n\nsms__flow_message_dates_res AS (\nSELECT\n message.flow_id,\n message.message_date,\n message.sms_user_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_flows AS flows\nINNER JOIN flow_messages AS message\n ON flows.flow_id = message.flow_id\n AND flows.sms_user_id = message.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms__flow_message_dates_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__free_credit_details": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__free_credit_details", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.sql", "unique_id": "model.yoda.analytics___sms__free_credit_details", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__free_credit_details", "analytics___sms__free_credit_details"], "alias": "analytics___sms__free_credit_details", "checksum": {"name": "sha256", "checksum": "8100c6b3e887aa5d52a55b0adcb96ec3beb8bd28885d993bf34d3742bf8eb4e8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Aggregated table of free credit events enriched by free_credit_type", "columns": {"free_credit_id": {"name": "free_credit_id", "description": "PK: artificial id = CONCAT(sms_user_id,created_at,credit_type)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "credit_type": {"name": "credit_type", "description": "credit category: SaaS Fee Credit | Customer Marketing | Signup Bonus | Activation Perks | Admin | Purchase Bonus | High-Touch Bonus", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_credit_amount": {"name": "free_credit_amount", "description": "free credit amount in usd (negative amount means that credits were removed from sms_user)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credit_created_at": {"name": "credit_created_at", "description": "timestamp of the free credit event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082658.026116, "relation_name": "dev_dkruh1.analytics___sms__free_credit_details", "raw_code": "-- Import --\n\nWITH import_sms_purchases AS (\nSELECT * FROM {{ ref('analytics___sms_stg__purchase') }}\n),\n\nimport_free_credit_log AS (\nSELECT * FROM {{ ref('analytics___sms_stg__free_credit_log') }}\n),\n\nimport_user_event_log AS (\nSELECT * FROM {{ ref('analytics___sms_stg__user_event_log') }}\n),\n\nimport_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\nimport_api_calls AS (\nSELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\n),\n\nimport_static_high_touch_bonus AS (\nSELECT * FROM {{ ref('analytics___sms_stg__free_credit_high_touch_bonus') }}\n),\n\n-- Logic --\n\nadmin_perks AS (\nSELECT\n sms_user_id,\n created_at,\n 'Admin' AS credit_type,\n SUM(IF(amount_added - amount_paid = 0, amount_added, amount_added - amount_paid)) AS bonus_amount\nFROM import_sms_purchases\nWHERE is_admin_perk = 1\nAND sms_user_id <> 11836\nGROUP BY 1,2,3\n),\n\npurchase_bonus AS (\nSELECT\n sms_user_id,\n created_at,\n 'Purchase Bonus' AS credit_type,\n SUM(amount_added - amount_paid) AS bonus_amount\nFROM import_sms_purchases\nWHERE is_purchase_bonus = 1\nAND sms_user_id <> 11836\nGROUP BY 1,2,3\n),\n\ncustomer_marketing_bonus AS (\nSELECT \n sms_user_id,\n created_at,\n 'Customer Marketing' AS credit_type,\n SUM(amount_added) AS bonus_amount\nFROM import_sms_purchases\nWHERE is_customer_marketing_bonus = 1\nGROUP BY 1,2,3\n),\n\nsaas_fee_credit_bonus AS (\nSELECT \n sms_user_id,\n created_at,\n 'SaaS Fee Credit' AS credit_type,\n SUM(amount_added) AS bonus_amount\nFROM import_sms_purchases\nWHERE is_saas_fee_bonus = 1\nGROUP BY 1,2,3\n),\n\nactivation_perks AS (\nSELECT\n sms_user_id,\n created_at,\n 'Activation Perks' AS credit_type,\n SUM(amount) AS bonus_amount\nFROM import_free_credit_log\nGROUP BY 1,2,3\n),\n\nsignup_bonus_before_sep AS (\nSELECT\n bonus_add.sms_user_id,\n bonus_add.created_at AS bonus_start_at,\n 3000 AS bonus_cap,\n TIMESTAMP(NVL(MIN(bonus_remove.created_at),'2999-01-01')) AS bonus_end_at\nFROM import_user_event_log AS bonus_add\nLEFT JOIN import_user_event_log AS bonus_remove\n ON bonus_add.sms_user_id = bonus_remove.sms_user_id\n AND LOWER(bonus_remove.event_name) = 'yotpo_sign_up_bonus'\n AND LOWER(bonus_remove.event_type) = 'remove_yotpo_signup_bonus'\n AND bonus_remove.created_at > bonus_add.created_at\nWHERE LOWER(bonus_add.event_name) = 'yotpo_sign_up_bonus'\nAND LOWER(bonus_add.event_type) = 'add_yotpo_signup_bonus'\nAND DATE(bonus_add.created_at) < '2021-09-16'\nGROUP BY 1,2,3\n), \n\nsignup_bonus_after_sep AS (\nSELECT \n credit_tran.sms_user_id,\n credit_tran.created_at AS bonus_start_at,\n credit_tran.amount_added AS bonus_cap,\n TIMESTAMP(NVL(MIN(bonus_remove.created_at),'2999-01-01')) AS bonus_end_at\nFROM import_sms_purchases AS credit_tran\nLEFT JOIN import_user_event_log AS bonus_remove\n ON credit_tran.sms_user_id = bonus_remove.sms_user_id\n AND LOWER(bonus_remove.event_name) = 'yotpo_sign_up_bonus'\n AND LOWER(bonus_remove.event_type) = 'remove_yotpo_signup_bonus'\n AND bonus_remove.created_at > credit_tran.created_at\nWHERE credit_tran.is_signup_bonus = 1\nGROUP BY 1,2,3\n), \n\nsignup_bonus_dates AS (\nSELECT\n sms_user_id,\n bonus_start_at,\n bonus_cap,\n bonus_end_at\nFROM signup_bonus_before_sep\nUNION ALL\nSELECT\n sms_user_id,\n bonus_start_at,\n bonus_cap,\n bonus_end_at\nFROM signup_bonus_after_sep\n), \n\nusage_in_bonus_period AS (\nSELECT\n bonus_dates.sms_user_id,\n bonus_dates.bonus_start_at,\n bonus_dates.bonus_cap,\n DATE(apicalls.created_at) AS usage_date,\n SUM(apicalls.price_billed_in_usd) AS daily_usage\nFROM signup_bonus_dates AS bonus_dates\nINNER JOIN import_sms_store AS store\n ON store.sms_user_id = bonus_dates.sms_user_id\nINNER JOIN import_api_calls AS apicalls\n ON apicalls.sms_user_id = bonus_dates.sms_user_id\nWHERE apicalls.price_billed_in_usd > 0\nAND apicalls.created_at BETWEEN bonus_dates.bonus_start_at AND bonus_dates.bonus_end_at\nGROUP BY 1,2,3,4\n), \n\ncumulative_usagein_bonus_period AS (\nSELECT\n sms_user_id,\n bonus_start_at,\n bonus_cap,\n usage_date,\n daily_usage,\n SUM(daily_usage)\n OVER (PARTITION BY sms_user_id, bonus_start_at\n ORDER BY usage_date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_usage\nFROM usage_in_bonus_period\n), \n\nsignup_bonus AS (\nSELECT\n sms_user_id,\n TIMESTAMP(usage_date) AS created_at,\n 'Signup Bonus' AS credit_type,\n SUM(CASE WHEN cumulative_usage <= bonus_cap THEN daily_usage\n WHEN cumulative_usage > bonus_cap AND cumulative_usage - daily_usage <= bonus_cap THEN bonus_cap - (cumulative_usage - daily_usage)\n WHEN cumulative_usage > bonus_cap AND cumulative_usage - daily_usage > bonus_cap THEN 0\n END) AS bonus_amount\nFROM cumulative_usagein_bonus_period\nGROUP BY 1,2\n),\n\nhigh_touch_bonus AS (\nSELECT \n sms_user_id,\n created_at,\n credit_type,\n bonus_amount\nFROM import_static_high_touch_bonus\n),\n\nfree_credit_type_union AS (\nSELECT *\nFROM admin_perks\nUNION ALL\nSELECT *\nFROM purchase_bonus\nUNION ALL\nSELECT *\nFROM customer_marketing_bonus\nUNION ALL\nSELECT *\nFROM saas_fee_credit_bonus\nUNION ALL\nSELECT *\nFROM activation_perks\nUNION ALL\nSELECT *\nFROM signup_bonus\nUNION ALL\nSELECT *\nFROM high_touch_bonus\n),\n\nfree_credit_res AS (\nSELECT\n SHA2(CONCAT(store.sms_user_id, free_credit.created_at,free_credit.credit_type),256) AS free_credit_id,\n store.sms_user_id,\n store.app_key,\n store.organization_key,\n free_credit.credit_type,\n free_credit.bonus_amount AS free_credit_amount,\n free_credit.created_at AS credit_created_at,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM free_credit_type_union AS free_credit\nINNER JOIN import_sms_store AS store\n ON free_credit.sms_user_id = store.sms_user_id\nWHERE NVL(free_credit.bonus_amount, 0) <> 0\n)\n\nSELECT *\nFROM free_credit_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__purchase", "package": null, "version": null}, {"name": "analytics___sms_stg__free_credit_log", "package": null, "version": null}, {"name": "analytics___sms_stg__user_event_log", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___sms_stg__api_calls", "package": null, "version": null}, {"name": "analytics___sms_stg__free_credit_high_touch_bonus", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__purchase", "model.yoda.analytics___sms_stg__free_credit_log", "model.yoda.analytics___sms_stg__user_event_log", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__free_credit_high_touch_bonus"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_purchases AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__purchase\n),\n\nimport_free_credit_log AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__free_credit_log\n),\n\nimport_user_event_log AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__user_event_log\n),\n\nimport_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\nimport_api_calls AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\n),\n\nimport_static_high_touch_bonus AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__free_credit_high_touch_bonus\n),\n\n-- Logic --\n\nadmin_perks AS (\nSELECT\n sms_user_id,\n created_at,\n 'Admin' AS credit_type,\n SUM(IF(amount_added - amount_paid = 0, amount_added, amount_added - amount_paid)) AS bonus_amount\nFROM import_sms_purchases\nWHERE is_admin_perk = 1\nAND sms_user_id <> 11836\nGROUP BY 1,2,3\n),\n\npurchase_bonus AS (\nSELECT\n sms_user_id,\n created_at,\n 'Purchase Bonus' AS credit_type,\n SUM(amount_added - amount_paid) AS bonus_amount\nFROM import_sms_purchases\nWHERE is_purchase_bonus = 1\nAND sms_user_id <> 11836\nGROUP BY 1,2,3\n),\n\ncustomer_marketing_bonus AS (\nSELECT \n sms_user_id,\n created_at,\n 'Customer Marketing' AS credit_type,\n SUM(amount_added) AS bonus_amount\nFROM import_sms_purchases\nWHERE is_customer_marketing_bonus = 1\nGROUP BY 1,2,3\n),\n\nsaas_fee_credit_bonus AS (\nSELECT \n sms_user_id,\n created_at,\n 'SaaS Fee Credit' AS credit_type,\n SUM(amount_added) AS bonus_amount\nFROM import_sms_purchases\nWHERE is_saas_fee_bonus = 1\nGROUP BY 1,2,3\n),\n\nactivation_perks AS (\nSELECT\n sms_user_id,\n created_at,\n 'Activation Perks' AS credit_type,\n SUM(amount) AS bonus_amount\nFROM import_free_credit_log\nGROUP BY 1,2,3\n),\n\nsignup_bonus_before_sep AS (\nSELECT\n bonus_add.sms_user_id,\n bonus_add.created_at AS bonus_start_at,\n 3000 AS bonus_cap,\n TIMESTAMP(NVL(MIN(bonus_remove.created_at),'2999-01-01')) AS bonus_end_at\nFROM import_user_event_log AS bonus_add\nLEFT JOIN import_user_event_log AS bonus_remove\n ON bonus_add.sms_user_id = bonus_remove.sms_user_id\n AND LOWER(bonus_remove.event_name) = 'yotpo_sign_up_bonus'\n AND LOWER(bonus_remove.event_type) = 'remove_yotpo_signup_bonus'\n AND bonus_remove.created_at > bonus_add.created_at\nWHERE LOWER(bonus_add.event_name) = 'yotpo_sign_up_bonus'\nAND LOWER(bonus_add.event_type) = 'add_yotpo_signup_bonus'\nAND DATE(bonus_add.created_at) < '2021-09-16'\nGROUP BY 1,2,3\n), \n\nsignup_bonus_after_sep AS (\nSELECT \n credit_tran.sms_user_id,\n credit_tran.created_at AS bonus_start_at,\n credit_tran.amount_added AS bonus_cap,\n TIMESTAMP(NVL(MIN(bonus_remove.created_at),'2999-01-01')) AS bonus_end_at\nFROM import_sms_purchases AS credit_tran\nLEFT JOIN import_user_event_log AS bonus_remove\n ON credit_tran.sms_user_id = bonus_remove.sms_user_id\n AND LOWER(bonus_remove.event_name) = 'yotpo_sign_up_bonus'\n AND LOWER(bonus_remove.event_type) = 'remove_yotpo_signup_bonus'\n AND bonus_remove.created_at > credit_tran.created_at\nWHERE credit_tran.is_signup_bonus = 1\nGROUP BY 1,2,3\n), \n\nsignup_bonus_dates AS (\nSELECT\n sms_user_id,\n bonus_start_at,\n bonus_cap,\n bonus_end_at\nFROM signup_bonus_before_sep\nUNION ALL\nSELECT\n sms_user_id,\n bonus_start_at,\n bonus_cap,\n bonus_end_at\nFROM signup_bonus_after_sep\n), \n\nusage_in_bonus_period AS (\nSELECT\n bonus_dates.sms_user_id,\n bonus_dates.bonus_start_at,\n bonus_dates.bonus_cap,\n DATE(apicalls.created_at) AS usage_date,\n SUM(apicalls.price_billed_in_usd) AS daily_usage\nFROM signup_bonus_dates AS bonus_dates\nINNER JOIN import_sms_store AS store\n ON store.sms_user_id = bonus_dates.sms_user_id\nINNER JOIN import_api_calls AS apicalls\n ON apicalls.sms_user_id = bonus_dates.sms_user_id\nWHERE apicalls.price_billed_in_usd > 0\nAND apicalls.created_at BETWEEN bonus_dates.bonus_start_at AND bonus_dates.bonus_end_at\nGROUP BY 1,2,3,4\n), \n\ncumulative_usagein_bonus_period AS (\nSELECT\n sms_user_id,\n bonus_start_at,\n bonus_cap,\n usage_date,\n daily_usage,\n SUM(daily_usage)\n OVER (PARTITION BY sms_user_id, bonus_start_at\n ORDER BY usage_date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_usage\nFROM usage_in_bonus_period\n), \n\nsignup_bonus AS (\nSELECT\n sms_user_id,\n TIMESTAMP(usage_date) AS created_at,\n 'Signup Bonus' AS credit_type,\n SUM(CASE WHEN cumulative_usage <= bonus_cap THEN daily_usage\n WHEN cumulative_usage > bonus_cap AND cumulative_usage - daily_usage <= bonus_cap THEN bonus_cap - (cumulative_usage - daily_usage)\n WHEN cumulative_usage > bonus_cap AND cumulative_usage - daily_usage > bonus_cap THEN 0\n END) AS bonus_amount\nFROM cumulative_usagein_bonus_period\nGROUP BY 1,2\n),\n\nhigh_touch_bonus AS (\nSELECT \n sms_user_id,\n created_at,\n credit_type,\n bonus_amount\nFROM import_static_high_touch_bonus\n),\n\nfree_credit_type_union AS (\nSELECT *\nFROM admin_perks\nUNION ALL\nSELECT *\nFROM purchase_bonus\nUNION ALL\nSELECT *\nFROM customer_marketing_bonus\nUNION ALL\nSELECT *\nFROM saas_fee_credit_bonus\nUNION ALL\nSELECT *\nFROM activation_perks\nUNION ALL\nSELECT *\nFROM signup_bonus\nUNION ALL\nSELECT *\nFROM high_touch_bonus\n),\n\nfree_credit_res AS (\nSELECT\n SHA2(CONCAT(store.sms_user_id, free_credit.created_at,free_credit.credit_type),256) AS free_credit_id,\n store.sms_user_id,\n store.app_key,\n store.organization_key,\n free_credit.credit_type,\n free_credit.bonus_amount AS free_credit_amount,\n free_credit.created_at AS credit_created_at,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM free_credit_type_union AS free_credit\nINNER JOIN import_sms_store AS store\n ON free_credit.sms_user_id = store.sms_user_id\nWHERE NVL(free_credit.bonus_amount, 0) <> 0\n)\n\nSELECT *\nFROM free_credit_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__organization_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__organization_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.sql", "unique_id": "model.yoda.analytics___sms__organization_metrics_monthly", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__organization_metrics_monthly", "analytics___sms__organization_metrics_monthly"], "alias": "analytics___sms__organization_metrics_monthly", "checksum": {"name": "sha256", "checksum": "64caab14f76d410b9f1dc585abc7a068a4ae8f0d4e15b32b0a5d3f30fc6550ee"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Monthly metrics View of sms organization - aggregation over analytics___sms__store_metrics_monthly.\nThe table contains data for the current year and the two previous years.\nGranularity: month | organization_key", "columns": {"month": {"name": "month", "description": "table month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "roi_spent_in_usd_sum": {"name": "roi_spent_in_usd_sum", "description": "sum of all organization's stores roi_spent_in_usd_sum", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,4)"}, "revenue_in_usd_sum": {"name": "revenue_in_usd_sum", "description": "sum of all organization's stores revenue_in_usd_sum", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "roi_ratio": {"name": "roi_ratio", "description": "ROI = (sum of all organization's stores Revenue - sum of all organization's stores Spend) / sum of all organization's stores Spend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "roi_spent_last_3_month_in_usd_sum": {"name": "roi_spent_last_3_month_in_usd_sum", "description": "sum of all organization's stores roi_spent_in_usd_sum over PRECEDING 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_last_3_month_in_usd_sum": {"name": "revenue_last_3_month_in_usd_sum", "description": "sum of all organization's stores revenue_in_usd_sum over PRECEDING 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "roi_last_3_month_ratio": {"name": "roi_last_3_month_ratio", "description": "organization roi = (sum of all organization's stores Revenue_last_3_month - sum of all organization's stores Spend_last_3_month) / sum of all organization's stores Spend_last_3_month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table refresh timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082658.0822034, "relation_name": "dev_dkruh1.analytics___sms__organization_metrics_monthly", "raw_code": "{{\n config(materialized=dbt_data_applications.get_table_materialization('view', 'view'))\n}}\n\n-- Import --\n\nWITH import_sms_store_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___sms__store_metrics_monthly') }}\n),\n\n-- logic --\n\nmetrics_monthly_aggregation AS (\nSELECT\n month,\n organization_id,\n organization_key,\n SUM(usage_sum) AS usage_sum,\n SUM(roi_spent_in_usd_sum) AS roi_spent_in_usd_sum,\n SUM(revenue_in_usd_sum) AS revenue_in_usd_sum,\n SUM(roi_spent_last_3_month_in_usd_sum) AS roi_spent_last_3_month_in_usd_sum,\n SUM(revenue_last_3_month_in_usd_sum) AS revenue_last_3_month_in_usd_sum\nFROM import_sms_store_metrics_monthly\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2,3\n),\n\nsms_organization_metrics_monthly_res AS (\nSELECT \n month,\n organization_id,\n organization_key,\n usage_sum\n roi_spent_in_usd_sum,\n revenue_in_usd_sum,\n (revenue_in_usd_sum/roi_spent_in_usd_sum) - 1 AS roi_ratio,\n roi_spent_last_3_month_in_usd_sum,\n revenue_last_3_month_in_usd_sum,\n (revenue_last_3_month_in_usd_sum/roi_spent_last_3_month_in_usd_sum) - 1 AS roi_last_3_month_ratio,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM metrics_monthly_aggregation\n)\n\nSELECT *\nFROM sms_organization_metrics_monthly_res", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_store_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store_metrics_monthly\n),\n\n-- logic --\n\nmetrics_monthly_aggregation AS (\nSELECT\n month,\n organization_id,\n organization_key,\n SUM(usage_sum) AS usage_sum,\n SUM(roi_spent_in_usd_sum) AS roi_spent_in_usd_sum,\n SUM(revenue_in_usd_sum) AS revenue_in_usd_sum,\n SUM(roi_spent_last_3_month_in_usd_sum) AS roi_spent_last_3_month_in_usd_sum,\n SUM(revenue_last_3_month_in_usd_sum) AS revenue_last_3_month_in_usd_sum\nFROM import_sms_store_metrics_monthly\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2,3\n),\n\nsms_organization_metrics_monthly_res AS (\nSELECT \n month,\n organization_id,\n organization_key,\n usage_sum\n roi_spent_in_usd_sum,\n revenue_in_usd_sum,\n (revenue_in_usd_sum/roi_spent_in_usd_sum) - 1 AS roi_ratio,\n roi_spent_last_3_month_in_usd_sum,\n revenue_last_3_month_in_usd_sum,\n (revenue_last_3_month_in_usd_sum/roi_spent_last_3_month_in_usd_sum) - 1 AS roi_last_3_month_ratio,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM metrics_monthly_aggregation\n)\n\nSELECT *\nFROM sms_organization_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__purchase": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__purchase", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.sql", "unique_id": "model.yoda.analytics___sms__purchase", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__purchase", "analytics___sms__purchase"], "alias": "analytics___sms__purchase", "checksum": {"name": "sha256", "checksum": "6f7e415637d441266a29353a9163a183fec51740d4b0b2a7da2350d0b4d76b30"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms purchases | Granularity & Primary Key: purchase_id", "columns": {"purchase_id": {"name": "purchase_id", "description": "unique identifier of purchase - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "sms user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "type of purchase: sign_up_credits, onboarding-bounty, bonus etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchase_source": {"name": "purchase_source", "description": "category: paypal,other,shopify,zuora,admin-manual", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manual_action_type": {"name": "manual_action_type", "description": "type of manual action: Yotpo - Signup - Bonus, refund etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "notes": {"name": "notes", "description": "free text explanation of the purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "status of the purchase: Paid, Not Paid etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "platform where purchase was made", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gateway": {"name": "gateway", "description": "where the funds went through: shopify, zuora, paypal etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_paid": {"name": "amount_paid", "description": "amount paid by user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_added": {"name": "amount_added", "description": "amount added to user balance, may be different than amount paid", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "is logical deleted", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "creation timestamp, better to use modified", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modifed_at": {"name": "modifed_at", "description": "modification timestamp, better to use this than created_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_purchase": {"name": "is_purchase", "description": "indicator for calculating daily credit purchases in analytics___sms__store_metrics_daily", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_gateway_admin_manual": {"name": "is_gateway_admin_manual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_status_paid": {"name": "is_status_paid", "description": "LOWER(status) = 'paid'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_status_refund": {"name": "is_status_refund", "description": "LOWER(status) = 'refund'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_activation_perk": {"name": "is_activation_perk", "description": "if indicator = 1 we will take the activation perk from free_credit_log", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_customer_marketing_bonus": {"name": "is_customer_marketing_bonus", "description": "indicator = 1 when purchase is considered 'Customer Marketing' AS credit_type in free_credit_details", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_saas_fee_bonus": {"name": "is_saas_fee_bonus", "description": "indicator = 1 when purchase is considered 'Saas Fee Bonus' AS credit_type in free_credit_details", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_signup_bonus": {"name": "is_signup_bonus", "description": "indicator = 1 when purchase is considered 'Sign-up Bonus' AS credit_type in free_credit_details", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_admin_perk": {"name": "is_admin_perk", "description": "indicator = 1 when purchase is considered 'Admin' AS credit_type in free_credit_details", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_purchase_bonus": {"name": "is_purchase_bonus", "description": "indicator = 1 when purchase is considered 'Purchase Bonus' AS credit_type in free_credit_details", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082658.1412728, "relation_name": "dev_dkruh1.analytics___sms__purchase", "raw_code": "-- Import --\n\nWITH import_sms_stg_purchase AS (\nSELECT * FROM {{ ref('analytics___sms_stg__purchase') }}\n),\n\nimport_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\n-- Logic --\n\nsms_purchase_res AS (\nSELECT\n purchase.purchase_id,\n purchase.sms_user_id,\n store.app_key,\n store.organization_id,\n store.organization_key,\n purchase.type,\n purchase.purchase_source,\n purchase.manual_action_type,\n purchase.notes,\n purchase.status,\n purchase.platform_name,\n purchase.gateway,\n purchase.amount_paid,\n purchase.amount_added,\n purchase.is_logical_deleted,\n purchase.created_at,\n purchase.created_date,\n purchase.modifed_at,\n purchase.modified_date,\n purchase.is_purchase,\n purchase.is_gateway_admin_manual,\n purchase.is_status_paid,\n purchase.is_status_refund,\n purchase.is_activation_perk,\n purchase.is_customer_marketing_bonus,\n purchase.is_saas_fee_bonus,\n purchase.is_signup_bonus,\n purchase.is_admin_perk,\n purchase.is_purchase_bonus,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_sms_stg_purchase AS purchase\nLEFT JOIN import_sms_store AS store\n ON purchase.sms_user_id = store.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_purchase_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__purchase", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__purchase", "model.yoda.analytics___sms__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_stg_purchase AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__purchase\n),\n\nimport_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\n-- Logic --\n\nsms_purchase_res AS (\nSELECT\n purchase.purchase_id,\n purchase.sms_user_id,\n store.app_key,\n store.organization_id,\n store.organization_key,\n purchase.type,\n purchase.purchase_source,\n purchase.manual_action_type,\n purchase.notes,\n purchase.status,\n purchase.platform_name,\n purchase.gateway,\n purchase.amount_paid,\n purchase.amount_added,\n purchase.is_logical_deleted,\n purchase.created_at,\n purchase.created_date,\n purchase.modifed_at,\n purchase.modified_date,\n purchase.is_purchase,\n purchase.is_gateway_admin_manual,\n purchase.is_status_paid,\n purchase.is_status_refund,\n purchase.is_activation_perk,\n purchase.is_customer_marketing_bonus,\n purchase.is_saas_fee_bonus,\n purchase.is_signup_bonus,\n purchase.is_admin_perk,\n purchase.is_purchase_bonus,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_sms_stg_purchase AS purchase\nLEFT JOIN import_sms_store AS store\n ON purchase.sms_user_id = store.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_purchase_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__store": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__store", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.sql", "unique_id": "model.yoda.analytics___sms__store", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store", "analytics___sms__store"], "alias": "analytics___sms__store", "checksum": {"name": "sha256", "checksum": "137e191da8565cb5cd23bd824537953d12477018df95517dead49c17d36c7595"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of SMS stores | Granularity & Primary Key: app_key", "columns": {"app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier. There are a few invalid cases resulting from a fault in the data source where there are several users for the same store. In such a case, only one user will be retrieved according to the following order of priorities: balance_in_usd DESC & is_onboarding_completed DESC &is_chat_enabled DESC &is_collect_checkout_subscribers DESC &is_ban_exclude DESC &industry_name DESC &sms_user_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "sms user name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_user_array": {"name": "store_user_array", "description": "sms users _array - in a valid case, should be only one user for each store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "store_user_cnt": {"name": "store_user_cnt", "description": "sms users counting - in a valid case, should be only one user for each store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "store email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_name": {"name": "country_name", "description": "store country name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region_name": {"name": "region_name", "description": "store region name based on country_name (default:EMEA)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "store domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "store name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "store platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "sms plan id unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "sms plan name: Powerhouse Plus, Powerhouse Max, Powerhouse Monthly, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_group": {"name": "plan_type_group", "description": "plan type group: self_service, high_touch and free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "plan customer type: HT/LT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_period": {"name": "plan_period", "description": "plan period: monthly, annually, null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "balance_in_usd": {"name": "balance_in_usd", "description": "balance in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "is_chat_enabled": {"name": "is_chat_enabled", "description": "chat enablement indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active": {"name": "is_active", "description": "activeness indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_shopify_plus": {"name": "is_shopify_plus", "description": "shopify plus indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_auto_reload": {"name": "is_auto_reload", "description": "auto reload credits indication", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082658.1920812, "relation_name": "dev_dkruh1.analytics___sms__store", "raw_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__sms_user') }}\n),\n\nimport_shopify_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__shopify_user') }}\n),\n\nimport_bigcommerce_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__bigcommerce_user') }}\n),\n\nimport_sms_plan AS (\nSELECT * FROM {{ ref('analytics___sms_stg__plan') }}\n),\n\nimport_phone_code_country_mapping AS (\nSELECT * FROM {{ ref('analytics___platform_stg__phone_code_country_mapping') }}\n),\n\nimport_timezone_country_mapping AS (\nSELECT * FROM {{ ref('platform_stg__timezone_country_mapping') }}\n),\n\nimport_organization_conversion AS (\nSELECT * FROM {{ ref('analytics___sms_stg__organization_identifier_conversion') }}\n),\n\nimport_salesforce_stg__mc_account AS (\nSELECT * FROM {{ ref('analytics___salesforce_stg__mc_account') }}\n),\n\n-- Logic --\n\nusers_with_existing_stores AS (\nSELECT *\nFROM import_sms_user\nWHERE app_key IS NOT NULL\nAND is_test = 0\nAND LOWER(NVL(role_name,'')) <> 'admin'\nAND LOWER(NVL(email,'')) NOT LIKE '%@isenselabs%'\nAND LOWER(NVL(email,'')) NOT LIKE '%@smsbump%'\nAND LOWER(NVL(email,'')) NOT LIKE '%@yotpo%'\nAND LOWER(NVL(email,'')) NOT LIKE '%@scorpiones%'\nAND LOWER(NVL(user_name,'')) NOT LIKE '%efgw wef%'\n),\n\nstore_users AS (\nSELECT\n app_key,\n TRANSFORM(\n ARRAY_SORT(COLLECT_SET(ARRAY(sms_user_id, row_ranking_for_store)), \n (LEFT, RIGHT) -> CASE WHEN LEFT[1] < RIGHT[1] THEN -1 WHEN LEFT[1] > RIGHT[1] THEN 1 ELSE 0 END),\n x -> x[0]) AS store_user_array,\n COUNT(*) AS store_user_cnt\nFROM users_with_existing_stores\nGROUP BY 1\n),\n\nstore_main_user AS (\nSELECT\n sms_user.app_key,\n sms_user.sms_user_id,\n sms_user.organization_id,\n sms_user.user_name,\n store_users.store_user_array,\n store_users.store_user_cnt,\n sms_user.email,\n sms_user.plan_id,\n sms_user.balance_in_usd,\n sms_user.is_chat_enabled,\n sms_user.created_at,\n sms_user.created_date,\n sms_user.modified_at,\n sms_user.modified_date\nFROM users_with_existing_stores AS sms_user\nINNER JOIN store_users\n ON sms_user.app_key = store_users.app_key\nWHERE sms_user.row_ranking_for_store = 1\n),\n\nuser_timezone_country AS (\nSELECT\n sms_user.sms_user_id,\n timezone.country_name,\n timezone.region_name\nFROM users_with_existing_stores AS sms_user\nINNER JOIN import_timezone_country_mapping AS timezone\n ON sms_user.timezone = timezone.timezone\n),\n\nuser_phone_country AS (\nSELECT\n sms_user.sms_user_id,\n phone.country_name,\n phone.region_name\nFROM users_with_existing_stores AS sms_user\nINNER JOIN import_phone_code_country_mapping AS phone\n ON sms_user.cleaned_phone_number LIKE CONCAT(phone.phone_code,'%')\nWHERE sms_user.sms_user_id NOT IN (SELECT sms_user_id FROM user_timezone_country)\n),\n\nuser_country_and_region AS (\nSELECT\n sms_user.sms_user_id,\n NVL(timezone.country_name, phone.country_name) AS country_name,\n COALESCE(timezone.region_name, phone.region_name,'EMEA') AS region_name\nFROM users_with_existing_stores AS sms_user \nLEFT JOIN user_timezone_country AS timezone\n ON sms_user.sms_user_id = timezone.sms_user_id\nLEFT JOIN user_phone_country AS phone\n ON sms_user.sms_user_id = phone.sms_user_id\n),\n\nshopify_user AS (\nSELECT\n sms_user_id,\n store_name,\n store_domain,\n platform_name,\n is_auto_reload,\n is_active,\n is_shopify_plus\nFROM import_shopify_user\nWHERE sms_user_id_row_rank = 1\nAND NULLIF(sms_user_id,0) IS NOT NULL\n),\n\nbigcommerce_user AS (\nSELECT\n sms_user_id,\n store_name,\n store_domain,\n 'bigcommerce' AS platform_name,\n is_auto_reload,\n is_active\nFROM import_bigcommerce_user\nWHERE sms_user_id_row_rank = 1\nAND NULLIF(sms_user_id,0) IS NOT NULL\n),\n\nshopify_and_bigcommerce_data AS (\nSELECT\n sms_user.sms_user_id,\n NVL(shopify.store_domain, bigcommerce.store_domain) AS domain,\n NVL(shopify.store_name, bigcommerce.store_name) AS name,\n COALESCE(shopify.platform_name, bigcommerce.platform_name, 'other') AS platform_name,\n SMALLINT(COALESCE(shopify.is_active, bigcommerce.is_active, 1)) AS is_active,\n SMALLINT(NVL(shopify.is_shopify_plus, 0)) AS is_shopify_plus,\n SMALLINT(NVL(shopify.is_auto_reload, bigcommerce.is_auto_reload)) AS is_auto_reload\nFROM users_with_existing_stores AS sms_user\nLEFT JOIN shopify_user AS shopify\n ON sms_user.sms_user_id = shopify.sms_user_id\nLEFT JOIN bigcommerce_user AS bigcommerce\n ON sms_user.sms_user_id = bigcommerce.sms_user_id\n),\n\nsf_account_ranking AS (\nSELECT\n organization_key,\n is_deleted_account,\n ROW_NUMBER() OVER (PARTITION BY organization_key ORDER BY is_deleted_account, created_date, account_id) AS organization_row_ranking\nFROM import_salesforce_stg__mc_account\nWHERE organization_key IS NOT NULL\n),\n\nsms_store_before_filtering_test AS (\nSELECT\n sms_user.app_key,\n sms_user.sms_user_id,\n sms_user.organization_id,\n organization.organization_key,\n sms_user.user_name,\n sms_user.store_user_array,\n sms_user.store_user_cnt,\n sms_user.email,\n country.country_name,\n country.region_name,\n shopify_bigcommerce.domain,\n shopify_bigcommerce.name,\n shopify_bigcommerce.platform_name,\n sms_user.plan_id,\n plan.plan_name,\n plan.plan_type_group,\n plan.plan_type_ht_lt,\n plan.plan_period,\n sms_user.balance_in_usd,\n sms_user.is_chat_enabled,\n shopify_bigcommerce.is_active,\n shopify_bigcommerce.is_shopify_plus,\n shopify_bigcommerce.is_auto_reload,\n sms_user.created_at,\n sms_user.created_date,\n sms_user.modified_at,\n sms_user.modified_date\nFROM store_main_user AS sms_user\nINNER JOIN user_country_and_region AS country\n ON sms_user.sms_user_id = country.sms_user_id\nINNER JOIN shopify_and_bigcommerce_data AS shopify_bigcommerce\n ON sms_user.sms_user_id = shopify_bigcommerce.sms_user_id\nLEFT JOIN import_organization_conversion AS organization\n ON sms_user.organization_id = organization.organization_id\nLEFT JOIN import_sms_plan AS plan\n ON sms_user.plan_id = plan.plan_id\n),\n\nsms__store_res AS (\nSELECT\n sms_store.app_key,\n sms_store.sms_user_id,\n sms_store.organization_id,\n sms_store.organization_key,\n sms_store.user_name,\n sms_store.store_user_array,\n sms_store.store_user_cnt,\n sms_store.email,\n sms_store.country_name,\n sms_store.region_name,\n sms_store.domain,\n sms_store.name,\n sms_store.platform_name,\n sms_store.plan_id,\n sms_store.plan_name,\n sms_store.plan_type_group,\n sms_store.plan_type_ht_lt,\n sms_store.plan_period,\n sms_store.balance_in_usd,\n sms_store.is_chat_enabled,\n sms_store.is_active,\n sms_store.is_shopify_plus,\n sms_store.is_auto_reload,\n sms_store.created_at,\n sms_store.created_date,\n sms_store.modified_at,\n sms_store.modified_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_store_before_filtering_test AS sms_store\nLEFT JOIN sf_account_ranking AS deleted_sf_account\n ON sms_store.organization_key = deleted_sf_account.organization_key\n AND deleted_sf_account.is_deleted_account = 1\n AND deleted_sf_account.organization_row_ranking = 1\nWHERE NOT (sms_store.created_date BETWEEN '2021-04-02' AND '2021-04-23'\n AND LOWER(sms_store.platform_name) = 'other'\n AND LOWER(sms_store.country_name) = 'united states'\n AND sms_store.organization_key IS NULL\n AND sms_store.user_name NOT LIKE '% %'\n AND (LOWER(sms_store.email) LIKE '%@gmail.com' OR LOWER(sms_store.email) LIKE '%@yahoo.com'))\nAND deleted_sf_account.organization_key IS NULL\n)\n\n-- Result --\n\nSELECT *\nFROM sms__store_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__sms_user", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_user", "package": null, "version": null}, {"name": "analytics___sms_stg__bigcommerce_user", "package": null, "version": null}, {"name": "analytics___sms_stg__plan", "package": null, "version": null}, {"name": "analytics___platform_stg__phone_code_country_mapping", "package": null, "version": null}, {"name": "platform_stg__timezone_country_mapping", "package": null, "version": null}, {"name": "analytics___sms_stg__organization_identifier_conversion", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__shopify_user", "model.yoda.analytics___sms_stg__bigcommerce_user", "model.yoda.analytics___sms_stg__plan", "model.yoda.analytics___platform_stg__phone_code_country_mapping", "model.yoda.platform_stg__timezone_country_mapping", "model.yoda.analytics___sms_stg__organization_identifier_conversion", "model.yoda.analytics___salesforce_stg__mc_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__sms_user\n),\n\nimport_shopify_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__shopify_user\n),\n\nimport_bigcommerce_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__bigcommerce_user\n),\n\nimport_sms_plan AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__plan\n),\n\nimport_phone_code_country_mapping AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__phone_code_country_mapping\n),\n\nimport_timezone_country_mapping AS (\nSELECT * FROM dev_dkruh1.platform_stg__timezone_country_mapping\n),\n\nimport_organization_conversion AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__organization_identifier_conversion\n),\n\nimport_salesforce_stg__mc_account AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_account\n),\n\n-- Logic --\n\nusers_with_existing_stores AS (\nSELECT *\nFROM import_sms_user\nWHERE app_key IS NOT NULL\nAND is_test = 0\nAND LOWER(NVL(role_name,'')) <> 'admin'\nAND LOWER(NVL(email,'')) NOT LIKE '%@isenselabs%'\nAND LOWER(NVL(email,'')) NOT LIKE '%@smsbump%'\nAND LOWER(NVL(email,'')) NOT LIKE '%@yotpo%'\nAND LOWER(NVL(email,'')) NOT LIKE '%@scorpiones%'\nAND LOWER(NVL(user_name,'')) NOT LIKE '%efgw wef%'\n),\n\nstore_users AS (\nSELECT\n app_key,\n TRANSFORM(\n ARRAY_SORT(COLLECT_SET(ARRAY(sms_user_id, row_ranking_for_store)), \n (LEFT, RIGHT) -> CASE WHEN LEFT[1] < RIGHT[1] THEN -1 WHEN LEFT[1] > RIGHT[1] THEN 1 ELSE 0 END),\n x -> x[0]) AS store_user_array,\n COUNT(*) AS store_user_cnt\nFROM users_with_existing_stores\nGROUP BY 1\n),\n\nstore_main_user AS (\nSELECT\n sms_user.app_key,\n sms_user.sms_user_id,\n sms_user.organization_id,\n sms_user.user_name,\n store_users.store_user_array,\n store_users.store_user_cnt,\n sms_user.email,\n sms_user.plan_id,\n sms_user.balance_in_usd,\n sms_user.is_chat_enabled,\n sms_user.created_at,\n sms_user.created_date,\n sms_user.modified_at,\n sms_user.modified_date\nFROM users_with_existing_stores AS sms_user\nINNER JOIN store_users\n ON sms_user.app_key = store_users.app_key\nWHERE sms_user.row_ranking_for_store = 1\n),\n\nuser_timezone_country AS (\nSELECT\n sms_user.sms_user_id,\n timezone.country_name,\n timezone.region_name\nFROM users_with_existing_stores AS sms_user\nINNER JOIN import_timezone_country_mapping AS timezone\n ON sms_user.timezone = timezone.timezone\n),\n\nuser_phone_country AS (\nSELECT\n sms_user.sms_user_id,\n phone.country_name,\n phone.region_name\nFROM users_with_existing_stores AS sms_user\nINNER JOIN import_phone_code_country_mapping AS phone\n ON sms_user.cleaned_phone_number LIKE CONCAT(phone.phone_code,'%')\nWHERE sms_user.sms_user_id NOT IN (SELECT sms_user_id FROM user_timezone_country)\n),\n\nuser_country_and_region AS (\nSELECT\n sms_user.sms_user_id,\n NVL(timezone.country_name, phone.country_name) AS country_name,\n COALESCE(timezone.region_name, phone.region_name,'EMEA') AS region_name\nFROM users_with_existing_stores AS sms_user \nLEFT JOIN user_timezone_country AS timezone\n ON sms_user.sms_user_id = timezone.sms_user_id\nLEFT JOIN user_phone_country AS phone\n ON sms_user.sms_user_id = phone.sms_user_id\n),\n\nshopify_user AS (\nSELECT\n sms_user_id,\n store_name,\n store_domain,\n platform_name,\n is_auto_reload,\n is_active,\n is_shopify_plus\nFROM import_shopify_user\nWHERE sms_user_id_row_rank = 1\nAND NULLIF(sms_user_id,0) IS NOT NULL\n),\n\nbigcommerce_user AS (\nSELECT\n sms_user_id,\n store_name,\n store_domain,\n 'bigcommerce' AS platform_name,\n is_auto_reload,\n is_active\nFROM import_bigcommerce_user\nWHERE sms_user_id_row_rank = 1\nAND NULLIF(sms_user_id,0) IS NOT NULL\n),\n\nshopify_and_bigcommerce_data AS (\nSELECT\n sms_user.sms_user_id,\n NVL(shopify.store_domain, bigcommerce.store_domain) AS domain,\n NVL(shopify.store_name, bigcommerce.store_name) AS name,\n COALESCE(shopify.platform_name, bigcommerce.platform_name, 'other') AS platform_name,\n SMALLINT(COALESCE(shopify.is_active, bigcommerce.is_active, 1)) AS is_active,\n SMALLINT(NVL(shopify.is_shopify_plus, 0)) AS is_shopify_plus,\n SMALLINT(NVL(shopify.is_auto_reload, bigcommerce.is_auto_reload)) AS is_auto_reload\nFROM users_with_existing_stores AS sms_user\nLEFT JOIN shopify_user AS shopify\n ON sms_user.sms_user_id = shopify.sms_user_id\nLEFT JOIN bigcommerce_user AS bigcommerce\n ON sms_user.sms_user_id = bigcommerce.sms_user_id\n),\n\nsf_account_ranking AS (\nSELECT\n organization_key,\n is_deleted_account,\n ROW_NUMBER() OVER (PARTITION BY organization_key ORDER BY is_deleted_account, created_date, account_id) AS organization_row_ranking\nFROM import_salesforce_stg__mc_account\nWHERE organization_key IS NOT NULL\n),\n\nsms_store_before_filtering_test AS (\nSELECT\n sms_user.app_key,\n sms_user.sms_user_id,\n sms_user.organization_id,\n organization.organization_key,\n sms_user.user_name,\n sms_user.store_user_array,\n sms_user.store_user_cnt,\n sms_user.email,\n country.country_name,\n country.region_name,\n shopify_bigcommerce.domain,\n shopify_bigcommerce.name,\n shopify_bigcommerce.platform_name,\n sms_user.plan_id,\n plan.plan_name,\n plan.plan_type_group,\n plan.plan_type_ht_lt,\n plan.plan_period,\n sms_user.balance_in_usd,\n sms_user.is_chat_enabled,\n shopify_bigcommerce.is_active,\n shopify_bigcommerce.is_shopify_plus,\n shopify_bigcommerce.is_auto_reload,\n sms_user.created_at,\n sms_user.created_date,\n sms_user.modified_at,\n sms_user.modified_date\nFROM store_main_user AS sms_user\nINNER JOIN user_country_and_region AS country\n ON sms_user.sms_user_id = country.sms_user_id\nINNER JOIN shopify_and_bigcommerce_data AS shopify_bigcommerce\n ON sms_user.sms_user_id = shopify_bigcommerce.sms_user_id\nLEFT JOIN import_organization_conversion AS organization\n ON sms_user.organization_id = organization.organization_id\nLEFT JOIN import_sms_plan AS plan\n ON sms_user.plan_id = plan.plan_id\n),\n\nsms__store_res AS (\nSELECT\n sms_store.app_key,\n sms_store.sms_user_id,\n sms_store.organization_id,\n sms_store.organization_key,\n sms_store.user_name,\n sms_store.store_user_array,\n sms_store.store_user_cnt,\n sms_store.email,\n sms_store.country_name,\n sms_store.region_name,\n sms_store.domain,\n sms_store.name,\n sms_store.platform_name,\n sms_store.plan_id,\n sms_store.plan_name,\n sms_store.plan_type_group,\n sms_store.plan_type_ht_lt,\n sms_store.plan_period,\n sms_store.balance_in_usd,\n sms_store.is_chat_enabled,\n sms_store.is_active,\n sms_store.is_shopify_plus,\n sms_store.is_auto_reload,\n sms_store.created_at,\n sms_store.created_date,\n sms_store.modified_at,\n sms_store.modified_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_store_before_filtering_test AS sms_store\nLEFT JOIN sf_account_ranking AS deleted_sf_account\n ON sms_store.organization_key = deleted_sf_account.organization_key\n AND deleted_sf_account.is_deleted_account = 1\n AND deleted_sf_account.organization_row_ranking = 1\nWHERE NOT (sms_store.created_date BETWEEN '2021-04-02' AND '2021-04-23'\n AND LOWER(sms_store.platform_name) = 'other'\n AND LOWER(sms_store.country_name) = 'united states'\n AND sms_store.organization_key IS NULL\n AND sms_store.user_name NOT LIKE '% %'\n AND (LOWER(sms_store.email) LIKE '%@gmail.com' OR LOWER(sms_store.email) LIKE '%@yahoo.com'))\nAND deleted_sf_account.organization_key IS NULL\n)\n\n-- Result --\n\nSELECT *\nFROM sms__store_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__store_activeness_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__store_activeness_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.sql", "unique_id": "model.yoda.analytics___sms__store_activeness_daily", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_activeness_daily", "analytics___sms__store_activeness_daily"], "alias": "analytics___sms__store_activeness_daily", "checksum": {"name": "sha256", "checksum": "a3aec48af64261fe09b4eff894e55aef26b5b00bad6320ef0616c25da0f04c6c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of sms store activeness history on a daily level | PK and granularity: activeness_date, app_key", "columns": {"activeness_date": {"name": "activeness_date", "description": "store activeness date - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_app_installed": {"name": "is_app_installed", "description": "installed app indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_store_open": {"name": "is_store_open", "description": "open store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082658.2265933, "relation_name": "dev_dkruh1.analytics___sms__store_activeness_daily", "raw_code": "{{config(materialized='view')}}\n\n-- Import --\n\nWITH import_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\nimport_sms_user_activeness_daily AS (\nSELECT * FROM {{ ref('analytics___sms__user_activeness_daily') }}\n),\n\n-- logic --\n\nsms_store_activeness_daily_res AS (\nSELECT\n activeness.activeness_date,\n store.app_key,\n activeness.sms_user_id,\n activeness.is_app_installed,\n activeness.is_user_open AS is_store_open,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_sms_store AS store\nINNER JOIN import_sms_user_activeness_daily AS activeness\n ON store.sms_user_id = activeness.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_store_activeness_daily_res", "language": "sql", "refs": [{"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___sms__user_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__store", "model.yoda.analytics___sms__user_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\nimport_sms_user_activeness_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_activeness_daily\n),\n\n-- logic --\n\nsms_store_activeness_daily_res AS (\nSELECT\n activeness.activeness_date,\n store.app_key,\n activeness.sms_user_id,\n activeness.is_app_installed,\n activeness.is_user_open AS is_store_open,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_sms_store AS store\nINNER JOIN import_sms_user_activeness_daily AS activeness\n ON store.sms_user_id = activeness.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_store_activeness_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__store_cohort": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__store_cohort", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.sql", "unique_id": "model.yoda.analytics___sms__store_cohort", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_cohort", "analytics___sms__store_cohort"], "alias": "analytics___sms__store_cohort", "checksum": {"name": "sha256", "checksum": "68d2723d3987fca1adc2f4a3656fb573b5b66156bd5fc0938e8af17c6e215ee3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "30-day cohorts modeled table for SMS stores:\n1. Cohort by store start date\n2. Cohort by store first usage date. \n\nPK and granularity: app_key | cohort_type | cohort_number", "columns": {"cohort_type": {"name": "cohort_type", "description": "cohort type: Cohort By Start Date, Cohort By First Usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cohort_number": {"name": "cohort_number", "description": "cohort number: 30d cohort number from the cohort start date: 0,1,2, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cohort_days_range": {"name": "cohort_days_range", "description": "cohort days range. e.g., when cohort_number = 2 cohort_days_range = 60-89", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cohort_from_date": {"name": "cohort_from_date", "description": "the cohort number start date range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "cohort_to_date": {"name": "cohort_to_date", "description": "the cohort number end date range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "start_date": {"name": "start_date", "description": "store start date - the first_opportunity_start_date or the store created_date (when there is no opportunity)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "usage_first_date": {"name": "usage_first_date", "description": "store first date of usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "activated_at_cohort_number": {"name": "activated_at_cohort_number", "description": "the cohort number where the store had at least cumulative usage of 3 dollars", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "usage_sum": {"name": "usage_sum", "description": "total usage amount in usd in the specific cohort number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(32,4)"}, "message_cnt": {"name": "message_cnt", "description": "total messages in the specific cohort number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_campaign_cnt": {"name": "active_campaign_cnt", "description": "total active campaigns in the specific cohort number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_active": {"name": "is_active", "description": "indicates whether usage sum is greather than 0 in the specific cohort number: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_activated": {"name": "is_activated", "description": "indicates whether the store had already at least cumulative usage of 3 dollars in the specific cohort number: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082658.275631, "relation_name": "dev_dkruh1.analytics___sms__store_cohort", "raw_code": "-- Variables --\n\n{%- set cohorts_start_date = \"ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\" -%}\n\n-- Import --\n\nWITH import_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\nimport_sms_store_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___sms__store_metrics_daily') }}\nWHERE date >= {{cohorts_start_date}}\n),\n\nimport_sms_user_dates_history AS (\nSELECT * \nFROM {{ ref('analytics___sms__user_dates_history') }}\n),\n\nimport_sms_user_store_dates_history AS (\nSELECT * \nFROM {{ ref('analytics___sms__user_store_dates_history') }}\n),\n\nimport_api_calls AS (\nSELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\nWHERE created_date >= {{cohorts_start_date}}\n),\n\nimport_salesforce__account AS (\nSELECT * FROM {{ ref('analytics___salesforce__account') }}\n),\n\nimport_calendar AS (\nSELECT * FROM {{ ref('analytics___utils_stg__calendar') }}\nWHERE date >= {{cohorts_start_date}}\n),\n\n-- Logic --\n\nsms_store_dates AS (\nSELECT\n store.app_key,\n store.sms_user_id,\n store.created_date,\n store.plan_type_group,\n usage_first_date.value AS usage_first_date,\n usage_3_usd.value AS 3_usd_cumulative_usage_first_date,\n opportunity_3_usd.value AS after_opportunity_3_usd_cumulative_usage_first_date,\n sf_account.sms_first_opportunity_start_date AS first_opportunity_start_date\nFROM import_sms_store AS store\nLEFT JOIN import_sms_user_dates_history AS usage_first_date\n ON LOWER(usage_first_date.category) = 'usage_first_date'\n AND store.sms_user_id = usage_first_date.sms_user_id\nLEFT JOIN import_sms_user_dates_history AS usage_3_usd\n ON LOWER(usage_3_usd.category) = '3_usd_cumulative_usage_first_date'\n AND store.sms_user_id = usage_3_usd.sms_user_id\nLEFT JOIN import_sms_user_store_dates_history AS opportunity_3_usd\n ON LOWER(opportunity_3_usd.category) = 'after_opportunity_3_usd_cumulative_usage_first_date'\n AND store.sms_user_id = opportunity_3_usd.sms_user_id\nLEFT JOIN import_salesforce__account AS sf_account\n ON store.organization_key = sf_account.organization_key\n),\n\nsms_store_start_dates AS (\nSELECT\n app_key,\n sms_user_id,\n usage_first_date,\n NVL(first_opportunity_start_date, created_date) AS start_date,\n IF(LOWER(plan_type_group) = 'high_touch', after_opportunity_3_usd_cumulative_usage_first_date, 3_usd_cumulative_usage_first_date) AS activated_at\nFROM sms_store_dates\n),\n\nsms_store_started_in_the_last_12m AS (\nSELECT\n app_key,\n sms_user_id,\n usage_first_date,\n start_date,\n INT(DATEDIFF(activated_at,start_date)/30) AS activated_at_cohort_number\nFROM sms_store_start_dates\nWHERE start_date BETWEEN {{cohorts_start_date}} AND DATE_SUB(CURRENT_DATE,1)\n),\n\nsms_store_first_usage_in_the_last_12m AS (\nSELECT\n app_key,\n sms_user_id,\n usage_first_date,\n start_date,\n INT(DATEDIFF(activated_at,usage_first_date)/30) AS activated_at_cohort_number\nFROM sms_store_start_dates\nWHERE usage_first_date BETWEEN {{cohorts_start_date}} AND DATE_SUB(CURRENT_DATE,1)\n),\n\nstart_date_cohort_date_ranges AS (\nSELECT\n store.app_key,\n store.sms_user_id,\n store.start_date,\n store.usage_first_date,\n store.activated_at_cohort_number,\n INT(DATEDIFF(calendar.date,store.start_date)/30) AS cohort_number,\n MIN(calendar.date) AS cohort_from_date,\n MAX(calendar.date) AS cohort_to_date\nFROM sms_store_started_in_the_last_12m AS store\nINNER JOIN import_calendar AS calendar\n ON calendar.date BETWEEN store.start_date AND DATE_SUB(CURRENT_DATE,1)\nWHERE INT(DATEDIFF(calendar.date,store.start_date)/30) BETWEEN 0 AND 12\nGROUP BY 1,2,3,4,5,6\n),\n\nfirst_usage_cohort_date_ranges AS (\nSELECT\n store.app_key,\n store.sms_user_id,\n store.start_date,\n store.usage_first_date,\n store.activated_at_cohort_number,\n INT(DATEDIFF(calendar.date,store.usage_first_date)/30) AS cohort_number,\n MIN(calendar.date) AS cohort_from_date,\n MAX(calendar.date) AS cohort_to_date\nFROM sms_store_first_usage_in_the_last_12m AS store\nINNER JOIN import_calendar AS calendar\n ON calendar.date BETWEEN store.usage_first_date AND DATE_SUB(CURRENT_DATE,1)\nWHERE INT(DATEDIFF(calendar.date,store.usage_first_date)/30) BETWEEN 0 AND 12\nGROUP BY 1,2,3,4,5,6\n),\n\ncampaigns AS (\nSELECT DISTINCT\n created_date AS date,\n sms_user_id,\n campaign_id\nFROM import_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nAND message_source_type = 2\n),\n\nstart_date_cohort_active_campaign AS (\nSELECT\n cohort_number,\n app_key,\n COUNT(DISTINCT campaigns.campaign_id) AS active_campaign_cnt\nFROM start_date_cohort_date_ranges AS cohort\nLEFT JOIN campaigns\n ON cohort.sms_user_id = campaigns.sms_user_id\n AND campaigns.date BETWEEN cohort.cohort_from_date AND cohort.cohort_to_date\nGROUP BY 1,2\n),\n\nfirst_usage_cohort_active_campaign AS (\nSELECT\n cohort_number,\n app_key,\n COUNT(DISTINCT campaigns.campaign_id) AS active_campaign_cnt\nFROM first_usage_cohort_date_ranges AS cohort\nLEFT JOIN campaigns\n ON cohort.sms_user_id = campaigns.sms_user_id\n AND campaigns.date BETWEEN cohort.cohort_from_date AND cohort.cohort_to_date\nGROUP BY 1,2\n),\n\nstore_metrics_for_start_date_cohort AS (\nSELECT\n cohort.cohort_number,\n cohort.app_key,\n cohort.sms_user_id,\n cohort.cohort_from_date,\n cohort.cohort_to_date,\n cohort.start_date,\n cohort.usage_first_date,\n cohort.activated_at_cohort_number,\n IF(cohort.cohort_number >= cohort.activated_at_cohort_number,1,0) AS is_activated,\n NVL(SUM(metrics.usage_sum),0) AS usage_sum,\n NVL(SUM(metrics.message_cnt),0) AS message_cnt,\n NVL(MAX(metrics.is_active),0) AS is_active\nFROM start_date_cohort_date_ranges AS cohort\nLEFT JOIN import_sms_store_metrics_daily AS metrics\n ON cohort.app_key = metrics.app_key \n AND metrics.date BETWEEN cohort.cohort_from_date AND cohort.cohort_to_date\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\nstore_metrics_for_first_usage_cohort AS (\nSELECT\n cohort.cohort_number,\n cohort.app_key,\n cohort.sms_user_id,\n cohort.cohort_from_date,\n cohort.cohort_to_date,\n cohort.start_date,\n cohort.usage_first_date,\n cohort.activated_at_cohort_number,\n IF(cohort.cohort_number >= cohort.activated_at_cohort_number,1,0) AS is_activated,\n NVL(SUM(metrics.usage_sum),0) AS usage_sum,\n NVL(SUM(metrics.message_cnt),0) AS message_cnt,\n NVL(MAX(metrics.is_active),0) AS is_active\nFROM first_usage_cohort_date_ranges AS cohort\nLEFT JOIN import_sms_store_metrics_daily AS metrics\n ON cohort.app_key = metrics.app_key \n AND metrics.date BETWEEN cohort.cohort_from_date AND cohort.cohort_to_date\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\nstart_date_cohort_result AS (\nSELECT\n 'Cohort By Start Date' AS cohort_type,\n cohort.cohort_number,\n cohort.app_key,\n cohort.sms_user_id,\n cohort.cohort_from_date,\n cohort.cohort_to_date,\n cohort.start_date,\n cohort.usage_first_date,\n cohort.activated_at_cohort_number,\n cohort.usage_sum,\n cohort.message_cnt,\n campaign.active_campaign_cnt,\n cohort.is_active,\n cohort.is_activated\nFROM store_metrics_for_start_date_cohort AS cohort\nINNER JOIN start_date_cohort_active_campaign AS campaign\n ON cohort.app_key = campaign.app_key\n AND cohort.cohort_number = campaign.cohort_number\n),\n\nfirst_usage_cohort_result AS (\nSELECT\n 'Cohort By First Usage' AS cohort_type,\n cohort.cohort_number,\n cohort.app_key,\n cohort.sms_user_id,\n cohort.cohort_from_date,\n cohort.cohort_to_date,\n cohort.start_date,\n cohort.usage_first_date,\n cohort.activated_at_cohort_number,\n cohort.usage_sum,\n cohort.message_cnt,\n campaign.active_campaign_cnt,\n cohort.is_active,\n cohort.is_activated\nFROM store_metrics_for_first_usage_cohort AS cohort\nINNER JOIN first_usage_cohort_active_campaign AS campaign\n ON cohort.app_key = campaign.app_key\n AND cohort.cohort_number = campaign.cohort_number\n),\n\ncohorts_union AS (\nSELECT\n cohort_type,\n cohort_number,\n app_key,\n sms_user_id,\n cohort_from_date,\n cohort_to_date,\n start_date,\n usage_first_date,\n activated_at_cohort_number,\n usage_sum,\n message_cnt,\n active_campaign_cnt,\n is_active,\n is_activated\nFROM start_date_cohort_result\nUNION ALL\nSELECT\n cohort_type,\n cohort_number,\n app_key,\n sms_user_id,\n cohort_from_date,\n cohort_to_date,\n start_date,\n usage_first_date,\n activated_at_cohort_number,\n usage_sum,\n message_cnt,\n active_campaign_cnt,\n is_active,\n is_activated\nFROM first_usage_cohort_result\n),\n\nsms_store_30_days_cohort_res AS (\nSELECT\n cohort_type,\n cohort_number,\n app_key,\n sms_user_id,\n STRING((cohort_number*30)) || '-' || STRING((cohort_number*30+29)) AS cohort_days_range,\n cohort_from_date,\n cohort_to_date,\n start_date,\n usage_first_date,\n activated_at_cohort_number,\n usage_sum,\n message_cnt,\n active_campaign_cnt,\n is_active,\n is_activated,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM cohorts_union\n)\n\n-- Result --\n\nSELECT *\nFROM sms_store_30_days_cohort_res", "language": "sql", "refs": [{"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___sms__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___sms__user_dates_history", "package": null, "version": null}, {"name": "analytics___sms__user_store_dates_history", "package": null, "version": null}, {"name": "analytics___sms_stg__api_calls", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___utils_stg__calendar", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__store", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms__user_dates_history", "model.yoda.analytics___sms__user_store_dates_history", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___utils_stg__calendar"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.sql", "compiled": true, "compiled_code": "-- Variables ---- Import --\n\nWITH import_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\nimport_sms_store_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store_metrics_daily\nWHERE date >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\n),\n\nimport_sms_user_dates_history AS (\nSELECT * \nFROM dev_dkruh1.analytics___sms__user_dates_history\n),\n\nimport_sms_user_store_dates_history AS (\nSELECT * \nFROM dev_dkruh1.analytics___sms__user_store_dates_history\n),\n\nimport_api_calls AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\nWHERE created_date >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\n),\n\nimport_salesforce__account AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__account\n),\n\nimport_calendar AS (\nSELECT * FROM dev_dkruh1.analytics___utils_stg__calendar\nWHERE date >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\n),\n\n-- Logic --\n\nsms_store_dates AS (\nSELECT\n store.app_key,\n store.sms_user_id,\n store.created_date,\n store.plan_type_group,\n usage_first_date.value AS usage_first_date,\n usage_3_usd.value AS 3_usd_cumulative_usage_first_date,\n opportunity_3_usd.value AS after_opportunity_3_usd_cumulative_usage_first_date,\n sf_account.sms_first_opportunity_start_date AS first_opportunity_start_date\nFROM import_sms_store AS store\nLEFT JOIN import_sms_user_dates_history AS usage_first_date\n ON LOWER(usage_first_date.category) = 'usage_first_date'\n AND store.sms_user_id = usage_first_date.sms_user_id\nLEFT JOIN import_sms_user_dates_history AS usage_3_usd\n ON LOWER(usage_3_usd.category) = '3_usd_cumulative_usage_first_date'\n AND store.sms_user_id = usage_3_usd.sms_user_id\nLEFT JOIN import_sms_user_store_dates_history AS opportunity_3_usd\n ON LOWER(opportunity_3_usd.category) = 'after_opportunity_3_usd_cumulative_usage_first_date'\n AND store.sms_user_id = opportunity_3_usd.sms_user_id\nLEFT JOIN import_salesforce__account AS sf_account\n ON store.organization_key = sf_account.organization_key\n),\n\nsms_store_start_dates AS (\nSELECT\n app_key,\n sms_user_id,\n usage_first_date,\n NVL(first_opportunity_start_date, created_date) AS start_date,\n IF(LOWER(plan_type_group) = 'high_touch', after_opportunity_3_usd_cumulative_usage_first_date, 3_usd_cumulative_usage_first_date) AS activated_at\nFROM sms_store_dates\n),\n\nsms_store_started_in_the_last_12m AS (\nSELECT\n app_key,\n sms_user_id,\n usage_first_date,\n start_date,\n INT(DATEDIFF(activated_at,start_date)/30) AS activated_at_cohort_number\nFROM sms_store_start_dates\nWHERE start_date BETWEEN ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nsms_store_first_usage_in_the_last_12m AS (\nSELECT\n app_key,\n sms_user_id,\n usage_first_date,\n start_date,\n INT(DATEDIFF(activated_at,usage_first_date)/30) AS activated_at_cohort_number\nFROM sms_store_start_dates\nWHERE usage_first_date BETWEEN ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nstart_date_cohort_date_ranges AS (\nSELECT\n store.app_key,\n store.sms_user_id,\n store.start_date,\n store.usage_first_date,\n store.activated_at_cohort_number,\n INT(DATEDIFF(calendar.date,store.start_date)/30) AS cohort_number,\n MIN(calendar.date) AS cohort_from_date,\n MAX(calendar.date) AS cohort_to_date\nFROM sms_store_started_in_the_last_12m AS store\nINNER JOIN import_calendar AS calendar\n ON calendar.date BETWEEN store.start_date AND DATE_SUB(CURRENT_DATE,1)\nWHERE INT(DATEDIFF(calendar.date,store.start_date)/30) BETWEEN 0 AND 12\nGROUP BY 1,2,3,4,5,6\n),\n\nfirst_usage_cohort_date_ranges AS (\nSELECT\n store.app_key,\n store.sms_user_id,\n store.start_date,\n store.usage_first_date,\n store.activated_at_cohort_number,\n INT(DATEDIFF(calendar.date,store.usage_first_date)/30) AS cohort_number,\n MIN(calendar.date) AS cohort_from_date,\n MAX(calendar.date) AS cohort_to_date\nFROM sms_store_first_usage_in_the_last_12m AS store\nINNER JOIN import_calendar AS calendar\n ON calendar.date BETWEEN store.usage_first_date AND DATE_SUB(CURRENT_DATE,1)\nWHERE INT(DATEDIFF(calendar.date,store.usage_first_date)/30) BETWEEN 0 AND 12\nGROUP BY 1,2,3,4,5,6\n),\n\ncampaigns AS (\nSELECT DISTINCT\n created_date AS date,\n sms_user_id,\n campaign_id\nFROM import_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nAND message_source_type = 2\n),\n\nstart_date_cohort_active_campaign AS (\nSELECT\n cohort_number,\n app_key,\n COUNT(DISTINCT campaigns.campaign_id) AS active_campaign_cnt\nFROM start_date_cohort_date_ranges AS cohort\nLEFT JOIN campaigns\n ON cohort.sms_user_id = campaigns.sms_user_id\n AND campaigns.date BETWEEN cohort.cohort_from_date AND cohort.cohort_to_date\nGROUP BY 1,2\n),\n\nfirst_usage_cohort_active_campaign AS (\nSELECT\n cohort_number,\n app_key,\n COUNT(DISTINCT campaigns.campaign_id) AS active_campaign_cnt\nFROM first_usage_cohort_date_ranges AS cohort\nLEFT JOIN campaigns\n ON cohort.sms_user_id = campaigns.sms_user_id\n AND campaigns.date BETWEEN cohort.cohort_from_date AND cohort.cohort_to_date\nGROUP BY 1,2\n),\n\nstore_metrics_for_start_date_cohort AS (\nSELECT\n cohort.cohort_number,\n cohort.app_key,\n cohort.sms_user_id,\n cohort.cohort_from_date,\n cohort.cohort_to_date,\n cohort.start_date,\n cohort.usage_first_date,\n cohort.activated_at_cohort_number,\n IF(cohort.cohort_number >= cohort.activated_at_cohort_number,1,0) AS is_activated,\n NVL(SUM(metrics.usage_sum),0) AS usage_sum,\n NVL(SUM(metrics.message_cnt),0) AS message_cnt,\n NVL(MAX(metrics.is_active),0) AS is_active\nFROM start_date_cohort_date_ranges AS cohort\nLEFT JOIN import_sms_store_metrics_daily AS metrics\n ON cohort.app_key = metrics.app_key \n AND metrics.date BETWEEN cohort.cohort_from_date AND cohort.cohort_to_date\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\nstore_metrics_for_first_usage_cohort AS (\nSELECT\n cohort.cohort_number,\n cohort.app_key,\n cohort.sms_user_id,\n cohort.cohort_from_date,\n cohort.cohort_to_date,\n cohort.start_date,\n cohort.usage_first_date,\n cohort.activated_at_cohort_number,\n IF(cohort.cohort_number >= cohort.activated_at_cohort_number,1,0) AS is_activated,\n NVL(SUM(metrics.usage_sum),0) AS usage_sum,\n NVL(SUM(metrics.message_cnt),0) AS message_cnt,\n NVL(MAX(metrics.is_active),0) AS is_active\nFROM first_usage_cohort_date_ranges AS cohort\nLEFT JOIN import_sms_store_metrics_daily AS metrics\n ON cohort.app_key = metrics.app_key \n AND metrics.date BETWEEN cohort.cohort_from_date AND cohort.cohort_to_date\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\nstart_date_cohort_result AS (\nSELECT\n 'Cohort By Start Date' AS cohort_type,\n cohort.cohort_number,\n cohort.app_key,\n cohort.sms_user_id,\n cohort.cohort_from_date,\n cohort.cohort_to_date,\n cohort.start_date,\n cohort.usage_first_date,\n cohort.activated_at_cohort_number,\n cohort.usage_sum,\n cohort.message_cnt,\n campaign.active_campaign_cnt,\n cohort.is_active,\n cohort.is_activated\nFROM store_metrics_for_start_date_cohort AS cohort\nINNER JOIN start_date_cohort_active_campaign AS campaign\n ON cohort.app_key = campaign.app_key\n AND cohort.cohort_number = campaign.cohort_number\n),\n\nfirst_usage_cohort_result AS (\nSELECT\n 'Cohort By First Usage' AS cohort_type,\n cohort.cohort_number,\n cohort.app_key,\n cohort.sms_user_id,\n cohort.cohort_from_date,\n cohort.cohort_to_date,\n cohort.start_date,\n cohort.usage_first_date,\n cohort.activated_at_cohort_number,\n cohort.usage_sum,\n cohort.message_cnt,\n campaign.active_campaign_cnt,\n cohort.is_active,\n cohort.is_activated\nFROM store_metrics_for_first_usage_cohort AS cohort\nINNER JOIN first_usage_cohort_active_campaign AS campaign\n ON cohort.app_key = campaign.app_key\n AND cohort.cohort_number = campaign.cohort_number\n),\n\ncohorts_union AS (\nSELECT\n cohort_type,\n cohort_number,\n app_key,\n sms_user_id,\n cohort_from_date,\n cohort_to_date,\n start_date,\n usage_first_date,\n activated_at_cohort_number,\n usage_sum,\n message_cnt,\n active_campaign_cnt,\n is_active,\n is_activated\nFROM start_date_cohort_result\nUNION ALL\nSELECT\n cohort_type,\n cohort_number,\n app_key,\n sms_user_id,\n cohort_from_date,\n cohort_to_date,\n start_date,\n usage_first_date,\n activated_at_cohort_number,\n usage_sum,\n message_cnt,\n active_campaign_cnt,\n is_active,\n is_activated\nFROM first_usage_cohort_result\n),\n\nsms_store_30_days_cohort_res AS (\nSELECT\n cohort_type,\n cohort_number,\n app_key,\n sms_user_id,\n STRING((cohort_number*30)) || '-' || STRING((cohort_number*30+29)) AS cohort_days_range,\n cohort_from_date,\n cohort_to_date,\n start_date,\n usage_first_date,\n activated_at_cohort_number,\n usage_sum,\n message_cnt,\n active_campaign_cnt,\n is_active,\n is_activated,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM cohorts_union\n)\n\n-- Result --\n\nSELECT *\nFROM sms_store_30_days_cohort_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__store_metrics": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__store_metrics", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.sql", "unique_id": "model.yoda.analytics___sms__store_metrics", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics", "analytics___sms__store_metrics"], "alias": "analytics___sms__store_metrics", "checksum": {"name": "sha256", "checksum": "5c2890811b3a278c84b6790f6c636e6e26e031041123587456ba320c06be2ebc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms store metrics | PK and granularity: app_key", "columns": {"app_key": {"name": "app_key", "description": "yotpo store unique identifier - PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "yotpo organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_id": {"name": "sf_account_id", "description": "salesforce account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_opportunity_id": {"name": "first_opportunity_id", "description": "First closed opportunity id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_name": {"name": "country_name", "description": "Store country name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region_name": {"name": "region_name", "description": "Store region name based on country_name (default:EMEA)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "Store domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "Store name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "Store platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "SMS plan id unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "SMS plan name: Powerhouse Plus, Powerhouse Max, Powerhouse Monthly, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_group": {"name": "plan_type_group", "description": "Plan type group: self_service, high_touch and free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "Plan type: HT/LT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_period": {"name": "plan_period", "description": "Plan period: monthly, annually, null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_enabled_flow_cnt": {"name": "current_enabled_flow_cnt", "description": "Current number of enabled flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_enabled_automation_cnt": {"name": "current_enabled_automation_cnt", "description": "Current number of enabled automations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cumulative_customer_cnt": {"name": "cumulative_customer_cnt", "description": "Cumulative number of customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_automation_cnt_last_30d": {"name": "active_automation_cnt_last_30d", "description": "Number of active automations in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cumulative_active_campaign_cnt": {"name": "cumulative_active_campaign_cnt", "description": "Cumulative number of active campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_campaign_cnt_last_30d": {"name": "active_campaign_cnt_last_30d", "description": "Number of active campaigns in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_flow_cnt_last_30d": {"name": "active_flow_cnt_last_30d", "description": "Number of active flows in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cumulative_usage_sum": {"name": "cumulative_usage_sum", "description": "Cumulative usage amount", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "cumulative_meassage_cnt": {"name": "cumulative_meassage_cnt", "description": "Cumulative number of meassages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usage_sum_last_30d": {"name": "usage_sum_last_30d", "description": "Usage amount in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "meassage_cnt_last_30d": {"name": "meassage_cnt_last_30d", "description": "Number of meassages in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "roi_revenue_sum_last_30d": {"name": "roi_revenue_sum_last_30d", "description": "ROI revenue in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "roi_spent_sum_last_30d": {"name": "roi_spent_sum_last_30d", "description": "ROI spent in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "roi_last_30d": {"name": "roi_last_30d", "description": "ROI in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "roi_revenue_sum_last_3m": {"name": "roi_revenue_sum_last_3m", "description": "ROI revenue in the 3 months preceding the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "roi_spent_sum_last_3m": {"name": "roi_spent_sum_last_3m", "description": "ROI spent in the 3 months preceding the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "roi_last_3m": {"name": "roi_last_3m", "description": "ROI in the 3 months preceding the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "active_flow_and_automation_cnt_avg_last_3m": {"name": "active_flow_and_automation_cnt_avg_last_3m", "description": "Average number of active flows and automations in the 3 months preceding the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "active_campaign_cnt_avg_last_3m": {"name": "active_campaign_cnt_avg_last_3m", "description": "Average number of active campaigns in the 3 months preceding the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "meassage_cnt_avg_last_3m": {"name": "meassage_cnt_avg_last_3m", "description": "Average number of meassages in the 3 months preceding the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "usage_avg_last_3m": {"name": "usage_avg_last_3m", "description": "Average Usage amount in the 3 months preceding the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "usage_sum_mtd": {"name": "usage_sum_mtd", "description": "Usage amount Month To Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "usage_sum_last_mtd": {"name": "usage_sum_last_mtd", "description": "Usage amount Month To Date in the previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "order_cnt_last_30d": {"name": "order_cnt_last_30d", "description": "Orders monthly average in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_avg_last_3m": {"name": "order_avg_last_3m", "description": "Orders monthly average in the 3 months preceding the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "order_avg_last_3m_at_creation_date": {"name": "order_avg_last_3m_at_creation_date", "description": "Orders monthly average in the 3 months preceding the month of the store creatio date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "order_avg_last_3m_at_usage_first_date": {"name": "order_avg_last_3m_at_usage_first_date", "description": "Orders monthly average in the 3 months preceding the month of the first usage date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "order_avg_last_3m_at_first_opportunity_start_date": {"name": "order_avg_last_3m_at_first_opportunity_start_date", "description": "Orders monthly average in the 3 months preceding the month of the first closed opportunity's start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "is_uninstall": {"name": "is_uninstall", "description": "Uninstalled store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_closed": {"name": "is_closed", "description": "Closed store indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_usage": {"name": "is_usage", "description": "Usage indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_usage_in_last_30d": {"name": "is_usage_in_last_30d", "description": "Usage in last 30 days indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_3_usd_activated": {"name": "is_3_usd_activated", "description": "3 USD cumulative usage activation indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_popup_enabled": {"name": "is_popup_enabled", "description": "Popup enablement indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "Store created timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "Store created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "last_install_date": {"name": "last_install_date", "description": "Last store install date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "last_uninstall_date": {"name": "last_uninstall_date", "description": "Last store uninstall date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "last_reopened_date": {"name": "last_reopened_date", "description": "Last store reopened date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "last_close_date": {"name": "last_close_date", "description": "Last store close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_first_opportunity_start_date": {"name": "sms_first_opportunity_start_date", "description": "SMS first opportunity start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_first_opportunity_close_date": {"name": "sms_first_opportunity_close_date", "description": "SMS first opportunity close date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "usage_first_date": {"name": "usage_first_date", "description": "Usage first date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "usage_last_date": {"name": "usage_last_date", "description": "Usage last date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "automation_usage_first_date": {"name": "automation_usage_first_date", "description": "Automation usage first date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "automation_usage_last_date": {"name": "automation_usage_last_date", "description": "Automation usage last date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "campaign_usage_first_date": {"name": "campaign_usage_first_date", "description": "Campaign usage first date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "campaign_usage_last_date": {"name": "campaign_usage_last_date", "description": "Campaign usage last date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "flow_usage_first_date": {"name": "flow_usage_first_date", "description": "Flow usage first date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "flow_usage_last_date": {"name": "flow_usage_last_date", "description": "Flow usage last date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_usage_first_date": {"name": "sms_usage_first_date", "description": "SMS usage first date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_usage_last_date": {"name": "sms_usage_last_date", "description": "SMS usage last date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "mms_usage_first_date": {"name": "mms_usage_first_date", "description": "MMS usage first date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "mms_usage_last_date": {"name": "mms_usage_last_date", "description": "MMS usage last date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "3_usd_activation_date": {"name": "3_usd_activation_date", "description": "3 USD cumulative usage activation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsell_date": {"name": "upsell_date", "description": "Upsell date - first date of plan upgrade from low touch to high touch", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082658.3718712, "relation_name": "dev_dkruh1.analytics___sms__store_metrics", "raw_code": "-- Import --\n\nWITH import_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\nimport_sms_user_dates_history AS (\nSELECT * FROM {{ ref('analytics___sms__user_dates_history') }}\n),\n\nimport_sms_user_store_dates_history AS (\nSELECT * FROM {{ ref('analytics___sms__user_store_dates_history') }}\n),\n\nimport_sms_user_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___sms__user_metrics_daily') }}\n),\n\nimport_sms_store_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___sms__store_metrics_daily') }}\n),\n\nimport_sms_store_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___sms__store_metrics_monthly') }}\n),\n\nimport_sms_user_customer AS (\nSELECT * FROM {{ ref('analytics___sms__user_customer') }}\n),\n\nimport_sms_user_popup_status AS (\nSELECT * FROM {{ ref('analytics___sms__user_pop_up_status') }}\n),\n\nimport_sms_flow AS (\nSELECT * FROM {{ ref('analytics___sms_stg__flow') }}\n),\n\nimport_sms_event AS (\nSELECT * FROM {{ ref('analytics___sms_stg__event') }}\n),\n\nimport_sms_user_installation_over_time AS (\nSELECT * FROM {{ ref('analytics___sms__user_installation_over_time') }}\n),\n\nimport_sms_user_open_over_time AS (\nSELECT * FROM {{ ref('analytics___sms__user_open_over_time') }}\n),\n\nimport_sms_automation_message_dates AS (\nSELECT * FROM {{ ref('analytics___sms__automation_message_dates') }}\n),\n\nimport_sms_campaign_message_dates AS (\nSELECT * FROM {{ ref('analytics___sms__campaign_message_dates') }}\n),\n\nimport_sms_flow_message_dates AS (\nSELECT * FROM {{ ref('analytics___sms__flow_message_dates') }}\n),\n\nimport_sms_user_plan_over_time AS (\nSELECT * FROM {{ ref('analytics___sms__user_plan_over_time') }}\n),\n\nimport_platform_store_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___platform__store_metrics_daily') }}\n),\n\nimport_platform_store_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__store_metrics_monthly') }}\n),\n\nimport_salesforce_account AS (\nSELECT * FROM {{ ref('analytics___salesforce__account') }}\n),\n\n-- Logic --\n\nsms_user_dates_pivot AS (\nSELECT\n sms_user_id,\n MAX(IF(LOWER(category) = 'usage_first_date', value, NULL)) AS usage_first_date,\n MAX(IF(LOWER(category) = 'usage_last_date', value, NULL)) AS usage_last_date,\n MAX(IF(LOWER(category) = 'automation_usage_first_date', value, NULL)) AS automation_usage_first_date,\n MAX(IF(LOWER(category) = 'automation_usage_last_date', value, NULL)) AS automation_usage_last_date,\n MAX(IF(LOWER(category) = 'campaign_usage_first_date', value, NULL)) AS campaign_usage_first_date,\n MAX(IF(LOWER(category) = 'campaign_usage_last_date', value, NULL)) AS campaign_usage_last_date,\n MAX(IF(LOWER(category) = 'flow_usage_first_date', value, NULL)) AS flow_usage_first_date,\n MAX(IF(LOWER(category) = 'flow_usage_last_date', value, NULL)) AS flow_usage_last_date,\n MAX(IF(LOWER(category) = 'sms_usage_first_date', value, NULL)) AS sms_usage_first_date,\n MAX(IF(LOWER(category) = 'sms_usage_last_date', value, NULL)) AS sms_usage_last_date,\n MAX(IF(LOWER(category) = 'mms_usage_first_date', value, NULL)) AS mms_usage_first_date,\n MAX(IF(LOWER(category) = 'mms_usage_last_date', value, NULL)) AS mms_usage_last_date,\n MAX(IF(LOWER(category) = '3_usd_cumulative_usage_first_date', value, NULL)) AS 3_usd_cumulative_usage_first_date\nFROM import_sms_user_dates_history\nGROUP BY 1\n),\n\nsms_store_dates_pivot AS (\nSELECT\n app_key,\n MAX(IF(LOWER(category) = 'after_opportunity_3_usd_cumulative_usage_first_date', value, NULL)) AS after_opportunity_3_usd_cumulative_usage_first_date\nFROM import_sms_user_store_dates_history\nGROUP BY 1\n),\n\nsms_store_enrichment AS (\nSELECT \n store.app_key,\n store.sms_user_id,\n store.organization_id,\n store.organization_key,\n sf_account.account_id AS sf_account_id,\n sf_account.sms_first_opportunity AS first_opportunity_id,\n store.country_name,\n store.region_name,\n store.domain,\n store.name,\n store.platform_name,\n store.plan_id,\n store.plan_name,\n store.plan_type_group,\n store.plan_type_ht_lt,\n store.plan_period,\n SMALLINT(IF(user_dates.usage_last_date IS NOT NULL,1,0)) AS is_usage,\n SMALLINT(IF(user_dates.usage_last_date >= DATE_SUB(CURRENT_DATE,30),1,0)) AS is_usage_in_last_30d,\n popup.is_pop_up_enabled AS is_popup_enabled,\n store.created_at,\n store.created_date,\n sf_account.sms_first_opportunity_start_date,\n sf_account.sms_first_opportunity_close_date,\n user_dates.usage_first_date,\n user_dates.usage_last_date,\n user_dates.automation_usage_first_date,\n user_dates.automation_usage_last_date,\n user_dates.campaign_usage_first_date,\n user_dates.campaign_usage_last_date,\n user_dates.flow_usage_first_date,\n user_dates.flow_usage_last_date,\n user_dates.sms_usage_first_date,\n user_dates.sms_usage_last_date,\n user_dates.mms_usage_first_date,\n user_dates.mms_usage_last_date,\n IF(LOWER(store.plan_type_group) = 'high_touch',\n store_dates.after_opportunity_3_usd_cumulative_usage_first_date,\n user_dates.3_usd_cumulative_usage_first_date) AS 3_usd_activation_date\nFROM import_sms_store AS store\nLEFT JOIN import_salesforce_account AS sf_account\n ON sf_account.organization_key = store.organization_key\nLEFT JOIN sms_user_dates_pivot AS user_dates\n ON store.sms_user_id = user_dates.sms_user_id\nLEFT JOIN sms_store_dates_pivot AS store_dates\n ON store.app_key = store_dates.app_key\nLEFT JOIN import_sms_user_popup_status AS popup\n ON store.sms_user_id = popup.sms_user_id\n),\n\ninstallation_dates AS (\nSELECT\n sms_user_id,\n MAX(IF(is_app_installed = 1, from_time, NULL)) AS last_install_at,\n MAX(IF(is_app_installed = 0, from_time, NULL)) AS last_uninstall_at\nFROM import_sms_user_installation_over_time\nGROUP BY 1\n),\n\nreopened_dates AS (\nSELECT\n sms_user_id,\n MAX(IF(is_user_open = 1, from_time, NULL)) AS last_reopened_at,\n MAX(IF(is_user_open = 0, from_time, NULL)) AS last_close_at\nFROM import_sms_user_open_over_time\nWHERE event_source IN ('user_event_log_shopify_user','user_event_log_sms_user')\nGROUP BY 1\n),\n\ncurrent_flows AS (\nSELECT\n sms_user_id,\n COUNT(*) AS current_enabled_flow_cnt\nFROM import_sms_flow\nWHERE is_enabled = 1\nGROUP BY 1\n),\n\ncurrent_automations AS (\nSELECT\n sms_user_id,\n COUNT(*) AS current_enabled_automation_cnt\nFROM import_sms_event\nWHERE is_enabled = 1\nGROUP BY 1\n),\n\ncustomers AS (\nSELECT\n sms_user_id,\n COUNT(*) AS cumulative_customer_cnt\nFROM import_sms_user_customer\nGROUP BY 1\n),\n\nautomations_in_the_last_30_days AS (\nSELECT\n sms_user_id,\n COUNT(DISTINCT automation_id) AS active_automation_cnt_last_30d\nFROM import_sms_automation_message_dates\nWHERE DATEDIFF(CURRENT_DATE, message_date) BETWEEN 1 AND 30\nGROUP BY 1\n),\n\ncampaigns_in_the_last_30_days AS (\nSELECT\n sms_user_id,\n COUNT(DISTINCT campaign_id) AS cumulative_active_campaign_cnt,\n COUNT(DISTINCT IF(DATEDIFF(CURRENT_DATE, message_date) BETWEEN 1 AND 30, campaign_id, NULL)) AS active_campaign_cnt_last_30d\nFROM import_sms_campaign_message_dates\nGROUP BY 1\n),\n\nflows_in_the_last_30_days AS (\nSELECT\n sms_user_id,\n COUNT(DISTINCT flow_id) AS active_flow_cnt_last_30d\nFROM import_sms_flow_message_dates\nWHERE DATEDIFF(CURRENT_DATE, message_date) BETWEEN 1 AND 30\nGROUP BY 1\n),\n\nmeassage_and_usage_metrics AS (\nSELECT\n sms_user_id,\n CAST(SUM(usage_sum) AS DECIMAL(24,4))AS cumulative_usage_sum,\n SUM(message_cnt) AS cumulative_meassage_cnt,\n CAST(SUM(IF(DATEDIFF(CURRENT_DATE, date) BETWEEN 1 AND 30, usage_sum, 0)) AS DECIMAL(24,4)) AS usage_sum_last_30d,\n SUM(IF(DATEDIFF(CURRENT_DATE, date) BETWEEN 1 AND 30, message_cnt, 0)) AS meassage_cnt_last_30d,\n CAST(SUM(IF(date BETWEEN TRUNC(ADD_MONTHS(DATE_SUB(CURRENT_DATE,1),-1),'MONTH') AND ADD_MONTHS(DATE_SUB(CURRENT_DATE,1),-1),usage_sum,0)) AS DECIMAL(24,4)) AS usage_sum_last_mtd\nFROM import_sms_user_metrics_daily\nGROUP BY 1\n),\n\nroi_in_the_last_30_days AS (\nSELECT\n sms_user_id,\n SUM(revenue_in_usd_sum) AS roi_revenue_sum_last_30d,\n SUM(roi_spent_in_usd_sum) AS roi_spent_sum_last_30d\nFROM import_sms_store_metrics_daily\nWHERE DATEDIFF(CURRENT_DATE, date) BETWEEN 1 AND 30\nGROUP BY 1\n),\n\nmonthly_metrics AS (\nSELECT\n sms_user_id,\n CAST(AVG(IF(TRUNC(CURRENT_DATE,'MONTH') > month, active_automation_cnt + active_flow_cnt, NULL)) AS DECIMAL(14,4)) AS active_flow_and_automation_cnt_avg_last_3m,\n CAST(AVG(IF(TRUNC(CURRENT_DATE,'MONTH') > month, active_campaign_cnt, NULL)) AS DECIMAL(14,4)) AS active_campaign_cnt_avg_last_3m,\n CAST(AVG(IF(TRUNC(CURRENT_DATE,'MONTH') > month, message_cnt, NULL)) AS DECIMAL(14,4)) AS meassage_cnt_avg_last_3m,\n CAST(AVG(IF(TRUNC(CURRENT_DATE,'MONTH') > month, usage_sum, NULL)) AS DECIMAL(14,4)) AS usage_avg_last_3m,\n SUM(IF(TRUNC(CURRENT_DATE,'MONTH') > month, revenue_in_usd_sum, 0)) AS roi_revenue_sum_last_3m,\n SUM(IF(TRUNC(CURRENT_DATE,'MONTH') > month, roi_spent_in_usd_sum, 0)) AS roi_spent_sum_last_3m,\n CAST(SUM(IF(TRUNC(CURRENT_DATE,'MONTH') = month, usage_sum, 0)) AS DECIMAL(24,4)) AS usage_sum_mtd\nFROM import_sms_store_metrics_monthly\nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),month) BETWEEN 0 AND 3\nGROUP BY 1\n),\n\norders_in_the_last_30_days AS (\nSELECT\n app_key,\n SUM(orders_cnt) AS order_cnt_last_30d\nFROM import_platform_store_metrics_daily\nWHERE DATEDIFF(CURRENT_DATE, date) BETWEEN 1 AND 30\nGROUP BY 1\n),\n\nmonthly_orders_metrics AS (\nSELECT\n store.app_key,\n CAST(SUM(IF(MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),metrics.month) BETWEEN 1 AND 3, metrics.orders_cnt, 0))/3 AS DECIMAL(10,2)) AS order_avg_last_3m,\n CAST(SUM(IF(MONTHS_BETWEEN(TRUNC(store.created_date,'MONTH'),metrics.month) BETWEEN 1 AND 3, metrics.orders_cnt, 0))/3 AS DECIMAL(10,2)) AS order_avg_last_3m_at_creation_date,\n CAST(SUM(IF(MONTHS_BETWEEN(TRUNC(store.usage_first_date,'MONTH'),metrics.month) BETWEEN 1 AND 3, metrics.orders_cnt, 0))/3 AS DECIMAL(10,2)) AS order_avg_last_3m_at_usage_first_date,\n CAST(SUM(IF(MONTHS_BETWEEN(TRUNC(store.sms_first_opportunity_start_date,'MONTH'),metrics.month) BETWEEN 1 AND 3, metrics.orders_cnt, 0))/3 AS DECIMAL(10,2)) AS order_avg_last_3m_at_first_opportunity_start_date\nFROM import_platform_store_metrics_monthly AS metrics\nINNER JOIN sms_store_enrichment AS store\n ON metrics.app_key = store.app_key\nGROUP BY 1\n),\n\nfirst_high_touch_plan_after_low_touch_indicator AS (\nSELECT\n store.app_key,\n store.organization_key,\n store.sms_user_id,\n plan.created_date,\n IF(plan.is_first_ht_plan = 1 AND plan.is_previous_lt_plan = 1,1,0) AS is_first_ht_plan_after_lt,\n plan.is_previous_free_plan,\n IF(DATEDIFF(plan.created_date,store.created_date) > 30,1,0) AS is_plan_created_more_than_30d_after_store_creation\nFROM import_sms_store AS store\nINNER JOIN import_sms_user_plan_over_time AS plan\n ON store.sms_user_id = plan.sms_user_id\n),\n\nfree_store_validation_indicator AS (\nSELECT\n app_key,\n organization_key,\n sms_user_id,\n created_date,\n is_first_ht_plan_after_lt,\n is_previous_free_plan,\n IF(is_previous_free_plan = 1, is_plan_created_more_than_30d_after_store_creation, 1) AS is_valid_free_store\nFROM first_high_touch_plan_after_low_touch_indicator\n),\n\norganization_with_low_touch_to_high_touch AS (\nSELECT\n app_key,\n sms_user_id,\n created_date,\n is_first_ht_plan_after_lt,\n is_previous_free_plan,\n is_valid_free_store,\n MAX(IF(is_valid_free_store = 1 \n AND is_first_ht_plan_after_lt = 1\n AND is_previous_free_plan = 0,1,0)) OVER (PARTITION BY organization_key) AS is_organization_lt_to_ht\nFROM free_store_validation_indicator\n),\n\npotential_upsell_stores AS (\nSELECT\n app_key,\n sms_user_id,\n created_date,\n is_previous_free_plan,\n is_organization_lt_to_ht\nFROM organization_with_low_touch_to_high_touch\nWHERE is_first_ht_plan_after_lt = 1\nAND is_valid_free_store = 1\n),\n\nusage_30_days_before_upsell AS (\nSELECT\n upsell.app_key,\n upsell.sms_user_id,\n upsell.created_date,\n upsell.is_previous_free_plan,\n upsell.is_organization_lt_to_ht,\n NVL(SUM(IF(DATEDIFF(upsell.created_date, date) BETWEEN 1 AND 30, metrics.usage_sum, 0)),0) AS usage_30d_before_upsell\nFROM potential_upsell_stores AS upsell\nLEFT JOIN import_sms_user_metrics_daily AS metrics\n ON metrics.usage_sum > 0\n AND upsell.sms_user_id = metrics.sms_user_id\nGROUP BY 1,2,3,4,5\n),\n\ndate_of_upsell AS (\nSELECT\n app_key,\n IF(is_previous_free_plan = 0\n OR usage_30d_before_upsell >= 50\n OR is_organization_lt_to_ht = 1,created_date,NULL) AS upsell_date\nFROM usage_30_days_before_upsell\n),\n\nsms_store_metrics_res AS (\nSELECT \n store.app_key,\n store.sms_user_id,\n store.organization_id,\n store.organization_key,\n store.sf_account_id,\n store.first_opportunity_id,\n store.country_name,\n store.region_name,\n store.domain,\n store.name,\n store.platform_name,\n store.plan_id,\n store.plan_name,\n store.plan_type_group,\n store.plan_type_ht_lt,\n store.plan_period,\n NVL(current_flows.current_enabled_flow_cnt,0) AS current_enabled_flow_cnt,\n NVL(current_automations.current_enabled_automation_cnt,0) AS current_enabled_automation_cnt,\n NVL(customers.cumulative_customer_cnt,0) AS cumulative_customer_cnt,\n NVL(automations_30d.active_automation_cnt_last_30d,0) AS active_automation_cnt_last_30d,\n NVL(campaigns_30d.cumulative_active_campaign_cnt,0) AS cumulative_active_campaign_cnt,\n NVL(campaigns_30d.active_campaign_cnt_last_30d,0) AS active_campaign_cnt_last_30d,\n NVL(flows_30d.active_flow_cnt_last_30d,0) AS active_flow_cnt_last_30d,\n NVL(usage.cumulative_usage_sum,0) AS cumulative_usage_sum,\n NVL(usage.cumulative_meassage_cnt,0) AS cumulative_meassage_cnt,\n NVL(usage.usage_sum_last_30d,0) AS usage_sum_last_30d,\n NVL(usage.meassage_cnt_last_30d,0) AS meassage_cnt_last_30d,\n CAST(NVL(roi_30d.roi_revenue_sum_last_30d,0) AS DECIMAL(14,4)) AS roi_revenue_sum_last_30d,\n CAST(NVL(roi_30d.roi_spent_sum_last_30d,0) AS DECIMAL(14,4)) AS roi_spent_sum_last_30d,\n CAST(IF(NVL(roi_30d.roi_spent_sum_last_30d,0) = 0,0,(NVL(roi_30d.roi_revenue_sum_last_30d,0)/roi_30d.roi_spent_sum_last_30d - 1) * 100) AS DECIMAL(14,4)) AS roi_last_30d,\n CAST(NVL(monthly_metrics.roi_revenue_sum_last_3m,0) AS DECIMAL(14,4)) AS roi_revenue_sum_last_3m,\n CAST(NVL(monthly_metrics.roi_spent_sum_last_3m,0) AS DECIMAL(14,4)) AS roi_spent_sum_last_3m,\n CAST(IF(NVL(monthly_metrics.roi_spent_sum_last_3m,0) = 0,0,(NVL(monthly_metrics.roi_revenue_sum_last_3m,0)/monthly_metrics.roi_spent_sum_last_3m - 1) * 100) AS DECIMAL(14,4)) AS roi_last_3m,\n NVL(monthly_metrics.active_flow_and_automation_cnt_avg_last_3m,0) AS active_flow_and_automation_cnt_avg_last_3m,\n NVL(monthly_metrics.active_campaign_cnt_avg_last_3m,0) AS active_campaign_cnt_avg_last_3m,\n NVL(monthly_metrics.meassage_cnt_avg_last_3m,0) AS meassage_cnt_avg_last_3m,\n NVL(monthly_metrics.usage_avg_last_3m,0) AS usage_avg_last_3m,\n NVL(monthly_metrics.usage_sum_mtd,0) AS usage_sum_mtd,\n NVL(usage.usage_sum_last_mtd,0) AS usage_sum_last_mtd,\n NVL(orders_30d.order_cnt_last_30d,0) AS order_cnt_last_30d,\n monthly_order.order_avg_last_3m,\n monthly_order.order_avg_last_3m_at_creation_date,\n monthly_order.order_avg_last_3m_at_usage_first_date,\n monthly_order.order_avg_last_3m_at_first_opportunity_start_date,\n SMALLINT(IF(install.last_uninstall_at > install.last_install_at,1,0)) AS is_uninstall,\n SMALLINT(IF(reopened.last_close_at > reopened.last_reopened_at,1,0)) AS is_closed,\n store.is_usage,\n store.is_usage_in_last_30d,\n SMALLINT(IF(store.3_usd_activation_date IS NOT NULL,1,0)) AS is_3_usd_activated,\n store.is_popup_enabled,\n store.created_at,\n store.created_date,\n DATE(install.last_install_at) AS last_install_date,\n DATE(install.last_uninstall_at) AS last_uninstall_date,\n DATE(reopened.last_reopened_at) AS last_reopened_date,\n DATE(reopened.last_close_at) AS last_close_date,\n store.sms_first_opportunity_start_date,\n store.sms_first_opportunity_close_date,\n store.usage_first_date,\n store.usage_last_date,\n store.automation_usage_first_date,\n store.automation_usage_last_date,\n store.campaign_usage_first_date,\n store.campaign_usage_last_date,\n store.flow_usage_first_date,\n store.flow_usage_last_date,\n store.sms_usage_first_date,\n store.sms_usage_last_date,\n store.mms_usage_first_date,\n store.mms_usage_last_date,\n store.3_usd_activation_date,\n upsell.upsell_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_store_enrichment AS store\nLEFT JOIN installation_dates AS install\n ON store.sms_user_id = install.sms_user_id\nLEFT JOIN reopened_dates AS reopened\n ON store.sms_user_id = reopened.sms_user_id\nLEFT JOIN current_flows\n ON store.sms_user_id = current_flows.sms_user_id\nLEFT JOIN current_automations\n ON store.sms_user_id = current_automations.sms_user_id\nLEFT JOIN customers\n ON store.sms_user_id = customers.sms_user_id\nLEFT JOIN automations_in_the_last_30_days AS automations_30d\n ON store.sms_user_id = automations_30d.sms_user_id\nLEFT JOIN campaigns_in_the_last_30_days AS campaigns_30d\n ON store.sms_user_id = campaigns_30d.sms_user_id\nLEFT JOIN flows_in_the_last_30_days AS flows_30d\n ON store.sms_user_id = flows_30d.sms_user_id\nLEFT JOIN meassage_and_usage_metrics AS usage\n ON store.sms_user_id = usage.sms_user_id\nLEFT JOIN roi_in_the_last_30_days AS roi_30d\n ON store.sms_user_id = roi_30d.sms_user_id\nLEFT JOIN monthly_metrics\n ON store.sms_user_id = monthly_metrics.sms_user_id\nLEFT JOIN orders_in_the_last_30_days AS orders_30d\n ON store.app_key = orders_30d.app_key\nLEFT JOIN monthly_orders_metrics AS monthly_order\n ON store.app_key = monthly_order.app_key\nLEFT JOIN date_of_upsell AS upsell\n ON store.app_key = upsell.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM sms_store_metrics_res", "language": "sql", "refs": [{"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___sms__user_dates_history", "package": null, "version": null}, {"name": "analytics___sms__user_store_dates_history", "package": null, "version": null}, {"name": "analytics___sms__user_metrics_daily", "package": null, "version": null}, {"name": "analytics___sms__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___sms__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___sms__user_customer", "package": null, "version": null}, {"name": "analytics___sms__user_pop_up_status", "package": null, "version": null}, {"name": "analytics___sms_stg__flow", "package": null, "version": null}, {"name": "analytics___sms_stg__event", "package": null, "version": null}, {"name": "analytics___sms__user_installation_over_time", "package": null, "version": null}, {"name": "analytics___sms__user_open_over_time", "package": null, "version": null}, {"name": "analytics___sms__automation_message_dates", "package": null, "version": null}, {"name": "analytics___sms__campaign_message_dates", "package": null, "version": null}, {"name": "analytics___sms__flow_message_dates", "package": null, "version": null}, {"name": "analytics___sms__user_plan_over_time", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__store", "model.yoda.analytics___sms__user_dates_history", "model.yoda.analytics___sms__user_store_dates_history", "model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms__store_metrics_monthly", "model.yoda.analytics___sms__user_customer", "model.yoda.analytics___sms__user_pop_up_status", "model.yoda.analytics___sms_stg__flow", "model.yoda.analytics___sms_stg__event", "model.yoda.analytics___sms__user_installation_over_time", "model.yoda.analytics___sms__user_open_over_time", "model.yoda.analytics___sms__automation_message_dates", "model.yoda.analytics___sms__campaign_message_dates", "model.yoda.analytics___sms__flow_message_dates", "model.yoda.analytics___sms__user_plan_over_time", "model.yoda.analytics___platform__store_metrics_daily", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___salesforce__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\nimport_sms_user_dates_history AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_dates_history\n),\n\nimport_sms_user_store_dates_history AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_store_dates_history\n),\n\nimport_sms_user_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_metrics_daily\n),\n\nimport_sms_store_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store_metrics_daily\n),\n\nimport_sms_store_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store_metrics_monthly\n),\n\nimport_sms_user_customer AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_customer\n),\n\nimport_sms_user_popup_status AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_pop_up_status\n),\n\nimport_sms_flow AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__flow\n),\n\nimport_sms_event AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__event\n),\n\nimport_sms_user_installation_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_installation_over_time\n),\n\nimport_sms_user_open_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_open_over_time\n),\n\nimport_sms_automation_message_dates AS (\nSELECT * FROM dev_dkruh1.analytics___sms__automation_message_dates\n),\n\nimport_sms_campaign_message_dates AS (\nSELECT * FROM dev_dkruh1.analytics___sms__campaign_message_dates\n),\n\nimport_sms_flow_message_dates AS (\nSELECT * FROM dev_dkruh1.analytics___sms__flow_message_dates\n),\n\nimport_sms_user_plan_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_plan_over_time\n),\n\nimport_platform_store_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_metrics_daily\n),\n\nimport_platform_store_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_metrics_monthly\n),\n\nimport_salesforce_account AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__account\n),\n\n-- Logic --\n\nsms_user_dates_pivot AS (\nSELECT\n sms_user_id,\n MAX(IF(LOWER(category) = 'usage_first_date', value, NULL)) AS usage_first_date,\n MAX(IF(LOWER(category) = 'usage_last_date', value, NULL)) AS usage_last_date,\n MAX(IF(LOWER(category) = 'automation_usage_first_date', value, NULL)) AS automation_usage_first_date,\n MAX(IF(LOWER(category) = 'automation_usage_last_date', value, NULL)) AS automation_usage_last_date,\n MAX(IF(LOWER(category) = 'campaign_usage_first_date', value, NULL)) AS campaign_usage_first_date,\n MAX(IF(LOWER(category) = 'campaign_usage_last_date', value, NULL)) AS campaign_usage_last_date,\n MAX(IF(LOWER(category) = 'flow_usage_first_date', value, NULL)) AS flow_usage_first_date,\n MAX(IF(LOWER(category) = 'flow_usage_last_date', value, NULL)) AS flow_usage_last_date,\n MAX(IF(LOWER(category) = 'sms_usage_first_date', value, NULL)) AS sms_usage_first_date,\n MAX(IF(LOWER(category) = 'sms_usage_last_date', value, NULL)) AS sms_usage_last_date,\n MAX(IF(LOWER(category) = 'mms_usage_first_date', value, NULL)) AS mms_usage_first_date,\n MAX(IF(LOWER(category) = 'mms_usage_last_date', value, NULL)) AS mms_usage_last_date,\n MAX(IF(LOWER(category) = '3_usd_cumulative_usage_first_date', value, NULL)) AS 3_usd_cumulative_usage_first_date\nFROM import_sms_user_dates_history\nGROUP BY 1\n),\n\nsms_store_dates_pivot AS (\nSELECT\n app_key,\n MAX(IF(LOWER(category) = 'after_opportunity_3_usd_cumulative_usage_first_date', value, NULL)) AS after_opportunity_3_usd_cumulative_usage_first_date\nFROM import_sms_user_store_dates_history\nGROUP BY 1\n),\n\nsms_store_enrichment AS (\nSELECT \n store.app_key,\n store.sms_user_id,\n store.organization_id,\n store.organization_key,\n sf_account.account_id AS sf_account_id,\n sf_account.sms_first_opportunity AS first_opportunity_id,\n store.country_name,\n store.region_name,\n store.domain,\n store.name,\n store.platform_name,\n store.plan_id,\n store.plan_name,\n store.plan_type_group,\n store.plan_type_ht_lt,\n store.plan_period,\n SMALLINT(IF(user_dates.usage_last_date IS NOT NULL,1,0)) AS is_usage,\n SMALLINT(IF(user_dates.usage_last_date >= DATE_SUB(CURRENT_DATE,30),1,0)) AS is_usage_in_last_30d,\n popup.is_pop_up_enabled AS is_popup_enabled,\n store.created_at,\n store.created_date,\n sf_account.sms_first_opportunity_start_date,\n sf_account.sms_first_opportunity_close_date,\n user_dates.usage_first_date,\n user_dates.usage_last_date,\n user_dates.automation_usage_first_date,\n user_dates.automation_usage_last_date,\n user_dates.campaign_usage_first_date,\n user_dates.campaign_usage_last_date,\n user_dates.flow_usage_first_date,\n user_dates.flow_usage_last_date,\n user_dates.sms_usage_first_date,\n user_dates.sms_usage_last_date,\n user_dates.mms_usage_first_date,\n user_dates.mms_usage_last_date,\n IF(LOWER(store.plan_type_group) = 'high_touch',\n store_dates.after_opportunity_3_usd_cumulative_usage_first_date,\n user_dates.3_usd_cumulative_usage_first_date) AS 3_usd_activation_date\nFROM import_sms_store AS store\nLEFT JOIN import_salesforce_account AS sf_account\n ON sf_account.organization_key = store.organization_key\nLEFT JOIN sms_user_dates_pivot AS user_dates\n ON store.sms_user_id = user_dates.sms_user_id\nLEFT JOIN sms_store_dates_pivot AS store_dates\n ON store.app_key = store_dates.app_key\nLEFT JOIN import_sms_user_popup_status AS popup\n ON store.sms_user_id = popup.sms_user_id\n),\n\ninstallation_dates AS (\nSELECT\n sms_user_id,\n MAX(IF(is_app_installed = 1, from_time, NULL)) AS last_install_at,\n MAX(IF(is_app_installed = 0, from_time, NULL)) AS last_uninstall_at\nFROM import_sms_user_installation_over_time\nGROUP BY 1\n),\n\nreopened_dates AS (\nSELECT\n sms_user_id,\n MAX(IF(is_user_open = 1, from_time, NULL)) AS last_reopened_at,\n MAX(IF(is_user_open = 0, from_time, NULL)) AS last_close_at\nFROM import_sms_user_open_over_time\nWHERE event_source IN ('user_event_log_shopify_user','user_event_log_sms_user')\nGROUP BY 1\n),\n\ncurrent_flows AS (\nSELECT\n sms_user_id,\n COUNT(*) AS current_enabled_flow_cnt\nFROM import_sms_flow\nWHERE is_enabled = 1\nGROUP BY 1\n),\n\ncurrent_automations AS (\nSELECT\n sms_user_id,\n COUNT(*) AS current_enabled_automation_cnt\nFROM import_sms_event\nWHERE is_enabled = 1\nGROUP BY 1\n),\n\ncustomers AS (\nSELECT\n sms_user_id,\n COUNT(*) AS cumulative_customer_cnt\nFROM import_sms_user_customer\nGROUP BY 1\n),\n\nautomations_in_the_last_30_days AS (\nSELECT\n sms_user_id,\n COUNT(DISTINCT automation_id) AS active_automation_cnt_last_30d\nFROM import_sms_automation_message_dates\nWHERE DATEDIFF(CURRENT_DATE, message_date) BETWEEN 1 AND 30\nGROUP BY 1\n),\n\ncampaigns_in_the_last_30_days AS (\nSELECT\n sms_user_id,\n COUNT(DISTINCT campaign_id) AS cumulative_active_campaign_cnt,\n COUNT(DISTINCT IF(DATEDIFF(CURRENT_DATE, message_date) BETWEEN 1 AND 30, campaign_id, NULL)) AS active_campaign_cnt_last_30d\nFROM import_sms_campaign_message_dates\nGROUP BY 1\n),\n\nflows_in_the_last_30_days AS (\nSELECT\n sms_user_id,\n COUNT(DISTINCT flow_id) AS active_flow_cnt_last_30d\nFROM import_sms_flow_message_dates\nWHERE DATEDIFF(CURRENT_DATE, message_date) BETWEEN 1 AND 30\nGROUP BY 1\n),\n\nmeassage_and_usage_metrics AS (\nSELECT\n sms_user_id,\n CAST(SUM(usage_sum) AS DECIMAL(24,4))AS cumulative_usage_sum,\n SUM(message_cnt) AS cumulative_meassage_cnt,\n CAST(SUM(IF(DATEDIFF(CURRENT_DATE, date) BETWEEN 1 AND 30, usage_sum, 0)) AS DECIMAL(24,4)) AS usage_sum_last_30d,\n SUM(IF(DATEDIFF(CURRENT_DATE, date) BETWEEN 1 AND 30, message_cnt, 0)) AS meassage_cnt_last_30d,\n CAST(SUM(IF(date BETWEEN TRUNC(ADD_MONTHS(DATE_SUB(CURRENT_DATE,1),-1),'MONTH') AND ADD_MONTHS(DATE_SUB(CURRENT_DATE,1),-1),usage_sum,0)) AS DECIMAL(24,4)) AS usage_sum_last_mtd\nFROM import_sms_user_metrics_daily\nGROUP BY 1\n),\n\nroi_in_the_last_30_days AS (\nSELECT\n sms_user_id,\n SUM(revenue_in_usd_sum) AS roi_revenue_sum_last_30d,\n SUM(roi_spent_in_usd_sum) AS roi_spent_sum_last_30d\nFROM import_sms_store_metrics_daily\nWHERE DATEDIFF(CURRENT_DATE, date) BETWEEN 1 AND 30\nGROUP BY 1\n),\n\nmonthly_metrics AS (\nSELECT\n sms_user_id,\n CAST(AVG(IF(TRUNC(CURRENT_DATE,'MONTH') > month, active_automation_cnt + active_flow_cnt, NULL)) AS DECIMAL(14,4)) AS active_flow_and_automation_cnt_avg_last_3m,\n CAST(AVG(IF(TRUNC(CURRENT_DATE,'MONTH') > month, active_campaign_cnt, NULL)) AS DECIMAL(14,4)) AS active_campaign_cnt_avg_last_3m,\n CAST(AVG(IF(TRUNC(CURRENT_DATE,'MONTH') > month, message_cnt, NULL)) AS DECIMAL(14,4)) AS meassage_cnt_avg_last_3m,\n CAST(AVG(IF(TRUNC(CURRENT_DATE,'MONTH') > month, usage_sum, NULL)) AS DECIMAL(14,4)) AS usage_avg_last_3m,\n SUM(IF(TRUNC(CURRENT_DATE,'MONTH') > month, revenue_in_usd_sum, 0)) AS roi_revenue_sum_last_3m,\n SUM(IF(TRUNC(CURRENT_DATE,'MONTH') > month, roi_spent_in_usd_sum, 0)) AS roi_spent_sum_last_3m,\n CAST(SUM(IF(TRUNC(CURRENT_DATE,'MONTH') = month, usage_sum, 0)) AS DECIMAL(24,4)) AS usage_sum_mtd\nFROM import_sms_store_metrics_monthly\nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),month) BETWEEN 0 AND 3\nGROUP BY 1\n),\n\norders_in_the_last_30_days AS (\nSELECT\n app_key,\n SUM(orders_cnt) AS order_cnt_last_30d\nFROM import_platform_store_metrics_daily\nWHERE DATEDIFF(CURRENT_DATE, date) BETWEEN 1 AND 30\nGROUP BY 1\n),\n\nmonthly_orders_metrics AS (\nSELECT\n store.app_key,\n CAST(SUM(IF(MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),metrics.month) BETWEEN 1 AND 3, metrics.orders_cnt, 0))/3 AS DECIMAL(10,2)) AS order_avg_last_3m,\n CAST(SUM(IF(MONTHS_BETWEEN(TRUNC(store.created_date,'MONTH'),metrics.month) BETWEEN 1 AND 3, metrics.orders_cnt, 0))/3 AS DECIMAL(10,2)) AS order_avg_last_3m_at_creation_date,\n CAST(SUM(IF(MONTHS_BETWEEN(TRUNC(store.usage_first_date,'MONTH'),metrics.month) BETWEEN 1 AND 3, metrics.orders_cnt, 0))/3 AS DECIMAL(10,2)) AS order_avg_last_3m_at_usage_first_date,\n CAST(SUM(IF(MONTHS_BETWEEN(TRUNC(store.sms_first_opportunity_start_date,'MONTH'),metrics.month) BETWEEN 1 AND 3, metrics.orders_cnt, 0))/3 AS DECIMAL(10,2)) AS order_avg_last_3m_at_first_opportunity_start_date\nFROM import_platform_store_metrics_monthly AS metrics\nINNER JOIN sms_store_enrichment AS store\n ON metrics.app_key = store.app_key\nGROUP BY 1\n),\n\nfirst_high_touch_plan_after_low_touch_indicator AS (\nSELECT\n store.app_key,\n store.organization_key,\n store.sms_user_id,\n plan.created_date,\n IF(plan.is_first_ht_plan = 1 AND plan.is_previous_lt_plan = 1,1,0) AS is_first_ht_plan_after_lt,\n plan.is_previous_free_plan,\n IF(DATEDIFF(plan.created_date,store.created_date) > 30,1,0) AS is_plan_created_more_than_30d_after_store_creation\nFROM import_sms_store AS store\nINNER JOIN import_sms_user_plan_over_time AS plan\n ON store.sms_user_id = plan.sms_user_id\n),\n\nfree_store_validation_indicator AS (\nSELECT\n app_key,\n organization_key,\n sms_user_id,\n created_date,\n is_first_ht_plan_after_lt,\n is_previous_free_plan,\n IF(is_previous_free_plan = 1, is_plan_created_more_than_30d_after_store_creation, 1) AS is_valid_free_store\nFROM first_high_touch_plan_after_low_touch_indicator\n),\n\norganization_with_low_touch_to_high_touch AS (\nSELECT\n app_key,\n sms_user_id,\n created_date,\n is_first_ht_plan_after_lt,\n is_previous_free_plan,\n is_valid_free_store,\n MAX(IF(is_valid_free_store = 1 \n AND is_first_ht_plan_after_lt = 1\n AND is_previous_free_plan = 0,1,0)) OVER (PARTITION BY organization_key) AS is_organization_lt_to_ht\nFROM free_store_validation_indicator\n),\n\npotential_upsell_stores AS (\nSELECT\n app_key,\n sms_user_id,\n created_date,\n is_previous_free_plan,\n is_organization_lt_to_ht\nFROM organization_with_low_touch_to_high_touch\nWHERE is_first_ht_plan_after_lt = 1\nAND is_valid_free_store = 1\n),\n\nusage_30_days_before_upsell AS (\nSELECT\n upsell.app_key,\n upsell.sms_user_id,\n upsell.created_date,\n upsell.is_previous_free_plan,\n upsell.is_organization_lt_to_ht,\n NVL(SUM(IF(DATEDIFF(upsell.created_date, date) BETWEEN 1 AND 30, metrics.usage_sum, 0)),0) AS usage_30d_before_upsell\nFROM potential_upsell_stores AS upsell\nLEFT JOIN import_sms_user_metrics_daily AS metrics\n ON metrics.usage_sum > 0\n AND upsell.sms_user_id = metrics.sms_user_id\nGROUP BY 1,2,3,4,5\n),\n\ndate_of_upsell AS (\nSELECT\n app_key,\n IF(is_previous_free_plan = 0\n OR usage_30d_before_upsell >= 50\n OR is_organization_lt_to_ht = 1,created_date,NULL) AS upsell_date\nFROM usage_30_days_before_upsell\n),\n\nsms_store_metrics_res AS (\nSELECT \n store.app_key,\n store.sms_user_id,\n store.organization_id,\n store.organization_key,\n store.sf_account_id,\n store.first_opportunity_id,\n store.country_name,\n store.region_name,\n store.domain,\n store.name,\n store.platform_name,\n store.plan_id,\n store.plan_name,\n store.plan_type_group,\n store.plan_type_ht_lt,\n store.plan_period,\n NVL(current_flows.current_enabled_flow_cnt,0) AS current_enabled_flow_cnt,\n NVL(current_automations.current_enabled_automation_cnt,0) AS current_enabled_automation_cnt,\n NVL(customers.cumulative_customer_cnt,0) AS cumulative_customer_cnt,\n NVL(automations_30d.active_automation_cnt_last_30d,0) AS active_automation_cnt_last_30d,\n NVL(campaigns_30d.cumulative_active_campaign_cnt,0) AS cumulative_active_campaign_cnt,\n NVL(campaigns_30d.active_campaign_cnt_last_30d,0) AS active_campaign_cnt_last_30d,\n NVL(flows_30d.active_flow_cnt_last_30d,0) AS active_flow_cnt_last_30d,\n NVL(usage.cumulative_usage_sum,0) AS cumulative_usage_sum,\n NVL(usage.cumulative_meassage_cnt,0) AS cumulative_meassage_cnt,\n NVL(usage.usage_sum_last_30d,0) AS usage_sum_last_30d,\n NVL(usage.meassage_cnt_last_30d,0) AS meassage_cnt_last_30d,\n CAST(NVL(roi_30d.roi_revenue_sum_last_30d,0) AS DECIMAL(14,4)) AS roi_revenue_sum_last_30d,\n CAST(NVL(roi_30d.roi_spent_sum_last_30d,0) AS DECIMAL(14,4)) AS roi_spent_sum_last_30d,\n CAST(IF(NVL(roi_30d.roi_spent_sum_last_30d,0) = 0,0,(NVL(roi_30d.roi_revenue_sum_last_30d,0)/roi_30d.roi_spent_sum_last_30d - 1) * 100) AS DECIMAL(14,4)) AS roi_last_30d,\n CAST(NVL(monthly_metrics.roi_revenue_sum_last_3m,0) AS DECIMAL(14,4)) AS roi_revenue_sum_last_3m,\n CAST(NVL(monthly_metrics.roi_spent_sum_last_3m,0) AS DECIMAL(14,4)) AS roi_spent_sum_last_3m,\n CAST(IF(NVL(monthly_metrics.roi_spent_sum_last_3m,0) = 0,0,(NVL(monthly_metrics.roi_revenue_sum_last_3m,0)/monthly_metrics.roi_spent_sum_last_3m - 1) * 100) AS DECIMAL(14,4)) AS roi_last_3m,\n NVL(monthly_metrics.active_flow_and_automation_cnt_avg_last_3m,0) AS active_flow_and_automation_cnt_avg_last_3m,\n NVL(monthly_metrics.active_campaign_cnt_avg_last_3m,0) AS active_campaign_cnt_avg_last_3m,\n NVL(monthly_metrics.meassage_cnt_avg_last_3m,0) AS meassage_cnt_avg_last_3m,\n NVL(monthly_metrics.usage_avg_last_3m,0) AS usage_avg_last_3m,\n NVL(monthly_metrics.usage_sum_mtd,0) AS usage_sum_mtd,\n NVL(usage.usage_sum_last_mtd,0) AS usage_sum_last_mtd,\n NVL(orders_30d.order_cnt_last_30d,0) AS order_cnt_last_30d,\n monthly_order.order_avg_last_3m,\n monthly_order.order_avg_last_3m_at_creation_date,\n monthly_order.order_avg_last_3m_at_usage_first_date,\n monthly_order.order_avg_last_3m_at_first_opportunity_start_date,\n SMALLINT(IF(install.last_uninstall_at > install.last_install_at,1,0)) AS is_uninstall,\n SMALLINT(IF(reopened.last_close_at > reopened.last_reopened_at,1,0)) AS is_closed,\n store.is_usage,\n store.is_usage_in_last_30d,\n SMALLINT(IF(store.3_usd_activation_date IS NOT NULL,1,0)) AS is_3_usd_activated,\n store.is_popup_enabled,\n store.created_at,\n store.created_date,\n DATE(install.last_install_at) AS last_install_date,\n DATE(install.last_uninstall_at) AS last_uninstall_date,\n DATE(reopened.last_reopened_at) AS last_reopened_date,\n DATE(reopened.last_close_at) AS last_close_date,\n store.sms_first_opportunity_start_date,\n store.sms_first_opportunity_close_date,\n store.usage_first_date,\n store.usage_last_date,\n store.automation_usage_first_date,\n store.automation_usage_last_date,\n store.campaign_usage_first_date,\n store.campaign_usage_last_date,\n store.flow_usage_first_date,\n store.flow_usage_last_date,\n store.sms_usage_first_date,\n store.sms_usage_last_date,\n store.mms_usage_first_date,\n store.mms_usage_last_date,\n store.3_usd_activation_date,\n upsell.upsell_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_store_enrichment AS store\nLEFT JOIN installation_dates AS install\n ON store.sms_user_id = install.sms_user_id\nLEFT JOIN reopened_dates AS reopened\n ON store.sms_user_id = reopened.sms_user_id\nLEFT JOIN current_flows\n ON store.sms_user_id = current_flows.sms_user_id\nLEFT JOIN current_automations\n ON store.sms_user_id = current_automations.sms_user_id\nLEFT JOIN customers\n ON store.sms_user_id = customers.sms_user_id\nLEFT JOIN automations_in_the_last_30_days AS automations_30d\n ON store.sms_user_id = automations_30d.sms_user_id\nLEFT JOIN campaigns_in_the_last_30_days AS campaigns_30d\n ON store.sms_user_id = campaigns_30d.sms_user_id\nLEFT JOIN flows_in_the_last_30_days AS flows_30d\n ON store.sms_user_id = flows_30d.sms_user_id\nLEFT JOIN meassage_and_usage_metrics AS usage\n ON store.sms_user_id = usage.sms_user_id\nLEFT JOIN roi_in_the_last_30_days AS roi_30d\n ON store.sms_user_id = roi_30d.sms_user_id\nLEFT JOIN monthly_metrics\n ON store.sms_user_id = monthly_metrics.sms_user_id\nLEFT JOIN orders_in_the_last_30_days AS orders_30d\n ON store.app_key = orders_30d.app_key\nLEFT JOIN monthly_orders_metrics AS monthly_order\n ON store.app_key = monthly_order.app_key\nLEFT JOIN date_of_upsell AS upsell\n ON store.app_key = upsell.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM sms_store_metrics_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__store_metrics_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__store_metrics_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.sql", "unique_id": "model.yoda.analytics___sms__store_metrics_daily", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics_daily", "analytics___sms__store_metrics_daily"], "alias": "analytics___sms__store_metrics_daily", "checksum": {"name": "sha256", "checksum": "074b0a536e14f81ce665128c91e07808380577a58fdceffef9cc4cc98debe099"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Daily metrics table of sms stores population.\nThe table contains data for the current year and the two previous years.\nGranularity: date | app_key", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier. There are a few invalid cases resulting from a fault in the data source where there are several users for the same store. In such a case, only one user will be retrieved according to the following order of priorities: balance_in_usd DESC & is_onboarding_completed DESC &is_chat_enabled DESC &is_collect_checkout_subscribers DESC &is_ban_exclude DESC &industry_name DESC &sms_user_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type": {"name": "plan_type", "description": "plan type: self_service / high_touch", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "plan customer type: HT/LT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_cnt": {"name": "orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "avg_orders_cnt_l3m": {"name": "avg_orders_cnt_l3m", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriber_cnt": {"name": "subscriber_cnt", "description": "Total subscribers count per user per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "esp_subscriber_cnt": {"name": "esp_subscriber_cnt", "description": "Subscribers that were added via connection to an email provider (like Klaviyo)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "non_esp_subscriber_cnt": {"name": "non_esp_subscriber_cnt", "description": "Subscribers that were NOT added via connection to an email provider (like Klaviyo)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imported_subscriber_cnt": {"name": "imported_subscriber_cnt", "description": "Subscribers that were imported", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_subscriber_cnt": {"name": "new_subscriber_cnt", "description": "New daily subscribers count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unsubscriber_cnt": {"name": "unsubscriber_cnt", "description": "daily unsubscribers count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "credit_purchase_sum": {"name": "credit_purchase_sum", "description": "user's credit purchase from analytics___sms_stg__purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_usage_sum": {"name": "sms_usage_sum", "description": "sum price_billed_in_usd of sms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "mms_usage_sum": {"name": "mms_usage_sum", "description": "total sum price_billed_in_usd of mms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "usage_sum": {"name": "usage_sum", "description": "total sum price_billed_in_usd of messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,4)"}, "sms_message_cnt": {"name": "sms_message_cnt", "description": "amount of sms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_message_cnt_by_carrier": {"name": "sms_message_cnt_by_carrier", "description": "amount of sms message parts sent by the carrier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mms_message_cnt": {"name": "mms_message_cnt", "description": "amount of mms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mms_message_cnt_by_carrier": {"name": "mms_message_cnt_by_carrier", "description": "amount of mms message parts sent by the carrier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_cnt": {"name": "message_cnt", "description": "total amount of messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_cnt_by_carrier": {"name": "message_cnt_by_carrier", "description": "total amount of message parts sent by the carrier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automation_usage_sum": {"name": "automation_usage_sum", "description": "sum price_billed_in_usd of messages sent from automations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "campaign_usage_sum": {"name": "campaign_usage_sum", "description": "sum price_billed_in_usd of messages sent from campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "flow_usage_sum": {"name": "flow_usage_sum", "description": "sum price_billed_in_usd of messages sent from flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "other_usage_sum": {"name": "other_usage_sum", "description": "sum price_billed_in_usd of messages sent from others", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "automation_message_cnt": {"name": "automation_message_cnt", "description": "amount of messages sent from automations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automation_message_cnt_by_carrier": {"name": "automation_message_cnt_by_carrier", "description": "amount of message parts sent by the carrier from automations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_message_cnt": {"name": "campaign_message_cnt", "description": "amount of messages sent from campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_message_cnt_by_carrier": {"name": "campaign_message_cnt_by_carrier", "description": "amount of message parts sent by the carrier from campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_message_cnt": {"name": "flow_message_cnt", "description": "amount of messages sent from flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_message_cnt_by_carrier": {"name": "flow_message_cnt_by_carrier", "description": "amount of message parts sent by the carrier from flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "other_message_cnt": {"name": "other_message_cnt", "description": "amount of messages sent from other sources", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "other_message_cnt_by_carrier": {"name": "other_message_cnt_by_carrier", "description": "amount of message parts sent by the carrier from other", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_automation_cnt": {"name": "active_automation_cnt", "description": "count distinct automation_id that had 1 or more messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_campaign_cnt": {"name": "active_campaign_cnt", "description": "count distinct campaign_id that had 1 or more messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_flow_cnt": {"name": "active_flow_cnt", "description": "count distinct flow_id that had 1 or more messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "revenue_in_usd_sum": {"name": "revenue_in_usd_sum", "description": "sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "roi_spent_in_usd_sum": {"name": "roi_spent_in_usd_sum", "description": "sum(total_spent_in_usd) from analytics___sms_stg__analytics_data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "automation_revenue_sum": {"name": "automation_revenue_sum", "description": "if is_type_automation = 1 then sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "campaign_revenue_sum": {"name": "campaign_revenue_sum", "description": "if is_type_campaign = 1 then sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "flow_revenue_sum": {"name": "flow_revenue_sum", "description": "if is_type_flow = 1 then sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "customer_cnt": {"name": "customer_cnt", "description": "count all costumers the store have", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_customer_cnt": {"name": "new_customer_cnt", "description": "count new customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_pop_up_enabled": {"name": "is_pop_up_enabled", "description": "indicator = 1 IF form_type = 'popup' AND form_status = 'published'\nindicator IS NULL for dates before snapshot history (date < 23.10.2023)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active": {"name": "is_active", "description": "active = is usage_sum per day > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_installed": {"name": "is_installed", "description": "Based on store_installation_over_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_store_open": {"name": "is_store_open", "description": "Based on store_open_over_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "table", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "partition_by": ["date"]}, "created_at": 1700082658.4412448, "relation_name": "dev_dkruh1.analytics___sms__store_metrics_daily", "raw_code": "{{\n config(materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partition_by=['date']) \n}}\n\n-- Import --\n\nWITH import_sms_user_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___sms__user_metrics_daily') }}\nWHERE date > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\nimport_platform_store_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__store_metrics_monthly') }}\nWHERE month > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\nimport_store_order_daily AS (\nSELECT * FROM {{ ref('analytics___platform__store_order_daily') }}\nWHERE order_date > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\nimport_sms_analytics_data AS (\nSELECT * FROM {{ ref('analytics___sms_stg__analytics_data') }}\nWHERE aggregated_date > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\nimport_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\n-- logic --\n\nroi_revenue AS (\nSELECT\n aggregated_date AS roi_date,\n app_key,\n SUM(total_revenue_in_usd) AS revenue_in_usd_sum,\n SUM(total_spent_in_usd) AS spent_in_usd_sum,\n SUM(IF(is_type_automation = 1,total_revenue_in_usd,0)) AS automation_revenue_sum,\n SUM(IF(is_type_campaign = 1,total_revenue_in_usd,0)) AS campaign_revenue_sum,\n SUM(IF(is_type_flow = 1,total_revenue_in_usd,0)) AS flow_revenue_sum\nFROM import_sms_analytics_data\nWHERE is_channel_sms = 1\nAND aggregated_date IS NOT NULL\nGROUP BY 1,2\n),\n\nstore_daily AS (\nSELECT\n TRUNC(user_daily.date,'MONTH') AS month,\n user_daily.date,\n sms_store.app_key,\n user_daily.sms_user_id,\n sms_store.organization_id,\n sms_store.organization_key,\n user_daily.plan_name,\n user_daily.plan_type,\n user_daily.plan_type_ht_lt,\n user_daily.subscriber_cnt,\n user_daily.esp_subscriber_cnt,\n user_daily.non_esp_subscriber_cnt,\n user_daily.imported_subscriber_cnt,\n user_daily.new_subscriber_cnt,\n user_daily.unsubscriber_cnt,\n user_daily.credit_purchase_sum,\n user_daily.sms_usage_sum,\n user_daily.mms_usage_sum,\n user_daily.usage_sum,\n user_daily.sms_message_cnt,\n user_daily.sms_message_cnt_by_carrier,\n user_daily.mms_message_cnt,\n user_daily.mms_message_cnt_by_carrier,\n user_daily.message_cnt,\n user_daily.message_cnt_by_carrier,\n user_daily.automation_usage_sum,\n user_daily.campaign_usage_sum,\n user_daily.flow_usage_sum,\n user_daily.other_usage_sum,\n user_daily.automation_message_cnt,\n user_daily.automation_message_cnt_by_carrier,\n user_daily.campaign_message_cnt,\n user_daily.campaign_message_cnt_by_carrier,\n user_daily.flow_message_cnt,\n user_daily.flow_message_cnt_by_carrier,\n user_daily.other_message_cnt,\n user_daily.other_message_cnt_by_carrier,\n user_daily.active_automation_cnt,\n user_daily.active_campaign_cnt,\n user_daily.active_flow_cnt,\n user_daily.customer_cnt,\n user_daily.new_customer_cnt,\n user_daily.is_pop_up_enabled,\n user_daily.is_active,\n user_daily.is_installed,\n user_daily.is_user_open AS is_store_open\nFROM import_sms_user_metrics_daily AS user_daily\nINNER JOIN import_sms_store AS sms_store\n ON user_daily.sms_user_id = sms_store.sms_user_id\n),\n\nstore_metrics_daily_res AS (\nSELECT\n store_daily.date,\n store_daily.app_key,\n store_daily.sms_user_id,\n store_daily.organization_id,\n store_daily.organization_key,\n store_daily.plan_name,\n store_daily.plan_type,\n store_daily.plan_type_ht_lt,\n NVL(order_daily.orders_cnt,0) AS orders_cnt,\n NVL(store_monthly.last_3m_orders_cnt_avg,0) AS avg_orders_cnt_l3m,\n store_daily.subscriber_cnt,\n store_daily.esp_subscriber_cnt,\n store_daily.non_esp_subscriber_cnt,\n store_daily.imported_subscriber_cnt,\n store_daily.new_subscriber_cnt,\n store_daily.unsubscriber_cnt,\n store_daily.credit_purchase_sum,\n store_daily.sms_usage_sum,\n store_daily.mms_usage_sum,\n store_daily.usage_sum,\n store_daily.sms_message_cnt,\n store_daily.sms_message_cnt_by_carrier,\n store_daily.mms_message_cnt,\n store_daily.mms_message_cnt_by_carrier,\n store_daily.message_cnt,\n store_daily.message_cnt_by_carrier,\n store_daily.automation_usage_sum,\n store_daily.campaign_usage_sum,\n store_daily.flow_usage_sum,\n store_daily.other_usage_sum,\n store_daily.automation_message_cnt,\n store_daily.automation_message_cnt_by_carrier,\n store_daily.campaign_message_cnt,\n store_daily.campaign_message_cnt_by_carrier,\n store_daily.flow_message_cnt,\n store_daily.flow_message_cnt_by_carrier,\n store_daily.other_message_cnt,\n store_daily.other_message_cnt_by_carrier,\n store_daily.active_automation_cnt,\n store_daily.active_campaign_cnt,\n store_daily.active_flow_cnt,\n NVL(roi_revenue.revenue_in_usd_sum,0) AS revenue_in_usd_sum,\n NVL(roi_revenue.spent_in_usd_sum,0) AS roi_spent_in_usd_sum,\n NVL(roi_revenue.automation_revenue_sum,0) AS automation_revenue_sum,\n NVL(roi_revenue.campaign_revenue_sum,0) AS campaign_revenue_sum,\n NVL(roi_revenue.flow_revenue_sum,0) AS flow_revenue_sum,\n store_daily.customer_cnt,\n store_daily.new_customer_cnt,\n store_daily.is_pop_up_enabled,\n store_daily.is_active,\n store_daily.is_installed,\n store_daily.is_store_open,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_daily\nLEFT JOIN import_store_order_daily AS order_daily\n ON store_daily.date = order_daily.order_date\n AND store_daily.app_key = order_daily.app_key\nLEFT JOIN import_platform_store_metrics_monthly AS store_monthly\n ON store_daily.month = store_monthly.month\n AND store_daily.app_key = store_monthly.app_key\nLEFT JOIN roi_revenue\n ON store_daily.date = roi_revenue.roi_date\n AND store_daily.app_key = roi_revenue.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM store_metrics_daily_res", "language": "sql", "refs": [{"name": "analytics___sms__user_metrics_daily", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__store_order_daily", "package": null, "version": null}, {"name": "analytics___sms_stg__analytics_data", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___sms_stg__analytics_data", "model.yoda.analytics___sms__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_user_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_metrics_daily\nWHERE date > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\nimport_platform_store_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_metrics_monthly\nWHERE month > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\nimport_store_order_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_order_daily\nWHERE order_date > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\nimport_sms_analytics_data AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__analytics_data\nWHERE aggregated_date > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\nimport_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\n-- logic --\n\nroi_revenue AS (\nSELECT\n aggregated_date AS roi_date,\n app_key,\n SUM(total_revenue_in_usd) AS revenue_in_usd_sum,\n SUM(total_spent_in_usd) AS spent_in_usd_sum,\n SUM(IF(is_type_automation = 1,total_revenue_in_usd,0)) AS automation_revenue_sum,\n SUM(IF(is_type_campaign = 1,total_revenue_in_usd,0)) AS campaign_revenue_sum,\n SUM(IF(is_type_flow = 1,total_revenue_in_usd,0)) AS flow_revenue_sum\nFROM import_sms_analytics_data\nWHERE is_channel_sms = 1\nAND aggregated_date IS NOT NULL\nGROUP BY 1,2\n),\n\nstore_daily AS (\nSELECT\n TRUNC(user_daily.date,'MONTH') AS month,\n user_daily.date,\n sms_store.app_key,\n user_daily.sms_user_id,\n sms_store.organization_id,\n sms_store.organization_key,\n user_daily.plan_name,\n user_daily.plan_type,\n user_daily.plan_type_ht_lt,\n user_daily.subscriber_cnt,\n user_daily.esp_subscriber_cnt,\n user_daily.non_esp_subscriber_cnt,\n user_daily.imported_subscriber_cnt,\n user_daily.new_subscriber_cnt,\n user_daily.unsubscriber_cnt,\n user_daily.credit_purchase_sum,\n user_daily.sms_usage_sum,\n user_daily.mms_usage_sum,\n user_daily.usage_sum,\n user_daily.sms_message_cnt,\n user_daily.sms_message_cnt_by_carrier,\n user_daily.mms_message_cnt,\n user_daily.mms_message_cnt_by_carrier,\n user_daily.message_cnt,\n user_daily.message_cnt_by_carrier,\n user_daily.automation_usage_sum,\n user_daily.campaign_usage_sum,\n user_daily.flow_usage_sum,\n user_daily.other_usage_sum,\n user_daily.automation_message_cnt,\n user_daily.automation_message_cnt_by_carrier,\n user_daily.campaign_message_cnt,\n user_daily.campaign_message_cnt_by_carrier,\n user_daily.flow_message_cnt,\n user_daily.flow_message_cnt_by_carrier,\n user_daily.other_message_cnt,\n user_daily.other_message_cnt_by_carrier,\n user_daily.active_automation_cnt,\n user_daily.active_campaign_cnt,\n user_daily.active_flow_cnt,\n user_daily.customer_cnt,\n user_daily.new_customer_cnt,\n user_daily.is_pop_up_enabled,\n user_daily.is_active,\n user_daily.is_installed,\n user_daily.is_user_open AS is_store_open\nFROM import_sms_user_metrics_daily AS user_daily\nINNER JOIN import_sms_store AS sms_store\n ON user_daily.sms_user_id = sms_store.sms_user_id\n),\n\nstore_metrics_daily_res AS (\nSELECT\n store_daily.date,\n store_daily.app_key,\n store_daily.sms_user_id,\n store_daily.organization_id,\n store_daily.organization_key,\n store_daily.plan_name,\n store_daily.plan_type,\n store_daily.plan_type_ht_lt,\n NVL(order_daily.orders_cnt,0) AS orders_cnt,\n NVL(store_monthly.last_3m_orders_cnt_avg,0) AS avg_orders_cnt_l3m,\n store_daily.subscriber_cnt,\n store_daily.esp_subscriber_cnt,\n store_daily.non_esp_subscriber_cnt,\n store_daily.imported_subscriber_cnt,\n store_daily.new_subscriber_cnt,\n store_daily.unsubscriber_cnt,\n store_daily.credit_purchase_sum,\n store_daily.sms_usage_sum,\n store_daily.mms_usage_sum,\n store_daily.usage_sum,\n store_daily.sms_message_cnt,\n store_daily.sms_message_cnt_by_carrier,\n store_daily.mms_message_cnt,\n store_daily.mms_message_cnt_by_carrier,\n store_daily.message_cnt,\n store_daily.message_cnt_by_carrier,\n store_daily.automation_usage_sum,\n store_daily.campaign_usage_sum,\n store_daily.flow_usage_sum,\n store_daily.other_usage_sum,\n store_daily.automation_message_cnt,\n store_daily.automation_message_cnt_by_carrier,\n store_daily.campaign_message_cnt,\n store_daily.campaign_message_cnt_by_carrier,\n store_daily.flow_message_cnt,\n store_daily.flow_message_cnt_by_carrier,\n store_daily.other_message_cnt,\n store_daily.other_message_cnt_by_carrier,\n store_daily.active_automation_cnt,\n store_daily.active_campaign_cnt,\n store_daily.active_flow_cnt,\n NVL(roi_revenue.revenue_in_usd_sum,0) AS revenue_in_usd_sum,\n NVL(roi_revenue.spent_in_usd_sum,0) AS roi_spent_in_usd_sum,\n NVL(roi_revenue.automation_revenue_sum,0) AS automation_revenue_sum,\n NVL(roi_revenue.campaign_revenue_sum,0) AS campaign_revenue_sum,\n NVL(roi_revenue.flow_revenue_sum,0) AS flow_revenue_sum,\n store_daily.customer_cnt,\n store_daily.new_customer_cnt,\n store_daily.is_pop_up_enabled,\n store_daily.is_active,\n store_daily.is_installed,\n store_daily.is_store_open,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_daily\nLEFT JOIN import_store_order_daily AS order_daily\n ON store_daily.date = order_daily.order_date\n AND store_daily.app_key = order_daily.app_key\nLEFT JOIN import_platform_store_metrics_monthly AS store_monthly\n ON store_daily.month = store_monthly.month\n AND store_daily.app_key = store_monthly.app_key\nLEFT JOIN roi_revenue\n ON store_daily.date = roi_revenue.roi_date\n AND store_daily.app_key = roi_revenue.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM store_metrics_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__store_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__store_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.sql", "unique_id": "model.yoda.analytics___sms__store_metrics_monthly", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics_monthly", "analytics___sms__store_metrics_monthly"], "alias": "analytics___sms__store_metrics_monthly", "checksum": {"name": "sha256", "checksum": "e827bbf250ee45097e80853ee9742b53b74e34c8e2e32330bcd14051b06d1e6a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["month"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Monthly metrics table of sms stores population.\nThe table contains data for the current year and the two previous years.\nGranularity: month | app_key", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier. There are a few invalid cases resulting from a fault in the data source where there are several users for the same store. In such a case, only one user will be retrieved according to the following order of priorities: balance_in_usd DESC & is_onboarding_completed DESC &is_chat_enabled DESC &is_collect_checkout_subscribers DESC &is_ban_exclude DESC &industry_name DESC &sms_user_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name": {"name": "closing_plan_name", "description": "plan at end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_type": {"name": "closing_plan_type", "description": "plan type at end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_type_ht_lt": {"name": "closing_plan_type_ht_lt", "description": "plan type (HT|LT) at end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriber_cnt": {"name": "subscriber_cnt", "description": "Total subscribers count per user per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "esp_subscriber_cnt": {"name": "esp_subscriber_cnt", "description": "Subscribers that were added via connection to an email provider (like Klaviyo)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "non_esp_subscriber_cnt": {"name": "non_esp_subscriber_cnt", "description": "Subscribers that were NOT added via connection to an email provider (like Klaviyo)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imported_subscriber_cnt": {"name": "imported_subscriber_cnt", "description": "Subscribers that were imported", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_m_subscriber_cnt": {"name": "last_m_subscriber_cnt", "description": "end of last month subscriber_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriber_monthly_growth_pct": {"name": "subscriber_monthly_growth_pct", "description": "growth in subscribers from last month = subscriber_cnt/last_m_subscriber_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "campaign_subscriber_coverage_avg": {"name": "campaign_subscriber_coverage_avg", "description": "average subscriber number per campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "subscriber_to_order_ratio": {"name": "subscriber_to_order_ratio", "description": "amount of subscriber per order = subscriber_cnt/orders_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credit_purchase_sum": {"name": "credit_purchase_sum", "description": "user's credit purchase from analytics___sms_stg__purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_usage_sum": {"name": "sms_usage_sum", "description": "sum price_billed_in_usd of sms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(34,4)"}, "mms_usage_sum": {"name": "mms_usage_sum", "description": "total sum price_billed_in_usd of mms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(34,4)"}, "usage_sum": {"name": "usage_sum", "description": "total sum price_billed_in_usd of messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(32,4)"}, "sms_message_cnt": {"name": "sms_message_cnt", "description": "amount of sms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_message_cnt_by_carrier": {"name": "sms_message_cnt_by_carrier", "description": "amount of sms message parts sent by the carrier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mms_message_cnt": {"name": "mms_message_cnt", "description": "amount of mms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mms_message_cnt_by_carrier": {"name": "mms_message_cnt_by_carrier", "description": "amount of mms message parts sent by the carrier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_cnt": {"name": "message_cnt", "description": "total amount of messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_cnt_by_carrier": {"name": "message_cnt_by_carrier", "description": "total amount of message parts sent by the carrier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automation_usage_sum": {"name": "automation_usage_sum", "description": "sum price_billed_in_usd of messages sent from automations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(34,4)"}, "campaign_usage_sum": {"name": "campaign_usage_sum", "description": "sum price_billed_in_usd of messages sent from campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(34,4)"}, "flow_usage_sum": {"name": "flow_usage_sum", "description": "sum price_billed_in_usd of messages sent from flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(34,4)"}, "other_usage_sum": {"name": "other_usage_sum", "description": "sum price_billed_in_usd of messages sent from others", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(34,4)"}, "automation_message_cnt": {"name": "automation_message_cnt", "description": "amount of messages sent from automations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automation_message_cnt_by_carrier": {"name": "automation_message_cnt_by_carrier", "description": "amount of message parts sent by the carrier from automations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_message_cnt": {"name": "campaign_message_cnt", "description": "amount of messages sent from campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_message_cnt_by_carrier": {"name": "campaign_message_cnt_by_carrier", "description": "amount of message parts sent by the carrier from campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_message_cnt": {"name": "flow_message_cnt", "description": "amount of messages sent from flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_message_cnt_by_carrier": {"name": "flow_message_cnt_by_carrier", "description": "amount of message parts sent by the carrier from flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "other_message_cnt": {"name": "other_message_cnt", "description": "amount of messages sent from other sources", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "other_message_cnt_by_carrier": {"name": "other_message_cnt_by_carrier", "description": "amount of message parts sent by the carrier from other", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_automation_cnt": {"name": "active_automation_cnt", "description": "count distinct automation_id that had 1 or more messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_campaign_cnt": {"name": "active_campaign_cnt", "description": "count distinct campaign_id that had 1 or more messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_flow_cnt": {"name": "active_flow_cnt", "description": "count distinct flow_id that had 1 or more messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_cnt": {"name": "orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "avg_orders_cnt_l3m": {"name": "avg_orders_cnt_l3m", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "roi_spent_in_usd_sum": {"name": "roi_spent_in_usd_sum", "description": "sum(total_spent_in_usd) from analytics___sms_stg__analytics_data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_in_usd_sum": {"name": "revenue_in_usd_sum", "description": "sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "roi_ratio": {"name": "roi_ratio", "description": "ROI = (Revenue - Spend) / Spend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "roi_spent_last_3_month_in_usd_sum": {"name": "roi_spent_last_3_month_in_usd_sum", "description": "Sum of store roi_spent_in_usd_sum over PRECEDING 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_last_3_month_in_usd_sum": {"name": "revenue_last_3_month_in_usd_sum", "description": "Sum of store revenue_in_usd_sum over PRECEDING 3 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "roi_last_3_month_ratio": {"name": "roi_last_3_month_ratio", "description": "ROI = (Revenue_last_3_month - Spend_last_3_month) / Spend_last_3_month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "usage_to_message_ratio": {"name": "usage_to_message_ratio", "description": "price (usage) per message = usage_sum/message_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(38,10)"}, "message_to_subscriber_ratio": {"name": "message_to_subscriber_ratio", "description": "amount of messages per subscriber = message_cnt/subscriber_cnt", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "automation_revenue_sum": {"name": "automation_revenue_sum", "description": "if is_type_automation = 1 then sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "campaign_revenue_sum": {"name": "campaign_revenue_sum", "description": "if is_type_campaign = 1 then sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "flow_revenue_sum": {"name": "flow_revenue_sum", "description": "if is_type_flow = 1 then sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_customer_cnt": {"name": "new_customer_cnt", "description": "count new customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_cnt": {"name": "customer_cnt", "description": "count all costumers the store have", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_installed": {"name": "is_installed", "description": "Based on store_installation_over_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_store_open": {"name": "is_store_open", "description": "Based on store_open_over_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active": {"name": "is_active", "description": "active = is usage_sum per day > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "table", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "partition_by": ["month"]}, "created_at": 1700082658.5245569, "relation_name": "dev_dkruh1.analytics___sms__store_metrics_monthly", "raw_code": "{{\n config(materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partition_by=['month']) \n}}\n\n-- Import --\n\nWITH import_sms_store_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___sms__store_metrics_daily') }}\nWHERE date > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\nimport_api_calls AS (\nSELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nAND created_date > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\n-- logic --\n\nmonths_end_calculation AS (\nSELECT\n TRUNC(date,'MONTH') AS month,\n sms_user_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n subscriber_cnt,\n esp_subscriber_cnt,\n non_esp_subscriber_cnt,\n imported_subscriber_cnt,\n avg_orders_cnt_l3m,\n CASE WHEN date = LAST_DAY(date) THEN 1\n WHEN TRUNC(date,'MONTH') = TRUNC(CURRENT_DATE,'MONTH') AND date = MAX(date) OVER () THEN 1\n ELSE 0 END AS is_end_of_month\nFROM import_sms_store_metrics_daily\n),\n\nmetrics_monthly_aggregation AS (\nSELECT\n TRUNC(daily.date,'MONTH') AS month,\n daily.app_key,\n daily.sms_user_id,\n daily.organization_id,\n daily.organization_key,\n SUM(daily.credit_purchase_sum) AS credit_purchase_sum,\n SUM(daily.sms_usage_sum) AS sms_usage_sum,\n SUM(daily.mms_usage_sum) AS mms_usage_sum,\n SUM(daily.usage_sum) AS usage_sum,\n SUM(daily.sms_message_cnt) AS sms_message_cnt,\n SUM(daily.sms_message_cnt_by_carrier) AS sms_message_cnt_by_carrier,\n SUM(daily.mms_message_cnt) AS mms_message_cnt,\n SUM(daily.mms_message_cnt_by_carrier) AS mms_message_cnt_by_carrier,\n SUM(daily.message_cnt) AS message_cnt,\n SUM(daily.message_cnt_by_carrier) AS message_cnt_by_carrier,\n SUM(daily.automation_usage_sum) AS automation_usage_sum,\n SUM(daily.campaign_usage_sum) AS campaign_usage_sum,\n SUM(daily.flow_usage_sum) AS flow_usage_sum,\n SUM(daily.other_usage_sum) AS other_usage_sum,\n SUM(daily.automation_message_cnt) AS automation_message_cnt,\n SUM(daily.automation_message_cnt_by_carrier) AS automation_message_cnt_by_carrier,\n SUM(daily.campaign_message_cnt) AS campaign_message_cnt,\n SUM(daily.campaign_message_cnt_by_carrier) AS campaign_message_cnt_by_carrier,\n SUM(daily.flow_message_cnt) AS flow_message_cnt,\n SUM(daily.flow_message_cnt_by_carrier) AS flow_message_cnt_by_carrier,\n SUM(daily.other_message_cnt) AS other_message_cnt,\n SUM(daily.other_message_cnt_by_carrier) AS other_message_cnt_by_carrier,\n SUM(daily.orders_cnt) AS orders_cnt,\n SUM(daily.roi_spent_in_usd_sum) AS roi_spent_in_usd_sum,\n SUM(daily.revenue_in_usd_sum) AS revenue_in_usd_sum,\n SUM(daily.automation_revenue_sum) AS automation_revenue_sum,\n SUM(daily.campaign_revenue_sum) AS campaign_revenue_sum,\n SUM(daily.flow_revenue_sum) AS flow_revenue_sum,\n SUM(daily.new_customer_cnt) AS new_customer_cnt,\n MAX(daily.customer_cnt) AS customer_cnt,\n MAX(daily.is_installed) AS is_installed,\n MAX(daily.is_store_open) AS is_store_open,\n MAX(daily.is_active) AS is_active\nFROM import_sms_store_metrics_daily AS daily\nGROUP BY 1,2,3,4,5\n),\n\nactive_sources_cnt AS (\nSELECT\n created_month,\n sms_user_id,\n COUNT(DISTINCT IF(message_source_type = 1, event_id, NULL)) AS active_automation_cnt,\n COUNT(DISTINCT IF(message_source_type = 2, campaign_id, NULL)) AS active_campaign_cnt,\n COUNT(DISTINCT IF(message_source_type = 3, flow_id, NULL)) AS active_flow_cnt\nFROM import_api_calls\nGROUP BY 1,2\n),\n\ncampaign_messages AS (\nSELECT\n sms_user_id,\n campaign_id,\n MIN(created_date) AS campaign_created_date,\n COUNT(*) AS campaign_message_cnt\nFROM import_api_calls\nWHERE message_source_type = 2\nGROUP BY 1,2\n),\n\ncampaign_coverage_ratio_monthly AS (\nSELECT\n TRUNC(campaign_messages.campaign_created_date,'MONTH') AS campaign_created_month,\n campaign_messages.sms_user_id,\n CAST(AVG(campaign_messages.campaign_message_cnt/subscriber.subscriber_cnt) AS DECIMAL(12,4)) AS campaign_subscriber_coverage_avg\nFROM campaign_messages \nINNER JOIN import_sms_store_metrics_daily AS subscriber\n ON campaign_messages.campaign_created_date = subscriber.date\n AND campaign_messages.sms_user_id = subscriber.sms_user_id\nGROUP BY 1,2\n),\n\nsms_store_metrics_monthly_window AS (\nSELECT\n aggregation.month,\n aggregation.app_key,\n aggregation.sms_user_id,\n aggregation.organization_id,\n aggregation.organization_key,\n months_end.plan_name AS closing_plan_name,\n months_end.plan_type AS closing_plan_type,\n months_end.plan_type_ht_lt AS closing_plan_type_ht_lt,\n months_end.subscriber_cnt AS subscriber_cnt,\n months_end.esp_subscriber_cnt AS esp_subscriber_cnt,\n months_end.non_esp_subscriber_cnt AS non_esp_subscriber_cnt,\n months_end.imported_subscriber_cnt AS imported_subscriber_cnt,\n LAG(months_end.subscriber_cnt) OVER (PARTITION BY months_end.sms_user_id ORDER BY months_end.month) AS last_m_subscriber_cnt,\n (months_end.subscriber_cnt/ LAG(months_end.subscriber_cnt) OVER (PARTITION BY months_end.sms_user_id ORDER BY months_end.month) - 1) * 100 AS subscriber_monthly_growth_pct,\n NVL(campaign.campaign_subscriber_coverage_avg,0) AS campaign_subscriber_coverage_avg,\n months_end.subscriber_cnt/aggregation.orders_cnt AS subscriber_to_order_ratio,\n aggregation.credit_purchase_sum,\n aggregation.sms_usage_sum,\n aggregation.mms_usage_sum,\n aggregation.usage_sum,\n aggregation.sms_message_cnt,\n aggregation.sms_message_cnt_by_carrier,\n aggregation.mms_message_cnt,\n aggregation.mms_message_cnt_by_carrier,\n aggregation.message_cnt,\n aggregation.message_cnt_by_carrier,\n aggregation.automation_usage_sum,\n aggregation.campaign_usage_sum,\n aggregation.flow_usage_sum,\n aggregation.other_usage_sum,\n aggregation.automation_message_cnt,\n aggregation.automation_message_cnt_by_carrier,\n aggregation.campaign_message_cnt,\n aggregation.campaign_message_cnt_by_carrier,\n aggregation.flow_message_cnt,\n aggregation.flow_message_cnt_by_carrier,\n aggregation.other_message_cnt,\n aggregation.other_message_cnt_by_carrier,\n NVL(sources.active_automation_cnt,0) AS active_automation_cnt,\n NVL(sources.active_campaign_cnt,0) AS active_campaign_cnt,\n NVL(sources.active_flow_cnt,0) AS active_flow_cnt,\n aggregation.orders_cnt,\n months_end.avg_orders_cnt_l3m AS avg_orders_cnt_l3m,\n aggregation.roi_spent_in_usd_sum,\n aggregation.revenue_in_usd_sum,\n SUM(aggregation.roi_spent_in_usd_sum) OVER (PARTITION BY aggregation.app_key ORDER BY aggregation.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) AS roi_spent_last_3_month_in_usd_sum,\n SUM(aggregation.revenue_in_usd_sum) OVER (PARTITION BY aggregation.app_key ORDER BY aggregation.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) AS revenue_last_3_month_in_usd_sum,\n aggregation.automation_revenue_sum,\n aggregation.campaign_revenue_sum,\n aggregation.flow_revenue_sum,\n aggregation.new_customer_cnt,\n aggregation.customer_cnt,\n aggregation.is_installed,\n aggregation.is_store_open,\n aggregation.is_active\nFROM metrics_monthly_aggregation AS aggregation\nLEFT JOIN months_end_calculation AS months_end\n ON months_end.is_end_of_month = 1\n AND aggregation.month = months_end.month\n AND aggregation.sms_user_id = months_end.sms_user_id\nLEFT JOIN active_sources_cnt AS sources\n ON aggregation.month = sources.created_month\n AND aggregation.sms_user_id = sources.sms_user_id\nLEFT JOIN campaign_coverage_ratio_monthly AS campaign\n ON aggregation.month = campaign.campaign_created_month\n AND aggregation.sms_user_id = campaign.sms_user_id\n),\n\nsms_store_metrics_monthly_res AS (\nSELECT \n month,\n app_key,\n sms_user_id,\n organization_id,\n organization_key,\n closing_plan_name,\n closing_plan_type,\n closing_plan_type_ht_lt,\n subscriber_cnt,\n esp_subscriber_cnt,\n non_esp_subscriber_cnt,\n imported_subscriber_cnt,\n last_m_subscriber_cnt,\n subscriber_monthly_growth_pct,\n campaign_subscriber_coverage_avg,\n subscriber_to_order_ratio,\n credit_purchase_sum,\n sms_usage_sum,\n mms_usage_sum,\n usage_sum,\n sms_message_cnt,\n sms_message_cnt_by_carrier,\n mms_message_cnt,\n mms_message_cnt_by_carrier,\n message_cnt,\n message_cnt_by_carrier,\n automation_usage_sum,\n campaign_usage_sum,\n flow_usage_sum,\n other_usage_sum,\n automation_message_cnt,\n automation_message_cnt_by_carrier,\n campaign_message_cnt,\n campaign_message_cnt_by_carrier,\n flow_message_cnt,\n flow_message_cnt_by_carrier,\n other_message_cnt,\n other_message_cnt_by_carrier,\n active_automation_cnt,\n active_campaign_cnt,\n active_flow_cnt,\n orders_cnt,\n avg_orders_cnt_l3m,\n roi_spent_in_usd_sum,\n revenue_in_usd_sum,\n (revenue_in_usd_sum/roi_spent_in_usd_sum) - 1 AS roi_ratio,\n roi_spent_last_3_month_in_usd_sum,\n revenue_last_3_month_in_usd_sum,\n (revenue_last_3_month_in_usd_sum/roi_spent_last_3_month_in_usd_sum) - 1 AS roi_last_3_month_ratio,\n usage_sum/message_cnt AS usage_to_message_ratio,\n message_cnt/subscriber_cnt AS message_to_subscriber_ratio,\n automation_revenue_sum,\n campaign_revenue_sum,\n flow_revenue_sum,\n new_customer_cnt,\n customer_cnt,\n is_installed,\n is_store_open,\n is_active,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_store_metrics_monthly_window\n)\n-- Result --\n\nSELECT *\nFROM sms_store_metrics_monthly_res", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___sms_stg__api_calls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms_stg__api_calls"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_store_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store_metrics_daily\nWHERE date > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\nimport_api_calls AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nAND created_date > ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,-1),'YEAR'),-24)\n),\n\n-- logic --\n\nmonths_end_calculation AS (\nSELECT\n TRUNC(date,'MONTH') AS month,\n sms_user_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n subscriber_cnt,\n esp_subscriber_cnt,\n non_esp_subscriber_cnt,\n imported_subscriber_cnt,\n avg_orders_cnt_l3m,\n CASE WHEN date = LAST_DAY(date) THEN 1\n WHEN TRUNC(date,'MONTH') = TRUNC(CURRENT_DATE,'MONTH') AND date = MAX(date) OVER () THEN 1\n ELSE 0 END AS is_end_of_month\nFROM import_sms_store_metrics_daily\n),\n\nmetrics_monthly_aggregation AS (\nSELECT\n TRUNC(daily.date,'MONTH') AS month,\n daily.app_key,\n daily.sms_user_id,\n daily.organization_id,\n daily.organization_key,\n SUM(daily.credit_purchase_sum) AS credit_purchase_sum,\n SUM(daily.sms_usage_sum) AS sms_usage_sum,\n SUM(daily.mms_usage_sum) AS mms_usage_sum,\n SUM(daily.usage_sum) AS usage_sum,\n SUM(daily.sms_message_cnt) AS sms_message_cnt,\n SUM(daily.sms_message_cnt_by_carrier) AS sms_message_cnt_by_carrier,\n SUM(daily.mms_message_cnt) AS mms_message_cnt,\n SUM(daily.mms_message_cnt_by_carrier) AS mms_message_cnt_by_carrier,\n SUM(daily.message_cnt) AS message_cnt,\n SUM(daily.message_cnt_by_carrier) AS message_cnt_by_carrier,\n SUM(daily.automation_usage_sum) AS automation_usage_sum,\n SUM(daily.campaign_usage_sum) AS campaign_usage_sum,\n SUM(daily.flow_usage_sum) AS flow_usage_sum,\n SUM(daily.other_usage_sum) AS other_usage_sum,\n SUM(daily.automation_message_cnt) AS automation_message_cnt,\n SUM(daily.automation_message_cnt_by_carrier) AS automation_message_cnt_by_carrier,\n SUM(daily.campaign_message_cnt) AS campaign_message_cnt,\n SUM(daily.campaign_message_cnt_by_carrier) AS campaign_message_cnt_by_carrier,\n SUM(daily.flow_message_cnt) AS flow_message_cnt,\n SUM(daily.flow_message_cnt_by_carrier) AS flow_message_cnt_by_carrier,\n SUM(daily.other_message_cnt) AS other_message_cnt,\n SUM(daily.other_message_cnt_by_carrier) AS other_message_cnt_by_carrier,\n SUM(daily.orders_cnt) AS orders_cnt,\n SUM(daily.roi_spent_in_usd_sum) AS roi_spent_in_usd_sum,\n SUM(daily.revenue_in_usd_sum) AS revenue_in_usd_sum,\n SUM(daily.automation_revenue_sum) AS automation_revenue_sum,\n SUM(daily.campaign_revenue_sum) AS campaign_revenue_sum,\n SUM(daily.flow_revenue_sum) AS flow_revenue_sum,\n SUM(daily.new_customer_cnt) AS new_customer_cnt,\n MAX(daily.customer_cnt) AS customer_cnt,\n MAX(daily.is_installed) AS is_installed,\n MAX(daily.is_store_open) AS is_store_open,\n MAX(daily.is_active) AS is_active\nFROM import_sms_store_metrics_daily AS daily\nGROUP BY 1,2,3,4,5\n),\n\nactive_sources_cnt AS (\nSELECT\n created_month,\n sms_user_id,\n COUNT(DISTINCT IF(message_source_type = 1, event_id, NULL)) AS active_automation_cnt,\n COUNT(DISTINCT IF(message_source_type = 2, campaign_id, NULL)) AS active_campaign_cnt,\n COUNT(DISTINCT IF(message_source_type = 3, flow_id, NULL)) AS active_flow_cnt\nFROM import_api_calls\nGROUP BY 1,2\n),\n\ncampaign_messages AS (\nSELECT\n sms_user_id,\n campaign_id,\n MIN(created_date) AS campaign_created_date,\n COUNT(*) AS campaign_message_cnt\nFROM import_api_calls\nWHERE message_source_type = 2\nGROUP BY 1,2\n),\n\ncampaign_coverage_ratio_monthly AS (\nSELECT\n TRUNC(campaign_messages.campaign_created_date,'MONTH') AS campaign_created_month,\n campaign_messages.sms_user_id,\n CAST(AVG(campaign_messages.campaign_message_cnt/subscriber.subscriber_cnt) AS DECIMAL(12,4)) AS campaign_subscriber_coverage_avg\nFROM campaign_messages \nINNER JOIN import_sms_store_metrics_daily AS subscriber\n ON campaign_messages.campaign_created_date = subscriber.date\n AND campaign_messages.sms_user_id = subscriber.sms_user_id\nGROUP BY 1,2\n),\n\nsms_store_metrics_monthly_window AS (\nSELECT\n aggregation.month,\n aggregation.app_key,\n aggregation.sms_user_id,\n aggregation.organization_id,\n aggregation.organization_key,\n months_end.plan_name AS closing_plan_name,\n months_end.plan_type AS closing_plan_type,\n months_end.plan_type_ht_lt AS closing_plan_type_ht_lt,\n months_end.subscriber_cnt AS subscriber_cnt,\n months_end.esp_subscriber_cnt AS esp_subscriber_cnt,\n months_end.non_esp_subscriber_cnt AS non_esp_subscriber_cnt,\n months_end.imported_subscriber_cnt AS imported_subscriber_cnt,\n LAG(months_end.subscriber_cnt) OVER (PARTITION BY months_end.sms_user_id ORDER BY months_end.month) AS last_m_subscriber_cnt,\n (months_end.subscriber_cnt/ LAG(months_end.subscriber_cnt) OVER (PARTITION BY months_end.sms_user_id ORDER BY months_end.month) - 1) * 100 AS subscriber_monthly_growth_pct,\n NVL(campaign.campaign_subscriber_coverage_avg,0) AS campaign_subscriber_coverage_avg,\n months_end.subscriber_cnt/aggregation.orders_cnt AS subscriber_to_order_ratio,\n aggregation.credit_purchase_sum,\n aggregation.sms_usage_sum,\n aggregation.mms_usage_sum,\n aggregation.usage_sum,\n aggregation.sms_message_cnt,\n aggregation.sms_message_cnt_by_carrier,\n aggregation.mms_message_cnt,\n aggregation.mms_message_cnt_by_carrier,\n aggregation.message_cnt,\n aggregation.message_cnt_by_carrier,\n aggregation.automation_usage_sum,\n aggregation.campaign_usage_sum,\n aggregation.flow_usage_sum,\n aggregation.other_usage_sum,\n aggregation.automation_message_cnt,\n aggregation.automation_message_cnt_by_carrier,\n aggregation.campaign_message_cnt,\n aggregation.campaign_message_cnt_by_carrier,\n aggregation.flow_message_cnt,\n aggregation.flow_message_cnt_by_carrier,\n aggregation.other_message_cnt,\n aggregation.other_message_cnt_by_carrier,\n NVL(sources.active_automation_cnt,0) AS active_automation_cnt,\n NVL(sources.active_campaign_cnt,0) AS active_campaign_cnt,\n NVL(sources.active_flow_cnt,0) AS active_flow_cnt,\n aggregation.orders_cnt,\n months_end.avg_orders_cnt_l3m AS avg_orders_cnt_l3m,\n aggregation.roi_spent_in_usd_sum,\n aggregation.revenue_in_usd_sum,\n SUM(aggregation.roi_spent_in_usd_sum) OVER (PARTITION BY aggregation.app_key ORDER BY aggregation.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) AS roi_spent_last_3_month_in_usd_sum,\n SUM(aggregation.revenue_in_usd_sum) OVER (PARTITION BY aggregation.app_key ORDER BY aggregation.month ROWS BETWEEN 3 PRECEDING AND 1 PRECEDING) AS revenue_last_3_month_in_usd_sum,\n aggregation.automation_revenue_sum,\n aggregation.campaign_revenue_sum,\n aggregation.flow_revenue_sum,\n aggregation.new_customer_cnt,\n aggregation.customer_cnt,\n aggregation.is_installed,\n aggregation.is_store_open,\n aggregation.is_active\nFROM metrics_monthly_aggregation AS aggregation\nLEFT JOIN months_end_calculation AS months_end\n ON months_end.is_end_of_month = 1\n AND aggregation.month = months_end.month\n AND aggregation.sms_user_id = months_end.sms_user_id\nLEFT JOIN active_sources_cnt AS sources\n ON aggregation.month = sources.created_month\n AND aggregation.sms_user_id = sources.sms_user_id\nLEFT JOIN campaign_coverage_ratio_monthly AS campaign\n ON aggregation.month = campaign.campaign_created_month\n AND aggregation.sms_user_id = campaign.sms_user_id\n),\n\nsms_store_metrics_monthly_res AS (\nSELECT \n month,\n app_key,\n sms_user_id,\n organization_id,\n organization_key,\n closing_plan_name,\n closing_plan_type,\n closing_plan_type_ht_lt,\n subscriber_cnt,\n esp_subscriber_cnt,\n non_esp_subscriber_cnt,\n imported_subscriber_cnt,\n last_m_subscriber_cnt,\n subscriber_monthly_growth_pct,\n campaign_subscriber_coverage_avg,\n subscriber_to_order_ratio,\n credit_purchase_sum,\n sms_usage_sum,\n mms_usage_sum,\n usage_sum,\n sms_message_cnt,\n sms_message_cnt_by_carrier,\n mms_message_cnt,\n mms_message_cnt_by_carrier,\n message_cnt,\n message_cnt_by_carrier,\n automation_usage_sum,\n campaign_usage_sum,\n flow_usage_sum,\n other_usage_sum,\n automation_message_cnt,\n automation_message_cnt_by_carrier,\n campaign_message_cnt,\n campaign_message_cnt_by_carrier,\n flow_message_cnt,\n flow_message_cnt_by_carrier,\n other_message_cnt,\n other_message_cnt_by_carrier,\n active_automation_cnt,\n active_campaign_cnt,\n active_flow_cnt,\n orders_cnt,\n avg_orders_cnt_l3m,\n roi_spent_in_usd_sum,\n revenue_in_usd_sum,\n (revenue_in_usd_sum/roi_spent_in_usd_sum) - 1 AS roi_ratio,\n roi_spent_last_3_month_in_usd_sum,\n revenue_last_3_month_in_usd_sum,\n (revenue_last_3_month_in_usd_sum/roi_spent_last_3_month_in_usd_sum) - 1 AS roi_last_3_month_ratio,\n usage_sum/message_cnt AS usage_to_message_ratio,\n message_cnt/subscriber_cnt AS message_to_subscriber_ratio,\n automation_revenue_sum,\n campaign_revenue_sum,\n flow_revenue_sum,\n new_customer_cnt,\n customer_cnt,\n is_installed,\n is_store_open,\n is_active,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM sms_store_metrics_monthly_window\n)\n-- Result --\n\nSELECT *\nFROM sms_store_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__store_plan_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__store_plan_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.sql", "unique_id": "model.yoda.analytics___sms__store_plan_daily", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_plan_daily", "analytics___sms__store_plan_daily"], "alias": "analytics___sms__store_plan_daily", "checksum": {"name": "sha256", "checksum": "ef4a8d87bf74e84caee2b3b6b6d72c668e544a8d9385929c827166a83abee11f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of sms store's plan history on a daily level. | Granularity & Primary Key: date, app_key", "columns": {"date": {"name": "date", "description": "date of the plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_id": {"name": "plan_id", "description": "plan unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type": {"name": "plan_type", "description": "plan type: self_service / high_touch", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "plan customer type: HT/LT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_group": {"name": "plan_type_group", "description": "plan type group: self_service, high_touch and free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_period": {"name": "plan_period", "description": "plan period: monthly, annually", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082658.5681937, "relation_name": "dev_dkruh1.analytics___sms__store_plan_daily", "raw_code": "{{config(materialized='view')}}\n\n-- Import --\n\nWITH import_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\nimport_sms_user_plan_daily AS (\nSELECT * FROM {{ ref('analytics___sms__user_plan_daily') }}\n),\n\n-- logic --\n\nsms_store_plan_daily_res AS (\nSELECT\n plan.date,\n store.app_key,\n plan.sms_user_id,\n plan.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_sms_store AS store\nINNER JOIN import_sms_user_plan_daily AS plan\n ON store.sms_user_id = plan.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_store_plan_daily_res", "language": "sql", "refs": [{"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___sms__user_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__store", "model.yoda.analytics___sms__user_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\nimport_sms_user_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_plan_daily\n),\n\n-- logic --\n\nsms_store_plan_daily_res AS (\nSELECT\n plan.date,\n store.app_key,\n plan.sms_user_id,\n plan.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_sms_store AS store\nINNER JOIN import_sms_user_plan_daily AS plan\n ON store.sms_user_id = plan.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_store_plan_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__store_plan_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__store_plan_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.sql", "unique_id": "model.yoda.analytics___sms__store_plan_over_time", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_plan_over_time", "analytics___sms__store_plan_over_time"], "alias": "analytics___sms__store_plan_over_time", "checksum": {"name": "sha256", "checksum": "2f831757ba38a2f0f29aec93839c973b98a4a8b4e46524be0957ffc9349fc684"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms store's plan history over time. | Granularity & Primary Key: app_key, from_time, row_ranking_for_store_and_created_date", "columns": {"app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_time": {"name": "from_time", "description": "store plan range start timestamp - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "store plan range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "row_ranking_for_store_and_created_date": {"name": "row_ranking_for_store_and_created_date", "description": "row ranking for each store and event created date by from_time DESC, event_id DESC (i.e, 1 is the last row for each store and created date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "sms user event log unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_name": {"name": "event_name", "description": "change_plan, cancel_plan, uninstall, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date": {"name": "created_date", "description": "plan change event created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "plan_id": {"name": "plan_id", "description": "plan unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type": {"name": "plan_type", "description": "plan type: self_service / high_touch", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "plan customer type: HT/LT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_group": {"name": "plan_type_group", "description": "plan type group: self_service, high_touch and free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_period": {"name": "plan_period", "description": "plan period: monthly, annually", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082658.6160493, "relation_name": "dev_dkruh1.analytics___sms__store_plan_over_time", "raw_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__sms_user') }}\n),\n\nimport_user_event_log AS (\nSELECT * FROM {{ ref('analytics___sms_stg__user_event_log') }}\n),\n\nimport_sms_plan AS (\nSELECT * FROM {{ ref('analytics___sms_stg__plan') }}\n),\n\n-- Logic --\n\nplan_changes_events_after_2020_03_03 AS (\nSELECT\n event_id,\n sms_user_id,\n created_date,\n created_at,\n event_name,\n BIGINT(CASE WHEN LOWER(event_name) = 'change_plan' THEN event_type\n WHEN LOWER(event_name) IN ('uninstall','closed_store','cancel_plan') THEN '5'\n WHEN (LOWER(event_name) = 'admin' AND LOWER(event_type) = 'manual_plan_change') THEN regexp_extract(LOWER(event_details),r'\"(\\d+)\"',1) END) AS plan_id\nFROM import_user_event_log\nWHERE created_date > '2020-03-03'\nAND (\n (LOWER(event_name) = 'admin' AND LOWER(event_type) = 'manual_plan_change')\n OR LOWER(event_name) IN ('closed_store','change_plan')\n OR (LOWER(event_name) = 'uninstall' AND NVL(LOWER(event_details),'') NOT LIKE '%the package remains%')\n OR (LOWER(event_name) = 'cancel_plan' AND NVL(LOWER(event_details),'') <> 'cancellation triggered due to high touch upgrade')\n )\n),\n\nclosed_store_events AS (\nSELECT\n event_id,\n sms_user_id,\n created_at\nFROM plan_changes_events_after_2020_03_03\nWHERE LOWER(event_name) = 'closed_store'\n),\n\ncancel_plan_events AS (\nSELECT\n event_id,\n sms_user_id,\n created_at\nFROM plan_changes_events_after_2020_03_03\nWHERE LOWER(event_name) = 'cancel_plan'\n),\n\nclosed_canceled_simultaneously AS (\nSELECT\n closed.sms_user_id,\n closed.created_at,\n closed.event_id AS closed_event_id,\n cancel.event_id AS cancel_event_id\nFROM closed_store_events AS closed\nINNER JOIN cancel_plan_events AS cancel\n ON closed.sms_user_id = cancel.sms_user_id\n AND closed.created_at = cancel.created_at\n),\n\nclosed_canceled_events_id AS (\nSELECT closed_event_id AS event_id\nFROM closed_canceled_simultaneously\nUNION ALL\nSELECT cancel_event_id AS event_id\nFROM closed_canceled_simultaneously\n),\n\nplan_changes_after_2020_03_03_wo_closed_canceled AS (\nSELECT\n plan_changes.event_id,\n plan_changes.sms_user_id,\n sms_user.app_key,\n plan_changes.created_date,\n plan_changes.created_at,\n plan_changes.event_name,\n plan_changes.plan_id\nFROM plan_changes_events_after_2020_03_03 AS plan_changes\nINNER JOIN import_sms_user AS sms_user\n ON plan_changes.sms_user_id = sms_user.sms_user_id\nLEFT JOIN closed_canceled_events_id AS closed_canceled\n ON plan_changes.event_id = closed_canceled.event_id\nWHERE closed_canceled.event_id IS NULL\nAND plan_changes.sms_user_id IS NOT NULL\n),\n\nfirst_plan_for_users_after_2020_03_03 AS (\nSELECT\n 0 AS event_id,\n sms_user_id,\n app_key,\n created_date,\n created_at,\n 'calculated_plan_for_created_users_after_2020_03_03' AS event_name,\n 5 AS plan_id\nFROM import_sms_user\nWHERE created_date > '2020-03-03'\n),\n\nplan_history_events_union_first_plan AS (\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM first_plan_for_users_after_2020_03_03\nUNION ALL\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_changes_after_2020_03_03_wo_closed_canceled\n),\n\nplan_for_users_wo_events AS (\nSELECT\n -1 AS event_id,\n sms_user.sms_user_id,\n sms_user.app_key,\n DATE('2020-03-03') AS created_date,\n TIMESTAMP('2020-03-03') AS created_at,\n 'calculated_plan_for_users_without_plan_changes_event' AS event_name,\n sms_user.plan_id\nFROM import_sms_user AS sms_user\nLEFT JOIN plan_history_events_union_first_plan AS plan_history\n ON sms_user.sms_user_id = plan_history.sms_user_id\nWHERE plan_history.sms_user_id IS NULL\nAND sms_user.plan_id IS NOT NULL\n),\n\nplan_changes_union AS (\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_history_events_union_first_plan\nUNION ALL\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_for_users_wo_events\n),\n\nplan_changes_adding_plan_details AS (\nSELECT\n plan_changes.sms_user_id,\n plan_changes.app_key,\n plan_changes.event_id,\n plan_changes.created_date,\n plan_changes.created_at,\n plan_changes.event_name,\n plan_changes.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period,\n ROW_NUMBER() OVER (PARTITION BY plan_changes.sms_user_id ORDER BY plan_changes.created_at, plan_changes.event_id) AS user_plan_ranking\nFROM plan_changes_union AS plan_changes\nLEFT JOIN import_sms_plan AS plan\n ON plan_changes.plan_id = plan.plan_id\n),\n\nusers_whose_first_event_is_ht_plan AS (\nSELECT\n sms_user_id,\n app_key,\n created_date,\n created_at\nFROM plan_changes_adding_plan_details\nWHERE user_plan_ranking = 1\nAND LOWER(plan_type_group) = 'high_touch'\n),\n\nextracting_self_service_plans_from_another_events AS (\nSELECT\n event.sms_user_id,\n event.event_id,\n event.created_at,\n plan.plan_id\nFROM import_user_event_log AS event\nINNER JOIN import_sms_plan AS plan\n ON event.event_details = plan.plan_id\nWHERE LOWER(event.event_name) = 'charge'\nAND LOWER(event.event_type) = 'plan_charge'\nAND LOWER(plan.plan_type) = 'self_service'\nAND NVL(LOWER(plan.plan_name),'') NOT LIKE '%free%'\nAND plan.plan_id IS NOT NULL\n),\n\nadditional_plan_event_for_first_ht AS (\nSELECT DISTINCT\n ht.sms_user_id,\n ht.app_key,\n -1 AS event_id,\n DATE('2020-03-03') AS created_date,\n TIMESTAMP('2020-03-03') AS created_at,\n 'calculated_plan_for_users_whose_first_event_is_ht_plan' AS event_name,\n LAST_VALUE(plans.plan_id) OVER (PARTITION BY ht.sms_user_id ORDER BY plans.created_at, plans.event_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS plan_id\nFROM users_whose_first_event_is_ht_plan AS ht\nINNER JOIN extracting_self_service_plans_from_another_events AS plans\n ON ht.sms_user_id = plans.sms_user_id\n AND ht.created_at > plans.created_at\n),\n\nplan_event_for_first_ht_adding_plan_details AS (\nSELECT\n ht.sms_user_id,\n ht.app_key,\n ht.event_id,\n ht.created_date,\n ht.created_at,\n ht.event_name,\n ht.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period\nFROM additional_plan_event_for_first_ht AS ht\nINNER JOIN import_sms_plan AS plan\n ON ht.plan_id = plan.plan_id\n),\n\nall_events_union AS (\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period\nFROM plan_changes_adding_plan_details\nUNION ALL\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period\nFROM plan_event_for_first_ht_adding_plan_details\n),\n\nsms__store_plan_over_time_res AS (\nSELECT\n app_key,\n created_at AS from_time,\n TIMESTAMP(NVL(LEAD(created_at) OVER (PARTITION BY app_key ORDER BY created_at, event_id), '2999-12-31')) AS to_time,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_date ORDER BY created_at DESC, event_id DESC) AS row_ranking_for_store_and_created_date,\n sms_user_id,\n IF(event_id IN (-1,0), NULL, event_id) AS event_id,\n event_name,\n created_date,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM all_events_union\nWHERE app_key IS NOT NULL\nAND created_date < CURRENT_DATE\n)\n\n-- Result --\n\nSELECT *\nFROM sms__store_plan_over_time_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__sms_user", "package": null, "version": null}, {"name": "analytics___sms_stg__user_event_log", "package": null, "version": null}, {"name": "analytics___sms_stg__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__user_event_log", "model.yoda.analytics___sms_stg__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__sms_user\n),\n\nimport_user_event_log AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__user_event_log\n),\n\nimport_sms_plan AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__plan\n),\n\n-- Logic --\n\nplan_changes_events_after_2020_03_03 AS (\nSELECT\n event_id,\n sms_user_id,\n created_date,\n created_at,\n event_name,\n BIGINT(CASE WHEN LOWER(event_name) = 'change_plan' THEN event_type\n WHEN LOWER(event_name) IN ('uninstall','closed_store','cancel_plan') THEN '5'\n WHEN (LOWER(event_name) = 'admin' AND LOWER(event_type) = 'manual_plan_change') THEN regexp_extract(LOWER(event_details),r'\"(\\d+)\"',1) END) AS plan_id\nFROM import_user_event_log\nWHERE created_date > '2020-03-03'\nAND (\n (LOWER(event_name) = 'admin' AND LOWER(event_type) = 'manual_plan_change')\n OR LOWER(event_name) IN ('closed_store','change_plan')\n OR (LOWER(event_name) = 'uninstall' AND NVL(LOWER(event_details),'') NOT LIKE '%the package remains%')\n OR (LOWER(event_name) = 'cancel_plan' AND NVL(LOWER(event_details),'') <> 'cancellation triggered due to high touch upgrade')\n )\n),\n\nclosed_store_events AS (\nSELECT\n event_id,\n sms_user_id,\n created_at\nFROM plan_changes_events_after_2020_03_03\nWHERE LOWER(event_name) = 'closed_store'\n),\n\ncancel_plan_events AS (\nSELECT\n event_id,\n sms_user_id,\n created_at\nFROM plan_changes_events_after_2020_03_03\nWHERE LOWER(event_name) = 'cancel_plan'\n),\n\nclosed_canceled_simultaneously AS (\nSELECT\n closed.sms_user_id,\n closed.created_at,\n closed.event_id AS closed_event_id,\n cancel.event_id AS cancel_event_id\nFROM closed_store_events AS closed\nINNER JOIN cancel_plan_events AS cancel\n ON closed.sms_user_id = cancel.sms_user_id\n AND closed.created_at = cancel.created_at\n),\n\nclosed_canceled_events_id AS (\nSELECT closed_event_id AS event_id\nFROM closed_canceled_simultaneously\nUNION ALL\nSELECT cancel_event_id AS event_id\nFROM closed_canceled_simultaneously\n),\n\nplan_changes_after_2020_03_03_wo_closed_canceled AS (\nSELECT\n plan_changes.event_id,\n plan_changes.sms_user_id,\n sms_user.app_key,\n plan_changes.created_date,\n plan_changes.created_at,\n plan_changes.event_name,\n plan_changes.plan_id\nFROM plan_changes_events_after_2020_03_03 AS plan_changes\nINNER JOIN import_sms_user AS sms_user\n ON plan_changes.sms_user_id = sms_user.sms_user_id\nLEFT JOIN closed_canceled_events_id AS closed_canceled\n ON plan_changes.event_id = closed_canceled.event_id\nWHERE closed_canceled.event_id IS NULL\nAND plan_changes.sms_user_id IS NOT NULL\n),\n\nfirst_plan_for_users_after_2020_03_03 AS (\nSELECT\n 0 AS event_id,\n sms_user_id,\n app_key,\n created_date,\n created_at,\n 'calculated_plan_for_created_users_after_2020_03_03' AS event_name,\n 5 AS plan_id\nFROM import_sms_user\nWHERE created_date > '2020-03-03'\n),\n\nplan_history_events_union_first_plan AS (\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM first_plan_for_users_after_2020_03_03\nUNION ALL\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_changes_after_2020_03_03_wo_closed_canceled\n),\n\nplan_for_users_wo_events AS (\nSELECT\n -1 AS event_id,\n sms_user.sms_user_id,\n sms_user.app_key,\n DATE('2020-03-03') AS created_date,\n TIMESTAMP('2020-03-03') AS created_at,\n 'calculated_plan_for_users_without_plan_changes_event' AS event_name,\n sms_user.plan_id\nFROM import_sms_user AS sms_user\nLEFT JOIN plan_history_events_union_first_plan AS plan_history\n ON sms_user.sms_user_id = plan_history.sms_user_id\nWHERE plan_history.sms_user_id IS NULL\nAND sms_user.plan_id IS NOT NULL\n),\n\nplan_changes_union AS (\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_history_events_union_first_plan\nUNION ALL\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_for_users_wo_events\n),\n\nplan_changes_adding_plan_details AS (\nSELECT\n plan_changes.sms_user_id,\n plan_changes.app_key,\n plan_changes.event_id,\n plan_changes.created_date,\n plan_changes.created_at,\n plan_changes.event_name,\n plan_changes.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period,\n ROW_NUMBER() OVER (PARTITION BY plan_changes.sms_user_id ORDER BY plan_changes.created_at, plan_changes.event_id) AS user_plan_ranking\nFROM plan_changes_union AS plan_changes\nLEFT JOIN import_sms_plan AS plan\n ON plan_changes.plan_id = plan.plan_id\n),\n\nusers_whose_first_event_is_ht_plan AS (\nSELECT\n sms_user_id,\n app_key,\n created_date,\n created_at\nFROM plan_changes_adding_plan_details\nWHERE user_plan_ranking = 1\nAND LOWER(plan_type_group) = 'high_touch'\n),\n\nextracting_self_service_plans_from_another_events AS (\nSELECT\n event.sms_user_id,\n event.event_id,\n event.created_at,\n plan.plan_id\nFROM import_user_event_log AS event\nINNER JOIN import_sms_plan AS plan\n ON event.event_details = plan.plan_id\nWHERE LOWER(event.event_name) = 'charge'\nAND LOWER(event.event_type) = 'plan_charge'\nAND LOWER(plan.plan_type) = 'self_service'\nAND NVL(LOWER(plan.plan_name),'') NOT LIKE '%free%'\nAND plan.plan_id IS NOT NULL\n),\n\nadditional_plan_event_for_first_ht AS (\nSELECT DISTINCT\n ht.sms_user_id,\n ht.app_key,\n -1 AS event_id,\n DATE('2020-03-03') AS created_date,\n TIMESTAMP('2020-03-03') AS created_at,\n 'calculated_plan_for_users_whose_first_event_is_ht_plan' AS event_name,\n LAST_VALUE(plans.plan_id) OVER (PARTITION BY ht.sms_user_id ORDER BY plans.created_at, plans.event_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS plan_id\nFROM users_whose_first_event_is_ht_plan AS ht\nINNER JOIN extracting_self_service_plans_from_another_events AS plans\n ON ht.sms_user_id = plans.sms_user_id\n AND ht.created_at > plans.created_at\n),\n\nplan_event_for_first_ht_adding_plan_details AS (\nSELECT\n ht.sms_user_id,\n ht.app_key,\n ht.event_id,\n ht.created_date,\n ht.created_at,\n ht.event_name,\n ht.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period\nFROM additional_plan_event_for_first_ht AS ht\nINNER JOIN import_sms_plan AS plan\n ON ht.plan_id = plan.plan_id\n),\n\nall_events_union AS (\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period\nFROM plan_changes_adding_plan_details\nUNION ALL\nSELECT\n sms_user_id,\n app_key,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period\nFROM plan_event_for_first_ht_adding_plan_details\n),\n\nsms__store_plan_over_time_res AS (\nSELECT\n app_key,\n created_at AS from_time,\n TIMESTAMP(NVL(LEAD(created_at) OVER (PARTITION BY app_key ORDER BY created_at, event_id), '2999-12-31')) AS to_time,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_date ORDER BY created_at DESC, event_id DESC) AS row_ranking_for_store_and_created_date,\n sms_user_id,\n IF(event_id IN (-1,0), NULL, event_id) AS event_id,\n event_name,\n created_date,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM all_events_union\nWHERE app_key IS NOT NULL\nAND created_date < CURRENT_DATE\n)\n\n-- Result --\n\nSELECT *\nFROM sms__store_plan_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__store_receiving_country_metrics": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__store_receiving_country_metrics", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.sql", "unique_id": "model.yoda.analytics___sms__store_receiving_country_metrics", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_receiving_country_metrics", "analytics___sms__store_receiving_country_metrics"], "alias": "analytics___sms__store_receiving_country_metrics", "checksum": {"name": "sha256", "checksum": "8bec5ad193154bff69b9a01ca2287580ca7c893a4c5676b15b2b1bc4bbdfb5ed"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms store messages receiving country metrics.\nPK and granularity:\n1. date\n2. app_key\n3. sms_user_id\n4. plan_name\n5. receiving_country\n6. message_type", "columns": {"date": {"name": "date", "description": "metric date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_name": {"name": "platform_name", "description": "store platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "receiving_country": {"name": "receiving_country", "description": "message receiving country", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_type": {"name": "message_type", "description": "message type: mms, sms, whatsapp, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_cnt": {"name": "message_cnt", "description": "number of sms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usage_sum": {"name": "usage_sum", "description": "total sum price_billed_in_usd of messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,4)"}, "message_by_carrier_cnt": {"name": "message_by_carrier_cnt", "description": "number of sms message parts sent by the carrier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082658.6666777, "relation_name": "dev_dkruh1.analytics___sms__store_receiving_country_metrics", "raw_code": "-- Import --\n\nWITH import_sms_api_calls AS (\nSELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\nWHERE created_date BETWEEN ADD_MONTHS(TRUNC(CURRENT_DATE,'YEAR'),-24) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_sms_user_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___sms__user_metrics_daily') }}\n),\n\nimport_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\n-- Logic --\n\nuser_receiving_country_metrics AS (\nSELECT\n created_date AS date,\n sms_user_id,\n receiver_country AS receiving_country,\n message_type,\n COUNT(*) AS message_cnt,\n NVL(SUM(price_billed_in_usd),0) AS usage_sum,\n NVL(SUM(message_parts_number),0) AS message_by_carrier_cnt\nFROM import_sms_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nGROUP BY 1,2,3,4\n),\n\nsms_store_receiving_country_metrics_res AS (\nSELECT\n country.date,\n store.app_key,\n country.sms_user_id,\n store.platform_name, \n metrics.plan_name,\n country.receiving_country,\n country.message_type,\n country.message_cnt,\n country.usage_sum,\n country.message_by_carrier_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM user_receiving_country_metrics AS country\nINNER JOIN import_sms_user_metrics_daily AS metrics\n ON country.date = metrics.date\n AND country.sms_user_id = metrics.sms_user_id\nINNER JOIN import_sms_store AS store\n ON country.sms_user_id = store.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_store_receiving_country_metrics_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__api_calls", "package": null, "version": null}, {"name": "analytics___sms__user_metrics_daily", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___sms__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_api_calls AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\nWHERE created_date BETWEEN ADD_MONTHS(TRUNC(CURRENT_DATE,'YEAR'),-24) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_sms_user_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_metrics_daily\n),\n\nimport_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\n-- Logic --\n\nuser_receiving_country_metrics AS (\nSELECT\n created_date AS date,\n sms_user_id,\n receiver_country AS receiving_country,\n message_type,\n COUNT(*) AS message_cnt,\n NVL(SUM(price_billed_in_usd),0) AS usage_sum,\n NVL(SUM(message_parts_number),0) AS message_by_carrier_cnt\nFROM import_sms_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nGROUP BY 1,2,3,4\n),\n\nsms_store_receiving_country_metrics_res AS (\nSELECT\n country.date,\n store.app_key,\n country.sms_user_id,\n store.platform_name, \n metrics.plan_name,\n country.receiving_country,\n country.message_type,\n country.message_cnt,\n country.usage_sum,\n country.message_by_carrier_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM user_receiving_country_metrics AS country\nINNER JOIN import_sms_user_metrics_daily AS metrics\n ON country.date = metrics.date\n AND country.sms_user_id = metrics.sms_user_id\nINNER JOIN import_sms_store AS store\n ON country.sms_user_id = store.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_store_receiving_country_metrics_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_activeness_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_activeness_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.sql", "unique_id": "model.yoda.analytics___sms__user_activeness_daily", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_activeness_daily", "analytics___sms__user_activeness_daily"], "alias": "analytics___sms__user_activeness_daily", "checksum": {"name": "sha256", "checksum": "1d5d379df40b0b345ba69b8075712488367c8a1c2d17a666ae513846543ecda5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["activeness_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms user activeness history on a daily level | PK and granularity: activeness_date, sms_user_id", "columns": {"activeness_date": {"name": "activeness_date", "description": "user activeness date - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_app_installed": {"name": "is_app_installed", "description": "installed app indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_user_open": {"name": "is_user_open", "description": "opened user indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "incremental_strategy": "append", "partition_by": ["activeness_date"]}, "created_at": 1700082658.726324, "relation_name": "dev_dkruh1.analytics___sms__user_activeness_daily", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by = ['activeness_date']\n )\n}}\n\n-- Import --\n\nWITH import_user_installation_over_time AS (\nSELECT * FROM {{ ref('analytics___sms__user_installation_over_time') }}\n),\n\nimport_user_open_over_time AS (\nSELECT * FROM {{ ref('analytics___sms__user_open_over_time') }}\n),\n\ncurrent_day_data_existence AS (\nSELECT 1 AS is_current_day_data_exists\nWHERE EXISTS (SELECT * FROM import_user_installation_over_time WHERE created_date = CURRENT_DATE LIMIT 1)\nAND EXISTS (SELECT * FROM import_user_open_over_time WHERE created_date = CURRENT_DATE LIMIT 1)\n),\n\nimport_user_date AS (\nSELECT * \nFROM {{ ref('analytics___sms_stg__user_date_explode_from_creation') }}\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-4,1,1) AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n{% if is_incremental() %}\nAND date > (SELECT MAX(activeness_date) FROM {{ this }})\n{% endif %}\n),\n\n-- Logic --\n\nuser_activeness_daily_res AS (\nSELECT\n calendar.date AS activeness_date,\n calendar.sms_user_id,\n IFNULL(MAX(install.is_app_installed),0) AS is_app_installed,\n IFNULL(MAX(opened.is_user_open),0) AS is_user_open,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_user_date AS calendar\nLEFT JOIN import_user_installation_over_time AS install\n ON calendar.sms_user_id = install.sms_user_id\n AND calendar.date BETWEEN DATE(install.from_time) AND DATE(install.to_time)\nLEFT JOIN import_user_open_over_time AS opened\n ON calendar.sms_user_id = opened.sms_user_id\n AND calendar.date BETWEEN DATE(opened.from_time) AND DATE(opened.to_time) \nGROUP BY 1,2\n)\n\n-- Result --\n\nSELECT *\nFROM user_activeness_daily_res", "language": "sql", "refs": [{"name": "analytics___sms__user_installation_over_time", "package": null, "version": null}, {"name": "analytics___sms__user_open_over_time", "package": null, "version": null}, {"name": "analytics___sms_stg__user_date_explode_from_creation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__user_installation_over_time", "model.yoda.analytics___sms__user_open_over_time", "model.yoda.analytics___sms_stg__user_date_explode_from_creation"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_user_installation_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_installation_over_time\n),\n\nimport_user_open_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_open_over_time\n),\n\ncurrent_day_data_existence AS (\nSELECT 1 AS is_current_day_data_exists\nWHERE EXISTS (SELECT * FROM import_user_installation_over_time WHERE created_date = CURRENT_DATE LIMIT 1)\nAND EXISTS (SELECT * FROM import_user_open_over_time WHERE created_date = CURRENT_DATE LIMIT 1)\n),\n\nimport_user_date AS (\nSELECT * \nFROM dev_dkruh1.analytics___sms_stg__user_date_explode_from_creation\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-4,1,1) AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n\n),\n\n-- Logic --\n\nuser_activeness_daily_res AS (\nSELECT\n calendar.date AS activeness_date,\n calendar.sms_user_id,\n IFNULL(MAX(install.is_app_installed),0) AS is_app_installed,\n IFNULL(MAX(opened.is_user_open),0) AS is_user_open,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_user_date AS calendar\nLEFT JOIN import_user_installation_over_time AS install\n ON calendar.sms_user_id = install.sms_user_id\n AND calendar.date BETWEEN DATE(install.from_time) AND DATE(install.to_time)\nLEFT JOIN import_user_open_over_time AS opened\n ON calendar.sms_user_id = opened.sms_user_id\n AND calendar.date BETWEEN DATE(opened.from_time) AND DATE(opened.to_time) \nGROUP BY 1,2\n)\n\n-- Result --\n\nSELECT *\nFROM user_activeness_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_customer": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_customer", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.sql", "unique_id": "model.yoda.analytics___sms__user_customer", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_customer", "analytics___sms__user_customer"], "alias": "analytics___sms__user_customer", "checksum": {"name": "sha256", "checksum": "7ac9cc57333c2f4497e37bfdb006e602a9a521dde0cbcb3db856973172add614"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["sms_user_id", "customer_email"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled incremental table of sms users and their customers' email addresses.\nThe purpose of this table is to save runtimes on counting unique customers.\nGranularity: sms_user_id | customer_email", "columns": {"sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_email": {"name": "customer_email", "description": "customer email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date": {"name": "created_date", "description": "customer creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["sms_user_id", "customer_email"], "incremental_strategy": "merge"}, "created_at": 1700082658.7669666, "relation_name": "dev_dkruh1.analytics___sms__user_customer", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental','view'),\n unique_key=['sms_user_id','customer_email'],\n incremental_strategy = 'merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.sms_user_customer ZORDER BY sms_user_id;')\n )\n}}\n\n-- Import --\n\nWITH import_sms_shopify_customer AS (\nSELECT * FROM {{ ref('analytics___sms_stg__shopify_customer') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='created_date',subtract=14)}}\n),\n\n-- Logic --\n\nsms_user_customer_res AS (\nSELECT\n sms_user_id,\n email AS customer_email,\n MAX(created_date) AS created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_sms_shopify_customer\nWHERE created_date <= DATE_SUB(CURRENT_DATE,1)\nAND is_logical_deleted = 0\nAND sms_user_id IS NOT NULL\nAND email IS NOT NULL\nGROUP BY 1,2\n)\n\n-- Result --\n\nSELECT *\nFROM sms_user_customer_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__shopify_customer"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_shopify_customer AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__shopify_customer\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\n-- Logic --\n\nsms_user_customer_res AS (\nSELECT\n sms_user_id,\n email AS customer_email,\n MAX(created_date) AS created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_sms_shopify_customer\nWHERE created_date <= DATE_SUB(CURRENT_DATE,1)\nAND is_logical_deleted = 0\nAND sms_user_id IS NOT NULL\nAND email IS NOT NULL\nGROUP BY 1,2\n)\n\n-- Result --\n\nSELECT *\nFROM sms_user_customer_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_dates_history": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_dates_history", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.sql", "unique_id": "model.yoda.analytics___sms__user_dates_history", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_dates_history", "analytics___sms__user_dates_history"], "alias": "analytics___sms__user_dates_history", "checksum": {"name": "sha256", "checksum": "6905869188daf0c8f90b5e8c25b12c3f7626257dacfece7833d3c3e657f4afae"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["sms_user_id", "category"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled incremental table of sms users dates history.\nThe purpose of the table is to save runtimes on recalculating historical dates.\nGranularity: sms_user_id | category", "columns": {"sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier - PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "category": {"name": "category", "description": "historical date category: usage_first_date, usage_last_date, etc.\n- PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "the value of the historical date category", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["sms_user_id", "category"], "incremental_strategy": "merge"}, "created_at": 1700082658.806774, "relation_name": "dev_dkruh1.analytics___sms__user_dates_history", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental','view'),\n unique_key=['sms_user_id','category'],\n incremental_strategy = 'merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.sms_user_dates_history ZORDER BY sms_user_id;')\n )\n}}\n\n-- Variables --\n\n{%- set list_prefix_usage = ['','campaign_','automation_','flow_','sms_','mms_'] -%}\n{%- set ns = namespace(cte_names=[]) %}\n\n-- Import --\n\nWITH import_sms_user_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___sms__user_metrics_daily') }}\n),\n\n-- Logic --\n\nuser_metrics_daily AS (\nSELECT\n date,\n sms_user_id,\n usage_sum,\n campaign_usage_sum,\n automation_usage_sum,\n flow_usage_sum,\n sms_usage_sum,\n mms_usage_sum\nFROM import_sms_user_metrics_daily\n),\n\n{% for prefix in list_prefix_usage %}\n {%- set cte_name = 'first_day_of_' ~ prefix ~ 'usage' -%}\n {%- do ns.cte_names.append(cte_name) -%}\n {%- set category = prefix ~ 'usage_first_date' -%}\n {%- set sq_category = prefix ~ 'usage_last_date' -%}\n {%- set column = prefix ~ 'usage_sum' -%}\n\n{{cte_name}} AS (\nSELECT\n metrics.sms_user_id,\n '{{category}}' AS category,\n DATE(MIN(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n{% if is_incremental() -%}\nLEFT JOIN {{this}} AS this\n ON this.category = '{{category}}'\n AND metrics.sms_user_id = this.sms_user_id\nWHERE metrics.{{column}} > 0\nAND metrics.date > (SELECT NVL(MAX(value),'1900-01-01') FROM {{this}} WHERE category = '{{sq_category}}')\nAND this.value IS NULL\n{% else %}\nWHERE metrics.{{column}} > 0\n{%- endif %}\nGROUP BY 1\n),\n\n {%- set cte_name = 'last_day_of_' ~ prefix ~ 'usage' -%}\n {%- do ns.cte_names.append(cte_name) -%}\n {%- set category = prefix ~ 'usage_last_date' %}\n\n{{cte_name}} AS (\nSELECT\n metrics.sms_user_id,\n '{{category}}' AS category,\n DATE(MAX(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n{% if is_incremental() -%}\nLEFT JOIN {{this}} AS this\n ON this.category = '{{category}}'\n AND metrics.sms_user_id = this.sms_user_id\nWHERE metrics.{{column}} > 0\nAND metrics.date > (SELECT NVL(MAX(value),'1900-01-01') FROM {{this}} WHERE category = '{{category}}')\nAND metrics.date > NVL(this.value,'1900-01-01')\n{% else %}\nWHERE metrics.{{column}} > 0\n{%- endif %}\nGROUP BY 1\n),\n\n{% endfor -%}\n\ncumulative_usage_calculation AS (\nSELECT\n metrics.sms_user_id,\n metrics.date,\n SUM(metrics.usage_sum) OVER (PARTITION BY metrics.sms_user_id ORDER BY metrics.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_usage_in_usd\nFROM user_metrics_daily AS metrics\n{% if is_incremental() -%}\nLEFT JOIN {{this}} AS this\n ON this.category = '3_usd_cumulative_usage_first_date'\n AND metrics.sms_user_id = this.sms_user_id\nWHERE metrics.usage_sum > 0\nAND this.value IS NULL\n{% else %}\nWHERE metrics.usage_sum > 0\n{%- endif %}\n),\n\nfirst_day_of_3_usd_usage AS (\nSELECT\n sms_user_id,\n '3_usd_cumulative_usage_first_date' AS category,\n DATE(MIN(date)) AS value\nFROM cumulative_usage_calculation\nWHERE cumulative_usage_in_usd >= 3\nGROUP BY 1\n),\n\ncategory_union AS (\n{%- for cte in ns.cte_names %}\nSELECT\n sms_user_id,\n category,\n value\nFROM {{cte}}\nUNION ALL\n{%- endfor %}\nSELECT\n sms_user_id,\n category,\n value\nFROM first_day_of_3_usd_usage\n),\n\nsms_user_dates_history_res AS (\nSELECT\n sms_user_id,\n category,\n value,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM category_union\n)\n\n-- Result --\n\nSELECT *\nFROM sms_user_dates_history_res", "language": "sql", "refs": [{"name": "analytics___sms__user_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__user_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.sql", "compiled": true, "compiled_code": "\n\n-- Variables --\n\n-- Import --\n\nWITH import_sms_user_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_metrics_daily\n),\n\n-- Logic --\n\nuser_metrics_daily AS (\nSELECT\n date,\n sms_user_id,\n usage_sum,\n campaign_usage_sum,\n automation_usage_sum,\n flow_usage_sum,\n sms_usage_sum,\n mms_usage_sum\nFROM import_sms_user_metrics_daily\n),\n\nfirst_day_of_usage AS (\nSELECT\n metrics.sms_user_id,\n 'usage_first_date' AS category,\n DATE(MIN(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.usage_sum > 0\nGROUP BY 1\n),\n\nlast_day_of_usage AS (\nSELECT\n metrics.sms_user_id,\n 'usage_last_date' AS category,\n DATE(MAX(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.usage_sum > 0\nGROUP BY 1\n),\n\nfirst_day_of_campaign_usage AS (\nSELECT\n metrics.sms_user_id,\n 'campaign_usage_first_date' AS category,\n DATE(MIN(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.campaign_usage_sum > 0\nGROUP BY 1\n),\n\nlast_day_of_campaign_usage AS (\nSELECT\n metrics.sms_user_id,\n 'campaign_usage_last_date' AS category,\n DATE(MAX(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.campaign_usage_sum > 0\nGROUP BY 1\n),\n\nfirst_day_of_automation_usage AS (\nSELECT\n metrics.sms_user_id,\n 'automation_usage_first_date' AS category,\n DATE(MIN(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.automation_usage_sum > 0\nGROUP BY 1\n),\n\nlast_day_of_automation_usage AS (\nSELECT\n metrics.sms_user_id,\n 'automation_usage_last_date' AS category,\n DATE(MAX(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.automation_usage_sum > 0\nGROUP BY 1\n),\n\nfirst_day_of_flow_usage AS (\nSELECT\n metrics.sms_user_id,\n 'flow_usage_first_date' AS category,\n DATE(MIN(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.flow_usage_sum > 0\nGROUP BY 1\n),\n\nlast_day_of_flow_usage AS (\nSELECT\n metrics.sms_user_id,\n 'flow_usage_last_date' AS category,\n DATE(MAX(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.flow_usage_sum > 0\nGROUP BY 1\n),\n\nfirst_day_of_sms_usage AS (\nSELECT\n metrics.sms_user_id,\n 'sms_usage_first_date' AS category,\n DATE(MIN(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.sms_usage_sum > 0\nGROUP BY 1\n),\n\nlast_day_of_sms_usage AS (\nSELECT\n metrics.sms_user_id,\n 'sms_usage_last_date' AS category,\n DATE(MAX(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.sms_usage_sum > 0\nGROUP BY 1\n),\n\nfirst_day_of_mms_usage AS (\nSELECT\n metrics.sms_user_id,\n 'mms_usage_first_date' AS category,\n DATE(MIN(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.mms_usage_sum > 0\nGROUP BY 1\n),\n\nlast_day_of_mms_usage AS (\nSELECT\n metrics.sms_user_id,\n 'mms_usage_last_date' AS category,\n DATE(MAX(metrics.date)) AS value\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.mms_usage_sum > 0\nGROUP BY 1\n),\n\ncumulative_usage_calculation AS (\nSELECT\n metrics.sms_user_id,\n metrics.date,\n SUM(metrics.usage_sum) OVER (PARTITION BY metrics.sms_user_id ORDER BY metrics.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_usage_in_usd\nFROM user_metrics_daily AS metrics\n\nWHERE metrics.usage_sum > 0\n),\n\nfirst_day_of_3_usd_usage AS (\nSELECT\n sms_user_id,\n '3_usd_cumulative_usage_first_date' AS category,\n DATE(MIN(date)) AS value\nFROM cumulative_usage_calculation\nWHERE cumulative_usage_in_usd >= 3\nGROUP BY 1\n),\n\ncategory_union AS (\nSELECT\n sms_user_id,\n category,\n value\nFROM first_day_of_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM last_day_of_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM first_day_of_campaign_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM last_day_of_campaign_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM first_day_of_automation_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM last_day_of_automation_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM first_day_of_flow_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM last_day_of_flow_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM first_day_of_sms_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM last_day_of_sms_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM first_day_of_mms_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM last_day_of_mms_usage\nUNION ALL\nSELECT\n sms_user_id,\n category,\n value\nFROM first_day_of_3_usd_usage\n),\n\nsms_user_dates_history_res AS (\nSELECT\n sms_user_id,\n category,\n value,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM category_union\n)\n\n-- Result --\n\nSELECT *\nFROM sms_user_dates_history_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_installation_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_installation_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.sql", "unique_id": "model.yoda.analytics___sms__user_installation_over_time", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_installation_over_time", "analytics___sms__user_installation_over_time"], "alias": "analytics___sms__user_installation_over_time", "checksum": {"name": "sha256", "checksum": "26ba93bce1c24a0b7f53df1c50da438eabc6f8806d4da2533bd83e701ef33386"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms user install & uninstall status over time | PK and granularity: sms_user_id, from_time", "columns": {"sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "from_time": {"name": "from_time", "description": "user installation status range start timestamp - primary key 2/2 - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "user installation status range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "installation_status": {"name": "installation_status", "description": "sms app installation status: installed/uninstalled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_app_installed": {"name": "is_app_installed", "description": "installation_status = installed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "event_source": {"name": "event_source", "description": "sms_user_created, user_event_log_sms_user, user_event_log_shopify_user, user_event_log_bigcommerce_user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_and_date_row_ranking": {"name": "user_and_date_row_ranking", "description": "row ranking for each user and created_date by created_at (i.e, 1 is the first row for each user and created date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "user_and_date_row_ranking_backwards": {"name": "user_and_date_row_ranking_backwards", "description": "row ranking for each user and created_date by created_at (i.e, 1 is the last row for each user and created date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_date": {"name": "created_date", "description": "installation event created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082658.8510413, "relation_name": "dev_dkruh1.analytics___sms__user_installation_over_time", "raw_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__sms_user') }}\n),\n\nimport_sms_stg__user_event_log AS (\nSELECT * FROM {{ ref('analytics___sms_stg__user_event_log') }}\n),\n\nimport_sms_stg__shopify_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__shopify_user') }}\n),\n\nimport_sms_stg__bigcommerce_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__bigcommerce_user') }}\n),\n\n-- Logic --\n\nsms_user_created AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n 'sms_user_created' AS event_source,\n 'installed' AS event_type\nFROM import_sms_user\nWHERE created_at IS NOT NULL\n),\n\nuser_event_log_sms_user AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n 'user_event_log_sms_user' AS event_source,\n IF(event_name = 'install','installed','uninstalled') AS event_type\nFROM import_sms_stg__user_event_log\nWHERE LOWER(event_name) IN ('install','uninstall')\nAND NVL(sms_user_id,0) NOT IN (-1,0)\n),\n\nuser_event_log_platform_user AS (\nSELECT\n NVL(shopify.sms_user_id, bigcommerce.sms_user_id) AS sms_user_id,\n event.created_date,\n event.created_at,\n CONCAT('user_event_log_',\n IF(shopify.sms_user_id IS NOT NULL, 'shopify', 'bigcommerce'),\n '_user') AS event_source,\n IF(event.event_name = 'install','installed','uninstalled') AS event_type\nFROM import_sms_stg__user_event_log AS event\nLEFT JOIN import_sms_stg__shopify_user AS shopify\n ON LOWER(event.platform_name) = 'shopify'\n AND event.platform_user_id = shopify.shopify_user_id\nLEFT JOIN import_sms_stg__bigcommerce_user AS bigcommerce\n ON LOWER(event.platform_name) = 'bigcommerce'\n AND event.platform_user_id = bigcommerce.bigcommerce_user_id\nWHERE LOWER(event.event_name) IN ('install','uninstall')\nAND event.sms_user_id IN (-1,0)\nAND COALESCE(shopify.sms_user_id,bigcommerce.sms_user_id,0) <> 0\n),\n\nuser_event_union AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_log_sms_user\nUNION ALL\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_log_platform_user\n),\n\nall_event_union AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM sms_user_created\nUNION ALL\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_union\n),\n\nevent_ranking AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_at ORDER BY IF(event_type = 'installed',0,1), event_source) AS row_ranking_user_and_time\nFROM all_event_union\n),\n\nredundant_row_calculation AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type,\n IF(event_type = LAG(event_type) OVER (PARTITION BY sms_user_id ORDER BY created_at),1,0) AS is_redundant_row\nFROM event_ranking\nWHERE row_ranking_user_and_time = 1\n),\n\nuser_installation_over_time_res AS (\nSELECT\n sms_user_id,\n created_at AS from_time,\n LEAD(created_at,1,'2999-12-31') OVER (PARTITION BY sms_user_id ORDER BY created_at) AS to_time,\n event_type AS installation_status,\n SMALLINT(IF(event_type = 'installed',1,0)) AS is_app_installed,\n event_source,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_date ORDER BY created_at) AS user_and_date_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_date ORDER BY created_at DESC) AS user_and_date_row_ranking_backwards,\n created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM redundant_row_calculation\nWHERE is_redundant_row = 0\n)\n\n-- Result --\n\nSELECT *\nFROM user_installation_over_time_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__sms_user", "package": null, "version": null}, {"name": "analytics___sms_stg__user_event_log", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_user", "package": null, "version": null}, {"name": "analytics___sms_stg__bigcommerce_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__user_event_log", "model.yoda.analytics___sms_stg__shopify_user", "model.yoda.analytics___sms_stg__bigcommerce_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__sms_user\n),\n\nimport_sms_stg__user_event_log AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__user_event_log\n),\n\nimport_sms_stg__shopify_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__shopify_user\n),\n\nimport_sms_stg__bigcommerce_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__bigcommerce_user\n),\n\n-- Logic --\n\nsms_user_created AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n 'sms_user_created' AS event_source,\n 'installed' AS event_type\nFROM import_sms_user\nWHERE created_at IS NOT NULL\n),\n\nuser_event_log_sms_user AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n 'user_event_log_sms_user' AS event_source,\n IF(event_name = 'install','installed','uninstalled') AS event_type\nFROM import_sms_stg__user_event_log\nWHERE LOWER(event_name) IN ('install','uninstall')\nAND NVL(sms_user_id,0) NOT IN (-1,0)\n),\n\nuser_event_log_platform_user AS (\nSELECT\n NVL(shopify.sms_user_id, bigcommerce.sms_user_id) AS sms_user_id,\n event.created_date,\n event.created_at,\n CONCAT('user_event_log_',\n IF(shopify.sms_user_id IS NOT NULL, 'shopify', 'bigcommerce'),\n '_user') AS event_source,\n IF(event.event_name = 'install','installed','uninstalled') AS event_type\nFROM import_sms_stg__user_event_log AS event\nLEFT JOIN import_sms_stg__shopify_user AS shopify\n ON LOWER(event.platform_name) = 'shopify'\n AND event.platform_user_id = shopify.shopify_user_id\nLEFT JOIN import_sms_stg__bigcommerce_user AS bigcommerce\n ON LOWER(event.platform_name) = 'bigcommerce'\n AND event.platform_user_id = bigcommerce.bigcommerce_user_id\nWHERE LOWER(event.event_name) IN ('install','uninstall')\nAND event.sms_user_id IN (-1,0)\nAND COALESCE(shopify.sms_user_id,bigcommerce.sms_user_id,0) <> 0\n),\n\nuser_event_union AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_log_sms_user\nUNION ALL\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_log_platform_user\n),\n\nall_event_union AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM sms_user_created\nUNION ALL\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_union\n),\n\nevent_ranking AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_at ORDER BY IF(event_type = 'installed',0,1), event_source) AS row_ranking_user_and_time\nFROM all_event_union\n),\n\nredundant_row_calculation AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type,\n IF(event_type = LAG(event_type) OVER (PARTITION BY sms_user_id ORDER BY created_at),1,0) AS is_redundant_row\nFROM event_ranking\nWHERE row_ranking_user_and_time = 1\n),\n\nuser_installation_over_time_res AS (\nSELECT\n sms_user_id,\n created_at AS from_time,\n LEAD(created_at,1,'2999-12-31') OVER (PARTITION BY sms_user_id ORDER BY created_at) AS to_time,\n event_type AS installation_status,\n SMALLINT(IF(event_type = 'installed',1,0)) AS is_app_installed,\n event_source,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_date ORDER BY created_at) AS user_and_date_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_date ORDER BY created_at DESC) AS user_and_date_row_ranking_backwards,\n created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM redundant_row_calculation\nWHERE is_redundant_row = 0\n)\n\n-- Result --\n\nSELECT *\nFROM user_installation_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_metrics_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_metrics_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.sql", "unique_id": "model.yoda.analytics___sms__user_metrics_daily", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_metrics_daily", "analytics___sms__user_metrics_daily"], "alias": "analytics___sms__user_metrics_daily", "checksum": {"name": "sha256", "checksum": "2d441d3c8e7fd153d5242cdea7e8d7d47bd7eaa76e166125a996c1c85c671338"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["date", "sms_user_id"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Daily metrics incremental table of sms users population.\nGranularity: date | sms_user_id", "columns": {"date": {"name": "date", "description": "metric date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type": {"name": "plan_type", "description": "plan type: self_service / high_touch", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "plan customer type: HT/LT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriber_cnt": {"name": "subscriber_cnt", "description": "subscribers count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "esp_subscriber_cnt": {"name": "esp_subscriber_cnt", "description": "subscribers that were added via connection to an email provider (like Klaviyo)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "non_esp_subscriber_cnt": {"name": "non_esp_subscriber_cnt", "description": "subscribers that were NOT added via connection to an email provider (like Klaviyo)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imported_subscriber_cnt": {"name": "imported_subscriber_cnt", "description": "imported subscribers count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_subscriber_cnt": {"name": "new_subscriber_cnt", "description": "new daily subscribers count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unsubscriber_cnt": {"name": "unsubscriber_cnt", "description": "unsubscribers count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "credit_purchase_sum": {"name": "credit_purchase_sum", "description": "user's credit purchase from analytics___sms_stg__purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_usage_sum": {"name": "sms_usage_sum", "description": "sum price_billed_in_usd of sms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "mms_usage_sum": {"name": "mms_usage_sum", "description": "sum price_billed_in_usd of mms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "usage_sum": {"name": "usage_sum", "description": "total sum price_billed_in_usd of messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,4)"}, "sms_message_cnt": {"name": "sms_message_cnt", "description": "number of sms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_message_cnt_by_carrier": {"name": "sms_message_cnt_by_carrier", "description": "number of sms message parts sent by the carrier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mms_message_cnt": {"name": "mms_message_cnt", "description": "number of mms messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mms_message_cnt_by_carrier": {"name": "mms_message_cnt_by_carrier", "description": "number of mms message parts sent by the carrier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_cnt": {"name": "message_cnt", "description": "total number of messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_cnt_by_carrier": {"name": "message_cnt_by_carrier", "description": "total number of message parts sent by the carrier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automation_usage_sum": {"name": "automation_usage_sum", "description": "sum price_billed_in_usd of messages sent from automations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "campaign_usage_sum": {"name": "campaign_usage_sum", "description": "sum price_billed_in_usd of messages sent from campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "flow_usage_sum": {"name": "flow_usage_sum", "description": "sum price_billed_in_usd of messages sent from flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "other_usage_sum": {"name": "other_usage_sum", "description": "sum price_billed_in_usd of messages sent from others", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(24,4)"}, "automation_message_cnt": {"name": "automation_message_cnt", "description": "number of messages sent from automations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automation_message_cnt_by_carrier": {"name": "automation_message_cnt_by_carrier", "description": "number of message parts sent by the carrier from automations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_message_cnt": {"name": "campaign_message_cnt", "description": "number of messages sent from campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_message_cnt_by_carrier": {"name": "campaign_message_cnt_by_carrier", "description": "number of message parts sent by the carrier from campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_message_cnt": {"name": "flow_message_cnt", "description": "number of messages sent from flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_message_cnt_by_carrier": {"name": "flow_message_cnt_by_carrier", "description": "number of message parts sent by the carrier from flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "other_message_cnt": {"name": "other_message_cnt", "description": "number of messages sent from others", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "other_message_cnt_by_carrier": {"name": "other_message_cnt_by_carrier", "description": "number of message parts sent by the carrier from others", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_automation_cnt": {"name": "active_automation_cnt", "description": "unique number of automation_id that had 1 or more messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_campaign_cnt": {"name": "active_campaign_cnt", "description": "unique number of campaign_id that had 1 or more messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_flow_cnt": {"name": "active_flow_cnt", "description": "unique number of flow_id that had 1 or more messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_cnt": {"name": "customer_cnt", "description": "number of customers the store has", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_customer_cnt": {"name": "new_customer_cnt", "description": "number of new customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_pop_up_enabled": {"name": "is_pop_up_enabled", "description": "indicator = 1 IF form_type = 'popup' AND form_status = 'published'\nindicator IS NULL for dates before snapshot history (date < 23.10.2023)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active": {"name": "is_active", "description": "active = is usage_sum per day > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_installed": {"name": "is_installed", "description": "app installed indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_user_open": {"name": "is_user_open", "description": "user store open indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "merge", "unique_key": ["date", "sms_user_id"], "partition_by": ["date"]}, "created_at": 1700082658.9209843, "relation_name": "dev_dkruh1.analytics___sms__user_metrics_daily", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'merge',\n unique_key = ['date','sms_user_id'],\n partition_by=['date'],\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.sms_user_metrics_daily ZORDER BY sms_user_id;')\n )\n}}\n\n-- Import --\n\nWITH import_user_date AS (\nSELECT * FROM {{ ref('analytics___sms_stg__user_date_explode_from_creation') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='date',subtract=60)}}\n),\n\nimport_sms_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__sms_user') }}\n),\n\nimport_sms_user_plan_daily AS (\nSELECT * FROM {{ ref('analytics___sms__user_plan_daily') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='date',subtract=60)}}\n),\n\nimport_sms_user_subscribers AS (\nSELECT * FROM {{ ref('analytics___sms_stg__fact_agg_sms_user_profile_daily') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='date',subtract=60)}}\n),\n\nimport_sms_user_activeness_daily AS (\nSELECT * FROM {{ ref('analytics___sms__user_activeness_daily') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='date',query_condition_column='activeness_date',subtract=60)}}\n),\n\nimport_sms_user_purchase AS (\nSELECT * FROM {{ ref('analytics___sms_stg__purchase') }}\n),\n\nimport_sms_user_shopify_customer AS (\nSELECT * FROM {{ ref('analytics___sms_stg__shopify_customer') }}\n),\n\nimport_api_calls AS (\nSELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='date',query_condition_column='created_date',subtract=60)}}\n),\n\nimport_pop_up_status_over_time AS (\nSELECT * FROM {{ ref('analytics___sms__user_pop_up_status_over_time') }}\n),\n\n-- Logic --\n\napi_call_daily AS (\nSELECT\n created_date AS date,\n sms_user_id,\n SUM(IF(is_sms = 1, price_billed_in_usd, 0)) AS sms_usage_sum,\n SUM(IF(is_mms = 1, price_billed_in_usd, 0)) AS mms_usage_sum,\n SUM(price_billed_in_usd) AS usage_sum,\n COUNT(IF(is_sms = 1, 1, NULL)) AS sms_message_cnt,\n SUM(IF(is_sms = 1, message_parts_number, 0)) AS sms_message_cnt_by_carrier,\n COUNT(IF(is_mms= 1, 1, NULL)) AS mms_message_cnt,\n SUM(IF(is_mms=1, message_parts_number, 0)) AS mms_message_cnt_by_carrier,\n COUNT(*) AS message_cnt,\n SUM(message_parts_number) AS message_cnt_by_carrier,\n SUM(IF(message_source_type = 1, price_billed_in_usd, 0)) AS automation_usage_sum, \n SUM(IF(message_source_type = 2, price_billed_in_usd, 0)) AS campaign_usage_sum,\n SUM(IF(message_source_type = 3, price_billed_in_usd, 0)) AS flow_usage_sum,\n SUM(IF(message_source_type = 4, price_billed_in_usd, 0)) AS other_usage_sum,\n COUNT(IF(message_source_type = 1, 1, NULL)) AS automation_message_cnt,\n SUM(IF(message_source_type = 1, message_parts_number, 0)) AS automation_message_cnt_by_carrier,\n COUNT(IF(message_source_type = 2, 1, NULL)) AS campaign_message_cnt,\n SUM(IF(message_source_type = 2, message_parts_number, 0)) AS campaign_message_cnt_by_carrier,\n COUNT(IF(message_source_type = 3, 1, NULL)) AS flow_message_cnt,\n SUM(IF(message_source_type = 3, message_parts_number, 0)) AS flow_message_cnt_by_carrier,\n COUNT(IF(message_source_type = 4, 1, NULL)) AS other_message_cnt,\n SUM(IF(message_source_type = 4, message_parts_number, 0)) AS other_message_cnt_by_carrier,\n COUNT(DISTINCT IF(message_source_type = 1, event_id, NULL)) AS active_automation_cnt,\n COUNT(DISTINCT IF(message_source_type = 2, campaign_id, NULL)) AS active_campaign_cnt,\n COUNT(DISTINCT IF(message_source_type = 3, flow_id, NULL)) AS active_flow_cnt\nFROM import_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nGROUP BY 1,2\n),\n\ncustomers_count_by_created_date AS (\nSELECT\n created_date,\n sms_user_id,\n COUNT(DISTINCT email) AS customers_cnt\nFROM import_sms_user_shopify_customer\nWHERE is_logical_deleted = 0 \nAND email IS NOT NULL\nGROUP BY 1,2\n),\n\naccumulated_customers AS (\nSELECT\n sms_user_id,\n created_date,\n LEAD(created_date,1,DATE('2999-12-31')) OVER (PARTITION BY sms_user_id ORDER BY created_date) AS next_update_date,\n customers_cnt,\n SUM(customers_cnt) OVER (PARTITION BY sms_user_id ORDER BY created_date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS aggregated_customers\nFROM customers_count_by_created_date\n),\n\ncredit_purchase AS (\nSELECT\n created_date AS date,\n sms_user_id,\n SUM(amount_paid) AS credit_purchased\nFROM import_sms_user_purchase\nWHERE is_purchase = 1\nAND purchase_id NOT IN (1301930,1301931)\nGROUP BY 1,2\n),\n\nuser_metrics_daily_res AS (\nSELECT\n user_date.date,\n user_date.sms_user_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n NVL(subscriber.total_subscribers,0) AS subscriber_cnt,\n NVL(subscriber.total_esp_subscribers,0) AS esp_subscriber_cnt,\n NVL(subscriber.total_non_esp_subscribers,0) AS non_esp_subscriber_cnt,\n NVL(subscriber.total_imported_subscribers,0) AS imported_subscriber_cnt,\n NVL(subscriber.total_new_subscribers,0) AS new_subscriber_cnt,\n NVL(subscriber.total_unsubscribers,0) AS unsubscriber_cnt,\n NVL(purchase.credit_purchased,0) AS credit_purchase_sum,\n NVL(api_call.sms_usage_sum,0) AS sms_usage_sum,\n NVL(api_call.mms_usage_sum,0) AS mms_usage_sum,\n NVL(api_call.usage_sum,0) AS usage_sum,\n NVL(api_call.sms_message_cnt,0) AS sms_message_cnt,\n NVL(api_call.sms_message_cnt_by_carrier,0) AS sms_message_cnt_by_carrier,\n NVL(api_call.mms_message_cnt,0) AS mms_message_cnt,\n NVL(api_call.mms_message_cnt_by_carrier,0) AS mms_message_cnt_by_carrier,\n NVL(api_call.message_cnt,0) AS message_cnt,\n NVL(api_call.message_cnt_by_carrier,0) AS message_cnt_by_carrier,\n NVL(api_call.automation_usage_sum,0) AS automation_usage_sum,\n NVL(api_call.campaign_usage_sum,0) AS campaign_usage_sum,\n NVL(api_call.flow_usage_sum,0) AS flow_usage_sum,\n NVL(api_call.other_usage_sum,0) AS other_usage_sum,\n NVL(api_call.automation_message_cnt,0) AS automation_message_cnt,\n NVL(api_call.automation_message_cnt_by_carrier,0) AS automation_message_cnt_by_carrier,\n NVL(api_call.campaign_message_cnt,0) AS campaign_message_cnt,\n NVL(api_call.campaign_message_cnt_by_carrier,0) AS campaign_message_cnt_by_carrier,\n NVL(api_call.flow_message_cnt,0) AS flow_message_cnt,\n NVL(api_call.flow_message_cnt_by_carrier,0) AS flow_message_cnt_by_carrier,\n NVL(api_call.other_message_cnt,0) AS other_message_cnt,\n NVL(api_call.other_message_cnt_by_carrier,0) AS other_message_cnt_by_carrier,\n NVL(api_call.active_automation_cnt,0) AS active_automation_cnt,\n NVL(api_call.active_campaign_cnt,0) AS active_campaign_cnt,\n NVL(api_call.active_flow_cnt,0) AS active_flow_cnt,\n NVL(customers.aggregated_customers,0) AS customer_cnt,\n NVL(IF(user_date.date <> customers.created_date,0,customers.customers_cnt),0) AS new_customer_cnt,\n SMALLINT(pop_up.is_pop_up_enabled) AS is_pop_up_enabled,\n SMALLINT(IF(NVL(api_call.usage_sum,0) > 0,1,0)) AS is_active,\n SMALLINT(NVL(activeness.is_app_installed,0)) AS is_installed,\n SMALLINT(NVL(activeness.is_user_open,0)) AS is_user_open,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_user_date AS user_date\nLEFT JOIN import_sms_user_plan_daily AS plan\n ON user_date.date = plan.date\n AND user_date.sms_user_id = plan.sms_user_id\nLEFT JOIN import_sms_user_subscribers AS subscriber\n ON user_date.date = subscriber.date\n AND user_date.sms_user_id = subscriber.user_id\nLEFT JOIN import_sms_user_activeness_daily AS activeness\n ON user_date.date = activeness.activeness_date\n AND user_date.sms_user_id = activeness.sms_user_id\nLEFT JOIN api_call_daily AS api_call\n ON user_date.date = api_call.date\n AND user_date.sms_user_id = api_call.sms_user_id\nLEFT JOIN credit_purchase AS purchase\n ON user_date.date = purchase.date\n AND user_date.sms_user_id = purchase.sms_user_id\nLEFT JOIN accumulated_customers AS customers\n ON user_date.sms_user_id = customers.sms_user_id\n AND user_date.date >= customers.created_date \n AND user_date.date < customers.next_update_date\nLEFT JOIN import_pop_up_status_over_time AS pop_up\n ON user_date.sms_user_id = pop_up.sms_user_id\n AND user_date.date >= pop_up.from_date \n AND user_date.date < pop_up.to_date\n)\n\n-- Result --\n\nSELECT * \nFROM user_metrics_daily_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__user_date_explode_from_creation", "package": null, "version": null}, {"name": "analytics___sms_stg__sms_user", "package": null, "version": null}, {"name": "analytics___sms__user_plan_daily", "package": null, "version": null}, {"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily", "package": null, "version": null}, {"name": "analytics___sms__user_activeness_daily", "package": null, "version": null}, {"name": "analytics___sms_stg__purchase", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_customer", "package": null, "version": null}, {"name": "analytics___sms_stg__api_calls", "package": null, "version": null}, {"name": "analytics___sms__user_pop_up_status_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__user_date_explode_from_creation", "model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms__user_plan_daily", "model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily", "model.yoda.analytics___sms__user_activeness_daily", "model.yoda.analytics___sms_stg__purchase", "model.yoda.analytics___sms_stg__shopify_customer", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms__user_pop_up_status_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_user_date AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__user_date_explode_from_creation\nWHERE DATE(date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_sms_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__sms_user\n),\n\nimport_sms_user_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_plan_daily\nWHERE DATE(date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_sms_user_subscribers AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__fact_agg_sms_user_profile_daily\nWHERE DATE(date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_sms_user_activeness_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_activeness_daily\nWHERE DATE(activeness_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_sms_user_purchase AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__purchase\n),\n\nimport_sms_user_shopify_customer AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__shopify_customer\n),\n\nimport_api_calls AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_pop_up_status_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_pop_up_status_over_time\n),\n\n-- Logic --\n\napi_call_daily AS (\nSELECT\n created_date AS date,\n sms_user_id,\n SUM(IF(is_sms = 1, price_billed_in_usd, 0)) AS sms_usage_sum,\n SUM(IF(is_mms = 1, price_billed_in_usd, 0)) AS mms_usage_sum,\n SUM(price_billed_in_usd) AS usage_sum,\n COUNT(IF(is_sms = 1, 1, NULL)) AS sms_message_cnt,\n SUM(IF(is_sms = 1, message_parts_number, 0)) AS sms_message_cnt_by_carrier,\n COUNT(IF(is_mms= 1, 1, NULL)) AS mms_message_cnt,\n SUM(IF(is_mms=1, message_parts_number, 0)) AS mms_message_cnt_by_carrier,\n COUNT(*) AS message_cnt,\n SUM(message_parts_number) AS message_cnt_by_carrier,\n SUM(IF(message_source_type = 1, price_billed_in_usd, 0)) AS automation_usage_sum, \n SUM(IF(message_source_type = 2, price_billed_in_usd, 0)) AS campaign_usage_sum,\n SUM(IF(message_source_type = 3, price_billed_in_usd, 0)) AS flow_usage_sum,\n SUM(IF(message_source_type = 4, price_billed_in_usd, 0)) AS other_usage_sum,\n COUNT(IF(message_source_type = 1, 1, NULL)) AS automation_message_cnt,\n SUM(IF(message_source_type = 1, message_parts_number, 0)) AS automation_message_cnt_by_carrier,\n COUNT(IF(message_source_type = 2, 1, NULL)) AS campaign_message_cnt,\n SUM(IF(message_source_type = 2, message_parts_number, 0)) AS campaign_message_cnt_by_carrier,\n COUNT(IF(message_source_type = 3, 1, NULL)) AS flow_message_cnt,\n SUM(IF(message_source_type = 3, message_parts_number, 0)) AS flow_message_cnt_by_carrier,\n COUNT(IF(message_source_type = 4, 1, NULL)) AS other_message_cnt,\n SUM(IF(message_source_type = 4, message_parts_number, 0)) AS other_message_cnt_by_carrier,\n COUNT(DISTINCT IF(message_source_type = 1, event_id, NULL)) AS active_automation_cnt,\n COUNT(DISTINCT IF(message_source_type = 2, campaign_id, NULL)) AS active_campaign_cnt,\n COUNT(DISTINCT IF(message_source_type = 3, flow_id, NULL)) AS active_flow_cnt\nFROM import_api_calls\nWHERE price_billed_in_usd > 0\nAND is_logical_deleted = 0\nGROUP BY 1,2\n),\n\ncustomers_count_by_created_date AS (\nSELECT\n created_date,\n sms_user_id,\n COUNT(DISTINCT email) AS customers_cnt\nFROM import_sms_user_shopify_customer\nWHERE is_logical_deleted = 0 \nAND email IS NOT NULL\nGROUP BY 1,2\n),\n\naccumulated_customers AS (\nSELECT\n sms_user_id,\n created_date,\n LEAD(created_date,1,DATE('2999-12-31')) OVER (PARTITION BY sms_user_id ORDER BY created_date) AS next_update_date,\n customers_cnt,\n SUM(customers_cnt) OVER (PARTITION BY sms_user_id ORDER BY created_date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS aggregated_customers\nFROM customers_count_by_created_date\n),\n\ncredit_purchase AS (\nSELECT\n created_date AS date,\n sms_user_id,\n SUM(amount_paid) AS credit_purchased\nFROM import_sms_user_purchase\nWHERE is_purchase = 1\nAND purchase_id NOT IN (1301930,1301931)\nGROUP BY 1,2\n),\n\nuser_metrics_daily_res AS (\nSELECT\n user_date.date,\n user_date.sms_user_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n NVL(subscriber.total_subscribers,0) AS subscriber_cnt,\n NVL(subscriber.total_esp_subscribers,0) AS esp_subscriber_cnt,\n NVL(subscriber.total_non_esp_subscribers,0) AS non_esp_subscriber_cnt,\n NVL(subscriber.total_imported_subscribers,0) AS imported_subscriber_cnt,\n NVL(subscriber.total_new_subscribers,0) AS new_subscriber_cnt,\n NVL(subscriber.total_unsubscribers,0) AS unsubscriber_cnt,\n NVL(purchase.credit_purchased,0) AS credit_purchase_sum,\n NVL(api_call.sms_usage_sum,0) AS sms_usage_sum,\n NVL(api_call.mms_usage_sum,0) AS mms_usage_sum,\n NVL(api_call.usage_sum,0) AS usage_sum,\n NVL(api_call.sms_message_cnt,0) AS sms_message_cnt,\n NVL(api_call.sms_message_cnt_by_carrier,0) AS sms_message_cnt_by_carrier,\n NVL(api_call.mms_message_cnt,0) AS mms_message_cnt,\n NVL(api_call.mms_message_cnt_by_carrier,0) AS mms_message_cnt_by_carrier,\n NVL(api_call.message_cnt,0) AS message_cnt,\n NVL(api_call.message_cnt_by_carrier,0) AS message_cnt_by_carrier,\n NVL(api_call.automation_usage_sum,0) AS automation_usage_sum,\n NVL(api_call.campaign_usage_sum,0) AS campaign_usage_sum,\n NVL(api_call.flow_usage_sum,0) AS flow_usage_sum,\n NVL(api_call.other_usage_sum,0) AS other_usage_sum,\n NVL(api_call.automation_message_cnt,0) AS automation_message_cnt,\n NVL(api_call.automation_message_cnt_by_carrier,0) AS automation_message_cnt_by_carrier,\n NVL(api_call.campaign_message_cnt,0) AS campaign_message_cnt,\n NVL(api_call.campaign_message_cnt_by_carrier,0) AS campaign_message_cnt_by_carrier,\n NVL(api_call.flow_message_cnt,0) AS flow_message_cnt,\n NVL(api_call.flow_message_cnt_by_carrier,0) AS flow_message_cnt_by_carrier,\n NVL(api_call.other_message_cnt,0) AS other_message_cnt,\n NVL(api_call.other_message_cnt_by_carrier,0) AS other_message_cnt_by_carrier,\n NVL(api_call.active_automation_cnt,0) AS active_automation_cnt,\n NVL(api_call.active_campaign_cnt,0) AS active_campaign_cnt,\n NVL(api_call.active_flow_cnt,0) AS active_flow_cnt,\n NVL(customers.aggregated_customers,0) AS customer_cnt,\n NVL(IF(user_date.date <> customers.created_date,0,customers.customers_cnt),0) AS new_customer_cnt,\n SMALLINT(pop_up.is_pop_up_enabled) AS is_pop_up_enabled,\n SMALLINT(IF(NVL(api_call.usage_sum,0) > 0,1,0)) AS is_active,\n SMALLINT(NVL(activeness.is_app_installed,0)) AS is_installed,\n SMALLINT(NVL(activeness.is_user_open,0)) AS is_user_open,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_user_date AS user_date\nLEFT JOIN import_sms_user_plan_daily AS plan\n ON user_date.date = plan.date\n AND user_date.sms_user_id = plan.sms_user_id\nLEFT JOIN import_sms_user_subscribers AS subscriber\n ON user_date.date = subscriber.date\n AND user_date.sms_user_id = subscriber.user_id\nLEFT JOIN import_sms_user_activeness_daily AS activeness\n ON user_date.date = activeness.activeness_date\n AND user_date.sms_user_id = activeness.sms_user_id\nLEFT JOIN api_call_daily AS api_call\n ON user_date.date = api_call.date\n AND user_date.sms_user_id = api_call.sms_user_id\nLEFT JOIN credit_purchase AS purchase\n ON user_date.date = purchase.date\n AND user_date.sms_user_id = purchase.sms_user_id\nLEFT JOIN accumulated_customers AS customers\n ON user_date.sms_user_id = customers.sms_user_id\n AND user_date.date >= customers.created_date \n AND user_date.date < customers.next_update_date\nLEFT JOIN import_pop_up_status_over_time AS pop_up\n ON user_date.sms_user_id = pop_up.sms_user_id\n AND user_date.date >= pop_up.from_date \n AND user_date.date < pop_up.to_date\n)\n\n-- Result --\n\nSELECT * \nFROM user_metrics_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_open_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_open_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.sql", "unique_id": "model.yoda.analytics___sms__user_open_over_time", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_open_over_time", "analytics___sms__user_open_over_time"], "alias": "analytics___sms__user_open_over_time", "checksum": {"name": "sha256", "checksum": "a644f80d06ffbef49bc8057912bc31f9a6da9cfeb656cb75533b7d10d8d82ce1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms user opened & closed status over time | PK and granularity: sms_user_id, from_time", "columns": {"sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "from_time": {"name": "from_time", "description": "user opened/closed status range start timestamp - primary key 2/2 - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "user opened/closed status range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "open_status": {"name": "open_status", "description": "sms user opened/closed status", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_user_open": {"name": "is_user_open", "description": "open_status = opened", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "event_source": {"name": "event_source", "description": "sms_user_created, user_event_log_sms_user, user_event_log_shopify_user, user_event_log_bigcommerce_user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_and_date_row_ranking": {"name": "user_and_date_row_ranking", "description": "row ranking for each user and created_date by created_at (i.e, 1 is the first row for each user and created date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "user_and_date_row_ranking_backwards": {"name": "user_and_date_row_ranking_backwards", "description": "row ranking for each user and created_date by created_at (i.e, 1 is the last row for each user and created date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_date": {"name": "created_date", "description": "opened/closed event created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082658.980917, "relation_name": "dev_dkruh1.analytics___sms__user_open_over_time", "raw_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__sms_user') }}\n),\n\nimport_sms_stg__user_event_log AS (\nSELECT * FROM {{ ref('analytics___sms_stg__user_event_log') }}\n),\n\nimport_sms_stg__shopify_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__shopify_user') }}\n),\n\nimport_sms_stg__bigcommerce_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__bigcommerce_user') }}\n),\n\n-- Logic --\n\nsms_user_created AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n 'sms_user_created' AS event_source,\n 'opened' AS event_type\nFROM import_sms_user\nWHERE created_at IS NOT NULL\n),\n\nuser_event_log_sms_user AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n 'user_event_log_sms_user' AS event_source,\n IF(event_name = 'reopened_store','opened','closed') AS event_type\nFROM import_sms_stg__user_event_log\nWHERE LOWER(event_name) IN ('reopened_store','closed_store')\nAND NVL(sms_user_id,0) NOT IN (-1,0)\n),\n\nuser_event_log_platform_user AS (\nSELECT\n NVL(shopify.sms_user_id, bigcommerce.sms_user_id) AS sms_user_id,\n event.created_date,\n event.created_at,\n CONCAT('user_event_log_',\n IF(shopify.sms_user_id IS NOT NULL, 'shopify', 'bigcommerce'),\n '_user') AS event_source,\n IF(event.event_name = 'reopened_store','opened','closed') AS event_type\nFROM import_sms_stg__user_event_log AS event\nLEFT JOIN import_sms_stg__shopify_user AS shopify\n ON LOWER(event.platform_name) = 'shopify'\n AND event.platform_user_id = shopify.shopify_user_id\nLEFT JOIN import_sms_stg__bigcommerce_user AS bigcommerce\n ON LOWER(event.platform_name) = 'bigcommerce'\n AND event.platform_user_id = bigcommerce.bigcommerce_user_id\nWHERE LOWER(event.event_name) IN ('reopened_store','closed_store')\nAND event.sms_user_id IN (-1,0)\nAND COALESCE(shopify.sms_user_id,bigcommerce.sms_user_id,0) <> 0\n),\n\nuser_event_union AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_log_sms_user\nUNION ALL\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_log_platform_user\n),\n\n\nall_event_union AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM sms_user_created\nUNION ALL\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_union\n),\n\nevent_ranking AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_at ORDER BY IF(event_type = 'opened',0,1), event_source) AS row_ranking_user_and_time\nFROM all_event_union\n),\n\nredundant_row_calculation AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type,\n IF(event_type = LAG(event_type) OVER (PARTITION BY sms_user_id ORDER BY created_at),1,0) AS is_redundant_row\nFROM event_ranking\nWHERE row_ranking_user_and_time = 1\n),\n\nuser_open_over_time_res AS (\nSELECT\n sms_user_id,\n created_at AS from_time,\n LEAD(created_at,1,'2999-12-31') OVER (PARTITION BY sms_user_id ORDER BY created_at) AS to_time,\n event_type AS open_status,\n SMALLINT(IF(event_type = 'opened',1,0)) AS is_user_open,\n event_source,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_date ORDER BY created_at) AS user_and_date_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_date ORDER BY created_at DESC) AS user_and_date_row_ranking_backwards,\n created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM redundant_row_calculation\nWHERE is_redundant_row = 0\n)\n\n-- Result --\n\nSELECT *\nFROM user_open_over_time_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__sms_user", "package": null, "version": null}, {"name": "analytics___sms_stg__user_event_log", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_user", "package": null, "version": null}, {"name": "analytics___sms_stg__bigcommerce_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__user_event_log", "model.yoda.analytics___sms_stg__shopify_user", "model.yoda.analytics___sms_stg__bigcommerce_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__sms_user\n),\n\nimport_sms_stg__user_event_log AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__user_event_log\n),\n\nimport_sms_stg__shopify_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__shopify_user\n),\n\nimport_sms_stg__bigcommerce_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__bigcommerce_user\n),\n\n-- Logic --\n\nsms_user_created AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n 'sms_user_created' AS event_source,\n 'opened' AS event_type\nFROM import_sms_user\nWHERE created_at IS NOT NULL\n),\n\nuser_event_log_sms_user AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n 'user_event_log_sms_user' AS event_source,\n IF(event_name = 'reopened_store','opened','closed') AS event_type\nFROM import_sms_stg__user_event_log\nWHERE LOWER(event_name) IN ('reopened_store','closed_store')\nAND NVL(sms_user_id,0) NOT IN (-1,0)\n),\n\nuser_event_log_platform_user AS (\nSELECT\n NVL(shopify.sms_user_id, bigcommerce.sms_user_id) AS sms_user_id,\n event.created_date,\n event.created_at,\n CONCAT('user_event_log_',\n IF(shopify.sms_user_id IS NOT NULL, 'shopify', 'bigcommerce'),\n '_user') AS event_source,\n IF(event.event_name = 'reopened_store','opened','closed') AS event_type\nFROM import_sms_stg__user_event_log AS event\nLEFT JOIN import_sms_stg__shopify_user AS shopify\n ON LOWER(event.platform_name) = 'shopify'\n AND event.platform_user_id = shopify.shopify_user_id\nLEFT JOIN import_sms_stg__bigcommerce_user AS bigcommerce\n ON LOWER(event.platform_name) = 'bigcommerce'\n AND event.platform_user_id = bigcommerce.bigcommerce_user_id\nWHERE LOWER(event.event_name) IN ('reopened_store','closed_store')\nAND event.sms_user_id IN (-1,0)\nAND COALESCE(shopify.sms_user_id,bigcommerce.sms_user_id,0) <> 0\n),\n\nuser_event_union AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_log_sms_user\nUNION ALL\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_log_platform_user\n),\n\n\nall_event_union AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM sms_user_created\nUNION ALL\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type\nFROM user_event_union\n),\n\nevent_ranking AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_at ORDER BY IF(event_type = 'opened',0,1), event_source) AS row_ranking_user_and_time\nFROM all_event_union\n),\n\nredundant_row_calculation AS (\nSELECT\n sms_user_id,\n created_date,\n created_at,\n event_source,\n event_type,\n IF(event_type = LAG(event_type) OVER (PARTITION BY sms_user_id ORDER BY created_at),1,0) AS is_redundant_row\nFROM event_ranking\nWHERE row_ranking_user_and_time = 1\n),\n\nuser_open_over_time_res AS (\nSELECT\n sms_user_id,\n created_at AS from_time,\n LEAD(created_at,1,'2999-12-31') OVER (PARTITION BY sms_user_id ORDER BY created_at) AS to_time,\n event_type AS open_status,\n SMALLINT(IF(event_type = 'opened',1,0)) AS is_user_open,\n event_source,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_date ORDER BY created_at) AS user_and_date_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_date ORDER BY created_at DESC) AS user_and_date_row_ranking_backwards,\n created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM redundant_row_calculation\nWHERE is_redundant_row = 0\n)\n\n-- Result --\n\nSELECT *\nFROM user_open_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_plan_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_plan_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.sql", "unique_id": "model.yoda.analytics___sms__user_plan_daily", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_daily", "analytics___sms__user_plan_daily"], "alias": "analytics___sms__user_plan_daily", "checksum": {"name": "sha256", "checksum": "c867cf6b08b67f1ab79648d8005d33f4679dd0922cb113f971f4a355a2f98d6b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["date", "sms_user_id"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms user plan history on a daily level. | Granularity & Primary Key: date, sms_user_id", "columns": {"date": {"name": "date", "description": "date of the plan - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_id": {"name": "plan_id", "description": "plan unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type": {"name": "plan_type", "description": "plan type: self_service / high_touch", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "plan customer type: HT/LT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_group": {"name": "plan_type_group", "description": "plan type group: self_service, high_touch and free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_period": {"name": "plan_period", "description": "plan period: monthly, annually", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "incremental_strategy": "merge", "unique_key": ["date", "sms_user_id"], "partition_by": ["date"]}, "created_at": 1700082659.0334659, "relation_name": "dev_dkruh1.analytics___sms__user_plan_daily", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'merge',\n unique_key = ['date','sms_user_id'],\n partition_by = ['date']\n )\n}}\n\n-- Import --\n\nWITH user_date AS (\nSELECT *\nFROM {{ ref('analytics___sms_stg__user_date_explode_from_creation') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='date',subtract=60)}}\n),\n\nimport_sms_user_plan_over_time AS (\nSELECT * FROM {{ ref('analytics___sms__user_plan_over_time') }}\n),\n\n-- Logic --\n\nuser_plan_date_ranges AS (\nSELECT\n sms_user_id,\n created_date AS from_date,\n DATE_SUB(LEAD(created_date) OVER (PARTITION BY sms_user_id ORDER BY created_date),1) AS to_date,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period\nFROM import_sms_user_plan_over_time\nWHERE row_ranking_for_user_and_created_date = 1\n),\n\nsms__user_plan_daily_res AS (\nSELECT\n calendar.date,\n calendar.sms_user_id,\n plan.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM user_date AS calendar\nINNER JOIN user_plan_date_ranges AS plan\n ON calendar.sms_user_id = plan.sms_user_id\n AND calendar.date BETWEEN plan.from_date AND NVL(plan.to_date, CURRENT_DATE)\n)\n\n-- Result --\n\nSELECT *\nFROM sms__user_plan_daily_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__user_date_explode_from_creation", "package": null, "version": null}, {"name": "analytics___sms__user_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__user_date_explode_from_creation", "model.yoda.analytics___sms__user_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH user_date AS (\nSELECT *\nFROM dev_dkruh1.analytics___sms_stg__user_date_explode_from_creation\nWHERE DATE(date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_sms_user_plan_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_plan_over_time\n),\n\n-- Logic --\n\nuser_plan_date_ranges AS (\nSELECT\n sms_user_id,\n created_date AS from_date,\n DATE_SUB(LEAD(created_date) OVER (PARTITION BY sms_user_id ORDER BY created_date),1) AS to_date,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period\nFROM import_sms_user_plan_over_time\nWHERE row_ranking_for_user_and_created_date = 1\n),\n\nsms__user_plan_daily_res AS (\nSELECT\n calendar.date,\n calendar.sms_user_id,\n plan.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM user_date AS calendar\nINNER JOIN user_plan_date_ranges AS plan\n ON calendar.sms_user_id = plan.sms_user_id\n AND calendar.date BETWEEN plan.from_date AND NVL(plan.to_date, CURRENT_DATE)\n)\n\n-- Result --\n\nSELECT *\nFROM sms__user_plan_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_plan_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_plan_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.sql", "unique_id": "model.yoda.analytics___sms__user_plan_monthly", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_monthly", "analytics___sms__user_plan_monthly"], "alias": "analytics___sms__user_plan_monthly", "checksum": {"name": "sha256", "checksum": "3979e686bf8737d59c129302127bc11ea0759fdd45d9f0e2f92421b4f3c9bd87"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms user plan history on a monthly level. | Granularity & Primary Key: month, sms_user_id", "columns": {"month": {"name": "month", "description": "month of the plan - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_id": {"name": "plan_id", "description": "plan unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type": {"name": "plan_type", "description": "plan type: self_service / high_touch", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "plan customer type: HT/LT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_group": {"name": "plan_type_group", "description": "plan type group: self_service, high_touch and free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_period": {"name": "plan_period", "description": "plan period: monthly, annually", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082659.076081, "relation_name": "dev_dkruh1.analytics___sms__user_plan_monthly", "raw_code": "-- Import --\n\nWITH import_user_plan_daily AS (\nSELECT *\nFROM {{ ref('analytics___sms__user_plan_daily') }}\n),\n\n-- Logic --\n\nend_of_month_calculation AS (\nSELECT\n TRUNC(date,'MONTH') AS month,\n sms_user_id,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period,\n CASE WHEN date = LAST_DAY(date) THEN 1\n WHEN TRUNC(date,'MONTH') = TRUNC(CURRENT_DATE,'MONTH') AND date = MAX(date) OVER () THEN 1\n ELSE 0 END AS is_end_of_month\nFROM import_user_plan_daily\n),\n\nuser_plan_monthly_res AS (\nSELECT\n month,\n sms_user_id,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM end_of_month_calculation\nWHERE is_end_of_month = 1\n)\n\n-- Result --\n\nSELECT *\nFROM user_plan_monthly_res", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__user_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_user_plan_daily AS (\nSELECT *\nFROM dev_dkruh1.analytics___sms__user_plan_daily\n),\n\n-- Logic --\n\nend_of_month_calculation AS (\nSELECT\n TRUNC(date,'MONTH') AS month,\n sms_user_id,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period,\n CASE WHEN date = LAST_DAY(date) THEN 1\n WHEN TRUNC(date,'MONTH') = TRUNC(CURRENT_DATE,'MONTH') AND date = MAX(date) OVER () THEN 1\n ELSE 0 END AS is_end_of_month\nFROM import_user_plan_daily\n),\n\nuser_plan_monthly_res AS (\nSELECT\n month,\n sms_user_id,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM end_of_month_calculation\nWHERE is_end_of_month = 1\n)\n\n-- Result --\n\nSELECT *\nFROM user_plan_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_plan_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_plan_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.sql", "unique_id": "model.yoda.analytics___sms__user_plan_over_time", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_over_time", "analytics___sms__user_plan_over_time"], "alias": "analytics___sms__user_plan_over_time", "checksum": {"name": "sha256", "checksum": "ecdef2b83c6beae7a22bb26aefc57081eb61dad2bf4f2909c1768e4d1363c3ac"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms user's plan history over time. | Granularity & Primary Key: sms_user_id, from_time, row_ranking_for_user_and_created_date", "columns": {"sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "from_time": {"name": "from_time", "description": "user plan range start timestamp - primary key 2/3 - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "user plan range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "row_ranking_for_user_and_created_date": {"name": "row_ranking_for_user_and_created_date", "description": "row ranking for each user and event created date by from_time DESC, event_id DESC (i.e, 1 is the last row for each user and created date) - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "event_id": {"name": "event_id", "description": "sms user event log unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_name": {"name": "event_name", "description": "change_plan, cancel_plan, uninstall, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date": {"name": "created_date", "description": "plan change event created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "plan_id": {"name": "plan_id", "description": "plan unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type": {"name": "plan_type", "description": "plan type: self_service / high_touch", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "plan customer type: HT/LT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_group": {"name": "plan_type_group", "description": "plan type group: self_service, high_touch and free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_period": {"name": "plan_period", "description": "plan period: monthly, annually", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_first_ht_plan": {"name": "is_first_ht_plan", "description": "first high touch plan indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_previous_lt_plan": {"name": "is_previous_lt_plan", "description": "previous low touch plan indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_previous_free_plan": {"name": "is_previous_free_plan", "description": "previous free plan indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082659.123654, "relation_name": "dev_dkruh1.analytics___sms__user_plan_over_time", "raw_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__sms_user') }}\n),\n\nimport_user_event_log AS (\nSELECT * FROM {{ ref('analytics___sms_stg__user_event_log') }}\n),\n\nimport_sms_plan AS (\nSELECT * FROM {{ ref('analytics___sms_stg__plan') }}\n),\n\n-- Logic --\n\nplan_changes_events_after_2020_03_03 AS (\nSELECT\n event_id,\n sms_user_id,\n created_date,\n created_at,\n event_name,\n BIGINT(CASE WHEN LOWER(event_name) = 'change_plan' THEN event_type\n WHEN LOWER(event_name) IN ('uninstall','closed_store','cancel_plan') THEN '5'\n WHEN (LOWER(event_name) = 'admin' AND LOWER(event_type) = 'manual_plan_change') \n THEN IF(REGEXP_EXTRACT(LOWER(event_details),r'\"(\\d+)\".+\"(\\d+)\"',2) = '',\n REGEXP_EXTRACT(LOWER(event_details),r'\"(\\d+)\"',1),\n REGEXP_EXTRACT(LOWER(event_details),r'\"(\\d+)\".+\"(\\d+)\"',2)) END) AS plan_id\nFROM import_user_event_log\nWHERE created_date > '2020-03-03'\nAND (\n (LOWER(event_name) = 'admin' AND LOWER(event_type) = 'manual_plan_change')\n OR LOWER(event_name) IN ('closed_store','change_plan')\n OR (LOWER(event_name) = 'uninstall' AND NVL(LOWER(event_details),'') NOT LIKE '%the package remains%')\n OR (LOWER(event_name) = 'cancel_plan' AND NVL(LOWER(event_details),'') <> 'cancellation triggered due to high touch upgrade')\n )\n),\n\nclosed_store_events AS (\nSELECT\n event_id,\n sms_user_id,\n created_at\nFROM plan_changes_events_after_2020_03_03\nWHERE LOWER(event_name) = 'closed_store'\n),\n\ncancel_plan_events AS (\nSELECT\n event_id,\n sms_user_id,\n created_at\nFROM plan_changes_events_after_2020_03_03\nWHERE LOWER(event_name) = 'cancel_plan'\n),\n\nclosed_canceled_simultaneously AS (\nSELECT\n closed.sms_user_id,\n closed.created_at,\n closed.event_id AS closed_event_id,\n cancel.event_id AS cancel_event_id\nFROM closed_store_events AS closed\nINNER JOIN cancel_plan_events AS cancel\n ON closed.sms_user_id = cancel.sms_user_id\n AND closed.created_at = cancel.created_at\n),\n\nclosed_canceled_events_id AS (\nSELECT closed_event_id AS event_id\nFROM closed_canceled_simultaneously\nUNION ALL\nSELECT cancel_event_id AS event_id\nFROM closed_canceled_simultaneously\n),\n\nplan_changes_after_2020_03_03_wo_closed_canceled AS (\nSELECT\n plan_changes.event_id,\n plan_changes.sms_user_id,\n plan_changes.created_date,\n plan_changes.created_at,\n plan_changes.event_name,\n plan_changes.plan_id\nFROM plan_changes_events_after_2020_03_03 AS plan_changes\nINNER JOIN import_sms_user AS sms_user\n ON plan_changes.sms_user_id = sms_user.sms_user_id\nLEFT JOIN closed_canceled_events_id AS closed_canceled\n ON plan_changes.event_id = closed_canceled.event_id\nWHERE closed_canceled.event_id IS NULL\nAND plan_changes.sms_user_id IS NOT NULL\n),\n\nfirst_plan_for_users_after_2020_03_03 AS (\nSELECT\n 0 AS event_id,\n sms_user_id,\n created_date,\n created_at,\n 'calculated_plan_for_created_users_after_2020_03_03' AS event_name,\n 5 AS plan_id\nFROM import_sms_user\nWHERE created_date > '2020-03-03'\n),\n\nplan_history_events_union_first_plan AS (\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM first_plan_for_users_after_2020_03_03\nUNION ALL\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_changes_after_2020_03_03_wo_closed_canceled\n),\n\nplan_for_users_wo_events AS (\nSELECT\n -1 AS event_id,\n sms_user.sms_user_id,\n DATE('2020-03-03') AS created_date,\n TIMESTAMP('2020-03-03') AS created_at,\n 'calculated_plan_for_users_without_plan_changes_event' AS event_name,\n sms_user.plan_id\nFROM import_sms_user AS sms_user\nLEFT JOIN plan_history_events_union_first_plan AS plan_history\n ON sms_user.sms_user_id = plan_history.sms_user_id\nWHERE plan_history.sms_user_id IS NULL\nAND sms_user.plan_id IS NOT NULL\n),\n\nplan_changes_union AS (\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_history_events_union_first_plan\nUNION ALL\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_for_users_wo_events\n),\n\nplan_changes_adding_plan_details AS (\nSELECT\n plan_changes.sms_user_id,\n plan_changes.event_id,\n plan_changes.created_date,\n plan_changes.created_at,\n plan_changes.event_name,\n plan_changes.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period,\n ROW_NUMBER() OVER (PARTITION BY plan_changes.sms_user_id ORDER BY plan_changes.created_at, plan_changes.event_id) AS user_plan_ranking\nFROM plan_changes_union AS plan_changes\nLEFT JOIN import_sms_plan AS plan\n ON plan_changes.plan_id = plan.plan_id\n),\n\nusers_whose_first_event_is_ht_plan AS (\nSELECT\n sms_user_id,\n created_date,\n created_at\nFROM plan_changes_adding_plan_details\nWHERE user_plan_ranking = 1\nAND LOWER(plan_type_group) = 'high_touch'\n),\n\nextracting_self_service_plans_from_another_events AS (\nSELECT\n event.sms_user_id,\n event.event_id,\n event.created_at,\n plan.plan_id\nFROM import_user_event_log AS event\nINNER JOIN import_sms_plan AS plan\n ON event.event_details = plan.plan_id\nWHERE LOWER(event.event_name) = 'charge'\nAND LOWER(event.event_type) = 'plan_charge'\nAND LOWER(plan.plan_type) = 'self_service'\nAND NVL(LOWER(plan.plan_name),'') NOT LIKE '%free%'\nAND plan.plan_id IS NOT NULL\n),\n\nadditional_plan_event_for_first_ht AS (\nSELECT DISTINCT\n ht.sms_user_id,\n -1 AS event_id,\n DATE('2020-03-03') AS created_date,\n TIMESTAMP('2020-03-03') AS created_at,\n 'calculated_plan_for_users_whose_first_event_is_ht_plan' AS event_name,\n LAST_VALUE(plans.plan_id) OVER (PARTITION BY ht.sms_user_id ORDER BY plans.created_at, plans.event_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS plan_id\nFROM users_whose_first_event_is_ht_plan AS ht\nINNER JOIN extracting_self_service_plans_from_another_events AS plans\n ON ht.sms_user_id = plans.sms_user_id\n AND ht.created_at > plans.created_at\n),\n\nplan_event_for_first_ht_adding_plan_details AS (\nSELECT\n ht.sms_user_id,\n ht.event_id,\n ht.created_date,\n ht.created_at,\n ht.event_name,\n ht.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period\nFROM additional_plan_event_for_first_ht AS ht\nINNER JOIN import_sms_plan AS plan\n ON ht.plan_id = plan.plan_id\n),\n\nall_events_union AS (\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period\nFROM plan_changes_adding_plan_details\nUNION ALL\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period\nFROM plan_event_for_first_ht_adding_plan_details\n),\n\nsms__user_plan_over_time_res AS (\nSELECT\n sms_user_id,\n created_at AS from_time,\n TIMESTAMP(NVL(LEAD(created_at) OVER (PARTITION BY sms_user_id ORDER BY created_at, event_id), '2999-12-31')) AS to_time,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_date ORDER BY created_at DESC, event_id DESC) AS row_ranking_for_user_and_created_date,\n IF(event_id IN (-1,0), NULL, event_id) AS event_id,\n event_name,\n created_date,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period,\n SMALLINT(IF(LOWER(plan_type) = 'high_touch' AND ROW_NUMBER() OVER (PARTITION BY sms_user_id, plan_type ORDER BY created_at) = 1,1,0)) AS is_first_ht_plan,\n SMALLINT(IF(LAG(LOWER(plan_type),1,'') OVER (PARTITION BY sms_user_id ORDER BY created_at) = 'high_touch',0,1)) AS is_previous_lt_plan,\n SMALLINT(IF(LAG(LOWER(plan_type_group),1,'') OVER (PARTITION BY sms_user_id ORDER BY created_at) = 'free',1,0)) AS is_previous_free_plan,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM all_events_union\nWHERE created_date < CURRENT_DATE\n)\n\n-- Result --\n\nSELECT *\nFROM sms__user_plan_over_time_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__sms_user", "package": null, "version": null}, {"name": "analytics___sms_stg__user_event_log", "package": null, "version": null}, {"name": "analytics___sms_stg__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__user_event_log", "model.yoda.analytics___sms_stg__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__sms_user\n),\n\nimport_user_event_log AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__user_event_log\n),\n\nimport_sms_plan AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__plan\n),\n\n-- Logic --\n\nplan_changes_events_after_2020_03_03 AS (\nSELECT\n event_id,\n sms_user_id,\n created_date,\n created_at,\n event_name,\n BIGINT(CASE WHEN LOWER(event_name) = 'change_plan' THEN event_type\n WHEN LOWER(event_name) IN ('uninstall','closed_store','cancel_plan') THEN '5'\n WHEN (LOWER(event_name) = 'admin' AND LOWER(event_type) = 'manual_plan_change') \n THEN IF(REGEXP_EXTRACT(LOWER(event_details),r'\"(\\d+)\".+\"(\\d+)\"',2) = '',\n REGEXP_EXTRACT(LOWER(event_details),r'\"(\\d+)\"',1),\n REGEXP_EXTRACT(LOWER(event_details),r'\"(\\d+)\".+\"(\\d+)\"',2)) END) AS plan_id\nFROM import_user_event_log\nWHERE created_date > '2020-03-03'\nAND (\n (LOWER(event_name) = 'admin' AND LOWER(event_type) = 'manual_plan_change')\n OR LOWER(event_name) IN ('closed_store','change_plan')\n OR (LOWER(event_name) = 'uninstall' AND NVL(LOWER(event_details),'') NOT LIKE '%the package remains%')\n OR (LOWER(event_name) = 'cancel_plan' AND NVL(LOWER(event_details),'') <> 'cancellation triggered due to high touch upgrade')\n )\n),\n\nclosed_store_events AS (\nSELECT\n event_id,\n sms_user_id,\n created_at\nFROM plan_changes_events_after_2020_03_03\nWHERE LOWER(event_name) = 'closed_store'\n),\n\ncancel_plan_events AS (\nSELECT\n event_id,\n sms_user_id,\n created_at\nFROM plan_changes_events_after_2020_03_03\nWHERE LOWER(event_name) = 'cancel_plan'\n),\n\nclosed_canceled_simultaneously AS (\nSELECT\n closed.sms_user_id,\n closed.created_at,\n closed.event_id AS closed_event_id,\n cancel.event_id AS cancel_event_id\nFROM closed_store_events AS closed\nINNER JOIN cancel_plan_events AS cancel\n ON closed.sms_user_id = cancel.sms_user_id\n AND closed.created_at = cancel.created_at\n),\n\nclosed_canceled_events_id AS (\nSELECT closed_event_id AS event_id\nFROM closed_canceled_simultaneously\nUNION ALL\nSELECT cancel_event_id AS event_id\nFROM closed_canceled_simultaneously\n),\n\nplan_changes_after_2020_03_03_wo_closed_canceled AS (\nSELECT\n plan_changes.event_id,\n plan_changes.sms_user_id,\n plan_changes.created_date,\n plan_changes.created_at,\n plan_changes.event_name,\n plan_changes.plan_id\nFROM plan_changes_events_after_2020_03_03 AS plan_changes\nINNER JOIN import_sms_user AS sms_user\n ON plan_changes.sms_user_id = sms_user.sms_user_id\nLEFT JOIN closed_canceled_events_id AS closed_canceled\n ON plan_changes.event_id = closed_canceled.event_id\nWHERE closed_canceled.event_id IS NULL\nAND plan_changes.sms_user_id IS NOT NULL\n),\n\nfirst_plan_for_users_after_2020_03_03 AS (\nSELECT\n 0 AS event_id,\n sms_user_id,\n created_date,\n created_at,\n 'calculated_plan_for_created_users_after_2020_03_03' AS event_name,\n 5 AS plan_id\nFROM import_sms_user\nWHERE created_date > '2020-03-03'\n),\n\nplan_history_events_union_first_plan AS (\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM first_plan_for_users_after_2020_03_03\nUNION ALL\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_changes_after_2020_03_03_wo_closed_canceled\n),\n\nplan_for_users_wo_events AS (\nSELECT\n -1 AS event_id,\n sms_user.sms_user_id,\n DATE('2020-03-03') AS created_date,\n TIMESTAMP('2020-03-03') AS created_at,\n 'calculated_plan_for_users_without_plan_changes_event' AS event_name,\n sms_user.plan_id\nFROM import_sms_user AS sms_user\nLEFT JOIN plan_history_events_union_first_plan AS plan_history\n ON sms_user.sms_user_id = plan_history.sms_user_id\nWHERE plan_history.sms_user_id IS NULL\nAND sms_user.plan_id IS NOT NULL\n),\n\nplan_changes_union AS (\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_history_events_union_first_plan\nUNION ALL\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id\nFROM plan_for_users_wo_events\n),\n\nplan_changes_adding_plan_details AS (\nSELECT\n plan_changes.sms_user_id,\n plan_changes.event_id,\n plan_changes.created_date,\n plan_changes.created_at,\n plan_changes.event_name,\n plan_changes.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period,\n ROW_NUMBER() OVER (PARTITION BY plan_changes.sms_user_id ORDER BY plan_changes.created_at, plan_changes.event_id) AS user_plan_ranking\nFROM plan_changes_union AS plan_changes\nLEFT JOIN import_sms_plan AS plan\n ON plan_changes.plan_id = plan.plan_id\n),\n\nusers_whose_first_event_is_ht_plan AS (\nSELECT\n sms_user_id,\n created_date,\n created_at\nFROM plan_changes_adding_plan_details\nWHERE user_plan_ranking = 1\nAND LOWER(plan_type_group) = 'high_touch'\n),\n\nextracting_self_service_plans_from_another_events AS (\nSELECT\n event.sms_user_id,\n event.event_id,\n event.created_at,\n plan.plan_id\nFROM import_user_event_log AS event\nINNER JOIN import_sms_plan AS plan\n ON event.event_details = plan.plan_id\nWHERE LOWER(event.event_name) = 'charge'\nAND LOWER(event.event_type) = 'plan_charge'\nAND LOWER(plan.plan_type) = 'self_service'\nAND NVL(LOWER(plan.plan_name),'') NOT LIKE '%free%'\nAND plan.plan_id IS NOT NULL\n),\n\nadditional_plan_event_for_first_ht AS (\nSELECT DISTINCT\n ht.sms_user_id,\n -1 AS event_id,\n DATE('2020-03-03') AS created_date,\n TIMESTAMP('2020-03-03') AS created_at,\n 'calculated_plan_for_users_whose_first_event_is_ht_plan' AS event_name,\n LAST_VALUE(plans.plan_id) OVER (PARTITION BY ht.sms_user_id ORDER BY plans.created_at, plans.event_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS plan_id\nFROM users_whose_first_event_is_ht_plan AS ht\nINNER JOIN extracting_self_service_plans_from_another_events AS plans\n ON ht.sms_user_id = plans.sms_user_id\n AND ht.created_at > plans.created_at\n),\n\nplan_event_for_first_ht_adding_plan_details AS (\nSELECT\n ht.sms_user_id,\n ht.event_id,\n ht.created_date,\n ht.created_at,\n ht.event_name,\n ht.plan_id,\n plan.plan_name,\n plan.plan_type,\n plan.plan_type_ht_lt,\n plan.plan_type_group,\n plan.plan_period\nFROM additional_plan_event_for_first_ht AS ht\nINNER JOIN import_sms_plan AS plan\n ON ht.plan_id = plan.plan_id\n),\n\nall_events_union AS (\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period\nFROM plan_changes_adding_plan_details\nUNION ALL\nSELECT\n sms_user_id,\n event_id,\n created_date,\n created_at,\n event_name,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period\nFROM plan_event_for_first_ht_adding_plan_details\n),\n\nsms__user_plan_over_time_res AS (\nSELECT\n sms_user_id,\n created_at AS from_time,\n TIMESTAMP(NVL(LEAD(created_at) OVER (PARTITION BY sms_user_id ORDER BY created_at, event_id), '2999-12-31')) AS to_time,\n ROW_NUMBER() OVER (PARTITION BY sms_user_id, created_date ORDER BY created_at DESC, event_id DESC) AS row_ranking_for_user_and_created_date,\n IF(event_id IN (-1,0), NULL, event_id) AS event_id,\n event_name,\n created_date,\n plan_id,\n plan_name,\n plan_type,\n plan_type_ht_lt,\n plan_type_group,\n plan_period,\n SMALLINT(IF(LOWER(plan_type) = 'high_touch' AND ROW_NUMBER() OVER (PARTITION BY sms_user_id, plan_type ORDER BY created_at) = 1,1,0)) AS is_first_ht_plan,\n SMALLINT(IF(LAG(LOWER(plan_type),1,'') OVER (PARTITION BY sms_user_id ORDER BY created_at) = 'high_touch',0,1)) AS is_previous_lt_plan,\n SMALLINT(IF(LAG(LOWER(plan_type_group),1,'') OVER (PARTITION BY sms_user_id ORDER BY created_at) = 'free',1,0)) AS is_previous_free_plan,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM all_events_union\nWHERE created_date < CURRENT_DATE\n)\n\n-- Result --\n\nSELECT *\nFROM sms__user_plan_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_pop_up_status": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_pop_up_status", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.sql", "unique_id": "model.yoda.analytics___sms__user_pop_up_status", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_pop_up_status", "analytics___sms__user_pop_up_status"], "alias": "analytics___sms__user_pop_up_status", "checksum": {"name": "sha256", "checksum": "c63a67bda8bfb645171d4838c3f1dcd48bcb46dbccf5e394d3ba90f350fe9ec4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of current sms pop_up status for each sms_user_id. \nThis table is used as base for a daily snapshot to capture changes in pop_up enablement.\n|Granularity & Primary Key: sms_user_id", "columns": {"sms_user_id": {"name": "sms_user_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_pop_up_enabled": {"name": "is_pop_up_enabled", "description": "indicator = 1 IF form_type = 'popup' AND form_status = 'published'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082659.170412, "relation_name": "dev_dkruh1.analytics___sms__user_pop_up_status", "raw_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__sms_user') }}\n), \n\nimport_sms_form AS (\nSELECT * FROM {{ ref('analytics___sms_stg__form') }}\n), \n\n-- Logic --\n\npop_up_ebabled_users AS (\nSELECT DISTINCT\n sms_user_id\nFROM import_sms_form\nWHERE LOWER(type) = 'popup' \n AND LOWER(status) = 'published'\n),\n\nuser_pop_up_status AS (\nSELECT\n user.sms_user_id,\n SMALLINT(IF(pop_up.sms_user_id IS NOT NULL,1,0)) AS is_pop_up_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_sms_user AS user\nLEFT JOIN pop_up_ebabled_users AS pop_up\n ON user.sms_user_id = pop_up.sms_user_id\n)\n\n-- Result --\n\nSELECT * \nFROM user_pop_up_status", "language": "sql", "refs": [{"name": "analytics___sms_stg__sms_user", "package": null, "version": null}, {"name": "analytics___sms_stg__form", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__form"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__sms_user\n), \n\nimport_sms_form AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__form\n), \n\n-- Logic --\n\npop_up_ebabled_users AS (\nSELECT DISTINCT\n sms_user_id\nFROM import_sms_form\nWHERE LOWER(type) = 'popup' \n AND LOWER(status) = 'published'\n),\n\nuser_pop_up_status AS (\nSELECT\n user.sms_user_id,\n SMALLINT(IF(pop_up.sms_user_id IS NOT NULL,1,0)) AS is_pop_up_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_sms_user AS user\nLEFT JOIN pop_up_ebabled_users AS pop_up\n ON user.sms_user_id = pop_up.sms_user_id\n)\n\n-- Result --\n\nSELECT * \nFROM user_pop_up_status", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_pop_up_status_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_pop_up_status_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.sql", "unique_id": "model.yoda.analytics___sms__user_pop_up_status_over_time", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_pop_up_status_over_time", "analytics___sms__user_pop_up_status_over_time"], "alias": "analytics___sms__user_pop_up_status_over_time", "checksum": {"name": "sha256", "checksum": "f97e35665d936ce51970676accc35b494d838767bb324795fd4b474bc1519847"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms user pop_up enablement status over time (from_date - to_date)\nShowing only end of day status (changes made in the same day will not be included)\n| PK and granularity: sms_user_id, from_date", "columns": {"sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "from_date": {"name": "from_date", "description": "is_pop_up_enabled status start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "is_pop_up_enabled status end date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_pop_up_enabled": {"name": "is_pop_up_enabled", "description": "indicator = 1 IF form_type = 'popup' AND form_status = 'published'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082659.2101927, "relation_name": "dev_dkruh1.analytics___sms__user_pop_up_status_over_time", "raw_code": "-- Import --\n\nWITH import_pop_up_status_snapshot AS (\nSELECT * FROM {{ ref('analytics___sms__user_pop_up_status_snapshot') }}\n),\n\n-- Logic --\n\nuser_pop_up_enabled_over_time AS (\nSELECT\n sms_user_id,\n DATE(updated_at) AS from_date,\n DATE(LEAD(updated_at,1,'2999-12-31') OVER (PARTITION BY sms_user_id ORDER BY updated_at)) AS to_date,\n is_pop_up_enabled\nFROM import_pop_up_status_snapshot\n),\n\nuser_pop_up_enabled_over_time_res AS (\nSELECT\n sms_user_id,\n from_date,\n to_date,\n is_pop_up_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM user_pop_up_enabled_over_time\nWHERE from_date <> to_date\n)\n\n-- Result --\n\nSELECT *\nFROM user_pop_up_enabled_over_time_res", "language": "sql", "refs": [{"name": "analytics___sms__user_pop_up_status_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__user_pop_up_status_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_pop_up_status_snapshot AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_pop_up_status_snapshot\n),\n\n-- Logic --\n\nuser_pop_up_enabled_over_time AS (\nSELECT\n sms_user_id,\n DATE(updated_at) AS from_date,\n DATE(LEAD(updated_at,1,'2999-12-31') OVER (PARTITION BY sms_user_id ORDER BY updated_at)) AS to_date,\n is_pop_up_enabled\nFROM import_pop_up_status_snapshot\n),\n\nuser_pop_up_enabled_over_time_res AS (\nSELECT\n sms_user_id,\n from_date,\n to_date,\n is_pop_up_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM user_pop_up_enabled_over_time\nWHERE from_date <> to_date\n)\n\n-- Result --\n\nSELECT *\nFROM user_pop_up_enabled_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_pop_up_status_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_pop_up_status_snapshot", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.sql", "unique_id": "model.yoda.analytics___sms__user_pop_up_status_snapshot", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_pop_up_status_snapshot", "analytics___sms__user_pop_up_status_snapshot"], "alias": "analytics___sms__user_pop_up_status_snapshot", "checksum": {"name": "sha256", "checksum": "f067ae4f9d34206ba8ca0a81122153a1b8d7215077ad3945538ecf01e4ab7aa1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "This table is used track changes in pop_up enablement status.\n[Granularity : sms_user_id|is_pop_up_enabled|updated_at]", "columns": {"sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_pop_up_enabled": {"name": "is_pop_up_enabled", "description": "indicator = 1 IF form_type = 'popup' AND form_status = 'published'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "updated_at": {"name": "updated_at", "description": "status event change timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "incremental_strategy": "append"}, "created_at": 1700082659.2431648, "relation_name": "dev_dkruh1.analytics___sms__user_pop_up_status_snapshot", "raw_code": "{{\nanalytics_snapshot_scd(\n source_model = 'analytics___sms__user_pop_up_status',\n unique_key = ['sms_user_id'],\n tracked_columns = ['is_pop_up_enabled'],\n updated_at = 'dwh_updated_at'\n )\n}}", "language": "sql", "refs": [{"name": "analytics___sms__user_pop_up_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_snapshot_scd", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__user_pop_up_status"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.sql", "compiled": true, "compiled_code": "\n\n WITH \n \n\n incremental_calculation AS (\n SELECT \n source_table.sms_user_id, source_table.is_pop_up_enabled, source_table.dwh_updated_at, \n 1 AS is_new_update\n FROM dev_dkruh1.analytics___sms__user_pop_up_status AS source_table\n )\n\n SELECT\n sms_user_id, is_pop_up_enabled, dwh_updated_at AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM incremental_calculation\n WHERE is_new_update = 1\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms__user_store_dates_history": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms__user_store_dates_history", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.sql", "unique_id": "model.yoda.analytics___sms__user_store_dates_history", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_store_dates_history", "analytics___sms__user_store_dates_history"], "alias": "analytics___sms__user_store_dates_history", "checksum": {"name": "sha256", "checksum": "7eabcc5bfbd5ef60eaa555008eeb60efcf6fe969e7a93e8bed2379699d84471d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["sms_user_id", "category"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled incremental table of sms users and store dates history.\nThe purpose of the table is to save runtimes on recalculating historical dates.\nThe logic of this model takes into account association changes between sms_user_id and app_key and performs a retroactive update for these cases.\nGranularity: sms_user_id | app_key |category", "columns": {"sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier - PK 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - PK 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "historical date category: e.g., after_opportunity_3_usd_cumulative_usage_first_date. - PK 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "the value of the historical date category", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "sms"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["sms_user_id", "category"], "incremental_strategy": "merge"}, "created_at": 1700082659.260699, "relation_name": "dev_dkruh1.analytics___sms__user_store_dates_history", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key=['sms_user_id','category'],\n incremental_strategy = 'merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.sms_user_store_dates_history ZORDER BY sms_user_id;')\n )\n}}\n\n-- Import --\n\nWITH import_sms_user_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___sms__user_metrics_daily') }}\n),\n\nimport_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\nimport_salesforce__account AS (\nSELECT * FROM {{ ref('analytics___salesforce__account') }}\n),\n\n-- Logic --\n\nuser_metrics_usage_daily AS (\nSELECT\n date,\n sms_user_id,\n usage_sum\nFROM import_sms_user_metrics_daily\nWHERE usage_sum > 0\n),\n\nuser_store_metrics_usage_daily AS (\nSELECT\n user_daily.date,\n user_daily.sms_user_id,\n sms_store.app_key,\n sms_store.organization_key,\n user_daily.usage_sum\nFROM user_metrics_usage_daily AS user_daily\nINNER JOIN import_sms_store AS sms_store\n ON user_daily.sms_user_id = sms_store.sms_user_id\n{% if is_incremental() -%}\nLEFT JOIN {{this}} AS this\n ON user_daily.sms_user_id = this.sms_user_id\nWHERE NVL(this.app_key,'~') <> sms_store.app_key\n{%- endif %}\n),\n\ncumulative_usage_calculation_after_first_opp_start_date AS (\nSELECT\n usage_daily.date,\n usage_daily.sms_user_id,\n usage_daily.app_key,\n SUM(usage_daily.usage_sum) OVER (PARTITION BY usage_daily.sms_user_id ORDER BY usage_daily.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_usage_in_usd\nFROM user_store_metrics_usage_daily AS usage_daily\nINNER JOIN import_salesforce__account AS sf_account\n ON usage_daily.organization_key = sf_account.organization_key\n AND usage_daily.date >= sf_account.sms_first_opportunity_start_date\n{% if is_incremental() -%}\nLEFT JOIN {{this}} AS this\n ON this.category = 'after_opportunity_3_usd_cumulative_usage_first_date'\n AND usage_daily.sms_user_id = this.sms_user_id\n AND usage_daily.app_key = this.app_key\nWHERE this.value IS NULL\n{%- endif %}\n),\n\nfirst_day_of_3_usd_usage AS (\nSELECT\n sms_user_id,\n app_key,\n 'after_opportunity_3_usd_cumulative_usage_first_date' AS category,\n DATE(MIN(date)) AS value\nFROM cumulative_usage_calculation_after_first_opp_start_date\nWHERE cumulative_usage_in_usd >= 3\nGROUP BY 1,2\n),\n\nsms_user_store_dates_history_res AS (\nSELECT\n sms_user_id,\n app_key,\n category,\n value,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM first_day_of_3_usd_usage\n)\n\n-- Result --\n\nSELECT *\nFROM sms_user_store_dates_history_res", "language": "sql", "refs": [{"name": "analytics___sms__user_metrics_daily", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___sms__store", "model.yoda.analytics___salesforce__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_user_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___sms__user_metrics_daily\n),\n\nimport_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\nimport_salesforce__account AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__account\n),\n\n-- Logic --\n\nuser_metrics_usage_daily AS (\nSELECT\n date,\n sms_user_id,\n usage_sum\nFROM import_sms_user_metrics_daily\nWHERE usage_sum > 0\n),\n\nuser_store_metrics_usage_daily AS (\nSELECT\n user_daily.date,\n user_daily.sms_user_id,\n sms_store.app_key,\n sms_store.organization_key,\n user_daily.usage_sum\nFROM user_metrics_usage_daily AS user_daily\nINNER JOIN import_sms_store AS sms_store\n ON user_daily.sms_user_id = sms_store.sms_user_id\n\n),\n\ncumulative_usage_calculation_after_first_opp_start_date AS (\nSELECT\n usage_daily.date,\n usage_daily.sms_user_id,\n usage_daily.app_key,\n SUM(usage_daily.usage_sum) OVER (PARTITION BY usage_daily.sms_user_id ORDER BY usage_daily.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_usage_in_usd\nFROM user_store_metrics_usage_daily AS usage_daily\nINNER JOIN import_salesforce__account AS sf_account\n ON usage_daily.organization_key = sf_account.organization_key\n AND usage_daily.date >= sf_account.sms_first_opportunity_start_date\n\n),\n\nfirst_day_of_3_usd_usage AS (\nSELECT\n sms_user_id,\n app_key,\n 'after_opportunity_3_usd_cumulative_usage_first_date' AS category,\n DATE(MIN(date)) AS value\nFROM cumulative_usage_calculation_after_first_opp_start_date\nWHERE cumulative_usage_in_usd >= 3\nGROUP BY 1,2\n),\n\nsms_user_store_dates_history_res AS (\nSELECT\n sms_user_id,\n app_key,\n category,\n value,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM first_day_of_3_usd_usage\n)\n\n-- Result --\n\nSELECT *\nFROM sms_user_store_dates_history_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__fact_agg_sms_user_profile_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.sql", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.sql", "unique_id": "model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily", "fqn": ["yoda", "analytics", "sms", "staging", "base", "analytics___sms_stg__fact_agg_sms_user_profile_daily", "analytics___sms_stg__fact_agg_sms_user_profile_daily"], "alias": "analytics___sms_stg__fact_agg_sms_user_profile_daily", "checksum": {"name": "sha256", "checksum": "f6afd4cfd61cf7abe30fc28d43dacc9a22b27f6d37aa4f08d15b49c280ab883d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Temporary pointer to the Metrorikku modeled table fact_agg_sms_user_profile_daily | Granularity & Primary Key: date , user_id", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "user_id": {"name": "user_id", "description": "PK: sms__user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_subscribers": {"name": "total_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_esp_subscribers": {"name": "total_esp_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_non_esp_subscribers": {"name": "total_non_esp_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_imported_subscribers": {"name": "total_imported_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_new_subscribers": {"name": "total_new_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_unsubscribers": {"name": "total_unsubscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082659.3178163, "relation_name": "dev_dkruh1.analytics___sms_stg__fact_agg_sms_user_profile_daily", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__default', 'fact_agg_sms_user_profile_daily') }}\n\n), \nsms_stg__fact_agg_sms_user_profile_daily AS (\n\n SELECT \n\t\tdate,\n\t\tuser_id,\n\t\ttotal_subscribers,\n\t\ttotal_esp_subscribers,\n\t\ttotal_non_esp_subscribers,\n\t\ttotal_imported_subscribers,\n\t\ttotal_new_subscribers,\n\t\ttotal_unsubscribers\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__fact_agg_sms_user_profile_daily", "language": "sql", "refs": [], "sources": [["sms__default", "fact_agg_sms_user_profile_daily"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__default.fact_agg_sms_user_profile_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM default.fact_agg_sms_user_profile_daily\n\n), \nsms_stg__fact_agg_sms_user_profile_daily AS (\n\n SELECT \n\t\tdate,\n\t\tuser_id,\n\t\ttotal_subscribers,\n\t\ttotal_esp_subscribers,\n\t\ttotal_non_esp_subscribers,\n\t\ttotal_imported_subscribers,\n\t\ttotal_new_subscribers,\n\t\ttotal_unsubscribers\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__fact_agg_sms_user_profile_daily", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__free_credit_high_touch_bonus": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__free_credit_high_touch_bonus", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.sql", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.sql", "unique_id": "model.yoda.analytics___sms_stg__free_credit_high_touch_bonus", "fqn": ["yoda", "analytics", "sms", "staging", "base", "analytics___sms_stg__free_credit_high_touch_bonus", "analytics___sms_stg__free_credit_high_touch_bonus"], "alias": "analytics___sms_stg__free_credit_high_touch_bonus", "checksum": {"name": "sha256", "checksum": "3c035f5082f60b98a78fc2fa5145eedd0e1b90ea1e1dbd75d4705673b6aedcfc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Static table of high_touch bonus sms campaign that ran until 2021-03-05. contains the timestamps of credit given and deducted per user_id", "columns": {"credit_type": {"name": "credit_type", "description": "High-Touch Bonus", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bonus_amount": {"name": "bonus_amount", "description": "amount of free credits in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082659.3464696, "relation_name": "dev_dkruh1.analytics___sms_stg__free_credit_high_touch_bonus", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__static', 'free_credit_high_touch_bonus') }}\n\n), analytics___sms_stg__free_credit_high_touch_bonus AS (\n\n SELECT \n\t\tcredit_type,\n\t\tsms_user_id,\n\t\tcreated_at,\n\t\tbonus_amount,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___sms_stg__free_credit_high_touch_bonus", "language": "sql", "refs": [], "sources": [["analytics__static", "free_credit_high_touch_bonus"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.free_credit_high_touch_bonus"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.free_credit_high_touch_bonus\n\n), analytics___sms_stg__free_credit_high_touch_bonus AS (\n\n SELECT \n\t\tcredit_type,\n\t\tsms_user_id,\n\t\tcreated_at,\n\t\tbonus_amount,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___sms_stg__free_credit_high_touch_bonus", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__analytics_data": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__analytics_data", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.sql", "unique_id": "model.yoda.analytics___sms_stg__analytics_data", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__analytics_data", "analytics___sms_stg__analytics_data"], "alias": "analytics___sms_stg__analytics_data", "checksum": {"name": "sha256", "checksum": "4bdb89475704790631ad9e1e9c677678d2225b4ac9aac3d26eae5b915e77f9c7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of comm analytics data - the table aggergates data for sms and email campaigns, flows and other features on an hourly basis | Granularity & Primary Key: combination of store_id, channel, source_type, source_id, sub_source_id and aggregation_date", "columns": {"analytics_data_id": {"name": "analytics_data_id", "description": "unique identifier of analytics data, made from combination of six fields - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "app key of store, part of primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel_name": {"name": "channel_name", "description": "channel name of aggregation sms/email, part of primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_type": {"name": "source_type", "description": "type of source of aggregation: flow, campaign etc. part of primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "id of source of aggregation, part of primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_source_id": {"name": "sub_source_id", "description": "id of sub source (for example step in flow), part of primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "aggregated_at": {"name": "aggregated_at", "description": "aggregation timestamp (round hours only), part of primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "aggregated_date": {"name": "aggregated_date", "description": "aggergation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "source_trigger": {"name": "source_trigger", "description": "name of trigger of aggregation if available (for example flow trigger)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_message": {"name": "source_message", "description": "message content of aggregated source (for example campaign content)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_name": {"name": "source_name", "description": "name of source of aggregation (for example campaign name)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_spent_in_usd": {"name": "total_spent_in_usd", "description": "aggregated spend from source in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_in_usd": {"name": "total_revenue_in_usd", "description": "aggregated revenue from source", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_type_automation": {"name": "is_type_automation", "description": "is type = automation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_type_campaign": {"name": "is_type_campaign", "description": "is type = campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_type_flow": {"name": "is_type_flow", "description": "is type = flow", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_channel_sms": {"name": "is_channel_sms", "description": "is channel = sms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082659.3751378, "relation_name": "dev_dkruh1.analytics___sms_stg__analytics_data", "raw_code": "WITH import_sms_stg__comm_analytics_data AS (\n SELECT * FROM {{ ref('sms_stg__comm_analytics_data') }}\n), \n\nsms_stg__comm_analytic_data AS (\nSELECT\n SHA2(CONCAT(store_id, channel, source_type, NVL(source_id,'~'), NVL(sub_source_id,'~'), NVL(aggregation_date,'~')),256) AS analytics_data_id,\n store_id AS app_key,\n channel AS channel_name,\n source_type,\n source_id,\n sub_source_id,\n aggregation_date AS aggregated_at,\n DATE(aggregation_date) AS aggregated_date,\n NULLIF(source_trigger,'') AS source_trigger,\n NULLIF(TRIM(source_message),'') AS source_message,\n NULLIF(TRIM(source_name),'') AS source_name,\n total_spent AS total_spent_in_usd,\n total_revenue AS total_revenue_in_usd,\n SMALLINT(IF(LOWER(source_type) = 'automation',1,0)) AS is_type_automation,\n SMALLINT(IF(LOWER(source_type) = 'campaign',1,0)) AS is_type_campaign,\n SMALLINT(IF(LOWER(source_type) = 'flow',1,0)) AS is_type_flow,\n SMALLINT(IF(LOWER(channel) = 'sms',1,0)) AS is_channel_sms\nFROM import_sms_stg__comm_analytics_data\n)\n\nSELECT *\nFROM sms_stg__comm_analytic_data", "language": "sql", "refs": [{"name": "sms_stg__comm_analytics_data", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__comm_analytics_data"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.sql", "compiled": true, "compiled_code": "WITH import_sms_stg__comm_analytics_data AS (\n SELECT * FROM dev_dkruh1.sms_stg__comm_analytics_data\n), \n\nsms_stg__comm_analytic_data AS (\nSELECT\n SHA2(CONCAT(store_id, channel, source_type, NVL(source_id,'~'), NVL(sub_source_id,'~'), NVL(aggregation_date,'~')),256) AS analytics_data_id,\n store_id AS app_key,\n channel AS channel_name,\n source_type,\n source_id,\n sub_source_id,\n aggregation_date AS aggregated_at,\n DATE(aggregation_date) AS aggregated_date,\n NULLIF(source_trigger,'') AS source_trigger,\n NULLIF(TRIM(source_message),'') AS source_message,\n NULLIF(TRIM(source_name),'') AS source_name,\n total_spent AS total_spent_in_usd,\n total_revenue AS total_revenue_in_usd,\n SMALLINT(IF(LOWER(source_type) = 'automation',1,0)) AS is_type_automation,\n SMALLINT(IF(LOWER(source_type) = 'campaign',1,0)) AS is_type_campaign,\n SMALLINT(IF(LOWER(source_type) = 'flow',1,0)) AS is_type_flow,\n SMALLINT(IF(LOWER(channel) = 'sms',1,0)) AS is_channel_sms\nFROM import_sms_stg__comm_analytics_data\n)\n\nSELECT *\nFROM sms_stg__comm_analytic_data", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__api_calls": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__api_calls", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.sql", "unique_id": "model.yoda.analytics___sms_stg__api_calls", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__api_calls", "analytics___sms_stg__api_calls"], "alias": "analytics___sms_stg__api_calls", "checksum": {"name": "sha256", "checksum": "e2d8932c9cd359c1c21dc823ffad13fae7f3b0913eb9cb2a8ac34728d6373113"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "api_call_id", "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["created_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled incremental table of sent SMS messages events\nGranularity: Event of sent SMS message\nPrimary Key: api_call_id", "columns": {"api_call_id": {"name": "api_call_id", "description": "unique identifier of SMS message event - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sender_title": {"name": "sender_title", "description": "The Sender name/phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "aggregator_name": {"name": "aggregator_name", "description": "Name of SMS vendor/aggregator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "receiver_title": {"name": "receiver_title", "description": "The receiving name/phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "receiver_phone_code": {"name": "receiver_phone_code", "description": "The receiver phone code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "receiver_country": {"name": "receiver_country", "description": "The receiver country - calculated based on the phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_parts_number": {"name": "message_parts_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_source_type": {"name": "message_source_type", "description": "message source type: 1 - Automation, 2 - Campaign, 3 - Flow, 4 - Other.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "message_source_type_name": {"name": "message_source_type_name", "description": "message source type name : Automation, Campaign, Flow, Other.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_type": {"name": "message_type", "description": "message type: mms, sms, whatsapp, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_status": {"name": "message_status", "description": "message status: sent, pending, banned, invalid_number, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "spot_user_balance_in_usd": {"name": "spot_user_balance_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "price_billed_in_usd": {"name": "price_billed_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "price_vendor_cost_in_usd": {"name": "price_vendor_cost_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "created_at": {"name": "created_at", "description": "SMS message event created timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "SMS message event created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_month": {"name": "created_month", "description": "SMS message event created month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "SMS message event modified timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "SMS message event modified date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_sms": {"name": "is_sms", "description": "sms indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_mms": {"name": "is_mms", "description": "mms indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "materialized": "incremental", "unique_key": "api_call_id", "incremental_strategy": "merge", "partition_by": ["created_date"]}, "created_at": 1700082659.4257154, "relation_name": "dev_dkruh1.analytics___sms_stg__api_calls", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key='api_call_id',\n incremental_strategy = 'merge',\n partition_by = ['created_date']\n )\n}}\n\n-- Import --\n\nWITH import_apicalls AS (\nSELECT * \nFROM {{ ref('sms_stg__apicalls') }}\nWHERE DATE(created) <= DATE_SUB(CURRENT_DATE, 1)\n{% if is_incremental() %}\nAND DATE(created) > (SELECT DATE_SUB(MAX(created_date),8) FROM {{ this }})\n{% endif %}\n{% if target.name == 'dev' %}\nAND created BETWEEN DATE_SUB(CURRENT_DATE,5) AND DATE(CURRENT_DATE)\n{% endif %}\n),\n\nimport_phone_code_country_mapping AS (\nSELECT * FROM {{ ref('analytics___platform_stg__phone_code_country_mapping') }}\n),\n\n-- Logic --\n\ndata_cleaning AS (\nSELECT\n id AS api_call_id,\n user_id AS sms_user_id,\n campaign_id,\n event_id,\n flow_id,\n NULLIF(message_id,'') AS message_id,\n NULLIF(from,'') AS sender_title,\n NULLIF(vendor_name_used,'') AS aggregator_name,\n NULLIF(REGEXP_REPLACE(REGEXP_REPLACE(REGEXP_REPLACE(to,r'(\\(| |-)',''),r'(^\\+)',''),r'(^00)',''),'') AS receiver_title,\n parts AS message_parts_number,\n CASE WHEN NVL(event_id,0) NOT IN (0,1) THEN 1\n WHEN NVL(campaign_id,0) <> 0 THEN 2\n WHEN NVL(flow_id,0) <> 0 THEN 3\n ELSE 4 END AS message_source_type,\n LOWER(NULLIF(type,'')) AS message_type,\n NULLIF(status,'') AS message_status,\n CAST(spot_user_balance AS DECIMAL(12,4)) AS spot_user_balance_in_usd,\n CAST(price_billed AS DECIMAL(12,4)) AS price_billed_in_usd,\n CAST(price_vendor_cost AS DECIMAL(12,4)) AS price_vendor_cost_in_usd,\n created AS created_at,\n DATE(created) AS created_date,\n TRUNC(created,'MONTH') AS created_month,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n IF(LOWER(type) = 'sms',1,0) AS is_sms,\n IF(LOWER(type) = 'mms',1,0) AS is_mms,\n SMALLINT(is_logical_deleted) AS is_logical_deleted\nFROM import_apicalls\n),\n\nphone_code_calculation AS (\nSELECT\n api_call_id,\n sms_user_id,\n campaign_id,\n event_id,\n flow_id,\n message_id,\n sender_title,\n aggregator_name,\n receiver_title,\n CASE WHEN LEFT(receiver_title,1) = '1' THEN LEFT(receiver_title,4)\n WHEN LEFT(receiver_title,1) = '7' THEN LEFT(receiver_title,1)\n WHEN LEFT(receiver_title,2) IN ('20','27','30','31','32','33','34','36','39','40','41','43',\n '44','45','46','47','48','49','51','52','53','54','55','56',\n '57','58','60','61','62','63','64','65','66','81','82','84',\n '86','90','91','92','93','94','95','98') THEN LEFT(receiver_title,2)\n ELSE LEFT(receiver_title,3) END AS receiver_phone_code,\n message_parts_number,\n message_source_type,\n CASE WHEN message_source_type = 1 THEN 'Automation'\n WHEN message_source_type = 2 THEN 'Campaign'\n WHEN message_source_type = 3 THEN 'Flow'\n WHEN message_source_type = 4 THEN 'Other' END AS message_source_type_name,\n message_type,\n message_status,\n spot_user_balance_in_usd,\n price_billed_in_usd,\n price_vendor_cost_in_usd,\n created_at,\n created_date,\n created_month,\n modified_at,\n modified_date,\n is_sms,\n is_mms,\n is_logical_deleted\nFROM data_cleaning\n),\n\nstg__api_calls_res AS (\nSELECT\n calculation.api_call_id,\n calculation.sms_user_id,\n calculation.campaign_id,\n calculation.event_id,\n calculation.flow_id,\n calculation.message_id,\n calculation.sender_title,\n calculation.aggregator_name,\n calculation.receiver_title,\n calculation.receiver_phone_code,\n country_mapping.country_name AS receiver_country,\n calculation.message_parts_number,\n calculation.message_source_type,\n calculation.message_source_type_name,\n calculation.message_type,\n calculation.message_status,\n calculation.spot_user_balance_in_usd,\n calculation.price_billed_in_usd,\n calculation.price_vendor_cost_in_usd,\n calculation.created_at,\n calculation.created_date,\n calculation.created_month,\n calculation.modified_at,\n calculation.modified_date,\n calculation.is_sms,\n calculation.is_mms,\n calculation.is_logical_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM phone_code_calculation AS calculation\nLEFT JOIN import_phone_code_country_mapping AS country_mapping\n ON calculation.receiver_phone_code = country_mapping.phone_code\n)\n\n-- Result --\n\nSELECT *\nFROM stg__api_calls_res", "language": "sql", "refs": [{"name": "sms_stg__apicalls", "package": null, "version": null}, {"name": "analytics___platform_stg__phone_code_country_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__apicalls", "model.yoda.analytics___platform_stg__phone_code_country_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_apicalls AS (\nSELECT * \nFROM dev_dkruh1.sms_stg__apicalls\nWHERE DATE(created) <= DATE_SUB(CURRENT_DATE, 1)\n\n\nAND created BETWEEN DATE_SUB(CURRENT_DATE,5) AND DATE(CURRENT_DATE)\n\n),\n\nimport_phone_code_country_mapping AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__phone_code_country_mapping\n),\n\n-- Logic --\n\ndata_cleaning AS (\nSELECT\n id AS api_call_id,\n user_id AS sms_user_id,\n campaign_id,\n event_id,\n flow_id,\n NULLIF(message_id,'') AS message_id,\n NULLIF(from,'') AS sender_title,\n NULLIF(vendor_name_used,'') AS aggregator_name,\n NULLIF(REGEXP_REPLACE(REGEXP_REPLACE(REGEXP_REPLACE(to,r'(\\(| |-)',''),r'(^\\+)',''),r'(^00)',''),'') AS receiver_title,\n parts AS message_parts_number,\n CASE WHEN NVL(event_id,0) NOT IN (0,1) THEN 1\n WHEN NVL(campaign_id,0) <> 0 THEN 2\n WHEN NVL(flow_id,0) <> 0 THEN 3\n ELSE 4 END AS message_source_type,\n LOWER(NULLIF(type,'')) AS message_type,\n NULLIF(status,'') AS message_status,\n CAST(spot_user_balance AS DECIMAL(12,4)) AS spot_user_balance_in_usd,\n CAST(price_billed AS DECIMAL(12,4)) AS price_billed_in_usd,\n CAST(price_vendor_cost AS DECIMAL(12,4)) AS price_vendor_cost_in_usd,\n created AS created_at,\n DATE(created) AS created_date,\n TRUNC(created,'MONTH') AS created_month,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n IF(LOWER(type) = 'sms',1,0) AS is_sms,\n IF(LOWER(type) = 'mms',1,0) AS is_mms,\n SMALLINT(is_logical_deleted) AS is_logical_deleted\nFROM import_apicalls\n),\n\nphone_code_calculation AS (\nSELECT\n api_call_id,\n sms_user_id,\n campaign_id,\n event_id,\n flow_id,\n message_id,\n sender_title,\n aggregator_name,\n receiver_title,\n CASE WHEN LEFT(receiver_title,1) = '1' THEN LEFT(receiver_title,4)\n WHEN LEFT(receiver_title,1) = '7' THEN LEFT(receiver_title,1)\n WHEN LEFT(receiver_title,2) IN ('20','27','30','31','32','33','34','36','39','40','41','43',\n '44','45','46','47','48','49','51','52','53','54','55','56',\n '57','58','60','61','62','63','64','65','66','81','82','84',\n '86','90','91','92','93','94','95','98') THEN LEFT(receiver_title,2)\n ELSE LEFT(receiver_title,3) END AS receiver_phone_code,\n message_parts_number,\n message_source_type,\n CASE WHEN message_source_type = 1 THEN 'Automation'\n WHEN message_source_type = 2 THEN 'Campaign'\n WHEN message_source_type = 3 THEN 'Flow'\n WHEN message_source_type = 4 THEN 'Other' END AS message_source_type_name,\n message_type,\n message_status,\n spot_user_balance_in_usd,\n price_billed_in_usd,\n price_vendor_cost_in_usd,\n created_at,\n created_date,\n created_month,\n modified_at,\n modified_date,\n is_sms,\n is_mms,\n is_logical_deleted\nFROM data_cleaning\n),\n\nstg__api_calls_res AS (\nSELECT\n calculation.api_call_id,\n calculation.sms_user_id,\n calculation.campaign_id,\n calculation.event_id,\n calculation.flow_id,\n calculation.message_id,\n calculation.sender_title,\n calculation.aggregator_name,\n calculation.receiver_title,\n calculation.receiver_phone_code,\n country_mapping.country_name AS receiver_country,\n calculation.message_parts_number,\n calculation.message_source_type,\n calculation.message_source_type_name,\n calculation.message_type,\n calculation.message_status,\n calculation.spot_user_balance_in_usd,\n calculation.price_billed_in_usd,\n calculation.price_vendor_cost_in_usd,\n calculation.created_at,\n calculation.created_date,\n calculation.created_month,\n calculation.modified_at,\n calculation.modified_date,\n calculation.is_sms,\n calculation.is_mms,\n calculation.is_logical_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM phone_code_calculation AS calculation\nLEFT JOIN import_phone_code_country_mapping AS country_mapping\n ON calculation.receiver_phone_code = country_mapping.phone_code\n)\n\n-- Result --\n\nSELECT *\nFROM stg__api_calls_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__bigcommerce_user": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__bigcommerce_user", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.sql", "unique_id": "model.yoda.analytics___sms_stg__bigcommerce_user", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__bigcommerce_user", "analytics___sms_stg__bigcommerce_user"], "alias": "analytics___sms_stg__bigcommerce_user", "checksum": {"name": "sha256", "checksum": "3c69703e90257ba752054404ddf1c3a5ba9e197d08c4e98dcd632b5cdbacc84b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of bigcommerce stores users | Granularity & Primary Key: bigcommerce_user_id", "columns": {"bigcommerce_user_id": {"name": "bigcommerce_user_id", "description": "unique identifier of bigcommerce user - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_name": {"name": "store_name", "description": "store name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "store domain name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bigcommerce_plan_name": {"name": "bigcommerce_plan_name", "description": "bigcommerce plan name: Plus Store Monthly, Enterprise Store Monthly - Tier 9, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bigcommerce_plan_level": {"name": "bigcommerce_plan_level", "description": "bigcommerce plan level: Platinum, Silver, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "abandoned_checkouts_sent": {"name": "abandoned_checkouts_sent", "description": "number of abandoned checkouts", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_data": {"name": "shop_data", "description": "shop data in JSON format: logo, language, features, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_access_token": {"name": "is_access_token", "description": "store access token indication", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_connected": {"name": "is_connected", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_auto_reload": {"name": "is_auto_reload", "description": "store auto reload credits indication", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_active": {"name": "is_active", "description": "activeness indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_user_id_row_rank": {"name": "sms_user_id_row_rank", "description": "bigcommerce's user ranking for yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082659.4689562, "relation_name": "dev_dkruh1.analytics___sms_stg__bigcommerce_user", "raw_code": "WITH import_sms_stg__bigcommerce_users AS (\n SELECT * FROM {{ ref('sms_stg__bigcommerce_users') }}\n), \n\nsms_stg__bigcommerce_user AS (\n SELECT\n id AS bigcommerce_user_id,\n user_id AS sms_user_id,\n store AS store_name,\n domain AS store_domain,\n NULLIF(plan_name,'') AS bigcommerce_plan_name,\n NULLIF(plan_level,'') AS bigcommerce_plan_level,\n abandoned_checkouts_sent,\n NULLIF(shop_data,'') AS shop_data,\n IF(NULLIF(access_token,'') IS NULL,0,1) AS is_access_token,\n SMALLINT(connected) AS is_connected,\n auto_reload AS is_auto_reload,\n SMALLINT(IF(NULLIF(access_token,'') IS NOT NULL AND NULLIF(shop_data,'') IS NOT NULL,1,0)) AS is_active,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n IF(user_id IS NULL,1,ROW_NUMBER() OVER (PARTITION BY user_id ORDER BY connected DESC, id DESC)) AS sms_user_id_row_rank\n FROM import_sms_stg__bigcommerce_users\n)\n\nSELECT\n bigcommerce_user_id,\n sms_user_id,\n store_name,\n store_domain,\n bigcommerce_plan_name,\n bigcommerce_plan_level,\n abandoned_checkouts_sent,\n shop_data,\n is_access_token,\n is_connected,\n is_auto_reload,\n is_active,\n is_logical_deleted,\n created_at,\n created_date,\n modified_at,\n modified_date,\n sms_user_id_row_rank\nFROM sms_stg__bigcommerce_user", "language": "sql", "refs": [{"name": "sms_stg__bigcommerce_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__bigcommerce_users"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.sql", "compiled": true, "compiled_code": "WITH import_sms_stg__bigcommerce_users AS (\n SELECT * FROM dev_dkruh1.sms_stg__bigcommerce_users\n), \n\nsms_stg__bigcommerce_user AS (\n SELECT\n id AS bigcommerce_user_id,\n user_id AS sms_user_id,\n store AS store_name,\n domain AS store_domain,\n NULLIF(plan_name,'') AS bigcommerce_plan_name,\n NULLIF(plan_level,'') AS bigcommerce_plan_level,\n abandoned_checkouts_sent,\n NULLIF(shop_data,'') AS shop_data,\n IF(NULLIF(access_token,'') IS NULL,0,1) AS is_access_token,\n SMALLINT(connected) AS is_connected,\n auto_reload AS is_auto_reload,\n SMALLINT(IF(NULLIF(access_token,'') IS NOT NULL AND NULLIF(shop_data,'') IS NOT NULL,1,0)) AS is_active,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n IF(user_id IS NULL,1,ROW_NUMBER() OVER (PARTITION BY user_id ORDER BY connected DESC, id DESC)) AS sms_user_id_row_rank\n FROM import_sms_stg__bigcommerce_users\n)\n\nSELECT\n bigcommerce_user_id,\n sms_user_id,\n store_name,\n store_domain,\n bigcommerce_plan_name,\n bigcommerce_plan_level,\n abandoned_checkouts_sent,\n shop_data,\n is_access_token,\n is_connected,\n is_auto_reload,\n is_active,\n is_logical_deleted,\n created_at,\n created_date,\n modified_at,\n modified_date,\n sms_user_id_row_rank\nFROM sms_stg__bigcommerce_user", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__campaign": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__campaign", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.sql", "unique_id": "model.yoda.analytics___sms_stg__campaign", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign", "analytics___sms_stg__campaign"], "alias": "analytics___sms_stg__campaign", "checksum": {"name": "sha256", "checksum": "70f20281705ee6d39613d4f7c949df835e2e0d5d3e46e138d7dee26d6d325cc3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ideutsch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms campaigns | Granularity & Primary Key: campaign_id", "columns": {"campaign_id": {"name": "campaign_id", "description": "campaign unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "campaign channel: sms or email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "status of campaign: draft, sent, scheduling, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "campaign title", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "message content of the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_approved": {"name": "is_approved", "description": "campaign approved indicator 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "scheduled_at": {"name": "scheduled_at", "description": "scheduling timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "scheduled_date": {"name": "scheduled_date", "description": "scheduling date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "is_logical_deleted - deletion indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ideutsch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ideutsch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082659.5099628, "relation_name": "dev_dkruh1.analytics___sms_stg__campaign", "raw_code": "{{\n config(materialized=dbt_data_applications.get_table_materialization('table', 'view'))\n}}\n\n-- Import --\n\nWITH import_sms_campaign_deletion_tracking AS (\nSELECT * FROM {{ ref('analytics___sms_stg__campaign_deletion_tracking') }}\n),\n\n-- Logic --\n\ncampaign_ranking AS (\nSELECT\n campaign_id,\n is_logical_deleted,\n sms_user_id,\n channel,\n status,\n title,\n message,\n is_approved,\n created_at,\n created_date,\n modified_at,\n modified_date,\n scheduled_at,\n scheduled_date,\n ROW_NUMBER() OVER (PARTITION BY campaign_id ORDER BY is_logical_deleted) AS campaign_row_ranking\nFROM import_sms_campaign_deletion_tracking\n),\n\ncampaign_earliest_row AS (\nSELECT\n campaign_id,\n sms_user_id,\n channel,\n status,\n title,\n message,\n is_approved,\n created_at,\n created_date,\n modified_at,\n modified_date,\n scheduled_at,\n scheduled_date,\n is_logical_deleted\nFROM campaign_ranking\nWHERE campaign_row_ranking = 1\n),\n\ncampaign_deleted_row (\nSELECT\n campaign_id,\n is_logical_deleted\nFROM campaign_ranking\nWHERE campaign_row_ranking = 2\nAND is_logical_deleted = 1\n),\n\nsms_stg__campaign_res AS (\nSELECT\n earliest.campaign_id,\n earliest.sms_user_id,\n earliest.channel,\n earliest.status,\n earliest.title,\n earliest.message,\n earliest.is_approved,\n earliest.created_at,\n earliest.created_date,\n earliest.modified_at,\n earliest.modified_date,\n earliest.scheduled_at,\n earliest.scheduled_date,\n COALESCE(deleted.is_logical_deleted, earliest.is_logical_deleted) AS is_logical_deleted,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM campaign_earliest_row AS earliest\nLEFT JOIN campaign_deleted_row AS deleted\nON earliest.campaign_id = deleted.campaign_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__campaign_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__campaign_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_campaign_deletion_tracking AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__campaign_deletion_tracking\n),\n\n-- Logic --\n\ncampaign_ranking AS (\nSELECT\n campaign_id,\n is_logical_deleted,\n sms_user_id,\n channel,\n status,\n title,\n message,\n is_approved,\n created_at,\n created_date,\n modified_at,\n modified_date,\n scheduled_at,\n scheduled_date,\n ROW_NUMBER() OVER (PARTITION BY campaign_id ORDER BY is_logical_deleted) AS campaign_row_ranking\nFROM import_sms_campaign_deletion_tracking\n),\n\ncampaign_earliest_row AS (\nSELECT\n campaign_id,\n sms_user_id,\n channel,\n status,\n title,\n message,\n is_approved,\n created_at,\n created_date,\n modified_at,\n modified_date,\n scheduled_at,\n scheduled_date,\n is_logical_deleted\nFROM campaign_ranking\nWHERE campaign_row_ranking = 1\n),\n\ncampaign_deleted_row (\nSELECT\n campaign_id,\n is_logical_deleted\nFROM campaign_ranking\nWHERE campaign_row_ranking = 2\nAND is_logical_deleted = 1\n),\n\nsms_stg__campaign_res AS (\nSELECT\n earliest.campaign_id,\n earliest.sms_user_id,\n earliest.channel,\n earliest.status,\n earliest.title,\n earliest.message,\n earliest.is_approved,\n earliest.created_at,\n earliest.created_date,\n earliest.modified_at,\n earliest.modified_date,\n earliest.scheduled_at,\n earliest.scheduled_date,\n COALESCE(deleted.is_logical_deleted, earliest.is_logical_deleted) AS is_logical_deleted,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM campaign_earliest_row AS earliest\nLEFT JOIN campaign_deleted_row AS deleted\nON earliest.campaign_id = deleted.campaign_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__campaign_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__campaign_deletion_tracking": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__campaign_deletion_tracking", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.sql", "unique_id": "model.yoda.analytics___sms_stg__campaign_deletion_tracking", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_deletion_tracking", "analytics___sms_stg__campaign_deletion_tracking"], "alias": "analytics___sms_stg__campaign_deletion_tracking", "checksum": {"name": "sha256", "checksum": "046547c734ff32d1f0dc1510a5727c43cdb4b57e04f23292a26abb8f1f10151d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ideutsch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["campaign_id", "is_logical_deleted"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Incremental table of sms campaigns with the purpose to keep the history content of deleted campaigns at the source table | \nGranularity & Primary Key: campaign_id, is_logical_deleted", "columns": {"campaign_id": {"name": "campaign_id", "description": "campaign unique identifier - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "is_logical_deleted - deletion indicator - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "campaign channel: sms or email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "status of campaign: draft, sent, scheduling, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "campaign title", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "message content of the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_approved": {"name": "is_approved", "description": "campaign approved indicator 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "scheduled_at": {"name": "scheduled_at", "description": "scheduling timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "scheduled_date": {"name": "scheduled_date", "description": "scheduling date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ideutsch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ideutsch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "incremental", "unique_key": ["campaign_id", "is_logical_deleted"], "incremental_strategy": "merge"}, "created_at": 1700082659.5515869, "relation_name": "dev_dkruh1.analytics___sms_stg__campaign_deletion_tracking", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key= ['campaign_id','is_logical_deleted'],\n incremental_strategy = 'merge'\n )\n}}\n\n-- Import --\n\nWITH import_sms_campaigns AS (\n SELECT * FROM {{ ref('sms_stg__campaigns') }}\n),\n\n-- Logic --\n\ncampaign_deletion_tracking AS (\n SELECT\n id AS campaign_id,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n user_id AS sms_user_id,\n channel,\n status,\n title,\n message,\n SMALLINT(approved) AS is_approved,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n scheduled AS scheduled_at,\n DATE(scheduled) AS scheduled_date,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_sms_campaigns\n)\n\n-- Result --\n\nSELECT *\nFROM campaign_deletion_tracking", "language": "sql", "refs": [{"name": "sms_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_campaigns AS (\n SELECT * FROM dev_dkruh1.sms_stg__campaigns\n),\n\n-- Logic --\n\ncampaign_deletion_tracking AS (\n SELECT\n id AS campaign_id,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n user_id AS sms_user_id,\n channel,\n status,\n title,\n message,\n SMALLINT(approved) AS is_approved,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n scheduled AS scheduled_at,\n DATE(scheduled) AS scheduled_date,\n CURRENT_TIMESTAMP() AS dwh_updated_at\n FROM import_sms_campaigns\n)\n\n-- Result --\n\nSELECT *\nFROM campaign_deletion_tracking", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__campaign_list": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__campaign_list", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.sql", "unique_id": "model.yoda.analytics___sms_stg__campaign_list", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_list", "analytics___sms_stg__campaign_list"], "alias": "analytics___sms_stg__campaign_list", "checksum": {"name": "sha256", "checksum": "68c1adc585cef8b43b706c8fc667674c2eb0d72e961b9ba54767004522f155e5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of sms campaign lists | Granularity & Primary Key: campaign_list_id", "columns": {"campaign_list_id": {"name": "campaign_list_id", "description": "campaign list id - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "list_id": {"name": "list_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_exclude": {"name": "is_exclude", "description": "indicator for include - 0 or exclude - 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082659.5911396, "relation_name": "dev_dkruh1.analytics___sms_stg__campaign_list", "raw_code": "-- Import --\n\nWITH import_sms_campaign_lists AS (\nSELECT * FROM {{ ref('sms_stg__campaign_lists') }}\n),\n\n-- Logic --\n\nsms_stg__campaign_list_res AS (\nSELECT\n id AS campaign_list_id,\n user_id AS sms_user_id,\n campaign_id,\n list_id,\n SMALLINT(exclude) AS is_exclude\nFROM import_sms_campaign_lists\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__campaign_list_res", "language": "sql", "refs": [{"name": "sms_stg__campaign_lists", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__campaign_lists"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_campaign_lists AS (\nSELECT * FROM dev_dkruh1.sms_stg__campaign_lists\n),\n\n-- Logic --\n\nsms_stg__campaign_list_res AS (\nSELECT\n id AS campaign_list_id,\n user_id AS sms_user_id,\n campaign_id,\n list_id,\n SMALLINT(exclude) AS is_exclude\nFROM import_sms_campaign_lists\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__campaign_list_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__campaign_relation": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__campaign_relation", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.sql", "unique_id": "model.yoda.analytics___sms_stg__campaign_relation", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_relation", "analytics___sms_stg__campaign_relation"], "alias": "analytics___sms_stg__campaign_relation", "checksum": {"name": "sha256", "checksum": "1f87120584c803c7ba58ae9bc50d8765a06b8e80e2069a4edb79ad5fd82076af"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of sms campaign relations | Granularity & Primary Key: campaign_relation_id", "columns": {"campaign_relation_id": {"name": "campaign_relation_id", "description": "campaign relation id - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "unique identifier of sms campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "template_id": {"name": "template_id", "description": "unique identifier of the campaign message template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "template_type": {"name": "template_type", "description": "template type - campaign calendar template or default message templates", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082659.6268344, "relation_name": "dev_dkruh1.analytics___sms_stg__campaign_relation", "raw_code": "-- Import --\n\nWITH import_sms_campaign_relations AS (\nSELECT * FROM {{ ref('sms_stg__campaign_relations') }}\n),\n\n-- Logic --\n\nsms_stg__campaign_relation_res AS (\nSELECT\n id AS campaign_relation_id,\n user_id AS sms_user_id,\n campaign_id,\n resource_id AS template_id,\n resource_type AS template_type,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_campaign_relations\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__campaign_relation_res", "language": "sql", "refs": [{"name": "sms_stg__campaign_relations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__campaign_relations"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_campaign_relations AS (\nSELECT * FROM dev_dkruh1.sms_stg__campaign_relations\n),\n\n-- Logic --\n\nsms_stg__campaign_relation_res AS (\nSELECT\n id AS campaign_relation_id,\n user_id AS sms_user_id,\n campaign_id,\n resource_id AS template_id,\n resource_type AS template_type,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_campaign_relations\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__campaign_relation_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__default_predefined_message": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__default_predefined_message", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.sql", "unique_id": "model.yoda.analytics___sms_stg__default_predefined_message", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__default_predefined_message", "analytics___sms_stg__default_predefined_message"], "alias": "analytics___sms_stg__default_predefined_message", "checksum": {"name": "sha256", "checksum": "46ae5ae0bf952e22b70fae9846d2fdac2d0e4c01d130b9c4dc1fe45ff082593d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of sms default predefined messages | Granularity & Primary Key: template_id", "columns": {"template_id": {"name": "template_id", "description": "template_id - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_type": {"name": "message_type", "description": "message type - campaigns or flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_trigger": {"name": "flow_trigger", "description": "the flow trigger - has value if the message type is flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "the category of the message - loyalty, sales, seasonal, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_category": {"name": "sub_category", "description": "the sub category of the message - when relevant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active_in_b2b": {"name": "is_active_in_b2b", "description": "indicates whether this is currently active and visible in the b2b", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082659.6643524, "relation_name": "dev_dkruh1.analytics___sms_stg__default_predefined_message", "raw_code": "-- Import --\n\nWITH import_sms_default_predefined_messages AS (\nSELECT * FROM {{ ref('sms_stg__default_predefined_messages') }}\n),\n\n-- Logic --\n\nsms_stg__default_predefined_message_res AS (\nSELECT\n id AS template_id,\n type AS message_type,\n NULLIF(trigger,'') AS flow_trigger,\n category,\n sub_category,\n active AS is_active_in_b2b,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_default_predefined_messages\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__default_predefined_message_res", "language": "sql", "refs": [{"name": "sms_stg__default_predefined_messages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__default_predefined_messages"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_default_predefined_messages AS (\nSELECT * FROM dev_dkruh1.sms_stg__default_predefined_messages\n),\n\n-- Logic --\n\nsms_stg__default_predefined_message_res AS (\nSELECT\n id AS template_id,\n type AS message_type,\n NULLIF(trigger,'') AS flow_trigger,\n category,\n sub_category,\n active AS is_active_in_b2b,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_default_predefined_messages\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__default_predefined_message_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__email_charge": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__email_charge", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.sql", "unique_id": "model.yoda.analytics___sms_stg__email_charge", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__email_charge", "analytics___sms_stg__email_charge"], "alias": "analytics___sms_stg__email_charge", "checksum": {"name": "sha256", "checksum": "8c242775b521578a0be6564c51a7add95b228759628d47e23623380bb7ef0fde"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled View of email charges. PK: email_charge_id", "columns": {"email_charge_id": {"name": "email_charge_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charge_in_usd": {"name": "charge_in_usd", "description": "total row charge in usd (if type = refund then charge_in_usd is a refund)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency": {"name": "currency", "description": "Only USD supported", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_type": {"name": "charge_type", "description": "type = charge | refund", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_refund": {"name": "is_refund", "description": "indicator = 1 if type = refund", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082659.7004044, "relation_name": "dev_dkruh1.analytics___sms_stg__email_charge", "raw_code": "WITH import_email_charge AS (\nSELECT * FROM {{ ref('sms_stg__email_charges') }}\n), \n\nemail_charge_res AS (\nSELECT \n id AS email_charge_id,\n user_id AS sms_user_id,\n price AS charge_in_usd,\n NVL(currency,'USD') AS currency,\n LOWER(type) AS charge_type,\n SMALLINT(IF(LOWER(type) = 'refund',1,0)) AS is_refund,\n TIMESTAMP(created) AS created_at,\n DATE(created) AS created_date\nFROM import_email_charge\n)\n\nSELECT * \nFROM email_charge_res", "language": "sql", "refs": [{"name": "sms_stg__email_charges", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__email_charges"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.sql", "compiled": true, "compiled_code": "WITH import_email_charge AS (\nSELECT * FROM dev_dkruh1.sms_stg__email_charges\n), \n\nemail_charge_res AS (\nSELECT \n id AS email_charge_id,\n user_id AS sms_user_id,\n price AS charge_in_usd,\n NVL(currency,'USD') AS currency,\n LOWER(type) AS charge_type,\n SMALLINT(IF(LOWER(type) = 'refund',1,0)) AS is_refund,\n TIMESTAMP(created) AS created_at,\n DATE(created) AS created_date\nFROM import_email_charge\n)\n\nSELECT * \nFROM email_charge_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__event", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.sql", "unique_id": "model.yoda.analytics___sms_stg__event", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__event", "analytics___sms_stg__event"], "alias": "analytics___sms_stg__event", "checksum": {"name": "sha256", "checksum": "78d5d14acc0dcc0202168628e1ebf67f75506580d5f5e40c308149baafc3fa56"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms automation events | Granularity & Primary Key: event_id", "columns": {"event_id": {"name": "event_id", "description": "automation event unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_name": {"name": "event_name", "description": "event name: Abandon Cart, Subscription, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "webhook": {"name": "webhook", "description": "webhook: keyword/subscription, orders/paid, integrations/smile_referral, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "settings": {"name": "settings", "description": "the event's data: message, SiteName, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "generic, shopify, bigcommerce, magento", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_enabled": {"name": "is_enabled", "description": "event enablement status indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "deletion indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082659.7506344, "relation_name": "dev_dkruh1.analytics___sms_stg__event", "raw_code": "{{\n config(materialized=dbt_data_applications.get_table_materialization('table', 'view'))\n}}\n\n-- Import --\n\nWITH import_sms_event_deletion_tracking AS (\nSELECT * FROM {{ ref('analytics___sms_stg__event_deletion_tracking') }}\n),\n\n-- Logic --\n\nevent_ranking AS (\nSELECT\n event_id,\n is_logical_deleted,\n event_name,\n sms_user_id,\n webhook,\n settings,\n platform_name,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at,\n ROW_NUMBER() OVER (PARTITION BY event_id ORDER BY is_logical_deleted) AS event_row_ranking\nFROM import_sms_event_deletion_tracking\n),\n\nevent_earliest_row AS (\nSELECT\n event_id,\n event_name,\n sms_user_id,\n webhook,\n settings,\n platform_name,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n is_logical_deleted\nFROM event_ranking\nWHERE event_row_ranking = 1\n),\n\nevent_deleted_row (\nSELECT\n event_id,\n is_logical_deleted\nFROM event_ranking\nWHERE event_row_ranking = 2\nAND is_logical_deleted = 1\n),\n\nsms_stg__event_res AS (\nSELECT\n earliest.event_id,\n earliest.event_name,\n earliest.sms_user_id,\n earliest.webhook,\n earliest.settings,\n earliest.platform_name,\n earliest.is_enabled,\n COALESCE(deleted.is_logical_deleted, earliest.is_logical_deleted) AS is_logical_deleted,\n earliest.created_at,\n earliest.created_date,\n earliest.modified_at,\n earliest.modified_date,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM event_earliest_row AS earliest\nLEFT JOIN event_deleted_row AS deleted\nON earliest.event_id = deleted.event_id\n)\n\n-- Result --\n\nSELECT\n event_id,\n event_name,\n sms_user_id,\n webhook,\n settings,\n platform_name,\n is_enabled,\n is_logical_deleted,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at\nFROM sms_stg__event_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__event_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__event_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_event_deletion_tracking AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__event_deletion_tracking\n),\n\n-- Logic --\n\nevent_ranking AS (\nSELECT\n event_id,\n is_logical_deleted,\n event_name,\n sms_user_id,\n webhook,\n settings,\n platform_name,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at,\n ROW_NUMBER() OVER (PARTITION BY event_id ORDER BY is_logical_deleted) AS event_row_ranking\nFROM import_sms_event_deletion_tracking\n),\n\nevent_earliest_row AS (\nSELECT\n event_id,\n event_name,\n sms_user_id,\n webhook,\n settings,\n platform_name,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n is_logical_deleted\nFROM event_ranking\nWHERE event_row_ranking = 1\n),\n\nevent_deleted_row (\nSELECT\n event_id,\n is_logical_deleted\nFROM event_ranking\nWHERE event_row_ranking = 2\nAND is_logical_deleted = 1\n),\n\nsms_stg__event_res AS (\nSELECT\n earliest.event_id,\n earliest.event_name,\n earliest.sms_user_id,\n earliest.webhook,\n earliest.settings,\n earliest.platform_name,\n earliest.is_enabled,\n COALESCE(deleted.is_logical_deleted, earliest.is_logical_deleted) AS is_logical_deleted,\n earliest.created_at,\n earliest.created_date,\n earliest.modified_at,\n earliest.modified_date,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM event_earliest_row AS earliest\nLEFT JOIN event_deleted_row AS deleted\nON earliest.event_id = deleted.event_id\n)\n\n-- Result --\n\nSELECT\n event_id,\n event_name,\n sms_user_id,\n webhook,\n settings,\n platform_name,\n is_enabled,\n is_logical_deleted,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at\nFROM sms_stg__event_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__event_deletion_tracking": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__event_deletion_tracking", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.sql", "unique_id": "model.yoda.analytics___sms_stg__event_deletion_tracking", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__event_deletion_tracking", "analytics___sms_stg__event_deletion_tracking"], "alias": "analytics___sms_stg__event_deletion_tracking", "checksum": {"name": "sha256", "checksum": "53eb90c20ca4b0aea4efdfe5bc16edc195e1c10bf2e75c9e24cc1c20f25fb973"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["event_id", "is_logical_deleted"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "An Incremental table of sms automation events with the purpose to keep the history content of deleted events at the source table | Granularity & Primary Key: event_id, is_logical_deleted", "columns": {"event_id": {"name": "event_id", "description": "automation event unique identifier - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "is_logical_deleted - deletion indicator - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "event_name": {"name": "event_name", "description": "event name: Abandon Cart, Subscription, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "webhook": {"name": "webhook", "description": "webhook: keyword/subscription, orders/paid, integrations/smile_referral, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "settings": {"name": "settings", "description": "the event's data: message, SiteName, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "generic, shopify, bigcommerce, magento", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_enabled": {"name": "is_enabled", "description": "event enablement status indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "incremental", "unique_key": ["event_id", "is_logical_deleted"], "incremental_strategy": "merge"}, "created_at": 1700082659.789545, "relation_name": "dev_dkruh1.analytics___sms_stg__event_deletion_tracking", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key= ['event_id','is_logical_deleted'],\n incremental_strategy = 'merge'\n )\n}}\n\n-- Import --\n\nWITH import_sms_events AS (\nSELECT * FROM {{ ref('sms_stg__events') }}\n),\n\n-- Logic --\n\ncleanup AS (\nSELECT\n id AS event_id,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n NULLIF(TRIM(name),'') AS event_name,\n user_id AS sms_user_id,\n NULLIF(TRIM(webhook),'') AS webhook,\n settings,\n platform AS platform_name,\n SMALLINT(status) AS is_enabled,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM import_sms_events\n)\n\n-- Result --\n\nSELECT\n event_id,\n is_logical_deleted,\n event_name,\n sms_user_id,\n webhook,\n settings,\n platform_name,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at\nFROM cleanup", "language": "sql", "refs": [{"name": "sms_stg__events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__events"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_events AS (\nSELECT * FROM dev_dkruh1.sms_stg__events\n),\n\n-- Logic --\n\ncleanup AS (\nSELECT\n id AS event_id,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n NULLIF(TRIM(name),'') AS event_name,\n user_id AS sms_user_id,\n NULLIF(TRIM(webhook),'') AS webhook,\n settings,\n platform AS platform_name,\n SMALLINT(status) AS is_enabled,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM import_sms_events\n)\n\n-- Result --\n\nSELECT\n event_id,\n is_logical_deleted,\n event_name,\n sms_user_id,\n webhook,\n settings,\n platform_name,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at\nFROM cleanup", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__flow": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__flow", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.sql", "unique_id": "model.yoda.analytics___sms_stg__flow", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__flow", "analytics___sms_stg__flow"], "alias": "analytics___sms_stg__flow", "checksum": {"name": "sha256", "checksum": "eeb88b9b8f4c7ce4240f477f6de8606aa501b2eabfd56b9c906f54a26ff7d884"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms flows | Granularity & Primary Key: flow_id", "columns": {"flow_id": {"name": "flow_id", "description": "flow unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_name": {"name": "flow_name", "description": "flow name: Shipping Confirmation, abandoned checkouts, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_trigger": {"name": "flow_trigger", "description": "flow's trigger: product/viewed, orders/paid, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_settings": {"name": "flow_settings", "description": "flow's data: discount_type, message, embed_in_url, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "snapshot_id": {"name": "snapshot_id", "description": "snapshot id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled": {"name": "is_enabled", "description": "flow enablement status indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "is_logical_deleted - deletion indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082659.8352718, "relation_name": "dev_dkruh1.analytics___sms_stg__flow", "raw_code": "{{\n config(materialized=dbt_data_applications.get_table_materialization('table', 'view'))\n}}\n\n-- Import --\n\nWITH import_sms_flow_deletion_tracking AS (\nSELECT * FROM {{ ref('analytics___sms_stg__flow_deletion_tracking') }}\n),\n\n-- Logic --\n\nflow_ranking AS (\nSELECT\n flow_id,\n is_logical_deleted,\n flow_name,\n sms_user_id,\n flow_trigger,\n flow_settings,\n platform_name,\n snapshot_id,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at,\n ROW_NUMBER() OVER (PARTITION BY flow_id ORDER BY is_logical_deleted) AS flow_row_ranking\nFROM import_sms_flow_deletion_tracking\n),\n\nflow_earliest_row AS (\nSELECT\n flow_id,\n flow_name,\n sms_user_id,\n flow_trigger,\n flow_settings,\n platform_name,\n snapshot_id,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n is_logical_deleted\nFROM flow_ranking\nWHERE flow_row_ranking = 1\n),\n\nflow_deleted_row (\nSELECT\n flow_id,\n is_logical_deleted\nFROM flow_ranking\nWHERE flow_row_ranking = 2\nAND is_logical_deleted = 1\n),\n\nsms_stg__flow_res AS (\nSELECT\n earliest.flow_id,\n earliest.flow_name,\n earliest.sms_user_id,\n earliest.flow_trigger,\n earliest.flow_settings,\n earliest.platform_name,\n earliest.snapshot_id,\n earliest.is_enabled,\n COALESCE(deleted.is_logical_deleted, earliest.is_logical_deleted) AS is_logical_deleted,\n earliest.created_at,\n earliest.created_date,\n earliest.modified_at,\n earliest.modified_date,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM flow_earliest_row AS earliest\nLEFT JOIN flow_deleted_row AS deleted\nON earliest.flow_id = deleted.flow_id\n)\n\n-- Result --\n\nSELECT\n flow_id,\n flow_name,\n sms_user_id,\n flow_trigger,\n flow_settings,\n platform_name,\n snapshot_id,\n is_enabled,\n is_logical_deleted,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at\nFROM sms_stg__flow_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__flow_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__flow_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_flow_deletion_tracking AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__flow_deletion_tracking\n),\n\n-- Logic --\n\nflow_ranking AS (\nSELECT\n flow_id,\n is_logical_deleted,\n flow_name,\n sms_user_id,\n flow_trigger,\n flow_settings,\n platform_name,\n snapshot_id,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at,\n ROW_NUMBER() OVER (PARTITION BY flow_id ORDER BY is_logical_deleted) AS flow_row_ranking\nFROM import_sms_flow_deletion_tracking\n),\n\nflow_earliest_row AS (\nSELECT\n flow_id,\n flow_name,\n sms_user_id,\n flow_trigger,\n flow_settings,\n platform_name,\n snapshot_id,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n is_logical_deleted\nFROM flow_ranking\nWHERE flow_row_ranking = 1\n),\n\nflow_deleted_row (\nSELECT\n flow_id,\n is_logical_deleted\nFROM flow_ranking\nWHERE flow_row_ranking = 2\nAND is_logical_deleted = 1\n),\n\nsms_stg__flow_res AS (\nSELECT\n earliest.flow_id,\n earliest.flow_name,\n earliest.sms_user_id,\n earliest.flow_trigger,\n earliest.flow_settings,\n earliest.platform_name,\n earliest.snapshot_id,\n earliest.is_enabled,\n COALESCE(deleted.is_logical_deleted, earliest.is_logical_deleted) AS is_logical_deleted,\n earliest.created_at,\n earliest.created_date,\n earliest.modified_at,\n earliest.modified_date,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM flow_earliest_row AS earliest\nLEFT JOIN flow_deleted_row AS deleted\nON earliest.flow_id = deleted.flow_id\n)\n\n-- Result --\n\nSELECT\n flow_id,\n flow_name,\n sms_user_id,\n flow_trigger,\n flow_settings,\n platform_name,\n snapshot_id,\n is_enabled,\n is_logical_deleted,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at\nFROM sms_stg__flow_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__flow_deletion_tracking": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__flow_deletion_tracking", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.sql", "unique_id": "model.yoda.analytics___sms_stg__flow_deletion_tracking", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__flow_deletion_tracking", "analytics___sms_stg__flow_deletion_tracking"], "alias": "analytics___sms_stg__flow_deletion_tracking", "checksum": {"name": "sha256", "checksum": "a0e8958da9fec3025f3a9e197094fca58074dc98c408f3ad254e141677613417"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["flow_id", "is_logical_deleted"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Incremental table of sms flows with the purpose to keep the history content of deleted flows at the source table | \nGranularity & Primary Key: flow_id, is_logical_deleted", "columns": {"flow_id": {"name": "flow_id", "description": "automation flow unique identifier - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "is_logical_deleted - deletion indicator - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "flow_name": {"name": "flow_name", "description": "flow name: Shipping Confirmation, abandoned checkouts, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_trigger": {"name": "flow_trigger", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_settings": {"name": "flow_settings", "description": "flow's data: discount_type, message, embed_in_url, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "platform name: shopify, bigcommerce, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "snapshot_id": {"name": "snapshot_id", "description": "snapshot id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled": {"name": "is_enabled", "description": "flow enablement status indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "incremental", "unique_key": ["flow_id", "is_logical_deleted"], "incremental_strategy": "merge"}, "created_at": 1700082659.8749945, "relation_name": "dev_dkruh1.analytics___sms_stg__flow_deletion_tracking", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key= ['flow_id','is_logical_deleted'],\n incremental_strategy = 'merge'\n )\n}}\n\n-- Import --\n\nWITH import_sms_flows AS (\nSELECT * FROM {{ ref('sms_stg__flows') }}\n),\n\n-- Logic --\n\ncleanup AS (\nSELECT\n id AS flow_id,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n NULLIF(TRIM(name),'') AS flow_name,\n user_id AS sms_user_id,\n flow_trigger,\n flow_settings,\n platform AS platform_name,\n snapshot_id,\n status AS is_enabled,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM import_sms_flows\n)\n\n-- Result --\n\nSELECT\n flow_id,\n is_logical_deleted,\n flow_name,\n sms_user_id,\n flow_trigger,\n flow_settings,\n platform_name,\n snapshot_id,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at\nFROM cleanup", "language": "sql", "refs": [{"name": "sms_stg__flows", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__flows"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_flows AS (\nSELECT * FROM dev_dkruh1.sms_stg__flows\n),\n\n-- Logic --\n\ncleanup AS (\nSELECT\n id AS flow_id,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n NULLIF(TRIM(name),'') AS flow_name,\n user_id AS sms_user_id,\n flow_trigger,\n flow_settings,\n platform AS platform_name,\n snapshot_id,\n status AS is_enabled,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM import_sms_flows\n)\n\n-- Result --\n\nSELECT\n flow_id,\n is_logical_deleted,\n flow_name,\n sms_user_id,\n flow_trigger,\n flow_settings,\n platform_name,\n snapshot_id,\n is_enabled,\n created_at,\n created_date,\n modified_at,\n modified_date,\n dwh_updated_at\nFROM cleanup", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__form": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__form", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.sql", "unique_id": "model.yoda.analytics___sms_stg__form", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__form", "analytics___sms_stg__form"], "alias": "analytics___sms_stg__form", "checksum": {"name": "sha256", "checksum": "f937d12e70f27dc62a97803ef93e224ac4dae65665570d4d06b99c0774bc06a2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms forms | Granularity & Primary Key: form_id", "columns": {"form_id": {"name": "form_id", "description": "unique identifier of form - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "sms user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "type of form: popup, floating button etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "status of form: draft or published", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "free text name of form", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "platform name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "settings": {"name": "settings", "description": "JSON containing all form settings", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_dynamic_popup": {"name": "is_dynamic_popup", "description": "indicator for popups if dynamic/static popup, will be 0 if not a popup", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "is logical deleted", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modifed_at": {"name": "modifed_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082659.9318311, "relation_name": "dev_dkruh1.analytics___sms_stg__form", "raw_code": "WITH import_sms_stg__forms AS (\n SELECT * FROM {{ ref('sms_stg__forms') }}\n), \n\nsms_stg__form AS (\nSELECT\n id AS form_id,\n user_id AS sms_user_id,\n NULLIF(type,'') AS type,\n NULLIF(status,'') AS status,\n NULLIF(TRIM(name),'') AS name,\n platform AS platform_name,\n settings,\n SMALLINT(COALESCE(dynamic_popup,0)) AS is_dynamic_popup,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modifed_at,\n DATE(modified) AS modified_date\nFROM import_sms_stg__forms\n)\n\nSELECT *\nFROM sms_stg__form", "language": "sql", "refs": [{"name": "sms_stg__forms", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__forms"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.sql", "compiled": true, "compiled_code": "WITH import_sms_stg__forms AS (\n SELECT * FROM dev_dkruh1.sms_stg__forms\n), \n\nsms_stg__form AS (\nSELECT\n id AS form_id,\n user_id AS sms_user_id,\n NULLIF(type,'') AS type,\n NULLIF(status,'') AS status,\n NULLIF(TRIM(name),'') AS name,\n platform AS platform_name,\n settings,\n SMALLINT(COALESCE(dynamic_popup,0)) AS is_dynamic_popup,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modifed_at,\n DATE(modified) AS modified_date\nFROM import_sms_stg__forms\n)\n\nSELECT *\nFROM sms_stg__form", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__free_credit_log": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__free_credit_log", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.sql", "unique_id": "model.yoda.analytics___sms_stg__free_credit_log", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__free_credit_log", "analytics___sms_stg__free_credit_log"], "alias": "analytics___sms_stg__free_credit_log", "checksum": {"name": "sha256", "checksum": "f679379e228ff7fcf4697ccdf450f9e3006db930727f9e9678706e884a6cea28"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms free_credits_log | Granularity & Primary Key: free_credit_log_id", "columns": {"free_credit_log_id": {"name": "free_credit_log_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_name": {"name": "store_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_name": {"name": "source_name", "description": "source_name,popup_forms,integrations,onboarding, etc..", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "amount of free credits in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082659.9791684, "relation_name": "dev_dkruh1.analytics___sms_stg__free_credit_log", "raw_code": "WITH import_free_credits_logs AS (\nSELECT * FROM {{ ref('sms_stg__free_credits_logs') }}\n), \n\nfree_credit_log_res AS (\nSELECT \n id AS free_credit_log_id,\n user_id AS sms_user_id,\n store_name,\n source AS source_name,\n amount,\n created_at,\n DATE(created_at) AS created_date,\n is_logical_deleted\nFROM import_free_credits_logs\n)\n\nSELECT * \nFROM free_credit_log_res", "language": "sql", "refs": [{"name": "sms_stg__free_credits_logs", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__free_credits_logs"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.sql", "compiled": true, "compiled_code": "WITH import_free_credits_logs AS (\nSELECT * FROM dev_dkruh1.sms_stg__free_credits_logs\n), \n\nfree_credit_log_res AS (\nSELECT \n id AS free_credit_log_id,\n user_id AS sms_user_id,\n store_name,\n source AS source_name,\n amount,\n created_at,\n DATE(created_at) AS created_date,\n is_logical_deleted\nFROM import_free_credits_logs\n)\n\nSELECT * \nFROM free_credit_log_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__list": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__list", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.sql", "unique_id": "model.yoda.analytics___sms_stg__list", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__list", "analytics___sms_stg__list"], "alias": "analytics___sms_stg__list", "checksum": {"name": "sha256", "checksum": "fa0d23ebf1b9cd4a37aa4240933deba8316171f9881f6f7d69d6a6d3dbdaacb2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of sms lists | Granularity & Primary Key: list_id", "columns": {"list_id": {"name": "list_id", "description": "list id - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "list_name": {"name": "list_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_id": {"name": "segment_id", "description": "when this is a segment, indicates the segment id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_hidden": {"name": "is_hidden", "description": "list hidden in customer B2B indicator - 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email_list": {"name": "is_email_list", "description": "list includes email-related conditions indicator - 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082660.030325, "relation_name": "dev_dkruh1.analytics___sms_stg__list", "raw_code": "-- Import --\n\nWITH import_sms_lists AS (\nSELECT * FROM {{ ref('sms_stg__lists') }}\n),\n\n-- Logic --\n\nsms_stg__list_res AS (\nSELECT\n id AS list_id,\n NULLIF(TRIM(list_name),'') AS list_name,\n segment_id,\n user_id AS sms_user_id,\n SMALLINT(is_hidden) AS is_hidden,\n SMALLINT(is_email_list) AS is_email_list,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_lists\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__list_res", "language": "sql", "refs": [{"name": "sms_stg__lists", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__lists"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_lists AS (\nSELECT * FROM dev_dkruh1.sms_stg__lists\n),\n\n-- Logic --\n\nsms_stg__list_res AS (\nSELECT\n id AS list_id,\n NULLIF(TRIM(list_name),'') AS list_name,\n segment_id,\n user_id AS sms_user_id,\n SMALLINT(is_hidden) AS is_hidden,\n SMALLINT(is_email_list) AS is_email_list,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_lists\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__list_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__loyalty_flow": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__loyalty_flow", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.sql", "unique_id": "model.yoda.analytics___sms_stg__loyalty_flow", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__loyalty_flow", "analytics___sms_stg__loyalty_flow"], "alias": "analytics___sms_stg__loyalty_flow", "checksum": {"name": "sha256", "checksum": "7d8d5f29644f9c27856a489ad2082498b660071403e0ce5bfeba3804899d8ba2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of sms loyalty flows | Granularity & Primary Key: flow_id", "columns": {"flow_id": {"name": "flow_id", "description": "flow unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_trigger": {"name": "flow_trigger", "description": "flow's trigger: product/viewed, orders/paid, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "filter_patterns": {"name": "filter_patterns", "description": "the filter patterns of the flow's settings", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082660.0618587, "relation_name": "dev_dkruh1.analytics___sms_stg__loyalty_flow", "raw_code": "-- Import --\n\nWITH import_sms_loyalty_flows AS (\nSELECT * FROM {{ ref('sms_stg__loyalty_flows_data') }}\n),\n\n-- Logic --\n\nloyalty_flow_condition_unition AS (\nSELECT\n id AS flow_id,\n user_id AS sms_user_id,\n flow_trigger,\n COALESCE(NULLIF(condition,''),NULLIF(shortcode,'')) AS filter_patterns\nFROM import_sms_loyalty_flows\n),\n\nsms_stg__loyalty_flow_res AS (\nSELECT\n flow_id,\n sms_user_id,\n flow_trigger,\n TRIM(CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(filter_patterns)))) AS filter_patterns\nFROM loyalty_flow_condition_unition\nGROUP BY 1,2,3\n)\n\n-- Result --\n\nSELECT\n flow_id,\n sms_user_id,\n flow_trigger,\n filter_patterns\nFROM sms_stg__loyalty_flow_res", "language": "sql", "refs": [{"name": "sms_stg__loyalty_flows_data", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__loyalty_flows_data"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_loyalty_flows AS (\nSELECT * FROM dev_dkruh1.sms_stg__loyalty_flows_data\n),\n\n-- Logic --\n\nloyalty_flow_condition_unition AS (\nSELECT\n id AS flow_id,\n user_id AS sms_user_id,\n flow_trigger,\n COALESCE(NULLIF(condition,''),NULLIF(shortcode,'')) AS filter_patterns\nFROM import_sms_loyalty_flows\n),\n\nsms_stg__loyalty_flow_res AS (\nSELECT\n flow_id,\n sms_user_id,\n flow_trigger,\n TRIM(CONCAT_WS(', ',ARRAY_SORT(COLLECT_SET(filter_patterns)))) AS filter_patterns\nFROM loyalty_flow_condition_unition\nGROUP BY 1,2,3\n)\n\n-- Result --\n\nSELECT\n flow_id,\n sms_user_id,\n flow_trigger,\n filter_patterns\nFROM sms_stg__loyalty_flow_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__organization_identifier_conversion": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__organization_identifier_conversion", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.sql", "unique_id": "model.yoda.analytics___sms_stg__organization_identifier_conversion", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__organization_identifier_conversion", "analytics___sms_stg__organization_identifier_conversion"], "alias": "analytics___sms_stg__organization_identifier_conversion", "checksum": {"name": "sha256", "checksum": "1a0764e094a6a7a282eb7874a63f0415a49d72f352d9580fd568227ad5569961"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view with conversion of organization id to organization key | Granularity & Primary Key: organization_id", "columns": {"organization_id": {"name": "organization_id", "description": "organization identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_name": {"name": "organization_name", "description": "organization name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "logical deleted indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082660.0975544, "relation_name": "dev_dkruh1.analytics___sms_stg__organization_identifier_conversion", "raw_code": "-- Import --\n\nWITH import_sms_yotpo_organizations AS (\nSELECT * FROM {{ ref('sms_stg__yotpo_organizations') }}\n),\n\n-- Logic --\n\norganization_identifier_conversion_res (\nSELECT\n id AS organization_id,\n NULLIF(organization_key,'') AS organization_key,\n NULLIF(TRIM(organization_name),'') AS organization_name,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_yotpo_organizations\n)\n\n-- Result --\n\nSELECT\n organization_id,\n organization_key,\n organization_name,\n is_logical_deleted,\n created_at,\n created_date,\n modified_at,\n modified_date\nFROM organization_identifier_conversion_res", "language": "sql", "refs": [{"name": "sms_stg__yotpo_organizations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__yotpo_organizations"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_yotpo_organizations AS (\nSELECT * FROM dev_dkruh1.sms_stg__yotpo_organizations\n),\n\n-- Logic --\n\norganization_identifier_conversion_res (\nSELECT\n id AS organization_id,\n NULLIF(organization_key,'') AS organization_key,\n NULLIF(TRIM(organization_name),'') AS organization_name,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_yotpo_organizations\n)\n\n-- Result --\n\nSELECT\n organization_id,\n organization_key,\n organization_name,\n is_logical_deleted,\n created_at,\n created_date,\n modified_at,\n modified_date\nFROM organization_identifier_conversion_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__plan": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__plan", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.sql", "unique_id": "model.yoda.analytics___sms_stg__plan", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__plan", "analytics___sms_stg__plan"], "alias": "analytics___sms_stg__plan", "checksum": {"name": "sha256", "checksum": "dbc66db15420b4119eee3909c70872492f429e1343a3064f09e352ee30345bea"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of sms plans | Granularity & Primary Key: plan_id", "columns": {"plan_id": {"name": "plan_id", "description": "sms plan unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "sms plan name: Powerhouse Plus, Powerhouse Max, Powerhouse Monthly, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "TODO: Update Column {col_name} Informationplan display name: Powerhouse Plus, Enterprise Plus, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_key": {"name": "plan_key", "description": "plan key: growth, powerhouse, smsbump-plus, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_title": {"name": "sub_title", "description": "plan sub title, e.g: Deeply customizable SMS solution with superior dedicated services", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_names": {"name": "platform_names", "description": "plans platforms: all, shopify, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type": {"name": "plan_type", "description": "plan type: self_service, high_touch", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "plan customer type: HT/LT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_group": {"name": "plan_type_group", "description": "plan type group: self_service, high_touch and free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_period": {"name": "plan_period", "description": "plan period: monthly, annually", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price_in_usd": {"name": "price_in_usd", "description": "sms plan price in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "bonus_credits_in_usd": {"name": "bonus_credits_in_usd", "description": "sms bonus credits in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_visible_app": {"name": "is_visible_app", "description": "visible app indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_visible_site": {"name": "is_visible_site", "description": "visible site indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_validation_status": {"name": "is_validation_status", "description": "plan validation indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "logical deleted indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082660.140544, "relation_name": "dev_dkruh1.analytics___sms_stg__plan", "raw_code": "-- Import --\n\nWITH import_sms_package AS (\nSELECT * FROM {{ ref('sms_stg__packages') }}\n),\n\n-- Logic --\n\nsms_plan_res (\nSELECT\n id AS plan_id,\n name AS plan_name,\n display_name,\n plan_key,\n sub_title,\n platform AS platform_names,\n type AS plan_type,\n IF(LOWER(type)='high_touch','HT','LT') AS plan_type_ht_lt,\n CASE WHEN LOWER(name) LIKE '%free%' THEN 'free' ELSE LOWER(type) END AS plan_type_group,\n period AS plan_period,\n price AS price_in_usd,\n bonus_credits AS bonus_credits_in_usd,\n SMALLINT(visible_app) AS is_visible_app,\n SMALLINT(visible_site) AS is_visible_site,\n SMALLINT(status) AS is_validation_status,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_package\n)\n\n-- Result --\n\nSELECT *\nFROM sms_plan_res", "language": "sql", "refs": [{"name": "sms_stg__packages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__packages"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_package AS (\nSELECT * FROM dev_dkruh1.sms_stg__packages\n),\n\n-- Logic --\n\nsms_plan_res (\nSELECT\n id AS plan_id,\n name AS plan_name,\n display_name,\n plan_key,\n sub_title,\n platform AS platform_names,\n type AS plan_type,\n IF(LOWER(type)='high_touch','HT','LT') AS plan_type_ht_lt,\n CASE WHEN LOWER(name) LIKE '%free%' THEN 'free' ELSE LOWER(type) END AS plan_type_group,\n period AS plan_period,\n price AS price_in_usd,\n bonus_credits AS bonus_credits_in_usd,\n SMALLINT(visible_app) AS is_visible_app,\n SMALLINT(visible_site) AS is_visible_site,\n SMALLINT(status) AS is_validation_status,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_package\n)\n\n-- Result --\n\nSELECT *\nFROM sms_plan_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__purchase": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__purchase", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.sql", "unique_id": "model.yoda.analytics___sms_stg__purchase", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__purchase", "analytics___sms_stg__purchase"], "alias": "analytics___sms_stg__purchase", "checksum": {"name": "sha256", "checksum": "60bcd66e808f6c78d34c745a8a0b31dcb257deb8b8e471be9a6a71e6538564f6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms purchases | Granularity & Primary Key: purchase_id", "columns": {"purchase_id": {"name": "purchase_id", "description": "unique identifier of purchase - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "sms user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "type of purchase: sign_up_credits, onboarding-bounty, bonus etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchase_source": {"name": "purchase_source", "description": "category: paypal,other,shopify,zuora,admin-manual", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manual_action_type": {"name": "manual_action_type", "description": "type of manual action: Yotpo - Signup - Bonus, refund etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "notes": {"name": "notes", "description": "free text explanation of the purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "status of the purchase: Paid, Not Paid etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "platform where purchase was made", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gateway": {"name": "gateway", "description": "where the funds went through: shopify, zuora, paypal etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_paid": {"name": "amount_paid", "description": "amount paid by user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_added": {"name": "amount_added", "description": "amount added to user balance, may be different than amount paid", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "is logical deleted", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "creation timestamp, better to use modified", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modifed_at": {"name": "modifed_at", "description": "modification timestamp, better to use this than created_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_purchase": {"name": "is_purchase", "description": "indicator for calculating daily credit purchases in analytics___sms__store_metrics_daily", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_gateway_admin_manual": {"name": "is_gateway_admin_manual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_status_paid": {"name": "is_status_paid", "description": "LOWER(status) = 'paid'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_status_refund": {"name": "is_status_refund", "description": "LOWER(status) = 'refund'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_activation_perk": {"name": "is_activation_perk", "description": "if indicator = 1 we will take the activation perk from free_credit_log", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_customer_marketing_bonus": {"name": "is_customer_marketing_bonus", "description": "indicator = 1 when purchase is considered 'Customer Marketing' AS credit_type in free_credit_details", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_saas_fee_bonus": {"name": "is_saas_fee_bonus", "description": "indicator = 1 when purchase is considered 'Saas Fee Bonus' AS credit_type in free_credit_details", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_signup_bonus": {"name": "is_signup_bonus", "description": "indicator = 1 when purchase is considered 'Sign-up Bonus' AS credit_type in free_credit_details", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_admin_perk": {"name": "is_admin_perk", "description": "indicator = 1 when purchase is considered 'Admin' AS credit_type in free_credit_details", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_purchase_bonus": {"name": "is_purchase_bonus", "description": "indicator = 1 when purchase is considered 'Purchase Bonus' AS credit_type in free_credit_details", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082660.1853263, "relation_name": "dev_dkruh1.analytics___sms_stg__purchase", "raw_code": "WITH import_sms_stg__purchases AS (\n SELECT * FROM {{ ref('sms_stg__purchases') }}\n), \n\n\nsms_stg__purchase_modeled AS (\nSELECT\n id AS purchase_id,\n user_id AS sms_user_id,\n type,\n IF(LOWER(gateway) IN ('shopify','paypal','zuora') OR LOWER(reason) IN ('manually_charged_zuora'),LOWER(gateway),'other') AS purchase_source,\n NULLIF(reason,'') AS manual_action_type,\n NULLIF(TRIM(notes),'') AS notes,\n status,\n NULLIF(platform,'') AS platform_name,\n NULLIF(gateway,'') AS gateway,\n amount_paid,\n amount_added,\n is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modifed_at,\n DATE(modified) AS modified_date\nFROM import_sms_stg__purchases\n), \n\nsms_purchase_res AS (\nSELECT\n purchase_id,\n sms_user_id,\n type,\n purchase_source,\n manual_action_type,\n notes,\n status,\n platform_name,\n gateway,\n amount_paid,\n amount_added,\n is_logical_deleted,\n created_at,\n created_date,\n modifed_at,\n modified_date,\n SMALLINT(IF((LOWER(gateway) IN ('shopify', 'paypal', 'zuora') OR LOWER(manual_action_type) = 'manually_charged_zuora')\n AND LOWER(type) = 'addfunds'\n AND LOWER(status) = 'paid',1,0)) AS is_purchase,\n SMALLINT(IF(LOWER(gateway) = 'admin-manual',1,0)) AS is_gateway_admin_manual,\n SMALLINT(IF(LOWER(status) = 'paid',1,0)) AS is_status_paid,\n SMALLINT(IF(LOWER(status) = 'refund',1,0)) AS is_status_refund,\n SMALLINT(IF(LOWER(type) LIKE '%bount%',1,0)) AS is_activation_perk,\n SMALLINT(IF(LOWER(manual_action_type) = 'yotpo - tag - bonus',1,0)) AS is_customer_marketing_bonus,\n SMALLINT(IF(LOWER(gateway) = 'bounty'\n AND LOWER(manual_action_type) = 'yotpo - signup - credit'\n AND LOWER(type) = 'sign_up_credits'\n AND LOWER(status) = 'paid',1,0)) AS is_saas_fee_bonus,\n SMALLINT(IF(LOWER(type) = 'bonus'\n AND LOWER(manual_action_type) = 'yotpo - signup - bonus'\n AND amount_added > 0\n AND DATE(created_at) >= '2021-09-16',1,0)) AS is_signup_bonus\nFROM sms_stg__purchase_modeled\n),\n\nadmin_perks_and_purchase_bonus AS (\nSELECT\n purchase_id,\n IF(is_gateway_admin_manual = 1\n AND (\n LOWER(manual_action_type) = 'bonus'\n OR LOWER(manual_action_type) = 'canceled_bonus'\n OR (LOWER(manual_action_type) = 'refund' AND amount_added > 0)\n OR (manual_action_type IS NULL AND amount_paid > 0)\n OR (manual_action_type IS NULL AND amount_paid = 0 AND amount_added > 0)\n ),1,0) AS is_admin_perk,\n IF(amount_paid > 0\n AND NVL(LOWER(manual_action_type),'') <> 'yotpo - signup - bonus'\n AND amount_paid < amount_added\n AND is_gateway_admin_manual = 0,1,0) AS is_purchase_bonus\nFROM sms_purchase_res\nWHERE (is_status_paid = 1 OR is_status_refund = 1) AND is_activation_perk = 0\n),\n\nsms_purchase_modeled AS (\nSELECT \n purchase.purchase_id,\n sms_user_id,\n type,\n purchase_source,\n manual_action_type,\n notes,\n status,\n platform_name,\n gateway,\n amount_paid,\n amount_added,\n is_logical_deleted,\n created_at,\n created_date,\n modifed_at,\n modified_date,\n is_purchase,\n is_gateway_admin_manual,\n is_status_paid,\n is_status_refund,\n is_activation_perk,\n is_customer_marketing_bonus,\n is_saas_fee_bonus,\n is_signup_bonus,\n SMALLINT(NVL(perks_n_bonuses.is_admin_perk,0)) AS is_admin_perk,\n SMALLINT(NVL(perks_n_bonuses.is_purchase_bonus,0)) AS is_purchase_bonus\nFROM sms_purchase_res AS purchase\nLEFT JOIN admin_perks_and_purchase_bonus AS perks_n_bonuses\n ON purchase.purchase_id = perks_n_bonuses.purchase_id\n)\n\nSELECT *\nFROM sms_purchase_modeled", "language": "sql", "refs": [{"name": "sms_stg__purchases", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__purchases"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.sql", "compiled": true, "compiled_code": "WITH import_sms_stg__purchases AS (\n SELECT * FROM dev_dkruh1.sms_stg__purchases\n), \n\n\nsms_stg__purchase_modeled AS (\nSELECT\n id AS purchase_id,\n user_id AS sms_user_id,\n type,\n IF(LOWER(gateway) IN ('shopify','paypal','zuora') OR LOWER(reason) IN ('manually_charged_zuora'),LOWER(gateway),'other') AS purchase_source,\n NULLIF(reason,'') AS manual_action_type,\n NULLIF(TRIM(notes),'') AS notes,\n status,\n NULLIF(platform,'') AS platform_name,\n NULLIF(gateway,'') AS gateway,\n amount_paid,\n amount_added,\n is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modifed_at,\n DATE(modified) AS modified_date\nFROM import_sms_stg__purchases\n), \n\nsms_purchase_res AS (\nSELECT\n purchase_id,\n sms_user_id,\n type,\n purchase_source,\n manual_action_type,\n notes,\n status,\n platform_name,\n gateway,\n amount_paid,\n amount_added,\n is_logical_deleted,\n created_at,\n created_date,\n modifed_at,\n modified_date,\n SMALLINT(IF((LOWER(gateway) IN ('shopify', 'paypal', 'zuora') OR LOWER(manual_action_type) = 'manually_charged_zuora')\n AND LOWER(type) = 'addfunds'\n AND LOWER(status) = 'paid',1,0)) AS is_purchase,\n SMALLINT(IF(LOWER(gateway) = 'admin-manual',1,0)) AS is_gateway_admin_manual,\n SMALLINT(IF(LOWER(status) = 'paid',1,0)) AS is_status_paid,\n SMALLINT(IF(LOWER(status) = 'refund',1,0)) AS is_status_refund,\n SMALLINT(IF(LOWER(type) LIKE '%bount%',1,0)) AS is_activation_perk,\n SMALLINT(IF(LOWER(manual_action_type) = 'yotpo - tag - bonus',1,0)) AS is_customer_marketing_bonus,\n SMALLINT(IF(LOWER(gateway) = 'bounty'\n AND LOWER(manual_action_type) = 'yotpo - signup - credit'\n AND LOWER(type) = 'sign_up_credits'\n AND LOWER(status) = 'paid',1,0)) AS is_saas_fee_bonus,\n SMALLINT(IF(LOWER(type) = 'bonus'\n AND LOWER(manual_action_type) = 'yotpo - signup - bonus'\n AND amount_added > 0\n AND DATE(created_at) >= '2021-09-16',1,0)) AS is_signup_bonus\nFROM sms_stg__purchase_modeled\n),\n\nadmin_perks_and_purchase_bonus AS (\nSELECT\n purchase_id,\n IF(is_gateway_admin_manual = 1\n AND (\n LOWER(manual_action_type) = 'bonus'\n OR LOWER(manual_action_type) = 'canceled_bonus'\n OR (LOWER(manual_action_type) = 'refund' AND amount_added > 0)\n OR (manual_action_type IS NULL AND amount_paid > 0)\n OR (manual_action_type IS NULL AND amount_paid = 0 AND amount_added > 0)\n ),1,0) AS is_admin_perk,\n IF(amount_paid > 0\n AND NVL(LOWER(manual_action_type),'') <> 'yotpo - signup - bonus'\n AND amount_paid < amount_added\n AND is_gateway_admin_manual = 0,1,0) AS is_purchase_bonus\nFROM sms_purchase_res\nWHERE (is_status_paid = 1 OR is_status_refund = 1) AND is_activation_perk = 0\n),\n\nsms_purchase_modeled AS (\nSELECT \n purchase.purchase_id,\n sms_user_id,\n type,\n purchase_source,\n manual_action_type,\n notes,\n status,\n platform_name,\n gateway,\n amount_paid,\n amount_added,\n is_logical_deleted,\n created_at,\n created_date,\n modifed_at,\n modified_date,\n is_purchase,\n is_gateway_admin_manual,\n is_status_paid,\n is_status_refund,\n is_activation_perk,\n is_customer_marketing_bonus,\n is_saas_fee_bonus,\n is_signup_bonus,\n SMALLINT(NVL(perks_n_bonuses.is_admin_perk,0)) AS is_admin_perk,\n SMALLINT(NVL(perks_n_bonuses.is_purchase_bonus,0)) AS is_purchase_bonus\nFROM sms_purchase_res AS purchase\nLEFT JOIN admin_perks_and_purchase_bonus AS perks_n_bonuses\n ON purchase.purchase_id = perks_n_bonuses.purchase_id\n)\n\nSELECT *\nFROM sms_purchase_modeled", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__segment_sms_campaign": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__segment_sms_campaign", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.sql", "unique_id": "model.yoda.analytics___sms_stg__segment_sms_campaign", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__segment_sms_campaign", "analytics___sms_stg__segment_sms_campaign"], "alias": "analytics___sms_stg__segment_sms_campaign", "checksum": {"name": "sha256", "checksum": "c8c7a9090f463282f6ad27946d2818ac6feec9f764848a87606d0a6ffcdaba6d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "A view of scheduling/sending SMS campaigns segment events | Granularity & Primary Key: message_id, created_at", "columns": {"message_id": {"name": "message_id", "description": "sms message unique identifier - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "event creation timestamp - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "event creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "organization key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "unique identifier of the segment user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "campaign unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_email": {"name": "user_email", "description": "user email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "platform plan: frozen, basic, affiliate, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "platform name: shopify, magento, bigcommerce, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "the event's url page, e.g: https://smsbump.yotpo.com/sms/text-marketing/campaign-preview", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer_url": {"name": "page_referrer_url", "description": "referrer url page, e.g: https://visual.yotpo.com/", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_url_domain": {"name": "store_url_domain", "description": "the store's url domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin_user_name": {"name": "admin_user_name", "description": "admin user name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_platform_url_domain": {"name": "store_platform_url_domain", "description": "store platform url domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_plan_name": {"name": "sms_plan_name", "description": "sms plan: SMS - Powerhouse, SMS - Low Touch, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_plan_name": {"name": "reviews_plan_name", "description": "reviews plan: Reviews - Growth 1500, Reviews - Free, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_plan_name": {"name": "loyalty_plan_name", "description": "loyalty_plan: Loyalty - Enterprise, Loyalty - Platinum, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugc_plan_name": {"name": "vugc_plan_name", "description": "vugc plan: VMS - Tier2, VMS - Growth 500, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plans_categories": {"name": "plans_categories", "description": "yotpo's products with a plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "all_products_plans": {"name": "all_products_plans", "description": "all products plans", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "targeted_audience": {"name": "targeted_audience", "description": "targeted audience: All Customers, Specific Customers, List/Segment, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_audience_size": {"name": "campaign_audience_size", "description": "campaign audience size: S, M, L, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ab_test_group_size": {"name": "ab_test_group_size", "description": "ab test group size: A, B, C, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ab_test_period": {"name": "ab_test_period", "description": "ab test period: minute, hour day, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ab_test_number_of_test_groups": {"name": "ab_test_number_of_test_groups", "description": "ab test number of groups", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ab_test_winning_metric": {"name": "ab_test_winning_metric", "description": "ab test winning metric: clicks, revenue, orders, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "used_template": {"name": "used_template", "description": "used template: default, Sales:8, Holiday Events:58, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_chosen": {"name": "time_chosen", "description": "non-recommended, default, recommended, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "tablet indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_mobile": {"name": "is_mobile", "description": "mobile indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_desktop": {"name": "is_desktop", "description": "desktop indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_violated_event": {"name": "is_violated_event", "description": "violated event indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_click_to_buy_added": {"name": "is_click_to_buy_added", "description": "click to buy added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_added": {"name": "is_discount_added", "description": "discount added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_emoji_added": {"name": "is_emoji_added", "description": "emoji added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_image_added": {"name": "is_image_added", "description": "image added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty_short_code_added": {"name": "is_loyalty_short_code_added", "description": "loyalty short code added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_short_code_added": {"name": "is_reviews_short_code_added", "description": "use of reviews short code indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_text_to_buy_added": {"name": "is_text_to_buy_added", "description": "text to buy added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_code_added": {"name": "is_discount_code_added", "description": "discount code added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_url_added": {"name": "is_discount_url_added", "description": "discount url added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_discount_value_added": {"name": "is_discount_value_added", "description": "discount value added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_first_name_added": {"name": "is_first_name_added", "description": "first name added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_last_name_added": {"name": "is_last_name_added", "description": "last name added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_site_name_added": {"name": "is_site_name_added", "description": "site name added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_site_url_added": {"name": "is_site_url_added", "description": "site url added indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_content_edited": {"name": "is_content_edited", "description": "content edited indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_custom_name": {"name": "is_custom_name", "description": "custom name indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ab_testing": {"name": "is_ab_testing", "description": "ab testing indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_internal_user": {"name": "is_internal_user", "description": "internal user indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_scheduled": {"name": "is_scheduled", "description": "scheduled indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_smart_sending": {"name": "is_smart_sending", "description": "smart sending indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_timezonebased": {"name": "is_timezonebased", "description": "use of customer timezone based indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_excluded_audience": {"name": "is_excluded_audience", "description": "excluded audience indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_has_lists": {"name": "is_has_lists", "description": "has lists indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_has_loyalty_segments": {"name": "is_has_loyalty_segments", "description": "has loyalty segments indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_has_predictive_segments": {"name": "is_has_predictive_segments", "description": "has predictive segments indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_has_reviews_segments": {"name": "is_has_reviews_segments", "description": "has reviews segments indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_active_buyers": {"name": "is_used_active_buyers", "description": "use of predefined segments active buyers indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_all_email_subs": {"name": "is_used_all_email_subs", "description": "use of predefined segments all email subscribers indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_churn_risk": {"name": "is_used_churn_risk", "description": "use of predefined segments churn risk indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_email_converted_subs_7d": {"name": "is_used_email_converted_subs_7d", "description": "use of predefined segments email converted subscribers last 7 days indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_enagaged_email_subs_30d": {"name": "is_used_enagaged_email_subs_30d", "description": "use of predefined segments enagaged email subscirbers last 30 days indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_havent_purchased_month": {"name": "is_used_havent_purchased_month", "description": "use of predefined segments havent purchased since last month indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_potential_buyers": {"name": "is_used_potential_buyers", "description": "use of predefined segments potential buyers indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_purchases_by_email_subs_30d": {"name": "is_used_purchases_by_email_subs_30d", "description": "use of predefined segments purchases by email subscribers last 30 days indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_repeat_buyers": {"name": "is_used_repeat_buyers", "description": "use of predefined segments repeat buyers indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_sms_converted_subs_7d": {"name": "is_used_sms_converted_subs_7d", "description": "use of predefined segments sms converted subscribers last 7 days indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_sms_engaged_subs": {"name": "is_used_sms_engaged_subs", "description": "use of predefined segments sms engaged subscribers indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_soft_bounced_subs_7d": {"name": "is_used_soft_bounced_subs_7d", "description": "use of predefined segments soft bounced subscribers last 7 days indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_subs_not_purchased": {"name": "is_used_subs_not_purchased", "description": "use of predefined segments subscribers not purchased indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_text_marketing_list": {"name": "is_used_text_marketing_list", "description": "use of predefined segments text marketing list indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_top_1_spenders": {"name": "is_used_top_1_spenders", "description": "use of predefined segments top 1 spenders indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_topspenders": {"name": "is_used_topspenders", "description": "use of predefined segments top spenders indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_used_engaged_email_subs_30d": {"name": "is_used_engaged_email_subs_30d", "description": "use of engaged email subscribers last 30 days indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_date_changed": {"name": "is_date_changed", "description": "date changed indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "campaign_row_ranking_backwards": {"name": "campaign_row_ranking_backwards", "description": "row ranking for each campaign_id by created_at (i.e, 1 is the last row for each campaign_id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "campaign_row_cnt": {"name": "campaign_row_cnt", "description": "number of rows per campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082660.2690387, "relation_name": "dev_dkruh1.analytics___sms_stg__segment_sms_campaign", "raw_code": "-- Import --\n\nWITH import_sms_stg__sms_campaign_created AS (\nSELECT * FROM {{ ref('sms_stg__sms_campaign_created') }}\n),\n\n-- Logic --\n\nsegment_sms_campaign_res AS (\nSELECT\n message_id,\n timestamp AS created_at,\n partition_date AS created_date,\n appkey AS app_key,\n smsuserid AS sms_user_id,\n orgid AS organization_id,\n orgkey AS organization_key,\n anonymous_id,\n NULLIF(campaignid,'') AS campaign_id,\n useremail AS user_email,\n platformplan AS platform_plan,\n platform AS platform_name,\n page_url,\n page_referrer AS page_referrer_url,\n storedomain AS store_url_domain,\n TRIM(adminusername) AS admin_user_name,\n NULLIF(storeplatformdomain,'') AS store_platform_url_domain,\n smspackage AS sms_plan_name,\n reviewspackage AS reviews_plan_name,\n loyaltypackage AS loyalty_plan_name,\n vugcpackage AS vugc_plan_name,\n NULLIF(packagecategories,'') AS plans_categories,\n NULLIF(package,'') AS all_products_plans,\n NULLIF(targetedaudience,'') AS targeted_audience,\n audiencesize AS campaign_audience_size,\n NULLIF(abtestgroupsize,'') AS ab_test_group_size,\n NULLIF(abtestperiod,'') AS ab_test_period,\n abtestingnumberoftestgroups AS ab_test_number_of_test_groups,\n NULLIF(abwinningmetric,'') AS ab_test_winning_metric,\n usedtemplate AS used_template,\n timechosen AS time_chosen,\n SMALLINT(is_tablet) AS is_tablet,\n SMALLINT(is_mobile) AS is_mobile,\n SMALLINT(is_desktop) AS is_desktop,\n SMALLINT(violated_event) AS is_violated_event,\n SMALLINT(clicktobuyadded) AS is_click_to_buy_added,\n SMALLINT(discountadded) AS is_discount_added,\n SMALLINT(emojiadded) AS is_emoji_added,\n SMALLINT(imageadded) AS is_image_added,\n SMALLINT(loyalyshortcodeadded) AS is_loyalty_short_code_added,\n SMALLINT(reviewsshortcodeadded) AS is_reviews_short_code_added,\n SMALLINT(texttobuyadded) AS is_text_to_buy_added,\n SMALLINT(discountcodeadded) AS is_discount_code_added,\n SMALLINT(discounturladded) AS is_discount_url_added,\n SMALLINT(discountvalueadded) AS is_discount_value_added,\n SMALLINT(firstnameadded) AS is_first_name_added,\n SMALLINT(lastnameadded) AS is_last_name_added,\n SMALLINT(sitenameadded) AS is_site_name_added,\n SMALLINT(siteurladded) AS is_site_url_added,\n SMALLINT(contentedited) AS is_content_edited,\n SMALLINT(customname) AS is_custom_name,\n SMALLINT(isabtesting) AS is_ab_testing,\n SMALLINT(isinternaluser) AS is_internal_user,\n SMALLINT(isscheduled) AS is_scheduled,\n SMALLINT(issmartsending) AS is_smart_sending,\n SMALLINT(istimezonebased) AS is_timezonebased,\n SMALLINT(excludedaudience) AS is_excluded_audience,\n SMALLINT(haslists) AS is_has_lists,\n SMALLINT(hasloyaltysegments) AS is_has_loyalty_segments,\n SMALLINT(haspredictivesegments) AS is_has_predictive_segments,\n SMALLINT(hasreviewssegments) AS is_has_reviews_segments,\n SMALLINT(usedpredefinedsegments_activebuyers) AS is_used_active_buyers,\n SMALLINT(usedpredefinedsegments_allemailsubscribers) AS is_used_all_email_subs,\n SMALLINT(usedpredefinedsegments_churnrisk) AS is_used_churn_risk,\n SMALLINT(usedpredefinedsegments_emailconvertedsubscriberslast7days) AS is_used_email_converted_subs_7d,\n SMALLINT(usedpredefinedsegments_enagagedemailsubscirberslast30days) AS is_used_enagaged_email_subs_30d,\n SMALLINT(COALESCE(usedpredefinedsegments_haventpurchasedsincelastmonth, usedpredefinedsegments_haventpurchasetsincelastmonth)) AS is_used_havent_purchased_month,\n SMALLINT(usedpredefinedsegments_potentialbuyers) AS is_used_potential_buyers,\n SMALLINT(usedpredefinedsegments_purchasesbyemailsubscriberslast30days) AS is_used_purchases_by_email_subs_30d,\n SMALLINT(usedpredefinedsegments_repeatbuyers) AS is_used_repeat_buyers,\n SMALLINT(usedpredefinedsegments_smsconvertedsubscriberslast7days) AS is_used_sms_converted_subs_7d,\n SMALLINT(usedpredefinedsegments_smsengagedsubscribers) AS is_used_sms_engaged_subs,\n SMALLINT(usedpredefinedsegments_softbouncedsubscriberslast7days) AS is_used_soft_bounced_subs_7d,\n SMALLINT(usedpredefinedsegments_subscribersnotpurchased) AS is_used_subs_not_purchased,\n SMALLINT(usedpredefinedsegments_textmarketinglist) AS is_used_text_marketing_list,\n SMALLINT(COALESCE(usedpredefinedsegments_top1spenders, usedpredefinedsegments_top1senders)) AS is_used_top_1_spenders,\n SMALLINT(COALESCE(usedpredefinedsegments_topspenders, usedpredefinedsegments_topsenders)) AS is_used_topspenders,\n SMALLINT(usedpredefinedsegments_engagedemailsubscriberslast30days) AS is_used_engaged_email_subs_30d,\n SMALLINT(isdatechanged) AS is_date_changed,\n IF(NULLIF(campaignid,'') IS NULL,NULL,ROW_NUMBER() OVER (PARTITION BY campaignid ORDER BY timestamp DESC, message_id DESC)) AS campaign_row_ranking_backwards,\n IF(NULLIF(campaignid,'') IS NULL,NULL,COUNT(*) OVER (PARTITION BY campaignid)) AS campaign_row_cnt\nFROM import_sms_stg__sms_campaign_created\n)\n\n-- Result --\n\nSELECT *\nFROM segment_sms_campaign_res", "language": "sql", "refs": [{"name": "sms_stg__sms_campaign_created", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_campaign_created"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_stg__sms_campaign_created AS (\nSELECT * FROM dev_dkruh1.sms_stg__sms_campaign_created\n),\n\n-- Logic --\n\nsegment_sms_campaign_res AS (\nSELECT\n message_id,\n timestamp AS created_at,\n partition_date AS created_date,\n appkey AS app_key,\n smsuserid AS sms_user_id,\n orgid AS organization_id,\n orgkey AS organization_key,\n anonymous_id,\n NULLIF(campaignid,'') AS campaign_id,\n useremail AS user_email,\n platformplan AS platform_plan,\n platform AS platform_name,\n page_url,\n page_referrer AS page_referrer_url,\n storedomain AS store_url_domain,\n TRIM(adminusername) AS admin_user_name,\n NULLIF(storeplatformdomain,'') AS store_platform_url_domain,\n smspackage AS sms_plan_name,\n reviewspackage AS reviews_plan_name,\n loyaltypackage AS loyalty_plan_name,\n vugcpackage AS vugc_plan_name,\n NULLIF(packagecategories,'') AS plans_categories,\n NULLIF(package,'') AS all_products_plans,\n NULLIF(targetedaudience,'') AS targeted_audience,\n audiencesize AS campaign_audience_size,\n NULLIF(abtestgroupsize,'') AS ab_test_group_size,\n NULLIF(abtestperiod,'') AS ab_test_period,\n abtestingnumberoftestgroups AS ab_test_number_of_test_groups,\n NULLIF(abwinningmetric,'') AS ab_test_winning_metric,\n usedtemplate AS used_template,\n timechosen AS time_chosen,\n SMALLINT(is_tablet) AS is_tablet,\n SMALLINT(is_mobile) AS is_mobile,\n SMALLINT(is_desktop) AS is_desktop,\n SMALLINT(violated_event) AS is_violated_event,\n SMALLINT(clicktobuyadded) AS is_click_to_buy_added,\n SMALLINT(discountadded) AS is_discount_added,\n SMALLINT(emojiadded) AS is_emoji_added,\n SMALLINT(imageadded) AS is_image_added,\n SMALLINT(loyalyshortcodeadded) AS is_loyalty_short_code_added,\n SMALLINT(reviewsshortcodeadded) AS is_reviews_short_code_added,\n SMALLINT(texttobuyadded) AS is_text_to_buy_added,\n SMALLINT(discountcodeadded) AS is_discount_code_added,\n SMALLINT(discounturladded) AS is_discount_url_added,\n SMALLINT(discountvalueadded) AS is_discount_value_added,\n SMALLINT(firstnameadded) AS is_first_name_added,\n SMALLINT(lastnameadded) AS is_last_name_added,\n SMALLINT(sitenameadded) AS is_site_name_added,\n SMALLINT(siteurladded) AS is_site_url_added,\n SMALLINT(contentedited) AS is_content_edited,\n SMALLINT(customname) AS is_custom_name,\n SMALLINT(isabtesting) AS is_ab_testing,\n SMALLINT(isinternaluser) AS is_internal_user,\n SMALLINT(isscheduled) AS is_scheduled,\n SMALLINT(issmartsending) AS is_smart_sending,\n SMALLINT(istimezonebased) AS is_timezonebased,\n SMALLINT(excludedaudience) AS is_excluded_audience,\n SMALLINT(haslists) AS is_has_lists,\n SMALLINT(hasloyaltysegments) AS is_has_loyalty_segments,\n SMALLINT(haspredictivesegments) AS is_has_predictive_segments,\n SMALLINT(hasreviewssegments) AS is_has_reviews_segments,\n SMALLINT(usedpredefinedsegments_activebuyers) AS is_used_active_buyers,\n SMALLINT(usedpredefinedsegments_allemailsubscribers) AS is_used_all_email_subs,\n SMALLINT(usedpredefinedsegments_churnrisk) AS is_used_churn_risk,\n SMALLINT(usedpredefinedsegments_emailconvertedsubscriberslast7days) AS is_used_email_converted_subs_7d,\n SMALLINT(usedpredefinedsegments_enagagedemailsubscirberslast30days) AS is_used_enagaged_email_subs_30d,\n SMALLINT(COALESCE(usedpredefinedsegments_haventpurchasedsincelastmonth, usedpredefinedsegments_haventpurchasetsincelastmonth)) AS is_used_havent_purchased_month,\n SMALLINT(usedpredefinedsegments_potentialbuyers) AS is_used_potential_buyers,\n SMALLINT(usedpredefinedsegments_purchasesbyemailsubscriberslast30days) AS is_used_purchases_by_email_subs_30d,\n SMALLINT(usedpredefinedsegments_repeatbuyers) AS is_used_repeat_buyers,\n SMALLINT(usedpredefinedsegments_smsconvertedsubscriberslast7days) AS is_used_sms_converted_subs_7d,\n SMALLINT(usedpredefinedsegments_smsengagedsubscribers) AS is_used_sms_engaged_subs,\n SMALLINT(usedpredefinedsegments_softbouncedsubscriberslast7days) AS is_used_soft_bounced_subs_7d,\n SMALLINT(usedpredefinedsegments_subscribersnotpurchased) AS is_used_subs_not_purchased,\n SMALLINT(usedpredefinedsegments_textmarketinglist) AS is_used_text_marketing_list,\n SMALLINT(COALESCE(usedpredefinedsegments_top1spenders, usedpredefinedsegments_top1senders)) AS is_used_top_1_spenders,\n SMALLINT(COALESCE(usedpredefinedsegments_topspenders, usedpredefinedsegments_topsenders)) AS is_used_topspenders,\n SMALLINT(usedpredefinedsegments_engagedemailsubscriberslast30days) AS is_used_engaged_email_subs_30d,\n SMALLINT(isdatechanged) AS is_date_changed,\n IF(NULLIF(campaignid,'') IS NULL,NULL,ROW_NUMBER() OVER (PARTITION BY campaignid ORDER BY timestamp DESC, message_id DESC)) AS campaign_row_ranking_backwards,\n IF(NULLIF(campaignid,'') IS NULL,NULL,COUNT(*) OVER (PARTITION BY campaignid)) AS campaign_row_cnt\nFROM import_sms_stg__sms_campaign_created\n)\n\n-- Result --\n\nSELECT *\nFROM segment_sms_campaign_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__shopify_campaign_order": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__shopify_campaign_order", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.sql", "unique_id": "model.yoda.analytics___sms_stg__shopify_campaign_order", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_campaign_order", "analytics___sms_stg__shopify_campaign_order"], "alias": "analytics___sms_stg__shopify_campaign_order", "checksum": {"name": "sha256", "checksum": "0e4be7fe476809b379f4107190b7cd16689ca2ae68bd025d65fca6a21fa1a8c2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms shopify campaign orders, with all orders attributed to campaigns | Granularity & Primary Key: order_attribution_id", "columns": {"order_attribution_id": {"name": "order_attribution_id", "description": "Primary key of the table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "Order identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "SMS user identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "The campaign id of the attributed order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "The channel of the campaign - sms or email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_in_usd": {"name": "amount_in_usd", "description": "The amount of the order in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082660.3093524, "relation_name": "dev_dkruh1.analytics___sms_stg__shopify_campaign_order", "raw_code": "-- Import --\n\nWITH import_sms_shopify_campaign_orders AS (\nSELECT * FROM {{ ref('sms_stg__shopify_campaign_orders') }}\n),\n\n-- Logic --\n\nsms_stg__shopify_campaign_order_res AS (\nSELECT\n id AS order_attribution_id,\n order_id,\n user_id AS sms_user_id,\n campaign_id,\n channel,\n amount AS amount_in_usd,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_shopify_campaign_orders\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__shopify_campaign_order_res", "language": "sql", "refs": [{"name": "sms_stg__shopify_campaign_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__shopify_campaign_orders"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_shopify_campaign_orders AS (\nSELECT * FROM dev_dkruh1.sms_stg__shopify_campaign_orders\n),\n\n-- Logic --\n\nsms_stg__shopify_campaign_order_res AS (\nSELECT\n id AS order_attribution_id,\n order_id,\n user_id AS sms_user_id,\n campaign_id,\n channel,\n amount AS amount_in_usd,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_shopify_campaign_orders\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__shopify_campaign_order_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__shopify_customer": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__shopify_customer", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.sql", "unique_id": "model.yoda.analytics___sms_stg__shopify_customer", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_customer", "analytics___sms_stg__shopify_customer"], "alias": "analytics___sms_stg__shopify_customer", "checksum": {"name": "sha256", "checksum": "99168301edd1d744f6bf03aa1f29ba2ce04e19b67d9c863a27acd65aa1201c44"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of sms shopify customers | Granularity & Primary Key: shopify_customer_internal_id", "columns": {"shopify_customer_internal_id": {"name": "shopify_customer_internal_id", "description": "shopify customer internal id - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopify_customer_external_id": {"name": "shopify_customer_external_id", "description": "shopify customer external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_number": {"name": "phone_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "deletion indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082660.3458173, "relation_name": "dev_dkruh1.analytics___sms_stg__shopify_customer", "raw_code": "-- Import --\n\nWITH import_sms_customers AS (\nSELECT * FROM {{ ref('sms_stg__customers') }}\n),\n\n-- Logic --\n\nsms_stg__shopify_customer_res AS (\nSELECT\n id AS shopify_customer_internal_id,\n smsbump_user_id AS sms_user_id,\n customer_id AS shopify_customer_external_id,\n NULLIF(phone_formatted,'') AS phone_number,\n NULLIF(email,'') AS email, \n is_logical_deleted,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_sms_customers\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__shopify_customer_res", "language": "sql", "refs": [{"name": "sms_stg__customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__customers"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_customers AS (\nSELECT * FROM dev_dkruh1.sms_stg__customers\n),\n\n-- Logic --\n\nsms_stg__shopify_customer_res AS (\nSELECT\n id AS shopify_customer_internal_id,\n smsbump_user_id AS sms_user_id,\n customer_id AS shopify_customer_external_id,\n NULLIF(phone_formatted,'') AS phone_number,\n NULLIF(email,'') AS email, \n is_logical_deleted,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_sms_customers\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__shopify_customer_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__shopify_flow_order": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__shopify_flow_order", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.sql", "unique_id": "model.yoda.analytics___sms_stg__shopify_flow_order", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_flow_order", "analytics___sms_stg__shopify_flow_order"], "alias": "analytics___sms_stg__shopify_flow_order", "checksum": {"name": "sha256", "checksum": "cb88d32dcbe2662131e47e244cfd9d906028a72ae3b6cf5734738f316e9493c9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms shopify flows orders, with all orders attributed to flows | Granularity & Primary Key: order_attribution_id", "columns": {"order_attribution_id": {"name": "order_attribution_id", "description": "Primary key of the table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "Order identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "Customer identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "SMS user identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "The flow id of the attributed order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "The flow step id of the attributed order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "attribution_source": {"name": "attribution_source", "description": "The source of attribution", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_in_usd": {"name": "amount_in_usd", "description": "The amount of the order in USD", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082660.3818817, "relation_name": "dev_dkruh1.analytics___sms_stg__shopify_flow_order", "raw_code": "-- Import --\n\nWITH import_sms_shopify_flows_orders AS (\nSELECT * FROM {{ ref('sms_stg__shopify_flows_orders') }}\n),\n\n-- Logic --\n\nsms_stg__shopify_flow_order_res AS (\nSELECT\n id AS order_attribution_id,\n order_id,\n shopify_customer_id AS customer_id,\n user_id AS sms_user_id,\n flow_id,\n flow_step_id,\n conversion_source AS attribution_source,\n amount AS amount_in_usd,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_shopify_flows_orders\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__shopify_flow_order_res", "language": "sql", "refs": [{"name": "sms_stg__shopify_flows_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__shopify_flows_orders"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_shopify_flows_orders AS (\nSELECT * FROM dev_dkruh1.sms_stg__shopify_flows_orders\n),\n\n-- Logic --\n\nsms_stg__shopify_flow_order_res AS (\nSELECT\n id AS order_attribution_id,\n order_id,\n shopify_customer_id AS customer_id,\n user_id AS sms_user_id,\n flow_id,\n flow_step_id,\n conversion_source AS attribution_source,\n amount AS amount_in_usd,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_shopify_flows_orders\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__shopify_flow_order_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__shopify_orders": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__shopify_orders", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.sql", "unique_id": "model.yoda.analytics___sms_stg__shopify_orders", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_orders", "analytics___sms_stg__shopify_orders"], "alias": "analytics___sms_stg__shopify_orders", "checksum": {"name": "sha256", "checksum": "fa01649dad61d0d1eb030cc35610f5c4524103934375f0dccc9de91cc652f251"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms store shopify orders | Granularity & Primary Key: order_line_id", "columns": {"order_line_id": {"name": "order_line_id", "description": "order line unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "customer identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "financial_status": {"name": "financial_status", "description": "order financial status: paid, refunded, authorized, voided, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fulfillment_status": {"name": "fulfillment_status", "description": "order fulfillment status: fulfilled, partial, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancel_reason": {"name": "cancel_reason", "description": "cancelation reason: inventory, declined, fraud, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price_in_usd": {"name": "total_price_in_usd", "description": "total order price in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_buyer_accepts_marketing": {"name": "is_buyer_accepts_marketing", "description": "buyer accepts marketing indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_test": {"name": "is_test", "description": "test indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "logical deleted indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "cancelled_at": {"name": "cancelled_at", "description": "cancelation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "cancelled_date": {"name": "cancelled_date", "description": "cancelation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082660.4222271, "relation_name": "dev_dkruh1.analytics___sms_stg__shopify_orders", "raw_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM {{ ref('sms_stg__orders') }}\n),\n\n-- Logic --\n\nsms_stg__shopify_orders_res AS (\nSELECT\n id AS order_line_id,\n order_id,\n smsbump_user_id AS sms_user_id,\n customer_id,\n financial_status,\n fulfillment_status,\n cancel_reason,\n total_price_usd AS total_price_in_usd,\n SMALLINT(buyer_accepts_marketing) AS is_buyer_accepts_marketing,\n SMALLINT(test) AS is_test,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n cancelled_at,\n DATE(cancelled_at) AS cancelled_date,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_sms_user\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__shopify_orders_res", "language": "sql", "refs": [{"name": "sms_stg__orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__orders"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM dev_dkruh1.sms_stg__orders\n),\n\n-- Logic --\n\nsms_stg__shopify_orders_res AS (\nSELECT\n id AS order_line_id,\n order_id,\n smsbump_user_id AS sms_user_id,\n customer_id,\n financial_status,\n fulfillment_status,\n cancel_reason,\n total_price_usd AS total_price_in_usd,\n SMALLINT(buyer_accepts_marketing) AS is_buyer_accepts_marketing,\n SMALLINT(test) AS is_test,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n cancelled_at,\n DATE(cancelled_at) AS cancelled_date,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_sms_user\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__shopify_orders_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__shopify_segment": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__shopify_segment", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.sql", "unique_id": "model.yoda.analytics___sms_stg__shopify_segment", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_segment", "analytics___sms_stg__shopify_segment"], "alias": "analytics___sms_stg__shopify_segment", "checksum": {"name": "sha256", "checksum": "23195dce24d82e414ebcbb539612d07ce16bd962050ea5a957bbc9bc97ae76e3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled table of sms shopify segments | Granularity & Primary Key: segment_id", "columns": {"segment_id": {"name": "segment_id", "description": "unique identifier of the segment - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "sms user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "segment_rules": {"name": "segment_rules", "description": "full list of the segment rules", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "the platform where the segment is built in", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "update_status": {"name": "update_status", "description": "indication of the update status of the segment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082660.457766, "relation_name": "dev_dkruh1.analytics___sms_stg__shopify_segment", "raw_code": "-- Import --\n\nWITH import_sms_shopify_segments AS (\nSELECT * FROM {{ ref('sms_stg__shopify_segments') }}\n),\n\n-- Logic --\n\nsms_stg__shopify_segment_res AS (\nSELECT\n id AS segment_id,\n user_id AS sms_user_id,\n NULLIF(segment_rules,'') AS segment_rules,\n NULLIF(platform,'') AS platform,\n status AS update_status,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_shopify_segments\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__shopify_segment_res", "language": "sql", "refs": [{"name": "sms_stg__shopify_segments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__shopify_segments"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_shopify_segments AS (\nSELECT * FROM dev_dkruh1.sms_stg__shopify_segments\n),\n\n-- Logic --\n\nsms_stg__shopify_segment_res AS (\nSELECT\n id AS segment_id,\n user_id AS sms_user_id,\n NULLIF(segment_rules,'') AS segment_rules,\n NULLIF(platform,'') AS platform,\n status AS update_status,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date\nFROM import_sms_shopify_segments\n)\n\n-- Result --\n\nSELECT *\nFROM sms_stg__shopify_segment_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__shopify_user": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__shopify_user", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.sql", "unique_id": "model.yoda.analytics___sms_stg__shopify_user", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_user", "analytics___sms_stg__shopify_user"], "alias": "analytics___sms_stg__shopify_user", "checksum": {"name": "sha256", "checksum": "bb379af0f8864a934f7f79146867033852d3195a5a873e18e2d18730c77da169"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of shopify stores users | Granularity & Primary Key: shopify_user_id", "columns": {"shopify_user_id": {"name": "shopify_user_id", "description": "unique identifier of shopify user - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopify_store_id": {"name": "shopify_store_id", "description": "shopify store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_name": {"name": "store_name", "description": "store name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "store domain name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "store platform: shopify, magento, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_plan_name": {"name": "shopify_plan_name", "description": "shopify plan name: basic, shopify_plus, affiliate, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "abandoned_checkouts_sent": {"name": "abandoned_checkouts_sent", "description": "number of abandoned checkouts", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_data": {"name": "shop_data", "description": "shop data in JSON format: logo, language, features, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_access_token": {"name": "is_access_token", "description": "store access token indication", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_connected": {"name": "is_connected", "description": "store connection indication", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_auto_reload": {"name": "is_auto_reload", "description": "store auto reload credits indication", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_sync_enabled": {"name": "is_sync_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active": {"name": "is_active", "description": "activeness indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_shopify_plus": {"name": "is_shopify_plus", "description": "shopify plus indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_user_id_row_rank": {"name": "sms_user_id_row_rank", "description": "shopify's user ranking for yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082660.499747, "relation_name": "dev_dkruh1.analytics___sms_stg__shopify_user", "raw_code": "WITH import_sms_stg__shopify_users AS (\n SELECT * FROM {{ ref('sms_stg__shopify_users') }}\n), \n\nsms_stg__shopify_user AS (\nSELECT\n id AS shopify_user_id,\n user_id AS sms_user_id,\n shopify_store_id,\n store AS store_name,\n domain AS store_domain,\n platform AS platform_name,\n NULLIF(plan,'') AS shopify_plan_name,\n abandoned_checkouts_sent,\n NULLIF(shop_data,'') AS shop_data,\n IF(NULLIF(access_token,'') IS NULL,0,1) AS is_access_token,\n SMALLINT(connected) AS is_connected,\n CASE WHEN LOWER(platform) = 'shopify' THEN auto_reload ELSE NULL END AS is_auto_reload,\n SMALLINT(sync_enabled) AS is_sync_enabled,\n SMALLINT(IF(NULLIF(access_token,'') IS NOT NULL AND NULLIF(shop_data,'') IS NOT NULL AND NVL(LOWER(plan),'') <> 'cancelled',1,0)) AS is_active,\n SMALLINT(IF(LOWER(plan) IN ('plus_partner_sandbox','shopify_plus'),1,0)) AS is_shopify_plus,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n IF(user_id IS NULL,1,ROW_NUMBER() OVER (PARTITION BY user_id ORDER BY connected DESC, id DESC)) AS sms_user_id_row_rank\nFROM import_sms_stg__shopify_users\n)\n\nSELECT\n shopify_user_id,\n sms_user_id,\n shopify_store_id,\n store_name,\n store_domain,\n platform_name,\n shopify_plan_name,\n abandoned_checkouts_sent,\n shop_data,\n is_access_token,\n is_connected,\n is_auto_reload,\n is_sync_enabled,\n is_active,\n is_shopify_plus,\n is_logical_deleted,\n created_at,\n created_date,\n modified_at,\n modified_date,\n sms_user_id_row_rank\nFROM sms_stg__shopify_user", "language": "sql", "refs": [{"name": "sms_stg__shopify_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__shopify_users"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.sql", "compiled": true, "compiled_code": "WITH import_sms_stg__shopify_users AS (\n SELECT * FROM dev_dkruh1.sms_stg__shopify_users\n), \n\nsms_stg__shopify_user AS (\nSELECT\n id AS shopify_user_id,\n user_id AS sms_user_id,\n shopify_store_id,\n store AS store_name,\n domain AS store_domain,\n platform AS platform_name,\n NULLIF(plan,'') AS shopify_plan_name,\n abandoned_checkouts_sent,\n NULLIF(shop_data,'') AS shop_data,\n IF(NULLIF(access_token,'') IS NULL,0,1) AS is_access_token,\n SMALLINT(connected) AS is_connected,\n CASE WHEN LOWER(platform) = 'shopify' THEN auto_reload ELSE NULL END AS is_auto_reload,\n SMALLINT(sync_enabled) AS is_sync_enabled,\n SMALLINT(IF(NULLIF(access_token,'') IS NOT NULL AND NULLIF(shop_data,'') IS NOT NULL AND NVL(LOWER(plan),'') <> 'cancelled',1,0)) AS is_active,\n SMALLINT(IF(LOWER(plan) IN ('plus_partner_sandbox','shopify_plus'),1,0)) AS is_shopify_plus,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date,\n modified AS modified_at,\n DATE(modified) AS modified_date,\n IF(user_id IS NULL,1,ROW_NUMBER() OVER (PARTITION BY user_id ORDER BY connected DESC, id DESC)) AS sms_user_id_row_rank\nFROM import_sms_stg__shopify_users\n)\n\nSELECT\n shopify_user_id,\n sms_user_id,\n shopify_store_id,\n store_name,\n store_domain,\n platform_name,\n shopify_plan_name,\n abandoned_checkouts_sent,\n shop_data,\n is_access_token,\n is_connected,\n is_auto_reload,\n is_sync_enabled,\n is_active,\n is_shopify_plus,\n is_logical_deleted,\n created_at,\n created_date,\n modified_at,\n modified_date,\n sms_user_id_row_rank\nFROM sms_stg__shopify_user", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__sms_user": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__sms_user", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.sql", "unique_id": "model.yoda.analytics___sms_stg__sms_user", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__sms_user", "analytics___sms_stg__sms_user"], "alias": "analytics___sms_stg__sms_user", "checksum": {"name": "sha256", "checksum": "6d4f0dd54f0b5429e532e891ffe23f48ad3e2e47ce1067f2da8b84d03901fb7f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of SMS stores users | Granularity & Primary Key: sms_user_id", "columns": {"sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "parent_id": {"name": "parent_id", "description": "parent id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_number": {"name": "phone_number", "description": "phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cleaned_phone_number": {"name": "cleaned_phone_number", "description": "phone number without extra characters such as \"\"+\"\" and \"\"-\"\"", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_validation": {"name": "email_validation", "description": "email validation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "user name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_id": {"name": "role_id", "description": "role id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "role_name": {"name": "role_name", "description": "role description: support, admin, blogger, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry_name": {"name": "industry_name", "description": "industry name: jewelry, art, travel, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "platform name: shopify, magento, woocommerce, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timezone": {"name": "timezone", "description": "timezone :US/Central, Asia/Kuala_Lumpur, Europe/Lisbon, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_type": {"name": "partner_type", "description": "partner type: agency, freelance, affiliate, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_gateway": {"name": "payment_gateway", "description": "payment gateway: paypal, shopify, zuora, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "sms plan id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "SMS plan: SMSBump, Prime, Free, Growth, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_price_in_usd": {"name": "plan_price_in_usd", "description": "plan price in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "balance_in_usd": {"name": "balance_in_usd", "description": "balance in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "bonus_balance_in_usd": {"name": "bonus_balance_in_usd", "description": "bonus balance in_usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "earnings_in_usd": {"name": "earnings_in_usd", "description": "earnings in usd", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "discounted_mms_price": {"name": "discounted_mms_price", "description": "discounted mms price", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "affiliate_commission": {"name": "affiliate_commission", "description": "affiliate commission", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,2)"}, "price_limit": {"name": "price_limit", "description": "price limit", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_logins": {"name": "total_logins", "description": "total logins", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_partner": {"name": "is_partner", "description": "partner indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_price_limit_enabled": {"name": "is_price_limit_enabled", "description": "price limit enabled indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_chat_enabled": {"name": "is_chat_enabled", "description": "chat enabled indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_collect_checkout_subscribers": {"name": "is_collect_checkout_subscribers", "description": "collect checkout subscribers indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ban_exclude": {"name": "is_ban_exclude", "description": "ban exclude indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_test": {"name": "is_test", "description": "test indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscribed": {"name": "is_subscribed", "description": "subscribed indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_agreed_terms": {"name": "is_agreed_terms", "description": "agreed terms indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_onboarding_completed": {"name": "is_onboarding_completed", "description": "onboarding completed indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_whitelisted": {"name": "is_whitelisted", "description": "whitelisted indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "logical deleted indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "modified_at": {"name": "modified_at", "description": "modification timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified_date": {"name": "modified_date", "description": "modification date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "row_ranking_for_store": {"name": "row_ranking_for_store", "description": "ranking of sms user for yotpo app key. this column handle recurring duplication error in the source data where there are several users for the same store.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082660.557546, "relation_name": "dev_dkruh1.analytics___sms_stg__sms_user", "raw_code": "-- Import --\n\nWITH import_sms_stg__users AS (\n SELECT * FROM {{ ref('sms_stg__users') }}\n),\n\n-- Logic --\n\nphone_number_cleanup AS (\n SELECT\n id AS sms_user_id,\n IF(TRIM(phone_number) IN ('','null'),NULL,TRIM(phone_number)) AS phone_number\n FROM import_sms_stg__users\n),\n\nsms_user_res AS (\n SELECT\n sms_user.id AS sms_user_id,\n sms_user.yotpo_app_key AS app_key,\n sms_user.yotpo_organization_id AS organization_id,\n sms_user.parent_id,\n phone.phone_number,\n REGEXP_REPLACE(REGEXP_REPLACE(REGEXP_REPLACE(phone.phone_number,r'(\\(| |-)',''),r'(^\\+)',''),r'(^00)','') AS cleaned_phone_number,\n NULLIF(TRIM(sms_user.email),'') AS email,\n NULLIF(sms_user.email_is_valid,'') AS email_validation,\n NULLIF(TRIM(sms_user.name),'') AS user_name,\n sms_user.role_id,\n LOWER(sms_user.role) AS role_name,\n NULLIF(TRIM(sms_user.industry),'') AS industry_name,\n NULLIF(sms_user.platform,'') AS platform_name,\n sms_user.timezone,\n NULLIF(sms_user.partner_type,'') AS partner_type,\n sms_user.payment_gateway,\n sms_user.package_id AS plan_id,\n NULLIF(sms_user.plan,'') AS plan_name,\n sms_user.plan_price AS plan_price_in_usd,\n CAST(sms_user.balance AS DECIMAL(12,4)) AS balance_in_usd,\n CAST(sms_user.bonus_balance AS DECIMAL(12,4)) AS bonus_balance_in_usd,\n CAST(sms_user.earnings AS DECIMAL(12,2)) AS earnings_in_usd,\n CAST(sms_user.discounted_mms_price AS DECIMAL(12,2)) AS discounted_mms_price,\n CAST(sms_user.affiliate_commission AS DECIMAL(12,2)) AS affiliate_commission,\n CAST(sms_user.price_limit AS DECIMAL(12,4)) AS price_limit,\n sms_user.total_logins,\n SMALLINT(sms_user.partner) AS is_partner,\n SMALLINT(sms_user.price_limit_enabled) AS is_price_limit_enabled,\n SMALLINT(sms_user.chat_enabled) AS is_chat_enabled,\n SMALLINT(sms_user.collect_checkout_subscribers) AS is_collect_checkout_subscribers,\n SMALLINT(sms_user.ban_exclude) AS is_ban_exclude,\n SMALLINT(sms_user.is_test) AS is_test,\n SMALLINT(sms_user.subscribed) AS is_subscribed,\n SMALLINT(sms_user.agreed_terms) AS is_agreed_terms,\n SMALLINT(sms_user.onboarding_completed) AS is_onboarding_completed,\n SMALLINT(sms_user.whitelisted) AS is_whitelisted,\n SMALLINT(sms_user.is_logical_deleted) AS is_logical_deleted,\n sms_user.created AS created_at,\n DATE(sms_user.created) AS created_date,\n sms_user.modified AS modified_at,\n DATE(sms_user.modified) AS modified_date,\n IF(sms_user.yotpo_app_key IS NULL,1,\n ROW_NUMBER() OVER (PARTITION BY sms_user.yotpo_app_key \n ORDER BY sms_user.balance DESC, sms_user.onboarding_completed DESC, \n sms_user.chat_enabled DESC, sms_user.collect_checkout_subscribers DESC,\n sms_user.ban_exclude DESC, industry DESC, sms_user.id)) AS row_ranking_for_store\n FROM import_sms_stg__users AS sms_user\n INNER JOIN phone_number_cleanup AS phone\n ON sms_user.id = phone.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_user_res", "language": "sql", "refs": [{"name": "sms_stg__users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__users"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_stg__users AS (\n SELECT * FROM dev_dkruh1.sms_stg__users\n),\n\n-- Logic --\n\nphone_number_cleanup AS (\n SELECT\n id AS sms_user_id,\n IF(TRIM(phone_number) IN ('','null'),NULL,TRIM(phone_number)) AS phone_number\n FROM import_sms_stg__users\n),\n\nsms_user_res AS (\n SELECT\n sms_user.id AS sms_user_id,\n sms_user.yotpo_app_key AS app_key,\n sms_user.yotpo_organization_id AS organization_id,\n sms_user.parent_id,\n phone.phone_number,\n REGEXP_REPLACE(REGEXP_REPLACE(REGEXP_REPLACE(phone.phone_number,r'(\\(| |-)',''),r'(^\\+)',''),r'(^00)','') AS cleaned_phone_number,\n NULLIF(TRIM(sms_user.email),'') AS email,\n NULLIF(sms_user.email_is_valid,'') AS email_validation,\n NULLIF(TRIM(sms_user.name),'') AS user_name,\n sms_user.role_id,\n LOWER(sms_user.role) AS role_name,\n NULLIF(TRIM(sms_user.industry),'') AS industry_name,\n NULLIF(sms_user.platform,'') AS platform_name,\n sms_user.timezone,\n NULLIF(sms_user.partner_type,'') AS partner_type,\n sms_user.payment_gateway,\n sms_user.package_id AS plan_id,\n NULLIF(sms_user.plan,'') AS plan_name,\n sms_user.plan_price AS plan_price_in_usd,\n CAST(sms_user.balance AS DECIMAL(12,4)) AS balance_in_usd,\n CAST(sms_user.bonus_balance AS DECIMAL(12,4)) AS bonus_balance_in_usd,\n CAST(sms_user.earnings AS DECIMAL(12,2)) AS earnings_in_usd,\n CAST(sms_user.discounted_mms_price AS DECIMAL(12,2)) AS discounted_mms_price,\n CAST(sms_user.affiliate_commission AS DECIMAL(12,2)) AS affiliate_commission,\n CAST(sms_user.price_limit AS DECIMAL(12,4)) AS price_limit,\n sms_user.total_logins,\n SMALLINT(sms_user.partner) AS is_partner,\n SMALLINT(sms_user.price_limit_enabled) AS is_price_limit_enabled,\n SMALLINT(sms_user.chat_enabled) AS is_chat_enabled,\n SMALLINT(sms_user.collect_checkout_subscribers) AS is_collect_checkout_subscribers,\n SMALLINT(sms_user.ban_exclude) AS is_ban_exclude,\n SMALLINT(sms_user.is_test) AS is_test,\n SMALLINT(sms_user.subscribed) AS is_subscribed,\n SMALLINT(sms_user.agreed_terms) AS is_agreed_terms,\n SMALLINT(sms_user.onboarding_completed) AS is_onboarding_completed,\n SMALLINT(sms_user.whitelisted) AS is_whitelisted,\n SMALLINT(sms_user.is_logical_deleted) AS is_logical_deleted,\n sms_user.created AS created_at,\n DATE(sms_user.created) AS created_date,\n sms_user.modified AS modified_at,\n DATE(sms_user.modified) AS modified_date,\n IF(sms_user.yotpo_app_key IS NULL,1,\n ROW_NUMBER() OVER (PARTITION BY sms_user.yotpo_app_key \n ORDER BY sms_user.balance DESC, sms_user.onboarding_completed DESC, \n sms_user.chat_enabled DESC, sms_user.collect_checkout_subscribers DESC,\n sms_user.ban_exclude DESC, industry DESC, sms_user.id)) AS row_ranking_for_store\n FROM import_sms_stg__users AS sms_user\n INNER JOIN phone_number_cleanup AS phone\n ON sms_user.id = phone.sms_user_id\n)\n\n-- Result --\n\nSELECT *\nFROM sms_user_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__track_flow_adoption": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__track_flow_adoption", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.sql", "unique_id": "model.yoda.analytics___sms_stg__track_flow_adoption", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__track_flow_adoption", "analytics___sms_stg__track_flow_adoption"], "alias": "analytics___sms_stg__track_flow_adoption", "checksum": {"name": "sha256", "checksum": "1c1efcb7634ab9d91ec6d94ef2f748f955b5bd2cc40520d52b10d1be753584e4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of sms flows adoption events | Granularity & Primary Key: flow_adoption_id", "columns": {"flow_adoption_id": {"name": "flow_adoption_id", "description": "flow adoption event unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "sms_user_id - unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "flow_id - flow unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_type": {"name": "flow_type", "description": "flow type: event, flow", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_trigger": {"name": "flow_trigger", "description": "flow's trigger: product/viewed, orders/paid, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_name": {"name": "action_name", "description": "action name: add, edit, deactivate, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "create_at": {"name": "create_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082660.5912385, "relation_name": "dev_dkruh1.analytics___sms_stg__track_flow_adoption", "raw_code": "-- Import --\n\nWITH import_sms_stg__track_flows_adoption AS (\nSELECT * FROM {{ ref('sms_stg__track_flows_adoption') }}\n),\n\n-- Logic --\n\ntrack_flows_adoption_res AS (\nSELECT\n id AS flow_adoption_id,\n user_id AS sms_user_id,\n flow_id,\n flow_type,\n NULLIF(flow_trigger,'') AS flow_trigger,\n action AS action_name,\n created AS create_at,\n DATE(created) AS created_date\nFROM import_sms_stg__track_flows_adoption\n)\n\n-- Result --\n\nSELECT\n flow_adoption_id,\n sms_user_id,\n flow_id,\n flow_type,\n flow_trigger,\n action_name,\n create_at,\n created_date\nFROM track_flows_adoption_res", "language": "sql", "refs": [{"name": "sms_stg__track_flows_adoption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__track_flows_adoption"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_stg__track_flows_adoption AS (\nSELECT * FROM dev_dkruh1.sms_stg__track_flows_adoption\n),\n\n-- Logic --\n\ntrack_flows_adoption_res AS (\nSELECT\n id AS flow_adoption_id,\n user_id AS sms_user_id,\n flow_id,\n flow_type,\n NULLIF(flow_trigger,'') AS flow_trigger,\n action AS action_name,\n created AS create_at,\n DATE(created) AS created_date\nFROM import_sms_stg__track_flows_adoption\n)\n\n-- Result --\n\nSELECT\n flow_adoption_id,\n sms_user_id,\n flow_id,\n flow_type,\n flow_trigger,\n action_name,\n create_at,\n created_date\nFROM track_flows_adoption_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__user_date_explode_from_creation": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__user_date_explode_from_creation", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.sql", "unique_id": "model.yoda.analytics___sms_stg__user_date_explode_from_creation", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__user_date_explode_from_creation", "analytics___sms_stg__user_date_explode_from_creation"], "alias": "analytics___sms_stg__user_date_explode_from_creation", "checksum": {"name": "sha256", "checksum": "70a07198757a96718911eb9603176f6a1505e518069f8c6f7138e38859829155"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Detailed table of sms_user_id and date - starting from the user's creation date.\nIts purpose is to prevent logic duplication and improve performance.", "columns": {"date": {"name": "date", "description": "date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "sms_user_id": {"name": "sms_user_id", "description": "yotpo sms user unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "dwh_updated_at -- record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "sms"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "incremental", "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082660.6213496, "relation_name": "dev_dkruh1.analytics___sms_stg__user_date_explode_from_creation", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by = ['date'],\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE protected_analytics.sms_user_date_explode_from_creation ZORDER BY sms_user_id;')\n )\n}}\n\n-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM {{ ref('analytics___sms_stg__sms_user') }}\nWHERE created_date <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_calendar AS (\nSELECT *\nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date <= DATE_SUB(CURRENT_DATE,1)\n{% if is_incremental() %}\nAND date > (SELECT MAX(date) FROM {{ this }})\n{% endif %}\n),\n\n-- Logic --\n\nuser_creation_date AS (\nSELECT\n sms_user_id,\n DATE(IF(created_date >= '2014-01-01',created_date,'2014-01-01')) AS created_date\nFROM import_sms_user\n),\n\nuser_date_explode_from_creation_res AS (\nSELECT\n calendar.date,\n sms_user.sms_user_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM user_creation_date AS sms_user\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= sms_user.created_date\n)\n\n-- Result --\n\nSELECT *\nFROM user_date_explode_from_creation_res", "language": "sql", "refs": [{"name": "analytics___sms_stg__sms_user", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__sms_user", "model.yoda.platform_stg__dim_calendar"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_sms_user AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__sms_user\nWHERE created_date <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_calendar AS (\nSELECT *\nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date <= DATE_SUB(CURRENT_DATE,1)\n\n),\n\n-- Logic --\n\nuser_creation_date AS (\nSELECT\n sms_user_id,\n DATE(IF(created_date >= '2014-01-01',created_date,'2014-01-01')) AS created_date\nFROM import_sms_user\n),\n\nuser_date_explode_from_creation_res AS (\nSELECT\n calendar.date,\n sms_user.sms_user_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM user_creation_date AS sms_user\nINNER JOIN import_calendar AS calendar\n ON calendar.date >= sms_user.created_date\n)\n\n-- Result --\n\nSELECT *\nFROM user_date_explode_from_creation_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___sms_stg__user_event_log": {"database": null, "schema": "dev_dkruh1", "name": "analytics___sms_stg__user_event_log", "resource_type": "model", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.sql", "unique_id": "model.yoda.analytics___sms_stg__user_event_log", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__user_event_log", "analytics___sms_stg__user_event_log"], "alias": "analytics___sms_stg__user_event_log", "checksum": {"name": "sha256", "checksum": "932e02f07d882063f23c3a69a8744b4c1869cc31d33e4a35edfb4549b721f4ed"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "sms"], "description": "Modeled view of sms user events | Granularity & Primary Key: enent_id", "columns": {"event_id": {"name": "event_id", "description": "event unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_name": {"name": "platform_name", "description": "platform name: shopify, magento, woocommerce, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_user_id": {"name": "platform_user_id", "description": "platform user unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "unique identifier of yotpo sms user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_name": {"name": "event_name", "description": "event name: change_plan, edit_account, charge, cancel_plan, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_type": {"name": "event_type", "description": "event type: remove_flow, email_feature_disabled, download_report, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_details": {"name": "event_details", "description": "event details, e.g: Edited flow with ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "logical deleted indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082660.6584966, "relation_name": "dev_dkruh1.analytics___sms_stg__user_event_log", "raw_code": "-- Import --\n\nWITH import_sms_users_events_log AS (\nSELECT * FROM {{ ref('sms_stg__users_events_log') }}\n),\n\n-- Logic --\n\nsms_stg__user_event_log_res (\nSELECT\n id event_id,\n NULLIF(platform,'') AS platform_name,\n platform_user_id,\n user_id AS sms_user_id,\n event AS event_name,\n NULLIF(event_type,'') AS event_type,\n NULLIF(TRIM(event_details),'') AS event_details,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date\nFROM import_sms_users_events_log\n)\n\n-- Result --\n\nSELECT\n event_id,\n platform_name,\n platform_user_id,\n sms_user_id,\n event_name,\n event_type,\n event_details,\n is_logical_deleted,\n created_at,\n created_date\nFROM sms_stg__user_event_log_res", "language": "sql", "refs": [{"name": "sms_stg__users_events_log", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__users_events_log"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_sms_users_events_log AS (\nSELECT * FROM dev_dkruh1.sms_stg__users_events_log\n),\n\n-- Logic --\n\nsms_stg__user_event_log_res (\nSELECT\n id event_id,\n NULLIF(platform,'') AS platform_name,\n platform_user_id,\n user_id AS sms_user_id,\n event AS event_name,\n NULLIF(event_type,'') AS event_type,\n NULLIF(TRIM(event_details),'') AS event_details,\n SMALLINT(is_logical_deleted) AS is_logical_deleted,\n created AS created_at,\n DATE(created) AS created_date\nFROM import_sms_users_events_log\n)\n\n-- Result --\n\nSELECT\n event_id,\n platform_name,\n platform_user_id,\n sms_user_id,\n event_name,\n event_type,\n event_details,\n is_logical_deleted,\n created_at,\n created_date\nFROM sms_stg__user_event_log_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions__contract_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions__contract_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.sql", "unique_id": "model.yoda.analytics___subscriptions__contract_over_time", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__contract_over_time", "analytics___subscriptions__contract_over_time"], "alias": "analytics___subscriptions__contract_over_time", "checksum": {"name": "sha256", "checksum": "f66a70dbdebeb376422a813f327cd39bff981f2e556038a0ddae0742c41fa602"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "Modeled table of subscription_contract_id status & uninstall status,delivery_policy_interval,delivery_policy_interval_count,billing_policy_interval,billing_policy_interval_count over time.\nPK and granularity: subscription_contract_id, from_time", "columns": {"subscription_contract_id": {"name": "subscription_contract_id", "description": "subscription contract id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_contract_status_id": {"name": "subscription_contract_status_id", "description": "status id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_contract_status": {"name": "subscription_contract_status", "description": "status name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_policy_interval": {"name": "delivery_policy_interval", "description": "the type of frequency of delivery", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval_count": {"name": "delivery_policy_interval_count", "description": "the frequency of delivery", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval": {"name": "billing_policy_interval", "description": "the type of frequency of billing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval_count": {"name": "billing_policy_interval_count", "description": "the frequency of billing", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "from_time": {"name": "from_time", "description": "from time subscription changes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "to time subscription changes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "from_date": {"name": "from_date", "description": "from date subscription changes - avoid using between function", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "to date subscription changes - avoid using between function", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082660.7340858, "relation_name": "dev_dkruh1.analytics___subscriptions__contract_over_time", "raw_code": "-- Import --\nWITH subscriptions_contract_snapshot AS (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__contract_snapshot') }}\n), \n\nsubscriptions_mc_subscription_contract AS (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__mc_subscription_contract') }} \n), \n\nsubscriptions_mc_status AS (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__mc_status') }} \n), \n\n-- Logic --\n\nsubscription_contract_events AS (\n\nSELECT \n subscription_contract_id,\n app_key,\n subscription_contract_status,\n delivery_policy_interval,\n delivery_policy_interval_count,\n billing_policy_interval,\n billing_policy_interval_count,\n updated_at,\n ROW_NUMBER() OVER (PARTITION BY subscription_contract_id ORDER BY updated_at ASC, subscription_contract_status ASC) AS subscription_event_rank\nFROM subscriptions_contract_snapshot\n), \n\nsubscription_contract_created_events AS (\n\nSELECT\n event.subscription_contract_id,\n event.app_key,\n BIGINT(21) AS subscription_contract_status,\n event.delivery_policy_interval,\n event.delivery_policy_interval_count,\n event.billing_policy_interval,\n event.billing_policy_interval_count,\n contract.created_at AS updated_at\nFROM subscription_contract_events AS event \nINNER JOIN subscriptions_mc_subscription_contract AS contract\n ON event.subscription_contract_id = contract.subscription_contract_id \n AND event.app_key = contract.app_key\nWHERE event.subscription_event_rank = 1 \nAND event.subscription_contract_status <> 21 \n), \n\nsubscription_contract_events_w_created_events AS (\n\nSELECT \n subscription_contract_id,\n app_key,\n subscription_contract_status,\n delivery_policy_interval,\n delivery_policy_interval_count,\n billing_policy_interval,\n billing_policy_interval_count,\n updated_at\nFROM subscriptions_contract_snapshot\nUNION ALL\nSELECT \n subscription_contract_id,\n app_key,\n subscription_contract_status,\n delivery_policy_interval,\n delivery_policy_interval_count,\n billing_policy_interval,\n billing_policy_interval_count,\n updated_at\nFROM subscription_contract_created_events\n), \n\nsubscription_contract_over_time AS (\n\nSELECT \n subscription_contract_id,\n app_key,\n subscription_contract_status,\n delivery_policy_interval,\n delivery_policy_interval_count,\n billing_policy_interval,\n billing_policy_interval_count,\n updated_at AS from_time,\n LEAD(updated_at,1,'2999-12-31') OVER (PARTITION BY subscription_contract_id ORDER BY updated_at) AS to_time\nFROM subscription_contract_events_w_created_events\n), \n\nsubscription_contract_over_time_res AS (\n\nSELECT \n contract.subscription_contract_id,\n contract.app_key,\n contract.subscription_contract_status AS subscription_contract_status_id,\n status.status_name AS subscription_contract_status,\n contract.delivery_policy_interval,\n contract.delivery_policy_interval_count,\n contract.billing_policy_interval,\n contract.billing_policy_interval_count,\n contract.from_time,\n contract.to_time,\n DATE(contract.from_time) AS from_date,\n DATE(contract.to_time) AS to_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM subscription_contract_over_time AS contract\nINNER JOIN subscriptions_mc_status AS status \n ON contract.subscription_contract_status = status.status_number\n)\n\nSELECT *\nFROM subscription_contract_over_time_res", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__contract_snapshot", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_subscription_contract", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___subscriptions_stg__contract_snapshot", "model.yoda.analytics___subscriptions_stg__mc_subscription_contract", "model.yoda.analytics___subscriptions_stg__mc_status"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.sql", "compiled": true, "compiled_code": "-- Import --\nWITH subscriptions_contract_snapshot AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__contract_snapshot\n), \n\nsubscriptions_mc_subscription_contract AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract \n), \n\nsubscriptions_mc_status AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__mc_status \n), \n\n-- Logic --\n\nsubscription_contract_events AS (\n\nSELECT \n subscription_contract_id,\n app_key,\n subscription_contract_status,\n delivery_policy_interval,\n delivery_policy_interval_count,\n billing_policy_interval,\n billing_policy_interval_count,\n updated_at,\n ROW_NUMBER() OVER (PARTITION BY subscription_contract_id ORDER BY updated_at ASC, subscription_contract_status ASC) AS subscription_event_rank\nFROM subscriptions_contract_snapshot\n), \n\nsubscription_contract_created_events AS (\n\nSELECT\n event.subscription_contract_id,\n event.app_key,\n BIGINT(21) AS subscription_contract_status,\n event.delivery_policy_interval,\n event.delivery_policy_interval_count,\n event.billing_policy_interval,\n event.billing_policy_interval_count,\n contract.created_at AS updated_at\nFROM subscription_contract_events AS event \nINNER JOIN subscriptions_mc_subscription_contract AS contract\n ON event.subscription_contract_id = contract.subscription_contract_id \n AND event.app_key = contract.app_key\nWHERE event.subscription_event_rank = 1 \nAND event.subscription_contract_status <> 21 \n), \n\nsubscription_contract_events_w_created_events AS (\n\nSELECT \n subscription_contract_id,\n app_key,\n subscription_contract_status,\n delivery_policy_interval,\n delivery_policy_interval_count,\n billing_policy_interval,\n billing_policy_interval_count,\n updated_at\nFROM subscriptions_contract_snapshot\nUNION ALL\nSELECT \n subscription_contract_id,\n app_key,\n subscription_contract_status,\n delivery_policy_interval,\n delivery_policy_interval_count,\n billing_policy_interval,\n billing_policy_interval_count,\n updated_at\nFROM subscription_contract_created_events\n), \n\nsubscription_contract_over_time AS (\n\nSELECT \n subscription_contract_id,\n app_key,\n subscription_contract_status,\n delivery_policy_interval,\n delivery_policy_interval_count,\n billing_policy_interval,\n billing_policy_interval_count,\n updated_at AS from_time,\n LEAD(updated_at,1,'2999-12-31') OVER (PARTITION BY subscription_contract_id ORDER BY updated_at) AS to_time\nFROM subscription_contract_events_w_created_events\n), \n\nsubscription_contract_over_time_res AS (\n\nSELECT \n contract.subscription_contract_id,\n contract.app_key,\n contract.subscription_contract_status AS subscription_contract_status_id,\n status.status_name AS subscription_contract_status,\n contract.delivery_policy_interval,\n contract.delivery_policy_interval_count,\n contract.billing_policy_interval,\n contract.billing_policy_interval_count,\n contract.from_time,\n contract.to_time,\n DATE(contract.from_time) AS from_date,\n DATE(contract.to_time) AS to_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM subscription_contract_over_time AS contract\nINNER JOIN subscriptions_mc_status AS status \n ON contract.subscription_contract_status = status.status_number\n)\n\nSELECT *\nFROM subscription_contract_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions__store": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions__store", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.sql", "unique_id": "model.yoda.analytics___subscriptions__store", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store", "analytics___subscriptions__store"], "alias": "analytics___subscriptions__store", "checksum": {"name": "sha256", "checksum": "36bf06e0f04c8afeb94443d17ac5320fbb898b66f1f8a68f4c50fad0c737b65f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled table of subscriptions product stores.\nThe store population includes stores where feature 'SubscriptionsOnboarding'(id=389) or 'SubscriptionsBilling'(id=403) were added to then at one point.\nGranularity & Primary Key: app_key", "columns": {"app_key": {"name": "app_key", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_name": {"name": "store_name", "description": "domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "the store platform (for now shopify is the only platform)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "store industry (health & beauty,baby & toddler,sports & outdoors...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "Orders bucket of the last 3m avg", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_country": {"name": "organization_country", "description": "This table determine the country of each organization, using 3 sources:\n\n 1. Zuora billing country\n 2. SF account country\n 3. *SMS store country (most stores country)\n \n *Each organization can have multiple SMS stores and each SMS store can have only one country.\n\n We define the organization's country as the country that occur the most among the organization's SMS stores.\n\n In case multiple countries have the exact same number of occurance, we choose the country that occur the most in the entire population.\n\nNOTE: In case organization have country info from multiple sources, we choose the country by the order above.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_feature_created_date": {"name": "first_feature_created_date", "description": "min created_date of 'SubscriptionsOnboarding'(id=389) or 'SubscriptionsBilling'(id=403) features in store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "limit_reached_date": {"name": "limit_reached_date", "description": "date of limit reached", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "onboarding_start_date": {"name": "onboarding_start_date", "description": "The date a store started the onboarding process", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "onboarding_finish_date": {"name": "onboarding_finish_date", "description": "The date a store finished the onboarding process", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "store_created_at": {"name": "store_created_at", "description": "yotpo store created timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_created_date": {"name": "store_created_date", "description": "yotpo store created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_migrated_subscription": {"name": "is_migrated_subscription", "description": "indicatore = 1/0 indicate if at least one subscription contract was migrated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_limit_reached": {"name": "is_limit_reached", "description": "indicator = 1/0 indicate if the store has reached to the limit of $500 free subscriptions revenue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table updated timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082660.7967896, "relation_name": "dev_dkruh1.analytics___subscriptions__store", "raw_code": "-- Import --\n\nWITH import_platform_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_owner_feature_setting AS (\nSELECT * FROM {{ ref('analytics___platform_stg__owner_feature_setting') }}\n),\n\nimport_owner_feature AS (\nSELECT * FROM {{ ref('analytics___platform_stg__owner_feature') }}\n),\n\nimport_subscription_creation_request AS (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__mc_subscription_creation_request') }}\n),\n\nimport_platform_organization AS (\nSELECT * FROM {{ ref('analytics___platform__organization') }}\n),\n\nimport_store_metrics_current_month AS (\nSELECT * FROM {{ ref('analytics___platform__store_metrics_monthly') }}\nWHERE month = TRUNC(DATE_SUB(CURRENT_DATE,1),'MONTH')\n),\n\n-- Logic --\n\nstores_from_subscription_feature AS (\nSELECT \n owner_feature.owner_id AS store_id,\n DATE(MIN(owner_feature.created_at)) AS first_feature_created_date,\n DATE(MIN(IF(owner_feature.feature_id = 389, settings.created_at, NULL))) AS onboarding_start_date,\n DATE(MIN(IF(owner_feature.feature_id = 389 \n AND settings.key = 'is_finished' \n AND settings.value LIKE '%true%', settings.updated_at, NULL))) AS onboarding_finish_date,\n DATE(MIN(IF(owner_feature.feature_id = 403\n AND settings.key = 'is_free_limit_reached' \n AND settings.value LIKE '%true%', settings.updated_at, NULL))) AS limit_reached_date\nFROM import_owner_feature AS owner_feature\nINNER JOIN import_owner_feature_setting AS settings \n ON owner_feature.owner_feature_id = settings.owner_feature_id\nWHERE owner_feature.feature_id IN (389,403) \nAND owner_feature.is_store_owner = 1\nAND owner_feature.is_user_enabled = 1\nAND owner_feature.is_disabled = 0\nGROUP BY 1\n),\n\nstores_w_migrated_subscriptions AS ( \nSELECT \n app_key,\n 1 AS is_migrated\nFROM import_subscription_creation_request\nWHERE is_succeeded = 1\nGROUP BY 1\n),\n\nsubscriptions_store_res AS ( \nSELECT \n store.app_key,\n store.organization_key,\n store.store_name,\n store.platform_name,\n store.industry,\n orders.last_3m_orders_avg_bucket,\n organization.country_name AS organization_country,\n onboarding.first_feature_created_date,\n onboarding.limit_reached_date,\n onboarding.onboarding_start_date,\n onboarding.onboarding_finish_date,\n store.store_created_at,\n store.store_created_date,\n SMALLINT(NVL(migrate.is_migrated,0)) AS is_migrated_subscription,\n SMALLINT(IF(onboarding.limit_reached_date IS NULL,0,1)) AS is_limit_reached,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_platform_store AS store\nINNER JOIN stores_from_subscription_feature AS onboarding\n ON store.store_id = onboarding.store_id\nLEFT JOIN import_platform_organization AS organization\n ON store.organization_key = organization.organization_key\nLEFT JOIN import_store_metrics_current_month AS orders\n ON store.app_key = orders.app_key\nLEFT JOIN stores_w_migrated_subscriptions AS migrate\n ON store.app_key = migrate.app_key\nWHERE store.is_test = 0\nAND store.is_active = 1\n)\n\nSELECT *\nFROM subscriptions_store_res", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_feature_setting", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_subscription_creation_request", "package": null, "version": null}, {"name": "analytics___platform__organization", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform_stg__owner_feature_setting", "model.yoda.analytics___platform_stg__owner_feature", "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request", "model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_owner_feature_setting AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__owner_feature_setting\n),\n\nimport_owner_feature AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__owner_feature\n),\n\nimport_subscription_creation_request AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__mc_subscription_creation_request\n),\n\nimport_platform_organization AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization\n),\n\nimport_store_metrics_current_month AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_metrics_monthly\nWHERE month = TRUNC(DATE_SUB(CURRENT_DATE,1),'MONTH')\n),\n\n-- Logic --\n\nstores_from_subscription_feature AS (\nSELECT \n owner_feature.owner_id AS store_id,\n DATE(MIN(owner_feature.created_at)) AS first_feature_created_date,\n DATE(MIN(IF(owner_feature.feature_id = 389, settings.created_at, NULL))) AS onboarding_start_date,\n DATE(MIN(IF(owner_feature.feature_id = 389 \n AND settings.key = 'is_finished' \n AND settings.value LIKE '%true%', settings.updated_at, NULL))) AS onboarding_finish_date,\n DATE(MIN(IF(owner_feature.feature_id = 403\n AND settings.key = 'is_free_limit_reached' \n AND settings.value LIKE '%true%', settings.updated_at, NULL))) AS limit_reached_date\nFROM import_owner_feature AS owner_feature\nINNER JOIN import_owner_feature_setting AS settings \n ON owner_feature.owner_feature_id = settings.owner_feature_id\nWHERE owner_feature.feature_id IN (389,403) \nAND owner_feature.is_store_owner = 1\nAND owner_feature.is_user_enabled = 1\nAND owner_feature.is_disabled = 0\nGROUP BY 1\n),\n\nstores_w_migrated_subscriptions AS ( \nSELECT \n app_key,\n 1 AS is_migrated\nFROM import_subscription_creation_request\nWHERE is_succeeded = 1\nGROUP BY 1\n),\n\nsubscriptions_store_res AS ( \nSELECT \n store.app_key,\n store.organization_key,\n store.store_name,\n store.platform_name,\n store.industry,\n orders.last_3m_orders_avg_bucket,\n organization.country_name AS organization_country,\n onboarding.first_feature_created_date,\n onboarding.limit_reached_date,\n onboarding.onboarding_start_date,\n onboarding.onboarding_finish_date,\n store.store_created_at,\n store.store_created_date,\n SMALLINT(NVL(migrate.is_migrated,0)) AS is_migrated_subscription,\n SMALLINT(IF(onboarding.limit_reached_date IS NULL,0,1)) AS is_limit_reached,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_platform_store AS store\nINNER JOIN stores_from_subscription_feature AS onboarding\n ON store.store_id = onboarding.store_id\nLEFT JOIN import_platform_organization AS organization\n ON store.organization_key = organization.organization_key\nLEFT JOIN import_store_metrics_current_month AS orders\n ON store.app_key = orders.app_key\nLEFT JOIN stores_w_migrated_subscriptions AS migrate\n ON store.app_key = migrate.app_key\nWHERE store.is_test = 0\nAND store.is_active = 1\n)\n\nSELECT *\nFROM subscriptions_store_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions__store_activeness_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions__store_activeness_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.sql", "unique_id": "model.yoda.analytics___subscriptions__store_activeness_daily", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_activeness_daily", "analytics___subscriptions__store_activeness_daily"], "alias": "analytics___subscriptions__store_activeness_daily", "checksum": {"name": "sha256", "checksum": "e7bc18488e28dd44ae56cdbe7e3dd1a4fe9e96f15c6957f6408e737631188cf2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["activeness_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled table of subscriptions store activeness history on a daily level | PK and granularity: activeness_date, app_key", "columns": {"activeness_date": {"name": "activeness_date", "description": "store activeness date - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_app_installed": {"name": "is_app_installed", "description": "installed app indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "incremental_strategy": "append", "partition_by": ["activeness_date"]}, "created_at": 1700082660.8278267, "relation_name": "dev_dkruh1.analytics___subscriptions__store_activeness_daily", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by = ['activeness_date']\n )\n}}\n\n-- Import --\n\nWITH import_store_installation_over_time AS (\nSELECT * FROM {{ ref('analytics___subscriptions__store_installation_over_time') }}\n),\n\ncurrent_day_data_existence AS (\nSELECT 1 AS is_current_day_data_exists\nWHERE EXISTS (SELECT * FROM import_store_installation_over_time WHERE created_date = CURRENT_DATE LIMIT 1)\n),\n\nimport_calendar AS (\nSELECT * \nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-4,1,1) AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n{% if is_incremental() %}\nAND date > (SELECT MAX(activeness_date) FROM {{ this }})\n{% endif %}\n),\n\n-- Logic --\n\nsubscriptions__store_activeness_daily_res AS (\nSELECT\n calendar.date AS activeness_date,\n store.app_key,\n MAX(IF(store.installation_status = 'installed',1,0)) AS is_app_installed,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_calendar AS calendar\nINNER JOIN import_store_installation_over_time AS store\n ON calendar.date BETWEEN DATE(store.from_time) AND DATE(store.to_time)\nGROUP BY 1,2\n)\n\n-- Result --\n\nSELECT *\nFROM subscriptions__store_activeness_daily_res", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_installation_over_time", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___subscriptions__store_installation_over_time", "model.yoda.platform_stg__dim_calendar"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_store_installation_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions__store_installation_over_time\n),\n\ncurrent_day_data_existence AS (\nSELECT 1 AS is_current_day_data_exists\nWHERE EXISTS (SELECT * FROM import_store_installation_over_time WHERE created_date = CURRENT_DATE LIMIT 1)\n),\n\nimport_calendar AS (\nSELECT * \nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-4,1,1) AND DATE_SUB(CURRENT_DATE,1)\nAND EXISTS (SELECT * FROM current_day_data_existence)\n\n),\n\n-- Logic --\n\nsubscriptions__store_activeness_daily_res AS (\nSELECT\n calendar.date AS activeness_date,\n store.app_key,\n MAX(IF(store.installation_status = 'installed',1,0)) AS is_app_installed,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_calendar AS calendar\nINNER JOIN import_store_installation_over_time AS store\n ON calendar.date BETWEEN DATE(store.from_time) AND DATE(store.to_time)\nGROUP BY 1,2\n)\n\n-- Result --\n\nSELECT *\nFROM subscriptions__store_activeness_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions__store_feature_activation": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions__store_feature_activation", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.sql", "unique_id": "model.yoda.analytics___subscriptions__store_feature_activation", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_feature_activation", "analytics___subscriptions__store_feature_activation"], "alias": "analytics___subscriptions__store_feature_activation", "checksum": {"name": "sha256", "checksum": "0e30d9ef7879fcd1c7169fe469d2a46f9a8d0bc570d85e8c806ce30db96a6543"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "subscriptions"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "naor.daga@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "subscriptions store feature activation, PK & Granularity:app_key,feature_name", "columns": {"app_key": {"name": "app_key", "description": "app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feature_name": {"name": "feature_name", "description": "feature name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_plan": {"name": "current_plan", "description": "the store subscription current plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_name": {"name": "store_name", "description": "store name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_order_bucket": {"name": "store_order_bucket", "description": "order bucket", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_eligible": {"name": "is_eligible", "description": "If the store has all the products that are relevant to the feature then 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_enabled": {"name": "is_enabled", "description": "if the store enabled the feature then 1 else 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "naor.daga@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "naor.daga@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082660.8684585, "relation_name": "dev_dkruh1.analytics___subscriptions__store_feature_activation", "raw_code": "--- Import ---\n\nWITH import_synergies_store_enablement_daily AS (\n \n SELECT * FROM {{ ref('analytics___synergies__store_enablement_daily') }} \n\n),import_platform_store AS (\n\n SELECT * FROM {{ ref('analytics___platform__store') }} \n\n),import_platform_store_metrics_monthly AS (\n\n SELECT * FROM {{ ref('analytics___platform__store_metrics_monthly') }} \n\n),import_subscriptions_segment_subscription_started_v_two AS (\n\n SELECT * FROM {{ ref('analytics___subscriptions_stg__segment_subscription_started_v_two') }} \n\n),import_subscriptions_segment_subscription_ended_v_two AS (\n\n SELECT * FROM {{ ref('analytics___subscriptions_stg__segment_subscription_ended_v_two') }} \n\n),import_subscription_accounts AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_accounts') }} \n WHERE is_test = 0\n\n),import_platform_segment_page_event AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__segment_page_event') }} \n WHERE event_created_at BETWEEN DATE_SUB(CURRENT_DATE,30) AND DATE_SUB(CURRENT_DATE,1)\n\n),import_subscriptions_store_activeness_daily AS (\n\n SELECT * FROM {{ ref('analytics___subscriptions__store_activeness_daily') }} \n WHERE activeness_date BETWEEN DATE_SUB(CURRENT_DATE,30) AND DATE_SUB(CURRENT_DATE,1)\n--- Logic ---\n\n),last_store_analytics_page_view AS (\n\nSELECT \n app_key,\n MAX(event_created_at) AS last_event \nFROM import_platform_segment_page_event\nWHERE LOWER(product) = 'subscriptions' \nAND LOWER(page_context) = 'analytics overview' \nGROUP BY 1 \n\n),subscriptions_active_stores AS (\n \n SELECT *\n FROM import_subscriptions_store_activeness_daily\n WHERE is_app_installed = 1\n\n),subscriptions_active_stores_last_30_days_page_view AS (\n\n SELECT \n active_store.app_key,\n SMALLINT(1) AS is_eligible,\n SMALLINT(MAX(IF(last_page_view.app_key IS NOT NULL,1,0))) AS is_enabled\n FROM subscriptions_active_stores AS active_store \n LEFT JOIN last_store_analytics_page_view AS last_page_view \n ON active_store.app_key = last_page_view.app_key\n GROUP BY 1\n\n),subscriptions_all_features AS (\n\nSELECT \n app_key,\n 'analytics overview' AS feature_name,\n is_eligible,\n is_enabled\nFROM subscriptions_active_stores_last_30_days_page_view\nUNION ALL\nSELECT \n app_key, \n synergy_name AS feature_name,\n SMALLINT(1) AS is_eligible,\n is_enabled\nFROM import_synergies_store_enablement_daily \nWHERE synergy_date = DATE_SUB(CURRENT_DATE,1) \nAND synergy_id IN (71, 100) \n\n),union_plans AS ( \n\nSELECT \n app_key,\n new_package AS new_plan,\n created_at AS plan_change_at\nFROM import_subscriptions_segment_subscription_started_v_two\nUNION ALL\nSELECT \n app_key,\n new_package AS new_plan,\n created_at AS plan_change_at\nFROM import_subscriptions_segment_subscription_ended_v_two\n\n),store_current_plan AS (\n\nSELECT \n app_key,\n new_plan\nFROM union_plans\nQUALIFY MAX(plan_change_at) OVER (PARTITION BY app_key) = plan_change_at \n\n),subscriptions_store_feature_activation AS (\n\nSELECT \n subscriptions_features.app_key AS app_key,\n subscriptions_features.feature_name AS feature_name,\n IF(ISNULL(plan.new_plan), 'Subscriptions - Free' ,plan.new_plan) AS current_plan,\n store.store_name AS store_name,\n store_order_bucket.last_3m_orders_avg_bucket AS store_order_bucket,\n subscriptions_features.is_eligible AS is_eligible,\n subscriptions_features.is_enabled AS is_enabled\nFROM subscriptions_all_features AS subscriptions_features\nINNER JOIN import_subscription_accounts AS subscriptions_stores \n ON subscriptions_features.app_key = subscriptions_stores.app_key \nLEFT JOIN store_current_plan AS plan \n ON subscriptions_features.app_key = plan.app_key\nLEFT JOIN import_platform_store AS store \n ON subscriptions_features.app_key = store.app_key\nLEFT JOIN import_platform_store_metrics_monthly AS store_order_bucket \n ON subscriptions_features.app_key = store_order_bucket.app_key\n AND store_order_bucket.month = TRUNC(CURRENT_DATE,'MONTH')\n\n)\n\nSELECT * FROM subscriptions_store_feature_activation", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_daily", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__segment_subscription_started_v_two", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two", "package": null, "version": null}, {"name": "subscriptions__subscription_accounts", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_page_event", "package": null, "version": null}, {"name": "analytics___subscriptions__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___synergies__store_enablement_daily", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two", "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two", "model.yoda.subscriptions__subscription_accounts", "model.yoda.analytics___platform_stg__segment_page_event", "model.yoda.analytics___subscriptions__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.sql", "compiled": true, "compiled_code": "--- Import ---\n\nWITH import_synergies_store_enablement_daily AS (\n \n SELECT * FROM dev_dkruh1.analytics___synergies__store_enablement_daily \n\n),import_platform_store AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store \n\n),import_platform_store_metrics_monthly AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform__store_metrics_monthly \n\n),import_subscriptions_segment_subscription_started_v_two AS (\n\n SELECT * FROM dev_dkruh1.analytics___subscriptions_stg__segment_subscription_started_v_two \n\n),import_subscriptions_segment_subscription_ended_v_two AS (\n\n SELECT * FROM dev_dkruh1.analytics___subscriptions_stg__segment_subscription_ended_v_two \n\n),import_subscription_accounts AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_accounts \n WHERE is_test = 0\n\n),import_platform_segment_page_event AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__segment_page_event \n WHERE event_created_at BETWEEN DATE_SUB(CURRENT_DATE,30) AND DATE_SUB(CURRENT_DATE,1)\n\n),import_subscriptions_store_activeness_daily AS (\n\n SELECT * FROM dev_dkruh1.analytics___subscriptions__store_activeness_daily \n WHERE activeness_date BETWEEN DATE_SUB(CURRENT_DATE,30) AND DATE_SUB(CURRENT_DATE,1)\n--- Logic ---\n\n),last_store_analytics_page_view AS (\n\nSELECT \n app_key,\n MAX(event_created_at) AS last_event \nFROM import_platform_segment_page_event\nWHERE LOWER(product) = 'subscriptions' \nAND LOWER(page_context) = 'analytics overview' \nGROUP BY 1 \n\n),subscriptions_active_stores AS (\n \n SELECT *\n FROM import_subscriptions_store_activeness_daily\n WHERE is_app_installed = 1\n\n),subscriptions_active_stores_last_30_days_page_view AS (\n\n SELECT \n active_store.app_key,\n SMALLINT(1) AS is_eligible,\n SMALLINT(MAX(IF(last_page_view.app_key IS NOT NULL,1,0))) AS is_enabled\n FROM subscriptions_active_stores AS active_store \n LEFT JOIN last_store_analytics_page_view AS last_page_view \n ON active_store.app_key = last_page_view.app_key\n GROUP BY 1\n\n),subscriptions_all_features AS (\n\nSELECT \n app_key,\n 'analytics overview' AS feature_name,\n is_eligible,\n is_enabled\nFROM subscriptions_active_stores_last_30_days_page_view\nUNION ALL\nSELECT \n app_key, \n synergy_name AS feature_name,\n SMALLINT(1) AS is_eligible,\n is_enabled\nFROM import_synergies_store_enablement_daily \nWHERE synergy_date = DATE_SUB(CURRENT_DATE,1) \nAND synergy_id IN (71, 100) \n\n),union_plans AS ( \n\nSELECT \n app_key,\n new_package AS new_plan,\n created_at AS plan_change_at\nFROM import_subscriptions_segment_subscription_started_v_two\nUNION ALL\nSELECT \n app_key,\n new_package AS new_plan,\n created_at AS plan_change_at\nFROM import_subscriptions_segment_subscription_ended_v_two\n\n),store_current_plan AS (\n\nSELECT \n app_key,\n new_plan\nFROM union_plans\nQUALIFY MAX(plan_change_at) OVER (PARTITION BY app_key) = plan_change_at \n\n),subscriptions_store_feature_activation AS (\n\nSELECT \n subscriptions_features.app_key AS app_key,\n subscriptions_features.feature_name AS feature_name,\n IF(ISNULL(plan.new_plan), 'Subscriptions - Free' ,plan.new_plan) AS current_plan,\n store.store_name AS store_name,\n store_order_bucket.last_3m_orders_avg_bucket AS store_order_bucket,\n subscriptions_features.is_eligible AS is_eligible,\n subscriptions_features.is_enabled AS is_enabled\nFROM subscriptions_all_features AS subscriptions_features\nINNER JOIN import_subscription_accounts AS subscriptions_stores \n ON subscriptions_features.app_key = subscriptions_stores.app_key \nLEFT JOIN store_current_plan AS plan \n ON subscriptions_features.app_key = plan.app_key\nLEFT JOIN import_platform_store AS store \n ON subscriptions_features.app_key = store.app_key\nLEFT JOIN import_platform_store_metrics_monthly AS store_order_bucket \n ON subscriptions_features.app_key = store_order_bucket.app_key\n AND store_order_bucket.month = TRUNC(CURRENT_DATE,'MONTH')\n\n)\n\nSELECT * FROM subscriptions_store_feature_activation", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions__store_installation_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions__store_installation_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.sql", "unique_id": "model.yoda.analytics___subscriptions__store_installation_over_time", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_installation_over_time", "analytics___subscriptions__store_installation_over_time"], "alias": "analytics___subscriptions__store_installation_over_time", "checksum": {"name": "sha256", "checksum": "5c459ba6ebfcb3d3b1689fbd2936927acfadca7d102017bece9a976bf9d7faa0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled table of subscriptions store install & uninstall status over time | PK and granularity: app_key, from_time", "columns": {"app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_time": {"name": "from_time", "description": "store installation status range start timestamp - primary key 2/2 - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "store installation status range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "installation_status": {"name": "installation_status", "description": "subscriptions app installation status: installed/uninstalled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_and_date_row_ranking": {"name": "store_and_date_row_ranking", "description": "row ranking for each store and created_date by created_at (i.e, 1 is the first row for each store and created date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "store_and_date_row_ranking_backwards": {"name": "store_and_date_row_ranking_backwards", "description": "row ranking for each store and created_date by created_at (i.e, 1 is the last row for each store and created date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_date": {"name": "created_date", "description": "installation event created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082660.9122367, "relation_name": "dev_dkruh1.analytics___subscriptions__store_installation_over_time", "raw_code": "-- Import --\n\n\nWITH import_segment_app_install_completed AS (\nSELECT * FROM {{ ref('analytics___platform_stg__segment_app_install_completed') }}\n),\n\n\nimport_platform_stg__segment_app_uninstalled AS (\nSELECT * FROM {{ ref('analytics___platform_stg__segment_app_uninstalled') }}\n),\n\n\nimport_subscriptions_subscription_accounts AS (\nSELECT * FROM {{ ref('subscriptions__subscription_accounts') }}\n),\n\n-- Logic --\n\n\nsubscriptions_install_product AS (\nSELECT\n app_key,\n DATE(finished_date) AS created_date,\n TIMESTAMP(finished_date) AS created_at,\n 'installed' AS event_type\nFROM import_subscriptions_subscription_accounts\nWHERE finished_date IS NOT NULL\n),\n\n\nsubscriptions_install_segment AS (\nSELECT DISTINCT\n install_segment.app_key,\n install_segment.created_date,\n install_segment.created_at,\n 'installed' AS event_type\nFROM import_segment_app_install_completed AS install_segment\nLEFT JOIN subscriptions_install_product AS install_product\n ON install_segment.app_key=install_product.app_key\n AND install_segment.created_date=install_product.created_date\nWHERE LOWER(install_segment.product_name) = 'subscriptions'\nAND install_product.app_key IS NULL\n),\n\n\nsubscriptions_uninstall_segment AS (\nSELECT DISTINCT\n uninstall.app_key,\n uninstall.created_date,\n uninstall.created_at,\n 'uninstalled' AS event_type\nFROM import_platform_stg__segment_app_uninstalled AS uninstall\nLEFT JOIN subscriptions_install_segment AS install\n ON uninstall.app_key = install.app_key\n AND uninstall.created_at = install.created_at\nWHERE LOWER(uninstall.product_name) = 'subscriptions'\nAND install.app_key IS NULL\n),\n\n\nsubscriptions_union_events AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_type\nFROM subscriptions_install_segment\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_type\nFROM subscriptions_install_product\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_type\nFROM subscriptions_uninstall_segment\n),\n\n\nsubscriptions_store_installation_events_ranking AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_type,\n IF(event_type = LAG(event_type) OVER (PARTITION BY app_key ORDER BY created_at),1,0) AS is_redundant_row\nFROM subscriptions_union_events\n),\n\n\nstore_installation_over_time_res AS (\nSELECT\n app_key,\n created_at AS from_time,\n LEAD(created_at,1,'2999-12-31') OVER (PARTITION BY app_key ORDER BY created_at) AS to_time,\n event_type AS installation_status,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_date ORDER BY created_at) AS store_and_date_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_date ORDER BY created_at DESC) AS store_and_date_row_ranking_backwards,\n DATE(created_date) AS created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM subscriptions_store_installation_events_ranking\nWHERE is_redundant_row = 0\n)\n-- Result --\n\n\nSELECT *\nFROM store_installation_over_time_res", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_app_install_completed", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_app_uninstalled", "package": null, "version": null}, {"name": "subscriptions__subscription_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__segment_app_install_completed", "model.yoda.analytics___platform_stg__segment_app_uninstalled", "model.yoda.subscriptions__subscription_accounts"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\n\nWITH import_segment_app_install_completed AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__segment_app_install_completed\n),\n\n\nimport_platform_stg__segment_app_uninstalled AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__segment_app_uninstalled\n),\n\n\nimport_subscriptions_subscription_accounts AS (\nSELECT * FROM dev_dkruh1.subscriptions__subscription_accounts\n),\n\n-- Logic --\n\n\nsubscriptions_install_product AS (\nSELECT\n app_key,\n DATE(finished_date) AS created_date,\n TIMESTAMP(finished_date) AS created_at,\n 'installed' AS event_type\nFROM import_subscriptions_subscription_accounts\nWHERE finished_date IS NOT NULL\n),\n\n\nsubscriptions_install_segment AS (\nSELECT DISTINCT\n install_segment.app_key,\n install_segment.created_date,\n install_segment.created_at,\n 'installed' AS event_type\nFROM import_segment_app_install_completed AS install_segment\nLEFT JOIN subscriptions_install_product AS install_product\n ON install_segment.app_key=install_product.app_key\n AND install_segment.created_date=install_product.created_date\nWHERE LOWER(install_segment.product_name) = 'subscriptions'\nAND install_product.app_key IS NULL\n),\n\n\nsubscriptions_uninstall_segment AS (\nSELECT DISTINCT\n uninstall.app_key,\n uninstall.created_date,\n uninstall.created_at,\n 'uninstalled' AS event_type\nFROM import_platform_stg__segment_app_uninstalled AS uninstall\nLEFT JOIN subscriptions_install_segment AS install\n ON uninstall.app_key = install.app_key\n AND uninstall.created_at = install.created_at\nWHERE LOWER(uninstall.product_name) = 'subscriptions'\nAND install.app_key IS NULL\n),\n\n\nsubscriptions_union_events AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_type\nFROM subscriptions_install_segment\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_type\nFROM subscriptions_install_product\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_type\nFROM subscriptions_uninstall_segment\n),\n\n\nsubscriptions_store_installation_events_ranking AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_type,\n IF(event_type = LAG(event_type) OVER (PARTITION BY app_key ORDER BY created_at),1,0) AS is_redundant_row\nFROM subscriptions_union_events\n),\n\n\nstore_installation_over_time_res AS (\nSELECT\n app_key,\n created_at AS from_time,\n LEAD(created_at,1,'2999-12-31') OVER (PARTITION BY app_key ORDER BY created_at) AS to_time,\n event_type AS installation_status,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_date ORDER BY created_at) AS store_and_date_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_date ORDER BY created_at DESC) AS store_and_date_row_ranking_backwards,\n DATE(created_date) AS created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM subscriptions_store_installation_events_ranking\nWHERE is_redundant_row = 0\n)\n-- Result --\n\n\nSELECT *\nFROM store_installation_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions__subscription_contract_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions__subscription_contract_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.sql", "unique_id": "model.yoda.analytics___subscriptions__subscription_contract_daily", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_daily", "analytics___subscriptions__subscription_contract_daily"], "alias": "analytics___subscriptions__subscription_contract_daily", "checksum": {"name": "sha256", "checksum": "6f05ebe7ebdfb6f681641ba63c6b850e828a363887d7b3e9413cf7fedbacfdcf"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "subscriptions"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Daily aggregated subscriptions contracts per merchant (active, canceled, failed, etc)\nGranularity: date | app_key | status", "columns": {"app_key": {"name": "app_key", "description": "appkey", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "subscription_contract_status": {"name": "subscription_contract_status", "description": "status contract - active,canceled,failed,expired,paused,etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_contract_status_id": {"name": "subscription_contract_status_id", "description": "status id contract - PK of subscriptions_stg__status", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptions_contracts_cnt": {"name": "subscriptions_contracts_cnt", "description": "number of contracts in each day and status per merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscribers_cnt": {"name": "subscribers_cnt", "description": "num of distinct subscribers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "dwh_updated_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082660.9524007, "relation_name": "dev_dkruh1.analytics___subscriptions__subscription_contract_daily", "raw_code": "WITH import_mc_contract_over_time AS (\n\n SELECT * FROM {{ ref('analytics___subscriptions__contract_over_time') }}\n),\n\nimport_dim_calendar AS (\n\n SELECT * FROM {{ ref('platform_stg__dim_calendar') }}\n WHERE date < CURRENT_DATE\n),\n\nimport_subscriptions_contract AS (\n\n SELECT * FROM {{ ref('analytics___subscriptions_stg__mc_subscription_contract') }}\n),\n\nimport_subscriptions_stores AS (\n\n SELECT * FROM {{ ref('analytics___subscriptions_stg__subscriptions_store') }}\n),\n\ncontract_overtime AS (\n\n SELECT \n contracts_over_time.subscription_contract_id,\n contracts_over_time.app_key,\n contracts_over_time.subscription_contract_status_id,\n contracts_over_time.subscription_contract_status,\n contracts_over_time.from_date,\n contracts_over_time.to_date,\n contracts.external_customer_id\n FROM import_mc_contract_over_time AS contracts_over_time\n INNER JOIN import_subscriptions_contract AS contracts \n ON contracts_over_time.app_key = contracts.app_key\n AND contracts_over_time.subscription_contract_id = contracts.subscription_contract_id\n INNER JOIN import_subscriptions_stores AS stores \n ON stores.app_key=contracts_over_time.app_key\n),\n\ndaily_active_contract AS (\n\n SELECT\n calendar.date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM contract_overtime AS contracts\n INNER JOIN import_dim_calendar AS calendar \n ON from_date <= calendar.date AND to_date > calendar.date\n WHERE subscription_contract_status_id = 21\n),\n\ndaily_action_contract AS (\n\n SELECT \n calendar.date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM contract_overtime AS contracts \n INNER JOIN protected_platform.dim_calendar AS calendar \n ON from_date=calendar.date \n WHERE subscription_contract_status_id <> 21 \n\n),\n\ndaily_all_action_contract AS (\n\n SELECT \n date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM daily_active_contract\n UNION ALL\n SELECT \n date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM daily_action_contract\n),\n\ndaily_all_action_contract_agg AS (\n \n SELECT\n app_key,\n date,\n subscription_contract_status,\n subscription_contract_status_id,\n COUNT(DISTINCT subscription_contract_id) AS subscriptions_contracts_cnt,\n COUNT(DISTINCT external_customer_id) AS subscribers_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM daily_all_action_contract\n GROUP BY 1,2,3,4\n)\n\n -- Result --\n\n SELECT *\n FROM daily_all_action_contract_agg", "language": "sql", "refs": [{"name": "analytics___subscriptions__contract_over_time", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_subscription_contract", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__subscriptions_store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___subscriptions__contract_over_time", "model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___subscriptions_stg__mc_subscription_contract", "model.yoda.analytics___subscriptions_stg__subscriptions_store"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.sql", "compiled": true, "compiled_code": "WITH import_mc_contract_over_time AS (\n\n SELECT * FROM dev_dkruh1.analytics___subscriptions__contract_over_time\n),\n\nimport_dim_calendar AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__dim_calendar\n WHERE date < CURRENT_DATE\n),\n\nimport_subscriptions_contract AS (\n\n SELECT * FROM dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract\n),\n\nimport_subscriptions_stores AS (\n\n SELECT * FROM dev_dkruh1.analytics___subscriptions_stg__subscriptions_store\n),\n\ncontract_overtime AS (\n\n SELECT \n contracts_over_time.subscription_contract_id,\n contracts_over_time.app_key,\n contracts_over_time.subscription_contract_status_id,\n contracts_over_time.subscription_contract_status,\n contracts_over_time.from_date,\n contracts_over_time.to_date,\n contracts.external_customer_id\n FROM import_mc_contract_over_time AS contracts_over_time\n INNER JOIN import_subscriptions_contract AS contracts \n ON contracts_over_time.app_key = contracts.app_key\n AND contracts_over_time.subscription_contract_id = contracts.subscription_contract_id\n INNER JOIN import_subscriptions_stores AS stores \n ON stores.app_key=contracts_over_time.app_key\n),\n\ndaily_active_contract AS (\n\n SELECT\n calendar.date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM contract_overtime AS contracts\n INNER JOIN import_dim_calendar AS calendar \n ON from_date <= calendar.date AND to_date > calendar.date\n WHERE subscription_contract_status_id = 21\n),\n\ndaily_action_contract AS (\n\n SELECT \n calendar.date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM contract_overtime AS contracts \n INNER JOIN protected_platform.dim_calendar AS calendar \n ON from_date=calendar.date \n WHERE subscription_contract_status_id <> 21 \n\n),\n\ndaily_all_action_contract AS (\n\n SELECT \n date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM daily_active_contract\n UNION ALL\n SELECT \n date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM daily_action_contract\n),\n\ndaily_all_action_contract_agg AS (\n \n SELECT\n app_key,\n date,\n subscription_contract_status,\n subscription_contract_status_id,\n COUNT(DISTINCT subscription_contract_id) AS subscriptions_contracts_cnt,\n COUNT(DISTINCT external_customer_id) AS subscribers_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM daily_all_action_contract\n GROUP BY 1,2,3,4\n)\n\n -- Result --\n\n SELECT *\n FROM daily_all_action_contract_agg", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions__subscription_contract_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions__subscription_contract_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.sql", "unique_id": "model.yoda.analytics___subscriptions__subscription_contract_monthly", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_monthly", "analytics___subscriptions__subscription_contract_monthly"], "alias": "analytics___subscriptions__subscription_contract_monthly", "checksum": {"name": "sha256", "checksum": "51d1e7587f32d3ee9019cfd30c94b5ac861cb583a06fb6ec8556537ad2d99aba"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "subscriptions"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Monthly aggregated subscriptions contracts per merchant (active, canceled, failed, etc)\nGranularity: month | app_key | status", "columns": {"app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_contract_status": {"name": "subscription_contract_status", "description": "status contract - active,canceled,failed,expired,paused,etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_contract_status_id": {"name": "subscription_contract_status_id", "description": "status id contract - PK of subscriptions_stg__status", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptions_contracts_cnt": {"name": "subscriptions_contracts_cnt", "description": "number of contracts in each month and status per store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscribers_cnt": {"name": "subscribers_cnt", "description": "num of distinct subscribers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.01154, "relation_name": "dev_dkruh1.analytics___subscriptions__subscription_contract_monthly", "raw_code": "WITH import_mc_contract_over_time AS (\n\n SELECT * FROM {{ ref('analytics___subscriptions__contract_over_time') }}\n),\n\nimport_dim_calendar AS (\n\n SELECT * FROM {{ ref('platform_stg__dim_calendar') }}\n WHERE date < CURRENT_DATE\n),\n\nimport_subscriptions_contract AS (\n\n SELECT * FROM {{ ref('analytics___subscriptions_stg__mc_subscription_contract') }}\n),\n\nimport_subscriptions_stores AS (\n\n SELECT * FROM {{ ref('analytics___subscriptions_stg__subscriptions_store') }}\n),\n\ncontract_overtime AS (\n\n SELECT \n contracts_over_time.subscription_contract_id,\n contracts_over_time.app_key,\n contracts_over_time.subscription_contract_status_id,\n contracts_over_time.subscription_contract_status,\n contracts_over_time.from_date,\n contracts_over_time.to_date,\n contracts.external_customer_id\n FROM import_mc_contract_over_time AS contracts_over_time\n INNER JOIN import_subscriptions_contract AS contracts\n ON contracts_over_time.app_key = contracts.app_key\n AND contracts_over_time.subscription_contract_id = contracts.subscription_contract_id\n INNER JOIN import_subscriptions_stores AS stores \n ON stores.app_key=contracts_over_time.app_key\n),\n\ndaily_active_contract AS (\n\n SELECT\n calendar.date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM contract_overtime AS contracts\n INNER JOIN import_dim_calendar AS calendar \n ON from_date <= calendar.date AND to_date > calendar.date\n WHERE subscription_contract_status_id = 21\n),\n\ndaily_action_contract AS (\n\n SELECT \n calendar.date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM contract_overtime AS contracts \n INNER JOIN protected_platform.dim_calendar AS calendar \n ON from_date=calendar.date \n WHERE subscription_contract_status_id <> 21 \n\n),\n\ndaily_all_action_contract AS (\n\n SELECT \n date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM daily_active_contract\n UNION ALL\n SELECT \n date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM daily_action_contract\n),\n\nmonthly_all_action_contract_agg AS (\n \n SELECT\n app_key,\n DATE_TRUNC('month', date) AS month,\n subscription_contract_status,\n subscription_contract_status_id,\n COUNT(DISTINCT subscription_contract_id) AS subscriptions_contracts_cnt,\n COUNT(DISTINCT external_customer_id) AS subscribers_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM daily_all_action_contract\n GROUP BY 1,2,3,4\n)\n\n -- Result --\n\n SELECT *\n FROM monthly_all_action_contract_agg", "language": "sql", "refs": [{"name": "analytics___subscriptions__contract_over_time", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_subscription_contract", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__subscriptions_store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___subscriptions__contract_over_time", "model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___subscriptions_stg__mc_subscription_contract", "model.yoda.analytics___subscriptions_stg__subscriptions_store"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.sql", "compiled": true, "compiled_code": "WITH import_mc_contract_over_time AS (\n\n SELECT * FROM dev_dkruh1.analytics___subscriptions__contract_over_time\n),\n\nimport_dim_calendar AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__dim_calendar\n WHERE date < CURRENT_DATE\n),\n\nimport_subscriptions_contract AS (\n\n SELECT * FROM dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract\n),\n\nimport_subscriptions_stores AS (\n\n SELECT * FROM dev_dkruh1.analytics___subscriptions_stg__subscriptions_store\n),\n\ncontract_overtime AS (\n\n SELECT \n contracts_over_time.subscription_contract_id,\n contracts_over_time.app_key,\n contracts_over_time.subscription_contract_status_id,\n contracts_over_time.subscription_contract_status,\n contracts_over_time.from_date,\n contracts_over_time.to_date,\n contracts.external_customer_id\n FROM import_mc_contract_over_time AS contracts_over_time\n INNER JOIN import_subscriptions_contract AS contracts\n ON contracts_over_time.app_key = contracts.app_key\n AND contracts_over_time.subscription_contract_id = contracts.subscription_contract_id\n INNER JOIN import_subscriptions_stores AS stores \n ON stores.app_key=contracts_over_time.app_key\n),\n\ndaily_active_contract AS (\n\n SELECT\n calendar.date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM contract_overtime AS contracts\n INNER JOIN import_dim_calendar AS calendar \n ON from_date <= calendar.date AND to_date > calendar.date\n WHERE subscription_contract_status_id = 21\n),\n\ndaily_action_contract AS (\n\n SELECT \n calendar.date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM contract_overtime AS contracts \n INNER JOIN protected_platform.dim_calendar AS calendar \n ON from_date=calendar.date \n WHERE subscription_contract_status_id <> 21 \n\n),\n\ndaily_all_action_contract AS (\n\n SELECT \n date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM daily_active_contract\n UNION ALL\n SELECT \n date,\n app_key,\n subscription_contract_id,\n subscription_contract_status_id,\n subscription_contract_status,\n external_customer_id\n FROM daily_action_contract\n),\n\nmonthly_all_action_contract_agg AS (\n \n SELECT\n app_key,\n DATE_TRUNC('month', date) AS month,\n subscription_contract_status,\n subscription_contract_status_id,\n COUNT(DISTINCT subscription_contract_id) AS subscriptions_contracts_cnt,\n COUNT(DISTINCT external_customer_id) AS subscribers_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM daily_all_action_contract\n GROUP BY 1,2,3,4\n)\n\n -- Result --\n\n SELECT *\n FROM monthly_all_action_contract_agg", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__subscription_contract_before_snapshot", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.sql", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot", "fqn": ["yoda", "analytics", "subscriptions", "staging", "base", "analytics___subscriptions_stg__subscription_contract_before_snapshot", "analytics___subscriptions_stg__subscription_contract_before_snapshot"], "alias": "analytics___subscriptions_stg__subscription_contract_before_snapshot", "checksum": {"name": "sha256", "checksum": "ade54d117ff644c9021e8d822cb6e682f879061790b402b5ae22fc6d762a8263"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "TODO: Update Table Description", "columns": {"subscription_contract_id": {"name": "subscription_contract_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_contract_status": {"name": "subscription_contract_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval": {"name": "delivery_policy_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval_count": {"name": "delivery_policy_interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval": {"name": "billing_policy_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval_count": {"name": "billing_policy_interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.0759957, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__subscription_contract_before_snapshot", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__static', 'subscription_contract_before_snapshot') }}\n\n), analytics___subscriptions_stg__subscription_contract_before_snapshot AS (\n\n SELECT \n\t\tsubscription_contract_id,\n\t\tapp_key,\n\t\tsubscription_contract_status,\n\t\tdelivery_policy_interval,\n\t\tdelivery_policy_interval_count,\n\t\tbilling_policy_interval,\n\t\tbilling_policy_interval_count,\n\t\tupdated_at,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___subscriptions_stg__subscription_contract_before_snapshot", "language": "sql", "refs": [], "sources": [["analytics__static", "subscription_contract_before_snapshot"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.subscription_contract_before_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.subscription_contract_before_snapshot\n\n), analytics___subscriptions_stg__subscription_contract_before_snapshot AS (\n\n SELECT \n\t\tsubscription_contract_id,\n\t\tapp_key,\n\t\tsubscription_contract_status,\n\t\tdelivery_policy_interval,\n\t\tdelivery_policy_interval_count,\n\t\tbilling_policy_interval,\n\t\tbilling_policy_interval_count,\n\t\tupdated_at,\n\t\tdwh_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM analytics___subscriptions_stg__subscription_contract_before_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__subscription_ended_v2": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__subscription_ended_v2", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.sql", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__subscription_ended_v2", "fqn": ["yoda", "analytics", "subscriptions", "staging", "base", "analytics___subscriptions_stg__subscription_ended_v2", "analytics___subscriptions_stg__subscription_ended_v2"], "alias": "analytics___subscriptions_stg__subscription_ended_v2", "checksum": {"name": "sha256", "checksum": "52bdaba1ae55619213403245680424c6e49cafcae8369fe4350b2fcd629604fa"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingprovider": {"name": "billingprovider", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargecurrency": {"name": "chargecurrency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackage": {"name": "newpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oldpackagemonthlyprice": {"name": "oldpackagemonthlyprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oldpackage": {"name": "oldpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuorasubscriptionname": {"name": "zuorasubscriptionname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "grouptype": {"name": "grouptype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgcreatedat": {"name": "orgcreatedat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgemail": {"name": "orgemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgisreviews": {"name": "orgisreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgissms": {"name": "orgissms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgistest": {"name": "orgistest", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgisvugc": {"name": "orgisvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgloyaltymonthlyprice": {"name": "orgloyaltymonthlyprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgorganizationkey": {"name": "orgorganizationkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgreviewsmonthlyprice": {"name": "orgreviewsmonthlyprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgreviewspackage": {"name": "orgreviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsmsmonthlyprice": {"name": "orgsmsmonthlyprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgstorecount": {"name": "orgstorecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgstorelimit": {"name": "orgstorelimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgvugcmonthlyprice": {"name": "orgvugcmonthlyprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "org_isloyalty": {"name": "org_isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgname": {"name": "orgname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsignupcountry": {"name": "orgsignupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgloyaltypackage": {"name": "orgloyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgbillingproviders": {"name": "orgbillingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "orgvugcpackage": {"name": "orgvugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsmspackage": {"name": "orgsmspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgpackageextensions": {"name": "orgpackageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackageid": {"name": "newpackageid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "oldpackageid": {"name": "oldpackageid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackagemonthlyprice": {"name": "newpackagemonthlyprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isoldsubscriptionltannual": {"name": "isoldsubscriptionltannual", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.1413915, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__subscription_ended_v2", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__segment', 'subscription_ended_v2') }}\n\n), subscriptions_stg__subscription_ended_v2 AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tbillingprovider,\n\t\tchargecurrency,\n\t\tchargeprice,\n\t\tgroupid,\n\t\tname,\n\t\tnewpackage,\n\t\toldpackagemonthlyprice,\n\t\toldpackage,\n\t\tpackagecategories,\n\t\tproduct,\n\t\tsource,\n\t\tzuorasubscriptionname,\n\t\tgrouptype,\n\t\torgcreatedat,\n\t\torgemail,\n\t\torgisreviews,\n\t\torgissms,\n\t\torgistest,\n\t\torgisvugc,\n\t\torgloyaltymonthlyprice,\n\t\torgorganizationkey,\n\t\torgreviewsmonthlyprice,\n\t\torgreviewspackage,\n\t\torgsmsmonthlyprice,\n\t\torgstorecount,\n\t\torgstorelimit,\n\t\torgvugcmonthlyprice,\n\t\torg_isloyalty,\n\t\torgname,\n\t\torgsignupcountry,\n\t\torgloyaltypackage,\n\t\torgbillingproviders,\n\t\torgvugcpackage,\n\t\torgsmspackage,\n\t\torgpackageextensions,\n\t\tadminusername,\n\t\tappkey,\n\t\tcategory,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tnewpackageid,\n\t\toldpackageid,\n\t\torgid,\n\t\torgkey,\n\t\tplatformplan,\n\t\tplatform,\n\t\treviewspackage,\n\t\tsmsuserid,\n\t\tstoredomain,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tuserid,\n\t\tvugcpackage,\n\t\tloyaltypackage,\n\t\tsmspackage,\n\t\tuseremail,\n\t\tnewpackagemonthlyprice,\n\t\tisoldsubscriptionltannual,\n\t\tpackage\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_ended_v2", "language": "sql", "refs": [], "sources": [["subscriptions__segment", "subscription_ended_v2"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__segment.subscription_ended_v2"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.subscription_ended_v2\n\n), subscriptions_stg__subscription_ended_v2 AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tbillingprovider,\n\t\tchargecurrency,\n\t\tchargeprice,\n\t\tgroupid,\n\t\tname,\n\t\tnewpackage,\n\t\toldpackagemonthlyprice,\n\t\toldpackage,\n\t\tpackagecategories,\n\t\tproduct,\n\t\tsource,\n\t\tzuorasubscriptionname,\n\t\tgrouptype,\n\t\torgcreatedat,\n\t\torgemail,\n\t\torgisreviews,\n\t\torgissms,\n\t\torgistest,\n\t\torgisvugc,\n\t\torgloyaltymonthlyprice,\n\t\torgorganizationkey,\n\t\torgreviewsmonthlyprice,\n\t\torgreviewspackage,\n\t\torgsmsmonthlyprice,\n\t\torgstorecount,\n\t\torgstorelimit,\n\t\torgvugcmonthlyprice,\n\t\torg_isloyalty,\n\t\torgname,\n\t\torgsignupcountry,\n\t\torgloyaltypackage,\n\t\torgbillingproviders,\n\t\torgvugcpackage,\n\t\torgsmspackage,\n\t\torgpackageextensions,\n\t\tadminusername,\n\t\tappkey,\n\t\tcategory,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tnewpackageid,\n\t\toldpackageid,\n\t\torgid,\n\t\torgkey,\n\t\tplatformplan,\n\t\tplatform,\n\t\treviewspackage,\n\t\tsmsuserid,\n\t\tstoredomain,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tuserid,\n\t\tvugcpackage,\n\t\tloyaltypackage,\n\t\tsmspackage,\n\t\tuseremail,\n\t\tnewpackagemonthlyprice,\n\t\tisoldsubscriptionltannual,\n\t\tpackage\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_ended_v2", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__subscription_started_v2": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__subscription_started_v2", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.sql", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__subscription_started_v2", "fqn": ["yoda", "analytics", "subscriptions", "staging", "base", "analytics___subscriptions_stg__subscription_started_v2", "analytics___subscriptions_stg__subscription_started_v2"], "alias": "analytics___subscriptions_stg__subscription_started_v2", "checksum": {"name": "sha256", "checksum": "63b1b034083b155a146aa8b710f6b4d245287751a13554ef411c32160a193096"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingprovider": {"name": "billingprovider", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargecurrency": {"name": "chargecurrency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackagemonthlyprice": {"name": "newpackagemonthlyprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackage": {"name": "newpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oldpackage": {"name": "oldpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuorasubscriptionname": {"name": "zuorasubscriptionname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "grouptype": {"name": "grouptype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgbillingproviders": {"name": "orgbillingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "orgcreatedat": {"name": "orgcreatedat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgemail": {"name": "orgemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgisreviews": {"name": "orgisreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgissms": {"name": "orgissms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgistest": {"name": "orgistest", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgisvugc": {"name": "orgisvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgloyaltymonthlyprice": {"name": "orgloyaltymonthlyprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgname": {"name": "orgname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgorganizationkey": {"name": "orgorganizationkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgreviewsmonthlyprice": {"name": "orgreviewsmonthlyprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgreviewspackage": {"name": "orgreviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsignupcountry": {"name": "orgsignupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsmsmonthlyprice": {"name": "orgsmsmonthlyprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgstorecount": {"name": "orgstorecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgstorelimit": {"name": "orgstorelimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgvugcmonthlyprice": {"name": "orgvugcmonthlyprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "org_isloyalty": {"name": "org_isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgvugcpackage": {"name": "orgvugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsmspackage": {"name": "orgsmspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgloyaltypackage": {"name": "orgloyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewsubscriptionltannual": {"name": "isnewsubscriptionltannual", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.2131522, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__subscription_started_v2", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__segment', 'subscription_started_v2') }}\n\n), subscriptions_stg__subscription_started_v2 AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tbillingprovider,\n\t\tchargecurrency,\n\t\tchargeprice,\n\t\tgroupid,\n\t\tname,\n\t\tnewpackagemonthlyprice,\n\t\tnewpackage,\n\t\toldpackage,\n\t\tpackagecategories,\n\t\tproduct,\n\t\tsource,\n\t\tzuorasubscriptionname,\n\t\tgrouptype,\n\t\torgbillingproviders,\n\t\torgcreatedat,\n\t\torgemail,\n\t\torgisreviews,\n\t\torgissms,\n\t\torgistest,\n\t\torgisvugc,\n\t\torgloyaltymonthlyprice,\n\t\torgname,\n\t\torgorganizationkey,\n\t\torgreviewsmonthlyprice,\n\t\torgreviewspackage,\n\t\torgsignupcountry,\n\t\torgsmsmonthlyprice,\n\t\torgstorecount,\n\t\torgstorelimit,\n\t\torgvugcmonthlyprice,\n\t\torg_isloyalty,\n\t\torgvugcpackage,\n\t\torgsmspackage,\n\t\torgloyaltypackage,\n\t\tadminusername,\n\t\tappkey,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\tplatformplan,\n\t\tplatform,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoredomain,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tuserid,\n\t\tvugcpackage,\n\t\tloyaltypackage,\n\t\tuseremail,\n\t\tisnewsubscriptionltannual,\n\t\tpackage\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_started_v2", "language": "sql", "refs": [], "sources": [["subscriptions__segment", "subscription_started_v2"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__segment.subscription_started_v2"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.subscription_started_v2\n\n), subscriptions_stg__subscription_started_v2 AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tbillingprovider,\n\t\tchargecurrency,\n\t\tchargeprice,\n\t\tgroupid,\n\t\tname,\n\t\tnewpackagemonthlyprice,\n\t\tnewpackage,\n\t\toldpackage,\n\t\tpackagecategories,\n\t\tproduct,\n\t\tsource,\n\t\tzuorasubscriptionname,\n\t\tgrouptype,\n\t\torgbillingproviders,\n\t\torgcreatedat,\n\t\torgemail,\n\t\torgisreviews,\n\t\torgissms,\n\t\torgistest,\n\t\torgisvugc,\n\t\torgloyaltymonthlyprice,\n\t\torgname,\n\t\torgorganizationkey,\n\t\torgreviewsmonthlyprice,\n\t\torgreviewspackage,\n\t\torgsignupcountry,\n\t\torgsmsmonthlyprice,\n\t\torgstorecount,\n\t\torgstorelimit,\n\t\torgvugcmonthlyprice,\n\t\torg_isloyalty,\n\t\torgvugcpackage,\n\t\torgsmspackage,\n\t\torgloyaltypackage,\n\t\tadminusername,\n\t\tappkey,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\tplatformplan,\n\t\tplatform,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoredomain,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tuserid,\n\t\tvugcpackage,\n\t\tloyaltypackage,\n\t\tuseremail,\n\t\tisnewsubscriptionltannual,\n\t\tpackage\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_started_v2", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__contract_event_details": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__contract_event_details", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__contract_event_details", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_event_details", "analytics___subscriptions_stg__contract_event_details"], "alias": "analytics___subscriptions_stg__contract_event_details", "checksum": {"name": "sha256", "checksum": "8488c5d4bf99656071959eeca2dae21a312c1bda3bbc6f4200a7d9671ed97d91"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Incremental Table that holds subscriptions contracts events data | PK: app_key, contract_id, event_created_at", "columns": {"event_created_at": {"name": "event_created_at", "description": "event created timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "store app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_id": {"name": "contract_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status_id": {"name": "status_id", "description": "contract status id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_frequency_interval": {"name": "delivery_frequency_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_frequency_interval_count": {"name": "delivery_frequency_interval_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_frequency_interval": {"name": "billing_frequency_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_frequency_interval_count": {"name": "billing_frequency_interval_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_order_external_id": {"name": "original_order_external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_customer_id": {"name": "external_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status_last_updated_at": {"name": "status_last_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "incremental", "incremental_strategy": "append"}, "created_at": 1700082661.2406871, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__contract_event_details", "raw_code": "{{ config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append'\n )\n}}\n\n-- Import --\n\nWITH import_mc_subscription_contract AS (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__mc_subscription_contract') }}\nWHERE DATE(status_last_updated_at) <= DATE_SUB(CURRENT_DATE, 1)\n{% if is_incremental() %}\nAND DATE(status_last_updated_at) > (SELECT max(event_created_at) FROM {{ this }})\n{% endif %}\n),\n\n-- Logic --\n\ncontract_event_details AS (\nSELECT \n COALESCE(status_last_updated_at,created_at) AS event_created_at,\n app_key, \n external_subscription_contract_id AS contract_id,\n subscription_contract_status AS status_id,\n delivery_policy_interval AS delivery_frequency_interval,\n delivery_policy_interval_count AS delivery_frequency_interval_count,\n billing_policy_interval AS billing_frequency_interval,\n billing_policy_interval_count AS billing_frequency_interval_count,\n original_order_external_id,\n external_customer_id,\n created_at,\n updated_at,\n status_last_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_mc_subscription_contract AS contract \n)\n\n-- Result --\n\n SELECT * FROM contract_event_details", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_mc_subscription_contract AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract\nWHERE DATE(status_last_updated_at) <= DATE_SUB(CURRENT_DATE, 1)\n\n),\n\n-- Logic --\n\ncontract_event_details AS (\nSELECT \n COALESCE(status_last_updated_at,created_at) AS event_created_at,\n app_key, \n external_subscription_contract_id AS contract_id,\n subscription_contract_status AS status_id,\n delivery_policy_interval AS delivery_frequency_interval,\n delivery_policy_interval_count AS delivery_frequency_interval_count,\n billing_policy_interval AS billing_frequency_interval,\n billing_policy_interval_count AS billing_frequency_interval_count,\n original_order_external_id,\n external_customer_id,\n created_at,\n updated_at,\n status_last_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_mc_subscription_contract AS contract \n)\n\n-- Result --\n\n SELECT * FROM contract_event_details", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__contract_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__contract_snapshot", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__contract_snapshot", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_snapshot", "analytics___subscriptions_stg__contract_snapshot"], "alias": "analytics___subscriptions_stg__contract_snapshot", "checksum": {"name": "sha256", "checksum": "223e318c635a59e6524b73bec5fddb0f721900a507a739d2ba2a63529742b1cf"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "subscriptions"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled Table over subscriptions_contract table, holds historical data for each subscription", "columns": {"subscription_contract_id": {"name": "subscription_contract_id", "description": "subscription contract id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "Store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_contract_status": {"name": "subscription_contract_status", "description": "subscription status", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval": {"name": "delivery_policy_interval", "description": "billing policy interval:\n7 - day\n8 - week\n9 - month\n10 - year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval_count": {"name": "delivery_policy_interval_count", "description": "the amount of time for interval", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval": {"name": "billing_policy_interval", "description": "billing policy interval:\n7 - day\n8 - week\n9 - month\n10 - year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval_count": {"name": "billing_policy_interval_count", "description": "the amount of time for interval,\nfor example, if interval is 7 (week) and interval count is 10, billing is expected every 10 weeks", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "records updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "records updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "subscriptions"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "nschwartz@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "materialized": "incremental", "incremental_strategy": "append"}, "created_at": 1700082661.302092, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__contract_snapshot", "raw_code": "{{\nanalytics_snapshot_scd(\n source_model = 'analytics___subscriptions_stg__mc_subscription_contract',\n unique_key = ['subscription_contract_id','app_key'],\n tracked_columns =['subscription_contract_status',\n 'delivery_policy_interval',\n 'delivery_policy_interval_count',\n 'billing_policy_interval',\n 'billing_policy_interval_count'\n ],\n updated_at = 'updated_at'\n )\n}}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_snapshot_scd", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.sql", "compiled": true, "compiled_code": "\n\n WITH \n \n\n incremental_calculation AS (\n SELECT \n source_table.subscription_contract_id, source_table.app_key, source_table.subscription_contract_status, source_table.delivery_policy_interval, source_table.delivery_policy_interval_count, source_table.billing_policy_interval, source_table.billing_policy_interval_count, source_table.updated_at, \n 1 AS is_new_update\n FROM dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract AS source_table\n )\n\n SELECT\n subscription_contract_id, app_key, subscription_contract_status, delivery_policy_interval, delivery_policy_interval_count, billing_policy_interval, billing_policy_interval_count, updated_at AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM incremental_calculation\n WHERE is_new_update = 1\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__customer_journey_event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__customer_journey_event", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__customer_journey_event", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__customer_journey_event", "analytics___subscriptions_stg__customer_journey_event"], "alias": "analytics___subscriptions_stg__customer_journey_event", "checksum": {"name": "sha256", "checksum": "41a32194914a46f7502ffb3a51a083e6466679f36a3f0ff8928e3cfd543810a9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled view of subscriptions customer jounrey events | Granularity & Primary Key: journey_event_id", "columns": {"journey_event_id": {"name": "journey_event_id", "description": "journey_event_id - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "unique identifier of yotpo app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "the customer associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "the object unique identifier on which the event occured (example: for subscription product line it's the subscription contract external id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_domain": {"name": "source_domain", "description": "product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_type": {"name": "event_type", "description": "the event description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_origin": {"name": "event_origin", "description": "where did the event take place (Customer Portal, Shopify, SMS reply, System, Yotpo Subscriptions)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_initiator": {"name": "event_initiator", "description": "the intiator of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_properties": {"name": "event_properties", "description": "event raw additional data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_time": {"name": "event_time", "description": "the event creation time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082661.3581462, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__customer_journey_event", "raw_code": "-- Import --\n\nWITH import_subscriptions_customer_journey_event AS (\nSELECT * FROM {{ ref('subscriptions_stg__customer_journey_event') }}\n),\n\n-- Logic --\n\nsubscriptions_customer_journey_event_res AS (\nSELECT\n \n id AS journey_event_id,\n store_id AS app_key,\n customer_id,\n source_id,\n source_domain,\n event_type,\n event_origin,\n event_initiator,\n properties AS event_properties,\n event_time,\n created_at,\n DATE(created_at) as created_date,\n updated_at,\n DATE(updated_at) as updated_date\nFROM import_subscriptions_customer_journey_event\n)\n\n-- Result --\n\nSELECT *\nFROM subscriptions_customer_journey_event_res", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_subscriptions_customer_journey_event AS (\nSELECT * FROM dev_dkruh1.subscriptions_stg__customer_journey_event\n),\n\n-- Logic --\n\nsubscriptions_customer_journey_event_res AS (\nSELECT\n \n id AS journey_event_id,\n store_id AS app_key,\n customer_id,\n source_id,\n source_domain,\n event_type,\n event_origin,\n event_initiator,\n properties AS event_properties,\n event_time,\n created_at,\n DATE(created_at) as created_date,\n updated_at,\n DATE(updated_at) as updated_date\nFROM import_subscriptions_customer_journey_event\n)\n\n-- Result --\n\nSELECT *\nFROM subscriptions_customer_journey_event_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__mc_app_webhook": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__mc_app_webhook", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__mc_app_webhook", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_app_webhook", "analytics___subscriptions_stg__mc_app_webhook"], "alias": "analytics___subscriptions_stg__mc_app_webhook", "checksum": {"name": "sha256", "checksum": "aae4c7000fd52a611a456fccdaf99dbf788c4b48032ac80831f3dc0cb725f3c5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled view for subscriptions app_webhook", "columns": {"app_webhook_id": {"name": "app_webhook_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "webhook_action": {"name": "webhook_action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_uninstall": {"name": "is_uninstall", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.3907697, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__mc_app_webhook", "raw_code": "-- Import -- \n\nWITH import_app_webhook AS (\nSELECT * FROM {{ ref('subscriptions_stg__app_webhooks') }}\n), \n\napp_webhook_res AS (\nSELECT \n id AS app_webhook_id,\n store_id AS app_key,\n action AS webhook_action,\n IF(LOWER(action) = 'app/uninstalled',1,0) AS is_uninstall,\n created_at,\n updated_at\nFROM import_app_webhook\n)\n\nSELECT *\nFROM app_webhook_res", "language": "sql", "refs": [{"name": "subscriptions_stg__app_webhooks", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__app_webhooks"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.sql", "compiled": true, "compiled_code": "-- Import -- \n\nWITH import_app_webhook AS (\nSELECT * FROM dev_dkruh1.subscriptions_stg__app_webhooks\n), \n\napp_webhook_res AS (\nSELECT \n id AS app_webhook_id,\n store_id AS app_key,\n action AS webhook_action,\n IF(LOWER(action) = 'app/uninstalled',1,0) AS is_uninstall,\n created_at,\n updated_at\nFROM import_app_webhook\n)\n\nSELECT *\nFROM app_webhook_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__mc_product": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__mc_product", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__mc_product", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_product", "analytics___subscriptions_stg__mc_product"], "alias": "analytics___subscriptions_stg__mc_product", "checksum": {"name": "sha256", "checksum": "12b28558e86c6ff8c1a5f9044fb98bbed9acaf86bc40fa7062bf796ae9bc324e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled view for subscriptions products", "columns": {"product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_id": {"name": "external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.4042146, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__mc_product", "raw_code": "-- Import --\n\nWITH import_subscriptions_stg__product AS (\nSELECT * FROM {{ ref('subscriptions_stg__product') }}\n),\n\n-- Logic --\n\nsubscriptions_product AS (\nSELECT \n id AS product_id,\n external_id,\n created_at,\n updated_at\nFROM import_subscriptions_stg__product\n)\n\n-- Result --\n\nSELECT * \nFROM subscriptions_product", "language": "sql", "refs": [{"name": "subscriptions_stg__product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__product"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_subscriptions_stg__product AS (\nSELECT * FROM dev_dkruh1.subscriptions_stg__product\n),\n\n-- Logic --\n\nsubscriptions_product AS (\nSELECT \n id AS product_id,\n external_id,\n created_at,\n updated_at\nFROM import_subscriptions_stg__product\n)\n\n-- Result --\n\nSELECT * \nFROM subscriptions_product", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__mc_selling_plan": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__mc_selling_plan", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__mc_selling_plan", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_selling_plan", "analytics___subscriptions_stg__mc_selling_plan"], "alias": "analytics___subscriptions_stg__mc_selling_plan", "checksum": {"name": "sha256", "checksum": "db88aebe181d894ca5b7ccc3d7f13b7e79b76682326db670ce72e58f2b7cbd51"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled View for the subscription selling plan", "columns": {"selling_plan_id": {"name": "selling_plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "selling_plan_group_id": {"name": "selling_plan_group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "selling_plan_name": {"name": "selling_plan_name", "description": "the subscription interval, for example: Every 2 weeks, Every month etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_type": {"name": "discount_type", "description": "subscription discount type: (FIXED_AMOUNT,PRICE,PERCENTAGE)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_value": {"name": "discount_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.436562, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__mc_selling_plan", "raw_code": "-- Import --\n\nWITH import_subscriptions_stg__selling_plan AS (\nSELECT * FROM {{ ref('subscriptions_stg__selling_plan') }}\n),\n\n-- Logic --\n\nsubscriptions_selling_plan AS (\nSELECT \n id AS selling_plan_id,\n selling_plan_group_id,\n name AS selling_plan_name,\n pricing_policy_adjustment_type AS discount_type,\n pricing_policy_value AS discount_value,\n created_at,\n updated_at\nFROM import_subscriptions_stg__selling_plan\n)\n\n-- Result --\n\nSELECT * \nFROM subscriptions_selling_plan", "language": "sql", "refs": [{"name": "subscriptions_stg__selling_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__selling_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_subscriptions_stg__selling_plan AS (\nSELECT * FROM dev_dkruh1.subscriptions_stg__selling_plan\n),\n\n-- Logic --\n\nsubscriptions_selling_plan AS (\nSELECT \n id AS selling_plan_id,\n selling_plan_group_id,\n name AS selling_plan_name,\n pricing_policy_adjustment_type AS discount_type,\n pricing_policy_value AS discount_value,\n created_at,\n updated_at\nFROM import_subscriptions_stg__selling_plan\n)\n\n-- Result --\n\nSELECT * \nFROM subscriptions_selling_plan", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__mc_selling_plan_group", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_selling_plan_group", "analytics___subscriptions_stg__mc_selling_plan_group"], "alias": "analytics___subscriptions_stg__mc_selling_plan_group", "checksum": {"name": "sha256", "checksum": "6d189be242fbef04c01274dc0e3a2f3d30615cae8a6c9bcb06fb290388f8e337"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled View for the subscription selling plan group", "columns": {"selling_plan_group_id": {"name": "selling_plan_group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "store app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "status: DELETED/ACTIVE", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.470419, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__mc_selling_plan_group", "raw_code": "-- Import --\n\nWITH import_subscriptions_stg__selling_plan_group AS (\nSELECT * FROM {{ ref('subscriptions_stg__selling_plan_group') }}\n),\n\n-- Logic --\n\nsubscriptions_selling_plan_group AS (\nSELECT \n id AS selling_plan_group_id,\n store_id AS app_key,\n external_id,\n selling_plan_group_status AS status,\n created_at,\n updated_at\nFROM import_subscriptions_stg__selling_plan_group\n)\n\n-- Result --\n\nSELECT * \nFROM subscriptions_selling_plan_group", "language": "sql", "refs": [{"name": "subscriptions_stg__selling_plan_group", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__selling_plan_group"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_subscriptions_stg__selling_plan_group AS (\nSELECT * FROM dev_dkruh1.subscriptions_stg__selling_plan_group\n),\n\n-- Logic --\n\nsubscriptions_selling_plan_group AS (\nSELECT \n id AS selling_plan_group_id,\n store_id AS app_key,\n external_id,\n selling_plan_group_status AS status,\n created_at,\n updated_at\nFROM import_subscriptions_stg__selling_plan_group\n)\n\n-- Result --\n\nSELECT * \nFROM subscriptions_selling_plan_group", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__mc_selling_plan_group_product", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_selling_plan_group_product", "analytics___subscriptions_stg__mc_selling_plan_group_product"], "alias": "analytics___subscriptions_stg__mc_selling_plan_group_product", "checksum": {"name": "sha256", "checksum": "a855ef314c4297ee3f5593fa9a6d2ec7df92aae1c2150107c0a15ddcd97c3f2c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled View for the subscription selling plan group product", "columns": {"selling_plan_group_product_id": {"name": "selling_plan_group_product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "selling_plan_group_id": {"name": "selling_plan_group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.4948497, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__mc_selling_plan_group_product", "raw_code": "-- Import --\n\nWITH import_subscriptions_stg__selling_plan_group_product AS (\nSELECT * FROM {{ ref('subscriptions_stg__selling_plan_group_product') }}\n),\n\n-- Logic --\n\nsubscriptions_selling_plan_group_product AS (\nSELECT \n id AS selling_plan_group_product_id,\n selling_plan_group_id,\n\tproduct_id\nFROM import_subscriptions_stg__selling_plan_group_product\n)\n\n-- Result --\n\nSELECT * \nFROM subscriptions_selling_plan_group_product", "language": "sql", "refs": [{"name": "subscriptions_stg__selling_plan_group_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__selling_plan_group_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_subscriptions_stg__selling_plan_group_product AS (\nSELECT * FROM dev_dkruh1.subscriptions_stg__selling_plan_group_product\n),\n\n-- Logic --\n\nsubscriptions_selling_plan_group_product AS (\nSELECT \n id AS selling_plan_group_product_id,\n selling_plan_group_id,\n\tproduct_id\nFROM import_subscriptions_stg__selling_plan_group_product\n)\n\n-- Result --\n\nSELECT * \nFROM subscriptions_selling_plan_group_product", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__mc_status": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__mc_status", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__mc_status", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_status", "analytics___subscriptions_stg__mc_status"], "alias": "analytics___subscriptions_stg__mc_status", "checksum": {"name": "sha256", "checksum": "a80d661430d57d32bc8166ed049ad5d7a5bcf1ebb71d0b3973b178d25d6597b9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "subscriptions statuses", "columns": {"status_id": {"name": "status_id", "description": "Table id | PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status_number": {"name": "status_number", "description": "the status code number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status_name": {"name": "status_name", "description": "active,cancelled,expired etc..", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.5282698, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__mc_status", "raw_code": "-- Import --\n\nWITH import_subscriptions_stg__status AS (\nSELECT * FROM {{ ref('subscriptions_stg__status') }}\n),\n\n-- Logic --\n\nsubscription_mc_status AS (\nSELECT \n id AS status_id,\n num AS status_number,\n text AS status_name,\n created_at,\n updated_at\nFROM import_subscriptions_stg__status\n)\n\n-- Result --\n\nSELECT * \nFROM subscription_mc_status", "language": "sql", "refs": [{"name": "subscriptions_stg__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__status"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_subscriptions_stg__status AS (\nSELECT * FROM dev_dkruh1.subscriptions_stg__status\n),\n\n-- Logic --\n\nsubscription_mc_status AS (\nSELECT \n id AS status_id,\n num AS status_number,\n text AS status_name,\n created_at,\n updated_at\nFROM import_subscriptions_stg__status\n)\n\n-- Result --\n\nSELECT * \nFROM subscription_mc_status", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__mc_subscription_contract": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__mc_subscription_contract", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__mc_subscription_contract", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_contract", "analytics___subscriptions_stg__mc_subscription_contract"], "alias": "analytics___subscriptions_stg__mc_subscription_contract", "checksum": {"name": "sha256", "checksum": "94e44fedf445961c35439a4b29cd42652087b908e3e62ec20a781a2f206e2024"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled VIEW of subscription contract object", "columns": {"subscription_contract_id": {"name": "subscription_contract_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "store app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_contract_status": {"name": "subscription_contract_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval": {"name": "delivery_policy_interval", "description": "delivery policy interval:\n7 - day\n8 - week\n9 - month\n10 - year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval_count": {"name": "delivery_policy_interval_count", "description": "amount of time interval", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval": {"name": "billing_policy_interval", "description": "billing policy interval:\n7 - day\n8 - week\n9 - month\n10 - year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval_count": {"name": "billing_policy_interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_order_external_id": {"name": "original_order_external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_customer_id": {"name": "external_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status_last_updated_at": {"name": "status_last_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082661.5789113, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH import_subscription_contract AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__subscription_contract') }}\n\n), subscriptions_stg__mc_subscription_contract AS (\n\n SELECT \n id AS subscription_contract_id,\n\t\texternal_id AS external_subscription_contract_id,\n\t\tstore_id AS app_key,\n\t\tstatus AS subscription_contract_status,\n\t\tdelivery_policy_interval,\n\t\tdelivery_policy_interval_count,\n\t\tbilling_policy_interval,\n\t\tbilling_policy_interval_count,\n\t\toriginal_order_external_id,\n\t\texternal_customer_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tstatus_last_updated_at,\n\t\tSMALLINT(is_logical_deleted) AS is_deleted\n FROM import_subscription_contract\n\n)\n\nSELECT \n subscription_contract_id,\n\texternal_subscription_contract_id,\n\tapp_key,\n\tsubscription_contract_status,\n\tdelivery_policy_interval,\n\tdelivery_policy_interval_count,\n\tbilling_policy_interval,\n\tbilling_policy_interval_count,\n\toriginal_order_external_id,\n\texternal_customer_id,\n\tcreated_at,\n\tupdated_at,\n\tstatus_last_updated_at,\n\tis_deleted\nFROM subscriptions_stg__mc_subscription_contract", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH import_subscription_contract AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_contract\n\n), subscriptions_stg__mc_subscription_contract AS (\n\n SELECT \n id AS subscription_contract_id,\n\t\texternal_id AS external_subscription_contract_id,\n\t\tstore_id AS app_key,\n\t\tstatus AS subscription_contract_status,\n\t\tdelivery_policy_interval,\n\t\tdelivery_policy_interval_count,\n\t\tbilling_policy_interval,\n\t\tbilling_policy_interval_count,\n\t\toriginal_order_external_id,\n\t\texternal_customer_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tstatus_last_updated_at,\n\t\tSMALLINT(is_logical_deleted) AS is_deleted\n FROM import_subscription_contract\n\n)\n\nSELECT \n subscription_contract_id,\n\texternal_subscription_contract_id,\n\tapp_key,\n\tsubscription_contract_status,\n\tdelivery_policy_interval,\n\tdelivery_policy_interval_count,\n\tbilling_policy_interval,\n\tbilling_policy_interval_count,\n\toriginal_order_external_id,\n\texternal_customer_id,\n\tcreated_at,\n\tupdated_at,\n\tstatus_last_updated_at,\n\tis_deleted\nFROM subscriptions_stg__mc_subscription_contract", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__mc_subscription_contract_order", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_contract_order", "analytics___subscriptions_stg__mc_subscription_contract_order"], "alias": "analytics___subscriptions_stg__mc_subscription_contract_order", "checksum": {"name": "sha256", "checksum": "84bf7f0a6cf2fd00adf382a8dec16658d9136fc79d41943ee3a1fd68eda8defa"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled View of orders of subscription contracts object", "columns": {"subscription_contract_order_id": {"name": "subscription_contract_order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "store app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_order_id": {"name": "external_order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082661.619321, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract_order", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH import_subscription_contract_order AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__subscription_contract_order') }}\n\n), subscriptions_stg__mc_subscription_contract_order AS (\n\n SELECT \n\t\tid AS subscription_contract_order_id,\n\t\tstore_id AS app_key,\n\t\texternal_subscription_contract_id,\n\t\texternal_order_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tSMALLINT(is_logical_deleted) AS is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_subscription_contract_order\n\n)\n\nSELECT\n subscription_contract_order_id,\n\tapp_key,\n\texternal_subscription_contract_id,\n\texternal_order_id,\n\tcreated_at,\n\tupdated_at,\n\tis_deleted,\n dwh_updated_at\nFROM subscriptions_stg__mc_subscription_contract_order", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH import_subscription_contract_order AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_contract_order\n\n), subscriptions_stg__mc_subscription_contract_order AS (\n\n SELECT \n\t\tid AS subscription_contract_order_id,\n\t\tstore_id AS app_key,\n\t\texternal_subscription_contract_id,\n\t\texternal_order_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tSMALLINT(is_logical_deleted) AS is_deleted,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_subscription_contract_order\n\n)\n\nSELECT\n subscription_contract_order_id,\n\tapp_key,\n\texternal_subscription_contract_id,\n\texternal_order_id,\n\tcreated_at,\n\tupdated_at,\n\tis_deleted,\n dwh_updated_at\nFROM subscriptions_stg__mc_subscription_contract_order", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__mc_subscription_creation_request", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_creation_request", "analytics___subscriptions_stg__mc_subscription_creation_request"], "alias": "analytics___subscriptions_stg__mc_subscription_creation_request", "checksum": {"name": "sha256", "checksum": "f4c31d088166999661801f6616757e2595ee072bc5e9a3a5f515912c5029f41c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled view for subscription creation request", "columns": {"creation_request_id": {"name": "creation_request_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "store app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_id": {"name": "contract_id", "description": "subscription contract id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "request_status": {"name": "request_status", "description": "request status: (FAILED, SUCCEEDED, GENERAL_ERROR)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "selling_plan_name": {"name": "selling_plan_name", "description": "the subscription interval, for example: Every 2 weeks, Every month etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_succeeded": {"name": "is_succeeded", "description": "indicates if the request status is succeeded", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.660326, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__mc_subscription_creation_request", "raw_code": "-- Import --\n\nWITH import_subscription_creation_request AS (\nSELECT * FROM {{ ref('subscriptions_stg__subscription_creation_request') }}\n),\n\n-- Logic --\n\nsubscription_creation_request AS (\nSELECT \n id AS creation_request_id,\n store_id AS app_key,\n contract_id,\n request_status,\n selling_plan_name,\n created_at,\n updated_at,\n SMALLINT(IF(LOWER(request_status) = 'succeeded',1,0)) AS is_succeeded\nFROM import_subscription_creation_request\n)\n\n-- Result --\n\nSELECT * \nFROM subscription_creation_request", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_creation_request", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__subscription_creation_request"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_subscription_creation_request AS (\nSELECT * FROM dev_dkruh1.subscriptions_stg__subscription_creation_request\n),\n\n-- Logic --\n\nsubscription_creation_request AS (\nSELECT \n id AS creation_request_id,\n store_id AS app_key,\n contract_id,\n request_status,\n selling_plan_name,\n created_at,\n updated_at,\n SMALLINT(IF(LOWER(request_status) = 'succeeded',1,0)) AS is_succeeded\nFROM import_subscription_creation_request\n)\n\n-- Result --\n\nSELECT * \nFROM subscription_creation_request", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__segment_subscription_ended_v_two", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__segment_subscription_ended_v_two", "analytics___subscriptions_stg__segment_subscription_ended_v_two"], "alias": "analytics___subscriptions_stg__segment_subscription_ended_v_two", "checksum": {"name": "sha256", "checksum": "240c11ed69ff2de1e96cc883ec8f791880c3623419dd672fb22213c243554833"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled view of segment subscription ended v2 events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "message id | PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "store app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "will include only subscriptions data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_package": {"name": "old_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_package": {"name": "new_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.6946084, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__segment_subscription_ended_v_two", "raw_code": "-- Import --\n\nWITH import_subscription_ended_v_two (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__subscription_ended_v2') }}\nWHERE LOWER(product) = 'subscriptions' \n),\n\n-- Logic --\n\nsegment_subscription_ended_v_two AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n product AS product_name,\n oldpackage AS old_package,\n newpackage AS new_package,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_subscription_ended_v_two\n)\n\n-- Result --\n\nSELECT *\nFROM segment_subscription_ended_v_two", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__subscription_ended_v2", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___subscriptions_stg__subscription_ended_v2"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_subscription_ended_v_two (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__subscription_ended_v2\nWHERE LOWER(product) = 'subscriptions' \n),\n\n-- Logic --\n\nsegment_subscription_ended_v_two AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n product AS product_name,\n oldpackage AS old_package,\n newpackage AS new_package,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_subscription_ended_v_two\n)\n\n-- Result --\n\nSELECT *\nFROM segment_subscription_ended_v_two", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__segment_subscription_started_v_two", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__segment_subscription_started_v_two", "analytics___subscriptions_stg__segment_subscription_started_v_two"], "alias": "analytics___subscriptions_stg__segment_subscription_started_v_two", "checksum": {"name": "sha256", "checksum": "46b7a65809720f4b31775bfa39cabd1993d529aca5d04e1cfc2e644348379783"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled view of segment subscription started v2 events | PK and granularity: event_id", "columns": {"event_id": {"name": "event_id", "description": "message id | PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "store app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "will include only subscriptions data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_package": {"name": "old_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_package": {"name": "new_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.7282088, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__segment_subscription_started_v_two", "raw_code": "-- Import --\n\nWITH import_subscription_started_v_two (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__subscription_started_v2') }}\nWHERE LOWER(product) = 'subscriptions' \n),\n\n-- Logic --\n\nsegment_subscription_started_v_two AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n product AS product_name,\n oldpackage AS old_package,\n newpackage AS new_package,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_subscription_started_v_two\n)\n\n-- Result --\n\nSELECT *\nFROM segment_subscription_started_v_two", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__subscription_started_v2", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___subscriptions_stg__subscription_started_v2"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_subscription_started_v_two (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__subscription_started_v2\nWHERE LOWER(product) = 'subscriptions' \n),\n\n-- Logic --\n\nsegment_subscription_started_v_two AS (\nSELECT\n message_id AS event_id,\n appkey AS app_key,\n product AS product_name,\n oldpackage AS old_package,\n newpackage AS new_package,\n timestamp AS created_at,\n partition_date AS created_date\nFROM import_subscription_started_v_two\n)\n\n-- Result --\n\nSELECT *\nFROM segment_subscription_started_v_two", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___subscriptions_stg__subscriptions_store": {"database": null, "schema": "dev_dkruh1", "name": "analytics___subscriptions_stg__subscriptions_store", "resource_type": "model", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.sql", "unique_id": "model.yoda.analytics___subscriptions_stg__subscriptions_store", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__subscriptions_store", "analytics___subscriptions_stg__subscriptions_store"], "alias": "analytics___subscriptions_stg__subscriptions_store", "checksum": {"name": "sha256", "checksum": "316f15f2331ef1dfaf5132b6be11ca6b54d07de350b88c1f8a637dadf160562d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "subscriptions"], "description": "Modeled view to subscriptions stores", "columns": {"app_key": {"name": "app_key", "description": "store app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain": {"name": "domain", "description": "domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "launched_date": {"name": "launched_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_enabled_at": {"name": "product_enabled_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_launched": {"name": "is_launched", "description": "is store launched subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_migrated": {"name": "is_migrated", "description": "is migrated store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "cdemyanov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082661.7645783, "relation_name": "dev_dkruh1.analytics___subscriptions_stg__subscriptions_store", "raw_code": "-- Import --\n\nWITH import_platform_stg__segment_product_enabled AS (\nSELECT * FROM {{ ref('analytics___platform_stg__segment_product_enabled') }}\n),\n\nimport_platform__store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_subscription_accounts AS (\nSELECT * FROM {{ ref('subscriptions__subscription_accounts') }}\n),\n\nimport_subscription_creation_request AS (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__mc_subscription_creation_request') }}\n),\n-- Logic --\n\nmigrated_stores AS (\nSELECT app_key \nFROM import_subscription_accounts AS subs_accounts\nWHERE app_key in (\n'LqGEdTz0Qb6qjTHwNdzYvEZhC1OXjv7QXBIYvGAF',\n'aFU6PgTVTCcOXwpD0QUym5ycNneuWKC5I8Sqy05O',\n'P1TKTbzI5cTxSDlQf6b4YzysUtIS1ocCEBuxXSJf',\n'Ur7cXgs6KtKrctHhv0u2J4UruDui8AGMBk70lMPg',\n'xpluZI3mikfwhpQJi2eDnSBO5KZburaVBQwUIsYz',\n'IKyAagIz4hkOOsrp9I4lBoMvrHNAaFt2dHLVt7Co',\n'xCDxp8Pox46eRlrjxUjtTje0jX11G2RC5KOLxvr4')\nUNION ALL \nSELECT DISTINCT app_key\nFROM import_subscription_creation_request AS creation_request\nWHERE LOWER(request_status)='succeeded'),\n\nsubscriptions_store AS (\nSELECT \n subs_account.app_key,\n store.organization_key,\n store.organization_id,\n subs_account.domain,\n subs_account.url,\n subs_account.finished_date AS launched_date,\n MIN(COALESCE(product_enabled.created_at,subs_account.finished_date)) AS product_enabled_at,\n SMALLINT(IF(subs_account.is_finised,1,0)) AS is_launched,\n SMALLINT(IF(migrated_stores.app_key IS NOT NULL ,1,0)) AS is_migrated\nFROM import_subscription_accounts AS subs_account\n INNER JOIN import_platform__store AS store\n ON subs_account.app_key = store.app_key\n LEFT JOIN import_platform_stg__segment_product_enabled AS product_enabled\n ON subs_account.app_key = product_enabled.app_key\n LEFT JOIN migrated_stores\n ON subs_account.app_key = migrated_stores.app_key\nWHERE subs_account.is_test = 0\nGROUP BY 1,2,3,4,5,6,8,9\n)\n\n-- Result --\n\nSELECT * \nFROM subscriptions_store", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_product_enabled", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "subscriptions__subscription_accounts", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_subscription_creation_request", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__segment_product_enabled", "model.yoda.analytics___platform__store", "model.yoda.subscriptions__subscription_accounts", "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__segment_product_enabled AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__segment_product_enabled\n),\n\nimport_platform__store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_subscription_accounts AS (\nSELECT * FROM dev_dkruh1.subscriptions__subscription_accounts\n),\n\nimport_subscription_creation_request AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__mc_subscription_creation_request\n),\n-- Logic --\n\nmigrated_stores AS (\nSELECT app_key \nFROM import_subscription_accounts AS subs_accounts\nWHERE app_key in (\n'LqGEdTz0Qb6qjTHwNdzYvEZhC1OXjv7QXBIYvGAF',\n'aFU6PgTVTCcOXwpD0QUym5ycNneuWKC5I8Sqy05O',\n'P1TKTbzI5cTxSDlQf6b4YzysUtIS1ocCEBuxXSJf',\n'Ur7cXgs6KtKrctHhv0u2J4UruDui8AGMBk70lMPg',\n'xpluZI3mikfwhpQJi2eDnSBO5KZburaVBQwUIsYz',\n'IKyAagIz4hkOOsrp9I4lBoMvrHNAaFt2dHLVt7Co',\n'xCDxp8Pox46eRlrjxUjtTje0jX11G2RC5KOLxvr4')\nUNION ALL \nSELECT DISTINCT app_key\nFROM import_subscription_creation_request AS creation_request\nWHERE LOWER(request_status)='succeeded'),\n\nsubscriptions_store AS (\nSELECT \n subs_account.app_key,\n store.organization_key,\n store.organization_id,\n subs_account.domain,\n subs_account.url,\n subs_account.finished_date AS launched_date,\n MIN(COALESCE(product_enabled.created_at,subs_account.finished_date)) AS product_enabled_at,\n SMALLINT(IF(subs_account.is_finised,1,0)) AS is_launched,\n SMALLINT(IF(migrated_stores.app_key IS NOT NULL ,1,0)) AS is_migrated\nFROM import_subscription_accounts AS subs_account\n INNER JOIN import_platform__store AS store\n ON subs_account.app_key = store.app_key\n LEFT JOIN import_platform_stg__segment_product_enabled AS product_enabled\n ON subs_account.app_key = product_enabled.app_key\n LEFT JOIN migrated_stores\n ON subs_account.app_key = migrated_stores.app_key\nWHERE subs_account.is_test = 0\nGROUP BY 1,2,3,4,5,6,8,9\n)\n\n-- Result --\n\nSELECT * \nFROM subscriptions_store", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__activation_level_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__activation_level_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.sql", "unique_id": "model.yoda.analytics___synergies__activation_level_daily", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__activation_level_daily", "analytics___synergies__activation_level_daily"], "alias": "analytics___synergies__activation_level_daily", "checksum": {"name": "sha256", "checksum": "6219f0ff724c4f9bb45d2e0cff08fd70658f6f34a32e4bc691d1cc5e3c2a2f6e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "A pivoted table to describe activation level (active/enabled/disabled/null) of synergies per store on a daily level | PK & Granularity: app_key, activeness_date\nActivation level is based on priority: if active then 'active' else if enabled then 'enabled' else if disabled then 'disabled' else null.", "columns": {"activeness_date": {"name": "activeness_date", "description": "PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_swell_points_reminder_activation_level": {"name": "sms_flows_swell_points_reminder_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_yotpo_site_review_activation_level": {"name": "sms_flows_yotpo_site_review_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_campaigns_reward_program_activation_level": {"name": "sms_campaigns_reward_program_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_editor_reviews_block_activation_level": {"name": "email_editor_reviews_block_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_earning_rule_loyalty_activation_level": {"name": "review_earning_rule_loyalty_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_campaigns_click_to_redeem_activation_level": {"name": "sms_campaigns_click_to_redeem_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_editor_loyalty_block_activation_level": {"name": "email_editor_loyalty_block_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sign_up_for_sms_earning_rule_loyalty_activation_level": {"name": "sign_up_for_sms_earning_rule_loyalty_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_editor_product_with_reviews_block_activation_level": {"name": "email_editor_product_with_reviews_block_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_swell_tier_earned_activation_level": {"name": "sms_flows_swell_tier_earned_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_campaigns_redemption_reminder_activation_level": {"name": "sms_campaigns_redemption_reminder_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_yotpo_product_review_activation_level": {"name": "sms_flows_yotpo_product_review_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_review_earning_rule_loyalty_activation_level": {"name": "image_review_earning_rule_loyalty_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptions_management_url_notification_flow_activation_level": {"name": "subscriptions_management_url_notification_flow_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_abandoned_checkout_reviews_star_rating_activation_level": {"name": "sms_flows_abandoned_checkout_reviews_star_rating_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "video_review_earning_rule_loyalty_activation_level": {"name": "video_review_earning_rule_loyalty_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_subscription_discount_reward_activation_level": {"name": "loyalty_subscription_discount_reward_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_cdp_optin_status_changed_activation_level": {"name": "sms_flows_cdp_optin_status_changed_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_cancellation_notification_flow_activation_level": {"name": "subscription_cancellation_notification_flow_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_confirmation_notification_flow_activation_level": {"name": "subscription_confirmation_notification_flow_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_payment_failure_notification_flow_activation_level": {"name": "subscription_payment_failure_notification_flow_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_campaign_to_grow_product_subscribers_activation_level": {"name": "sms_campaign_to_grow_product_subscribers_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_flows_swell_birthday_activation_level": {"name": "sms_flows_swell_birthday_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_campaigns_vip_tier_activation_level": {"name": "sms_campaigns_vip_tier_activation_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082661.857287, "relation_name": "dev_dkruh1.analytics___synergies__activation_level_daily", "raw_code": "-- Variables --\n\n{#- start_date of the data -#}\n{% set start_date = \"ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,1),'YEAR'),-24)\" %}\n\n{#- synergy_name_list for a dynamic sql pivot -#}\n{% set synergy_name_list = ['sms_flows_swell_points_reminder',\n 'sms_flows_yotpo_site_review',\n 'sms_campaigns_reward_program',\n 'email_editor_reviews_block',\n 'review_earning_rule_loyalty',\n 'sms_campaigns_click_to_redeem',\n 'email_editor_loyalty_block',\n 'sign_up_for_sms_earning_rule_loyalty',\n 'email_editor_product_with_reviews_block',\n 'sms_flows_swell_tier_earned',\n 'sms_campaigns_redemption_reminder',\n 'sms_flows_yotpo_product_review',\n 'image_review_earning_rule_loyalty',\n 'subscriptions_management_url_notification_flow', \n 'sms_flows_abandoned_checkout_reviews_star_rating',\n 'video_review_earning_rule_loyalty',\n 'loyalty_subscription_discount_reward',\n 'sms_flows_cdp_optin_status_changed',\n 'subscription_cancellation_notification_flow',\n 'subscription_confirmation_notification_flow',\n 'subscription_payment_failure_notification_flow', \n 'sms_campaign_to_grow_product_subscribers',\n 'sms_flows_swell_birthday',\n 'sms_campaigns_vip_tier']\n-%}\n\n{#- synergy_name_string_list for data filtering -#}\n{%- set synergy_name_string_list = [] -%}\n\n{%- for synergy_name in synergy_name_list -%}\n{{- synergy_name_string_list.append(\"'\" ~ synergy_name ~ \"'\") or '' -}}\n{%- endfor -%}\n\n{%- set synergy_name_string_list = '(' ~ synergy_name_string_list|join(',\\n') ~ ')' %}\n\n-- Import --\n\nWITH import_synergies_store_enablement_daily AS (\nSELECT * FROM {{ ref('analytics___synergies__store_enablement_daily') }}\nWHERE synergy_date >= {{ start_date }}\nAND synergy_name IN {{ synergy_name_string_list }}\n), \n\nimport_synergies_store_last_thirty_days_activeness_daily AS (\nSELECT * FROM {{ ref('analytics___synergies__store_last_thirty_days_activeness_daily') }}\nWHERE activeness_date >= {{ start_date }}\nAND synergy_name IN {{ synergy_name_string_list }}\n),\n\nimport_salesforce_mc_account AS (\nSELECT * FROM {{ ref('analytics___salesforce_stg__mc_account') }}\n),\n\nimport_salesforce_mc_account_product AS (\nSELECT * FROM {{ ref('analytics___salesforce_stg__mc_account_product') }}\n),\n\nimport_platform_store_plan_daily AS (\nSELECT * FROM {{ ref('analytics___platform__store_plan_daily') }}\nWHERE date >= {{ start_date }}\n),\n\nimport_synergy_product_mapping AS (\nSELECT * FROM {{ ref('platform_stg__synergy_product_mapping') }}\nWHERE synergy_name IN {{ synergy_name_string_list }}\n),\n\n-- Logic --\n\nstore_synergy_enablement_daily_extra AS (\nSELECT\n activeness.activeness_date,\n activeness.app_key,\n activeness.synergy_id,\n activeness.synergy_name,\n 1 AS is_enabled\nFROM import_synergies_store_last_thirty_days_activeness_daily AS activeness\nLEFT JOIN import_synergies_store_enablement_daily AS enablement\n ON activeness.activeness_date = enablement.synergy_date\n AND activeness.app_key = enablement.app_key\n AND activeness.synergy_name = enablement.synergy_name\nWHERE enablement.synergy_date IS NULL\n),\n\nstore_synergy_enablement_daily AS (\nSELECT\n synergy_date AS activeness_date,\n app_key,\n synergy_id,\n synergy_name,\n is_enabled\nFROM import_synergies_store_enablement_daily\nUNION ALL\nSELECT\n activeness_date,\n app_key,\n synergy_id,\n synergy_name,\n is_enabled\nFROM store_synergy_enablement_daily_extra\n),\n\nstore_synergy_product_enablement_daily AS (\nSELECT\n enablement.activeness_date,\n enablement.app_key,\n enablement.synergy_name,\n mapping.product_name,\n enablement.is_enabled\nFROM store_synergy_enablement_daily AS enablement\nINNER JOIN import_synergy_product_mapping AS mapping\n ON enablement.synergy_id = mapping.synergy_id\n),\n\nstore_product_churned AS (\nSELECT\n DATE_SUB(CURRENT_DATE,1) AS activeness_date,\n account.app_key,\n LOWER(product.product_line) AS product_name,\n 1 AS is_churned\nFROM import_salesforce_mc_account AS account\nINNER JOIN import_salesforce_mc_account_product AS product\n ON account.account_id = product.account_id\nWHERE LOWER(product.product_stage) IN ('churned','lost after won')\n),\n\nstore_product_free_and_self_service AS (\nSELECT\n date AS activeness_date,\n app_key,\n LOWER(product_family) AS product_name,\n is_self_service,\n is_free\nFROM import_platform_store_plan_daily\nWHERE (is_self_service = 1 OR is_free = 1)\n),\n\nstore_synergy_product_indicators_daily AS (\nSELECT\n enablement.activeness_date,\n enablement.app_key,\n enablement.synergy_name,\n enablement.product_name,\n churned.is_churned,\n free.is_self_service,\n free.is_free,\n IF(activeness.activeness_date IS NOT NULL,1,0) AS is_active,\n enablement.is_enabled\nFROM store_synergy_product_enablement_daily AS enablement\nLEFT JOIN store_product_churned AS churned\n ON enablement.activeness_date = churned.activeness_date\n AND enablement.app_key = churned.app_key\n AND enablement.product_name = churned.product_name\nLEFT JOIN store_product_free_and_self_service AS free\n ON enablement.activeness_date = free.activeness_date\n AND enablement.app_key = free.app_key\n AND enablement.product_name = free.product_name\nLEFT JOIN import_synergies_store_last_thirty_days_activeness_daily AS activeness\n ON enablement.activeness_date = activeness.activeness_date\n AND enablement.app_key = activeness.app_key\n AND enablement.synergy_name = activeness.synergy_name\n),\n\nstore_synergy_activation_level_id_daily AS (\nSELECT \n activeness_date,\n app_key,\n synergy_name,\n MIN(CASE WHEN is_churned = 1 THEN 1\n WHEN is_self_service = 1 THEN 2\n WHEN is_free = 1 THEN 3 END\n ) AS plan_level_id,\n MIN(CASE WHEN is_active = 1 THEN 1\n WHEN is_enabled = 1 THEN 2\n WHEN is_enabled = 0 THEN 3 END\n ) AS activation_level_id\nFROM store_synergy_product_indicators_daily\nGROUP BY 1,2,3\n),\n\nstore_synergy_activation_level_name_daily AS (\nSELECT \n activeness_date,\n app_key,\n synergy_name,\n CASE plan_level_id\n WHEN 1 THEN 'churned'\n WHEN 2 THEN 'self_service'\n WHEN 3 THEN 'free' END AS plan_level,\n CASE activation_level_id\n WHEN 1 THEN 'active'\n WHEN 2 THEN 'enabled'\n WHEN 3 THEN 'disabled' END AS activation_level\nFROM store_synergy_activation_level_id_daily\n),\n\nsynergies_activation_level_daily_res AS (\nSELECT\n activeness_date,\n app_key,\n {% for synergy_name in synergy_name_list -%}\n {{\"MAX(IF(synergy_name = '\" ~ synergy_name ~ \"', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS \" ~ synergy_name ~ \"_activation_level,\\n\"}}\n {%- endfor %}\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_synergy_activation_level_name_daily\nGROUP BY 1,2\n)\n\n-- Result --\n\nSELECT * \nFROM synergies_activation_level_daily_res", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_daily", "package": null, "version": null}, {"name": "analytics___synergies__store_last_thirty_days_activeness_daily", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_account_product", "package": null, "version": null}, {"name": "analytics___platform__store_plan_daily", "package": null, "version": null}, {"name": "platform_stg__synergy_product_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___synergies__store_enablement_daily", "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily", "model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___salesforce_stg__mc_account_product", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.platform_stg__synergy_product_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.sql", "compiled": true, "compiled_code": "-- Variables --\n\n-- Import --\n\nWITH import_synergies_store_enablement_daily AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__store_enablement_daily\nWHERE synergy_date >= ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,1),'YEAR'),-24)\nAND synergy_name IN ('sms_flows_swell_points_reminder',\n'sms_flows_yotpo_site_review',\n'sms_campaigns_reward_program',\n'email_editor_reviews_block',\n'review_earning_rule_loyalty',\n'sms_campaigns_click_to_redeem',\n'email_editor_loyalty_block',\n'sign_up_for_sms_earning_rule_loyalty',\n'email_editor_product_with_reviews_block',\n'sms_flows_swell_tier_earned',\n'sms_campaigns_redemption_reminder',\n'sms_flows_yotpo_product_review',\n'image_review_earning_rule_loyalty',\n'subscriptions_management_url_notification_flow',\n'sms_flows_abandoned_checkout_reviews_star_rating',\n'video_review_earning_rule_loyalty',\n'loyalty_subscription_discount_reward',\n'sms_flows_cdp_optin_status_changed',\n'subscription_cancellation_notification_flow',\n'subscription_confirmation_notification_flow',\n'subscription_payment_failure_notification_flow',\n'sms_campaign_to_grow_product_subscribers',\n'sms_flows_swell_birthday',\n'sms_campaigns_vip_tier')\n), \n\nimport_synergies_store_last_thirty_days_activeness_daily AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__store_last_thirty_days_activeness_daily\nWHERE activeness_date >= ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,1),'YEAR'),-24)\nAND synergy_name IN ('sms_flows_swell_points_reminder',\n'sms_flows_yotpo_site_review',\n'sms_campaigns_reward_program',\n'email_editor_reviews_block',\n'review_earning_rule_loyalty',\n'sms_campaigns_click_to_redeem',\n'email_editor_loyalty_block',\n'sign_up_for_sms_earning_rule_loyalty',\n'email_editor_product_with_reviews_block',\n'sms_flows_swell_tier_earned',\n'sms_campaigns_redemption_reminder',\n'sms_flows_yotpo_product_review',\n'image_review_earning_rule_loyalty',\n'subscriptions_management_url_notification_flow',\n'sms_flows_abandoned_checkout_reviews_star_rating',\n'video_review_earning_rule_loyalty',\n'loyalty_subscription_discount_reward',\n'sms_flows_cdp_optin_status_changed',\n'subscription_cancellation_notification_flow',\n'subscription_confirmation_notification_flow',\n'subscription_payment_failure_notification_flow',\n'sms_campaign_to_grow_product_subscribers',\n'sms_flows_swell_birthday',\n'sms_campaigns_vip_tier')\n),\n\nimport_salesforce_mc_account AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_account\n),\n\nimport_salesforce_mc_account_product AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce_stg__mc_account_product\n),\n\nimport_platform_store_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_plan_daily\nWHERE date >= ADD_MONTHS(TRUNC(DATE_SUB(CURRENT_DATE,1),'YEAR'),-24)\n),\n\nimport_synergy_product_mapping AS (\nSELECT * FROM dev_dkruh1.platform_stg__synergy_product_mapping\nWHERE synergy_name IN ('sms_flows_swell_points_reminder',\n'sms_flows_yotpo_site_review',\n'sms_campaigns_reward_program',\n'email_editor_reviews_block',\n'review_earning_rule_loyalty',\n'sms_campaigns_click_to_redeem',\n'email_editor_loyalty_block',\n'sign_up_for_sms_earning_rule_loyalty',\n'email_editor_product_with_reviews_block',\n'sms_flows_swell_tier_earned',\n'sms_campaigns_redemption_reminder',\n'sms_flows_yotpo_product_review',\n'image_review_earning_rule_loyalty',\n'subscriptions_management_url_notification_flow',\n'sms_flows_abandoned_checkout_reviews_star_rating',\n'video_review_earning_rule_loyalty',\n'loyalty_subscription_discount_reward',\n'sms_flows_cdp_optin_status_changed',\n'subscription_cancellation_notification_flow',\n'subscription_confirmation_notification_flow',\n'subscription_payment_failure_notification_flow',\n'sms_campaign_to_grow_product_subscribers',\n'sms_flows_swell_birthday',\n'sms_campaigns_vip_tier')\n),\n\n-- Logic --\n\nstore_synergy_enablement_daily_extra AS (\nSELECT\n activeness.activeness_date,\n activeness.app_key,\n activeness.synergy_id,\n activeness.synergy_name,\n 1 AS is_enabled\nFROM import_synergies_store_last_thirty_days_activeness_daily AS activeness\nLEFT JOIN import_synergies_store_enablement_daily AS enablement\n ON activeness.activeness_date = enablement.synergy_date\n AND activeness.app_key = enablement.app_key\n AND activeness.synergy_name = enablement.synergy_name\nWHERE enablement.synergy_date IS NULL\n),\n\nstore_synergy_enablement_daily AS (\nSELECT\n synergy_date AS activeness_date,\n app_key,\n synergy_id,\n synergy_name,\n is_enabled\nFROM import_synergies_store_enablement_daily\nUNION ALL\nSELECT\n activeness_date,\n app_key,\n synergy_id,\n synergy_name,\n is_enabled\nFROM store_synergy_enablement_daily_extra\n),\n\nstore_synergy_product_enablement_daily AS (\nSELECT\n enablement.activeness_date,\n enablement.app_key,\n enablement.synergy_name,\n mapping.product_name,\n enablement.is_enabled\nFROM store_synergy_enablement_daily AS enablement\nINNER JOIN import_synergy_product_mapping AS mapping\n ON enablement.synergy_id = mapping.synergy_id\n),\n\nstore_product_churned AS (\nSELECT\n DATE_SUB(CURRENT_DATE,1) AS activeness_date,\n account.app_key,\n LOWER(product.product_line) AS product_name,\n 1 AS is_churned\nFROM import_salesforce_mc_account AS account\nINNER JOIN import_salesforce_mc_account_product AS product\n ON account.account_id = product.account_id\nWHERE LOWER(product.product_stage) IN ('churned','lost after won')\n),\n\nstore_product_free_and_self_service AS (\nSELECT\n date AS activeness_date,\n app_key,\n LOWER(product_family) AS product_name,\n is_self_service,\n is_free\nFROM import_platform_store_plan_daily\nWHERE (is_self_service = 1 OR is_free = 1)\n),\n\nstore_synergy_product_indicators_daily AS (\nSELECT\n enablement.activeness_date,\n enablement.app_key,\n enablement.synergy_name,\n enablement.product_name,\n churned.is_churned,\n free.is_self_service,\n free.is_free,\n IF(activeness.activeness_date IS NOT NULL,1,0) AS is_active,\n enablement.is_enabled\nFROM store_synergy_product_enablement_daily AS enablement\nLEFT JOIN store_product_churned AS churned\n ON enablement.activeness_date = churned.activeness_date\n AND enablement.app_key = churned.app_key\n AND enablement.product_name = churned.product_name\nLEFT JOIN store_product_free_and_self_service AS free\n ON enablement.activeness_date = free.activeness_date\n AND enablement.app_key = free.app_key\n AND enablement.product_name = free.product_name\nLEFT JOIN import_synergies_store_last_thirty_days_activeness_daily AS activeness\n ON enablement.activeness_date = activeness.activeness_date\n AND enablement.app_key = activeness.app_key\n AND enablement.synergy_name = activeness.synergy_name\n),\n\nstore_synergy_activation_level_id_daily AS (\nSELECT \n activeness_date,\n app_key,\n synergy_name,\n MIN(CASE WHEN is_churned = 1 THEN 1\n WHEN is_self_service = 1 THEN 2\n WHEN is_free = 1 THEN 3 END\n ) AS plan_level_id,\n MIN(CASE WHEN is_active = 1 THEN 1\n WHEN is_enabled = 1 THEN 2\n WHEN is_enabled = 0 THEN 3 END\n ) AS activation_level_id\nFROM store_synergy_product_indicators_daily\nGROUP BY 1,2,3\n),\n\nstore_synergy_activation_level_name_daily AS (\nSELECT \n activeness_date,\n app_key,\n synergy_name,\n CASE plan_level_id\n WHEN 1 THEN 'churned'\n WHEN 2 THEN 'self_service'\n WHEN 3 THEN 'free' END AS plan_level,\n CASE activation_level_id\n WHEN 1 THEN 'active'\n WHEN 2 THEN 'enabled'\n WHEN 3 THEN 'disabled' END AS activation_level\nFROM store_synergy_activation_level_id_daily\n),\n\nsynergies_activation_level_daily_res AS (\nSELECT\n activeness_date,\n app_key,\n MAX(IF(synergy_name = 'sms_flows_swell_points_reminder', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_flows_swell_points_reminder_activation_level,\nMAX(IF(synergy_name = 'sms_flows_yotpo_site_review', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_flows_yotpo_site_review_activation_level,\nMAX(IF(synergy_name = 'sms_campaigns_reward_program', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_campaigns_reward_program_activation_level,\nMAX(IF(synergy_name = 'email_editor_reviews_block', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS email_editor_reviews_block_activation_level,\nMAX(IF(synergy_name = 'review_earning_rule_loyalty', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS review_earning_rule_loyalty_activation_level,\nMAX(IF(synergy_name = 'sms_campaigns_click_to_redeem', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_campaigns_click_to_redeem_activation_level,\nMAX(IF(synergy_name = 'email_editor_loyalty_block', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS email_editor_loyalty_block_activation_level,\nMAX(IF(synergy_name = 'sign_up_for_sms_earning_rule_loyalty', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sign_up_for_sms_earning_rule_loyalty_activation_level,\nMAX(IF(synergy_name = 'email_editor_product_with_reviews_block', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS email_editor_product_with_reviews_block_activation_level,\nMAX(IF(synergy_name = 'sms_flows_swell_tier_earned', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_flows_swell_tier_earned_activation_level,\nMAX(IF(synergy_name = 'sms_campaigns_redemption_reminder', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_campaigns_redemption_reminder_activation_level,\nMAX(IF(synergy_name = 'sms_flows_yotpo_product_review', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_flows_yotpo_product_review_activation_level,\nMAX(IF(synergy_name = 'image_review_earning_rule_loyalty', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS image_review_earning_rule_loyalty_activation_level,\nMAX(IF(synergy_name = 'subscriptions_management_url_notification_flow', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS subscriptions_management_url_notification_flow_activation_level,\nMAX(IF(synergy_name = 'sms_flows_abandoned_checkout_reviews_star_rating', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_flows_abandoned_checkout_reviews_star_rating_activation_level,\nMAX(IF(synergy_name = 'video_review_earning_rule_loyalty', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS video_review_earning_rule_loyalty_activation_level,\nMAX(IF(synergy_name = 'loyalty_subscription_discount_reward', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS loyalty_subscription_discount_reward_activation_level,\nMAX(IF(synergy_name = 'sms_flows_cdp_optin_status_changed', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_flows_cdp_optin_status_changed_activation_level,\nMAX(IF(synergy_name = 'subscription_cancellation_notification_flow', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS subscription_cancellation_notification_flow_activation_level,\nMAX(IF(synergy_name = 'subscription_confirmation_notification_flow', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS subscription_confirmation_notification_flow_activation_level,\nMAX(IF(synergy_name = 'subscription_payment_failure_notification_flow', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS subscription_payment_failure_notification_flow_activation_level,\nMAX(IF(synergy_name = 'sms_campaign_to_grow_product_subscribers', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_campaign_to_grow_product_subscribers_activation_level,\nMAX(IF(synergy_name = 'sms_flows_swell_birthday', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_flows_swell_birthday_activation_level,\nMAX(IF(synergy_name = 'sms_campaigns_vip_tier', activation_level || IF(ISNOTNULL(plan_level), ';' || plan_level, ''), NULL)) AS sms_campaigns_vip_tier_activation_level,\n\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_synergy_activation_level_name_daily\nGROUP BY 1,2\n)\n\n-- Result --\n\nSELECT * \nFROM synergies_activation_level_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__eligible_store_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__eligible_store_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.sql", "unique_id": "model.yoda.analytics___synergies__eligible_store_monthly", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__eligible_store_monthly", "analytics___synergies__eligible_store_monthly"], "alias": "analytics___synergies__eligible_store_monthly", "checksum": {"name": "sha256", "checksum": "5d52f4c0a40cf39a4dc095d48b90e658bc19c95a15dcebea5dada54fbb4482d7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of eligible synergy stores with indicators at a monthly level | PK and granularity: synergy_month, app_key, synergy_id", "columns": {"synergy_month": {"name": "synergy_month", "description": "store synergy month - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergy_name": {"name": "synergy_name", "description": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "industry: automotive, clothing, fashion & accessories, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_tenure_year_count": {"name": "yotpo_tenure_year_count", "description": "years at yotpo", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled": {"name": "is_enabled", "description": "store synergy enablement indicator: 0/1.\nthe synergy was in enabled status DURING the month, NOT necessarily at the end of it.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active": {"name": "is_active", "description": "store synergy active indicator: 0/1.\nthe synergy was active DURING the month, NOT necessarily at the end of it.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082661.9009373, "relation_name": "dev_dkruh1.analytics___synergies__eligible_store_monthly", "raw_code": "-- Import --\n\nWITH import_synergies_store_enablement_monthly AS (\nSELECT * FROM {{ ref('analytics___synergies__store_enablement_monthly') }}\n),\n\nimport_synergies_store_activeness_monthly AS (\nSELECT * FROM {{ ref('analytics___synergies__store_activeness_monthly') }}\n),\n\nimport_platform_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_platform_store_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__store_metrics_monthly') }}\n),\n\n-- Logic --\n\neligible_synergy_store_indicators AS (\nSELECT\n enablement.synergy_month,\n enablement.app_key,\n enablement.synergy_id,\n enablement.synergy_name,\n enablement.is_enabled,\n SMALLINT(IF(activeness.synergy_id IS NOT NULL,1,0)) AS is_active\nFROM import_synergies_store_enablement_monthly AS enablement\nLEFT JOIN import_synergies_store_activeness_monthly AS activeness\n ON enablement.synergy_month = activeness.synergy_month\n AND enablement.app_key = activeness.app_key\n AND enablement.synergy_id = activeness.synergy_id\n),\n\nstore_metrics_monthly_res AS (\nSELECT\n synergy.synergy_month,\n synergy.app_key,\n synergy.synergy_id,\n synergy.synergy_name,\n store.industry,\n NVL(store_monthly.last_3m_orders_avg_bucket,0) AS last_3m_orders_avg_bucket,\n store_monthly.yotpo_tenure_year_count,\n synergy.is_enabled,\n synergy.is_active,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM eligible_synergy_store_indicators AS synergy\nINNER JOIN import_platform_store AS store\n ON synergy.app_key = store.app_key\nLEFT JOIN import_platform_store_metrics_monthly AS store_monthly\n ON synergy.synergy_month = store_monthly.month\n AND synergy.app_key = store_monthly.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM store_metrics_monthly_res", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_monthly", "package": null, "version": null}, {"name": "analytics___synergies__store_activeness_monthly", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___synergies__store_enablement_monthly", "model.yoda.analytics___synergies__store_activeness_monthly", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_synergies_store_enablement_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__store_enablement_monthly\n),\n\nimport_synergies_store_activeness_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__store_activeness_monthly\n),\n\nimport_platform_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_platform_store_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_metrics_monthly\n),\n\n-- Logic --\n\neligible_synergy_store_indicators AS (\nSELECT\n enablement.synergy_month,\n enablement.app_key,\n enablement.synergy_id,\n enablement.synergy_name,\n enablement.is_enabled,\n SMALLINT(IF(activeness.synergy_id IS NOT NULL,1,0)) AS is_active\nFROM import_synergies_store_enablement_monthly AS enablement\nLEFT JOIN import_synergies_store_activeness_monthly AS activeness\n ON enablement.synergy_month = activeness.synergy_month\n AND enablement.app_key = activeness.app_key\n AND enablement.synergy_id = activeness.synergy_id\n),\n\nstore_metrics_monthly_res AS (\nSELECT\n synergy.synergy_month,\n synergy.app_key,\n synergy.synergy_id,\n synergy.synergy_name,\n store.industry,\n NVL(store_monthly.last_3m_orders_avg_bucket,0) AS last_3m_orders_avg_bucket,\n store_monthly.yotpo_tenure_year_count,\n synergy.is_enabled,\n synergy.is_active,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM eligible_synergy_store_indicators AS synergy\nINNER JOIN import_platform_store AS store\n ON synergy.app_key = store.app_key\nLEFT JOIN import_platform_store_metrics_monthly AS store_monthly\n ON synergy.synergy_month = store_monthly.month\n AND synergy.app_key = store_monthly.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM store_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__kpi_ranked_action": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__kpi_ranked_action", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.sql", "unique_id": "model.yoda.analytics___synergies__kpi_ranked_action", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__kpi_ranked_action", "analytics___synergies__kpi_ranked_action"], "alias": "analytics___synergies__kpi_ranked_action", "checksum": {"name": "sha256", "checksum": "b46c7bf625b6ec60f505467fb72cd4dd042babb2b2734e53d97fd5b5e26699c3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "A table that includes a union of all the KPIs synergies tables, with ranking for overlapping actions between synergies\ngranularity: synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, order_id", "columns": {"kpi_action_record_id": {"name": "kpi_action_record_id", "description": "record unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 1/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer (shopper) email - primary key 3/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer (shopper) phone number - primary key 4/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "customer (shopper) external id - primary key 5/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_type": {"name": "source_type", "description": "source type: earning_rule, flow, etc. - primary key 6/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "source unique identifier, e.g: earning_rule_id - primary key 7/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "customer (shopper) action type: review, new_subscriber, etc. - primary key 8/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "action unique identifier, e.g: review_id - primary key 9/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_type": {"name": "action_attribute_type", "description": "action attribute type, e.g: rating", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "action attribute value, e.g: 5 (review rating)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order id - primary key 10/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "source model name, e.g: loyalty__review_earning_rule_loyalty", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "record_rank": {"name": "record_rank", "description": "rank of record for when the action/order appears more than once for different synergies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082661.9541748, "relation_name": "dev_dkruh1.analytics___synergies__kpi_ranked_action", "raw_code": "-- Import --\n\nWITH import_platform_synergies_kpi AS (\nSELECT * FROM {{ ref('platform__synergies_kpi') }}\n),\n\n-- Logic --\n\nsynergies_rank AS (\nSELECT \n product_name,\n synergy_id,\n CASE LOWER(product_name) \n WHEN 'loyalty' THEN 1\n WHEN 'subscriptions' THEN 2\n WHEN 'sms' THEN 3\n WHEN 'email' THEN 4\n WHEN 'reviews' THEN 5\n END AS product_rank \nFROM protected_platform.synergy_product_mapping\nWHERE is_action_product = 1\n),\n\nkpis_with_rank AS (\nSELECT \n kpis.id AS kpi_action_record_id,\n kpis.synergy_id,\n kpis.app_key,\n kpis.customer_email,\n kpis.customer_phone_number,\n kpis.customer_external_id,\n kpis.source_type,\n kpis.source_id,\n kpis.action_type,\n kpis.action_id,\n kpis.action_attribute_type,\n kpis.action_attribute_value,\n kpis.order_id,\n kpis.source,\n CASE \n WHEN kpis.action_type IS NOT NULL THEN ROW_NUMBER() OVER (PARTITION BY kpis.action_id,kpis.action_type ORDER BY synergies_rank.product_rank ASC,kpis.action_id ASC)\n WHEN kpis.action_type IS NULL AND kpis.order_id IS NOT NULL THEN ROW_NUMBER() OVER (PARTITION BY kpis.order_id ORDER BY synergies_rank.product_rank ASC,kpis.order_id ASC)\n END AS record_rank\nFROM public_platform.synergies_kpi AS kpis\nINNER JOIN synergies_rank\n ON synergies_rank.synergy_id = kpis.synergy_id\n),\n\nsynergies_kpi_ranked_action_res AS (\nSELECT\n kpi_action_record_id,\n synergy_id,\n app_key,\n customer_email,\n customer_phone_number,\n customer_external_id,\n source_type,\n source_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n order_id,\n source,\n record_rank,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM kpis_with_rank\n)\n\n-- Result --\n\nSELECT *\nFROM synergies_kpi_ranked_action_res", "language": "sql", "refs": [{"name": "platform__synergies_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__synergies_kpi"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_synergies_kpi AS (\nSELECT * FROM dev_dkruh1.platform__synergies_kpi\n),\n\n-- Logic --\n\nsynergies_rank AS (\nSELECT \n product_name,\n synergy_id,\n CASE LOWER(product_name) \n WHEN 'loyalty' THEN 1\n WHEN 'subscriptions' THEN 2\n WHEN 'sms' THEN 3\n WHEN 'email' THEN 4\n WHEN 'reviews' THEN 5\n END AS product_rank \nFROM protected_platform.synergy_product_mapping\nWHERE is_action_product = 1\n),\n\nkpis_with_rank AS (\nSELECT \n kpis.id AS kpi_action_record_id,\n kpis.synergy_id,\n kpis.app_key,\n kpis.customer_email,\n kpis.customer_phone_number,\n kpis.customer_external_id,\n kpis.source_type,\n kpis.source_id,\n kpis.action_type,\n kpis.action_id,\n kpis.action_attribute_type,\n kpis.action_attribute_value,\n kpis.order_id,\n kpis.source,\n CASE \n WHEN kpis.action_type IS NOT NULL THEN ROW_NUMBER() OVER (PARTITION BY kpis.action_id,kpis.action_type ORDER BY synergies_rank.product_rank ASC,kpis.action_id ASC)\n WHEN kpis.action_type IS NULL AND kpis.order_id IS NOT NULL THEN ROW_NUMBER() OVER (PARTITION BY kpis.order_id ORDER BY synergies_rank.product_rank ASC,kpis.order_id ASC)\n END AS record_rank\nFROM public_platform.synergies_kpi AS kpis\nINNER JOIN synergies_rank\n ON synergies_rank.synergy_id = kpis.synergy_id\n),\n\nsynergies_kpi_ranked_action_res AS (\nSELECT\n kpi_action_record_id,\n synergy_id,\n app_key,\n customer_email,\n customer_phone_number,\n customer_external_id,\n source_type,\n source_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n order_id,\n source,\n record_rank,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM kpis_with_rank\n)\n\n-- Result --\n\nSELECT *\nFROM synergies_kpi_ranked_action_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__loyalty_store_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__loyalty_store_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.sql", "unique_id": "model.yoda.analytics___synergies__loyalty_store_metrics_monthly", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__loyalty_store_metrics_monthly", "analytics___synergies__loyalty_store_metrics_monthly"], "alias": "analytics___synergies__loyalty_store_metrics_monthly", "checksum": {"name": "sha256", "checksum": "953b36c1b6bf29cb09e44a1c2abfd0f4036209b7d78961622d2e5096782d7516"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of Loyalty synergetic & non-synergetic customers metrics | PK and granularity: synergy_month, app_key", "columns": {"synergy_month": {"name": "synergy_month", "description": "store synergy month - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "non_synergetic_customer_last_12m_redemption_cnt": {"name": "non_synergetic_customer_last_12m_redemption_cnt", "description": "number of redemptions of non-synergetic customers in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "non_synergetic_customer_last_12m_unique_cnt": {"name": "non_synergetic_customer_last_12m_unique_cnt", "description": "number of unique non-synergetic redeemers in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_customer_last_12m_redemption_cnt": {"name": "synergetic_customer_last_12m_redemption_cnt", "description": "number of redemptions of synergetic customers in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_customer_last_12m_unique_cnt": {"name": "synergetic_customer_last_12m_unique_cnt", "description": "number of unique synergetic redeemers in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082662.010646, "relation_name": "dev_dkruh1.analytics___synergies__loyalty_store_metrics_monthly", "raw_code": "-- Import --\n\nWITH import_platform_synergy_product_mapping AS (\nSELECT * FROM {{ ref('platform_stg__synergy_product_mapping') }}\n),\n\nimport_calendar AS (\nSELECT * \nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-2,1,1) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_platform_store_product_activeness_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__store_product_activeness_monthly') }}\n),\n\nimport_platform_synergies_kpi AS (\nSELECT * FROM {{ ref('analytics___synergies__kpi_ranked_action') }}\n),\n\nimport_analytics_loyalty_redemption AS (\nSELECT * FROM {{ ref('analytics___loyalty_stg__point_redemption') }}\n),\n\nimport_analytics_loyalty_merchants AS (\nSELECT * FROM {{ ref('analytics___loyalty__merchant') }}\n),\n\n-- Logic --\n\ncalendar_months AS (\nSELECT DISTINCT\n TRUNC(date,'MONTH') AS synergy_month\nFROM import_calendar\n),\n\ncalendar_related_months AS (\nSELECT\n synergy_month,\n EXPLODE(SEQUENCE(ADD_MONTHS(synergy_month,-11),synergy_month,INTERVAL 1 MONTH)) AS synergy_related_12m_range_month\nFROM calendar_months\n),\n\nloyalty_synergy_list AS (\nSELECT\n synergy_id,\n synergy_name\nFROM import_platform_synergy_product_mapping\nWHERE LOWER(product_name) = 'loyalty'\nAND is_action_product = 1\n),\n\nonly_loyalty_synergies_kpi AS (\nSELECT\n kpi.app_key,\n kpi.action_type,\n kpi.action_id\nFROM import_platform_synergies_kpi AS kpi\nINNER JOIN loyalty_synergy_list AS loyalty\n ON kpi.synergy_id = loyalty.synergy_id\nWHERE kpi.record_rank = 1\n),\n\nredemption AS (\nSELECT\n redemptions.point_redemption_id,\n merchants.app_key,\n redemptions.customer_id,\n TRUNC(redemptions.created_at,'MONTH') AS created_month\nFROM import_analytics_loyalty_redemption AS redemptions\nINNER JOIN import_analytics_loyalty_merchants AS merchants\n ON redemptions.merchant_id = merchants.merchant_id \n),\n\nsynergetic_customers_by_month AS (\nSELECT DISTINCT\n redemption.created_month,\n kpi.app_key,\n redemption.customer_id\nFROM only_loyalty_synergies_kpi AS kpi\nINNER JOIN redemption\n ON LOWER(kpi.action_type) = 'redemption'\n AND kpi.action_id = redemption.point_redemption_id\n),\n\nsynergetic_customers_by_month_and_related_months AS (\nSELECT\n calendar.synergy_month,\n calendar.synergy_related_12m_range_month,\n customers.app_key,\n customers.customer_id\nFROM calendar_related_months AS calendar\nINNER JOIN synergetic_customers_by_month AS customers\n ON calendar.synergy_related_12m_range_month = customers.created_month\n),\n\nsynergetic_customers_metrics_calculation AS (\nSELECT\n synergetic.synergy_month,\n synergetic.app_key,\n COUNT(redemption.point_redemption_id) AS synergetic_customer_last_12m_redemption_cnt,\n COUNT(DISTINCT synergetic.customer_id) AS synergetic_customer_last_12m_unique_cnt\nFROM synergetic_customers_by_month_and_related_months AS synergetic\nINNER JOIN redemption\n ON synergetic.synergy_related_12m_range_month = redemption.created_month\n AND synergetic.app_key = redemption.app_key\n AND synergetic.customer_id = redemption.customer_id\nGROUP BY 1,2\n),\n\nall_customers_metrics_calculation AS (\nSELECT\n calendar.synergy_month,\n redemption.app_key,\n COUNT(redemption.point_redemption_id) AS last_12m_redemption_cnt,\n COUNT(DISTINCT redemption.customer_id) AS last_12m_customer_unique_cnt\nFROM calendar_related_months AS calendar\nINNER JOIN redemption\n ON calendar.synergy_related_12m_range_month = redemption.created_month\nGROUP BY 1,2\n),\n\nloyalty_tier_1_active_stores AS (\nSELECT\n activeness_month AS synergy_month,\n app_key\nFROM import_platform_store_product_activeness_monthly\nWHERE is_loyalty_active_tier_1 = 1\nAND activeness_month >= MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-2,1,1)\n),\n\nsynergies_loyalty_store_metrics_monthly_res AS (\nSELECT\n loyalty_active.synergy_month,\n loyalty_active.app_key,\n NVL(all_customers.last_12m_redemption_cnt,0) - NVL(synergetic.synergetic_customer_last_12m_redemption_cnt,0) AS non_synergetic_customer_last_12m_redemption_cnt,\n NVL(all_customers.last_12m_customer_unique_cnt,0) - NVL(synergetic.synergetic_customer_last_12m_unique_cnt,0) AS non_synergetic_customer_last_12m_unique_cnt,\n NVL(synergetic.synergetic_customer_last_12m_redemption_cnt,0) AS synergetic_customer_last_12m_redemption_cnt,\n NVL(synergetic.synergetic_customer_last_12m_unique_cnt,0) AS synergetic_customer_last_12m_unique_cnt, \n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM loyalty_tier_1_active_stores AS loyalty_active\nLEFT JOIN all_customers_metrics_calculation AS all_customers\n ON loyalty_active.synergy_month = all_customers.synergy_month\n AND loyalty_active.app_key = all_customers.app_key\nLEFT JOIN synergetic_customers_metrics_calculation AS synergetic\n ON loyalty_active.synergy_month = synergetic.synergy_month\n AND loyalty_active.app_key = synergetic.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM synergies_loyalty_store_metrics_monthly_res", "language": "sql", "refs": [{"name": "platform_stg__synergy_product_mapping", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___platform__store_product_activeness_monthly", "package": null, "version": null}, {"name": "analytics___synergies__kpi_ranked_action", "package": null, "version": null}, {"name": "analytics___loyalty_stg__point_redemption", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__synergy_product_mapping", "model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___platform__store_product_activeness_monthly", "model.yoda.analytics___synergies__kpi_ranked_action", "model.yoda.analytics___loyalty_stg__point_redemption", "model.yoda.analytics___loyalty__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_synergy_product_mapping AS (\nSELECT * FROM dev_dkruh1.platform_stg__synergy_product_mapping\n),\n\nimport_calendar AS (\nSELECT * \nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-2,1,1) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_platform_store_product_activeness_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_product_activeness_monthly\n),\n\nimport_platform_synergies_kpi AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__kpi_ranked_action\n),\n\nimport_analytics_loyalty_redemption AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty_stg__point_redemption\n),\n\nimport_analytics_loyalty_merchants AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty__merchant\n),\n\n-- Logic --\n\ncalendar_months AS (\nSELECT DISTINCT\n TRUNC(date,'MONTH') AS synergy_month\nFROM import_calendar\n),\n\ncalendar_related_months AS (\nSELECT\n synergy_month,\n EXPLODE(SEQUENCE(ADD_MONTHS(synergy_month,-11),synergy_month,INTERVAL 1 MONTH)) AS synergy_related_12m_range_month\nFROM calendar_months\n),\n\nloyalty_synergy_list AS (\nSELECT\n synergy_id,\n synergy_name\nFROM import_platform_synergy_product_mapping\nWHERE LOWER(product_name) = 'loyalty'\nAND is_action_product = 1\n),\n\nonly_loyalty_synergies_kpi AS (\nSELECT\n kpi.app_key,\n kpi.action_type,\n kpi.action_id\nFROM import_platform_synergies_kpi AS kpi\nINNER JOIN loyalty_synergy_list AS loyalty\n ON kpi.synergy_id = loyalty.synergy_id\nWHERE kpi.record_rank = 1\n),\n\nredemption AS (\nSELECT\n redemptions.point_redemption_id,\n merchants.app_key,\n redemptions.customer_id,\n TRUNC(redemptions.created_at,'MONTH') AS created_month\nFROM import_analytics_loyalty_redemption AS redemptions\nINNER JOIN import_analytics_loyalty_merchants AS merchants\n ON redemptions.merchant_id = merchants.merchant_id \n),\n\nsynergetic_customers_by_month AS (\nSELECT DISTINCT\n redemption.created_month,\n kpi.app_key,\n redemption.customer_id\nFROM only_loyalty_synergies_kpi AS kpi\nINNER JOIN redemption\n ON LOWER(kpi.action_type) = 'redemption'\n AND kpi.action_id = redemption.point_redemption_id\n),\n\nsynergetic_customers_by_month_and_related_months AS (\nSELECT\n calendar.synergy_month,\n calendar.synergy_related_12m_range_month,\n customers.app_key,\n customers.customer_id\nFROM calendar_related_months AS calendar\nINNER JOIN synergetic_customers_by_month AS customers\n ON calendar.synergy_related_12m_range_month = customers.created_month\n),\n\nsynergetic_customers_metrics_calculation AS (\nSELECT\n synergetic.synergy_month,\n synergetic.app_key,\n COUNT(redemption.point_redemption_id) AS synergetic_customer_last_12m_redemption_cnt,\n COUNT(DISTINCT synergetic.customer_id) AS synergetic_customer_last_12m_unique_cnt\nFROM synergetic_customers_by_month_and_related_months AS synergetic\nINNER JOIN redemption\n ON synergetic.synergy_related_12m_range_month = redemption.created_month\n AND synergetic.app_key = redemption.app_key\n AND synergetic.customer_id = redemption.customer_id\nGROUP BY 1,2\n),\n\nall_customers_metrics_calculation AS (\nSELECT\n calendar.synergy_month,\n redemption.app_key,\n COUNT(redemption.point_redemption_id) AS last_12m_redemption_cnt,\n COUNT(DISTINCT redemption.customer_id) AS last_12m_customer_unique_cnt\nFROM calendar_related_months AS calendar\nINNER JOIN redemption\n ON calendar.synergy_related_12m_range_month = redemption.created_month\nGROUP BY 1,2\n),\n\nloyalty_tier_1_active_stores AS (\nSELECT\n activeness_month AS synergy_month,\n app_key\nFROM import_platform_store_product_activeness_monthly\nWHERE is_loyalty_active_tier_1 = 1\nAND activeness_month >= MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-2,1,1)\n),\n\nsynergies_loyalty_store_metrics_monthly_res AS (\nSELECT\n loyalty_active.synergy_month,\n loyalty_active.app_key,\n NVL(all_customers.last_12m_redemption_cnt,0) - NVL(synergetic.synergetic_customer_last_12m_redemption_cnt,0) AS non_synergetic_customer_last_12m_redemption_cnt,\n NVL(all_customers.last_12m_customer_unique_cnt,0) - NVL(synergetic.synergetic_customer_last_12m_unique_cnt,0) AS non_synergetic_customer_last_12m_unique_cnt,\n NVL(synergetic.synergetic_customer_last_12m_redemption_cnt,0) AS synergetic_customer_last_12m_redemption_cnt,\n NVL(synergetic.synergetic_customer_last_12m_unique_cnt,0) AS synergetic_customer_last_12m_unique_cnt, \n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM loyalty_tier_1_active_stores AS loyalty_active\nLEFT JOIN all_customers_metrics_calculation AS all_customers\n ON loyalty_active.synergy_month = all_customers.synergy_month\n AND loyalty_active.app_key = all_customers.app_key\nLEFT JOIN synergetic_customers_metrics_calculation AS synergetic\n ON loyalty_active.synergy_month = synergetic.synergy_month\n AND loyalty_active.app_key = synergetic.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM synergies_loyalty_store_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__loyalty_store_synergy_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.sql", "unique_id": "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__loyalty_store_synergy_metrics_monthly", "analytics___synergies__loyalty_store_synergy_metrics_monthly"], "alias": "analytics___synergies__loyalty_store_synergy_metrics_monthly", "checksum": {"name": "sha256", "checksum": "0b8db1b4fe322cc0fd9035a5bbb6b0019ca936aa0625f4b616033cd694361b9c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of loyalty synergies metrics at a monthly level | PK and granularity: synergy_month, app_key, synergy_id", "columns": {"synergy_month": {"name": "synergy_month", "description": "store synergy month - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "synergy_name": {"name": "synergy_name", "description": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_cnt": {"name": "redemption_cnt", "description": "number of redemptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redeemer_cnt": {"name": "redeemer_cnt", "description": "number of unique redeemers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_order_cnt": {"name": "store_order_cnt", "description": "number of total store orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_order_amount_in_usd_sum": {"name": "store_order_amount_in_usd_sum", "description": "sum of the usd amount of total store orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "store_attributed_order_cnt": {"name": "store_attributed_order_cnt", "description": "number of total attributed orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_attributed_order_amount_in_usd_sum": {"name": "store_attributed_order_amount_in_usd_sum", "description": "sum of the usd amount of total attributed orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "store_attributed_loyalty_order_cnt": {"name": "store_attributed_loyalty_order_cnt", "description": "number of attributed loyalty orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_attributed_loyalty_order_amount_in_usd_sum": {"name": "store_attributed_loyalty_order_amount_in_usd_sum", "description": "sum of the usd amount of attributed loyalty orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "store_attributed_sms_order_cnt": {"name": "store_attributed_sms_order_cnt", "description": "number of attributed sms orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_attributed_sms_order_amount_in_usd_sum": {"name": "store_attributed_sms_order_amount_in_usd_sum", "description": "sum of the usd amount of attributed sms orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "synergetic_redemption_cnt": {"name": "synergetic_redemption_cnt", "description": "number of synergetic redemptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_redemption_cnt_no_overlaps": {"name": "synergetic_redemption_cnt_no_overlaps", "description": "number of synergetic redemptions without overlaps between synergies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_redeemer_cnt": {"name": "synergetic_redeemer_cnt", "description": "number of unique synergetic redeemers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_redeemer_cnt_no_overlaps": {"name": "synergetic_redeemer_cnt_no_overlaps", "description": "number of unique synergetic redeemers without overlaps between synergies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_point_sum": {"name": "synergetic_point_sum", "description": "sum of synergetic points redeemed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_point_sum_no_overlaps": {"name": "synergetic_point_sum_no_overlaps", "description": "sum of synergetic points redeemed without overlaps between synergies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_order_cnt": {"name": "synergetic_order_cnt", "description": "number of synergetic orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_order_cnt_no_overlaps": {"name": "synergetic_order_cnt_no_overlaps", "description": "number of synergetic orders without overlaps between synergies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_order_amount_in_usd_sum": {"name": "synergetic_order_amount_in_usd_sum", "description": "sum of the usd amount of synergetic orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "synergetic_order_amount_in_usd_sum_no_overlaps": {"name": "synergetic_order_amount_in_usd_sum_no_overlaps", "description": "sum of the usd amount of synergetic orders without overlaps between synergies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082662.0621803, "relation_name": "dev_dkruh1.analytics___synergies__loyalty_store_synergy_metrics_monthly", "raw_code": "-- Import --\n\nWITH import_platform_synergy_product_mapping AS (\nSELECT * FROM {{ ref('platform_stg__synergy_product_mapping') }}\n),\n\nimport_platform_synergies_kpi AS (\nSELECT * FROM {{ ref('analytics___synergies__kpi_ranked_action') }}\n),\n\nimport_loyalty_redemption AS (\nSELECT * FROM {{ ref('analytics___loyalty__redemption_details') }}\n),\n\nimport_loyalty_purchase_redemption AS (\nSELECT * FROM {{ ref('analytics___loyalty_stg__purchase_redemption') }}\n),\n\nimport_sms_shopify_flow_order AS (\nSELECT * FROM {{ ref('analytics___sms_stg__shopify_flow_order') }}\n),\n\nimport_sms_shopify_campaign_order AS (\nSELECT * FROM {{ ref('analytics___sms_stg__shopify_campaign_order') }}\n),\n\nimport_store_metrics AS (\nSELECT * FROM {{ ref('analytics___platform__store_metrics_monthly') }}\n),\n\nimport_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\nimport_loyalty_account AS (\nSELECT * FROM {{ ref('analytics___loyalty_stg__loyalty_account') }}\n),\n\nimport_loyalty_purchase AS (\nSELECT * FROM {{ ref('analytics___loyalty_stg__purchase') }} \n),\n\nimport_currency_rates AS (\nSELECT * FROM {{ ref('platform_stg__currency_rates') }} \n),\n\nimport_loyalty_redemption_code AS (\nSELECT * FROM {{ ref('analytics___loyalty_stg__redemption_code') }} \n),\n\nimport_orders_product_line_attribution_daily AS (\nSELECT * FROM {{ ref('platform__orders_with_product_lines_attribution_daily') }} \n),\n\n-- Logic --\n\nall_sms_attributed_orders AS (\nSELECT \n flow_order.sms_user_id,\n store.app_key,\n flow_order.created_at,\n flow_order.order_id,\n flow_order.amount_in_usd\nFROM import_sms_shopify_flow_order AS flow_order\nINNER JOIN import_sms_store AS store\n ON store.sms_user_id = flow_order.sms_user_id\nUNION ALL\nSELECT\n campaign_order.sms_user_id,\n store.app_key,\n campaign_order.created_at,\n campaign_order.order_id,\n campaign_order.amount_in_usd\nFROM import_sms_shopify_campaign_order AS campaign_order\nINNER JOIN import_sms_store AS store\n ON store.sms_user_id = campaign_order.sms_user_id\n),\n\nattributed_sms_order_ranked AS (\nSELECT order_id,\n app_key,\n created_at,\n amount_in_usd,\n ROW_NUMBER() OVER (PARTITION BY order_id ORDER BY created_at) AS order_id_ranking\nFROM all_sms_attributed_orders\n),\n\nall_loyalty_attributed_orders AS (\nSELECT \n purchase.merchant_id,\n account.app_key,\n purchase.purchase_at,\n purchase.order_id,\n purchase.customer_id,\n redemption_code.point_redemption_id\nFROM import_loyalty_purchase AS purchase\nINNER JOIN import_currency_rates AS currency_rate\n ON purchase.purchase_currency = currency_rate.country\nINNER JOIN import_loyalty_account AS account\n ON purchase.merchant_id = account.merchant_id\nINNER JOIN import_loyalty_redemption_code AS redemption_code\n ON purchase.redemption_code_id = redemption_code.redemption_code_id\nINNER JOIN import_loyalty_redemption AS redemption\n ON redemption.point_redemption_id = redemption_code.point_redemption_id\nWHERE purchase.redemption_code_id IS NOT NULL\nAND purchase.customer_id IS NOT NULL\nAND purchase.is_refunded = 0\n),\n\nsms_loyalty_intersecting_non_synergy_orders AS (\nSELECT DISTINCT \n sms.app_key,\n sms.created_at,\n sms.order_id,\n sms.amount_in_usd,\n loyalty.point_redemption_id\nFROM attributed_sms_order_ranked AS sms\nINNER JOIN all_loyalty_attributed_orders AS loyalty\n ON sms.order_id = loyalty.order_id\n AND sms.app_key = loyalty.app_key\nLEFT JOIN import_platform_synergies_kpi AS kpi\n ON kpi.order_id = sms.order_id\n AND (kpi.action_id IS NULL OR NVL(LOWER(kpi.action_type),'') <> 'review')\nWHERE sms.order_id_ranking = 1\nAND kpi.order_id IS NULL\n),\n\nloyalty_synergy_list AS (\nSELECT\n synergy_id,\n synergy_name\nFROM import_platform_synergy_product_mapping\nWHERE LOWER(product_name) = 'loyalty'\nAND is_action_product = 1\nAND synergy_id <> 112\n),\n\nonly_loyalty_synergies_kpi AS (\nSELECT\n kpi.synergy_id,\n lty.synergy_name,\n kpi.app_key,\n kpi.action_type,\n kpi.action_id,\n kpi.action_attribute_type,\n kpi.action_attribute_value,\n kpi.order_id,\n kpi.record_rank\nFROM import_platform_synergies_kpi AS kpi\nINNER JOIN loyalty_synergy_list AS lty\n ON kpi.synergy_id = lty.synergy_id\nUNION ALL\nSELECT \n 9999 AS synergy_id,\n 'platform_capabilities' AS synergy_name,\n orders.app_key,\n 'redemption' AS action_type,\n orders.point_redemption_id AS action_id,\n 'points' AS action_attribute_type,\n 0 AS action_attribute_value,\n orders.order_id,\n 1 AS record_rank\nFROM sms_loyalty_intersecting_non_synergy_orders AS orders\n),\n\nsynergy_metrics_calculation AS (\nSELECT\n CASE WHEN kpi.action_id IS NOT NULL THEN TRUNC(loyalty.point_redemption_created_at,'MONTH')\n WHEN kpi.action_id IS NULL AND kpi.order_id IS NOT NULL THEN TRUNC(orders.created_at,'MONTH') END AS synergy_month,\n kpi.app_key,\n kpi.synergy_id,\n kpi.synergy_name,\n COUNT(DISTINCT loyalty.point_redemption_id) AS synergetic_redemption_cnt,\n COUNT(DISTINCT IF(kpi.record_rank = 1,loyalty.point_redemption_id,NULL)) AS synergetic_redemption_cnt_no_overlaps,\n COUNT(DISTINCT IF(kpi.order_id IS NOT NULL,loyalty.customer_id,NULL)) AS synergetic_redeemer_cnt,\n COUNT(DISTINCT IF(kpi.order_id IS NOT NULL AND kpi.record_rank = 1,loyalty.customer_id,NULL)) AS synergetic_redeemer_cnt_no_overlaps,\n SUM(IF(LOWER(kpi.action_type) = 'redemption' AND LOWER(kpi.action_attribute_type) = 'points', kpi.action_attribute_value, 0)) AS synergetic_point_sum,\n SUM(IF(LOWER(kpi.action_type) = 'redemption' AND LOWER(kpi.action_attribute_type) = 'points' AND kpi.record_rank = 1, kpi.action_attribute_value, 0)) AS synergetic_point_sum_no_overlaps,\n COUNT(DISTINCT kpi.order_id) AS synergetic_order_cnt,\n COUNT(DISTINCT IF (kpi.record_rank = 1,kpi.order_id,NULL)) AS synergetic_order_cnt_no_overlaps,\n SUM(orders.amount_in_usd) AS synergetic_order_amount_in_usd_sum,\n SUM(IF(kpi.record_rank = 1,orders.amount_in_usd,0)) AS synergetic_order_amount_in_usd_sum_no_overlaps\nFROM only_loyalty_synergies_kpi AS kpi\nLEFT JOIN import_loyalty_redemption AS loyalty\n ON LOWER(kpi.action_type) = 'redemption'\n AND kpi.action_id = loyalty.point_redemption_id\nLEFT JOIN attributed_sms_order_ranked AS orders\n ON kpi.order_id = orders.order_id \n AND orders.order_id_ranking = 1\nWHERE NVL(kpi.action_id,kpi.order_id) IS NOT NULL\nGROUP BY 1,2,3,4\n),\n\nloyalty_store_metrics_monthly AS (\nSELECT redemption.app_key,\n TRUNC(redemption.point_redemption_created_at,'MONTH') AS month,\n COUNT(DISTINCT redemption.point_redemption_id) AS redemption_cnt,\n COUNT(DISTINCT IF(purchase_redemption.purchase_id IS NOT NULL,redemption.customer_id,NULL)) AS redeemer_cnt\nFROM import_loyalty_redemption AS redemption\nLEFT JOIN import_loyalty_purchase_redemption AS purchase_redemption\n ON purchase_redemption.redemption_id = redemption.point_redemption_id\nGROUP BY 1,2\n),\n\nattributed_orders_monthly AS (\nSELECT \n app_key,\n TRUNC(order_date,'MONTH') AS order_month,\n SUM(daily_sms_attributed_orders) AS sms_attributed_orders,\n SUM(daily_sms_attributed_revenue) AS sms_attributed_revenue,\n SUM(daily_loyalty_attributed_orders) AS loyalty_attributed_orders,\n SUM(daily_loyalty_attributed_revenue) AS loyalty_attributed_revenue,\n SUM(total_orders) AS total_attributed_orders,\n SUM(total_revenue) AS total_attributed_revenue\nFROM import_orders_product_line_attribution_daily\nGROUP BY 1,2\n),\n\nloyalty_store_synergy_metrics_monthly_res AS (\n SELECT\n synergy.synergy_month,\n synergy.app_key,\n synergy.synergy_id,\n synergy.synergy_name,\n COALESCE(loyalty_metrics_monthly.redemption_cnt,0) AS redemption_cnt,\n COALESCE(loyalty_metrics_monthly.redeemer_cnt,0) AS redeemer_cnt,\n COALESCE(orders.orders_cnt,0) AS store_order_cnt,\n COALESCE(orders.orders_amount_in_usd_sum,0) AS store_order_amount_in_usd_sum,\n COALESCE(attributed_orders.total_attributed_orders,0) AS store_attributed_order_cnt,\n COALESCE(attributed_orders.total_attributed_revenue,0) AS store_attributed_order_amount_in_usd_sum,\n COALESCE(attributed_orders.loyalty_attributed_orders,0) AS store_attributed_loyalty_order_cnt,\n COALESCE(attributed_orders.loyalty_attributed_revenue,0) AS store_attributed_loyalty_order_amount_in_usd_sum,\n COALESCE(attributed_orders.sms_attributed_orders,0) AS store_attributed_sms_order_cnt,\n COALESCE(attributed_orders.sms_attributed_revenue,0) AS store_attributed_sms_order_amount_in_usd_sum,\n synergy.synergetic_redemption_cnt,\n synergy.synergetic_redemption_cnt_no_overlaps,\n synergy.synergetic_redeemer_cnt,\n synergy.synergetic_redeemer_cnt_no_overlaps,\n synergy.synergetic_point_sum,\n synergy.synergetic_point_sum_no_overlaps,\n synergy.synergetic_order_cnt,\n synergy.synergetic_order_cnt_no_overlaps,\n synergy.synergetic_order_amount_in_usd_sum,\n synergy.synergetic_order_amount_in_usd_sum_no_overlaps,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM synergy_metrics_calculation AS synergy\n LEFT JOIN loyalty_store_metrics_monthly AS loyalty_metrics_monthly\n ON synergy.synergy_month = loyalty_metrics_monthly.month\n AND synergy.app_key = loyalty_metrics_monthly.app_key\n LEFT JOIN import_store_metrics AS orders\n ON orders.app_key = synergy.app_key\n AND orders.month = synergy.synergy_month\n LEFT JOIN attributed_orders_monthly AS attributed_orders\n ON attributed_orders.app_key = synergy.app_key\n AND attributed_orders.order_month = synergy.synergy_month\n WHERE synergy.synergy_month IS NOT NULL\n)\n\n-- Result --\n\nSELECT *\nFROM loyalty_store_synergy_metrics_monthly_res", "language": "sql", "refs": [{"name": "platform_stg__synergy_product_mapping", "package": null, "version": null}, {"name": "analytics___synergies__kpi_ranked_action", "package": null, "version": null}, {"name": "analytics___loyalty__redemption_details", "package": null, "version": null}, {"name": "analytics___loyalty_stg__purchase_redemption", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_flow_order", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_campaign_order", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_account", "package": null, "version": null}, {"name": "analytics___loyalty_stg__purchase", "package": null, "version": null}, {"name": "platform_stg__currency_rates", "package": null, "version": null}, {"name": "analytics___loyalty_stg__redemption_code", "package": null, "version": null}, {"name": "platform__orders_with_product_lines_attribution_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__synergy_product_mapping", "model.yoda.analytics___synergies__kpi_ranked_action", "model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___loyalty_stg__purchase_redemption", "model.yoda.analytics___sms_stg__shopify_flow_order", "model.yoda.analytics___sms_stg__shopify_campaign_order", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___sms__store", "model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.platform_stg__currency_rates", "model.yoda.analytics___loyalty_stg__redemption_code", "model.yoda.platform__orders_with_product_lines_attribution_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_synergy_product_mapping AS (\nSELECT * FROM dev_dkruh1.platform_stg__synergy_product_mapping\n),\n\nimport_platform_synergies_kpi AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__kpi_ranked_action\n),\n\nimport_loyalty_redemption AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty__redemption_details\n),\n\nimport_loyalty_purchase_redemption AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty_stg__purchase_redemption\n),\n\nimport_sms_shopify_flow_order AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__shopify_flow_order\n),\n\nimport_sms_shopify_campaign_order AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__shopify_campaign_order\n),\n\nimport_store_metrics AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_metrics_monthly\n),\n\nimport_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\nimport_loyalty_account AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty_stg__loyalty_account\n),\n\nimport_loyalty_purchase AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty_stg__purchase \n),\n\nimport_currency_rates AS (\nSELECT * FROM dev_dkruh1.platform_stg__currency_rates \n),\n\nimport_loyalty_redemption_code AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty_stg__redemption_code \n),\n\nimport_orders_product_line_attribution_daily AS (\nSELECT * FROM dev_dkruh1.platform__orders_with_product_lines_attribution_daily \n),\n\n-- Logic --\n\nall_sms_attributed_orders AS (\nSELECT \n flow_order.sms_user_id,\n store.app_key,\n flow_order.created_at,\n flow_order.order_id,\n flow_order.amount_in_usd\nFROM import_sms_shopify_flow_order AS flow_order\nINNER JOIN import_sms_store AS store\n ON store.sms_user_id = flow_order.sms_user_id\nUNION ALL\nSELECT\n campaign_order.sms_user_id,\n store.app_key,\n campaign_order.created_at,\n campaign_order.order_id,\n campaign_order.amount_in_usd\nFROM import_sms_shopify_campaign_order AS campaign_order\nINNER JOIN import_sms_store AS store\n ON store.sms_user_id = campaign_order.sms_user_id\n),\n\nattributed_sms_order_ranked AS (\nSELECT order_id,\n app_key,\n created_at,\n amount_in_usd,\n ROW_NUMBER() OVER (PARTITION BY order_id ORDER BY created_at) AS order_id_ranking\nFROM all_sms_attributed_orders\n),\n\nall_loyalty_attributed_orders AS (\nSELECT \n purchase.merchant_id,\n account.app_key,\n purchase.purchase_at,\n purchase.order_id,\n purchase.customer_id,\n redemption_code.point_redemption_id\nFROM import_loyalty_purchase AS purchase\nINNER JOIN import_currency_rates AS currency_rate\n ON purchase.purchase_currency = currency_rate.country\nINNER JOIN import_loyalty_account AS account\n ON purchase.merchant_id = account.merchant_id\nINNER JOIN import_loyalty_redemption_code AS redemption_code\n ON purchase.redemption_code_id = redemption_code.redemption_code_id\nINNER JOIN import_loyalty_redemption AS redemption\n ON redemption.point_redemption_id = redemption_code.point_redemption_id\nWHERE purchase.redemption_code_id IS NOT NULL\nAND purchase.customer_id IS NOT NULL\nAND purchase.is_refunded = 0\n),\n\nsms_loyalty_intersecting_non_synergy_orders AS (\nSELECT DISTINCT \n sms.app_key,\n sms.created_at,\n sms.order_id,\n sms.amount_in_usd,\n loyalty.point_redemption_id\nFROM attributed_sms_order_ranked AS sms\nINNER JOIN all_loyalty_attributed_orders AS loyalty\n ON sms.order_id = loyalty.order_id\n AND sms.app_key = loyalty.app_key\nLEFT JOIN import_platform_synergies_kpi AS kpi\n ON kpi.order_id = sms.order_id\n AND (kpi.action_id IS NULL OR NVL(LOWER(kpi.action_type),'') <> 'review')\nWHERE sms.order_id_ranking = 1\nAND kpi.order_id IS NULL\n),\n\nloyalty_synergy_list AS (\nSELECT\n synergy_id,\n synergy_name\nFROM import_platform_synergy_product_mapping\nWHERE LOWER(product_name) = 'loyalty'\nAND is_action_product = 1\nAND synergy_id <> 112\n),\n\nonly_loyalty_synergies_kpi AS (\nSELECT\n kpi.synergy_id,\n lty.synergy_name,\n kpi.app_key,\n kpi.action_type,\n kpi.action_id,\n kpi.action_attribute_type,\n kpi.action_attribute_value,\n kpi.order_id,\n kpi.record_rank\nFROM import_platform_synergies_kpi AS kpi\nINNER JOIN loyalty_synergy_list AS lty\n ON kpi.synergy_id = lty.synergy_id\nUNION ALL\nSELECT \n 9999 AS synergy_id,\n 'platform_capabilities' AS synergy_name,\n orders.app_key,\n 'redemption' AS action_type,\n orders.point_redemption_id AS action_id,\n 'points' AS action_attribute_type,\n 0 AS action_attribute_value,\n orders.order_id,\n 1 AS record_rank\nFROM sms_loyalty_intersecting_non_synergy_orders AS orders\n),\n\nsynergy_metrics_calculation AS (\nSELECT\n CASE WHEN kpi.action_id IS NOT NULL THEN TRUNC(loyalty.point_redemption_created_at,'MONTH')\n WHEN kpi.action_id IS NULL AND kpi.order_id IS NOT NULL THEN TRUNC(orders.created_at,'MONTH') END AS synergy_month,\n kpi.app_key,\n kpi.synergy_id,\n kpi.synergy_name,\n COUNT(DISTINCT loyalty.point_redemption_id) AS synergetic_redemption_cnt,\n COUNT(DISTINCT IF(kpi.record_rank = 1,loyalty.point_redemption_id,NULL)) AS synergetic_redemption_cnt_no_overlaps,\n COUNT(DISTINCT IF(kpi.order_id IS NOT NULL,loyalty.customer_id,NULL)) AS synergetic_redeemer_cnt,\n COUNT(DISTINCT IF(kpi.order_id IS NOT NULL AND kpi.record_rank = 1,loyalty.customer_id,NULL)) AS synergetic_redeemer_cnt_no_overlaps,\n SUM(IF(LOWER(kpi.action_type) = 'redemption' AND LOWER(kpi.action_attribute_type) = 'points', kpi.action_attribute_value, 0)) AS synergetic_point_sum,\n SUM(IF(LOWER(kpi.action_type) = 'redemption' AND LOWER(kpi.action_attribute_type) = 'points' AND kpi.record_rank = 1, kpi.action_attribute_value, 0)) AS synergetic_point_sum_no_overlaps,\n COUNT(DISTINCT kpi.order_id) AS synergetic_order_cnt,\n COUNT(DISTINCT IF (kpi.record_rank = 1,kpi.order_id,NULL)) AS synergetic_order_cnt_no_overlaps,\n SUM(orders.amount_in_usd) AS synergetic_order_amount_in_usd_sum,\n SUM(IF(kpi.record_rank = 1,orders.amount_in_usd,0)) AS synergetic_order_amount_in_usd_sum_no_overlaps\nFROM only_loyalty_synergies_kpi AS kpi\nLEFT JOIN import_loyalty_redemption AS loyalty\n ON LOWER(kpi.action_type) = 'redemption'\n AND kpi.action_id = loyalty.point_redemption_id\nLEFT JOIN attributed_sms_order_ranked AS orders\n ON kpi.order_id = orders.order_id \n AND orders.order_id_ranking = 1\nWHERE NVL(kpi.action_id,kpi.order_id) IS NOT NULL\nGROUP BY 1,2,3,4\n),\n\nloyalty_store_metrics_monthly AS (\nSELECT redemption.app_key,\n TRUNC(redemption.point_redemption_created_at,'MONTH') AS month,\n COUNT(DISTINCT redemption.point_redemption_id) AS redemption_cnt,\n COUNT(DISTINCT IF(purchase_redemption.purchase_id IS NOT NULL,redemption.customer_id,NULL)) AS redeemer_cnt\nFROM import_loyalty_redemption AS redemption\nLEFT JOIN import_loyalty_purchase_redemption AS purchase_redemption\n ON purchase_redemption.redemption_id = redemption.point_redemption_id\nGROUP BY 1,2\n),\n\nattributed_orders_monthly AS (\nSELECT \n app_key,\n TRUNC(order_date,'MONTH') AS order_month,\n SUM(daily_sms_attributed_orders) AS sms_attributed_orders,\n SUM(daily_sms_attributed_revenue) AS sms_attributed_revenue,\n SUM(daily_loyalty_attributed_orders) AS loyalty_attributed_orders,\n SUM(daily_loyalty_attributed_revenue) AS loyalty_attributed_revenue,\n SUM(total_orders) AS total_attributed_orders,\n SUM(total_revenue) AS total_attributed_revenue\nFROM import_orders_product_line_attribution_daily\nGROUP BY 1,2\n),\n\nloyalty_store_synergy_metrics_monthly_res AS (\n SELECT\n synergy.synergy_month,\n synergy.app_key,\n synergy.synergy_id,\n synergy.synergy_name,\n COALESCE(loyalty_metrics_monthly.redemption_cnt,0) AS redemption_cnt,\n COALESCE(loyalty_metrics_monthly.redeemer_cnt,0) AS redeemer_cnt,\n COALESCE(orders.orders_cnt,0) AS store_order_cnt,\n COALESCE(orders.orders_amount_in_usd_sum,0) AS store_order_amount_in_usd_sum,\n COALESCE(attributed_orders.total_attributed_orders,0) AS store_attributed_order_cnt,\n COALESCE(attributed_orders.total_attributed_revenue,0) AS store_attributed_order_amount_in_usd_sum,\n COALESCE(attributed_orders.loyalty_attributed_orders,0) AS store_attributed_loyalty_order_cnt,\n COALESCE(attributed_orders.loyalty_attributed_revenue,0) AS store_attributed_loyalty_order_amount_in_usd_sum,\n COALESCE(attributed_orders.sms_attributed_orders,0) AS store_attributed_sms_order_cnt,\n COALESCE(attributed_orders.sms_attributed_revenue,0) AS store_attributed_sms_order_amount_in_usd_sum,\n synergy.synergetic_redemption_cnt,\n synergy.synergetic_redemption_cnt_no_overlaps,\n synergy.synergetic_redeemer_cnt,\n synergy.synergetic_redeemer_cnt_no_overlaps,\n synergy.synergetic_point_sum,\n synergy.synergetic_point_sum_no_overlaps,\n synergy.synergetic_order_cnt,\n synergy.synergetic_order_cnt_no_overlaps,\n synergy.synergetic_order_amount_in_usd_sum,\n synergy.synergetic_order_amount_in_usd_sum_no_overlaps,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM synergy_metrics_calculation AS synergy\n LEFT JOIN loyalty_store_metrics_monthly AS loyalty_metrics_monthly\n ON synergy.synergy_month = loyalty_metrics_monthly.month\n AND synergy.app_key = loyalty_metrics_monthly.app_key\n LEFT JOIN import_store_metrics AS orders\n ON orders.app_key = synergy.app_key\n AND orders.month = synergy.synergy_month\n LEFT JOIN attributed_orders_monthly AS attributed_orders\n ON attributed_orders.app_key = synergy.app_key\n AND attributed_orders.order_month = synergy.synergy_month\n WHERE synergy.synergy_month IS NOT NULL\n)\n\n-- Result --\n\nSELECT *\nFROM loyalty_store_synergy_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__organization_synergy_activeness_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__organization_synergy_activeness_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.sql", "unique_id": "model.yoda.analytics___synergies__organization_synergy_activeness_monthly", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__organization_synergy_activeness_monthly", "analytics___synergies__organization_synergy_activeness_monthly"], "alias": "analytics___synergies__organization_synergy_activeness_monthly", "checksum": {"name": "sha256", "checksum": "69b8f46e5182585b93921073a253656be7a739726679ea8da38f8cc8ea2bf88d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "PK [month,organization_key] OR [organization_month_id]\n\nThis table stores indications on synergies activeness for each organization and month.\n\nEach organization can have multiple stores and each store can have different active synergies.", "columns": {"organization_month_id": {"name": "organization_month_id", "description": "TABLE PK: combination of month|organization_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_sms_active_synergy": {"name": "is_sms_active_synergy", "description": "Indicates if there is at least one store with active SMS synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_email_active_synergy": {"name": "is_email_active_synergy", "description": "Indicates if there is at least one store with active Email synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_loyalty_active_synergy": {"name": "is_loyalty_active_synergy", "description": "Indicates if there is at least one store with active Loyalty synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_ugc_active_synergy": {"name": "is_ugc_active_synergy", "description": "Indicates if there is at least one store with active UGC synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_subscriptions_active_synergy": {"name": "is_subscriptions_active_synergy", "description": "Indicates if there is at least one store with active Subscriptions synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_loyalty_sms_active_synergy": {"name": "is_loyalty_sms_active_synergy", "description": "Indicates if there is at least one store with active Loyalty<>SMS synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_loyalty_ugc_active_synergy": {"name": "is_loyalty_ugc_active_synergy", "description": "Indicates if there is at least one store with active Loyalty<>UGC synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_loyalty_subscriptions_active_synergy": {"name": "is_loyalty_subscriptions_active_synergy", "description": "Indicates if there is at least one store with active Loyalty<>Subscriptions synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_sms_ugc_active_synergy": {"name": "is_sms_ugc_active_synergy", "description": "Indicates if there is at least one store with active SMS<>UGC synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_sms_subscriptions_active_synergy": {"name": "is_sms_subscriptions_active_synergy", "description": "Indicates if there is at least one store with active SMS<>Subscriptions synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "number_of_active_synergies": {"name": "number_of_active_synergies", "description": "DISTINCT count of total active synergies under the organization.\n\nMeaning, if multiple stores have the same synergy activated, the synergy will count only once.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "ybaruch@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082662.1130233, "relation_name": "dev_dkruh1.analytics___synergies__organization_synergy_activeness_monthly", "raw_code": "-- import --\n\nWITH import_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_product_mapping AS (\nSELECT * FROM {{ ref('platform_stg__synergy_product_mapping') }}\n),\n\nimport_synergy_activeness AS (\nSELECT * FROM {{ ref('analytics___synergies__store_activeness_monthly') }}\n),\n\n-- Logic --\n\nproduct_mapping AS (\nSELECT \n synergy_id,\n MAX(CASE WHEN lower(product_name) = 'sms' THEN 1 ELSE 0 END) AS is_sms,\n MAX(CASE WHEN lower(product_name) = 'loyalty' THEN 1 ELSE 0 END) AS is_loyalty,\n MAX(CASE WHEN lower(product_name) = 'reviews' THEN 1 ELSE 0 END) AS is_ugc,\n MAX(CASE WHEN lower(product_name) = 'subscriptions' THEN 1 ELSE 0 END) AS is_subscriptions,\n MAX(CASE WHEN lower(product_name) = 'email' THEN 1 ELSE 0 END) AS is_email\nFROM import_product_mapping\nGROUP BY 1\n),\n\norganization_synergy_activeness_monthly AS (\nSELECT \n SHA2(CONCAT(synergy.synergy_month,store.organization_key),256) AS organization_month_id,\n store.organization_key,\n synergy.synergy_month AS month,\n MAX(product_mapping.is_sms) AS is_sms_active_synergy,\n MAX(product_mapping.is_email) AS is_email_active_synergy,\n MAX(product_mapping.is_loyalty) AS is_loyalty_active_synergy,\n MAX(product_mapping.is_ugc) AS is_ugc_active_synergy,\n MAX(product_mapping.is_subscriptions) AS is_subscriptions_active_synergy,\n MAX(NVL(SMALLINT(product_mapping.is_loyalty = 1 AND product_mapping.is_sms = 1),0)) AS is_loyalty_sms_active_synergy,\n MAX(NVL(SMALLINT(product_mapping.is_loyalty = 1 AND product_mapping.is_ugc = 1),0)) AS is_loyalty_ugc_active_synergy,\n MAX(NVL(SMALLINT(product_mapping.is_loyalty = 1 AND product_mapping.is_subscriptions = 1),0)) AS is_loyalty_subscriptions_active_synergy,\n MAX(NVL(SMALLINT(product_mapping.is_sms = 1 AND product_mapping.is_ugc = 1),0)) AS is_sms_ugc_active_synergy,\n MAX(NVL(SMALLINT(product_mapping.is_sms = 1 AND product_mapping.is_subscriptions = 1),0)) AS is_sms_subscriptions_active_synergy,\n COUNT(DISTINCT synergy.synergy_id) AS number_of_active_synergies,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM import_synergy_activeness AS synergy\nINNER JOIN product_mapping AS product_mapping \n ON product_mapping.synergy_id = synergy.synergy_id\nINNER JOIN import_store AS store \n ON store.app_key = synergy.app_key\nGROUP BY 1,2,3\n)\n\nSELECT * \nFROM organization_synergy_activeness_monthly", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}, {"name": "platform_stg__synergy_product_mapping", "package": null, "version": null}, {"name": "analytics___synergies__store_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store", "model.yoda.platform_stg__synergy_product_mapping", "model.yoda.analytics___synergies__store_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.sql", "compiled": true, "compiled_code": "-- import --\n\nWITH import_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_product_mapping AS (\nSELECT * FROM dev_dkruh1.platform_stg__synergy_product_mapping\n),\n\nimport_synergy_activeness AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__store_activeness_monthly\n),\n\n-- Logic --\n\nproduct_mapping AS (\nSELECT \n synergy_id,\n MAX(CASE WHEN lower(product_name) = 'sms' THEN 1 ELSE 0 END) AS is_sms,\n MAX(CASE WHEN lower(product_name) = 'loyalty' THEN 1 ELSE 0 END) AS is_loyalty,\n MAX(CASE WHEN lower(product_name) = 'reviews' THEN 1 ELSE 0 END) AS is_ugc,\n MAX(CASE WHEN lower(product_name) = 'subscriptions' THEN 1 ELSE 0 END) AS is_subscriptions,\n MAX(CASE WHEN lower(product_name) = 'email' THEN 1 ELSE 0 END) AS is_email\nFROM import_product_mapping\nGROUP BY 1\n),\n\norganization_synergy_activeness_monthly AS (\nSELECT \n SHA2(CONCAT(synergy.synergy_month,store.organization_key),256) AS organization_month_id,\n store.organization_key,\n synergy.synergy_month AS month,\n MAX(product_mapping.is_sms) AS is_sms_active_synergy,\n MAX(product_mapping.is_email) AS is_email_active_synergy,\n MAX(product_mapping.is_loyalty) AS is_loyalty_active_synergy,\n MAX(product_mapping.is_ugc) AS is_ugc_active_synergy,\n MAX(product_mapping.is_subscriptions) AS is_subscriptions_active_synergy,\n MAX(NVL(SMALLINT(product_mapping.is_loyalty = 1 AND product_mapping.is_sms = 1),0)) AS is_loyalty_sms_active_synergy,\n MAX(NVL(SMALLINT(product_mapping.is_loyalty = 1 AND product_mapping.is_ugc = 1),0)) AS is_loyalty_ugc_active_synergy,\n MAX(NVL(SMALLINT(product_mapping.is_loyalty = 1 AND product_mapping.is_subscriptions = 1),0)) AS is_loyalty_subscriptions_active_synergy,\n MAX(NVL(SMALLINT(product_mapping.is_sms = 1 AND product_mapping.is_ugc = 1),0)) AS is_sms_ugc_active_synergy,\n MAX(NVL(SMALLINT(product_mapping.is_sms = 1 AND product_mapping.is_subscriptions = 1),0)) AS is_sms_subscriptions_active_synergy,\n COUNT(DISTINCT synergy.synergy_id) AS number_of_active_synergies,\n CURRENT_TIMESTAMP() AS dwh_updated_at\nFROM import_synergy_activeness AS synergy\nINNER JOIN product_mapping AS product_mapping \n ON product_mapping.synergy_id = synergy.synergy_id\nINNER JOIN import_store AS store \n ON store.app_key = synergy.app_key\nGROUP BY 1,2,3\n)\n\nSELECT * \nFROM organization_synergy_activeness_monthly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__store_activeness_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__store_activeness_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.sql", "unique_id": "model.yoda.analytics___synergies__store_activeness_daily", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_daily", "analytics___synergies__store_activeness_daily"], "alias": "analytics___synergies__store_activeness_daily", "checksum": {"name": "sha256", "checksum": "b9d0144a78b756c96fed13b4404b9349bc5c983c50d55f9dc0e48bcc30550085"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["synergy_id", "activeness_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of active stores for each synergy at a daily level | PK and granularity: synergy_id,activeness_date, app_key", "columns": {"synergy_id": {"name": "synergy_id", "description": "synergy id - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "synergy_name": {"name": "synergy_name", "description": "synergy name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activeness_date": {"name": "activeness_date", "description": "activeness date - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["synergy_id", "activeness_date"]}, "created_at": 1700082662.1438804, "relation_name": "dev_dkruh1.analytics___synergies__store_activeness_daily", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by = ['synergy_id','activeness_date']\n )\n}}\n\n-- Variables --\n\n{% if is_incremental() %}\n {% set q_start = \"SELECT DATE_ADD(MAX(activeness_date),1) AS col_start FROM \" ~ this %}\n {% set start_date = \"DATE('\" ~ dbt_utils.get_query_results_as_dict(q_start)['col_start'][0] ~ \"')\" %}\n{% else %}\n {% set start_date = \"DATE('2021-01-01')\" %}\n{% endif %}\n\n{% set q_end = \"SELECT LEAST(DATE_SUB(CURRENT_DATE,1),ADD_MONTHS(LAST_DAY(\" ~ start_date ~ \"),5)) AS col_end\" %}\n{% set end_date = \"DATE('\" ~ dbt_utils.get_query_results_as_dict(q_end)['col_end'][0] ~ \"')\" %}\n\n\n-- Import --\n\nWITH import_static_loyalty_earning_rule_types_for_synergy_activeness AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness') }}\n),\n\nimport_static_sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness') }}\n),\n\nimport_static_sms_flow_triggers_for_synergy_activeness AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness') }}\n),\n\nimport_static_sms_flow_triggers_to_filter_for_custom_loyalty_activeness AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness') }}\n),\n\nimport_static_sms_predefined_message_sub_category_for_synergy_activeness AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness') }}\n),\n\nimport_loyalty__merchant AS (\nSELECT * FROM {{ ref('analytics___loyalty__merchant') }}\n),\n\nimport_loyalty_perk AS (\nSELECT * FROM {{ ref('analytics___loyalty_stg__perk') }}\nWHERE DATE(awarded_at) BETWEEN {{ start_date }} AND {{ end_date }}\n),\n\nimport_loyalty_earning_rule AS (\nSELECT * FROM {{ ref('analytics___loyalty_stg__earning_rule') }}\n),\n\nimport_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\nimport_sms_apicalls AS (\nSELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\nWHERE created_date BETWEEN {{ start_date }} AND {{ end_date }}\n),\n\nimport_sms_flow AS (\nSELECT * FROM {{ ref('analytics___sms_stg__flow') }}\n),\n\nimport_sms_campaign AS (\nSELECT * FROM {{ ref('analytics___sms_stg__campaign') }}\n),\n\nimport_sms_campaign_relation AS (\nSELECT * FROM {{ ref('analytics___sms_stg__campaign_relation') }}\n),\n\nimport_sms_default_predefined_message AS (\nSELECT * FROM {{ ref('analytics___sms_stg__default_predefined_message') }}\n),\n\nimport_sms_campaign_list AS (\nSELECT * FROM {{ ref('analytics___sms_stg__campaign_list') }}\n),\n\nimport_sms_list AS (\nSELECT * FROM {{ ref('analytics___sms_stg__list') }}\n),\n\nimport_sms_shopify_segment AS (\nSELECT * FROM {{ ref('analytics___sms_stg__shopify_segment') }}\n),\n\nimport_subscriptions_customer_journey_event AS (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__customer_journey_event') }}\nWHERE DATE(event_time) BETWEEN {{ start_date }} AND {{ end_date }}\n),\n\nimport_subscriptions_store AS (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__subscriptions_store') }}\n),\n\nimport_synergy_widget AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__synergy_widget') }}\n),\n\n-- Logic --\n\nloyalty_earning_rule_daily_active AS (\nSELECT DISTINCT\n merchants.app_key,\n DATE(perk.awarded_at) AS activeness_date,\n types.synergy_id\nFROM import_loyalty__merchant AS merchants\nINNER JOIN import_loyalty_perk AS perk\n ON merchants.merchant_id = perk.merchant_id\nINNER JOIN import_loyalty_earning_rule AS earning_rule \n ON perk.earning_rule_id = earning_rule.earning_rule_id\nINNER JOIN import_static_loyalty_earning_rule_types_for_synergy_activeness AS types\n ON LOWER(earning_rule.earning_rule_type) = types.earning_rule_type\nAND perk.is_awarded = 1\n),\n\nsms_flows_daily_active AS (\nSELECT DISTINCT\n stores.app_key,\n apicalls.created_date AS activeness_date,\n triggers.synergy_id\nFROM import_sms_flow AS flows\nINNER JOIN import_static_sms_flow_triggers_for_synergy_activeness AS triggers\n ON LOWER(flows.flow_trigger) = triggers.flow_trigger\nINNER JOIN import_sms_apicalls AS apicalls\n ON flows.flow_id = apicalls.flow_id\nINNER JOIN import_sms_store AS stores\n ON apicalls.sms_user_id = stores.sms_user_id\nWHERE apicalls.price_billed_in_usd > 0\nAND apicalls.flow_id <> 0\nAND NOT (LOWER(flows.flow_trigger) = 'checkouts/create' \n AND LOWER(flows.flow_settings) NOT LIKE '%{yotpostarrating}%')\n),\n\nsms_flows_custom_loyalty_daily_active AS (\nSELECT DISTINCT\n stores.app_key,\n apicalls.created_date AS activeness_date,\n 142 AS synergy_id\nFROM import_sms_flow AS flows\nINNER JOIN import_static_sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness AS flow_set\n ON LOWER(flows.flow_settings) LIKE flow_set.flow_settings\nINNER JOIN import_sms_apicalls AS apicalls\n ON flows.flow_id = apicalls.flow_id\nINNER JOIN import_sms_store AS stores \n ON apicalls.sms_user_id = stores.sms_user_id\nLEFT JOIN import_static_sms_flow_triggers_to_filter_for_custom_loyalty_activeness AS flow_triggers_to_filter\n ON LOWER(flows.flow_trigger) = flow_triggers_to_filter.flow_trigger\nWHERE flow_triggers_to_filter.flow_trigger IS NULL\nAND apicalls.price_billed_in_usd > 0\nAND apicalls.flow_id <> 0\n),\n\nsms_campaigns_send_dates AS (\nSELECT DISTINCT \n apicalls.campaign_id,\n apicalls.sms_user_id,\n apicalls.created_date AS send_date\nFROM import_sms_apicalls AS apicalls\nWHERE apicalls.campaign_id <> 0\nAND apicalls.price_billed_in_usd > 0\n),\n\nloyalty_template_sms_campaigns AS (\nSELECT DISTINCT \n campaign.campaign_id,\n activeness.sub_category,\n activeness.synergy_id\nFROM import_sms_campaign AS campaign\nINNER JOIN import_sms_campaign_relation AS campaign_relation\n ON campaign.campaign_id = campaign_relation.campaign_id\nINNER JOIN import_sms_default_predefined_message AS predefined_msgs\n ON campaign_relation.template_id = predefined_msgs.template_id\nINNER JOIN import_static_sms_predefined_message_sub_category_for_synergy_activeness AS activeness\n ON LOWER(predefined_msgs.sub_category) = activeness.sub_category\nWHERE LOWER(campaign_relation.template_type) = 'defaultpredefinedmessages' \nAND LOWER(predefined_msgs.category) = 'yotpo-loyalty' \n),\n\nloyalty_template_sms_campaigns_daily_active AS (\nSELECT DISTINCT\n stores.app_key,\n send_dates.send_date AS activeness_date,\n campaigns.synergy_id\nFROM sms_campaigns_send_dates AS send_dates\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\nINNER JOIN loyalty_template_sms_campaigns AS campaigns\n ON send_dates.campaign_id = campaigns.campaign_id\n),\n\nloyalty_custom_sms_campaigns AS (\nSELECT DISTINCT campaign.campaign_id\nFROM import_sms_campaign AS campaign\nINNER JOIN import_sms_campaign_list AS campaign_lists\n ON campaign.campaign_id = campaign_lists.campaign_id\nINNER JOIN import_sms_list AS lists \n ON campaign_lists.list_id = lists.list_id\nINNER JOIN import_sms_shopify_segment AS segments\n ON lists.segment_id = segments.segment_id\nLEFT JOIN loyalty_template_sms_campaigns AS template\n ON template.campaign_id = campaign.campaign_id\nWHERE LOWER(segments.segment_rules) LIKE '%loyalty%'\nAND LOWER(segments.segment_rules) NOT LIKE '%loyaltylion%'\nAND template.campaign_id IS NULL\n),\n\nloyalty_custom_sms_campaigns_daily_active AS (\nSELECT DISTINCT\n stores.app_key,\n send_dates.send_date AS activeness_date,\n 143 AS synergy_id\nFROM sms_campaigns_send_dates AS send_dates\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\nINNER JOIN loyalty_custom_sms_campaigns AS campaigns\n ON send_dates.campaign_id = campaigns.campaign_id\n),\n\nsms_campaigns_to_grow_subscriptions AS (\nSELECT DISTINCT campaign_lists.campaign_id\nFROM import_sms_campaign_list AS campaign_lists\nINNER JOIN import_sms_list AS lists \n ON campaign_lists.list_id = lists.list_id\nINNER JOIN import_sms_shopify_segment AS segments\n ON lists.segment_id = segments.segment_id\nWHERE LOWER(segments.segment_rules) LIKE '%has_not_active_subscription%'\n),\n\nsms_campaign_to_grow_product_subscribers_daily_active AS (\nSELECT DISTINCT\n stores.app_key,\n send_dates.send_date AS activeness_date,\n 95 AS synergy_id\nFROM sms_campaigns_to_grow_subscriptions AS campaigns\nINNER JOIN sms_campaigns_send_dates AS send_dates \n ON send_dates.campaign_id = campaigns.campaign_id\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\n),\n\nredemption_events_in_subscriptions AS (\nSELECT\n journey.app_key,\n DATE(journey.event_time) AS event_date,\n GET_JSON_OBJECT(journey.event_properties, '$.Coupon code') AS coupon_code,\n journey.event_type\nFROM import_subscriptions_customer_journey_event AS journey\nINNER JOIN import_subscriptions_store AS stores\n ON journey.app_key = stores.app_key\nWHERE LOWER(journey.source_domain) = 'subscriptions'\nAND LOWER(journey.event_type) IN ('customer redeemed points for a reward on this subscription',\n 'merchant redeemed points for a reward on this subscription')\n),\n\nredemption_cancellation_events_in_subscriptions AS (\nSELECT \n journey.app_key,\n DATE(journey.event_time) AS event_date,\n GET_JSON_OBJECT(journey.event_properties, '$.Coupon code') AS coupon_code,\n journey.event_type\nFROM import_subscriptions_customer_journey_event AS journey\nINNER JOIN import_subscriptions_store AS stores\n ON journey.app_key = stores.app_key\nWHERE LOWER(journey.source_domain) = 'subscriptions'\nAND LOWER(journey.event_type) IN ('customer canceled redemption',\n 'merchant canceled redemption')\n),\n\nloyalty_subscription_discount_reward_daily_active AS (\nSELECT DISTINCT \n events.app_key,\n events.event_date AS activeness_date,\n 71 AS synergy_id\nFROM redemption_events_in_subscriptions AS events\nLEFT JOIN redemption_cancellation_events_in_subscriptions AS cancel_events\n ON events.coupon_code = cancel_events.coupon_code\nWHERE cancel_events.coupon_code IS NULL\n),\n\ndaily_active_synergies_union AS (\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM loyalty_earning_rule_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM sms_flows_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM sms_flows_custom_loyalty_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM loyalty_template_sms_campaigns_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM loyalty_custom_sms_campaigns_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM sms_campaign_to_grow_product_subscribers_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM loyalty_subscription_discount_reward_daily_active\n),\n\nstore_activeness_daily_res AS (\nSELECT\n daily_active.synergy_id,\n widget.widget_name AS synergy_name,\n daily_active.activeness_date,\n daily_active.app_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM daily_active_synergies_union AS daily_active\nINNER JOIN import_synergy_widget AS widget\n ON daily_active.synergy_id = widget.widget_id\nWHERE activeness_date BETWEEN {{ start_date }} AND {{ end_date }}\n)\n\n-- Result --\n\nSELECT *\nFROM store_activeness_daily_res", "language": "sql", "refs": [{"name": "analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "package": null, "version": null}, {"name": "analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "package": null, "version": null}, {"name": "analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "package": null, "version": null}, {"name": "analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "package": null, "version": null}, {"name": "analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}, {"name": "analytics___loyalty_stg__perk", "package": null, "version": null}, {"name": "analytics___loyalty_stg__earning_rule", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___sms_stg__api_calls", "package": null, "version": null}, {"name": "analytics___sms_stg__flow", "package": null, "version": null}, {"name": "analytics___sms_stg__campaign", "package": null, "version": null}, {"name": "analytics___sms_stg__campaign_relation", "package": null, "version": null}, {"name": "analytics___sms_stg__default_predefined_message", "package": null, "version": null}, {"name": "analytics___sms_stg__campaign_list", "package": null, "version": null}, {"name": "analytics___sms_stg__list", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_segment", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__customer_journey_event", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__subscriptions_store", "package": null, "version": null}, {"name": "analytics___synergies_stg__synergy_widget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_utils.get_query_results_as_dict", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "model.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty_stg__perk", "model.yoda.analytics___loyalty_stg__earning_rule", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__flow", "model.yoda.analytics___sms_stg__campaign", "model.yoda.analytics___sms_stg__campaign_relation", "model.yoda.analytics___sms_stg__default_predefined_message", "model.yoda.analytics___sms_stg__campaign_list", "model.yoda.analytics___sms_stg__list", "model.yoda.analytics___sms_stg__shopify_segment", "model.yoda.analytics___subscriptions_stg__customer_journey_event", "model.yoda.analytics___subscriptions_stg__subscriptions_store", "model.yoda.analytics___synergies_stg__synergy_widget"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.sql", "compiled": true, "compiled_code": "\n\n-- Variables --\n\n\n \n\n\n\n\n\n\n-- Import --\n\nWITH import_static_loyalty_earning_rule_types_for_synergy_activeness AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness\n),\n\nimport_static_sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness\n),\n\nimport_static_sms_flow_triggers_for_synergy_activeness AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness\n),\n\nimport_static_sms_flow_triggers_to_filter_for_custom_loyalty_activeness AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness\n),\n\nimport_static_sms_predefined_message_sub_category_for_synergy_activeness AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness\n),\n\nimport_loyalty__merchant AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty__merchant\n),\n\nimport_loyalty_perk AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty_stg__perk\nWHERE DATE(awarded_at) BETWEEN DATE('2021-01-01') AND DATE('2021-06-30')\n),\n\nimport_loyalty_earning_rule AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty_stg__earning_rule\n),\n\nimport_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\nimport_sms_apicalls AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\nWHERE created_date BETWEEN DATE('2021-01-01') AND DATE('2021-06-30')\n),\n\nimport_sms_flow AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__flow\n),\n\nimport_sms_campaign AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__campaign\n),\n\nimport_sms_campaign_relation AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__campaign_relation\n),\n\nimport_sms_default_predefined_message AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__default_predefined_message\n),\n\nimport_sms_campaign_list AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__campaign_list\n),\n\nimport_sms_list AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__list\n),\n\nimport_sms_shopify_segment AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__shopify_segment\n),\n\nimport_subscriptions_customer_journey_event AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__customer_journey_event\nWHERE DATE(event_time) BETWEEN DATE('2021-01-01') AND DATE('2021-06-30')\n),\n\nimport_subscriptions_store AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__subscriptions_store\n),\n\nimport_synergy_widget AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__synergy_widget\n),\n\n-- Logic --\n\nloyalty_earning_rule_daily_active AS (\nSELECT DISTINCT\n merchants.app_key,\n DATE(perk.awarded_at) AS activeness_date,\n types.synergy_id\nFROM import_loyalty__merchant AS merchants\nINNER JOIN import_loyalty_perk AS perk\n ON merchants.merchant_id = perk.merchant_id\nINNER JOIN import_loyalty_earning_rule AS earning_rule \n ON perk.earning_rule_id = earning_rule.earning_rule_id\nINNER JOIN import_static_loyalty_earning_rule_types_for_synergy_activeness AS types\n ON LOWER(earning_rule.earning_rule_type) = types.earning_rule_type\nAND perk.is_awarded = 1\n),\n\nsms_flows_daily_active AS (\nSELECT DISTINCT\n stores.app_key,\n apicalls.created_date AS activeness_date,\n triggers.synergy_id\nFROM import_sms_flow AS flows\nINNER JOIN import_static_sms_flow_triggers_for_synergy_activeness AS triggers\n ON LOWER(flows.flow_trigger) = triggers.flow_trigger\nINNER JOIN import_sms_apicalls AS apicalls\n ON flows.flow_id = apicalls.flow_id\nINNER JOIN import_sms_store AS stores\n ON apicalls.sms_user_id = stores.sms_user_id\nWHERE apicalls.price_billed_in_usd > 0\nAND apicalls.flow_id <> 0\nAND NOT (LOWER(flows.flow_trigger) = 'checkouts/create' \n AND LOWER(flows.flow_settings) NOT LIKE '%{yotpostarrating}%')\n),\n\nsms_flows_custom_loyalty_daily_active AS (\nSELECT DISTINCT\n stores.app_key,\n apicalls.created_date AS activeness_date,\n 142 AS synergy_id\nFROM import_sms_flow AS flows\nINNER JOIN import_static_sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness AS flow_set\n ON LOWER(flows.flow_settings) LIKE flow_set.flow_settings\nINNER JOIN import_sms_apicalls AS apicalls\n ON flows.flow_id = apicalls.flow_id\nINNER JOIN import_sms_store AS stores \n ON apicalls.sms_user_id = stores.sms_user_id\nLEFT JOIN import_static_sms_flow_triggers_to_filter_for_custom_loyalty_activeness AS flow_triggers_to_filter\n ON LOWER(flows.flow_trigger) = flow_triggers_to_filter.flow_trigger\nWHERE flow_triggers_to_filter.flow_trigger IS NULL\nAND apicalls.price_billed_in_usd > 0\nAND apicalls.flow_id <> 0\n),\n\nsms_campaigns_send_dates AS (\nSELECT DISTINCT \n apicalls.campaign_id,\n apicalls.sms_user_id,\n apicalls.created_date AS send_date\nFROM import_sms_apicalls AS apicalls\nWHERE apicalls.campaign_id <> 0\nAND apicalls.price_billed_in_usd > 0\n),\n\nloyalty_template_sms_campaigns AS (\nSELECT DISTINCT \n campaign.campaign_id,\n activeness.sub_category,\n activeness.synergy_id\nFROM import_sms_campaign AS campaign\nINNER JOIN import_sms_campaign_relation AS campaign_relation\n ON campaign.campaign_id = campaign_relation.campaign_id\nINNER JOIN import_sms_default_predefined_message AS predefined_msgs\n ON campaign_relation.template_id = predefined_msgs.template_id\nINNER JOIN import_static_sms_predefined_message_sub_category_for_synergy_activeness AS activeness\n ON LOWER(predefined_msgs.sub_category) = activeness.sub_category\nWHERE LOWER(campaign_relation.template_type) = 'defaultpredefinedmessages' \nAND LOWER(predefined_msgs.category) = 'yotpo-loyalty' \n),\n\nloyalty_template_sms_campaigns_daily_active AS (\nSELECT DISTINCT\n stores.app_key,\n send_dates.send_date AS activeness_date,\n campaigns.synergy_id\nFROM sms_campaigns_send_dates AS send_dates\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\nINNER JOIN loyalty_template_sms_campaigns AS campaigns\n ON send_dates.campaign_id = campaigns.campaign_id\n),\n\nloyalty_custom_sms_campaigns AS (\nSELECT DISTINCT campaign.campaign_id\nFROM import_sms_campaign AS campaign\nINNER JOIN import_sms_campaign_list AS campaign_lists\n ON campaign.campaign_id = campaign_lists.campaign_id\nINNER JOIN import_sms_list AS lists \n ON campaign_lists.list_id = lists.list_id\nINNER JOIN import_sms_shopify_segment AS segments\n ON lists.segment_id = segments.segment_id\nLEFT JOIN loyalty_template_sms_campaigns AS template\n ON template.campaign_id = campaign.campaign_id\nWHERE LOWER(segments.segment_rules) LIKE '%loyalty%'\nAND LOWER(segments.segment_rules) NOT LIKE '%loyaltylion%'\nAND template.campaign_id IS NULL\n),\n\nloyalty_custom_sms_campaigns_daily_active AS (\nSELECT DISTINCT\n stores.app_key,\n send_dates.send_date AS activeness_date,\n 143 AS synergy_id\nFROM sms_campaigns_send_dates AS send_dates\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\nINNER JOIN loyalty_custom_sms_campaigns AS campaigns\n ON send_dates.campaign_id = campaigns.campaign_id\n),\n\nsms_campaigns_to_grow_subscriptions AS (\nSELECT DISTINCT campaign_lists.campaign_id\nFROM import_sms_campaign_list AS campaign_lists\nINNER JOIN import_sms_list AS lists \n ON campaign_lists.list_id = lists.list_id\nINNER JOIN import_sms_shopify_segment AS segments\n ON lists.segment_id = segments.segment_id\nWHERE LOWER(segments.segment_rules) LIKE '%has_not_active_subscription%'\n),\n\nsms_campaign_to_grow_product_subscribers_daily_active AS (\nSELECT DISTINCT\n stores.app_key,\n send_dates.send_date AS activeness_date,\n 95 AS synergy_id\nFROM sms_campaigns_to_grow_subscriptions AS campaigns\nINNER JOIN sms_campaigns_send_dates AS send_dates \n ON send_dates.campaign_id = campaigns.campaign_id\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\n),\n\nredemption_events_in_subscriptions AS (\nSELECT\n journey.app_key,\n DATE(journey.event_time) AS event_date,\n GET_JSON_OBJECT(journey.event_properties, '$.Coupon code') AS coupon_code,\n journey.event_type\nFROM import_subscriptions_customer_journey_event AS journey\nINNER JOIN import_subscriptions_store AS stores\n ON journey.app_key = stores.app_key\nWHERE LOWER(journey.source_domain) = 'subscriptions'\nAND LOWER(journey.event_type) IN ('customer redeemed points for a reward on this subscription',\n 'merchant redeemed points for a reward on this subscription')\n),\n\nredemption_cancellation_events_in_subscriptions AS (\nSELECT \n journey.app_key,\n DATE(journey.event_time) AS event_date,\n GET_JSON_OBJECT(journey.event_properties, '$.Coupon code') AS coupon_code,\n journey.event_type\nFROM import_subscriptions_customer_journey_event AS journey\nINNER JOIN import_subscriptions_store AS stores\n ON journey.app_key = stores.app_key\nWHERE LOWER(journey.source_domain) = 'subscriptions'\nAND LOWER(journey.event_type) IN ('customer canceled redemption',\n 'merchant canceled redemption')\n),\n\nloyalty_subscription_discount_reward_daily_active AS (\nSELECT DISTINCT \n events.app_key,\n events.event_date AS activeness_date,\n 71 AS synergy_id\nFROM redemption_events_in_subscriptions AS events\nLEFT JOIN redemption_cancellation_events_in_subscriptions AS cancel_events\n ON events.coupon_code = cancel_events.coupon_code\nWHERE cancel_events.coupon_code IS NULL\n),\n\ndaily_active_synergies_union AS (\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM loyalty_earning_rule_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM sms_flows_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM sms_flows_custom_loyalty_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM loyalty_template_sms_campaigns_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM loyalty_custom_sms_campaigns_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM sms_campaign_to_grow_product_subscribers_daily_active\nUNION ALL\nSELECT \n app_key,\n activeness_date,\n synergy_id\nFROM loyalty_subscription_discount_reward_daily_active\n),\n\nstore_activeness_daily_res AS (\nSELECT\n daily_active.synergy_id,\n widget.widget_name AS synergy_name,\n daily_active.activeness_date,\n daily_active.app_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM daily_active_synergies_union AS daily_active\nINNER JOIN import_synergy_widget AS widget\n ON daily_active.synergy_id = widget.widget_id\nWHERE activeness_date BETWEEN DATE('2021-01-01') AND DATE('2021-06-30')\n)\n\n-- Result --\n\nSELECT *\nFROM store_activeness_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__store_activeness_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__store_activeness_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.sql", "unique_id": "model.yoda.analytics___synergies__store_activeness_monthly", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_monthly", "analytics___synergies__store_activeness_monthly"], "alias": "analytics___synergies__store_activeness_monthly", "checksum": {"name": "sha256", "checksum": "dc561ab88de6cb62cbd5a0d04657fd2576907140a4fa11ca2c49e3c50aa9f9af"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled table of stores synergy activeness per month | PK and granularity: app_key, synergy_id, synergy_month", "columns": {"app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_month": {"name": "synergy_month", "description": "month of synergy activeness - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "synergy_name": {"name": "synergy_name", "description": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active_mtd": {"name": "is_active_mtd", "description": "store synergy mtd active indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082662.1902018, "relation_name": "dev_dkruh1.analytics___synergies__store_activeness_monthly", "raw_code": "-- Import --\n\nWITH import_loyalty_perk AS (\nSELECT * FROM {{ ref('analytics___loyalty_stg__perk') }}\n),\n\nimport_loyalty_earning_rule AS (\nSELECT * FROM {{ ref('analytics___loyalty_stg__earning_rule') }}\n),\n\nimport_loyalty__merchant AS (\nSELECT * FROM {{ ref('analytics___loyalty__merchant') }}\n),\n\nimport_sms_apicalls AS (\nSELECT * FROM {{ ref('analytics___sms_stg__api_calls') }}\n),\n\nimport_sms_flow AS (\nSELECT * FROM {{ ref('analytics___sms_stg__flow') }}\n),\n\nimport_sms_campaign AS (\nSELECT * FROM {{ ref('analytics___sms_stg__campaign') }}\n),\n\nimport_sms_store AS (\nSELECT * FROM {{ ref('analytics___sms__store') }}\n),\n\nimport_sms_campaign_relation AS (\nSELECT * FROM {{ ref('analytics___sms_stg__campaign_relation') }}\n),\n\nimport_sms_default_predefined_message AS (\nSELECT * FROM {{ ref('analytics___sms_stg__default_predefined_message') }}\n),\n\nimport_sms_campaign_list AS (\nSELECT * FROM {{ ref('analytics___sms_stg__campaign_list') }}\n),\n\nimport_sms_list AS (\nSELECT * FROM {{ ref('analytics___sms_stg__list') }}\n),\n\nimport_sms_shopify_segment AS (\nSELECT * FROM {{ ref('analytics___sms_stg__shopify_segment') }}\n),\n\nimport_subscriptions_customer_journey_event AS (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__customer_journey_event') }}\n),\n\nimport_subscriptions_store AS (\nSELECT * FROM {{ ref('analytics___subscriptions_stg__subscriptions_store') }}\n),\n\nimport_homescreen_widgets AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__home_screen_widget') }}\n),\n\nimport_homescreen_sections AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__home_screen_section') }}\n),\n\n-- Logic --\n\nloyalty_earning_rule_monthly_active AS (\nSELECT \n merchants.app_key,\n TRUNC(perk.awarded_at,'MONTH') AS synergy_month,\n CASE LOWER(earning_rule.earning_rule_type)\n WHEN 'yotporeviewcampaign' THEN 107 \n WHEN 'yotporeviewimagecampaign' THEN 117 \n WHEN 'yotporeviewvideocampaign' THEN 118 \n WHEN 'smssignupcampaign' THEN 106 END AS synergy_id,\n IF(DAY(MIN(perk.awarded_at)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM import_loyalty_perk AS perk\nINNER JOIN import_loyalty_earning_rule AS earning_rule \n ON perk.earning_rule_id = earning_rule.earning_rule_id\nINNER JOIN import_loyalty__merchant AS merchants\n ON merchants.merchant_id = perk.merchant_id\nWHERE LOWER(earning_rule.earning_rule_type) IN ('yotporeviewcampaign','yotporeviewimagecampaign','yotporeviewvideocampaign','smssignupcampaign') \nAND perk.is_awarded = 1\nGROUP BY 1,2,3\n),\n\nsms_flows_monthly_active AS (\nSELECT \n stores.app_key,\n TRUNC(apicalls.created_date,'MONTH') AS synergy_month,\n CASE LOWER(flows.flow_trigger)\n WHEN 'integrations/swell_redemption_reminder' THEN 77\n WHEN 'integrations/swell_tier_earned' THEN 78\n WHEN 'integrations/swell_birthday' THEN 79\n WHEN 'integrations/swell_points_reminder' THEN 80\n WHEN 'integrations/cdp_optin_status_changed' THEN 81\n WHEN 'integrations/cdp_redemption_created' THEN 82 \n WHEN 'yotpo_subscriptions/manage_subscriptions' THEN 98\n WHEN 'yotpo_subscriptions/renewal_reminder' THEN 99 \n WHEN 'yotpo_subscriptions/payment_problem' THEN 100\n WHEN 'yotpo_subscriptions/cancellation' THEN 101 \n WHEN 'yotpo_subscriptions/confirmation' THEN 102 \n WHEN 'integrations/yotpo_product_review' THEN 108 \n WHEN 'integrations/yotpo_site_review' THEN 109 \n WHEN 'checkouts/create' THEN 137 END AS synergy_id,\n IF(DAY(MIN(apicalls.created_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM import_sms_apicalls AS apicalls\nINNER JOIN import_sms_flow AS flows\n ON apicalls.flow_id = flows.flow_id\nINNER JOIN import_sms_store AS stores \n ON apicalls.sms_user_id = stores.sms_user_id\nWHERE (LOWER(flows.flow_trigger) IN ('integrations/swell_redemption_reminder',\n 'integrations/swell_tier_earned',\n 'integrations/swell_birthday',\n 'integrations/swell_points_reminder',\n 'integrations/cdp_optin_status_changed',\n 'integrations/cdp_redemption_created',\n 'yotpo_subscriptions/payment_problem',\n 'yotpo_subscriptions/manage_subscriptions',\n 'yotpo_subscriptions/renewal_reminder',\n 'yotpo_subscriptions/cancellation',\n 'yotpo_subscriptions/confirmation',\n 'integrations/yotpo_product_review',\n 'integrations/yotpo_site_review')\nOR (LOWER(flows.flow_trigger) = 'checkouts/create' AND LOWER(flows.flow_settings) LIKE '%{yotpostarrating}%'))\nAND apicalls.price_billed_in_usd > 0\nAND apicalls.flow_id <> 0\nGROUP BY 1,2,3\n),\n\nsms_flows_custom_loyalty_monthly_active AS (\nSELECT \n stores.app_key,\n TRUNC(apicalls.created_date,'MONTH') AS synergy_month,\n 142 AS synergy_id,\n IF(DAY(MIN(apicalls.created_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM import_sms_apicalls AS apicalls\nINNER JOIN import_sms_flow AS flows\n ON apicalls.flow_id = flows.flow_id\nINNER JOIN import_sms_store AS stores \n ON apicalls.sms_user_id = stores.sms_user_id\nWHERE LOWER(flows.flow_trigger) NOT IN ('integrations/swell_redemption_reminder',\n 'integrations/swell_tier_earned',\n 'integrations/swell_birthday',\n 'integrations/swell_points_reminder',\n 'integrations/cdp_optin_status_changed',\n 'integrations/cdp_redemption_created')\nAND (LOWER(flows.flow_settings) LIKE '%\"field\":\"loyalty.%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty points balance}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty points expiration}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty credit balance}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty tier name}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty tier expiration}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty points in tier}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty amount spent in tier (usd)}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty points needed to maintain tier}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty amount needed to maintain tier (usd)}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty points needed for next tier}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty amount needed for next tier (usd)}%'\nOR LOWER(flows.flow_settings) LIKE '%{rewardredemptionurl}%'\nOR LOWER(flows.flow_settings) LIKE '%{costinpoints}%'\nOR LOWER(flows.flow_settings) LIKE '%{redeemablereward}%')\nAND apicalls.price_billed_in_usd > 0\nAND apicalls.flow_id <> 0\nGROUP BY 1,2,3\n),\n\nsms_campaigns_send_dates AS (\nSELECT \n apicalls.campaign_id,\n apicalls.sms_user_id,\n MIN(apicalls.created_date) AS send_date\nFROM import_sms_apicalls AS apicalls\nWHERE apicalls.campaign_id <> 0\nAND apicalls.price_billed_in_usd > 0\nGROUP BY 1,2\n),\n\nloyalty_template_sms_campaigns AS (\nSELECT DISTINCT campaign.campaign_id,\n LOWER(predefined_msgs.sub_category) AS sub_category\nFROM import_sms_campaign AS campaign\nINNER JOIN import_sms_campaign_relation AS campaign_relation\n ON campaign.campaign_id = campaign_relation.campaign_id\nINNER JOIN import_sms_default_predefined_message AS predefined_msgs\n ON campaign_relation.template_id = predefined_msgs.template_id\nWHERE LOWER(campaign_relation.template_type) = 'defaultpredefinedmessages' \nAND LOWER(predefined_msgs.category) = 'yotpo-loyalty' \nAND LOWER(predefined_msgs.sub_category) IN ('reward-program', 'vip-tier', 'redemption-reminder', 'free-shipping', 'redeem-points')\n),\n\nloyalty_custom_sms_campaigns AS (\nSELECT DISTINCT campaign.campaign_id\nFROM import_sms_campaign AS campaign\nINNER JOIN import_sms_campaign_list AS campaign_lists\n ON campaign.campaign_id = campaign_lists.campaign_id\nINNER JOIN import_sms_list AS lists \n ON campaign_lists.list_id = lists.list_id\nINNER JOIN import_sms_shopify_segment AS segments\n ON lists.segment_id = segments.segment_id\nLEFT JOIN loyalty_template_sms_campaigns AS template\n ON template.campaign_id = campaign.campaign_id\nWHERE LOWER(segments.segment_rules) LIKE '%loyalty%'\nAND LOWER(segments.segment_rules) NOT LIKE '%loyaltylion%'\nAND template.campaign_id IS NULL\n),\n\nloyalty_template_sms_campaigns_monthly_active AS (\nSELECT \n stores.app_key,\n TRUNC(send_dates.send_date,'MONTH') AS synergy_month,\n CASE LOWER(campaigns.sub_category)\n WHEN 'redeem-points' THEN 97\n WHEN 'vip-tier' THEN 103\n WHEN 'redemption-reminder' THEN 111\n WHEN 'free-shipping' THEN 110\n WHEN 'reward-program' THEN 112 END AS synergy_id,\n IF(DAY(MIN(send_dates.send_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM sms_campaigns_send_dates AS send_dates\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\nINNER JOIN loyalty_template_sms_campaigns AS campaigns\n ON send_dates.campaign_id = campaigns.campaign_id\nGROUP BY 1,2,3\n),\n\nloyalty_custom_sms_campaigns_monthly_active AS (\nSELECT \n stores.app_key,\n TRUNC(send_dates.send_date,'MONTH') AS synergy_month,\n 143 AS synergy_id,\n IF(DAY(MIN(send_dates.send_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM sms_campaigns_send_dates AS send_dates\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\nINNER JOIN loyalty_custom_sms_campaigns AS campaigns\n ON send_dates.campaign_id = campaigns.campaign_id\nGROUP BY 1,2,3\n),\n\nsms_campaigns_to_grow_subscriptions AS (\nSELECT DISTINCT campaign_lists.campaign_id\nFROM import_sms_campaign_list AS campaign_lists\nINNER JOIN import_sms_list AS lists \n ON campaign_lists.list_id = lists.list_id\nINNER JOIN import_sms_shopify_segment AS segments\n ON lists.segment_id = segments.segment_id\nWHERE LOWER(segments.segment_rules) LIKE '%has_not_active_subscription%'\n),\n\nsms_campaign_to_grow_product_subscribers_monthly_active AS (\nSELECT \n stores.app_key,\n TRUNC(send_dates.send_date,'MONTH') AS synergy_month,\n 95 AS synergy_id,\n IF(DAY(MIN(send_dates.send_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM sms_campaigns_to_grow_subscriptions AS campaigns\nINNER JOIN sms_campaigns_send_dates AS send_dates \n ON send_dates.campaign_id = campaigns.campaign_id\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\nGROUP BY 1,2,3\n),\n\nredemption_events_in_subscriptions AS (\nSELECT\n journey.app_key,\n DATE(journey.event_time) AS event_date,\n GET_JSON_OBJECT(journey.event_properties, '$.Coupon code') AS coupon_code,\n journey.event_type\nFROM import_subscriptions_customer_journey_event AS journey\nINNER JOIN import_subscriptions_store AS stores\n ON journey.app_key = stores.app_key\nWHERE LOWER(journey.source_domain) = 'subscriptions'\nAND LOWER(journey.event_type) IN ('customer redeemed points for a reward on this subscription',\n 'merchant redeemed points for a reward on this subscription')\n),\n\nredemption_cancellation_events_in_subscriptions AS (\nSELECT \n journey.app_key,\n DATE(journey.event_time) AS event_date,\n GET_JSON_OBJECT(journey.event_properties, '$.Coupon code') AS coupon_code,\n journey.event_type\nFROM import_subscriptions_customer_journey_event AS journey\nINNER JOIN import_subscriptions_store AS stores\n ON journey.app_key = stores.app_key\nWHERE LOWER(journey.source_domain) = 'subscriptions'\nAND LOWER(journey.event_type) IN ('customer canceled redemption',\n 'merchant canceled redemption')\n),\n\nloyalty_subscription_discount_reward_monthly_active AS (\nSELECT \n events.app_key,\n TRUNC(events.event_date,'MONTH') AS synergy_month,\n 71 AS synergy_id,\n IF(DAY(MIN(events.event_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM redemption_events_in_subscriptions AS events\nLEFT JOIN redemption_cancellation_events_in_subscriptions AS cancel_events\n ON events.coupon_code = cancel_events.coupon_code\nWHERE cancel_events.coupon_code IS NULL\nGROUP BY 1,2,3\n),\n\nmonthly_active_synergies_union AS (\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM loyalty_earning_rule_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM sms_flows_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM sms_flows_custom_loyalty_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM loyalty_template_sms_campaigns_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM loyalty_custom_sms_campaigns_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM sms_campaign_to_grow_product_subscribers_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM loyalty_subscription_discount_reward_monthly_active\n),\n\nmonthly_active_synergies_res AS (\nSELECT\n monthly_active.app_key,\n monthly_active.synergy_month,\n monthly_active.synergy_id,\n widgets.widget_name AS synergy_name,\n monthly_active.is_active_mtd,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM monthly_active_synergies_union AS monthly_active\nINNER JOIN import_homescreen_widgets AS widgets \n ON widgets.widget_id = monthly_active.synergy_id\nINNER JOIN import_homescreen_sections AS sections\n ON sections.section_id = widgets.section_id\nWHERE LOWER(sections.section_name) = 'synergies'\n)\n-- Result --\n\nSELECT *\nFROM monthly_active_synergies_res", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__perk", "package": null, "version": null}, {"name": "analytics___loyalty_stg__earning_rule", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}, {"name": "analytics___sms_stg__api_calls", "package": null, "version": null}, {"name": "analytics___sms_stg__flow", "package": null, "version": null}, {"name": "analytics___sms_stg__campaign", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___sms_stg__campaign_relation", "package": null, "version": null}, {"name": "analytics___sms_stg__default_predefined_message", "package": null, "version": null}, {"name": "analytics___sms_stg__campaign_list", "package": null, "version": null}, {"name": "analytics___sms_stg__list", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_segment", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__customer_journey_event", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__subscriptions_store", "package": null, "version": null}, {"name": "analytics___synergies_stg__home_screen_widget", "package": null, "version": null}, {"name": "analytics___synergies_stg__home_screen_section", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___loyalty_stg__perk", "model.yoda.analytics___loyalty_stg__earning_rule", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__flow", "model.yoda.analytics___sms_stg__campaign", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms_stg__campaign_relation", "model.yoda.analytics___sms_stg__default_predefined_message", "model.yoda.analytics___sms_stg__campaign_list", "model.yoda.analytics___sms_stg__list", "model.yoda.analytics___sms_stg__shopify_segment", "model.yoda.analytics___subscriptions_stg__customer_journey_event", "model.yoda.analytics___subscriptions_stg__subscriptions_store", "model.yoda.analytics___synergies_stg__home_screen_widget", "model.yoda.analytics___synergies_stg__home_screen_section"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_loyalty_perk AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty_stg__perk\n),\n\nimport_loyalty_earning_rule AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty_stg__earning_rule\n),\n\nimport_loyalty__merchant AS (\nSELECT * FROM dev_dkruh1.analytics___loyalty__merchant\n),\n\nimport_sms_apicalls AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__api_calls\n),\n\nimport_sms_flow AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__flow\n),\n\nimport_sms_campaign AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__campaign\n),\n\nimport_sms_store AS (\nSELECT * FROM dev_dkruh1.analytics___sms__store\n),\n\nimport_sms_campaign_relation AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__campaign_relation\n),\n\nimport_sms_default_predefined_message AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__default_predefined_message\n),\n\nimport_sms_campaign_list AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__campaign_list\n),\n\nimport_sms_list AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__list\n),\n\nimport_sms_shopify_segment AS (\nSELECT * FROM dev_dkruh1.analytics___sms_stg__shopify_segment\n),\n\nimport_subscriptions_customer_journey_event AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__customer_journey_event\n),\n\nimport_subscriptions_store AS (\nSELECT * FROM dev_dkruh1.analytics___subscriptions_stg__subscriptions_store\n),\n\nimport_homescreen_widgets AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__home_screen_widget\n),\n\nimport_homescreen_sections AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__home_screen_section\n),\n\n-- Logic --\n\nloyalty_earning_rule_monthly_active AS (\nSELECT \n merchants.app_key,\n TRUNC(perk.awarded_at,'MONTH') AS synergy_month,\n CASE LOWER(earning_rule.earning_rule_type)\n WHEN 'yotporeviewcampaign' THEN 107 \n WHEN 'yotporeviewimagecampaign' THEN 117 \n WHEN 'yotporeviewvideocampaign' THEN 118 \n WHEN 'smssignupcampaign' THEN 106 END AS synergy_id,\n IF(DAY(MIN(perk.awarded_at)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM import_loyalty_perk AS perk\nINNER JOIN import_loyalty_earning_rule AS earning_rule \n ON perk.earning_rule_id = earning_rule.earning_rule_id\nINNER JOIN import_loyalty__merchant AS merchants\n ON merchants.merchant_id = perk.merchant_id\nWHERE LOWER(earning_rule.earning_rule_type) IN ('yotporeviewcampaign','yotporeviewimagecampaign','yotporeviewvideocampaign','smssignupcampaign') \nAND perk.is_awarded = 1\nGROUP BY 1,2,3\n),\n\nsms_flows_monthly_active AS (\nSELECT \n stores.app_key,\n TRUNC(apicalls.created_date,'MONTH') AS synergy_month,\n CASE LOWER(flows.flow_trigger)\n WHEN 'integrations/swell_redemption_reminder' THEN 77\n WHEN 'integrations/swell_tier_earned' THEN 78\n WHEN 'integrations/swell_birthday' THEN 79\n WHEN 'integrations/swell_points_reminder' THEN 80\n WHEN 'integrations/cdp_optin_status_changed' THEN 81\n WHEN 'integrations/cdp_redemption_created' THEN 82 \n WHEN 'yotpo_subscriptions/manage_subscriptions' THEN 98\n WHEN 'yotpo_subscriptions/renewal_reminder' THEN 99 \n WHEN 'yotpo_subscriptions/payment_problem' THEN 100\n WHEN 'yotpo_subscriptions/cancellation' THEN 101 \n WHEN 'yotpo_subscriptions/confirmation' THEN 102 \n WHEN 'integrations/yotpo_product_review' THEN 108 \n WHEN 'integrations/yotpo_site_review' THEN 109 \n WHEN 'checkouts/create' THEN 137 END AS synergy_id,\n IF(DAY(MIN(apicalls.created_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM import_sms_apicalls AS apicalls\nINNER JOIN import_sms_flow AS flows\n ON apicalls.flow_id = flows.flow_id\nINNER JOIN import_sms_store AS stores \n ON apicalls.sms_user_id = stores.sms_user_id\nWHERE (LOWER(flows.flow_trigger) IN ('integrations/swell_redemption_reminder',\n 'integrations/swell_tier_earned',\n 'integrations/swell_birthday',\n 'integrations/swell_points_reminder',\n 'integrations/cdp_optin_status_changed',\n 'integrations/cdp_redemption_created',\n 'yotpo_subscriptions/payment_problem',\n 'yotpo_subscriptions/manage_subscriptions',\n 'yotpo_subscriptions/renewal_reminder',\n 'yotpo_subscriptions/cancellation',\n 'yotpo_subscriptions/confirmation',\n 'integrations/yotpo_product_review',\n 'integrations/yotpo_site_review')\nOR (LOWER(flows.flow_trigger) = 'checkouts/create' AND LOWER(flows.flow_settings) LIKE '%{yotpostarrating}%'))\nAND apicalls.price_billed_in_usd > 0\nAND apicalls.flow_id <> 0\nGROUP BY 1,2,3\n),\n\nsms_flows_custom_loyalty_monthly_active AS (\nSELECT \n stores.app_key,\n TRUNC(apicalls.created_date,'MONTH') AS synergy_month,\n 142 AS synergy_id,\n IF(DAY(MIN(apicalls.created_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM import_sms_apicalls AS apicalls\nINNER JOIN import_sms_flow AS flows\n ON apicalls.flow_id = flows.flow_id\nINNER JOIN import_sms_store AS stores \n ON apicalls.sms_user_id = stores.sms_user_id\nWHERE LOWER(flows.flow_trigger) NOT IN ('integrations/swell_redemption_reminder',\n 'integrations/swell_tier_earned',\n 'integrations/swell_birthday',\n 'integrations/swell_points_reminder',\n 'integrations/cdp_optin_status_changed',\n 'integrations/cdp_redemption_created')\nAND (LOWER(flows.flow_settings) LIKE '%\"field\":\"loyalty.%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty points balance}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty points expiration}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty credit balance}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty tier name}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty tier expiration}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty points in tier}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty amount spent in tier (usd)}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty points needed to maintain tier}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty amount needed to maintain tier (usd)}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty points needed for next tier}%'\nOR LOWER(flows.flow_settings) LIKE '%{loyalty amount needed for next tier (usd)}%'\nOR LOWER(flows.flow_settings) LIKE '%{rewardredemptionurl}%'\nOR LOWER(flows.flow_settings) LIKE '%{costinpoints}%'\nOR LOWER(flows.flow_settings) LIKE '%{redeemablereward}%')\nAND apicalls.price_billed_in_usd > 0\nAND apicalls.flow_id <> 0\nGROUP BY 1,2,3\n),\n\nsms_campaigns_send_dates AS (\nSELECT \n apicalls.campaign_id,\n apicalls.sms_user_id,\n MIN(apicalls.created_date) AS send_date\nFROM import_sms_apicalls AS apicalls\nWHERE apicalls.campaign_id <> 0\nAND apicalls.price_billed_in_usd > 0\nGROUP BY 1,2\n),\n\nloyalty_template_sms_campaigns AS (\nSELECT DISTINCT campaign.campaign_id,\n LOWER(predefined_msgs.sub_category) AS sub_category\nFROM import_sms_campaign AS campaign\nINNER JOIN import_sms_campaign_relation AS campaign_relation\n ON campaign.campaign_id = campaign_relation.campaign_id\nINNER JOIN import_sms_default_predefined_message AS predefined_msgs\n ON campaign_relation.template_id = predefined_msgs.template_id\nWHERE LOWER(campaign_relation.template_type) = 'defaultpredefinedmessages' \nAND LOWER(predefined_msgs.category) = 'yotpo-loyalty' \nAND LOWER(predefined_msgs.sub_category) IN ('reward-program', 'vip-tier', 'redemption-reminder', 'free-shipping', 'redeem-points')\n),\n\nloyalty_custom_sms_campaigns AS (\nSELECT DISTINCT campaign.campaign_id\nFROM import_sms_campaign AS campaign\nINNER JOIN import_sms_campaign_list AS campaign_lists\n ON campaign.campaign_id = campaign_lists.campaign_id\nINNER JOIN import_sms_list AS lists \n ON campaign_lists.list_id = lists.list_id\nINNER JOIN import_sms_shopify_segment AS segments\n ON lists.segment_id = segments.segment_id\nLEFT JOIN loyalty_template_sms_campaigns AS template\n ON template.campaign_id = campaign.campaign_id\nWHERE LOWER(segments.segment_rules) LIKE '%loyalty%'\nAND LOWER(segments.segment_rules) NOT LIKE '%loyaltylion%'\nAND template.campaign_id IS NULL\n),\n\nloyalty_template_sms_campaigns_monthly_active AS (\nSELECT \n stores.app_key,\n TRUNC(send_dates.send_date,'MONTH') AS synergy_month,\n CASE LOWER(campaigns.sub_category)\n WHEN 'redeem-points' THEN 97\n WHEN 'vip-tier' THEN 103\n WHEN 'redemption-reminder' THEN 111\n WHEN 'free-shipping' THEN 110\n WHEN 'reward-program' THEN 112 END AS synergy_id,\n IF(DAY(MIN(send_dates.send_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM sms_campaigns_send_dates AS send_dates\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\nINNER JOIN loyalty_template_sms_campaigns AS campaigns\n ON send_dates.campaign_id = campaigns.campaign_id\nGROUP BY 1,2,3\n),\n\nloyalty_custom_sms_campaigns_monthly_active AS (\nSELECT \n stores.app_key,\n TRUNC(send_dates.send_date,'MONTH') AS synergy_month,\n 143 AS synergy_id,\n IF(DAY(MIN(send_dates.send_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM sms_campaigns_send_dates AS send_dates\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\nINNER JOIN loyalty_custom_sms_campaigns AS campaigns\n ON send_dates.campaign_id = campaigns.campaign_id\nGROUP BY 1,2,3\n),\n\nsms_campaigns_to_grow_subscriptions AS (\nSELECT DISTINCT campaign_lists.campaign_id\nFROM import_sms_campaign_list AS campaign_lists\nINNER JOIN import_sms_list AS lists \n ON campaign_lists.list_id = lists.list_id\nINNER JOIN import_sms_shopify_segment AS segments\n ON lists.segment_id = segments.segment_id\nWHERE LOWER(segments.segment_rules) LIKE '%has_not_active_subscription%'\n),\n\nsms_campaign_to_grow_product_subscribers_monthly_active AS (\nSELECT \n stores.app_key,\n TRUNC(send_dates.send_date,'MONTH') AS synergy_month,\n 95 AS synergy_id,\n IF(DAY(MIN(send_dates.send_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM sms_campaigns_to_grow_subscriptions AS campaigns\nINNER JOIN sms_campaigns_send_dates AS send_dates \n ON send_dates.campaign_id = campaigns.campaign_id\nINNER JOIN import_sms_store AS stores \n ON send_dates.sms_user_id = stores.sms_user_id\nGROUP BY 1,2,3\n),\n\nredemption_events_in_subscriptions AS (\nSELECT\n journey.app_key,\n DATE(journey.event_time) AS event_date,\n GET_JSON_OBJECT(journey.event_properties, '$.Coupon code') AS coupon_code,\n journey.event_type\nFROM import_subscriptions_customer_journey_event AS journey\nINNER JOIN import_subscriptions_store AS stores\n ON journey.app_key = stores.app_key\nWHERE LOWER(journey.source_domain) = 'subscriptions'\nAND LOWER(journey.event_type) IN ('customer redeemed points for a reward on this subscription',\n 'merchant redeemed points for a reward on this subscription')\n),\n\nredemption_cancellation_events_in_subscriptions AS (\nSELECT \n journey.app_key,\n DATE(journey.event_time) AS event_date,\n GET_JSON_OBJECT(journey.event_properties, '$.Coupon code') AS coupon_code,\n journey.event_type\nFROM import_subscriptions_customer_journey_event AS journey\nINNER JOIN import_subscriptions_store AS stores\n ON journey.app_key = stores.app_key\nWHERE LOWER(journey.source_domain) = 'subscriptions'\nAND LOWER(journey.event_type) IN ('customer canceled redemption',\n 'merchant canceled redemption')\n),\n\nloyalty_subscription_discount_reward_monthly_active AS (\nSELECT \n events.app_key,\n TRUNC(events.event_date,'MONTH') AS synergy_month,\n 71 AS synergy_id,\n IF(DAY(MIN(events.event_date)) < DAY(CURRENT_DATE),1,0) AS is_active_mtd\nFROM redemption_events_in_subscriptions AS events\nLEFT JOIN redemption_cancellation_events_in_subscriptions AS cancel_events\n ON events.coupon_code = cancel_events.coupon_code\nWHERE cancel_events.coupon_code IS NULL\nGROUP BY 1,2,3\n),\n\nmonthly_active_synergies_union AS (\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM loyalty_earning_rule_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM sms_flows_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM sms_flows_custom_loyalty_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM loyalty_template_sms_campaigns_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM loyalty_custom_sms_campaigns_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM sms_campaign_to_grow_product_subscribers_monthly_active\nUNION ALL\nSELECT \n app_key,\n synergy_month,\n synergy_id,\n is_active_mtd\nFROM loyalty_subscription_discount_reward_monthly_active\n),\n\nmonthly_active_synergies_res AS (\nSELECT\n monthly_active.app_key,\n monthly_active.synergy_month,\n monthly_active.synergy_id,\n widgets.widget_name AS synergy_name,\n monthly_active.is_active_mtd,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM monthly_active_synergies_union AS monthly_active\nINNER JOIN import_homescreen_widgets AS widgets \n ON widgets.widget_id = monthly_active.synergy_id\nINNER JOIN import_homescreen_sections AS sections\n ON sections.section_id = widgets.section_id\nWHERE LOWER(sections.section_name) = 'synergies'\n)\n-- Result --\n\nSELECT *\nFROM monthly_active_synergies_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__store_enablement_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__store_enablement_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.sql", "unique_id": "model.yoda.analytics___synergies__store_enablement_daily", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_daily", "analytics___synergies__store_enablement_daily"], "alias": "analytics___synergies__store_enablement_daily", "checksum": {"name": "sha256", "checksum": "2985eefbd14337b845f0fecb5e7639de4719db2eebef3d8c5ad7bd3a98ccc0ba"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of eligible synergy stores for each day with an enablement indicator. Indication is partial, for full enablement data refer to the monthly enablement model | PK and granularity: synergy_date, app_key, synergy_id", "columns": {"synergy_date": {"name": "synergy_date", "description": "store synergy date - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergy_name": {"name": "synergy_name", "description": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_enabled": {"name": "is_enabled", "description": "store synergy enablement indicator: 0/1.\nthe synergy was in enabled status DURING the date, NOT necessarily at the end of it.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082662.2365627, "relation_name": "dev_dkruh1.analytics___synergies__store_enablement_daily", "raw_code": "-- Import --\n\nWITH import_calendar AS (\nSELECT *\nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-4,1,1) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_synergy_store_enablement_over_time AS (\nSELECT * FROM {{ ref('analytics___synergies__store_enablement_over_time') }}\n),\n\nimport_synergies_store_activeness_daily AS (\nSELECT * FROM {{ ref('analytics___synergies__store_activeness_daily') }}\n),\n\n-- Logic --\n\nenablement_per_day AS (\nSELECT\n calendar.date AS synergy_date,\n store.app_key,\n store.synergy_id,\n store.synergy_name,\n MAX(store.is_enabled) AS is_enabled\nFROM import_calendar AS calendar\nINNER JOIN import_synergy_store_enablement_over_time AS store\n ON calendar.date BETWEEN DATE(store.from_time) AND DATE(store.to_time)\nGROUP BY 1,2,3,4\n),\n\nenablement_completion_from_activeness AS (\nSELECT \n activeness.activeness_date AS synergy_date,\n activeness.app_key,\n activeness.synergy_id,\n activeness.synergy_name,\n 1 AS is_enabled\nFROM import_synergies_store_activeness_daily AS activeness\nLEFT JOIN enablement_per_day AS enablement \n ON activeness.activeness_date = enablement.synergy_date\n AND activeness.app_key = enablement.app_key \n AND activeness.synergy_id = enablement.synergy_id\nWHERE enablement.synergy_date IS NULL\n),\n\nunion_store_enablement AS (\nSELECT \n synergy_date,\n app_key,\n synergy_id,\n synergy_name,\n is_enabled\nFROM enablement_per_day\nUNION ALL\nSELECT \n synergy_date,\n app_key,\n synergy_id,\n synergy_name,\n is_enabled\nFROM enablement_completion_from_activeness\n),\n\nsynergy_store_enablement_daily_res AS (\nSELECT \n synergy_date,\n app_key,\n synergy_id,\n synergy_name,\n TINYINT(is_enabled) AS is_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM union_store_enablement\n)\n\n-- Result --\n\nSELECT *\nFROM synergy_store_enablement_daily_res", "language": "sql", "refs": [{"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___synergies__store_enablement_over_time", "package": null, "version": null}, {"name": "analytics___synergies__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___synergies__store_enablement_over_time", "model.yoda.analytics___synergies__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_calendar AS (\nSELECT *\nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-4,1,1) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_synergy_store_enablement_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__store_enablement_over_time\n),\n\nimport_synergies_store_activeness_daily AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__store_activeness_daily\n),\n\n-- Logic --\n\nenablement_per_day AS (\nSELECT\n calendar.date AS synergy_date,\n store.app_key,\n store.synergy_id,\n store.synergy_name,\n MAX(store.is_enabled) AS is_enabled\nFROM import_calendar AS calendar\nINNER JOIN import_synergy_store_enablement_over_time AS store\n ON calendar.date BETWEEN DATE(store.from_time) AND DATE(store.to_time)\nGROUP BY 1,2,3,4\n),\n\nenablement_completion_from_activeness AS (\nSELECT \n activeness.activeness_date AS synergy_date,\n activeness.app_key,\n activeness.synergy_id,\n activeness.synergy_name,\n 1 AS is_enabled\nFROM import_synergies_store_activeness_daily AS activeness\nLEFT JOIN enablement_per_day AS enablement \n ON activeness.activeness_date = enablement.synergy_date\n AND activeness.app_key = enablement.app_key \n AND activeness.synergy_id = enablement.synergy_id\nWHERE enablement.synergy_date IS NULL\n),\n\nunion_store_enablement AS (\nSELECT \n synergy_date,\n app_key,\n synergy_id,\n synergy_name,\n is_enabled\nFROM enablement_per_day\nUNION ALL\nSELECT \n synergy_date,\n app_key,\n synergy_id,\n synergy_name,\n is_enabled\nFROM enablement_completion_from_activeness\n),\n\nsynergy_store_enablement_daily_res AS (\nSELECT \n synergy_date,\n app_key,\n synergy_id,\n synergy_name,\n TINYINT(is_enabled) AS is_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM union_store_enablement\n)\n\n-- Result --\n\nSELECT *\nFROM synergy_store_enablement_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__store_enablement_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__store_enablement_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.sql", "unique_id": "model.yoda.analytics___synergies__store_enablement_monthly", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_monthly", "analytics___synergies__store_enablement_monthly"], "alias": "analytics___synergies__store_enablement_monthly", "checksum": {"name": "sha256", "checksum": "7ae7c9b7f894b38a304dff800a8cc1dc4259656f923862266bdb9fdbc9c501ed"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of eligible synergy stores for each month with an enablement indicator | PK and granularity: synergy_month, app_key, synergy_id", "columns": {"synergy_month": {"name": "synergy_month", "description": "store synergy month - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergy_name": {"name": "synergy_name", "description": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_enabled": {"name": "is_enabled", "description": "store synergy enablement indicator: 0/1.\nthe synergy was in enabled status DURING the month, NOT necessarily at the end of it.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_enabled_mtd": {"name": "is_enabled_mtd", "description": "store synergy mtd enablement indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082662.2821705, "relation_name": "dev_dkruh1.analytics___synergies__store_enablement_monthly", "raw_code": "-- Import --\n\nWITH import_synergy_store_enablement_daily AS (\nSELECT *\nFROM {{ ref('analytics___synergies__store_enablement_daily') }}\n),\n\nimport_synergy_store_activeness_monthly AS (\nSELECT *\nFROM {{ ref('analytics___synergies__store_activeness_monthly') }} \n),\n\n-- Logic --\n\nfull_enablement_indicators_list AS (\nSELECT\n TRUNC(synergy_date,'MONTH') AS synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n MAX(is_enabled) AS is_enabled,\n MAX(IF(DAY(synergy_date) < DAY(CURRENT_DATE),is_enabled,0)) AS is_enabled_mtd\nFROM import_synergy_store_enablement_daily\nGROUP BY 1,2,3,4\nUNION ALL\nSELECT \n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n 1 AS is_enabled,\n is_active_mtd AS is_enabled_mtd\nFROM import_synergy_store_activeness_monthly\n),\n\nstore_enablement_monthly_res AS (\nSELECT\n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n SMALLINT(MAX(is_enabled)) AS is_enabled,\n SMALLINT(MAX(is_enabled_mtd)) AS is_enabled_mtd,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM full_enablement_indicators_list\nGROUP BY 1,2,3,4\n)\n\n-- Result --\n\nSELECT *\nFROM store_enablement_monthly_res", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_daily", "package": null, "version": null}, {"name": "analytics___synergies__store_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___synergies__store_enablement_daily", "model.yoda.analytics___synergies__store_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_synergy_store_enablement_daily AS (\nSELECT *\nFROM dev_dkruh1.analytics___synergies__store_enablement_daily\n),\n\nimport_synergy_store_activeness_monthly AS (\nSELECT *\nFROM dev_dkruh1.analytics___synergies__store_activeness_monthly \n),\n\n-- Logic --\n\nfull_enablement_indicators_list AS (\nSELECT\n TRUNC(synergy_date,'MONTH') AS synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n MAX(is_enabled) AS is_enabled,\n MAX(IF(DAY(synergy_date) < DAY(CURRENT_DATE),is_enabled,0)) AS is_enabled_mtd\nFROM import_synergy_store_enablement_daily\nGROUP BY 1,2,3,4\nUNION ALL\nSELECT \n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n 1 AS is_enabled,\n is_active_mtd AS is_enabled_mtd\nFROM import_synergy_store_activeness_monthly\n),\n\nstore_enablement_monthly_res AS (\nSELECT\n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n SMALLINT(MAX(is_enabled)) AS is_enabled,\n SMALLINT(MAX(is_enabled_mtd)) AS is_enabled_mtd,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM full_enablement_indicators_list\nGROUP BY 1,2,3,4\n)\n\n-- Result --\n\nSELECT *\nFROM store_enablement_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__store_enablement_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__store_enablement_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.sql", "unique_id": "model.yoda.analytics___synergies__store_enablement_over_time", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_over_time", "analytics___synergies__store_enablement_over_time"], "alias": "analytics___synergies__store_enablement_over_time", "checksum": {"name": "sha256", "checksum": "0f82faa3d7f5a2c9db4a158412a8305448cf5d80aeca86681e9241d3d252dcac"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of eligible synergy stores for time range with an enablement indicator. Indication is partial, for full enablement data refer to the monthly enablement model | PK and granularity: app_key, synergy_id, from_time", "columns": {"app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "from_time": {"name": "from_time", "description": "enablement status range start timestamp - primary key 3/3 - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "enablement status range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "synergy_name": {"name": "synergy_name", "description": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_event_id": {"name": "first_event_id", "description": "the first event identifier for store and synergy widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled": {"name": "is_enabled", "description": "store synergy enablement indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082662.3300028, "relation_name": "dev_dkruh1.analytics___synergies__store_enablement_over_time", "raw_code": "WITH import_platform_stg__synergy_enablement_event AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__enablement_event') }}\n),\n\nimport_platform_stg__home_screen_widget AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__home_screen_widget') }}\n),\n\nimport_platform_stg__home_screen_section AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__home_screen_section') }}\n),\n\n-- Logic --\n\nredundant_row_calculation_synergy AS (\nSELECT\n app_key,\n widget_id,\n updated_at,\n first_event_id,\n is_enabled,\n IF(is_enabled = LAG(is_enabled) OVER (PARTITION BY app_key, widget_id ORDER BY updated_at),1,0) AS is_redundant_row\nFROM import_platform_stg__synergy_enablement_event\n),\n\nsynergy_store_enablement_over_time_res AS (\nSELECT\n synergy.app_key,\n synergy.widget_id AS synergy_id,\n synergy.updated_at AS from_time,\n LEAD(synergy.updated_at,1,TIMESTAMP('2999-12-31')) OVER (PARTITION BY synergy.app_key, synergy.widget_id ORDER BY synergy.updated_at) AS to_time,\n widget.widget_name AS synergy_name,\n synergy.first_event_id,\n synergy.is_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM redundant_row_calculation_synergy AS synergy\nINNER JOIN import_platform_stg__home_screen_widget AS widget\n ON synergy.widget_id = widget.widget_id\nINNER JOIN import_platform_stg__home_screen_section AS section\n ON section.section_id = widget.section_id\nWHERE synergy.is_redundant_row = 0\nAND LOWER(section.section_name) = 'synergies'\n)\n\n-- Result --\n\nSELECT *\nFROM synergy_store_enablement_over_time_res", "language": "sql", "refs": [{"name": "analytics___synergies_stg__enablement_event", "package": null, "version": null}, {"name": "analytics___synergies_stg__home_screen_widget", "package": null, "version": null}, {"name": "analytics___synergies_stg__home_screen_section", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___synergies_stg__enablement_event", "model.yoda.analytics___synergies_stg__home_screen_widget", "model.yoda.analytics___synergies_stg__home_screen_section"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.sql", "compiled": true, "compiled_code": "WITH import_platform_stg__synergy_enablement_event AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__enablement_event\n),\n\nimport_platform_stg__home_screen_widget AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__home_screen_widget\n),\n\nimport_platform_stg__home_screen_section AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__home_screen_section\n),\n\n-- Logic --\n\nredundant_row_calculation_synergy AS (\nSELECT\n app_key,\n widget_id,\n updated_at,\n first_event_id,\n is_enabled,\n IF(is_enabled = LAG(is_enabled) OVER (PARTITION BY app_key, widget_id ORDER BY updated_at),1,0) AS is_redundant_row\nFROM import_platform_stg__synergy_enablement_event\n),\n\nsynergy_store_enablement_over_time_res AS (\nSELECT\n synergy.app_key,\n synergy.widget_id AS synergy_id,\n synergy.updated_at AS from_time,\n LEAD(synergy.updated_at,1,TIMESTAMP('2999-12-31')) OVER (PARTITION BY synergy.app_key, synergy.widget_id ORDER BY synergy.updated_at) AS to_time,\n widget.widget_name AS synergy_name,\n synergy.first_event_id,\n synergy.is_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM redundant_row_calculation_synergy AS synergy\nINNER JOIN import_platform_stg__home_screen_widget AS widget\n ON synergy.widget_id = widget.widget_id\nINNER JOIN import_platform_stg__home_screen_section AS section\n ON section.section_id = widget.section_id\nWHERE synergy.is_redundant_row = 0\nAND LOWER(section.section_name) = 'synergies'\n)\n\n-- Result --\n\nSELECT *\nFROM synergy_store_enablement_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__store_last_thirty_days_activeness_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.sql", "unique_id": "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_last_thirty_days_activeness_daily", "analytics___synergies__store_last_thirty_days_activeness_daily"], "alias": "analytics___synergies__store_last_thirty_days_activeness_daily", "checksum": {"name": "sha256", "checksum": "6164f03c8532c9b12af4d75a035b19dd97613456c27704462430e1896d62e843"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["synergy_id", "activeness_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of last 30 days active stores for each synergy at a daily level | PK and granularity: synergy_id, activeness_date, app_key", "columns": {"synergy_id": {"name": "synergy_id", "description": "synergy id - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "synergy_name": {"name": "synergy_name", "description": "synergy name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activeness_date": {"name": "activeness_date", "description": "activeness date - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["synergy_id", "activeness_date"]}, "created_at": 1700082662.3749113, "relation_name": "dev_dkruh1.analytics___synergies__store_last_thirty_days_activeness_daily", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by = ['synergy_id','activeness_date']\n )\n}}\n\n-- Import --\n\nWITH import_synergies_store_activeness_daily AS (\nSELECT * FROM {{ ref('analytics___synergies__store_activeness_daily') }}\n),\n\nimport_store_dates AS (\nSELECT * FROM {{ ref('analytics___platform__store_dynamic_date_explode_from_creation') }}\nWHERE date BETWEEN (SELECT DATE_ADD(MIN(activeness_date),30) FROM import_synergies_store_activeness_daily) \n AND (SELECT MAX(activeness_date) FROM import_synergies_store_activeness_daily) \n{% if is_incremental() %}\nAND date > (SELECT MAX(activeness_date) FROM {{ this }})\n{% endif %}\n),\n\n-- Logic --\n\nstore_last_thirty_days_activeness_daily_res AS (\nSELECT DISTINCT\n active.synergy_id,\n active.synergy_name,\n store_dates.date AS activeness_date,\n store_dates.app_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_store_dates AS store_dates\nINNER JOIN import_synergies_store_activeness_daily AS active\n ON store_dates.app_key = active.app_key\n AND DATEDIFF(store_dates.date, active.activeness_date) BETWEEN 0 AND 30\n)\n\n-- Result --\n\nSELECT *\nFROM store_last_thirty_days_activeness_daily_res", "language": "sql", "refs": [{"name": "analytics___synergies__store_activeness_daily", "package": null, "version": null}, {"name": "analytics___platform__store_dynamic_date_explode_from_creation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_synergies_store_activeness_daily AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__store_activeness_daily\n),\n\nimport_store_dates AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_dynamic_date_explode_from_creation\nWHERE date BETWEEN (SELECT DATE_ADD(MIN(activeness_date),30) FROM import_synergies_store_activeness_daily) \n AND (SELECT MAX(activeness_date) FROM import_synergies_store_activeness_daily) \n\n),\n\n-- Logic --\n\nstore_last_thirty_days_activeness_daily_res AS (\nSELECT DISTINCT\n active.synergy_id,\n active.synergy_name,\n store_dates.date AS activeness_date,\n store_dates.app_key,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_store_dates AS store_dates\nINNER JOIN import_synergies_store_activeness_daily AS active\n ON store_dates.app_key = active.app_key\n AND DATEDIFF(store_dates.date, active.activeness_date) BETWEEN 0 AND 30\n)\n\n-- Result --\n\nSELECT *\nFROM store_last_thirty_days_activeness_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__store_synergy_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__store_synergy_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.sql", "unique_id": "model.yoda.analytics___synergies__store_synergy_metrics_monthly", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_synergy_metrics_monthly", "analytics___synergies__store_synergy_metrics_monthly"], "alias": "analytics___synergies__store_synergy_metrics_monthly", "checksum": {"name": "sha256", "checksum": "0a91dc9c9d40061c2d80cf1ad5dbc59f96dbbf78f9eafdd9c53f501ecb5962b0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of all synergies metrics at a store, synergy and monthly level | PK and granularity: synergy_month, app_key, synergy_id, metric_name", "columns": {"synergy_month": {"name": "synergy_month", "description": "store synergy month - primary key 1/4", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/4", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 3/4", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "synergy_name": {"name": "synergy_name", "description": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_name": {"name": "metric_name", "description": "metric_name: synergetic_review_cnt, review_rating_sum, etc - primary key 4/4", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_value": {"name": "metric_value", "description": "metric's value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "industry": {"name": "industry", "description": "the industry of the store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_tenure_year_count": {"name": "yotpo_tenure_year_count", "description": "the store tenure in yotpo on a given month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082662.4227102, "relation_name": "dev_dkruh1.analytics___synergies__store_synergy_metrics_monthly", "raw_code": "-- Import --\n\nWITH import_ugc_store_synergy_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___synergies__ugc_store_synergy_metrics_monthly') }}\n),\n\nimport_loyalty_store_synergy_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___synergies__loyalty_store_synergy_metrics_monthly') }}\n),\n\nimport_platform_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_platform_store_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__store_metrics_monthly') }}\n),\n\n-- Logic --\n\nugc_metrics_unpivot AS (\nSELECT\n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n STACK(9,\n 'review_cnt', SUM(review_cnt),\n 'reviewer_cnt', SUM(reviewer_cnt),\n 'review_rating_sum', SUM(review_rating_sum),\n 'synergetic_review_cnt', SUM(synergetic_review_cnt),\n 'synergetic_review_cnt_no_overlaps', SUM(synergetic_review_cnt_no_overlaps),\n 'synergetic_reviewer_cnt', SUM(synergetic_reviewer_cnt),\n 'synergetic_reviewer_cnt_no_overlaps', SUM(synergetic_reviewer_cnt_no_overlaps),\n 'synergetic_review_rating_sum', SUM(synergetic_review_rating_sum),\n 'synergetic_review_rating_sum_no_overlaps', SUM(synergetic_review_rating_sum_no_overlaps)\n ) AS (metric_name, metric_value)\nFROM import_ugc_store_synergy_metrics_monthly\nGROUP BY 1,2,3,4\n),\n\nloyalty_metrics_unpivot AS (\nSELECT\n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n STACK(20,\n 'redemption_cnt', SUM(DOUBLE(redemption_cnt)),\n 'redeemer_cnt', SUM(DOUBLE(redeemer_cnt)),\n 'store_order_cnt', SUM(DOUBLE(store_order_cnt)),\n 'store_order_amount_in_usd_sum', SUM(DOUBLE(store_order_amount_in_usd_sum)),\n 'store_attributed_order_cnt', SUM(DOUBLE(store_attributed_order_cnt)),\n 'store_attributed_order_amount_in_usd_sum', SUM(DOUBLE(store_attributed_order_amount_in_usd_sum)),\n 'store_attributed_loyalty_order_cnt', SUM(DOUBLE(store_attributed_loyalty_order_cnt)),\n 'store_attributed_loyalty_order_amount_in_usd_sum', SUM(DOUBLE(store_attributed_loyalty_order_amount_in_usd_sum)),\n 'store_attributed_sms_order_cnt', SUM(DOUBLE(store_attributed_sms_order_cnt)),\n 'store_attributed_sms_order_amount_in_usd_sum', SUM(DOUBLE(store_attributed_sms_order_amount_in_usd_sum)),\n 'synergetic_redemption_cnt', SUM(DOUBLE(synergetic_redemption_cnt)),\n 'synergetic_redemption_cnt_no_overlaps', SUM(DOUBLE(synergetic_redemption_cnt_no_overlaps)),\n 'synergetic_redeemer_cnt', SUM(DOUBLE(synergetic_redeemer_cnt)),\n 'synergetic_redeemer_cnt_no_overlaps', SUM(DOUBLE(synergetic_redeemer_cnt_no_overlaps)),\n 'synergetic_point_sum', SUM(DOUBLE(synergetic_point_sum)),\n 'synergetic_point_sum_no_overlaps', SUM(DOUBLE(synergetic_point_sum_no_overlaps)),\n 'synergetic_order_cnt', SUM(DOUBLE(synergetic_order_cnt)),\n 'synergetic_order_cnt_no_overlaps', SUM(DOUBLE(synergetic_order_cnt_no_overlaps)),\n 'synergetic_order_amount_in_usd_sum', SUM(DOUBLE(synergetic_order_amount_in_usd_sum)),\n 'synergetic_order_amount_in_usd_sum_no_overlaps', SUM(DOUBLE(synergetic_order_amount_in_usd_sum_no_overlaps))\n ) AS (metric_name, metric_value)\nFROM import_loyalty_store_synergy_metrics_monthly\nGROUP BY 1,2,3,4\n),\n\nall_synergies_union AS (\nSELECT\n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n metric_name,\n metric_value\nFROM ugc_metrics_unpivot\nUNION ALL\nSELECT\n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n metric_name,\n metric_value\nFROM loyalty_metrics_unpivot\n),\n\nstore_synergy_metrics_monthly_res AS (\nSELECT\n synergy.synergy_month,\n synergy.app_key,\n synergy.synergy_id,\n synergy.synergy_name,\n synergy.metric_name,\n synergy.metric_value,\n store.industry,\n NVL(store_monthly.last_3m_orders_avg_bucket,0) AS last_3m_orders_avg_bucket,\n store_monthly.yotpo_tenure_year_count,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM all_synergies_union AS synergy\nLEFT JOIN import_platform_store AS store\n ON store.app_key = synergy.app_key\nLEFT JOIN import_platform_store_metrics_monthly AS store_monthly\n ON store_monthly.app_key = synergy.app_key\n AND store_monthly.month = synergy.synergy_month\n)\n\n-- Result --\n\nSELECT *\nFROM store_synergy_metrics_monthly_res", "language": "sql", "refs": [{"name": "analytics___synergies__ugc_store_synergy_metrics_monthly", "package": null, "version": null}, {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_store_synergy_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__ugc_store_synergy_metrics_monthly\n),\n\nimport_loyalty_store_synergy_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__loyalty_store_synergy_metrics_monthly\n),\n\nimport_platform_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_platform_store_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_metrics_monthly\n),\n\n-- Logic --\n\nugc_metrics_unpivot AS (\nSELECT\n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n STACK(9,\n 'review_cnt', SUM(review_cnt),\n 'reviewer_cnt', SUM(reviewer_cnt),\n 'review_rating_sum', SUM(review_rating_sum),\n 'synergetic_review_cnt', SUM(synergetic_review_cnt),\n 'synergetic_review_cnt_no_overlaps', SUM(synergetic_review_cnt_no_overlaps),\n 'synergetic_reviewer_cnt', SUM(synergetic_reviewer_cnt),\n 'synergetic_reviewer_cnt_no_overlaps', SUM(synergetic_reviewer_cnt_no_overlaps),\n 'synergetic_review_rating_sum', SUM(synergetic_review_rating_sum),\n 'synergetic_review_rating_sum_no_overlaps', SUM(synergetic_review_rating_sum_no_overlaps)\n ) AS (metric_name, metric_value)\nFROM import_ugc_store_synergy_metrics_monthly\nGROUP BY 1,2,3,4\n),\n\nloyalty_metrics_unpivot AS (\nSELECT\n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n STACK(20,\n 'redemption_cnt', SUM(DOUBLE(redemption_cnt)),\n 'redeemer_cnt', SUM(DOUBLE(redeemer_cnt)),\n 'store_order_cnt', SUM(DOUBLE(store_order_cnt)),\n 'store_order_amount_in_usd_sum', SUM(DOUBLE(store_order_amount_in_usd_sum)),\n 'store_attributed_order_cnt', SUM(DOUBLE(store_attributed_order_cnt)),\n 'store_attributed_order_amount_in_usd_sum', SUM(DOUBLE(store_attributed_order_amount_in_usd_sum)),\n 'store_attributed_loyalty_order_cnt', SUM(DOUBLE(store_attributed_loyalty_order_cnt)),\n 'store_attributed_loyalty_order_amount_in_usd_sum', SUM(DOUBLE(store_attributed_loyalty_order_amount_in_usd_sum)),\n 'store_attributed_sms_order_cnt', SUM(DOUBLE(store_attributed_sms_order_cnt)),\n 'store_attributed_sms_order_amount_in_usd_sum', SUM(DOUBLE(store_attributed_sms_order_amount_in_usd_sum)),\n 'synergetic_redemption_cnt', SUM(DOUBLE(synergetic_redemption_cnt)),\n 'synergetic_redemption_cnt_no_overlaps', SUM(DOUBLE(synergetic_redemption_cnt_no_overlaps)),\n 'synergetic_redeemer_cnt', SUM(DOUBLE(synergetic_redeemer_cnt)),\n 'synergetic_redeemer_cnt_no_overlaps', SUM(DOUBLE(synergetic_redeemer_cnt_no_overlaps)),\n 'synergetic_point_sum', SUM(DOUBLE(synergetic_point_sum)),\n 'synergetic_point_sum_no_overlaps', SUM(DOUBLE(synergetic_point_sum_no_overlaps)),\n 'synergetic_order_cnt', SUM(DOUBLE(synergetic_order_cnt)),\n 'synergetic_order_cnt_no_overlaps', SUM(DOUBLE(synergetic_order_cnt_no_overlaps)),\n 'synergetic_order_amount_in_usd_sum', SUM(DOUBLE(synergetic_order_amount_in_usd_sum)),\n 'synergetic_order_amount_in_usd_sum_no_overlaps', SUM(DOUBLE(synergetic_order_amount_in_usd_sum_no_overlaps))\n ) AS (metric_name, metric_value)\nFROM import_loyalty_store_synergy_metrics_monthly\nGROUP BY 1,2,3,4\n),\n\nall_synergies_union AS (\nSELECT\n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n metric_name,\n metric_value\nFROM ugc_metrics_unpivot\nUNION ALL\nSELECT\n synergy_month,\n app_key,\n synergy_id,\n synergy_name,\n metric_name,\n metric_value\nFROM loyalty_metrics_unpivot\n),\n\nstore_synergy_metrics_monthly_res AS (\nSELECT\n synergy.synergy_month,\n synergy.app_key,\n synergy.synergy_id,\n synergy.synergy_name,\n synergy.metric_name,\n synergy.metric_value,\n store.industry,\n NVL(store_monthly.last_3m_orders_avg_bucket,0) AS last_3m_orders_avg_bucket,\n store_monthly.yotpo_tenure_year_count,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM all_synergies_union AS synergy\nLEFT JOIN import_platform_store AS store\n ON store.app_key = synergy.app_key\nLEFT JOIN import_platform_store_metrics_monthly AS store_monthly\n ON store_monthly.app_key = synergy.app_key\n AND store_monthly.month = synergy.synergy_month\n)\n\n-- Result --\n\nSELECT *\nFROM store_synergy_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__synergy_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__synergy_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.sql", "unique_id": "model.yoda.analytics___synergies__synergy_metrics_monthly", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__synergy_metrics_monthly", "analytics___synergies__synergy_metrics_monthly"], "alias": "analytics___synergies__synergy_metrics_monthly", "checksum": {"name": "sha256", "checksum": "7bc01ffe7d8f207ba67032a75fff9beb2e67b6630e74c4c109dd0dc78508790a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of aggregated synergies metrics at a monthly level | PK and granularity: synergy_month, synergy_id, synegy_name, synergy_metric_name, industry, last_3m_orders_avg_bucket, yotpo_tenure_year_count", "columns": {"synergy_metrics_id": {"name": "synergy_metrics_id", "description": "unique id, generate by sha2 function on all PK fields", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_month": {"name": "synergy_month", "description": "store synergy month - primary key 1/7", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 2/7", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "synergy_name": {"name": "synergy_name", "description": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc. - primary key 3/7", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "the industry of the store - primary key 5/7", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "the store order bucket on a given month - primary key 6/7", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_tenure_year_count": {"name": "yotpo_tenure_year_count", "description": "the store tenure in yotpo on a given month - primary key 7/7", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergy_metric_name": {"name": "synergy_metric_name", "description": "synergy metric name: synergetic_review_cnt, review_rating_sum, etc - primary key 4/7", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_metric_value": {"name": "synergy_metric_value", "description": "synergy metric's value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "store_metric_name": {"name": "store_metric_name", "description": "non-synergy metrics on a store level: total orders, total redemptions, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_metric_value": {"name": "store_metric_value", "description": "store metric's value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "synergy_action_product": {"name": "synergy_action_product", "description": "the product that is affected by the synergy", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms_synergy": {"name": "is_sms_synergy", "description": "indicator whether the synergy involves sms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_email_synergy": {"name": "is_email_synergy", "description": "indicator whether the synergy involves email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty_synergy": {"name": "is_loyalty_synergy", "description": "indicator whether the synergy involves loyalty", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_reviews_synergy": {"name": "is_reviews_synergy", "description": "indicator whether the synergy involves reviews", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions_synergy": {"name": "is_subscriptions_synergy", "description": "indicator whether the synergy involves subscriptions", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082662.4834068, "relation_name": "dev_dkruh1.analytics___synergies__synergy_metrics_monthly", "raw_code": "-- Import --\n\nWITH import_store_synergy_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___synergies__store_synergy_metrics_monthly') }}\n),\n\nimport_synergy_product_mapping AS (\nSELECT * FROM {{ ref('platform_stg__synergy_product_mapping') }}\n),\n\n-- Logic --\n\nsynergy_products_indicator AS (\nSELECT \n synergy_id,\n MIN(IF(is_action_product = 1,product_name,NULL)) AS synergy_action_product,\n SMALLINT(SUM(IF(LOWER(product_name) = 'sms',1,0))) AS is_sms_synergy,\n SMALLINT(SUM(IF(LOWER(product_name) = 'loyalty',1,0))) AS is_loyalty_synergy,\n SMALLINT(SUM(IF(LOWER(product_name) = 'reviews',1,0))) AS is_reviews_synergy,\n SMALLINT(SUM(IF(LOWER(product_name) = 'subscriptions',1,0))) AS is_subscriptions_synergy,\n SMALLINT(SUM(IF(LOWER(product_name) = 'email',1,0))) AS is_email_synergy\nFROM import_synergy_product_mapping\nGROUP BY 1\n),\n\nmetrics_mapping AS (\nSELECT \n synergy_metric_name,\n store_metric_name\nFROM VALUES \n('synergetic_review_cnt','review_cnt'),\n('synergetic_review_cnt_no_overlaps','review_cnt'),\n('synergetic_reviewer_cnt','reviewer_cnt'),\n('synergetic_reviewer_cnt_no_overlaps','reviewer_cnt'),\n('synergetic_review_rating_sum','review_rating_sum'),\n('synergetic_review_rating_sum_no_overlaps','review_rating_sum'),\n('synergetic_redemption_cnt','redemption_cnt'),\n('synergetic_redemption_cnt_no_overlaps','redemption_cnt'),\n('synergetic_redeemer_cnt','redeemer_cnt'),\n('synergetic_redeemer_cnt_no_overlaps','redeemer_cnt'),\n('synergetic_order_cnt','store_attributed_order_cnt'),\n('synergetic_order_cnt_no_overlaps','store_attributed_order_cnt'),\n('synergetic_order_amount_in_usd_sum','store_attributed_order_amount_in_usd_sum'),\n('synergetic_order_amount_in_usd_sum_no_overlaps','store_attributed_order_amount_in_usd_sum')\nAS (synergy_metric_name,store_metric_name)\n),\n\nmetrics_per_store AS (\nSELECT DISTINCT\n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n synergy_metrics.synergy_id,\n synergy_metrics.synergy_name,\n indicator.synergy_action_product,\n IF(synergy_metrics.synergy_id = 9999,1,indicator.is_sms_synergy) AS is_sms_synergy,\n indicator.is_email_synergy,\n IF(synergy_metrics.synergy_id = 9999,1,indicator.is_loyalty_synergy) AS is_loyalty_synergy,\n indicator.is_reviews_synergy,\n indicator.is_subscriptions_synergy,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n synergy_metrics.metric_value AS synergy_metric_value,\n total_store_metrics.metric_name AS store_metric_name,\n total_store_metrics.metric_value AS store_metric_value\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nLEFT JOIN metrics_mapping AS mapping\n ON LOWER(mapping.synergy_metric_name) = LOWER(synergy_metrics.metric_name)\nLEFT JOIN import_store_synergy_metrics_monthly AS total_store_metrics\n ON synergy_metrics.app_key = total_store_metrics.app_key\n AND synergy_metrics.synergy_month = total_store_metrics.synergy_month\n AND LOWER(total_store_metrics.metric_name) = LOWER(mapping.store_metric_name) \nWHERE LOWER(synergy_metrics.metric_name) LIKE 'synergetic%'\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'store_total' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'total_loyalty_sms' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nAND IF(synergy_metrics.synergy_id = 9999,1,indicator.is_sms_synergy) = 1 \nAND IF(synergy_metrics.synergy_id = 9999,1,indicator.is_loyalty_synergy) = 1\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'total_reviews_sms' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nAND indicator.is_sms_synergy = 1 \nAND indicator.is_reviews_synergy = 1\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'total_reviews_loyalty' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nAND indicator.is_loyalty_synergy = 1 \nAND indicator.is_reviews_synergy = 1\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'total_subscriptions_loyalty' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nAND indicator.is_loyalty_synergy = 1 \nAND indicator.is_subscriptions_synergy = 1\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'total_subscriptions_sms' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nAND indicator.is_sms_synergy = 1 \nAND indicator.is_subscriptions_synergy = 1\n),\n\naggregated_level_metrics AS (\nSELECT \n SHA2(CONCAT(synergy_metrics.synergy_id,\n synergy_metrics.synergy_name,\n synergy_metrics.synergy_month,\n NVL(synergy_metrics.industry,'~'),\n NVL(synergy_metrics.last_3m_orders_avg_bucket,'~'),\n NVL(synergy_metrics.yotpo_tenure_year_count,'~'),\n synergy_metrics.synergy_metric_name),256) AS synergy_metrics_id,\n synergy_metrics.synergy_id,\n synergy_metrics.synergy_name,\n synergy_metrics.synergy_action_product,\n synergy_metrics.is_sms_synergy,\n synergy_metrics.is_email_synergy,\n synergy_metrics.is_loyalty_synergy,\n synergy_metrics.is_reviews_synergy,\n synergy_metrics.is_subscriptions_synergy,\n synergy_metrics.synergy_month,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n synergy_metrics.synergy_metric_name,\n synergy_metrics.store_metric_name,\n SUM(synergy_metrics.synergy_metric_value) AS synergy_metric_value,\n SUM(synergy_metrics.store_metric_value) AS store_metric_value\nFROM metrics_per_store AS synergy_metrics\nGROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15\n),\n\nsynergy_metrics_monthly_res AS (\nSELECT synergy_metrics_id,\n synergy_month,\n synergy_id,\n synergy_name,\n industry,\n last_3m_orders_avg_bucket,\n yotpo_tenure_year_count,\n synergy_metric_name,\n synergy_metric_value,\n store_metric_name,\n store_metric_value,\n synergy_action_product,\n is_sms_synergy,\n is_email_synergy,\n is_loyalty_synergy,\n is_reviews_synergy,\n is_subscriptions_synergy,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM aggregated_level_metrics\n)\n\n-- Result --\n\nSELECT *\nFROM synergy_metrics_monthly_res", "language": "sql", "refs": [{"name": "analytics___synergies__store_synergy_metrics_monthly", "package": null, "version": null}, {"name": "platform_stg__synergy_product_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly", "model.yoda.platform_stg__synergy_product_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_store_synergy_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__store_synergy_metrics_monthly\n),\n\nimport_synergy_product_mapping AS (\nSELECT * FROM dev_dkruh1.platform_stg__synergy_product_mapping\n),\n\n-- Logic --\n\nsynergy_products_indicator AS (\nSELECT \n synergy_id,\n MIN(IF(is_action_product = 1,product_name,NULL)) AS synergy_action_product,\n SMALLINT(SUM(IF(LOWER(product_name) = 'sms',1,0))) AS is_sms_synergy,\n SMALLINT(SUM(IF(LOWER(product_name) = 'loyalty',1,0))) AS is_loyalty_synergy,\n SMALLINT(SUM(IF(LOWER(product_name) = 'reviews',1,0))) AS is_reviews_synergy,\n SMALLINT(SUM(IF(LOWER(product_name) = 'subscriptions',1,0))) AS is_subscriptions_synergy,\n SMALLINT(SUM(IF(LOWER(product_name) = 'email',1,0))) AS is_email_synergy\nFROM import_synergy_product_mapping\nGROUP BY 1\n),\n\nmetrics_mapping AS (\nSELECT \n synergy_metric_name,\n store_metric_name\nFROM VALUES \n('synergetic_review_cnt','review_cnt'),\n('synergetic_review_cnt_no_overlaps','review_cnt'),\n('synergetic_reviewer_cnt','reviewer_cnt'),\n('synergetic_reviewer_cnt_no_overlaps','reviewer_cnt'),\n('synergetic_review_rating_sum','review_rating_sum'),\n('synergetic_review_rating_sum_no_overlaps','review_rating_sum'),\n('synergetic_redemption_cnt','redemption_cnt'),\n('synergetic_redemption_cnt_no_overlaps','redemption_cnt'),\n('synergetic_redeemer_cnt','redeemer_cnt'),\n('synergetic_redeemer_cnt_no_overlaps','redeemer_cnt'),\n('synergetic_order_cnt','store_attributed_order_cnt'),\n('synergetic_order_cnt_no_overlaps','store_attributed_order_cnt'),\n('synergetic_order_amount_in_usd_sum','store_attributed_order_amount_in_usd_sum'),\n('synergetic_order_amount_in_usd_sum_no_overlaps','store_attributed_order_amount_in_usd_sum')\nAS (synergy_metric_name,store_metric_name)\n),\n\nmetrics_per_store AS (\nSELECT DISTINCT\n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n synergy_metrics.synergy_id,\n synergy_metrics.synergy_name,\n indicator.synergy_action_product,\n IF(synergy_metrics.synergy_id = 9999,1,indicator.is_sms_synergy) AS is_sms_synergy,\n indicator.is_email_synergy,\n IF(synergy_metrics.synergy_id = 9999,1,indicator.is_loyalty_synergy) AS is_loyalty_synergy,\n indicator.is_reviews_synergy,\n indicator.is_subscriptions_synergy,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n synergy_metrics.metric_value AS synergy_metric_value,\n total_store_metrics.metric_name AS store_metric_name,\n total_store_metrics.metric_value AS store_metric_value\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nLEFT JOIN metrics_mapping AS mapping\n ON LOWER(mapping.synergy_metric_name) = LOWER(synergy_metrics.metric_name)\nLEFT JOIN import_store_synergy_metrics_monthly AS total_store_metrics\n ON synergy_metrics.app_key = total_store_metrics.app_key\n AND synergy_metrics.synergy_month = total_store_metrics.synergy_month\n AND LOWER(total_store_metrics.metric_name) = LOWER(mapping.store_metric_name) \nWHERE LOWER(synergy_metrics.metric_name) LIKE 'synergetic%'\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'store_total' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'total_loyalty_sms' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nAND IF(synergy_metrics.synergy_id = 9999,1,indicator.is_sms_synergy) = 1 \nAND IF(synergy_metrics.synergy_id = 9999,1,indicator.is_loyalty_synergy) = 1\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'total_reviews_sms' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nAND indicator.is_sms_synergy = 1 \nAND indicator.is_reviews_synergy = 1\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'total_reviews_loyalty' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nAND indicator.is_loyalty_synergy = 1 \nAND indicator.is_reviews_synergy = 1\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'total_subscriptions_loyalty' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nAND indicator.is_loyalty_synergy = 1 \nAND indicator.is_subscriptions_synergy = 1\nUNION ALL\nSELECT DISTINCT \n synergy_metrics.app_key,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n 0 AS synergy_id,\n 'total_subscriptions_sms' AS synergy_name,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n synergy_metrics.synergy_month,\n synergy_metrics.metric_name AS synergy_metric_name,\n MIN(synergy_metrics.metric_value) OVER (PARTITION BY synergy_metrics.app_key,synergy_metrics.synergy_month,synergy_metrics.metric_name) AS synergy_metric_value,\n NULL,\n NULL\nFROM import_store_synergy_metrics_monthly AS synergy_metrics\nLEFT JOIN synergy_products_indicator AS indicator\n ON synergy_metrics.synergy_id = indicator.synergy_id\nWHERE LOWER(synergy_metrics.metric_name) NOT LIKE 'synergetic%'\nAND indicator.is_sms_synergy = 1 \nAND indicator.is_subscriptions_synergy = 1\n),\n\naggregated_level_metrics AS (\nSELECT \n SHA2(CONCAT(synergy_metrics.synergy_id,\n synergy_metrics.synergy_name,\n synergy_metrics.synergy_month,\n NVL(synergy_metrics.industry,'~'),\n NVL(synergy_metrics.last_3m_orders_avg_bucket,'~'),\n NVL(synergy_metrics.yotpo_tenure_year_count,'~'),\n synergy_metrics.synergy_metric_name),256) AS synergy_metrics_id,\n synergy_metrics.synergy_id,\n synergy_metrics.synergy_name,\n synergy_metrics.synergy_action_product,\n synergy_metrics.is_sms_synergy,\n synergy_metrics.is_email_synergy,\n synergy_metrics.is_loyalty_synergy,\n synergy_metrics.is_reviews_synergy,\n synergy_metrics.is_subscriptions_synergy,\n synergy_metrics.synergy_month,\n synergy_metrics.industry,\n synergy_metrics.last_3m_orders_avg_bucket,\n synergy_metrics.yotpo_tenure_year_count,\n synergy_metrics.synergy_metric_name,\n synergy_metrics.store_metric_name,\n SUM(synergy_metrics.synergy_metric_value) AS synergy_metric_value,\n SUM(synergy_metrics.store_metric_value) AS store_metric_value\nFROM metrics_per_store AS synergy_metrics\nGROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15\n),\n\nsynergy_metrics_monthly_res AS (\nSELECT synergy_metrics_id,\n synergy_month,\n synergy_id,\n synergy_name,\n industry,\n last_3m_orders_avg_bucket,\n yotpo_tenure_year_count,\n synergy_metric_name,\n synergy_metric_value,\n store_metric_name,\n store_metric_value,\n synergy_action_product,\n is_sms_synergy,\n is_email_synergy,\n is_loyalty_synergy,\n is_reviews_synergy,\n is_subscriptions_synergy,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM aggregated_level_metrics\n)\n\n-- Result --\n\nSELECT *\nFROM synergy_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__ugc_store_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__ugc_store_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.sql", "unique_id": "model.yoda.analytics___synergies__ugc_store_metrics_monthly", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__ugc_store_metrics_monthly", "analytics___synergies__ugc_store_metrics_monthly"], "alias": "analytics___synergies__ugc_store_metrics_monthly", "checksum": {"name": "sha256", "checksum": "7ee139b996b38400d3c0dbeb81cd05477258ad8e9baa85ec248eedca1f6e08cd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of UGC synergetic & non-synergetic customers metrics | PK and granularity: synergy_month, app_key", "columns": {"synergy_month": {"name": "synergy_month", "description": "store synergy month - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "non_synergetic_customer_last_12m_review_cnt": {"name": "non_synergetic_customer_last_12m_review_cnt", "description": "number of reviews of non-synergetic customers in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "non_synergetic_customer_last_12m_unique_cnt": {"name": "non_synergetic_customer_last_12m_unique_cnt", "description": "number of unique non-synergetic customerss in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "non_synergetic_customer_last_12m_review_rating_sum": {"name": "non_synergetic_customer_last_12m_review_rating_sum", "description": "sum of reviews ratings of non-synergetic customers in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_customer_last_12m_review_cnt": {"name": "synergetic_customer_last_12m_review_cnt", "description": "number of reviews of synergetic customers in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_customer_last_12m_unique_cnt": {"name": "synergetic_customer_last_12m_unique_cnt", "description": "number of unique synergetic customers in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_customer_last_12m_review_rating_sum": {"name": "synergetic_customer_last_12m_review_rating_sum", "description": "sum of reviews ratings of synergetic customers in the last 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082662.5184712, "relation_name": "dev_dkruh1.analytics___synergies__ugc_store_metrics_monthly", "raw_code": "-- Import --\n\nWITH import_platform_synergy_product_mapping AS (\nSELECT * FROM {{ ref('platform_stg__synergy_product_mapping') }}\n),\n\nimport_calendar AS (\nSELECT * \nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-2,1,1) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_platform_store_product_activeness_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__store_product_activeness_monthly') }}\n),\n\nimport_platform_synergies_kpi AS (\nSELECT * FROM {{ ref('analytics___synergies__kpi_ranked_action') }}\n),\n\nimport_analytics_ugc_review AS (\nSELECT * FROM {{ ref('analytics___ugc__review') }}\n),\n\n-- Logic --\n\ncalendar_months AS (\nSELECT DISTINCT\n TRUNC(date,'MONTH') AS synergy_month\nFROM import_calendar\n),\n\ncalendar_related_months AS (\nSELECT\n synergy_month,\n EXPLODE(SEQUENCE(ADD_MONTHS(synergy_month,-11),synergy_month,INTERVAL 1 MONTH)) AS synergy_related_12m_range_month\nFROM calendar_months\n),\n\nugc_synergy_list AS (\nSELECT\n synergy_id,\n synergy_name\nFROM import_platform_synergy_product_mapping\nWHERE LOWER(product_name) = 'reviews'\nAND is_action_product = 1\n),\n\nonly_ugc_synergies_kpi AS (\nSELECT\n kpi.app_key,\n kpi.action_type,\n kpi.action_id\nFROM import_platform_synergies_kpi AS kpi\nINNER JOIN ugc_synergy_list AS ugc\n ON kpi.synergy_id = ugc.synergy_id\nWHERE kpi.record_rank = 1\n),\n\nreview AS (\nSELECT\n review_id,\n app_key,\n reviewer_id,\n score,\n TRUNC(created_date,'MONTH') AS created_month\nFROM import_analytics_ugc_review\n),\n\nsynergetic_customers_by_month AS (\nSELECT DISTINCT\n review.created_month,\n kpi.app_key,\n review.reviewer_id\nFROM only_ugc_synergies_kpi AS kpi\nINNER JOIN review\n ON LOWER(kpi.action_type) = 'review'\n AND kpi.action_id = review.review_id\n),\n\nsynergetic_customers_by_month_and_related_months AS (\nSELECT\n calendar.synergy_month,\n calendar.synergy_related_12m_range_month,\n customers.app_key,\n customers.reviewer_id\nFROM calendar_related_months AS calendar\nINNER JOIN synergetic_customers_by_month AS customers\n ON calendar.synergy_related_12m_range_month = customers.created_month\n),\n\nsynergetic_customers_metrcis_calculation AS (\nSELECT\n synergetic.synergy_month,\n synergetic.app_key,\n COUNT(review.review_id) AS synergetic_customer_last_12m_review_cnt,\n COUNT(DISTINCT synergetic.reviewer_id) AS synergetic_customer_last_12m_unique_cnt,\n SUM(review.score) AS synergetic_customer_last_12m_review_rating_sum\nFROM synergetic_customers_by_month_and_related_months AS synergetic\nINNER JOIN review\n ON synergetic.synergy_related_12m_range_month = review.created_month\n AND synergetic.app_key = review.app_key\n AND synergetic.reviewer_id = review.reviewer_id\nGROUP BY 1,2\n),\n\nall_customers_metrcis_calculation AS (\nSELECT\n calendar.synergy_month,\n review.app_key,\n COUNT(review.review_id) AS last_12m_review_cnt,\n COUNT(DISTINCT review.reviewer_id) AS last_12m_customer_unique_cnt,\n SUM(review.score) AS last_12m_review_rating_sum\nFROM calendar_related_months AS calendar\nINNER JOIN review\n ON calendar.synergy_related_12m_range_month = review.created_month\nGROUP BY 1,2\n),\n\nugc_tier_1_active_stores AS (\nSELECT\n activeness_month AS synergy_month,\n app_key\nFROM import_platform_store_product_activeness_monthly\nWHERE is_ugc_active_tier_1 = 1\nAND activeness_month >= MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-2,1,1)\n),\n\nsynergies_ugc_store_metrics_monthly_res AS (\nSELECT\n ugc_active.synergy_month,\n ugc_active.app_key,\n NVL(all_customers.last_12m_review_cnt,0) - NVL(synergetic.synergetic_customer_last_12m_review_cnt,0) AS non_synergetic_customer_last_12m_review_cnt,\n NVL(all_customers.last_12m_customer_unique_cnt,0) - NVL(synergetic.synergetic_customer_last_12m_unique_cnt,0) AS non_synergetic_customer_last_12m_unique_cnt,\n NVL(all_customers.last_12m_review_rating_sum,0) - NVL(synergetic.synergetic_customer_last_12m_review_rating_sum,0) AS non_synergetic_customer_last_12m_review_rating_sum,\n NVL(synergetic.synergetic_customer_last_12m_review_cnt,0) AS synergetic_customer_last_12m_review_cnt,\n NVL(synergetic.synergetic_customer_last_12m_unique_cnt,0) AS synergetic_customer_last_12m_unique_cnt,\n NVL(synergetic.synergetic_customer_last_12m_review_rating_sum,0) AS synergetic_customer_last_12m_review_rating_sum,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM ugc_tier_1_active_stores AS ugc_active\nLEFT JOIN synergetic_customers_metrcis_calculation AS synergetic\n ON ugc_active.synergy_month = synergetic.synergy_month\n AND ugc_active.app_key = synergetic.app_key\nLEFT JOIN all_customers_metrcis_calculation AS all_customers\n ON ugc_active.synergy_month = all_customers.synergy_month\n AND ugc_active.app_key = all_customers.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM synergies_ugc_store_metrics_monthly_res", "language": "sql", "refs": [{"name": "platform_stg__synergy_product_mapping", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___platform__store_product_activeness_monthly", "package": null, "version": null}, {"name": "analytics___synergies__kpi_ranked_action", "package": null, "version": null}, {"name": "analytics___ugc__review", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__synergy_product_mapping", "model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___platform__store_product_activeness_monthly", "model.yoda.analytics___synergies__kpi_ranked_action", "model.yoda.analytics___ugc__review"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_synergy_product_mapping AS (\nSELECT * FROM dev_dkruh1.platform_stg__synergy_product_mapping\n),\n\nimport_calendar AS (\nSELECT * \nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-2,1,1) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_platform_store_product_activeness_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_product_activeness_monthly\n),\n\nimport_platform_synergies_kpi AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__kpi_ranked_action\n),\n\nimport_analytics_ugc_review AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__review\n),\n\n-- Logic --\n\ncalendar_months AS (\nSELECT DISTINCT\n TRUNC(date,'MONTH') AS synergy_month\nFROM import_calendar\n),\n\ncalendar_related_months AS (\nSELECT\n synergy_month,\n EXPLODE(SEQUENCE(ADD_MONTHS(synergy_month,-11),synergy_month,INTERVAL 1 MONTH)) AS synergy_related_12m_range_month\nFROM calendar_months\n),\n\nugc_synergy_list AS (\nSELECT\n synergy_id,\n synergy_name\nFROM import_platform_synergy_product_mapping\nWHERE LOWER(product_name) = 'reviews'\nAND is_action_product = 1\n),\n\nonly_ugc_synergies_kpi AS (\nSELECT\n kpi.app_key,\n kpi.action_type,\n kpi.action_id\nFROM import_platform_synergies_kpi AS kpi\nINNER JOIN ugc_synergy_list AS ugc\n ON kpi.synergy_id = ugc.synergy_id\nWHERE kpi.record_rank = 1\n),\n\nreview AS (\nSELECT\n review_id,\n app_key,\n reviewer_id,\n score,\n TRUNC(created_date,'MONTH') AS created_month\nFROM import_analytics_ugc_review\n),\n\nsynergetic_customers_by_month AS (\nSELECT DISTINCT\n review.created_month,\n kpi.app_key,\n review.reviewer_id\nFROM only_ugc_synergies_kpi AS kpi\nINNER JOIN review\n ON LOWER(kpi.action_type) = 'review'\n AND kpi.action_id = review.review_id\n),\n\nsynergetic_customers_by_month_and_related_months AS (\nSELECT\n calendar.synergy_month,\n calendar.synergy_related_12m_range_month,\n customers.app_key,\n customers.reviewer_id\nFROM calendar_related_months AS calendar\nINNER JOIN synergetic_customers_by_month AS customers\n ON calendar.synergy_related_12m_range_month = customers.created_month\n),\n\nsynergetic_customers_metrcis_calculation AS (\nSELECT\n synergetic.synergy_month,\n synergetic.app_key,\n COUNT(review.review_id) AS synergetic_customer_last_12m_review_cnt,\n COUNT(DISTINCT synergetic.reviewer_id) AS synergetic_customer_last_12m_unique_cnt,\n SUM(review.score) AS synergetic_customer_last_12m_review_rating_sum\nFROM synergetic_customers_by_month_and_related_months AS synergetic\nINNER JOIN review\n ON synergetic.synergy_related_12m_range_month = review.created_month\n AND synergetic.app_key = review.app_key\n AND synergetic.reviewer_id = review.reviewer_id\nGROUP BY 1,2\n),\n\nall_customers_metrcis_calculation AS (\nSELECT\n calendar.synergy_month,\n review.app_key,\n COUNT(review.review_id) AS last_12m_review_cnt,\n COUNT(DISTINCT review.reviewer_id) AS last_12m_customer_unique_cnt,\n SUM(review.score) AS last_12m_review_rating_sum\nFROM calendar_related_months AS calendar\nINNER JOIN review\n ON calendar.synergy_related_12m_range_month = review.created_month\nGROUP BY 1,2\n),\n\nugc_tier_1_active_stores AS (\nSELECT\n activeness_month AS synergy_month,\n app_key\nFROM import_platform_store_product_activeness_monthly\nWHERE is_ugc_active_tier_1 = 1\nAND activeness_month >= MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-2,1,1)\n),\n\nsynergies_ugc_store_metrics_monthly_res AS (\nSELECT\n ugc_active.synergy_month,\n ugc_active.app_key,\n NVL(all_customers.last_12m_review_cnt,0) - NVL(synergetic.synergetic_customer_last_12m_review_cnt,0) AS non_synergetic_customer_last_12m_review_cnt,\n NVL(all_customers.last_12m_customer_unique_cnt,0) - NVL(synergetic.synergetic_customer_last_12m_unique_cnt,0) AS non_synergetic_customer_last_12m_unique_cnt,\n NVL(all_customers.last_12m_review_rating_sum,0) - NVL(synergetic.synergetic_customer_last_12m_review_rating_sum,0) AS non_synergetic_customer_last_12m_review_rating_sum,\n NVL(synergetic.synergetic_customer_last_12m_review_cnt,0) AS synergetic_customer_last_12m_review_cnt,\n NVL(synergetic.synergetic_customer_last_12m_unique_cnt,0) AS synergetic_customer_last_12m_unique_cnt,\n NVL(synergetic.synergetic_customer_last_12m_review_rating_sum,0) AS synergetic_customer_last_12m_review_rating_sum,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM ugc_tier_1_active_stores AS ugc_active\nLEFT JOIN synergetic_customers_metrcis_calculation AS synergetic\n ON ugc_active.synergy_month = synergetic.synergy_month\n AND ugc_active.app_key = synergetic.app_key\nLEFT JOIN all_customers_metrcis_calculation AS all_customers\n ON ugc_active.synergy_month = all_customers.synergy_month\n AND ugc_active.app_key = all_customers.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM synergies_ugc_store_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies__ugc_store_synergy_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.sql", "unique_id": "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__ugc_store_synergy_metrics_monthly", "analytics___synergies__ugc_store_synergy_metrics_monthly"], "alias": "analytics___synergies__ugc_store_synergy_metrics_monthly", "checksum": {"name": "sha256", "checksum": "6648c85abb7f9bd70377b26c86f6cee2758a04ffbde81b64846ebc16f3e1519b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of UGC synergies metrics at a monthly level | PK and granularity: synergy_month, app_key, synergy_id", "columns": {"synergy_month": {"name": "synergy_month", "description": "store synergy month - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "synergy_name": {"name": "synergy_name", "description": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_cnt": {"name": "review_cnt", "description": "number of reviews", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reviewer_cnt": {"name": "reviewer_cnt", "description": "number of unique reviewers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_rating_sum": {"name": "review_rating_sum", "description": "sum of reviews ratings", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_review_cnt": {"name": "synergetic_review_cnt", "description": "number of synergetic reviews", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_review_cnt_no_overlaps": {"name": "synergetic_review_cnt_no_overlaps", "description": "number of synergetic reviews without overlaps between synergies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_reviewer_cnt": {"name": "synergetic_reviewer_cnt", "description": "number of unique synergetic reviewers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_reviewer_cnt_no_overlaps": {"name": "synergetic_reviewer_cnt_no_overlaps", "description": "number of unique synergetic reviewers without overlaps between synergies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_review_rating_sum": {"name": "synergetic_review_rating_sum", "description": "sum of synergetic review ratings", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergetic_review_rating_sum_no_overlaps": {"name": "synergetic_review_rating_sum_no_overlaps", "description": "sum of synergetic review ratings without overlaps between synergies", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082662.5634558, "relation_name": "dev_dkruh1.analytics___synergies__ugc_store_synergy_metrics_monthly", "raw_code": "-- Import --\n\nWITH import_platform_synergy_product_mapping AS (\nSELECT * FROM {{ ref('platform_stg__synergy_product_mapping') }}\n),\n\nimport_calendar AS (\nSELECT * \nFROM {{ ref('platform_stg__dim_calendar') }}\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-4,1,1) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_platform_synergies_kpi AS (\nSELECT * FROM {{ ref('analytics___synergies__kpi_ranked_action') }}\n),\n\nimport_analytics_ugc_review AS (\nSELECT * FROM {{ ref('analytics___ugc__review') }}\n),\n\nimport_ugc_store_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___ugc__store_metrics_monthly') }}\n),\n\n-- Logic --\n\nugc_synergy_list AS (\nSELECT\n synergy_id,\n synergy_name\nFROM import_platform_synergy_product_mapping\nWHERE LOWER(product_name) = 'reviews'\nAND is_action_product = 1\n),\n\nonly_ugc_synergies_kpi AS (\nSELECT\n kpi.synergy_id,\n ugc.synergy_name,\n kpi.app_key,\n kpi.action_type,\n kpi.action_id,\n kpi.action_attribute_type,\n kpi.action_attribute_value,\n kpi.record_rank\nFROM import_platform_synergies_kpi AS kpi\nINNER JOIN ugc_synergy_list AS ugc\n ON kpi.synergy_id = ugc.synergy_id\n),\n\nsynergy_metrics_calculation AS (\nSELECT\n TRUNC(review.created_date,'MONTH') AS synergy_month,\n kpi.app_key,\n kpi.synergy_id,\n kpi.synergy_name,\n COUNT(DISTINCT review.review_id) AS synergetic_review_cnt,\n COUNT(DISTINCT IF(kpi.record_rank = 1,review.review_id,NULL)) AS synergetic_review_cnt_no_overlaps,\n COUNT(DISTINCT review.reviewer_id) AS synergetic_reviewer_cnt,\n COUNT(DISTINCT IF(kpi.record_rank = 1,review.reviewer_id,NULL)) AS synergetic_reviewer_cnt_no_overlaps,\n SUM(review.score) AS synergetic_review_rating_sum,\n SUM(IF(kpi.record_rank = 1,review.score,NULL)) AS synergetic_review_rating_sum_no_overlaps\nFROM only_ugc_synergies_kpi AS kpi\nINNER JOIN import_analytics_ugc_review AS review\n ON LOWER(kpi.action_type) = 'review'\n AND kpi.action_id = review.review_id\nINNER JOIN import_calendar AS calendar\n ON calendar.date = review.created_date\nGROUP BY 1,2,3,4\n),\n\nugc_store_synergy_metrics_monthly_res AS (\n SELECT\n synergy.synergy_month,\n synergy.app_key,\n synergy.synergy_id,\n synergy.synergy_name,\n NVL(metrics_monthly.review_cnt,0) AS review_cnt,\n NVL(metrics_monthly.reviewer_cnt,0) AS reviewer_cnt,\n NVL(metrics_monthly.review_rating_sum,0) AS review_rating_sum,\n synergy.synergetic_review_cnt,\n synergy.synergetic_review_cnt_no_overlaps,\n synergy.synergetic_reviewer_cnt,\n synergy.synergetic_reviewer_cnt_no_overlaps,\n synergy.synergetic_review_rating_sum,\n synergy.synergetic_review_rating_sum_no_overlaps,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM synergy_metrics_calculation AS synergy\n LEFT JOIN import_ugc_store_metrics_monthly AS metrics_monthly\n ON synergy.synergy_month = metrics_monthly.metric_month\n AND synergy.app_key = metrics_monthly.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_store_synergy_metrics_monthly_res", "language": "sql", "refs": [{"name": "platform_stg__synergy_product_mapping", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___synergies__kpi_ranked_action", "package": null, "version": null}, {"name": "analytics___ugc__review", "package": null, "version": null}, {"name": "analytics___ugc__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__synergy_product_mapping", "model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___synergies__kpi_ranked_action", "model.yoda.analytics___ugc__review", "model.yoda.analytics___ugc__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_synergy_product_mapping AS (\nSELECT * FROM dev_dkruh1.platform_stg__synergy_product_mapping\n),\n\nimport_calendar AS (\nSELECT * \nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE date BETWEEN MAKE_DATE(YEAR(DATE_SUB(CURRENT_DATE,1))-4,1,1) AND DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_platform_synergies_kpi AS (\nSELECT * FROM dev_dkruh1.analytics___synergies__kpi_ranked_action\n),\n\nimport_analytics_ugc_review AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__review\n),\n\nimport_ugc_store_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_metrics_monthly\n),\n\n-- Logic --\n\nugc_synergy_list AS (\nSELECT\n synergy_id,\n synergy_name\nFROM import_platform_synergy_product_mapping\nWHERE LOWER(product_name) = 'reviews'\nAND is_action_product = 1\n),\n\nonly_ugc_synergies_kpi AS (\nSELECT\n kpi.synergy_id,\n ugc.synergy_name,\n kpi.app_key,\n kpi.action_type,\n kpi.action_id,\n kpi.action_attribute_type,\n kpi.action_attribute_value,\n kpi.record_rank\nFROM import_platform_synergies_kpi AS kpi\nINNER JOIN ugc_synergy_list AS ugc\n ON kpi.synergy_id = ugc.synergy_id\n),\n\nsynergy_metrics_calculation AS (\nSELECT\n TRUNC(review.created_date,'MONTH') AS synergy_month,\n kpi.app_key,\n kpi.synergy_id,\n kpi.synergy_name,\n COUNT(DISTINCT review.review_id) AS synergetic_review_cnt,\n COUNT(DISTINCT IF(kpi.record_rank = 1,review.review_id,NULL)) AS synergetic_review_cnt_no_overlaps,\n COUNT(DISTINCT review.reviewer_id) AS synergetic_reviewer_cnt,\n COUNT(DISTINCT IF(kpi.record_rank = 1,review.reviewer_id,NULL)) AS synergetic_reviewer_cnt_no_overlaps,\n SUM(review.score) AS synergetic_review_rating_sum,\n SUM(IF(kpi.record_rank = 1,review.score,NULL)) AS synergetic_review_rating_sum_no_overlaps\nFROM only_ugc_synergies_kpi AS kpi\nINNER JOIN import_analytics_ugc_review AS review\n ON LOWER(kpi.action_type) = 'review'\n AND kpi.action_id = review.review_id\nINNER JOIN import_calendar AS calendar\n ON calendar.date = review.created_date\nGROUP BY 1,2,3,4\n),\n\nugc_store_synergy_metrics_monthly_res AS (\n SELECT\n synergy.synergy_month,\n synergy.app_key,\n synergy.synergy_id,\n synergy.synergy_name,\n NVL(metrics_monthly.review_cnt,0) AS review_cnt,\n NVL(metrics_monthly.reviewer_cnt,0) AS reviewer_cnt,\n NVL(metrics_monthly.review_rating_sum,0) AS review_rating_sum,\n synergy.synergetic_review_cnt,\n synergy.synergetic_review_cnt_no_overlaps,\n synergy.synergetic_reviewer_cnt,\n synergy.synergetic_reviewer_cnt_no_overlaps,\n synergy.synergetic_review_rating_sum,\n synergy.synergetic_review_rating_sum_no_overlaps,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM synergy_metrics_calculation AS synergy\n LEFT JOIN import_ugc_store_metrics_monthly AS metrics_monthly\n ON synergy.synergy_month = metrics_monthly.metric_month\n AND synergy.app_key = metrics_monthly.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_store_synergy_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness.sql", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness.sql", "unique_id": "model.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "fqn": ["yoda", "analytics", "synergies", "staging", "base", "analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness"], "alias": "analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "checksum": {"name": "sha256", "checksum": "7860148350544721d1c3fe852f2a16ae9a081bc7eb2084a8ae2ac7ae5b42a37e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Model which includes static values used for filtering and mapping in models that includes active stores in the products' synergies", "columns": {"earning_rule_type": {"name": "earning_rule_type", "description": "earning rule type - e.g., smssignupcampaign, yotporeviewcampaign, etc. - Primary Key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/staging/base/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082662.6157215, "relation_name": "dev_dkruh1.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "raw_code": "WITH source AS (\nSELECT * FROM {{ source('analytics__static', 'loyalty_earning_rule_types_for_synergy_activeness') }}\n), \n\nanalytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness AS (\nSELECT\n earning_rule_type,\n synergy_id\nFROM source\n)\n\nSELECT * \nFROM analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "language": "sql", "refs": [], "sources": [["analytics__static", "loyalty_earning_rule_types_for_synergy_activeness"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.loyalty_earning_rule_types_for_synergy_activeness"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/base/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness.sql", "compiled": true, "compiled_code": "WITH source AS (\nSELECT * FROM static.loyalty_earning_rule_types_for_synergy_activeness\n), \n\nanalytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness AS (\nSELECT\n earning_rule_type,\n synergy_id\nFROM source\n)\n\nSELECT * \nFROM analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness.sql", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness.sql", "unique_id": "model.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "fqn": ["yoda", "analytics", "synergies", "staging", "base", "analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness"], "alias": "analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "checksum": {"name": "sha256", "checksum": "8dd635477b756b87f56dfd603ceaadbccf20b2a1d0ecda8277d980b077e677a3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Model which includes static values used for filtering and mapping in models that includes active stores in the products' synergies", "columns": {"flow_settings": {"name": "flow_settings", "description": "flow settings pattern - e.g., %\"field\":\"loyalty.% - Primary Key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082662.6273293, "relation_name": "dev_dkruh1.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "raw_code": "WITH source AS (\nSELECT * FROM {{ source('analytics__static', 'sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness') }}\n), \n\nanalytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness AS (\nSELECT\n flow_settings\nFROM source\n)\n\nSELECT * \nFROM analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "language": "sql", "refs": [], "sources": [["analytics__static", "sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness.sql", "compiled": true, "compiled_code": "WITH source AS (\nSELECT * FROM static.sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness\n), \n\nanalytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness AS (\nSELECT\n flow_settings\nFROM source\n)\n\nSELECT * \nFROM analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness.sql", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness.sql", "unique_id": "model.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "fqn": ["yoda", "analytics", "synergies", "staging", "base", "analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness"], "alias": "analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "checksum": {"name": "sha256", "checksum": "0c004b268db2a552a85ecb8605c0c9a82961a8e11a2c8a35d614856ac26f232d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Model which includes static values used for filtering and mapping in models that includes active stores in the products' synergies", "columns": {"flow_trigger": {"name": "flow_trigger", "description": "flow trigger - e.g., integrations/swell_redemption_reminder, checkouts/create, etc. - Primary Key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082662.6384187, "relation_name": "dev_dkruh1.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "raw_code": "WITH source AS (\nSELECT * FROM {{ source('analytics__static', 'sms_flow_triggers_for_synergy_activeness') }}\n), \n\nanalytics___synergies_stg__sms_flow_triggers_for_synergy_activeness AS (\nSELECT\n flow_trigger,\n synergy_id\nFROM source\n)\n\nSELECT * \nFROM analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "language": "sql", "refs": [], "sources": [["analytics__static", "sms_flow_triggers_for_synergy_activeness"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.sms_flow_triggers_for_synergy_activeness"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness.sql", "compiled": true, "compiled_code": "WITH source AS (\nSELECT * FROM static.sms_flow_triggers_for_synergy_activeness\n), \n\nanalytics___synergies_stg__sms_flow_triggers_for_synergy_activeness AS (\nSELECT\n flow_trigger,\n synergy_id\nFROM source\n)\n\nSELECT * \nFROM analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness.sql", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness.sql", "unique_id": "model.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "fqn": ["yoda", "analytics", "synergies", "staging", "base", "analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness"], "alias": "analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "checksum": {"name": "sha256", "checksum": "6b60764ea9c99332f2a81c7fc37ea562105249a3a1da523c1bc9fcf57ae94d67"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Model which includes static values used for filtering and mapping in models that includes active stores in the products' synergies", "columns": {"flow_trigger": {"name": "flow_trigger", "description": "flow trigger - e.g., integrations/swell_redemption_reminder, integrations/swell_birthday, etc. - Primary Key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082662.6492143, "relation_name": "dev_dkruh1.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "raw_code": "WITH source AS (\nSELECT * FROM {{ source('analytics__static', 'sms_flow_triggers_to_filter_for_custom_loyalty_activeness') }}\n), \n\nanalytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness AS (\nSELECT\n flow_trigger\nFROM source\n)\n\nSELECT * \nFROM analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "language": "sql", "refs": [], "sources": [["analytics__static", "sms_flow_triggers_to_filter_for_custom_loyalty_activeness"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.sms_flow_triggers_to_filter_for_custom_loyalty_activeness"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness.sql", "compiled": true, "compiled_code": "WITH source AS (\nSELECT * FROM static.sms_flow_triggers_to_filter_for_custom_loyalty_activeness\n), \n\nanalytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness AS (\nSELECT\n flow_trigger\nFROM source\n)\n\nSELECT * \nFROM analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness.sql", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness.sql", "unique_id": "model.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "fqn": ["yoda", "analytics", "synergies", "staging", "base", "analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness"], "alias": "analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "checksum": {"name": "sha256", "checksum": "4e989668bccede3ef08d4e1f92710e89107fc536ebebccad4ced8add6d5c3380"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Model which includes static values used for filtering and mapping in models that includes active stores in the products' synergies", "columns": {"sub_category": {"name": "sub_category", "description": "sub-category - e.g., redeem-points, vip-tier, etc. - Primary Key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/staging/base/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082662.6617699, "relation_name": "dev_dkruh1.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "raw_code": "WITH source AS (\nSELECT * FROM {{ source('analytics__static', 'sms_predefined_message_sub_category_for_synergy_activeness') }}\n),\n\nanalytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness AS (\nSELECT \n sub_category,\n synergy_id\nFROM source\n)\n\nSELECT * \nFROM analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "language": "sql", "refs": [], "sources": [["analytics__static", "sms_predefined_message_sub_category_for_synergy_activeness"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.sms_predefined_message_sub_category_for_synergy_activeness"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/base/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness.sql", "compiled": true, "compiled_code": "WITH source AS (\nSELECT * FROM static.sms_predefined_message_sub_category_for_synergy_activeness\n),\n\nanalytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness AS (\nSELECT \n sub_category,\n synergy_id\nFROM source\n)\n\nSELECT * \nFROM analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies_stg__enablement_event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies_stg__enablement_event", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.sql", "unique_id": "model.yoda.analytics___synergies_stg__enablement_event", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__enablement_event", "analytics___synergies_stg__enablement_event"], "alias": "analytics___synergies_stg__enablement_event", "checksum": {"name": "sha256", "checksum": "fb92d86c56d5e6151fab6f328df3a8730b2193b121142277288b2be47359a142"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled view of synergies enablement events | PK and granularity: app_key, widget_id, updated_at", "columns": {"app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_id": {"name": "widget_id", "description": "widget unique identifier - primary key 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "event update timestamp - primary key 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_event_id": {"name": "first_event_id", "description": "the first event identifier for store and widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled": {"name": "is_enabled", "description": "store synergy enablement indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "enablement_status": {"name": "enablement_status", "description": "store synergy enablement status: completed, incomplete", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_widget_event_count": {"name": "store_widget_event_count", "description": "event count for store and widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_widget_row_ranking": {"name": "store_widget_row_ranking", "description": "event ranking for store and widget by updated_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "store_widget_row_ranking_backwards": {"name": "store_widget_row_ranking_backwards", "description": "event ranking for store and widget by updated_at backwards", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "first_event_created_at": {"name": "first_event_created_at", "description": "first event created timestamp for store and widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_event_created_date": {"name": "first_event_created_date", "description": "first event created date for store and widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_date": {"name": "updated_date", "description": "event update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082662.6796339, "relation_name": "dev_dkruh1.analytics___synergies_stg__enablement_event", "raw_code": "-- Import --\n\nWITH import_platform_stg__synergies_crud AS (\nSELECT * FROM {{ ref('platform_stg__synergies_crud') }}\n),\n\nimport_platform_synergy_start_date_mapping AS (\nSELECT * FROM {{ ref('platform_stg__synergy_start_date_mapping') }}\n),\n\n-- Logic --\n\nadjusted_enablement_events AS (\nSELECT\n crud.store_id,\n crud.widget_id,\n crud.id,\n crud.status,\n NVL(TIMESTAMP(mapping.start_date), crud.created_at) AS created_at,\n crud.updated_at,\n crud.processing_time\nFROM import_platform_stg__synergies_crud AS crud\nLEFT JOIN import_platform_synergy_start_date_mapping AS mapping\n ON crud.widget_id = mapping.synergy_id\n AND DATE(crud.created_at) < mapping.start_date\nWHERE (LOWER(crud.status) = 'incomplete' \n OR (LOWER(crud.status) = 'completed' AND mapping.synergy_id IS NULL))\n),\n\nrow_ranking AS (\nSELECT\n store_id AS app_key,\n widget_id,\n updated_at,\n id AS first_event_id,\n SMALLINT(IF(LOWER(status)='completed',1,0)) AS is_enabled,\n status AS enablement_status,\n created_at AS first_event_created_at,\n DATE(created_at) AS first_event_created_date,\n DATE(updated_at) AS updated_date,\n ROW_NUMBER() OVER (PARTITION BY id, updated_at ORDER BY status DESC, processing_time) AS rank_for_event_and_updated_at\nFROM adjusted_enablement_events\n),\n\nplatform_stg__synergy_enablement_event_res AS (\nSELECT\n app_key,\n widget_id,\n updated_at,\n first_event_id,\n is_enabled,\n enablement_status,\n COUNT(*) OVER (PARTITION BY app_key, widget_id) AS store_widget_event_count,\n ROW_NUMBER() OVER (PARTITION BY app_key, widget_id ORDER BY updated_at) AS store_widget_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY app_key, widget_id ORDER BY updated_at DESC) AS store_widget_row_ranking_backwards,\n first_event_created_at,\n first_event_created_date,\n updated_date\nFROM row_ranking\nWHERE rank_for_event_and_updated_at = 1\n)\n\n-- Result --\n\nSELECT *\nFROM platform_stg__synergy_enablement_event_res", "language": "sql", "refs": [{"name": "platform_stg__synergies_crud", "package": null, "version": null}, {"name": "platform_stg__synergy_start_date_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__synergies_crud", "model.yoda.platform_stg__synergy_start_date_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__synergies_crud AS (\nSELECT * FROM dev_dkruh1.platform_stg__synergies_crud\n),\n\nimport_platform_synergy_start_date_mapping AS (\nSELECT * FROM dev_dkruh1.platform_stg__synergy_start_date_mapping\n),\n\n-- Logic --\n\nadjusted_enablement_events AS (\nSELECT\n crud.store_id,\n crud.widget_id,\n crud.id,\n crud.status,\n NVL(TIMESTAMP(mapping.start_date), crud.created_at) AS created_at,\n crud.updated_at,\n crud.processing_time\nFROM import_platform_stg__synergies_crud AS crud\nLEFT JOIN import_platform_synergy_start_date_mapping AS mapping\n ON crud.widget_id = mapping.synergy_id\n AND DATE(crud.created_at) < mapping.start_date\nWHERE (LOWER(crud.status) = 'incomplete' \n OR (LOWER(crud.status) = 'completed' AND mapping.synergy_id IS NULL))\n),\n\nrow_ranking AS (\nSELECT\n store_id AS app_key,\n widget_id,\n updated_at,\n id AS first_event_id,\n SMALLINT(IF(LOWER(status)='completed',1,0)) AS is_enabled,\n status AS enablement_status,\n created_at AS first_event_created_at,\n DATE(created_at) AS first_event_created_date,\n DATE(updated_at) AS updated_date,\n ROW_NUMBER() OVER (PARTITION BY id, updated_at ORDER BY status DESC, processing_time) AS rank_for_event_and_updated_at\nFROM adjusted_enablement_events\n),\n\nplatform_stg__synergy_enablement_event_res AS (\nSELECT\n app_key,\n widget_id,\n updated_at,\n first_event_id,\n is_enabled,\n enablement_status,\n COUNT(*) OVER (PARTITION BY app_key, widget_id) AS store_widget_event_count,\n ROW_NUMBER() OVER (PARTITION BY app_key, widget_id ORDER BY updated_at) AS store_widget_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY app_key, widget_id ORDER BY updated_at DESC) AS store_widget_row_ranking_backwards,\n first_event_created_at,\n first_event_created_date,\n updated_date\nFROM row_ranking\nWHERE rank_for_event_and_updated_at = 1\n)\n\n-- Result --\n\nSELECT *\nFROM platform_stg__synergy_enablement_event_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies_stg__home_screen_section": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies_stg__home_screen_section", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.sql", "unique_id": "model.yoda.analytics___synergies_stg__home_screen_section", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_section", "analytics___synergies_stg__home_screen_section"], "alias": "analytics___synergies_stg__home_screen_section", "checksum": {"name": "sha256", "checksum": "027fecebbd6b864b0c8249f5a1f7aa5c289a4c581bb510357467e825495f4b94"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled view of home screen sections | PK and granularity: section_id", "columns": {"section_id": {"name": "section_id", "description": "section unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "section_name": {"name": "section_name", "description": "section name: recommendations, synergies, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082662.7241547, "relation_name": "dev_dkruh1.analytics___synergies_stg__home_screen_section", "raw_code": "-- Import --\n\nWITH import_platform_stg__sections AS (\nSELECT * FROM {{ ref('platform_stg__sections') }}\n), \n\n-- Logic --\n\nhome_screen_section_res AS (\nSELECT\n id AS section_id,\n name AS section_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_platform_stg__sections\n)\n\n-- Result --\n\nSELECT *\nFROM home_screen_section_res", "language": "sql", "refs": [{"name": "platform_stg__sections", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__sections"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__sections AS (\nSELECT * FROM dev_dkruh1.platform_stg__sections\n), \n\n-- Logic --\n\nhome_screen_section_res AS (\nSELECT\n id AS section_id,\n name AS section_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_platform_stg__sections\n)\n\n-- Result --\n\nSELECT *\nFROM home_screen_section_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies_stg__home_screen_widget": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies_stg__home_screen_widget", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.sql", "unique_id": "model.yoda.analytics___synergies_stg__home_screen_widget", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_widget", "analytics___synergies_stg__home_screen_widget"], "alias": "analytics___synergies_stg__home_screen_widget", "checksum": {"name": "sha256", "checksum": "6e6323ec963a69228f42b65965690a6a1de8e6ba7658af26bee59cce8ec51093"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "platform"], "description": "Modeled view of home screen widgets | PK and granularity: widget_id", "columns": {"widget_id": {"name": "widget_id", "description": "widget unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "section_id": {"name": "section_id", "description": "section unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_name": {"name": "widget_name", "description": "widget name: popup_form, social_opt_in, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082662.7585528, "relation_name": "dev_dkruh1.analytics___synergies_stg__home_screen_widget", "raw_code": "-- Import --\n\nWITH import_platform_stg__widgets AS (\nSELECT * FROM {{ ref('platform_stg__widgets') }}\n), \n\n-- Logic --\n\nplatform_stg__home_screen_widget_res AS (\nSELECT\n id AS widget_id,\n section_id,\n widget_key AS widget_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_platform_stg__widgets\n)\n\n-- Result --\n\nSELECT *\nFROM platform_stg__home_screen_widget_res", "language": "sql", "refs": [{"name": "platform_stg__widgets", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__widgets"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__widgets AS (\nSELECT * FROM dev_dkruh1.platform_stg__widgets\n), \n\n-- Logic --\n\nplatform_stg__home_screen_widget_res AS (\nSELECT\n id AS widget_id,\n section_id,\n widget_key AS widget_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_platform_stg__widgets\n)\n\n-- Result --\n\nSELECT *\nFROM platform_stg__home_screen_widget_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies_stg__home_screen_widget_configuration": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies_stg__home_screen_widget_configuration", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.sql", "unique_id": "model.yoda.analytics___synergies_stg__home_screen_widget_configuration", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_widget_configuration", "analytics___synergies_stg__home_screen_widget_configuration"], "alias": "analytics___synergies_stg__home_screen_widget_configuration", "checksum": {"name": "sha256", "checksum": "c3621917fa3d4e3ed6b1ddae8d3553c23faeed725bbcc393a195a8548ee59f19"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled view of home screen widget configurations | PK and granularity: widget_configuration_id", "columns": {"widget_configuration_id": {"name": "widget_configuration_id", "description": "widget configuration unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_id": {"name": "widget_id", "description": "widget unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "configuration_key": {"name": "configuration_key", "description": "configuration key name (i.e title, description, etc.)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "configuration_value": {"name": "configuration_value", "description": "the value of the given configuration key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "acalev@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082662.792781, "relation_name": "dev_dkruh1.analytics___synergies_stg__home_screen_widget_configuration", "raw_code": "-- Import --\n\nWITH import_homescreen_widget_configuration AS (\nSELECT * FROM {{ ref('platform_stg__widget_configurations') }}\n),\n\n-- Logic --\n\nanalytics___synergies_stg__home_screen_widget_configuration_res AS (\nSELECT\n id AS widget_configuration_id,\n widget_id,\n configuration_key,\n TRIM(value) AS configuration_value,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_homescreen_widget_configuration\n)\n\n-- Result --\n\nSELECT *\nFROM analytics___synergies_stg__home_screen_widget_configuration_res", "language": "sql", "refs": [{"name": "platform_stg__widget_configurations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__widget_configurations"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_homescreen_widget_configuration AS (\nSELECT * FROM dev_dkruh1.platform_stg__widget_configurations\n),\n\n-- Logic --\n\nanalytics___synergies_stg__home_screen_widget_configuration_res AS (\nSELECT\n id AS widget_configuration_id,\n widget_id,\n configuration_key,\n TRIM(value) AS configuration_value,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_homescreen_widget_configuration\n)\n\n-- Result --\n\nSELECT *\nFROM analytics___synergies_stg__home_screen_widget_configuration_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___synergies_stg__synergy_widget": {"database": null, "schema": "dev_dkruh1", "name": "analytics___synergies_stg__synergy_widget", "resource_type": "model", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.sql", "unique_id": "model.yoda.analytics___synergies_stg__synergy_widget", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__synergy_widget", "analytics___synergies_stg__synergy_widget"], "alias": "analytics___synergies_stg__synergy_widget", "checksum": {"name": "sha256", "checksum": "da045580713607bf2ab286e7663f6357e92b6737315c8d275b6fd4aca5a493ab"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "synergies"], "description": "Modeled table of synergies home screen widgets | PK and granularity: widget_id", "columns": {"widget_id": {"name": "widget_id", "description": "synergy widget id - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_name": {"name": "widget_name", "description": "widget name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "materialized": "table"}, "created_at": 1700082662.8247797, "relation_name": "dev_dkruh1.analytics___synergies_stg__synergy_widget", "raw_code": "{{ config(materialized = dbt_data_applications.get_table_materialization('table', 'view'),) }}\n\n-- Import --\n\nWITH import_platform_stg__home_screen_widget AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__home_screen_widget') }}\n),\n\nimport_platform_stg__home_screen_section AS (\nSELECT * FROM {{ ref('analytics___synergies_stg__home_screen_section') }}\n),\n\n-- Logic --\n\nsynergy_widget_res AS\n(\nSELECT\n widget.widget_id,\n widget.widget_name,\n widget.created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_platform_stg__home_screen_widget AS widget\nINNER JOIN import_platform_stg__home_screen_section AS section\n ON widget.section_id = section.section_id\nWHERE LOWER(section.section_name) = 'synergies'\n)\n\n-- Result --\n\nSELECT *\nFROM synergy_widget_res", "language": "sql", "refs": [{"name": "analytics___synergies_stg__home_screen_widget", "package": null, "version": null}, {"name": "analytics___synergies_stg__home_screen_section", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___synergies_stg__home_screen_widget", "model.yoda.analytics___synergies_stg__home_screen_section"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_platform_stg__home_screen_widget AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__home_screen_widget\n),\n\nimport_platform_stg__home_screen_section AS (\nSELECT * FROM dev_dkruh1.analytics___synergies_stg__home_screen_section\n),\n\n-- Logic --\n\nsynergy_widget_res AS\n(\nSELECT\n widget.widget_id,\n widget.widget_name,\n widget.created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_platform_stg__home_screen_widget AS widget\nINNER JOIN import_platform_stg__home_screen_section AS section\n ON widget.section_id = section.section_id\nWHERE LOWER(section.section_name) = 'synergies'\n)\n\n-- Result --\n\nSELECT *\nFROM synergy_widget_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__active_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__active_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.sql", "unique_id": "model.yoda.analytics___ugc__active_metrics_monthly", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__active_metrics_monthly", "analytics___ugc__active_metrics_monthly"], "alias": "analytics___ugc__active_metrics_monthly", "checksum": {"name": "sha256", "checksum": "703fe140d6ea5ed983e257eab2ea750d0386fee42ad7f40e03a98f5fb9566963"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Active drill by components by last day in month (looking 30 days back) | granularity: metrics_id", "columns": {"metrics_id": {"name": "metrics_id", "description": "The table ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_type": {"name": "owner_type", "description": "Organization or store level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "platform_name": {"name": "platform_name", "description": "Platfrom based on organization or store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan_name": {"name": "platform_plan_name", "description": "The name of the store platform plan", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_group": {"name": "closing_plan_group", "description": "closing plan group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_name": {"name": "closing_plan_name", "description": "The closing plan name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_last_3m_orders_avg_bucket": {"name": "organization_last_3m_orders_avg_bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_pla_enabled_l30d": {"name": "is_pla_enabled_l30d", "description": "Pla enablement last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_widget_loaded": {"name": "is_reviews_widget_loaded", "description": "Indication if the store/organization had a widget load in the last 30d in the end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_gsr_enabled_l30d": {"name": "is_gsr_enabled_l30d", "description": "Gsr enablement ins last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "had_reviews_last_30d": {"name": "had_reviews_last_30d", "description": "Indication if the store/organization had reviews in the last 30d in the end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "had_orders_last_30d": {"name": "had_orders_last_30d", "description": "Indication if the store/organization had orders in the last 30d in the end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_map_enabled_l30d": {"name": "is_map_enabled_l30d", "description": "Indication if the store/organization map was enabled in the last 30d in the end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_pla_enabled": {"name": "is_pla_enabled", "description": "Indication if the store/organization had PLA enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_gsr_enabled": {"name": "is_gsr_enabled", "description": "Indication if the store/organization had GSR enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_0": {"name": "is_active_tier_0", "description": "Indication if the store/organization was active 0 in the last 30d in the end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_1": {"name": "is_active_tier_1", "description": "Indication if the store/organization was active 1 in the last 30d in the end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_2": {"name": "is_active_tier_2", "description": "Indication if the store/organization was active 2 in the last 30d in the end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_3": {"name": "is_active_tier_3", "description": "Indication if the store/organization was active 3 in the last 30d in the end of month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "metric_amount": {"name": "metric_amount", "description": "Amount of stores or organizations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_created_at": {"name": "dwh_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082663.1032493, "relation_name": "dev_dkruh1.analytics___ugc__active_metrics_monthly", "raw_code": "-- Import --\nWITH import_ugc_store_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___ugc__store_metrics_daily') }}\n),\n\nimport_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_platform_organization_metrics AS (\nSELECT * FROM {{ ref('analytics___platform__organization_metrics_monthly') }}\n),\n\nimport_platform_organization_plan_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_plan_monthly') }}\n),\n-- Logic --\n\nplan_monthly AS (\nSELECT\n organization_key,\n month,\n closing_plan_group,\n closing_plan_name\nFROM import_platform_organization_plan_monthly\nWHERE is_reviews = 1 \nAND MONTHS_BETWEEN(TRUNC(CURRENT_DATE(), 'MONTH'), month) BETWEEN 0 AND 24\n),\n\nsegment_monthly AS (\nSELECT\n organization_key,\n month,\n primary_platform_by_orders,\n last_3m_orders_avg_bucket\nFROM import_platform_organization_metrics\nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE(),'MONTH'), month) BETWEEN 0 AND 24\n),\n\nstore_platform AS (\nSELECT\n app_key,\n platform_name,\n platform_plan_name\nFROM import_store\n),\n\nactive_daily AS(\nSELECT\n TRUNC(metric_date, 'MONTH') AS month,\n organization_key,\n app_key,\n ROW_NUMBER() OVER (PARTITION BY app_key, DATE_TRUNC('MONTH', metric_date) ORDER BY metric_date DESC) AS last_day_in_month,\n is_googlefeed_enabled_l30d,\n is_reviews_widget_loaded,\n IF(review_cnt_l30d>0,1,0) had_reviews_last_30d,\n IF(order_cnt_l30d > 0, 1, 0) AS had_orders_last_30d,\n is_googlesellerrating_enabled_l30d,\n is_map_enabled_l30d,\n is_active_tier_0,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n is_googlefeed_enabled,\n is_googlesellerrating_enabled\nFROM import_ugc_store_metrics_daily\nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE(), 'MONTH'), TRUNC(metric_date, 'MONTH')) BETWEEN 0 AND 24\n),\n\nactive_monthly_enriched AS (\nSELECT\n active_daily.month,\n active_daily.organization_key,\n active_daily.app_key,\n import_store.platform_name,\n import_store.platform_plan_name,\n plan_monthly.closing_plan_group,\n plan_monthly.closing_plan_name,\n segment_monthly.primary_platform_by_orders AS organization_platform,\n segment_monthly.last_3m_orders_avg_bucket AS organization_last_3m_orders_avg_bucket,\n active_daily.is_googlefeed_enabled_l30d,\n active_daily.is_reviews_widget_loaded,\n active_daily.is_googlesellerrating_enabled_l30d,\n active_daily.had_reviews_last_30d,\n active_daily.had_orders_last_30d,\n active_daily.is_map_enabled_l30d,\n active_daily.is_active_tier_0,\n active_daily.is_active_tier_1,\n active_daily.is_active_tier_2,\n active_daily.is_active_tier_3,\n active_daily.is_googlefeed_enabled,\n active_daily.is_googlesellerrating_enabled\nFROM active_daily \nLEFT JOIN plan_monthly \n ON active_daily.organization_key = plan_monthly.organization_key\n AND active_daily.month = plan_monthly.month\nLEFT JOIN import_store \n ON active_daily.app_key = import_store.app_key\nLEFT JOIN segment_monthly \n ON active_daily.organization_key = segment_monthly.organization_key\n AND active_daily.month = segment_monthly.month\nWHERE active_daily.last_day_in_month = 1\n),\n\norg_active_monthly AS(\nSELECT \n month,\n organization_key,\n closing_plan_group,\n closing_plan_name,\n organization_platform,\n organization_last_3m_orders_avg_bucket,\n MAX(SMALLINT(IF(is_googlefeed_enabled_l30d = 1,1,0))) AS is_googlefeed_enabled_l30d,\n MAX(SMALLINT(IF(is_reviews_widget_loaded = 1,1,0))) AS is_reviews_widget_loaded,\n MAX(SMALLINT(IF(is_googlesellerrating_enabled_l30d = 1,1,0))) AS is_googlesellerrating_enabled_l30d,\n MAX(SMALLINT(IF(had_reviews_last_30d = 1,1,0))) AS had_reviews_last_30d,\n MAX(SMALLINT(IF(had_orders_last_30d = 1,1,0))) AS had_orders_last_30d,\n MAX(SMALLINT(IF(is_map_enabled_l30d = 1,1,0))) AS is_map_enabled_l30d,\n MAX(SMALLINT(IF(is_googlefeed_enabled = 1,1,0))) AS is_googlefeed_enabled,\n MAX(SMALLINT(IF(is_googlesellerrating_enabled = 1,1,0))) AS is_googlesellerrating_enabled,\n MAX(SMALLINT(IF(is_active_tier_0 = 1,1,0))) AS is_active_tier_0,\n MAX(SMALLINT(IF(is_active_tier_1 = 1,1,0))) AS is_active_tier_1,\n MAX(SMALLINT(IF(is_active_tier_2 = 1,1,0))) AS is_active_tier_2,\n MAX(SMALLINT(IF(is_active_tier_3 = 1,1,0))) AS is_active_tier_3\n FROM active_monthly_enriched\n GROUP BY 1,2,3,4,5,6\n),\n\norgnization_and_store_active_monthly AS (\nSELECT\n 'store' AS owner_type,\n month,\n platform_name,\n platform_plan_name,\n closing_plan_group,\n closing_plan_name,\n organization_last_3m_orders_avg_bucket,\n is_googlefeed_enabled_l30d,\n is_reviews_widget_loaded,\n is_googlesellerrating_enabled_l30d,\n had_reviews_last_30d,\n had_orders_last_30d,\n is_map_enabled_l30d,\n is_googlefeed_enabled,\n is_googlesellerrating_enabled,\n is_active_tier_0,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n COUNT(DISTINCT app_Key) AS metric_amount\nFROM active_monthly_enriched \nGROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19\n\nUNION ALL\n\nSELECT \n 'organization' AS owner_type,\n month,\n organization_platform AS platform_name,\n NULL AS platform_plan_name,\n closing_plan_group,\n closing_plan_name, \n organization_last_3m_orders_avg_bucket,\n is_googlefeed_enabled_l30d,\n is_reviews_widget_loaded,\n is_googlesellerrating_enabled_l30d,\n had_reviews_last_30d,\n had_orders_last_30d,\n is_map_enabled_l30d,\n is_googlefeed_enabled, \n is_googlesellerrating_enabled, \n is_active_tier_0,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n COUNT(DISTINCT organization_key) AS metric_amount\nFROM org_active_monthly\nGROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19\n),\n\nactive_monthly_res AS (\nSELECT\n SHA2(CONCAT(month,NVL(owner_type,'~'),NVL(platform_name,'~'),NVL(platform_plan_name,'~'),NVL(closing_plan_group,'~'),NVL(closing_plan_name,'~'),\n NVL(organization_last_3m_orders_avg_bucket,'~'),NVL(is_googlefeed_enabled_l30d,'~'),NVL(is_reviews_widget_loaded,'~'),NVL(is_googlesellerrating_enabled_l30d,'~'),\n NVL(had_reviews_last_30d,'~'),NVL(had_orders_last_30d,'~'),NVL(is_map_enabled_l30d,'~'),NVL(is_active_tier_0,'~'),NVL(is_active_tier_1,'~'),NVL(is_googlefeed_enabled,'~'),NVL(is_googlesellerrating_enabled,'~'),\n NVL(is_active_tier_2,'~'),NVL(is_active_tier_3,'~')),256) AS metrics_id,\n owner_type, \n month,\n platform_name,\n platform_plan_name,\n closing_plan_group,\n closing_plan_name, \n organization_last_3m_orders_avg_bucket,\n is_googlefeed_enabled_l30d AS is_pla_enabled_l30d,\n is_reviews_widget_loaded,\n is_googlesellerrating_enabled_l30d AS is_gsr_enabled_l30d,\n had_reviews_last_30d,\n had_orders_last_30d,\n is_map_enabled_l30d,\n is_googlefeed_enabled AS is_pla_enabled, \n is_googlesellerrating_enabled AS is_gsr_enabled, \n is_active_tier_0,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n metric_amount,\n CURRENT_TIMESTAMP AS dwh_created_at\nFROM orgnization_and_store_active_monthly\n)\n\n-- Result --\n\nSELECT *\nFROM active_monthly_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.sql", "compiled": true, "compiled_code": "-- Import --\nWITH import_ugc_store_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_metrics_daily\n),\n\nimport_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_platform_organization_metrics AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_metrics_monthly\n),\n\nimport_platform_organization_plan_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_plan_monthly\n),\n-- Logic --\n\nplan_monthly AS (\nSELECT\n organization_key,\n month,\n closing_plan_group,\n closing_plan_name\nFROM import_platform_organization_plan_monthly\nWHERE is_reviews = 1 \nAND MONTHS_BETWEEN(TRUNC(CURRENT_DATE(), 'MONTH'), month) BETWEEN 0 AND 24\n),\n\nsegment_monthly AS (\nSELECT\n organization_key,\n month,\n primary_platform_by_orders,\n last_3m_orders_avg_bucket\nFROM import_platform_organization_metrics\nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE(),'MONTH'), month) BETWEEN 0 AND 24\n),\n\nstore_platform AS (\nSELECT\n app_key,\n platform_name,\n platform_plan_name\nFROM import_store\n),\n\nactive_daily AS(\nSELECT\n TRUNC(metric_date, 'MONTH') AS month,\n organization_key,\n app_key,\n ROW_NUMBER() OVER (PARTITION BY app_key, DATE_TRUNC('MONTH', metric_date) ORDER BY metric_date DESC) AS last_day_in_month,\n is_googlefeed_enabled_l30d,\n is_reviews_widget_loaded,\n IF(review_cnt_l30d>0,1,0) had_reviews_last_30d,\n IF(order_cnt_l30d > 0, 1, 0) AS had_orders_last_30d,\n is_googlesellerrating_enabled_l30d,\n is_map_enabled_l30d,\n is_active_tier_0,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n is_googlefeed_enabled,\n is_googlesellerrating_enabled\nFROM import_ugc_store_metrics_daily\nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE(), 'MONTH'), TRUNC(metric_date, 'MONTH')) BETWEEN 0 AND 24\n),\n\nactive_monthly_enriched AS (\nSELECT\n active_daily.month,\n active_daily.organization_key,\n active_daily.app_key,\n import_store.platform_name,\n import_store.platform_plan_name,\n plan_monthly.closing_plan_group,\n plan_monthly.closing_plan_name,\n segment_monthly.primary_platform_by_orders AS organization_platform,\n segment_monthly.last_3m_orders_avg_bucket AS organization_last_3m_orders_avg_bucket,\n active_daily.is_googlefeed_enabled_l30d,\n active_daily.is_reviews_widget_loaded,\n active_daily.is_googlesellerrating_enabled_l30d,\n active_daily.had_reviews_last_30d,\n active_daily.had_orders_last_30d,\n active_daily.is_map_enabled_l30d,\n active_daily.is_active_tier_0,\n active_daily.is_active_tier_1,\n active_daily.is_active_tier_2,\n active_daily.is_active_tier_3,\n active_daily.is_googlefeed_enabled,\n active_daily.is_googlesellerrating_enabled\nFROM active_daily \nLEFT JOIN plan_monthly \n ON active_daily.organization_key = plan_monthly.organization_key\n AND active_daily.month = plan_monthly.month\nLEFT JOIN import_store \n ON active_daily.app_key = import_store.app_key\nLEFT JOIN segment_monthly \n ON active_daily.organization_key = segment_monthly.organization_key\n AND active_daily.month = segment_monthly.month\nWHERE active_daily.last_day_in_month = 1\n),\n\norg_active_monthly AS(\nSELECT \n month,\n organization_key,\n closing_plan_group,\n closing_plan_name,\n organization_platform,\n organization_last_3m_orders_avg_bucket,\n MAX(SMALLINT(IF(is_googlefeed_enabled_l30d = 1,1,0))) AS is_googlefeed_enabled_l30d,\n MAX(SMALLINT(IF(is_reviews_widget_loaded = 1,1,0))) AS is_reviews_widget_loaded,\n MAX(SMALLINT(IF(is_googlesellerrating_enabled_l30d = 1,1,0))) AS is_googlesellerrating_enabled_l30d,\n MAX(SMALLINT(IF(had_reviews_last_30d = 1,1,0))) AS had_reviews_last_30d,\n MAX(SMALLINT(IF(had_orders_last_30d = 1,1,0))) AS had_orders_last_30d,\n MAX(SMALLINT(IF(is_map_enabled_l30d = 1,1,0))) AS is_map_enabled_l30d,\n MAX(SMALLINT(IF(is_googlefeed_enabled = 1,1,0))) AS is_googlefeed_enabled,\n MAX(SMALLINT(IF(is_googlesellerrating_enabled = 1,1,0))) AS is_googlesellerrating_enabled,\n MAX(SMALLINT(IF(is_active_tier_0 = 1,1,0))) AS is_active_tier_0,\n MAX(SMALLINT(IF(is_active_tier_1 = 1,1,0))) AS is_active_tier_1,\n MAX(SMALLINT(IF(is_active_tier_2 = 1,1,0))) AS is_active_tier_2,\n MAX(SMALLINT(IF(is_active_tier_3 = 1,1,0))) AS is_active_tier_3\n FROM active_monthly_enriched\n GROUP BY 1,2,3,4,5,6\n),\n\norgnization_and_store_active_monthly AS (\nSELECT\n 'store' AS owner_type,\n month,\n platform_name,\n platform_plan_name,\n closing_plan_group,\n closing_plan_name,\n organization_last_3m_orders_avg_bucket,\n is_googlefeed_enabled_l30d,\n is_reviews_widget_loaded,\n is_googlesellerrating_enabled_l30d,\n had_reviews_last_30d,\n had_orders_last_30d,\n is_map_enabled_l30d,\n is_googlefeed_enabled,\n is_googlesellerrating_enabled,\n is_active_tier_0,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n COUNT(DISTINCT app_Key) AS metric_amount\nFROM active_monthly_enriched \nGROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19\n\nUNION ALL\n\nSELECT \n 'organization' AS owner_type,\n month,\n organization_platform AS platform_name,\n NULL AS platform_plan_name,\n closing_plan_group,\n closing_plan_name, \n organization_last_3m_orders_avg_bucket,\n is_googlefeed_enabled_l30d,\n is_reviews_widget_loaded,\n is_googlesellerrating_enabled_l30d,\n had_reviews_last_30d,\n had_orders_last_30d,\n is_map_enabled_l30d,\n is_googlefeed_enabled, \n is_googlesellerrating_enabled, \n is_active_tier_0,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n COUNT(DISTINCT organization_key) AS metric_amount\nFROM org_active_monthly\nGROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19\n),\n\nactive_monthly_res AS (\nSELECT\n SHA2(CONCAT(month,NVL(owner_type,'~'),NVL(platform_name,'~'),NVL(platform_plan_name,'~'),NVL(closing_plan_group,'~'),NVL(closing_plan_name,'~'),\n NVL(organization_last_3m_orders_avg_bucket,'~'),NVL(is_googlefeed_enabled_l30d,'~'),NVL(is_reviews_widget_loaded,'~'),NVL(is_googlesellerrating_enabled_l30d,'~'),\n NVL(had_reviews_last_30d,'~'),NVL(had_orders_last_30d,'~'),NVL(is_map_enabled_l30d,'~'),NVL(is_active_tier_0,'~'),NVL(is_active_tier_1,'~'),NVL(is_googlefeed_enabled,'~'),NVL(is_googlesellerrating_enabled,'~'),\n NVL(is_active_tier_2,'~'),NVL(is_active_tier_3,'~')),256) AS metrics_id,\n owner_type, \n month,\n platform_name,\n platform_plan_name,\n closing_plan_group,\n closing_plan_name, \n organization_last_3m_orders_avg_bucket,\n is_googlefeed_enabled_l30d AS is_pla_enabled_l30d,\n is_reviews_widget_loaded,\n is_googlesellerrating_enabled_l30d AS is_gsr_enabled_l30d,\n had_reviews_last_30d,\n had_orders_last_30d,\n is_map_enabled_l30d,\n is_googlefeed_enabled AS is_pla_enabled, \n is_googlesellerrating_enabled AS is_gsr_enabled, \n is_active_tier_0,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n metric_amount,\n CURRENT_TIMESTAMP AS dwh_created_at\nFROM orgnization_and_store_active_monthly\n)\n\n-- Result --\n\nSELECT *\nFROM active_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__image": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__image", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.sql", "unique_id": "model.yoda.analytics___ugc__image", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__image", "analytics___ugc__image"], "alias": "analytics___ugc__image", "checksum": {"name": "sha256", "checksum": "346428f7e8ca7845a973e2c531bbd63a0e214f6afb8529533df3279bd043c5c7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled table of ugc images | PK and granularity: image_id", "columns": {"image_id": {"name": "image_id", "description": "image_id - PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imageable_id": {"name": "imageable_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imageable_type": {"name": "imageable_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_kind": {"name": "image_kind", "description": "The image type description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "end_user_id": {"name": "end_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_published": {"name": "is_published", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "image_created_at": {"name": "image_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_updated_at": {"name": "image_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082663.1387315, "relation_name": "dev_dkruh1.analytics___ugc__image", "raw_code": "-- Import --\n\nWITH import_stg_image AS (\n\n SELECT * FROM {{ ref('analytics___ugc_stg__image') }}\n\n), import_stg_review AS (\n\n SELECT * FROM {{ ref('analytics___ugc_stg__review') }}\n\n), import_stg_account AS (\n\n SELECT * FROM {{ ref('analytics___platform_stg__account') }}\n\n), \n\n-- Logic --\n\nugc_image_res AS (\n\n SELECT \n image.image_id,\n image.imageable_id,\n image.imageable_type,\n image.image_kind,\n COALESCE(account.account_id, account_review.account_id) AS store_id,\n IF(LOWER(image.imageable_type) = 'review',review.reviewer_id,NULL) AS end_user_id,\n COALESCE(account.organization_id, account_review.organization_id) AS organization_id,\n image.is_published,\n DATE_FORMAT(image.created_at, \"yyyy-MM-dd HH:mm:ss\") AS image_created_at,\n DATE_FORMAT(image.updated_at, \"yyyy-MM-dd HH:mm:ss\") AS image_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_stg_image AS image\n LEFT JOIN import_stg_review AS review\n ON LOWER(image.imageable_type) = 'review'\n AND image.imageable_id = review.review_id\n LEFT JOIN import_stg_account AS account\n ON LOWER(image.imageable_type) IN ('account', 'app') \n AND image.imageable_id = account.account_id\n LEFT JOIN import_stg_account AS account_review\n ON LOWER(image.imageable_type) = 'review' \n AND review.app_key = account_review.app_key \n WHERE LOWER(image.imageable_type) IN ('account', 'app', 'review') \n\n)\n\n-- Result --\n\nSELECT * \nFROM ugc_image_res", "language": "sql", "refs": [{"name": "analytics___ugc_stg__image", "package": null, "version": null}, {"name": "analytics___ugc_stg__review", "package": null, "version": null}, {"name": "analytics___platform_stg__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc_stg__image", "model.yoda.analytics___ugc_stg__review", "model.yoda.analytics___platform_stg__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_stg_image AS (\n\n SELECT * FROM dev_dkruh1.analytics___ugc_stg__image\n\n), import_stg_review AS (\n\n SELECT * FROM dev_dkruh1.analytics___ugc_stg__review\n\n), import_stg_account AS (\n\n SELECT * FROM dev_dkruh1.analytics___platform_stg__account\n\n), \n\n-- Logic --\n\nugc_image_res AS (\n\n SELECT \n image.image_id,\n image.imageable_id,\n image.imageable_type,\n image.image_kind,\n COALESCE(account.account_id, account_review.account_id) AS store_id,\n IF(LOWER(image.imageable_type) = 'review',review.reviewer_id,NULL) AS end_user_id,\n COALESCE(account.organization_id, account_review.organization_id) AS organization_id,\n image.is_published,\n DATE_FORMAT(image.created_at, \"yyyy-MM-dd HH:mm:ss\") AS image_created_at,\n DATE_FORMAT(image.updated_at, \"yyyy-MM-dd HH:mm:ss\") AS image_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_stg_image AS image\n LEFT JOIN import_stg_review AS review\n ON LOWER(image.imageable_type) = 'review'\n AND image.imageable_id = review.review_id\n LEFT JOIN import_stg_account AS account\n ON LOWER(image.imageable_type) IN ('account', 'app') \n AND image.imageable_id = account.account_id\n LEFT JOIN import_stg_account AS account_review\n ON LOWER(image.imageable_type) = 'review' \n AND review.app_key = account_review.app_key \n WHERE LOWER(image.imageable_type) IN ('account', 'app', 'review') \n\n)\n\n-- Result --\n\nSELECT * \nFROM ugc_image_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__order_to_review_rate_cohort": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__order_to_review_rate_cohort", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.sql", "unique_id": "model.yoda.analytics___ugc__order_to_review_rate_cohort", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__order_to_review_rate_cohort", "analytics___ugc__order_to_review_rate_cohort"], "alias": "analytics___ugc__order_to_review_rate_cohort", "checksum": {"name": "sha256", "checksum": "faac2cfda651e5fdf55412524f192ebffecc3e0ed33f6a767945827f0b4dc900"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Cohort of order to review conversion rate with 7 day attribution from UGC enablement drill down by platform and plan | granularity: enabalamnt_month,email_sent_month, closing plan, platform", "columns": {"order_to_review_cohort_id": {"name": "order_to_review_cohort_id", "description": "PK | unique identifier from combining app_key|closing_plan_group|email_sent_month|months_between_email_to_enablement", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "The platform on the store level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_enablement_month": {"name": "reviews_enablement_month", "description": "The month of UGC eneablement", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "enablement_closing_plan_group": {"name": "enablement_closing_plan_group", "description": "UGC enablement package group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "The average amount of orders in buckets for the three months preceding the email sent date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_postman_enabled": {"name": "is_postman_enabled", "description": "An indication of whether the Postman feature was enabled on the enablement month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "email_sent_month": {"name": "email_sent_month", "description": "The month the email was sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "months_between_email_to_enablement": {"name": "months_between_email_to_enablement", "description": "Months between enablement to email sent date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_with_review_request_cnt": {"name": "order_with_review_request_cnt", "description": "Distinct orders that had at least 1 review request sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_with_review_cnt": {"name": "order_with_review_cnt", "description": "Distinct orders that had at least one review created and had a review reqeusts in a time interval of 7 days from the review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082663.1756978, "relation_name": "dev_dkruh1.analytics___ugc__order_to_review_rate_cohort", "raw_code": "WITH import_organization_plan_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_plan_monthly') }}\n),\n\nimport_emails AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__email') }}\n),\n\nimport_ugc_store AS (\nSELECT * FROM {{ ref('analytics___ugc__store') }}\n),\n\nimport_store_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___ugc__store_metrics_monthly') }}\n),\n\nimport_platform_organization_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_metrics_monthly') }}\n),\n\n-- Logic --\nmonthly_organization_packages AS (\nSELECT \n organization_key,\n month,\n closing_plan_group\nFROM import_organization_plan_monthly\nWHERE is_reviews = 1\nAND MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),month) BETWEEN 0 AND 24\n),\n\norder_to_review_rate_agg_monthly AS (\nSELECT \n ugc_store.app_key,\n ugc_store.organization_key,\n ugc_store.platform_name,\n ugc_store.reviews_enablement_month,\n packages.closing_plan_group,\n TRUNC(email.email_sent_date,'MONTH') AS email_sent_month,\n enrichment.last_3m_orders_avg_bucket,\n MONTHS_BETWEEN(TRUNC(email.email_sent_date,'MONTH'),ugc_store.reviews_enablement_month) AS months_between_email_to_enablement,\n SMALLINT(IF(store.is_postman_enabled = 1 AND email_sent_date IS NOT NULL,1,0)) AS is_postman_enabled,\n COUNT(DISTINCT CONCAT(store.app_key,email.order_id)) AS order_with_review_request_cnt,\n COUNT(DISTINCT IF(email.content_creation_at IS NOT NULL AND DATEDIFF(DATE(email.content_creation_at),email.email_sent_date) BETWEEN 0 AND 7,CONCAT(store.app_key,email.order_id),NULL)) AS order_with_review_cnt\nFROM import_store_metrics_monthly AS store\nINNER JOIN import_ugc_store AS ugc_store\n ON store.app_key = ugc_store.app_key \nLEFT JOIN import_emails AS email \n ON store.app_key = email.app_key \n AND email.email_sent_date >= ugc_store.reviews_enablement_date\n AND email.email_sent_date < DATE_SUB(CURRENT_DATE,7)\n AND TRUNC(email.email_sent_date,'MONTH') = store.metric_month\nLEFT JOIN monthly_organization_packages AS packages \n ON ugc_store.organization_key = packages.organization_key \n AND ugc_store.reviews_enablement_month = packages.month \nLEFT JOIN import_platform_organization_metrics_monthly AS enrichment\n ON ugc_store.organization_key = enrichment.organization_key \n AND TRUNC(email_sent_date,'MONTH') = enrichment.month \nWHERE ugc_store.is_active = 1\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\norder_to_review_rate_monthly AS (\nSELECT \n SHA2(CONCAT(app_key,NVL(closing_plan_group,'~'),NVL(email_sent_month,'~'),NVL(months_between_email_to_enablement,'~')),256) AS order_to_review_cohort_id,\n app_key,\n organization_key,\n platform_name,\n reviews_enablement_month,\n closing_plan_group AS enablement_closing_plan_group,\n last_3m_orders_avg_bucket,\n is_postman_enabled,\n email_sent_month,\n months_between_email_to_enablement,\n order_with_review_request_cnt,\n order_with_review_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM order_to_review_rate_agg_monthly\n)\n\nSELECT *\nFROM order_to_review_rate_monthly", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}, {"name": "analytics___ugc_stg__email", "package": null, "version": null}, {"name": "analytics___ugc__store", "package": null, "version": null}, {"name": "analytics___ugc__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___ugc_stg__email", "model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_metrics_monthly", "model.yoda.analytics___platform__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.sql", "compiled": true, "compiled_code": "WITH import_organization_plan_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_plan_monthly\n),\n\nimport_emails AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__email\n),\n\nimport_ugc_store AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store\n),\n\nimport_store_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_metrics_monthly\n),\n\nimport_platform_organization_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_metrics_monthly\n),\n\n-- Logic --\nmonthly_organization_packages AS (\nSELECT \n organization_key,\n month,\n closing_plan_group\nFROM import_organization_plan_monthly\nWHERE is_reviews = 1\nAND MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),month) BETWEEN 0 AND 24\n),\n\norder_to_review_rate_agg_monthly AS (\nSELECT \n ugc_store.app_key,\n ugc_store.organization_key,\n ugc_store.platform_name,\n ugc_store.reviews_enablement_month,\n packages.closing_plan_group,\n TRUNC(email.email_sent_date,'MONTH') AS email_sent_month,\n enrichment.last_3m_orders_avg_bucket,\n MONTHS_BETWEEN(TRUNC(email.email_sent_date,'MONTH'),ugc_store.reviews_enablement_month) AS months_between_email_to_enablement,\n SMALLINT(IF(store.is_postman_enabled = 1 AND email_sent_date IS NOT NULL,1,0)) AS is_postman_enabled,\n COUNT(DISTINCT CONCAT(store.app_key,email.order_id)) AS order_with_review_request_cnt,\n COUNT(DISTINCT IF(email.content_creation_at IS NOT NULL AND DATEDIFF(DATE(email.content_creation_at),email.email_sent_date) BETWEEN 0 AND 7,CONCAT(store.app_key,email.order_id),NULL)) AS order_with_review_cnt\nFROM import_store_metrics_monthly AS store\nINNER JOIN import_ugc_store AS ugc_store\n ON store.app_key = ugc_store.app_key \nLEFT JOIN import_emails AS email \n ON store.app_key = email.app_key \n AND email.email_sent_date >= ugc_store.reviews_enablement_date\n AND email.email_sent_date < DATE_SUB(CURRENT_DATE,7)\n AND TRUNC(email.email_sent_date,'MONTH') = store.metric_month\nLEFT JOIN monthly_organization_packages AS packages \n ON ugc_store.organization_key = packages.organization_key \n AND ugc_store.reviews_enablement_month = packages.month \nLEFT JOIN import_platform_organization_metrics_monthly AS enrichment\n ON ugc_store.organization_key = enrichment.organization_key \n AND TRUNC(email_sent_date,'MONTH') = enrichment.month \nWHERE ugc_store.is_active = 1\nGROUP BY 1,2,3,4,5,6,7,8,9\n),\n\norder_to_review_rate_monthly AS (\nSELECT \n SHA2(CONCAT(app_key,NVL(closing_plan_group,'~'),NVL(email_sent_month,'~'),NVL(months_between_email_to_enablement,'~')),256) AS order_to_review_cohort_id,\n app_key,\n organization_key,\n platform_name,\n reviews_enablement_month,\n closing_plan_group AS enablement_closing_plan_group,\n last_3m_orders_avg_bucket,\n is_postman_enabled,\n email_sent_month,\n months_between_email_to_enablement,\n order_with_review_request_cnt,\n order_with_review_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM order_to_review_rate_agg_monthly\n)\n\nSELECT *\nFROM order_to_review_rate_monthly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__organization_first_time_activity_metrics": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__organization_first_time_activity_metrics", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.sql", "unique_id": "model.yoda.analytics___ugc__organization_first_time_activity_metrics", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__organization_first_time_activity_metrics", "analytics___ugc__organization_first_time_activity_metrics"], "alias": "analytics___ugc__organization_first_time_activity_metrics", "checksum": {"name": "sha256", "checksum": "97bdc9ed4129e64938831b138ad9929ab4b4cbbdf03a818a7dcff31a36ceb213"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "first time active and adoption metrics for UGC organizations based on store created since May 2022 | granularity: organization_key", "columns": {"organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "organization first platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_reviews_enablement_date": {"name": "organization_reviews_enablement_date", "description": "The minimum date of the MAP feature creation since 2021", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_reviews_enablement_month": {"name": "organization_reviews_enablement_month", "description": "The minimum month of the MAP feature creation since 2021", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_fb_syndication_enabled_date": {"name": "organization_first_fb_syndication_enabled_date", "description": "First date a store enabled the feature 380", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_widgetv3_enabled_date": {"name": "organization_first_widgetv3_enabled_date", "description": "First date a store enabled the feature 388", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_pla_enabled_date": {"name": "organization_first_pla_enabled_date", "description": "First date a store enabled the feature 84", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_gsr_enabled_date": {"name": "organization_first_gsr_enabled_date", "description": "First date a store enabled the feature 89", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_map_enabled_date": {"name": "organization_first_map_enabled_date", "description": "First date a store enabled the feature 9", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_3_review_requests_date": {"name": "organization_first_3_review_requests_date", "description": "First time a store reached 3 review reqeusts", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_review_date": {"name": "organization_first_review_date", "description": "The minimum date a store had a review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_order_date": {"name": "organization_first_order_date", "description": "The minimum date a store had an order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_reviews_widget_loaded_date": {"name": "organization_first_reviews_widget_loaded_date", "description": "The minimum date a store loaded the main widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_active_tier_0_date": {"name": "organization_first_active_tier_0_date", "description": "Earliest date that a store reached is_active_tier_0 = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_active_tier_1_date": {"name": "organization_first_active_tier_1_date", "description": "Earliest date that a store reached is_active_tier_1= 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_active_tier_2_date": {"name": "organization_first_active_tier_2_date", "description": "Earliest date that a store reached is_active_tier_2 = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_first_active_tier_3_date": {"name": "organization_first_active_tier_3_date", "description": "Earliest date that a store reached is_active_tier_3 = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_growth_date": {"name": "first_subscription_growth_date", "description": "first time the organization subscribed to Growth package", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_prime_date": {"name": "first_subscription_prime_date", "description": "first time the organization subscribed to Prime package", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_premium_date": {"name": "first_subscription_premium_date", "description": "first time the organization subscribed to Premium package", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_enterprise_date": {"name": "first_subscription_enterprise_date", "description": "first time the organization subscribed to Enterprise package", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_pro_date": {"name": "first_subscription_pro_date", "description": "first time the organization subscribed to Pro package", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_powerhouse_date": {"name": "first_subscription_powerhouse_date", "description": "first time the organization subscribed to Powerhouse package", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_ht_self_service_date": {"name": "first_ht_self_service_date", "description": "first time ht self service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "churn_date": {"name": "churn_date", "description": "organization churn date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_churned": {"name": "is_churned", "description": "Indication if the organization has been churned", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082663.2224658, "relation_name": "dev_dkruh1.analytics___ugc__organization_first_time_activity_metrics", "raw_code": "-- Import --\nWITH import_ugc_store_first_time_activity AS (\nSELECT * FROM {{ ref('analytics___ugc__store_first_time_activity_metrics') }}\n),\n\nimport_platform_organization_plan_daily AS (\nSELECT * FROM {{ ref('analytics___platform__organization_plan_daily') }}\n),\n\nimport_platform_organization_product_segment_daily AS (\nSELECT * FROM {{ ref('analytics___platform__organization_product_segment_daily') }}\n),\n\nimport_platform_organization_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_metrics_monthly') }}\n),\n\n-- Logic --\norganization_first_time_activity_metrics AS (\nSELECT \n organization_key,\n MIN(reviews_enablement_date) AS organization_reviews_enablement_date,\n MIN(TRUNC(reviews_enablement_date,'MONTH')) AS organization_reviews_enablement_month,\n MIN(first_fb_syndication_enabled_date) AS organization_first_fb_syndication_enabled_date,\n MIN(first_widgetv3_enabled_date) AS organization_first_widgetv3_enabled_date,\n MIN(first_pla_enabled_date) AS organization_first_pla_enabled_date,\n MIN(first_gsr_enabled_date) AS organization_first_gsr_enabled_date,\n MIN(first_map_enabled_date) AS organization_first_map_enabled_date,\n MIN(first_3_review_requests_date) AS organization_first_3_review_requests_date,\n MIN(first_review_date) AS organization_first_review_date,\n MIN(first_order_date) AS organization_first_order_date,\n MIN(first_reviews_widget_loaded_date) AS organization_first_reviews_widget_loaded_date,\n MIN(first_active_tier_0_date) AS organization_first_active_tier_0_date,\n MIN(first_active_tier_1_date) AS organization_first_active_tier_1_date,\n MIN(first_active_tier_2_date) AS organization_first_active_tier_2_date,\n MIN(first_active_tier_3_date) AS organization_first_active_tier_3_date\nFROM import_ugc_store_first_time_activity\nGROUP BY 1\n),\n\nugc_first_plan_date AS(\nSELECT\n organization_key,\n MIN(IF(plan_name ILIKE '%growth%', date, NULL)) AS first_subscription_growth_date,\n MIN(IF(plan_name ILIKE '%prime%', date, NULL)) AS first_subscription_prime_date,\n MIN(IF(plan_name ILIKE '%premium%', date, NULL)) AS first_subscription_premium_date,\n MIN(IF(plan_name ILIKE '%enterprise%', date, NULL)) AS first_subscription_enterprise_date,\n MIN(IF(plan_name ILIKE '%pro%', date, NULL)) AS first_subscription_pro_date,\n MIN(IF(plan_name ILIKE '%powerhouse%', date, NULL)) AS first_subscription_powerhouse_date\nFROM import_platform_organization_plan_daily\nWHERE is_reviews = 1\nGROUP BY 1\n),\n\nugc_first_ht_date AS(\nSELECT\n organization_key,\n MIN(date) AS first_ht_self_service_date\nFROM import_platform_organization_product_segment_daily\nWHERE is_reviews = 1\nAND is_ht_self_service = 1\nGROUP BY 1\n),\n\norganization_platforms AS (\nSELECT\n organization_key,\n first_created_platform,\n ROW_NUMBER() OVER (PARTITION BY organization_id ORDER BY month) AS rn\nFROM import_platform_organization_metrics_monthly\n),\n\norganization_first_platform AS(\nSELECT \n organization_key,\n first_created_platform AS platform\nFROM organization_platforms\nWHERE rn = 1\n),\n\nchurn_indication AS (\nSELECT organization_key, \n MIN(churn_date) AS churn_date \nFROM import_ugc_store_first_time_activity \nGROUP BY 1\n),\n\norganization_first_time_activity_metrics_res AS (\nSELECT \n organization_metrics.organization_key,\n platform.platform,\n organization_metrics.organization_reviews_enablement_date,\n organization_metrics.organization_reviews_enablement_month,\n organization_metrics.organization_first_fb_syndication_enabled_date,\n organization_metrics.organization_first_widgetv3_enabled_date,\n organization_metrics.organization_first_pla_enabled_date,\n organization_metrics.organization_first_gsr_enabled_date,\n organization_metrics.organization_first_map_enabled_date,\n organization_metrics.organization_first_3_review_requests_date,\n organization_metrics.organization_first_review_date,\n organization_metrics.organization_first_order_date,\n organization_metrics.organization_first_reviews_widget_loaded_date,\n organization_metrics.organization_first_active_tier_0_date,\n organization_metrics.organization_first_active_tier_1_date,\n organization_metrics.organization_first_active_tier_2_date,\n organization_metrics.organization_first_active_tier_3_date,\n first_plan.first_subscription_growth_date,\n first_plan.first_subscription_prime_date,\n first_plan.first_subscription_premium_date,\n first_plan.first_subscription_enterprise_date,\n first_plan.first_subscription_pro_date,\n first_plan.first_subscription_powerhouse_date,\n ht_ss.first_ht_self_service_date,\n churn.churn_date,\n SMALLINT(IF(churn.churn_date IS NOT NULL,1,0)) AS is_churned,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_first_time_activity_metrics AS organization_metrics\nLEFT JOIN ugc_first_plan_date AS first_plan\nON organization_metrics.organization_key = first_plan.organization_key\nLEFT JOIN ugc_first_ht_date AS ht_ss\nON organization_metrics.organization_key = ht_ss.organization_key\nLEFT JOIN organization_first_platform AS platform \nON organization_metrics.organization_key = platform.organization_key\nLEFT JOIN churn_indication AS churn\nON organization_metrics.organization_key = churn.organization_key\n)\n\n-- Result --\nSELECT *\nFROM organization_first_time_activity_metrics_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_first_time_activity_metrics", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}, {"name": "analytics___platform__organization_product_segment_daily", "package": null, "version": null}, {"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_first_time_activity_metrics", "model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___platform__organization_product_segment_daily", "model.yoda.analytics___platform__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.sql", "compiled": true, "compiled_code": "-- Import --\nWITH import_ugc_store_first_time_activity AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_first_time_activity_metrics\n),\n\nimport_platform_organization_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_plan_daily\n),\n\nimport_platform_organization_product_segment_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_product_segment_daily\n),\n\nimport_platform_organization_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_metrics_monthly\n),\n\n-- Logic --\norganization_first_time_activity_metrics AS (\nSELECT \n organization_key,\n MIN(reviews_enablement_date) AS organization_reviews_enablement_date,\n MIN(TRUNC(reviews_enablement_date,'MONTH')) AS organization_reviews_enablement_month,\n MIN(first_fb_syndication_enabled_date) AS organization_first_fb_syndication_enabled_date,\n MIN(first_widgetv3_enabled_date) AS organization_first_widgetv3_enabled_date,\n MIN(first_pla_enabled_date) AS organization_first_pla_enabled_date,\n MIN(first_gsr_enabled_date) AS organization_first_gsr_enabled_date,\n MIN(first_map_enabled_date) AS organization_first_map_enabled_date,\n MIN(first_3_review_requests_date) AS organization_first_3_review_requests_date,\n MIN(first_review_date) AS organization_first_review_date,\n MIN(first_order_date) AS organization_first_order_date,\n MIN(first_reviews_widget_loaded_date) AS organization_first_reviews_widget_loaded_date,\n MIN(first_active_tier_0_date) AS organization_first_active_tier_0_date,\n MIN(first_active_tier_1_date) AS organization_first_active_tier_1_date,\n MIN(first_active_tier_2_date) AS organization_first_active_tier_2_date,\n MIN(first_active_tier_3_date) AS organization_first_active_tier_3_date\nFROM import_ugc_store_first_time_activity\nGROUP BY 1\n),\n\nugc_first_plan_date AS(\nSELECT\n organization_key,\n MIN(IF(plan_name ILIKE '%growth%', date, NULL)) AS first_subscription_growth_date,\n MIN(IF(plan_name ILIKE '%prime%', date, NULL)) AS first_subscription_prime_date,\n MIN(IF(plan_name ILIKE '%premium%', date, NULL)) AS first_subscription_premium_date,\n MIN(IF(plan_name ILIKE '%enterprise%', date, NULL)) AS first_subscription_enterprise_date,\n MIN(IF(plan_name ILIKE '%pro%', date, NULL)) AS first_subscription_pro_date,\n MIN(IF(plan_name ILIKE '%powerhouse%', date, NULL)) AS first_subscription_powerhouse_date\nFROM import_platform_organization_plan_daily\nWHERE is_reviews = 1\nGROUP BY 1\n),\n\nugc_first_ht_date AS(\nSELECT\n organization_key,\n MIN(date) AS first_ht_self_service_date\nFROM import_platform_organization_product_segment_daily\nWHERE is_reviews = 1\nAND is_ht_self_service = 1\nGROUP BY 1\n),\n\norganization_platforms AS (\nSELECT\n organization_key,\n first_created_platform,\n ROW_NUMBER() OVER (PARTITION BY organization_id ORDER BY month) AS rn\nFROM import_platform_organization_metrics_monthly\n),\n\norganization_first_platform AS(\nSELECT \n organization_key,\n first_created_platform AS platform\nFROM organization_platforms\nWHERE rn = 1\n),\n\nchurn_indication AS (\nSELECT organization_key, \n MIN(churn_date) AS churn_date \nFROM import_ugc_store_first_time_activity \nGROUP BY 1\n),\n\norganization_first_time_activity_metrics_res AS (\nSELECT \n organization_metrics.organization_key,\n platform.platform,\n organization_metrics.organization_reviews_enablement_date,\n organization_metrics.organization_reviews_enablement_month,\n organization_metrics.organization_first_fb_syndication_enabled_date,\n organization_metrics.organization_first_widgetv3_enabled_date,\n organization_metrics.organization_first_pla_enabled_date,\n organization_metrics.organization_first_gsr_enabled_date,\n organization_metrics.organization_first_map_enabled_date,\n organization_metrics.organization_first_3_review_requests_date,\n organization_metrics.organization_first_review_date,\n organization_metrics.organization_first_order_date,\n organization_metrics.organization_first_reviews_widget_loaded_date,\n organization_metrics.organization_first_active_tier_0_date,\n organization_metrics.organization_first_active_tier_1_date,\n organization_metrics.organization_first_active_tier_2_date,\n organization_metrics.organization_first_active_tier_3_date,\n first_plan.first_subscription_growth_date,\n first_plan.first_subscription_prime_date,\n first_plan.first_subscription_premium_date,\n first_plan.first_subscription_enterprise_date,\n first_plan.first_subscription_pro_date,\n first_plan.first_subscription_powerhouse_date,\n ht_ss.first_ht_self_service_date,\n churn.churn_date,\n SMALLINT(IF(churn.churn_date IS NOT NULL,1,0)) AS is_churned,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM organization_first_time_activity_metrics AS organization_metrics\nLEFT JOIN ugc_first_plan_date AS first_plan\nON organization_metrics.organization_key = first_plan.organization_key\nLEFT JOIN ugc_first_ht_date AS ht_ss\nON organization_metrics.organization_key = ht_ss.organization_key\nLEFT JOIN organization_first_platform AS platform \nON organization_metrics.organization_key = platform.organization_key\nLEFT JOIN churn_indication AS churn\nON organization_metrics.organization_key = churn.organization_key\n)\n\n-- Result --\nSELECT *\nFROM organization_first_time_activity_metrics_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__organization_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__organization_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.sql", "unique_id": "model.yoda.analytics___ugc__organization_metrics_monthly", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__organization_metrics_monthly", "analytics___ugc__organization_metrics_monthly"], "alias": "analytics___ugc__organization_metrics_monthly", "checksum": {"name": "sha256", "checksum": "8a637984332ce50dc46d225832a59711a83a0f2ac69bc075ca51f638bdb68822"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["metric_month", "organization_key"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled table of ugc organizations metrics in a monthly level | PK and granularity: month | organization_key", "columns": {"metric_month": {"name": "metric_month", "description": "metric_month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "yotpo organization unique key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_cnt": {"name": "order_cnt", "description": "number of orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_request_sent_cnt": {"name": "review_request_sent_cnt", "description": "number of review requests sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_cnt": {"name": "review_cnt", "description": "number of reviews", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_rating_sum": {"name": "review_rating_sum", "description": "sum of reviews ratings", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_with_review_request_cnt": {"name": "order_with_review_request_cnt", "description": "number of orders with a review request", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_with_first_email_opened_within_7d_cnt": {"name": "order_with_first_email_opened_within_7d_cnt", "description": "number of orders with a review request with email that opened within 7 days from the first email sent date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_with_review_request_and_review_cnt": {"name": "order_with_review_request_and_review_cnt", "description": "number of orders with a review request and a review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_with_first_email_opened_within_7d_ratio": {"name": "order_with_first_email_opened_within_7d_ratio", "description": "ratio of orders with a review request with email that opened within 7 days from the first email sent date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "order_with_review_request_to_review_ratio": {"name": "order_with_review_request_to_review_ratio", "description": "ratio of orders with a review request and a review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["metric_month", "organization_key"], "incremental_strategy": "merge"}, "created_at": 1700082663.2476227, "relation_name": "dev_dkruh1.analytics___ugc__organization_metrics_monthly", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key=['metric_month','organization_key'],\n incremental_strategy='merge',\n )\n}}\n\n-- Import --\n\nWITH import_ugc_store_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___ugc__store_metrics_daily') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='metric_month',query_condition_column='metric_date',subtract=61)}}\n),\n\nimport_emails AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__email') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='metric_month',query_condition_column='email_sent_date',subtract=61)}}\n),\n\nimport_ugc_store (\nSELECT * FROM {{ ref('analytics___ugc__store') }}\n),\n\n-- Logic --\n\nreview_calculation AS (\nSELECT\n TRUNC(metric_date,'MONTH') AS metric_month,\n organization_key,\n SUM(order_cnt) AS order_cnt,\n SUM(review_cnt) AS review_cnt,\n SUM(review_rating_sum) AS review_rating_sum,\n SUM(review_request_sent_cnt) AS review_request_sent_cnt\nFROM import_ugc_store_metrics_daily\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2\n),\n\norder_first_email AS (\nSELECT\n app_key,\n app_key || order_id AS unique_store_order_id,\n MIN(email_sent_date) OVER (PARTITION BY app_key, order_id) AS first_order_email_sent_date,\n DATE(NVL(opened_at,'2999-12-31')) AS email_open_date,\n DATE(NVL(content_creation_at,'2999-12-31')) AS review_creation_date\nFROM import_emails\n\n),\n\nnumber_of_orders AS (\nSELECT\n TRUNC(email.first_order_email_sent_date,'MONTH') AS first_order_email_sent_month,\n store.organization_key,\n COUNT(DISTINCT email.unique_store_order_id) AS order_with_review_request_cnt,\n COUNT(DISTINCT IF(DATEDIFF(email.email_open_date,email.first_order_email_sent_date) BETWEEN 0 AND 7, email.unique_store_order_id, NULL)) AS order_with_first_email_opened_within_7d_cnt,\n COUNT(DISTINCT IF(DATEDIFF(email.review_creation_date,email.first_order_email_sent_date) BETWEEN 0 AND 7, email.unique_store_order_id, NULL)) AS order_with_review_request_and_review_cnt\nFROM order_first_email AS email\nINNER JOIN import_ugc_store AS store\n ON email.app_key = store.app_key\nGROUP BY 1,2\n),\n\norder_review_request_metrics AS (\nSELECT\n first_order_email_sent_month,\n organization_key,\n order_with_review_request_cnt,\n order_with_first_email_opened_within_7d_cnt,\n order_with_review_request_and_review_cnt,\n CAST(order_with_first_email_opened_within_7d_cnt/order_with_review_request_cnt AS DECIMAL(5,4)) AS order_with_first_email_opened_within_7d_ratio,\n CAST(order_with_review_request_and_review_cnt/order_with_review_request_cnt AS DECIMAL(5,4)) AS order_with_review_request_to_review_ratio\nFROM number_of_orders\n),\n\nugc_organization_metrics_monthly_res AS (\nSELECT\n review.metric_month,\n review.organization_key,\n review.order_cnt,\n review.review_request_sent_cnt,\n review.review_cnt,\n review.review_rating_sum,\n NVL(request.order_with_review_request_cnt, 0) AS order_with_review_request_cnt,\n NVL(request.order_with_first_email_opened_within_7d_cnt, 0) AS order_with_first_email_opened_within_7d_cnt,\n NVL(request.order_with_review_request_and_review_cnt, 0) AS order_with_review_request_and_review_cnt,\n NVL(request.order_with_first_email_opened_within_7d_ratio, 0) AS order_with_first_email_opened_within_7d_ratio,\n NVL(request.order_with_review_request_to_review_ratio, 0) AS order_with_review_request_to_review_ratio,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM review_calculation AS review\nLEFT JOIN order_review_request_metrics AS request\n ON review.metric_month = request.first_order_email_sent_month\n AND review.organization_key = request.organization_key\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_organization_metrics_monthly_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___ugc_stg__email", "package": null, "version": null}, {"name": "analytics___ugc__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc_stg__email", "model.yoda.analytics___ugc__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_store_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_metrics_daily\nWHERE DATE(metric_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_emails AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__email\nWHERE DATE(email_sent_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_store (\nSELECT * FROM dev_dkruh1.analytics___ugc__store\n),\n\n-- Logic --\n\nreview_calculation AS (\nSELECT\n TRUNC(metric_date,'MONTH') AS metric_month,\n organization_key,\n SUM(order_cnt) AS order_cnt,\n SUM(review_cnt) AS review_cnt,\n SUM(review_rating_sum) AS review_rating_sum,\n SUM(review_request_sent_cnt) AS review_request_sent_cnt\nFROM import_ugc_store_metrics_daily\nWHERE organization_key IS NOT NULL\nGROUP BY 1,2\n),\n\norder_first_email AS (\nSELECT\n app_key,\n app_key || order_id AS unique_store_order_id,\n MIN(email_sent_date) OVER (PARTITION BY app_key, order_id) AS first_order_email_sent_date,\n DATE(NVL(opened_at,'2999-12-31')) AS email_open_date,\n DATE(NVL(content_creation_at,'2999-12-31')) AS review_creation_date\nFROM import_emails\n\n),\n\nnumber_of_orders AS (\nSELECT\n TRUNC(email.first_order_email_sent_date,'MONTH') AS first_order_email_sent_month,\n store.organization_key,\n COUNT(DISTINCT email.unique_store_order_id) AS order_with_review_request_cnt,\n COUNT(DISTINCT IF(DATEDIFF(email.email_open_date,email.first_order_email_sent_date) BETWEEN 0 AND 7, email.unique_store_order_id, NULL)) AS order_with_first_email_opened_within_7d_cnt,\n COUNT(DISTINCT IF(DATEDIFF(email.review_creation_date,email.first_order_email_sent_date) BETWEEN 0 AND 7, email.unique_store_order_id, NULL)) AS order_with_review_request_and_review_cnt\nFROM order_first_email AS email\nINNER JOIN import_ugc_store AS store\n ON email.app_key = store.app_key\nGROUP BY 1,2\n),\n\norder_review_request_metrics AS (\nSELECT\n first_order_email_sent_month,\n organization_key,\n order_with_review_request_cnt,\n order_with_first_email_opened_within_7d_cnt,\n order_with_review_request_and_review_cnt,\n CAST(order_with_first_email_opened_within_7d_cnt/order_with_review_request_cnt AS DECIMAL(5,4)) AS order_with_first_email_opened_within_7d_ratio,\n CAST(order_with_review_request_and_review_cnt/order_with_review_request_cnt AS DECIMAL(5,4)) AS order_with_review_request_to_review_ratio\nFROM number_of_orders\n),\n\nugc_organization_metrics_monthly_res AS (\nSELECT\n review.metric_month,\n review.organization_key,\n review.order_cnt,\n review.review_request_sent_cnt,\n review.review_cnt,\n review.review_rating_sum,\n NVL(request.order_with_review_request_cnt, 0) AS order_with_review_request_cnt,\n NVL(request.order_with_first_email_opened_within_7d_cnt, 0) AS order_with_first_email_opened_within_7d_cnt,\n NVL(request.order_with_review_request_and_review_cnt, 0) AS order_with_review_request_and_review_cnt,\n NVL(request.order_with_first_email_opened_within_7d_ratio, 0) AS order_with_first_email_opened_within_7d_ratio,\n NVL(request.order_with_review_request_to_review_ratio, 0) AS order_with_review_request_to_review_ratio,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM review_calculation AS review\nLEFT JOIN order_review_request_metrics AS request\n ON review.metric_month = request.first_order_email_sent_month\n AND review.organization_key = request.organization_key\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_organization_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__owner_first_time_activity_metrics": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__owner_first_time_activity_metrics", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.sql", "unique_id": "model.yoda.analytics___ugc__owner_first_time_activity_metrics", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__owner_first_time_activity_metrics", "analytics___ugc__owner_first_time_activity_metrics"], "alias": "analytics___ugc__owner_first_time_activity_metrics", "checksum": {"name": "sha256", "checksum": "b273a6099f00849daa78ad23eb5b64f35e177aa2a77363b7e53c8bdd969b0392"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "first time active and adoption metrics for UGC stores / organizations created sincs May 2022.\ngranularity: owner_id, owner_type", "columns": {"owner_id": {"name": "owner_id", "description": "if owner type = 'store' owner_id = app_key\nif owner_type = 'organization' owner_id = organization_key\"", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_type": {"name": "owner_type", "description": "organization or store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_enablement_date": {"name": "reviews_enablement_date", "description": "First date Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store (only from 2021)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "reviews_enablement_month": {"name": "reviews_enablement_month", "description": "First month Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store (only from 2021)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "churn_date": {"name": "churn_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_churned": {"name": "is_churned", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "first_subscription_growth_date": {"name": "first_subscription_growth_date", "description": "Earliest date when the owner subscribed Growth packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_prime_date": {"name": "first_subscription_prime_date", "description": "Earliest date when the owner subscribed Prime packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_premium_date": {"name": "first_subscription_premium_date", "description": "Earliest date when the owner subscribed Premium packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_enterprise_date": {"name": "first_subscription_enterprise_date", "description": "Earliest date when the owner subscribed Enterprise packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_pro_date": {"name": "first_subscription_pro_date", "description": "Earliest date when the owner subscribed Pro packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_powerhouse_date": {"name": "first_subscription_powerhouse_date", "description": "Earliest date when the owner subscribed Powerhouse packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_ht_self_service_date": {"name": "first_ht_self_service_date", "description": "First time ht self service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_fb_syndication_enabled_date": {"name": "first_fb_syndication_enabled_date", "description": "Earliest date when feature_id = 380, is_user_enabled = true, and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_widgetv3_enabled_date": {"name": "first_widgetv3_enabled_date", "description": "Earliest date when feature_id = 388, is_user_enabled = true, and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_pla_enabled_date": {"name": "first_pla_enabled_date", "description": "Earliest date when feature_id = 84, is_user_enabled = true, and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_gsr_enabled_date": {"name": "first_gsr_enabled_date", "description": "Earliest date when feature_id = 89, is_user_enabled = true, and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_map_enabled_date": {"name": "first_map_enabled_date", "description": "Earliest date when feature_id = 9, is_user_enabled = true, and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_3_review_requests_date": {"name": "first_3_review_requests_date", "description": "The earliest date when the cumulative count of review requests reached or exceeded 3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_review_date": {"name": "first_review_date", "description": "The earliest date when a review was received for the store/organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_order_date": {"name": "first_order_date", "description": "The earliest date when an order was created for the store/organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_reviews_widget_loaded_date": {"name": "first_reviews_widget_loaded_date", "description": "Earliest date when is_reviews_widget_loaded = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_active_tier_0_date": {"name": "first_active_tier_0_date", "description": "Earliest date when is_active_tier_0 = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_active_tier_1_date": {"name": "first_active_tier_1_date", "description": "Earliest date when is_active_tier_1 = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_active_tier_2_date": {"name": "first_active_tier_2_date", "description": "Earliest date when is_active_tier_2 = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_active_tier_3_date": {"name": "first_active_tier_3_date", "description": "Earliest date when is_active_tier_3 = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082663.3021066, "relation_name": "dev_dkruh1.analytics___ugc__owner_first_time_activity_metrics", "raw_code": "-- Import --\nWITH import_ugc_store_first_time_activity AS (\nSELECT * FROM {{ ref('analytics___ugc__store_first_time_activity_metrics') }}\n),\n\nimport_ugc_organization_first_time_activity AS (\nSELECT * FROM {{ ref('analytics___ugc__organization_first_time_activity_metrics') }}\n),\n\n-- Logic --\nstore_metrics AS (\nSELECT \n app_key AS owner_id,\n 'store' AS owner_type,\n reviews_enablement_date,\n reviews_enablement_month,\n platform_group AS platform,\n churn_date,\n is_churned,\n first_subscription_growth_date,\n first_subscription_prime_date,\n first_subscription_premium_date,\n first_subscription_enterprise_date,\n first_subscription_pro_date,\n first_subscription_powerhouse_date,\n first_ht_self_service_date,\n first_fb_syndication_enabled_date,\n first_widgetv3_enabled_date,\n first_pla_enabled_date,\n first_gsr_enabled_date,\n first_map_enabled_date,\n first_3_review_requests_date,\n first_review_date,\n first_order_date,\n first_reviews_widget_loaded_date,\n first_active_tier_0_date,\n first_active_tier_1_date,\n first_active_tier_2_date,\n first_active_tier_3_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_store_first_time_activity\n),\n\norganization_metrics AS (\n SELECT\n organization_key AS owner_id,\n 'organization' AS owner_type,\n organization_reviews_enablement_date AS reviews_enablement_date,\n organization_reviews_enablement_month AS reviews_enablement_month,\n platform,\n churn_date,\n is_churned,\n first_subscription_growth_date,\n first_subscription_prime_date,\n first_subscription_premium_date,\n first_subscription_enterprise_date,\n first_subscription_pro_date,\n first_subscription_powerhouse_date,\n first_ht_self_service_date,\n organization_first_fb_syndication_enabled_date AS first_fb_syndication_enabled_date,\n organization_first_widgetv3_enabled_date AS first_widgetv3_enabled_date,\n organization_first_pla_enabled_date AS first_pla_enabled_date,\n organization_first_gsr_enabled_date AS first_gsr_enabled_date,\n organization_first_map_enabled_date AS first_map_enabled_date,\n organization_first_3_review_requests_date AS first_3_review_requests_date,\n organization_first_review_date AS first_review_date,\n organization_first_order_date AS first_order_date,\n organization_first_reviews_widget_loaded_date AS first_reviews_widget_loaded_date,\n organization_first_active_tier_0_date AS first_active_tier_0_date,\n organization_first_active_tier_1_date AS first_active_tier_1_date,\n organization_first_active_tier_2_date AS first_active_tier_2_date,\n organization_first_active_tier_3_date AS first_active_tier_3_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_organization_first_time_activity\n),\n\nstore_and_org_res AS (\n SELECT *\n FROM store_metrics\n UNION ALL\n SELECT * \n FROM organization_metrics\n)\n\n--Results--\nSELECT *\nFROM store_and_org_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_first_time_activity_metrics", "package": null, "version": null}, {"name": "analytics___ugc__organization_first_time_activity_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_first_time_activity_metrics", "model.yoda.analytics___ugc__organization_first_time_activity_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.sql", "compiled": true, "compiled_code": "-- Import --\nWITH import_ugc_store_first_time_activity AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_first_time_activity_metrics\n),\n\nimport_ugc_organization_first_time_activity AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__organization_first_time_activity_metrics\n),\n\n-- Logic --\nstore_metrics AS (\nSELECT \n app_key AS owner_id,\n 'store' AS owner_type,\n reviews_enablement_date,\n reviews_enablement_month,\n platform_group AS platform,\n churn_date,\n is_churned,\n first_subscription_growth_date,\n first_subscription_prime_date,\n first_subscription_premium_date,\n first_subscription_enterprise_date,\n first_subscription_pro_date,\n first_subscription_powerhouse_date,\n first_ht_self_service_date,\n first_fb_syndication_enabled_date,\n first_widgetv3_enabled_date,\n first_pla_enabled_date,\n first_gsr_enabled_date,\n first_map_enabled_date,\n first_3_review_requests_date,\n first_review_date,\n first_order_date,\n first_reviews_widget_loaded_date,\n first_active_tier_0_date,\n first_active_tier_1_date,\n first_active_tier_2_date,\n first_active_tier_3_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_store_first_time_activity\n),\n\norganization_metrics AS (\n SELECT\n organization_key AS owner_id,\n 'organization' AS owner_type,\n organization_reviews_enablement_date AS reviews_enablement_date,\n organization_reviews_enablement_month AS reviews_enablement_month,\n platform,\n churn_date,\n is_churned,\n first_subscription_growth_date,\n first_subscription_prime_date,\n first_subscription_premium_date,\n first_subscription_enterprise_date,\n first_subscription_pro_date,\n first_subscription_powerhouse_date,\n first_ht_self_service_date,\n organization_first_fb_syndication_enabled_date AS first_fb_syndication_enabled_date,\n organization_first_widgetv3_enabled_date AS first_widgetv3_enabled_date,\n organization_first_pla_enabled_date AS first_pla_enabled_date,\n organization_first_gsr_enabled_date AS first_gsr_enabled_date,\n organization_first_map_enabled_date AS first_map_enabled_date,\n organization_first_3_review_requests_date AS first_3_review_requests_date,\n organization_first_review_date AS first_review_date,\n organization_first_order_date AS first_order_date,\n organization_first_reviews_widget_loaded_date AS first_reviews_widget_loaded_date,\n organization_first_active_tier_0_date AS first_active_tier_0_date,\n organization_first_active_tier_1_date AS first_active_tier_1_date,\n organization_first_active_tier_2_date AS first_active_tier_2_date,\n organization_first_active_tier_3_date AS first_active_tier_3_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_organization_first_time_activity\n),\n\nstore_and_org_res AS (\n SELECT *\n FROM store_metrics\n UNION ALL\n SELECT * \n FROM organization_metrics\n)\n\n--Results--\nSELECT *\nFROM store_and_org_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__owner_order_to_review_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__owner_order_to_review_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.sql", "unique_id": "model.yoda.analytics___ugc__owner_order_to_review_monthly", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__owner_order_to_review_monthly", "analytics___ugc__owner_order_to_review_monthly"], "alias": "analytics___ugc__owner_order_to_review_monthly", "checksum": {"name": "sha256", "checksum": "b34f634cc83cbec8aa7f513c733caae8cf1ee0f9bf224a386e3780d66a305f53"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Order to review conversion rate with 7 day attribution for stores / organizations drill down by platform and closing plan | granularity: month, owner_type, owner_id", "columns": {"month": {"name": "month", "description": "Email sent month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "owner_type": {"name": "owner_type", "description": "Organization or store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_id": {"name": "owner_id", "description": "If owner type = 'store' owner_id = app_key if owner_type = 'organization' owner_id = organization_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_group": {"name": "closing_plan_group", "description": "The closing plan of the organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "Platform name (if owner type = 'organization' platform_name = first platform)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_with_review_reqeusts_sum": {"name": "orders_with_review_reqeusts_sum", "description": "Disitnct orders that had at least 1 review request sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_with_reviews_sum": {"name": "orders_with_reviews_sum", "description": "Distinct orders that had at least one review created and had a review reqeusts in a time interval of 7 days from the review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082663.343508, "relation_name": "dev_dkruh1.analytics___ugc__owner_order_to_review_monthly", "raw_code": "WITH import_organization_plan_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_plan_monthly') }}\n),\n\nimport_emails AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__email') }}\n),\n\nimport_stores AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_platform_organization_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_metrics_monthly') }}\n),\n\n-- Logic --\n\nmonthly_organization_packages AS (\nSELECT\n organization_key,\n closing_plan_group,\n month\nFROM import_organization_plan_monthly\nWHERE LOWER(product_family) = 'reviews'\nAND closing_plan_group IN ('Enterprise','Powerhouse','Pro')\nAND MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),month) BETWEEN 0 AND 12\nGROUP BY 1,2,3\n),\n\norganization_platforms AS (\nSELECT\n organization_key,\n first_created_platform,\n ROW_NUMBER() OVER (PARTITION BY organization_id ORDER BY month) AS rn\nFROM import_platform_organization_metrics_monthly\n),\n\norganization_first_platform AS(\nSELECT \n organization_key,\n first_created_platform AS platform\nFROM organization_platforms\nWHERE rn = 1\n),\n\nmonthly_order_to_review_conversion AS (\nSELECT \n DATE_TRUNC('month',email.email_sent_date) AS email_sent_month,\n email.app_key,\n store.organization_key,\n store.platform_name,\n COUNT(DISTINCT email.order_id) AS orders_with_review_reqeusts,\n COUNT(DISTINCT IF(email.content_creation_at IS NOT NULL AND DATEDIFF(DATE(email.content_creation_at),email.email_sent_date) BETWEEN 0 AND 7,email.order_id, NULL)) AS orders_with_reviews\nFROM import_emails AS email \nINNER JOIN import_stores AS store\n ON email.app_key = store.app_key \nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),TRUNC(email.email_sent_date,'MONTH')) BETWEEN 0 AND 12\nAND email.email_sent_date < DATE_SUB(CURRENT_DATE,7)\nGROUP BY 1,2,3,4\n),\n\nstore_order_to_review_conversion_monthly AS (\nSELECT \n packages.month,\n 'store' AS owner_type,\n cvr_store.app_key AS owner_id ,\n packages.closing_plan_group,\n cvr_store.platform_name,\n SUM(cvr_store.orders_with_review_reqeusts) AS orders_with_review_reqeusts_sum,\n SUM(cvr_store.orders_with_reviews) AS orders_with_reviews_sum,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM monthly_order_to_review_conversion AS cvr_store\nINNER JOIN monthly_organization_packages AS packages \n ON cvr_store.organization_key = packages.organization_key \n AND cvr_store.email_sent_month = packages.month\nGROUP BY 1, 2, 3, 4, 5, 8\n),\n\norganization_order_to_review_conversion_monthly AS (\nSELECT \n packages.month,\n 'organization' AS owner_type,\n cvr_store.organization_key AS owner_id,\n packages.closing_plan_group,\n org_platform.platform AS platform_name,\n SUM(cvr_store.orders_with_review_reqeusts) AS orders_with_review_reqeusts_sum,\n SUM(cvr_store.orders_with_reviews) AS orders_with_reviews_sum,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM monthly_order_to_review_conversion AS cvr_store\nINNER JOIN monthly_organization_packages AS packages \n ON cvr_store.organization_key = packages.organization_key \n AND cvr_store.email_sent_month = packages.month\nLEFT JOIN organization_first_platform AS org_platform\n ON cvr_store.organization_key = org_platform.organization_key\nGROUP BY 1, 2, 3, 4, 5, 8\n),\n\norganization_store_order_to_review_conversion_monthly_res AS (\n SELECT *\n FROM store_order_to_review_conversion_monthly\n UNION ALL\n SELECT *\n FROM organization_order_to_review_conversion_monthly \n)\n\nSELECT *\nFROM organization_store_order_to_review_conversion_monthly_res", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}, {"name": "analytics___ugc_stg__email", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___ugc_stg__email", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.sql", "compiled": true, "compiled_code": "WITH import_organization_plan_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_plan_monthly\n),\n\nimport_emails AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__email\n),\n\nimport_stores AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_platform_organization_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_metrics_monthly\n),\n\n-- Logic --\n\nmonthly_organization_packages AS (\nSELECT\n organization_key,\n closing_plan_group,\n month\nFROM import_organization_plan_monthly\nWHERE LOWER(product_family) = 'reviews'\nAND closing_plan_group IN ('Enterprise','Powerhouse','Pro')\nAND MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),month) BETWEEN 0 AND 12\nGROUP BY 1,2,3\n),\n\norganization_platforms AS (\nSELECT\n organization_key,\n first_created_platform,\n ROW_NUMBER() OVER (PARTITION BY organization_id ORDER BY month) AS rn\nFROM import_platform_organization_metrics_monthly\n),\n\norganization_first_platform AS(\nSELECT \n organization_key,\n first_created_platform AS platform\nFROM organization_platforms\nWHERE rn = 1\n),\n\nmonthly_order_to_review_conversion AS (\nSELECT \n DATE_TRUNC('month',email.email_sent_date) AS email_sent_month,\n email.app_key,\n store.organization_key,\n store.platform_name,\n COUNT(DISTINCT email.order_id) AS orders_with_review_reqeusts,\n COUNT(DISTINCT IF(email.content_creation_at IS NOT NULL AND DATEDIFF(DATE(email.content_creation_at),email.email_sent_date) BETWEEN 0 AND 7,email.order_id, NULL)) AS orders_with_reviews\nFROM import_emails AS email \nINNER JOIN import_stores AS store\n ON email.app_key = store.app_key \nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),TRUNC(email.email_sent_date,'MONTH')) BETWEEN 0 AND 12\nAND email.email_sent_date < DATE_SUB(CURRENT_DATE,7)\nGROUP BY 1,2,3,4\n),\n\nstore_order_to_review_conversion_monthly AS (\nSELECT \n packages.month,\n 'store' AS owner_type,\n cvr_store.app_key AS owner_id ,\n packages.closing_plan_group,\n cvr_store.platform_name,\n SUM(cvr_store.orders_with_review_reqeusts) AS orders_with_review_reqeusts_sum,\n SUM(cvr_store.orders_with_reviews) AS orders_with_reviews_sum,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM monthly_order_to_review_conversion AS cvr_store\nINNER JOIN monthly_organization_packages AS packages \n ON cvr_store.organization_key = packages.organization_key \n AND cvr_store.email_sent_month = packages.month\nGROUP BY 1, 2, 3, 4, 5, 8\n),\n\norganization_order_to_review_conversion_monthly AS (\nSELECT \n packages.month,\n 'organization' AS owner_type,\n cvr_store.organization_key AS owner_id,\n packages.closing_plan_group,\n org_platform.platform AS platform_name,\n SUM(cvr_store.orders_with_review_reqeusts) AS orders_with_review_reqeusts_sum,\n SUM(cvr_store.orders_with_reviews) AS orders_with_reviews_sum,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM monthly_order_to_review_conversion AS cvr_store\nINNER JOIN monthly_organization_packages AS packages \n ON cvr_store.organization_key = packages.organization_key \n AND cvr_store.email_sent_month = packages.month\nLEFT JOIN organization_first_platform AS org_platform\n ON cvr_store.organization_key = org_platform.organization_key\nGROUP BY 1, 2, 3, 4, 5, 8\n),\n\norganization_store_order_to_review_conversion_monthly_res AS (\n SELECT *\n FROM store_order_to_review_conversion_monthly\n UNION ALL\n SELECT *\n FROM organization_order_to_review_conversion_monthly \n)\n\nSELECT *\nFROM organization_store_order_to_review_conversion_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__platform_order_to_review_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__platform_order_to_review_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.sql", "unique_id": "model.yoda.analytics___ugc__platform_order_to_review_monthly", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__platform_order_to_review_monthly", "analytics___ugc__platform_order_to_review_monthly"], "alias": "analytics___ugc__platform_order_to_review_monthly", "checksum": {"name": "sha256", "checksum": "faf3c104ba77432103664c87adf9f91689b4d2eee8788b70be69b01259da1c62"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Order to review conversion rate with 7 day attribution drill down by platform and closing plan | granularity: month, closing plan, platform, postman enabled, l3m orders avg bucket", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "closing_plan_group": {"name": "closing_plan_group", "description": "The closing plan of the organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "Platform name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "last 3 months orders avg bucket", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "postman_enabled": {"name": "postman_enabled", "description": "Indicating whether Postman feature was enabled when the review request was sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "organizations": {"name": "organizations", "description": "total organizations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_with_review_requests_cnt": {"name": "orders_with_review_requests_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_with_reviews_cnt": {"name": "orders_with_reviews_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sshemesh@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082663.383977, "relation_name": "dev_dkruh1.analytics___ugc__platform_order_to_review_monthly", "raw_code": "--Import--\n\nWITH import_platform_organization_plan_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_plan_monthly') }} \n),\n\nimport_platform_organization_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_metrics_monthly') }} \n),\n\nimport_ugc_store_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___ugc__store_metrics_daily') }}\n),\n\nimport_platform_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_ugc_email AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__email') }} \n),\n\n--Logic--\n\nemails AS (\nSELECT\n email.email_sent_date,\n TRUNC(email.email_sent_date,'MONTH') AS month,\n email.order_id,\n plans.closing_plan_group,\n email.content_creation_at,\n email.app_key,\n store.organization_key,\n SMALLINT(IF(postman.app_key IS NOT NULL,1,0)) AS postman_enabled\nFROM import_ugc_email AS email\nINNER JOIN import_platform_store AS store \nON email.app_key = store.app_key\nLEFT JOIN import_platform_organization_plan_monthly AS plans\nON store.organization_key = plans.organization_key AND TRUNC(email.email_sent_date,'MONTH') = plans.month\nAND is_reviews = 1\nAND MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),month) BETWEEN 0 AND 24\nLEFT JOIN import_ugc_store_metrics_daily AS postman \nON email.email_sent_date = postman.metric_date\nAND store.app_key = postman.app_key\nAND is_postman_enabled = 1\nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),TRUNC(email_sent_date,'MONTH')) BETWEEN 0 AND 24\nAND email.email_sent_date < CURRENT_DATE - 7\nAND store.is_active = 1 \nAND store.is_test = 0\n),\n\nplatform_order_to_review_monthly_res AS (\nSELECT\n emails.month,\n emails.closing_plan_group,\n enrichment.primary_platform_by_orders AS platform, \n enrichment.last_3m_orders_avg_bucket,\n emails.postman_enabled,\n COUNT(DISTINCT emails.organization_key) AS organizations,\n COUNT(DISTINCT CONCAT(order_id,app_key)) AS orders_with_review_requests_cnt,\n COUNT(DISTINCT IF (content_creation_at IS NOT NULL AND DATEDIFF(DATE(content_creation_at),email_sent_date) BETWEEN 0 AND 7, CONCAT(order_id,app_key),NULL)) AS orders_with_reviews_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM emails\nLEFT JOIN import_platform_organization_metrics_monthly AS enrichment \nON emails.organization_key = enrichment.organization_key AND emails.month = enrichment.month \nGROUP BY 1,2,3,4,5\n)\n\n--Results--\n\nSELECT *\nFROM platform_order_to_review_monthly_res", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}, {"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___ugc_stg__email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___platform__store", "model.yoda.analytics___ugc_stg__email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.sql", "compiled": true, "compiled_code": "--Import--\n\nWITH import_platform_organization_plan_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_plan_monthly \n),\n\nimport_platform_organization_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_metrics_monthly \n),\n\nimport_ugc_store_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_metrics_daily\n),\n\nimport_platform_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_ugc_email AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__email \n),\n\n--Logic--\n\nemails AS (\nSELECT\n email.email_sent_date,\n TRUNC(email.email_sent_date,'MONTH') AS month,\n email.order_id,\n plans.closing_plan_group,\n email.content_creation_at,\n email.app_key,\n store.organization_key,\n SMALLINT(IF(postman.app_key IS NOT NULL,1,0)) AS postman_enabled\nFROM import_ugc_email AS email\nINNER JOIN import_platform_store AS store \nON email.app_key = store.app_key\nLEFT JOIN import_platform_organization_plan_monthly AS plans\nON store.organization_key = plans.organization_key AND TRUNC(email.email_sent_date,'MONTH') = plans.month\nAND is_reviews = 1\nAND MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),month) BETWEEN 0 AND 24\nLEFT JOIN import_ugc_store_metrics_daily AS postman \nON email.email_sent_date = postman.metric_date\nAND store.app_key = postman.app_key\nAND is_postman_enabled = 1\nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),TRUNC(email_sent_date,'MONTH')) BETWEEN 0 AND 24\nAND email.email_sent_date < CURRENT_DATE - 7\nAND store.is_active = 1 \nAND store.is_test = 0\n),\n\nplatform_order_to_review_monthly_res AS (\nSELECT\n emails.month,\n emails.closing_plan_group,\n enrichment.primary_platform_by_orders AS platform, \n enrichment.last_3m_orders_avg_bucket,\n emails.postman_enabled,\n COUNT(DISTINCT emails.organization_key) AS organizations,\n COUNT(DISTINCT CONCAT(order_id,app_key)) AS orders_with_review_requests_cnt,\n COUNT(DISTINCT IF (content_creation_at IS NOT NULL AND DATEDIFF(DATE(content_creation_at),email_sent_date) BETWEEN 0 AND 7, CONCAT(order_id,app_key),NULL)) AS orders_with_reviews_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM emails\nLEFT JOIN import_platform_organization_metrics_monthly AS enrichment \nON emails.organization_key = enrichment.organization_key AND emails.month = enrichment.month \nGROUP BY 1,2,3,4,5\n)\n\n--Results--\n\nSELECT *\nFROM platform_order_to_review_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__postman_feature_email_usage_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__postman_feature_email_usage_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.sql", "unique_id": "model.yoda.analytics___ugc__postman_feature_email_usage_monthly", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__postman_feature_email_usage_monthly", "analytics___ugc__postman_feature_email_usage_monthly"], "alias": "analytics___ugc__postman_feature_email_usage_monthly", "checksum": {"name": "sha256", "checksum": "0fa1740ecea96ea4e9951106d5750015caba75469df2ceb6293042c3cdd8ebc0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "This table tracks the monthly usage of the new email editor (postman feature) since August 2023 (when postman enablement tracking started) . \nGranularity: email_sent_month, is_postman_enabled, closing_plan_group, platform_name, platform_group, last_3m_orders_avg_bucket, industry", "columns": {"postman_feature_email_usage_id": {"name": "postman_feature_email_usage_id", "description": "PK | unique identifier from combining email_sent_month|is_postman_enabled|closing_plan_group|platform_group|platform_name|industry|last_3m_orders_avg_bucket", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_sent_month": {"name": "email_sent_month", "description": "The month when the email was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_postman_enabled": {"name": "is_postman_enabled", "description": "Indicator if the postman feature was enabled when the email was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "closing_plan_group": {"name": "closing_plan_group", "description": "Closing plan group on the emailsent month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_group": {"name": "platform_group", "description": "Store plaftorm group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "Bucket of average orders in the three months prior to sending the email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "Store industry", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_cnt": {"name": "email_cnt", "description": "Number of emails sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_cnt": {"name": "store_cnt", "description": "Number of stores that sent emails during the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_cnt": {"name": "organization_cnt", "description": "Number of organizations that sent emails during the month.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082663.430695, "relation_name": "dev_dkruh1.analytics___ugc__postman_feature_email_usage_monthly", "raw_code": "-- Import --\n\nWITH \nimport_ugc_store_metrics_daily AS (\n SELECT * \n FROM {{ ref('analytics___ugc__store_metrics_daily') }}\n WHERE metric_date >= ADD_MONTHS(TRUNC(CURRENT_DATE, 'MONTH'), -12)\n AND metric_date >= '2023-08-01'\n),\n\nimport_ugc_email AS (\n SELECT * \n FROM {{ ref('analytics___ugc_stg__email') }}\n WHERE email_sent_date >= ADD_MONTHS(TRUNC(CURRENT_DATE, 'MONTH'), -12)\n AND email_sent_date >= '2023-08-01'\n),\n\nimport_ugc_store AS (\n SELECT * FROM {{ ref('analytics___ugc__store') }}\n),\n\nimport_platform_store_metrics_monthly AS (\n SELECT * FROM {{ ref('analytics___platform__store_metrics_monthly') }}\n),\n\nimport_platform_organization_plan_monthly AS (\n SELECT * FROM {{ ref('analytics___platform__organization_plan_monthly') }}\n),\n\n-- Logic --\n\npostman_release AS (\n SELECT \n TRUNC(email.email_sent_date,'MONTH') AS email_sent_month,\n SMALLINT(IF (postman_enabled.app_key IS NOT NULL, 1, 0)) AS is_postman_enabled,\n plan.closing_plan_group,\n store.platform_name,\n store.platform_group,\n metrics.last_3m_orders_avg_bucket,\n metrics.industry,\n COUNT(email.email_id) AS email_cnt,\n COUNT(DISTINCT email.app_key) AS store_cnt,\n COUNT(DISTINCT store.organization_key) AS organization_cnt\n FROM import_ugc_email AS email\n INNER JOIN import_ugc_store AS store\n ON email.app_key = store.app_key\n INNER JOIN import_platform_store_metrics_monthly AS metrics\n ON store.app_key = metrics.app_key \n AND TRUNC(email.email_sent_date, 'MONTH') = metrics.month\n INNER JOIN import_platform_organization_plan_monthly AS plan \n ON store.organization_key = plan.organization_key \n AND TRUNC(email.email_sent_date, 'MONTH') = plan.month\n LEFT JOIN import_ugc_store_metrics_daily AS postman_enabled \n ON email.app_key = postman_enabled.app_key \n AND email.email_sent_date = postman_enabled.metric_date\n AND is_postman_enabled = 1\n WHERE store.is_active = 1\n AND plan.is_reviews = 1\n GROUP BY 1,2,3,4,5,6,7\n),\n\npostman_release_res AS (\n SELECT \n SHA2(CONCAT(email_sent_month, is_postman_enabled, NVL(closing_plan_group, '~'), NVL(platform_name, '~'), NVL(platform_group, '~'), NVL(last_3m_orders_avg_bucket, '~'), NVL(industry, '~')), 256) AS postman_feature_email_usage_id,\n email_sent_month,\n is_postman_enabled,\n closing_plan_group,\n platform_group,\n last_3m_orders_avg_bucket,\n industry,\n email_cnt,\n store_cnt,\n organization_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM postman_release\n)\n-- Result --\n\nSELECT *\nFROM postman_release_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___ugc_stg__email", "package": null, "version": null}, {"name": "analytics___ugc__store", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc_stg__email", "model.yoda.analytics___ugc__store", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH \nimport_ugc_store_metrics_daily AS (\n SELECT * \n FROM dev_dkruh1.analytics___ugc__store_metrics_daily\n WHERE metric_date >= ADD_MONTHS(TRUNC(CURRENT_DATE, 'MONTH'), -12)\n AND metric_date >= '2023-08-01'\n),\n\nimport_ugc_email AS (\n SELECT * \n FROM dev_dkruh1.analytics___ugc_stg__email\n WHERE email_sent_date >= ADD_MONTHS(TRUNC(CURRENT_DATE, 'MONTH'), -12)\n AND email_sent_date >= '2023-08-01'\n),\n\nimport_ugc_store AS (\n SELECT * FROM dev_dkruh1.analytics___ugc__store\n),\n\nimport_platform_store_metrics_monthly AS (\n SELECT * FROM dev_dkruh1.analytics___platform__store_metrics_monthly\n),\n\nimport_platform_organization_plan_monthly AS (\n SELECT * FROM dev_dkruh1.analytics___platform__organization_plan_monthly\n),\n\n-- Logic --\n\npostman_release AS (\n SELECT \n TRUNC(email.email_sent_date,'MONTH') AS email_sent_month,\n SMALLINT(IF (postman_enabled.app_key IS NOT NULL, 1, 0)) AS is_postman_enabled,\n plan.closing_plan_group,\n store.platform_name,\n store.platform_group,\n metrics.last_3m_orders_avg_bucket,\n metrics.industry,\n COUNT(email.email_id) AS email_cnt,\n COUNT(DISTINCT email.app_key) AS store_cnt,\n COUNT(DISTINCT store.organization_key) AS organization_cnt\n FROM import_ugc_email AS email\n INNER JOIN import_ugc_store AS store\n ON email.app_key = store.app_key\n INNER JOIN import_platform_store_metrics_monthly AS metrics\n ON store.app_key = metrics.app_key \n AND TRUNC(email.email_sent_date, 'MONTH') = metrics.month\n INNER JOIN import_platform_organization_plan_monthly AS plan \n ON store.organization_key = plan.organization_key \n AND TRUNC(email.email_sent_date, 'MONTH') = plan.month\n LEFT JOIN import_ugc_store_metrics_daily AS postman_enabled \n ON email.app_key = postman_enabled.app_key \n AND email.email_sent_date = postman_enabled.metric_date\n AND is_postman_enabled = 1\n WHERE store.is_active = 1\n AND plan.is_reviews = 1\n GROUP BY 1,2,3,4,5,6,7\n),\n\npostman_release_res AS (\n SELECT \n SHA2(CONCAT(email_sent_month, is_postman_enabled, NVL(closing_plan_group, '~'), NVL(platform_name, '~'), NVL(platform_group, '~'), NVL(last_3m_orders_avg_bucket, '~'), NVL(industry, '~')), 256) AS postman_feature_email_usage_id,\n email_sent_month,\n is_postman_enabled,\n closing_plan_group,\n platform_group,\n last_3m_orders_avg_bucket,\n industry,\n email_cnt,\n store_cnt,\n organization_cnt,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM postman_release\n)\n-- Result --\n\nSELECT *\nFROM postman_release_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__review": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__review", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.sql", "unique_id": "model.yoda.analytics___ugc__review", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review", "analytics___ugc__review"], "alias": "analytics___ugc__review", "checksum": {"name": "sha256", "checksum": "4e18de85bc3b252b5d0a1e81b4685c3b7e23f750fb6323e7882d4ce01226929b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["created_date", "review_id"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["created_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled table of ugc reviews | PK and granularity: review_id", "columns": {"review_id": {"name": "review_id", "description": "review unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "store identifier (account)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_review_id": {"name": "source_review_id", "description": "source review identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_id": {"name": "review_source_type_id", "description": "review source type identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_type_id": {"name": "review_type_id", "description": "review type identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reviewer_id": {"name": "reviewer_id", "description": "reviewer identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reviewer_type": {"name": "reviewer_type", "description": "reviewer type: user/anonymous_user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syndication_source_id": {"name": "syndication_source_id", "description": "app_key of the review source", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_array": {"name": "product_array", "description": "array of review's product identifiers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "title_content": {"name": "title_content", "description": "title content", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "content": {"name": "content", "description": "review content", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "score": {"name": "score", "description": "review score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "device_name": {"name": "device_name", "description": "device name: iPad, Android, Chrome, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_type": {"name": "device_type", "description": "device type: Mobile, Tablet, Desktop, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vote_up_cnt": {"name": "vote_up_cnt", "description": "vote up count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vote_down_cnt": {"name": "vote_down_cnt", "description": "vote down count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_cnt": {"name": "product_cnt", "description": "review product count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "comment_cnt": {"name": "comment_cnt", "description": "review comment count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "image_cnt": {"name": "image_cnt", "description": "review image count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "video_cnt": {"name": "video_cnt", "description": "review video count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_deleted": {"name": "is_deleted", "description": "deletion indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_published": {"name": "is_published", "description": "publish indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_syndicated_review": {"name": "is_syndicated_review", "description": "syndicated review: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["created_date", "review_id"], "incremental_strategy": "merge", "partition_by": ["created_date"]}, "created_at": 1700082663.4930289, "relation_name": "dev_dkruh1.analytics___ugc__review", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key = ['created_date','review_id'],\n incremental_strategy = 'merge',\n partition_by = ['created_date']\n )\n}}\n\n-- Import --\n\nWITH import_ugc_stg__review AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__review') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='created_date',subtract=14)}}\n),\n\nimport_ugc_stg__review_subject AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__review_subject') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='created_date',subtract=14)}}\n),\n\nimport_ugc_stg__comment AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__comment') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='created_date',subtract=14)}}\n),\n\nimport_ugc_stg__review_metadata AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__review_metadata') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='created_date',subtract=14)}}\n),\n\nimport_ugc_review_image AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__review_image') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='created_date',subtract=14)}}\n),\n\nimport_ugc_review_video AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__review_video') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='created_date',subtract=14)}}\n),\n\nimport_ugc_stg__metadata_type AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__metadata_type') }}\n),\n\nimport_platform_stg__account AS (\nSELECT * FROM {{ ref('analytics___platform_stg__account') }}\n),\n\nimport_platform_stg__product AS (\nSELECT * FROM {{ ref('analytics___platform_stg__product') }}\n),\n\n-- Logic --\n\nreview_source AS (\nSELECT\n review.review_id,\n NVL(source_review.app_key,review.app_key) AS syndication_source_id,\n NVL(review.source_review_id, review.review_id) AS source_review_id\nFROM import_ugc_stg__review AS review\nLEFT JOIN import_ugc_stg__review AS source_review\n ON review.source_review_id = source_review.review_id\n),\n\nall_review_subject AS (\nSELECT\n subject.review_subject_id,\n subject.review_id,\n subject.account_id,\n subject.is_deactivated,\n IF(LOWER(subject.subject_entity_type) = 'group',product.product_id,subject.subject_id) AS subject_id,\n IF(LOWER(subject.subject_entity_type) = 'group',1,0) AS is_group,\n IF(LOWER(subject.subject_entity_type) IN ('product', 'group'),1,0) AS is_product\nFROM import_ugc_stg__review_subject AS subject\nLEFT JOIN import_platform_stg__product AS product\n ON LOWER(subject.subject_entity_type) = 'group' \n AND subject.subject_id = product.group_id\n),\n\nreview_subject_rank AS (\nSELECT\n review_id,\n subject_id,\n is_deactivated,\n is_product,\n ROW_NUMBER() OVER (PARTITION BY review_id, account_id, subject_id ORDER BY is_group DESC, review_subject_id DESC) AS review_row_ranking_by_group\nFROM all_review_subject\n),\n\nnon_deleted_review_subject AS (\nSELECT\n review_id,\n IF(is_product = 1,subject_id,NULL) AS product_id\nFROM review_subject_rank\nWHERE review_row_ranking_by_group = 1\nAND is_deactivated = 0\n),\n\nreview_product AS (\nSELECT \n review_id,\n COUNT(product_id) AS product_cnt,\n ARRAY_SORT(COLLECT_SET(product_id)) AS product_array\nFROM non_deleted_review_subject\nGROUP BY 1\n),\n\nreview_metadata_device_name AS (\nSELECT\n metadata.review_id,\n metadata.metadata_type_value AS device_name,\n ROW_NUMBER() OVER (PARTITION BY metadata.review_id ORDER BY metadata.metadata_type_value DESC, metadata.review_metadata_id DESC) AS review_device_name_ranking\nFROM import_ugc_stg__review_metadata AS metadata\nINNER JOIN import_ugc_stg__metadata_type AS type\n ON LOWER(type.metadata_name) = 'device_name'\n AND metadata.metadata_type_id = type.metadata_type_id\nWHERE metadata.metadata_type_value IS NOT NULL\n),\n\nreview_metadata_device_type AS (\nSELECT\n metadata.review_id,\n metadata.metadata_type_value AS device_type,\n ROW_NUMBER() OVER (PARTITION BY metadata.review_id ORDER BY metadata.metadata_type_value DESC, metadata.review_metadata_id DESC) AS review_device_type_ranking\nFROM import_ugc_stg__review_metadata AS metadata\nINNER JOIN import_ugc_stg__metadata_type AS type\n ON LOWER(type.metadata_name) = 'device_type'\n AND metadata.metadata_type_id = type.metadata_type_id\nWHERE metadata.metadata_type_value IS NOT NULL\n),\n\nreview_comment_count AS (\nSELECT\n commentable_id AS review_id,\n COUNT(*) AS comment_cnt\nFROM import_ugc_stg__comment\nWHERE LOWER(commentable_type) = 'review'\nGROUP BY 1\n),\n\nreview_image_count AS (\nSELECT\n review_id,\n COUNT(*) AS image_cnt\nFROM import_ugc_review_image\nGROUP BY 1\n),\n\nreview_video_count AS (\nSELECT\n review_id,\n COUNT(*) AS video_cnt\nFROM import_ugc_review_video\nGROUP BY 1\n),\n\nugc__review_res AS (\nSELECT\n review.review_id,\n review.app_key,\n account.account_id AS store_id,\n account.organization_id,\n review.source_review_id,\n review.review_source_type_id,\n review.review_type_id,\n review.reviewer_id,\n review.reviewer_type,\n review_source.syndication_source_id,\n review_product.product_array,\n review.title_content,\n review.content,\n review.score,\n device_name.device_name,\n device_type.device_type,\n review.vote_up_cnt,\n review.vote_down_cnt,\n NVL(review_product.product_cnt,0) AS product_cnt,\n NVL(review_comment.comment_cnt,0) AS comment_cnt,\n NVL(image.image_cnt,0) AS image_cnt,\n NVL(video.video_cnt,0) AS video_cnt,\n review.is_deleted,\n review.is_published,\n review.is_syndicated_review,\n review.created_at,\n review.created_date,\n review.updated_at,\n review.updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_stg__review AS review\nINNER JOIN import_platform_stg__account AS account\n ON review.app_key = account.app_key\nINNER JOIN review_source\n ON review.review_id = review_source.review_id\nINNER JOIN review_product\n ON review.review_id = review_product.review_id\nLEFT JOIN review_metadata_device_name AS device_name\n ON device_name.review_device_name_ranking = 1\n AND review_source.source_review_id = device_name.review_id\nLEFT JOIN review_metadata_device_type AS device_type\n ON device_type.review_device_type_ranking = 1\n AND review_source.source_review_id = device_type.review_id\nLEFT JOIN review_comment_count AS review_comment\n ON review.review_id = review_comment.review_id\nLEFT JOIN review_image_count AS image\n ON review.review_id = image.review_id\nLEFT JOIN review_video_count AS video\n ON review.review_id = video.review_id\n\n)\n\n-- Result --\n\nSELECT *\nFROM ugc__review_res", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_subject", "package": null, "version": null}, {"name": "analytics___ugc_stg__comment", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_metadata", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_image", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_video", "package": null, "version": null}, {"name": "analytics___ugc_stg__metadata_type", "package": null, "version": null}, {"name": "analytics___platform_stg__account", "package": null, "version": null}, {"name": "analytics___platform_stg__product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc_stg__review", "model.yoda.analytics___ugc_stg__review_subject", "model.yoda.analytics___ugc_stg__comment", "model.yoda.analytics___ugc_stg__review_metadata", "model.yoda.analytics___ugc_stg__review_image", "model.yoda.analytics___ugc_stg__review_video", "model.yoda.analytics___ugc_stg__metadata_type", "model.yoda.analytics___platform_stg__account", "model.yoda.analytics___platform_stg__product"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_stg__review AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__review\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_stg__review_subject AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__review_subject\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_stg__comment AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__comment\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_stg__review_metadata AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__review_metadata\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_review_image AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__review_image\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_review_video AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__review_video\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_stg__metadata_type AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__metadata_type\n),\n\nimport_platform_stg__account AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__account\n),\n\nimport_platform_stg__product AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__product\n),\n\n-- Logic --\n\nreview_source AS (\nSELECT\n review.review_id,\n NVL(source_review.app_key,review.app_key) AS syndication_source_id,\n NVL(review.source_review_id, review.review_id) AS source_review_id\nFROM import_ugc_stg__review AS review\nLEFT JOIN import_ugc_stg__review AS source_review\n ON review.source_review_id = source_review.review_id\n),\n\nall_review_subject AS (\nSELECT\n subject.review_subject_id,\n subject.review_id,\n subject.account_id,\n subject.is_deactivated,\n IF(LOWER(subject.subject_entity_type) = 'group',product.product_id,subject.subject_id) AS subject_id,\n IF(LOWER(subject.subject_entity_type) = 'group',1,0) AS is_group,\n IF(LOWER(subject.subject_entity_type) IN ('product', 'group'),1,0) AS is_product\nFROM import_ugc_stg__review_subject AS subject\nLEFT JOIN import_platform_stg__product AS product\n ON LOWER(subject.subject_entity_type) = 'group' \n AND subject.subject_id = product.group_id\n),\n\nreview_subject_rank AS (\nSELECT\n review_id,\n subject_id,\n is_deactivated,\n is_product,\n ROW_NUMBER() OVER (PARTITION BY review_id, account_id, subject_id ORDER BY is_group DESC, review_subject_id DESC) AS review_row_ranking_by_group\nFROM all_review_subject\n),\n\nnon_deleted_review_subject AS (\nSELECT\n review_id,\n IF(is_product = 1,subject_id,NULL) AS product_id\nFROM review_subject_rank\nWHERE review_row_ranking_by_group = 1\nAND is_deactivated = 0\n),\n\nreview_product AS (\nSELECT \n review_id,\n COUNT(product_id) AS product_cnt,\n ARRAY_SORT(COLLECT_SET(product_id)) AS product_array\nFROM non_deleted_review_subject\nGROUP BY 1\n),\n\nreview_metadata_device_name AS (\nSELECT\n metadata.review_id,\n metadata.metadata_type_value AS device_name,\n ROW_NUMBER() OVER (PARTITION BY metadata.review_id ORDER BY metadata.metadata_type_value DESC, metadata.review_metadata_id DESC) AS review_device_name_ranking\nFROM import_ugc_stg__review_metadata AS metadata\nINNER JOIN import_ugc_stg__metadata_type AS type\n ON LOWER(type.metadata_name) = 'device_name'\n AND metadata.metadata_type_id = type.metadata_type_id\nWHERE metadata.metadata_type_value IS NOT NULL\n),\n\nreview_metadata_device_type AS (\nSELECT\n metadata.review_id,\n metadata.metadata_type_value AS device_type,\n ROW_NUMBER() OVER (PARTITION BY metadata.review_id ORDER BY metadata.metadata_type_value DESC, metadata.review_metadata_id DESC) AS review_device_type_ranking\nFROM import_ugc_stg__review_metadata AS metadata\nINNER JOIN import_ugc_stg__metadata_type AS type\n ON LOWER(type.metadata_name) = 'device_type'\n AND metadata.metadata_type_id = type.metadata_type_id\nWHERE metadata.metadata_type_value IS NOT NULL\n),\n\nreview_comment_count AS (\nSELECT\n commentable_id AS review_id,\n COUNT(*) AS comment_cnt\nFROM import_ugc_stg__comment\nWHERE LOWER(commentable_type) = 'review'\nGROUP BY 1\n),\n\nreview_image_count AS (\nSELECT\n review_id,\n COUNT(*) AS image_cnt\nFROM import_ugc_review_image\nGROUP BY 1\n),\n\nreview_video_count AS (\nSELECT\n review_id,\n COUNT(*) AS video_cnt\nFROM import_ugc_review_video\nGROUP BY 1\n),\n\nugc__review_res AS (\nSELECT\n review.review_id,\n review.app_key,\n account.account_id AS store_id,\n account.organization_id,\n review.source_review_id,\n review.review_source_type_id,\n review.review_type_id,\n review.reviewer_id,\n review.reviewer_type,\n review_source.syndication_source_id,\n review_product.product_array,\n review.title_content,\n review.content,\n review.score,\n device_name.device_name,\n device_type.device_type,\n review.vote_up_cnt,\n review.vote_down_cnt,\n NVL(review_product.product_cnt,0) AS product_cnt,\n NVL(review_comment.comment_cnt,0) AS comment_cnt,\n NVL(image.image_cnt,0) AS image_cnt,\n NVL(video.video_cnt,0) AS video_cnt,\n review.is_deleted,\n review.is_published,\n review.is_syndicated_review,\n review.created_at,\n review.created_date,\n review.updated_at,\n review.updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_stg__review AS review\nINNER JOIN import_platform_stg__account AS account\n ON review.app_key = account.app_key\nINNER JOIN review_source\n ON review.review_id = review_source.review_id\nINNER JOIN review_product\n ON review.review_id = review_product.review_id\nLEFT JOIN review_metadata_device_name AS device_name\n ON device_name.review_device_name_ranking = 1\n AND review_source.source_review_id = device_name.review_id\nLEFT JOIN review_metadata_device_type AS device_type\n ON device_type.review_device_type_ranking = 1\n AND review_source.source_review_id = device_type.review_id\nLEFT JOIN review_comment_count AS review_comment\n ON review.review_id = review_comment.review_id\nLEFT JOIN review_image_count AS image\n ON review.review_id = image.review_id\nLEFT JOIN review_video_count AS video\n ON review.review_id = video.review_id\n\n)\n\n-- Result --\n\nSELECT *\nFROM ugc__review_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__review_request": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__review_request", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.sql", "unique_id": "model.yoda.analytics___ugc__review_request", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request", "analytics___ugc__review_request"], "alias": "analytics___ugc__review_request", "checksum": {"name": "sha256", "checksum": "d32fabcc57298c55ee8d8bbeca65196d3e1996757ea15c04dda19bfa6f9584c3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["channel_name", "channel_message_id"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["channel_name"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled incremental table of review requests | PK and granularity: channel_name | channel_message_id", "columns": {"channel_name": {"name": "channel_name", "description": "channel name: review_request_email/review_request_sms/email_authentications - PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel_message_id": {"name": "channel_message_id", "description": "channel message id: caller id of the channel - PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_request_token_id": {"name": "review_request_token_id", "description": "review request token id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "token": {"name": "token", "description": "token", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "caller_type": {"name": "caller_type", "description": "caller type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "caller_id": {"name": "caller_id", "description": "caller id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel_type": {"name": "channel_type", "description": "channel type: Email/SMS/Flow", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_line_id": {"name": "order_line_id", "description": "order line id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_id": {"name": "account_id", "description": "yotpo account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_type_id": {"name": "message_type_id", "description": "message type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_type": {"name": "message_type", "description": "message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_source_type_id": {"name": "review_source_type_id", "description": "review source type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_name": {"name": "review_source_type_name", "description": "review source type name. e.g., reminder, site_reminder, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "form_type": {"name": "form_type", "description": "form type: in_mail_form/formless/media_queries", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_address": {"name": "email_address", "description": "email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "user name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_rank_per_order": {"name": "message_rank_per_order", "description": "message rank per order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "email_rank_per_order": {"name": "email_rank_per_order", "description": "email rank per order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "sms_rank_per_order": {"name": "sms_rank_per_order", "description": "sms rank per order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "from_order_to_review_request_day_cnt": {"name": "from_order_to_review_request_day_cnt", "description": "number of days from order to review request", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "from_review_request_to_review_day_cnt": {"name": "from_review_request_to_review_day_cnt", "description": "number of days from review request to review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "product_cnt": {"name": "product_cnt", "description": "order number of products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_reviewed": {"name": "is_reviewed", "description": "reviewed indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "review_cnt": {"name": "review_cnt", "description": "number of reviews", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "image_cnt": {"name": "image_cnt", "description": "number of images", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "video_cnt": {"name": "video_cnt", "description": "number of videos", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_with_image_cnt": {"name": "review_with_image_cnt", "description": "number of reviews with image", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_with_video_cnt": {"name": "review_with_video_cnt", "description": "number of reviews with video", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_created_at": {"name": "order_created_at", "description": "order creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_review_created_at": {"name": "first_review_created_at", "description": "first review creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delivered_at": {"name": "delivered_at", "description": "message delivered timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delivered_date": {"name": "delivered_date", "description": "message delivered date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "latest_updated_at": {"name": "latest_updated_at", "description": "The latest updated_at value among the source models' updated_at columns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "latest_updated_date": {"name": "latest_updated_date", "description": "The latest updated_date value among the source models' updated_at columns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["channel_name", "channel_message_id"], "incremental_strategy": "merge", "partition_by": ["channel_name"]}, "created_at": 1700082663.5468554, "relation_name": "dev_dkruh1.analytics___ugc__review_request", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key = ['channel_name','channel_message_id'],\n incremental_strategy = 'merge',\n partition_by = ['channel_name'],\n post_hook = dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.ugc_review_request ZORDER BY channel_message_id, order_id;')\n )\n}}\n\n-- Import --\n\nWITH import_ugc_unmigrated_review_request_token_email AS (\nSELECT * FROM {{ ref('analytics___ugc__unmigrated_review_request_token_email') }}\n),\n\nimport_ugc_review_request_token_message AS (\nSELECT * FROM {{ ref('analytics___ugc__review_request_token_message') }}\n),\n\nimport_ugc_review AS (\nSELECT * FROM {{ ref('analytics___ugc__review') }}\n),\n\nimport_platform_account AS (\nSELECT * FROM {{ ref('analytics___platform_stg__account') }}\n),\n\nimport_platform_order AS (\nSELECT * FROM {{ ref('analytics___platform__order') }}\n),\n\nimport_platform_order_metrics AS (\nSELECT * FROM {{ ref('analytics___platform__order_metrics') }}\n),\n\n-- Logic --\n\n{% if is_incremental() -%}\nupdated_unmigrated_messages AS (\nSELECT DISTINCT\n email_authentication_id\nFROM import_ugc_unmigrated_review_request_token_email\n{{incremental_condition(data_type='DATE',destination_condition_column='latest_updated_date',subtract=7)}}\n),\n\nupdated_review_request_token_messages AS (\nSELECT DISTINCT\n channel_name,\n channel_message_id_first_3_digits,\n channel_message_id,\n order_id\nFROM import_ugc_review_request_token_message\n{{incremental_condition(data_type='DATE',destination_condition_column='latest_updated_date',subtract=7)}}\n),\n\nmessages_with_the_same_order_to_update AS (\nSELECT\n this.channel_name,\n this.channel_message_id_first_3_digits,\n this.channel_message_id\nFROM {{this}} AS this\nINNER JOIN updated_review_request_token_messages AS message\n ON this.channel_message_id_first_3_digits <> message.channel_message_id_first_3_digits\n AND this.channel_message_id <> message.channel_message_id\n AND this.order_id = message.order_id\n),\n\nreview_request_token_messages_to_update AS (\nSELECT\n channel_name,\n channel_message_id_first_3_digits,\n channel_message_id\nFROM updated_review_request_token_messages\nUNION ALL\nSELECT\n channel_name,\n channel_message_id_first_3_digits,\n channel_message_id\nFROM messages_with_the_same_order_to_update\n),\n{%- endif %}\n\nreview_request_token_message_rank AS (\nSELECT\n message.channel_name,\n message.review_request_token_id,\n message.channel_message_id_first_3_digits,\n message.channel_message_id,\n message.token,\n message.channel_type,\n message.caller_id,\n message.caller_type,\n account.account_id,\n message.app_key,\n account.organization_id,\n message.email_address,\n message.user_name,\n message.message_type_id,\n message.message_type,\n message.email_submission_type_id,\n message.order_id,\n message.order_line_id,\n message.review_source_type_id,\n message.review_source_type_name,\n message.review_id,\n message.delivered_at,\n message.delivered_date,\n message.latest_updated_at,\n message.latest_updated_date,\n ROW_NUMBER() OVER (PARTITION BY message.channel_name, message.channel_message_id \n ORDER BY message.order_id DESC, message.review_id DESC, message.review_request_token_id) AS row_ranking_per_message\nFROM import_ugc_review_request_token_message AS message\n{% if is_incremental() -%}\nINNER JOIN review_request_token_messages_to_update AS to_update\n ON message.channel_name = to_update.channel_name\n AND message.channel_message_id_first_3_digits = to_update.channel_message_id_first_3_digits\n AND message.channel_message_id = to_update.channel_message_id\n{%- endif %}\nLEFT JOIN import_platform_account AS account\n ON message.app_key = account.app_key\n),\n\nreview_request_token_message_review_metrics AS (\nSELECT\n message.channel_name,\n message.channel_message_id_first_3_digits,\n message.channel_message_id,\n MIN(review.created_at) AS first_review_created_at,\n COUNT(review.review_id) AS review_cnt,\n SUM(review.image_cnt) AS image_cnt,\n SUM(review.video_cnt) AS video_cnt,\n SUM(IF(review.image_cnt > 0,1,0)) AS review_with_image_cnt,\n SUM(IF(review.video_cnt > 0,1,0)) AS review_with_video_cnt\nFROM review_request_token_message_rank AS message\nINNER JOIN import_ugc_review AS review\n ON message.review_id = review.review_id\nGROUP BY 1,2,3\n),\n\nreview_request_token_message_final AS (\nSELECT\n message.channel_name,\n message.channel_message_id,\n message.review_request_token_id,\n message.token,\n message.channel_type,\n message.caller_id,\n message.caller_type,\n message.account_id,\n message.app_key,\n message.organization_id,\n message.email_address,\n message.user_name,\n message.message_type_id,\n message.message_type,\n message.email_submission_type_id,\n message.order_id,\n message.order_line_id,\n message.review_source_type_id,\n message.review_source_type_name,\n metrics.first_review_created_at,\n SMALLINT(IF(metrics.review_cnt > 0,1,0)) AS is_reviewed,\n NVL(metrics.review_cnt,0) AS review_cnt,\n NVL(metrics.image_cnt,0) AS image_cnt,\n NVL(metrics.video_cnt,0) AS video_cnt,\n NVL(metrics.review_with_image_cnt,0) AS review_with_image_cnt,\n NVL(metrics.review_with_video_cnt,0) AS review_with_video_cnt,\n message.delivered_at,\n message.delivered_date,\n message.latest_updated_at,\n message.latest_updated_date,\n ROW_NUMBER() OVER (PARTITION BY message.channel_name, message.order_id ORDER BY message.delivered_at, message.channel_message_id) AS message_rank_per_order,\n IF(message.channel_name = 'review_request_email',\n ROW_NUMBER() OVER (PARTITION BY message.channel_name, message.order_id ORDER BY message.delivered_at, message.channel_message_id)\n ,0) AS email_rank_per_order,\n IF(message.channel_name = 'review_request_sms',\n ROW_NUMBER() OVER (PARTITION BY message.channel_name, message.order_id ORDER BY message.delivered_at, message.channel_message_id)\n ,0) AS sms_rank_per_order\nFROM review_request_token_message_rank AS message\nLEFT JOIN review_request_token_message_review_metrics AS metrics\n ON message.channel_name = metrics.channel_name\n AND message.channel_message_id_first_3_digits = metrics.channel_message_id_first_3_digits\n AND message.channel_message_id = metrics.channel_message_id\nWHERE message.row_ranking_per_message = 1\n),\n\nunmigrated_review_request_token_email_rank AS (\nSELECT\n 'email_authentications' AS channel_name,\n email.email_authentication_id AS review_request_token_id,\n email.users_email_control_id AS channel_message_id,\n email.token,\n 'Email' AS channel_type,\n email.caller_id,\n email.caller_type,\n email.account_id,\n account.app_key,\n account.organization_id,\n email.email_address,\n email.user_name,\n email.email_type_id AS message_type_id,\n email.email_type AS message_type,\n email.form_type_id AS email_submission_type_id,\n NULL AS order_id,\n NULL AS order_line_id,\n NULL AS review_source_type_id,\n NULL AS review_source_type_name,\n email.review_id,\n email.delivered_at,\n email.delivered_date,\n email.latest_updated_at,\n email.latest_updated_date,\n ROW_NUMBER() OVER (PARTITION BY email.users_email_control_id\n ORDER BY email.review_id DESC, email.email_authentication_id DESC) AS row_ranking_per_message\nFROM import_ugc_unmigrated_review_request_token_email AS email\n{% if is_incremental() -%}\nINNER JOIN updated_unmigrated_messages AS to_update\n ON email.email_authentication_id = to_update.email_authentication_id\n{%- endif %}\nLEFT JOIN import_platform_account AS account\n ON email.account_id = account.account_id\n),\n\nunmigrated_review_request_review_metrics AS (\nSELECT\n message.channel_message_id,\n MIN(review.created_at) AS first_review_created_at,\n COUNT(review.review_id) AS review_cnt,\n SUM(review.image_cnt) AS image_cnt,\n SUM(review.video_cnt) AS video_cnt,\n SUM(IF(review.image_cnt > 0,1,0)) AS review_with_image_cnt,\n SUM(IF(review.video_cnt > 0,1,0)) AS review_with_video_cnt\nFROM unmigrated_review_request_token_email_rank AS message\nINNER JOIN import_ugc_review AS review\n ON message.review_id = review.review_id\nGROUP BY 1\n),\n\nunmigrated_review_request_final AS (\nSELECT\n message.channel_name,\n message.channel_message_id,\n message.review_request_token_id,\n message.token,\n message.channel_type,\n message.caller_id,\n message.caller_type,\n message.account_id,\n message.app_key,\n message.organization_id,\n message.email_address,\n message.user_name,\n message.message_type_id,\n message.message_type,\n message.email_submission_type_id,\n message.order_id,\n message.order_line_id,\n message.review_source_type_id,\n message.review_source_type_name,\n metrics.first_review_created_at,\n SMALLINT(IF(metrics.review_cnt > 0,1,0)) AS is_reviewed,\n NVL(metrics.review_cnt,0) AS review_cnt,\n NVL(metrics.image_cnt,0) AS image_cnt,\n NVL(metrics.video_cnt,0) AS video_cnt,\n NVL(metrics.review_with_image_cnt,0) AS review_with_image_cnt,\n NVL(metrics.review_with_video_cnt,0) AS review_with_video_cnt,\n message.delivered_at,\n message.delivered_date,\n message.latest_updated_at,\n message.latest_updated_date,\n 0 AS message_rank_per_order,\n 0 AS email_rank_per_order,\n 0 AS sms_rank_per_order\nFROM unmigrated_review_request_token_email_rank AS message\nLEFT JOIN unmigrated_review_request_review_metrics AS metrics\n ON message.channel_message_id = metrics.channel_message_id\nWHERE message.row_ranking_per_message = 1\n),\n\nchannels_union AS (\nSELECT\n channel_name,\n channel_message_id,\n review_request_token_id,\n token,\n caller_type,\n caller_id,\n channel_type,\n order_id,\n order_line_id,\n account_id,\n app_key,\n organization_id,\n message_type_id,\n message_type,\n review_source_type_id,\n review_source_type_name,\n email_submission_type_id,\n email_address,\n user_name,\n message_rank_per_order,\n email_rank_per_order,\n sms_rank_per_order,\n is_reviewed,\n review_cnt,\n image_cnt,\n video_cnt,\n review_with_image_cnt,\n review_with_video_cnt,\n first_review_created_at,\n delivered_at,\n delivered_date,\n latest_updated_at,\n latest_updated_date\nFROM review_request_token_message_final\nUNION ALL\nSELECT\n channel_name,\n channel_message_id,\n review_request_token_id,\n token,\n caller_type,\n caller_id,\n channel_type,\n order_id,\n order_line_id,\n account_id,\n app_key,\n organization_id,\n message_type_id,\n message_type,\n review_source_type_id,\n review_source_type_name,\n email_submission_type_id,\n email_address,\n user_name,\n message_rank_per_order,\n email_rank_per_order,\n sms_rank_per_order,\n is_reviewed,\n review_cnt,\n image_cnt,\n video_cnt,\n review_with_image_cnt,\n review_with_video_cnt,\n first_review_created_at,\n delivered_at,\n delivered_date,\n latest_updated_at,\n latest_updated_date\nFROM unmigrated_review_request_final\n),\n\nugc_review_request_res AS (\nSELECT\n channels.channel_name,\n channels.channel_message_id,\n channels.review_request_token_id,\n channels.token,\n channels.caller_type,\n channels.caller_id,\n channels.channel_type,\n channels.order_id,\n channels.order_line_id,\n channels.account_id,\n channels.app_key,\n channels.organization_id,\n channels.message_type_id,\n channels.message_type,\n channels.review_source_type_id,\n channels.review_source_type_name,\n CASE channels.email_submission_type_id\n WHEN 0 THEN 'in_mail_form'\n WHEN 1 THEN 'formless'\n WHEN 2 THEN 'media_queries' END form_type,\n channels.email_address,\n channels.user_name,\n channels.message_rank_per_order,\n channels.email_rank_per_order,\n channels.sms_rank_per_order,\n DATEDIFF(channels.delivered_at, platform_order.order_at) AS from_order_to_review_request_day_cnt,\n DATEDIFF(channels.first_review_created_at, channels.delivered_at) AS from_review_request_to_review_day_cnt,\n order_metrics.product_cnt,\n channels.is_reviewed,\n channels.review_cnt,\n channels.image_cnt,\n channels.video_cnt,\n channels.review_with_image_cnt,\n channels.review_with_video_cnt,\n platform_order.order_at AS order_created_at,\n channels.first_review_created_at,\n channels.delivered_at,\n channels.delivered_date,\n channels.latest_updated_at,\n channels.latest_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM channels_union AS channels\nLEFT JOIN import_platform_order AS platform_order\n ON channels.order_id = platform_order.order_id\nLEFT JOIN import_platform_order_metrics AS order_metrics\n ON channels.order_id = order_metrics.order_id\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_review_request_res", "language": "sql", "refs": [{"name": "analytics___ugc__unmigrated_review_request_token_email", "package": null, "version": null}, {"name": "analytics___ugc__review_request_token_message", "package": null, "version": null}, {"name": "analytics___ugc__review", "package": null, "version": null}, {"name": "analytics___platform_stg__account", "package": null, "version": null}, {"name": "analytics___platform__order", "package": null, "version": null}, {"name": "analytics___platform__order_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__unmigrated_review_request_token_email", "model.yoda.analytics___ugc__review_request_token_message", "model.yoda.analytics___ugc__review", "model.yoda.analytics___platform_stg__account", "model.yoda.analytics___platform__order", "model.yoda.analytics___platform__order_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_unmigrated_review_request_token_email AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__unmigrated_review_request_token_email\n),\n\nimport_ugc_review_request_token_message AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__review_request_token_message\n),\n\nimport_ugc_review AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__review\n),\n\nimport_platform_account AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__account\n),\n\nimport_platform_order AS (\nSELECT * FROM dev_dkruh1.analytics___platform__order\n),\n\nimport_platform_order_metrics AS (\nSELECT * FROM dev_dkruh1.analytics___platform__order_metrics\n),\n\n-- Logic --\n\n\n\nreview_request_token_message_rank AS (\nSELECT\n message.channel_name,\n message.review_request_token_id,\n message.channel_message_id_first_3_digits,\n message.channel_message_id,\n message.token,\n message.channel_type,\n message.caller_id,\n message.caller_type,\n account.account_id,\n message.app_key,\n account.organization_id,\n message.email_address,\n message.user_name,\n message.message_type_id,\n message.message_type,\n message.email_submission_type_id,\n message.order_id,\n message.order_line_id,\n message.review_source_type_id,\n message.review_source_type_name,\n message.review_id,\n message.delivered_at,\n message.delivered_date,\n message.latest_updated_at,\n message.latest_updated_date,\n ROW_NUMBER() OVER (PARTITION BY message.channel_name, message.channel_message_id \n ORDER BY message.order_id DESC, message.review_id DESC, message.review_request_token_id) AS row_ranking_per_message\nFROM import_ugc_review_request_token_message AS message\n\nLEFT JOIN import_platform_account AS account\n ON message.app_key = account.app_key\n),\n\nreview_request_token_message_review_metrics AS (\nSELECT\n message.channel_name,\n message.channel_message_id_first_3_digits,\n message.channel_message_id,\n MIN(review.created_at) AS first_review_created_at,\n COUNT(review.review_id) AS review_cnt,\n SUM(review.image_cnt) AS image_cnt,\n SUM(review.video_cnt) AS video_cnt,\n SUM(IF(review.image_cnt > 0,1,0)) AS review_with_image_cnt,\n SUM(IF(review.video_cnt > 0,1,0)) AS review_with_video_cnt\nFROM review_request_token_message_rank AS message\nINNER JOIN import_ugc_review AS review\n ON message.review_id = review.review_id\nGROUP BY 1,2,3\n),\n\nreview_request_token_message_final AS (\nSELECT\n message.channel_name,\n message.channel_message_id,\n message.review_request_token_id,\n message.token,\n message.channel_type,\n message.caller_id,\n message.caller_type,\n message.account_id,\n message.app_key,\n message.organization_id,\n message.email_address,\n message.user_name,\n message.message_type_id,\n message.message_type,\n message.email_submission_type_id,\n message.order_id,\n message.order_line_id,\n message.review_source_type_id,\n message.review_source_type_name,\n metrics.first_review_created_at,\n SMALLINT(IF(metrics.review_cnt > 0,1,0)) AS is_reviewed,\n NVL(metrics.review_cnt,0) AS review_cnt,\n NVL(metrics.image_cnt,0) AS image_cnt,\n NVL(metrics.video_cnt,0) AS video_cnt,\n NVL(metrics.review_with_image_cnt,0) AS review_with_image_cnt,\n NVL(metrics.review_with_video_cnt,0) AS review_with_video_cnt,\n message.delivered_at,\n message.delivered_date,\n message.latest_updated_at,\n message.latest_updated_date,\n ROW_NUMBER() OVER (PARTITION BY message.channel_name, message.order_id ORDER BY message.delivered_at, message.channel_message_id) AS message_rank_per_order,\n IF(message.channel_name = 'review_request_email',\n ROW_NUMBER() OVER (PARTITION BY message.channel_name, message.order_id ORDER BY message.delivered_at, message.channel_message_id)\n ,0) AS email_rank_per_order,\n IF(message.channel_name = 'review_request_sms',\n ROW_NUMBER() OVER (PARTITION BY message.channel_name, message.order_id ORDER BY message.delivered_at, message.channel_message_id)\n ,0) AS sms_rank_per_order\nFROM review_request_token_message_rank AS message\nLEFT JOIN review_request_token_message_review_metrics AS metrics\n ON message.channel_name = metrics.channel_name\n AND message.channel_message_id_first_3_digits = metrics.channel_message_id_first_3_digits\n AND message.channel_message_id = metrics.channel_message_id\nWHERE message.row_ranking_per_message = 1\n),\n\nunmigrated_review_request_token_email_rank AS (\nSELECT\n 'email_authentications' AS channel_name,\n email.email_authentication_id AS review_request_token_id,\n email.users_email_control_id AS channel_message_id,\n email.token,\n 'Email' AS channel_type,\n email.caller_id,\n email.caller_type,\n email.account_id,\n account.app_key,\n account.organization_id,\n email.email_address,\n email.user_name,\n email.email_type_id AS message_type_id,\n email.email_type AS message_type,\n email.form_type_id AS email_submission_type_id,\n NULL AS order_id,\n NULL AS order_line_id,\n NULL AS review_source_type_id,\n NULL AS review_source_type_name,\n email.review_id,\n email.delivered_at,\n email.delivered_date,\n email.latest_updated_at,\n email.latest_updated_date,\n ROW_NUMBER() OVER (PARTITION BY email.users_email_control_id\n ORDER BY email.review_id DESC, email.email_authentication_id DESC) AS row_ranking_per_message\nFROM import_ugc_unmigrated_review_request_token_email AS email\n\nLEFT JOIN import_platform_account AS account\n ON email.account_id = account.account_id\n),\n\nunmigrated_review_request_review_metrics AS (\nSELECT\n message.channel_message_id,\n MIN(review.created_at) AS first_review_created_at,\n COUNT(review.review_id) AS review_cnt,\n SUM(review.image_cnt) AS image_cnt,\n SUM(review.video_cnt) AS video_cnt,\n SUM(IF(review.image_cnt > 0,1,0)) AS review_with_image_cnt,\n SUM(IF(review.video_cnt > 0,1,0)) AS review_with_video_cnt\nFROM unmigrated_review_request_token_email_rank AS message\nINNER JOIN import_ugc_review AS review\n ON message.review_id = review.review_id\nGROUP BY 1\n),\n\nunmigrated_review_request_final AS (\nSELECT\n message.channel_name,\n message.channel_message_id,\n message.review_request_token_id,\n message.token,\n message.channel_type,\n message.caller_id,\n message.caller_type,\n message.account_id,\n message.app_key,\n message.organization_id,\n message.email_address,\n message.user_name,\n message.message_type_id,\n message.message_type,\n message.email_submission_type_id,\n message.order_id,\n message.order_line_id,\n message.review_source_type_id,\n message.review_source_type_name,\n metrics.first_review_created_at,\n SMALLINT(IF(metrics.review_cnt > 0,1,0)) AS is_reviewed,\n NVL(metrics.review_cnt,0) AS review_cnt,\n NVL(metrics.image_cnt,0) AS image_cnt,\n NVL(metrics.video_cnt,0) AS video_cnt,\n NVL(metrics.review_with_image_cnt,0) AS review_with_image_cnt,\n NVL(metrics.review_with_video_cnt,0) AS review_with_video_cnt,\n message.delivered_at,\n message.delivered_date,\n message.latest_updated_at,\n message.latest_updated_date,\n 0 AS message_rank_per_order,\n 0 AS email_rank_per_order,\n 0 AS sms_rank_per_order\nFROM unmigrated_review_request_token_email_rank AS message\nLEFT JOIN unmigrated_review_request_review_metrics AS metrics\n ON message.channel_message_id = metrics.channel_message_id\nWHERE message.row_ranking_per_message = 1\n),\n\nchannels_union AS (\nSELECT\n channel_name,\n channel_message_id,\n review_request_token_id,\n token,\n caller_type,\n caller_id,\n channel_type,\n order_id,\n order_line_id,\n account_id,\n app_key,\n organization_id,\n message_type_id,\n message_type,\n review_source_type_id,\n review_source_type_name,\n email_submission_type_id,\n email_address,\n user_name,\n message_rank_per_order,\n email_rank_per_order,\n sms_rank_per_order,\n is_reviewed,\n review_cnt,\n image_cnt,\n video_cnt,\n review_with_image_cnt,\n review_with_video_cnt,\n first_review_created_at,\n delivered_at,\n delivered_date,\n latest_updated_at,\n latest_updated_date\nFROM review_request_token_message_final\nUNION ALL\nSELECT\n channel_name,\n channel_message_id,\n review_request_token_id,\n token,\n caller_type,\n caller_id,\n channel_type,\n order_id,\n order_line_id,\n account_id,\n app_key,\n organization_id,\n message_type_id,\n message_type,\n review_source_type_id,\n review_source_type_name,\n email_submission_type_id,\n email_address,\n user_name,\n message_rank_per_order,\n email_rank_per_order,\n sms_rank_per_order,\n is_reviewed,\n review_cnt,\n image_cnt,\n video_cnt,\n review_with_image_cnt,\n review_with_video_cnt,\n first_review_created_at,\n delivered_at,\n delivered_date,\n latest_updated_at,\n latest_updated_date\nFROM unmigrated_review_request_final\n),\n\nugc_review_request_res AS (\nSELECT\n channels.channel_name,\n channels.channel_message_id,\n channels.review_request_token_id,\n channels.token,\n channels.caller_type,\n channels.caller_id,\n channels.channel_type,\n channels.order_id,\n channels.order_line_id,\n channels.account_id,\n channels.app_key,\n channels.organization_id,\n channels.message_type_id,\n channels.message_type,\n channels.review_source_type_id,\n channels.review_source_type_name,\n CASE channels.email_submission_type_id\n WHEN 0 THEN 'in_mail_form'\n WHEN 1 THEN 'formless'\n WHEN 2 THEN 'media_queries' END form_type,\n channels.email_address,\n channels.user_name,\n channels.message_rank_per_order,\n channels.email_rank_per_order,\n channels.sms_rank_per_order,\n DATEDIFF(channels.delivered_at, platform_order.order_at) AS from_order_to_review_request_day_cnt,\n DATEDIFF(channels.first_review_created_at, channels.delivered_at) AS from_review_request_to_review_day_cnt,\n order_metrics.product_cnt,\n channels.is_reviewed,\n channels.review_cnt,\n channels.image_cnt,\n channels.video_cnt,\n channels.review_with_image_cnt,\n channels.review_with_video_cnt,\n platform_order.order_at AS order_created_at,\n channels.first_review_created_at,\n channels.delivered_at,\n channels.delivered_date,\n channels.latest_updated_at,\n channels.latest_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM channels_union AS channels\nLEFT JOIN import_platform_order AS platform_order\n ON channels.order_id = platform_order.order_id\nLEFT JOIN import_platform_order_metrics AS order_metrics\n ON channels.order_id = order_metrics.order_id\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_review_request_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__review_request_token": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__review_request_token", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.sql", "unique_id": "model.yoda.analytics___ugc__review_request_token", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request_token", "analytics___ugc__review_request_token"], "alias": "analytics___ugc__review_request_token", "checksum": {"name": "sha256", "checksum": "210f5360985615fa78d9f09f12cd014a49314931974557479f97732696a83b8f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["channel_name", "channel_message_id_first_3_digits", "review_request_token_id"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["channel_name", "channel_message_id_first_3_digits"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Incremental table of review request tokens. PK and granularity: channel_name | review_request_token_id", "columns": {"channel_name": {"name": "channel_name", "description": "channel name: review_request_email/review_request_sms/review_request_flow - PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_request_token_id": {"name": "review_request_token_id", "description": "review request token id - PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel_message_id": {"name": "channel_message_id", "description": "channel message id: caller id of the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel_message_id_first_3_digits": {"name": "channel_message_id_first_3_digits", "description": "channel message id first 3 digits - technical column for performance improvement", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "token": {"name": "token", "description": "token", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_review_request_token_id": {"name": "main_review_request_token_id", "description": "main review request token id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel_type": {"name": "channel_type", "description": "channel type: Email/SMS/Flow", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "repliable_type": {"name": "repliable_type", "description": "repliable type: Order/OrderLine", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_line_id": {"name": "order_line_id", "description": "order line id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_id": {"name": "review_source_type_id", "description": "review source type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_name": {"name": "review_source_type_name", "description": "review source type name. e.g., reminder, site_reminder, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_id": {"name": "review_id", "description": "review id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "token creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "token creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "token update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "token update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["channel_name", "channel_message_id_first_3_digits", "review_request_token_id"], "incremental_strategy": "merge", "partition_by": ["channel_name", "channel_message_id_first_3_digits"]}, "created_at": 1700082663.5969238, "relation_name": "dev_dkruh1.analytics___ugc__review_request_token", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key = ['channel_name','channel_message_id_first_3_digits','review_request_token_id'],\n incremental_strategy = 'merge',\n partition_by = ['channel_name','channel_message_id_first_3_digits'],\n post_hook = dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.ugc_review_request_token ZORDER BY channel_message_id, review_request_token_id;')\n )\n}}\n\n-- Import --\n\nWITH import_ugc_review_request_sub_tokens AS (\nSELECT *\nFROM {{ ref('ugc_stg__review_request_tokens') }}\nWHERE LOWER(caller_type) = 'reviewrequesttoken'\n{{incremental_condition(data_type='DATE',destination_condition_column='updated_date',query_condition_column='updated_at',subtract=7,sql_condition_key_word='AND')}}\n),\n\nimport_ugc_review_request_main_tokens AS (\nSELECT *\nFROM {{ ref('ugc_stg__review_request_tokens') }} AS main\nWHERE LOWER(caller_type) IN ('reviewrequestemail','reviewrequestsms','reviewrequestflow')\nAND DATE(updated_at) <= DATE_SUB(CURRENT_DATE,1)\n{% if is_incremental() -%}\nAND (DATE(updated_at) > (SELECT DATE_SUB(MAX(updated_date),7) FROM {{this}})\n OR EXISTS (SELECT * FROM import_ugc_review_request_sub_tokens AS sub WHERE main.id = sub.caller_id)\n )\n{% endif %}\n),\n\nimport_ugc_review_source_types AS (\nSELECT *\nFROM {{ ref('ugc_stg__review_source_types') }}\n),\n\nimport_platform_order_lines AS (\nSELECT *\nFROM {{ ref('analytics___platform_stg__order_line') }}\n),\n\n-- Logic --\n\nsub_to_main_token AS (\nSELECT\n sub.id AS review_request_token_id,\n sub.caller_id AS main_review_request_token_id,\n main.token,\n main.caller_type,\n main.caller_id,\n sub.repliable_type,\n IF(LOWER(sub.repliable_type) = 'order',sub.repliable_identifier,NULL) AS order_id,\n IF(LOWER(sub.repliable_type) = 'orderline',sub.repliable_identifier,NULL) AS order_line_id,\n sub.review_source_type_id,\n sub.review_id,\n sub.created_at,\n DATE(sub.created_at) AS created_date,\n sub.updated_at,\n DATE(sub.updated_at) AS updated_date\nFROM import_ugc_review_request_sub_tokens AS sub\nINNER JOIN import_ugc_review_request_main_tokens AS main\n ON sub.caller_id = main.id\n),\n\nmain_token AS (\nSELECT\n id AS review_request_token_id,\n caller_id AS main_review_request_token_id,\n token,\n caller_type,\n caller_id,\n repliable_type,\n IF(LOWER(repliable_type) = 'order',repliable_identifier,NULL) AS order_id,\n IF(LOWER(repliable_type) = 'orderline',repliable_identifier,NULL) AS order_line_id,\n review_source_type_id,\n review_id,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_review_request_main_tokens\n),\n\ntoken_union AS (\nSELECT\n review_request_token_id,\n main_review_request_token_id,\n token,\n caller_type,\n caller_id,\n repliable_type,\n order_id,\n order_line_id,\n review_source_type_id,\n review_id,\n created_at,\n created_date,\n updated_at,\n updated_date\nFROM sub_to_main_token\nUNION ALL\nSELECT\n review_request_token_id,\n main_review_request_token_id,\n token,\n caller_type,\n caller_id,\n repliable_type,\n order_id,\n order_line_id,\n review_source_type_id,\n review_id,\n created_at,\n created_date,\n updated_at,\n updated_date\nFROM main_token\n),\n\ntype_name_of_review_source AS (\nSELECT\n token.review_request_token_id,\n token.main_review_request_token_id,\n token.token,\n token.caller_id AS channel_message_id,\n CASE LOWER(token.caller_type)\n WHEN 'reviewrequestemail' THEN 'review_request_email'\n WHEN 'reviewrequestsms' THEN 'review_request_sms'\n WHEN 'reviewrequestflow' THEN 'review_request_flow' END AS channel_name,\n CASE LOWER(token.caller_type)\n WHEN 'reviewrequestemail' THEN 'Email'\n WHEN 'reviewrequestsms' THEN 'SMS'\n WHEN 'reviewrequestflow' THEN 'Flow' END AS channel_type,\n token.repliable_type,\n token.order_id,\n token.order_line_id,\n token.review_source_type_id,\n source_type.name AS review_source_type_name,\n token.review_id,\n token.created_at,\n token.created_date,\n token.updated_at,\n token.updated_date\nFROM token_union AS token\nLEFT JOIN import_ugc_review_source_types AS source_type\n ON token.review_source_type_id = source_type.id\n),\n\nugc_review_request_token_res AS (\nSELECT\n source.channel_name,\n source.review_request_token_id,\n source.channel_message_id,\n SMALLINT(LEFT(source.channel_message_id,3)) AS channel_message_id_first_3_digits,\n source.token,\n source.main_review_request_token_id,\n source.channel_type,\n source.repliable_type,\n NVL(source.order_id,line.order_id) AS order_id, \n source.order_line_id,\n source.review_source_type_id,\n source.review_source_type_name,\n source.review_id,\n source.created_at,\n source.created_date,\n source.updated_at,\n source.updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM type_name_of_review_source AS source\nLEFT JOIN import_platform_order_lines AS line\n ON source.order_id IS NULL\n AND source.order_line_id = line.order_line_id\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_review_request_token_res", "language": "sql", "refs": [{"name": "ugc_stg__review_request_tokens", "package": null, "version": null}, {"name": "ugc_stg__review_request_tokens", "package": null, "version": null}, {"name": "ugc_stg__review_source_types", "package": null, "version": null}, {"name": "analytics___platform_stg__order_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__review_request_tokens", "model.yoda.ugc_stg__review_request_tokens", "model.yoda.ugc_stg__review_source_types", "model.yoda.analytics___platform_stg__order_line"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_review_request_sub_tokens AS (\nSELECT *\nFROM dev_dkruh1.ugc_stg__review_request_tokens\nWHERE LOWER(caller_type) = 'reviewrequesttoken'\nAND DATE(updated_at) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_review_request_main_tokens AS (\nSELECT *\nFROM dev_dkruh1.ugc_stg__review_request_tokens AS main\nWHERE LOWER(caller_type) IN ('reviewrequestemail','reviewrequestsms','reviewrequestflow')\nAND DATE(updated_at) <= DATE_SUB(CURRENT_DATE,1)\n\n),\n\nimport_ugc_review_source_types AS (\nSELECT *\nFROM dev_dkruh1.ugc_stg__review_source_types\n),\n\nimport_platform_order_lines AS (\nSELECT *\nFROM dev_dkruh1.analytics___platform_stg__order_line\n),\n\n-- Logic --\n\nsub_to_main_token AS (\nSELECT\n sub.id AS review_request_token_id,\n sub.caller_id AS main_review_request_token_id,\n main.token,\n main.caller_type,\n main.caller_id,\n sub.repliable_type,\n IF(LOWER(sub.repliable_type) = 'order',sub.repliable_identifier,NULL) AS order_id,\n IF(LOWER(sub.repliable_type) = 'orderline',sub.repliable_identifier,NULL) AS order_line_id,\n sub.review_source_type_id,\n sub.review_id,\n sub.created_at,\n DATE(sub.created_at) AS created_date,\n sub.updated_at,\n DATE(sub.updated_at) AS updated_date\nFROM import_ugc_review_request_sub_tokens AS sub\nINNER JOIN import_ugc_review_request_main_tokens AS main\n ON sub.caller_id = main.id\n),\n\nmain_token AS (\nSELECT\n id AS review_request_token_id,\n caller_id AS main_review_request_token_id,\n token,\n caller_type,\n caller_id,\n repliable_type,\n IF(LOWER(repliable_type) = 'order',repliable_identifier,NULL) AS order_id,\n IF(LOWER(repliable_type) = 'orderline',repliable_identifier,NULL) AS order_line_id,\n review_source_type_id,\n review_id,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_review_request_main_tokens\n),\n\ntoken_union AS (\nSELECT\n review_request_token_id,\n main_review_request_token_id,\n token,\n caller_type,\n caller_id,\n repliable_type,\n order_id,\n order_line_id,\n review_source_type_id,\n review_id,\n created_at,\n created_date,\n updated_at,\n updated_date\nFROM sub_to_main_token\nUNION ALL\nSELECT\n review_request_token_id,\n main_review_request_token_id,\n token,\n caller_type,\n caller_id,\n repliable_type,\n order_id,\n order_line_id,\n review_source_type_id,\n review_id,\n created_at,\n created_date,\n updated_at,\n updated_date\nFROM main_token\n),\n\ntype_name_of_review_source AS (\nSELECT\n token.review_request_token_id,\n token.main_review_request_token_id,\n token.token,\n token.caller_id AS channel_message_id,\n CASE LOWER(token.caller_type)\n WHEN 'reviewrequestemail' THEN 'review_request_email'\n WHEN 'reviewrequestsms' THEN 'review_request_sms'\n WHEN 'reviewrequestflow' THEN 'review_request_flow' END AS channel_name,\n CASE LOWER(token.caller_type)\n WHEN 'reviewrequestemail' THEN 'Email'\n WHEN 'reviewrequestsms' THEN 'SMS'\n WHEN 'reviewrequestflow' THEN 'Flow' END AS channel_type,\n token.repliable_type,\n token.order_id,\n token.order_line_id,\n token.review_source_type_id,\n source_type.name AS review_source_type_name,\n token.review_id,\n token.created_at,\n token.created_date,\n token.updated_at,\n token.updated_date\nFROM token_union AS token\nLEFT JOIN import_ugc_review_source_types AS source_type\n ON token.review_source_type_id = source_type.id\n),\n\nugc_review_request_token_res AS (\nSELECT\n source.channel_name,\n source.review_request_token_id,\n source.channel_message_id,\n SMALLINT(LEFT(source.channel_message_id,3)) AS channel_message_id_first_3_digits,\n source.token,\n source.main_review_request_token_id,\n source.channel_type,\n source.repliable_type,\n NVL(source.order_id,line.order_id) AS order_id, \n source.order_line_id,\n source.review_source_type_id,\n source.review_source_type_name,\n source.review_id,\n source.created_at,\n source.created_date,\n source.updated_at,\n source.updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM type_name_of_review_source AS source\nLEFT JOIN import_platform_order_lines AS line\n ON source.order_id IS NULL\n AND source.order_line_id = line.order_line_id\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_review_request_token_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__review_request_token_message": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__review_request_token_message", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.sql", "unique_id": "model.yoda.analytics___ugc__review_request_token_message", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request_token_message", "analytics___ugc__review_request_token_message"], "alias": "analytics___ugc__review_request_token_message", "checksum": {"name": "sha256", "checksum": "7319dc80cddcb3a6e4d12785d11b831cc43a9e460a29ed5448401f03e498e40b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["channel_name", "channel_message_id_first_3_digits", "channel_message_id", "review_request_token_id"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["channel_name", "channel_message_id_first_3_digits"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Incremental table of review request token's messages. PK and granularity: channel_name | review_request_token_id | channel_message_id", "columns": {"channel_name": {"name": "channel_name", "description": "channel_name: review_request_email / review_request_sms - PK 1/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_request_token_id": {"name": "review_request_token_id", "description": "review request token id - PK 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel_message_id_first_3_digits": {"name": "channel_message_id_first_3_digits", "description": "channel message id first 3 digits - technical column for performance improvement", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "channel_message_id": {"name": "channel_message_id", "description": "channel message id: caller id of the channel - PK 3/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "token": {"name": "token", "description": "token", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_review_request_token_id": {"name": "main_review_request_token_id", "description": "main review request token id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel_type": {"name": "channel_type", "description": "channel type: Email/SMS/Flow", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "caller_id": {"name": "caller_id", "description": "message caller id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_type": {"name": "caller_type", "description": "message caller type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_address": {"name": "email_address", "description": "email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "user name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_type_id": {"name": "message_type_id", "description": "message type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_type": {"name": "message_type", "description": "message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_submission_type_id": {"name": "email_submission_type_id", "description": "email submission type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_status_type_id": {"name": "sms_status_type_id", "description": "sms status type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "products_app_id": {"name": "products_app_id", "description": "products app id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "repliable_type": {"name": "repliable_type", "description": "repliable type: Order/OrderLine", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_line_id": {"name": "order_line_id", "description": "order line id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_id": {"name": "review_source_type_id", "description": "review source type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_name": {"name": "review_source_type_name", "description": "review source type name. e.g., reminder, site_reminder, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_id": {"name": "review_id", "description": "review id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "token_created_at": {"name": "token_created_at", "description": "token creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "token_created_date": {"name": "token_created_date", "description": "token creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "token_updated_at": {"name": "token_updated_at", "description": "token update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "token_updated_date": {"name": "token_updated_date", "description": "token update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "delivered_at": {"name": "delivered_at", "description": "message delivered timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delivered_date": {"name": "delivered_date", "description": "message delivered date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "message creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "message creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "message creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "message creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "latest_updated_at": {"name": "latest_updated_at", "description": "The latest updated_at value among the source models' updated_at columns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "latest_updated_date": {"name": "latest_updated_date", "description": "The latest updated_date value among the source models' updated_at columns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["channel_name", "channel_message_id_first_3_digits", "channel_message_id", "review_request_token_id"], "incremental_strategy": "merge", "partition_by": ["channel_name", "channel_message_id_first_3_digits"]}, "created_at": 1700082663.652229, "relation_name": "dev_dkruh1.analytics___ugc__review_request_token_message", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key = ['channel_name','channel_message_id_first_3_digits','channel_message_id','review_request_token_id'],\n incremental_strategy = 'merge',\n partition_by = ['channel_name','channel_message_id_first_3_digits'],\n post_hook = dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.ugc_review_request_token_message ZORDER BY channel_message_id, review_request_token_id;')\n )\n}}\n\n-- Import --\n\nWITH import_ugc_review_request_token AS (\nSELECT * FROM {{ ref('analytics___ugc__review_request_token') }}\n),\n\nimport_ugc_review_request_email AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__review_request_email') }}\n),\n\nimport_ugc_review_request_sms AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__review_request_sms') }}\n),\n\nimport_ugc_email_types AS (\nSELECT * FROM {{ ref('ugc_stg__email_types') }}\n),\n\n-- Logic --\n\n{% if is_incremental() -%}\nupdated_messages AS (\nSELECT DISTINCT \n channel_name,\n channel_message_id_first_3_digits,\n channel_message_id\nFROM import_ugc_review_request_token\n{{incremental_condition(data_type='DATE',destination_condition_column='token_updated_date',query_condition_column='updated_date',subtract=7)}}\nUNION\nSELECT \n 'review_request_email' AS channel_name,\n channel_message_id_first_3_digits,\n channel_message_id\nFROM import_ugc_review_request_email\n{{incremental_condition(data_type='DATE',destination_condition_column='updated_date',query_condition_column='updated_at',subtract=7)}}\nUNION\nSELECT\n 'review_request_sms' AS channel_name,\n channel_message_id_first_3_digits,\n channel_message_id\nFROM import_ugc_review_request_sms\n{{incremental_condition(data_type='DATE',destination_condition_column='updated_date',query_condition_column='updated_at',subtract=7)}}\n),\n{%- endif %}\n\ntokens_and_messages_merging AS (\nSELECT\n token.channel_name,\n token.review_request_token_id,\n token.channel_message_id_first_3_digits,\n token.channel_message_id,\n token.token,\n token.main_review_request_token_id,\n token.channel_type,\n NVL(email.caller_id, sms.caller_id) AS caller_id,\n NVL(email.caller_type, sms.caller_type) AS caller_type,\n NVL(email.app_key, sms.app_key) AS app_key,\n NVL(email.email_address, sms.email_address) AS email_address,\n NVL(email.user_name, sms.user_name) AS user_name,\n NVL(email.email_type_id, sms.sms_type_id) AS message_type_id,\n email.email_submission_type_id,\n email.products_app_id,\n sms.sms_status_type_id,\n token.repliable_type,\n token.order_id,\n token.order_line_id,\n token.review_source_type_id,\n token.review_source_type_name,\n token.review_id,\n token.created_at AS token_created_at,\n token.created_date AS token_created_date,\n token.updated_at AS token_updated_at,\n token.updated_date AS token_updated_date,\n NVL(email.delivered_at, sms.delivered_at) AS delivered_at,\n NVL(email.delivered_date, sms.delivered_date) AS delivered_date,\n NVL(email.created_at, sms.created_at) AS created_at,\n NVL(email.created_date, sms.created_date) AS created_date,\n NVL(email.updated_at, sms.updated_at) AS updated_at,\n NVL(email.updated_date, sms.updated_date) AS updated_date\nFROM import_ugc_review_request_token AS token\n{% if is_incremental() -%}\nINNER JOIN updated_messages\n ON token.channel_name = updated_messages.channel_name\n AND token.channel_message_id_first_3_digits = updated_messages.channel_message_id_first_3_digits\n AND token.channel_message_id = updated_messages.channel_message_id\n{%- endif %}\nLEFT JOIN import_ugc_review_request_email AS email\n ON token.channel_name = 'review_request_email'\n AND token.channel_message_id_first_3_digits = email.channel_message_id_first_3_digits\n AND token.channel_message_id = email.channel_message_id\nLEFT JOIN import_ugc_review_request_sms AS sms\n ON token.channel_name = 'review_request_sms'\n AND token.channel_message_id_first_3_digits = sms.channel_message_id_first_3_digits\n AND token.channel_message_id = sms.channel_message_id\nWHERE NVL(email.channel_message_id,sms.channel_message_id) IS NOT NULL\n),\n\nugc_review_request_token_message_res AS (\nSELECT\n merging.channel_name,\n merging.review_request_token_id,\n merging.channel_message_id_first_3_digits,\n merging.channel_message_id,\n merging.token,\n merging.main_review_request_token_id,\n merging.channel_type,\n merging.caller_id,\n merging.caller_type,\n merging.app_key,\n merging.email_address,\n merging.user_name,\n merging.message_type_id,\n email_type.name AS message_type,\n merging.email_submission_type_id,\n merging.sms_status_type_id,\n merging.products_app_id,\n merging.repliable_type,\n merging.order_id,\n merging.order_line_id,\n merging.review_source_type_id,\n merging.review_source_type_name,\n merging.review_id,\n merging.token_created_at,\n merging.token_created_date,\n merging.token_updated_at,\n merging.token_updated_date,\n merging.delivered_at,\n merging.delivered_date,\n merging.created_at,\n merging.created_date,\n merging.updated_at,\n merging.updated_date,\n GREATEST(merging.token_updated_at, merging.updated_at) AS latest_updated_at,\n GREATEST(merging.token_updated_date, merging.updated_date) AS latest_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM tokens_and_messages_merging AS merging\nLEFT JOIN import_ugc_email_types AS email_type\n ON merging.message_type_id = email_type.id\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_review_request_token_message_res", "language": "sql", "refs": [{"name": "analytics___ugc__review_request_token", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_request_email", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_request_sms", "package": null, "version": null}, {"name": "ugc_stg__email_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__review_request_token", "model.yoda.analytics___ugc_stg__review_request_email", "model.yoda.analytics___ugc_stg__review_request_sms", "model.yoda.ugc_stg__email_types"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_review_request_token AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__review_request_token\n),\n\nimport_ugc_review_request_email AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__review_request_email\n),\n\nimport_ugc_review_request_sms AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__review_request_sms\n),\n\nimport_ugc_email_types AS (\nSELECT * FROM dev_dkruh1.ugc_stg__email_types\n),\n\n-- Logic --\n\n\n\ntokens_and_messages_merging AS (\nSELECT\n token.channel_name,\n token.review_request_token_id,\n token.channel_message_id_first_3_digits,\n token.channel_message_id,\n token.token,\n token.main_review_request_token_id,\n token.channel_type,\n NVL(email.caller_id, sms.caller_id) AS caller_id,\n NVL(email.caller_type, sms.caller_type) AS caller_type,\n NVL(email.app_key, sms.app_key) AS app_key,\n NVL(email.email_address, sms.email_address) AS email_address,\n NVL(email.user_name, sms.user_name) AS user_name,\n NVL(email.email_type_id, sms.sms_type_id) AS message_type_id,\n email.email_submission_type_id,\n email.products_app_id,\n sms.sms_status_type_id,\n token.repliable_type,\n token.order_id,\n token.order_line_id,\n token.review_source_type_id,\n token.review_source_type_name,\n token.review_id,\n token.created_at AS token_created_at,\n token.created_date AS token_created_date,\n token.updated_at AS token_updated_at,\n token.updated_date AS token_updated_date,\n NVL(email.delivered_at, sms.delivered_at) AS delivered_at,\n NVL(email.delivered_date, sms.delivered_date) AS delivered_date,\n NVL(email.created_at, sms.created_at) AS created_at,\n NVL(email.created_date, sms.created_date) AS created_date,\n NVL(email.updated_at, sms.updated_at) AS updated_at,\n NVL(email.updated_date, sms.updated_date) AS updated_date\nFROM import_ugc_review_request_token AS token\n\nLEFT JOIN import_ugc_review_request_email AS email\n ON token.channel_name = 'review_request_email'\n AND token.channel_message_id_first_3_digits = email.channel_message_id_first_3_digits\n AND token.channel_message_id = email.channel_message_id\nLEFT JOIN import_ugc_review_request_sms AS sms\n ON token.channel_name = 'review_request_sms'\n AND token.channel_message_id_first_3_digits = sms.channel_message_id_first_3_digits\n AND token.channel_message_id = sms.channel_message_id\nWHERE NVL(email.channel_message_id,sms.channel_message_id) IS NOT NULL\n),\n\nugc_review_request_token_message_res AS (\nSELECT\n merging.channel_name,\n merging.review_request_token_id,\n merging.channel_message_id_first_3_digits,\n merging.channel_message_id,\n merging.token,\n merging.main_review_request_token_id,\n merging.channel_type,\n merging.caller_id,\n merging.caller_type,\n merging.app_key,\n merging.email_address,\n merging.user_name,\n merging.message_type_id,\n email_type.name AS message_type,\n merging.email_submission_type_id,\n merging.sms_status_type_id,\n merging.products_app_id,\n merging.repliable_type,\n merging.order_id,\n merging.order_line_id,\n merging.review_source_type_id,\n merging.review_source_type_name,\n merging.review_id,\n merging.token_created_at,\n merging.token_created_date,\n merging.token_updated_at,\n merging.token_updated_date,\n merging.delivered_at,\n merging.delivered_date,\n merging.created_at,\n merging.created_date,\n merging.updated_at,\n merging.updated_date,\n GREATEST(merging.token_updated_at, merging.updated_at) AS latest_updated_at,\n GREATEST(merging.token_updated_date, merging.updated_date) AS latest_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM tokens_and_messages_merging AS merging\nLEFT JOIN import_ugc_email_types AS email_type\n ON merging.message_type_id = email_type.id\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_review_request_token_message_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__store": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__store", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.sql", "unique_id": "model.yoda.analytics___ugc__store", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store", "analytics___ugc__store"], "alias": "analytics___ugc__store", "checksum": {"name": "sha256", "checksum": "1cccdc63e78f0e3903fec363f7a13d784954bd1b10bdf6734ab16e33bfa91659"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled Table of review stores. Includes only stores that exists in store_installation_over_time | PK and granularity: app_key", "columns": {"store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "FK: analytics___platform__organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_name": {"name": "store_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active": {"name": "is_active", "description": "Indicates if the store is active (unlocked)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "platform_group": {"name": "platform_group", "description": "bigcommerce | general | go_daddy_commerce | magento | magento2 | prestashop | shopify | woocommerce | other", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_id": {"name": "sf_account_id", "description": "FK: account_id | analytics___salesforce__account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_cs_segment": {"name": "sf_account_cs_segment", "description": "cs_segment based on sf_account_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_enablement_date": {"name": "reviews_enablement_date", "description": "First date Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "reviews_enablement_month": {"name": "reviews_enablement_month", "description": "month of reviews_enablement_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_orders_last_365d": {"name": "is_orders_last_365d", "description": "order was preformed in the last 365 days indicator 1/0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "orders_last_365d_cnt": {"name": "orders_last_365d_cnt", "description": "order count in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "latest_order_date": {"name": "latest_order_date", "description": "latest order date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "store_created_at": {"name": "store_created_at", "description": "store created timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_created_date": {"name": "store_created_date", "description": "store created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082663.709346, "relation_name": "dev_dkruh1.analytics___ugc__store", "raw_code": "-- Import --\n\nWITH import_platform_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_sf_account AS (\nSELECT * FROM {{ ref('analytics___salesforce__account') }}\n),\n\nimport_store_order AS (\nSELECT * FROM {{ ref('analytics___platform__store_order_daily') }}\n),\n\n-- Logic --\n\nstore_orders AS (\nSELECT\n app_key,\n MAX(order_date) AS latest_order_date,\n SUM(IF(order_date BETWEEN DATE_SUB(CURRENT_DATE, 365) AND DATE_SUB(CURRENT_DATE, 1),orders_cnt,0)) AS orders_last_365d_cnt\nFROM import_store_order\nGROUP BY 1\n),\n\nugc_store_res AS (\nSELECT\n store.store_id,\n store.app_key,\n store.organization_id,\n store.organization_key,\n store.store_api_name AS store_domain,\n store.store_name,\n store.platform_name,\n store.is_active,\n CASE WHEN LOWER(store.platform_name) IN ('bigcommerce','general','go_daddy_commerce','magento','magento2','prestashop','shopify','woocommerce') \n THEN LOWER(store.platform_name) ELSE 'other' END AS platform_group,\n sf_account.account_id AS sf_account_id,\n sf_account.cs_segment AS sf_account_cs_segment,\n store.reviews_enablement_date,\n TRUNC(store.reviews_enablement_date,'MONTH') AS reviews_enablement_month,\n SMALLINT(IF(IFNULL(orders.orders_last_365d_cnt,0) = 0,0,1)) AS is_orders_last_365d,\n IFNULL(orders.orders_last_365d_cnt,0) AS orders_last_365d_cnt,\n orders.latest_order_date,\n store.store_created_at AS store_created_at,\n DATE(store.store_created_at) AS store_created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_platform_store AS store\nLEFT JOIN import_sf_account AS sf_account\n ON sf_account.organization_id = store.organization_id\n AND sf_account.is_deleted_account = 0\n AND store.organization_id IS NOT NULL\nLEFT JOIN store_orders AS orders\n ON store.app_key = orders.app_key\nWHERE store.is_test = 0\n)\n\nSELECT *\nFROM ugc_store_res", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___platform__store_order_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform__store", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___platform__store_order_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_sf_account AS (\nSELECT * FROM dev_dkruh1.analytics___salesforce__account\n),\n\nimport_store_order AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_order_daily\n),\n\n-- Logic --\n\nstore_orders AS (\nSELECT\n app_key,\n MAX(order_date) AS latest_order_date,\n SUM(IF(order_date BETWEEN DATE_SUB(CURRENT_DATE, 365) AND DATE_SUB(CURRENT_DATE, 1),orders_cnt,0)) AS orders_last_365d_cnt\nFROM import_store_order\nGROUP BY 1\n),\n\nugc_store_res AS (\nSELECT\n store.store_id,\n store.app_key,\n store.organization_id,\n store.organization_key,\n store.store_api_name AS store_domain,\n store.store_name,\n store.platform_name,\n store.is_active,\n CASE WHEN LOWER(store.platform_name) IN ('bigcommerce','general','go_daddy_commerce','magento','magento2','prestashop','shopify','woocommerce') \n THEN LOWER(store.platform_name) ELSE 'other' END AS platform_group,\n sf_account.account_id AS sf_account_id,\n sf_account.cs_segment AS sf_account_cs_segment,\n store.reviews_enablement_date,\n TRUNC(store.reviews_enablement_date,'MONTH') AS reviews_enablement_month,\n SMALLINT(IF(IFNULL(orders.orders_last_365d_cnt,0) = 0,0,1)) AS is_orders_last_365d,\n IFNULL(orders.orders_last_365d_cnt,0) AS orders_last_365d_cnt,\n orders.latest_order_date,\n store.store_created_at AS store_created_at,\n DATE(store.store_created_at) AS store_created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_platform_store AS store\nLEFT JOIN import_sf_account AS sf_account\n ON sf_account.organization_id = store.organization_id\n AND sf_account.is_deleted_account = 0\n AND store.organization_id IS NOT NULL\nLEFT JOIN store_orders AS orders\n ON store.app_key = orders.app_key\nWHERE store.is_test = 0\n)\n\nSELECT *\nFROM ugc_store_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__store_enablement_to_pixel_event_cohort", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.sql", "unique_id": "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_enablement_to_pixel_event_cohort", "analytics___ugc__store_enablement_to_pixel_event_cohort"], "alias": "analytics___ugc__store_enablement_to_pixel_event_cohort", "checksum": {"name": "sha256", "checksum": "acdd721f2a6674693b31e5fc8b75a636cb7a7e21fd6a8b1fb10f5c2f24215ba8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Cohort from UGC enablement month (last 18 months) to V3 pixel event loading, drill-down by Platform, Plan, and Widget Element.\ngranularity: app_key, widget_element, pixel_event_month", "columns": {"app_key": {"name": "app_key", "description": "Yotpo store's unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_enablement_month": {"name": "reviews_enablement_month", "description": "The first month when Reviews was enabled, calculated by taking the creation date of feature_id = 9 (MAP) for each store (last 18 months)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "enablement_month_plan": {"name": "enablement_month_plan", "description": "UGC package during the reviews enablement month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_group": {"name": "platform_group", "description": "Store platform group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_element_v3": {"name": "widget_element_v3", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pixel_event_v3_month": {"name": "pixel_event_v3_month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "months_between_enablement_to_pixel_event_v3": {"name": "months_between_enablement_to_pixel_event_v3", "description": "The difference in months between the reviews enablement month and the pixel event month (v3)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_pixel_event_v2": {"name": "is_pixel_event_v2", "description": "An indication of whether the store had any pixel event in v2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_churned": {"name": "is_churned", "description": "Indication of whether the store has been churned", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082663.757281, "relation_name": "dev_dkruh1.analytics___ugc__store_enablement_to_pixel_event_cohort", "raw_code": "-- Import --\n\nWITH import_ugc_store AS (\nSELECT * FROM {{ ref('analytics___ugc__store') }}\n),\n\nimport_store_pixel_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___platform__store_pixel_metrics_daily') }}\n),\n\nimport_organization_plan_monthly AS (\nSELECT * FROM {{ ref('analytics___platform__organization_plan_monthly') }} \n),\n\nimport_platform_store_plan_daily AS (\nSELECT * FROM {{ ref('analytics___platform__store_plan_daily') }}\n),\n\n-- Logic --\n\nstore_enablement_date AS (\nSELECT \n store.app_key,\n store.organization_key,\n store.reviews_enablement_month,\n store.platform_group,\n plan.closing_plan_group AS enablement_month_plan\nFROM import_ugc_store AS store\nJOIN import_organization_plan_monthly AS plan\nON store.organization_key = plan.organization_key \nAND store.reviews_enablement_month = plan.month\nAND plan.is_reviews = 1\nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),store.reviews_enablement_month) <= 18\n),\n\npixel_events_v3 AS (\nSELECT DISTINCT\n app_key,\n widget_element,\n TRUNC(date,'MONTH') AS pixel_month\nFROM import_store_pixel_metrics_daily\nWHERE LOWER(product_name) = 'ugc'\nAND widget_version_type = 3\nAND LOWER(metric) = 'count'\n),\n\npixel_events_v2 AS (\nSELECT DISTINCT\n app_key,\n TRUNC(date,'MONTH') AS pixel_month\nFROM import_store_pixel_metrics_daily\nWHERE LOWER(product_name) = 'ugc'\nAND widget_version_type = 2\nAND LOWER(metric) = 'count'\n),\n\nugc_first_plan_date AS(\nSELECT\n app_key,\n MIN(IF(plan_name ILIKE '%growth%', date, NULL)) AS first_subscription_growth_date,\n MIN(IF(plan_name ILIKE '%prime%', date, NULL)) AS first_subscription_prime_date,\n MIN(IF(plan_name ILIKE '%premium%', date, NULL)) AS first_subscription_premium_date,\n MIN(IF(plan_name ILIKE '%enterprise%', date, NULL)) AS first_subscription_enterprise_date,\n MIN(IF(plan_name ILIKE '%pro%', date, NULL)) AS first_subscription_pro_date,\n MIN(IF(plan_name ILIKE '%powerhouse%', date, NULL)) AS first_subscription_powerhouse_date\nFROM import_platform_store_plan_daily\nWHERE LOWER(product_family) = 'reviews'\nGROUP BY 1\n),\n\nchurn_date AS(\nSELECT\n plan.app_key,\n MIN(plan.date) AS churn_date\nFROM import_platform_store_plan_daily AS plan\nJOIN ugc_first_plan_date AS first_plan\nON plan.app_key = first_plan.app_key \nAND LEAST (first_plan.first_subscription_growth_date,first_plan.first_subscription_prime_date,first_plan.first_subscription_premium_date,first_plan.first_subscription_enterprise_date,first_plan.first_subscription_pro_date,first_plan.first_subscription_powerhouse_date) < plan.date\nWHERE LOWER(product_family) = 'reviews'\nAND plan.is_free = 1\nGROUP BY 1\n),\n\nenablement_to_pixel_v3_res AS (\nSELECT \n store.app_key,\n store.reviews_enablement_month,\n store.enablement_month_plan,\n store.platform_group,\n events_v3.widget_element AS widget_element_v3,\n events_v3.pixel_month AS pixel_event_v3_month,\n MONTHS_BETWEEN(events_v3.pixel_month,store.reviews_enablement_month) AS months_between_enablement_to_pixel_event_v3,\n SMALLINT(IF(events_v2.app_key IS NOT NULL,1,0)) AS is_pixel_event_v2,\n SMALLINT(IF(churn.churn_date IS NOT NULL,1,0)) AS is_churned\nFROM store_enablement_date AS store\nLEFT JOIN pixel_events_v3 AS events_v3\n ON store.app_key = events_v3.app_key \nLEFT JOIN pixel_events_v2 AS events_v2\n ON store.app_key = events_v2.app_key\nLEFT JOIN churn_date AS churn\n ON store.app_key = churn.app_key\nGROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9\n)\n\n-- Result --\n\nSELECT *\nFROM enablement_to_pixel_v3_res", "language": "sql", "refs": [{"name": "analytics___ugc__store", "package": null, "version": null}, {"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}, {"name": "analytics___platform__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_store AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store\n),\n\nimport_store_pixel_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_pixel_metrics_daily\n),\n\nimport_organization_plan_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_plan_monthly \n),\n\nimport_platform_store_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_plan_daily\n),\n\n-- Logic --\n\nstore_enablement_date AS (\nSELECT \n store.app_key,\n store.organization_key,\n store.reviews_enablement_month,\n store.platform_group,\n plan.closing_plan_group AS enablement_month_plan\nFROM import_ugc_store AS store\nJOIN import_organization_plan_monthly AS plan\nON store.organization_key = plan.organization_key \nAND store.reviews_enablement_month = plan.month\nAND plan.is_reviews = 1\nWHERE MONTHS_BETWEEN(TRUNC(CURRENT_DATE,'MONTH'),store.reviews_enablement_month) <= 18\n),\n\npixel_events_v3 AS (\nSELECT DISTINCT\n app_key,\n widget_element,\n TRUNC(date,'MONTH') AS pixel_month\nFROM import_store_pixel_metrics_daily\nWHERE LOWER(product_name) = 'ugc'\nAND widget_version_type = 3\nAND LOWER(metric) = 'count'\n),\n\npixel_events_v2 AS (\nSELECT DISTINCT\n app_key,\n TRUNC(date,'MONTH') AS pixel_month\nFROM import_store_pixel_metrics_daily\nWHERE LOWER(product_name) = 'ugc'\nAND widget_version_type = 2\nAND LOWER(metric) = 'count'\n),\n\nugc_first_plan_date AS(\nSELECT\n app_key,\n MIN(IF(plan_name ILIKE '%growth%', date, NULL)) AS first_subscription_growth_date,\n MIN(IF(plan_name ILIKE '%prime%', date, NULL)) AS first_subscription_prime_date,\n MIN(IF(plan_name ILIKE '%premium%', date, NULL)) AS first_subscription_premium_date,\n MIN(IF(plan_name ILIKE '%enterprise%', date, NULL)) AS first_subscription_enterprise_date,\n MIN(IF(plan_name ILIKE '%pro%', date, NULL)) AS first_subscription_pro_date,\n MIN(IF(plan_name ILIKE '%powerhouse%', date, NULL)) AS first_subscription_powerhouse_date\nFROM import_platform_store_plan_daily\nWHERE LOWER(product_family) = 'reviews'\nGROUP BY 1\n),\n\nchurn_date AS(\nSELECT\n plan.app_key,\n MIN(plan.date) AS churn_date\nFROM import_platform_store_plan_daily AS plan\nJOIN ugc_first_plan_date AS first_plan\nON plan.app_key = first_plan.app_key \nAND LEAST (first_plan.first_subscription_growth_date,first_plan.first_subscription_prime_date,first_plan.first_subscription_premium_date,first_plan.first_subscription_enterprise_date,first_plan.first_subscription_pro_date,first_plan.first_subscription_powerhouse_date) < plan.date\nWHERE LOWER(product_family) = 'reviews'\nAND plan.is_free = 1\nGROUP BY 1\n),\n\nenablement_to_pixel_v3_res AS (\nSELECT \n store.app_key,\n store.reviews_enablement_month,\n store.enablement_month_plan,\n store.platform_group,\n events_v3.widget_element AS widget_element_v3,\n events_v3.pixel_month AS pixel_event_v3_month,\n MONTHS_BETWEEN(events_v3.pixel_month,store.reviews_enablement_month) AS months_between_enablement_to_pixel_event_v3,\n SMALLINT(IF(events_v2.app_key IS NOT NULL,1,0)) AS is_pixel_event_v2,\n SMALLINT(IF(churn.churn_date IS NOT NULL,1,0)) AS is_churned\nFROM store_enablement_date AS store\nLEFT JOIN pixel_events_v3 AS events_v3\n ON store.app_key = events_v3.app_key \nLEFT JOIN pixel_events_v2 AS events_v2\n ON store.app_key = events_v2.app_key\nLEFT JOIN churn_date AS churn\n ON store.app_key = churn.app_key\nGROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9\n)\n\n-- Result --\n\nSELECT *\nFROM enablement_to_pixel_v3_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__store_feature_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__store_feature_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.sql", "unique_id": "model.yoda.analytics___ugc__store_feature_over_time", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_feature_over_time", "analytics___ugc__store_feature_over_time"], "alias": "analytics___ugc__store_feature_over_time", "checksum": {"name": "sha256", "checksum": "1def403e74ac4f0146ea4703acccaab7ced13b8f251a6835b6ec468297d2eebd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled over time table of owner_feature + reminders enablement updates\nGranularity: source_id,store_id,feature_id, from_date", "columns": {"source_id": {"name": "source_id", "description": "FK: reminder_id from ugc_stg__reminder OR owner_feature_id from platform_stg__owner_feature. according to source_id_type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_id_type": {"name": "source_id_type", "description": "type of source id reminder_id|owner_feature_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "FK: platform__store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feature_id": {"name": "feature_id", "description": "FK - platform_stg__features", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_name": {"name": "feature_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_date": {"name": "from_date", "description": "Enabelment status start date. USE date >= from_date AND date < to_date AVOID BETWEEN", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "Enabelment status end date. USE date >= from_date AND date < to_date AVOID BETWEEN", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_enabled": {"name": "is_enabled", "description": "feature_id <> 9: feature enabled flag\nfeature_id = 9: feature_id+store_id may have multiple lines with different is_enabled\nfor full enablement caculation refer to ugc_metric_daily", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_organization_owner": {"name": "is_organization_owner", "description": "is the owner of the feature is organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_user_owner": {"name": "is_user_owner", "description": "is the owner of the feature is user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_store_owner": {"name": "is_store_owner", "description": "is the owner_id of the feature is store_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "Enabelment status start timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082663.7973573, "relation_name": "dev_dkruh1.analytics___ugc__store_feature_over_time", "raw_code": "WITH import_owner_feature_enablement_event AS (\n\n SELECT * \n FROM {{ ref('analytics___ugc_stg__owner_feature_enablement_event') }}\n\n), import_feature AS (\n\n SELECT *\n FROM {{ ref('analytics___platform_stg__feature') }}\n\n), import_owner_feature AS (\n\n SELECT *\n FROM {{ ref('analytics___platform_stg__owner_feature') }}\n\n), import_store AS (\n\n SELECT *\n FROM {{ ref('analytics___platform__store') }}\n\n),import_reminder_snapshot AS (\n\n SELECT *\n FROM {{ ref('analytics___ugc_stg__reminder_snapshot') }}\n\n), \nmap_from_reminder AS (\n\n SELECT\n reminder_id AS source_id,\n 'reminder_id' AS source_id_type,\n store_id,\n 9 AS feature_id,\n DATE(updated_at) AS from_date,\n DATE(COALESCE(LEAD(updated_at) OVER(PARTITION BY reminder_id ORDER BY updated_at), '2999-12-30')) AS to_date,\n is_enabled,\n updated_at\n FROM import_reminder_snapshot\n\n),\nfeature_from_owner_feature AS (\n\n SELECT\n events.owner_feature_id AS source_id,\n 'owner_feature_id' AS source_id_type,\n events.owner_id AS store_id,\n events.feature_id,\n DATE(events.updated_at) AS from_date,\n DATE(COALESCE(LEAD(events.updated_at) OVER(PARTITION BY events.owner_feature_id ORDER BY events.updated_at), '2999-12-30')) AS to_date,\n IF(events.is_user_enabled = 1 AND events.is_disabled = 0,1,0) AS is_enabled,\n owner_feature.is_organization_owner,\n owner_feature.is_user_owner,\n owner_feature.is_store_owner,\n events.updated_at\n FROM import_owner_feature_enablement_event AS events\n INNER JOIN import_owner_feature AS owner_feature\n ON events.owner_feature_id = owner_feature.owner_feature_id\n WHERE events.feature_id <> 9\n\n),\nfeature_over_time_union AS (\n\n SELECT\n source_id,\n source_id_type,\n store_id,\n feature_id,\n from_date,\n to_date,\n is_enabled,\n is_organization_owner,\n is_user_owner,\n is_store_owner,\n updated_at\n FROM feature_from_owner_feature\n UNION ALL\n SELECT\n source_id,\n source_id_type,\n store_id,\n feature_id,\n from_date,\n to_date,\n is_enabled,\n 0 AS is_organization_owner,\n 0 AS is_user_owner,\n 1 AS is_store_owner,\n updated_at\n FROM map_from_reminder\n\n), \nstore_feature_over_time_res AS (\n\n SELECT\n feature_union.source_id,\n feature_union.source_id_type,\n feature_union.store_id,\n store.app_key,\n feature_union.feature_id,\n feature.feature_name,\n feature_union.from_date,\n feature_union.to_date,\n feature_union.is_enabled,\n feature_union.is_organization_owner,\n feature_union.is_user_owner,\n feature_union.is_store_owner,\n feature_union.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM feature_over_time_union AS feature_union\n INNER JOIN import_feature AS feature\n ON feature_union.feature_id = feature.feature_id\n LEFT JOIN import_store AS store\n ON feature_union.is_store_owner = 1\n AND feature_union.store_id = store.store_id\n WHERE feature_union.from_date <> feature_union.to_date\n)\n\nSELECT *\nFROM store_feature_over_time_res", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}, {"name": "analytics___platform_stg__feature", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___ugc_stg__reminder_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event", "model.yoda.analytics___platform_stg__feature", "model.yoda.analytics___platform_stg__owner_feature", "model.yoda.analytics___platform__store", "model.yoda.analytics___ugc_stg__reminder_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.sql", "compiled": true, "compiled_code": "WITH import_owner_feature_enablement_event AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event\n\n), import_feature AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___platform_stg__feature\n\n), import_owner_feature AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___platform_stg__owner_feature\n\n), import_store AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___platform__store\n\n),import_reminder_snapshot AS (\n\n SELECT *\n FROM dev_dkruh1.analytics___ugc_stg__reminder_snapshot\n\n), \nmap_from_reminder AS (\n\n SELECT\n reminder_id AS source_id,\n 'reminder_id' AS source_id_type,\n store_id,\n 9 AS feature_id,\n DATE(updated_at) AS from_date,\n DATE(COALESCE(LEAD(updated_at) OVER(PARTITION BY reminder_id ORDER BY updated_at), '2999-12-30')) AS to_date,\n is_enabled,\n updated_at\n FROM import_reminder_snapshot\n\n),\nfeature_from_owner_feature AS (\n\n SELECT\n events.owner_feature_id AS source_id,\n 'owner_feature_id' AS source_id_type,\n events.owner_id AS store_id,\n events.feature_id,\n DATE(events.updated_at) AS from_date,\n DATE(COALESCE(LEAD(events.updated_at) OVER(PARTITION BY events.owner_feature_id ORDER BY events.updated_at), '2999-12-30')) AS to_date,\n IF(events.is_user_enabled = 1 AND events.is_disabled = 0,1,0) AS is_enabled,\n owner_feature.is_organization_owner,\n owner_feature.is_user_owner,\n owner_feature.is_store_owner,\n events.updated_at\n FROM import_owner_feature_enablement_event AS events\n INNER JOIN import_owner_feature AS owner_feature\n ON events.owner_feature_id = owner_feature.owner_feature_id\n WHERE events.feature_id <> 9\n\n),\nfeature_over_time_union AS (\n\n SELECT\n source_id,\n source_id_type,\n store_id,\n feature_id,\n from_date,\n to_date,\n is_enabled,\n is_organization_owner,\n is_user_owner,\n is_store_owner,\n updated_at\n FROM feature_from_owner_feature\n UNION ALL\n SELECT\n source_id,\n source_id_type,\n store_id,\n feature_id,\n from_date,\n to_date,\n is_enabled,\n 0 AS is_organization_owner,\n 0 AS is_user_owner,\n 1 AS is_store_owner,\n updated_at\n FROM map_from_reminder\n\n), \nstore_feature_over_time_res AS (\n\n SELECT\n feature_union.source_id,\n feature_union.source_id_type,\n feature_union.store_id,\n store.app_key,\n feature_union.feature_id,\n feature.feature_name,\n feature_union.from_date,\n feature_union.to_date,\n feature_union.is_enabled,\n feature_union.is_organization_owner,\n feature_union.is_user_owner,\n feature_union.is_store_owner,\n feature_union.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM feature_over_time_union AS feature_union\n INNER JOIN import_feature AS feature\n ON feature_union.feature_id = feature.feature_id\n LEFT JOIN import_store AS store\n ON feature_union.is_store_owner = 1\n AND feature_union.store_id = store.store_id\n WHERE feature_union.from_date <> feature_union.to_date\n)\n\nSELECT *\nFROM store_feature_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__store_first_time_activity_metrics": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__store_first_time_activity_metrics", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.sql", "unique_id": "model.yoda.analytics___ugc__store_first_time_activity_metrics", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_first_time_activity_metrics", "analytics___ugc__store_first_time_activity_metrics"], "alias": "analytics___ugc__store_first_time_activity_metrics", "checksum": {"name": "sha256", "checksum": "2d34e18819f7333ef69c4d89fdcf474982fda2c62e208311070a1c007e244744"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "first time active and adoption metrics for UGC stores created sincs May 2022\nPK: app_key", "columns": {"app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 1/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "FK: analytics___platform__organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_group": {"name": "platform_group", "description": "store platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_enablement_date": {"name": "reviews_enablement_date", "description": "First date Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store (only from 2021)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "reviews_enablement_month": {"name": "reviews_enablement_month", "description": "First month Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store (only from 2021)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_growth_date": {"name": "first_subscription_growth_date", "description": "Earliest date when the store subscribed Growth packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_prime_date": {"name": "first_subscription_prime_date", "description": "Earliest date when the store subscribed Prime packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_premium_date": {"name": "first_subscription_premium_date", "description": "Earliest date when the store subscribed Premium packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_enterprise_date": {"name": "first_subscription_enterprise_date", "description": "Earliest date when the store subscribed Enterprise packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_pro_date": {"name": "first_subscription_pro_date", "description": "Earliest date when the store subscribed Pro packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_subscription_powerhouse_date": {"name": "first_subscription_powerhouse_date", "description": "Earliest date when the store subscribed Powerhouse packcage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_ht_self_service_date": {"name": "first_ht_self_service_date", "description": "First time ht self service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "churn_date": {"name": "churn_date", "description": "store churn date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_churned": {"name": "is_churned", "description": "Indication if the store has been churned", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "first_fb_syndication_enabled_date": {"name": "first_fb_syndication_enabled_date", "description": "Earliest date when feature_id = 380, is_user_enabled = true, and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_widgetv3_enabled_date": {"name": "first_widgetv3_enabled_date", "description": "Earliest date when feature_id = 388, is_user_enabled = true, and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_pla_enabled_date": {"name": "first_pla_enabled_date", "description": "Earliest date when feature_id = 84, is_user_enabled = true, and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_gsr_enabled_date": {"name": "first_gsr_enabled_date", "description": "Earliest date when feature_id = 89, is_user_enabled = true, and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_map_enabled_date": {"name": "first_map_enabled_date", "description": "Earliest date when feature_id = 9, is_user_enabled = true, and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_3_review_requests_date": {"name": "first_3_review_requests_date", "description": "The earliest date when the cumulative count of review requests reached or exceeded 3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_review_date": {"name": "first_review_date", "description": "The earliest date when a review was received for the store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_order_date": {"name": "first_order_date", "description": "The earliest date when an order was created for the store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_reviews_widget_loaded_date": {"name": "first_reviews_widget_loaded_date", "description": "Earliest date when is_reviews_widget_loaded = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_active_tier_0_date": {"name": "first_active_tier_0_date", "description": "Earliest date when is_active_tier_0 = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_active_tier_1_date": {"name": "first_active_tier_1_date", "description": "Earliest date when is_active_tier_1 = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_active_tier_2_date": {"name": "first_active_tier_2_date", "description": "Earliest date when is_active_tier_2 = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "first_active_tier_3_date": {"name": "first_active_tier_3_date", "description": "Earliest date when is_active_tier_3 = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082663.8865407, "relation_name": "dev_dkruh1.analytics___ugc__store_first_time_activity_metrics", "raw_code": "-- Import --\nWITH import_ugc_store_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___ugc__store_metrics_daily') }}\n), \n\nimport_ugc_store AS (\nSELECT * FROM {{ ref('analytics___ugc__store') }}\n),\n\nimport_platform_store_plan_daily AS (\nSELECT * FROM {{ ref('analytics___platform__store_plan_daily') }}\n),\n\nimport_platform_organization_product_segment_daily AS (\nSELECT * FROM {{ ref('analytics___platform__organization_product_segment_daily') }}\n),\n\n-- Logic --\n\nstore_metrics AS (\nSELECT\n metrics_daily.app_key,\n ugc_store.organization_key,\n ugc_store.platform_group,\n metrics_daily.reviews_enablement_date,\n metrics_daily.metric_date,\n metrics_daily.is_facebooksyndication_enabled,\n metrics_daily.is_widgetv3_enabled,\n metrics_daily.is_googlefeed_enabled,\n metrics_daily.is_googlesellerrating_enabled,\n metrics_daily.review_cnt,\n metrics_daily.order_cnt,\n metrics_daily.is_map_enabled,\n metrics_daily.is_reviews_widget_loaded,\n metrics_daily.is_active_tier_0,\n metrics_daily.is_active_tier_1,\n metrics_daily.is_active_tier_2,\n metrics_daily.is_active_tier_3,\n IF(SUM(metrics_daily.review_request_sent_cnt) OVER (PARTITION BY metrics_daily.app_key ORDER BY metrics_daily.metric_date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) >= 3, 1, 0) AS is_review_request_gte_3 \nFROM import_ugc_store_metrics_daily AS metrics_daily\nINNER JOIN import_ugc_store AS ugc_store\nON metrics_daily.app_key = ugc_store.app_key\nWHERE metrics_daily.reviews_enablement_date >= '2022-05-01'\n),\n\nstore_metrics_atvice_only AS (\nSELECT\n app_key,\n organization_key,\n platform_group,\n reviews_enablement_date,\n metric_date,\n is_facebooksyndication_enabled,\n is_widgetv3_enabled,\n is_googlefeed_enabled,\n is_googlesellerrating_enabled,\n review_cnt,\n order_cnt,\n is_map_enabled,\n is_reviews_widget_loaded,\n is_active_tier_0,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n is_review_request_gte_3\nFROM store_metrics\nWHERE (\n is_facebooksyndication_enabled IS NOT NULL\n OR is_widgetv3_enabled IS NOT NULL\n OR is_googlefeed_enabled IS NOT NULL\n OR is_googlesellerrating_enabled IS NOT NULL\n OR review_cnt IS NOT NULL\n OR order_cnt IS NOT NULL\n OR is_map_enabled IS NOT NULL\n OR is_reviews_widget_loaded IS NOT NULL\n OR is_active_tier_0 IS NOT NULL\n OR is_active_tier_1 IS NOT NULL\n OR is_active_tier_2 IS NOT NULL\n OR is_active_tier_3 IS NOT NULL\n OR is_review_request_gte_3 IS NOT NULL\n )\n),\n\nugc_first_plan_date AS(\nSELECT\n app_key,\n MIN(IF(plan_name ILIKE '%growth%', date, NULL)) AS first_subscription_growth_date,\n MIN(IF(plan_name ILIKE '%prime%', date, NULL)) AS first_subscription_prime_date,\n MIN(IF(plan_name ILIKE '%premium%', date, NULL)) AS first_subscription_premium_date,\n MIN(IF(plan_name ILIKE '%enterprise%', date, NULL)) AS first_subscription_enterprise_date,\n MIN(IF(plan_name ILIKE '%pro%', date, NULL)) AS first_subscription_pro_date,\n MIN(IF(plan_name ILIKE '%powerhouse%', date, NULL)) AS first_subscription_powerhouse_date\nFROM import_platform_store_plan_daily\nWHERE LOWER(product_family) = 'reviews'\nGROUP BY 1\n),\n\nchurn_date AS(\nSELECT\n plan.app_key,\n MIN(plan.date) AS churn_date\nFROM import_platform_store_plan_daily AS plan\nJOIN ugc_first_plan_date AS first_plan\nON plan.app_key = first_plan.app_key \nAND LEAST (first_plan.first_subscription_growth_date,first_plan.first_subscription_prime_date,first_plan.first_subscription_premium_date,first_plan.first_subscription_enterprise_date,first_plan.first_subscription_pro_date,first_plan.first_subscription_powerhouse_date) < plan.date\nWHERE LOWER(product_family) = 'reviews'\nAND plan.is_free = 1\nGROUP BY 1\n),\n\norg_first_ht_ss_date AS (\nSELECT\n organization_key,\n MIN(date) AS first_ht_self_service_date\nFROM import_platform_organization_product_segment_daily\nWHERE is_reviews = 1\nAND is_ht_self_service = 1\nGROUP BY 1\n),\n\nugc_store_first_time_activity_metrics_res AS (\nSELECT\n store_metrics.app_key, \n store_metrics.organization_key, \n store_metrics.platform_group,\n store_metrics.reviews_enablement_date,\n TRUNC(store_metrics.reviews_enablement_date,'MONTH') AS reviews_enablement_month,\n first_plan.first_subscription_growth_date,\n first_plan.first_subscription_prime_date,\n first_plan.first_subscription_premium_date,\n first_plan.first_subscription_enterprise_date,\n first_plan.first_subscription_pro_date,\n first_plan.first_subscription_powerhouse_date,\n ht_ss.first_ht_self_service_date,\n churn_date.churn_date,\n SMALLINT(IF(churn_date IS NOT NULL,1,0)) AS is_churned,\n MIN(IF(store_metrics.is_facebooksyndication_enabled = 1, store_metrics.metric_date,NULL)) AS first_fb_syndication_enabled_date,\n MIN(IF(store_metrics.is_widgetv3_enabled = 1, store_metrics.metric_date,NULL)) AS first_widgetv3_enabled_date,\n MIN(IF(store_metrics.is_googlefeed_enabled = 1, store_metrics.metric_date,NULL)) AS first_pla_enabled_date,\n MIN(IF(store_metrics.is_googlesellerrating_enabled = 1, store_metrics.metric_date,NULL)) AS first_gsr_enabled_date,\n MIN(IF(store_metrics.is_map_enabled = 1, store_metrics.metric_date,NULL)) AS first_map_enabled_date,\n MIN(IF(store_metrics.is_review_request_gte_3 = 1, store_metrics.metric_date,NULL)) AS first_3_review_requests_date,\n MIN(IF(store_metrics.review_cnt > 0, store_metrics.metric_date,NULL)) AS first_review_date,\n MIN(IF(store_metrics.order_cnt > 0, store_metrics.metric_date,NULL)) AS first_order_date,\n MIN(IF(store_metrics.is_reviews_widget_loaded = 1, store_metrics.metric_date,NULL)) AS first_reviews_widget_loaded_date,\n MIN(IF(store_metrics.is_active_tier_0 = 1, store_metrics.metric_date,NULL)) AS first_active_tier_0_date,\n MIN(IF(store_metrics.is_active_tier_1 = 1, store_metrics.metric_date,NULL)) AS first_active_tier_1_date,\n MIN(IF(store_metrics.is_active_tier_2 = 1, store_metrics.metric_date,NULL)) AS first_active_tier_2_date,\n MIN(IF(store_metrics.is_active_tier_3 = 1, store_metrics.metric_date,NULL)) AS first_active_tier_3_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_metrics_atvice_only AS store_metrics\nLEFT JOIN ugc_first_plan_date AS first_plan\nON store_metrics.app_key = first_plan.app_key\nLEFT JOIN org_first_ht_ss_date AS ht_ss\nON store_metrics.organization_key = ht_ss.organization_key\nLEFT JOIN churn_date\nON store_metrics.app_key = churn_date.app_key\nGROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_store_first_time_activity_metrics_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___ugc__store", "package": null, "version": null}, {"name": "analytics___platform__store_plan_daily", "package": null, "version": null}, {"name": "analytics___platform__organization_product_segment_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc__store", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform__organization_product_segment_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.sql", "compiled": true, "compiled_code": "-- Import --\nWITH import_ugc_store_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_metrics_daily\n), \n\nimport_ugc_store AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store\n),\n\nimport_platform_store_plan_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_plan_daily\n),\n\nimport_platform_organization_product_segment_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__organization_product_segment_daily\n),\n\n-- Logic --\n\nstore_metrics AS (\nSELECT\n metrics_daily.app_key,\n ugc_store.organization_key,\n ugc_store.platform_group,\n metrics_daily.reviews_enablement_date,\n metrics_daily.metric_date,\n metrics_daily.is_facebooksyndication_enabled,\n metrics_daily.is_widgetv3_enabled,\n metrics_daily.is_googlefeed_enabled,\n metrics_daily.is_googlesellerrating_enabled,\n metrics_daily.review_cnt,\n metrics_daily.order_cnt,\n metrics_daily.is_map_enabled,\n metrics_daily.is_reviews_widget_loaded,\n metrics_daily.is_active_tier_0,\n metrics_daily.is_active_tier_1,\n metrics_daily.is_active_tier_2,\n metrics_daily.is_active_tier_3,\n IF(SUM(metrics_daily.review_request_sent_cnt) OVER (PARTITION BY metrics_daily.app_key ORDER BY metrics_daily.metric_date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) >= 3, 1, 0) AS is_review_request_gte_3 \nFROM import_ugc_store_metrics_daily AS metrics_daily\nINNER JOIN import_ugc_store AS ugc_store\nON metrics_daily.app_key = ugc_store.app_key\nWHERE metrics_daily.reviews_enablement_date >= '2022-05-01'\n),\n\nstore_metrics_atvice_only AS (\nSELECT\n app_key,\n organization_key,\n platform_group,\n reviews_enablement_date,\n metric_date,\n is_facebooksyndication_enabled,\n is_widgetv3_enabled,\n is_googlefeed_enabled,\n is_googlesellerrating_enabled,\n review_cnt,\n order_cnt,\n is_map_enabled,\n is_reviews_widget_loaded,\n is_active_tier_0,\n is_active_tier_1,\n is_active_tier_2,\n is_active_tier_3,\n is_review_request_gte_3\nFROM store_metrics\nWHERE (\n is_facebooksyndication_enabled IS NOT NULL\n OR is_widgetv3_enabled IS NOT NULL\n OR is_googlefeed_enabled IS NOT NULL\n OR is_googlesellerrating_enabled IS NOT NULL\n OR review_cnt IS NOT NULL\n OR order_cnt IS NOT NULL\n OR is_map_enabled IS NOT NULL\n OR is_reviews_widget_loaded IS NOT NULL\n OR is_active_tier_0 IS NOT NULL\n OR is_active_tier_1 IS NOT NULL\n OR is_active_tier_2 IS NOT NULL\n OR is_active_tier_3 IS NOT NULL\n OR is_review_request_gte_3 IS NOT NULL\n )\n),\n\nugc_first_plan_date AS(\nSELECT\n app_key,\n MIN(IF(plan_name ILIKE '%growth%', date, NULL)) AS first_subscription_growth_date,\n MIN(IF(plan_name ILIKE '%prime%', date, NULL)) AS first_subscription_prime_date,\n MIN(IF(plan_name ILIKE '%premium%', date, NULL)) AS first_subscription_premium_date,\n MIN(IF(plan_name ILIKE '%enterprise%', date, NULL)) AS first_subscription_enterprise_date,\n MIN(IF(plan_name ILIKE '%pro%', date, NULL)) AS first_subscription_pro_date,\n MIN(IF(plan_name ILIKE '%powerhouse%', date, NULL)) AS first_subscription_powerhouse_date\nFROM import_platform_store_plan_daily\nWHERE LOWER(product_family) = 'reviews'\nGROUP BY 1\n),\n\nchurn_date AS(\nSELECT\n plan.app_key,\n MIN(plan.date) AS churn_date\nFROM import_platform_store_plan_daily AS plan\nJOIN ugc_first_plan_date AS first_plan\nON plan.app_key = first_plan.app_key \nAND LEAST (first_plan.first_subscription_growth_date,first_plan.first_subscription_prime_date,first_plan.first_subscription_premium_date,first_plan.first_subscription_enterprise_date,first_plan.first_subscription_pro_date,first_plan.first_subscription_powerhouse_date) < plan.date\nWHERE LOWER(product_family) = 'reviews'\nAND plan.is_free = 1\nGROUP BY 1\n),\n\norg_first_ht_ss_date AS (\nSELECT\n organization_key,\n MIN(date) AS first_ht_self_service_date\nFROM import_platform_organization_product_segment_daily\nWHERE is_reviews = 1\nAND is_ht_self_service = 1\nGROUP BY 1\n),\n\nugc_store_first_time_activity_metrics_res AS (\nSELECT\n store_metrics.app_key, \n store_metrics.organization_key, \n store_metrics.platform_group,\n store_metrics.reviews_enablement_date,\n TRUNC(store_metrics.reviews_enablement_date,'MONTH') AS reviews_enablement_month,\n first_plan.first_subscription_growth_date,\n first_plan.first_subscription_prime_date,\n first_plan.first_subscription_premium_date,\n first_plan.first_subscription_enterprise_date,\n first_plan.first_subscription_pro_date,\n first_plan.first_subscription_powerhouse_date,\n ht_ss.first_ht_self_service_date,\n churn_date.churn_date,\n SMALLINT(IF(churn_date IS NOT NULL,1,0)) AS is_churned,\n MIN(IF(store_metrics.is_facebooksyndication_enabled = 1, store_metrics.metric_date,NULL)) AS first_fb_syndication_enabled_date,\n MIN(IF(store_metrics.is_widgetv3_enabled = 1, store_metrics.metric_date,NULL)) AS first_widgetv3_enabled_date,\n MIN(IF(store_metrics.is_googlefeed_enabled = 1, store_metrics.metric_date,NULL)) AS first_pla_enabled_date,\n MIN(IF(store_metrics.is_googlesellerrating_enabled = 1, store_metrics.metric_date,NULL)) AS first_gsr_enabled_date,\n MIN(IF(store_metrics.is_map_enabled = 1, store_metrics.metric_date,NULL)) AS first_map_enabled_date,\n MIN(IF(store_metrics.is_review_request_gte_3 = 1, store_metrics.metric_date,NULL)) AS first_3_review_requests_date,\n MIN(IF(store_metrics.review_cnt > 0, store_metrics.metric_date,NULL)) AS first_review_date,\n MIN(IF(store_metrics.order_cnt > 0, store_metrics.metric_date,NULL)) AS first_order_date,\n MIN(IF(store_metrics.is_reviews_widget_loaded = 1, store_metrics.metric_date,NULL)) AS first_reviews_widget_loaded_date,\n MIN(IF(store_metrics.is_active_tier_0 = 1, store_metrics.metric_date,NULL)) AS first_active_tier_0_date,\n MIN(IF(store_metrics.is_active_tier_1 = 1, store_metrics.metric_date,NULL)) AS first_active_tier_1_date,\n MIN(IF(store_metrics.is_active_tier_2 = 1, store_metrics.metric_date,NULL)) AS first_active_tier_2_date,\n MIN(IF(store_metrics.is_active_tier_3 = 1, store_metrics.metric_date,NULL)) AS first_active_tier_3_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM store_metrics_atvice_only AS store_metrics\nLEFT JOIN ugc_first_plan_date AS first_plan\nON store_metrics.app_key = first_plan.app_key\nLEFT JOIN org_first_ht_ss_date AS ht_ss\nON store_metrics.organization_key = ht_ss.organization_key\nLEFT JOIN churn_date\nON store_metrics.app_key = churn_date.app_key\nGROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_store_first_time_activity_metrics_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__store_installation_over_time": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__store_installation_over_time", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.sql", "unique_id": "model.yoda.analytics___ugc__store_installation_over_time", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_installation_over_time", "analytics___ugc__store_installation_over_time"], "alias": "analytics___ugc__store_installation_over_time", "checksum": {"name": "sha256", "checksum": "0df1e1c3501d38792a82520c809070095c2d8d5153d948605b815f44467d0539"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled table of ugc store install & uninstall status over time | PK and granularity: app_key, from_time", "columns": {"app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_time": {"name": "from_time", "description": "store installation status range start timestamp - primary key 2/2 - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "store installation status range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "installation_status": {"name": "installation_status", "description": "ugc app installation status: installed/uninstalled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_source": {"name": "event_source", "description": "b2b, onboarding, app_uninstalled, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_and_date_row_ranking": {"name": "store_and_date_row_ranking", "description": "row ranking for each store and created_date by created_at (i.e, 1 is the first row for each store and created date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "store_and_date_row_ranking_backwards": {"name": "store_and_date_row_ranking_backwards", "description": "row ranking for each store and created_date by created_at (i.e, 1 is the last row for each store and created date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_date": {"name": "created_date", "description": "installation event created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082663.9217188, "relation_name": "dev_dkruh1.analytics___ugc__store_installation_over_time", "raw_code": "-- Import --\n\nWITH import_platform_stg__account AS (\nSELECT * FROM {{ ref('analytics___platform_stg__account') }}\n),\n\nimport_platform_stg__segment_b2b AS (\nSELECT * FROM {{ ref('analytics___platform_stg__segment_b_to_b') }}\n),\n\nimport_platform_stg__segment_onboarding AS (\nSELECT * FROM {{ ref('analytics___platform_stg__segment_onboarding') }}\n),\n\nimport_platform_stg__segment_activation_step AS (\nSELECT * FROM {{ ref('analytics___platform_stg__segment_activation_step') }}\n),\n\nimport_platform_stg__segment_uninstalled_yotpo AS (\nSELECT * FROM {{ ref('analytics___platform_stg__segment_uninstalled_yotpo') }}\n),\n\nimport_platform_stg__segment_app_uninstalled AS (\nSELECT * FROM {{ ref('analytics___platform_stg__segment_app_uninstalled') }}\n),\n\nimport_ugc_stg__review AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__review') }}\n),\n\n-- Logic --\n\naccount_created_before_2017 AS (\nSELECT\n app_key,\n DATE(account_created_at) AS created_date,\n account_created_at AS created_at,\n 'account_created' AS event_source,\n 'installed' AS event_type\nFROM import_platform_stg__account\nWHERE account_created_at < '2017-01-01'\n),\n\nb2b AS (\nSELECT DISTINCT\n app_key,\n created_date,\n created_at,\n 'segment_b2b' AS event_source,\n 'installed' AS event_type\nFROM import_platform_stg__segment_b2b\nWHERE created_date >= '2017-01-01'\nAND NVL(LEFT(LOWER(page_url),15),'') <> 'https://loyalty'\nAND LOWER(page_url) LIKE '%reviews%'\n),\n\nonboarding AS (\nSELECT DISTINCT\n app_key,\n created_date,\n created_at,\n 'segment_onboarding' AS event_source,\n 'installed' AS event_type\nFROM import_platform_stg__segment_onboarding\nWHERE created_date BETWEEN '2020-10-29' AND '2022-02-28'\nAND LOWER(product_category_name) = 'reviews'\n),\n\nactivation_step AS (\nSELECT DISTINCT\n app_key,\n created_date,\n created_at,\n 'segment_activation_step' AS event_source,\n 'installed' AS event_type\nFROM import_platform_stg__segment_activation_step\nWHERE created_date >= '2022-03-01'\nAND LOWER(product_name) = 'reviews'\n),\n\nuninstalled_yotpo AS (\nSELECT DISTINCT\n app_key,\n created_date,\n created_at,\n 'segment_uninstalled_yotpo' AS event_source,\n 'uninstalled' AS event_type\nFROM import_platform_stg__segment_uninstalled_yotpo\nWHERE created_date < '2018-08-01'\nOR (LOWER(plan_categories_list) LIKE '%reviews%'\n AND created_date BETWEEN '2018-08-01' AND '2022-02-26'\n AND plan_categories_cnt = 1)\n),\n\napp_uninstalled AS (\nSELECT DISTINCT\n app_key,\n created_date,\n created_at,\n 'segment_app_uninstalled' AS event_source,\n 'uninstalled' AS event_type\nFROM import_platform_stg__segment_app_uninstalled\nWHERE created_date >= '2022-02-27'\nAND LOWER(product_name) = 'reviews'\n),\n\nreview_events AS (\nSELECT\n app_key,\n created_date,\n created_at\nFROM import_ugc_stg__review\nWHERE review_source_type_id <> 3\n),\n\nugc_union_events AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM account_created_before_2017\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM b2b\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM onboarding\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM activation_step\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM uninstalled_yotpo\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM app_uninstalled\n),\n\nreview_events_after_uninstall AS (\nSELECT\n review.app_key,\n ugc.created_at AS uninstalled_created_at,\n MIN(review.created_date) AS installed_created_date,\n MIN(review.created_at) AS installed_created_at\nFROM review_events AS review\nINNER JOIN ugc_union_events AS ugc\n ON ugc.event_type = 'uninstalled'\n AND review.app_key = ugc.app_key\n AND review.created_at > ugc.created_at\nGROUP BY 1,2\n),\n\nreview_events_as_installation AS (\nSELECT\n app_key,\n installed_created_date AS created_date,\n installed_created_at AS created_at,\n 'review' AS event_source,\n 'installed' AS event_type\nFROM review_events_after_uninstall\n),\n\nugc_union_including_review_events AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM ugc_union_events\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM review_events_as_installation\n),\n\nugc_event_ranking AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_at ORDER BY IF(event_type = 'installed',0,1), event_source) AS row_ranking_store_and_time\nFROM ugc_union_including_review_events\n),\n\nugc_redundant_row_calculation AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type,\n IF(event_type = LAG(event_type) OVER (PARTITION BY app_key ORDER BY created_at),1,0) AS is_redundant_row\nFROM ugc_event_ranking\nWHERE row_ranking_store_and_time = 1\n),\n\nstore_installation_over_time_res AS (\nSELECT\n app_key,\n created_at AS from_time,\n LEAD(created_at,1,'2999-12-31') OVER (PARTITION BY app_key ORDER BY created_at) AS to_time,\n event_type AS installation_status,\n event_source,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_date ORDER BY created_at) AS store_and_date_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_date ORDER BY created_at DESC) AS store_and_date_row_ranking_backwards,\n created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM ugc_redundant_row_calculation\nWHERE is_redundant_row = 0\n)\n\n-- Result --\n\nSELECT *\nFROM store_installation_over_time_res", "language": "sql", "refs": [{"name": "analytics___platform_stg__account", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_b_to_b", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_onboarding", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_activation_step", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_uninstalled_yotpo", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_app_uninstalled", "package": null, "version": null}, {"name": "analytics___ugc_stg__review", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__account", "model.yoda.analytics___platform_stg__segment_b_to_b", "model.yoda.analytics___platform_stg__segment_onboarding", "model.yoda.analytics___platform_stg__segment_activation_step", "model.yoda.analytics___platform_stg__segment_uninstalled_yotpo", "model.yoda.analytics___platform_stg__segment_app_uninstalled", "model.yoda.analytics___ugc_stg__review"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_platform_stg__account AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__account\n),\n\nimport_platform_stg__segment_b2b AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__segment_b_to_b\n),\n\nimport_platform_stg__segment_onboarding AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__segment_onboarding\n),\n\nimport_platform_stg__segment_activation_step AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__segment_activation_step\n),\n\nimport_platform_stg__segment_uninstalled_yotpo AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__segment_uninstalled_yotpo\n),\n\nimport_platform_stg__segment_app_uninstalled AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__segment_app_uninstalled\n),\n\nimport_ugc_stg__review AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__review\n),\n\n-- Logic --\n\naccount_created_before_2017 AS (\nSELECT\n app_key,\n DATE(account_created_at) AS created_date,\n account_created_at AS created_at,\n 'account_created' AS event_source,\n 'installed' AS event_type\nFROM import_platform_stg__account\nWHERE account_created_at < '2017-01-01'\n),\n\nb2b AS (\nSELECT DISTINCT\n app_key,\n created_date,\n created_at,\n 'segment_b2b' AS event_source,\n 'installed' AS event_type\nFROM import_platform_stg__segment_b2b\nWHERE created_date >= '2017-01-01'\nAND NVL(LEFT(LOWER(page_url),15),'') <> 'https://loyalty'\nAND LOWER(page_url) LIKE '%reviews%'\n),\n\nonboarding AS (\nSELECT DISTINCT\n app_key,\n created_date,\n created_at,\n 'segment_onboarding' AS event_source,\n 'installed' AS event_type\nFROM import_platform_stg__segment_onboarding\nWHERE created_date BETWEEN '2020-10-29' AND '2022-02-28'\nAND LOWER(product_category_name) = 'reviews'\n),\n\nactivation_step AS (\nSELECT DISTINCT\n app_key,\n created_date,\n created_at,\n 'segment_activation_step' AS event_source,\n 'installed' AS event_type\nFROM import_platform_stg__segment_activation_step\nWHERE created_date >= '2022-03-01'\nAND LOWER(product_name) = 'reviews'\n),\n\nuninstalled_yotpo AS (\nSELECT DISTINCT\n app_key,\n created_date,\n created_at,\n 'segment_uninstalled_yotpo' AS event_source,\n 'uninstalled' AS event_type\nFROM import_platform_stg__segment_uninstalled_yotpo\nWHERE created_date < '2018-08-01'\nOR (LOWER(plan_categories_list) LIKE '%reviews%'\n AND created_date BETWEEN '2018-08-01' AND '2022-02-26'\n AND plan_categories_cnt = 1)\n),\n\napp_uninstalled AS (\nSELECT DISTINCT\n app_key,\n created_date,\n created_at,\n 'segment_app_uninstalled' AS event_source,\n 'uninstalled' AS event_type\nFROM import_platform_stg__segment_app_uninstalled\nWHERE created_date >= '2022-02-27'\nAND LOWER(product_name) = 'reviews'\n),\n\nreview_events AS (\nSELECT\n app_key,\n created_date,\n created_at\nFROM import_ugc_stg__review\nWHERE review_source_type_id <> 3\n),\n\nugc_union_events AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM account_created_before_2017\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM b2b\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM onboarding\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM activation_step\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM uninstalled_yotpo\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM app_uninstalled\n),\n\nreview_events_after_uninstall AS (\nSELECT\n review.app_key,\n ugc.created_at AS uninstalled_created_at,\n MIN(review.created_date) AS installed_created_date,\n MIN(review.created_at) AS installed_created_at\nFROM review_events AS review\nINNER JOIN ugc_union_events AS ugc\n ON ugc.event_type = 'uninstalled'\n AND review.app_key = ugc.app_key\n AND review.created_at > ugc.created_at\nGROUP BY 1,2\n),\n\nreview_events_as_installation AS (\nSELECT\n app_key,\n installed_created_date AS created_date,\n installed_created_at AS created_at,\n 'review' AS event_source,\n 'installed' AS event_type\nFROM review_events_after_uninstall\n),\n\nugc_union_including_review_events AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM ugc_union_events\nUNION ALL\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type\nFROM review_events_as_installation\n),\n\nugc_event_ranking AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_at ORDER BY IF(event_type = 'installed',0,1), event_source) AS row_ranking_store_and_time\nFROM ugc_union_including_review_events\n),\n\nugc_redundant_row_calculation AS (\nSELECT\n app_key,\n created_date,\n created_at,\n event_source,\n event_type,\n IF(event_type = LAG(event_type) OVER (PARTITION BY app_key ORDER BY created_at),1,0) AS is_redundant_row\nFROM ugc_event_ranking\nWHERE row_ranking_store_and_time = 1\n),\n\nstore_installation_over_time_res AS (\nSELECT\n app_key,\n created_at AS from_time,\n LEAD(created_at,1,'2999-12-31') OVER (PARTITION BY app_key ORDER BY created_at) AS to_time,\n event_type AS installation_status,\n event_source,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_date ORDER BY created_at) AS store_and_date_row_ranking,\n ROW_NUMBER() OVER (PARTITION BY app_key, created_date ORDER BY created_at DESC) AS store_and_date_row_ranking_backwards,\n created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM ugc_redundant_row_calculation\nWHERE is_redundant_row = 0\n)\n\n-- Result --\n\nSELECT *\nFROM store_installation_over_time_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__store_metrics_daily": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__store_metrics_daily", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.sql", "unique_id": "model.yoda.analytics___ugc__store_metrics_daily", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_daily", "analytics___ugc__store_metrics_daily"], "alias": "analytics___ugc__store_metrics_daily", "checksum": {"name": "sha256", "checksum": "6125501cb2b1d6d822e7bdcbb3c775c42154b6da5d5a62cd6ed5b6632d3c1358"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["metric_date", "app_key"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["metric_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled table of ugc store metrics history on a daily level | PK and granularity: metric_date, app_key", "columns": {"metric_date": {"name": "metric_date", "description": "store activeness date - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "FK: analytics___platform__organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_enablement_date": {"name": "reviews_enablement_date", "description": "First date Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "reviews_widget_version": {"name": "reviews_widget_version", "description": "reviews widget version based on pixel events data: 2/3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "review_cnt": {"name": "review_cnt", "description": "number of reviews", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reviewer_cnt": {"name": "reviewer_cnt", "description": "number of unique reviewers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_rating_sum": {"name": "review_rating_sum", "description": "sum of reviews ratings", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_rating_avg": {"name": "review_rating_avg", "description": "average review rating", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_cnt": {"name": "order_cnt", "description": "number of orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_request_sent_cnt": {"name": "review_request_sent_cnt", "description": "number of review requests sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_facebooksyndication_enabled": {"name": "is_facebooksyndication_enabled", "description": "feature_id = 380 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_coupons_enabled": {"name": "is_coupons_enabled", "description": "feature_id = 15 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_retailsyndicationwalmart_enabled": {"name": "is_retailsyndicationwalmart_enabled", "description": "feature_id = 316 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_widgetv3_enabled": {"name": "is_widgetv3_enabled", "description": "feature_id = 388 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_bottomlinesyndication_enabled": {"name": "is_bottomlinesyndication_enabled", "description": "feature_id = 199 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_googlefeed_enabled": {"name": "is_googlefeed_enabled", "description": "feature_id = 84 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_richsnippet_enabled": {"name": "is_richsnippet_enabled", "description": "feature_id = 3 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviewratingfields_enabled": {"name": "is_reviewratingfields_enabled", "description": "feature_id = 133 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviewwithpictures_enabled": {"name": "is_reviewwithpictures_enabled", "description": "feature_id = 138 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sitereviewafterproductreview_enabled": {"name": "is_sitereviewafterproductreview_enabled", "description": "feature_id = 339 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_videosinreviews_enabled": {"name": "is_videosinreviews_enabled", "description": "feature_id = 279 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_customtranslations_enabled": {"name": "is_customtranslations_enabled", "description": "feature_id = 118 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_googlesellerrating_enabled": {"name": "is_googlesellerrating_enabled", "description": "feature_id = 89 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_cssversionededitor_enabled": {"name": "is_cssversionededitor_enabled", "description": "feature_id = 210 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_csseditor_enabled": {"name": "is_csseditor_enabled", "description": "feature_id = 90 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_postman_enabled": {"name": "is_postman_enabled", "description": "feature_id = 402 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_map_enabled": {"name": "is_map_enabled", "description": "feature_id = 9 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reminder_enabled": {"name": "is_reminder_enabled", "description": "riminder is cosidered enabled when count of (feature_id = 9 is_user_enabled = true and is_disabled = false) is larger then one", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_widget_loaded": {"name": "is_reviews_widget_loaded", "description": "reviews widget loaded indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_export": {"name": "is_reviews_export", "description": "is reviews file export indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "review_cnt_l30d": {"name": "review_cnt_l30d", "description": "sum(review_cnt) last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_cnt_l30d": {"name": "order_cnt_l30d", "description": "sum(order_cnt) last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_request_sent_cnt_l30d": {"name": "review_request_sent_cnt_l30d", "description": "sum(request_sent_cnt) last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_map_enabled_l30d": {"name": "is_map_enabled_l30d", "description": "max(is_map_enabled) last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_widget_loaded_l30d": {"name": "is_reviews_widget_loaded_l30d", "description": "max(is_reviews_widget_loaded) last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_googlefeed_enabled_l30d": {"name": "is_googlefeed_enabled_l30d", "description": "max(is_googlefeed_enabled) last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_googlesellerrating_enabled_l30d": {"name": "is_googlesellerrating_enabled_l30d", "description": "max(is_googlesellerrating_enabled) last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sitereviewafterproductreview_enabled_l30d": {"name": "is_sitereviewafterproductreview_enabled_l30d", "description": "max(is_sitereviewafterproductreview_enabled) last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_postman_enabled_l30d": {"name": "is_postman_enabled_l30d", "description": "max(is_postman_enabled) last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_0": {"name": "is_active_tier_0", "description": "indicator: 0/1. Meaning: order_cnt_l30d > 0 and review_request_sent_cnt_l30d >= 3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_1": {"name": "is_active_tier_1", "description": "indicator: 0/1. Meaning: is_active_tier_0 = 1 and is_map_enabled_l30d = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_2": {"name": "is_active_tier_2", "description": "indicator: 0/1. Meaning: is_active_tier_1 = 1 and is_reviews_widget_loaded_l30d = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_3": {"name": "is_active_tier_3", "description": "indicator: 0/1. Meaning: is_active_tier_2 = 1 and review_cnt_l30d >= 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "merge", "unique_key": ["metric_date", "app_key"], "partition_by": ["metric_date"]}, "created_at": 1700082663.9946601, "relation_name": "dev_dkruh1.analytics___ugc__store_metrics_daily", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'merge',\n unique_key = ['metric_date','app_key'],\n partition_by = ['metric_date']\n )\n}}\n\n-- Import --\n\nWITH import_store_feature_over_time AS (\nSELECT * FROM {{ ref('analytics___ugc__store_feature_over_time') }}\n),\n\nimport_ugc_review AS (\nSELECT * FROM {{ ref('analytics___ugc__review') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='metric_date',query_condition_column='created_date',min_lower_bound='2020-01-01',subtract=36)}}\n),\n\nimport_ugc_stg_email AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__email') }}\n),\n\nimport_store_order_daily AS (\nSELECT * FROM {{ ref('analytics___platform__store_order_daily') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='metric_date',query_condition_column='order_date',min_lower_bound='2020-01-01',subtract=36)}}\n),\n\nimport_store_pixel_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___platform__store_pixel_metrics_daily') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='metric_date',query_condition_column='date',min_lower_bound='2020-01-01',subtract=36)}}\n),\n\nimport_ugc_store AS (\nSELECT * FROM {{ ref('analytics___ugc__store') }}\n),\n\nimport_calendar AS (\nSELECT * \nFROM {{ ref('platform_stg__dim_calendar') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='metric_date',query_condition_column='date',min_lower_bound='2020-01-01',subtract=36)}}\n{% if target.name == 'dev' %}\nAND date >= DATE_SUB(CURRENT_DATE,7)\n{% endif %}\n),\n\nimport_segment_file_exported AS (\nSELECT * FROM {{ ref('analytics___platform_stg__segment_file_exported') }}\n),\n\n-- Logic --\n\nugc__store_daily AS (\nSELECT\n calendar.date AS metric_date,\n store.app_key,\n store.organization_key,\n store.reviews_enablement_date\nFROM import_calendar AS calendar\nINNER JOIN import_ugc_store AS store\n ON calendar.date >= store.reviews_enablement_date\n),\n\nugc__store_w_features AS (\nSELECT\n store.metric_date,\n store.app_key,\n store.organization_key,\n store.reviews_enablement_date,\n SMALLINT(MAX(IF(feature.feature_id = 380, feature.is_enabled, 0))) AS is_facebooksyndication_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 15, feature.is_enabled, 0))) AS is_coupons_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 316, feature.is_enabled, 0))) AS is_retailsyndicationwalmart_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 388, feature.is_enabled, 0))) AS is_widgetv3_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 199, feature.is_enabled, 0))) AS is_bottomlinesyndication_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 84, feature.is_enabled, 0))) AS is_googlefeed_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 3, feature.is_enabled, 0))) AS is_richsnippet_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 133, feature.is_enabled, 0))) AS is_reviewratingfields_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 138, feature.is_enabled, 0))) AS is_reviewwithpictures_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 339, feature.is_enabled, 0))) AS is_sitereviewafterproductreview_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 279, feature.is_enabled, 0))) AS is_videosinreviews_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 118, feature.is_enabled, 0))) AS is_customtranslations_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 89, feature.is_enabled, 0))) AS is_googlesellerrating_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 210, feature.is_enabled, 0))) AS is_cssversionededitor_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 90, feature.is_enabled, 0))) AS is_csseditor_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 402, feature.is_enabled, 0))) AS is_postman_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 9, feature.is_enabled, 0))) AS is_map_enabled,\n COUNT(DISTINCT IF(feature.feature_id = 9 AND feature.is_enabled = 1, feature.source_id, NULL)) AS reminder_map_cnt\nFROM ugc__store_daily AS store\nLEFT JOIN import_store_feature_over_time AS feature\n ON store.app_key = feature.app_key\n AND store.metric_date >= feature.from_date \n AND store.metric_date < feature.to_date\nGROUP BY 1,2,3,4\n),\n\nreview_metrics_calculation AS (\nSELECT\n created_date AS review_date,\n app_key,\n COUNT(review_id) AS review_cnt,\n COUNT(DISTINCT reviewer_id) AS reviewer_cnt,\n SUM(score) AS review_rating_sum\nFROM import_ugc_review\nGROUP BY 1,2\n),\n\nreview_requests_metrics AS (\nSELECT\n email_sent_date AS sent_date,\n app_key,\n COUNT(email_id) AS review_request_sent_cnt\nFROM import_ugc_stg_email\nWHERE LOWER(email_type) IN ('product_map','product_reminder','site_map','site_reminder')\nGROUP BY 1,2\n),\n\npixel_metrics AS (\nSELECT \n date,\n app_key,\n 1 AS is_reviews_widget_loaded,\n MAX(widget_version_type) AS reviews_widget_version\nFROM import_store_pixel_metrics_daily\nWHERE LOWER(product_name) = 'ugc'\nAND LOWER(action) = 'loaded'\nAND LOWER(metric) = 'count'\nAND LOWER(widget_element) = 'reviews_widget'\nAND value > 0\nGROUP BY 1,2\n),\n\nredundant_pixel_widget_version_row_calculation AS (\nSELECT\n date,\n app_key,\n reviews_widget_version,\n IF(reviews_widget_version = LAG(reviews_widget_version) OVER (PARTITION BY app_key ORDER BY date),1,0) AS is_redundant_row\nFROM pixel_metrics\n),\n\npixel_widget_version_over_time AS (\nSELECT\n app_key,\n date AS from_date,\n LEAD(DATE_SUB(date,1),1,'2999-12-31') OVER (PARTITION BY app_key ORDER BY date) AS to_date,\n reviews_widget_version\nFROM redundant_pixel_widget_version_row_calculation\nWHERE is_redundant_row = 0\n),\n\nsegment_file_exported_first_date_of_data AS (\nSELECT MIN(created_date) AS first_date_of_data\nFROM import_segment_file_exported\n),\n\nreviews_file_export AS (\nSELECT DISTINCT\n created_date,\n app_key,\n 1 AS is_reviews_export\nFROM import_segment_file_exported\nWHERE LOWER(report_type) = 'reviews_export'\n),\n\nreview_and_orders_metrics AS (\nSELECT\n features.metric_date,\n features.app_key,\n features.organization_key,\n features.reviews_enablement_date,\n widget_version.reviews_widget_version,\n NVL(review.review_cnt,0) AS review_cnt,\n NVL(review.reviewer_cnt,0) AS reviewer_cnt,\n NVL(review.review_rating_sum,0) AS review_rating_sum,\n NVL(review.review_rating_sum,0)/NULLIF(review.review_cnt,0) AS review_rating_avg,\n NVL(order_daily.orders_cnt,0) AS order_cnt,\n NVL(review_requests.review_request_sent_cnt,0) AS review_request_sent_cnt,\n features.is_facebooksyndication_enabled,\n features.is_coupons_enabled,\n features.is_retailsyndicationwalmart_enabled,\n features.is_widgetv3_enabled,\n features.is_bottomlinesyndication_enabled,\n features.is_googlefeed_enabled,\n features.is_richsnippet_enabled,\n features.is_reviewratingfields_enabled,\n features.is_reviewwithpictures_enabled,\n features.is_sitereviewafterproductreview_enabled,\n features.is_videosinreviews_enabled,\n features.is_customtranslations_enabled,\n features.is_googlesellerrating_enabled,\n features.is_cssversionededitor_enabled,\n features.is_csseditor_enabled,\n features.is_postman_enabled,\n features.is_map_enabled,\n SMALLINT(IF(features.reminder_map_cnt > 1,1,0)) AS is_reminder_enabled,\n SMALLINT(NVL(pixel.is_reviews_widget_loaded,0)) AS is_reviews_widget_loaded,\n SMALLINT(IF(features.metric_date >= file_exported_start.first_date_of_data,NVL(file_export.is_reviews_export,0),NULL)) AS is_reviews_export\nFROM ugc__store_w_features AS features\nLEFT JOIN review_metrics_calculation AS review\n ON features.metric_date = review.review_date\n AND features.app_key = review.app_key\nLEFT JOIN import_store_order_daily AS order_daily\n ON features.metric_date = order_daily.order_date\n AND features.app_key = order_daily.app_key\nLEFT JOIN review_requests_metrics AS review_requests\n ON features.metric_date = review_requests.sent_date\n AND features.app_key = review_requests.app_key\nLEFT JOIN pixel_metrics AS pixel\n ON features.metric_date = pixel.date\n AND features.app_key = pixel.app_key\nLEFT JOIN pixel_widget_version_over_time AS widget_version\n ON features.metric_date BETWEEN widget_version.from_date AND widget_version.to_date\n AND features.app_key = widget_version.app_key\nLEFT JOIN reviews_file_export AS file_export\n ON features.metric_date = file_export.created_date\n AND features.app_key = file_export.app_key\nCROSS JOIN segment_file_exported_first_date_of_data AS file_exported_start -- Will be replaced later by macro\n),\n\nd30_rolling_metrics AS (\nSELECT \n metric_end.metric_date,\n metric_end.app_key,\n metric_end.organization_key,\n metric_end.reviews_enablement_date,\n metric_end.reviews_widget_version,\n metric_end.review_cnt,\n metric_end.reviewer_cnt,\n metric_end.review_rating_sum,\n metric_end.review_rating_avg,\n metric_end.order_cnt,\n metric_end.review_request_sent_cnt,\n metric_end.is_facebooksyndication_enabled,\n metric_end.is_coupons_enabled,\n metric_end.is_retailsyndicationwalmart_enabled,\n metric_end.is_widgetv3_enabled,\n metric_end.is_bottomlinesyndication_enabled,\n metric_end.is_googlefeed_enabled,\n metric_end.is_richsnippet_enabled,\n metric_end.is_reviewratingfields_enabled,\n metric_end.is_reviewwithpictures_enabled,\n metric_end.is_sitereviewafterproductreview_enabled,\n metric_end.is_videosinreviews_enabled,\n metric_end.is_customtranslations_enabled,\n metric_end.is_googlesellerrating_enabled,\n metric_end.is_cssversionededitor_enabled,\n metric_end.is_csseditor_enabled,\n metric_end.is_postman_enabled,\n metric_end.is_map_enabled,\n metric_end.is_reminder_enabled,\n metric_end.is_reviews_widget_loaded,\n metric_end.is_reviews_export,\n SUM(metric_start.review_cnt) AS reviews_30d,\n SUM(metric_start.order_cnt) AS orders_30d,\n SUM(metric_start.review_request_sent_cnt) AS review_reqeusts_30d,\n MAX(metric_start.is_map_enabled) AS is_map_enabled_30d,\n MAX(metric_start.is_reviews_widget_loaded) AS is_reviews_widget_loaded_30d,\n MAX(metric_start.is_googlefeed_enabled) AS is_googlefeed_enabled_30d,\n MAX(metric_start.is_googlesellerrating_enabled) AS is_googlesellerrating_enabled_30d,\n MAX(metric_start.is_sitereviewafterproductreview_enabled) AS is_sitereviewafterproductreview_enabled_30d,\n MAX(metric_start.is_postman_enabled) AS is_postman_enabled_30d\nFROM review_and_orders_metrics AS metric_end \nLEFT JOIN review_and_orders_metrics AS metric_start \n ON DATEDIFF(metric_end.metric_date,metric_start.metric_date) BETWEEN 0 AND 30 \n AND metric_end.app_key = metric_start.app_key\nGROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31\n),\n\nactive_calculation_res AS (\nSELECT \n metric_date,\n app_key,\n organization_key,\n reviews_enablement_date,\n reviews_widget_version,\n review_cnt,\n reviewer_cnt,\n review_rating_sum,\n review_rating_avg,\n order_cnt,\n review_request_sent_cnt,\n is_facebooksyndication_enabled,\n is_coupons_enabled,\n is_retailsyndicationwalmart_enabled,\n is_widgetv3_enabled,\n is_bottomlinesyndication_enabled,\n is_googlefeed_enabled,\n is_richsnippet_enabled,\n is_reviewratingfields_enabled,\n is_reviewwithpictures_enabled,\n is_sitereviewafterproductreview_enabled,\n is_videosinreviews_enabled,\n is_customtranslations_enabled,\n is_googlesellerrating_enabled,\n is_cssversionededitor_enabled,\n is_csseditor_enabled,\n is_postman_enabled,\n is_map_enabled,\n is_reminder_enabled,\n is_reviews_widget_loaded,\n is_reviews_export,\n reviews_30d AS review_cnt_l30d,\n orders_30d AS order_cnt_l30d,\n review_reqeusts_30d AS review_request_sent_cnt_l30d,\n SMALLINT(is_map_enabled_30d) AS is_map_enabled_l30d,\n SMALLINT(is_reviews_widget_loaded_30d) AS is_reviews_widget_loaded_l30d,\n SMALLINT(is_googlefeed_enabled_30d) AS is_googlefeed_enabled_l30d,\n SMALLINT(is_googlesellerrating_enabled_30d) AS is_googlesellerrating_enabled_l30d,\n SMALLINT(is_sitereviewafterproductreview_enabled_30d) AS is_sitereviewafterproductreview_enabled_l30d,\n SMALLINT(is_postman_enabled_30d) AS is_postman_enabled_l30d,\n SMALLINT(IF(review_reqeusts_30d >=3 AND orders_30d >0,1,0)) AS is_active_tier_0,\n SMALLINT(IF(review_reqeusts_30d >=3 AND orders_30d >0 AND is_map_enabled_30d= 1,1,0)) AS is_active_tier_1,\n SMALLINT(IF(review_reqeusts_30d >=3 AND orders_30d >0 AND is_map_enabled_30d= 1 AND is_reviews_widget_loaded_30d = 1,1,0)) AS is_active_tier_2,\n SMALLINT(IF(review_reqeusts_30d >=3 AND orders_30d >0 AND is_map_enabled_30d= 1 AND is_reviews_widget_loaded_30d = 1 AND reviews_30d >0,1,0)) AS is_active_tier_3,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM d30_rolling_metrics\n{{incremental_condition(data_type='DATE',destination_condition_column='metric_date',query_condition_column='metric_date',min_lower_bound='2020-01-01',subtract=4)}}\n\n)\n\n-- Result --\n\nSELECT *\nFROM active_calculation_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}, {"name": "analytics___ugc__review", "package": null, "version": null}, {"name": "analytics___ugc_stg__email", "package": null, "version": null}, {"name": "analytics___platform__store_order_daily", "package": null, "version": null}, {"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}, {"name": "analytics___ugc__store", "package": null, "version": null}, {"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_file_exported", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_feature_over_time", "model.yoda.analytics___ugc__review", "model.yoda.analytics___ugc_stg__email", "model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___ugc__store", "model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___platform_stg__segment_file_exported"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_store_feature_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_feature_over_time\n),\n\nimport_ugc_review AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__review\nWHERE DATE(created_date) >= DATE('2020-01-01') AND DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_stg_email AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__email\n),\n\nimport_store_order_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_order_daily\nWHERE DATE(order_date) >= DATE('2020-01-01') AND DATE(order_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_store_pixel_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_pixel_metrics_daily\nWHERE DATE(date) >= DATE('2020-01-01') AND DATE(date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_store AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store\n),\n\nimport_calendar AS (\nSELECT * \nFROM dev_dkruh1.platform_stg__dim_calendar\nWHERE DATE(date) >= DATE('2020-01-01') AND DATE(date) <= DATE_SUB(CURRENT_DATE,1)\n\nAND date >= DATE_SUB(CURRENT_DATE,7)\n\n),\n\nimport_segment_file_exported AS (\nSELECT * FROM dev_dkruh1.analytics___platform_stg__segment_file_exported\n),\n\n-- Logic --\n\nugc__store_daily AS (\nSELECT\n calendar.date AS metric_date,\n store.app_key,\n store.organization_key,\n store.reviews_enablement_date\nFROM import_calendar AS calendar\nINNER JOIN import_ugc_store AS store\n ON calendar.date >= store.reviews_enablement_date\n),\n\nugc__store_w_features AS (\nSELECT\n store.metric_date,\n store.app_key,\n store.organization_key,\n store.reviews_enablement_date,\n SMALLINT(MAX(IF(feature.feature_id = 380, feature.is_enabled, 0))) AS is_facebooksyndication_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 15, feature.is_enabled, 0))) AS is_coupons_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 316, feature.is_enabled, 0))) AS is_retailsyndicationwalmart_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 388, feature.is_enabled, 0))) AS is_widgetv3_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 199, feature.is_enabled, 0))) AS is_bottomlinesyndication_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 84, feature.is_enabled, 0))) AS is_googlefeed_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 3, feature.is_enabled, 0))) AS is_richsnippet_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 133, feature.is_enabled, 0))) AS is_reviewratingfields_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 138, feature.is_enabled, 0))) AS is_reviewwithpictures_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 339, feature.is_enabled, 0))) AS is_sitereviewafterproductreview_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 279, feature.is_enabled, 0))) AS is_videosinreviews_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 118, feature.is_enabled, 0))) AS is_customtranslations_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 89, feature.is_enabled, 0))) AS is_googlesellerrating_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 210, feature.is_enabled, 0))) AS is_cssversionededitor_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 90, feature.is_enabled, 0))) AS is_csseditor_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 402, feature.is_enabled, 0))) AS is_postman_enabled,\n SMALLINT(MAX(IF(feature.feature_id = 9, feature.is_enabled, 0))) AS is_map_enabled,\n COUNT(DISTINCT IF(feature.feature_id = 9 AND feature.is_enabled = 1, feature.source_id, NULL)) AS reminder_map_cnt\nFROM ugc__store_daily AS store\nLEFT JOIN import_store_feature_over_time AS feature\n ON store.app_key = feature.app_key\n AND store.metric_date >= feature.from_date \n AND store.metric_date < feature.to_date\nGROUP BY 1,2,3,4\n),\n\nreview_metrics_calculation AS (\nSELECT\n created_date AS review_date,\n app_key,\n COUNT(review_id) AS review_cnt,\n COUNT(DISTINCT reviewer_id) AS reviewer_cnt,\n SUM(score) AS review_rating_sum\nFROM import_ugc_review\nGROUP BY 1,2\n),\n\nreview_requests_metrics AS (\nSELECT\n email_sent_date AS sent_date,\n app_key,\n COUNT(email_id) AS review_request_sent_cnt\nFROM import_ugc_stg_email\nWHERE LOWER(email_type) IN ('product_map','product_reminder','site_map','site_reminder')\nGROUP BY 1,2\n),\n\npixel_metrics AS (\nSELECT \n date,\n app_key,\n 1 AS is_reviews_widget_loaded,\n MAX(widget_version_type) AS reviews_widget_version\nFROM import_store_pixel_metrics_daily\nWHERE LOWER(product_name) = 'ugc'\nAND LOWER(action) = 'loaded'\nAND LOWER(metric) = 'count'\nAND LOWER(widget_element) = 'reviews_widget'\nAND value > 0\nGROUP BY 1,2\n),\n\nredundant_pixel_widget_version_row_calculation AS (\nSELECT\n date,\n app_key,\n reviews_widget_version,\n IF(reviews_widget_version = LAG(reviews_widget_version) OVER (PARTITION BY app_key ORDER BY date),1,0) AS is_redundant_row\nFROM pixel_metrics\n),\n\npixel_widget_version_over_time AS (\nSELECT\n app_key,\n date AS from_date,\n LEAD(DATE_SUB(date,1),1,'2999-12-31') OVER (PARTITION BY app_key ORDER BY date) AS to_date,\n reviews_widget_version\nFROM redundant_pixel_widget_version_row_calculation\nWHERE is_redundant_row = 0\n),\n\nsegment_file_exported_first_date_of_data AS (\nSELECT MIN(created_date) AS first_date_of_data\nFROM import_segment_file_exported\n),\n\nreviews_file_export AS (\nSELECT DISTINCT\n created_date,\n app_key,\n 1 AS is_reviews_export\nFROM import_segment_file_exported\nWHERE LOWER(report_type) = 'reviews_export'\n),\n\nreview_and_orders_metrics AS (\nSELECT\n features.metric_date,\n features.app_key,\n features.organization_key,\n features.reviews_enablement_date,\n widget_version.reviews_widget_version,\n NVL(review.review_cnt,0) AS review_cnt,\n NVL(review.reviewer_cnt,0) AS reviewer_cnt,\n NVL(review.review_rating_sum,0) AS review_rating_sum,\n NVL(review.review_rating_sum,0)/NULLIF(review.review_cnt,0) AS review_rating_avg,\n NVL(order_daily.orders_cnt,0) AS order_cnt,\n NVL(review_requests.review_request_sent_cnt,0) AS review_request_sent_cnt,\n features.is_facebooksyndication_enabled,\n features.is_coupons_enabled,\n features.is_retailsyndicationwalmart_enabled,\n features.is_widgetv3_enabled,\n features.is_bottomlinesyndication_enabled,\n features.is_googlefeed_enabled,\n features.is_richsnippet_enabled,\n features.is_reviewratingfields_enabled,\n features.is_reviewwithpictures_enabled,\n features.is_sitereviewafterproductreview_enabled,\n features.is_videosinreviews_enabled,\n features.is_customtranslations_enabled,\n features.is_googlesellerrating_enabled,\n features.is_cssversionededitor_enabled,\n features.is_csseditor_enabled,\n features.is_postman_enabled,\n features.is_map_enabled,\n SMALLINT(IF(features.reminder_map_cnt > 1,1,0)) AS is_reminder_enabled,\n SMALLINT(NVL(pixel.is_reviews_widget_loaded,0)) AS is_reviews_widget_loaded,\n SMALLINT(IF(features.metric_date >= file_exported_start.first_date_of_data,NVL(file_export.is_reviews_export,0),NULL)) AS is_reviews_export\nFROM ugc__store_w_features AS features\nLEFT JOIN review_metrics_calculation AS review\n ON features.metric_date = review.review_date\n AND features.app_key = review.app_key\nLEFT JOIN import_store_order_daily AS order_daily\n ON features.metric_date = order_daily.order_date\n AND features.app_key = order_daily.app_key\nLEFT JOIN review_requests_metrics AS review_requests\n ON features.metric_date = review_requests.sent_date\n AND features.app_key = review_requests.app_key\nLEFT JOIN pixel_metrics AS pixel\n ON features.metric_date = pixel.date\n AND features.app_key = pixel.app_key\nLEFT JOIN pixel_widget_version_over_time AS widget_version\n ON features.metric_date BETWEEN widget_version.from_date AND widget_version.to_date\n AND features.app_key = widget_version.app_key\nLEFT JOIN reviews_file_export AS file_export\n ON features.metric_date = file_export.created_date\n AND features.app_key = file_export.app_key\nCROSS JOIN segment_file_exported_first_date_of_data AS file_exported_start -- Will be replaced later by macro\n),\n\nd30_rolling_metrics AS (\nSELECT \n metric_end.metric_date,\n metric_end.app_key,\n metric_end.organization_key,\n metric_end.reviews_enablement_date,\n metric_end.reviews_widget_version,\n metric_end.review_cnt,\n metric_end.reviewer_cnt,\n metric_end.review_rating_sum,\n metric_end.review_rating_avg,\n metric_end.order_cnt,\n metric_end.review_request_sent_cnt,\n metric_end.is_facebooksyndication_enabled,\n metric_end.is_coupons_enabled,\n metric_end.is_retailsyndicationwalmart_enabled,\n metric_end.is_widgetv3_enabled,\n metric_end.is_bottomlinesyndication_enabled,\n metric_end.is_googlefeed_enabled,\n metric_end.is_richsnippet_enabled,\n metric_end.is_reviewratingfields_enabled,\n metric_end.is_reviewwithpictures_enabled,\n metric_end.is_sitereviewafterproductreview_enabled,\n metric_end.is_videosinreviews_enabled,\n metric_end.is_customtranslations_enabled,\n metric_end.is_googlesellerrating_enabled,\n metric_end.is_cssversionededitor_enabled,\n metric_end.is_csseditor_enabled,\n metric_end.is_postman_enabled,\n metric_end.is_map_enabled,\n metric_end.is_reminder_enabled,\n metric_end.is_reviews_widget_loaded,\n metric_end.is_reviews_export,\n SUM(metric_start.review_cnt) AS reviews_30d,\n SUM(metric_start.order_cnt) AS orders_30d,\n SUM(metric_start.review_request_sent_cnt) AS review_reqeusts_30d,\n MAX(metric_start.is_map_enabled) AS is_map_enabled_30d,\n MAX(metric_start.is_reviews_widget_loaded) AS is_reviews_widget_loaded_30d,\n MAX(metric_start.is_googlefeed_enabled) AS is_googlefeed_enabled_30d,\n MAX(metric_start.is_googlesellerrating_enabled) AS is_googlesellerrating_enabled_30d,\n MAX(metric_start.is_sitereviewafterproductreview_enabled) AS is_sitereviewafterproductreview_enabled_30d,\n MAX(metric_start.is_postman_enabled) AS is_postman_enabled_30d\nFROM review_and_orders_metrics AS metric_end \nLEFT JOIN review_and_orders_metrics AS metric_start \n ON DATEDIFF(metric_end.metric_date,metric_start.metric_date) BETWEEN 0 AND 30 \n AND metric_end.app_key = metric_start.app_key\nGROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31\n),\n\nactive_calculation_res AS (\nSELECT \n metric_date,\n app_key,\n organization_key,\n reviews_enablement_date,\n reviews_widget_version,\n review_cnt,\n reviewer_cnt,\n review_rating_sum,\n review_rating_avg,\n order_cnt,\n review_request_sent_cnt,\n is_facebooksyndication_enabled,\n is_coupons_enabled,\n is_retailsyndicationwalmart_enabled,\n is_widgetv3_enabled,\n is_bottomlinesyndication_enabled,\n is_googlefeed_enabled,\n is_richsnippet_enabled,\n is_reviewratingfields_enabled,\n is_reviewwithpictures_enabled,\n is_sitereviewafterproductreview_enabled,\n is_videosinreviews_enabled,\n is_customtranslations_enabled,\n is_googlesellerrating_enabled,\n is_cssversionededitor_enabled,\n is_csseditor_enabled,\n is_postman_enabled,\n is_map_enabled,\n is_reminder_enabled,\n is_reviews_widget_loaded,\n is_reviews_export,\n reviews_30d AS review_cnt_l30d,\n orders_30d AS order_cnt_l30d,\n review_reqeusts_30d AS review_request_sent_cnt_l30d,\n SMALLINT(is_map_enabled_30d) AS is_map_enabled_l30d,\n SMALLINT(is_reviews_widget_loaded_30d) AS is_reviews_widget_loaded_l30d,\n SMALLINT(is_googlefeed_enabled_30d) AS is_googlefeed_enabled_l30d,\n SMALLINT(is_googlesellerrating_enabled_30d) AS is_googlesellerrating_enabled_l30d,\n SMALLINT(is_sitereviewafterproductreview_enabled_30d) AS is_sitereviewafterproductreview_enabled_l30d,\n SMALLINT(is_postman_enabled_30d) AS is_postman_enabled_l30d,\n SMALLINT(IF(review_reqeusts_30d >=3 AND orders_30d >0,1,0)) AS is_active_tier_0,\n SMALLINT(IF(review_reqeusts_30d >=3 AND orders_30d >0 AND is_map_enabled_30d= 1,1,0)) AS is_active_tier_1,\n SMALLINT(IF(review_reqeusts_30d >=3 AND orders_30d >0 AND is_map_enabled_30d= 1 AND is_reviews_widget_loaded_30d = 1,1,0)) AS is_active_tier_2,\n SMALLINT(IF(review_reqeusts_30d >=3 AND orders_30d >0 AND is_map_enabled_30d= 1 AND is_reviews_widget_loaded_30d = 1 AND reviews_30d >0,1,0)) AS is_active_tier_3,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM d30_rolling_metrics\nWHERE DATE(metric_date) >= DATE('2020-01-01') AND DATE(metric_date) <= DATE_SUB(CURRENT_DATE,1)\n\n)\n\n-- Result --\n\nSELECT *\nFROM active_calculation_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__store_metrics_daily_24m": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__store_metrics_daily_24m", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.sql", "unique_id": "model.yoda.analytics___ugc__store_metrics_daily_24m", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_daily_24m", "analytics___ugc__store_metrics_daily_24m"], "alias": "analytics___ugc__store_metrics_daily_24m", "checksum": {"name": "sha256", "checksum": "13bf084d7fc9ca75328c6930752f43351e93fe8480779c7475c10100eece288f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["metric_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled table of ugc stores history on a daily level | Granularity & Primary Key: metric_date, app_key", "columns": {"metric_date": {"name": "metric_date", "description": "metric_date - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "store identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_key": {"name": "organization_key", "description": "FK: analytics___platform__organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "store url domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_name": {"name": "store_name", "description": "store name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_account_cs_segment": {"name": "sf_account_cs_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "latest_order_date": {"name": "latest_order_date", "description": "latest order date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "store_created_at": {"name": "store_created_at", "description": "store created timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_created_date": {"name": "store_created_date", "description": "store created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "plan_name": {"name": "plan_name", "description": "plan name: Reviews - Free, Yotpo Reviews Powerhouse, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type": {"name": "plan_type", "description": "plan type name: Annual, Free, SS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_group": {"name": "plan_group", "description": "Pro | Premium | Enterprise | Focus | Powerhouse | Prime | Growth | Free", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_day_plan_group": {"name": "previous_day_plan_group", "description": "previous day plan group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_group_change_type": {"name": "plan_group_change_type", "description": "plan group change type: upgrade, downgrade, unchanged", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_category": {"name": "plan_category", "description": "plan category name: LT/HT", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_reviews_enablement_date": {"name": "store_reviews_enablement_date", "description": "store reviews created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "store_reviews_enablement_period": {"name": "store_reviews_enablement_period", "description": "store reviews enablement period: Before 2019, 2020, 2021/05, 2021/06, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_orders_last_365d": {"name": "is_orders_last_365d", "description": "order in the last year indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ss": {"name": "is_ss", "description": "self service indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ht": {"name": "is_ht", "description": "is_free = 0 and is_ss = 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "plan is free indicator 1/0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_facebooksyndication_enabled": {"name": "is_facebooksyndication_enabled", "description": "feature_id = 380 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_coupons_enabled": {"name": "is_coupons_enabled", "description": "feature_id = 15 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_retailsyndicationwalmart_enabled": {"name": "is_retailsyndicationwalmart_enabled", "description": "feature_id = 316 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_widgetv3_enabled": {"name": "is_widgetv3_enabled", "description": "feature_id = 388 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_bottomlinesyndication_enabled": {"name": "is_bottomlinesyndication_enabled", "description": "feature_id = 199 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_googlefeed_enabled": {"name": "is_googlefeed_enabled", "description": "feature_id = 84 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_richsnippet_enabled": {"name": "is_richsnippet_enabled", "description": "feature_id = 3 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviewratingfields_enabled": {"name": "is_reviewratingfields_enabled", "description": "feature_id = 133 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviewwithpictures_enabled": {"name": "is_reviewwithpictures_enabled", "description": "feature_id = 138 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sitereviewafterproductreview_enabled": {"name": "is_sitereviewafterproductreview_enabled", "description": "feature_id = 339 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_videosinreviews_enabled": {"name": "is_videosinreviews_enabled", "description": "feature_id = 279 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_customtranslations_enabled": {"name": "is_customtranslations_enabled", "description": "feature_id = 118 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_googlesellerrating_enabled": {"name": "is_googlesellerrating_enabled", "description": "feature_id = 89 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_cssversionededitor_enabled": {"name": "is_cssversionededitor_enabled", "description": "feature_id = 210 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_csseditor_enabled": {"name": "is_csseditor_enabled", "description": "feature_id = 90 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_postman_enabled": {"name": "is_postman_enabled", "description": "feature_id = 402 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_map_enabled": {"name": "is_map_enabled", "description": "feature_id = 9 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reminder_enabled": {"name": "is_reminder_enabled", "description": "riminder is cosidered enabled when count of (feature_id = 9 is_user_enabled = true and is_disabled = false) is larger then one", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "materialized": "table", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "partition_by": ["metric_date"]}, "created_at": 1700082664.0585907, "relation_name": "dev_dkruh1.analytics___ugc__store_metrics_daily_24m", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('table', 'view'),\n partition_by = ['metric_date']\n )\n}}\n\n-- Import --\n\nWITH import_ugc_store_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___ugc__store_metrics_daily') }}\n),\n\nimport_ugc_plan_group_change_mapping AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__ugc_plan_group_change_mapping') }}\n),\n\nimport_ugc_store AS (\nSELECT * FROM {{ ref('analytics___ugc__store') }}\n),\n\nimport_platform_store AS (\nSELECT * FROM {{ ref('analytics___platform__store') }}\n),\n\nimport_store_plan AS (\nSELECT * FROM {{ ref('analytics___platform__store_plan_daily') }}\n),\n\nimport_feature_over_time AS (\nSELECT * FROM {{ ref('analytics___ugc__store_feature_over_time') }}\n),\n-- Logic --\n\nreviews_packages_daily_base AS (\nSELECT\n date,\n app_key,\n product_family,\n plan_name,\n CASE WHEN LOWER(plan_name) LIKE '%pro%' THEN ARRAY(1,'Pro')\n WHEN LOWER(plan_name) LIKE '%premium%' THEN ARRAY(2,'Premium')\n WHEN LOWER(plan_name) LIKE '%enterprise%' THEN ARRAY(3,'Enterprise')\n WHEN LOWER(plan_name) LIKE '%focus%' THEN ARRAY(4,'Focus')\n WHEN LOWER(plan_name) LIKE '%powerhouse%' THEN ARRAY(5,'Powerhouse')\n WHEN LOWER(plan_name) LIKE '%prime%' THEN ARRAY(7,'Prime') \n WHEN LOWER(plan_name) LIKE '%growth%' THEN ARRAY(6,'Growth') \n WHEN LOWER(plan_name) LIKE '%free%' THEN ARRAY(8,'Free')\n ELSE ARRAY(9,'other') END AS plan_group,\n is_self_service AS is_ss,\n is_free\nFROM import_store_plan\nWHERE is_reviews = 1\nAND is_self_service IS NOT NULL\n),\n\nreviews_packages_daily AS (\nSELECT\n date,\n app_key,\n product_family,\n plan_name,\n ROW_NUMBER() OVER(PARTITION BY app_key, date ORDER BY plan_group[0]) AS plan_rank,\n plan_group[1] AS plan_group,\n is_ss,\n is_free\nFROM reviews_packages_daily_base\n),\n\nugc_store_time_range AS (\nSELECT\n metric_date AS date,\n app_key,\n organization_key,\n reviews_enablement_date AS store_reviews_enablement_date,\n is_facebooksyndication_enabled,\n is_coupons_enabled,\n is_retailsyndicationwalmart_enabled,\n is_widgetv3_enabled,\n is_bottomlinesyndication_enabled,\n is_googlefeed_enabled,\n is_richsnippet_enabled,\n is_reviewratingfields_enabled,\n is_reviewwithpictures_enabled,\n is_sitereviewafterproductreview_enabled,\n is_videosinreviews_enabled,\n is_customtranslations_enabled,\n is_googlesellerrating_enabled,\n is_cssversionededitor_enabled,\n is_csseditor_enabled,\n is_postman_enabled,\n is_map_enabled,\n is_reminder_enabled\nFROM import_ugc_store_metrics_daily\nWHERE metric_date BETWEEN ADD_MONTHS(TRUNC(CURRENT_DATE, \"MONTH\"), -24) AND DATE_SUB(CURRENT_DATE,1)\n{% if target.name == 'dev' %}\nAND metric_date >= DATE_SUB(CURRENT_DATE,7)\n{% endif %}\n),\n\nugc_store_previous_day_plan_group AS (\nSELECT\n active.date,\n active.app_key,\n store.store_id,\n active.organization_key,\n store.organization_id,\n store.store_domain,\n store.store_name,\n store.is_orders_last_365d,\n store.latest_order_date,\n store.store_created_at,\n store.store_created_date,\n store.sf_account_cs_segment,\n active.store_reviews_enablement_date,\n CASE WHEN YEAR(active.store_reviews_enablement_date) < (YEAR(CURRENT_DATE) -4) THEN CONCAT('Before ', STRING(YEAR(CURRENT_DATE)-4))\n WHEN YEAR(active.store_reviews_enablement_date) < (YEAR(CURRENT_DATE) -2) THEN STRING(YEAR(active.store_reviews_enablement_date))\n ELSE DATE_FORMAT(active.store_reviews_enablement_date, 'yyyy/MM') END AS store_reviews_enablement_period,\n IFNULL(plan.plan_name, 'Reviews - Free') AS plan_name,\n CASE WHEN IFNULL(plan.is_free,1) = 1 THEN 'Free'\n WHEN IFNULL(plan.is_ss,0) = 1 THEN 'SS'\n WHEN plan.is_ss = 0 AND plan.is_free = 0 THEN 'Annual'\n ELSE NULL END AS plan_type,\n IFNULL(plan.plan_group,'Free') AS plan_group,\n IFNULL(LAG(plan.plan_group) OVER (PARTITION BY active.app_key ORDER BY active.date),'Free') AS previous_day_plan_group,\n IF(plan.is_ss = 0 AND plan.is_free = 0,'HT','LT') AS plan_category,\n SMALLINT(IFNULL(plan.is_ss,0)) AS is_ss,\n SMALLINT(IF(plan.is_ss = 0 AND plan.is_free = 0,1,0)) AS is_ht,\n SMALLINT(IFNULL(plan.is_free,1)) AS is_free,\n active.is_facebooksyndication_enabled,\n active.is_coupons_enabled,\n active.is_retailsyndicationwalmart_enabled,\n active.is_widgetv3_enabled,\n active.is_bottomlinesyndication_enabled,\n active.is_googlefeed_enabled,\n active.is_richsnippet_enabled,\n active.is_reviewratingfields_enabled,\n active.is_reviewwithpictures_enabled,\n active.is_sitereviewafterproductreview_enabled,\n active.is_videosinreviews_enabled,\n active.is_customtranslations_enabled,\n active.is_googlesellerrating_enabled,\n active.is_cssversionededitor_enabled,\n active.is_csseditor_enabled,\n active.is_postman_enabled,\n active.is_map_enabled,\n active.is_reminder_enabled\nFROM ugc_store_time_range AS active\nINNER JOIN import_ugc_store AS store\n ON active.app_key = store.app_key\nLEFT JOIN import_platform_store AS platform\n ON platform.app_key = active.app_key\nLEFT JOIN reviews_packages_daily AS plan\n ON active.app_key = plan.app_key\n AND active.date = plan.date\n AND plan.plan_rank = 1\n),\n\nstore_metrics_daily_res AS (\n SELECT\n ugc_store.date AS metric_date,\n ugc_store.app_key,\n ugc_store.store_id,\n ugc_store.organization_id,\n ugc_store.organization_key, \n ugc_store.store_domain,\n ugc_store.store_name,\n ugc_store.sf_account_cs_segment,\n ugc_store.latest_order_date,\n ugc_store.store_created_at,\n ugc_store.store_created_date,\n ugc_store.plan_name,\n ugc_store.plan_type,\n ugc_store.plan_group,\n ugc_store.previous_day_plan_group,\n change_mapping.plan_group_change_type, \n ugc_store.plan_category,\n ugc_store.store_reviews_enablement_date,\n ugc_store.store_reviews_enablement_period,\n ugc_store.is_orders_last_365d,\n ugc_store.is_ss,\n ugc_store.is_ht,\n ugc_store.is_free,\n ugc_store.is_facebooksyndication_enabled,\n ugc_store.is_coupons_enabled,\n ugc_store.is_retailsyndicationwalmart_enabled,\n ugc_store.is_widgetv3_enabled,\n ugc_store.is_bottomlinesyndication_enabled,\n ugc_store.is_googlefeed_enabled,\n ugc_store.is_richsnippet_enabled,\n ugc_store.is_reviewratingfields_enabled,\n ugc_store.is_reviewwithpictures_enabled,\n ugc_store.is_sitereviewafterproductreview_enabled,\n ugc_store.is_videosinreviews_enabled,\n ugc_store.is_customtranslations_enabled,\n ugc_store.is_googlesellerrating_enabled,\n ugc_store.is_cssversionededitor_enabled,\n ugc_store.is_csseditor_enabled,\n ugc_store.is_postman_enabled,\n ugc_store.is_map_enabled,\n ugc_store.is_reminder_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM ugc_store_previous_day_plan_group AS ugc_store\n LEFT JOIN import_ugc_plan_group_change_mapping AS change_mapping\n ON LOWER(ugc_store.previous_day_plan_group) = change_mapping.previous_day_plan_group\n AND LOWER(ugc_store.plan_group) = change_mapping.current_day_plan_group\n)\n\nSELECT * \nFROM store_metrics_daily_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___ugc_stg__ugc_plan_group_change_mapping", "package": null, "version": null}, {"name": "analytics___ugc__store", "package": null, "version": null}, {"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__store_plan_daily", "package": null, "version": null}, {"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping", "model.yoda.analytics___ugc__store", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___ugc__store_feature_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_store_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_metrics_daily\n),\n\nimport_ugc_plan_group_change_mapping AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__ugc_plan_group_change_mapping\n),\n\nimport_ugc_store AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store\n),\n\nimport_platform_store AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store\n),\n\nimport_store_plan AS (\nSELECT * FROM dev_dkruh1.analytics___platform__store_plan_daily\n),\n\nimport_feature_over_time AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_feature_over_time\n),\n-- Logic --\n\nreviews_packages_daily_base AS (\nSELECT\n date,\n app_key,\n product_family,\n plan_name,\n CASE WHEN LOWER(plan_name) LIKE '%pro%' THEN ARRAY(1,'Pro')\n WHEN LOWER(plan_name) LIKE '%premium%' THEN ARRAY(2,'Premium')\n WHEN LOWER(plan_name) LIKE '%enterprise%' THEN ARRAY(3,'Enterprise')\n WHEN LOWER(plan_name) LIKE '%focus%' THEN ARRAY(4,'Focus')\n WHEN LOWER(plan_name) LIKE '%powerhouse%' THEN ARRAY(5,'Powerhouse')\n WHEN LOWER(plan_name) LIKE '%prime%' THEN ARRAY(7,'Prime') \n WHEN LOWER(plan_name) LIKE '%growth%' THEN ARRAY(6,'Growth') \n WHEN LOWER(plan_name) LIKE '%free%' THEN ARRAY(8,'Free')\n ELSE ARRAY(9,'other') END AS plan_group,\n is_self_service AS is_ss,\n is_free\nFROM import_store_plan\nWHERE is_reviews = 1\nAND is_self_service IS NOT NULL\n),\n\nreviews_packages_daily AS (\nSELECT\n date,\n app_key,\n product_family,\n plan_name,\n ROW_NUMBER() OVER(PARTITION BY app_key, date ORDER BY plan_group[0]) AS plan_rank,\n plan_group[1] AS plan_group,\n is_ss,\n is_free\nFROM reviews_packages_daily_base\n),\n\nugc_store_time_range AS (\nSELECT\n metric_date AS date,\n app_key,\n organization_key,\n reviews_enablement_date AS store_reviews_enablement_date,\n is_facebooksyndication_enabled,\n is_coupons_enabled,\n is_retailsyndicationwalmart_enabled,\n is_widgetv3_enabled,\n is_bottomlinesyndication_enabled,\n is_googlefeed_enabled,\n is_richsnippet_enabled,\n is_reviewratingfields_enabled,\n is_reviewwithpictures_enabled,\n is_sitereviewafterproductreview_enabled,\n is_videosinreviews_enabled,\n is_customtranslations_enabled,\n is_googlesellerrating_enabled,\n is_cssversionededitor_enabled,\n is_csseditor_enabled,\n is_postman_enabled,\n is_map_enabled,\n is_reminder_enabled\nFROM import_ugc_store_metrics_daily\nWHERE metric_date BETWEEN ADD_MONTHS(TRUNC(CURRENT_DATE, \"MONTH\"), -24) AND DATE_SUB(CURRENT_DATE,1)\n\nAND metric_date >= DATE_SUB(CURRENT_DATE,7)\n\n),\n\nugc_store_previous_day_plan_group AS (\nSELECT\n active.date,\n active.app_key,\n store.store_id,\n active.organization_key,\n store.organization_id,\n store.store_domain,\n store.store_name,\n store.is_orders_last_365d,\n store.latest_order_date,\n store.store_created_at,\n store.store_created_date,\n store.sf_account_cs_segment,\n active.store_reviews_enablement_date,\n CASE WHEN YEAR(active.store_reviews_enablement_date) < (YEAR(CURRENT_DATE) -4) THEN CONCAT('Before ', STRING(YEAR(CURRENT_DATE)-4))\n WHEN YEAR(active.store_reviews_enablement_date) < (YEAR(CURRENT_DATE) -2) THEN STRING(YEAR(active.store_reviews_enablement_date))\n ELSE DATE_FORMAT(active.store_reviews_enablement_date, 'yyyy/MM') END AS store_reviews_enablement_period,\n IFNULL(plan.plan_name, 'Reviews - Free') AS plan_name,\n CASE WHEN IFNULL(plan.is_free,1) = 1 THEN 'Free'\n WHEN IFNULL(plan.is_ss,0) = 1 THEN 'SS'\n WHEN plan.is_ss = 0 AND plan.is_free = 0 THEN 'Annual'\n ELSE NULL END AS plan_type,\n IFNULL(plan.plan_group,'Free') AS plan_group,\n IFNULL(LAG(plan.plan_group) OVER (PARTITION BY active.app_key ORDER BY active.date),'Free') AS previous_day_plan_group,\n IF(plan.is_ss = 0 AND plan.is_free = 0,'HT','LT') AS plan_category,\n SMALLINT(IFNULL(plan.is_ss,0)) AS is_ss,\n SMALLINT(IF(plan.is_ss = 0 AND plan.is_free = 0,1,0)) AS is_ht,\n SMALLINT(IFNULL(plan.is_free,1)) AS is_free,\n active.is_facebooksyndication_enabled,\n active.is_coupons_enabled,\n active.is_retailsyndicationwalmart_enabled,\n active.is_widgetv3_enabled,\n active.is_bottomlinesyndication_enabled,\n active.is_googlefeed_enabled,\n active.is_richsnippet_enabled,\n active.is_reviewratingfields_enabled,\n active.is_reviewwithpictures_enabled,\n active.is_sitereviewafterproductreview_enabled,\n active.is_videosinreviews_enabled,\n active.is_customtranslations_enabled,\n active.is_googlesellerrating_enabled,\n active.is_cssversionededitor_enabled,\n active.is_csseditor_enabled,\n active.is_postman_enabled,\n active.is_map_enabled,\n active.is_reminder_enabled\nFROM ugc_store_time_range AS active\nINNER JOIN import_ugc_store AS store\n ON active.app_key = store.app_key\nLEFT JOIN import_platform_store AS platform\n ON platform.app_key = active.app_key\nLEFT JOIN reviews_packages_daily AS plan\n ON active.app_key = plan.app_key\n AND active.date = plan.date\n AND plan.plan_rank = 1\n),\n\nstore_metrics_daily_res AS (\n SELECT\n ugc_store.date AS metric_date,\n ugc_store.app_key,\n ugc_store.store_id,\n ugc_store.organization_id,\n ugc_store.organization_key, \n ugc_store.store_domain,\n ugc_store.store_name,\n ugc_store.sf_account_cs_segment,\n ugc_store.latest_order_date,\n ugc_store.store_created_at,\n ugc_store.store_created_date,\n ugc_store.plan_name,\n ugc_store.plan_type,\n ugc_store.plan_group,\n ugc_store.previous_day_plan_group,\n change_mapping.plan_group_change_type, \n ugc_store.plan_category,\n ugc_store.store_reviews_enablement_date,\n ugc_store.store_reviews_enablement_period,\n ugc_store.is_orders_last_365d,\n ugc_store.is_ss,\n ugc_store.is_ht,\n ugc_store.is_free,\n ugc_store.is_facebooksyndication_enabled,\n ugc_store.is_coupons_enabled,\n ugc_store.is_retailsyndicationwalmart_enabled,\n ugc_store.is_widgetv3_enabled,\n ugc_store.is_bottomlinesyndication_enabled,\n ugc_store.is_googlefeed_enabled,\n ugc_store.is_richsnippet_enabled,\n ugc_store.is_reviewratingfields_enabled,\n ugc_store.is_reviewwithpictures_enabled,\n ugc_store.is_sitereviewafterproductreview_enabled,\n ugc_store.is_videosinreviews_enabled,\n ugc_store.is_customtranslations_enabled,\n ugc_store.is_googlesellerrating_enabled,\n ugc_store.is_cssversionededitor_enabled,\n ugc_store.is_csseditor_enabled,\n ugc_store.is_postman_enabled,\n ugc_store.is_map_enabled,\n ugc_store.is_reminder_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM ugc_store_previous_day_plan_group AS ugc_store\n LEFT JOIN import_ugc_plan_group_change_mapping AS change_mapping\n ON LOWER(ugc_store.previous_day_plan_group) = change_mapping.previous_day_plan_group\n AND LOWER(ugc_store.plan_group) = change_mapping.current_day_plan_group\n)\n\nSELECT * \nFROM store_metrics_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__store_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__store_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.sql", "unique_id": "model.yoda.analytics___ugc__store_metrics_monthly", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_monthly", "analytics___ugc__store_metrics_monthly"], "alias": "analytics___ugc__store_metrics_monthly", "checksum": {"name": "sha256", "checksum": "7a463a8a1f7e06fb32e8bb3dcb26a3c3d2f069d7b33faa0c48e124c846a9d853"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["metric_month", "app_key"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled table of ugc store metrics history on a monthly level | PK and granularity: metric_month, app_key", "columns": {"metric_month": {"name": "metric_month", "description": "store activeness month - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_enablement_date": {"name": "reviews_enablement_date", "description": "reviews enablement date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "reviews_enablement_month": {"name": "reviews_enablement_month", "description": "reviews enablement month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "order_cnt": {"name": "order_cnt", "description": "number of orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_request_sent_cnt": {"name": "review_request_sent_cnt", "description": "number of review requests sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_cnt": {"name": "review_cnt", "description": "number of reviews", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reviewer_cnt": {"name": "reviewer_cnt", "description": "number of unique reviewers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_rating_sum": {"name": "review_rating_sum", "description": "sum of reviews ratings", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_with_review_request_cnt": {"name": "order_with_review_request_cnt", "description": "number of orders with a review request", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_with_first_email_opened_within_7d_cnt": {"name": "order_with_first_email_opened_within_7d_cnt", "description": "number of orders with a review request with email that opened within 7 days from the first email sent date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_with_review_request_and_review_cnt": {"name": "order_with_review_request_and_review_cnt", "description": "number of orders with a review request and a review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_with_first_email_opened_within_7d_ratio": {"name": "order_with_first_email_opened_within_7d_ratio", "description": "ratio of orders with a review request with email that opened within 7 days from the first email sent date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "order_with_review_request_to_review_ratio": {"name": "order_with_review_request_to_review_ratio", "description": "ratio of orders with a review request and a review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(14,4)"}, "previous_month_review_cnt": {"name": "previous_month_review_cnt", "description": "number of reviews in the previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_map_enabled": {"name": "is_map_enabled", "description": "reviews map enablement indicator: 0/1. feature_id = 9 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews_widget_loaded": {"name": "is_reviews_widget_loaded", "description": "reviews widget loaded indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_postman_enabled": {"name": "is_postman_enabled", "description": "Postman enablement indicator: 0/1. feature_id = 402 is_user_enabled = true and is_disabled = false", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_widgetv3_enabled": {"name": "is_widgetv3_enabled", "description": "widget V3 enabled indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["metric_month", "app_key"], "incremental_strategy": "merge"}, "created_at": 1700082664.1069496, "relation_name": "dev_dkruh1.analytics___ugc__store_metrics_monthly", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key=['metric_month','app_key'],\n incremental_strategy='merge',\n )\n}}\n\n-- Import --\n\nWITH import_ugc_store_metrics_daily AS (\nSELECT * FROM {{ ref('analytics___ugc__store_metrics_daily') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='metric_month',query_condition_column='metric_date',subtract=61)}}\n),\n\nimport_ugc_review AS (\nSELECT * FROM {{ ref('analytics___ugc__review') }}\n{% if is_incremental() %}\n{{incremental_condition(data_type='DATE',destination_condition_column='metric_month',query_condition_column='created_date',subtract=61)}}\n{% endif %}\n),\n\nimport_emails AS (\nSELECT * FROM {{ ref('analytics___ugc_stg__email') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='metric_month',query_condition_column='email_sent_date',subtract=61)}}\n),\n\n-- Logic --\n\nreview_calculation AS (\nSELECT\n TRUNC(metric_date,'MONTH') AS metric_month,\n app_key,\n reviews_enablement_date,\n SUM(order_cnt) AS order_cnt,\n SUM(review_cnt) AS review_cnt,\n SUM(review_rating_sum) AS review_rating_sum,\n SUM(review_request_sent_cnt) AS review_request_sent_cnt,\n MAX(is_map_enabled) AS is_map_enabled,\n MAX(is_reviews_widget_loaded) AS is_reviews_widget_loaded,\n MAX(is_postman_enabled) AS is_postman_enabled,\n MAX(is_widgetv3_enabled) AS is_widgetv3_enabled\nFROM import_ugc_store_metrics_daily\nGROUP BY 1,2,3\n),\n\nunique_reviewer_calculation AS (\nSELECT\n TRUNC(created_date,'MONTH') AS review_month,\n app_key,\n COUNT(DISTINCT reviewer_id) AS reviewer_cnt\nFROM import_ugc_review\nGROUP BY 1,2\n),\n\norder_first_email AS (\nSELECT\n app_key,\n order_id,\n MIN(email_sent_date) OVER (PARTITION BY app_key, order_id) AS first_order_email_sent_date,\n DATE(NVL(opened_at,'2999-12-31')) AS email_open_date,\n DATE(NVL(content_creation_at,'2999-12-31')) AS review_creation_date\nFROM import_emails\n),\n\nnumber_of_orders AS (\nSELECT\n TRUNC(first_order_email_sent_date,'MONTH') AS first_order_email_sent_month,\n app_key,\n COUNT(DISTINCT order_id) AS order_with_review_request_cnt,\n COUNT(DISTINCT IF(DATEDIFF(email_open_date,first_order_email_sent_date) BETWEEN 0 AND 7, order_id, NULL)) AS order_with_first_email_opened_within_7d_cnt,\n COUNT(DISTINCT IF(DATEDIFF(review_creation_date,first_order_email_sent_date) BETWEEN 0 AND 7, order_id, NULL)) AS order_with_review_request_and_review_cnt\nFROM order_first_email\nGROUP BY 1,2\n),\n\norder_review_request_metrics AS (\nSELECT\n first_order_email_sent_month,\n app_key,\n order_with_review_request_cnt,\n order_with_first_email_opened_within_7d_cnt,\n order_with_review_request_and_review_cnt,\n CAST(order_with_first_email_opened_within_7d_cnt/order_with_review_request_cnt AS DECIMAL(5,4)) AS order_with_first_email_opened_within_7d_ratio,\n CAST(order_with_review_request_and_review_cnt/order_with_review_request_cnt AS DECIMAL(5,4)) AS order_with_review_request_to_review_ratio\nFROM number_of_orders\n),\n\nugc_store_metrics_monthly_res AS (\nSELECT\n review.metric_month,\n review.app_key,\n review.reviews_enablement_date,\n TRUNC(review.reviews_enablement_date,'MONTH') AS reviews_enablement_month,\n review.order_cnt,\n review.review_request_sent_cnt,\n review.review_cnt,\n NVL(unique_reviewer.reviewer_cnt,0) AS reviewer_cnt,\n review.review_rating_sum,\n NVL(request.order_with_review_request_cnt, 0) AS order_with_review_request_cnt,\n NVL(request.order_with_first_email_opened_within_7d_cnt, 0) AS order_with_first_email_opened_within_7d_cnt,\n NVL(request.order_with_review_request_and_review_cnt, 0) AS order_with_review_request_and_review_cnt,\n NVL(request.order_with_first_email_opened_within_7d_ratio, 0) AS order_with_first_email_opened_within_7d_ratio,\n NVL(request.order_with_review_request_to_review_ratio, 0) AS order_with_review_request_to_review_ratio,\n NVL(review_previous_month.review_cnt,0) AS previous_month_review_cnt,\n review.is_map_enabled,\n review.is_reviews_widget_loaded,\n review.is_postman_enabled,\n review.is_widgetv3_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM review_calculation AS review\nLEFT JOIN review_calculation AS review_previous_month\n ON review.metric_month = ADD_MONTHS(review_previous_month.metric_month,1)\n AND review.app_key = review_previous_month.app_key\nLEFT JOIN unique_reviewer_calculation AS unique_reviewer\n ON review.metric_month = unique_reviewer.review_month\n AND review.app_key = unique_reviewer.app_key\nLEFT JOIN order_review_request_metrics AS request\n ON review.metric_month = request.first_order_email_sent_month\n AND review.app_key = request.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_store_metrics_monthly_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___ugc__review", "package": null, "version": null}, {"name": "analytics___ugc_stg__email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.incremental_condition", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc__review", "model.yoda.analytics___ugc_stg__email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_store_metrics_daily AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_metrics_daily\nWHERE DATE(metric_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_review AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__review\n\n),\n\nimport_emails AS (\nSELECT * FROM dev_dkruh1.analytics___ugc_stg__email\nWHERE DATE(email_sent_date) <= DATE_SUB(CURRENT_DATE,1)\n),\n\n-- Logic --\n\nreview_calculation AS (\nSELECT\n TRUNC(metric_date,'MONTH') AS metric_month,\n app_key,\n reviews_enablement_date,\n SUM(order_cnt) AS order_cnt,\n SUM(review_cnt) AS review_cnt,\n SUM(review_rating_sum) AS review_rating_sum,\n SUM(review_request_sent_cnt) AS review_request_sent_cnt,\n MAX(is_map_enabled) AS is_map_enabled,\n MAX(is_reviews_widget_loaded) AS is_reviews_widget_loaded,\n MAX(is_postman_enabled) AS is_postman_enabled,\n MAX(is_widgetv3_enabled) AS is_widgetv3_enabled\nFROM import_ugc_store_metrics_daily\nGROUP BY 1,2,3\n),\n\nunique_reviewer_calculation AS (\nSELECT\n TRUNC(created_date,'MONTH') AS review_month,\n app_key,\n COUNT(DISTINCT reviewer_id) AS reviewer_cnt\nFROM import_ugc_review\nGROUP BY 1,2\n),\n\norder_first_email AS (\nSELECT\n app_key,\n order_id,\n MIN(email_sent_date) OVER (PARTITION BY app_key, order_id) AS first_order_email_sent_date,\n DATE(NVL(opened_at,'2999-12-31')) AS email_open_date,\n DATE(NVL(content_creation_at,'2999-12-31')) AS review_creation_date\nFROM import_emails\n),\n\nnumber_of_orders AS (\nSELECT\n TRUNC(first_order_email_sent_date,'MONTH') AS first_order_email_sent_month,\n app_key,\n COUNT(DISTINCT order_id) AS order_with_review_request_cnt,\n COUNT(DISTINCT IF(DATEDIFF(email_open_date,first_order_email_sent_date) BETWEEN 0 AND 7, order_id, NULL)) AS order_with_first_email_opened_within_7d_cnt,\n COUNT(DISTINCT IF(DATEDIFF(review_creation_date,first_order_email_sent_date) BETWEEN 0 AND 7, order_id, NULL)) AS order_with_review_request_and_review_cnt\nFROM order_first_email\nGROUP BY 1,2\n),\n\norder_review_request_metrics AS (\nSELECT\n first_order_email_sent_month,\n app_key,\n order_with_review_request_cnt,\n order_with_first_email_opened_within_7d_cnt,\n order_with_review_request_and_review_cnt,\n CAST(order_with_first_email_opened_within_7d_cnt/order_with_review_request_cnt AS DECIMAL(5,4)) AS order_with_first_email_opened_within_7d_ratio,\n CAST(order_with_review_request_and_review_cnt/order_with_review_request_cnt AS DECIMAL(5,4)) AS order_with_review_request_to_review_ratio\nFROM number_of_orders\n),\n\nugc_store_metrics_monthly_res AS (\nSELECT\n review.metric_month,\n review.app_key,\n review.reviews_enablement_date,\n TRUNC(review.reviews_enablement_date,'MONTH') AS reviews_enablement_month,\n review.order_cnt,\n review.review_request_sent_cnt,\n review.review_cnt,\n NVL(unique_reviewer.reviewer_cnt,0) AS reviewer_cnt,\n review.review_rating_sum,\n NVL(request.order_with_review_request_cnt, 0) AS order_with_review_request_cnt,\n NVL(request.order_with_first_email_opened_within_7d_cnt, 0) AS order_with_first_email_opened_within_7d_cnt,\n NVL(request.order_with_review_request_and_review_cnt, 0) AS order_with_review_request_and_review_cnt,\n NVL(request.order_with_first_email_opened_within_7d_ratio, 0) AS order_with_first_email_opened_within_7d_ratio,\n NVL(request.order_with_review_request_to_review_ratio, 0) AS order_with_review_request_to_review_ratio,\n NVL(review_previous_month.review_cnt,0) AS previous_month_review_cnt,\n review.is_map_enabled,\n review.is_reviews_widget_loaded,\n review.is_postman_enabled,\n review.is_widgetv3_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM review_calculation AS review\nLEFT JOIN review_calculation AS review_previous_month\n ON review.metric_month = ADD_MONTHS(review_previous_month.metric_month,1)\n AND review.app_key = review_previous_month.app_key\nLEFT JOIN unique_reviewer_calculation AS unique_reviewer\n ON review.metric_month = unique_reviewer.review_month\n AND review.app_key = unique_reviewer.app_key\nLEFT JOIN order_review_request_metrics AS request\n ON review.metric_month = request.first_order_email_sent_month\n AND review.app_key = request.app_key\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_store_metrics_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__store_product_activeness_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__store_product_activeness_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.sql", "unique_id": "model.yoda.analytics___ugc__store_product_activeness_monthly", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_product_activeness_monthly", "analytics___ugc__store_product_activeness_monthly"], "alias": "analytics___ugc__store_product_activeness_monthly", "checksum": {"name": "sha256", "checksum": "d1a74a8571b1d43cccaa18cfc6eee0fc9762a2cbb0d1aab2a154f8902d16c3cb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "|\nModeled table of ugc stores with activeness indicators in a monthly level.\nThe table includes in each month only stores that are at least active in tier 1 (review_request_sent_cnt >= 3 AND order_cnt > 0).\nPK and granularity: app_key", "columns": {"activeness_month": {"name": "activeness_month", "description": "store activeness month - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active_tier_2": {"name": "is_active_tier_2", "description": "ugc product tier 2 activeness indicator: 0/1. Meaning: is_ugc_active_tier_1 = 1 AND is_map_enabled = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_active_tier_3": {"name": "is_active_tier_3", "description": "ugc product tier 3 activeness indicator: 0/1. Meaning: is_ugc_active_tier_2 = 1 AND is_reviews_widget_loaded = 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_active_tier_4": {"name": "is_active_tier_4", "description": "ugc product tier 4 activeness indicator: 0/1. Meaning: is_ugc_active_tier_3 = 1 AND review_cnt > 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082664.146397, "relation_name": "dev_dkruh1.analytics___ugc__store_product_activeness_monthly", "raw_code": "-- Import --\n\nWITH import_ugc_store_metrics_monthly AS (\nSELECT * FROM {{ ref('analytics___ugc__store_metrics_monthly') }}\n),\n\n-- Logic --\n\nstore_product_activeness_monthly_res AS (\nSELECT\n metric_month AS activeness_month,\n app_key,\n is_map_enabled AS is_active_tier_2,\n IF(is_map_enabled = 1 AND is_reviews_widget_loaded = 1,1,0) AS is_active_tier_3,\n IF(is_map_enabled = 1 AND is_reviews_widget_loaded = 1 AND review_cnt > 0,1,0) AS is_active_tier_4,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_store_metrics_monthly\nWHERE review_request_sent_cnt >= 3\nAND order_cnt > 0\n)\n\n-- Result --\n\nSELECT *\nFROM store_product_activeness_monthly_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_store_metrics_monthly AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__store_metrics_monthly\n),\n\n-- Logic --\n\nstore_product_activeness_monthly_res AS (\nSELECT\n metric_month AS activeness_month,\n app_key,\n is_map_enabled AS is_active_tier_2,\n IF(is_map_enabled = 1 AND is_reviews_widget_loaded = 1,1,0) AS is_active_tier_3,\n IF(is_map_enabled = 1 AND is_reviews_widget_loaded = 1 AND review_cnt > 0,1,0) AS is_active_tier_4,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_store_metrics_monthly\nWHERE review_request_sent_cnt >= 3\nAND order_cnt > 0\n)\n\n-- Result --\n\nSELECT *\nFROM store_product_activeness_monthly_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__store_widget_metrics_monthly": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__store_widget_metrics_monthly", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.sql", "unique_id": "model.yoda.analytics___ugc__store_widget_metrics_monthly", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_widget_metrics_monthly", "analytics___ugc__store_widget_metrics_monthly"], "alias": "analytics___ugc__store_widget_metrics_monthly", "checksum": {"name": "sha256", "checksum": "c38a452fd561a52786a8cc1b599f4ae1ad64fd9f8c55211ace1ac23c4d2e40a3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "UGC stores interactions with specific widget elements over the past 12 months. \nThis table indicates, for each store on a monthly basis, whether it had any interaction with a particular widget element. \nGranularity: app_key, month, widget_element, loaded_widget_version_type.", "columns": {"store_widget_month_id": {"name": "store_widget_month_id", "description": "PK | unique identifier from combining app_key|month|widget_element_pixel_event|loaded_widget_version_type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "Yotpo store's unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "organization key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_element_pixel_event": {"name": "widget_element_pixel_event", "description": "The specific widget element with which the store interacted during the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loaded_widget_version_type": {"name": "loaded_widget_version_type", "description": "Version of the widget associated with the loaded, shown, or clicked event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "widget_version_eligibility": {"name": "widget_version_eligibility", "description": "Based on feature ID 388 (WidgetV3). If this feature was enabled for a UGC store in a specific month, the value is 3. If not, the value is 2.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "platform_name": {"name": "platform_name", "description": "Platform Name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closing_plan_group": {"name": "closing_plan_group", "description": "The closing plan of the organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_3m_orders_avg_bucket": {"name": "last_3m_orders_avg_bucket", "description": "Last 3 months orders avg bucket", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active_tier_1": {"name": "is_active_tier_1", "description": "Indication if the store was active 1 (at least 3 review requests + at least 1 order) in a certain month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "analytics", "created_by": "omokotov@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082664.188879, "relation_name": "dev_dkruh1.analytics___ugc__store_widget_metrics_monthly", "raw_code": "-- Import --\nWITH \n import_ugc_store_metrics_monthly AS (\n SELECT * \n FROM {{ ref('analytics___ugc__store_metrics_monthly') }} \n WHERE metric_month >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\n ),\n import_platform_organization_plan_monthly AS (\n SELECT * \n FROM {{ ref('analytics___platform__organization_plan_monthly') }} \n WHERE month >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\n ),\n import_ugc_store AS (\n SELECT * \n FROM {{ ref('analytics___ugc__store') }}\n ),\n import_platform_store_pixel_metrics_daily AS (\n SELECT * \n FROM {{ ref('analytics___platform__store_pixel_metrics_daily') }}\n where date >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'), -12)\n ),\n import_platform_store_metrics_monthly AS (\n SELECT * \n FROM {{ ref('analytics___platform__store_metrics_monthly') }}\n WHERE month >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\n ),\n import_store_product_activeness_monthly as (\n SELECT * \n FROM {{ ref('analytics___platform__store_product_activeness_monthly') }} \n WHERE activeness_month >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\n ),\n\n -- Logic --\n metrics_monthly AS (\n SELECT \n metrics.app_key, \n metrics.metric_month AS month,\n orders.last_3m_orders_avg_bucket,\n metrics.is_widgetv3_enabled AS is_widgetv3_enabled,\n SMALLINT(IF(active.app_key IS NOT NULL,1,0)) AS is_active_tier_1\n FROM import_ugc_store_metrics_monthly AS metrics\n INNER JOIN import_platform_store_metrics_monthly AS orders\n ON metrics.app_key = orders.app_key\n AND metrics.metric_month = orders.month\n LEFT JOIN import_store_product_activeness_monthly AS active\n ON metrics.app_key = active.app_key \n AND metrics.metric_month = active.activeness_month\n AND is_ugc_active_tier_1 = 1\n ),\n\n packages_over_time AS (\n SELECT\n store.app_key, \n plan.organization_key,\n store.platform_name,\n plan.month,\n plan.closing_plan_group\n FROM import_platform_organization_plan_monthly AS plan\n INNER JOIN import_ugc_store AS store \n ON plan.organization_key = store.organization_key\n AND plan.month >= TRUNC(store.store_created_date,'MONTH')\n WHERE plan.is_reviews = 1\n AND store.is_active = 1 \n ),\n\n pixel_events_for_widgets_monthly AS (\n SELECT \n app_key, \n TRUNC(date,'MONTH') AS month,\n widget_element, \n widget_version_type AS widget_version_type\n FROM import_platform_store_pixel_metrics_daily\n WHERE product_name = 'ugc' \n GROUP BY 1, 2, 3, 4\n ),\n\n eligible_to_shown_res AS (\n SELECT DISTINCT\n SHA2(CONCAT(metrics.app_key, metrics.month, NVL(pixel.widget_element,''), NVL(pixel.widget_version_type,'')),256) AS store_widget_month_id,\n metrics.month,\n metrics.app_key, \n packages.organization_key,\n pixel.widget_element AS widget_element_pixel_event,\n pixel.widget_version_type AS loaded_widget_version_type,\n IF(metrics.is_widgetv3_enabled = 1,3,2) AS widget_version_eligibility, \n packages.platform_name,\n packages.closing_plan_group,\n metrics.last_3m_orders_avg_bucket,\n SMALLINT(IF(metrics.is_active_tier_1 = 1,1,0)) AS is_active_tier_1,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM metrics_monthly AS metrics\n LEFT JOIN packages_over_time AS packages \n ON metrics.app_key = packages.app_key \n AND metrics.month = packages.month\n LEFT JOIN pixel_events_for_widgets_monthly AS pixel \n ON packages.app_key = pixel.app_key \n AND packages.month = pixel.month\n )\n\nSELECT *\nFROM eligible_to_shown_res", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}, {"name": "analytics___ugc__store", "package": null, "version": null}, {"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__store_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__store_metrics_monthly", "model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___ugc__store", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___platform__store_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.sql", "compiled": true, "compiled_code": "-- Import --\nWITH \n import_ugc_store_metrics_monthly AS (\n SELECT * \n FROM dev_dkruh1.analytics___ugc__store_metrics_monthly \n WHERE metric_month >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\n ),\n import_platform_organization_plan_monthly AS (\n SELECT * \n FROM dev_dkruh1.analytics___platform__organization_plan_monthly \n WHERE month >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\n ),\n import_ugc_store AS (\n SELECT * \n FROM dev_dkruh1.analytics___ugc__store\n ),\n import_platform_store_pixel_metrics_daily AS (\n SELECT * \n FROM dev_dkruh1.analytics___platform__store_pixel_metrics_daily\n where date >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'), -12)\n ),\n import_platform_store_metrics_monthly AS (\n SELECT * \n FROM dev_dkruh1.analytics___platform__store_metrics_monthly\n WHERE month >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\n ),\n import_store_product_activeness_monthly as (\n SELECT * \n FROM dev_dkruh1.analytics___platform__store_product_activeness_monthly \n WHERE activeness_month >= ADD_MONTHS(TRUNC(CURRENT_DATE,'MONTH'),-12)\n ),\n\n -- Logic --\n metrics_monthly AS (\n SELECT \n metrics.app_key, \n metrics.metric_month AS month,\n orders.last_3m_orders_avg_bucket,\n metrics.is_widgetv3_enabled AS is_widgetv3_enabled,\n SMALLINT(IF(active.app_key IS NOT NULL,1,0)) AS is_active_tier_1\n FROM import_ugc_store_metrics_monthly AS metrics\n INNER JOIN import_platform_store_metrics_monthly AS orders\n ON metrics.app_key = orders.app_key\n AND metrics.metric_month = orders.month\n LEFT JOIN import_store_product_activeness_monthly AS active\n ON metrics.app_key = active.app_key \n AND metrics.metric_month = active.activeness_month\n AND is_ugc_active_tier_1 = 1\n ),\n\n packages_over_time AS (\n SELECT\n store.app_key, \n plan.organization_key,\n store.platform_name,\n plan.month,\n plan.closing_plan_group\n FROM import_platform_organization_plan_monthly AS plan\n INNER JOIN import_ugc_store AS store \n ON plan.organization_key = store.organization_key\n AND plan.month >= TRUNC(store.store_created_date,'MONTH')\n WHERE plan.is_reviews = 1\n AND store.is_active = 1 \n ),\n\n pixel_events_for_widgets_monthly AS (\n SELECT \n app_key, \n TRUNC(date,'MONTH') AS month,\n widget_element, \n widget_version_type AS widget_version_type\n FROM import_platform_store_pixel_metrics_daily\n WHERE product_name = 'ugc' \n GROUP BY 1, 2, 3, 4\n ),\n\n eligible_to_shown_res AS (\n SELECT DISTINCT\n SHA2(CONCAT(metrics.app_key, metrics.month, NVL(pixel.widget_element,''), NVL(pixel.widget_version_type,'')),256) AS store_widget_month_id,\n metrics.month,\n metrics.app_key, \n packages.organization_key,\n pixel.widget_element AS widget_element_pixel_event,\n pixel.widget_version_type AS loaded_widget_version_type,\n IF(metrics.is_widgetv3_enabled = 1,3,2) AS widget_version_eligibility, \n packages.platform_name,\n packages.closing_plan_group,\n metrics.last_3m_orders_avg_bucket,\n SMALLINT(IF(metrics.is_active_tier_1 = 1,1,0)) AS is_active_tier_1,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM metrics_monthly AS metrics\n LEFT JOIN packages_over_time AS packages \n ON metrics.app_key = packages.app_key \n AND metrics.month = packages.month\n LEFT JOIN pixel_events_for_widgets_monthly AS pixel \n ON packages.app_key = pixel.app_key \n AND packages.month = pixel.month\n )\n\nSELECT *\nFROM eligible_to_shown_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__unmigrated_review_request_token": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__unmigrated_review_request_token", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.sql", "unique_id": "model.yoda.analytics___ugc__unmigrated_review_request_token", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__unmigrated_review_request_token", "analytics___ugc__unmigrated_review_request_token"], "alias": "analytics___ugc__unmigrated_review_request_token", "checksum": {"name": "sha256", "checksum": "0cb583adef58b22a270dae643979e2606f09c191f734b14ca11bf1763aa2809d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "email_authentication_id", "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Incremental table of unmigrated review request tokens.\nPK and granularity: token / email_authentication_id", "columns": {"token": {"name": "token", "description": "review request token - string PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_authentication_id": {"name": "email_authentication_id", "description": "email authentication id - integer PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "users_email_control_id": {"name": "users_email_control_id", "description": "users email control id - forign key to ugc_stg__users_email_controls model", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_id": {"name": "review_id", "description": "review id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_id": {"name": "caller_id", "description": "caller id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_type": {"name": "caller_type", "description": "caller type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "token creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "token creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": "email_authentication_id", "incremental_strategy": "merge"}, "created_at": 1700082664.2364337, "relation_name": "dev_dkruh1.analytics___ugc__unmigrated_review_request_token", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key = 'email_authentication_id',\n incremental_strategy = 'merge',\n post_hook = dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.ugc_unmigrated_review_request_token ZORDER BY users_email_control_id;')\n )\n}}\n\n-- Import --\n\nWITH import_ugc_email_authentications AS (\nSELECT * \nFROM {{ ref('ugc_stg__email_authentications') }}\nWHERE DATE(created_at) <= '2020-10-18'\n{{incremental_condition(data_type='DATE',destination_condition_column='updated_at',subtract=7,sql_condition_key_word='AND')}}\n),\n\nimport_ugc_review_request_tokens AS (\nSELECT * \nFROM {{ ref('ugc_stg__review_request_tokens') }}\n),\n\n-- Logic --\n\nugc_unmigrated_review_request_token_res AS (\nSELECT\n auth.token,\n auth.id AS email_authentication_id,\n auth.users_email_control_id,\n auth.repliable_id AS review_id,\n auth.caller_id,\n auth.caller_type,\n auth.created_at,\n DATE(auth.created_at) AS created_date,\n auth.updated_at,\n DATE(auth.updated_at) AS updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_email_authentications AS auth\nLEFT JOIN import_ugc_review_request_tokens AS token\n ON DATE(auth.created_at) >= '2018-01-01'\n AND auth.token = token.token\nWHERE LOWER(auth.repliable_type) = 'review'\nAND token.token IS NULL\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_unmigrated_review_request_token_res", "language": "sql", "refs": [{"name": "ugc_stg__email_authentications", "package": null, "version": null}, {"name": "ugc_stg__review_request_tokens", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__email_authentications", "model.yoda.ugc_stg__review_request_tokens"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_email_authentications AS (\nSELECT * \nFROM dev_dkruh1.ugc_stg__email_authentications\nWHERE DATE(created_at) <= '2020-10-18'\nAND DATE(updated_at) <= DATE_SUB(CURRENT_DATE,1)\n),\n\nimport_ugc_review_request_tokens AS (\nSELECT * \nFROM dev_dkruh1.ugc_stg__review_request_tokens\n),\n\n-- Logic --\n\nugc_unmigrated_review_request_token_res AS (\nSELECT\n auth.token,\n auth.id AS email_authentication_id,\n auth.users_email_control_id,\n auth.repliable_id AS review_id,\n auth.caller_id,\n auth.caller_type,\n auth.created_at,\n DATE(auth.created_at) AS created_date,\n auth.updated_at,\n DATE(auth.updated_at) AS updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_email_authentications AS auth\nLEFT JOIN import_ugc_review_request_tokens AS token\n ON DATE(auth.created_at) >= '2018-01-01'\n AND auth.token = token.token\nWHERE LOWER(auth.repliable_type) = 'review'\nAND token.token IS NULL\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_unmigrated_review_request_token_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc__unmigrated_review_request_token_email": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc__unmigrated_review_request_token_email", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.sql", "unique_id": "model.yoda.analytics___ugc__unmigrated_review_request_token_email", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__unmigrated_review_request_token_email", "analytics___ugc__unmigrated_review_request_token_email"], "alias": "analytics___ugc__unmigrated_review_request_token_email", "checksum": {"name": "sha256", "checksum": "914b24267653f2b17b7486909f3607b772bf253f42e7ff41ea23b34e5200c190"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["email_authentication_id", "users_email_control_id"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Incremental table of unmigrated review request token's emails.\nPK and granularity: token / email_authentication_id & users_email_control_id", "columns": {"token": {"name": "token", "description": "token - PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_authentication_id": {"name": "email_authentication_id", "description": "email authentication id - PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "users_email_control_id": {"name": "users_email_control_id", "description": "users email control id - PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_id": {"name": "review_id", "description": "review id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_id": {"name": "caller_id", "description": "caller id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_type": {"name": "caller_type", "description": "caller type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "yotpo account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_address": {"name": "email_address", "description": "receiver email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "receiver user name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_type_id": {"name": "email_type_id", "description": "email type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_type": {"name": "email_type", "description": "email type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "form_type_id": {"name": "form_type_id", "description": "form type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "token_created_at": {"name": "token_created_at", "description": "token creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "token_created_date": {"name": "token_created_date", "description": "token creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "token_updated_at": {"name": "token_updated_at", "description": "token update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "token_updated_date": {"name": "token_updated_date", "description": "token update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "delivered_at": {"name": "delivered_at", "description": "email delivered timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delivered_date": {"name": "delivered_date", "description": "email delivered date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "email creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "email creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "email update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "email update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "latest_updated_at": {"name": "latest_updated_at", "description": "The latest updated_at value among the source models' updated_at columns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "latest_updated_date": {"name": "latest_updated_date", "description": "The latest updated_date value among the source models' updated_date columns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["email_authentication_id", "users_email_control_id"], "incremental_strategy": "merge"}, "created_at": 1700082664.2818089, "relation_name": "dev_dkruh1.analytics___ugc__unmigrated_review_request_token_email", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key = ['email_authentication_id','users_email_control_id'],\n incremental_strategy = 'merge',\n post_hook = dbt_data_applications.execute_only_on_production('OPTIMIZE public_analytics.ugc_unmigrated_review_request_token_email ZORDER BY users_email_control_id;')\n )\n}}\n\n-- Import --\n\nWITH import_ugc_unmigrated_review_request_token AS (\nSELECT * FROM {{ ref('analytics___ugc__unmigrated_review_request_token') }}\n),\n\nimport_ugc_users_email_controls AS (\nSELECT * FROM {{ ref('ugc_stg__users_email_controls') }}\n),\n\nimport_ugc_email_types AS (\nSELECT * FROM {{ ref('ugc_stg__email_types') }}\n),\n\n-- Logic --\n\n{% if is_incremental() -%}\nupdated_emails AS (\nSELECT DISTINCT users_email_control_id\nFROM import_ugc_unmigrated_review_request_token\n{{incremental_condition(data_type='DATE',destination_condition_column='token_updated_date',query_condition_column='updated_date',subtract=7)}}\nUNION\nSELECT id AS users_email_control_id\nFROM import_ugc_users_email_controls\n{{incremental_condition(data_type='DATE',destination_condition_column='updated_date',query_condition_column='updated_at',subtract=7)}}\n),\n{%- endif %}\n\nugc_unmigrated_review_request_token_email_res AS (\nSELECT\n token.token,\n token.email_authentication_id,\n token.users_email_control_id,\n token.review_id,\n token.caller_id,\n token.caller_type,\n email.account_id,\n email.user_email AS email_address,\n email.user_name,\n email.email_type_id,\n email_type.name AS email_type,\n email.formless AS form_type_id,\n token.created_at AS token_created_at,\n token.created_date AS token_created_date,\n token.updated_at AS token_updated_at,\n token.updated_date AS token_updated_date,\n email.delivered_at,\n DATE(email.delivered_at) AS delivered_date,\n email.created_at,\n DATE(email.created_at) AS created_date,\n email.updated_at,\n DATE(email.updated_at) AS updated_date,\n GREATEST(token.updated_at, email.updated_at) AS latest_updated_at,\n GREATEST(token.updated_date, DATE(email.updated_at)) AS latest_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_unmigrated_review_request_token AS token\nINNER JOIN import_ugc_users_email_controls AS email\n ON token.users_email_control_id = email.id\n{% if is_incremental() -%}\nINNER JOIN updated_emails\n ON token.users_email_control_id = updated_emails.users_email_control_id\n{%- endif %}\nLEFT JOIN import_ugc_email_types AS email_type\n ON email.email_type_id = email_type.id\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_unmigrated_review_request_token_email_res", "language": "sql", "refs": [{"name": "analytics___ugc__unmigrated_review_request_token", "package": null, "version": null}, {"name": "ugc_stg__users_email_controls", "package": null, "version": null}, {"name": "ugc_stg__email_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__unmigrated_review_request_token", "model.yoda.ugc_stg__users_email_controls", "model.yoda.ugc_stg__email_types"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_unmigrated_review_request_token AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__unmigrated_review_request_token\n),\n\nimport_ugc_users_email_controls AS (\nSELECT * FROM dev_dkruh1.ugc_stg__users_email_controls\n),\n\nimport_ugc_email_types AS (\nSELECT * FROM dev_dkruh1.ugc_stg__email_types\n),\n\n-- Logic --\n\n\n\nugc_unmigrated_review_request_token_email_res AS (\nSELECT\n token.token,\n token.email_authentication_id,\n token.users_email_control_id,\n token.review_id,\n token.caller_id,\n token.caller_type,\n email.account_id,\n email.user_email AS email_address,\n email.user_name,\n email.email_type_id,\n email_type.name AS email_type,\n email.formless AS form_type_id,\n token.created_at AS token_created_at,\n token.created_date AS token_created_date,\n token.updated_at AS token_updated_at,\n token.updated_date AS token_updated_date,\n email.delivered_at,\n DATE(email.delivered_at) AS delivered_date,\n email.created_at,\n DATE(email.created_at) AS created_date,\n email.updated_at,\n DATE(email.updated_at) AS updated_date,\n GREATEST(token.updated_at, email.updated_at) AS latest_updated_at,\n GREATEST(token.updated_date, DATE(email.updated_at)) AS latest_updated_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_unmigrated_review_request_token AS token\nINNER JOIN import_ugc_users_email_controls AS email\n ON token.users_email_control_id = email.id\n\nLEFT JOIN import_ugc_email_types AS email_type\n ON email.email_type_id = email_type.id\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_unmigrated_review_request_token_email_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__emails": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__emails", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.sql", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.sql", "unique_id": "model.yoda.analytics___ugc_stg__emails", "fqn": ["yoda", "analytics", "ugc", "staging", "base", "analytics___ugc_stg__emails", "analytics___ugc_stg__emails"], "alias": "analytics___ugc_stg__emails", "checksum": {"name": "sha256", "checksum": "8cfe4edbb278b5beecc1835a1dfa3f7715d8a420dc2d3d527312bddb3a82bbf7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "email_analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "email_analytics"], "description": "Representation of an email entity in the email analytics system. It is designed to store and manage various attributes and data related to emails, providing a structured and organized way to work with email information.", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "This column stores Upsolver schema version for the table.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "This column store DL processing time.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "This column stores the appKey (storeId) associated with the application.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "arrived_early_timestamp": {"name": "arrived_early_timestamp", "description": "This column captures the timestamp at which the recipient indicated that the email was received earlier than anticipated.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "batch_id": {"name": "batch_id", "description": "This column represents the id of the email batch to which the email belongs.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "batch_subject": {"name": "batch_subject", "description": "This column stores the subject of the email batch.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicked_through_timestamp": {"name": "clicked_through_timestamp", "description": "This column represents the timestamp when the recipient clicked through a link in the email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "content_creation_timestamp": {"name": "content_creation_timestamp", "description": "This column represents the timestamp when the email content was created.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "coupon_code": {"name": "coupon_code", "description": "This column stores the coupon code associated with the email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_address": {"name": "email_address", "description": "This column contains the email address of the recipient.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_id": {"name": "email_id", "description": "This column represents the email id. It serves as the primary key for this entity.\nThis column is a reference to yotpoapiprod's review_request_tokens.token and review_request_emails.review_request_token columns.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_sent_date": {"name": "email_sent_date", "description": "This column stores the date when the email was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email_sent_timestamp": {"name": "email_sent_timestamp", "description": "This column represents the timestamp when the email was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email_type": {"name": "email_type", "description": "This column stores the type of email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "failed_timestamp": {"name": "failed_timestamp", "description": "This column represents the timestamp when sending the email failed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "id": {"name": "id", "description": "This column represents the unique identifier for each email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "invalid_address_timestamp": {"name": "invalid_address_timestamp", "description": "This column represents the timestamp when the recipient's email address was found to be invalid.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "marked_spam_timestamp": {"name": "marked_spam_timestamp", "description": "This column represents the timestamp when the email was marked as spam by the recipient.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opened_timestamp": {"name": "opened_timestamp", "description": "This column represents the timestamp when the email was opened by the recipient.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_id": {"name": "order_id", "description": "This column stores the external ID of the order related to the email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_timestamp": {"name": "order_timestamp", "description": "This column represents the timestamp of when the order was created (ignoring the review request order timing logic).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "platform": {"name": "platform", "description": "This column stores the platform from which the email was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "This column stores the external ID of the product related to the email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reminder_num": {"name": "reminder_num", "description": "This column represents the number of reminders sent for a particular email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_form": {"name": "review_form", "description": "This column represents the form type used for submitting the review.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_type": {"name": "review_type", "description": "This column stores the type of review associated with the email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "This column represents the stock-keeping unit (SKU) associated with the product.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unsubscribed_timestamp": {"name": "unsubscribed_timestamp", "description": "This column represents the timestamp when the recipient unsubscribed from further emails.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "This column represents an indicator that signifies whether the email was deleted or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "email_analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082664.3577034, "relation_name": "dev_dkruh1.analytics___ugc_stg__emails", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('analytics__email_analytics', 'emails') }}\n\n), analytics___ugc_stg__emails AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\tapp_key,\n\t\tarrived_early_timestamp,\n\t\tbatch_id,\n\t\tbatch_subject,\n\t\tclicked_through_timestamp,\n\t\tcontent_creation_timestamp,\n\t\tcoupon_code,\n\t\temail_address,\n\t\temail_id,\n\t\temail_sent_date,\n\t\temail_sent_timestamp,\n\t\temail_type,\n\t\tfailed_timestamp,\n\t\tid,\n\t\tinvalid_address_timestamp,\n\t\tmarked_spam_timestamp,\n\t\topened_timestamp,\n\t\torder_id,\n\t\torder_timestamp,\n\t\tplatform,\n\t\tproduct_id,\n\t\treminder_num,\n\t\treview_form,\n\t\treview_type,\n\t\tsku,\n\t\tunsubscribed_timestamp,\n\t\tis_deleted\n FROM source\n\n)\n\nSELECT * \nFROM analytics___ugc_stg__emails", "language": "sql", "refs": [], "sources": [["analytics__email_analytics", "emails"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__email_analytics.emails"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM email_analytics.emails\n\n), analytics___ugc_stg__emails AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\tapp_key,\n\t\tarrived_early_timestamp,\n\t\tbatch_id,\n\t\tbatch_subject,\n\t\tclicked_through_timestamp,\n\t\tcontent_creation_timestamp,\n\t\tcoupon_code,\n\t\temail_address,\n\t\temail_id,\n\t\temail_sent_date,\n\t\temail_sent_timestamp,\n\t\temail_type,\n\t\tfailed_timestamp,\n\t\tid,\n\t\tinvalid_address_timestamp,\n\t\tmarked_spam_timestamp,\n\t\topened_timestamp,\n\t\torder_id,\n\t\torder_timestamp,\n\t\tplatform,\n\t\tproduct_id,\n\t\treminder_num,\n\t\treview_form,\n\t\treview_type,\n\t\tsku,\n\t\tunsubscribed_timestamp,\n\t\tis_deleted\n FROM source\n\n)\n\nSELECT * \nFROM analytics___ugc_stg__emails", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__ugc_plan_group_change_mapping", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.sql", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.sql", "unique_id": "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping", "fqn": ["yoda", "analytics", "ugc", "staging", "base", "analytics___ugc_stg__ugc_plan_group_change_mapping", "analytics___ugc_stg__ugc_plan_group_change_mapping"], "alias": "analytics___ugc_stg__ugc_plan_group_change_mapping", "checksum": {"name": "sha256", "checksum": "cec70f73f7de78592241e278120fdfc595233117ca06065c29b6162388e0535b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "static table of ugc plan group change mapping | PK and granularity: current_day_plan_group, previous_day_plan_group", "columns": {"previous_day_plan_group": {"name": "previous_day_plan_group", "description": "previous day plan group: free, premium, focus, etc. - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_day_plan_group": {"name": "current_day_plan_group", "description": "current day plan group: free, premium, focus, etc. - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_group_change_type": {"name": "plan_group_change_type", "description": "plan group change type: upgrade, downgrade, unchanged", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082664.3704596, "relation_name": "dev_dkruh1.analytics___ugc_stg__ugc_plan_group_change_mapping", "raw_code": "WITH source AS (\n SELECT * FROM {{ source('ugc__static', 'ugc_plan_group_change_mapping') }}\n), \n\nugc_stg__ugc_plan_group_change_mapping AS (\nSELECT \n previous_day_plan_group,\n current_day_plan_group,\n plan_group_change_type,\n dwh_updated_at\nFROM source\n)\n\nSELECT * \nFROM ugc_stg__ugc_plan_group_change_mapping", "language": "sql", "refs": [], "sources": [["ugc__static", "ugc_plan_group_change_mapping"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__static.ugc_plan_group_change_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.sql", "compiled": true, "compiled_code": "WITH source AS (\n SELECT * FROM static.ugc_plan_group_change_mapping\n), \n\nugc_stg__ugc_plan_group_change_mapping AS (\nSELECT \n previous_day_plan_group,\n current_day_plan_group,\n plan_group_change_type,\n dwh_updated_at\nFROM source\n)\n\nSELECT * \nFROM ugc_stg__ugc_plan_group_change_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__comment": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__comment", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.sql", "unique_id": "model.yoda.analytics___ugc_stg__comment", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__comment", "analytics___ugc_stg__comment"], "alias": "analytics___ugc_stg__comment", "checksum": {"name": "sha256", "checksum": "608000c8d04ebc31fee0adfe6ecab4200e772424aca351f54280b4402eccc623"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled view of review comments | PK and granularity: comment_id", "columns": {"comment_id": {"name": "comment_id", "description": "comment identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "commentable_id": {"name": "commentable_id", "description": "commentable identifier, e.g: review_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "user identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_comment_id": {"name": "source_comment_id", "description": "source comment identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "commentable_type": {"name": "commentable_type", "description": "commentable type: review, question", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "content": {"name": "content", "description": "comment content", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "commenter_display_name": {"name": "commenter_display_name", "description": "commenter display name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_public": {"name": "is_public", "description": "public indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_approved": {"name": "is_approved", "description": "approved indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082664.4150124, "relation_name": "dev_dkruh1.analytics___ugc_stg__comment", "raw_code": "-- Import --\n\nWITH import_ugc_stg__comments (\nSELECT * FROM {{ ref('ugc_stg__comments') }}\n),\n\n-- Logic --\n\nugc_stg__comment_res AS (\nSELECT\n id AS comment_id,\n commentable_id,\n user_id, \n source_comment_id,\n LOWER(commentable_type) AS commentable_type,\n TRIM(content) AS content,\n TRIM(commenter_display_name) AS commenter_display_name,\n SMALLINT(public) AS is_public,\n SMALLINT(approved) AS is_approved,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg__comments\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__comment_res", "language": "sql", "refs": [{"name": "ugc_stg__comments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__comments"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_stg__comments (\nSELECT * FROM dev_dkruh1.ugc_stg__comments\n),\n\n-- Logic --\n\nugc_stg__comment_res AS (\nSELECT\n id AS comment_id,\n commentable_id,\n user_id, \n source_comment_id,\n LOWER(commentable_type) AS commentable_type,\n TRIM(content) AS content,\n TRIM(commenter_display_name) AS commenter_display_name,\n SMALLINT(public) AS is_public,\n SMALLINT(approved) AS is_approved,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg__comments\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__comment_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__dirty_words_content": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__dirty_words_content", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.sql", "unique_id": "model.yoda.analytics___ugc_stg__dirty_words_content", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__dirty_words_content", "analytics___ugc_stg__dirty_words_content"], "alias": "analytics___ugc_stg__dirty_words_content", "checksum": {"name": "sha256", "checksum": "e2b43647332bc0f6a48149365849de6ad158523960d4fffc9a2d0a063b544c9c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled view of reviews and questions with dirty words | PK and granularity: content_dirty_word_id", "columns": {"row_id": {"name": "row_id", "description": "row unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "content_object_id": {"name": "content_object_id", "description": "content object unique identifier, e.g: review_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "content_object_type": {"name": "content_object_type", "description": "content object type: review, comment, question, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dirty_words_content": {"name": "dirty_words_content", "description": "dirty words content", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082664.4472978, "relation_name": "dev_dkruh1.analytics___ugc_stg__dirty_words_content", "raw_code": "-- Import --\n\nWITH import_ugc_stg_dirty_words (\nSELECT * FROM {{ ref('ugc_stg__dirty_words') }}\n),\n\n-- Logic --\n\nugc_stg__dirty_words_content_res AS (\nSELECT\n id AS row_id,\n model_id AS content_object_id,\n IF(LOWER(model_type) = 'reviewcontent', 'review_content',LOWER(model_type)) AS content_object_type,\n words AS dirty_words_content,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg_dirty_words\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__dirty_words_content_res", "language": "sql", "refs": [{"name": "ugc_stg__dirty_words", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__dirty_words"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_stg_dirty_words (\nSELECT * FROM dev_dkruh1.ugc_stg__dirty_words\n),\n\n-- Logic --\n\nugc_stg__dirty_words_content_res AS (\nSELECT\n id AS row_id,\n model_id AS content_object_id,\n IF(LOWER(model_type) = 'reviewcontent', 'review_content',LOWER(model_type)) AS content_object_type,\n words AS dirty_words_content,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg_dirty_words\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__dirty_words_content_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__email": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__email", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.sql", "unique_id": "model.yoda.analytics___ugc_stg__email", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__email", "analytics___ugc_stg__email"], "alias": "analytics___ugc_stg__email", "checksum": {"name": "sha256", "checksum": "13ddb7826e0eff5b0715882d3fde63949044da201fc4b35f8ddeb45352e08295"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled View over email_analytics.emails Granularity & PK: email_id", "columns": {"email_analytics_id": {"name": "email_analytics_id", "description": "PK: email_analytics_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_id": {"name": "email_id", "description": "PK: email_id\nThis is a reference to yotpoapiprod's review_request_tokens.token and review_request_emails.review_request_token columns.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "The appKey (storeId) associated with the application.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "The platform from which the email was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_form": {"name": "review_form", "description": "The form type used for submitting the review.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "coupon_code": {"name": "coupon_code", "description": "The coupon code associated with the email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_type": {"name": "review_type", "description": "The type of review associated with the email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "The stock-keeping unit (SKU) associated with the product.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "The id of the product related to the email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "The id of the order related to the email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_type": {"name": "email_type", "description": "The type of email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_address": {"name": "email_address", "description": "The email address of the recipient.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "batch_subject": {"name": "batch_subject", "description": "The subject of the email batch.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "batch_id": {"name": "batch_id", "description": "The id of the email batch to which the email belongs.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reminder_num": {"name": "reminder_num", "description": "The number of reminders sent for a particular email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_sent_date": {"name": "email_sent_date", "description": "The date when the email was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "email_sent_at": {"name": "email_sent_at", "description": "The timestamp when the email was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "invalid_address_at": {"name": "invalid_address_at", "description": "The timestamp when the recipient's email address was found to be invalid.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "failed_at": {"name": "failed_at", "description": "The timestamp when sending the email failed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "marked_spam_at": {"name": "marked_spam_at", "description": "The timestamp when the email was marked as spam by the recipient.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "arrived_early_at": {"name": "arrived_early_at", "description": "The timestamp at which the recipient indicated that the email was received earlier than anticipated.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "clicked_through_at": {"name": "clicked_through_at", "description": "The timestamp when the recipient clicked through a link in the email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "unsubscribed_at": {"name": "unsubscribed_at", "description": "The timestamp when the recipient unsubscribed from further emails.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "content_creation_at": {"name": "content_creation_at", "description": "The timestamp when the email content was created.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opened_at": {"name": "opened_at", "description": "The timestamp when the email was opened by the recipient.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_at": {"name": "order_at", "description": "The timestamp of the order.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082664.4953265, "relation_name": "dev_dkruh1.analytics___ugc_stg__email", "raw_code": "WITH import_emails AS (\n SELECT * FROM {{ ref('analytics___ugc_stg__emails') }}\n), \n\nemail_res AS (\n SELECT\n id AS email_analytics_id,\n email_id,\n app_key,\n platform,\n review_form,\n coupon_code,\n review_type,\n sku,\n product_id,\n order_id,\n email_type,\n email_address,\n batch_subject,\n batch_id,\n reminder_num,\n DATE(email_sent_date) AS email_sent_date,\n email_sent_timestamp AS email_sent_at,\n invalid_address_timestamp AS invalid_address_at,\n failed_timestamp AS failed_at,\n marked_spam_timestamp AS marked_spam_at,\n arrived_early_timestamp AS arrived_early_at,\n clicked_through_timestamp AS clicked_through_at,\n unsubscribed_timestamp AS unsubscribed_at,\n content_creation_timestamp AS content_creation_at,\n opened_timestamp AS opened_at,\n order_timestamp AS order_at\n FROM import_emails\n)\n\nSELECT * \nFROM email_res", "language": "sql", "refs": [{"name": "analytics___ugc_stg__emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc_stg__emails"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.sql", "compiled": true, "compiled_code": "WITH import_emails AS (\n SELECT * FROM dev_dkruh1.analytics___ugc_stg__emails\n), \n\nemail_res AS (\n SELECT\n id AS email_analytics_id,\n email_id,\n app_key,\n platform,\n review_form,\n coupon_code,\n review_type,\n sku,\n product_id,\n order_id,\n email_type,\n email_address,\n batch_subject,\n batch_id,\n reminder_num,\n DATE(email_sent_date) AS email_sent_date,\n email_sent_timestamp AS email_sent_at,\n invalid_address_timestamp AS invalid_address_at,\n failed_timestamp AS failed_at,\n marked_spam_timestamp AS marked_spam_at,\n arrived_early_timestamp AS arrived_early_at,\n clicked_through_timestamp AS clicked_through_at,\n unsubscribed_timestamp AS unsubscribed_at,\n content_creation_timestamp AS content_creation_at,\n opened_timestamp AS opened_at,\n order_timestamp AS order_at\n FROM import_emails\n)\n\nSELECT * \nFROM email_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__image": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__image", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.sql", "unique_id": "model.yoda.analytics___ugc_stg__image", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__image", "analytics___ugc_stg__image"], "alias": "analytics___ugc_stg__image", "checksum": {"name": "sha256", "checksum": "7100b465fdb6f5cafa72bb480ed789eb312b4af930c5601cb231110f41bf4e5f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled view of images | PK and granularity: image_id", "columns": {"image_id": {"name": "image_id", "description": "image_id - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imageable_id": {"name": "imageable_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imageable_type": {"name": "imageable_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_kind": {"name": "image_kind", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_fingerprint": {"name": "image_fingerprint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_file_name": {"name": "image_file_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_content_type": {"name": "image_content_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_file_size": {"name": "image_file_size", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_published": {"name": "is_published", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sromano@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082664.5417953, "relation_name": "dev_dkruh1.analytics___ugc_stg__image", "raw_code": "-- Import --\n\nWITH import_stg_images AS (\n\n SELECT * FROM {{ ref('ugc_stg__images') }}\n\n), \n\n-- Logic --\n\nugc_stg__image_res AS (\n\n SELECT \n id AS image_id,\n imageable_id,\n imageable_type,\n kind AS image_kind,\n image_fingerprint,\n image_file_name,\n image_content_type,\n image_file_size,\n SMALLINT(published) AS is_published,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\n FROM import_stg_images\n\n)\n\n-- Result --\n\nSELECT * \nFROM ugc_stg__image_res", "language": "sql", "refs": [{"name": "ugc_stg__images", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__images"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_stg_images AS (\n\n SELECT * FROM dev_dkruh1.ugc_stg__images\n\n), \n\n-- Logic --\n\nugc_stg__image_res AS (\n\n SELECT \n id AS image_id,\n imageable_id,\n imageable_type,\n kind AS image_kind,\n image_fingerprint,\n image_file_name,\n image_content_type,\n image_file_size,\n SMALLINT(published) AS is_published,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\n FROM import_stg_images\n\n)\n\n-- Result --\n\nSELECT * \nFROM ugc_stg__image_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__metadata_type": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__metadata_type", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.sql", "unique_id": "model.yoda.analytics___ugc_stg__metadata_type", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__metadata_type", "analytics___ugc_stg__metadata_type"], "alias": "analytics___ugc_stg__metadata_type", "checksum": {"name": "sha256", "checksum": "e49ed328376d53d54994987654b872a8a0229bfe26a537f0a569d09387f62f9a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled mapping view of metadata types | PK and granularity: metadata_type_id", "columns": {"metadata_type_id": {"name": "metadata_type_id", "description": "metadata key identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "metadata_name": {"name": "metadata_name", "description": "metadata name: country_code, city, device_name, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082664.5739353, "relation_name": "dev_dkruh1.analytics___ugc_stg__metadata_type", "raw_code": "-- Import --\n\nWITH import_ugc_stg__metadata_types AS (\nSELECT * FROM {{ ref('ugc_stg__metadata_types') }}\n),\n\n-- Logic --\n\nugc_stg__metadata_type_res AS (\nSELECT\n id AS metadata_type_id,\n value AS metadata_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg__metadata_types\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__metadata_type_res", "language": "sql", "refs": [{"name": "ugc_stg__metadata_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__metadata_types"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_stg__metadata_types AS (\nSELECT * FROM dev_dkruh1.ugc_stg__metadata_types\n),\n\n-- Logic --\n\nugc_stg__metadata_type_res AS (\nSELECT\n id AS metadata_type_id,\n value AS metadata_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg__metadata_types\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__metadata_type_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__owner_feature_enablement_event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__owner_feature_enablement_event", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.sql", "unique_id": "model.yoda.analytics___ugc_stg__owner_feature_enablement_event", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_enablement_event", "analytics___ugc_stg__owner_feature_enablement_event"], "alias": "analytics___ugc_stg__owner_feature_enablement_event", "checksum": {"name": "sha256", "checksum": "2e11001642beda2c3d6fa654f6f1b54b165f91614d7abb0b24b2aaf2b93e3fd7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["owner_feature_id", "updated_at", "is_disabled", "is_user_enabled", "is_floating"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Incremental table over owner_feature, traking changes in owner_feature_id enablement - (3,9,13,15,17,54,72,73,84,89,90,100,107,118,133,138,142,199,210,218,279,316,339,380,388,419)\n402 - added 9/8/2023", "columns": {"owner_feature_id": {"name": "owner_feature_id", "description": "FK - platform_stg__owners_features", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "ID accourding to owner_type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_id": {"name": "feature_id", "description": "FK - platform_stg__features", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_type": {"name": "owner_type", "description": "Organization, User, Account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "disabled": {"name": "disabled", "description": "If is_diabled = 1 the user is not allowed to connect", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_enabled": {"name": "user_enabled", "description": "User/CSM enabled feature", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "floating": {"name": "floating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_disabled": {"name": "is_disabled", "description": "coalesce(disabled,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_user_enabled": {"name": "is_user_enabled", "description": "coalesce(user_enabled,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_floating": {"name": "is_floating", "description": "coalesce(floating,0)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "incremental", "unique_key": ["owner_feature_id", "updated_at", "is_disabled", "is_user_enabled", "is_floating"], "incremental_strategy": "merge"}, "created_at": 1700082664.6092682, "relation_name": "dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{ config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key = ['owner_feature_id','updated_at','is_disabled','is_user_enabled','is_floating'],\n incremental_strategy = 'merge'\n )\n}}\n\nWITH import_owner_feature AS (\n\n SELECT * \n FROM {{ ref('analytics___platform_stg__owner_feature') }}\n {% if is_incremental() %}\n WHERE DATE(updated_at) >= (SELECT DATE_SUB(DATE(max(updated_at)),7) FROM {{ this }})\n {% endif %}\n\n), owner_feature_cdc AS (\n\n SELECT\n owner_feature_id,\n owner_id,\n feature_id,\n owner_type,\n created_at,\n updated_at,\n disabled,\n user_enabled,\n floating,\n is_disabled,\n is_user_enabled,\n is_floating,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_owner_feature\n WHERE feature_id IN (3,9,13,15,17,54,72,73,84,89,90,100,107,118,133,138,142,199,210,218,279,316,339,380,388,389,419,402,403)\n)\n\nSELECT *\nFROM owner_feature_cdc", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH import_owner_feature AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___platform_stg__owner_feature\n \n\n), owner_feature_cdc AS (\n\n SELECT\n owner_feature_id,\n owner_id,\n feature_id,\n owner_type,\n created_at,\n updated_at,\n disabled,\n user_enabled,\n floating,\n is_disabled,\n is_user_enabled,\n is_floating,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_owner_feature\n WHERE feature_id IN (3,9,13,15,17,54,72,73,84,89,90,100,107,118,133,138,142,199,210,218,279,316,339,380,388,389,419,402,403)\n)\n\nSELECT *\nFROM owner_feature_cdc", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__owner_feature_setting_change_event": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__owner_feature_setting_change_event", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.sql", "unique_id": "model.yoda.analytics___ugc_stg__owner_feature_setting_change_event", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_setting_change_event", "analytics___ugc_stg__owner_feature_setting_change_event"], "alias": "analytics___ugc_stg__owner_feature_setting_change_event", "checksum": {"name": "sha256", "checksum": "6b5e0458aa73c140fecaa41196873aa3a40575574cba8fad06609aec115bb18f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["owner_feature_id", "updated_at", "key", "value"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Incremental table over owner_feature_settings, traking changes in owner_feature_id key/value settings for (3,9,13,15,17,54,72,73,84,89,90,100,107,118,133,138,142,199,210,218,279,316,339,380,388,419)", "columns": {"owner_feature_id": {"name": "owner_feature_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_id": {"name": "feature_id", "description": "FK - platform_stg__features", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "key": {"name": "key", "description": "Feature settings name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "Feature settings value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_floating": {"name": "is_floating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "incremental", "unique_key": ["owner_feature_id", "updated_at", "key", "value"], "incremental_strategy": "merge"}, "created_at": 1700082664.681565, "relation_name": "dev_dkruh1.analytics___ugc_stg__owner_feature_setting_change_event", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{ config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key = ['owner_feature_id','updated_at','key','value'],\n incremental_strategy = 'merge'\n )\n}}\n\nWITH import_owner_feature_setting AS (\n\n SELECT * \n FROM {{ ref('analytics___platform_stg__owner_feature_setting') }}\n WHERE created_at IS NOT NULL\n AND updated_at IS NOT NULL\n AND key IS NOT NULL\n AND value IS NOT NULL\n {% if is_incremental() %}\n AND DATE(updated_at) >= (SELECT DATE_SUB(DATE(max(updated_at)),7) FROM {{ this }})\n {% endif %}\n\n), import_owner_feature AS (\n\n SELECT * \n FROM {{ ref('analytics___platform_stg__owner_feature') }}\n\n), owner_feature_setting_change_event AS (\n\n SELECT\n feature_settings.owner_feature_id,\n owners_features.feature_id,\n feature_settings.key,\n feature_settings.value,\n feature_settings.is_floating,\n feature_settings.created_at,\n feature_settings.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_owner_feature_setting AS feature_settings\n INNER JOIN import_owner_feature AS owners_features\n ON feature_settings.owner_feature_id = owners_features.owner_feature_id\n WHERE owners_features.feature_id IN (3,9,13,15,17,54,72,73,84,89,90,100,107,118,133,138,142,199,210,218,279,316,339,380,388,389,419,403)\n\n)\n\nSELECT *\nFROM owner_feature_setting_change_event", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature_setting", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature_setting", "model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH import_owner_feature_setting AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___platform_stg__owner_feature_setting\n WHERE created_at IS NOT NULL\n AND updated_at IS NOT NULL\n AND key IS NOT NULL\n AND value IS NOT NULL\n \n\n), import_owner_feature AS (\n\n SELECT * \n FROM dev_dkruh1.analytics___platform_stg__owner_feature\n\n), owner_feature_setting_change_event AS (\n\n SELECT\n feature_settings.owner_feature_id,\n owners_features.feature_id,\n feature_settings.key,\n feature_settings.value,\n feature_settings.is_floating,\n feature_settings.created_at,\n feature_settings.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM import_owner_feature_setting AS feature_settings\n INNER JOIN import_owner_feature AS owners_features\n ON feature_settings.owner_feature_id = owners_features.owner_feature_id\n WHERE owners_features.feature_id IN (3,9,13,15,17,54,72,73,84,89,90,100,107,118,133,138,142,199,210,218,279,316,339,380,388,389,419,403)\n\n)\n\nSELECT *\nFROM owner_feature_setting_change_event", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__reminder": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__reminder", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.sql", "unique_id": "model.yoda.analytics___ugc_stg__reminder", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__reminder", "analytics___ugc_stg__reminder"], "alias": "analytics___ugc_stg__reminder", "checksum": {"name": "sha256", "checksum": "bad959792ee8a3261894431ff0c88ddba3142b37fcedfbf130105a849951142f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled VIEW of ugc_stg__reminders", "columns": {"reminder_id": {"name": "reminder_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_from_purchase": {"name": "days_from_purchase", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subject": {"name": "subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "body": {"name": "body", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "header": {"name": "header", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bottom": {"name": "bottom", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mail_interval": {"name": "mail_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "max_products": {"name": "max_products", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "didnt_get_product_link": {"name": "didnt_get_product_link", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_enabled": {"name": "is_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "email_submission_type_id": {"name": "email_submission_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "formless_call_to_action": {"name": "formless_call_to_action", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082664.7085354, "relation_name": "dev_dkruh1.analytics___ugc_stg__reminder", "raw_code": "WITH import_reminders AS (\n\n SELECT * FROM {{ ref('ugc_stg__reminders') }}\n\n), \nreminder_res AS (\n\n SELECT \n id AS reminder_id,\n account_id AS store_id,\n days_from_purchase,\n subject,\n body,\n header,\n bottom,\n mail_interval,\n max_products,\n didnt_get_product_link,\n SMALLINT(enabled) AS is_enabled,\n email_submission_type_id,\n formless_call_to_action,\n TIMESTAMP(created_at) AS created_at,\n TIMESTAMP(updated_at) AS updated_at\n FROM import_reminders\n\n)\n\nSELECT * \nFROM reminder_res", "language": "sql", "refs": [{"name": "ugc_stg__reminders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__reminders"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.sql", "compiled": true, "compiled_code": "WITH import_reminders AS (\n\n SELECT * FROM dev_dkruh1.ugc_stg__reminders\n\n), \nreminder_res AS (\n\n SELECT \n id AS reminder_id,\n account_id AS store_id,\n days_from_purchase,\n subject,\n body,\n header,\n bottom,\n mail_interval,\n max_products,\n didnt_get_product_link,\n SMALLINT(enabled) AS is_enabled,\n email_submission_type_id,\n formless_call_to_action,\n TIMESTAMP(created_at) AS created_at,\n TIMESTAMP(updated_at) AS updated_at\n FROM import_reminders\n\n)\n\nSELECT * \nFROM reminder_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__reminder_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__reminder_snapshot", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.sql", "unique_id": "model.yoda.analytics___ugc_stg__reminder_snapshot", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__reminder_snapshot", "analytics___ugc_stg__reminder_snapshot"], "alias": "analytics___ugc_stg__reminder_snapshot", "checksum": {"name": "sha256", "checksum": "7e4357c4707f593e1c4e8c717cdba3edc35f73ceb0ff79658c3a2fddce9e194f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Snapshot table on ugc_stg__reminder.\ntracking changes in fields: max_products,mail_interval,enabled,email_submission_type_id,subject,days_from_purchase\nunique key: store id + reminder_id", "columns": {"store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reminder_id": {"name": "reminder_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "max_products": {"name": "max_products", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mail_interval": {"name": "mail_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled": {"name": "is_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "email_submission_type_id": {"name": "email_submission_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subject": {"name": "subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_from_purchase": {"name": "days_from_purchase", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "sstein@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "incremental", "incremental_strategy": "append"}, "created_at": 1700082664.7556906, "relation_name": "dev_dkruh1.analytics___ugc_stg__reminder_snapshot", "raw_code": "{{\nanalytics_snapshot_scd(\n source_model = 'analytics___ugc_stg__reminder',\n unique_key = ['store_id', 'reminder_id'],\n tracked_columns = ['max_products','mail_interval','is_enabled','email_submission_type_id','subject','days_from_purchase'],\n updated_at = 'updated_at'\n )\n}}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__reminder", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_snapshot_scd", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc_stg__reminder"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.sql", "compiled": true, "compiled_code": "\n\n WITH \n \n\n incremental_calculation AS (\n SELECT \n source_table.store_id, source_table.reminder_id, source_table.max_products, source_table.mail_interval, source_table.is_enabled, source_table.email_submission_type_id, source_table.subject, source_table.days_from_purchase, source_table.updated_at, \n 1 AS is_new_update\n FROM dev_dkruh1.analytics___ugc_stg__reminder AS source_table\n )\n\n SELECT\n store_id, reminder_id, max_products, mail_interval, is_enabled, email_submission_type_id, subject, days_from_purchase, updated_at AS updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM incremental_calculation\n WHERE is_new_update = 1\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__review": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.sql", "unique_id": "model.yoda.analytics___ugc_stg__review", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review", "analytics___ugc_stg__review"], "alias": "analytics___ugc_stg__review", "checksum": {"name": "sha256", "checksum": "e6d5fcb2255fbb7bf1c829d1e5002ad73bc7db72afe2f269ec0266cc64d9ce40"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled view of yotpo reviews | PK and granularity: review_id", "columns": {"review_id": {"name": "review_id", "description": "review unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewer_id": {"name": "reviewer_id", "description": "reviewer identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_review_id": {"name": "source_review_id", "description": "source review identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_id": {"name": "review_source_type_id", "description": "review source type identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_type_id": {"name": "review_type_id", "description": "review type identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reviewer_type": {"name": "reviewer_type", "description": "reviewer type: user/anonymous_user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title_content": {"name": "title_content", "description": "title content", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "content": {"name": "content", "description": "review content", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewer_display_name": {"name": "reviewer_display_name", "description": "reviewer display name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "score": {"name": "score", "description": "review score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "vote_up_cnt": {"name": "vote_up_cnt", "description": "vote up count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vote_down_cnt": {"name": "vote_down_cnt", "description": "vote down count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sentiment_ratio": {"name": "sentiment_ratio", "description": "review sentiment ratio", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_deleted": {"name": "is_deleted", "description": "deletion indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_published": {"name": "is_published", "description": "publish indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_syndicated_review": {"name": "is_syndicated_review", "description": "syndicated review: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_under_new_section_in_b2b": {"name": "is_under_new_section_in_b2b", "description": "under new section in b2b indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_under_archived_section_in_b2b": {"name": "is_under_archived_section_in_b2b", "description": "under archived section in b2b indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_verified_buyer": {"name": "is_verified_buyer", "description": "verified buyer indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_shop_owner": {"name": "is_shop_owner", "description": "shop_owner indicator: 0/1/null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082664.807362, "relation_name": "dev_dkruh1.analytics___ugc_stg__review", "raw_code": "-- Import --\n\nWITH import_ugc_stg_reviews (\nSELECT * FROM {{ ref('ugc_stg__reviews') }}\n),\n\n-- Logic --\n\nugc_stg__review_res AS (\nSELECT\n id AS review_id,\n TRIM(app_key) AS app_key,\n user_id AS reviewer_id,\n NVL(source_review_id, id) AS source_review_id,\n review_source_type_id,\n review_type_id,\n LOWER(IF(user_type='AnonymousUser','anonymous_user',user_type)) AS reviewer_type,\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(TRIM(title),'&quot;','\"'),\n '&amp;','&'),\n '"','\"'),\n '&','&'),\n ''',\"'\"),\n '>','>'),\n '<','<') AS title_content,\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(TRIM(content),'&quot;','\"'),\n '&amp;','&'),\n '"','\"'),\n '&','&'),\n ''',\"'\"),\n '>','>'),\n '<','<') AS content,\n TRIM(reviewer_display_name) AS reviewer_display_name,\n IF(INT(TRIM(score)) BETWEEN 1 AND 5,INT(TRIM(score)),NULL) AS score,\n votes_up AS vote_up_cnt,\n votes_down AS vote_down_cnt,\n sentiment AS sentiment_ratio,\n SMALLINT(deleted) AS is_deleted,\n SMALLINT(IF(deleted = 0,1,0)) AS is_published,\n SMALLINT(IF(NVL(source_review_id,-1) <> id,1,0)) AS is_syndicated_review,\n SMALLINT(new) AS is_under_new_section_in_b2b,\n SMALLINT(archived) AS is_under_archived_section_in_b2b,\n SMALLINT(verified_buyer) AS is_verified_buyer,\n SMALLINT(shop_owner) AS is_shop_owner,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg_reviews\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__review_res", "language": "sql", "refs": [{"name": "ugc_stg__reviews", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__reviews"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_stg_reviews (\nSELECT * FROM dev_dkruh1.ugc_stg__reviews\n),\n\n-- Logic --\n\nugc_stg__review_res AS (\nSELECT\n id AS review_id,\n TRIM(app_key) AS app_key,\n user_id AS reviewer_id,\n NVL(source_review_id, id) AS source_review_id,\n review_source_type_id,\n review_type_id,\n LOWER(IF(user_type='AnonymousUser','anonymous_user',user_type)) AS reviewer_type,\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(TRIM(title),'&quot;','\"'),\n '&amp;','&'),\n '"','\"'),\n '&','&'),\n ''',\"'\"),\n '>','>'),\n '<','<') AS title_content,\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(\n REPLACE(TRIM(content),'&quot;','\"'),\n '&amp;','&'),\n '"','\"'),\n '&','&'),\n ''',\"'\"),\n '>','>'),\n '<','<') AS content,\n TRIM(reviewer_display_name) AS reviewer_display_name,\n IF(INT(TRIM(score)) BETWEEN 1 AND 5,INT(TRIM(score)),NULL) AS score,\n votes_up AS vote_up_cnt,\n votes_down AS vote_down_cnt,\n sentiment AS sentiment_ratio,\n SMALLINT(deleted) AS is_deleted,\n SMALLINT(IF(deleted = 0,1,0)) AS is_published,\n SMALLINT(IF(NVL(source_review_id,-1) <> id,1,0)) AS is_syndicated_review,\n SMALLINT(new) AS is_under_new_section_in_b2b,\n SMALLINT(archived) AS is_under_archived_section_in_b2b,\n SMALLINT(verified_buyer) AS is_verified_buyer,\n SMALLINT(shop_owner) AS is_shop_owner,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg_reviews\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__review_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__review_image": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review_image", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.sql", "unique_id": "model.yoda.analytics___ugc_stg__review_image", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_image", "analytics___ugc_stg__review_image"], "alias": "analytics___ugc_stg__review_image", "checksum": {"name": "sha256", "checksum": "b0d544cf0658b26c14aa0a1a8ded2999e9791517ac14ee917cf808ef42c03a38"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["review_id", "image_id"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Incremental table of review images. PK and granularity: review_id | image_id", "columns": {"review_id": {"name": "review_id", "description": "review unique identifier - PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "image_id": {"name": "image_id", "description": "image unique identifier - PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_date": {"name": "created_date", "description": "image creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "materialized": "incremental", "unique_key": ["review_id", "image_id"], "incremental_strategy": "merge"}, "created_at": 1700082664.838624, "relation_name": "dev_dkruh1.analytics___ugc_stg__review_image", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental','view'),\n unique_key=['review_id','image_id'],\n incremental_strategy = 'merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE protected_analytics.ugc_review_image ZORDER BY review_id;')\n )\n}}\n\n-- Import --\n\nWITH import_ugc_images AS (\nSELECT * FROM {{ ref('ugc_stg__images') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='created_date',query_condition_column='created_at',subtract=14)}}\n),\n\n-- Logic --\n\nugc_review_image_res AS (\nSELECT\n imageable_id AS review_id,\n id AS image_id,\n DATE(created_at) AS created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_images\nWHERE LOWER(imageable_type) = 'review'\nAND imageable_id IS NOT NULL\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_review_image_res", "language": "sql", "refs": [{"name": "ugc_stg__images", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__images"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_images AS (\nSELECT * FROM dev_dkruh1.ugc_stg__images\nWHERE DATE(created_at) <= DATE_SUB(CURRENT_DATE,1)\n),\n\n-- Logic --\n\nugc_review_image_res AS (\nSELECT\n imageable_id AS review_id,\n id AS image_id,\n DATE(created_at) AS created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_images\nWHERE LOWER(imageable_type) = 'review'\nAND imageable_id IS NOT NULL\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_review_image_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__review_metadata": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review_metadata", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.sql", "unique_id": "model.yoda.analytics___ugc_stg__review_metadata", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_metadata", "analytics___ugc_stg__review_metadata"], "alias": "analytics___ugc_stg__review_metadata", "checksum": {"name": "sha256", "checksum": "7268ace99b412358c9cd0de361f16af5f773c52edf67d4c91b707a305e047074"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled view of reviews metadata | PK and granularity: review_metadata_id", "columns": {"review_metadata_id": {"name": "review_metadata_id", "description": "review metadata id unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_id": {"name": "review_id", "description": "review unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "metadata_type_id": {"name": "metadata_type_id", "description": "metadata key identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "metadata_type_value": {"name": "metadata_type_value", "description": "metadata type value: US, New York, Chrome, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082664.878259, "relation_name": "dev_dkruh1.analytics___ugc_stg__review_metadata", "raw_code": "-- Import --\n\nWITH import_ugc_stg__review_metadatas AS (\nSELECT * FROM {{ ref('ugc_stg__review_metadatas') }}\n),\n\n-- Logic --\n\nugc_stg__review_metadata_res AS (\nSELECT\n id AS review_metadata_id,\n review_id,\n metadata_type_id,\n TRIM(metadata_type_value) AS metadata_type_value,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg__review_metadatas\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__review_metadata_res", "language": "sql", "refs": [{"name": "ugc_stg__review_metadatas", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__review_metadatas"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_stg__review_metadatas AS (\nSELECT * FROM dev_dkruh1.ugc_stg__review_metadatas\n),\n\n-- Logic --\n\nugc_stg__review_metadata_res AS (\nSELECT\n id AS review_metadata_id,\n review_id,\n metadata_type_id,\n TRIM(metadata_type_value) AS metadata_type_value,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg__review_metadatas\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__review_metadata_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__review_request_email": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review_request_email", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.sql", "unique_id": "model.yoda.analytics___ugc_stg__review_request_email", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_request_email", "analytics___ugc_stg__review_request_email"], "alias": "analytics___ugc_stg__review_request_email", "checksum": {"name": "sha256", "checksum": "b706eaa10c2913aa004822e62b350133263847e9063fa09cc9336588ae50c2a7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled view of review request emails messages.\nPK and granularity: channel_message_id", "columns": {"channel_message_id": {"name": "channel_message_id", "description": "channel message id - PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel_message_id_first_3_digits": {"name": "channel_message_id_first_3_digits", "description": "channel message id first 3 digits - technical column for performance improvement", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_request_token": {"name": "review_request_token", "description": "review request token", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "user name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_address": {"name": "email_address", "description": "email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_type_id": {"name": "email_type_id", "description": "email type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_submission_type_id": {"name": "email_submission_type_id", "description": "email submission type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_id": {"name": "caller_id", "description": "caller id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_type": {"name": "caller_type", "description": "caller type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_app_id": {"name": "products_app_id", "description": "app id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered_at": {"name": "delivered_at", "description": "delivered timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delivered_date": {"name": "delivered_date", "description": "delivered date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082664.918668, "relation_name": "dev_dkruh1.analytics___ugc_stg__review_request_email", "raw_code": "-- Import --\n\nWITH import_ugc_review_request_emails AS (\nSELECT * FROM {{ ref('ugc_stg__review_request_emails') }}\n),\n\n-- Logic --\n\nreview_request_email_res AS (\nSELECT\n id AS channel_message_id,\n SMALLINT(LEFT(id,3)) AS channel_message_id_first_3_digits,\n app_key,\n review_request_token,\n user_name,\n user_email AS email_address,\n email_type_id,\n email_submission_type_id,\n caller_id,\n caller_type,\n products_app_id,\n delivered_at,\n DATE(delivered_at) AS delivered_date,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_review_request_emails\n)\n\n-- Result --\n\nSELECT *\nFROM review_request_email_res", "language": "sql", "refs": [{"name": "ugc_stg__review_request_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__review_request_emails"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_review_request_emails AS (\nSELECT * FROM dev_dkruh1.ugc_stg__review_request_emails\n),\n\n-- Logic --\n\nreview_request_email_res AS (\nSELECT\n id AS channel_message_id,\n SMALLINT(LEFT(id,3)) AS channel_message_id_first_3_digits,\n app_key,\n review_request_token,\n user_name,\n user_email AS email_address,\n email_type_id,\n email_submission_type_id,\n caller_id,\n caller_type,\n products_app_id,\n delivered_at,\n DATE(delivered_at) AS delivered_date,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_review_request_emails\n)\n\n-- Result --\n\nSELECT *\nFROM review_request_email_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__review_request_sms": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review_request_sms", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.sql", "unique_id": "model.yoda.analytics___ugc_stg__review_request_sms", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_request_sms", "analytics___ugc_stg__review_request_sms"], "alias": "analytics___ugc_stg__review_request_sms", "checksum": {"name": "sha256", "checksum": "4d25e4de8baae3075e96233a20401481df50bae38dc2c94f6fb5738e75488699"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled view of review request sms messages.\nPK and granularity: channel_message_id", "columns": {"channel_message_id": {"name": "channel_message_id", "description": "channel message id - PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel_message_id_first_3_digits": {"name": "channel_message_id_first_3_digits", "description": "channel message id first 3 digits - technical column for performance improvement", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_request_token": {"name": "review_request_token", "description": "review request token", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "user name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_address": {"name": "email_address", "description": "email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_type_id": {"name": "sms_type_id", "description": "sms type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_id": {"name": "caller_id", "description": "caller id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_type": {"name": "caller_type", "description": "caller type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_status_type_id": {"name": "sms_status_type_id", "description": "sms status type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered_at": {"name": "delivered_at", "description": "delivered timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delivered_date": {"name": "delivered_date", "description": "delivered date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082664.9460812, "relation_name": "dev_dkruh1.analytics___ugc_stg__review_request_sms", "raw_code": "-- Import --\n\nWITH import_ugc_review_request_sms AS (\nSELECT * FROM {{ ref('ugc_stg__review_request_sms') }}\n),\n\n-- Logic --\n\nreview_request_email_res AS (\nSELECT\n id AS channel_message_id,\n SMALLINT(LEFT(id,3)) AS channel_message_id_first_3_digits,\n app_key,\n review_request_token,\n user_name,\n user_email AS email_address,\n sms_type_id,\n caller_id,\n caller_type,\n sms_status_type_id,\n delivered_at,\n DATE(delivered_at) AS delivered_date,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_review_request_sms\n)\n\n-- Result --\n\nSELECT *\nFROM review_request_email_res", "language": "sql", "refs": [{"name": "ugc_stg__review_request_sms", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__review_request_sms"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_review_request_sms AS (\nSELECT * FROM dev_dkruh1.ugc_stg__review_request_sms\n),\n\n-- Logic --\n\nreview_request_email_res AS (\nSELECT\n id AS channel_message_id,\n SMALLINT(LEFT(id,3)) AS channel_message_id_first_3_digits,\n app_key,\n review_request_token,\n user_name,\n user_email AS email_address,\n sms_type_id,\n caller_id,\n caller_type,\n sms_status_type_id,\n delivered_at,\n DATE(delivered_at) AS delivered_date,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_review_request_sms\n)\n\n-- Result --\n\nSELECT *\nFROM review_request_email_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__review_source_type": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review_source_type", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.sql", "unique_id": "model.yoda.analytics___ugc_stg__review_source_type", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_source_type", "analytics___ugc_stg__review_source_type"], "alias": "analytics___ugc_stg__review_source_type", "checksum": {"name": "sha256", "checksum": "32350bf159786c4bd0742d370e41ee630ba7253e30ad24e4e0bc7b7554b8b32a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled view of review source types | PK and granularity: review_source_type_id", "columns": {"review_source_type_id": {"name": "review_source_type_id", "description": "review source type unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_name": {"name": "review_source_type_name", "description": "review source type name: vendor_yotpo_widget, mail_after_invoice, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082664.9673607, "relation_name": "dev_dkruh1.analytics___ugc_stg__review_source_type", "raw_code": "-- Import --\n\nWITH import_review_source_types (\nSELECT * FROM {{ ref('ugc_stg__review_source_types') }}\n),\n\n-- Logic --\n\nugc_stg__review_source_type_res AS (\nSELECT\n id AS review_source_type_id,\n name AS review_source_type_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_review_source_types\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__review_source_type_res", "language": "sql", "refs": [{"name": "ugc_stg__review_source_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__review_source_types"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_review_source_types (\nSELECT * FROM dev_dkruh1.ugc_stg__review_source_types\n),\n\n-- Logic --\n\nugc_stg__review_source_type_res AS (\nSELECT\n id AS review_source_type_id,\n name AS review_source_type_name,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_review_source_types\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__review_source_type_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__review_subject": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review_subject", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.sql", "unique_id": "model.yoda.analytics___ugc_stg__review_subject", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_subject", "analytics___ugc_stg__review_subject"], "alias": "analytics___ugc_stg__review_subject", "checksum": {"name": "sha256", "checksum": "3cbc3a38d06d76dbee34148f21ce14ad121fcdb3c6d1ccdec858ac4f851fd335"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled view of review subjects | PK and granularity: review_subject_id", "columns": {"review_subject_id": {"name": "review_subject_id", "description": "review subject unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_id": {"name": "review_id", "description": "review unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_id": {"name": "account_id", "description": "yotpo account unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subject_entity_type": {"name": "subject_entity_type", "description": "subject entity type: group, site, product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subject_id": {"name": "subject_id", "description": "subject identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_deactivated": {"name": "is_deactivated", "description": "deactivated indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082665.002801, "relation_name": "dev_dkruh1.analytics___ugc_stg__review_subject", "raw_code": "-- Import --\n\nWITH import_ugc_stg_reviews_subjects (\nSELECT * FROM {{ ref('ugc_stg__reviews_subjects') }}\n),\n\n-- Logic --\n\nugc_stg__review_subject_res AS (\nSELECT\n id AS review_subject_id,\n review_id,\n account_id,\n subject_entity_type,\n subject_id,\n SMALLINT(deactivated) AS is_deactivated,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg_reviews_subjects\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__review_subject_res", "language": "sql", "refs": [{"name": "ugc_stg__reviews_subjects", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__reviews_subjects"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_ugc_stg_reviews_subjects (\nSELECT * FROM dev_dkruh1.ugc_stg__reviews_subjects\n),\n\n-- Logic --\n\nugc_stg__review_subject_res AS (\nSELECT\n id AS review_subject_id,\n review_id,\n account_id,\n subject_entity_type,\n subject_id,\n SMALLINT(deactivated) AS is_deactivated,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_ugc_stg_reviews_subjects\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__review_subject_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__review_type": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review_type", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.sql", "unique_id": "model.yoda.analytics___ugc_stg__review_type", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_type", "analytics___ugc_stg__review_type"], "alias": "analytics___ugc_stg__review_type", "checksum": {"name": "sha256", "checksum": "8b1eaf571d0db0276fb9a02e8f2e9345d26daa6fa0c378a3de6ef00f273d0c8f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Modeled view of review types | PK and granularity: review_type_id", "columns": {"review_type_id": {"name": "review_type_id", "description": "review type id - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type_name": {"name": "type_name", "description": "review type name: product_and_site_review, product_review, site_review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type_description": {"name": "type_description", "description": "review type description, e.g: A Site review.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "updated_at": {"name": "updated_at", "description": "update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_date": {"name": "updated_date", "description": "update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082665.0340524, "relation_name": "dev_dkruh1.analytics___ugc_stg__review_type", "raw_code": "-- Import --\n\nWITH import_stg_review_types AS (\nSELECT * FROM {{ ref('ugc_stg__review_types') }}\n),\n\n-- Logic --\n\nugc_stg__review_type_res AS (\nSELECT\n id AS review_type_id,\n name AS type_name,\n description AS type_description,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_stg_review_types\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__review_type_res", "language": "sql", "refs": [{"name": "ugc_stg__review_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__review_types"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_stg_review_types AS (\nSELECT * FROM dev_dkruh1.ugc_stg__review_types\n),\n\n-- Logic --\n\nugc_stg__review_type_res AS (\nSELECT\n id AS review_type_id,\n name AS type_name,\n description AS type_description,\n created_at,\n DATE(created_at) AS created_date,\n updated_at,\n DATE(updated_at) AS updated_date\nFROM import_stg_review_types\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_stg__review_type_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___ugc_stg__review_video": {"database": null, "schema": "dev_dkruh1", "name": "analytics___ugc_stg__review_video", "resource_type": "model", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.sql", "unique_id": "model.yoda.analytics___ugc_stg__review_video", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_video", "analytics___ugc_stg__review_video"], "alias": "analytics___ugc_stg__review_video", "checksum": {"name": "sha256", "checksum": "7bfa50ae15a1a3df5f5c1f65bf38da00ebe44cb85a4196ca510e8261220de0d2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["review_id", "video_id"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "ugc"], "description": "Incremental table of review videos. PK and granularity: review_id | video_id", "columns": {"review_id": {"name": "review_id", "description": "review unique identifier - PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "video_id": {"name": "video_id", "description": "video unique identifier - PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_date": {"name": "created_date", "description": "video creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["analytics", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "incremental", "unique_key": ["review_id", "video_id"], "incremental_strategy": "merge"}, "created_at": 1700082665.0659294, "relation_name": "dev_dkruh1.analytics___ugc_stg__review_video", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental','view'),\n unique_key=['review_id','video_id'],\n incremental_strategy = 'merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE protected_analytics.ugc_review_video ZORDER BY review_id;')\n )\n}}\n\n-- Import --\n\nWITH import_ugc_videos AS (\nSELECT * FROM {{ ref('ugc_stg__videos') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='created_date',query_condition_column='created_at',subtract=14)}}\n),\n\n-- Logic --\n\nugc_review_video_res AS (\nSELECT\n videoable_id AS review_id,\n id AS video_id,\n DATE(created_at) AS created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_videos\nWHERE LOWER(videoable_type) = 'review'\nAND videoable_id IS NOT NULL\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_review_video_res", "language": "sql", "refs": [{"name": "ugc_stg__videos", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__videos"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_videos AS (\nSELECT * FROM dev_dkruh1.ugc_stg__videos\nWHERE DATE(created_at) <= DATE_SUB(CURRENT_DATE,1)\n),\n\n-- Logic --\n\nugc_review_video_res AS (\nSELECT\n videoable_id AS review_id,\n id AS video_id,\n DATE(created_at) AS created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_ugc_videos\nWHERE LOWER(videoable_type) = 'review'\nAND videoable_id IS NOT NULL\n)\n\n-- Result --\n\nSELECT *\nFROM ugc_review_video_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___utils_stg__calendar": {"database": null, "schema": "dev_dkruh1", "name": "analytics___utils_stg__calendar", "resource_type": "model", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.sql", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.sql", "unique_id": "model.yoda.analytics___utils_stg__calendar", "fqn": ["yoda", "analytics", "utils", "staging", "base", "analytics___utils_stg__calendar", "analytics___utils_stg__calendar"], "alias": "analytics___utils_stg__calendar", "checksum": {"name": "sha256", "checksum": "9bb3e303c8abf56ee332c47a62ff41ab45d15cff3db43eea85f9efa1dab844e8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics", "utils"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics", "utils"], "description": "Time dimension table - used to perform date explode operation", "columns": {"id": {"name": "id", "description": "date id. e.g., 20231231 is the id of 2023-12-31", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "date": {"name": "date", "description": "date - Primary Key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "year": {"name": "year", "description": "year number, e.g., 2023 when date = '2023-12-31'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "month number, e.g., 12 when date = '2023-12-31'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "day number, e.g., 31 when date = '2023-12-31'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "quarter": {"name": "quarter", "description": "quarter number, e.g., 4 when date = '2023-12-31'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "week": {"name": "week", "description": "week number, e.g., 52 when date = '2023-12-31'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day_name": {"name": "day_name", "description": "day name, e.g., 'Sunday' when date = '2023-12-31'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month_name": {"name": "month_name", "description": "month name, e.g., 'December' when date = '2023-12-31'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "holiday_flag": {"name": "holiday_flag", "description": "holiday boolean flag, e.g., false when date = '2023-12-31'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "weekend_flag": {"name": "weekend_flag", "description": "weekend boolean flag, e.g., true when date = '2023-12-31'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics", "utils"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.1210315, "relation_name": "dev_dkruh1.analytics___utils_stg__calendar", "raw_code": "WITH source AS (\n SELECT * FROM {{ source('analytics__static', 'calendar') }}\n), \n\nanalytics___utils_stg__calendar AS (\nSELECT \n id,\n date,\n year,\n month,\n day,\n quarter,\n week,\n day_name,\n month_name,\n holiday_flag,\n weekend_flag\nFROM source\n)\n\nSELECT * \nFROM analytics___utils_stg__calendar", "language": "sql", "refs": [], "sources": [["analytics__static", "calendar"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.analytics__static.calendar"]}, "compiled_path": "target/compiled/yoda/models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.sql", "compiled": true, "compiled_code": "WITH source AS (\n SELECT * FROM static.calendar\n), \n\nanalytics___utils_stg__calendar AS (\nSELECT \n id,\n date,\n year,\n month,\n day,\n quarter,\n week,\n day_name,\n month_name,\n holiday_flag,\n weekend_flag\nFROM source\n)\n\nSELECT * \nFROM analytics___utils_stg__calendar", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.analytics___utils_stg__unit_test_generic": {"database": null, "schema": "dev_dkruh1", "name": "analytics___utils_stg__unit_test_generic", "resource_type": "model", "package_name": "yoda", "path": "analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.sql", "original_file_path": "models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.sql", "unique_id": "model.yoda.analytics___utils_stg__unit_test_generic", "fqn": ["yoda", "analytics", "utils", "staging", "marts_compatible", "analytics___utils_stg__unit_test_generic", "analytics___utils_stg__unit_test_generic"], "alias": "analytics___utils_stg__unit_test_generic", "checksum": {"name": "sha256", "checksum": "f2cfc6bbf13bbd1d431bfba3ae53f0710ed3ef91c6602b24d377a4354089d9db"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["analytics", "analytics", "analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["analytics"], "description": "Generic view to be used in unit tests.", "columns": {"date_field": {"name": "date_field", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "timestamp_field": {"name": "timestamp_field", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "string_field": {"name": "string_field", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "boolean_field": {"name": "boolean_field", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "tinyint_field": {"name": "tinyint_field", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}, "smallint_field": {"name": "smallint_field", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "int_field": {"name": "int_field", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "float_field": {"name": "float_field", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "double_field": {"name": "double_field", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["analytics"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "tomer.inbal@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.1480846, "relation_name": "dev_dkruh1.analytics___utils_stg__unit_test_generic", "raw_code": "WITH generic_build AS (\nSELECT\nCURRENT_DATE AS date_field,\nCURRENT_TIMESTAMP AS timestamp_field,\nSTRING('') AS string_field,\n(1=1) AS boolean_field,\nTINYINT(1) AS tinyint_field,\nSMALLINT(1) AS smallint_field,\nINT(1) AS int_field,\nFLOAT(1) AS float_field,\nDOUBLE(1) AS double_field\n)\n\nSELECT * FROM generic_build", "language": "sql", "refs": [], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": []}, "compiled_path": "target/compiled/yoda/models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.sql", "compiled": true, "compiled_code": "WITH generic_build AS (\nSELECT\nCURRENT_DATE AS date_field,\nCURRENT_TIMESTAMP AS timestamp_field,\nSTRING('') AS string_field,\n(1=1) AS boolean_field,\nTINYINT(1) AS tinyint_field,\nSMALLINT(1) AS smallint_field,\nINT(1) AS int_field,\nFLOAT(1) AS float_field,\nDOUBLE(1) AS double_field\n)\n\nSELECT * FROM generic_build", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication__email_shopify_orders_analytics_profile": {"database": null, "schema": "dev_dkruh1", "name": "communication__email_shopify_orders_analytics_profile", "resource_type": "model", "package_name": "yoda", "path": "communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.sql", "original_file_path": "models/communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.sql", "unique_id": "model.yoda.communication__email_shopify_orders_analytics_profile", "fqn": ["yoda", "communication", "marts", "communication__email_shopify_orders_analytics_profile", "communication__email_shopify_orders_analytics_profile"], "alias": "communication__email_shopify_orders_analytics_profile", "checksum": {"name": "sha256", "checksum": "8c7ebe4b9a8543c26943bc3c577df1c810cb334361db035ac7ec0a104be73859"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "primary-key": "order_id", "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Wide table with key order_id and information about the email orders used for email analytics reports", "columns": {"order_id": {"name": "order_id", "description": "Shopify Order ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price": {"name": "total_price", "description": "Amount (decimal)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency": {"name": "currency", "description": "Currency (USD, EUR, etc)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "Order date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "Yotpo App Key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "External Customer ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "primary-key": "order_id", "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "primary-key": "order_id", "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.215353, "relation_name": "dev_dkruh1.communication__email_shopify_orders_analytics_profile", "raw_code": "{{ dbt_data_applications.profile(\n keys=['order_id'],\n sources=[\n { \n 'source': ref('communication_stg__email_shopify_orders_analytics'), \n 'fields': ['total_price', 'currency', 'order_date', 'app_key', 'external_customer_id'],\n 'foreign_key_mappings': {'order_id': 'order_id'}\n }\n ],\n custom_columns=[]\n) }}", "language": "sql", "refs": [{"name": "communication_stg__email_shopify_orders_analytics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.profile", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__email_shopify_orders_analytics"]}, "compiled_path": "target/compiled/yoda/models/communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.sql", "compiled": true, "compiled_code": "WITH sources_union AS (\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__email_shopify_orders_analytics' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__email_shopify_orders_analytics\n )\n\n \n )\n , sources_union_grouped AS (\n SELECT sources_union.order_id as order_id\n , MAX(sources_union.total_price) as total_price\n , MAX(sources_union.currency) as currency\n , MAX(sources_union.order_date) as order_date\n , MAX(sources_union.app_key) as app_key\n , MAX(sources_union.external_customer_id) as external_customer_id\n \n FROM sources_union \n GROUP BY sources_union.order_id)\n\n\n SELECT order_id\n , total_price\n , currency\n , order_date\n , app_key\n , external_customer_id\n \n FROM sources_union_grouped \n\n \n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication__sms_shopify_orders_analytics_profile": {"database": null, "schema": "dev_dkruh1", "name": "communication__sms_shopify_orders_analytics_profile", "resource_type": "model", "package_name": "yoda", "path": "communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.sql", "original_file_path": "models/communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.sql", "unique_id": "model.yoda.communication__sms_shopify_orders_analytics_profile", "fqn": ["yoda", "communication", "marts", "communication__sms_shopify_orders_analytics_profile", "communication__sms_shopify_orders_analytics_profile"], "alias": "communication__sms_shopify_orders_analytics_profile", "checksum": {"name": "sha256", "checksum": "5eaff81a300298b3ce36126e1229fd922f9e30b1fe31a9d4b5c463143e10d3cb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "primary-key": "order_id", "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Wide table with key order_id and information about the sms orders used for sms analytics reports", "columns": {"order_id": {"name": "order_id", "description": "Shopify Order ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price": {"name": "total_price", "description": "Amount (decimal)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency": {"name": "currency", "description": "Currency (USD, EUR, etc)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "Order date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "Yotpo App Key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "External Customer ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "primary-key": "order_id", "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "primary-key": "order_id", "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.2292106, "relation_name": "dev_dkruh1.communication__sms_shopify_orders_analytics_profile", "raw_code": "{{ dbt_data_applications.profile(\n keys=['order_id'],\n sources=[\n { \n 'source': ref('communication_stg__sms_shopify_orders_analytics'), \n 'fields': ['total_price', 'currency', 'order_date', 'app_key', 'external_customer_id'],\n 'foreign_key_mappings': {'order_id': 'order_id'}\n }\n ],\n custom_columns=[]\n) }}", "language": "sql", "refs": [{"name": "communication_stg__sms_shopify_orders_analytics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.profile", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__sms_shopify_orders_analytics"]}, "compiled_path": "target/compiled/yoda/models/communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.sql", "compiled": true, "compiled_code": "WITH sources_union AS (\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__sms_shopify_orders_analytics' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__sms_shopify_orders_analytics\n )\n\n \n )\n , sources_union_grouped AS (\n SELECT sources_union.order_id as order_id\n , MAX(sources_union.total_price) as total_price\n , MAX(sources_union.currency) as currency\n , MAX(sources_union.order_date) as order_date\n , MAX(sources_union.app_key) as app_key\n , MAX(sources_union.external_customer_id) as external_customer_id\n \n FROM sources_union \n GROUP BY sources_union.order_id)\n\n\n SELECT order_id\n , total_price\n , currency\n , order_date\n , app_key\n , external_customer_id\n \n FROM sources_union_grouped \n\n \n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__apicalls": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__apicalls", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.sql", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.sql", "unique_id": "model.yoda.communication_stg__apicalls", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__apicalls", "communication_stg__apicalls"], "alias": "communication_stg__apicalls", "checksum": {"name": "sha256", "checksum": "18b8810afe5a93397485bd526ca529cd249e1aef668908f02736b4cdb6bd3919"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__apicalls", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "request_id": {"name": "request_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "queue_id": {"name": "queue_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_id": {"name": "app_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "apikey": {"name": "apikey", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from": {"name": "from", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "to": {"name": "to", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "media": {"name": "media", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "spot_user_balance": {"name": "spot_user_balance", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "vendor_name_used": {"name": "vendor_name_used", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price_billed": {"name": "price_billed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_vendor_cost": {"name": "price_vendor_cost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "parts": {"name": "parts", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_currency": {"name": "price_currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "method": {"name": "method", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_id": {"name": "message_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_id_int": {"name": "message_id_int", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_uuid": {"name": "message_uuid", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip": {"name": "ip", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip_forward": {"name": "ip_forward", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referer": {"name": "referer", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sender_type": {"name": "sender_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.7336614, "relation_name": "dev_dkruh1.communication_stg__apicalls", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'apicalls') }}\n\n), communication_stg__apicalls AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\trequest_id,\n\t\tqueue_id,\n\t\tapp_id,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tapikey,\n\t\tfrom,\n\t\tto,\n\t\ttype,\n\t\tstatus,\n\t\tplatform,\n\t\tmedia,\n\t\tspot_user_balance,\n\t\tvendor_name_used,\n\t\tprice_billed,\n\t\tprice_vendor_cost,\n\t\tparts,\n\t\tprice_currency,\n\t\tmethod,\n\t\tmessage_id,\n\t\tmessage_id_int,\n\t\tmessage_uuid,\n\t\tip,\n\t\tip_forward,\n\t\treferer,\n\t\tmessage,\n\t\tsender_type,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__apicalls", "language": "sql", "refs": [], "sources": [["communication__sms", "apicalls"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.apicalls"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.apicalls\n\n), communication_stg__apicalls AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\trequest_id,\n\t\tqueue_id,\n\t\tapp_id,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tapikey,\n\t\tfrom,\n\t\tto,\n\t\ttype,\n\t\tstatus,\n\t\tplatform,\n\t\tmedia,\n\t\tspot_user_balance,\n\t\tvendor_name_used,\n\t\tprice_billed,\n\t\tprice_vendor_cost,\n\t\tparts,\n\t\tprice_currency,\n\t\tmethod,\n\t\tmessage_id,\n\t\tmessage_id_int,\n\t\tmessage_uuid,\n\t\tip,\n\t\tip_forward,\n\t\treferer,\n\t\tmessage,\n\t\tsender_type,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__apicalls", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__bigcommerce_users": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__bigcommerce_users", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.sql", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.sql", "unique_id": "model.yoda.communication_stg__bigcommerce_users", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__bigcommerce_users", "communication_stg__bigcommerce_users"], "alias": "communication_stg__bigcommerce_users", "checksum": {"name": "sha256", "checksum": "5328c92e5006cd7a806fe33b3487e3c914088e26b18dc0843df58532b37fde90"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store": {"name": "store", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_hash": {"name": "store_hash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "access_token": {"name": "access_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_data": {"name": "shop_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_data": {"name": "app_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_level": {"name": "plan_level", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_reload": {"name": "auto_reload", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_threshold": {"name": "auto_reload_threshold", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_amount": {"name": "auto_reload_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_cap": {"name": "auto_reload_cap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abandoned_checkouts_sent": {"name": "abandoned_checkouts_sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "connected": {"name": "connected", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_enabled": {"name": "sync_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes": {"name": "notes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pinned_navigation": {"name": "pinned_navigation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.762508, "relation_name": "dev_dkruh1.communication_stg__bigcommerce_users", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'bigcommerce_users') }}\n\n), communication_stg__bigcommerce_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore,\n\t\tdomain,\n\t\tstore_hash,\n\t\taccess_token,\n\t\tshop_data,\n\t\tapp_data,\n\t\tuser_id,\n\t\tplan_name,\n\t\tplan_level,\n\t\tauto_reload,\n\t\tauto_reload_threshold,\n\t\tauto_reload_amount,\n\t\tauto_reload_cap,\n\t\tabandoned_checkouts_sent,\n\t\tconnected,\n\t\tsync_enabled,\n\t\tnotes,\n\t\tpinned_navigation,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__bigcommerce_users", "language": "sql", "refs": [], "sources": [["communication__sms", "bigcommerce_users"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.bigcommerce_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.bigcommerce_users\n\n), communication_stg__bigcommerce_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore,\n\t\tdomain,\n\t\tstore_hash,\n\t\taccess_token,\n\t\tshop_data,\n\t\tapp_data,\n\t\tuser_id,\n\t\tplan_name,\n\t\tplan_level,\n\t\tauto_reload,\n\t\tauto_reload_threshold,\n\t\tauto_reload_amount,\n\t\tauto_reload_cap,\n\t\tabandoned_checkouts_sent,\n\t\tconnected,\n\t\tsync_enabled,\n\t\tnotes,\n\t\tpinned_navigation,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__bigcommerce_users", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__billing_events": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__billing_events", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.sql", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.sql", "unique_id": "model.yoda.communication_stg__billing_events", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__billing_events", "communication_stg__billing_events"], "alias": "communication_stg__billing_events", "checksum": {"name": "sha256", "checksum": "f1c4a5fd3f725d775d6a0a94ebebec6d798a569df174cc0103863c9bd67ad1bc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_name": {"name": "source_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "operation_type": {"name": "operation_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_timestamp": {"name": "event_timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "requested_email_count": {"name": "requested_email_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "request_cost": {"name": "request_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_email_count": {"name": "total_email_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "campaign_email_count": {"name": "campaign_email_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "flow_email_count": {"name": "flow_email_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "billing_cycle_end_date": {"name": "billing_cycle_end_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_plan_id": {"name": "price_plan_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.7818882, "relation_name": "dev_dkruh1.communication_stg__billing_events", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('communication__communication', 'billing_events') }}\n\n), communication_stg__billing_events AS (\n\n SELECT \n\t\tprocessing_time,\n\t\tstore_id,\n\t\tsource_id,\n\t\tsource_name,\n\t\toperation_type,\n\t\tevent_timestamp,\n\t\trequested_email_count,\n\t\trequest_cost,\n\t\ttotal_email_count,\n\t\tcampaign_email_count,\n\t\tflow_email_count,\n\t\tbilling_cycle_end_date,\n\t\tprice_plan_id,\n\t\tupsolver_schema_version\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__billing_events", "language": "sql", "refs": [], "sources": [["communication__communication", "billing_events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__communication.billing_events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM communication.billing_events\n\n), communication_stg__billing_events AS (\n\n SELECT \n\t\tprocessing_time,\n\t\tstore_id,\n\t\tsource_id,\n\t\tsource_name,\n\t\toperation_type,\n\t\tevent_timestamp,\n\t\trequested_email_count,\n\t\trequest_cost,\n\t\ttotal_email_count,\n\t\tcampaign_email_count,\n\t\tflow_email_count,\n\t\tbilling_cycle_end_date,\n\t\tprice_plan_id,\n\t\tupsolver_schema_version\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__billing_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__campaigns": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__campaigns", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.sql", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.sql", "unique_id": "model.yoda.communication_stg__campaigns", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__campaigns", "communication_stg__campaigns"], "alias": "communication_stg__campaigns", "checksum": {"name": "sha256", "checksum": "f198e75089a4dd57d6b8cbbac71778f7c88e4b2a0e9352e40426a077ce06b8f0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__campaigns", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "list_id": {"name": "list_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_sent": {"name": "total_sent", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent": {"name": "sent", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_testing_id": {"name": "ab_testing_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "scheduled": {"name": "scheduled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "approved": {"name": "approved", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_repopulated": {"name": "is_repopulated", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "request": {"name": "request", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.8057015, "relation_name": "dev_dkruh1.communication_stg__campaigns", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'campaigns') }}\n\n), communication_stg__campaigns AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\ttitle,\n\t\tmessage,\n\t\tlist_id,\n\t\ttotal_sent,\n\t\tsent,\n\t\tab_testing_id,\n\t\tscheduled,\n\t\tapproved,\n\t\tis_repopulated,\n\t\tstatus,\n\t\tchannel,\n\t\tcreated,\n\t\tmodified,\n\t\trequest,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__campaigns", "language": "sql", "refs": [], "sources": [["communication__sms", "campaigns"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.campaigns\n\n), communication_stg__campaigns AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\ttitle,\n\t\tmessage,\n\t\tlist_id,\n\t\ttotal_sent,\n\t\tsent,\n\t\tab_testing_id,\n\t\tscheduled,\n\t\tapproved,\n\t\tis_repopulated,\n\t\tstatus,\n\t\tchannel,\n\t\tcreated,\n\t\tmodified,\n\t\trequest,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__campaigns", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__conversation_messages": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__conversation_messages", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.sql", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.sql", "unique_id": "model.yoda.communication_stg__conversation_messages", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__conversation_messages", "communication_stg__conversation_messages"], "alias": "communication_stg__conversation_messages", "checksum": {"name": "sha256", "checksum": "2ad40ca1019bd3272182ce91b288b3442e41cbf704c75b60c0505e81eede6663"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "conversation_id": {"name": "conversation_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "direction": {"name": "direction", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "apicall_id": {"name": "apicall_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_url": {"name": "image_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_caption": {"name": "image_caption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "read": {"name": "read", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.8259609, "relation_name": "dev_dkruh1.communication_stg__conversation_messages", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'conversation_messages') }}\n\n), communication_stg__conversation_messages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tconversation_id,\n\t\tuser_id,\n\t\tdirection,\n\t\tapicall_id,\n\t\ttype,\n\t\timage_url,\n\t\timage_caption,\n\t\tmessage,\n\t\tread,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__conversation_messages", "language": "sql", "refs": [], "sources": [["communication__sms", "conversation_messages"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.conversation_messages"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.conversation_messages\n\n), communication_stg__conversation_messages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tconversation_id,\n\t\tuser_id,\n\t\tdirection,\n\t\tapicall_id,\n\t\ttype,\n\t\timage_url,\n\t\timage_caption,\n\t\tmessage,\n\t\tread,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__conversation_messages", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__email_esp_events": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__email_esp_events", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.sql", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.sql", "unique_id": "model.yoda.communication_stg__email_esp_events", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__email_esp_events", "communication_stg__email_esp_events"], "alias": "communication_stg__email_esp_events", "checksum": {"name": "sha256", "checksum": "b0bc8a7557a43d817c36ad0ce62c4f6f556a0d9cc930753f29453da529339dd8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reference_id": {"name": "reference_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_type": {"name": "event_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_properties": {"name": "event_properties", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason": {"name": "reason", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.8457859, "relation_name": "dev_dkruh1.communication_stg__email_esp_events", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'email_esp_events') }}\n\n), communication_stg__email_esp_events AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\temail,\n\t\tcampaign_id,\n\t\tflow_id,\n\t\treference_id,\n\t\tevent_type,\n\t\tevent_properties,\n\t\treason,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__email_esp_events", "language": "sql", "refs": [], "sources": [["communication__sms", "email_esp_events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.email_esp_events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.email_esp_events\n\n), communication_stg__email_esp_events AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\temail,\n\t\tcampaign_id,\n\t\tflow_id,\n\t\treference_id,\n\t\tevent_type,\n\t\tevent_properties,\n\t\treason,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__email_esp_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__events": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__events", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.sql", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.sql", "unique_id": "model.yoda.communication_stg__events", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__events", "communication_stg__events"], "alias": "communication_stg__events", "checksum": {"name": "sha256", "checksum": "8d97ea5ccf2bd35544ec7ea2898c07f51eef35ef914442aad652295acf8c8333"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__events", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "webhook": {"name": "webhook", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "settings": {"name": "settings", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__events/communication_stg__events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.864075, "relation_name": "dev_dkruh1.communication_stg__events", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'events') }}\n\n), communication_stg__events AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tuser_id,\n\t\twebhook,\n\t\tsettings,\n\t\tplatform,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__events", "language": "sql", "refs": [], "sources": [["communication__sms", "events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__events/communication_stg__events.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.events\n\n), communication_stg__events AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tuser_id,\n\t\twebhook,\n\t\tsettings,\n\t\tplatform,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__flows": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__flows", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.sql", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.sql", "unique_id": "model.yoda.communication_stg__flows", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__flows", "communication_stg__flows"], "alias": "communication_stg__flows", "checksum": {"name": "sha256", "checksum": "e36a74f470101669feff3f3b0121d4119f70eba33e43138b0eff43e9e8b85f75"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__flows", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_trigger": {"name": "flow_trigger", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_settings": {"name": "flow_settings", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "snapshot_id": {"name": "snapshot_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__flows/communication_stg__flows.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.8836586, "relation_name": "dev_dkruh1.communication_stg__flows", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'flows') }}\n\n), communication_stg__flows AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tuser_id,\n\t\tflow_trigger,\n\t\tflow_settings,\n\t\tplatform,\n\t\tstatus,\n\t\tsnapshot_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__flows", "language": "sql", "refs": [], "sources": [["communication__sms", "flows"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.flows"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__flows/communication_stg__flows.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.flows\n\n), communication_stg__flows AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tuser_id,\n\t\tflow_trigger,\n\t\tflow_settings,\n\t\tplatform,\n\t\tstatus,\n\t\tsnapshot_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__flows", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__forms": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__forms", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.sql", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.sql", "unique_id": "model.yoda.communication_stg__forms", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__forms", "communication_stg__forms"], "alias": "communication_stg__forms", "checksum": {"name": "sha256", "checksum": "cfa4596b25151ff08528712cbeb23da7d32888d292c6d0707ed904e84500ea4f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__forms", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "settings": {"name": "settings", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dynamic_popup": {"name": "dynamic_popup", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_script_id": {"name": "platform_script_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__forms/communication_stg__forms.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.904739, "relation_name": "dev_dkruh1.communication_stg__forms", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'forms') }}\n\n), communication_stg__forms AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tplatform,\n\t\ttype,\n\t\tname,\n\t\tsettings,\n\t\tdynamic_popup,\n\t\tstatus,\n\t\tplatform_script_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__forms", "language": "sql", "refs": [], "sources": [["communication__sms", "forms"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.forms"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__forms/communication_stg__forms.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.forms\n\n), communication_stg__forms AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tplatform,\n\t\ttype,\n\t\tname,\n\t\tsettings,\n\t\tdynamic_popup,\n\t\tstatus,\n\t\tplatform_script_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__forms", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__klaviyo_users": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__klaviyo_users", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.sql", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.sql", "unique_id": "model.yoda.communication_stg__klaviyo_users", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__klaviyo_users", "communication_stg__klaviyo_users"], "alias": "communication_stg__klaviyo_users", "checksum": {"name": "sha256", "checksum": "960ef17f7bfe2a5d686a8e876305549bb5f6e308eea674debc05c01e0015a37c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "api_key": {"name": "api_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "klaviyo_auto_sync": {"name": "klaviyo_auto_sync", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smsbump_auto_sync": {"name": "smsbump_auto_sync", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "all_lists_sync": {"name": "all_lists_sync", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_sync": {"name": "auto_sync", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.9225411, "relation_name": "dev_dkruh1.communication_stg__klaviyo_users", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'klaviyo_users') }}\n\n), communication_stg__klaviyo_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tapi_key,\n\t\tklaviyo_auto_sync,\n\t\tsmsbump_auto_sync,\n\t\tall_lists_sync,\n\t\tauto_sync,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__klaviyo_users", "language": "sql", "refs": [], "sources": [["communication__sms", "klaviyo_users"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.klaviyo_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.klaviyo_users\n\n), communication_stg__klaviyo_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tapi_key,\n\t\tklaviyo_auto_sync,\n\t\tsmsbump_auto_sync,\n\t\tall_lists_sync,\n\t\tauto_sync,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__klaviyo_users", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__list_keywords": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__list_keywords", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.sql", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.sql", "unique_id": "model.yoda.communication_stg__list_keywords", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__list_keywords", "communication_stg__list_keywords"], "alias": "communication_stg__list_keywords", "checksum": {"name": "sha256", "checksum": "1dec59a0bb6412ab502749a5f7b949770b6b0140450e4b82117d7933b5125b1d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column upsolver_schema_version Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column processing_time Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column ts_ms Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "keyword": {"name": "keyword", "description": "TODO: Update Column keyword Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "TODO: Update Column display_name Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "list_id": {"name": "list_id", "description": "TODO: Update Column list_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "TODO: Update Column event_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Column user_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price": {"name": "price", "description": "TODO: Update Column price Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_billed": {"name": "last_billed", "description": "TODO: Update Column last_billed Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status": {"name": "status", "description": "TODO: Update Column status Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_status": {"name": "subscription_status", "description": "TODO: Update Column subscription_status Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "max_messages": {"name": "max_messages", "description": "TODO: Update Column max_messages Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charge_attempts": {"name": "charge_attempts", "description": "TODO: Update Column charge_attempts Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column created Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column modified Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column is_logical_deleted Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.9447446, "relation_name": "dev_dkruh1.communication_stg__list_keywords", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'list_keywords') }}\n\n), communication_stg__list_keywords AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tkeyword,\n\t\tdisplay_name,\n\t\tlist_id,\n\t\tevent_id,\n\t\tuser_id,\n\t\tprice,\n\t\tlast_billed,\n\t\tstatus,\n\t\tsubscription_status,\n\t\tmax_messages,\n\t\tcharge_attempts,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__list_keywords", "language": "sql", "refs": [], "sources": [["communication__sms", "list_keywords"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.list_keywords"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.list_keywords\n\n), communication_stg__list_keywords AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tkeyword,\n\t\tdisplay_name,\n\t\tlist_id,\n\t\tevent_id,\n\t\tuser_id,\n\t\tprice,\n\t\tlast_billed,\n\t\tstatus,\n\t\tsubscription_status,\n\t\tmax_messages,\n\t\tcharge_attempts,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__list_keywords", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__orders": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__orders", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.sql", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.sql", "unique_id": "model.yoda.communication_stg__orders", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__orders", "communication_stg__orders"], "alias": "communication_stg__orders", "checksum": {"name": "sha256", "checksum": "d65fd815e2ddf90e9cd305ffb14ac7b01aae57b892ad7bb6aadc7b7d2af17b48"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column upsolver_schema_version Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column processing_time Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column ts_ms Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "smsbump_user_id": {"name": "smsbump_user_id", "description": "TODO: Update Column smsbump_user_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "TODO: Update Column order_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column customer_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "TODO: Update Column email Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closed_at": {"name": "closed_at", "description": "TODO: Update Column closed_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column created_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "number": {"name": "number", "description": "TODO: Update Column number Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "note": {"name": "note", "description": "TODO: Update Column note Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "token": {"name": "token", "description": "TODO: Update Column token Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gateway": {"name": "gateway", "description": "TODO: Update Column gateway Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "test": {"name": "test", "description": "TODO: Update Column test Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price": {"name": "total_price", "description": "TODO: Update Column total_price Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subtotal_price": {"name": "subtotal_price", "description": "TODO: Update Column subtotal_price Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_weight": {"name": "total_weight", "description": "TODO: Update Column total_weight Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_tax": {"name": "total_tax", "description": "TODO: Update Column total_tax Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxes_included": {"name": "taxes_included", "description": "TODO: Update Column taxes_included Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Column currency Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "financial_status": {"name": "financial_status", "description": "TODO: Update Column financial_status Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "confirmed": {"name": "confirmed", "description": "TODO: Update Column confirmed Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_discounts": {"name": "total_discounts", "description": "TODO: Update Column total_discounts Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_line_items_price": {"name": "total_line_items_price", "description": "TODO: Update Column total_line_items_price Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cart_token": {"name": "cart_token", "description": "TODO: Update Column cart_token Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "buyer_accepts_marketing": {"name": "buyer_accepts_marketing", "description": "TODO: Update Column buyer_accepts_marketing Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Column name Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referring_site": {"name": "referring_site", "description": "TODO: Update Column referring_site Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landing_site": {"name": "landing_site", "description": "TODO: Update Column landing_site Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelled_at": {"name": "cancelled_at", "description": "TODO: Update Column cancelled_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "cancel_reason": {"name": "cancel_reason", "description": "TODO: Update Column cancel_reason Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price_usd": {"name": "total_price_usd", "description": "TODO: Update Column total_price_usd Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "checkout_token": {"name": "checkout_token", "description": "TODO: Update Column checkout_token Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reference": {"name": "reference", "description": "TODO: Update Column reference Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column user_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "location_id": {"name": "location_id", "description": "TODO: Update Column location_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_identifier": {"name": "source_identifier", "description": "TODO: Update Column source_identifier Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_url": {"name": "source_url", "description": "TODO: Update Column source_url Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processed_at": {"name": "processed_at", "description": "TODO: Update Column processed_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "device_id": {"name": "device_id", "description": "TODO: Update Column device_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "TODO: Update Column phone Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_formatted": {"name": "phone_formatted", "description": "TODO: Update Column phone_formatted Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_locale": {"name": "customer_locale", "description": "TODO: Update Column customer_locale Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "TODO: Update Column app_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "browser_ip": {"name": "browser_ip", "description": "TODO: Update Column browser_ip Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landing_site_ref": {"name": "landing_site_ref", "description": "TODO: Update Column landing_site_ref Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_number": {"name": "order_number", "description": "TODO: Update Column order_number Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_method": {"name": "processing_method", "description": "TODO: Update Column processing_method Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "checkout_id": {"name": "checkout_id", "description": "TODO: Update Column checkout_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_name": {"name": "source_name", "description": "TODO: Update Column source_name Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fulfillment_status": {"name": "fulfillment_status", "description": "TODO: Update Column fulfillment_status Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Column tags Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_email": {"name": "contact_email", "description": "TODO: Update Column contact_email Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_status_url": {"name": "order_status_url", "description": "TODO: Update Column order_status_url Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column is_logical_deleted Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__orders/communication_stg__orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082665.9923556, "relation_name": "dev_dkruh1.communication_stg__orders", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms_shopify', 'orders') }}\n\n), communication_stg__orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsmsbump_user_id,\n\t\torder_id,\n\t\tcustomer_id,\n\t\temail,\n\t\tclosed_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tnumber,\n\t\tnote,\n\t\ttoken,\n\t\tgateway,\n\t\ttest,\n\t\ttotal_price,\n\t\tsubtotal_price,\n\t\ttotal_weight,\n\t\ttotal_tax,\n\t\ttaxes_included,\n\t\tcurrency,\n\t\tfinancial_status,\n\t\tconfirmed,\n\t\ttotal_discounts,\n\t\ttotal_line_items_price,\n\t\tcart_token,\n\t\tbuyer_accepts_marketing,\n\t\tname,\n\t\treferring_site,\n\t\tlanding_site,\n\t\tcancelled_at,\n\t\tcancel_reason,\n\t\ttotal_price_usd,\n\t\tcheckout_token,\n\t\treference,\n\t\tuser_id,\n\t\tlocation_id,\n\t\tsource_identifier,\n\t\tsource_url,\n\t\tprocessed_at,\n\t\tdevice_id,\n\t\tphone,\n\t\tphone_formatted,\n\t\tcustomer_locale,\n\t\tapp_id,\n\t\tbrowser_ip,\n\t\tlanding_site_ref,\n\t\torder_number,\n\t\tprocessing_method,\n\t\tcheckout_id,\n\t\tsource_name,\n\t\tfulfillment_status,\n\t\ttags,\n\t\tcontact_email,\n\t\torder_status_url,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__orders", "language": "sql", "refs": [], "sources": [["communication__sms_shopify", "orders"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms_shopify.orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__orders/communication_stg__orders.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms_shopify.orders\n\n), communication_stg__orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsmsbump_user_id,\n\t\torder_id,\n\t\tcustomer_id,\n\t\temail,\n\t\tclosed_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tnumber,\n\t\tnote,\n\t\ttoken,\n\t\tgateway,\n\t\ttest,\n\t\ttotal_price,\n\t\tsubtotal_price,\n\t\ttotal_weight,\n\t\ttotal_tax,\n\t\ttaxes_included,\n\t\tcurrency,\n\t\tfinancial_status,\n\t\tconfirmed,\n\t\ttotal_discounts,\n\t\ttotal_line_items_price,\n\t\tcart_token,\n\t\tbuyer_accepts_marketing,\n\t\tname,\n\t\treferring_site,\n\t\tlanding_site,\n\t\tcancelled_at,\n\t\tcancel_reason,\n\t\ttotal_price_usd,\n\t\tcheckout_token,\n\t\treference,\n\t\tuser_id,\n\t\tlocation_id,\n\t\tsource_identifier,\n\t\tsource_url,\n\t\tprocessed_at,\n\t\tdevice_id,\n\t\tphone,\n\t\tphone_formatted,\n\t\tcustomer_locale,\n\t\tapp_id,\n\t\tbrowser_ip,\n\t\tlanding_site_ref,\n\t\torder_number,\n\t\tprocessing_method,\n\t\tcheckout_id,\n\t\tsource_name,\n\t\tfulfillment_status,\n\t\ttags,\n\t\tcontact_email,\n\t\torder_status_url,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__packages": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__packages", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.sql", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.sql", "unique_id": "model.yoda.communication_stg__packages", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__packages", "communication_stg__packages"], "alias": "communication_stg__packages", "checksum": {"name": "sha256", "checksum": "7c09d5b2b4cc62a3104084fafc67528bc3a8c458ebe4185f9cd3062519ab1b0e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__packages", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_key": {"name": "payment_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_key": {"name": "plan_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_title": {"name": "sub_title", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "period": {"name": "period", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price": {"name": "price", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "bonus_credits": {"name": "bonus_credits", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "visible_app": {"name": "visible_app", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "visible_site": {"name": "visible_site", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__packages/communication_stg__packages.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.0165768, "relation_name": "dev_dkruh1.communication_stg__packages", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'packages') }}\n\n), communication_stg__packages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tdisplay_name,\n\t\tpayment_key,\n\t\tplan_key,\n\t\tsub_title,\n\t\tdescription,\n\t\tplatform,\n\t\ttype,\n\t\tperiod,\n\t\tprice,\n\t\tbonus_credits,\n\t\tvisible_app,\n\t\tvisible_site,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__packages", "language": "sql", "refs": [], "sources": [["communication__sms", "packages"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.packages"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__packages/communication_stg__packages.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.packages\n\n), communication_stg__packages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tdisplay_name,\n\t\tpayment_key,\n\t\tplan_key,\n\t\tsub_title,\n\t\tdescription,\n\t\tplatform,\n\t\ttype,\n\t\tperiod,\n\t\tprice,\n\t\tbonus_credits,\n\t\tvisible_app,\n\t\tvisible_site,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__packages", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__phone_to_list": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__phone_to_list", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.sql", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.sql", "unique_id": "model.yoda.communication_stg__phone_to_list", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__phone_to_list", "communication_stg__phone_to_list"], "alias": "communication_stg__phone_to_list", "checksum": {"name": "sha256", "checksum": "48efe551d0df378c1c9aa74f66b0d6d8cd7674334811ef8b8c09605842d2d8a3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__phone_to_list", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "list_id": {"name": "list_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_id": {"name": "phone_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_meta_id": {"name": "phone_meta_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source": {"name": "source", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.035962, "relation_name": "dev_dkruh1.communication_stg__phone_to_list", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'phone_to_list') }}\n\n), communication_stg__phone_to_list AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tlist_id,\n\t\tphone_id,\n\t\tphone_meta_id,\n\t\tsource,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__phone_to_list", "language": "sql", "refs": [], "sources": [["communication__sms", "phone_to_list"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.phone_to_list"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.phone_to_list\n\n), communication_stg__phone_to_list AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tlist_id,\n\t\tphone_id,\n\t\tphone_meta_id,\n\t\tsource,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__phone_to_list", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__phones": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__phones", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.sql", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.sql", "unique_id": "model.yoda.communication_stg__phones", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__phones", "communication_stg__phones"], "alias": "communication_stg__phones", "checksum": {"name": "sha256", "checksum": "b0c6ae9b46173c7dfdd3ccd6dd9fb1fd0878b67c991d68bf6b1205892979c8ae"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column upsolver_schema_version Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column processing_time Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column ts_ms Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "phone": {"name": "phone", "description": "TODO: Update Column phone Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_subscriber": {"name": "is_subscriber", "description": "TODO: Update Column is_subscriber Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "country_iso": {"name": "country_iso", "description": "TODO: Update Column country_iso Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landline": {"name": "landline", "description": "TODO: Update Column landline Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "network": {"name": "network", "description": "TODO: Update Column network Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "failed_count": {"name": "failed_count", "description": "TODO: Update Column failed_count Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column created Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column modified Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column is_logical_deleted Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__phones/communication_stg__phones.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.0541074, "relation_name": "dev_dkruh1.communication_stg__phones", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'phones') }}\n\n), communication_stg__phones AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tphone,\n\t\tis_subscriber,\n\t\tcountry_iso,\n\t\tlandline,\n\t\tnetwork,\n\t\tfailed_count,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__phones", "language": "sql", "refs": [], "sources": [["communication__sms", "phones"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.phones"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__phones/communication_stg__phones.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.phones\n\n), communication_stg__phones AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tphone,\n\t\tis_subscriber,\n\t\tcountry_iso,\n\t\tlandline,\n\t\tnetwork,\n\t\tfailed_count,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__phones", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__phones_meta": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__phones_meta", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.sql", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.sql", "unique_id": "model.yoda.communication_stg__phones_meta", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__phones_meta", "communication_stg__phones_meta"], "alias": "communication_stg__phones_meta", "checksum": {"name": "sha256", "checksum": "04df61f3263a9b5150d4852429dbc36c6de62881560325167a892f8e4e785662"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__phones_meta", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_id": {"name": "phone_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_subscriber": {"name": "is_subscriber", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_name": {"name": "first_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "birth_date": {"name": "birth_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "gender": {"name": "gender", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timezone": {"name": "timezone", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initial_source": {"name": "initial_source", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.0770345, "relation_name": "dev_dkruh1.communication_stg__phones_meta", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'phones_meta') }}\n\n), communication_stg__phones_meta AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tphone_id,\n\t\tis_subscriber,\n\t\tfirst_name,\n\t\tlast_name,\n\t\temail,\n\t\tbirth_date,\n\t\tgender,\n\t\ttimezone,\n\t\tplatform,\n\t\tinitial_source,\n\t\texternal_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__phones_meta", "language": "sql", "refs": [], "sources": [["communication__sms", "phones_meta"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.phones_meta"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.phones_meta\n\n), communication_stg__phones_meta AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tphone_id,\n\t\tis_subscriber,\n\t\tfirst_name,\n\t\tlast_name,\n\t\temail,\n\t\tbirth_date,\n\t\tgender,\n\t\ttimezone,\n\t\tplatform,\n\t\tinitial_source,\n\t\texternal_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__phones_meta", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__profiles": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__profiles", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__profiles/communication_stg__profiles.sql", "original_file_path": "models/communication/staging/base/communication_stg__profiles/communication_stg__profiles.sql", "unique_id": "model.yoda.communication_stg__profiles", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__profiles", "communication_stg__profiles"], "alias": "communication_stg__profiles", "checksum": {"name": "sha256", "checksum": "75feac849ce565acc31c14c4a0ac4ac807cfe478fcbfab8dd139f324c3a0e19a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"itemId": {"name": "itemId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "itemType": {"name": "itemType", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lists": {"name": "lists", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "mergedWith": {"name": "mergedWith", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemProperties": {"name": "systemProperties", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "properties": {"name": "properties", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct,shipping:array>,birthdays:array,createdAt:timestamp,defaultCurrency:string,defaultLanguage:string,email:string,externalCreatedAt:timestamp,externalId:string,externalStatus:string,firstName:string,lastName:string,gender:string,phone:string,platform:string,platformCreatedAt:timestamp,platformCustomerId:string,platformId:string,platformName:string,platformStatus:string,referredByCustomer:boolean,status:string,... 7 more fields>"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__profiles/communication_stg__profiles.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.0903695, "relation_name": "dev_dkruh1.communication_stg__profiles", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('communication__unomi', 'profiles') }}\n\n), communication_stg__profiles AS (\n\n SELECT \n\t\titemId,\n\t\titemType,\n\t\tlists,\n\t\tmergedWith,\n\t\tsystemProperties,\n\t\tproperties\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__profiles", "language": "sql", "refs": [], "sources": [["communication__unomi", "profiles"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__unomi.profiles"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__profiles/communication_stg__profiles.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM unomi.profiles\n\n), communication_stg__profiles AS (\n\n SELECT \n\t\titemId,\n\t\titemType,\n\t\tlists,\n\t\tmergedWith,\n\t\tsystemProperties,\n\t\tproperties\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__profiles", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__shopify_analytics_orders": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__shopify_analytics_orders", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.sql", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.sql", "unique_id": "model.yoda.communication_stg__shopify_analytics_orders", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__shopify_analytics_orders", "communication_stg__shopify_analytics_orders"], "alias": "communication_stg__shopify_analytics_orders", "checksum": {"name": "sha256", "checksum": "5c5dd1db66a692cbc54959bb1740968638357d55771fd3e7b5105925edb0d090"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount": {"name": "amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_snapshot_id": {"name": "flow_snapshot_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_campaign_id": {"name": "ab_campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "country_iso": {"name": "country_iso", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ref_campaign_id": {"name": "ref_campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.113325, "relation_name": "dev_dkruh1.communication_stg__shopify_analytics_orders", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'shopify_analytics_orders') }}\n\n), communication_stg__shopify_analytics_orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcustomer_id,\n\t\torder_id,\n\t\tamount,\n\t\tcampaign_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tflow_snapshot_id,\n\t\tab_campaign_id,\n\t\tchannel,\n\t\tcreated,\n\t\tcountry_iso,\n\t\ttype,\n\t\tstore_id,\n\t\tref_campaign_id,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__shopify_analytics_orders", "language": "sql", "refs": [], "sources": [["communication__sms", "shopify_analytics_orders"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.shopify_analytics_orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.shopify_analytics_orders\n\n), communication_stg__shopify_analytics_orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcustomer_id,\n\t\torder_id,\n\t\tamount,\n\t\tcampaign_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tflow_snapshot_id,\n\t\tab_campaign_id,\n\t\tchannel,\n\t\tcreated,\n\t\tcountry_iso,\n\t\ttype,\n\t\tstore_id,\n\t\tref_campaign_id,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__shopify_analytics_orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__shopify_subscription_list_pages": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__shopify_subscription_list_pages", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.sql", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.sql", "unique_id": "model.yoda.communication_stg__shopify_subscription_list_pages", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__shopify_subscription_list_pages", "communication_stg__shopify_subscription_list_pages"], "alias": "communication_stg__shopify_subscription_list_pages", "checksum": {"name": "sha256", "checksum": "512801aa45bdfc35ae22f1180b1fbad1ea844b05c419a23dbf244098fcdf16d4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__shopify_subscription_list_pages", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column upsolver_schema_version Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column processing_time Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column ts_ms Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column user_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "list_id": {"name": "list_id", "description": "TODO: Update Column list_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_id": {"name": "page_id", "description": "TODO: Update Column page_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "handle": {"name": "handle", "description": "TODO: Update Column handle Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column page_url Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_short_url": {"name": "page_short_url", "description": "TODO: Update Column page_short_url Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_short_loyalty_url": {"name": "page_short_loyalty_url", "description": "TODO: Update Column page_short_loyalty_url Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Column source Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "link_clicks": {"name": "link_clicks", "description": "TODO: Update Column link_clicks Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "link_subscribed": {"name": "link_subscribed", "description": "TODO: Update Column link_subscribed Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column created Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column modified Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.1349883, "relation_name": "dev_dkruh1.communication_stg__shopify_subscription_list_pages", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'shopify_subscription_list_pages') }}\n\n), communication_stg__shopify_subscription_list_pages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tlist_id,\n\t\tpage_id,\n\t\thandle,\n\t\tpage_url,\n\t\tpage_short_url,\n\t\tpage_short_loyalty_url,\n\t\tsource,\n\t\tlink_clicks,\n\t\tlink_subscribed,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__shopify_subscription_list_pages", "language": "sql", "refs": [], "sources": [["communication__sms", "shopify_subscription_list_pages"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.shopify_subscription_list_pages"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.shopify_subscription_list_pages\n\n), communication_stg__shopify_subscription_list_pages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tlist_id,\n\t\tpage_id,\n\t\thandle,\n\t\tpage_url,\n\t\tpage_short_url,\n\t\tpage_short_loyalty_url,\n\t\tsource,\n\t\tlink_clicks,\n\t\tlink_subscribed,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__shopify_subscription_list_pages", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__shopify_user_integrations": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__shopify_user_integrations", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.sql", "original_file_path": "models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.sql", "unique_id": "model.yoda.communication_stg__shopify_user_integrations", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__shopify_user_integrations", "communication_stg__shopify_user_integrations"], "alias": "communication_stg__shopify_user_integrations", "checksum": {"name": "sha256", "checksum": "6590837045922b03bee31b8bec1ca3ddd407602e651f9c7207b0c466429826c1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__shopify_user_integrations", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "integration_id": {"name": "integration_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.151358, "relation_name": "dev_dkruh1.communication_stg__shopify_user_integrations", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'shopify_user_integrations') }}\n\n), communication_stg__shopify_user_integrations AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tintegration_id,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__shopify_user_integrations", "language": "sql", "refs": [], "sources": [["communication__sms", "shopify_user_integrations"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.shopify_user_integrations"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.shopify_user_integrations\n\n), communication_stg__shopify_user_integrations AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tintegration_id,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__shopify_user_integrations", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__shopify_users": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__shopify_users", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.sql", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.sql", "unique_id": "model.yoda.communication_stg__shopify_users", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__shopify_users", "communication_stg__shopify_users"], "alias": "communication_stg__shopify_users", "checksum": {"name": "sha256", "checksum": "8a9498949a88b00d5f48513937aa67a3f12c11d9225d94c368fec7f6da5357ef"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__shopify_users", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store": {"name": "store", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "access_token": {"name": "access_token", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_data": {"name": "shop_data", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_data": {"name": "app_data", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan": {"name": "plan", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_store_id": {"name": "shopify_store_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "associated_user": {"name": "associated_user", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_reload": {"name": "auto_reload", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_threshold": {"name": "auto_reload_threshold", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_amount": {"name": "auto_reload_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_cap": {"name": "auto_reload_cap", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abandoned_checkouts_sent": {"name": "abandoned_checkouts_sent", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "connected": {"name": "connected", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_enabled": {"name": "sync_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "back_fill_completed": {"name": "back_fill_completed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes": {"name": "notes", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pinned_navigation": {"name": "pinned_navigation", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "consent_webhook_enabled": {"name": "consent_webhook_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.180692, "relation_name": "dev_dkruh1.communication_stg__shopify_users", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'shopify_users') }}\n\n), communication_stg__shopify_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore,\n\t\tdomain,\n\t\taccess_token,\n\t\tshop_data,\n\t\tapp_data,\n\t\tuser_id,\n\t\tplatform,\n\t\tplan,\n\t\tshopify_store_id,\n\t\tassociated_user,\n\t\tauto_reload,\n\t\tauto_reload_threshold,\n\t\tauto_reload_amount,\n\t\tauto_reload_cap,\n\t\tabandoned_checkouts_sent,\n\t\tconnected,\n\t\tsync_enabled,\n\t\tback_fill_completed,\n\t\tnotes,\n\t\tpinned_navigation,\n\t\tcreated,\n\t\tmodified,\n\t\tconsent_webhook_enabled,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__shopify_users", "language": "sql", "refs": [], "sources": [["communication__sms", "shopify_users"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.shopify_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.shopify_users\n\n), communication_stg__shopify_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore,\n\t\tdomain,\n\t\taccess_token,\n\t\tshop_data,\n\t\tapp_data,\n\t\tuser_id,\n\t\tplatform,\n\t\tplan,\n\t\tshopify_store_id,\n\t\tassociated_user,\n\t\tauto_reload,\n\t\tauto_reload_threshold,\n\t\tauto_reload_amount,\n\t\tauto_reload_cap,\n\t\tabandoned_checkouts_sent,\n\t\tconnected,\n\t\tsync_enabled,\n\t\tback_fill_completed,\n\t\tnotes,\n\t\tpinned_navigation,\n\t\tcreated,\n\t\tmodified,\n\t\tconsent_webhook_enabled,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__shopify_users", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__tmp_email_events": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__tmp_email_events", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.sql", "original_file_path": "models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.sql", "unique_id": "model.yoda.communication_stg__tmp_email_events", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__tmp_email_events", "communication_stg__tmp_email_events"], "alias": "communication_stg__tmp_email_events", "checksum": {"name": "sha256", "checksum": "a8b23621d392e1beeaa2ced9c4723570f07a43f91cb879263dd472b7021d816d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "button_name": {"name": "button_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "apperance": {"name": "apperance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.19535, "relation_name": "dev_dkruh1.communication_stg__tmp_email_events", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'tmp_email_events') }}\n\n), communication_stg__tmp_email_events AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tbutton_name,\n\t\tapperance,\n\t\tapp_key,\n\t\ttimestamp\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__tmp_email_events", "language": "sql", "refs": [], "sources": [["communication__sms", "tmp_email_events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.tmp_email_events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.tmp_email_events\n\n), communication_stg__tmp_email_events AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tbutton_name,\n\t\tapperance,\n\t\tapp_key,\n\t\ttimestamp\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__tmp_email_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__users": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__users", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.sql", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.sql", "unique_id": "model.yoda.communication_stg__users", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__users", "communication_stg__users"], "alias": "communication_stg__users", "checksum": {"name": "sha256", "checksum": "0a8ad03003df80b77b708a83b4998f43feaf597a36a560df78995af91684e3c0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__users", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "parent_id": {"name": "parent_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vendor_id": {"name": "vendor_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "support_level_id": {"name": "support_level_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "balance": {"name": "balance", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "bonus_balance": {"name": "bonus_balance", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits": {"name": "credits", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "earnings": {"name": "earnings", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "points": {"name": "points", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "role": {"name": "role", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_id": {"name": "role_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner": {"name": "partner", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner_info": {"name": "partner_info", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_nexmo_price_multiply": {"name": "partner_nexmo_price_multiply", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "plan": {"name": "plan", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_price": {"name": "plan_price", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "package_id": {"name": "package_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yotpo_app_key": {"name": "yotpo_app_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_app_secret": {"name": "yotpo_app_secret", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_organization_id": {"name": "yotpo_organization_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "payment_gateway": {"name": "payment_gateway", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provision_calls_count": {"name": "provision_calls_count", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_unique_id": {"name": "platform_unique_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_data": {"name": "discount_data", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_trial_until": {"name": "plan_trial_until", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "discounted_mms_price": {"name": "discounted_mms_price", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "affiliate_commission": {"name": "affiliate_commission", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amploa": {"name": "amploa", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_is_valid": {"name": "email_is_valid", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "password": {"name": "password", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_passwords": {"name": "old_passwords", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tfa_enabled": {"name": "tfa_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "preferred_vendor": {"name": "preferred_vendor", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_type": {"name": "partner_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_route": {"name": "delivery_route", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hash": {"name": "hash", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_number": {"name": "phone_number", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_subscription_list_id": {"name": "main_subscription_list_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "double_opt_in": {"name": "double_opt_in", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "double_opt_in_level": {"name": "double_opt_in_level", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timezone": {"name": "timezone", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dnd": {"name": "dnd", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dnd_from": {"name": "dnd_from", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dnd_to": {"name": "dnd_to", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smart_sending_value": {"name": "smart_sending_value", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smart_sending_ignore_transac_email": {"name": "smart_sending_ignore_transac_email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "strict_marketing_check": {"name": "strict_marketing_check", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_limit_enabled": {"name": "price_limit_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_limit": {"name": "price_limit", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "chat_enabled": {"name": "chat_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chat_settings": {"name": "chat_settings", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collect_checkout_subscribers": {"name": "collect_checkout_subscribers", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "country": {"name": "country", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countries_limitation_mode": {"name": "countries_limitation_mode", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countries_limitation_values": {"name": "countries_limitation_values", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "city": {"name": "city", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zipcode": {"name": "zipcode", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address": {"name": "address", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vat_number": {"name": "vat_number", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paypal_email": {"name": "paypal_email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "google_user_id": {"name": "google_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_id": {"name": "facebook_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_info": {"name": "facebook_info", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gplusurl": {"name": "gplusurl", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "picture": {"name": "picture", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cookie_related_users": {"name": "cookie_related_users", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "all_ip": {"name": "all_ip", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_ip": {"name": "last_ip", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_available": {"name": "last_available", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "total_logins": {"name": "total_logins", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_downloads": {"name": "total_downloads", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abuser_status": {"name": "abuser_status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abuser_notes": {"name": "abuser_notes", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_keywords_available_count": {"name": "free_keywords_available_count", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ban_exclude": {"name": "ban_exclude", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_test": {"name": "is_test", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscribed": {"name": "subscribed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscribed_to_forum": {"name": "subscribed_to_forum", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unsubscribe_reason": {"name": "unsubscribe_reason", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "notes": {"name": "notes", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upload_lists_enabled": {"name": "upload_lists_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes_modified": {"name": "notes_modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "agreed_terms": {"name": "agreed_terms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signed_promo_id": {"name": "signed_promo_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signup_source": {"name": "signup_source", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_name": {"name": "contact_card_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_logo": {"name": "contact_card_logo", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_path": {"name": "contact_card_path", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_message": {"name": "contact_card_message", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "system_messages_payer": {"name": "system_messages_payer", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "compliance_accepted_date": {"name": "compliance_accepted_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "affiliate_payout_pref": {"name": "affiliate_payout_pref", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "affiliate_payout_email": {"name": "affiliate_payout_email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_payout": {"name": "last_payout", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "automatic_transliteration": {"name": "automatic_transliteration", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_local_number_for_subscription": {"name": "use_local_number_for_subscription", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "onboarding_completed": {"name": "onboarding_completed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "industry": {"name": "industry", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "language": {"name": "language", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "whitelisted": {"name": "whitelisted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shaft_status": {"name": "shaft_status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__users/communication_stg__users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.2812462, "relation_name": "dev_dkruh1.communication_stg__users", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'users') }}\n\n), communication_stg__users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tparent_id,\n\t\tstore_id,\n\t\tvendor_id,\n\t\tsupport_level_id,\n\t\tbalance,\n\t\tbonus_balance,\n\t\tcredits,\n\t\tearnings,\n\t\tpoints,\n\t\trole,\n\t\trole_id,\n\t\tpartner,\n\t\tpartner_info,\n\t\tpartner_nexmo_price_multiply,\n\t\tplan,\n\t\tplan_price,\n\t\tpackage_id,\n\t\tyotpo_app_key,\n\t\tyotpo_app_secret,\n\t\tyotpo_organization_id,\n\t\tpayment_gateway,\n\t\tprovision_calls_count,\n\t\tplatform_unique_id,\n\t\tdiscount_data,\n\t\tplan_trial_until,\n\t\tdiscounted_mms_price,\n\t\taffiliate_commission,\n\t\tamploa,\n\t\temail,\n\t\temail_is_valid,\n\t\tpassword,\n\t\told_passwords,\n\t\ttfa_enabled,\n\t\tpreferred_vendor,\n\t\tpartner_type,\n\t\tdelivery_route,\n\t\thash,\n\t\tname,\n\t\tphone_number,\n\t\tplatform,\n\t\tmain_subscription_list_id,\n\t\tdouble_opt_in,\n\t\tdouble_opt_in_level,\n\t\ttimezone,\n\t\tdnd,\n\t\tdnd_from,\n\t\tdnd_to,\n\t\tsmart_sending_value,\n\t\tsmart_sending_ignore_transac_email,\n\t\tstrict_marketing_check,\n\t\tprice_limit_enabled,\n\t\tprice_limit,\n\t\tchat_enabled,\n\t\tchat_settings,\n\t\tcollect_checkout_subscribers,\n\t\tcountry,\n\t\tcountries_limitation_mode,\n\t\tcountries_limitation_values,\n\t\tstate,\n\t\tcity,\n\t\tzipcode,\n\t\taddress,\n\t\tvat_number,\n\t\tpaypal_email,\n\t\tgoogle_user_id,\n\t\tfacebook_id,\n\t\tfacebook_info,\n\t\tgplusurl,\n\t\tpicture,\n\t\tcookie_related_users,\n\t\tall_ip,\n\t\tlast_ip,\n\t\tlast_available,\n\t\ttotal_logins,\n\t\ttotal_downloads,\n\t\tabuser_status,\n\t\tabuser_notes,\n\t\tfree_keywords_available_count,\n\t\tban_exclude,\n\t\tis_test,\n\t\tsubscribed,\n\t\tsubscribed_to_forum,\n\t\tunsubscribe_reason,\n\t\tnotes,\n\t\tupload_lists_enabled,\n\t\tnotes_modified,\n\t\tagreed_terms,\n\t\tsigned_promo_id,\n\t\tsignup_source,\n\t\tcontact_card_name,\n\t\tcontact_card_logo,\n\t\tcontact_card_path,\n\t\tcontact_card_message,\n\t\tsystem_messages_payer,\n\t\tcompliance_accepted_date,\n\t\taffiliate_payout_pref,\n\t\taffiliate_payout_email,\n\t\tlast_payout,\n\t\tautomatic_transliteration,\n\t\tuse_local_number_for_subscription,\n\t\tonboarding_completed,\n\t\tindustry,\n\t\tlanguage,\n\t\tcreated,\n\t\tmodified,\n\t\twhitelisted,\n\t\tshaft_status,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__users", "language": "sql", "refs": [], "sources": [["communication__sms", "users"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__users/communication_stg__users.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM sms.users\n\n), communication_stg__users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tparent_id,\n\t\tstore_id,\n\t\tvendor_id,\n\t\tsupport_level_id,\n\t\tbalance,\n\t\tbonus_balance,\n\t\tcredits,\n\t\tearnings,\n\t\tpoints,\n\t\trole,\n\t\trole_id,\n\t\tpartner,\n\t\tpartner_info,\n\t\tpartner_nexmo_price_multiply,\n\t\tplan,\n\t\tplan_price,\n\t\tpackage_id,\n\t\tyotpo_app_key,\n\t\tyotpo_app_secret,\n\t\tyotpo_organization_id,\n\t\tpayment_gateway,\n\t\tprovision_calls_count,\n\t\tplatform_unique_id,\n\t\tdiscount_data,\n\t\tplan_trial_until,\n\t\tdiscounted_mms_price,\n\t\taffiliate_commission,\n\t\tamploa,\n\t\temail,\n\t\temail_is_valid,\n\t\tpassword,\n\t\told_passwords,\n\t\ttfa_enabled,\n\t\tpreferred_vendor,\n\t\tpartner_type,\n\t\tdelivery_route,\n\t\thash,\n\t\tname,\n\t\tphone_number,\n\t\tplatform,\n\t\tmain_subscription_list_id,\n\t\tdouble_opt_in,\n\t\tdouble_opt_in_level,\n\t\ttimezone,\n\t\tdnd,\n\t\tdnd_from,\n\t\tdnd_to,\n\t\tsmart_sending_value,\n\t\tsmart_sending_ignore_transac_email,\n\t\tstrict_marketing_check,\n\t\tprice_limit_enabled,\n\t\tprice_limit,\n\t\tchat_enabled,\n\t\tchat_settings,\n\t\tcollect_checkout_subscribers,\n\t\tcountry,\n\t\tcountries_limitation_mode,\n\t\tcountries_limitation_values,\n\t\tstate,\n\t\tcity,\n\t\tzipcode,\n\t\taddress,\n\t\tvat_number,\n\t\tpaypal_email,\n\t\tgoogle_user_id,\n\t\tfacebook_id,\n\t\tfacebook_info,\n\t\tgplusurl,\n\t\tpicture,\n\t\tcookie_related_users,\n\t\tall_ip,\n\t\tlast_ip,\n\t\tlast_available,\n\t\ttotal_logins,\n\t\ttotal_downloads,\n\t\tabuser_status,\n\t\tabuser_notes,\n\t\tfree_keywords_available_count,\n\t\tban_exclude,\n\t\tis_test,\n\t\tsubscribed,\n\t\tsubscribed_to_forum,\n\t\tunsubscribe_reason,\n\t\tnotes,\n\t\tupload_lists_enabled,\n\t\tnotes_modified,\n\t\tagreed_terms,\n\t\tsigned_promo_id,\n\t\tsignup_source,\n\t\tcontact_card_name,\n\t\tcontact_card_logo,\n\t\tcontact_card_path,\n\t\tcontact_card_message,\n\t\tsystem_messages_payer,\n\t\tcompliance_accepted_date,\n\t\taffiliate_payout_pref,\n\t\taffiliate_payout_email,\n\t\tlast_payout,\n\t\tautomatic_transliteration,\n\t\tuse_local_number_for_subscription,\n\t\tonboarding_completed,\n\t\tindustry,\n\t\tlanguage,\n\t\tcreated,\n\t\tmodified,\n\t\twhitelisted,\n\t\tshaft_status,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__users", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__users_additional_flags": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__users_additional_flags", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.sql", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.sql", "unique_id": "model.yoda.communication_stg__users_additional_flags", "fqn": ["yoda", "communication", "staging", "base", "communication_stg__users_additional_flags", "communication_stg__users_additional_flags"], "alias": "communication_stg__users_additional_flags", "checksum": {"name": "sha256", "checksum": "b3ced1571f2a54948a97dc4184a110d1544b0c3a91c23df9e619d2633923d55f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["north-bound-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "added_default_flows": {"name": "added_default_flows", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "added_default_segments": {"name": "added_default_segments", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "added_analytics_script": {"name": "added_analytics_script", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_version": {"name": "app_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "show_email": {"name": "show_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopify_sms_consent": {"name": "shopify_sms_consent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "segment_events_backfill": {"name": "segment_events_backfill", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_sms_subscribers_from_unomi": {"name": "show_sms_subscribers_from_unomi", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_contacts_from_unomi": {"name": "campaign_contacts_from_unomi", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_subs_analytics_over_unomi": {"name": "show_subs_analytics_over_unomi", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_loyalty_reviews_filters": {"name": "show_loyalty_reviews_filters", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_loyalty_tier_placeholders": {"name": "show_loyalty_tier_placeholders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_reviews_filters": {"name": "show_reviews_filters", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_attribution": {"name": "new_attribution", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_discount_logic": {"name": "new_discount_logic", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "generic_tags_available": {"name": "generic_tags_available", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "generic_products_available": {"name": "generic_products_available", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "generic_collections_available": {"name": "generic_collections_available", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_exports": {"name": "analytics_exports", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yotpo_active": {"name": "yotpo_active", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yotpo_status_last_check": {"name": "yotpo_status_last_check", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "added_default_segments_v1": {"name": "added_default_segments_v1", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "added_default_segments_email": {"name": "added_default_segments_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "generated_revenue": {"name": "generated_revenue", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_impressions_conv_rate_subs_form": {"name": "show_impressions_conv_rate_subs_form", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_cs_analytics_subscription_form": {"name": "show_cs_analytics_subscription_form", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_cs_looker_subscription_form": {"name": "show_cs_looker_subscription_form", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_subscriber_collection_looker": {"name": "show_subscriber_collection_looker", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_sub_form_looker_ui": {"name": "show_sub_form_looker_ui", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_cs_analytics_page": {"name": "show_cs_analytics_page", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_cs_listing_subscribers_types": {"name": "show_cs_listing_subscribers_types", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_analytics_total_message_parts": {"name": "show_analytics_total_message_parts", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_dashboard_page": {"name": "new_dashboard_page", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_payer_last_change": {"name": "sms_payer_last_change", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "show_report": {"name": "show_report", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_group_by_geo_report": {"name": "enable_group_by_geo_report", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_looker_analytics": {"name": "show_looker_analytics", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_subscribers_page": {"name": "new_subscribers_page", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "mandatory_opt_out_message": {"name": "mandatory_opt_out_message", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hide_subscriber_opt_in_preference": {"name": "hide_subscriber_opt_in_preference", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "multiple_free_keywords": {"name": "multiple_free_keywords", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_klaviyo_sync_logic": {"name": "new_klaviyo_sync_logic", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_klaviyo_integration_page": {"name": "new_klaviyo_integration_page", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_tiptap_composer": {"name": "use_tiptap_composer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_new_salesforce_version": {"name": "use_new_salesforce_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_tolstoy": {"name": "show_tolstoy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaigns_multiple_segments": {"name": "campaigns_multiple_segments", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "targeted_campaigns_sequence": {"name": "targeted_campaigns_sequence", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "push_tags_to_shopify": {"name": "push_tags_to_shopify", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recharge_set_user_timezone": {"name": "recharge_set_user_timezone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_auto_response_qr": {"name": "enable_auto_response_qr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_auto_response_social": {"name": "enable_auto_response_social", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_new_sidebar": {"name": "use_new_sidebar", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "edit_campaigns": {"name": "edit_campaigns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_new_analytics": {"name": "enable_new_analytics", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_klaviyo_flow_conditions": {"name": "enable_klaviyo_flow_conditions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_balance_logic": {"name": "new_balance_logic", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_new_analytics_campaigns_listing": {"name": "enable_new_analytics_campaigns_listing", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_new_analytics_campaign_overview": {"name": "enable_new_analytics_campaign_overview", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "resubscribe_user": {"name": "resubscribe_user", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "popup_enhancements": {"name": "popup_enhancements", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "exclude_generating_recipients_on_validating": {"name": "exclude_generating_recipients_on_validating", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "display_new_behavior_popup": {"name": "display_new_behavior_popup", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_request_data_modal": {"name": "new_request_data_modal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaigns_auto_reload_credits": {"name": "campaigns_auto_reload_credits", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "import_without_country_code": {"name": "import_without_country_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_listrak": {"name": "enable_listrak", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automations_v2": {"name": "automations_v2", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_integrations_test_mode": {"name": "enable_integrations_test_mode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unomi_campaigns_listing_fields": {"name": "unomi_campaigns_listing_fields", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unomi_parallel_fetch": {"name": "unomi_parallel_fetch", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "click_to_buy": {"name": "click_to_buy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_klaviyo_new_consent": {"name": "enable_klaviyo_new_consent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_loyalty_shortcodes": {"name": "use_loyalty_shortcodes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "browse_abandonment_shortcodes": {"name": "browse_abandonment_shortcodes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_review_shortcodes": {"name": "use_review_shortcodes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopify_transactional_flows": {"name": "shopify_transactional_flows", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hybrid_popup": {"name": "hybrid_popup", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "resource_feedback": {"name": "resource_feedback", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "display_hybrid_popup_migration_times_remaining": {"name": "display_hybrid_popup_migration_times_remaining", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_results": {"name": "campaign_results", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_queue_sdk": {"name": "use_queue_sdk", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_domestic_prices": {"name": "use_domestic_prices", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_microservice": {"name": "campaign_microservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "request_recipients_split": {"name": "request_recipients_split", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flows_preview": {"name": "flows_preview", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_onboarding_v2": {"name": "use_onboarding_v2", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "allow_onboarding_email": {"name": "allow_onboarding_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_popup_editor": {"name": "new_popup_editor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_loyalty_events": {"name": "new_loyalty_events", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "text_to_buy": {"name": "text_to_buy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_onboarding_discount_setup": {"name": "use_onboarding_discount_setup", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "litigators_service_enabled": {"name": "litigators_service_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flows_listing_redesign": {"name": "flows_listing_redesign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flows_library_redesign": {"name": "flows_library_redesign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flows_empty_state": {"name": "flows_empty_state", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collect_checkouts_subscribers_without_events": {"name": "collect_checkouts_subscribers_without_events", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_message_routing_service": {"name": "use_message_routing_service", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collect_subscribers_checkout": {"name": "collect_subscribers_checkout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automation_migration_popup": {"name": "automation_migration_popup", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pulling_klavyio_email_sub": {"name": "pulling_klavyio_email_sub", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "back_in_stock": {"name": "back_in_stock", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "duplicate_form_logic": {"name": "duplicate_form_logic", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cs_library_page": {"name": "cs_library_page", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_dashboard_tools": {"name": "show_dashboard_tools", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_recommendation_engine": {"name": "product_recommendation_engine", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_analytics_benchmark": {"name": "enable_analytics_benchmark", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "additional_vip_tier_loyalty_markers": {"name": "additional_vip_tier_loyalty_markers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ignore_transactional_triggers": {"name": "ignore_transactional_triggers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cs_tools_looker_analytics": {"name": "cs_tools_looker_analytics", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collect_subscribers_page_show_cvr_column": {"name": "collect_subscribers_page_show_cvr_column", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "welcome_msg_checkout": {"name": "welcome_msg_checkout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hide_cs_editor_store_view": {"name": "hide_cs_editor_store_view", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_looker_realtime_campaign": {"name": "enable_looker_realtime_campaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_looker_sources_reports": {"name": "enable_looker_sources_reports", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_flows": {"name": "subscription_flows", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "allow_webhooks_sms_list_segment_events": {"name": "allow_webhooks_sms_list_segment_events", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transactional_is_sms_subscriber": {"name": "transactional_is_sms_subscriber", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transactional_is_email_subscriber": {"name": "transactional_is_email_subscriber", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_user_service_messages": {"name": "use_user_service_messages", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_home_page_dashboard": {"name": "new_home_page_dashboard", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cs_enhanced_unomi_profile_creation": {"name": "cs_enhanced_unomi_profile_creation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "increase_customer_loyalty": {"name": "increase_customer_loyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automation_listing_redesign": {"name": "automation_listing_redesign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transactional_message_rules": {"name": "transactional_message_rules", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["north-bound-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["north-bound-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082666.3761988, "relation_name": "dev_dkruh1.communication_stg__users_additional_flags", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('communication__sms', 'users_additional_flags') }}\n\n), communication_stg__users_additional_flags AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tadded_default_flows,\n\t\tadded_default_segments,\n\t\tadded_analytics_script,\n\t\tapp_version,\n\t\tshow_email,\n\t\tshopify_sms_consent,\n\t\tsegment_events_backfill,\n\t\tshow_sms_subscribers_from_unomi,\n\t\tcampaign_contacts_from_unomi,\n\t\tshow_subs_analytics_over_unomi,\n\t\tshow_loyalty_reviews_filters,\n\t\tshow_loyalty_tier_placeholders,\n\t\tshow_reviews_filters,\n\t\tnew_attribution,\n\t\tnew_discount_logic,\n\t\tgeneric_tags_available,\n\t\tgeneric_products_available,\n\t\tgeneric_collections_available,\n\t\tanalytics_exports,\n\t\tyotpo_active,\n\t\tyotpo_status_last_check,\n\t\tadded_default_segments_v1,\n\t\tadded_default_segments_email,\n\t\tgenerated_revenue,\n\t\tshow_impressions_conv_rate_subs_form,\n\t\tshow_cs_analytics_subscription_form,\n\t\tshow_cs_looker_subscription_form,\n\t\tshow_subscriber_collection_looker,\n\t\tshow_sub_form_looker_ui,\n\t\tshow_cs_analytics_page,\n\t\tshow_cs_listing_subscribers_types,\n\t\tshow_analytics_total_message_parts,\n\t\tnew_dashboard_page,\n\t\tsms_payer_last_change,\n\t\tshow_report,\n\t\tenable_group_by_geo_report,\n\t\tshow_looker_analytics,\n\t\tnew_subscribers_page,\n\t\tmodified,\n\t\tcreated,\n\t\tmandatory_opt_out_message,\n\t\thide_subscriber_opt_in_preference,\n\t\tmultiple_free_keywords,\n\t\tnew_klaviyo_sync_logic,\n\t\tnew_klaviyo_integration_page,\n\t\tuse_tiptap_composer,\n\t\tuse_new_salesforce_version,\n\t\tshow_tolstoy,\n\t\tcampaigns_multiple_segments,\n\t\ttargeted_campaigns_sequence,\n\t\tpush_tags_to_shopify,\n\t\trecharge_set_user_timezone,\n\t\tenable_auto_response_qr,\n\t\tenable_auto_response_social,\n\t\tuse_new_sidebar,\n\t\tedit_campaigns,\n\t\tenable_new_analytics,\n\t\tenable_klaviyo_flow_conditions,\n\t\tnew_balance_logic,\n\t\tenable_new_analytics_campaigns_listing,\n\t\tenable_new_analytics_campaign_overview,\n\t\tresubscribe_user,\n\t\tpopup_enhancements,\n\t\texclude_generating_recipients_on_validating,\n\t\tdisplay_new_behavior_popup,\n\t\tnew_request_data_modal,\n\t\tcampaigns_auto_reload_credits,\n\t\timport_without_country_code,\n\t\tenable_listrak,\n\t\tautomations_v2,\n\t\tenable_integrations_test_mode,\n\t\tunomi_campaigns_listing_fields,\n\t\tunomi_parallel_fetch,\n\t\tclick_to_buy,\n\t\tenable_klaviyo_new_consent,\n\t\tuse_loyalty_shortcodes,\n\t\tbrowse_abandonment_shortcodes,\n\t\tuse_review_shortcodes,\n\t\tshopify_transactional_flows,\n\t\thybrid_popup,\n\t\tresource_feedback,\n\t\tdisplay_hybrid_popup_migration_times_remaining,\n\t\tcampaign_results,\n\t\tuse_queue_sdk,\n\t\tuse_domestic_prices,\n\t\tcampaign_microservice,\n\t\trequest_recipients_split,\n\t\tflows_preview,\n\t\tuse_onboarding_v2,\n\t\tallow_onboarding_email,\n\t\tnew_popup_editor,\n\t\tnew_loyalty_events,\n\t\ttext_to_buy,\n\t\tuse_onboarding_discount_setup,\n\t\tlitigators_service_enabled,\n\t\tflows_listing_redesign,\n\t\tflows_library_redesign,\n\t\tflows_empty_state,\n\t\tcollect_checkouts_subscribers_without_events,\n\t\tuse_message_routing_service,\n\t\tcollect_subscribers_checkout,\n\t\tautomation_migration_popup,\n\t\tpulling_klavyio_email_sub,\n\t\tback_in_stock,\n\t\tduplicate_form_logic,\n\t\tcs_library_page,\n\t\tshow_dashboard_tools,\n\t\tproduct_recommendation_engine,\n\t\tenable_analytics_benchmark,\n\t\tadditional_vip_tier_loyalty_markers,\n\t\tignore_transactional_triggers,\n\t\tcs_tools_looker_analytics,\n\t\tcollect_subscribers_page_show_cvr_column,\n\t\twelcome_msg_checkout,\n\t\thide_cs_editor_store_view,\n\t\tenable_looker_realtime_campaign,\n\t\tenable_looker_sources_reports,\n\t\tsubscription_flows,\n\t\tallow_webhooks_sms_list_segment_events,\n\t\ttransactional_is_sms_subscriber,\n\t\ttransactional_is_email_subscriber,\n\t\tuse_user_service_messages,\n\t\tnew_home_page_dashboard,\n\t\tcs_enhanced_unomi_profile_creation,\n\t\tincrease_customer_loyalty,\n\t\tautomation_listing_redesign,\n\t\ttransactional_message_rules\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__users_additional_flags", "language": "sql", "refs": [], "sources": [["communication__sms", "users_additional_flags"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.communication__sms.users_additional_flags"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.users_additional_flags\n\n), communication_stg__users_additional_flags AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tadded_default_flows,\n\t\tadded_default_segments,\n\t\tadded_analytics_script,\n\t\tapp_version,\n\t\tshow_email,\n\t\tshopify_sms_consent,\n\t\tsegment_events_backfill,\n\t\tshow_sms_subscribers_from_unomi,\n\t\tcampaign_contacts_from_unomi,\n\t\tshow_subs_analytics_over_unomi,\n\t\tshow_loyalty_reviews_filters,\n\t\tshow_loyalty_tier_placeholders,\n\t\tshow_reviews_filters,\n\t\tnew_attribution,\n\t\tnew_discount_logic,\n\t\tgeneric_tags_available,\n\t\tgeneric_products_available,\n\t\tgeneric_collections_available,\n\t\tanalytics_exports,\n\t\tyotpo_active,\n\t\tyotpo_status_last_check,\n\t\tadded_default_segments_v1,\n\t\tadded_default_segments_email,\n\t\tgenerated_revenue,\n\t\tshow_impressions_conv_rate_subs_form,\n\t\tshow_cs_analytics_subscription_form,\n\t\tshow_cs_looker_subscription_form,\n\t\tshow_subscriber_collection_looker,\n\t\tshow_sub_form_looker_ui,\n\t\tshow_cs_analytics_page,\n\t\tshow_cs_listing_subscribers_types,\n\t\tshow_analytics_total_message_parts,\n\t\tnew_dashboard_page,\n\t\tsms_payer_last_change,\n\t\tshow_report,\n\t\tenable_group_by_geo_report,\n\t\tshow_looker_analytics,\n\t\tnew_subscribers_page,\n\t\tmodified,\n\t\tcreated,\n\t\tmandatory_opt_out_message,\n\t\thide_subscriber_opt_in_preference,\n\t\tmultiple_free_keywords,\n\t\tnew_klaviyo_sync_logic,\n\t\tnew_klaviyo_integration_page,\n\t\tuse_tiptap_composer,\n\t\tuse_new_salesforce_version,\n\t\tshow_tolstoy,\n\t\tcampaigns_multiple_segments,\n\t\ttargeted_campaigns_sequence,\n\t\tpush_tags_to_shopify,\n\t\trecharge_set_user_timezone,\n\t\tenable_auto_response_qr,\n\t\tenable_auto_response_social,\n\t\tuse_new_sidebar,\n\t\tedit_campaigns,\n\t\tenable_new_analytics,\n\t\tenable_klaviyo_flow_conditions,\n\t\tnew_balance_logic,\n\t\tenable_new_analytics_campaigns_listing,\n\t\tenable_new_analytics_campaign_overview,\n\t\tresubscribe_user,\n\t\tpopup_enhancements,\n\t\texclude_generating_recipients_on_validating,\n\t\tdisplay_new_behavior_popup,\n\t\tnew_request_data_modal,\n\t\tcampaigns_auto_reload_credits,\n\t\timport_without_country_code,\n\t\tenable_listrak,\n\t\tautomations_v2,\n\t\tenable_integrations_test_mode,\n\t\tunomi_campaigns_listing_fields,\n\t\tunomi_parallel_fetch,\n\t\tclick_to_buy,\n\t\tenable_klaviyo_new_consent,\n\t\tuse_loyalty_shortcodes,\n\t\tbrowse_abandonment_shortcodes,\n\t\tuse_review_shortcodes,\n\t\tshopify_transactional_flows,\n\t\thybrid_popup,\n\t\tresource_feedback,\n\t\tdisplay_hybrid_popup_migration_times_remaining,\n\t\tcampaign_results,\n\t\tuse_queue_sdk,\n\t\tuse_domestic_prices,\n\t\tcampaign_microservice,\n\t\trequest_recipients_split,\n\t\tflows_preview,\n\t\tuse_onboarding_v2,\n\t\tallow_onboarding_email,\n\t\tnew_popup_editor,\n\t\tnew_loyalty_events,\n\t\ttext_to_buy,\n\t\tuse_onboarding_discount_setup,\n\t\tlitigators_service_enabled,\n\t\tflows_listing_redesign,\n\t\tflows_library_redesign,\n\t\tflows_empty_state,\n\t\tcollect_checkouts_subscribers_without_events,\n\t\tuse_message_routing_service,\n\t\tcollect_subscribers_checkout,\n\t\tautomation_migration_popup,\n\t\tpulling_klavyio_email_sub,\n\t\tback_in_stock,\n\t\tduplicate_form_logic,\n\t\tcs_library_page,\n\t\tshow_dashboard_tools,\n\t\tproduct_recommendation_engine,\n\t\tenable_analytics_benchmark,\n\t\tadditional_vip_tier_loyalty_markers,\n\t\tignore_transactional_triggers,\n\t\tcs_tools_looker_analytics,\n\t\tcollect_subscribers_page_show_cvr_column,\n\t\twelcome_msg_checkout,\n\t\thide_cs_editor_store_view,\n\t\tenable_looker_realtime_campaign,\n\t\tenable_looker_sources_reports,\n\t\tsubscription_flows,\n\t\tallow_webhooks_sms_list_segment_events,\n\t\ttransactional_is_sms_subscriber,\n\t\ttransactional_is_email_subscriber,\n\t\tuse_user_service_messages,\n\t\tnew_home_page_dashboard,\n\t\tcs_enhanced_unomi_profile_creation,\n\t\tincrease_customer_loyalty,\n\t\tautomation_listing_redesign,\n\t\ttransactional_message_rules\n FROM source\n\n)\n\nSELECT * \nFROM communication_stg__users_additional_flags", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__active_users_flags": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__active_users_flags", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.sql", "unique_id": "model.yoda.communication_stg__active_users_flags", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__active_users_flags", "communication_stg__active_users_flags"], "alias": "communication_stg__active_users_flags", "checksum": {"name": "sha256", "checksum": "a83b09d1d0d81151ece00e43aed0671c29f3d1806d70b4fee6a3315f69939d7b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_enabled": {"name": "email_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.3885412, "relation_name": "dev_dkruh1.communication_stg__active_users_flags", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MAX(sms_users_additional_flags.show_email) AS email_enabled\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users \n LEFT JOIN {{ ref('communication_stg__users_additional_flags') }} AS sms_users_additional_flags ON sms_recently_active_users.sms_user_id = sms_users_additional_flags.user_id\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__users_additional_flags", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__users_additional_flags"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MAX(sms_users_additional_flags.show_email) AS email_enabled\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users \n LEFT JOIN dev_dkruh1.communication_stg__users_additional_flags AS sms_users_additional_flags ON sms_recently_active_users.sms_user_id = sms_users_additional_flags.user_id\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__automations_abandoned_checkout_active": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__automations_abandoned_checkout_active", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.sql", "unique_id": "model.yoda.communication_stg__automations_abandoned_checkout_active", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__automations_abandoned_checkout_active", "communication_stg__automations_abandoned_checkout_active"], "alias": "communication_stg__automations_abandoned_checkout_active", "checksum": {"name": "sha256", "checksum": "56d60f72d12aa33cf71dd570d2ca0eec6c7aa89830901a8d071414efb9a769a4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Gives information wheather a user has an active abandoned checkout automation. An abandoned checkout automation is any automation with webhook \"checkouts/create\"", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled_automation_abandoned_checkout": {"name": "is_enabled_automation_abandoned_checkout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.399943, "relation_name": "dev_dkruh1.communication_stg__automations_abandoned_checkout_active", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_events.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_automation_abandoned_checkout\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users \n LEFT JOIN {{ ref('communication_stg__events') }} AS sms_events ON sms_recently_active_users.sms_user_id = sms_events.user_id\n AND sms_events.status = 1 AND sms_events.webhook = 'checkouts/create'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_events.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_automation_abandoned_checkout\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users \n LEFT JOIN dev_dkruh1.communication_stg__events AS sms_events ON sms_recently_active_users.sms_user_id = sms_events.user_id\n AND sms_events.status = 1 AND sms_events.webhook = 'checkouts/create'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__automations_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__automations_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_count/communication_stg__automations_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_count/communication_stg__automations_count.sql", "unique_id": "model.yoda.communication_stg__automations_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__automations_count", "communication_stg__automations_count"], "alias": "communication_stg__automations_count", "checksum": {"name": "sha256", "checksum": "bb9e1fe57892c53987af596cc92fe0909fa41678a8c7dfe6c4f41b6dec0d67e7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__automations_count", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smsbumpautomationscount": {"name": "smsbumpautomationscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__automations_count/communication_stg__automations_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.4112623, "relation_name": "dev_dkruh1.communication_stg__automations_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_events.id) > 10 THEN \"10+\"\n WHEN COUNT(sms_events.id) > 5 THEN \"6-10\"\n WHEN COUNT(sms_events.id) > 1 THEN \"2-5\"\n WHEN COUNT(sms_events.id) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smsbumpautomationscount\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users \n LEFT JOIN {{ ref('communication_stg__events') }} AS sms_events ON sms_recently_active_users.sms_user_id = sms_events.user_id\n AND sms_events.status = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__automations_count/communication_stg__automations_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_events.id) > 10 THEN \"10+\"\n WHEN COUNT(sms_events.id) > 5 THEN \"6-10\"\n WHEN COUNT(sms_events.id) > 1 THEN \"2-5\"\n WHEN COUNT(sms_events.id) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smsbumpautomationscount\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users \n LEFT JOIN dev_dkruh1.communication_stg__events AS sms_events ON sms_recently_active_users.sms_user_id = sms_events.user_id\n AND sms_events.status = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__automations_customer_winback_active": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__automations_customer_winback_active", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.sql", "unique_id": "model.yoda.communication_stg__automations_customer_winback_active", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__automations_customer_winback_active", "communication_stg__automations_customer_winback_active"], "alias": "communication_stg__automations_customer_winback_active", "checksum": {"name": "sha256", "checksum": "478e94e774831e739d8f7cfe9e442ee1c2277b2b464aff9d81851dd2251925be"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Gives information wheather a user has an active customer winback automation. A customer winback automatoin is any automation with webhook \"subscription/confirm\"", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled_automation_winback": {"name": "is_enabled_automation_winback", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.4236865, "relation_name": "dev_dkruh1.communication_stg__automations_customer_winback_active", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_events.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_automation_winback\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users \n LEFT JOIN {{ ref('communication_stg__events') }} AS sms_events ON sms_recently_active_users.sms_user_id = sms_events.user_id\n AND sms_events.status = 1 AND sms_events.webhook = 'customers/not_purchased'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_events.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_automation_winback\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users \n LEFT JOIN dev_dkruh1.communication_stg__events AS sms_events ON sms_recently_active_users.sms_user_id = sms_events.user_id\n AND sms_events.status = 1 AND sms_events.webhook = 'customers/not_purchased'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__automations_welcome_active": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__automations_welcome_active", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.sql", "unique_id": "model.yoda.communication_stg__automations_welcome_active", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__automations_welcome_active", "communication_stg__automations_welcome_active"], "alias": "communication_stg__automations_welcome_active", "checksum": {"name": "sha256", "checksum": "8946c3ff6f6aa1bb085b0f64ec4335b2628d80f9ac2f668bfff49fbf3d5979b8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Gives information wheather a user has an active welcome automation. A welcome automation is any automation with webhook \"subscription/confirm\"", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled_automation_welcome": {"name": "is_enabled_automation_welcome", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.4359727, "relation_name": "dev_dkruh1.communication_stg__automations_welcome_active", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_events.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_automation_welcome\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users \n LEFT JOIN {{ ref('communication_stg__events') }} AS sms_events ON sms_recently_active_users.sms_user_id = sms_events.user_id\n AND sms_events.status = 1 AND sms_events.webhook = 'subscription/confirm'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_events.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_automation_welcome\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users \n LEFT JOIN dev_dkruh1.communication_stg__events AS sms_events ON sms_recently_active_users.sms_user_id = sms_events.user_id\n AND sms_events.status = 1 AND sms_events.webhook = 'subscription/confirm'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__campaigns_sent_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__campaigns_sent_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.sql", "unique_id": "model.yoda.communication_stg__campaigns_sent_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__campaigns_sent_count", "communication_stg__campaigns_sent_count"], "alias": "communication_stg__campaigns_sent_count", "checksum": {"name": "sha256", "checksum": "958aa2771d803b5c5142f9fc2cd70257a11826b8c101d663420d6224e65b15a6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaigns_count": {"name": "campaigns_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.4472048, "relation_name": "dev_dkruh1.communication_stg__campaigns_sent_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(campaigns.id) AS campaigns_count\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n AND campaigns.sent >= 1\n AND campaigns.total_sent >= 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(campaigns.id) AS campaigns_count\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n AND campaigns.sent >= 1\n AND campaigns.total_sent >= 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__campaigns_sent_last_thirty_days_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__campaigns_sent_last_thirty_days_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.sql", "unique_id": "model.yoda.communication_stg__campaigns_sent_last_thirty_days_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__campaigns_sent_last_thirty_days_count", "communication_stg__campaigns_sent_last_thirty_days_count"], "alias": "communication_stg__campaigns_sent_last_thirty_days_count", "checksum": {"name": "sha256", "checksum": "edf27232bf6e04909d83d2c959b6f0e4dab60b693b22a455f1f90f20ecdfa0ea"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaigns_count_last_thirty_days": {"name": "campaigns_count_last_thirty_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.4596975, "relation_name": "dev_dkruh1.communication_stg__campaigns_sent_last_thirty_days_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(campaigns.id) AS campaigns_count_last_thirty_days\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n AND campaigns.sent >= 1\n AND campaigns.total_sent >= 1\n AND campaigns.created > DATE_SUB(NOW(), 30)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(campaigns.id) AS campaigns_count_last_thirty_days\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n AND campaigns.sent >= 1\n AND campaigns.total_sent >= 1\n AND campaigns.created > DATE_SUB(NOW(), 30)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__cs_forms_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__cs_forms_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.sql", "unique_id": "model.yoda.communication_stg__cs_forms_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__cs_forms_count", "communication_stg__cs_forms_count"], "alias": "communication_stg__cs_forms_count", "checksum": {"name": "sha256", "checksum": "75879efdbcefaaef82795444eb5c660c81070a68c5b074cf47fcbb1b60511d38"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__cs_forms_count", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forms_count": {"name": "forms_count", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "popup_tool_enabled": {"name": "popup_tool_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.4716847, "relation_name": "dev_dkruh1.communication_stg__cs_forms_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(sms_forms.id) AS forms_count,\n IF(SUM(CASE WHEN sms_forms.type = 'popup' THEN 1 ELSE 0 END) > 0, 1, 0) AS popup_tool_enabled\n FROM {{ ref('communication_stg__forms') }} AS sms_forms\n JOIN {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_forms.user_id\n WHERE sms_forms.status = 'published'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__forms", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__forms", "model.yoda.communication_stg__recently_active_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(sms_forms.id) AS forms_count,\n IF(SUM(CASE WHEN sms_forms.type = 'popup' THEN 1 ELSE 0 END) > 0, 1, 0) AS popup_tool_enabled\n FROM dev_dkruh1.communication_stg__forms AS sms_forms\n JOIN dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_forms.user_id\n WHERE sms_forms.status = 'published'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__cs_keywords_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__cs_keywords_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_keywords_count/communication_stg__cs_keywords_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_keywords_count/communication_stg__cs_keywords_count.sql", "unique_id": "model.yoda.communication_stg__cs_keywords_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__cs_keywords_count", "communication_stg__cs_keywords_count"], "alias": "communication_stg__cs_keywords_count", "checksum": {"name": "sha256", "checksum": "190a15abd53c36612b54b38dfd0f8d8ec11f706fc930028e0a60c6b82b91a2db"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__cs_keywords_count", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "keywords_count": {"name": "keywords_count", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__cs_keywords_count/communication_stg__cs_keywords_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.4838727, "relation_name": "dev_dkruh1.communication_stg__cs_keywords_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT \n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(sms_keywords.id) AS keywords_count\n FROM {{ ref('communication_stg__list_keywords') }} AS sms_keywords\n JOIN {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_keywords.user_id\n WHERE sms_keywords.status = 1 AND sms_keywords.subscription_status = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__list_keywords", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__list_keywords", "model.yoda.communication_stg__recently_active_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__cs_keywords_count/communication_stg__cs_keywords_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT \n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(sms_keywords.id) AS keywords_count\n FROM dev_dkruh1.communication_stg__list_keywords AS sms_keywords\n JOIN dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_keywords.user_id\n WHERE sms_keywords.status = 1 AND sms_keywords.subscription_status = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__cs_pages_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__cs_pages_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_pages_count/communication_stg__cs_pages_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_pages_count/communication_stg__cs_pages_count.sql", "unique_id": "model.yoda.communication_stg__cs_pages_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__cs_pages_count", "communication_stg__cs_pages_count"], "alias": "communication_stg__cs_pages_count", "checksum": {"name": "sha256", "checksum": "b10e1c01084855ff33e2b580d2bd298477e64356053b60fa65ea0abe5d84823c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__cs_pages_count", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pages_count": {"name": "pages_count", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__cs_pages_count/communication_stg__cs_pages_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.4967093, "relation_name": "dev_dkruh1.communication_stg__cs_pages_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(sms_pages.id) AS pages_count\n FROM {{ ref('communication_stg__shopify_subscription_list_pages') }} AS sms_pages\n JOIN {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_pages.user_id\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__shopify_subscription_list_pages", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__shopify_subscription_list_pages", "model.yoda.communication_stg__recently_active_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__cs_pages_count/communication_stg__cs_pages_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(sms_pages.id) AS pages_count\n FROM dev_dkruh1.communication_stg__shopify_subscription_list_pages AS sms_pages\n JOIN dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_pages.user_id\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__email_campaigns_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__email_campaigns_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_count/communication_stg__email_campaigns_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_count/communication_stg__email_campaigns_count.sql", "unique_id": "model.yoda.communication_stg__email_campaigns_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__email_campaigns_count", "communication_stg__email_campaigns_count"], "alias": "communication_stg__email_campaigns_count", "checksum": {"name": "sha256", "checksum": "00a3219a5c0d4d876a909ac9c3e02982e949ffe7bf222a3d69216d82f9532575"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__email_campaigns_count", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emailcampaignscount": {"name": "emailcampaignscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__email_campaigns_count/communication_stg__email_campaigns_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.5082119, "relation_name": "dev_dkruh1.communication_stg__email_campaigns_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_campaigns.id) > 10 THEN \"10+\"\n WHEN COUNT(sms_campaigns.id) > 5 THEN \"6-10\"\n WHEN COUNT(sms_campaigns.id) > 1 THEN \"2-5\"\n WHEN COUNT(sms_campaigns.id) = 1 THEN \"1\"\n ELSE \"0\"\n END AS emailcampaignscount\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS sms_campaigns ON sms_recently_active_users.sms_user_id = sms_campaigns.user_id\n AND sms_campaigns.channel = 'email'\n AND sms_campaigns.approved = 1\n AND sms_campaigns.status = 'created'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__email_campaigns_count/communication_stg__email_campaigns_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_campaigns.id) > 10 THEN \"10+\"\n WHEN COUNT(sms_campaigns.id) > 5 THEN \"6-10\"\n WHEN COUNT(sms_campaigns.id) > 1 THEN \"2-5\"\n WHEN COUNT(sms_campaigns.id) = 1 THEN \"1\"\n ELSE \"0\"\n END AS emailcampaignscount\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS sms_campaigns ON sms_recently_active_users.sms_user_id = sms_campaigns.user_id\n AND sms_campaigns.channel = 'email'\n AND sms_campaigns.approved = 1\n AND sms_campaigns.status = 'created'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__email_campaigns_sent_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__email_campaigns_sent_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.sql", "unique_id": "model.yoda.communication_stg__email_campaigns_sent_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__email_campaigns_sent_count", "communication_stg__email_campaigns_sent_count"], "alias": "communication_stg__email_campaigns_sent_count", "checksum": {"name": "sha256", "checksum": "2a643bdeac64e9ef291eabcd04743f704ad1dcf04291ed3660f871692b7b2689"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_campaigns_count": {"name": "email_campaigns_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.5196745, "relation_name": "dev_dkruh1.communication_stg__email_campaigns_sent_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(email_campaigns.id) AS email_campaigns_count\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS email_campaigns ON sms_recently_active_users.sms_user_id = email_campaigns.user_id\n AND email_campaigns.channel = 'email'\n AND email_campaigns.sent >= 1\n AND email_campaigns.total_sent >= 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(email_campaigns.id) AS email_campaigns_count\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS email_campaigns ON sms_recently_active_users.sms_user_id = email_campaigns.user_id\n AND email_campaigns.channel = 'email'\n AND email_campaigns.sent >= 1\n AND email_campaigns.total_sent >= 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__email_campaigns_sent_last_thirty_days_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.sql", "unique_id": "model.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__email_campaigns_sent_last_thirty_days_count", "communication_stg__email_campaigns_sent_last_thirty_days_count"], "alias": "communication_stg__email_campaigns_sent_last_thirty_days_count", "checksum": {"name": "sha256", "checksum": "30179ccd304d487847400fa9f41d74372a6ca67716d7b1381a0745efafec30e8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_campaigns_count_last_thirty_days": {"name": "email_campaigns_count_last_thirty_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.5323505, "relation_name": "dev_dkruh1.communication_stg__email_campaigns_sent_last_thirty_days_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(campaigns.id) AS email_campaigns_count_last_thirty_days\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n AND campaigns.channel = 'email'\n AND campaigns.sent >= 1\n AND campaigns.total_sent >= 1\n AND campaigns.created > DATE_SUB(NOW(), 30)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(campaigns.id) AS email_campaigns_count_last_thirty_days\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n AND campaigns.channel = 'email'\n AND campaigns.sent >= 1\n AND campaigns.total_sent >= 1\n AND campaigns.created > DATE_SUB(NOW(), 30)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__email_intent_popup_first_accept_date": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__email_intent_popup_first_accept_date", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.sql", "unique_id": "model.yoda.communication_stg__email_intent_popup_first_accept_date", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__email_intent_popup_first_accept_date", "communication_stg__email_intent_popup_first_accept_date"], "alias": "communication_stg__email_intent_popup_first_accept_date", "checksum": {"name": "sha256", "checksum": "d2f4d9cd04d00f04117e3889486a10e5bc41025cddf66ab0a6a0eae031116637"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Gives the date of the first time a user accepted the popup", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_intent_popup_first_accept_date": {"name": "email_intent_popup_first_accept_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.5438776, "relation_name": "dev_dkruh1.communication_stg__email_intent_popup_first_accept_date", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n DATE(MIN(timestamp)) AS email_intent_popup_first_accept_date\n FROM {{ ref('communication_stg__tmp_email_events') }} AS email_events\n JOIN {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users ON sms_recently_active_users.yotpo_app_key = email_events.app_key\n WHERE button_name IN ('Schedule demo', 'Check out', 'interested')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__tmp_email_events", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__tmp_email_events", "model.yoda.communication_stg__recently_active_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n DATE(MIN(timestamp)) AS email_intent_popup_first_accept_date\n FROM dev_dkruh1.communication_stg__tmp_email_events AS email_events\n JOIN dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users ON sms_recently_active_users.yotpo_app_key = email_events.app_key\n WHERE button_name IN ('Schedule demo', 'Check out', 'interested')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__email_intent_popup_first_decline_date": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__email_intent_popup_first_decline_date", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.sql", "unique_id": "model.yoda.communication_stg__email_intent_popup_first_decline_date", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__email_intent_popup_first_decline_date", "communication_stg__email_intent_popup_first_decline_date"], "alias": "communication_stg__email_intent_popup_first_decline_date", "checksum": {"name": "sha256", "checksum": "dc9a4ca9a7c6d87825b436fbf1d8ea3aaf0f19f3c69a60cef8373e96e355350c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Gives the date of the first time a user declined the popup", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_intent_popup_first_decline_date": {"name": "email_intent_popup_first_decline_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.555124, "relation_name": "dev_dkruh1.communication_stg__email_intent_popup_first_decline_date", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n DATE(MIN(timestamp)) AS email_intent_popup_first_decline_date\n FROM {{ ref('communication_stg__tmp_email_events') }} AS email_events\n JOIN {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users ON sms_recently_active_users.yotpo_app_key = email_events.app_key\n WHERE button_name IN ('Don\u2019t show me again', 'not interested')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__tmp_email_events", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__tmp_email_events", "model.yoda.communication_stg__recently_active_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n DATE(MIN(timestamp)) AS email_intent_popup_first_decline_date\n FROM dev_dkruh1.communication_stg__tmp_email_events AS email_events\n JOIN dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users ON sms_recently_active_users.yotpo_app_key = email_events.app_key\n WHERE button_name IN ('Don\u2019t show me again', 'not interested')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__email_intent_popup_status": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__email_intent_popup_status", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.sql", "unique_id": "model.yoda.communication_stg__email_intent_popup_status", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__email_intent_popup_status", "communication_stg__email_intent_popup_status"], "alias": "communication_stg__email_intent_popup_status", "checksum": {"name": "sha256", "checksum": "07582dbb1baf4e6b2e3096d0eaed1e06672e6afb02ea381790f34ee0d50b676c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "button_name": {"name": "button_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_intent_popup_last_choice_date": {"name": "email_intent_popup_last_choice_date", "description": "The date of the last choice from a user, either accepted or declined.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email_intent_popup_last_choice": {"name": "email_intent_popup_last_choice", "description": "The last choice of the user, accepted is true, declined is false.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.5690398, "relation_name": "dev_dkruh1.communication_stg__email_intent_popup_status", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n email_events.button_name,\n MAX(email_events.timestamp) AS email_intent_popup_last_choice_date,\n IF(button_name IN ('Schedule demo', 'Check out', 'interested'), true, false) AS email_intent_popup_last_choice\n FROM {{ ref('communication_stg__tmp_email_events') }} AS email_events\n JOIN {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users ON sms_recently_active_users.yotpo_app_key = email_events.app_key\n WHERE button_name IN ('Schedule demo', 'Check out', 'interested', 'Don\u2019t show me again', 'not interested')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id, email_events.button_name\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__tmp_email_events", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__tmp_email_events", "model.yoda.communication_stg__recently_active_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n email_events.button_name,\n MAX(email_events.timestamp) AS email_intent_popup_last_choice_date,\n IF(button_name IN ('Schedule demo', 'Check out', 'interested'), true, false) AS email_intent_popup_last_choice\n FROM dev_dkruh1.communication_stg__tmp_email_events AS email_events\n JOIN dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users ON sms_recently_active_users.yotpo_app_key = email_events.app_key\n WHERE button_name IN ('Schedule demo', 'Check out', 'interested', 'Don\u2019t show me again', 'not interested')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id, email_events.button_name\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__email_shopify_orders_analytics": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__email_shopify_orders_analytics", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.sql", "unique_id": "model.yoda.communication_stg__email_shopify_orders_analytics", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__email_shopify_orders_analytics", "communication_stg__email_shopify_orders_analytics"], "alias": "communication_stg__email_shopify_orders_analytics", "checksum": {"name": "sha256", "checksum": "1dbfacfb0067575bb3294972d5b28354e51eab1e86ca5b1816ee3b66b50248c7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Shopify orders which were created after using the Email product", "columns": {"order_id": {"name": "order_id", "description": "Shopify Order ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price": {"name": "total_price", "description": "Amount (decimal)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency": {"name": "currency", "description": "Currency (USD, EUR, etc)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "Order date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "Yotpo App Key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "External Customer ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.5826864, "relation_name": "dev_dkruh1.communication_stg__email_shopify_orders_analytics", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n shopify_analytics_orders.order_id AS order_id,\n shopify_analytics_orders.amount AS total_price,\n 'USD' AS currency,\n shopify_analytics_orders.created AS order_date,\n users.yotpo_app_key AS app_key,\n shopify_analytics_orders.customer_id AS external_customer_id\n FROM {{ ref('communication_stg__shopify_analytics_orders') }} AS shopify_analytics_orders \n JOIN {{ ref('communication_stg__users') }} AS users ON users.id = shopify_analytics_orders.user_id\n WHERE shopify_analytics_orders.channel = 'email' AND users.yotpo_app_key IS NOT NULL\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__shopify_analytics_orders", "package": null, "version": null}, {"name": "communication_stg__users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__shopify_analytics_orders", "model.yoda.communication_stg__users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n shopify_analytics_orders.order_id AS order_id,\n shopify_analytics_orders.amount AS total_price,\n 'USD' AS currency,\n shopify_analytics_orders.created AS order_date,\n users.yotpo_app_key AS app_key,\n shopify_analytics_orders.customer_id AS external_customer_id\n FROM dev_dkruh1.communication_stg__shopify_analytics_orders AS shopify_analytics_orders \n JOIN dev_dkruh1.communication_stg__users AS users ON users.id = shopify_analytics_orders.user_id\n WHERE shopify_analytics_orders.channel = 'email' AND users.yotpo_app_key IS NOT NULL\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__email_subscribers_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__email_subscribers_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.sql", "unique_id": "model.yoda.communication_stg__email_subscribers_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__email_subscribers_count", "communication_stg__email_subscribers_count"], "alias": "communication_stg__email_subscribers_count", "checksum": {"name": "sha256", "checksum": "a70faa06193af93f609c6fdc7a657bb0bf06284f89300348f164aa97ca7edea9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Number of email subscribers per store", "columns": {"user_id": {"name": "user_id", "description": "User ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "SMS User ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emailsubscriberscount": {"name": "emailsubscriberscount", "description": "Number of email subscribers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.5940826, "relation_name": "dev_dkruh1.communication_stg__email_subscribers_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 100000 THEN \"100000+\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 50000 THEN \"50000-99999\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 30000 THEN \"30000-49999\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 10000 THEN \"10000-29999\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 1000 THEN \"1000-9999\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 2 THEN \"2-999\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) = 1 THEN \"1\"\n ELSE \"0\"\n END AS emailsubscriberscount\n FROM {{ref('communication_stg__recently_active_users')}} AS sms_recently_active_users\n JOIN {{ ref('communication_stg__profiles') }} AS profiles ON sms_recently_active_users.yotpo_app_key = profiles.properties.storeId \n WHERE profiles.mergedWith IS NULL AND profiles.properties.email IS NOT null AND profiles.properties.email <> '' AND (properties.EmailMarketing.AcceptsMarketing = true OR properties.AcceptsEmailMarketing = true)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__profiles", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__profiles"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 100000 THEN \"100000+\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 50000 THEN \"50000-99999\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 30000 THEN \"30000-49999\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 10000 THEN \"10000-29999\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 1000 THEN \"1000-9999\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) >= 2 THEN \"2-999\"\n WHEN COUNT(DISTINCT(profiles.properties.email)) = 1 THEN \"1\"\n ELSE \"0\"\n END AS emailsubscriberscount\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n JOIN dev_dkruh1.communication_stg__profiles AS profiles ON sms_recently_active_users.yotpo_app_key = profiles.properties.storeId \n WHERE profiles.mergedWith IS NULL AND profiles.properties.email IS NOT null AND profiles.properties.email <> '' AND (properties.EmailMarketing.AcceptsMarketing = true OR properties.AcceptsEmailMarketing = true)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__email_usage_avg_last_three_months": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__email_usage_avg_last_three_months", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.sql", "unique_id": "model.yoda.communication_stg__email_usage_avg_last_three_months", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__email_usage_avg_last_three_months", "communication_stg__email_usage_avg_last_three_months"], "alias": "communication_stg__email_usage_avg_last_three_months", "checksum": {"name": "sha256", "checksum": "561267a2721fa1a9f3dc20e171d288789334bfb86a60eea2dc822f260f1331b4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_credits_used_last_three_months_average": {"name": "email_credits_used_last_three_months_average", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.6076827, "relation_name": "dev_dkruh1.communication_stg__email_usage_avg_last_three_months", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n (\n IFNULL(SUM(email_billing_events_charges.request_cost), 0)\n -\n IFNULL(SUM(email_billing_events_refunds.request_cost), 0)\n ) / 3 AS email_credits_used_last_three_months_average\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users \n JOIN {{ ref('communication_stg__users') }} AS sms_users ON sms_recently_active_users.sms_user_id = sms_users.id\n LEFT JOIN {{ ref('communication_stg__billing_events') }} AS email_billing_events_charges ON email_billing_events_charges.store_id = sms_users.yotpo_app_key\n AND email_billing_events_charges.operation_type = 'CHARGE'\n AND email_billing_events_charges.processing_time >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND email_billing_events_charges.processing_time < trunc(DATEADD(MONTH, 0, now()), 'MM') \n LEFT JOIN {{ ref('communication_stg__billing_events') }} AS email_billing_events_refunds ON email_billing_events_refunds.store_id = sms_users.yotpo_app_key\n AND email_billing_events_refunds.operation_type = 'REFUND'\n AND email_billing_events_refunds.processing_time >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND email_billing_events_refunds.processing_time < trunc(DATEADD(MONTH, 0, now()), 'MM') \n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__users", "package": null, "version": null}, {"name": "communication_stg__billing_events", "package": null, "version": null}, {"name": "communication_stg__billing_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__users", "model.yoda.communication_stg__billing_events", "model.yoda.communication_stg__billing_events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n (\n IFNULL(SUM(email_billing_events_charges.request_cost), 0)\n -\n IFNULL(SUM(email_billing_events_refunds.request_cost), 0)\n ) / 3 AS email_credits_used_last_three_months_average\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users \n JOIN dev_dkruh1.communication_stg__users AS sms_users ON sms_recently_active_users.sms_user_id = sms_users.id\n LEFT JOIN dev_dkruh1.communication_stg__billing_events AS email_billing_events_charges ON email_billing_events_charges.store_id = sms_users.yotpo_app_key\n AND email_billing_events_charges.operation_type = 'CHARGE'\n AND email_billing_events_charges.processing_time >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND email_billing_events_charges.processing_time < trunc(DATEADD(MONTH, 0, now()), 'MM') \n LEFT JOIN dev_dkruh1.communication_stg__billing_events AS email_billing_events_refunds ON email_billing_events_refunds.store_id = sms_users.yotpo_app_key\n AND email_billing_events_refunds.operation_type = 'REFUND'\n AND email_billing_events_refunds.processing_time >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND email_billing_events_refunds.processing_time < trunc(DATEADD(MONTH, 0, now()), 'MM') \n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__first_email_campaign_sent": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__first_email_campaign_sent", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.sql", "unique_id": "model.yoda.communication_stg__first_email_campaign_sent", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__first_email_campaign_sent", "communication_stg__first_email_campaign_sent"], "alias": "communication_stg__first_email_campaign_sent", "checksum": {"name": "sha256", "checksum": "a9096d4a9f8f3ac4067242bd7215bb61b2eb933da6f5ab872112740b270d6255"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_email_campaign_sent_date": {"name": "first_email_campaign_sent_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.619839, "relation_name": "dev_dkruh1.communication_stg__first_email_campaign_sent", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MIN(campaigns.modified) AS first_email_campaign_sent_date\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n WHERE campaigns.approved = 1\n AND campaigns.channel = 'email'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MIN(campaigns.modified) AS first_email_campaign_sent_date\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n WHERE campaigns.approved = 1\n AND campaigns.channel = 'email'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__first_email_message_sent": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__first_email_message_sent", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.sql", "unique_id": "model.yoda.communication_stg__first_email_message_sent", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__first_email_message_sent", "communication_stg__first_email_message_sent"], "alias": "communication_stg__first_email_message_sent", "checksum": {"name": "sha256", "checksum": "ef6ea2cf8a51514e151e09cdd0a711e73295b48269ba1481def22077e857e81c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_email_message_sent_date": {"name": "first_email_message_sent_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.631394, "relation_name": "dev_dkruh1.communication_stg__first_email_message_sent", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MIN(email_esp_events.modified) AS first_email_message_sent_date\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__email_esp_events') }} AS email_esp_events ON sms_recently_active_users.sms_user_id = email_esp_events.user_id\n WHERE email_esp_events.event_type = 'sent'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__email_esp_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__email_esp_events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MIN(email_esp_events.modified) AS first_email_message_sent_date\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__email_esp_events AS email_esp_events ON sms_recently_active_users.sms_user_id = email_esp_events.user_id\n WHERE email_esp_events.event_type = 'sent'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__first_sms_campaign_sent": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__first_sms_campaign_sent", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.sql", "unique_id": "model.yoda.communication_stg__first_sms_campaign_sent", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__first_sms_campaign_sent", "communication_stg__first_sms_campaign_sent"], "alias": "communication_stg__first_sms_campaign_sent", "checksum": {"name": "sha256", "checksum": "3e637ed2a175330ca11b6cc36224aef756cd5db59b9ccb9ce3d8e62e3eca2035"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_sms_campaign_sent_date": {"name": "first_sms_campaign_sent_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.6439419, "relation_name": "dev_dkruh1.communication_stg__first_sms_campaign_sent", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MIN(campaigns.modified) AS first_sms_campaign_sent_date\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n WHERE campaigns.approved = 1\n AND campaigns.channel = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MIN(campaigns.modified) AS first_sms_campaign_sent_date\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n WHERE campaigns.approved = 1\n AND campaigns.channel = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__first_sms_message_sent": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__first_sms_message_sent", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.sql", "unique_id": "model.yoda.communication_stg__first_sms_message_sent", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__first_sms_message_sent", "communication_stg__first_sms_message_sent"], "alias": "communication_stg__first_sms_message_sent", "checksum": {"name": "sha256", "checksum": "28fcce34bdd9719d4a1a7b8cc09ec4fd7c3dfac4c814e42e78447d36d367dee2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_sms_message_sent_date": {"name": "first_sms_message_sent_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.655777, "relation_name": "dev_dkruh1.communication_stg__first_sms_message_sent", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MIN(apicalls.modified) AS first_sms_message_sent_date\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__apicalls') }} AS apicalls ON sms_recently_active_users.sms_user_id = apicalls.user_id\n WHERE apicalls.status = 'sent'\n AND apicalls.platform = 'shopify'\n AND apicalls.type = 'SMS' OR apicalls.type = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__apicalls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__apicalls"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MIN(apicalls.modified) AS first_sms_message_sent_date\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__apicalls AS apicalls ON sms_recently_active_users.sms_user_id = apicalls.user_id\n WHERE apicalls.status = 'sent'\n AND apicalls.platform = 'shopify'\n AND apicalls.type = 'SMS' OR apicalls.type = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__flows_abandoned_checkout_active": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__flows_abandoned_checkout_active", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.sql", "unique_id": "model.yoda.communication_stg__flows_abandoned_checkout_active", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__flows_abandoned_checkout_active", "communication_stg__flows_abandoned_checkout_active"], "alias": "communication_stg__flows_abandoned_checkout_active", "checksum": {"name": "sha256", "checksum": "5aa56f9abebb89ce8ac68f77e2e05e713edae9aa1b63dbb6fa243acb29bf814f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Gives information wheather a user has an active abandoned checkout flow. An abandoned checkout flow is any flow with trigger \"checkouts/create\"", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled_flows_abandoned_checkout": {"name": "is_enabled_flows_abandoned_checkout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.6671605, "relation_name": "dev_dkruh1.communication_stg__flows_abandoned_checkout_active", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_flows.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_flows_abandoned_checkout\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__flows') }} AS sms_flows ON sms_recently_active_users.sms_user_id = sms_flows.user_id\n AND sms_flows.status = 1 AND sms_flows.flow_trigger = 'checkouts/create'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__flows", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__flows"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_flows.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_flows_abandoned_checkout\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__flows AS sms_flows ON sms_recently_active_users.sms_user_id = sms_flows.user_id\n AND sms_flows.status = 1 AND sms_flows.flow_trigger = 'checkouts/create'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__flows_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__flows_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_count/communication_stg__flows_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_count/communication_stg__flows_count.sql", "unique_id": "model.yoda.communication_stg__flows_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__flows_count", "communication_stg__flows_count"], "alias": "communication_stg__flows_count", "checksum": {"name": "sha256", "checksum": "ac7e510b97e1ce5c5acd2786f39d6acf73438e4ae53a86d7a23f802c044ae98b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__flows_count", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smsbumpflowscount": {"name": "smsbumpflowscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__flows_count/communication_stg__flows_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.6801772, "relation_name": "dev_dkruh1.communication_stg__flows_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_flows.id) > 10 THEN \"10+\"\n WHEN COUNT(sms_flows.id) > 5 THEN \"6-10\"\n WHEN COUNT(sms_flows.id) > 1 THEN \"2-5\"\n WHEN COUNT(sms_flows.id) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smsbumpflowscount\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__flows') }} AS sms_flows ON sms_recently_active_users.sms_user_id = sms_flows.user_id\n AND sms_flows.status = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__flows", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__flows"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__flows_count/communication_stg__flows_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_flows.id) > 10 THEN \"10+\"\n WHEN COUNT(sms_flows.id) > 5 THEN \"6-10\"\n WHEN COUNT(sms_flows.id) > 1 THEN \"2-5\"\n WHEN COUNT(sms_flows.id) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smsbumpflowscount\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__flows AS sms_flows ON sms_recently_active_users.sms_user_id = sms_flows.user_id\n AND sms_flows.status = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__flows_customer_winback_active": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__flows_customer_winback_active", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.sql", "unique_id": "model.yoda.communication_stg__flows_customer_winback_active", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__flows_customer_winback_active", "communication_stg__flows_customer_winback_active"], "alias": "communication_stg__flows_customer_winback_active", "checksum": {"name": "sha256", "checksum": "9df85fafb5316b1371b947c2c46e8d4fd6a2a74cc2094ab0115460775a8da871"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Gives information wheather a user has an active customer winback flow. A customer winback flow is any flow with trigger \"subscription/confirm\"", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled_flows_customer_winback": {"name": "is_enabled_flows_customer_winback", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.691692, "relation_name": "dev_dkruh1.communication_stg__flows_customer_winback_active", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_flows.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_flows_customer_winback\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__flows') }} AS sms_flows ON sms_recently_active_users.sms_user_id = sms_flows.user_id\n AND sms_flows.status = 1 AND sms_flows.flow_trigger = 'customers/not_purchased'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__flows", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__flows"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_flows.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_flows_customer_winback\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__flows AS sms_flows ON sms_recently_active_users.sms_user_id = sms_flows.user_id\n AND sms_flows.status = 1 AND sms_flows.flow_trigger = 'customers/not_purchased'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__flows_welcome_active": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__flows_welcome_active", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.sql", "unique_id": "model.yoda.communication_stg__flows_welcome_active", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__flows_welcome_active", "communication_stg__flows_welcome_active"], "alias": "communication_stg__flows_welcome_active", "checksum": {"name": "sha256", "checksum": "f8195ba60f72f7f92869f079aa0a6d363c62d3c86978b9f72c1d986242f8f52e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Gives information wheather a user has an active welcome flow. A welcome flow is any flow with trigger \"subscription/confirm\"", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled_flows_welcome": {"name": "is_enabled_flows_welcome", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.7035382, "relation_name": "dev_dkruh1.communication_stg__flows_welcome_active", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_flows.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_flows_welcome\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__flows') }} AS sms_flows ON sms_recently_active_users.sms_user_id = sms_flows.user_id\n AND sms_flows.status = 1 AND sms_flows.flow_trigger = 'subscription/confirm'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__flows", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__flows"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_flows.user_id) > 0 THEN true\n ELSE false\n END AS is_enabled_flows_welcome\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__flows AS sms_flows ON sms_recently_active_users.sms_user_id = sms_flows.user_id\n AND sms_flows.status = 1 AND sms_flows.flow_trigger = 'subscription/confirm'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__integrations_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__integrations_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__integrations_count/communication_stg__integrations_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__integrations_count/communication_stg__integrations_count.sql", "unique_id": "model.yoda.communication_stg__integrations_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__integrations_count", "communication_stg__integrations_count"], "alias": "communication_stg__integrations_count", "checksum": {"name": "sha256", "checksum": "2f4e47ef2408d2368e39b783ceb54c6332385a1c706307fe58f70c7d97652d18"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__integrations_count", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smsbumpintegrationscount": {"name": "smsbumpintegrationscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__integrations_count/communication_stg__integrations_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.7169046, "relation_name": "dev_dkruh1.communication_stg__integrations_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_integrations.id) > 10 THEN \"10+\"\n WHEN COUNT(sms_integrations.id) > 5 THEN \"6-10\"\n WHEN COUNT(sms_integrations.id) > 1 THEN \"2-5\"\n WHEN COUNT(sms_integrations.id) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smsbumpintegrationscount\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__shopify_user_integrations') }} AS sms_integrations ON sms_recently_active_users.sms_user_id = sms_integrations.user_id\n AND sms_integrations.status = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__shopify_user_integrations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_user_integrations"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__integrations_count/communication_stg__integrations_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_integrations.id) > 10 THEN \"10+\"\n WHEN COUNT(sms_integrations.id) > 5 THEN \"6-10\"\n WHEN COUNT(sms_integrations.id) > 1 THEN \"2-5\"\n WHEN COUNT(sms_integrations.id) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smsbumpintegrationscount\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__shopify_user_integrations AS sms_integrations ON sms_recently_active_users.sms_user_id = sms_integrations.user_id\n AND sms_integrations.status = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__klaviyo_integration_enabled": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__klaviyo_integration_enabled", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.sql", "unique_id": "model.yoda.communication_stg__klaviyo_integration_enabled", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__klaviyo_integration_enabled", "communication_stg__klaviyo_integration_enabled"], "alias": "communication_stg__klaviyo_integration_enabled", "checksum": {"name": "sha256", "checksum": "4f3a53e635f084304fd0736a5aa23b51cdd3a38682f77741dc86fd5b9afd782d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "klaviyo_integration_enabled": {"name": "klaviyo_integration_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.728605, "relation_name": "dev_dkruh1.communication_stg__klaviyo_integration_enabled", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n IF(COUNT(sms_klaviyo_users.id) > 0, 1, 0) AS klaviyo_integration_enabled\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users \n LEFT JOIN {{ ref('communication_stg__klaviyo_users') }} AS sms_klaviyo_users ON sms_recently_active_users.sms_user_id = sms_klaviyo_users.user_id\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__klaviyo_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__klaviyo_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n IF(COUNT(sms_klaviyo_users.id) > 0, 1, 0) AS klaviyo_integration_enabled\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users \n LEFT JOIN dev_dkruh1.communication_stg__klaviyo_users AS sms_klaviyo_users ON sms_recently_active_users.sms_user_id = sms_klaviyo_users.user_id\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__last_email_campaign_sent": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__last_email_campaign_sent", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.sql", "unique_id": "model.yoda.communication_stg__last_email_campaign_sent", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__last_email_campaign_sent", "communication_stg__last_email_campaign_sent"], "alias": "communication_stg__last_email_campaign_sent", "checksum": {"name": "sha256", "checksum": "e3c8bdaea630386bbf7ed85d55c43e9f265dd014e20a6c5a486836a7d1fea424"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_email_campaign_sent_date": {"name": "last_email_campaign_sent_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.7417336, "relation_name": "dev_dkruh1.communication_stg__last_email_campaign_sent", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MAX(campaigns.modified) AS last_email_campaign_sent_date\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n WHERE campaigns.approved = 1\n AND campaigns.channel = 'email'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MAX(campaigns.modified) AS last_email_campaign_sent_date\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n WHERE campaigns.approved = 1\n AND campaigns.channel = 'email'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__last_email_message_sent": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__last_email_message_sent", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.sql", "unique_id": "model.yoda.communication_stg__last_email_message_sent", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__last_email_message_sent", "communication_stg__last_email_message_sent"], "alias": "communication_stg__last_email_message_sent", "checksum": {"name": "sha256", "checksum": "61619c1dcd85dbf447faffd1d761475d3e1f4a583564a6eb06aa38939a96ca81"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_email_message_sent_date": {"name": "last_email_message_sent_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.7561057, "relation_name": "dev_dkruh1.communication_stg__last_email_message_sent", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MAX(email_esp_events.modified) AS last_email_message_sent_date\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__email_esp_events') }} AS email_esp_events ON sms_recently_active_users.sms_user_id = email_esp_events.user_id\n WHERE email_esp_events.event_type = 'sent'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__email_esp_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__email_esp_events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MAX(email_esp_events.modified) AS last_email_message_sent_date\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__email_esp_events AS email_esp_events ON sms_recently_active_users.sms_user_id = email_esp_events.user_id\n WHERE email_esp_events.event_type = 'sent'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__last_sms_campaign_sent": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__last_sms_campaign_sent", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.sql", "unique_id": "model.yoda.communication_stg__last_sms_campaign_sent", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__last_sms_campaign_sent", "communication_stg__last_sms_campaign_sent"], "alias": "communication_stg__last_sms_campaign_sent", "checksum": {"name": "sha256", "checksum": "60101dd24e638d71f699e3687c9cd0344555e24c92f7239426ff6b89b0898991"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_sms_campaign_sent_date": {"name": "last_sms_campaign_sent_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.7676456, "relation_name": "dev_dkruh1.communication_stg__last_sms_campaign_sent", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MAX(campaigns.modified) AS last_sms_campaign_sent_date\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n WHERE campaigns.approved = 1\n AND campaigns.channel = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MAX(campaigns.modified) AS last_sms_campaign_sent_date\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n WHERE campaigns.approved = 1\n AND campaigns.channel = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__last_sms_message_sent": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__last_sms_message_sent", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.sql", "unique_id": "model.yoda.communication_stg__last_sms_message_sent", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__last_sms_message_sent", "communication_stg__last_sms_message_sent"], "alias": "communication_stg__last_sms_message_sent", "checksum": {"name": "sha256", "checksum": "54ff63acb667955ee2ff47a01d23ce0c672bdfc6454f73f8092868cab8fd853d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_sms_message_sent_date": {"name": "last_sms_message_sent_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.7796466, "relation_name": "dev_dkruh1.communication_stg__last_sms_message_sent", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MAX(apicalls.modified) AS last_sms_message_sent_date\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__apicalls') }} AS apicalls ON sms_recently_active_users.sms_user_id = apicalls.user_id\n WHERE apicalls.status = 'sent'\n AND apicalls.platform = 'shopify'\n AND apicalls.type = 'SMS' OR apicalls.type = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__apicalls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__apicalls"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n MAX(apicalls.modified) AS last_sms_message_sent_date\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__apicalls AS apicalls ON sms_recently_active_users.sms_user_id = apicalls.user_id\n WHERE apicalls.status = 'sent'\n AND apicalls.platform = 'shopify'\n AND apicalls.type = 'SMS' OR apicalls.type = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__measurements_bigcommerce_users": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__measurements_bigcommerce_users", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.sql", "unique_id": "model.yoda.communication_stg__measurements_bigcommerce_users", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__measurements_bigcommerce_users", "communication_stg__measurements_bigcommerce_users"], "alias": "communication_stg__measurements_bigcommerce_users", "checksum": {"name": "sha256", "checksum": "3624cf3d7b47bcdf9dcf50a9d6bb8806f1588c146dcc4f1cd91f6b9cb7fc1309"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "bigcommerce_plan_name": {"name": "bigcommerce_plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.792607, "relation_name": "dev_dkruh1.communication_stg__measurements_bigcommerce_users", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n sms_bigcommerce_users.plan_name AS bigcommerce_plan_name\n FROM {{ ref('communication_stg__bigcommerce_users') }} AS sms_bigcommerce_users\n JOIN {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_bigcommerce_users.user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__bigcommerce_users", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__bigcommerce_users", "model.yoda.communication_stg__recently_active_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n sms_bigcommerce_users.plan_name AS bigcommerce_plan_name\n FROM dev_dkruh1.communication_stg__bigcommerce_users AS sms_bigcommerce_users\n JOIN dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_bigcommerce_users.user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__measurements_shopify_users": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__measurements_shopify_users", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.sql", "unique_id": "model.yoda.communication_stg__measurements_shopify_users", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__measurements_shopify_users", "communication_stg__measurements_shopify_users"], "alias": "communication_stg__measurements_shopify_users", "checksum": {"name": "sha256", "checksum": "a795f8c9d612e56d637d215d0b3a470a9bcece0e9ff7f79f49a1762701115b9f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__measurements_shopify_users", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notification_email": {"name": "notification_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopifyplan": {"name": "shopifyplan", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopifystoreage": {"name": "shopifystoreage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsbumpautoreload": {"name": "smsbumpautoreload", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.8060853, "relation_name": "dev_dkruh1.communication_stg__measurements_shopify_users", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n sms_shopify_users.app_data:notification_email AS notification_email,\n sms_shopify_users.plan AS shopifyplan,\n CASE\n WHEN DATEDIFF(CURRENT_DATE(), sms_shopify_users.shop_data:created_at) > 365 THEN \"1+ year\"\n WHEN DATEDIFF(CURRENT_DATE(), sms_shopify_users.shop_data:created_at) > 182 THEN \"6-12 months\"\n WHEN DATEDIFF(CURRENT_DATE(), sms_shopify_users.shop_data:created_at) > 30 THEN \"2-6 months\"\n ELSE \"1 month\"\n END AS shopifystoreage,\n IF(sms_shopify_users.auto_reload > 0, \"Enabled\", \"Disabled\") AS smsbumpautoreload\n FROM {{ ref('communication_stg__shopify_users') }} AS sms_shopify_users\n JOIN {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_shopify_users.user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__shopify_users", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__shopify_users", "model.yoda.communication_stg__recently_active_users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n sms_shopify_users.app_data:notification_email AS notification_email,\n sms_shopify_users.plan AS shopifyplan,\n CASE\n WHEN DATEDIFF(CURRENT_DATE(), sms_shopify_users.shop_data:created_at) > 365 THEN \"1+ year\"\n WHEN DATEDIFF(CURRENT_DATE(), sms_shopify_users.shop_data:created_at) > 182 THEN \"6-12 months\"\n WHEN DATEDIFF(CURRENT_DATE(), sms_shopify_users.shop_data:created_at) > 30 THEN \"2-6 months\"\n ELSE \"1 month\"\n END AS shopifystoreage,\n IF(sms_shopify_users.auto_reload > 0, \"Enabled\", \"Disabled\") AS smsbumpautoreload\n FROM dev_dkruh1.communication_stg__shopify_users AS sms_shopify_users\n JOIN dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_shopify_users.user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__measurements_users": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__measurements_users", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.sql", "unique_id": "model.yoda.communication_stg__measurements_users", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__measurements_users", "communication_stg__measurements_users"], "alias": "communication_stg__measurements_users", "checksum": {"name": "sha256", "checksum": "03b423fea3c6a196dbf312d5f72a489dfca52e47c9887da22fcb023ff7c2cfe1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__measurements_users", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "userEmail": {"name": "userEmail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsbump_plan_name": {"name": "smsbump_plan_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsbumpplantype": {"name": "smsbumpplantype", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smscreditsamount": {"name": "smscreditsamount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.8202076, "relation_name": "dev_dkruh1.communication_stg__measurements_users", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n sms_users.email AS userEmail,\n sms_packages.name AS smsbump_plan_name,\n CASE\n WHEN sms_packages.type = 'self_service' THEN \"LT\"\n ELSE \"HT\"\n END AS smsbumpplantype,\n CASE\n WHEN sms_users.balance > 1000 THEN \"1000+\"\n WHEN sms_users.balance > 250 THEN \"250,01-1000\"\n WHEN sms_users.balance > 50 THEN \"50,01-250\"\n WHEN sms_users.balance > 20 THEN \"20,01-50\"\n WHEN sms_users.balance > 5 THEN \"5,01-20\"\n WHEN sms_users.balance > 0 THEN \"0,01-5\"\n ELSE \"0\"\n END AS smscreditsamount\n FROM {{ ref('communication_stg__users') }} AS sms_users\n JOIN {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_users.id\n JOIN {{ ref('communication_stg__packages') }} AS sms_packages ON sms_packages.id = sms_users.package_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__users", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__packages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__users", "model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__packages"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n sms_users.email AS userEmail,\n sms_packages.name AS smsbump_plan_name,\n CASE\n WHEN sms_packages.type = 'self_service' THEN \"LT\"\n ELSE \"HT\"\n END AS smsbumpplantype,\n CASE\n WHEN sms_users.balance > 1000 THEN \"1000+\"\n WHEN sms_users.balance > 250 THEN \"250,01-1000\"\n WHEN sms_users.balance > 50 THEN \"50,01-250\"\n WHEN sms_users.balance > 20 THEN \"20,01-50\"\n WHEN sms_users.balance > 5 THEN \"5,01-20\"\n WHEN sms_users.balance > 0 THEN \"0,01-5\"\n ELSE \"0\"\n END AS smscreditsamount\n FROM dev_dkruh1.communication_stg__users AS sms_users\n JOIN dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_users.id\n JOIN dev_dkruh1.communication_stg__packages AS sms_packages ON sms_packages.id = sms_users.package_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__overall_emails_sent_from_campaigns": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__overall_emails_sent_from_campaigns", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.sql", "unique_id": "model.yoda.communication_stg__overall_emails_sent_from_campaigns", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__overall_emails_sent_from_campaigns", "communication_stg__overall_emails_sent_from_campaigns"], "alias": "communication_stg__overall_emails_sent_from_campaigns", "checksum": {"name": "sha256", "checksum": "89ddff449c43c97d9ea25341c36a2bac56ce18c497173e68fbbc09b79d8912ca"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_email_messages_sent": {"name": "total_email_messages_sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.8326354, "relation_name": "dev_dkruh1.communication_stg__overall_emails_sent_from_campaigns", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(email_esp_events.id) as total_email_messages_sent\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__email_esp_events') }} AS email_esp_events ON sms_recently_active_users.sms_user_id = email_esp_events.user_id\n WHERE email_esp_events.event_type = 'sent' AND email_esp_events.flow_id = 0\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__email_esp_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__email_esp_events"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(email_esp_events.id) as total_email_messages_sent\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__email_esp_events AS email_esp_events ON sms_recently_active_users.sms_user_id = email_esp_events.user_id\n WHERE email_esp_events.event_type = 'sent' AND email_esp_events.flow_id = 0\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__recently_active_users": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__recently_active_users", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__recently_active_users/communication_stg__recently_active_users.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__recently_active_users/communication_stg__recently_active_users.sql", "unique_id": "model.yoda.communication_stg__recently_active_users", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__recently_active_users", "communication_stg__recently_active_users"], "alias": "communication_stg__recently_active_users", "checksum": {"name": "sha256", "checksum": "743604b1633589082515a7e71e3c08cfefd866674ae2c97a2f95f9189f54e72c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__recently_active_users", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yotpo_app_key": {"name": "yotpo_app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__recently_active_users/communication_stg__recently_active_users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.8439646, "relation_name": "dev_dkruh1.communication_stg__recently_active_users", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n platform_apps.user_id AS user_id,\n sms_users.id AS sms_user_id,\n FIRST(sms_users.yotpo_app_key) AS yotpo_app_key\n FROM {{ ref('communication_stg__apicalls') }} AS sms_apicalls\n JOIN {{ ref('communication_stg__users') }} AS sms_users ON sms_users.id = sms_apicalls.user_id\n JOIN {{ ref('platform_stg__accounts') }} AS platform_accounts ON platform_accounts.app_key = sms_users.yotpo_app_key\n JOIN {{ ref('platform_stg__apps') }} AS platform_apps ON platform_apps.account_id = platform_accounts.id AND platform_apps.moderator_role_id = 1\n WHERE sms_apicalls.created > DATE(NOW()) - INTERVAL 180 HOUR\n GROUP BY platform_apps.user_id, sms_users.id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__apicalls", "package": null, "version": null}, {"name": "communication_stg__users", "package": null, "version": null}, {"name": "platform_stg__accounts", "package": null, "version": null}, {"name": "platform_stg__apps", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__apicalls", "model.yoda.communication_stg__users", "model.yoda.platform_stg__accounts", "model.yoda.platform_stg__apps"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__recently_active_users/communication_stg__recently_active_users.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n platform_apps.user_id AS user_id,\n sms_users.id AS sms_user_id,\n FIRST(sms_users.yotpo_app_key) AS yotpo_app_key\n FROM dev_dkruh1.communication_stg__apicalls AS sms_apicalls\n JOIN dev_dkruh1.communication_stg__users AS sms_users ON sms_users.id = sms_apicalls.user_id\n JOIN dev_dkruh1.platform_stg__accounts AS platform_accounts ON platform_accounts.app_key = sms_users.yotpo_app_key\n JOIN dev_dkruh1.platform_stg__apps AS platform_apps ON platform_apps.account_id = platform_accounts.id AND platform_apps.moderator_role_id = 1\n WHERE sms_apicalls.created > DATE(NOW()) - INTERVAL 180 HOUR\n GROUP BY platform_apps.user_id, sms_users.id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__send_chat_message": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__send_chat_message", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.sql", "unique_id": "model.yoda.communication_stg__send_chat_message", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__send_chat_message", "communication_stg__send_chat_message"], "alias": "communication_stg__send_chat_message", "checksum": {"name": "sha256", "checksum": "12c9519983bc61e961d1c2dcc82f36a78cbae4aee946aad8988b3357d46599c4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent_chat_messages": {"name": "sent_chat_messages", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.8568528, "relation_name": "dev_dkruh1.communication_stg__send_chat_message", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n/*\nHas user sent chat messages\n*/\n/*\nSELECT IF(count(id) > 0, true, false) AS smsbumpintegrationscount FROM conversation_messages WHERE user_id = '589568' AND direction = 'outbound';\n*/\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n IF(COUNT(conversation_messages.id) > 0, true, false) AS sent_chat_messages\nFROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\nLEFT JOIN {{ ref('communication_stg__conversation_messages') }} AS conversation_messages ON sms_recently_active_users.sms_user_id = conversation_messages.user_id\nGROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__conversation_messages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__conversation_messages"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n/*\nHas user sent chat messages\n*/\n/*\nSELECT IF(count(id) > 0, true, false) AS smsbumpintegrationscount FROM conversation_messages WHERE user_id = '589568' AND direction = 'outbound';\n*/\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n IF(COUNT(conversation_messages.id) > 0, true, false) AS sent_chat_messages\nFROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\nLEFT JOIN dev_dkruh1.communication_stg__conversation_messages AS conversation_messages ON sms_recently_active_users.sms_user_id = conversation_messages.user_id\nGROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__shopify_orders": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__shopify_orders", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__shopify_orders/communication_stg__shopify_orders.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__shopify_orders/communication_stg__shopify_orders.sql", "unique_id": "model.yoda.communication_stg__shopify_orders", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__shopify_orders", "communication_stg__shopify_orders"], "alias": "communication_stg__shopify_orders", "checksum": {"name": "sha256", "checksum": "29dd00f492f0eca1c1ee63aea3183f1faa99df4070e286038e1c89da68dde59c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__shopify_orders", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopifyorderscount": {"name": "shopifyorderscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__shopify_orders/communication_stg__shopify_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.8704226, "relation_name": "dev_dkruh1.communication_stg__shopify_orders", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN ROUND(COUNT(sms_shopify_orders.id) / 3) > 1000 THEN \"1001+\"\n WHEN ROUND(COUNT(sms_shopify_orders.id) / 3) > 400 THEN \"401-1000\"\n ELSE \"0-400\"\n END AS shopifyorderscount\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__orders') }} AS sms_shopify_orders ON sms_recently_active_users.sms_user_id = sms_shopify_orders.smsbump_user_id\n AND sms_shopify_orders.created_at BETWEEN trunc(DATEADD(MONTH, -3, now()), 'MM')\n AND last_day(DATEADD(MONTH, -1, now()))\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__shopify_orders/communication_stg__shopify_orders.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN ROUND(COUNT(sms_shopify_orders.id) / 3) > 1000 THEN \"1001+\"\n WHEN ROUND(COUNT(sms_shopify_orders.id) / 3) > 400 THEN \"401-1000\"\n ELSE \"0-400\"\n END AS shopifyorderscount\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__orders AS sms_shopify_orders ON sms_recently_active_users.sms_user_id = sms_shopify_orders.smsbump_user_id\n AND sms_shopify_orders.created_at BETWEEN trunc(DATEADD(MONTH, -3, now()), 'MM')\n AND last_day(DATEADD(MONTH, -1, now()))\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__sms_campaigns_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__sms_campaigns_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_count/communication_stg__sms_campaigns_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_count/communication_stg__sms_campaigns_count.sql", "unique_id": "model.yoda.communication_stg__sms_campaigns_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__sms_campaigns_count", "communication_stg__sms_campaigns_count"], "alias": "communication_stg__sms_campaigns_count", "checksum": {"name": "sha256", "checksum": "6afae5d51904466631d4ef1faf283186b7196b14107b9c8dba0164947635377e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__sms_campaigns_count", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smscampaignscount": {"name": "smscampaignscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__sms_campaigns_count/communication_stg__sms_campaigns_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.8826132, "relation_name": "dev_dkruh1.communication_stg__sms_campaigns_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_campaigns.id) > 10 THEN \"10+\"\n WHEN COUNT(sms_campaigns.id) > 5 THEN \"6-10\"\n WHEN COUNT(sms_campaigns.id) > 1 THEN \"2-5\"\n WHEN COUNT(sms_campaigns.id) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smscampaignscount\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS sms_campaigns ON sms_recently_active_users.sms_user_id = sms_campaigns.user_id\n AND sms_campaigns.channel = 'sms'\n AND sms_campaigns.approved = 1\n AND sms_campaigns.status = 'created'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__sms_campaigns_count/communication_stg__sms_campaigns_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(sms_campaigns.id) > 10 THEN \"10+\"\n WHEN COUNT(sms_campaigns.id) > 5 THEN \"6-10\"\n WHEN COUNT(sms_campaigns.id) > 1 THEN \"2-5\"\n WHEN COUNT(sms_campaigns.id) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smscampaignscount\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS sms_campaigns ON sms_recently_active_users.sms_user_id = sms_campaigns.user_id\n AND sms_campaigns.channel = 'sms'\n AND sms_campaigns.approved = 1\n AND sms_campaigns.status = 'created'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__sms_campaigns_sent_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__sms_campaigns_sent_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.sql", "unique_id": "model.yoda.communication_stg__sms_campaigns_sent_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__sms_campaigns_sent_count", "communication_stg__sms_campaigns_sent_count"], "alias": "communication_stg__sms_campaigns_sent_count", "checksum": {"name": "sha256", "checksum": "bc4aaf1fcb9bf4f834e7bc2aa7fbe4836492bd69c83ef66d23027f36481929c6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_campaigns_sent_count": {"name": "sms_campaigns_sent_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.8944283, "relation_name": "dev_dkruh1.communication_stg__sms_campaigns_sent_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(sms_campaigns.id) AS sms_campaigns_sent_count\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS sms_campaigns ON sms_recently_active_users.sms_user_id = sms_campaigns.user_id\n AND sms_campaigns.channel = 'sms'\n AND sms_campaigns.sent >= 1\n AND sms_campaigns.total_sent >= 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(sms_campaigns.id) AS sms_campaigns_sent_count\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS sms_campaigns ON sms_recently_active_users.sms_user_id = sms_campaigns.user_id\n AND sms_campaigns.channel = 'sms'\n AND sms_campaigns.sent >= 1\n AND sms_campaigns.total_sent >= 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__sms_campaigns_sent_last_thirty_days_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.sql", "unique_id": "model.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__sms_campaigns_sent_last_thirty_days_count", "communication_stg__sms_campaigns_sent_last_thirty_days_count"], "alias": "communication_stg__sms_campaigns_sent_last_thirty_days_count", "checksum": {"name": "sha256", "checksum": "a3cee9d6995513bfbe77a4de05316c3510978093a76484afbbf53b2d0266798b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_campaigns_sent_last_thirty_days": {"name": "sms_campaigns_sent_last_thirty_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.9074018, "relation_name": "dev_dkruh1.communication_stg__sms_campaigns_sent_last_thirty_days_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(campaigns.id) AS sms_campaigns_sent_last_thirty_days\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__campaigns') }} AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n AND campaigns.channel = 'sms'\n AND campaigns.sent >= 1\n AND campaigns.total_sent >= 1\n AND campaigns.created > DATE_SUB(NOW(), 30)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(campaigns.id) AS sms_campaigns_sent_last_thirty_days\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__campaigns AS campaigns ON sms_recently_active_users.sms_user_id = campaigns.user_id\n AND campaigns.channel = 'sms'\n AND campaigns.sent >= 1\n AND campaigns.total_sent >= 1\n AND campaigns.created > DATE_SUB(NOW(), 30)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__sms_shopify_orders_analytics": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__sms_shopify_orders_analytics", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.sql", "unique_id": "model.yoda.communication_stg__sms_shopify_orders_analytics", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__sms_shopify_orders_analytics", "communication_stg__sms_shopify_orders_analytics"], "alias": "communication_stg__sms_shopify_orders_analytics", "checksum": {"name": "sha256", "checksum": "6eadbb98206343ee24a425c46bc10a9aca08e546b6606d6eb556cfa72d59a4eb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "Shopify orders which were created after using the SMS product", "columns": {"order_id": {"name": "order_id", "description": "Shopify Order ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price": {"name": "total_price", "description": "Amount (decimal)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency": {"name": "currency", "description": "Currency (USD, EUR, etc)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "Shopify date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "Yotpo App Key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "External Customer ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.9227562, "relation_name": "dev_dkruh1.communication_stg__sms_shopify_orders_analytics", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n shopify_analytics_orders.order_id AS order_id,\n shopify_analytics_orders.amount AS total_price,\n 'USD' AS currency,\n shopify_analytics_orders.created AS order_date,\n users.yotpo_app_key AS app_key,\n shopify_analytics_orders.customer_id AS external_customer_id\n FROM {{ ref('communication_stg__shopify_analytics_orders') }} AS shopify_analytics_orders \n JOIN {{ ref('communication_stg__users') }} AS users ON users.id = shopify_analytics_orders.user_id\n WHERE shopify_analytics_orders.channel = 'sms' AND users.yotpo_app_key IS NOT NULL\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__shopify_analytics_orders", "package": null, "version": null}, {"name": "communication_stg__users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__shopify_analytics_orders", "model.yoda.communication_stg__users"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n shopify_analytics_orders.order_id AS order_id,\n shopify_analytics_orders.amount AS total_price,\n 'USD' AS currency,\n shopify_analytics_orders.created AS order_date,\n users.yotpo_app_key AS app_key,\n shopify_analytics_orders.customer_id AS external_customer_id\n FROM dev_dkruh1.communication_stg__shopify_analytics_orders AS shopify_analytics_orders \n JOIN dev_dkruh1.communication_stg__users AS users ON users.id = shopify_analytics_orders.user_id\n WHERE shopify_analytics_orders.channel = 'sms' AND users.yotpo_app_key IS NOT NULL\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__sms_subscribers_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__sms_subscribers_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_subscribers_count/communication_stg__sms_subscribers_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_subscribers_count/communication_stg__sms_subscribers_count.sql", "unique_id": "model.yoda.communication_stg__sms_subscribers_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__sms_subscribers_count", "communication_stg__sms_subscribers_count"], "alias": "communication_stg__sms_subscribers_count", "checksum": {"name": "sha256", "checksum": "88acb54b9547b00950e0409dfc7b2914534b965e44b6b88eb6842f736ecfb679"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "communication_stg__sms_subscribers_count", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smssubscriberscount": {"name": "smssubscriberscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__sms_subscribers_count/communication_stg__sms_subscribers_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.935608, "relation_name": "dev_dkruh1.communication_stg__sms_subscribers_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 10000 THEN \"10000+\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 5000 THEN \"5000-9999\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 1000 THEN \"1000-4999\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 250 THEN \"250-999\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 50 THEN \"50-249\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 2 THEN \"2-49\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smssubscriberscount\n FROM {{ ref('communication_stg__phones_meta') }} AS sms_phones_meta\n JOIN {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_phones_meta.user_id\n JOIN {{ ref('communication_stg__phones') }} AS sms_phones ON sms_phones.id = sms_phones_meta.phone_id AND sms_phones.is_subscriber = 1 AND sms_phones.landline = 0\n JOIN {{ ref('communication_stg__phone_to_list') }} AS sms_phone_to_list ON sms_phone_to_list.user_id = sms_phones_meta.user_id AND sms_phone_to_list.phone_id = sms_phones_meta.phone_id AND sms_phone_to_list.phone_meta_id = sms_phones_meta.id AND sms_phone_to_list.status = 1\n WHERE sms_phones_meta.is_subscriber = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__phones_meta", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__phones", "package": null, "version": null}, {"name": "communication_stg__phone_to_list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__phones_meta", "model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__phones", "model.yoda.communication_stg__phone_to_list"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__sms_subscribers_count/communication_stg__sms_subscribers_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n CASE\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 10000 THEN \"10000+\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 5000 THEN \"5000-9999\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 1000 THEN \"1000-4999\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 250 THEN \"250-999\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 50 THEN \"50-249\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) >= 2 THEN \"2-49\"\n WHEN COUNT(DISTINCT(sms_phones_meta.phone_id)) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smssubscriberscount\n FROM dev_dkruh1.communication_stg__phones_meta AS sms_phones_meta\n JOIN dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_phones_meta.user_id\n JOIN dev_dkruh1.communication_stg__phones AS sms_phones ON sms_phones.id = sms_phones_meta.phone_id AND sms_phones.is_subscriber = 1 AND sms_phones.landline = 0\n JOIN dev_dkruh1.communication_stg__phone_to_list AS sms_phone_to_list ON sms_phone_to_list.user_id = sms_phones_meta.user_id AND sms_phone_to_list.phone_id = sms_phones_meta.phone_id AND sms_phone_to_list.phone_meta_id = sms_phones_meta.id AND sms_phone_to_list.status = 1\n WHERE sms_phones_meta.is_subscriber = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__sms_usage_avg_last_three_months": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__sms_usage_avg_last_three_months", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.sql", "unique_id": "model.yoda.communication_stg__sms_usage_avg_last_three_months", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__sms_usage_avg_last_three_months", "communication_stg__sms_usage_avg_last_three_months"], "alias": "communication_stg__sms_usage_avg_last_three_months", "checksum": {"name": "sha256", "checksum": "29228b615a913eb27d2592bf80a322ffc6b03287e145991b5cdd0be388abf026"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_credits_used_last_three_months_average": {"name": "sms_credits_used_last_three_months_average", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.94984, "relation_name": "dev_dkruh1.communication_stg__sms_usage_avg_last_three_months", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(sms_apicalls.price_billed) / 3 AS sms_credits_used_last_three_months_average\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users \n JOIN {{ ref('communication_stg__apicalls') }} AS sms_apicalls ON sms_recently_active_users.sms_user_id = sms_apicalls.user_id\n WHERE sms_apicalls.created >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND sms_apicalls.created < trunc(DATEADD(MONTH, 0, now()), 'MM')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__apicalls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__apicalls"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(sms_apicalls.price_billed) / 3 AS sms_credits_used_last_three_months_average\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users \n JOIN dev_dkruh1.communication_stg__apicalls AS sms_apicalls ON sms_recently_active_users.sms_user_id = sms_apicalls.user_id\n WHERE sms_apicalls.created >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND sms_apicalls.created < trunc(DATEADD(MONTH, 0, now()), 'MM')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__total_orders_avg_last_thirty_days": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__total_orders_avg_last_thirty_days", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.sql", "unique_id": "model.yoda.communication_stg__total_orders_avg_last_thirty_days", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__total_orders_avg_last_thirty_days", "communication_stg__total_orders_avg_last_thirty_days"], "alias": "communication_stg__total_orders_avg_last_thirty_days", "checksum": {"name": "sha256", "checksum": "d4b2568d59d3c9d40e2ce56b444d269bac9690b93739846af2df8c3cdf362f21"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_count_last_thirty_days": {"name": "orders_count_last_thirty_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.9659169, "relation_name": "dev_dkruh1.communication_stg__total_orders_avg_last_thirty_days", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n ROUND(COUNT(sms_shopify_orders.id)) AS orders_count_last_thirty_days\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__orders') }} AS sms_shopify_orders ON sms_recently_active_users.sms_user_id = sms_shopify_orders.smsbump_user_id\n AND sms_shopify_orders.created_at >= DATE_SUB(CURRENT_DATE(), 30)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n ROUND(COUNT(sms_shopify_orders.id)) AS orders_count_last_thirty_days\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__orders AS sms_shopify_orders ON sms_recently_active_users.sms_user_id = sms_shopify_orders.smsbump_user_id\n AND sms_shopify_orders.created_at >= DATE_SUB(CURRENT_DATE(), 30)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__total_orders_avg_last_three_months": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__total_orders_avg_last_three_months", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.sql", "unique_id": "model.yoda.communication_stg__total_orders_avg_last_three_months", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__total_orders_avg_last_three_months", "communication_stg__total_orders_avg_last_three_months"], "alias": "communication_stg__total_orders_avg_last_three_months", "checksum": {"name": "sha256", "checksum": "6c9e8eb723e92e0d69e7968bc27e828b926193e9d7d590fa686c63ed3894fcf3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_count_last_three_months": {"name": "orders_count_last_three_months", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table"}, "created_at": 1700082666.9777603, "relation_name": "dev_dkruh1.communication_stg__total_orders_avg_last_three_months", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n ROUND(COUNT(sms_shopify_orders.id) / 3) AS orders_count_last_three_months\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__orders') }} AS sms_shopify_orders ON sms_recently_active_users.sms_user_id = sms_shopify_orders.smsbump_user_id\n AND sms_shopify_orders.created_at >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND sms_shopify_orders.created_at < trunc(DATEADD(MONTH, 0, now()), 'MM')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n ROUND(COUNT(sms_shopify_orders.id) / 3) AS orders_count_last_three_months\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__orders AS sms_shopify_orders ON sms_recently_active_users.sms_user_id = sms_shopify_orders.smsbump_user_id\n AND sms_shopify_orders.created_at >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND sms_shopify_orders.created_at < trunc(DATEADD(MONTH, 0, now()), 'MM')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT *\nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__total_revenue_all_channels_all_time": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__total_revenue_all_channels_all_time", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.sql", "unique_id": "model.yoda.communication_stg__total_revenue_all_channels_all_time", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__total_revenue_all_channels_all_time", "communication_stg__total_revenue_all_channels_all_time"], "alias": "communication_stg__total_revenue_all_channels_all_time", "checksum": {"name": "sha256", "checksum": "0dc8e598f5afd9779ca0926663ec89390a24793e9ef004127f190332d71d7fb3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_revenue_all_channels_all_time": {"name": "total_revenue_all_channels_all_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082666.9905095, "relation_name": "dev_dkruh1.communication_stg__total_revenue_all_channels_all_time", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_all_channels_all_time\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__shopify_analytics_orders') }} AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__shopify_analytics_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_all_channels_all_time\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__shopify_analytics_orders AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__total_revenue_all_channels_last_thirty_days": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__total_revenue_all_channels_last_thirty_days", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.sql", "unique_id": "model.yoda.communication_stg__total_revenue_all_channels_last_thirty_days", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__total_revenue_all_channels_last_thirty_days", "communication_stg__total_revenue_all_channels_last_thirty_days"], "alias": "communication_stg__total_revenue_all_channels_last_thirty_days", "checksum": {"name": "sha256", "checksum": "6625021a5191a850df70f498e0f0dda01bd8ab915de77c5915dfcb314c2827bf"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_revenue_all_channels_last_thirty_days": {"name": "total_revenue_all_channels_last_thirty_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082667.0018885, "relation_name": "dev_dkruh1.communication_stg__total_revenue_all_channels_last_thirty_days", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_all_channels_last_thirty_days\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__shopify_analytics_orders') }} AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created > DATE_SUB(NOW(), 30)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__shopify_analytics_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_all_channels_last_thirty_days\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__shopify_analytics_orders AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created > DATE_SUB(NOW(), 30)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__total_revenue_all_channels_last_three_months": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__total_revenue_all_channels_last_three_months", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.sql", "unique_id": "model.yoda.communication_stg__total_revenue_all_channels_last_three_months", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__total_revenue_all_channels_last_three_months", "communication_stg__total_revenue_all_channels_last_three_months"], "alias": "communication_stg__total_revenue_all_channels_last_three_months", "checksum": {"name": "sha256", "checksum": "4c37971834df20d864d7672fd65d80a94b849872e920fb6405846193da991033"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_revenue_all_channels_last_three_months": {"name": "total_revenue_all_channels_last_three_months", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082667.013917, "relation_name": "dev_dkruh1.communication_stg__total_revenue_all_channels_last_three_months", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_all_channels_last_three_months\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__shopify_analytics_orders') }} AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND shopify_analytics_orders.created < trunc(DATEADD(MONTH, 0, now()), 'MM')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__shopify_analytics_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_all_channels_last_three_months\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__shopify_analytics_orders AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND shopify_analytics_orders.created < trunc(DATEADD(MONTH, 0, now()), 'MM')\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__total_revenue_email_last_thirty_days": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__total_revenue_email_last_thirty_days", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.sql", "unique_id": "model.yoda.communication_stg__total_revenue_email_last_thirty_days", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__total_revenue_email_last_thirty_days", "communication_stg__total_revenue_email_last_thirty_days"], "alias": "communication_stg__total_revenue_email_last_thirty_days", "checksum": {"name": "sha256", "checksum": "d87a19b2c5dbb917b730dde0da0531da6c3b1348ebc93e8c2b658327f5f7a649"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_revenue_email_last_thirty_days": {"name": "total_revenue_email_last_thirty_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082667.02865, "relation_name": "dev_dkruh1.communication_stg__total_revenue_email_last_thirty_days", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_email_last_thirty_days\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__shopify_analytics_orders') }} AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created > DATE_SUB(NOW(), 30)\n AND shopify_analytics_orders.channel = 'email'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__shopify_analytics_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_email_last_thirty_days\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__shopify_analytics_orders AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created > DATE_SUB(NOW(), 30)\n AND shopify_analytics_orders.channel = 'email'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__total_revenue_email_last_three_months": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__total_revenue_email_last_three_months", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.sql", "unique_id": "model.yoda.communication_stg__total_revenue_email_last_three_months", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__total_revenue_email_last_three_months", "communication_stg__total_revenue_email_last_three_months"], "alias": "communication_stg__total_revenue_email_last_three_months", "checksum": {"name": "sha256", "checksum": "b3e6aaea080d33ea2d248b9aa2e37b01b1f485b25532df83383bffd32f4f76c7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_revenue_email_last_three_months": {"name": "total_revenue_email_last_three_months", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082667.0403895, "relation_name": "dev_dkruh1.communication_stg__total_revenue_email_last_three_months", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_email_last_three_months\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__shopify_analytics_orders') }} AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND shopify_analytics_orders.created < trunc(DATEADD(MONTH, 0, now()), 'MM')\n AND shopify_analytics_orders.channel = 'email'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__shopify_analytics_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_email_last_three_months\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__shopify_analytics_orders AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND shopify_analytics_orders.created < trunc(DATEADD(MONTH, 0, now()), 'MM')\n AND shopify_analytics_orders.channel = 'email'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__total_revenue_sms_last_thirty_days": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__total_revenue_sms_last_thirty_days", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.sql", "unique_id": "model.yoda.communication_stg__total_revenue_sms_last_thirty_days", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__total_revenue_sms_last_thirty_days", "communication_stg__total_revenue_sms_last_thirty_days"], "alias": "communication_stg__total_revenue_sms_last_thirty_days", "checksum": {"name": "sha256", "checksum": "c3079f4e45fccfa7bc4ae2d10974dfd854f18a2bc51ea4c3a3e3e510bdd7a1e5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_revenue_sms_last_thirty_days": {"name": "total_revenue_sms_last_thirty_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082667.0536737, "relation_name": "dev_dkruh1.communication_stg__total_revenue_sms_last_thirty_days", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_sms_last_thirty_days\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__shopify_analytics_orders') }} AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created > DATE_SUB(NOW(), 30)\n AND shopify_analytics_orders.channel = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__shopify_analytics_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_sms_last_thirty_days\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__shopify_analytics_orders AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created > DATE_SUB(NOW(), 30)\n AND shopify_analytics_orders.channel = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__total_revenue_sms_last_three_months": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__total_revenue_sms_last_three_months", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.sql", "unique_id": "model.yoda.communication_stg__total_revenue_sms_last_three_months", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__total_revenue_sms_last_three_months", "communication_stg__total_revenue_sms_last_three_months"], "alias": "communication_stg__total_revenue_sms_last_three_months", "checksum": {"name": "sha256", "checksum": "c8e150352e2b585993555e574a3140104339cb924295c95eb72a90ce6c6745bb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_revenue_sms_last_three_months": {"name": "total_revenue_sms_last_three_months", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082667.0745194, "relation_name": "dev_dkruh1.communication_stg__total_revenue_sms_last_three_months", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_sms_last_three_months\n FROM {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users\n LEFT JOIN {{ ref('communication_stg__shopify_analytics_orders') }} AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND shopify_analytics_orders.created < trunc(DATEADD(MONTH, 0, now()), 'MM')\n AND shopify_analytics_orders.channel = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__shopify_analytics_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n SUM(shopify_analytics_orders.amount) AS total_revenue_sms_last_three_months\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n LEFT JOIN dev_dkruh1.communication_stg__shopify_analytics_orders AS shopify_analytics_orders ON sms_recently_active_users.sms_user_id = shopify_analytics_orders.user_id\n AND shopify_analytics_orders.created >= trunc(DATEADD(MONTH, -3, now()), 'MM') \n AND shopify_analytics_orders.created < trunc(DATEADD(MONTH, 0, now()), 'MM')\n AND shopify_analytics_orders.channel = 'sms'\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__total_subscribers_email_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__total_subscribers_email_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.sql", "unique_id": "model.yoda.communication_stg__total_subscribers_email_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__total_subscribers_email_count", "communication_stg__total_subscribers_email_count"], "alias": "communication_stg__total_subscribers_email_count", "checksum": {"name": "sha256", "checksum": "61b5ed4df830b517ea5611f606d4ff92f5563c9125a29f1095d6fe37659e094a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_subscribers_count": {"name": "email_subscribers_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082667.0864475, "relation_name": "dev_dkruh1.communication_stg__total_subscribers_email_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(DISTINCT(profiles.properties.email)) AS email_subscribers_count\n FROM {{ref('communication_stg__recently_active_users')}} AS sms_recently_active_users\n JOIN {{ ref('communication_stg__profiles') }} AS profiles ON sms_recently_active_users.yotpo_app_key = profiles.properties.storeId \n WHERE profiles.mergedWith IS NULL AND profiles.properties.email IS NOT null AND profiles.properties.email <> '' AND (properties.EmailMarketing.AcceptsMarketing = true OR properties.AcceptsEmailMarketing = true)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__profiles", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__profiles"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(DISTINCT(profiles.properties.email)) AS email_subscribers_count\n FROM dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users\n JOIN dev_dkruh1.communication_stg__profiles AS profiles ON sms_recently_active_users.yotpo_app_key = profiles.properties.storeId \n WHERE profiles.mergedWith IS NULL AND profiles.properties.email IS NOT null AND profiles.properties.email <> '' AND (properties.EmailMarketing.AcceptsMarketing = true OR properties.AcceptsEmailMarketing = true)\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.communication_stg__total_subscribers_sms_count": {"database": null, "schema": "dev_dkruh1", "name": "communication_stg__total_subscribers_sms_count", "resource_type": "model", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.sql", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.sql", "unique_id": "model.yoda.communication_stg__total_subscribers_sms_count", "fqn": ["yoda", "communication", "staging", "marts_compatible", "communication_stg__total_subscribers_sms_count", "communication_stg__total_subscribers_sms_count"], "alias": "communication_stg__total_subscribers_sms_count", "checksum": {"name": "sha256", "checksum": "0f426ec47098d5e6979327e5fcb0aa7076391dd9cba715c82eb96964eeb452b4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["communication", "communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["communication"], "description": "TODO: Update Table Description", "columns": {"user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_user_id": {"name": "sms_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_subscribers_count": {"name": "sms_subscribers_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["communication"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "viktor.nedyalkov@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082667.0982459, "relation_name": "dev_dkruh1.communication_stg__total_subscribers_sms_count", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(DISTINCT(sms_phones_meta.phone_id)) AS sms_subscribers_count\n FROM {{ ref('communication_stg__phones_meta') }} AS sms_phones_meta\n JOIN {{ ref('communication_stg__recently_active_users') }} AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_phones_meta.user_id\n JOIN {{ ref('communication_stg__phones') }} AS sms_phones ON sms_phones.id = sms_phones_meta.phone_id AND sms_phones.is_subscriber = 1 AND sms_phones.landline = 0\n JOIN {{ ref('communication_stg__phone_to_list') }} AS sms_phone_to_list ON sms_phone_to_list.user_id = sms_phones_meta.user_id AND sms_phone_to_list.phone_id = sms_phones_meta.phone_id AND sms_phone_to_list.phone_meta_id = sms_phones_meta.id AND sms_phone_to_list.status = 1\n WHERE sms_phones_meta.is_subscriber = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "communication_stg__phones_meta", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__phones", "package": null, "version": null}, {"name": "communication_stg__phone_to_list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__phones_meta", "model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__phones", "model.yoda.communication_stg__phone_to_list"]}, "compiled_path": "target/compiled/yoda/models/communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n SELECT\n sms_recently_active_users.user_id AS user_id,\n sms_recently_active_users.sms_user_id AS sms_user_id,\n COUNT(DISTINCT(sms_phones_meta.phone_id)) AS sms_subscribers_count\n FROM dev_dkruh1.communication_stg__phones_meta AS sms_phones_meta\n JOIN dev_dkruh1.communication_stg__recently_active_users AS sms_recently_active_users ON sms_recently_active_users.sms_user_id = sms_phones_meta.user_id\n JOIN dev_dkruh1.communication_stg__phones AS sms_phones ON sms_phones.id = sms_phones_meta.phone_id AND sms_phones.is_subscriber = 1 AND sms_phones.landline = 0\n JOIN dev_dkruh1.communication_stg__phone_to_list AS sms_phone_to_list ON sms_phone_to_list.user_id = sms_phones_meta.user_id AND sms_phone_to_list.phone_id = sms_phones_meta.phone_id AND sms_phone_to_list.phone_meta_id = sms_phones_meta.id AND sms_phone_to_list.status = 1\n WHERE sms_phones_meta.is_subscriber = 1\n GROUP BY sms_recently_active_users.user_id, sms_recently_active_users.sms_user_id\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email__daily_delivered_emails_by_source_name": {"database": null, "schema": "dev_dkruh1", "name": "email__daily_delivered_emails_by_source_name", "resource_type": "model", "package_name": "yoda", "path": "email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.sql", "original_file_path": "models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.sql", "unique_id": "model.yoda.email__daily_delivered_emails_by_source_name", "fqn": ["yoda", "email", "marts", "email__daily_delivered_emails_by_source_name", "email__daily_delivered_emails_by_source_name"], "alias": "email__daily_delivered_emails_by_source_name", "checksum": {"name": "sha256", "checksum": "768c4263adb4b65aaeb87d401e34994d1c29c46ea09a45bbed4d0285e22bf5b3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "erohana@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "an aggregation of daily total emails by source name in UTC", "columns": {"context_source_name": {"name": "context_source_name", "description": "the daily aggregation source name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "aggregation date in UTC", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "total": {"name": "total", "description": "total emails", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "erohana@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "erohana@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082667.3701146, "relation_name": "dev_dkruh1.email__daily_delivered_emails_by_source_name", "raw_code": "WITH staging AS (\n\n SELECT * FROM {{ ref('email_stg__system_email_events') }}\n WHERE\n timestamp is not null\n and\n context_source_name is not null\n and\n event_type = 'DELIVERED'\n\n), daily_delivered_emails_by_source_name AS (\n select \n context_source_name, to_date(timestamp) as date, count(context_reference_id) as total\n FROM staging\n group by context_source_name, to_date(timestamp)\n\n)\n\nSELECT * FROM daily_delivered_emails_by_source_name", "language": "sql", "refs": [{"name": "email_stg__system_email_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email_stg__system_email_events"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.sql", "compiled": true, "compiled_code": "WITH staging AS (\n\n SELECT * FROM dev_dkruh1.email_stg__system_email_events\n WHERE\n timestamp is not null\n and\n context_source_name is not null\n and\n event_type = 'DELIVERED'\n\n), daily_delivered_emails_by_source_name AS (\n select \n context_source_name, to_date(timestamp) as date, count(context_reference_id) as total\n FROM staging\n group by context_source_name, to_date(timestamp)\n\n)\n\nSELECT * FROM daily_delivered_emails_by_source_name", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email__daily_total_email_campaigns": {"database": null, "schema": "dev_dkruh1", "name": "email__daily_total_email_campaigns", "resource_type": "model", "package_name": "yoda", "path": "email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.sql", "original_file_path": "models/email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.sql", "unique_id": "model.yoda.email__daily_total_email_campaigns", "fqn": ["yoda", "email", "marts", "email__daily_total_email_campaigns", "email__daily_total_email_campaigns"], "alias": "email__daily_total_email_campaigns", "checksum": {"name": "sha256", "checksum": "2735697f892b7680efc52a97dfa176a9a9609ee957b3193bfcbee8de5e30dedc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "erohana@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "an aggregation of daily total email marketing campaign in UTC", "columns": {"total": {"name": "total", "description": "total campiagns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "date": {"name": "date", "description": "aggregation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "erohana@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "erohana@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082667.3983653, "relation_name": "dev_dkruh1.email__daily_total_email_campaigns", "raw_code": "WITH staging AS (\n\n SELECT * FROM {{ ref('email_stg__campaign_events') }}\n WHERE \n execution_startdatetime is not null \n\n), email__daily_total_email_campaigns AS (\n\n select count(id) as total, to_date(from_unixtime(execution_startdatetime / 1000)) as date \n from staging \n group by to_date(from_unixtime(execution_startdatetime / 1000)) \n\n)\n\nSELECT * FROM email__daily_total_email_campaigns", "language": "sql", "refs": [{"name": "email_stg__campaign_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email_stg__campaign_events"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.sql", "compiled": true, "compiled_code": "WITH staging AS (\n\n SELECT * FROM dev_dkruh1.email_stg__campaign_events\n WHERE \n execution_startdatetime is not null \n\n), email__daily_total_email_campaigns AS (\n\n select count(id) as total, to_date(from_unixtime(execution_startdatetime / 1000)) as date \n from staging \n group by to_date(from_unixtime(execution_startdatetime / 1000)) \n\n)\n\nSELECT * FROM email__daily_total_email_campaigns", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email__email_campaign_click_to_redeem_kpi": {"database": null, "schema": "dev_dkruh1", "name": "email__email_campaign_click_to_redeem_kpi", "resource_type": "model", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.sql", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.sql", "unique_id": "model.yoda.email__email_campaign_click_to_redeem_kpi", "fqn": ["yoda", "email", "marts", "email__email_campaign_click_to_redeem_kpi", "email__email_campaign_click_to_redeem_kpi"], "alias": "email__email_campaign_click_to_redeem_kpi", "checksum": {"name": "sha256", "checksum": "a055f8d7556d2cbd05ce332e79deba50965cc9ba4f8d8808649d281e6d9f25a0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["\\1"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "email campaigns with click to redeem block that lead to redeem", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key": {"name": "app_key", "description": "The store app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer_email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "Field is not in use, always be empty string.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "external_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_type": {"name": "source_type", "description": "campaign/email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "email_reference_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "redemption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "redemption_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "number of points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["\\1"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["\\1"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082667.4277995, "relation_name": "dev_dkruh1.email__email_campaign_click_to_redeem_kpi", "raw_code": "WITH emails_with_campaign_and_loyalty_block_template AS (\n SELECT * FROM {{ ref('email_stg__emails_with_campaign_and_templates') }}\n WHERE array_contains(blocks, \"LOYALTY_BLOCK\")\n AND event_type='CLICK'\n), sms_email_orders AS (\n SELECT * FROM {{ ref('sms_stg__email_sms_campaign_orders') }}\n), loyalty_redeemed_purchases AS (\n SELECT * FROM {{ ref('loyalty__redeemed_purchases') }}\n), emails_with_loyalty_block_and_order AS (\n SELECT emails_with_campaign_and_loyalty_block_template.storeid AS app_key,\n emails_with_campaign_and_loyalty_block_template.email_address AS email_address, \n emails_with_campaign_and_loyalty_block_template.campaign_id AS campaign_id,\n emails_with_campaign_and_loyalty_block_template.email_reference_id AS context_reference_id,\n sms_email_orders.shopify_order_id AS shopify_order_id\n FROM emails_with_campaign_and_loyalty_block_template\n INNER JOIN sms_email_orders\n ON emails_with_campaign_and_loyalty_block_template.email_address = sms_email_orders.email\n AND emails_with_campaign_and_loyalty_block_template.storeid = sms_email_orders.yotpo_app_key\n AND emails_with_campaign_and_loyalty_block_template.campaign_id = sms_email_orders.email_campaign_id\n), emails_with_order_with_redeeme_points AS (\n SELECT emails_with_loyalty_block_and_order.app_key AS app_key,\n emails_with_loyalty_block_and_order.email_address AS email_address,\n emails_with_loyalty_block_and_order.context_reference_id AS context_reference_id,\n loyalty_redeemed_purchases.redemption_id AS redemption_id,\n loyalty_redeemed_purchases.amount_deducted_points AS amount_deducted_points,\n loyalty_redeemed_purchases.external_customer_id AS external_customer_id,\n loyalty_redeemed_purchases.external_order_id AS external_order_id\n FROM emails_with_loyalty_block_and_order\n INNER JOIN loyalty_redeemed_purchases\n ON emails_with_loyalty_block_and_order.shopify_order_id = loyalty_redeemed_purchases.external_order_id\n), unique_order_with_redeemed_purchases AS (\n SELECT first(app_key) AS app_key,\n first(email_address) AS email_address,\n first(context_reference_id) AS context_reference_id,\n first(redemption_id) AS redemption_id,\n first(amount_deducted_points) AS amount_deducted_points,\n first(app_key) AS external_customer_id,\n external_order_id\n FROM emails_with_order_with_redeeme_points\n GROUP BY external_order_id\n), final AS (\n SELECT uuid() AS id,\n 148 AS synergy_id,\n unique_order_with_redeemed_purchases.app_key AS app_key,\n unique_order_with_redeemed_purchases.email_address AS customer_email,\n '' AS customer_phone_number,\n unique_order_with_redeemed_purchases.external_customer_id AS customer_external_id,\n 'campaign/email' AS source_type,\n unique_order_with_redeemed_purchases.context_reference_id AS source_id,\n 'redemption' AS action_type,\n unique_order_with_redeemed_purchases.redemption_id AS action_id,\n 'points' AS action_attribute_type,\n unique_order_with_redeemed_purchases.amount_deducted_points AS action_attribute_value,\n unique_order_with_redeemed_purchases.external_order_id AS order_id\n FROM unique_order_with_redeemed_purchases\n)\n\nSELECT * FROM final", "language": "sql", "refs": [{"name": "email_stg__emails_with_campaign_and_templates", "package": null, "version": null}, {"name": "sms_stg__email_sms_campaign_orders", "package": null, "version": null}, {"name": "loyalty__redeemed_purchases", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email_stg__emails_with_campaign_and_templates", "model.yoda.sms_stg__email_sms_campaign_orders", "model.yoda.loyalty__redeemed_purchases"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.sql", "compiled": true, "compiled_code": "WITH emails_with_campaign_and_loyalty_block_template AS (\n SELECT * FROM dev_dkruh1.email_stg__emails_with_campaign_and_templates\n WHERE array_contains(blocks, \"LOYALTY_BLOCK\")\n AND event_type='CLICK'\n), sms_email_orders AS (\n SELECT * FROM dev_dkruh1.sms_stg__email_sms_campaign_orders\n), loyalty_redeemed_purchases AS (\n SELECT * FROM dev_dkruh1.loyalty__redeemed_purchases\n), emails_with_loyalty_block_and_order AS (\n SELECT emails_with_campaign_and_loyalty_block_template.storeid AS app_key,\n emails_with_campaign_and_loyalty_block_template.email_address AS email_address, \n emails_with_campaign_and_loyalty_block_template.campaign_id AS campaign_id,\n emails_with_campaign_and_loyalty_block_template.email_reference_id AS context_reference_id,\n sms_email_orders.shopify_order_id AS shopify_order_id\n FROM emails_with_campaign_and_loyalty_block_template\n INNER JOIN sms_email_orders\n ON emails_with_campaign_and_loyalty_block_template.email_address = sms_email_orders.email\n AND emails_with_campaign_and_loyalty_block_template.storeid = sms_email_orders.yotpo_app_key\n AND emails_with_campaign_and_loyalty_block_template.campaign_id = sms_email_orders.email_campaign_id\n), emails_with_order_with_redeeme_points AS (\n SELECT emails_with_loyalty_block_and_order.app_key AS app_key,\n emails_with_loyalty_block_and_order.email_address AS email_address,\n emails_with_loyalty_block_and_order.context_reference_id AS context_reference_id,\n loyalty_redeemed_purchases.redemption_id AS redemption_id,\n loyalty_redeemed_purchases.amount_deducted_points AS amount_deducted_points,\n loyalty_redeemed_purchases.external_customer_id AS external_customer_id,\n loyalty_redeemed_purchases.external_order_id AS external_order_id\n FROM emails_with_loyalty_block_and_order\n INNER JOIN loyalty_redeemed_purchases\n ON emails_with_loyalty_block_and_order.shopify_order_id = loyalty_redeemed_purchases.external_order_id\n), unique_order_with_redeemed_purchases AS (\n SELECT first(app_key) AS app_key,\n first(email_address) AS email_address,\n first(context_reference_id) AS context_reference_id,\n first(redemption_id) AS redemption_id,\n first(amount_deducted_points) AS amount_deducted_points,\n first(app_key) AS external_customer_id,\n external_order_id\n FROM emails_with_order_with_redeeme_points\n GROUP BY external_order_id\n), final AS (\n SELECT uuid() AS id,\n 148 AS synergy_id,\n unique_order_with_redeemed_purchases.app_key AS app_key,\n unique_order_with_redeemed_purchases.email_address AS customer_email,\n '' AS customer_phone_number,\n unique_order_with_redeemed_purchases.external_customer_id AS customer_external_id,\n 'campaign/email' AS source_type,\n unique_order_with_redeemed_purchases.context_reference_id AS source_id,\n 'redemption' AS action_type,\n unique_order_with_redeemed_purchases.redemption_id AS action_id,\n 'points' AS action_attribute_type,\n unique_order_with_redeemed_purchases.amount_deducted_points AS action_attribute_value,\n unique_order_with_redeemed_purchases.external_order_id AS order_id\n FROM unique_order_with_redeemed_purchases\n)\n\nSELECT * FROM final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email__email_campaign_loyalty_kpi": {"database": null, "schema": "dev_dkruh1", "name": "email__email_campaign_loyalty_kpi", "resource_type": "model", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.sql", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.sql", "unique_id": "model.yoda.email__email_campaign_loyalty_kpi", "fqn": ["yoda", "email", "marts", "email__email_campaign_loyalty_kpi", "email__email_campaign_loyalty_kpi"], "alias": "email__email_campaign_loyalty_kpi", "checksum": {"name": "sha256", "checksum": "f496945bd74fd50290a04d63cef7a9ca77a5fbb81c703d3abdd54f753b75bb7b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "campaigns that lead to redeem or signups", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key": {"name": "app_key", "description": "the store app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "always be null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_type": {"name": "source_type", "description": "campaign/email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "email_reference_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "for redeem - redemption, for new_signups - new_member", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "for redeem - redemption_id, for new_signups - null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_type": {"name": "action_attribute_type", "description": "for redeem - points, for new_signups - null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "for redeem - number of points, for new_signups - null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082667.4473698, "relation_name": "dev_dkruh1.email__email_campaign_loyalty_kpi", "raw_code": "WITH emails_with_campaign_and_loyalty_block_template AS (\n SELECT * FROM {{ ref('email_stg__emails_with_campaign_and_templates') }}\n WHERE array_contains(blocks, \"LOYALTY_BLOCK\")\n AND event_type = 'CLICK'\n), loyalty_redeemed_purchases AS (\n SELECT * FROM {{ ref('loyalty__redeemed_purchases') }}\n), loyalty_point_redemptions AS (\n SELECT * FROM {{ ref('loyalty_stg__point_redemptions') }}\n), loyalty_opted_in_customers AS (\n SELECT * FROM {{ ref('loyalty__opted_in_customers') }}\n), unique_events AS (\n SELECT first(storeid) app_key, \n first(email_address) customer_email, \n email_reference_id, \n min(processing_time) min_click_time, \n max(processing_time) max_click_time\n FROM emails_with_campaign_and_loyalty_block_template\n GROUP BY email_reference_id\n), loyalty_redeemed_data AS (\n SELECT loyalty_redeemed_purchases.app_key AS app_key,\n loyalty_redeemed_purchases.customer_email AS customer_email,\n loyalty_redeemed_purchases.external_customer_id AS external_customer_id,\n loyalty_redeemed_purchases.external_order_id AS external_order_id,\n loyalty_redeemed_purchases.redemption_id AS redemption_id,\n loyalty_redeemed_purchases.amount_deducted_points AS amount_deducted_points,\n loyalty_point_redemptions.created_at AS created_at\n FROM loyalty_redeemed_purchases\n RIGHT JOIN loyalty_point_redemptions\n ON loyalty_point_redemptions.id = loyalty_redeemed_purchases.redemption_id\n), joined_unique_events_and_loyalty_data AS (\n SELECT loyalty_redeemed_data.app_key,\n loyalty_redeemed_data.customer_email, \n loyalty_redeemed_data.external_customer_id,\n loyalty_redeemed_data.external_order_id,\n loyalty_redeemed_data.redemption_id,\n loyalty_redeemed_data.amount_deducted_points,\n loyalty_redeemed_data.created_at,\n unique_events.email_reference_id,\n min_click_time,\n max_click_time\n FROM loyalty_redeemed_data\n JOIN unique_events\n ON unique_events.customer_email = loyalty_redeemed_data.customer_email\n AND unique_events.app_key = loyalty_redeemed_data.app_key\n), filtered_by_date AS (\n SELECT * \n FROM joined_unique_events_and_loyalty_data\n WHERE DATEDIFF(created_at, date(max_click_time)) <= 5\n AND DATEDIFF(created_at, date(min_click_time)) >= 0\n), most_relevant_campaign AS (\n SELECT t.*\n FROM filtered_by_date t\n INNER JOIN (\n SELECT created_at, max(max_click_time) max_click_time\n FROM filtered_by_date\n GROUP BY created_at) t2 \n ON t.max_click_time = t2.max_click_time\n AND t.created_at = t2.created_at\n), redeemers AS (\n SELECT uuid() AS id,\n 73 AS synergy_id,\n app_key,\n customer_email,\n '' AS customer_phone_number,\n external_customer_id AS customer_external_id,\n 'campaign/email' AS source_type,\n email_reference_id AS source_id,\n 'redemption' AS action_type,\n redemption_id AS action_id,\n 'points' AS action_attribute_type,\n amount_deducted_points AS action_attribute_value,\n external_order_id AS order_id\n FROM most_relevant_campaign\n), joined_unique_events_and_opted_in_data AS (\n SELECT loyalty_opted_in_customers.app_key,\n loyalty_opted_in_customers.customer_email, \n loyalty_opted_in_customers.customer_external_id,\n unique_events.email_reference_id,\n loyalty_opted_in_customers.opted_in_at as opted_in_at,\n min_click_time,\n max_click_time\n FROM loyalty_opted_in_customers\n JOIN unique_events\n ON unique_events.customer_email = loyalty_opted_in_customers.customer_email\n AND unique_events.app_key = loyalty_opted_in_customers.app_key\n), filtered_by_date_signups AS (\n SELECT *\n FROM joined_unique_events_and_opted_in_data\n WHERE DATEDIFF(opted_in_at, date(max_click_time)) <= 5\n AND DATEDIFF(opted_in_at, date(min_click_time)) >= 0\n), most_relevant_campaign_signups AS (\n SELECT t.*\n FROM filtered_by_date_signups t\n INNER JOIN (\n SELECT opted_in_at, max(max_click_time) max_click_time\n FROM filtered_by_date_signups\n GROUP BY opted_in_at) t2 \n ON t.max_click_time = t2.max_click_time\n AND t.opted_in_at = t2.opted_in_at\n), new_signups AS (\n SELECT uuid() AS id,\n 73 AS synergy_id,\n app_key,\n customer_email,\n '' AS customer_phone_number,\n customer_external_id AS customer_external_id,\n 'campaign/email' AS source_type,\n email_reference_id AS source_id,\n 'new_member' AS action_type,\n '' AS action_id,\n '' AS action_attribute_type,\n '' AS action_attribute_value,\n '' AS order_id\n FROM most_relevant_campaign_signups\n)\n\nSELECT *\nFROM redeemers\nUNION\nSELECT *\nFROM new_signups", "language": "sql", "refs": [{"name": "email_stg__emails_with_campaign_and_templates", "package": null, "version": null}, {"name": "loyalty__redeemed_purchases", "package": null, "version": null}, {"name": "loyalty_stg__point_redemptions", "package": null, "version": null}, {"name": "loyalty__opted_in_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email_stg__emails_with_campaign_and_templates", "model.yoda.loyalty__redeemed_purchases", "model.yoda.loyalty_stg__point_redemptions", "model.yoda.loyalty__opted_in_customers"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.sql", "compiled": true, "compiled_code": "WITH emails_with_campaign_and_loyalty_block_template AS (\n SELECT * FROM dev_dkruh1.email_stg__emails_with_campaign_and_templates\n WHERE array_contains(blocks, \"LOYALTY_BLOCK\")\n AND event_type = 'CLICK'\n), loyalty_redeemed_purchases AS (\n SELECT * FROM dev_dkruh1.loyalty__redeemed_purchases\n), loyalty_point_redemptions AS (\n SELECT * FROM dev_dkruh1.loyalty_stg__point_redemptions\n), loyalty_opted_in_customers AS (\n SELECT * FROM dev_dkruh1.loyalty__opted_in_customers\n), unique_events AS (\n SELECT first(storeid) app_key, \n first(email_address) customer_email, \n email_reference_id, \n min(processing_time) min_click_time, \n max(processing_time) max_click_time\n FROM emails_with_campaign_and_loyalty_block_template\n GROUP BY email_reference_id\n), loyalty_redeemed_data AS (\n SELECT loyalty_redeemed_purchases.app_key AS app_key,\n loyalty_redeemed_purchases.customer_email AS customer_email,\n loyalty_redeemed_purchases.external_customer_id AS external_customer_id,\n loyalty_redeemed_purchases.external_order_id AS external_order_id,\n loyalty_redeemed_purchases.redemption_id AS redemption_id,\n loyalty_redeemed_purchases.amount_deducted_points AS amount_deducted_points,\n loyalty_point_redemptions.created_at AS created_at\n FROM loyalty_redeemed_purchases\n RIGHT JOIN loyalty_point_redemptions\n ON loyalty_point_redemptions.id = loyalty_redeemed_purchases.redemption_id\n), joined_unique_events_and_loyalty_data AS (\n SELECT loyalty_redeemed_data.app_key,\n loyalty_redeemed_data.customer_email, \n loyalty_redeemed_data.external_customer_id,\n loyalty_redeemed_data.external_order_id,\n loyalty_redeemed_data.redemption_id,\n loyalty_redeemed_data.amount_deducted_points,\n loyalty_redeemed_data.created_at,\n unique_events.email_reference_id,\n min_click_time,\n max_click_time\n FROM loyalty_redeemed_data\n JOIN unique_events\n ON unique_events.customer_email = loyalty_redeemed_data.customer_email\n AND unique_events.app_key = loyalty_redeemed_data.app_key\n), filtered_by_date AS (\n SELECT * \n FROM joined_unique_events_and_loyalty_data\n WHERE DATEDIFF(created_at, date(max_click_time)) <= 5\n AND DATEDIFF(created_at, date(min_click_time)) >= 0\n), most_relevant_campaign AS (\n SELECT t.*\n FROM filtered_by_date t\n INNER JOIN (\n SELECT created_at, max(max_click_time) max_click_time\n FROM filtered_by_date\n GROUP BY created_at) t2 \n ON t.max_click_time = t2.max_click_time\n AND t.created_at = t2.created_at\n), redeemers AS (\n SELECT uuid() AS id,\n 73 AS synergy_id,\n app_key,\n customer_email,\n '' AS customer_phone_number,\n external_customer_id AS customer_external_id,\n 'campaign/email' AS source_type,\n email_reference_id AS source_id,\n 'redemption' AS action_type,\n redemption_id AS action_id,\n 'points' AS action_attribute_type,\n amount_deducted_points AS action_attribute_value,\n external_order_id AS order_id\n FROM most_relevant_campaign\n), joined_unique_events_and_opted_in_data AS (\n SELECT loyalty_opted_in_customers.app_key,\n loyalty_opted_in_customers.customer_email, \n loyalty_opted_in_customers.customer_external_id,\n unique_events.email_reference_id,\n loyalty_opted_in_customers.opted_in_at as opted_in_at,\n min_click_time,\n max_click_time\n FROM loyalty_opted_in_customers\n JOIN unique_events\n ON unique_events.customer_email = loyalty_opted_in_customers.customer_email\n AND unique_events.app_key = loyalty_opted_in_customers.app_key\n), filtered_by_date_signups AS (\n SELECT *\n FROM joined_unique_events_and_opted_in_data\n WHERE DATEDIFF(opted_in_at, date(max_click_time)) <= 5\n AND DATEDIFF(opted_in_at, date(min_click_time)) >= 0\n), most_relevant_campaign_signups AS (\n SELECT t.*\n FROM filtered_by_date_signups t\n INNER JOIN (\n SELECT opted_in_at, max(max_click_time) max_click_time\n FROM filtered_by_date_signups\n GROUP BY opted_in_at) t2 \n ON t.max_click_time = t2.max_click_time\n AND t.opted_in_at = t2.opted_in_at\n), new_signups AS (\n SELECT uuid() AS id,\n 73 AS synergy_id,\n app_key,\n customer_email,\n '' AS customer_phone_number,\n customer_external_id AS customer_external_id,\n 'campaign/email' AS source_type,\n email_reference_id AS source_id,\n 'new_member' AS action_type,\n '' AS action_id,\n '' AS action_attribute_type,\n '' AS action_attribute_value,\n '' AS order_id\n FROM most_relevant_campaign_signups\n)\n\nSELECT *\nFROM redeemers\nUNION\nSELECT *\nFROM new_signups", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email__email_campaign_reviews_block_kpi": {"database": null, "schema": "dev_dkruh1", "name": "email__email_campaign_reviews_block_kpi", "resource_type": "model", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.sql", "unique_id": "model.yoda.email__email_campaign_reviews_block_kpi", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_block_kpi", "email__email_campaign_reviews_block_kpi"], "alias": "email__email_campaign_reviews_block_kpi", "checksum": {"name": "sha256", "checksum": "c08a2eeb9deef45f0c34c5b6064dec7539c78a4813c08b09d6b00f3f65865a62"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "Email-campaigns that has reviews block in them and have order on it", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "The synergy id, always be 270.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key": {"name": "app_key", "description": "The store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "The customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "Field is not in use, always be empty string.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "The customer external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_type": {"name": "source_type", "description": "The source type. always be campaign/email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "The email reference id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "Field is not in use, always be empty string.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "Field is not in use, always be empty string.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_type": {"name": "action_attribute_type", "description": "Field is not in use, always be empty string.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "Field is not in use, always be empty string.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "The order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082667.4666424, "relation_name": "dev_dkruh1.email__email_campaign_reviews_block_kpi", "raw_code": "WITH emails_with_campaign_and_reviews_block_template AS (\n SELECT * FROM {{ ref('email_stg__emails_with_campaign_and_templates') }}\n WHERE array_contains(blocks, \"REVIEWS_BLOCK\")\n AND event_type='DELIVERED'\n), emails_order AS (\n SELECT email, yotpo_app_key, email_campaign_id, customer_id, first(shopify_order_id) as shopify_order_id\n FROM {{ ref('sms_stg__email_sms_campaign_orders') }}\n GROUP BY email, yotpo_app_key, email_campaign_id, customer_id\n), final AS (\n SELECT uuid() AS id,\n 72 AS synergy_id,\n emails_with_campaign_and_reviews_block_template.storeid AS app_key,\n emails_with_campaign_and_reviews_block_template.email_address AS customer_email,\n '' AS customer_phone_number,\n emails_order.customer_id AS customer_external_id,\n 'campaign/email' AS source_type,\n emails_with_campaign_and_reviews_block_template.email_reference_id AS source_id,\n '' AS action_type,\n '' AS action_id,\n '' AS action_attribute_type,\n '' AS action_attribute_value,\n emails_order.shopify_order_id as order_id\n FROM emails_with_campaign_and_reviews_block_template\n INNER JOIN emails_order\n ON emails_with_campaign_and_reviews_block_template.email_address = emails_order.email\n AND emails_with_campaign_and_reviews_block_template.storeid = emails_order.yotpo_app_key\n AND emails_with_campaign_and_reviews_block_template.campaign_id = emails_order.email_campaign_id\n)\n\nSELECT * FROM final", "language": "sql", "refs": [{"name": "email_stg__emails_with_campaign_and_templates", "package": null, "version": null}, {"name": "sms_stg__email_sms_campaign_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email_stg__emails_with_campaign_and_templates", "model.yoda.sms_stg__email_sms_campaign_orders"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.sql", "compiled": true, "compiled_code": "WITH emails_with_campaign_and_reviews_block_template AS (\n SELECT * FROM dev_dkruh1.email_stg__emails_with_campaign_and_templates\n WHERE array_contains(blocks, \"REVIEWS_BLOCK\")\n AND event_type='DELIVERED'\n), emails_order AS (\n SELECT email, yotpo_app_key, email_campaign_id, customer_id, first(shopify_order_id) as shopify_order_id\n FROM dev_dkruh1.sms_stg__email_sms_campaign_orders\n GROUP BY email, yotpo_app_key, email_campaign_id, customer_id\n), final AS (\n SELECT uuid() AS id,\n 72 AS synergy_id,\n emails_with_campaign_and_reviews_block_template.storeid AS app_key,\n emails_with_campaign_and_reviews_block_template.email_address AS customer_email,\n '' AS customer_phone_number,\n emails_order.customer_id AS customer_external_id,\n 'campaign/email' AS source_type,\n emails_with_campaign_and_reviews_block_template.email_reference_id AS source_id,\n '' AS action_type,\n '' AS action_id,\n '' AS action_attribute_type,\n '' AS action_attribute_value,\n emails_order.shopify_order_id as order_id\n FROM emails_with_campaign_and_reviews_block_template\n INNER JOIN emails_order\n ON emails_with_campaign_and_reviews_block_template.email_address = emails_order.email\n AND emails_with_campaign_and_reviews_block_template.storeid = emails_order.yotpo_app_key\n AND emails_with_campaign_and_reviews_block_template.campaign_id = emails_order.email_campaign_id\n)\n\nSELECT * FROM final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email__email_campaign_reviews_stars_kpi": {"database": null, "schema": "dev_dkruh1", "name": "email__email_campaign_reviews_stars_kpi", "resource_type": "model", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.sql", "unique_id": "model.yoda.email__email_campaign_reviews_stars_kpi", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_stars_kpi", "email__email_campaign_reviews_stars_kpi"], "alias": "email__email_campaign_reviews_stars_kpi", "checksum": {"name": "sha256", "checksum": "c2b9135bb771823406e51776dd3318a2bf2847d45771fe4732074c37772c34fd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "Email-campaigns that has reviews block with star rating in them and have order on it", "columns": {"id": {"name": "id", "description": "Table uuid", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "The synergy id, always be 134.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key": {"name": "app_key", "description": "The store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "The customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "Field is not in use, always be empty string.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "The customer external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_type": {"name": "source_type", "description": "The source type. always be campaign/email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "The email reference i", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "Field is not in use, always be empty string.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "Field is not in use, always be empty string.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_type": {"name": "action_attribute_type", "description": "Field is not in use, always be empty string.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "Field is not in use, always be empty string.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "The order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082667.5466242, "relation_name": "dev_dkruh1.email__email_campaign_reviews_stars_kpi", "raw_code": "WITH emails_with_campaign_and_reviews_block_template AS (\n SELECT * FROM {{ ref('email_stg__emails_with_campaign_and_templates') }}\n WHERE array_contains(blocks, \"REVIEWS_STARS\")\n AND event_type='DELIVERED'\n), emails_order AS (\n SELECT email, yotpo_app_key, email_campaign_id, customer_id, first(shopify_order_id) as shopify_order_id\n FROM {{ ref('sms_stg__email_sms_campaign_orders') }}\n GROUP BY email, yotpo_app_key, email_campaign_id, customer_id\n), final AS (\n SELECT uuid() AS id,\n 134 AS synergy_id,\n emails_with_campaign_and_reviews_block_template.storeid AS app_key,\n emails_with_campaign_and_reviews_block_template.email_address AS customer_email,\n '' AS customer_phone_number,\n emails_order.customer_id AS customer_external_id,\n 'campaign/email' AS source_type,\n emails_with_campaign_and_reviews_block_template.email_reference_id AS source_id,\n '' AS action_type,\n '' AS action_id,\n '' AS action_attribute_type,\n '' AS action_attribute_value,\n emails_order.shopify_order_id as order_id\n FROM emails_with_campaign_and_reviews_block_template\n INNER JOIN emails_order\n ON emails_with_campaign_and_reviews_block_template.email_address = emails_order.email\n AND emails_with_campaign_and_reviews_block_template.storeid = emails_order.yotpo_app_key\n AND emails_with_campaign_and_reviews_block_template.campaign_id = emails_order.email_campaign_id\n)\n\nSELECT * FROM final", "language": "sql", "refs": [{"name": "email_stg__emails_with_campaign_and_templates", "package": null, "version": null}, {"name": "sms_stg__email_sms_campaign_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email_stg__emails_with_campaign_and_templates", "model.yoda.sms_stg__email_sms_campaign_orders"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.sql", "compiled": true, "compiled_code": "WITH emails_with_campaign_and_reviews_block_template AS (\n SELECT * FROM dev_dkruh1.email_stg__emails_with_campaign_and_templates\n WHERE array_contains(blocks, \"REVIEWS_STARS\")\n AND event_type='DELIVERED'\n), emails_order AS (\n SELECT email, yotpo_app_key, email_campaign_id, customer_id, first(shopify_order_id) as shopify_order_id\n FROM dev_dkruh1.sms_stg__email_sms_campaign_orders\n GROUP BY email, yotpo_app_key, email_campaign_id, customer_id\n), final AS (\n SELECT uuid() AS id,\n 134 AS synergy_id,\n emails_with_campaign_and_reviews_block_template.storeid AS app_key,\n emails_with_campaign_and_reviews_block_template.email_address AS customer_email,\n '' AS customer_phone_number,\n emails_order.customer_id AS customer_external_id,\n 'campaign/email' AS source_type,\n emails_with_campaign_and_reviews_block_template.email_reference_id AS source_id,\n '' AS action_type,\n '' AS action_id,\n '' AS action_attribute_type,\n '' AS action_attribute_value,\n emails_order.shopify_order_id as order_id\n FROM emails_with_campaign_and_reviews_block_template\n INNER JOIN emails_order\n ON emails_with_campaign_and_reviews_block_template.email_address = emails_order.email\n AND emails_with_campaign_and_reviews_block_template.storeid = emails_order.yotpo_app_key\n AND emails_with_campaign_and_reviews_block_template.campaign_id = emails_order.email_campaign_id\n)\n\nSELECT * FROM final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email__email_events_per_source_id_and_ip_pool": {"database": null, "schema": "dev_dkruh1", "name": "email__email_events_per_source_id_and_ip_pool", "resource_type": "model", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.sql", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.sql", "unique_id": "model.yoda.email__email_events_per_source_id_and_ip_pool", "fqn": ["yoda", "email", "marts", "email__email_events_per_source_id_and_ip_pool", "email__email_events_per_source_id_and_ip_pool"], "alias": "email__email_events_per_source_id_and_ip_pool", "checksum": {"name": "sha256", "checksum": "35db932a9e34399f0bf31f9e083e3b26fe7980a4d6ace76d83f7d2e991299fc3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "rbasis@yotpo.com"}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "display all email events unique counters based on source id and pool", "columns": {"processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_app_key": {"name": "store_app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_name": {"name": "contact_card_name", "description": "store name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_date": {"name": "campaign_date", "description": "campaign execution date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "campaign_name": {"name": "campaign_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_name": {"name": "source_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip_pool_name": {"name": "ip_pool_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_user_name": {"name": "sub_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sent": {"name": "sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered": {"name": "delivered", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "open": {"name": "open", "description": "unique open events per campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "click": {"name": "click", "description": "unique click events per campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unsubscribe": {"name": "unsubscribe", "description": "unique unsubscribe events per campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "soft_bounced": {"name": "soft_bounced", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hard_bounced": {"name": "hard_bounced", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "spam": {"name": "spam", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rejected": {"name": "rejected", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "failed": {"name": "failed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "succeeded": {"name": "succeeded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_authenticated": {"name": "is_authenticated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "rbasis@yotpo.com"}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "rbasis@yotpo.com"}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082667.624732, "relation_name": "dev_dkruh1.email__email_events_per_source_id_and_ip_pool", "raw_code": "SELECT \n max(pool.processing_time) as processing_time,\n max(store_app_key) as store_app_key,\n max(contact_card_name) as contact_card_name,\n max(campaign_date) as campaign_date,\n max(campaign_name) as campaign_name,\n campaign_id,\n max(source_name) as source_name,\n ip_pool_name,\n sub_user_name,\n sum(sent) as sent,\n sum(delivered) as delivered,\n sum(open) as open,\n sum(click) as click,\n sum(unsubscribe) as unsubscribe,\n sum(soft_bounced) as soft_bounced,\n sum(hard_bounced) as hard_bounced,\n sum(spam) as spam,\n sum(rejected) as rejected,\n sum(failed) as failed,\n sum(succeeded) as succeeded,\n If(ISNULL(max(auth.domain_name)), 'false', 'true') as is_authenticated\n FROM {{ ref('email__email_events_per_source_id_and_ref_id')}} as pool\n left outer join {{ ref('email_stg__authenticated_domain')}} as auth\n on pool.store_app_key = auth.store_id and auth.domain_status_id = 2\n group by campaign_id, ip_pool_name, sub_user_name", "language": "sql", "refs": [{"name": "email__email_events_per_source_id_and_ref_id", "package": null, "version": null}, {"name": "email_stg__authenticated_domain", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email__email_events_per_source_id_and_ref_id", "model.yoda.email_stg__authenticated_domain"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.sql", "compiled": true, "compiled_code": "SELECT \n max(pool.processing_time) as processing_time,\n max(store_app_key) as store_app_key,\n max(contact_card_name) as contact_card_name,\n max(campaign_date) as campaign_date,\n max(campaign_name) as campaign_name,\n campaign_id,\n max(source_name) as source_name,\n ip_pool_name,\n sub_user_name,\n sum(sent) as sent,\n sum(delivered) as delivered,\n sum(open) as open,\n sum(click) as click,\n sum(unsubscribe) as unsubscribe,\n sum(soft_bounced) as soft_bounced,\n sum(hard_bounced) as hard_bounced,\n sum(spam) as spam,\n sum(rejected) as rejected,\n sum(failed) as failed,\n sum(succeeded) as succeeded,\n If(ISNULL(max(auth.domain_name)), 'false', 'true') as is_authenticated\n FROM dev_dkruh1.email__email_events_per_source_id_and_ref_id as pool\n left outer join dev_dkruh1.email_stg__authenticated_domain as auth\n on pool.store_app_key = auth.store_id and auth.domain_status_id = 2\n group by campaign_id, ip_pool_name, sub_user_name", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email__email_events_per_source_id_and_isp": {"database": null, "schema": "dev_dkruh1", "name": "email__email_events_per_source_id_and_isp", "resource_type": "model", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.sql", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.sql", "unique_id": "model.yoda.email__email_events_per_source_id_and_isp", "fqn": ["yoda", "email", "marts", "email__email_events_per_source_id_and_isp", "email__email_events_per_source_id_and_isp"], "alias": "email__email_events_per_source_id_and_isp", "checksum": {"name": "sha256", "checksum": "dca8d6049934e833e3d8932fee63f754e31aa7ce08257a2c6e3971cf48fb6315"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com"}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "display unique email events aggregation based on source id and isp", "columns": {"processing_time": {"name": "processing_time", "description": "last procceissing date for specific souce and isp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_app_key": {"name": "store_app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_name": {"name": "contact_card_name", "description": "store name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_date": {"name": "campaign_date", "description": "campaign execution date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_name": {"name": "source_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sent": {"name": "sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered": {"name": "delivered", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "open": {"name": "open", "description": "unique open events counter", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "click": {"name": "click", "description": "unique click counter", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unsubscribe": {"name": "unsubscribe", "description": "unique unsubscribe events counter", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "soft_bounced": {"name": "soft_bounced", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hard_bounced": {"name": "hard_bounced", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "spam": {"name": "spam", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_authenticated": {"name": "is_authenticated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com"}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com"}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082667.6485043, "relation_name": "dev_dkruh1.email__email_events_per_source_id_and_isp", "raw_code": "SELECT \n max(isp.processing_time) as processing_time,\n max(store_app_key) as store_app_key,\n max(contact_card_name) as contact_card_name,\n max(campaign_date) as campaign_date,\n campaign_id,\n max(source_name) as source_name,\n domain,\n sum(sent) as sent,\n sum(delivered) as delivered,\n sum(open) as open,\n sum(click) as click,\n sum(unsubscribe) as unsubscribe,\n sum(soft_bounced) as soft_bounced,\n sum(hard_bounced) as hard_bounced,\n sum(spam) as spam,\n If(isnull(max(auth.domain_name)), 'false', 'true') as is_authenticated\n FROM {{ ref('email__email_events_per_source_id_and_ref_id')}} as isp\n left outer join {{ ref('email_stg__authenticated_domain')}} as auth\n on isp.store_app_key = auth.store_id and auth.domain_status_id = 2\n where ip_pool_name is not null\n group by campaign_id, domain", "language": "sql", "refs": [{"name": "email__email_events_per_source_id_and_ref_id", "package": null, "version": null}, {"name": "email_stg__authenticated_domain", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email__email_events_per_source_id_and_ref_id", "model.yoda.email_stg__authenticated_domain"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.sql", "compiled": true, "compiled_code": "SELECT \n max(isp.processing_time) as processing_time,\n max(store_app_key) as store_app_key,\n max(contact_card_name) as contact_card_name,\n max(campaign_date) as campaign_date,\n campaign_id,\n max(source_name) as source_name,\n domain,\n sum(sent) as sent,\n sum(delivered) as delivered,\n sum(open) as open,\n sum(click) as click,\n sum(unsubscribe) as unsubscribe,\n sum(soft_bounced) as soft_bounced,\n sum(hard_bounced) as hard_bounced,\n sum(spam) as spam,\n If(isnull(max(auth.domain_name)), 'false', 'true') as is_authenticated\n FROM dev_dkruh1.email__email_events_per_source_id_and_ref_id as isp\n left outer join dev_dkruh1.email_stg__authenticated_domain as auth\n on isp.store_app_key = auth.store_id and auth.domain_status_id = 2\n where ip_pool_name is not null\n group by campaign_id, domain", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email__email_events_per_source_id_and_ref_id": {"database": null, "schema": "dev_dkruh1", "name": "email__email_events_per_source_id_and_ref_id", "resource_type": "model", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.sql", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.sql", "unique_id": "model.yoda.email__email_events_per_source_id_and_ref_id", "fqn": ["yoda", "email", "marts", "email__email_events_per_source_id_and_ref_id", "email__email_events_per_source_id_and_ref_id"], "alias": "email__email_events_per_source_id_and_ref_id", "checksum": {"name": "sha256", "checksum": "89fe9603d8b95d124bc38a36a4292b63a527d400f1a0102763668e300331ac73"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["campaign_id", "store_app_key", "source_name", "context_reference_id"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "email unique events by reference id", "columns": {"processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_app_key": {"name": "store_app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_name": {"name": "contact_card_name", "description": "store name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_date": {"name": "campaign_date", "description": "campaign execution date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "campaign_name": {"name": "campaign_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_name": {"name": "source_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_reference_id": {"name": "context_reference_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip_pool_name": {"name": "ip_pool_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_user_name": {"name": "sub_user_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sent": {"name": "sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered": {"name": "delivered", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "open": {"name": "open", "description": "unique open event per reference id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "click": {"name": "click", "description": "unique click event per reference id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "unsubscribe": {"name": "unsubscribe", "description": "unique unsubscribe event per reference id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "soft_bounced": {"name": "soft_bounced", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hard_bounced": {"name": "hard_bounced", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "spam": {"name": "spam", "description": "unique spam report event per reference id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rejected": {"name": "rejected", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "failed": {"name": "failed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "succeeded": {"name": "succeeded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "materialized": "incremental", "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "unique_key": ["campaign_id", "store_app_key", "source_name", "context_reference_id"], "incremental_strategy": "merge"}, "created_at": 1700082667.6738176, "relation_name": "dev_dkruh1.email__email_events_per_source_id_and_ref_id", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key=['campaign_id', 'store_app_key', 'source_name', 'context_reference_id'],\n incremental_strategy = 'merge'\n )\n}}\n\nWITH email_events AS (\n\n SELECT \n max(processing_time) as processing_time,\n context_store_id as store_app_key,\n context_source_id as campaign_id,\n context_source_name as source_name,\n context_reference_id,\n max(ip_pool_name) as ip_pool_name,\n max(sub_user_name) as sub_user_name,\n max(SUBSTRING(email_address, CHARINDEX('@', email_address) + 1, LENGTH(email_address))) as domain,\n COUNT(CASE WHEN event_type='SENT' THEN 1 END) as sent,\n COUNT(CASE WHEN event_type='DELIVERED' THEN 1 END) as delivered,\n COUNT(CASE WHEN event_type='OPEN' THEN 1 END) as open,\n COUNT(CASE WHEN event_type='CLICK' THEN 1 END) as click,\n COUNT(CASE WHEN event_type='UNSUBSCRIBE' THEN 1 END) as unsubscribe,\n COUNT(CASE WHEN event_type='SOFT_BOUNCE' THEN 1 END) as soft_bounced,\n COUNT(CASE WHEN event_type='HARD_BOUNCE' THEN 1 END) as hard_bounced,\n COUNT(CASE WHEN event_type='SPAM_REPORT' THEN 1 END) as spam,\n COUNT(CASE WHEN event_type='REJECTED' THEN 1 END) as rejected,\n COUNT(CASE WHEN event_type='FAILED' THEN 1 END) as failed,\n COUNT(CASE WHEN event_type='SUCCEEDED' THEN 1 END) as succeeded\n FROM {{ ref('email_stg__system_email_events')}}\n {% if is_incremental() %}\n where processing_time > (SELECT MAX(processing_time) FROM {{ this }})\n {% endif %}\n group by context_store_id, context_source_name,context_source_id, context_reference_id\n\n), campaign_events AS (\n\n SELECT to_timestamp(from_unixtime(execution_startdatetime / 1000), 'yyyy-MM-dd HH:mm:ss') as campaign_date, storeid, id, name\n FROM {{ ref('email_stg__campaign_events')}}\n)\n\nSELECT\n email_events.processing_time,\n email_events.store_app_key,\n users.contact_card_name,\n campaign_events.campaign_date as campaign_date, \n campaign_events.name as campaign_name,\n email_events.campaign_id,\n email_events.source_name,\n email_events.context_reference_id,\n email_events.ip_pool_name,\n email_events.sub_user_name,\n email_events.domain,\n {% if is_incremental() %}\n email_events.sent + IFNULL({{this}}.sent, 0) as sent,\n email_events.delivered + IFNULL({{this}}.delivered, 0) as delivered,\n if(email_events.open > 0 or IFNULL({{this}}.open, 0) > 0, 1, 0) as open,\n if(email_events.click > 0 or IFNULL({{this}}.click, 0) > 0, 1, 0) as click,\n if(email_events.unsubscribe > 0 or IFNULL({{this}}.unsubscribe, 0) > 0, 1, 0) as unsubscribe,\n email_events.soft_bounced + IFNULL({{this}}.soft_bounced, 0) as soft_bounced,\n email_events.hard_bounced + IFNULL({{this}}.hard_bounced, 0) as hard_bounced,\n email_events.spam + IFNULL({{this}}.spam, 0) as spam,\n email_events.rejected + IFNULL({{this}}.rejected, 0) as rejected,\n email_events.failed + IFNULL({{this}}.failed, 0) as failed,\n email_events.succeeded + IFNULL({{this}}.succeeded, 0) as succeeded\n {% else %}\n email_events.sent,\n email_events.delivered,\n if(email_events.open > 0, 1, 0) as open,\n if(email_events.click > 0, 1, 0) as click,\n if(email_events.unsubscribe > 0, 1, 0) as unsubscribe,\n email_events.soft_bounced,\n email_events.hard_bounced,\n email_events.spam,\n email_events.rejected,\n email_events.failed,\n email_events.succeeded\n {% endif %}\nFROM email_events \n{% if is_incremental() %}\nleft outer join {{this}} on email_events.campaign_id = {{this}}.campaign_id \nand email_events.context_reference_id = {{this}}.context_reference_id \n{% endif %}\ninner join campaign_events \non email_events.store_app_key = campaign_events.storeid and email_events.campaign_id = campaign_events.id\ninner join {{ ref('sms_stg__users')}} users on users.yotpo_app_key = email_events.store_app_key", "language": "sql", "refs": [{"name": "email_stg__system_email_events", "package": null, "version": null}, {"name": "email_stg__campaign_events", "package": null, "version": null}, {"name": "sms_stg__users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email_stg__system_email_events", "model.yoda.email_stg__campaign_events", "model.yoda.sms_stg__users"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.sql", "compiled": true, "compiled_code": "\n\nWITH email_events AS (\n\n SELECT \n max(processing_time) as processing_time,\n context_store_id as store_app_key,\n context_source_id as campaign_id,\n context_source_name as source_name,\n context_reference_id,\n max(ip_pool_name) as ip_pool_name,\n max(sub_user_name) as sub_user_name,\n max(SUBSTRING(email_address, CHARINDEX('@', email_address) + 1, LENGTH(email_address))) as domain,\n COUNT(CASE WHEN event_type='SENT' THEN 1 END) as sent,\n COUNT(CASE WHEN event_type='DELIVERED' THEN 1 END) as delivered,\n COUNT(CASE WHEN event_type='OPEN' THEN 1 END) as open,\n COUNT(CASE WHEN event_type='CLICK' THEN 1 END) as click,\n COUNT(CASE WHEN event_type='UNSUBSCRIBE' THEN 1 END) as unsubscribe,\n COUNT(CASE WHEN event_type='SOFT_BOUNCE' THEN 1 END) as soft_bounced,\n COUNT(CASE WHEN event_type='HARD_BOUNCE' THEN 1 END) as hard_bounced,\n COUNT(CASE WHEN event_type='SPAM_REPORT' THEN 1 END) as spam,\n COUNT(CASE WHEN event_type='REJECTED' THEN 1 END) as rejected,\n COUNT(CASE WHEN event_type='FAILED' THEN 1 END) as failed,\n COUNT(CASE WHEN event_type='SUCCEEDED' THEN 1 END) as succeeded\n FROM dev_dkruh1.email_stg__system_email_events\n \n group by context_store_id, context_source_name,context_source_id, context_reference_id\n\n), campaign_events AS (\n\n SELECT to_timestamp(from_unixtime(execution_startdatetime / 1000), 'yyyy-MM-dd HH:mm:ss') as campaign_date, storeid, id, name\n FROM dev_dkruh1.email_stg__campaign_events\n)\n\nSELECT\n email_events.processing_time,\n email_events.store_app_key,\n users.contact_card_name,\n campaign_events.campaign_date as campaign_date, \n campaign_events.name as campaign_name,\n email_events.campaign_id,\n email_events.source_name,\n email_events.context_reference_id,\n email_events.ip_pool_name,\n email_events.sub_user_name,\n email_events.domain,\n \n email_events.sent,\n email_events.delivered,\n if(email_events.open > 0, 1, 0) as open,\n if(email_events.click > 0, 1, 0) as click,\n if(email_events.unsubscribe > 0, 1, 0) as unsubscribe,\n email_events.soft_bounced,\n email_events.hard_bounced,\n email_events.spam,\n email_events.rejected,\n email_events.failed,\n email_events.succeeded\n \nFROM email_events \n\ninner join campaign_events \non email_events.store_app_key = campaign_events.storeid and email_events.campaign_id = campaign_events.id\ninner join dev_dkruh1.sms_stg__users users on users.yotpo_app_key = email_events.store_app_key", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level": {"database": null, "schema": "dev_dkruh1", "name": "email__email_events_source_id_per_isp_ip_pool_eng_level", "resource_type": "model", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.sql", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.sql", "unique_id": "model.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level", "fqn": ["yoda", "email", "marts", "email__email_events_source_id_per_isp_ip_pool_eng_level", "email__email_events_source_id_per_isp_ip_pool_eng_level"], "alias": "email__email_events_source_id_per_isp_ip_pool_eng_level", "checksum": {"name": "sha256", "checksum": "39868763652fc58bf32d5915536ba211280dca8416926939ce60739eb648cd8e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "iftah.shimoni@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "", "columns": {"store_app_key": {"name": "store_app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_name": {"name": "contact_card_name", "description": "store name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "Source id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip_pool_name": {"name": "ip_pool_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_date": {"name": "campaign_date", "description": "campaign execution date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "store_on_boarding": {"name": "store_on_boarding", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sent": {"name": "sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered": {"name": "delivered", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "open_rate": {"name": "open_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Open_engagement_level": {"name": "Open_engagement_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Open_Click_level": {"name": "Open_Click_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "click_rate": {"name": "click_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "soft_bounced_rate": {"name": "soft_bounced_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "hard_bounced_rate": {"name": "hard_bounced_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_unsubscribe": {"name": "total_unsubscribe", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent_gmail": {"name": "sent_gmail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered_gmail": {"name": "delivered_gmail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "open_rate_gmail": {"name": "open_rate_gmail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Open_engagement_level_gmail": {"name": "Open_engagement_level_gmail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Open_Click_level_gmail": {"name": "Open_Click_level_gmail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "click_rate_gmail": {"name": "click_rate_gmail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "soft_bounced_rate_gmail": {"name": "soft_bounced_rate_gmail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "hard_bounced_rate_gmail": {"name": "hard_bounced_rate_gmail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sent_MSFT": {"name": "sent_MSFT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered_MSFT": {"name": "delivered_MSFT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "open_rate_MSFT": {"name": "open_rate_MSFT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Open_engagement_level_MSFT": {"name": "Open_engagement_level_MSFT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "click_rate_MSFT": {"name": "click_rate_MSFT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "soft_bounced_rate_MSFT": {"name": "soft_bounced_rate_MSFT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "hard_bounced_rate_MSFT": {"name": "hard_bounced_rate_MSFT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Spam_rate_MSFT": {"name": "Spam_rate_MSFT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "spam_level_MSFT": {"name": "spam_level_MSFT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sent_Yahoo": {"name": "sent_Yahoo", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered_Yahoo": {"name": "delivered_Yahoo", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "open_rate_Yahoo": {"name": "open_rate_Yahoo", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Open_engagement_level_yahoo": {"name": "Open_engagement_level_yahoo", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "click_rate_Yahoo": {"name": "click_rate_Yahoo", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "soft_bounced_rate_Yahoo": {"name": "soft_bounced_rate_Yahoo", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "hard_bounced_rate_Yahoo": {"name": "hard_bounced_rate_Yahoo", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Spam_rate_Yahoo": {"name": "Spam_rate_Yahoo", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "spam_level_Yahoo": {"name": "spam_level_Yahoo", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "iftah.shimoni@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "iftah.shimoni@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082667.7105527, "relation_name": "dev_dkruh1.email__email_events_source_id_per_isp_ip_pool_eng_level", "raw_code": "with \n\nOn_boarding_data as (\nselect source_id, store_on_boarding \nfrom {{ ref('email_stg__source_engagement_level_dry_run')}} as se \n),\n\nCampaign_IPpool as (\nselect campaign_id as source_ID, ip_pool_name , \n store_on_boarding,\n( sent ) as total_sent,\n( delivered ) as total_delivered,\n( open ) as total_open,\n( click ) as total_click,\n( soft_bounced ) as total_soft_bounced,\n( hard_bounced ) as total_hard_bounced,\n( unsubscribe ) as total_unsubscribe,\ncount(*) over (partition by P.campaign_id) as number_IP_pools\n\nFROM {{ ref('email__email_events_per_source_id_and_ip_pool')}} as P inner join On_boarding_data as OB on OB.source_id = P.campaign_id\nwhere ip_pool_name is not null \n),\n\n\nCampaign_ISP as (\nselect campaign_id,\nfirst(S.store_app_key) as store_app_key, \nfirst(contact_card_name) as contact_card_name, \nmin(date(campaign_date)) as campaign_date, \nsum(case when domain = 'gmail.com' then sent else 0 end) as total_sent_gmail,\nsum(case when domain = 'gmail.com' then delivered else 0 end) as total_delivered_gmail,\nsum(case when domain = 'gmail.com' then open else 0 end ) as total_open_gmail,\nsum(case when domain = 'gmail.com' then click else 0 end) as total_click_gmail,\nsum(case when domain = 'gmail.com' then soft_bounced else 0 end) as total_soft_bounced_gmail,\nsum(case when domain = 'gmail.com' then hard_bounced else 0 end) as total_hard_bounced_gmail,\n\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then sent else 0 end) as total_sent_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then delivered else 0 end) as total_delivered_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then open else 0 end ) as total_open_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then click else 0 end) as total_click_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then soft_bounced else 0 end) as total_soft_bounced_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then hard_bounced else 0 end) as total_hard_bounced_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then spam else 0 end) as total_spam_MSFT,\n\nsum(case when domain in ('yahoo.com', 'aol.com') then sent else 0 end) as total_sent_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then delivered else 0 end) as total_delivered_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then open else 0 end ) as total_open_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then click else 0 end) as total_click_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then soft_bounced else 0 end) as total_soft_bounced_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then hard_bounced else 0 end) as total_hard_bounced_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then spam else 0 end) as total_spam_Yahoo\nFROM {{ ref('email__email_events_per_source_id_and_isp')}} as S \ngroup by campaign_id\n \n),\n\nCampaign_data as (\n select * \n FROM Campaign_ISP as ISP inner join Campaign_IPpool as I on ISP.campaign_id = I.source_ID \n where number_IP_pools =1\n ) ------------------------------------- input)\n\n\n\nselect store_app_key, contact_card_name, campaign_id, ip_pool_name, campaign_date, store_on_boarding,\n\ntotal_sent as sent,\ntotal_delivered as delivered,\nround(100*total_open/total_delivered,3) as open_rate,\ncase when round(100*total_open/total_delivered,3) > 30 then '1.Good- More than 30% U.Open Rate'\n when round(100*total_open/total_delivered,3) > 20 then '2.Med- 20-30% U.Open Rate'\n when round(100*total_open/total_delivered,3) > 10 then '3.Low- 10-20% U.Open Rate'\n when total_sent > 0 and round(100*total_open/total_delivered,3) < 10 then '4.Bad- Less than 10%' else 'no audience' end as Open_engagement_level,\n\ncase when round(100*total_open/total_delivered,3) > 30 and round(100*total_click/total_delivered,3) > 0.8 then '1.Good Open and Good Click'\nwhen round(100*total_open/total_delivered,3) > 30 and round(100*total_click/total_delivered,3) < 0.8 then '2.Good Open and Bad Click'\n else '3.Else' end as Open_Click_level,\nround(100*total_click/total_delivered,3) as click_rate,\nround(100*total_soft_bounced/total_sent,3) as soft_bounced_rate,\nround(100*total_hard_bounced/total_sent,3) as hard_bounced_rate,\ntotal_unsubscribe,\n\ntotal_sent_gmail as sent_gmail,\ntotal_delivered_gmail as delivered_gmail,\nround(100*total_open_gmail/total_delivered_gmail,3) as open_rate_gmail,\ncase when round(100*total_open_gmail/total_delivered_gmail,3) > 30 then '1.Good- More than 30% U.Open Rate'\n when round(100*total_open_gmail/total_delivered_gmail,3) > 20 then '2.Med- 20-30% U.Open Rate'\n when round(100*total_open_gmail/total_delivered_gmail,3) > 10 then '3.Low- 10-20% U.Open Rate'\n when total_sent_gmail > 0 and round(100*total_open_gmail/total_delivered_gmail,3) < 10 then '4.Bad- Less than 10%' else 'no gmail audience' end as Open_engagement_level_gmail,\n\ncase when round(100*total_open_gmail/total_delivered_gmail,3) > 30 and round(100*total_click_gmail/total_delivered_gmail,3) > 0.8 then '1.Good Open and Good Click'\nwhen round(100*total_open_gmail/total_delivered_gmail,3) > 30 and round(100*total_click_gmail/total_delivered_gmail,3) < 0.8 then '2.Good Open and Bad Click'\n else '3.Else' end as Open_Click_level_gmail,\n\nround(100*total_click_gmail/total_delivered_gmail,3) as click_rate_gmail,\nround(100*total_soft_bounced_gmail/total_sent_gmail,3) as soft_bounced_rate_gmail,\nround(100*total_hard_bounced_gmail/total_sent_gmail,3) as hard_bounced_rate_gmail,\n\ntotal_sent_MSFT as sent_MSFT,\ntotal_delivered_MSFT as delivered_MSFT,\nround(100*total_open_MSFT/total_delivered_MSFT,3) as open_rate_MSFT,\ncase when round(100*total_open_MSFT/total_delivered_MSFT,3) > 30 then '1.Good- More than 30% U.Open Rate'\n when round(100*total_open_MSFT/total_delivered_MSFT,3) > 20 then '2.Med- 20-30% U.Open Rate'\n when round(100*total_open_MSFT/total_delivered_MSFT,3) > 10 then '3.Low- 10-20% U.Open Rate'\n when total_sent_MSFT > 0 and round(100*total_open_MSFT/total_delivered_MSFT,3) < 10 then '4.Bad- Less than 10%' else 'no MSFT audience' end as Open_engagement_level_MSFT,\nround(100*total_click_MSFT/total_delivered_MSFT,3) as click_rate_MSFT,\nround(100*total_soft_bounced_MSFT/total_sent_MSFT,3) as soft_bounced_rate_MSFT,\nround(100*total_hard_bounced_MSFT/total_delivered_MSFT,3) as hard_bounced_rate_MSFT,\nround(100*total_spam_MSFT/total_delivered_MSFT,3) as Spam_rate_MSFT,\n\n case when round(100*total_spam_MSFT/total_delivered_MSFT,3) > 0.2 then 'More than 0.2% reported as a spam %'\n else 'else' end as spam_level_MSFT,\n\n total_sent_Yahoo as sent_Yahoo,\n total_delivered_Yahoo as delivered_Yahoo,\nround(100*total_open_Yahoo/total_delivered_Yahoo,3) as open_rate_Yahoo,\ncase when round(100*total_open_yahoo/total_delivered_yahoo,3) > 30 then '1.Good- More than 30% U.Open Rate'\n when round(100*total_open_yahoo/total_delivered_yahoo,3) > 20 then '2.Med- 20-30% U.Open Rate'\n when round(100*total_open_yahoo/total_delivered_yahoo,3) > 10 then '3.Low- 10-20% U.Open Rate'\n when total_sent_yahoo > 0 and round(100*total_open_yahoo/total_delivered_yahoo,3) < 10 then '4.Bad- Less than 10%' else 'no yahoo audience' end as Open_engagement_level_yahoo,\n\nround(100*total_click_Yahoo/total_delivered_Yahoo,3) as click_rate_Yahoo,\nround(100*total_soft_bounced_Yahoo/total_sent_Yahoo,3) as soft_bounced_rate_Yahoo,\nround(100*total_hard_bounced_Yahoo/total_sent_Yahoo,3) as hard_bounced_rate_Yahoo,\nround(100*total_spam_Yahoo/total_delivered_Yahoo,3) as Spam_rate_Yahoo,\n\ncase when round(100*total_spam_Yahoo/total_delivered_Yahoo,3) > 0.2 then 'More than 0.2% reported as a spam %'\n else 'else' end as spam_level_Yahoo\n\n\nFROM Campaign_data \nwhere total_sent > 0", "language": "sql", "refs": [{"name": "email_stg__source_engagement_level_dry_run", "package": null, "version": null}, {"name": "email__email_events_per_source_id_and_ip_pool", "package": null, "version": null}, {"name": "email__email_events_per_source_id_and_isp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email_stg__source_engagement_level_dry_run", "model.yoda.email__email_events_per_source_id_and_ip_pool", "model.yoda.email__email_events_per_source_id_and_isp"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.sql", "compiled": true, "compiled_code": "with \n\nOn_boarding_data as (\nselect source_id, store_on_boarding \nfrom dev_dkruh1.email_stg__source_engagement_level_dry_run as se \n),\n\nCampaign_IPpool as (\nselect campaign_id as source_ID, ip_pool_name , \n store_on_boarding,\n( sent ) as total_sent,\n( delivered ) as total_delivered,\n( open ) as total_open,\n( click ) as total_click,\n( soft_bounced ) as total_soft_bounced,\n( hard_bounced ) as total_hard_bounced,\n( unsubscribe ) as total_unsubscribe,\ncount(*) over (partition by P.campaign_id) as number_IP_pools\n\nFROM dev_dkruh1.email__email_events_per_source_id_and_ip_pool as P inner join On_boarding_data as OB on OB.source_id = P.campaign_id\nwhere ip_pool_name is not null \n),\n\n\nCampaign_ISP as (\nselect campaign_id,\nfirst(S.store_app_key) as store_app_key, \nfirst(contact_card_name) as contact_card_name, \nmin(date(campaign_date)) as campaign_date, \nsum(case when domain = 'gmail.com' then sent else 0 end) as total_sent_gmail,\nsum(case when domain = 'gmail.com' then delivered else 0 end) as total_delivered_gmail,\nsum(case when domain = 'gmail.com' then open else 0 end ) as total_open_gmail,\nsum(case when domain = 'gmail.com' then click else 0 end) as total_click_gmail,\nsum(case when domain = 'gmail.com' then soft_bounced else 0 end) as total_soft_bounced_gmail,\nsum(case when domain = 'gmail.com' then hard_bounced else 0 end) as total_hard_bounced_gmail,\n\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then sent else 0 end) as total_sent_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then delivered else 0 end) as total_delivered_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then open else 0 end ) as total_open_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then click else 0 end) as total_click_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then soft_bounced else 0 end) as total_soft_bounced_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then hard_bounced else 0 end) as total_hard_bounced_MSFT,\nsum(case when domain in ('hotmail.com', 'outlook.com' , 'live.com', 'msn.com') then spam else 0 end) as total_spam_MSFT,\n\nsum(case when domain in ('yahoo.com', 'aol.com') then sent else 0 end) as total_sent_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then delivered else 0 end) as total_delivered_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then open else 0 end ) as total_open_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then click else 0 end) as total_click_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then soft_bounced else 0 end) as total_soft_bounced_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then hard_bounced else 0 end) as total_hard_bounced_Yahoo,\nsum(case when domain in ('yahoo.com', 'aol.com') then spam else 0 end) as total_spam_Yahoo\nFROM dev_dkruh1.email__email_events_per_source_id_and_isp as S \ngroup by campaign_id\n \n),\n\nCampaign_data as (\n select * \n FROM Campaign_ISP as ISP inner join Campaign_IPpool as I on ISP.campaign_id = I.source_ID \n where number_IP_pools =1\n ) ------------------------------------- input)\n\n\n\nselect store_app_key, contact_card_name, campaign_id, ip_pool_name, campaign_date, store_on_boarding,\n\ntotal_sent as sent,\ntotal_delivered as delivered,\nround(100*total_open/total_delivered,3) as open_rate,\ncase when round(100*total_open/total_delivered,3) > 30 then '1.Good- More than 30% U.Open Rate'\n when round(100*total_open/total_delivered,3) > 20 then '2.Med- 20-30% U.Open Rate'\n when round(100*total_open/total_delivered,3) > 10 then '3.Low- 10-20% U.Open Rate'\n when total_sent > 0 and round(100*total_open/total_delivered,3) < 10 then '4.Bad- Less than 10%' else 'no audience' end as Open_engagement_level,\n\ncase when round(100*total_open/total_delivered,3) > 30 and round(100*total_click/total_delivered,3) > 0.8 then '1.Good Open and Good Click'\nwhen round(100*total_open/total_delivered,3) > 30 and round(100*total_click/total_delivered,3) < 0.8 then '2.Good Open and Bad Click'\n else '3.Else' end as Open_Click_level,\nround(100*total_click/total_delivered,3) as click_rate,\nround(100*total_soft_bounced/total_sent,3) as soft_bounced_rate,\nround(100*total_hard_bounced/total_sent,3) as hard_bounced_rate,\ntotal_unsubscribe,\n\ntotal_sent_gmail as sent_gmail,\ntotal_delivered_gmail as delivered_gmail,\nround(100*total_open_gmail/total_delivered_gmail,3) as open_rate_gmail,\ncase when round(100*total_open_gmail/total_delivered_gmail,3) > 30 then '1.Good- More than 30% U.Open Rate'\n when round(100*total_open_gmail/total_delivered_gmail,3) > 20 then '2.Med- 20-30% U.Open Rate'\n when round(100*total_open_gmail/total_delivered_gmail,3) > 10 then '3.Low- 10-20% U.Open Rate'\n when total_sent_gmail > 0 and round(100*total_open_gmail/total_delivered_gmail,3) < 10 then '4.Bad- Less than 10%' else 'no gmail audience' end as Open_engagement_level_gmail,\n\ncase when round(100*total_open_gmail/total_delivered_gmail,3) > 30 and round(100*total_click_gmail/total_delivered_gmail,3) > 0.8 then '1.Good Open and Good Click'\nwhen round(100*total_open_gmail/total_delivered_gmail,3) > 30 and round(100*total_click_gmail/total_delivered_gmail,3) < 0.8 then '2.Good Open and Bad Click'\n else '3.Else' end as Open_Click_level_gmail,\n\nround(100*total_click_gmail/total_delivered_gmail,3) as click_rate_gmail,\nround(100*total_soft_bounced_gmail/total_sent_gmail,3) as soft_bounced_rate_gmail,\nround(100*total_hard_bounced_gmail/total_sent_gmail,3) as hard_bounced_rate_gmail,\n\ntotal_sent_MSFT as sent_MSFT,\ntotal_delivered_MSFT as delivered_MSFT,\nround(100*total_open_MSFT/total_delivered_MSFT,3) as open_rate_MSFT,\ncase when round(100*total_open_MSFT/total_delivered_MSFT,3) > 30 then '1.Good- More than 30% U.Open Rate'\n when round(100*total_open_MSFT/total_delivered_MSFT,3) > 20 then '2.Med- 20-30% U.Open Rate'\n when round(100*total_open_MSFT/total_delivered_MSFT,3) > 10 then '3.Low- 10-20% U.Open Rate'\n when total_sent_MSFT > 0 and round(100*total_open_MSFT/total_delivered_MSFT,3) < 10 then '4.Bad- Less than 10%' else 'no MSFT audience' end as Open_engagement_level_MSFT,\nround(100*total_click_MSFT/total_delivered_MSFT,3) as click_rate_MSFT,\nround(100*total_soft_bounced_MSFT/total_sent_MSFT,3) as soft_bounced_rate_MSFT,\nround(100*total_hard_bounced_MSFT/total_delivered_MSFT,3) as hard_bounced_rate_MSFT,\nround(100*total_spam_MSFT/total_delivered_MSFT,3) as Spam_rate_MSFT,\n\n case when round(100*total_spam_MSFT/total_delivered_MSFT,3) > 0.2 then 'More than 0.2% reported as a spam %'\n else 'else' end as spam_level_MSFT,\n\n total_sent_Yahoo as sent_Yahoo,\n total_delivered_Yahoo as delivered_Yahoo,\nround(100*total_open_Yahoo/total_delivered_Yahoo,3) as open_rate_Yahoo,\ncase when round(100*total_open_yahoo/total_delivered_yahoo,3) > 30 then '1.Good- More than 30% U.Open Rate'\n when round(100*total_open_yahoo/total_delivered_yahoo,3) > 20 then '2.Med- 20-30% U.Open Rate'\n when round(100*total_open_yahoo/total_delivered_yahoo,3) > 10 then '3.Low- 10-20% U.Open Rate'\n when total_sent_yahoo > 0 and round(100*total_open_yahoo/total_delivered_yahoo,3) < 10 then '4.Bad- Less than 10%' else 'no yahoo audience' end as Open_engagement_level_yahoo,\n\nround(100*total_click_Yahoo/total_delivered_Yahoo,3) as click_rate_Yahoo,\nround(100*total_soft_bounced_Yahoo/total_sent_Yahoo,3) as soft_bounced_rate_Yahoo,\nround(100*total_hard_bounced_Yahoo/total_sent_Yahoo,3) as hard_bounced_rate_Yahoo,\nround(100*total_spam_Yahoo/total_delivered_Yahoo,3) as Spam_rate_Yahoo,\n\ncase when round(100*total_spam_Yahoo/total_delivered_Yahoo,3) > 0.2 then 'More than 0.2% reported as a spam %'\n else 'else' end as spam_level_Yahoo\n\n\nFROM Campaign_data \nwhere total_sent > 0", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email__email_failed_rejected_reasons": {"database": null, "schema": "dev_dkruh1", "name": "email__email_failed_rejected_reasons", "resource_type": "model", "package_name": "yoda", "path": "email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.sql", "original_file_path": "models/email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.sql", "unique_id": "model.yoda.email__email_failed_rejected_reasons", "fqn": ["yoda", "email", "marts", "email__email_failed_rejected_reasons", "email__email_failed_rejected_reasons"], "alias": "email__email_failed_rejected_reasons", "checksum": {"name": "sha256", "checksum": "c6743149384a2a2bde15a5d944f580222e4552f8f7fb83acca813966b3ab9ae0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "campaigns failures reasons", "columns": {"campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "event processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email_address": {"name": "email_address", "description": "contact email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feedback_code": {"name": "feedback_code", "description": "internal feedback code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_type": {"name": "event_type", "description": "events type rejected or failed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "error_message": {"name": "error_message", "description": "failure rejected error message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "materialized": "incremental", "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "incremental_strategy": "append"}, "created_at": 1700082667.7244105, "relation_name": "dev_dkruh1.email__email_failed_rejected_reasons", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append'\n )\n}}\n SELECT \n context_source_id as campaign_id, \n processing_time,\n email_address,\n feedback_code,\n event_type, \n error_message \n FROM {{ ref('email_stg__system_email_events')}}\n where \n event_type in ('FAILED', 'REJECTED', 'HARD_BOUNCE', 'SOFT_BOUNCE', 'DROPPED') \n and context_source_name='communication_campaigns'\n {% if is_incremental() %}\n and processing_time > (SELECT MAX(processing_time) FROM {{ this }})\n {% endif %}", "language": "sql", "refs": [{"name": "email_stg__system_email_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email_stg__system_email_events"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.sql", "compiled": true, "compiled_code": "\n SELECT \n context_source_id as campaign_id, \n processing_time,\n email_address,\n feedback_code,\n event_type, \n error_message \n FROM dev_dkruh1.email_stg__system_email_events\n where \n event_type in ('FAILED', 'REJECTED', 'HARD_BOUNCE', 'SOFT_BOUNCE', 'DROPPED') \n and context_source_name='communication_campaigns'\n ", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email_stg__authenticated_domain": {"database": null, "schema": "dev_dkruh1", "name": "email_stg__authenticated_domain", "resource_type": "model", "package_name": "yoda", "path": "email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.sql", "original_file_path": "models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.sql", "unique_id": "model.yoda.email_stg__authenticated_domain", "fqn": ["yoda", "email", "staging", "base", "email_stg__authenticated_domain", "email_stg__authenticated_domain"], "alias": "email_stg__authenticated_domain", "checksum": {"name": "sha256", "checksum": "0640ecba009a9e691cce3abf389237078196b2b2d50ec6602f4d126d73905a11"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "domain authentication table", "columns": {"authenticated_domain_id": {"name": "authenticated_domain_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "domain_name": {"name": "domain_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subdomain": {"name": "subdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "esp_domain_id": {"name": "esp_domain_id", "description": "the domain id on sendgrid side", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_status_id": {"name": "domain_status_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dns_records": {"name": "dns_records", "description": "list of domain cnames", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "meta": {"model_ownership": {"group": "emails", "team": "emails", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082667.8310041, "relation_name": "dev_dkruh1.email_stg__authenticated_domain", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('email__delivery', 'authenticated_domain') }}\n\n), email_stg__authenticated_domain AS (\n\n SELECT \n\t\tauthenticated_domain_id,\n\t\tprocessing_time,\n\t\tdomain_name,\n\t\tsubdomain,\n\t\tstore_id,\n\t\tproduct_id,\n\t\tesp_domain_id,\n\t\tdomain_status_id,\n\t\tdns_records\n FROM source\n\n)\n\nSELECT * \nFROM email_stg__authenticated_domain", "language": "sql", "refs": [], "sources": [["email__delivery", "authenticated_domain"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.email__delivery.authenticated_domain"]}, "compiled_path": "target/compiled/yoda/models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM delivery.authenticated_domain\n\n), email_stg__authenticated_domain AS (\n\n SELECT \n\t\tauthenticated_domain_id,\n\t\tprocessing_time,\n\t\tdomain_name,\n\t\tsubdomain,\n\t\tstore_id,\n\t\tproduct_id,\n\t\tesp_domain_id,\n\t\tdomain_status_id,\n\t\tdns_records\n FROM source\n\n)\n\nSELECT * \nFROM email_stg__authenticated_domain", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email_stg__campaign_events": {"database": null, "schema": "dev_dkruh1", "name": "email_stg__campaign_events", "resource_type": "model", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.sql", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.sql", "unique_id": "model.yoda.email_stg__campaign_events", "fqn": ["yoda", "email", "staging", "base", "email_stg__campaign_events", "email_stg__campaign_events"], "alias": "email_stg__campaign_events", "checksum": {"name": "sha256", "checksum": "37038a44fd66f0f84fa37202873b70f5b18a71f675454ddb43e147c7f7d44ea5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "erohana@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "email_stg__campaign_events", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "audiences": {"name": "audiences", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason": {"name": "reason", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channelsettings": {"name": "channelsettings", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "createdbyuserid": {"name": "createdbyuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "createddate": {"name": "createddate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isarchived": {"name": "isarchived", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastupdatebyuserid": {"name": "lastupdatebyuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastupdatedate": {"name": "lastupdatedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sendstrategies": {"name": "sendstrategies", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "execution_actualrecipients": {"name": "execution_actualrecipients", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_startdatetime": {"name": "execution_startdatetime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_totaldelivered": {"name": "execution_totaldelivered", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_totalfailed": {"name": "execution_totalfailed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_totalrecipients": {"name": "execution_totalrecipients", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_totalskipped": {"name": "execution_totalskipped", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "completiontime": {"name": "completiontime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_enddatetime": {"name": "execution_enddatetime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "substatusstate": {"name": "substatusstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "audiencesize": {"name": "audiencesize", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isdeleted": {"name": "isdeleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "statusdescription": {"name": "statusdescription", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isstopped": {"name": "isstopped", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "execution_totaldeliveredwhenstopped": {"name": "execution_totaldeliveredwhenstopped", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "erohana@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "erohana@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082667.8582172, "relation_name": "dev_dkruh1.email_stg__campaign_events", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('email__communication', 'campaign_events') }}\n\n), email_stg__campaign_events AS (\n\n SELECT \n\t\tid,\n\t\taudiences,\n\t\tname,\n\t\treason,\n\t\tstatus,\n\t\tchannelsettings,\n\t\tcreatedbyuserid,\n\t\tcreateddate,\n\t\tisarchived,\n\t\tlastupdatebyuserid,\n\t\tlastupdatedate,\n\t\tsendstrategies,\n\t\tstoreid,\n\t\texecution_actualrecipients,\n\t\texecution_startdatetime,\n\t\texecution_totaldelivered,\n\t\texecution_totalfailed,\n\t\texecution_totalrecipients,\n\t\texecution_totalskipped,\n\t\tcompletiontime,\n\t\texecution_enddatetime,\n\t\tsubstatusstate,\n\t\taudiencesize,\n\t\tisdeleted,\n\t\tstatusdescription,\n\t\tisstopped,\n\t\texecution_totaldeliveredwhenstopped\n FROM source\n\n)\n\nSELECT * \nFROM email_stg__campaign_events", "language": "sql", "refs": [], "sources": [["email__communication", "campaign_events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.email__communication.campaign_events"]}, "compiled_path": "target/compiled/yoda/models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM communication.campaign_events\n\n), email_stg__campaign_events AS (\n\n SELECT \n\t\tid,\n\t\taudiences,\n\t\tname,\n\t\treason,\n\t\tstatus,\n\t\tchannelsettings,\n\t\tcreatedbyuserid,\n\t\tcreateddate,\n\t\tisarchived,\n\t\tlastupdatebyuserid,\n\t\tlastupdatedate,\n\t\tsendstrategies,\n\t\tstoreid,\n\t\texecution_actualrecipients,\n\t\texecution_startdatetime,\n\t\texecution_totaldelivered,\n\t\texecution_totalfailed,\n\t\texecution_totalrecipients,\n\t\texecution_totalskipped,\n\t\tcompletiontime,\n\t\texecution_enddatetime,\n\t\tsubstatusstate,\n\t\taudiencesize,\n\t\tisdeleted,\n\t\tstatusdescription,\n\t\tisstopped,\n\t\texecution_totaldeliveredwhenstopped\n FROM source\n\n)\n\nSELECT * \nFROM email_stg__campaign_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email_stg__delivered_email": {"database": null, "schema": "dev_dkruh1", "name": "email_stg__delivered_email", "resource_type": "model", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.sql", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.sql", "unique_id": "model.yoda.email_stg__delivered_email", "fqn": ["yoda", "email", "staging", "base", "email_stg__delivered_email", "email_stg__delivered_email"], "alias": "email_stg__delivered_email", "checksum": {"name": "sha256", "checksum": "88d91fdb7d9b39df5559da25dc439531673037dbb75949d572502fad49e429bd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "delivered_email_id": {"name": "delivered_email_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email_address": {"name": "email_address", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provider_id": {"name": "provider_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reference_id": {"name": "reference_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_status_id": {"name": "delivery_status_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_name": {"name": "source_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_type_id": {"name": "delivery_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status_description": {"name": "status_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_user_name": {"name": "sub_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip_pool_name": {"name": "ip_pool_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hash_key": {"name": "hash_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subject": {"name": "subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_email": {"name": "from_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082667.8817425, "relation_name": "dev_dkruh1.email_stg__delivered_email", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('email__communication', 'delivered_email') }}\n\n), email_stg__delivered_email AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tdelivered_email_id,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_date,\n\t\temail_address,\n\t\tprovider_id,\n\t\treference_id,\n\t\tsource_id,\n\t\tdelivery_status_id,\n\t\tsource_name,\n\t\tdelivery_type_id,\n\t\tstatus_description,\n\t\tsub_user_name,\n\t\tip_pool_name,\n\t\thash_key,\n\t\tsubject,\n\t\tfrom_email\n FROM source\n\n)\n\nSELECT * \nFROM email_stg__delivered_email", "language": "sql", "refs": [], "sources": [["email__communication", "delivered_email"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.email__communication.delivered_email"]}, "compiled_path": "target/compiled/yoda/models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM communication.delivered_email\n\n), email_stg__delivered_email AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tdelivered_email_id,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_date,\n\t\temail_address,\n\t\tprovider_id,\n\t\treference_id,\n\t\tsource_id,\n\t\tdelivery_status_id,\n\t\tsource_name,\n\t\tdelivery_type_id,\n\t\tstatus_description,\n\t\tsub_user_name,\n\t\tip_pool_name,\n\t\thash_key,\n\t\tsubject,\n\t\tfrom_email\n FROM source\n\n)\n\nSELECT * \nFROM email_stg__delivered_email", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email_stg__source_engagement_level_dry_run": {"database": null, "schema": "dev_dkruh1", "name": "email_stg__source_engagement_level_dry_run", "resource_type": "model", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.sql", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.sql", "unique_id": "model.yoda.email_stg__source_engagement_level_dry_run", "fqn": ["yoda", "email", "staging", "base", "email_stg__source_engagement_level_dry_run", "email_stg__source_engagement_level_dry_run"], "alias": "email_stg__source_engagement_level_dry_run", "checksum": {"name": "sha256", "checksum": "3952b36dd7d8dd74c1878153666a7d3c8f01d717edd9cfd3164f5ecdc745c08a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "iftah.shimoni@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "This table described the engagement level for each campaign. the PK is campaign ID. The engagement level is based on the relative part of \nengaged recipients compare to the total sent.", "columns": {"partition_date": {"name": "partition_date", "description": "date of the processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "processing_time": {"name": "processing_time", "description": "campaign execution datetime", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "engaged_profiles_count": {"name": "engaged_profiles_count", "description": "Number of rec that where engaged in the last 60 days compare to the campaign execution date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "engagement_level": {"name": "engagement_level", "description": "Rank of the engagement level based on the number engaged_profilies/total_profiles_count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_timestamp": {"name": "event_timestamp", "description": "timestamp when the calculation have done- similar to email_stg__source_engagement_level_dry_run_processing_time in miliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feature_name": {"name": "feature_name", "description": "will be source_engagement_level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_profiles_count": {"name": "total_profiles_count", "description": "total sent according to the segments and list that chosen", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_version": {"name": "feature_version", "description": "track after the version of the feature. after every change it will increase by 1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_on_boarding": {"name": "store_on_boarding", "description": "if the store was onboarding when the campaign was executed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "iftah.shimoni@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "meta": {"model_ownership": {"group": "communication", "team": "apollos", "created_by": "iftah.shimoni@yotpo.com", "alert_channels": ["email-delivery-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082667.9009998, "relation_name": "dev_dkruh1.email_stg__source_engagement_level_dry_run", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('email__communication', 'source_engagement_level_dry_run') }}\n\n), email_stg__source_engagement_level_dry_run AS (\n\n SELECT \n\t\tpartition_date,\n\t\tprocessing_time,\n\t\tengaged_profiles_count,\n\t\tengagement_level,\n\t\tevent_timestamp,\n\t\tfeature_name,\n\t\tsource_id,\n\t\tstore_id,\n\t\ttotal_profiles_count,\n\t\tfeature_version,\n\t\tstore_on_boarding\n FROM source\n\n)\n\nSELECT * \nFROM email_stg__source_engagement_level_dry_run", "language": "sql", "refs": [], "sources": [["email__communication", "source_engagement_level_dry_run"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.email__communication.source_engagement_level_dry_run"]}, "compiled_path": "target/compiled/yoda/models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM communication.source_engagement_level_dry_run\n\n), email_stg__source_engagement_level_dry_run AS (\n\n SELECT \n\t\tpartition_date,\n\t\tprocessing_time,\n\t\tengaged_profiles_count,\n\t\tengagement_level,\n\t\tevent_timestamp,\n\t\tfeature_name,\n\t\tsource_id,\n\t\tstore_id,\n\t\ttotal_profiles_count,\n\t\tfeature_version,\n\t\tstore_on_boarding\n FROM source\n\n)\n\nSELECT * \nFROM email_stg__source_engagement_level_dry_run", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email_stg__system_email_events": {"database": null, "schema": "dev_dkruh1", "name": "email_stg__system_email_events", "resource_type": "model", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.sql", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.sql", "unique_id": "model.yoda.email_stg__system_email_events", "fqn": ["yoda", "email", "staging", "base", "email_stg__system_email_events", "email_stg__system_email_events"], "alias": "email_stg__system_email_events", "checksum": {"name": "sha256", "checksum": "5263a9a2b2e71d9d740285a36f9f07b55b426256f4db4b8b218aa81cd4016235"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "email_stg__system_email_events", "columns": {"processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "context_reference_id": {"name": "context_reference_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_store_id": {"name": "context_store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_source_id": {"name": "context_source_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_address": {"name": "email_address", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_source_name": {"name": "context_source_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_delivery_type": {"name": "context_delivery_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_issuer": {"name": "event_issuer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_type": {"name": "event_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "error_message": {"name": "error_message", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailbox_provider": {"name": "mailbox_provider", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_attributes_raw_event": {"name": "external_attributes_raw_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_attributes_external_event_id": {"name": "external_attributes_external_event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_data_ip": {"name": "delivery_data_ip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_data_esp": {"name": "delivery_data_esp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_ip": {"name": "engagement_data_ip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_is_bot_event": {"name": "engagement_data_is_bot_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_machine_mpp_open": {"name": "engagement_data_machine_mpp_open", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_click_url": {"name": "engagement_data_click_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_device_type": {"name": "engagement_data_user_agent_properties_device_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_device": {"name": "engagement_data_user_agent_properties_device", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_browser": {"name": "engagement_data_user_agent_properties_browser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_browser_version": {"name": "engagement_data_user_agent_properties_browser_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_os": {"name": "engagement_data_user_agent_properties_os", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_os_version": {"name": "engagement_data_user_agent_properties_os_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_user_agent_line": {"name": "engagement_data_user_agent_properties_user_agent_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "headers_is_replay": {"name": "headers_is_replay", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "headers_event_id": {"name": "headers_event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "headers_event_type": {"name": "headers_event_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "headers_time_sent": {"name": "headers_time_sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feedback_code": {"name": "feedback_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productname": {"name": "productname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "ip_pool_name": {"name": "ip_pool_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_user_name": {"name": "sub_user_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "meta": {"model_ownership": {"group": "communication", "team": "alphas", "created_by": "rbasis@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082667.9379528, "relation_name": "dev_dkruh1.email_stg__system_email_events", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('email__communication', 'system_email_events') }}\n\n), email_stg__system_email_events AS (\n\n SELECT \n\t\tprocessing_time,\n\t\tcontext_reference_id,\n\t\tcontext_store_id,\n\t\tcontext_source_id,\n\t\temail_address,\n\t\tcontext_source_name,\n\t\tcontext_delivery_type,\n\t\tevent_issuer,\n\t\tevent_type,\n\t\ttimestamp,\n\t\terror_message,\n\t\tmailbox_provider,\n\t\texternal_attributes_raw_event,\n\t\texternal_attributes_external_event_id,\n\t\tdelivery_data_ip,\n\t\tdelivery_data_esp,\n\t\tengagement_data_ip,\n\t\tengagement_data_is_bot_event,\n\t\tengagement_data_machine_mpp_open,\n\t\tengagement_data_click_url,\n\t\tengagement_data_user_agent_properties_device_type,\n\t\tengagement_data_user_agent_properties_device,\n\t\tengagement_data_user_agent_properties_browser,\n\t\tengagement_data_user_agent_properties_browser_version,\n\t\tengagement_data_user_agent_properties_os,\n\t\tengagement_data_user_agent_properties_os_version,\n\t\tengagement_data_user_agent_properties_user_agent_line,\n\t\theaders_is_replay,\n\t\theaders_event_id,\n\t\theaders_event_type,\n\t\theaders_time_sent,\n\t\tfeedback_code,\n\t\tproductname,\n\t\tpartition_date,\n\t\tip_pool_name,\n\t\tsub_user_name\n FROM source\n\n)\n\nSELECT * \nFROM email_stg__system_email_events", "language": "sql", "refs": [], "sources": [["email__communication", "system_email_events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.email__communication.system_email_events"]}, "compiled_path": "target/compiled/yoda/models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM communication.system_email_events\n\n), email_stg__system_email_events AS (\n\n SELECT \n\t\tprocessing_time,\n\t\tcontext_reference_id,\n\t\tcontext_store_id,\n\t\tcontext_source_id,\n\t\temail_address,\n\t\tcontext_source_name,\n\t\tcontext_delivery_type,\n\t\tevent_issuer,\n\t\tevent_type,\n\t\ttimestamp,\n\t\terror_message,\n\t\tmailbox_provider,\n\t\texternal_attributes_raw_event,\n\t\texternal_attributes_external_event_id,\n\t\tdelivery_data_ip,\n\t\tdelivery_data_esp,\n\t\tengagement_data_ip,\n\t\tengagement_data_is_bot_event,\n\t\tengagement_data_machine_mpp_open,\n\t\tengagement_data_click_url,\n\t\tengagement_data_user_agent_properties_device_type,\n\t\tengagement_data_user_agent_properties_device,\n\t\tengagement_data_user_agent_properties_browser,\n\t\tengagement_data_user_agent_properties_browser_version,\n\t\tengagement_data_user_agent_properties_os,\n\t\tengagement_data_user_agent_properties_os_version,\n\t\tengagement_data_user_agent_properties_user_agent_line,\n\t\theaders_is_replay,\n\t\theaders_event_id,\n\t\theaders_event_type,\n\t\theaders_time_sent,\n\t\tfeedback_code,\n\t\tproductname,\n\t\tpartition_date,\n\t\tip_pool_name,\n\t\tsub_user_name\n FROM source\n\n)\n\nSELECT * \nFROM email_stg__system_email_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email_stg__template_instance_events": {"database": null, "schema": "dev_dkruh1", "name": "email_stg__template_instance_events", "resource_type": "model", "package_name": "yoda", "path": "email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.sql", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.sql", "unique_id": "model.yoda.email_stg__template_instance_events", "fqn": ["yoda", "email", "staging", "base", "email_stg__template_instance_events", "email_stg__template_instance_events"], "alias": "email_stg__template_instance_events", "checksum": {"name": "sha256", "checksum": "25642fd1d7048ebd048f8731ef0904b61e56ff115d705224e8dc8c5a755355fe"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "yromem@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "unique template instance event\nthis layer will have one latest revision of the template instance (in DL we have all revisions)", "columns": {"processing_time": {"name": "processing_time", "description": "processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "source id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_name": {"name": "source_name", "description": "source name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "template_instance_id": {"name": "template_instance_id", "description": "template instance if", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metadata": {"name": "metadata", "description": "template instance metadata", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct>>>>"}, "blocks": {"name": "blocks", "description": "array of blocks of template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "partition_date": {"name": "partition_date", "description": "partition date (by date)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "yromem@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "yromem@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082667.9536846, "relation_name": "dev_dkruh1.email_stg__template_instance_events", "raw_code": "WITH source AS (\n SELECT processing_time,\n\t\t store_id,\n\t\t source_id,\n\t\t source_name,\n\t\t template_instance_id,\n\t\t metadata,\n\t\t metadata.blocks.blockName as blocks,\n\t\t partition_date \n FROM {{ source('email__communication', 'template_instance_events') }}\n),latest_template_instance AS (\n\tSELECT store_id, \n\t\ttemplate_instance_id, \n\t\tmax(processing_time) as latest \n\tFROM {{ source('email__communication', 'template_instance_events') }}\n\tGROUP BY store_id, template_instance_id\n)\nSELECT source.*\nFROM latest_template_instance\nINNER JOIN source\nON latest_template_instance.latest = source.processing_time\nAND latest_template_instance.template_instance_id = source.template_instance_id\nAND latest_template_instance.store_id = source.store_id", "language": "sql", "refs": [], "sources": [["email__communication", "template_instance_events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.email__communication.template_instance_events"]}, "compiled_path": "target/compiled/yoda/models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.sql", "compiled": true, "compiled_code": "WITH source AS (\n SELECT processing_time,\n\t\t store_id,\n\t\t source_id,\n\t\t source_name,\n\t\t template_instance_id,\n\t\t metadata,\n\t\t metadata.blocks.blockName as blocks,\n\t\t partition_date \n FROM communication.template_instance_events\n),latest_template_instance AS (\n\tSELECT store_id, \n\t\ttemplate_instance_id, \n\t\tmax(processing_time) as latest \n\tFROM communication.template_instance_events\n\tGROUP BY store_id, template_instance_id\n)\nSELECT source.*\nFROM latest_template_instance\nINNER JOIN source\nON latest_template_instance.latest = source.processing_time\nAND latest_template_instance.template_instance_id = source.template_instance_id\nAND latest_template_instance.store_id = source.store_id", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email_stg__emails_with_campaign_and_templates": {"database": null, "schema": "dev_dkruh1", "name": "email_stg__emails_with_campaign_and_templates", "resource_type": "model", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.sql", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.sql", "unique_id": "model.yoda.email_stg__emails_with_campaign_and_templates", "fqn": ["yoda", "email", "staging", "marts_compatible", "email_stg__emails_with_campaign_and_templates", "email_stg__emails_with_campaign_and_templates"], "alias": "email_stg__emails_with_campaign_and_templates", "checksum": {"name": "sha256", "checksum": "23d345f361c60da7e278ee92b0fc0c6136c3e660bb491d7747a61a7df2c60bd7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "emails events with campaign events and template", "columns": {"storeid": {"name": "storeid", "description": "store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "name": {"name": "name", "description": "campaign name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "event_type": {"name": "event_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "batchid": {"name": "batchid", "description": "batch id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "templateinstanceid": {"name": "templateinstanceid", "description": "template instance id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_address": {"name": "email_address", "description": "email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_reference_id": {"name": "email_reference_id", "description": "email reference id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "blocks": {"name": "blocks", "description": "array of all blocks in the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}}, "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082667.9830635, "relation_name": "dev_dkruh1.email_stg__emails_with_campaign_and_templates", "raw_code": "WITH campaign_template_instance AS (\n SELECT source_id, template_instance_id, first(blocks) as blocks\n FROM {{ ref('email_stg__template_instance_events') }}\n WHERE source_name = \"communication_campaigns\"\n GROUP BY source_id, template_instance_id\n), campaign_events_batches_null AS (\n SELECT storeid, id, name, status,\n null AS batchid, \n emailsettings_templateinstanceid AS templateinstanceid\n FROM {{ source('email__communication', 'campaign_events') }}\n WHERE batches IS NULL \n AND status == \"COMPLETED\"\n), campaign_events_batches_not_null AS (\n SELECT storeid, id, name, status,\n filtered_batch.batchid as batchid, \n filtered_batch.emailsettings_templateinstanceid as templateinstanceid\n FROM (\n SELECT storeid, id, name, status,\n EXPLODE(FILTER(batches, e -> e.batchid IS NOT NULL)) AS filtered_batch\n FROM {{ source('email__communication', 'campaign_events') }}\n WHERE batches is not null\n AND status == \"COMPLETED\"\n )\n), emails AS (\n SELECT DISTINCT email_address, context_store_id, context_source_id, context_reference_id, processing_time, campaignBatchId, event_type\n FROM {{ ref('email_stg__system_email_events_with_batch_id') }}\n WHERE context_source_name = 'communication_campaigns'\n), emails_with_campaign_events_batches_null AS (\n SELECT storeid, c.id as campaign_id, name,\n batchid, templateinstanceid, email_address, event_type,\n context_reference_id as email_reference_id, processing_time\n FROM campaign_events_batches_null c\n INNER JOIN emails e\n ON c.id = e.context_source_id\n), emails_with_campaign_events_batches_not_null AS (\n SELECT storeid, c.id as campaign_id, name,\n batchid, templateinstanceid, email_address, event_type,\n context_reference_id as email_reference_id, processing_time\n FROM campaign_events_batches_not_null c\n INNER JOIN emails e\n ON c.id = e.context_source_id\n AND c.batchid = e.campaignBatchId\n), union_emails_with_campaign AS (\n SELECT * FROM emails_with_campaign_events_batches_null\n UNION\n SELECT * FROM emails_with_campaign_events_batches_not_null\n)\n\nSELECT DISTINCT c.storeid, c.campaign_id, c.name, c.processing_time, c.event_type, c.batchid, c.templateinstanceid, \nc.email_address, c.email_reference_id, t.blocks\nFROM campaign_template_instance t\nINNER JOIN union_emails_with_campaign c\nON c.campaign_id = t.source_id \nAND c.templateinstanceid = t.template_instance_id", "language": "sql", "refs": [{"name": "email_stg__template_instance_events", "package": null, "version": null}, {"name": "email_stg__system_email_events_with_batch_id", "package": null, "version": null}], "sources": [["email__communication", "campaign_events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.email__communication.campaign_events", "model.yoda.email_stg__template_instance_events", "model.yoda.email_stg__system_email_events_with_batch_id"]}, "compiled_path": "target/compiled/yoda/models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.sql", "compiled": true, "compiled_code": "WITH campaign_template_instance AS (\n SELECT source_id, template_instance_id, first(blocks) as blocks\n FROM dev_dkruh1.email_stg__template_instance_events\n WHERE source_name = \"communication_campaigns\"\n GROUP BY source_id, template_instance_id\n), campaign_events_batches_null AS (\n SELECT storeid, id, name, status,\n null AS batchid, \n emailsettings_templateinstanceid AS templateinstanceid\n FROM communication.campaign_events\n WHERE batches IS NULL \n AND status == \"COMPLETED\"\n), campaign_events_batches_not_null AS (\n SELECT storeid, id, name, status,\n filtered_batch.batchid as batchid, \n filtered_batch.emailsettings_templateinstanceid as templateinstanceid\n FROM (\n SELECT storeid, id, name, status,\n EXPLODE(FILTER(batches, e -> e.batchid IS NOT NULL)) AS filtered_batch\n FROM communication.campaign_events\n WHERE batches is not null\n AND status == \"COMPLETED\"\n )\n), emails AS (\n SELECT DISTINCT email_address, context_store_id, context_source_id, context_reference_id, processing_time, campaignBatchId, event_type\n FROM dev_dkruh1.email_stg__system_email_events_with_batch_id\n WHERE context_source_name = 'communication_campaigns'\n), emails_with_campaign_events_batches_null AS (\n SELECT storeid, c.id as campaign_id, name,\n batchid, templateinstanceid, email_address, event_type,\n context_reference_id as email_reference_id, processing_time\n FROM campaign_events_batches_null c\n INNER JOIN emails e\n ON c.id = e.context_source_id\n), emails_with_campaign_events_batches_not_null AS (\n SELECT storeid, c.id as campaign_id, name,\n batchid, templateinstanceid, email_address, event_type,\n context_reference_id as email_reference_id, processing_time\n FROM campaign_events_batches_not_null c\n INNER JOIN emails e\n ON c.id = e.context_source_id\n AND c.batchid = e.campaignBatchId\n), union_emails_with_campaign AS (\n SELECT * FROM emails_with_campaign_events_batches_null\n UNION\n SELECT * FROM emails_with_campaign_events_batches_not_null\n)\n\nSELECT DISTINCT c.storeid, c.campaign_id, c.name, c.processing_time, c.event_type, c.batchid, c.templateinstanceid, \nc.email_address, c.email_reference_id, t.blocks\nFROM campaign_template_instance t\nINNER JOIN union_emails_with_campaign c\nON c.campaign_id = t.source_id \nAND c.templateinstanceid = t.template_instance_id", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.email_stg__system_email_events_with_batch_id": {"database": null, "schema": "dev_dkruh1", "name": "email_stg__system_email_events_with_batch_id", "resource_type": "model", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.sql", "original_file_path": "models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.sql", "unique_id": "model.yoda.email_stg__system_email_events_with_batch_id", "fqn": ["yoda", "email", "staging", "marts_compatible", "email_stg__system_email_events_with_batch_id", "email_stg__system_email_events_with_batch_id"], "alias": "email_stg__system_email_events_with_batch_id", "checksum": {"name": "sha256", "checksum": "a0b037e6de5977a3f66682e43083b0e47c238389765feca3f867e0329b806c61"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["email", "email"], "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["email"], "description": "system email events with extracted batch id for each email", "columns": {"email_address": {"name": "email_address", "description": "email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_store_id": {"name": "context_store_id", "description": "store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_source_id": {"name": "context_source_id", "description": "campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_source_name": {"name": "context_source_name", "description": "email campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_reference_id": {"name": "context_reference_id", "description": "unique id represents the email and campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "event_type": {"name": "event_type", "description": "event type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "client_attributes": {"name": "client_attributes", "description": "client attributes which holds the batch id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "campaignBatchId": {"name": "campaignBatchId", "description": "the batch id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["email"], "meta": {"model_ownership": {"group": "emails", "team": "hera", "created_by": "amit@yotpo.com", "alert_channels": ["email-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082667.9992933, "relation_name": "dev_dkruh1.email_stg__system_email_events_with_batch_id", "raw_code": "WITH unique_events_per_type AS (\n SELECT email_address, \n context_store_id, \n context_source_id, \n context_source_name, \n context_reference_id,\n event_type,\n first(processing_time) AS processing_time,\n first(client_attributes) AS client_attributes\n FROM {{ source('email__communication', 'system_email_events') }}\n GROUP BY email_address, context_store_id, context_source_id, context_source_name, context_reference_id, event_type\n), system_email_events_batches_null AS (\n SELECT email_address, \n context_store_id, \n context_source_id, \n context_source_name, \n context_reference_id,\n processing_time,\n event_type, \n client_attributes,\n null as campaignBatchId\n FROM unique_events_per_type\n WHERE (client_attributes is null\n OR map_from_entries(client_attributes)[\"campaignBatchId\"] is null) \n), system_email_batches_not_null AS (\n SELECT email_address, \n context_store_id, \n context_source_id, \n context_source_name, \n context_reference_id, \n processing_time,\n event_type, \n client_attributes,\n map_from_entries(client_attributes)[\"campaignBatchId\"] campaignBatchId\n FROM unique_events_per_type\n WHERE client_attributes is not null\n AND map_from_entries(client_attributes)[\"campaignBatchId\"] is not null\n)\n\nSELECT * FROM system_email_events_batches_null\nUNION\nSELECT * FROM system_email_batches_not_null", "language": "sql", "refs": [], "sources": [["email__communication", "system_email_events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.email__communication.system_email_events"]}, "compiled_path": "target/compiled/yoda/models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.sql", "compiled": true, "compiled_code": "WITH unique_events_per_type AS (\n SELECT email_address, \n context_store_id, \n context_source_id, \n context_source_name, \n context_reference_id,\n event_type,\n first(processing_time) AS processing_time,\n first(client_attributes) AS client_attributes\n FROM communication.system_email_events\n GROUP BY email_address, context_store_id, context_source_id, context_source_name, context_reference_id, event_type\n), system_email_events_batches_null AS (\n SELECT email_address, \n context_store_id, \n context_source_id, \n context_source_name, \n context_reference_id,\n processing_time,\n event_type, \n client_attributes,\n null as campaignBatchId\n FROM unique_events_per_type\n WHERE (client_attributes is null\n OR map_from_entries(client_attributes)[\"campaignBatchId\"] is null) \n), system_email_batches_not_null AS (\n SELECT email_address, \n context_store_id, \n context_source_id, \n context_source_name, \n context_reference_id, \n processing_time,\n event_type, \n client_attributes,\n map_from_entries(client_attributes)[\"campaignBatchId\"] campaignBatchId\n FROM unique_events_per_type\n WHERE client_attributes is not null\n AND map_from_entries(client_attributes)[\"campaignBatchId\"] is not null\n)\n\nSELECT * FROM system_email_events_batches_null\nUNION\nSELECT * FROM system_email_batches_not_null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__aws_cost_overview": {"database": null, "schema": "dev_dkruh1", "name": "infra__aws_cost_overview", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.sql", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.sql", "unique_id": "model.yoda.infra__aws_cost_overview", "fqn": ["yoda", "infra", "marts", "infra__aws_cost_overview", "infra__aws_cost_overview"], "alias": "infra__aws_cost_overview", "checksum": {"name": "sha256", "checksum": "330af97deb86bee2fca9a37b672cef6daafc1eeab54a2cf4e9c9b9ff2eaf8a3d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "AWS Products Cost Overview", "columns": {"billing_period": {"name": "billing_period", "description": "Billing start period (monthly)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "Billing start time (daily)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_usage_account_id": {"name": "line_item_usage_account_id", "description": "AWS Account ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "Account name (manually)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_billing_entity": {"name": "bill_billing_entity", "description": "AWS Billing Entity (AWS / AWS Marketplace)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "Either AWS product name or market place name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_environment": {"name": "resource_tags_user_environment", "description": "Custom tag for environment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "AWS line item type (Charge/Tax/Credit/etc.)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "Product family (Storage/Snapshot/etc)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_component": {"name": "resource_tags_user_component", "description": "Custom tag for component", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "User defined group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "User defined team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "User defined feature", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "Unblended cost (includes the discounts in a single period and not across the period it was given)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "Amortized cost equals usage plus the portion of upfront fees applicable to the period (both used and unused)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "table", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082668.3245673, "relation_name": "dev_dkruh1.infra__aws_cost_overview", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'))\n}}\nWITH aws_overview AS (\n SELECT\n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n line_item_usage_account_id,\n {{ resolve_account('line_item_usage_account_id') }} AS account_name,\n bill_billing_entity,\n product_name, \n resource_tags_user_environment,\n line_item_line_item_type,\n product_line,\n product_product_family,\n resource_tags_user_component,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost\n FROM \n {{ ref('infra_stg__aws_payer_billing_report_raw') }}\n WHERE \n bill_billing_period_start_date >= '2022-01-01 00:00:00'\n GROUP BY \n billing_period,\n bill_start_date,\n line_item_usage_account_id,\n bill_billing_entity,\n product_name,\n resource_tags_user_environment,\n line_item_line_item_type,\n product_line,\n product_product_family,\n resource_tags_user_component,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n)\n\nSELECT * FROM aws_overview", "language": "sql", "refs": [{"name": "infra_stg__aws_payer_billing_report_raw", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.resolve_account", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__aws_payer_billing_report_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH aws_overview AS (\n SELECT\n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n line_item_usage_account_id,\n \nCASE \n WHEN line_item_usage_account_id = '402837048690' THEN 'Yotpo Ltd'\n WHEN line_item_usage_account_id = '140980321741' THEN 'Omri Cohen (Support+RI+MP)'\n WHEN line_item_usage_account_id = '368297226064' THEN 'SMSBump'\n WHEN line_item_usage_account_id = '067361735412' THEN 'AWS QA (Staging)'\n WHEN line_item_usage_account_id = '237698446327' THEN 'Yotpo IT'\n ELSE ''\nEND\n AS account_name,\n bill_billing_entity,\n product_name, \n resource_tags_user_environment,\n line_item_line_item_type,\n product_line,\n product_product_family,\n resource_tags_user_component,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost\n FROM \n dev_dkruh1.infra_stg__aws_payer_billing_report_raw\n WHERE \n bill_billing_period_start_date >= '2022-01-01 00:00:00'\n GROUP BY \n billing_period,\n bill_start_date,\n line_item_usage_account_id,\n bill_billing_entity,\n product_name,\n resource_tags_user_environment,\n line_item_line_item_type,\n product_line,\n product_product_family,\n resource_tags_user_component,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n)\n\nSELECT * FROM aws_overview", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__canary_data_model": {"database": null, "schema": "dev_dkruh1", "name": "infra__canary_data_model", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__canary_data_model/infra__canary_data_model.sql", "original_file_path": "models/infra/marts/infra__canary_data_model/infra__canary_data_model.sql", "unique_id": "model.yoda.infra__canary_data_model", "fqn": ["yoda", "infra", "marts", "infra__canary_data_model", "infra__canary_data_model"], "alias": "infra__canary_data_model", "checksum": {"name": "sha256", "checksum": "851be857f19263fab4bef4fe2fbf49ae57a684480969b2d9197d61b2ca77663d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koala", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-e2e-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Modle used to check airflow end to end", "columns": {"app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daily_metric": {"name": "daily_metric", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koala", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-e2e-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__canary_data_model/infra__canary_data_model.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koala", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-e2e-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082668.3363261, "relation_name": "dev_dkruh1.infra__canary_data_model", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH staging AS (\n SELECT \"1\" as app_key,\n 50 as daily_metric\n union all\n SELECT \"2\" as app_key,\n 55 as daily_metric\n union all\n SELECT \"3\" as app_key,\n 57 as daily_metric\n), canary_data AS (\n SELECT app_key,\n daily_metric\n FROM staging\n\n)\n\nSELECT * FROM canary_data", "language": "sql", "refs": [], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": []}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__canary_data_model/infra__canary_data_model.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH staging AS (\n SELECT \"1\" as app_key,\n 50 as daily_metric\n union all\n SELECT \"2\" as app_key,\n 55 as daily_metric\n union all\n SELECT \"3\" as app_key,\n 57 as daily_metric\n), canary_data AS (\n SELECT app_key,\n daily_metric\n FROM staging\n\n)\n\nSELECT * FROM canary_data", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__canary_segment_model_profile": {"database": null, "schema": "dev_dkruh1", "name": "infra__canary_segment_model_profile", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.sql", "original_file_path": "models/infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.sql", "unique_id": "model.yoda.infra__canary_segment_model_profile", "fqn": ["yoda", "infra", "marts", "infra__canary_segment_model_profile", "infra__canary_segment_model_profile"], "alias": "infra__canary_segment_model_profile", "checksum": {"name": "sha256", "checksum": "d50d9a34ff69ed0e33b5e8ccd64809332645ade68bc5eb3c13ba43f56a284fdc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra", "yoda_segment"], "meta": {"model_ownership": {"group": "data-group", "team": "koala", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-e2e-alerts"]}, "integration_config": {"segment": {"trigger_on_done": true, "properties": {"write_key_hint": "yoda-e2e"}}}, "primary-key": "userId", "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra", "yoda_segment"], "description": "A canary model to test segment integration", "columns": {"userId": {"name": "userId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daily_metric": {"name": "daily_metric", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koala", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-e2e-alerts"]}, "integration_config": {"segment": {"trigger_on_done": true, "properties": {"write_key_hint": "yoda-e2e"}}}, "primary-key": "userId", "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra", "yoda_segment"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koala", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-e2e-alerts"]}, "integration_config": {"segment": {"trigger_on_done": true, "properties": {"write_key_hint": "yoda-e2e"}}}, "primary-key": "userId", "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082668.3589156, "relation_name": "dev_dkruh1.infra__canary_segment_model_profile", "raw_code": "{{ dbt_data_applications.profile(\n sources=[\n { \n 'source': ref('infra__canary_data_model'), \n 'fields': ['daily_metric'], \n 'foreign_key_mappings': {'app_key': 'userId'}\n }\n ],\n keys=['userId']\n) }}", "language": "sql", "refs": [{"name": "infra__canary_data_model", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.profile", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__canary_data_model"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.sql", "compiled": true, "compiled_code": "WITH sources_union AS (\n \n\n (\n select\n\n cast('dev_dkruh1.infra__canary_data_model' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.infra__canary_data_model\n )\n\n \n )\n , sources_union_grouped AS (\n SELECT sources_union.userId as userId\n , MAX(sources_union.daily_metric) as daily_metric\n \n FROM sources_union \n GROUP BY sources_union.userId)\n\n\n SELECT userId\n , daily_metric\n \n FROM sources_union_grouped \n\n \n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__canary_snowflake_model": {"database": null, "schema": "dev_dkruh1", "name": "infra__canary_snowflake_model", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__canary_snowflake_model/infra__canary_snowflake_model.sql", "original_file_path": "models/infra/marts/infra__canary_snowflake_model/infra__canary_snowflake_model.sql", "unique_id": "model.yoda.infra__canary_snowflake_model", "fqn": ["yoda", "infra", "marts", "infra__canary_snowflake_model", "infra__canary_snowflake_model"], "alias": "infra__canary_snowflake_model", "checksum": {"name": "sha256", "checksum": "6f3877ef99734bbba7465bb01e3ae855c02853b536257ae49ff6c1751e915710"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra", "yoda_snowflake"], "meta": {"model_ownership": {"group": "data-group", "team": "koala", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-e2e-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "yoda_canary_model", "database": "YOTPO", "schema": "DEV", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra", "yoda_snowflake"], "description": "Yoda Canary snowflake test model", "columns": {"app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daily_metric": {"name": "daily_metric", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koala", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-e2e-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "yoda_canary_model", "database": "YOTPO", "schema": "DEV", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__canary_snowflake_model/infra__canary_snowflake_model.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "data-group", "team": "koala", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-e2e-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "yoda_canary_model", "database": "YOTPO", "schema": "DEV", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082668.3850403, "relation_name": "dev_dkruh1.infra__canary_snowflake_model", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('infra__canary_data_model') }}\n\n), canary_snowflake_model AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(daily_metric as int)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM canary_snowflake_model", "language": "sql", "refs": [{"name": "infra__canary_data_model", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__canary_data_model"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__canary_snowflake_model/infra__canary_snowflake_model.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.infra__canary_data_model\n\n), canary_snowflake_model AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(daily_metric as int)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM canary_snowflake_model", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__contracts_burn_estimations": {"database": null, "schema": "dev_dkruh1", "name": "infra__contracts_burn_estimations", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.sql", "unique_id": "model.yoda.infra__contracts_burn_estimations", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_estimations", "infra__contracts_burn_estimations"], "alias": "infra__contracts_burn_estimations", "checksum": {"name": "sha256", "checksum": "9f88e68ed4a2cbf57df80b313c3b280a2e4529cb6111332d0781edd01e366db8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Burn rate estimations", "columns": {"avg_spent_last_30_days": {"name": "avg_spent_last_30_days", "description": "Average burn rate in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_processed_date": {"name": "last_processed_date", "description": "Last processed date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "yearly_budget": {"name": "yearly_budget", "description": "Yearly budget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(13,3)"}, "budget_left": {"name": "budget_left", "description": "Budget left", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_until_end_of_contract": {"name": "days_until_end_of_contract", "description": "Days until the end of the contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "estimated_days_until_end_of_contract": {"name": "estimated_days_until_end_of_contract", "description": "Estimated days until the end of contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "start_date": {"name": "start_date", "description": "Contract start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "end_date": {"name": "end_date", "description": "Contract end date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vendor": {"name": "vendor", "description": "Vendor name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "speculate_budget_left_at_end_of_contract": {"name": "speculate_budget_left_at_end_of_contract", "description": "Estimated budget left on the last day of the contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "estimated_end_date": {"name": "estimated_end_date", "description": "Estimated contract end date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "view", "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082668.4023488, "relation_name": "dev_dkruh1.infra__contracts_burn_estimations", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view'))\n}}\n\n{{\n vendor_budget_estimations(\n contracts_table = 'infra__contracts_burn_status', \n contracts = [\n { \n 'vendor' : 'rivery'\n },\n { \n 'vendor' : 'databricks'\n },\n { \n 'vendor' : 'snowflake'\n }\n ])\n}}", "language": "sql", "refs": [{"name": "infra__contracts_burn_status", "package": null, "version": null}, {"name": "infra__contracts_burn_status", "package": null, "version": null}, {"name": "infra__contracts_burn_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.vendor_budget_estimations", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__contracts_burn_status", "model.yoda.infra__contracts_burn_status", "model.yoda.infra__contracts_burn_status"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.sql", "compiled": true, "compiled_code": "\n\n\n\nWITH rivery_budget AS (\n SELECT \n avg_spent_last_30_days,\n last_processed_date,\n yearly_budget,\n yearly_budget - cumulative_cost_with_current_month AS budget_left,\n DATEDIFF(day, last_processed_date, end_date) AS days_until_end_of_contract,\n INT((yearly_budget - cumulative_cost_with_current_month)/avg_spent_last_30_days) AS estimated_days_until_end_of_contract,\n start_date,\n end_date,\n vendor\n FROM \n dev_dkruh1.infra__contracts_burn_status\n WHERE \n (is_current_month = TRUE OR (date(end_date) < now() AND month(date(end_date)) = month(date)))\n AND vendor = 'rivery'\n), rivery_speculative_budget AS (\n SELECT\n *,\n budget_left - days_until_end_of_contract * avg_spent_last_30_days AS speculate_budget_left_at_end_of_contract,\n date_add(now(), estimated_days_until_end_of_contract) AS estimated_end_date\n FROM\n rivery_budget\n) , databricks_budget AS (\n SELECT \n avg_spent_last_30_days,\n last_processed_date,\n yearly_budget,\n yearly_budget - cumulative_cost_with_current_month AS budget_left,\n DATEDIFF(day, last_processed_date, end_date) AS days_until_end_of_contract,\n INT((yearly_budget - cumulative_cost_with_current_month)/avg_spent_last_30_days) AS estimated_days_until_end_of_contract,\n start_date,\n end_date,\n vendor\n FROM \n dev_dkruh1.infra__contracts_burn_status\n WHERE \n (is_current_month = TRUE OR (date(end_date) < now() AND month(date(end_date)) = month(date)))\n AND vendor = 'databricks'\n), databricks_speculative_budget AS (\n SELECT\n *,\n budget_left - days_until_end_of_contract * avg_spent_last_30_days AS speculate_budget_left_at_end_of_contract,\n date_add(now(), estimated_days_until_end_of_contract) AS estimated_end_date\n FROM\n databricks_budget\n) , snowflake_budget AS (\n SELECT \n avg_spent_last_30_days,\n last_processed_date,\n yearly_budget,\n yearly_budget - cumulative_cost_with_current_month AS budget_left,\n DATEDIFF(day, last_processed_date, end_date) AS days_until_end_of_contract,\n INT((yearly_budget - cumulative_cost_with_current_month)/avg_spent_last_30_days) AS estimated_days_until_end_of_contract,\n start_date,\n end_date,\n vendor\n FROM \n dev_dkruh1.infra__contracts_burn_status\n WHERE \n (is_current_month = TRUE OR (date(end_date) < now() AND month(date(end_date)) = month(date)))\n AND vendor = 'snowflake'\n), snowflake_speculative_budget AS (\n SELECT\n *,\n budget_left - days_until_end_of_contract * avg_spent_last_30_days AS speculate_budget_left_at_end_of_contract,\n date_add(now(), estimated_days_until_end_of_contract) AS estimated_end_date\n FROM\n snowflake_budget\n) SELECT *\n FROM rivery_speculative_budget\n \n UNION ALL\n SELECT *\n FROM databricks_speculative_budget\n \n UNION ALL\n SELECT *\n FROM snowflake_speculative_budget\n ", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__contracts_burn_status": {"database": null, "schema": "dev_dkruh1", "name": "infra__contracts_burn_status", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.sql", "unique_id": "model.yoda.infra__contracts_burn_status", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_status", "infra__contracts_burn_status"], "alias": "infra__contracts_burn_status", "checksum": {"name": "sha256", "checksum": "97f2606ae1d9fb8bf50edd3d9465e9345354f7f1c2233167475811b36e6018ac"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Table containing SAAS vendor burn status", "columns": {"date": {"name": "date", "description": "Contract start time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "year": {"name": "year", "description": "Year of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "days_in_month": {"name": "days_in_month", "description": "Amount of paid days for the given month (if the contract starts at the last day of the month, it will include only a single day)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "months_count": {"name": "months_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_count": {"name": "days_count", "description": "Cumulative days passed from the begining of the contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "start_date": {"name": "start_date", "description": "Contract start time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "end_date": {"name": "end_date", "description": "Contract end date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vendor": {"name": "vendor", "description": "Vendor (Snowflake/Databricks/Rivery/...)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yearly_budget": {"name": "yearly_budget", "description": "Contract budget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(13,3)"}, "num_months": {"name": "num_months", "description": "Number of months for the contract (end - start)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "num_days": {"name": "num_days", "description": "Number of days for the contract (end - start)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "prev_monthly_days_count": {"name": "prev_monthly_days_count", "description": "Cumulative days from previous month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_left_with_current_momth": {"name": "days_left_with_current_momth", "description": "Days left until the end of the contract including passed days from the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_months_count": {"name": "total_months_count", "description": "Cumulative months count until current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "months_left": {"name": "months_left", "description": "How many months left until the end of the contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_past_month": {"name": "is_past_month", "description": "Is month passed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_current_month": {"name": "is_current_month", "description": "Is current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_future_month": {"name": "is_future_month", "description": "Is future month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "monthly_cost": {"name": "monthly_cost", "description": "Monthly cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "prev_monthly_cost": {"name": "prev_monthly_cost", "description": "Previously monthly cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_closed": {"name": "is_closed", "description": "Whether the month is closed (passed)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "burn_rate_with_estimations": {"name": "burn_rate_with_estimations", "description": "Historical burn + estimated future burn rate (based on the past 30 days)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cumulative_cost_without_current_month": {"name": "cumulative_cost_without_current_month", "description": "Cumulative cost without the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cumulative_cost_with_current_month": {"name": "cumulative_cost_with_current_month", "description": "Cumulative cost with the current month (even if not closed)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cumulative_estimated_cost_with_current_month": {"name": "cumulative_estimated_cost_with_current_month", "description": "Cumulative cost with the current month and esmiation until the end of the contract, based on the past 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_spent_last_30_days": {"name": "avg_spent_last_30_days", "description": "Avarage spent in the past 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_processed_date": {"name": "last_processed_date", "description": "Last day included in the cost aggregations", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "avg_spent_current_month": {"name": "avg_spent_current_month", "description": "Avarage spent from the begining of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082668.4676497, "relation_name": "dev_dkruh1.infra__contracts_burn_status", "raw_code": "{{\n vendor_budget_aggregations(\n contracts_table = 'infra__vendor_contracts',\n contracts = [\n { \n 'vendor' : 'rivery',\n 'cost_table' : 'infra__rivery_daily_usage',\n 'cost_column' :'cost'\n },\n { \n 'vendor' : 'databricks',\n 'cost_table' : 'infra__databricks_costs',\n 'cost_column' :'databricks_cost'\n },\n { \n 'vendor' : 'snowflake',\n 'cost_table' : 'infra__snowflake_cost',\n 'cost_column' : 'cost'\n }\n ])\n}}", "language": "sql", "refs": [{"name": "infra__vendor_contracts", "package": null, "version": null}, {"name": "infra__rivery_daily_usage", "package": null, "version": null}, {"name": "infra__rivery_daily_usage", "package": null, "version": null}, {"name": "infra__vendor_contracts", "package": null, "version": null}, {"name": "infra__databricks_costs", "package": null, "version": null}, {"name": "infra__databricks_costs", "package": null, "version": null}, {"name": "infra__vendor_contracts", "package": null, "version": null}, {"name": "infra__snowflake_cost", "package": null, "version": null}, {"name": "infra__snowflake_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.vendor_budget_aggregations", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__vendor_contracts", "model.yoda.infra__rivery_daily_usage", "model.yoda.infra__rivery_daily_usage", "model.yoda.infra__vendor_contracts", "model.yoda.infra__databricks_costs", "model.yoda.infra__databricks_costs", "model.yoda.infra__vendor_contracts", "model.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.sql", "compiled": true, "compiled_code": "\n\nWITH rivery_contract_info AS (\n SELECT\n start_date,\n end_date,\n vendor,\n yearly_budget,\n CAST(MONTHS_BETWEEN(\n DATE_FORMAT(end_date, 'yyyy-MM-01'),\n DATE_FORMAT(start_date, 'yyyy-MM-01')) AS INT) \n AS num_months,\n DATEDIFF(day, start_date, end_date) AS num_days\n FROM \n dev_dkruh1.infra__vendor_contracts\n WHERE\n vendor = 'rivery'\n), rivery_months AS (\n SELECT\n MAKE_DATE(YEAR(ADD_MONTHS(d.start_date, t.s)),MONTH(ADD_MONTHS(d.start_date, t.s)), 1) AS date,\n YEAR(ADD_MONTHS(d.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(d.start_date, t.s)) AS month,\n CASE \n WHEN t.s = 0 THEN DAY(LAST_DAY(d.start_date)) - DAY(d.start_date)\n WHEN t.s = d.num_months THEN DAY(d.end_date)\n ELSE DAY(LAST_DAY(ADD_MONTHS(d.start_date, s)))\n END AS days_in_month\n FROM \n rivery_contract_info AS d\n CROSS JOIN (SELECT EXPLODE(sequence(0, num_months)) AS s, num_months FROM rivery_contract_info) t\n), rivery_months_with_statistics AS (\n SELECT *, \n SUM(1) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS months_count,\n SUM(days_in_month) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS days_count\n FROM rivery_months\n), rivery_months_with_statistics_with_previous AS (\nSELECT *,\n COALESCE(LAG(days_count) OVER (ORDER BY date), 0) AS prev_monthly_days_count,\n seq.num_days - days_count + days_in_month AS days_left_with_current_momth,\n Max(months_count) OVER () AS total_months_count,\n Max(months_count) OVER () - months_count + 1 AS months_left,\n make_date(year,month,1) < make_date(year(now()),month(now()),1) AS is_past_month,\n make_date(year,month,1) = make_date(year(now()),month(now()),1) AS is_current_month,\n make_date(year,month,1) > make_date(year(now()),month(now()),1) AS is_future_month\nFROM rivery_months_with_statistics, rivery_contract_info as seq\n), rivery_avg_burt AS (\n SELECT\n SUM( cost ) / DATEDIFF(day, ADD_MONTHS(now(), -1) , now()) as avg_spent_last_30_days,\n MAX(date) AS last_processed_date\n FROM \n dev_dkruh1.infra__rivery_daily_usage\n WHERE \n date between ADD_MONTHS(now(), -1) AND now() \n), rivery_burn AS (\n SELECT \n make_date(year(date), month(date), 1) as date,\n SUM( cost ) as monthly_cost\n FROM \n dev_dkruh1.infra__rivery_daily_usage, rivery_contract_info as d\n WHERE\n date BETWEEN d.start_date AND d.end_date\n GROUP BY \n 1\n ), rivery_cost_and_months AS (\n SELECT \n m.*,\n coalesce(b.monthly_cost, 0) as monthly_cost,\n COALESCE(LAG(monthly_cost) OVER (ORDER BY m.date), 0) AS prev_monthly_cost,\n IFF(is_past_month, FALSE, TRUE) as is_closed,\n CASE \n WHEN is_past_month THEN monthly_cost\n WHEN is_current_month THEN monthly_cost + (days_in_month - day(now())) * a.avg_spent_last_30_days\n ELSE days_in_month * a.avg_spent_last_30_days\n END AS burn_rate_with_estimations\n FROM rivery_months_with_statistics_with_previous m, rivery_contract_info, rivery_avg_burt as a\n LEFT JOIN rivery_burn as b\n ON b.date = m.date \n), rivery_prepare_for_forcast AS (\n SELECT \n *,\n SUM(prev_monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_without_current_month,\n SUM(monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_with_current_month,\n SUM(burn_rate_with_estimations) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_estimated_cost_with_current_month\n FROM \n rivery_cost_and_months\n), rivery_agg_data AS (\n SELECT\n p.*,\n a.*,\n CASE \n WHEN is_past_month THEN monthly_cost/days_in_month\n WHEN is_current_month THEN monthly_cost/\n IFF (months_count == 1,\n day(now()) - datediff(day, make_date(year,month,days_in_month), make_date(year,month,DAY(LAST_DAY(a.last_processed_date)))),\n day(now())\n )\n ELSE 0 END\n AS avg_spent_current_month\n FROM rivery_prepare_for_forcast p, rivery_avg_burt as a\n) , databricks_contract_info AS (\n SELECT\n start_date,\n end_date,\n vendor,\n yearly_budget,\n CAST(MONTHS_BETWEEN(\n DATE_FORMAT(end_date, 'yyyy-MM-01'),\n DATE_FORMAT(start_date, 'yyyy-MM-01')) AS INT) \n AS num_months,\n DATEDIFF(day, start_date, end_date) AS num_days\n FROM \n dev_dkruh1.infra__vendor_contracts\n WHERE\n vendor = 'databricks'\n), databricks_months AS (\n SELECT\n MAKE_DATE(YEAR(ADD_MONTHS(d.start_date, t.s)),MONTH(ADD_MONTHS(d.start_date, t.s)), 1) AS date,\n YEAR(ADD_MONTHS(d.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(d.start_date, t.s)) AS month,\n CASE \n WHEN t.s = 0 THEN DAY(LAST_DAY(d.start_date)) - DAY(d.start_date)\n WHEN t.s = d.num_months THEN DAY(d.end_date)\n ELSE DAY(LAST_DAY(ADD_MONTHS(d.start_date, s)))\n END AS days_in_month\n FROM \n databricks_contract_info AS d\n CROSS JOIN (SELECT EXPLODE(sequence(0, num_months)) AS s, num_months FROM databricks_contract_info) t\n), databricks_months_with_statistics AS (\n SELECT *, \n SUM(1) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS months_count,\n SUM(days_in_month) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS days_count\n FROM databricks_months\n), databricks_months_with_statistics_with_previous AS (\nSELECT *,\n COALESCE(LAG(days_count) OVER (ORDER BY date), 0) AS prev_monthly_days_count,\n seq.num_days - days_count + days_in_month AS days_left_with_current_momth,\n Max(months_count) OVER () AS total_months_count,\n Max(months_count) OVER () - months_count + 1 AS months_left,\n make_date(year,month,1) < make_date(year(now()),month(now()),1) AS is_past_month,\n make_date(year,month,1) = make_date(year(now()),month(now()),1) AS is_current_month,\n make_date(year,month,1) > make_date(year(now()),month(now()),1) AS is_future_month\nFROM databricks_months_with_statistics, databricks_contract_info as seq\n), databricks_avg_burt AS (\n SELECT\n SUM( databricks_cost ) / DATEDIFF(day, ADD_MONTHS(now(), -1) , now()) as avg_spent_last_30_days,\n MAX(date) AS last_processed_date\n FROM \n dev_dkruh1.infra__databricks_costs\n WHERE \n date between ADD_MONTHS(now(), -1) AND now() \n), databricks_burn AS (\n SELECT \n make_date(year(date), month(date), 1) as date,\n SUM( databricks_cost ) as monthly_cost\n FROM \n dev_dkruh1.infra__databricks_costs, databricks_contract_info as d\n WHERE\n date BETWEEN d.start_date AND d.end_date\n GROUP BY \n 1\n ), databricks_cost_and_months AS (\n SELECT \n m.*,\n coalesce(b.monthly_cost, 0) as monthly_cost,\n COALESCE(LAG(monthly_cost) OVER (ORDER BY m.date), 0) AS prev_monthly_cost,\n IFF(is_past_month, FALSE, TRUE) as is_closed,\n CASE \n WHEN is_past_month THEN monthly_cost\n WHEN is_current_month THEN monthly_cost + (days_in_month - day(now())) * a.avg_spent_last_30_days\n ELSE days_in_month * a.avg_spent_last_30_days\n END AS burn_rate_with_estimations\n FROM databricks_months_with_statistics_with_previous m, databricks_contract_info, databricks_avg_burt as a\n LEFT JOIN databricks_burn as b\n ON b.date = m.date \n), databricks_prepare_for_forcast AS (\n SELECT \n *,\n SUM(prev_monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_without_current_month,\n SUM(monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_with_current_month,\n SUM(burn_rate_with_estimations) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_estimated_cost_with_current_month\n FROM \n databricks_cost_and_months\n), databricks_agg_data AS (\n SELECT\n p.*,\n a.*,\n CASE \n WHEN is_past_month THEN monthly_cost/days_in_month\n WHEN is_current_month THEN monthly_cost/\n IFF (months_count == 1,\n day(now()) - datediff(day, make_date(year,month,days_in_month), make_date(year,month,DAY(LAST_DAY(a.last_processed_date)))),\n day(now())\n )\n ELSE 0 END\n AS avg_spent_current_month\n FROM databricks_prepare_for_forcast p, databricks_avg_burt as a\n) , snowflake_contract_info AS (\n SELECT\n start_date,\n end_date,\n vendor,\n yearly_budget,\n CAST(MONTHS_BETWEEN(\n DATE_FORMAT(end_date, 'yyyy-MM-01'),\n DATE_FORMAT(start_date, 'yyyy-MM-01')) AS INT) \n AS num_months,\n DATEDIFF(day, start_date, end_date) AS num_days\n FROM \n dev_dkruh1.infra__vendor_contracts\n WHERE\n vendor = 'snowflake'\n), snowflake_months AS (\n SELECT\n MAKE_DATE(YEAR(ADD_MONTHS(d.start_date, t.s)),MONTH(ADD_MONTHS(d.start_date, t.s)), 1) AS date,\n YEAR(ADD_MONTHS(d.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(d.start_date, t.s)) AS month,\n CASE \n WHEN t.s = 0 THEN DAY(LAST_DAY(d.start_date)) - DAY(d.start_date)\n WHEN t.s = d.num_months THEN DAY(d.end_date)\n ELSE DAY(LAST_DAY(ADD_MONTHS(d.start_date, s)))\n END AS days_in_month\n FROM \n snowflake_contract_info AS d\n CROSS JOIN (SELECT EXPLODE(sequence(0, num_months)) AS s, num_months FROM snowflake_contract_info) t\n), snowflake_months_with_statistics AS (\n SELECT *, \n SUM(1) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS months_count,\n SUM(days_in_month) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS days_count\n FROM snowflake_months\n), snowflake_months_with_statistics_with_previous AS (\nSELECT *,\n COALESCE(LAG(days_count) OVER (ORDER BY date), 0) AS prev_monthly_days_count,\n seq.num_days - days_count + days_in_month AS days_left_with_current_momth,\n Max(months_count) OVER () AS total_months_count,\n Max(months_count) OVER () - months_count + 1 AS months_left,\n make_date(year,month,1) < make_date(year(now()),month(now()),1) AS is_past_month,\n make_date(year,month,1) = make_date(year(now()),month(now()),1) AS is_current_month,\n make_date(year,month,1) > make_date(year(now()),month(now()),1) AS is_future_month\nFROM snowflake_months_with_statistics, snowflake_contract_info as seq\n), snowflake_avg_burt AS (\n SELECT\n SUM( cost ) / DATEDIFF(day, ADD_MONTHS(now(), -1) , now()) as avg_spent_last_30_days,\n MAX(date) AS last_processed_date\n FROM \n dev_dkruh1.infra__snowflake_cost\n WHERE \n date between ADD_MONTHS(now(), -1) AND now() \n), snowflake_burn AS (\n SELECT \n make_date(year(date), month(date), 1) as date,\n SUM( cost ) as monthly_cost\n FROM \n dev_dkruh1.infra__snowflake_cost, snowflake_contract_info as d\n WHERE\n date BETWEEN d.start_date AND d.end_date\n GROUP BY \n 1\n ), snowflake_cost_and_months AS (\n SELECT \n m.*,\n coalesce(b.monthly_cost, 0) as monthly_cost,\n COALESCE(LAG(monthly_cost) OVER (ORDER BY m.date), 0) AS prev_monthly_cost,\n IFF(is_past_month, FALSE, TRUE) as is_closed,\n CASE \n WHEN is_past_month THEN monthly_cost\n WHEN is_current_month THEN monthly_cost + (days_in_month - day(now())) * a.avg_spent_last_30_days\n ELSE days_in_month * a.avg_spent_last_30_days\n END AS burn_rate_with_estimations\n FROM snowflake_months_with_statistics_with_previous m, snowflake_contract_info, snowflake_avg_burt as a\n LEFT JOIN snowflake_burn as b\n ON b.date = m.date \n), snowflake_prepare_for_forcast AS (\n SELECT \n *,\n SUM(prev_monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_without_current_month,\n SUM(monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_with_current_month,\n SUM(burn_rate_with_estimations) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_estimated_cost_with_current_month\n FROM \n snowflake_cost_and_months\n), snowflake_agg_data AS (\n SELECT\n p.*,\n a.*,\n CASE \n WHEN is_past_month THEN monthly_cost/days_in_month\n WHEN is_current_month THEN monthly_cost/\n IFF (months_count == 1,\n day(now()) - datediff(day, make_date(year,month,days_in_month), make_date(year,month,DAY(LAST_DAY(a.last_processed_date)))),\n day(now())\n )\n ELSE 0 END\n AS avg_spent_current_month\n FROM snowflake_prepare_for_forcast p, snowflake_avg_burt as a\n) SELECT *\n FROM rivery_agg_data\n \n UNION ALL\n SELECT *\n FROM databricks_agg_data\n \n UNION ALL\n SELECT *\n FROM snowflake_agg_data\n ", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__cost_budget": {"database": null, "schema": "dev_dkruh1", "name": "infra__cost_budget", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__cost_budget/infra__cost_budget.sql", "original_file_path": "models/infra/marts/infra__cost_budget/infra__cost_budget.sql", "unique_id": "model.yoda.infra__cost_budget", "fqn": ["yoda", "infra", "marts", "infra__cost_budget", "infra__cost_budget"], "alias": "infra__cost_budget", "checksum": {"name": "sha256", "checksum": "c826f0b789cfabbbb3496f9cf7bd2f3e4f0d5c64443c0bec79a0543c7a54792d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Budget for all product lines", "columns": {"product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group": {"name": "group", "description": "Group name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "Team name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daily_budget": {"name": "daily_budget", "description": "Daily budget per product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_updated": {"name": "last_updated", "description": "The date of the latest change", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__cost_budget/infra__cost_budget.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "view", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082668.511881, "relation_name": "dev_dkruh1.infra__cost_budget", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view'),\n )\n}}\n\nWITH budget AS (\n SELECT \n group,\n\t\tteam,\n product_line,\n budget as daily_budget, \n updated_at,\n MAX(updated_at) OVER (PARTITION BY team) AS updated_date\n FROM \n {{ ref('infra_stg__team_budget') }} \n), latest_view AS (\n SELECT \n product_line,\n group,\n\t\tteam,\n daily_budget, \n updated_at as last_updated\n FROM \n budget\n WHERE \n updated_date = updated_at\n)\n\nSELECT \n product_line,\n group,\n team,\n daily_budget, \n last_updated\nFROM latest_view", "language": "sql", "refs": [{"name": "infra_stg__team_budget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__team_budget"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__cost_budget/infra__cost_budget.sql", "compiled": true, "compiled_code": "\n\nWITH budget AS (\n SELECT \n group,\n\t\tteam,\n product_line,\n budget as daily_budget, \n updated_at,\n MAX(updated_at) OVER (PARTITION BY team) AS updated_date\n FROM \n dev_dkruh1.infra_stg__team_budget \n), latest_view AS (\n SELECT \n product_line,\n group,\n\t\tteam,\n daily_budget, \n updated_at as last_updated\n FROM \n budget\n WHERE \n updated_date = updated_at\n)\n\nSELECT \n product_line,\n group,\n team,\n daily_budget, \n last_updated\nFROM latest_view", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__databricks_costs": {"database": null, "schema": "dev_dkruh1", "name": "infra__databricks_costs", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.sql", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.sql", "unique_id": "model.yoda.infra__databricks_costs", "fqn": ["yoda", "infra", "marts", "infra__databricks_costs", "infra__databricks_costs"], "alias": "infra__databricks_costs", "checksum": {"name": "sha256", "checksum": "76622cec3a9f69ce3f93872e54e911917fbb2396eb10819936b5c187fbdfb7e2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "infra__databricks_costs", "columns": {"date": {"name": "date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "instance_type": {"name": "instance_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "instance_count": {"name": "instance_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dbus": {"name": "dbus", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "machineHours": {"name": "machineHours", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "databricks_cost": {"name": "databricks_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "aws_cost": {"name": "aws_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_product_family": {"name": "product_product_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_photon": {"name": "is_photon", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clusterName": {"name": "clusterName", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "component": {"name": "component", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "availability_zones": {"name": "availability_zones", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__databricks_costs/infra__databricks_costs.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "incremental", "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082668.5349054, "relation_name": "dev_dkruh1.infra__databricks_costs", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=[\"date\"]\n )\n}}\n\nWITH \ndatabricks_cost AS (\n SELECT * \n FROM {{ ref('infra_stg__databricks_cost_raw') }}\n {% if is_incremental() %}\n WHERE \n timestamp > (SELECT CASE WHEN MAX(date) IS NOT NULL THEN MAX(date) ELSE date('2022-08-01') END FROM {{ this }}) \n {% endif %}\n), \nec2_cost AS (\n SELECT * \n FROM {{ ref('infra_stg__aws_payer_billing_report_raw') }}\n {% if is_incremental() %}\n WHERE \n year in (SELECT distinct year(date(timestamp)) FROM databricks_cost) AND\n month in (SELECT distinct month(date(timestamp)) FROM databricks_cost) AND\n date(line_item_usage_start_date) in (SELECT distinct timestamp FROM databricks_cost)\n {% endif %}\n),\ndatabricks_w_tags AS (\n SELECT\n clusterName,\n CASE\n WHEN get_json_object(clusterCustomTags, '$.cluster-name') = 'Yoda-Job' OR get_json_object(clusterCustomTags, '$.cluster_name') = 'Yoda-Job' THEN 'Yoda-Job'\n WHEN (clusterName IS NULL OR clusterName = '') AND sku = 'PREMIUM_SQL_COMPUTE' AND get_json_object(clusterCustomTags, '$.name') IS NOT NULL THEN get_json_object(clusterCustomTags, '$.name')\n WHEN (clusterName IS NULL OR clusterName = '') AND sku = 'PREMIUM_SQL_COMPUTE' THEN 'untagged_sql_endpoint' \n WHEN get_json_object(tags, '$.RunName') IS NOT NULL THEN get_json_object(tags, '$.RunName')\n ELSE clusterName\n END AS name,\n CASE \n WHEN get_json_object(clusterCustomTags, '$.cluster-name') = 'Yoda-Job' OR get_json_object(clusterCustomTags, '$.cluster_name') = 'Yoda-Job' THEN get_json_object(tags, '$.RunName')\n WHEN get_json_object(clusterCustomTags, '$.Model-Serving-Cluster') = 'True' THEN 'mlflow'\n WHEN get_json_object(tags, '$.RunName') IS NOT NULL AND get_json_object(tags, '$.RunName') LIKE '%upsolver%' = 'True' THEN 'upsolver'\n WHEN get_json_object(tags, '$.RunName') IS NOT NULL AND get_json_object(tags, '$.RunName') LIKE '%Unomi%' = 'True' THEN 'Unomi'\n ELSE 'untagged'\n END AS component, \n timestamp,\n CASE \n WHEN clusterNodeType LIKE 'db.%' THEN 'i3.2xlarge' ELSE clusterNodeType \n END AS clusterNodeType,\n CASE \n WHEN get_json_object(clusterCustomTags, '$.product-line') IS NOT NULL THEN get_json_object(clusterCustomTags, '$.product-line')\n WHEN get_json_object(clusterCustomTags, '$.product_line') IS NOT NULL THEN get_json_object(clusterCustomTags, '$.product_line')\n WHEN get_json_object(clusterCustomTags, '$.product_line') IS NOT NULL THEN get_json_object(clusterCustomTags, '$.productLine')\n WHEN get_json_object(clusterCustomTags, '$.Model-Serving-Cluster') = 'True' THEN 'platform'\n ELSE\n 'untagged'\n END AS product_line,\n clusterCustomTags,\n tags,\n sku,\n dbus,\n machineHours,\n CASE WHEN sku LIKE '%PHOTON%' THEN 1 ELSE 0 END AS is_photon,\n CASE WHEN clusterNodeType LIKE '%g.%' THEN 1 ELSE 0 END AS is_graviton,\n CASE \n WHEN sku LIKE '%_JOBS_%' THEN 'job'\n WHEN sku LIKE '%_ALL_%' THEN 'cluster'\n WHEN sku LIKE '%_SQL_%' THEN 'sql'\n ELSE 'unknown'\n END AS type,\n CASE \n WHEN sku = 'PREMIUM_JOBS_COMPUTE' THEN dbus * 0.15*(1-0.33) \n WHEN sku = 'PREMIUM_JOBS_COMPUTE_(PHOTON)' THEN dbus * 0.15*(1-0.33)\n WHEN sku = 'PREMIUM_ALL_PURPOSE_COMPUTE' THEN dbus * 0.55*(1-0.67)\n WHEN sku = 'PREMIUM_ALL_PURPOSE_COMPUTE_(PHOTON)' THEN dbus*0.55*(1-0.67)\n WHEN sku = 'PREMIUM_SQL_COMPUTE' THEN dbus*0.22*(1-0.30)\n ELSE dbus * 0.18 END \n AS cost\n FROM databricks_cost\n WHERE timestamp >= '2022-08-01'\n), \ndatabricks_w_tags_w_daily_cost AS (\n SELECT \n *,\n SUM(machineHours) OVER(PARTITION BY timestamp, name, product_line, clusterNodeType) AS daily_dbus\n FROM databricks_w_tags\n), \ndb_grouped AS (\n SELECT \n timestamp AS date, \n name, \n clusterNodeType AS instance_type, \n clusterName,\n component,\n product_line, \n sku,\n type,\n FIRST(daily_dbus) as daily_machineHours_per_type,\n SUM(cost) AS cost,\n SUM(dbus) AS dbus, \n SUM(machineHours) AS machineHours, \n SUM(is_photon) > 0 AS is_photon, \n SUM(is_graviton) > 0 AS is_graviton \n FROM \n databricks_w_tags_w_daily_cost\n GROUP BY \n date, \n name, \n instance_type, \n product_line,\n clusterName,\n component,\n sku,\n type\n), \nec2 AS (\n SELECT \n LEFT(line_item_usage_start_date,10) AS date, \n line_item_resource_id, \n product_product_family, \n resource_tags_user_cluster_name, \n resource_tags_user_product_line, \n pricing_term,\n TRIM(concat_ws(' ', array_distinct(collect_list(case when product_availability_zone = 'NA' then line_item_availability_zone else product_availability_zone end)))) as product_availability_zone,\n product_instance_type as instance_type,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS cost\n FROM \n ec2_cost\n WHERE \n LEFT(line_item_usage_start_date,10) >= '2022-08-01' AND \n LOWER(resource_tags_user_component)='databricks' \n GROUP BY \n date, \n line_item_resource_id, \n product_product_family, \n resource_tags_user_cluster_name, \n resource_tags_user_product_line, \n pricing_term,\n product_instance_type,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n), \nec2_with_jobs AS (\n SELECT \n date, \n CASE \n WHEN resource_tags_user_cluster_name = '' AND ((instance_type = 'r5dn.2xlarge' AND pricing_term = 'Spot') OR (instance_type = 'm5d.2xlarge' AND pricing_term = 'OnDemand')) THEN 'Yoda-Job' \n WHEN resource_tags_user_cluster_name = '' THEN 'untagged_job'\n ELSE resource_tags_user_cluster_name \n END AS name,\n instance_type, \n product_product_family, \n TRIM(concat_ws(' ', array_distinct(array_sort(collect_list(pricing_term))))) as pricing_term,\n SUM(cost) AS cost,\n SUM(CASE WHEN product_product_family = 'Compute Instance' THEN 1 ELSE 0 END) AS instance_count,\n resource_tags_user_product_line AS product_line,\n TRIM(concat_ws(' ', array_distinct(array_sort(collect_list(product_availability_zone))))) AS availability_zones,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n ec2\n GROUP BY \n date, \n product_line, \n name,\n instance_type, \n product_product_family,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n HAVING cost > 0\n), \ndb_with_aws AS (\n SELECT \n COALESCE(db_grouped.date, ec2_with_jobs.date) AS date,\n COALESCE(db_grouped.name, ec2_with_jobs.name) AS name,\n COALESCE(db_grouped.product_line, ec2_with_jobs.product_line) AS product_line,\n COALESCE(db_grouped.instance_type, ec2_with_jobs.instance_type) AS instance_type,\n instance_count,\n dbus,\n machineHours,\n db_grouped.cost AS databricks_cost,\n CASE \n WHEN product_product_family='Compute Instance' THEN ec2_with_jobs.cost * (machineHours/daily_machineHours_per_type) \n ELSE ec2_with_jobs.cost \n END AS aws_cost,\n pricing_term,\n product_product_family, \n sku,\n is_graviton,\n is_photon,\n type,\n clusterName,\n component, \n availability_zones,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n db_grouped \n FULL JOIN ec2_with_jobs\n ON \n db_grouped.date = ec2_with_jobs.date AND \n db_grouped.product_line = ec2_with_jobs.product_line AND \n db_grouped.instance_type = ec2_with_jobs.instance_type AND \n db_grouped.name = ec2_with_jobs.name\n)\nSELECT \n date(date),\n name,\n CASE \n WHEN product_line = 'bp' THEN 'bi'\n WHEN product_line = 'sms' THEN 'communication'\n WHEN product_line like 'yoda_e2e%' THEN 'data'\n ELSE product_line\n END AS product_line,\n instance_type,\n instance_count,\n dbus,\n machineHours,\n databricks_cost,\n aws_cost,\n product_product_family, \n pricing_term,\n sku,\n is_photon,\n type,\n clusterName,\n component,\n availability_zones,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\nFROM db_with_aws", "language": "sql", "refs": [{"name": "infra_stg__databricks_cost_raw", "package": null, "version": null}, {"name": "infra_stg__aws_payer_billing_report_raw", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__databricks_cost_raw", "model.yoda.infra_stg__aws_payer_billing_report_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__databricks_costs/infra__databricks_costs.sql", "compiled": true, "compiled_code": "\n\nWITH \ndatabricks_cost AS (\n SELECT * \n FROM dev_dkruh1.infra_stg__databricks_cost_raw\n \n), \nec2_cost AS (\n SELECT * \n FROM dev_dkruh1.infra_stg__aws_payer_billing_report_raw\n \n),\ndatabricks_w_tags AS (\n SELECT\n clusterName,\n CASE\n WHEN get_json_object(clusterCustomTags, '$.cluster-name') = 'Yoda-Job' OR get_json_object(clusterCustomTags, '$.cluster_name') = 'Yoda-Job' THEN 'Yoda-Job'\n WHEN (clusterName IS NULL OR clusterName = '') AND sku = 'PREMIUM_SQL_COMPUTE' AND get_json_object(clusterCustomTags, '$.name') IS NOT NULL THEN get_json_object(clusterCustomTags, '$.name')\n WHEN (clusterName IS NULL OR clusterName = '') AND sku = 'PREMIUM_SQL_COMPUTE' THEN 'untagged_sql_endpoint' \n WHEN get_json_object(tags, '$.RunName') IS NOT NULL THEN get_json_object(tags, '$.RunName')\n ELSE clusterName\n END AS name,\n CASE \n WHEN get_json_object(clusterCustomTags, '$.cluster-name') = 'Yoda-Job' OR get_json_object(clusterCustomTags, '$.cluster_name') = 'Yoda-Job' THEN get_json_object(tags, '$.RunName')\n WHEN get_json_object(clusterCustomTags, '$.Model-Serving-Cluster') = 'True' THEN 'mlflow'\n WHEN get_json_object(tags, '$.RunName') IS NOT NULL AND get_json_object(tags, '$.RunName') LIKE '%upsolver%' = 'True' THEN 'upsolver'\n WHEN get_json_object(tags, '$.RunName') IS NOT NULL AND get_json_object(tags, '$.RunName') LIKE '%Unomi%' = 'True' THEN 'Unomi'\n ELSE 'untagged'\n END AS component, \n timestamp,\n CASE \n WHEN clusterNodeType LIKE 'db.%' THEN 'i3.2xlarge' ELSE clusterNodeType \n END AS clusterNodeType,\n CASE \n WHEN get_json_object(clusterCustomTags, '$.product-line') IS NOT NULL THEN get_json_object(clusterCustomTags, '$.product-line')\n WHEN get_json_object(clusterCustomTags, '$.product_line') IS NOT NULL THEN get_json_object(clusterCustomTags, '$.product_line')\n WHEN get_json_object(clusterCustomTags, '$.product_line') IS NOT NULL THEN get_json_object(clusterCustomTags, '$.productLine')\n WHEN get_json_object(clusterCustomTags, '$.Model-Serving-Cluster') = 'True' THEN 'platform'\n ELSE\n 'untagged'\n END AS product_line,\n clusterCustomTags,\n tags,\n sku,\n dbus,\n machineHours,\n CASE WHEN sku LIKE '%PHOTON%' THEN 1 ELSE 0 END AS is_photon,\n CASE WHEN clusterNodeType LIKE '%g.%' THEN 1 ELSE 0 END AS is_graviton,\n CASE \n WHEN sku LIKE '%_JOBS_%' THEN 'job'\n WHEN sku LIKE '%_ALL_%' THEN 'cluster'\n WHEN sku LIKE '%_SQL_%' THEN 'sql'\n ELSE 'unknown'\n END AS type,\n CASE \n WHEN sku = 'PREMIUM_JOBS_COMPUTE' THEN dbus * 0.15*(1-0.33) \n WHEN sku = 'PREMIUM_JOBS_COMPUTE_(PHOTON)' THEN dbus * 0.15*(1-0.33)\n WHEN sku = 'PREMIUM_ALL_PURPOSE_COMPUTE' THEN dbus * 0.55*(1-0.67)\n WHEN sku = 'PREMIUM_ALL_PURPOSE_COMPUTE_(PHOTON)' THEN dbus*0.55*(1-0.67)\n WHEN sku = 'PREMIUM_SQL_COMPUTE' THEN dbus*0.22*(1-0.30)\n ELSE dbus * 0.18 END \n AS cost\n FROM databricks_cost\n WHERE timestamp >= '2022-08-01'\n), \ndatabricks_w_tags_w_daily_cost AS (\n SELECT \n *,\n SUM(machineHours) OVER(PARTITION BY timestamp, name, product_line, clusterNodeType) AS daily_dbus\n FROM databricks_w_tags\n), \ndb_grouped AS (\n SELECT \n timestamp AS date, \n name, \n clusterNodeType AS instance_type, \n clusterName,\n component,\n product_line, \n sku,\n type,\n FIRST(daily_dbus) as daily_machineHours_per_type,\n SUM(cost) AS cost,\n SUM(dbus) AS dbus, \n SUM(machineHours) AS machineHours, \n SUM(is_photon) > 0 AS is_photon, \n SUM(is_graviton) > 0 AS is_graviton \n FROM \n databricks_w_tags_w_daily_cost\n GROUP BY \n date, \n name, \n instance_type, \n product_line,\n clusterName,\n component,\n sku,\n type\n), \nec2 AS (\n SELECT \n LEFT(line_item_usage_start_date,10) AS date, \n line_item_resource_id, \n product_product_family, \n resource_tags_user_cluster_name, \n resource_tags_user_product_line, \n pricing_term,\n TRIM(concat_ws(' ', array_distinct(collect_list(case when product_availability_zone = 'NA' then line_item_availability_zone else product_availability_zone end)))) as product_availability_zone,\n product_instance_type as instance_type,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS cost\n FROM \n ec2_cost\n WHERE \n LEFT(line_item_usage_start_date,10) >= '2022-08-01' AND \n LOWER(resource_tags_user_component)='databricks' \n GROUP BY \n date, \n line_item_resource_id, \n product_product_family, \n resource_tags_user_cluster_name, \n resource_tags_user_product_line, \n pricing_term,\n product_instance_type,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n), \nec2_with_jobs AS (\n SELECT \n date, \n CASE \n WHEN resource_tags_user_cluster_name = '' AND ((instance_type = 'r5dn.2xlarge' AND pricing_term = 'Spot') OR (instance_type = 'm5d.2xlarge' AND pricing_term = 'OnDemand')) THEN 'Yoda-Job' \n WHEN resource_tags_user_cluster_name = '' THEN 'untagged_job'\n ELSE resource_tags_user_cluster_name \n END AS name,\n instance_type, \n product_product_family, \n TRIM(concat_ws(' ', array_distinct(array_sort(collect_list(pricing_term))))) as pricing_term,\n SUM(cost) AS cost,\n SUM(CASE WHEN product_product_family = 'Compute Instance' THEN 1 ELSE 0 END) AS instance_count,\n resource_tags_user_product_line AS product_line,\n TRIM(concat_ws(' ', array_distinct(array_sort(collect_list(product_availability_zone))))) AS availability_zones,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n ec2\n GROUP BY \n date, \n product_line, \n name,\n instance_type, \n product_product_family,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n HAVING cost > 0\n), \ndb_with_aws AS (\n SELECT \n COALESCE(db_grouped.date, ec2_with_jobs.date) AS date,\n COALESCE(db_grouped.name, ec2_with_jobs.name) AS name,\n COALESCE(db_grouped.product_line, ec2_with_jobs.product_line) AS product_line,\n COALESCE(db_grouped.instance_type, ec2_with_jobs.instance_type) AS instance_type,\n instance_count,\n dbus,\n machineHours,\n db_grouped.cost AS databricks_cost,\n CASE \n WHEN product_product_family='Compute Instance' THEN ec2_with_jobs.cost * (machineHours/daily_machineHours_per_type) \n ELSE ec2_with_jobs.cost \n END AS aws_cost,\n pricing_term,\n product_product_family, \n sku,\n is_graviton,\n is_photon,\n type,\n clusterName,\n component, \n availability_zones,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n db_grouped \n FULL JOIN ec2_with_jobs\n ON \n db_grouped.date = ec2_with_jobs.date AND \n db_grouped.product_line = ec2_with_jobs.product_line AND \n db_grouped.instance_type = ec2_with_jobs.instance_type AND \n db_grouped.name = ec2_with_jobs.name\n)\nSELECT \n date(date),\n name,\n CASE \n WHEN product_line = 'bp' THEN 'bi'\n WHEN product_line = 'sms' THEN 'communication'\n WHEN product_line like 'yoda_e2e%' THEN 'data'\n ELSE product_line\n END AS product_line,\n instance_type,\n instance_count,\n dbus,\n machineHours,\n databricks_cost,\n aws_cost,\n product_product_family, \n pricing_term,\n sku,\n is_photon,\n type,\n clusterName,\n component,\n availability_zones,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\nFROM db_with_aws", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__ec2_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__ec2_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.sql", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.sql", "unique_id": "model.yoda.infra__ec2_cost", "fqn": ["yoda", "infra", "marts", "infra__ec2_cost", "infra__ec2_cost"], "alias": "infra__ec2_cost", "checksum": {"name": "sha256", "checksum": "6b6e719becd8aa84f56254cb82c33793e96b73f251a37506060197d5afd6a1b9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "View which combines both hot and cold for a unified view of EC2 costs. we use hot/cold because the data is constalty updated", "columns": {"billing_period": {"name": "billing_period", "description": "Billing start period (monthly)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "Billing start time (daily)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "Account ID (identical to line_item_usage_account_id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "AWS account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "Product line attached to the ec2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "Cost type (Credit, Usage, Tax)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "Type of the charged service (Storage, Compute, etc)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "AWS Region", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "On demand, spot or reserved", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type": {"name": "product_instance_type", "description": "Instance type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_component": {"name": "resource_tags_user_sub_component", "description": "Custom tag for sub component", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_component": {"name": "resource_tags_user_component", "description": "Custom tag for component", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_environment": {"name": "resource_tags_user_environment", "description": "Custom tag for environment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "Unblended cost (includes the discounts in a single period and not across the period it was given)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "Amortized cost equals usage plus the portion of upfront fees applicable to the period (both used and unused)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "User tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "Team tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ags": {"name": "ags", "description": "Auto-Scaling Group (typo)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_managed_by_cast_ai": {"name": "is_managed_by_cast_ai", "description": "Whether the EC2 is managed by Cast.AI", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__ec2_cost/infra__ec2_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "view", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082668.559856, "relation_name": "dev_dkruh1.infra__ec2_cost", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('view'),\n )\n}}\nWITH ec2_cost_cold AS (\n SELECT \n billing_period, \n bill_start_date, \n bill_payer_account_id,\n account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n ags,\n is_managed_by_cast_ai\n FROM \n {{ ref('infra__ec2_cost_cold') }}\n), ec2_cost_hot AS (\n SELECT \n billing_period, \n bill_start_date, \n bill_payer_account_id,\n account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n ags,\n is_managed_by_cast_ai\n FROM \n {{ ref('infra__ec2_cost_hot') }}\n), ec2_unioned_cost AS (\n SELECT *\n FROM ec2_cost_cold \n UNION ALL \n SELECT * \n FROM ec2_cost_hot\n)\n\nSELECT * FROM ec2_unioned_cost", "language": "sql", "refs": [{"name": "infra__ec2_cost_cold", "package": null, "version": null}, {"name": "infra__ec2_cost_hot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__ec2_cost_cold", "model.yoda.infra__ec2_cost_hot"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__ec2_cost/infra__ec2_cost.sql", "compiled": true, "compiled_code": "\nWITH ec2_cost_cold AS (\n SELECT \n billing_period, \n bill_start_date, \n bill_payer_account_id,\n account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n ags,\n is_managed_by_cast_ai\n FROM \n dev_dkruh1.infra__ec2_cost_cold\n), ec2_cost_hot AS (\n SELECT \n billing_period, \n bill_start_date, \n bill_payer_account_id,\n account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n ags,\n is_managed_by_cast_ai\n FROM \n dev_dkruh1.infra__ec2_cost_hot\n), ec2_unioned_cost AS (\n SELECT *\n FROM ec2_cost_cold \n UNION ALL \n SELECT * \n FROM ec2_cost_hot\n)\n\nSELECT * FROM ec2_unioned_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__ec2_cost_cold": {"database": null, "schema": "dev_dkruh1", "name": "infra__ec2_cost_cold", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.sql", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.sql", "unique_id": "model.yoda.infra__ec2_cost_cold", "fqn": ["yoda", "infra", "marts", "infra__ec2_cost_cold", "infra__ec2_cost_cold"], "alias": "infra__ec2_cost_cold", "checksum": {"name": "sha256", "checksum": "c889de3fd036010167f50ab950ef5611ece02f79e5d0e93b4ef56c209c25c359"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["billing_period"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Table Description", "columns": {"billing_period": {"name": "billing_period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type": {"name": "product_instance_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_component": {"name": "resource_tags_user_sub_component", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_component": {"name": "resource_tags_user_component", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_environment": {"name": "resource_tags_user_environment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ags": {"name": "ags", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_managed_by_cast_ai": {"name": "is_managed_by_cast_ai", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "incremental", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["billing_period"]}, "created_at": 1700082668.5849311, "relation_name": "dev_dkruh1.infra__ec2_cost_cold", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=[\"billing_period\"]\n )\n}}\nWITH ec2_cost AS (\n\n SELECT \n billing_period, \n bill_start_date, \n bill_payer_account_id,\n account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n ags,\n is_managed_by_cast_ai\n FROM \n {{ ref('infra_stg__ec2_cost') }}\n)\n\nSELECT * FROM ec2_cost\n\n{% if is_incremental() %}\n WHERE \n billing_period < DATEADD(month, -2, current_date()) AND billing_period > (SELECT case when MAX(billing_period) is null then '2020-01-01' ELSE MAX(billing_period) END FROM {{ this }})\n{% endif %}", "language": "sql", "refs": [{"name": "infra_stg__ec2_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__ec2_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.sql", "compiled": true, "compiled_code": "\nWITH ec2_cost AS (\n\n SELECT \n billing_period, \n bill_start_date, \n bill_payer_account_id,\n account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n ags,\n is_managed_by_cast_ai\n FROM \n dev_dkruh1.infra_stg__ec2_cost\n)\n\nSELECT * FROM ec2_cost\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__ec2_cost_hot": {"database": null, "schema": "dev_dkruh1", "name": "infra__ec2_cost_hot", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.sql", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.sql", "unique_id": "model.yoda.infra__ec2_cost_hot", "fqn": ["yoda", "infra", "marts", "infra__ec2_cost_hot", "infra__ec2_cost_hot"], "alias": "infra__ec2_cost_hot", "checksum": {"name": "sha256", "checksum": "8aee7904afca95e798bef131d409be7fa271f9e0040742d5223aa9fc6f96c4e4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["billing_period"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Table Description", "columns": {"billing_period": {"name": "billing_period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type": {"name": "product_instance_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_component": {"name": "resource_tags_user_sub_component", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_component": {"name": "resource_tags_user_component", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_environment": {"name": "resource_tags_user_environment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ags": {"name": "ags", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_managed_by_cast_ai": {"name": "is_managed_by_cast_ai", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "table", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "partition_by": ["billing_period"]}, "created_at": 1700082668.6112983, "relation_name": "dev_dkruh1.infra__ec2_cost_hot", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partition_by=[\"billing_period\"]\n )\n}}\nWITH ec2_cost AS (\n SELECT \n billing_period, \n bill_start_date, \n bill_payer_account_id,\n account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n ags,\n is_managed_by_cast_ai\n FROM \n {{ ref('infra_stg__ec2_cost') }}\n WHERE\n billing_period >= DATEADD(month, -2, current_date())\n)\n\nSELECT * FROM ec2_cost", "language": "sql", "refs": [{"name": "infra_stg__ec2_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__ec2_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.sql", "compiled": true, "compiled_code": "\nWITH ec2_cost AS (\n SELECT \n billing_period, \n bill_start_date, \n bill_payer_account_id,\n account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n ags,\n is_managed_by_cast_ai\n FROM \n dev_dkruh1.infra_stg__ec2_cost\n WHERE\n billing_period >= DATEADD(month, -2, current_date())\n)\n\nSELECT * FROM ec2_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__elasticcache_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__elasticcache_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.sql", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.sql", "unique_id": "model.yoda.infra__elasticcache_cost", "fqn": ["yoda", "infra", "marts", "infra__elasticcache_cost", "infra__elasticcache_cost"], "alias": "infra__elasticcache_cost", "checksum": {"name": "sha256", "checksum": "20a987b44f644dbecc9a6ee44660432ab4026167ba8e11ff0bcc2ff1f82704bb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Elastic cache costs", "columns": {"billing_period": {"name": "billing_period", "description": "Start billing month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "Start billing date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_resource_id": {"name": "line_item_resource_id", "description": "ARN", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_account_id": {"name": "line_item_usage_account_id", "description": "Account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "Account name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "Group tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "Team tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "Feature tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engine": {"name": "engine", "description": "Engine type (Redis, Memchace)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_generation": {"name": "current_generation", "description": "Wheather using the latest generation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory": {"name": "product_memory", "description": "Instance memory", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type": {"name": "product_instance_type", "description": "Instance type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_network_performance": {"name": "product_network_performance", "description": "Instance network capacity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "Name tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "Region", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "Pricing term (on demand, reserved)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "Unbleded cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "Amortized cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082668.6333559, "relation_name": "dev_dkruh1.infra__elasticcache_cost", "raw_code": "WITH ec_clusters AS (\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n CASE\n WHEN line_item_resource_id = '' AND line_item_usage_type = 'ElastiCache:BackupUsage' THEN 'ClustersBackup'\n ELSE SPLIT(line_item_resource_id,':cluster:')[1] \n END AS line_item_resource_id,\n line_item_usage_account_id,\n {{ resolve_account('line_item_usage_account_id') }} AS account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n FIRST(product_cache_engine) as engine,\n FIRST(product_current_generation) as current_generation,\n FIRST(product_memory) as product_memory,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(product_instance_type)))) AS product_instance_type,\n FIRST(product_line) AS product_line,\n FIRST(product_network_performance) AS product_network_performance,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(resource_tags_user_name)))) AS name,\n FIRST(product_region) AS region,\n FIRST(pricing_term) AS pricing_term, \n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost\n FROM \n protected_infra.aws_payer_billing_report_raw\n WHERE \n line_item_product_code=\"AmazonElastiCache\" AND \n line_item_line_item_type not in ('PrivateRateDiscount', 'EdpDiscount', 'Tax') AND\n bill_billing_period_start_date >= '2023-01-01 00:00:00'\n GROUP BY \n billing_period, \n bill_start_date,\n line_item_usage_type,\n line_item_resource_id, \n line_item_usage_account_id,\n account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n)\n\nSELECT * FROM ec_clusters", "language": "sql", "refs": [], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.resolve_account", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": []}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.sql", "compiled": true, "compiled_code": "WITH ec_clusters AS (\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n CASE\n WHEN line_item_resource_id = '' AND line_item_usage_type = 'ElastiCache:BackupUsage' THEN 'ClustersBackup'\n ELSE SPLIT(line_item_resource_id,':cluster:')[1] \n END AS line_item_resource_id,\n line_item_usage_account_id,\n \nCASE \n WHEN line_item_usage_account_id = '402837048690' THEN 'Yotpo Ltd'\n WHEN line_item_usage_account_id = '140980321741' THEN 'Omri Cohen (Support+RI+MP)'\n WHEN line_item_usage_account_id = '368297226064' THEN 'SMSBump'\n WHEN line_item_usage_account_id = '067361735412' THEN 'AWS QA (Staging)'\n WHEN line_item_usage_account_id = '237698446327' THEN 'Yotpo IT'\n ELSE ''\nEND\n AS account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n FIRST(product_cache_engine) as engine,\n FIRST(product_current_generation) as current_generation,\n FIRST(product_memory) as product_memory,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(product_instance_type)))) AS product_instance_type,\n FIRST(product_line) AS product_line,\n FIRST(product_network_performance) AS product_network_performance,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(resource_tags_user_name)))) AS name,\n FIRST(product_region) AS region,\n FIRST(pricing_term) AS pricing_term, \n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost\n FROM \n protected_infra.aws_payer_billing_report_raw\n WHERE \n line_item_product_code=\"AmazonElastiCache\" AND \n line_item_line_item_type not in ('PrivateRateDiscount', 'EdpDiscount', 'Tax') AND\n bill_billing_period_start_date >= '2023-01-01 00:00:00'\n GROUP BY \n billing_period, \n bill_start_date,\n line_item_usage_type,\n line_item_resource_id, \n line_item_usage_account_id,\n account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n)\n\nSELECT * FROM ec_clusters", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__elasticsearch_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__elasticsearch_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.sql", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.sql", "unique_id": "model.yoda.infra__elasticsearch_cost", "fqn": ["yoda", "infra", "marts", "infra__elasticsearch_cost", "infra__elasticsearch_cost"], "alias": "infra__elasticsearch_cost", "checksum": {"name": "sha256", "checksum": "76088617a1f585f035f34d677d6727ddbb0cb968fbd9e10333c7e36852f1b90c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Elasticsearch cost aggregation table", "columns": {"year": {"name": "year", "description": "Year of the cost aggregation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "Month of the cost aggregation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "Day of the cost aggregation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "k8s_cluster": {"name": "k8s_cluster", "description": "Kubebrnetes cluster name running the elasticsearch cluster", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "namespace": {"name": "namespace", "description": "Kuberneters namespace", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "es_cluster": {"name": "es_cluster", "description": "Elastcisearch cluster name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cost": {"name": "cost", "description": "Overall elasticsearch cluster cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "uptime_in_minutes": {"name": "uptime_in_minutes", "description": "Elasticsearch cluster uptime in minutes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuefficiency": {"name": "cpuefficiency", "description": "Elasticsearch cluster cpu efficiency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramefficiency": {"name": "ramefficiency", "description": "Elasticsearch cluster memory efficiency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group": {"name": "group", "description": "Group owning the service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "Team owning the service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_day": {"name": "billing_day", "description": "Billing Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082668.6543307, "relation_name": "dev_dkruh1.infra__elasticsearch_cost", "raw_code": "WITH kubcost_backfill AS(\n SELECT \n * \n FROM \n {{ ref('infra_stg__kubecost_delta') }}\n WHERE\n year >= 2022\n), rnd_es_clusters AS (\n SELECT\n year,\n month,\n day,\n properties.cluster AS k8s_cluster, \n properties.namespace, \n properties.labels.release AS es_cluster, \n SUM(totalcost) AS cost, \n SUM(minutes) AS uptime_in_minutes,\n MAX(cpuefficiency) AS cpuefficiency,\n MAX(ramefficiency) AS ramefficiency,\n FIRST(CASE \n WHEN properties.labels.productLine is not null THEN properties.labels.productLine\n WHEN properties.labels.product_line is not null THEN properties.labels.product_line\n WHEN name like '%unomi%' THEN 'platform'\n WHEN name like '%review%' THEN 'reviews'\n ELSE\n 'untagged'\n END) AS product_line,\n FIRST(properties.labels.group) as group,\n FIRST(properties.labels.team) as team\n FROM \n kubcost_backfill\n WHERE \n properties.labels.chart = 'elasticsearch'\n GROUP BY \n year,\n month,\n day,\n properties.cluster, \n properties.namespace, \n properties.labels.release\n), infra_es_clusters AS (\n SELECT \n year,\n month,\n day,\n properties.cluster AS k8s_cluster, \n properties.namespace, \n properties.labels.es_cluster AS es_cluster,\n SUM(totalcost) AS cost, \n SUM(minutes) AS uptime_in_minutes,\n MAX(cpuefficiency) AS max_cpuefficiency,\n MAX(ramefficiency) AS max_ramefficiency,\n 'infra' AS product_line,\n FIRST(properties.labels.group) as group,\n FIRST(properties.labels.team) as team\n FROM\n kubcost_backfill\n WHERE\n properties.labels.es_cluster IS NOT null\n GROUP BY\n year,\n month,\n day,\n properties.cluster, \n properties.namespace, \n properties.labels.es_cluster\n), unioned_ec AS (\n SELECT * \n FROM rnd_es_clusters\n UNION ALL\n SELECT * \n FROM infra_es_clusters\n)\n\nSELECT *, make_date(year, month, day) AS billing_day \nFROM unioned_ec", "language": "sql", "refs": [{"name": "infra_stg__kubecost_delta", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__kubecost_delta"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.sql", "compiled": true, "compiled_code": "WITH kubcost_backfill AS(\n SELECT \n * \n FROM \n dev_dkruh1.infra_stg__kubecost_delta\n WHERE\n year >= 2022\n), rnd_es_clusters AS (\n SELECT\n year,\n month,\n day,\n properties.cluster AS k8s_cluster, \n properties.namespace, \n properties.labels.release AS es_cluster, \n SUM(totalcost) AS cost, \n SUM(minutes) AS uptime_in_minutes,\n MAX(cpuefficiency) AS cpuefficiency,\n MAX(ramefficiency) AS ramefficiency,\n FIRST(CASE \n WHEN properties.labels.productLine is not null THEN properties.labels.productLine\n WHEN properties.labels.product_line is not null THEN properties.labels.product_line\n WHEN name like '%unomi%' THEN 'platform'\n WHEN name like '%review%' THEN 'reviews'\n ELSE\n 'untagged'\n END) AS product_line,\n FIRST(properties.labels.group) as group,\n FIRST(properties.labels.team) as team\n FROM \n kubcost_backfill\n WHERE \n properties.labels.chart = 'elasticsearch'\n GROUP BY \n year,\n month,\n day,\n properties.cluster, \n properties.namespace, \n properties.labels.release\n), infra_es_clusters AS (\n SELECT \n year,\n month,\n day,\n properties.cluster AS k8s_cluster, \n properties.namespace, \n properties.labels.es_cluster AS es_cluster,\n SUM(totalcost) AS cost, \n SUM(minutes) AS uptime_in_minutes,\n MAX(cpuefficiency) AS max_cpuefficiency,\n MAX(ramefficiency) AS max_ramefficiency,\n 'infra' AS product_line,\n FIRST(properties.labels.group) as group,\n FIRST(properties.labels.team) as team\n FROM\n kubcost_backfill\n WHERE\n properties.labels.es_cluster IS NOT null\n GROUP BY\n year,\n month,\n day,\n properties.cluster, \n properties.namespace, \n properties.labels.es_cluster\n), unioned_ec AS (\n SELECT * \n FROM rnd_es_clusters\n UNION ALL\n SELECT * \n FROM infra_es_clusters\n)\n\nSELECT *, make_date(year, month, day) AS billing_day \nFROM unioned_ec", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__git_actions_runs": {"database": null, "schema": "dev_dkruh1", "name": "infra__git_actions_runs", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.sql", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.sql", "unique_id": "model.yoda.infra__git_actions_runs", "fqn": ["yoda", "infra", "marts", "infra__git_actions_runs", "infra__git_actions_runs"], "alias": "infra__git_actions_runs", "checksum": {"name": "sha256", "checksum": "92bfaadc0ded74730aa70c527789b4cdf2dae4e6fb5650f13232f6d834e27ef5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Yotpo repositories workflow runs information as extracted from https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28#list-workflow-runs-for-a-repository", "columns": {"repo_name": {"name": "repo_name", "description": "The name of the git repository that the action run on.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "The ID of the workflow run.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "The name of the workflow run.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "node_id": {"name": "node_id", "description": "The github node id of the run.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "check_suite_id": {"name": "check_suite_id", "description": "The ID of the associated check suite.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "check_suite_node_id": {"name": "check_suite_node_id", "description": "The node ID of the associated check suite.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "head_branch": {"name": "head_branch", "description": "The git branch that this action run on", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "head_sha": {"name": "head_sha", "description": "he SHA of the head commit that points to the version of the workflow being run.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_number": {"name": "run_number", "description": "The auto incrementing run number for the workflow run.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event": {"name": "event", "description": "Returns workflow run triggered by the event you specify. For example, push, pull_request or issue", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "The status of the run - the final status will be in the conculstion columns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "conclusion": {"name": "conclusion", "description": "Can be one of: completed, action_required, cancelled, failure, neutral, skipped, stale, success, timed_out, in_progress, queued, requested, waiting, pending", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "workflow_id": {"name": "workflow_id", "description": "The ID of the parent workflow.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "url": {"name": "url", "description": "The URL to the workflow run.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_attempt": {"name": "run_attempt", "description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "run_started_at": {"name": "run_started_at", "description": "The start time of the latest run. Resets on re-run.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "The date time the action was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "The date time the action run was updated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "duration_in_seconds": {"name": "duration_in_seconds", "description": "Run duration in seconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "incremental", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "incremental_strategy": "append"}, "created_at": 1700082668.6762373, "relation_name": "dev_dkruh1.infra__git_actions_runs", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append')\n}}\n\nWITH staging AS (\n\n SELECT * \n FROM {{ ref('infra_stg__workflow_runs') }}\n), infra__git_actions_runs AS (\n\n SELECT \n repo_name,\n\t\tid,\n\t\tname,\n\t\tnode_id,\n\t\tcheck_suite_id,\n\t\tcheck_suite_node_id,\n\t\thead_branch,\n\t\thead_sha,\n\t\trun_number,\n\t\tevent,\n\t\tstatus,\n\t\tconclusion,\n\t\tworkflow_id,\n\t\turl,\n\t\trun_attempt,\n\t\tto_timestamp(run_started_at , \"yyyy-MM-dd'T'HH:mm:ss'Z'\") as run_started_at,\n\t\tto_timestamp(created_at , \"yyyy-MM-dd'T'HH:mm:ss'Z'\") as created_at,\n\t\tto_timestamp(updated_at , \"yyyy-MM-dd'T'HH:mm:ss'Z'\") as updated_at,\n\t\tbigint(to_timestamp(updated_at , \"yyyy-MM-dd'T'HH:mm:ss'Z'\")) - bigint(to_timestamp(run_started_at , \"yyyy-MM-dd'T'HH:mm:ss'Z'\")) as duration_in_seconds\n FROM staging\n\t{% if is_incremental() %}\n WHERE created_at > (select MAX(created_at) from {{ this }})\n {% endif %}\n\n)\n\nSELECT * FROM infra__git_actions_runs", "language": "sql", "refs": [{"name": "infra_stg__workflow_runs", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__workflow_runs"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.sql", "compiled": true, "compiled_code": "\n\nWITH staging AS (\n\n SELECT * \n FROM dev_dkruh1.infra_stg__workflow_runs\n), infra__git_actions_runs AS (\n\n SELECT \n repo_name,\n\t\tid,\n\t\tname,\n\t\tnode_id,\n\t\tcheck_suite_id,\n\t\tcheck_suite_node_id,\n\t\thead_branch,\n\t\thead_sha,\n\t\trun_number,\n\t\tevent,\n\t\tstatus,\n\t\tconclusion,\n\t\tworkflow_id,\n\t\turl,\n\t\trun_attempt,\n\t\tto_timestamp(run_started_at , \"yyyy-MM-dd'T'HH:mm:ss'Z'\") as run_started_at,\n\t\tto_timestamp(created_at , \"yyyy-MM-dd'T'HH:mm:ss'Z'\") as created_at,\n\t\tto_timestamp(updated_at , \"yyyy-MM-dd'T'HH:mm:ss'Z'\") as updated_at,\n\t\tbigint(to_timestamp(updated_at , \"yyyy-MM-dd'T'HH:mm:ss'Z'\")) - bigint(to_timestamp(run_started_at , \"yyyy-MM-dd'T'HH:mm:ss'Z'\")) as duration_in_seconds\n FROM staging\n\t\n\n)\n\nSELECT * FROM infra__git_actions_runs", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__groups_and_teams": {"database": null, "schema": "dev_dkruh1", "name": "infra__groups_and_teams", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__groups_and_teams/infra__groups_and_teams.sql", "original_file_path": "models/infra/marts/infra__groups_and_teams/infra__groups_and_teams.sql", "unique_id": "model.yoda.infra__groups_and_teams", "fqn": ["yoda", "infra", "marts", "infra__groups_and_teams", "infra__groups_and_teams"], "alias": "infra__groups_and_teams", "checksum": {"name": "sha256", "checksum": "7f969c90fe3cd59ff8ef06f82f256e3019895b84ee4d9f02f11d3876d1ae1ae3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "All product lines, groups and teams which are generated from AWS and Kubernetes", "columns": {"product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group": {"name": "group", "description": "Group name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "Team name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__groups_and_teams/infra__groups_and_teams.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082668.6893826, "relation_name": "dev_dkruh1.infra__groups_and_teams", "raw_code": "WITH aws_groups_and_teams AS (\n SELECT \n DISTINCT product_line,\n CASE WHEN resource_tags_user_group IS NULL OR resource_tags_user_group = '' THEN '' ELSE resource_tags_user_group END AS group, \n CASE WHEN resource_tags_user_team IS NULL OR resource_tags_user_team = '' THEN '' ELSE resource_tags_user_team END AS team\n FROM {{ ref('infra__aws_cost_overview') }}\n), kubernetes_groups_and_teams AS ( \n SELECT \n DISTINCT productline as product_line,\n group,\n team\n FROM {{ ref('infra__kubernetes_cost') }}\n)\nSELECT product_line, group, team FROM aws_groups_and_teams\nUNION\nSELECT product_line, group, team FROM kubernetes_groups_and_teams", "language": "sql", "refs": [{"name": "infra__aws_cost_overview", "package": null, "version": null}, {"name": "infra__kubernetes_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__aws_cost_overview", "model.yoda.infra__kubernetes_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__groups_and_teams/infra__groups_and_teams.sql", "compiled": true, "compiled_code": "WITH aws_groups_and_teams AS (\n SELECT \n DISTINCT product_line,\n CASE WHEN resource_tags_user_group IS NULL OR resource_tags_user_group = '' THEN '' ELSE resource_tags_user_group END AS group, \n CASE WHEN resource_tags_user_team IS NULL OR resource_tags_user_team = '' THEN '' ELSE resource_tags_user_team END AS team\n FROM dev_dkruh1.infra__aws_cost_overview\n), kubernetes_groups_and_teams AS ( \n SELECT \n DISTINCT productline as product_line,\n group,\n team\n FROM dev_dkruh1.infra__kubernetes_cost\n)\nSELECT product_line, group, team FROM aws_groups_and_teams\nUNION\nSELECT product_line, group, team FROM kubernetes_groups_and_teams", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__infra_metrics": {"database": null, "schema": "dev_dkruh1", "name": "infra__infra_metrics", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__infra_metrics/infra__infra_metrics.sql", "original_file_path": "models/infra/marts/infra__infra_metrics/infra__infra_metrics.sql", "unique_id": "model.yoda.infra__infra_metrics", "fqn": ["yoda", "infra", "marts", "infra__infra_metrics", "infra__infra_metrics"], "alias": "infra__infra_metrics", "checksum": {"name": "sha256", "checksum": "7ad9e15a15e3276218939e59a4b9357bb2c364fcaeb5b309bfc2d1b7be3e1fcb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "A table that exposes raw infra metrics", "columns": {"ts": {"name": "ts", "description": "the timestamp the metric was taken", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_line": {"name": "product_line", "description": "metric value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "the source of the metric (i.e github)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "component": {"name": "component", "description": "the component this metric refers to (i.e git repo name)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "key": {"name": "key", "description": "metric key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "the metric's value", "meta": {"looker": {"measures": {"sum_of_values": {"name": "sum_of_values", "type": "sum", "value_format_name": "decimal_0"}}}}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "custom_properties": {"name": "custom_properties", "description": "any custom porerties in addition to the key value of the metrics", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "row_number": {"name": "row_number", "description": "Row number basted on partitioning key and component", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "incremental", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "incremental_strategy": "append"}, "created_at": 1700082668.7055314, "relation_name": "dev_dkruh1.infra__infra_metrics", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append'\n )\n}}\nWITH staging AS (\n\n SELECT \n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties,\n ROW_NUMBER() OVER (PARTITION BY key, component ORDER BY ts) AS row_number\n FROM {{ ref('infra_stg__infra_metrics') }} \n WHERE product_line is not null \n {% if is_incremental() %}\n and ts > (select max(ts) from {{ this }} where component not in (\"metorikku\", \"yoda\", \"cdc_tables\", \"AmazonStates\"))\n {% endif %}\n\n), yoda_gold_models AS (\n select \n current_date() as ts,\n product_line,\n \"k8s\" as source,\n \"yoda\" as component,\n \"yoda_gold_models\" as key,\n 1 as value,\n concat('{\"model\":\"',component,'\"}') as custom_properties\n from {{ ref('infra__databricks_costs') }} \n where name = 'Yoda-Job' and (component not like '%_stg__%' and component not like '%yoda_e2e%')\n and date > date_add(now(),-7)\n and product_line is not null \n{% if is_incremental() %}\n and date(now()) > (select coalesce(max(ts),'2022-01-01') from {{ this }} where component = 'yoda')\n\n{% endif %}\n group by product_line, component\n), metorikku_pipelines AS (\n select \n current_date() as ts,\n product_line,\n \"k8s\" as source,\n \"metorikku\" as component,\n 1 as value,\n \"metorikku_pipelines\" as key, \n concat('{\"pipeline\":\"',release_name,'\"}') as custom_properties\n from {{ ref('infra__spark_jobs') }} \n where product_line is not null \n and run_date > date_add(now(),-4)\n {% if is_incremental() %}\n and date(now()) > (select coalesce(max(ts),'2022-01-01') from {{ this }} where component = 'metorikku')\n {% endif %}\n group by product_line, release_name\n), upsolver_outputs AS (\n select\n current_date() as ts,\n workspaceName as product_line, \n \"upsolver\" as source,\n \"cdc_tables\" as component, \n \"cdc_pipelines\" as key, \n count(1) as value,\n cast(null as string) as custom_properties\n from {{ ref('infra_stg__upsolver_outputs') }} \n where workspaceName in ('ugc', 'infra', 'loyalty', 'CDP', 'sms', 'platform', 'subscriptions', 'communication') \n {% if is_incremental() %}\n and CAST (ts AS Timestamp) > (select coalesce(max(ts),'2022-01-01') from {{ this }} where component=\"cdc_tables\")\n {% endif %}\n group by workspaceName\n), step_functions AS (\n SELECT \n REPLACE(line_item_resource_id, 'arn:aws:states:us-east-1:402837048690:stateMachine:', '') AS sm_name,\n \"uses-sfn\" AS key,\n product_line,\n now() AS ts,\n \"aws_cur\" AS source,\n \"AmazonStates\" AS component,\n 1 AS value\n FROM {{ ref('infra_stg__aws_payer_billing_report_raw')}}\n WHERE line_item_usage_start_date > now() - INTERVAL '3 day' AND line_item_product_code = 'AmazonStates'\n AND REPLACE(line_item_resource_id, 'arn:aws:states:us-east-1:402837048690:stateMachine:', '') <> ''\n{% if is_incremental() %}\n AND date(now()) > (select date(coalesce(max(ts),'2022-01-01')) from {{ this }} where component=\"AmazonStates\")\n{% endif %}\n GROUP BY 1,2, 3\n)\n, infra__infra_metrics AS (\n\n SELECT \n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties,\n row_number\n FROM staging\n UNION \n SELECT \n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties,\n 1 as row_number\n FROM yoda_gold_models\n UNION \n SELECT \n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties,\n 1 as row_number\n FROM metorikku_pipelines\n UNION\n SELECT\n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties,\n 1 as row_number\n FROM upsolver_outputs\n UNION \n SELECT\n ts,\n product_line,\n source,\n component,\n key,\n 1 as value,\n concat('{\"name\":\"',sm_name,'\"}') as custom_properties,\n 1 as row_number\n FROM step_functions\n\n)\n\nSELECT * FROM infra__infra_metrics", "language": "sql", "refs": [{"name": "infra_stg__infra_metrics", "package": null, "version": null}, {"name": "infra__databricks_costs", "package": null, "version": null}, {"name": "infra__spark_jobs", "package": null, "version": null}, {"name": "infra_stg__upsolver_outputs", "package": null, "version": null}, {"name": "infra_stg__aws_payer_billing_report_raw", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__infra_metrics", "model.yoda.infra__databricks_costs", "model.yoda.infra__spark_jobs", "model.yoda.infra_stg__upsolver_outputs", "model.yoda.infra_stg__aws_payer_billing_report_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__infra_metrics/infra__infra_metrics.sql", "compiled": true, "compiled_code": "\nWITH staging AS (\n\n SELECT \n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties,\n ROW_NUMBER() OVER (PARTITION BY key, component ORDER BY ts) AS row_number\n FROM dev_dkruh1.infra_stg__infra_metrics \n WHERE product_line is not null \n \n\n), yoda_gold_models AS (\n select \n current_date() as ts,\n product_line,\n \"k8s\" as source,\n \"yoda\" as component,\n \"yoda_gold_models\" as key,\n 1 as value,\n concat('{\"model\":\"',component,'\"}') as custom_properties\n from dev_dkruh1.infra__databricks_costs \n where name = 'Yoda-Job' and (component not like '%_stg__%' and component not like '%yoda_e2e%')\n and date > date_add(now(),-7)\n and product_line is not null \n\n group by product_line, component\n), metorikku_pipelines AS (\n select \n current_date() as ts,\n product_line,\n \"k8s\" as source,\n \"metorikku\" as component,\n 1 as value,\n \"metorikku_pipelines\" as key, \n concat('{\"pipeline\":\"',release_name,'\"}') as custom_properties\n from dev_dkruh1.infra__spark_jobs \n where product_line is not null \n and run_date > date_add(now(),-4)\n \n group by product_line, release_name\n), upsolver_outputs AS (\n select\n current_date() as ts,\n workspaceName as product_line, \n \"upsolver\" as source,\n \"cdc_tables\" as component, \n \"cdc_pipelines\" as key, \n count(1) as value,\n cast(null as string) as custom_properties\n from dev_dkruh1.infra_stg__upsolver_outputs \n where workspaceName in ('ugc', 'infra', 'loyalty', 'CDP', 'sms', 'platform', 'subscriptions', 'communication') \n \n group by workspaceName\n), step_functions AS (\n SELECT \n REPLACE(line_item_resource_id, 'arn:aws:states:us-east-1:402837048690:stateMachine:', '') AS sm_name,\n \"uses-sfn\" AS key,\n product_line,\n now() AS ts,\n \"aws_cur\" AS source,\n \"AmazonStates\" AS component,\n 1 AS value\n FROM dev_dkruh1.infra_stg__aws_payer_billing_report_raw\n WHERE line_item_usage_start_date > now() - INTERVAL '3 day' AND line_item_product_code = 'AmazonStates'\n AND REPLACE(line_item_resource_id, 'arn:aws:states:us-east-1:402837048690:stateMachine:', '') <> ''\n\n GROUP BY 1,2, 3\n)\n, infra__infra_metrics AS (\n\n SELECT \n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties,\n row_number\n FROM staging\n UNION \n SELECT \n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties,\n 1 as row_number\n FROM yoda_gold_models\n UNION \n SELECT \n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties,\n 1 as row_number\n FROM metorikku_pipelines\n UNION\n SELECT\n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties,\n 1 as row_number\n FROM upsolver_outputs\n UNION \n SELECT\n ts,\n product_line,\n source,\n component,\n key,\n 1 as value,\n concat('{\"name\":\"',sm_name,'\"}') as custom_properties,\n 1 as row_number\n FROM step_functions\n\n)\n\nSELECT * FROM infra__infra_metrics", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__kubernetes_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__kubernetes_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.sql", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.sql", "unique_id": "model.yoda.infra__kubernetes_cost", "fqn": ["yoda", "infra", "marts", "infra__kubernetes_cost", "infra__kubernetes_cost"], "alias": "infra__kubernetes_cost", "checksum": {"name": "sha256", "checksum": "9c348d296d508483c86b58c10f190fe57aea7b80761ca40f3bc11677150e8d60"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Kubernetes cost table", "columns": {"ec2_id": {"name": "ec2_id", "description": "EC Instace id that ran the pod", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "service": {"name": "service", "description": "Service name (e.g. spark, airflow, flink...). The default is taken from kubecost -> properties.container", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productline": {"name": "productline", "description": "Product line using the service. The default is taken from kubecost -> properties.labels.productline/product_line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_service": {"name": "sub_service", "description": "Sub service (e.g. worker, executor). The default is taken from kubecost -> properties.container", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "release_name": {"name": "release_name", "description": "Application running the service. The default is taken from kubecost -> properties.labels.app", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cluster": {"name": "cluster", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "namespace": {"name": "namespace", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_id": {"name": "run_id", "description": "Pod name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cpucost": {"name": "cpucost", "description": "Total CPU cost of the pod", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvcost": {"name": "pvcost", "description": "Total Storage cost for a given service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkcost": {"name": "networkcost", "description": "Total network cost for a given service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramcost": {"name": "ramcost", "description": "Total Memory cost for a given service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalcost": {"name": "totalcost", "description": "Total service cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalefficiency": {"name": "totalefficiency", "description": "Memory and CPU efficiency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuefficiency": {"name": "cpuefficiency", "description": "CPU average usage divided by the requested", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucorehours": {"name": "cpucorehours", "description": "Total CPU hours of the pod", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucorerequestaverage": {"name": "cpucorerequestaverage", "description": "Average Cores requested by the pod", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucoreusageaverage": {"name": "cpucoreusageaverage", "description": "Average Cores used by the pod", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucores": {"name": "cpucores", "description": "Total Cores requested by the pod", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCoreUsageMax": {"name": "cpuCoreUsageMax", "description": "Maximum CPU usage of the pod", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networktransferbytes": {"name": "networktransferbytes", "description": "Total amount of transferred bytes from the pod", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkreceivebytes": {"name": "networkreceivebytes", "description": "Total amount of received bytes by the pod", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramefficiency": {"name": "ramefficiency", "description": "Average amount of used bytes divided by bytes requested", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramByteUsageMax": {"name": "ramByteUsageMax", "description": "Maximum amount of actual memory usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rambytehours": {"name": "rambytehours", "description": "Hourly amount of memory used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyteusageaverage": {"name": "rambyteusageaverage", "description": "Average amount of bytes used by the pod", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyterequestaverage": {"name": "rambyterequestaverage", "description": "Average amount of memory used by the pod", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambytes": {"name": "rambytes", "description": "Memory requested in bytes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "minutes": {"name": "minutes", "description": "Amount of minutes the pod ran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "year": {"name": "year", "description": "Year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "Day of the week", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "billing_day": {"name": "billing_day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "name": {"name": "name", "description": "Name of the continaer (for debugging)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group": {"name": "group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "system_normalized": {"name": "system_normalized", "description": "System", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subsystem_normalized": {"name": "subsystem_normalized", "description": "SubSystem", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "component_normalized": {"name": "component_normalized", "description": "Component", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feature_normalized": {"name": "feature_normalized", "description": "Feature", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_cast": {"name": "is_cast", "description": "Indicates if pod is running on instances provisioned", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "product_instance_type": {"name": "product_instance_type", "description": "Product instance type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "Product region", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "Pricing term", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_product_line": {"name": "resource_tags_user_product_line", "description": "User product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory": {"name": "product_memory", "description": "Product memory", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_network_performance": {"name": "product_network_performance", "description": "Product network performance", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage": {"name": "product_storage", "description": "Product storage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_vcpu": {"name": "product_vcpu", "description": "Product Virtual CPU", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "availability_zone": {"name": "availability_zone", "description": "pod's availability zone", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "compute_cost": {"name": "compute_cost", "description": "Compute cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "data_transfer_cost": {"name": "data_transfer_cost", "description": "Data transfer cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "view", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082668.7893157, "relation_name": "dev_dkruh1.infra__kubernetes_cost", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('view')\n )\n}}\nWITH k8s_cost_cold AS (\n SELECT\n ec2_id,\n service,\n productline,\n sub_service,\n release_name,\n cluster,\n namespace,\n run_id,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency,\n cpucorehours,\n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores,\n cpuCoreUsageMax,\n networktransferbytes,\n networkreceivebytes,\n ramefficiency,\n ramByteUsageMax,\n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n billing_day,\n name,\n group,\n team,\n NVL(system,'untagged') AS system_normalized,\n NVL(subsystem,'untagged') AS subsystem_normalized,\n NVL(component,'untagged') AS component_normalized,\n NVL(feature,'untagged') AS feature_normalized,\n is_cast,\n product_instance_type,\n product_region,\n pricing_term,\n resource_tags_user_product_line,\n product_memory,\n product_network_performance,\n product_storage,\n product_vcpu,\n availability_zone,\n compute_cost,\n data_transfer_cost\n FROM\n {{ ref('infra__kubernetes_cost_cold') }}\n), k8s_cost_hot AS (\n SELECT\n ec2_id,\n service,\n productline,\n sub_service,\n release_name,\n cluster,\n namespace,\n run_id,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency,\n cpucorehours,\n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores,\n cpuCoreUsageMax,\n networktransferbytes,\n networkreceivebytes,\n ramefficiency,\n ramByteUsageMax,\n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n billing_day,\n name,\n group,\n team,\n NVL(system,'untagged') AS system_normalized,\n NVL(subsystem,'untagged') AS subsystem_normalized,\n NVL(component,'untagged') AS component_normalized,\n NVL(feature,'untagged') AS feature_normalized,\n is_cast,\n product_instance_type,\n product_region,\n pricing_term,\n resource_tags_user_product_line,\n product_memory,\n product_network_performance,\n product_storage,\n product_vcpu,\n availability_zone,\n compute_cost,\n data_transfer_cost\n FROM\n {{ ref('infra__kubernetes_cost_hot') }}\n), k8s_unioned_cost AS (\n SELECT *\n FROM k8s_cost_cold\n UNION ALL\n SELECT *\n FROM k8s_cost_hot\n)\n\nSELECT * FROM k8s_unioned_cost", "language": "sql", "refs": [{"name": "infra__kubernetes_cost_cold", "package": null, "version": null}, {"name": "infra__kubernetes_cost_hot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__kubernetes_cost_cold", "model.yoda.infra__kubernetes_cost_hot"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.sql", "compiled": true, "compiled_code": "\nWITH k8s_cost_cold AS (\n SELECT\n ec2_id,\n service,\n productline,\n sub_service,\n release_name,\n cluster,\n namespace,\n run_id,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency,\n cpucorehours,\n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores,\n cpuCoreUsageMax,\n networktransferbytes,\n networkreceivebytes,\n ramefficiency,\n ramByteUsageMax,\n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n billing_day,\n name,\n group,\n team,\n NVL(system,'untagged') AS system_normalized,\n NVL(subsystem,'untagged') AS subsystem_normalized,\n NVL(component,'untagged') AS component_normalized,\n NVL(feature,'untagged') AS feature_normalized,\n is_cast,\n product_instance_type,\n product_region,\n pricing_term,\n resource_tags_user_product_line,\n product_memory,\n product_network_performance,\n product_storage,\n product_vcpu,\n availability_zone,\n compute_cost,\n data_transfer_cost\n FROM\n dev_dkruh1.infra__kubernetes_cost_cold\n), k8s_cost_hot AS (\n SELECT\n ec2_id,\n service,\n productline,\n sub_service,\n release_name,\n cluster,\n namespace,\n run_id,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency,\n cpucorehours,\n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores,\n cpuCoreUsageMax,\n networktransferbytes,\n networkreceivebytes,\n ramefficiency,\n ramByteUsageMax,\n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n billing_day,\n name,\n group,\n team,\n NVL(system,'untagged') AS system_normalized,\n NVL(subsystem,'untagged') AS subsystem_normalized,\n NVL(component,'untagged') AS component_normalized,\n NVL(feature,'untagged') AS feature_normalized,\n is_cast,\n product_instance_type,\n product_region,\n pricing_term,\n resource_tags_user_product_line,\n product_memory,\n product_network_performance,\n product_storage,\n product_vcpu,\n availability_zone,\n compute_cost,\n data_transfer_cost\n FROM\n dev_dkruh1.infra__kubernetes_cost_hot\n), k8s_unioned_cost AS (\n SELECT *\n FROM k8s_cost_cold\n UNION ALL\n SELECT *\n FROM k8s_cost_hot\n)\n\nSELECT * FROM k8s_unioned_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__kubernetes_cost_cold": {"database": null, "schema": "dev_dkruh1", "name": "infra__kubernetes_cost_cold", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.sql", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.sql", "unique_id": "model.yoda.infra__kubernetes_cost_cold", "fqn": ["yoda", "infra", "marts", "infra__kubernetes_cost_cold", "infra__kubernetes_cost_cold"], "alias": "infra__kubernetes_cost_cold", "checksum": {"name": "sha256", "checksum": "a51d6ff90b85ca375761af2906de16f52cebc7b3be628328d97a3b42e57cd900"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "matan.michaely@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["year", "month", "day"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Kubernetes cost data except the last three days", "columns": {"ec2_id": {"name": "ec2_id", "description": "EC2 instance id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "service": {"name": "service", "description": "Service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productline": {"name": "productline", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_service": {"name": "sub_service", "description": "Sub service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "release_name": {"name": "release_name", "description": "Release name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cluster": {"name": "cluster", "description": "K8S cluster name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "namespace": {"name": "namespace", "description": "Name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_id": {"name": "run_id", "description": "Run id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cpucost": {"name": "cpucost", "description": "CPU cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvcost": {"name": "pvcost", "description": "Persistent volumne cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkcost": {"name": "networkcost", "description": "Network cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramcost": {"name": "ramcost", "description": "RAM cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalcost": {"name": "totalcost", "description": "Total cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalefficiency": {"name": "totalefficiency", "description": "Total efficiency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuefficiency": {"name": "cpuefficiency", "description": "CPU efficiency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucorehours": {"name": "cpucorehours", "description": "CPU core hours", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucorerequestaverage": {"name": "cpucorerequestaverage", "description": "CPU core request average", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucoreusageaverage": {"name": "cpucoreusageaverage", "description": "CPU core usage average", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucores": {"name": "cpucores", "description": "CPU cores", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCoreUsageMax": {"name": "cpuCoreUsageMax", "description": "CPU max core usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networktransferbytes": {"name": "networktransferbytes", "description": "Network transfer bytes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkreceivebytes": {"name": "networkreceivebytes", "description": "Network receive bytes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramefficiency": {"name": "ramefficiency", "description": "RAM efficiency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramByteUsageMax": {"name": "ramByteUsageMax", "description": "RAM byte usage max", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rambytehours": {"name": "rambytehours", "description": "RAM byte hours", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyteusageaverage": {"name": "rambyteusageaverage", "description": "RAM byte usage average", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyterequestaverage": {"name": "rambyterequestaverage", "description": "RAM byte request average", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambytes": {"name": "rambytes", "description": "RAM bytes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "minutes": {"name": "minutes", "description": "Minutes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "year": {"name": "year", "description": "Year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "Day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "billing_day": {"name": "billing_day", "description": "Billing date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "name": {"name": "name", "description": "Name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group": {"name": "group", "description": "Group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "Team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "system": {"name": "system", "description": "System", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subsystem": {"name": "subsystem", "description": "Sub system", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "component": {"name": "component", "description": "Product component", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feature": {"name": "feature", "description": "Feature", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_cast": {"name": "is_cast", "description": "Indicates if the pod is managed by castai", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "product_instance_type": {"name": "product_instance_type", "description": "Instance type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "Product region", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "Pricing term - On Demand / Spot", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_product_line": {"name": "resource_tags_user_product_line", "description": "product line ec2 tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory": {"name": "product_memory", "description": "Product memory", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_network_performance": {"name": "product_network_performance", "description": "Network performance", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage": {"name": "product_storage", "description": "Product storage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_vcpu": {"name": "product_vcpu", "description": "Product virtual CPU", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "availability_zone": {"name": "availability_zone", "description": "Availability zone", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "compute_cost": {"name": "compute_cost", "description": "Ec2 instance compute cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "data_transfer_cost": {"name": "data_transfer_cost", "description": "Data transfer cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "matan.michaely@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "incremental", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "matan.michaely@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "incremental_strategy": "append", "partition_by": ["year", "month", "day"]}, "created_at": 1700082668.8474948, "relation_name": "dev_dkruh1.infra__kubernetes_cost_cold", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=[\"year\",\"month\",\"day\"]\n )\n}}\nWITH kube_cost AS (\n SELECT \n ec2_id,\n service,\n productline,\n sub_service,\n release_name,\n cluster,\n namespace,\n run_id,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency,\n cpucorehours,\n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores,\n cpuCoreUsageMax,\n networktransferbytes,\n networkreceivebytes,\n ramefficiency,\n ramByteUsageMax,\n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n billing_day,\n name,\n group,\n team,\n system,\n subsystem,\n component,\n feature,\n is_cast,\n product_instance_type,\n product_region,\n pricing_term,\n resource_tags_user_product_line,\n product_memory,\n product_network_performance,\n product_storage,\n product_vcpu,\n availability_zone,\n compute_cost,\n data_transfer_cost\n FROM \n {{ ref('infra_stg__kubernetes_cost') }}\n)\n\nSELECT * FROM kube_cost\n\n{% if is_incremental() %}\n WHERE \n billing_day < DATEADD(day, -3, current_date()) AND billing_day > (SELECT COALESCE(MAX(billing_day),'2020-01-01') FROM {{ this }})\n{% endif %}", "language": "sql", "refs": [{"name": "infra_stg__kubernetes_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__kubernetes_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.sql", "compiled": true, "compiled_code": "\nWITH kube_cost AS (\n SELECT \n ec2_id,\n service,\n productline,\n sub_service,\n release_name,\n cluster,\n namespace,\n run_id,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency,\n cpucorehours,\n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores,\n cpuCoreUsageMax,\n networktransferbytes,\n networkreceivebytes,\n ramefficiency,\n ramByteUsageMax,\n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n billing_day,\n name,\n group,\n team,\n system,\n subsystem,\n component,\n feature,\n is_cast,\n product_instance_type,\n product_region,\n pricing_term,\n resource_tags_user_product_line,\n product_memory,\n product_network_performance,\n product_storage,\n product_vcpu,\n availability_zone,\n compute_cost,\n data_transfer_cost\n FROM \n dev_dkruh1.infra_stg__kubernetes_cost\n)\n\nSELECT * FROM kube_cost\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__kubernetes_cost_hot": {"database": null, "schema": "dev_dkruh1", "name": "infra__kubernetes_cost_hot", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.sql", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.sql", "unique_id": "model.yoda.infra__kubernetes_cost_hot", "fqn": ["yoda", "infra", "marts", "infra__kubernetes_cost_hot", "infra__kubernetes_cost_hot"], "alias": "infra__kubernetes_cost_hot", "checksum": {"name": "sha256", "checksum": "a0957d7fd90a8e081b9c7d7a906914da876d054c2fa300f29a127325e1ab415d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "matan.michaely@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["year", "month", "day"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Kubernetes cost data of the last three days", "columns": {"ec2_id": {"name": "ec2_id", "description": "EC2 instance id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "service": {"name": "service", "description": "Service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productline": {"name": "productline", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_service": {"name": "sub_service", "description": "Sub service", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "release_name": {"name": "release_name", "description": "Release name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cluster": {"name": "cluster", "description": "K8S cluster name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "namespace": {"name": "namespace", "description": "Name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_id": {"name": "run_id", "description": "Run id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cpucost": {"name": "cpucost", "description": "CPU cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvcost": {"name": "pvcost", "description": "Persistent volumne cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkcost": {"name": "networkcost", "description": "Network cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramcost": {"name": "ramcost", "description": "RAM cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalcost": {"name": "totalcost", "description": "Total cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalefficiency": {"name": "totalefficiency", "description": "Total efficiency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuefficiency": {"name": "cpuefficiency", "description": "CPU efficiency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucorehours": {"name": "cpucorehours", "description": "CPU core hours", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucorerequestaverage": {"name": "cpucorerequestaverage", "description": "CPU core request average", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucoreusageaverage": {"name": "cpucoreusageaverage", "description": "CPU core usage average", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucores": {"name": "cpucores", "description": "CPU cores", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCoreUsageMax": {"name": "cpuCoreUsageMax", "description": "CPU max core usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networktransferbytes": {"name": "networktransferbytes", "description": "Network transfer bytes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkreceivebytes": {"name": "networkreceivebytes", "description": "Network receive bytes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramefficiency": {"name": "ramefficiency", "description": "RAM efficiency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramByteUsageMax": {"name": "ramByteUsageMax", "description": "RAM byte usage max", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rambytehours": {"name": "rambytehours", "description": "RAM byte hours", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyteusageaverage": {"name": "rambyteusageaverage", "description": "RAM byte usage average", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyterequestaverage": {"name": "rambyterequestaverage", "description": "RAM byte request average", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambytes": {"name": "rambytes", "description": "RAM bytes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "minutes": {"name": "minutes", "description": "Minutes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "year": {"name": "year", "description": "Year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "Day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "billing_day": {"name": "billing_day", "description": "Billing date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "name": {"name": "name", "description": "Name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group": {"name": "group", "description": "Group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "Team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "system": {"name": "system", "description": "System", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subsystem": {"name": "subsystem", "description": "Sub system", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "component": {"name": "component", "description": "Product component", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feature": {"name": "feature", "description": "Feature", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_cast": {"name": "is_cast", "description": "Indicates if the pod is managed by castai", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "product_instance_type": {"name": "product_instance_type", "description": "Instance type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "Product region", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "Pricing term - On Demand / Spot", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_product_line": {"name": "resource_tags_user_product_line", "description": "product line ec2 tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory": {"name": "product_memory", "description": "Product memory", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_network_performance": {"name": "product_network_performance", "description": "Network performance", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage": {"name": "product_storage", "description": "Product storage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_vcpu": {"name": "product_vcpu", "description": "Product virtual CPU", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "availability_zone": {"name": "availability_zone", "description": "Availability zone", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "compute_cost": {"name": "compute_cost", "description": "Ec2 instance compute cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "data_transfer_cost": {"name": "data_transfer_cost", "description": "Data transfer cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "matan.michaely@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "table", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "matan.michaely@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "partition_by": ["year", "month", "day"]}, "created_at": 1700082668.892952, "relation_name": "dev_dkruh1.infra__kubernetes_cost_hot", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partition_by=[\"year\",\"month\",\"day\"]\n )\n}}\nWITH kube_cost AS (\n SELECT \n ec2_id,\n service,\n productline,\n sub_service,\n release_name,\n cluster,\n namespace,\n run_id,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency,\n cpucorehours,\n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores,\n cpuCoreUsageMax,\n networktransferbytes,\n networkreceivebytes,\n ramefficiency,\n ramByteUsageMax,\n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n billing_day,\n name,\n group,\n team,\n system,\n subsystem,\n component,\n feature,\n is_cast,\n product_instance_type,\n product_region,\n pricing_term,\n resource_tags_user_product_line,\n product_memory,\n product_network_performance,\n product_storage,\n product_vcpu,\n availability_zone,\n compute_cost,\n data_transfer_cost\n FROM \n {{ ref('infra_stg__kubernetes_cost') }}\n WHERE\n billing_day >= DATEADD(day, -3, current_date())\n)\n\nSELECT * FROM kube_cost", "language": "sql", "refs": [{"name": "infra_stg__kubernetes_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__kubernetes_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.sql", "compiled": true, "compiled_code": "\nWITH kube_cost AS (\n SELECT \n ec2_id,\n service,\n productline,\n sub_service,\n release_name,\n cluster,\n namespace,\n run_id,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency,\n cpucorehours,\n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores,\n cpuCoreUsageMax,\n networktransferbytes,\n networkreceivebytes,\n ramefficiency,\n ramByteUsageMax,\n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n billing_day,\n name,\n group,\n team,\n system,\n subsystem,\n component,\n feature,\n is_cast,\n product_instance_type,\n product_region,\n pricing_term,\n resource_tags_user_product_line,\n product_memory,\n product_network_performance,\n product_storage,\n product_vcpu,\n availability_zone,\n compute_cost,\n data_transfer_cost\n FROM \n dev_dkruh1.infra_stg__kubernetes_cost\n WHERE\n billing_day >= DATEADD(day, -3, current_date())\n)\n\nSELECT * FROM kube_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__msk_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__msk_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.sql", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.sql", "unique_id": "model.yoda.infra__msk_cost", "fqn": ["yoda", "infra", "marts", "infra__msk_cost", "infra__msk_cost"], "alias": "infra__msk_cost", "checksum": {"name": "sha256", "checksum": "ff8639c5ae055d4ee460ff85b30b83ea5c4e99b39246b88164421de928822b34"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "AWS Managed Kafka Costs", "columns": {"billing_period": {"name": "billing_period", "description": "Billing start period (monthly)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "Billing start time (daily)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "cluster_name": {"name": "cluster_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_resource_id": {"name": "line_item_resource_id", "description": "Cluster ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "arn": {"name": "arn", "description": "AWS ARN (ID)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_account_id": {"name": "line_item_usage_account_id", "description": "Account ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "Account name (not complete, only main ones)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "User defined group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "User defined team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "User defined feature", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storage_cost": {"name": "storage_cost", "description": "Storage costs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "broker_cost": {"name": "broker_cost", "description": "Broker instance costs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "data_transfer_cost": {"name": "data_transfer_cost", "description": "Data transfer costs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "storage_family_type": {"name": "storage_family_type", "description": "Storage family type (GP2/3)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "Username custom tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "Region", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "On demand / Reserved / Spots", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "Unblended cost (includes the discounts in a single period and not across the period it was given)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "Amortized cost equals usage plus the portion of upfront fees applicable to the period (both used and unused)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "instance_type": {"name": "instance_type", "description": "MSK instance types", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_latest_generation": {"name": "is_latest_generation", "description": "Whether the storage is of last generation (GP3)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_graviton": {"name": "is_graviton", "description": "Whether the instance types are graviton or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__msk_cost/infra__msk_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "table", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082668.9189713, "relation_name": "dev_dkruh1.infra__msk_cost", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'))\n}}\nWITH msk_clusters AS (\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n regexp_extract(line_item_resource_id,':cluster/([^\\/]+)/([^\\/]+)', 1) AS cluster_name,\n coalesce(regexp_extract(line_item_resource_id,':cluster/([^\\/]+)/([^\\/]+)', 2), line_item_resource_id) AS line_item_resource_id,\n SPLIT(line_item_resource_id,':cluster/')[1] as arn,\n line_item_usage_account_id,\n {{ resolve_account('line_item_usage_account_id') }} AS account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n SUM(CASE WHEN line_item_operation = 'RunVolume' THEN line_item_unblended_cost ELSE 0 END) AS storage_cost,\n SUM(CASE WHEN line_item_operation = 'RunBroker' THEN line_item_unblended_cost ELSE 0 END) AS broker_cost,\n SUM(CASE WHEN line_item_operation = 'Bandwidth' THEN line_item_unblended_cost ELSE 0 END) AS data_transfer_cost,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(product_storage_family)))) AS storage_family_type,\n FIRST(product_line) AS product_line,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(resource_tags_user_name)))) AS user_name,\n FIRST(product_region) AS region,\n FIRST(pricing_term) AS pricing_term, \n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(product_compute_family)))) AS instance_type\n FROM \n {{ ref('infra_stg__aws_payer_billing_report_raw') }}\n WHERE \n line_item_product_code=\"AmazonMSK\" AND \n line_item_line_item_type not in ('PrivateRateDiscount','EdpDiscount', 'Tax') AND\n bill_billing_period_start_date >= '2021-01-01 00:00:00'\n GROUP BY \n billing_period, \n bill_start_date,\n cluster_name,\n line_item_resource_id, \n arn,\n line_item_usage_account_id,\n account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n), msk_clusters_with_dimensions AS (\n SELECT\n *,\n storage_family_type not like '%GP2%' AS is_latest_generation,\n instance_type like '%g.' AS is_graviton\n FROM \n msk_clusters\n)\n\nSELECT * FROM msk_clusters_with_dimensions", "language": "sql", "refs": [{"name": "infra_stg__aws_payer_billing_report_raw", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.resolve_account", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__aws_payer_billing_report_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__msk_cost/infra__msk_cost.sql", "compiled": true, "compiled_code": "\nWITH msk_clusters AS (\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n regexp_extract(line_item_resource_id,':cluster/([^\\/]+)/([^\\/]+)', 1) AS cluster_name,\n coalesce(regexp_extract(line_item_resource_id,':cluster/([^\\/]+)/([^\\/]+)', 2), line_item_resource_id) AS line_item_resource_id,\n SPLIT(line_item_resource_id,':cluster/')[1] as arn,\n line_item_usage_account_id,\n \nCASE \n WHEN line_item_usage_account_id = '402837048690' THEN 'Yotpo Ltd'\n WHEN line_item_usage_account_id = '140980321741' THEN 'Omri Cohen (Support+RI+MP)'\n WHEN line_item_usage_account_id = '368297226064' THEN 'SMSBump'\n WHEN line_item_usage_account_id = '067361735412' THEN 'AWS QA (Staging)'\n WHEN line_item_usage_account_id = '237698446327' THEN 'Yotpo IT'\n ELSE ''\nEND\n AS account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n SUM(CASE WHEN line_item_operation = 'RunVolume' THEN line_item_unblended_cost ELSE 0 END) AS storage_cost,\n SUM(CASE WHEN line_item_operation = 'RunBroker' THEN line_item_unblended_cost ELSE 0 END) AS broker_cost,\n SUM(CASE WHEN line_item_operation = 'Bandwidth' THEN line_item_unblended_cost ELSE 0 END) AS data_transfer_cost,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(product_storage_family)))) AS storage_family_type,\n FIRST(product_line) AS product_line,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(resource_tags_user_name)))) AS user_name,\n FIRST(product_region) AS region,\n FIRST(pricing_term) AS pricing_term, \n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(product_compute_family)))) AS instance_type\n FROM \n dev_dkruh1.infra_stg__aws_payer_billing_report_raw\n WHERE \n line_item_product_code=\"AmazonMSK\" AND \n line_item_line_item_type not in ('PrivateRateDiscount','EdpDiscount', 'Tax') AND\n bill_billing_period_start_date >= '2021-01-01 00:00:00'\n GROUP BY \n billing_period, \n bill_start_date,\n cluster_name,\n line_item_resource_id, \n arn,\n line_item_usage_account_id,\n account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n), msk_clusters_with_dimensions AS (\n SELECT\n *,\n storage_family_type not like '%GP2%' AS is_latest_generation,\n instance_type like '%g.' AS is_graviton\n FROM \n msk_clusters\n)\n\nSELECT * FROM msk_clusters_with_dimensions", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__opensearch_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__opensearch_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.sql", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.sql", "unique_id": "model.yoda.infra__opensearch_cost", "fqn": ["yoda", "infra", "marts", "infra__opensearch_cost", "infra__opensearch_cost"], "alias": "infra__opensearch_cost", "checksum": {"name": "sha256", "checksum": "86b5127a7c53b99e7471ad3bedeb6af32939fa0307e3940b448aef85a425379d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Opensearch Costs", "columns": {"billing_period": {"name": "billing_period", "description": "Billing month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "Billing day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "cluster_name": {"name": "cluster_name", "description": "Cluster name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_resource_id": {"name": "line_item_resource_id", "description": "ARN", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_account_id": {"name": "line_item_usage_account_id", "description": "Account Id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "Account name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "Group tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "Team tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "Feature tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "Product family", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "Item type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type": {"name": "product_instance_type", "description": "Instance type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "Unblended costs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "Amortized costs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_current_generation": {"name": "product_current_generation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_amount": {"name": "line_item_usage_amount", "description": "Usage amount", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_family": {"name": "product_instance_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory_gib": {"name": "product_memory_gib", "description": "Instance GB", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_vcpu": {"name": "product_vcpu", "description": "Instance VCPU", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "Region", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "Pricing term (on demand, reserved)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082668.9441974, "relation_name": "dev_dkruh1.infra__opensearch_cost", "raw_code": "with opensearch_clusters as (\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n SPLIT(line_item_resource_id,':domain/')[1] AS cluster_name,\n line_item_resource_id,\n line_item_usage_account_id,\n {{ resolve_account('line_item_usage_account_id') }} AS account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n product_product_family,\n line_item_line_item_type,\n product_instance_type,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost,\n FIRST(product_current_generation) AS product_current_generation, \n SUM(line_item_usage_amount) AS line_item_usage_amount,\n FIRST(product_line) AS product_line,\n FIRST(product_instance_family) AS product_instance_family,\n FIRST(product_memory_gib) AS product_memory_gib,\n FIRST(product_vcpu) AS product_vcpu,\n FIRST(product_region) AS product_region,\n FIRST(pricing_term) AS pricing_term\n FROM \n dev_moshederri.infra_stg__aws_payer_billing_report_raw\n WHERE \n line_item_product_code=\"AmazonES\" AND \n line_item_line_item_type not in ('PrivateRateDiscount','EdpDiscount', 'Tax') AND\n bill_billing_period_start_date >= '2023-01-01 00:00:00'\n GROUP BY \n billing_period, \n bill_start_date,\n cluster_name,\n line_item_resource_id, \n line_item_usage_account_id,\n account_name,\n product_product_family,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n line_item_line_item_type,\n product_instance_type\n)\n\nSELECT * FROM opensearch_clusters", "language": "sql", "refs": [], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.resolve_account", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": []}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.sql", "compiled": true, "compiled_code": "with opensearch_clusters as (\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n SPLIT(line_item_resource_id,':domain/')[1] AS cluster_name,\n line_item_resource_id,\n line_item_usage_account_id,\n \nCASE \n WHEN line_item_usage_account_id = '402837048690' THEN 'Yotpo Ltd'\n WHEN line_item_usage_account_id = '140980321741' THEN 'Omri Cohen (Support+RI+MP)'\n WHEN line_item_usage_account_id = '368297226064' THEN 'SMSBump'\n WHEN line_item_usage_account_id = '067361735412' THEN 'AWS QA (Staging)'\n WHEN line_item_usage_account_id = '237698446327' THEN 'Yotpo IT'\n ELSE ''\nEND\n AS account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n product_product_family,\n line_item_line_item_type,\n product_instance_type,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost,\n FIRST(product_current_generation) AS product_current_generation, \n SUM(line_item_usage_amount) AS line_item_usage_amount,\n FIRST(product_line) AS product_line,\n FIRST(product_instance_family) AS product_instance_family,\n FIRST(product_memory_gib) AS product_memory_gib,\n FIRST(product_vcpu) AS product_vcpu,\n FIRST(product_region) AS product_region,\n FIRST(pricing_term) AS pricing_term\n FROM \n dev_moshederri.infra_stg__aws_payer_billing_report_raw\n WHERE \n line_item_product_code=\"AmazonES\" AND \n line_item_line_item_type not in ('PrivateRateDiscount','EdpDiscount', 'Tax') AND\n bill_billing_period_start_date >= '2023-01-01 00:00:00'\n GROUP BY \n billing_period, \n bill_start_date,\n cluster_name,\n line_item_resource_id, \n line_item_usage_account_id,\n account_name,\n product_product_family,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n line_item_line_item_type,\n product_instance_type\n)\n\nSELECT * FROM opensearch_clusters", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__opsgenie_alerts": {"database": null, "schema": "dev_dkruh1", "name": "infra__opsgenie_alerts", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.sql", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.sql", "unique_id": "model.yoda.infra__opsgenie_alerts", "fqn": ["yoda", "infra", "marts", "infra__opsgenie_alerts", "infra__opsgenie_alerts"], "alias": "infra__opsgenie_alerts", "checksum": {"name": "sha256", "checksum": "150d81c99a6af7816c57659e89cb86d7dd23363dc134ef837de3593872541e96"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "OpsGenie alerts table", "columns": {"alert_id": {"name": "alert_id", "description": "Alert id generated from tiny_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "Alert message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "Status of the alert", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "acknowledged": {"name": "acknowledged", "description": "Whether the alert was acknowledged", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "seen": {"name": "seen", "description": "Whether the alert was seen", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "snoozed": {"name": "snoozed", "description": "Whether the alert was snoozed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "alert_count": {"name": "alert_count", "description": "Amount of similar alerts", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "createdat": {"name": "createdat", "description": "When the alert was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updatedat": {"name": "updatedat", "description": "Last time the alert was updated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "impact_duration_in_seconds": {"name": "impact_duration_in_seconds", "description": "Duration from the last update", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source": {"name": "source", "description": "The source of the alert", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "Owner who acked the alert", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priority": {"name": "priority", "description": "Alert priority", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "Concatenated alert tags", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "A single first domain taken from the alert's tags in case it starts with 'domain:'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integration_name": {"name": "integration_name", "description": "Which integration triggered the alert", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integration_type": {"name": "integration_type", "description": "Type of the integration which triggered the alert", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "Team assigned to the alert", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082668.9699152, "relation_name": "dev_dkruh1.infra__opsgenie_alerts", "raw_code": "WITH exploded_alerts AS (\n SELECT \n alert_id,\n message,\n status,\n acknowledged,\n seen,\n snoozed,\n count AS alert_count,\n createdat, \n updatedat, \n impact_duration_in_seconds,\n source,\n owner,\n priority,\n concat_ws(',', tags) as tags,\n integration.name as integration_name,\n integration.type as integration_type,\n element_at(\n filter(\n transform(tags, value -> \n case \n when value like 'domain:%' then substring(value, 8)\n else null\n end\n ), \n value -> value IS NOT NULL), \n 1) as domain,\n explode(teams) as teams\n FROM \n {{ ref('infra_stg__alerts') }}\n), enriched_alerts AS (\n SELECT \n exploded_alerts.alert_id,\n exploded_alerts.message,\n exploded_alerts.status,\n exploded_alerts.acknowledged,\n exploded_alerts.seen,\n exploded_alerts.snoozed,\n exploded_alerts.alert_count,\n exploded_alerts.createdat, \n exploded_alerts.updatedat, \n exploded_alerts.impact_duration_in_seconds,\n exploded_alerts.source,\n exploded_alerts.owner,\n exploded_alerts.priority,\n exploded_alerts.tags,\n exploded_alerts.domain,\n exploded_alerts.integration_name,\n exploded_alerts.integration_type,\n teams.name as team\n FROM \n exploded_alerts\n INNER JOIN \n opsgenie.teams ON exploded_alerts.teams.id = teams.id\n)\nSELECT * \nFROM enriched_alerts", "language": "sql", "refs": [{"name": "infra_stg__alerts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__alerts"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.sql", "compiled": true, "compiled_code": "WITH exploded_alerts AS (\n SELECT \n alert_id,\n message,\n status,\n acknowledged,\n seen,\n snoozed,\n count AS alert_count,\n createdat, \n updatedat, \n impact_duration_in_seconds,\n source,\n owner,\n priority,\n concat_ws(',', tags) as tags,\n integration.name as integration_name,\n integration.type as integration_type,\n element_at(\n filter(\n transform(tags, value -> \n case \n when value like 'domain:%' then substring(value, 8)\n else null\n end\n ), \n value -> value IS NOT NULL), \n 1) as domain,\n explode(teams) as teams\n FROM \n dev_dkruh1.infra_stg__alerts\n), enriched_alerts AS (\n SELECT \n exploded_alerts.alert_id,\n exploded_alerts.message,\n exploded_alerts.status,\n exploded_alerts.acknowledged,\n exploded_alerts.seen,\n exploded_alerts.snoozed,\n exploded_alerts.alert_count,\n exploded_alerts.createdat, \n exploded_alerts.updatedat, \n exploded_alerts.impact_duration_in_seconds,\n exploded_alerts.source,\n exploded_alerts.owner,\n exploded_alerts.priority,\n exploded_alerts.tags,\n exploded_alerts.domain,\n exploded_alerts.integration_name,\n exploded_alerts.integration_type,\n teams.name as team\n FROM \n exploded_alerts\n INNER JOIN \n opsgenie.teams ON exploded_alerts.teams.id = teams.id\n)\nSELECT * \nFROM enriched_alerts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__opsgenie_incidents": {"database": null, "schema": "dev_dkruh1", "name": "infra__opsgenie_incidents", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.sql", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.sql", "unique_id": "model.yoda.infra__opsgenie_incidents", "fqn": ["yoda", "infra", "marts", "infra__opsgenie_incidents", "infra__opsgenie_incidents"], "alias": "infra__opsgenie_incidents", "checksum": {"name": "sha256", "checksum": "fc09f5702f3657616a2e90045dc91d50dadcef551e8311d13a986661c97bbb13"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Table Description", "columns": {"incident_id": {"name": "incident_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "impact_start_date": {"name": "impact_start_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "impact_end_date": {"name": "impact_end_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "priority": {"name": "priority", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "impact_duration_in_seconds": {"name": "impact_duration_in_seconds", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "service_name": {"name": "service_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team_name": {"name": "team_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "incident_url": {"name": "incident_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082668.9885142, "relation_name": "dev_dkruh1.infra__opsgenie_incidents", "raw_code": "WITH exploded_service_tags AS (\n SELECT name,\n explode_outer(tags) AS tag\n FROM {{ ref('infra_stg__services') }}\n),\nservice_product_line AS (\n SELECT \n name, \n FIRST(REGEXP_EXTRACT(tag, 'PL: (.*)', 1)) AS product_line \n FROM exploded_service_tags WHERE tag LIKE 'PL: %' GROUP BY 1\n),\nimpacted_service AS (\n SELECT \n tiny_id AS incident_id, \n impact_start_date, \n impact_end_date, \n unix_timestamp(impact_end_date) - unix_timestamp(impact_start_date) AS impact_duration_in_seconds, \n priority, \n message, \n links.web AS incident_url, \n EXPLODE_OUTER(impacted_services) AS impacted_service,\n tags AS incident_tags\n FROM {{ ref('infra_stg__incidents') }}\n)\nSELECT \n incident_id, \n impact_start_date, \n impact_end_date, \n priority, \n impact_duration_in_seconds, \n services.name AS service_name, \n teams.name AS team_name,\n service_product_line.product_line,\n message, incident_url,\n CONCAT_WS(',',SORT_ARRAY(ARRAY_DISTINCT(CONCAT(incident_tags, services.tags)))) AS tags\nFROM impacted_service\nLEFT JOIN \n {{ ref('infra_stg__services') }} services ON services.id = impacted_service\nLEFT JOIN \n service_product_line ON service_product_line.name = services.name\nLEFT JOIN \n {{ ref('infra_stg__teams') }} teams ON services.team_id = teams.id", "language": "sql", "refs": [{"name": "infra_stg__services", "package": null, "version": null}, {"name": "infra_stg__incidents", "package": null, "version": null}, {"name": "infra_stg__services", "package": null, "version": null}, {"name": "infra_stg__teams", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__services", "model.yoda.infra_stg__incidents", "model.yoda.infra_stg__services", "model.yoda.infra_stg__teams"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.sql", "compiled": true, "compiled_code": "WITH exploded_service_tags AS (\n SELECT name,\n explode_outer(tags) AS tag\n FROM dev_dkruh1.infra_stg__services\n),\nservice_product_line AS (\n SELECT \n name, \n FIRST(REGEXP_EXTRACT(tag, 'PL: (.*)', 1)) AS product_line \n FROM exploded_service_tags WHERE tag LIKE 'PL: %' GROUP BY 1\n),\nimpacted_service AS (\n SELECT \n tiny_id AS incident_id, \n impact_start_date, \n impact_end_date, \n unix_timestamp(impact_end_date) - unix_timestamp(impact_start_date) AS impact_duration_in_seconds, \n priority, \n message, \n links.web AS incident_url, \n EXPLODE_OUTER(impacted_services) AS impacted_service,\n tags AS incident_tags\n FROM dev_dkruh1.infra_stg__incidents\n)\nSELECT \n incident_id, \n impact_start_date, \n impact_end_date, \n priority, \n impact_duration_in_seconds, \n services.name AS service_name, \n teams.name AS team_name,\n service_product_line.product_line,\n message, incident_url,\n CONCAT_WS(',',SORT_ARRAY(ARRAY_DISTINCT(CONCAT(incident_tags, services.tags)))) AS tags\nFROM impacted_service\nLEFT JOIN \n dev_dkruh1.infra_stg__services services ON services.id = impacted_service\nLEFT JOIN \n service_product_line ON service_product_line.name = services.name\nLEFT JOIN \n dev_dkruh1.infra_stg__teams teams ON services.team_id = teams.id", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__pixel_onsite_v2": {"database": null, "schema": "dev_dkruh1", "name": "infra__pixel_onsite_v2", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.sql", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.sql", "unique_id": "model.yoda.infra__pixel_onsite_v2", "fqn": ["yoda", "infra", "marts", "infra__pixel_onsite_v2", "infra__pixel_onsite_v2"], "alias": "infra__pixel_onsite_v2", "checksum": {"name": "sha256", "checksum": "8502dde552e02c1490f4c4eb96896ae4a7f8cb3adb88c47ccaaf02a4261cd159"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Pixel view over onsite_v2 app id", "columns": {"processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "br_colordepth": {"name": "br_colordepth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_cookies": {"name": "br_cookies", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_family": {"name": "br_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_features_director": {"name": "br_features_director", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_flash": {"name": "br_features_flash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_gears": {"name": "br_features_gears", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_java": {"name": "br_features_java", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_pdf": {"name": "br_features_pdf", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_quicktime": {"name": "br_features_quicktime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_realplayer": {"name": "br_features_realplayer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_silverlight": {"name": "br_features_silverlight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_windowsmedia": {"name": "br_features_windowsmedia", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_lang": {"name": "br_lang", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_major": {"name": "br_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_minor": {"name": "br_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_viewheight": {"name": "br_viewheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_viewwidth": {"name": "br_viewwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_day": {"name": "collector_day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_epoch": {"name": "collector_epoch", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_month": {"name": "collector_month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_year": {"name": "collector_year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_family": {"name": "device_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_charset": {"name": "doc_charset", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_height": {"name": "doc_height", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "doc_width": {"name": "doc_width", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_sessionidx": {"name": "domain_sessionidx", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dvce_screenheight": {"name": "dvce_screenheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_screenwidth": {"name": "dvce_screenwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_tstamp": {"name": "dvce_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_id": {"name": "event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_vendor": {"name": "event_vendor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event": {"name": "event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_city": {"name": "geo_city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_country": {"name": "geo_country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_latitude": {"name": "geo_latitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_longitude": {"name": "geo_longitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_region": {"name": "geo_region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_zipcode": {"name": "geo_zipcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_campaign": {"name": "mkt_campaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_content": {"name": "mkt_content", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_medium": {"name": "mkt_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_source": {"name": "mkt_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_term": {"name": "mkt_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_family": {"name": "os_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_major": {"name": "os_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_minor": {"name": "os_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_timezone": {"name": "os_timezone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlfragment": {"name": "page_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlhost": {"name": "page_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlpath": {"name": "page_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlport": {"name": "page_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_urlquery": {"name": "page_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlscheme": {"name": "page_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pp_xoffset_max": {"name": "pp_xoffset_max", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_xoffset_min": {"name": "pp_xoffset_min", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_max": {"name": "pp_yoffset_max", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_min": {"name": "pp_yoffset_min", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_medium": {"name": "refr_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_source": {"name": "refr_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_term": {"name": "refr_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlfragment": {"name": "refr_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlhost": {"name": "refr_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlpath": {"name": "refr_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlport": {"name": "refr_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_urlquery": {"name": "refr_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlscheme": {"name": "refr_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_page_sku": {"name": "se_page_sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_testing_groups": {"name": "se_testing_groups", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_value": {"name": "se_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_currency": {"name": "tr_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_orderid": {"name": "tr_orderid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_total": {"name": "tr_total", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "txn_id": {"name": "txn_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_fingerprint": {"name": "user_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useragent": {"name": "useragent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_collector": {"name": "v_collector", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_etl": {"name": "v_etl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_tracker": {"name": "v_tracker", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "y_fingerprint": {"name": "y_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hour": {"name": "hour", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "view", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.062708, "relation_name": "dev_dkruh1.infra__pixel_onsite_v2", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('view'),\n )\n}}\nWITH onsite_v2 AS (\n\n SELECT processing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id,\n\t\tapp_id,\n\t\tpartition_date,\n\t\thour \n FROM {{ ref('infra_stg__pixel_enrichment') }}\n WHERE app_id = 'onsite_v2'\n\n)\n\nSELECT processing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id,\n\t\tapp_id,\n\t\tpartition_date,\n\t\thour \nFROM onsite_v2", "language": "sql", "refs": [{"name": "infra_stg__pixel_enrichment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__pixel_enrichment"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.sql", "compiled": true, "compiled_code": "\nWITH onsite_v2 AS (\n\n SELECT processing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id,\n\t\tapp_id,\n\t\tpartition_date,\n\t\thour \n FROM dev_dkruh1.infra_stg__pixel_enrichment\n WHERE app_id = 'onsite_v2'\n\n)\n\nSELECT processing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id,\n\t\tapp_id,\n\t\tpartition_date,\n\t\thour \nFROM onsite_v2", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__pixel_onsite_v3": {"database": null, "schema": "dev_dkruh1", "name": "infra__pixel_onsite_v3", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.sql", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.sql", "unique_id": "model.yoda.infra__pixel_onsite_v3", "fqn": ["yoda", "infra", "marts", "infra__pixel_onsite_v3", "infra__pixel_onsite_v3"], "alias": "infra__pixel_onsite_v3", "checksum": {"name": "sha256", "checksum": "a633f1ec8f0ccf90db1d66276f768a9ed31610d7dcf06dede91145915a6372d5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Pixel view over onsite_v3 app ie", "columns": {"processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "br_colordepth": {"name": "br_colordepth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_cookies": {"name": "br_cookies", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_family": {"name": "br_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_features_director": {"name": "br_features_director", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_flash": {"name": "br_features_flash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_gears": {"name": "br_features_gears", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_java": {"name": "br_features_java", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_pdf": {"name": "br_features_pdf", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_quicktime": {"name": "br_features_quicktime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_realplayer": {"name": "br_features_realplayer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_silverlight": {"name": "br_features_silverlight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_windowsmedia": {"name": "br_features_windowsmedia", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_lang": {"name": "br_lang", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_major": {"name": "br_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_minor": {"name": "br_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_viewheight": {"name": "br_viewheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_viewwidth": {"name": "br_viewwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_day": {"name": "collector_day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_epoch": {"name": "collector_epoch", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_month": {"name": "collector_month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_year": {"name": "collector_year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_family": {"name": "device_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_charset": {"name": "doc_charset", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_height": {"name": "doc_height", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "doc_width": {"name": "doc_width", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_sessionidx": {"name": "domain_sessionidx", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dvce_screenheight": {"name": "dvce_screenheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_screenwidth": {"name": "dvce_screenwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_tstamp": {"name": "dvce_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_id": {"name": "event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_vendor": {"name": "event_vendor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event": {"name": "event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_city": {"name": "geo_city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_country": {"name": "geo_country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_latitude": {"name": "geo_latitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_longitude": {"name": "geo_longitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_region": {"name": "geo_region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_zipcode": {"name": "geo_zipcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_campaign": {"name": "mkt_campaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_content": {"name": "mkt_content", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_medium": {"name": "mkt_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_source": {"name": "mkt_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_term": {"name": "mkt_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_family": {"name": "os_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_major": {"name": "os_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_minor": {"name": "os_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_timezone": {"name": "os_timezone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlfragment": {"name": "page_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlhost": {"name": "page_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlpath": {"name": "page_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlport": {"name": "page_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_urlquery": {"name": "page_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlscheme": {"name": "page_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pp_xoffset_max": {"name": "pp_xoffset_max", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_xoffset_min": {"name": "pp_xoffset_min", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_max": {"name": "pp_yoffset_max", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_min": {"name": "pp_yoffset_min", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_medium": {"name": "refr_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_source": {"name": "refr_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_term": {"name": "refr_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlfragment": {"name": "refr_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlhost": {"name": "refr_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlpath": {"name": "refr_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlport": {"name": "refr_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_urlquery": {"name": "refr_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlscheme": {"name": "refr_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_page_sku": {"name": "se_page_sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_testing_groups": {"name": "se_testing_groups", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_value": {"name": "se_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_currency": {"name": "tr_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_orderid": {"name": "tr_orderid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_total": {"name": "tr_total", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "txn_id": {"name": "txn_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_fingerprint": {"name": "user_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useragent": {"name": "useragent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_collector": {"name": "v_collector", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_etl": {"name": "v_etl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_tracker": {"name": "v_tracker", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "y_fingerprint": {"name": "y_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hour": {"name": "hour", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "view", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.1353738, "relation_name": "dev_dkruh1.infra__pixel_onsite_v3", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('view'),\n )\n}}\nWITH onsite_v3 AS (\n\n SELECT processing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id,\n\t\tapp_id,\n\t\tpartition_date,\n\t\thour \n FROM {{ ref('infra_stg__pixel_enrichment') }}\n WHERE app_id = 'onsite_v3'\n\n)\n\nSELECT processing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id,\n\t\tapp_id,\n\t\tpartition_date,\n\t\thour \nFROM onsite_v3", "language": "sql", "refs": [{"name": "infra_stg__pixel_enrichment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__pixel_enrichment"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.sql", "compiled": true, "compiled_code": "\nWITH onsite_v3 AS (\n\n SELECT processing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id,\n\t\tapp_id,\n\t\tpartition_date,\n\t\thour \n FROM dev_dkruh1.infra_stg__pixel_enrichment\n WHERE app_id = 'onsite_v3'\n\n)\n\nSELECT processing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id,\n\t\tapp_id,\n\t\tpartition_date,\n\t\thour \nFROM onsite_v3", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__rds_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__rds_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.sql", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.sql", "unique_id": "model.yoda.infra__rds_cost", "fqn": ["yoda", "infra", "marts", "infra__rds_cost", "infra__rds_cost"], "alias": "infra__rds_cost", "checksum": {"name": "sha256", "checksum": "344d7852306947dcca3181f5928a71ddb6a86554a961e00176c5379710800563"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "RDS overall cost", "columns": {"billing_period": {"name": "billing_period", "description": "Billing start period (monthly)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "Billing start time (daily)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_resource_id": {"name": "line_item_resource_id", "description": "RDS ARN", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_account_id": {"name": "line_item_usage_account_id", "description": "Account ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "Account name (incomplete, only main ones)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "User defined group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "User defined team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "User defined feature", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "Region", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "instance_type": {"name": "instance_type", "description": "RDS instance type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feature": {"name": "feature", "description": "Custom feature tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "database_engine": {"name": "database_engine", "description": "SQL Engine type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "data_transfer_cost": {"name": "data_transfer_cost", "description": "Data transfer cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "storage_cost": {"name": "storage_cost", "description": "Storage cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "instance_cost": {"name": "instance_cost", "description": "Instance cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "snapshot_cost": {"name": "snapshot_cost", "description": "Snapshots cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "operational_cost": {"name": "operational_cost", "description": "Operation (system) cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "iops_cost": {"name": "iops_cost", "description": "IOPS (usage) cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_cost": {"name": "reservation_cost", "description": "Reservation cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_reserved": {"name": "is_reserved", "description": "Is RDS reserved", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_graviton": {"name": "is_graviton", "description": "Is instance graviton", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "total_cost": {"name": "total_cost", "description": "Overall cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_latest_generation": {"name": "is_latest_generation", "description": "Is the storage the latest generation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__rds_cost/infra__rds_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "table", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082669.1628668, "relation_name": "dev_dkruh1.infra__rds_cost", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH rds_cost AS (\n SELECT\n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n SPLIT(line_item_resource_id,':db:')[1] as line_item_resource_id,\n line_item_usage_account_id,\n {{ resolve_account('line_item_usage_account_id') }} AS account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n FIRST(product_region) AS region,\n TRIM(concat_ws(' ', array_distinct(collect_list(product_instance_type)))) AS instance_type,\n TRIM(concat_ws(' ', array_distinct(collect_list(resource_tags_user_service)))) AS feature,\n TRIM(concat_ws(' ', array_distinct(collect_list(product_line)))) AS product_line,\n FIRST(product_database_engine) AS database_engine,\n SUM(case when product_product_family = 'Data Transfer' THEN line_item_unblended_cost ELSE 0 END) AS data_transfer_cost,\n SUM(case when product_product_family = 'Database Storage' THEN line_item_unblended_cost ELSE 0 END) AS storage_cost,\n SUM(case when product_product_family = 'Database Instance' THEN line_item_unblended_cost ELSE 0 END) AS instance_cost,\n SUM(case when product_product_family = 'Storage Snapshot' THEN line_item_unblended_cost ELSE 0 END) AS snapshot_cost,\n SUM(case when product_product_family = 'System Operation' THEN line_item_unblended_cost ELSE 0 END) AS operational_cost,\n SUM(case when product_product_family = 'Provisioned IOPS' THEN line_item_unblended_cost ELSE 0 END) AS iops_cost,\n ROUND(SUM(reservation_effective_cost), 4) AS reservation_cost,\n SUM(case when line_item_line_item_type = 'DiscountedUsage' THEN 1 ELSE 0 END) > 0 AS is_reserved,\n SUM(case when product_physical_processor like 'AWS Graviton%' THEN 1 ELSE 0 END) > 0 AS is_graviton,\n SUM(line_item_unblended_cost) + ROUND(SUM(reservation_effective_cost), 4) AS total_cost,\n SUM(case when product_current_generation = 'Yes' THEN 1 ELSE 0 END) > 0 AS is_latest_generation\n FROM \n {{ ref('infra_stg__aws_payer_billing_report_raw') }}\n WHERE\n line_item_product_code=\"AmazonRDS\" AND \n bill_billing_period_start_date >= '2021-01-01 00:00:00' AND\n line_item_line_item_type not in ('Credit','RIFee','Tax','EdpDiscount')\n GROUP BY\n billing_period, \n line_item_usage_start_date,\n line_item_resource_id,\n line_item_usage_account_id,\n account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n)\n\nSELECT * FROM rds_cost", "language": "sql", "refs": [{"name": "infra_stg__aws_payer_billing_report_raw", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.resolve_account", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__aws_payer_billing_report_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__rds_cost/infra__rds_cost.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\nWITH rds_cost AS (\n SELECT\n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n SPLIT(line_item_resource_id,':db:')[1] as line_item_resource_id,\n line_item_usage_account_id,\n \nCASE \n WHEN line_item_usage_account_id = '402837048690' THEN 'Yotpo Ltd'\n WHEN line_item_usage_account_id = '140980321741' THEN 'Omri Cohen (Support+RI+MP)'\n WHEN line_item_usage_account_id = '368297226064' THEN 'SMSBump'\n WHEN line_item_usage_account_id = '067361735412' THEN 'AWS QA (Staging)'\n WHEN line_item_usage_account_id = '237698446327' THEN 'Yotpo IT'\n ELSE ''\nEND\n AS account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n FIRST(product_region) AS region,\n TRIM(concat_ws(' ', array_distinct(collect_list(product_instance_type)))) AS instance_type,\n TRIM(concat_ws(' ', array_distinct(collect_list(resource_tags_user_service)))) AS feature,\n TRIM(concat_ws(' ', array_distinct(collect_list(product_line)))) AS product_line,\n FIRST(product_database_engine) AS database_engine,\n SUM(case when product_product_family = 'Data Transfer' THEN line_item_unblended_cost ELSE 0 END) AS data_transfer_cost,\n SUM(case when product_product_family = 'Database Storage' THEN line_item_unblended_cost ELSE 0 END) AS storage_cost,\n SUM(case when product_product_family = 'Database Instance' THEN line_item_unblended_cost ELSE 0 END) AS instance_cost,\n SUM(case when product_product_family = 'Storage Snapshot' THEN line_item_unblended_cost ELSE 0 END) AS snapshot_cost,\n SUM(case when product_product_family = 'System Operation' THEN line_item_unblended_cost ELSE 0 END) AS operational_cost,\n SUM(case when product_product_family = 'Provisioned IOPS' THEN line_item_unblended_cost ELSE 0 END) AS iops_cost,\n ROUND(SUM(reservation_effective_cost), 4) AS reservation_cost,\n SUM(case when line_item_line_item_type = 'DiscountedUsage' THEN 1 ELSE 0 END) > 0 AS is_reserved,\n SUM(case when product_physical_processor like 'AWS Graviton%' THEN 1 ELSE 0 END) > 0 AS is_graviton,\n SUM(line_item_unblended_cost) + ROUND(SUM(reservation_effective_cost), 4) AS total_cost,\n SUM(case when product_current_generation = 'Yes' THEN 1 ELSE 0 END) > 0 AS is_latest_generation\n FROM \n dev_dkruh1.infra_stg__aws_payer_billing_report_raw\n WHERE\n line_item_product_code=\"AmazonRDS\" AND \n bill_billing_period_start_date >= '2021-01-01 00:00:00' AND\n line_item_line_item_type not in ('Credit','RIFee','Tax','EdpDiscount')\n GROUP BY\n billing_period, \n line_item_usage_start_date,\n line_item_resource_id,\n line_item_usage_account_id,\n account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n)\n\nSELECT * FROM rds_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__rivery_contract_statistics": {"database": null, "schema": "dev_dkruh1", "name": "infra__rivery_contract_statistics", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.sql", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.sql", "unique_id": "model.yoda.infra__rivery_contract_statistics", "fqn": ["yoda", "infra", "marts", "infra__rivery_contract_statistics", "infra__rivery_contract_statistics"], "alias": "infra__rivery_contract_statistics", "checksum": {"name": "sha256", "checksum": "f9e76738440728f5fcfa577c068b1550d0a212535b5743921ca519d9b900d602"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra", "deprecated"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra", "deprecated"], "description": "Rivery Contract Statistics Table which keeps track of the status of the yearly contract", "columns": {"date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "year": {"name": "year", "description": "Year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "days_count": {"name": "days_count", "description": "Days count from the begining of the contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_in_month": {"name": "days_in_month", "description": "Amount of days in a month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "months_count": {"name": "months_count", "description": "Months count from the begining of the contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "months_left": {"name": "months_left", "description": "Months left from the begining of the contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_closed_month": {"name": "is_closed_month", "description": "Is the month closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yearly_budget": {"name": "yearly_budget", "description": "Yearly budget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "contract_start_time": {"name": "contract_start_time", "description": "Contract Start Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_end_time": {"name": "contract_end_time", "description": "Contract End Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_cost": {"name": "monthly_cost", "description": "Monthly cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "prev_monthly_cost": {"name": "prev_monthly_cost", "description": "Previous monthly cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cumulative_cost_without_current_month": {"name": "cumulative_cost_without_current_month", "description": "Cumulative cost without current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cumulative_cost_with_current_month": {"name": "cumulative_cost_with_current_month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "daily_avg_cost": {"name": "daily_avg_cost", "description": "Daily Average Cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "monthly_burn_rate": {"name": "monthly_burn_rate", "description": "Monthly burning rate", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "budget_left": {"name": "budget_left", "description": "Budget left", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "calculated_monthly_budget": {"name": "calculated_monthly_budget", "description": "Calculated Monthly Budget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "estimated_months_left_for_renewal_last_month": {"name": "estimated_months_left_for_renewal_last_month", "description": "Estimated months left for renewal based on last month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "estimated_months_left_for_renewal_burn_rate": {"name": "estimated_months_left_for_renewal_burn_rate", "description": "Estimated months left for renewal burn rate", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra", "deprecated"], "materialized": "view", "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.1868768, "relation_name": "dev_dkruh1.infra__rivery_contract_statistics", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('view'),\n )\n}}\n\nWITH budget AS (\n SELECT\n 40000 as yearly_budget,\n \"2022-10-01\" AS start_date,\n \"2023-10-01\" AS end_date \n), months_seq AS (\n SELECT\n CAST(MONTHS_BETWEEN(end_date, start_date) AS INT) AS num_months\n FROM \n budget\n), months AS (\n SELECT\n ADD_MONTHS(budget.start_date, t.s) AS date,\n YEAR(ADD_MONTHS(budget.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(budget.start_date, t.s)) AS month,\n DAY(LAST_DAY(ADD_MONTHS(budget.start_date, s))) AS days_in_month\n FROM \n budget\n CROSS JOIN (SELECT EXPLODE(sequence(0, num_months)) AS s FROM months_seq) t\n)\n, burn AS (\n SELECT \n make_date(year(date), month(date), 1) as date,\n SUM(rpu) as monthly_cost\n FROM \n {{ ref('infra__rivery_daily_usage')}}, budget as d\n WHERE\n date BETWEEN d.start_date AND d.end_date \n GROUP BY \n 1\n)\n, cost_and_months AS (\n SELECT \n months.date,\n coalesce(monthly_cost, 0) as monthly_cost,\n year,\n month,\n days_in_month,\n SUM(1) OVER (ORDER BY months.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS months_count,\n SUM(days_in_month) OVER (ORDER BY months.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS days_count,\n CASE WHEN make_date(year,month,days_in_month) >= date(now()) THEN FALSE ELSE TRUE END AS is_closed_month,\n COALESCE(LAG(monthly_cost) OVER (ORDER BY months.date), 0) AS prev_monthly_cost,\n budget.yearly_budget\n FROM months, budget\n LEFT JOIN burn\n ON burn.date = months.date\n)\n, prepare_for_forcast AS (\n SELECT \n *,\n SUM(prev_monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_without_current_month,\n SUM(monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_with_current_month,\n CASE WHEN is_closed_month THEN 12 - months_count + 1 ELSE EXTRACT(MONTH FROM budget.end_date) - EXTRACT(MONTH FROM now()) + 1 END AS months_left\n FROM \n cost_and_months, budget\n)\n, cost_forcast AS (\n SELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n budget.*,\n monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n prev_monthly_cost,\n CASE \n WHEN year = YEAR(now()) AND MONTH(now()) = month THEN monthly_cost/DAY(now())\n ELSE monthly_cost/days_in_month END\n AS daily_avg_cost,\n budget.yearly_budget - cumulative_cost_without_current_month AS budget_left\n FROM\n prepare_for_forcast, budget\n), cost_forcast_with_estimated_months_left AS (\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n start_date,\n end_date,\n monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n budget_left,\n prev_monthly_cost,\n CASE WHEN is_closed_month THEN (yearly_budget - (budget_left - monthly_cost))/months_count ELSE 0 END AS monthly_burn_rate\nFROM \n cost_forcast\n), final as(\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n start_date AS contract_start_time,\n end_date AS contract_end_time,\n monthly_cost,\n prev_monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n monthly_burn_rate,\n budget_left,\n budget_left / months_left as calculated_monthly_budget,\n CASE WHEN is_closed_month THEN CEILING(budget_left / monthly_cost) ELSE 0 END AS estimated_months_left_for_renewal_last_month,\n CASE WHEN is_closed_month THEN CEILING(budget_left / monthly_burn_rate) ELSE 0 END AS estimated_months_left_for_renewal_burn_rate\nFROM \n cost_forcast_with_estimated_months_left\n)\n\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n contract_start_time,\n contract_end_time,\n monthly_cost,\n prev_monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n monthly_burn_rate,\n budget_left,\n calculated_monthly_budget,\n estimated_months_left_for_renewal_last_month,\n estimated_months_left_for_renewal_burn_rate \nFROM \n final", "language": "sql", "refs": [{"name": "infra__rivery_daily_usage", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__rivery_daily_usage"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.sql", "compiled": true, "compiled_code": "\n\nWITH budget AS (\n SELECT\n 40000 as yearly_budget,\n \"2022-10-01\" AS start_date,\n \"2023-10-01\" AS end_date \n), months_seq AS (\n SELECT\n CAST(MONTHS_BETWEEN(end_date, start_date) AS INT) AS num_months\n FROM \n budget\n), months AS (\n SELECT\n ADD_MONTHS(budget.start_date, t.s) AS date,\n YEAR(ADD_MONTHS(budget.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(budget.start_date, t.s)) AS month,\n DAY(LAST_DAY(ADD_MONTHS(budget.start_date, s))) AS days_in_month\n FROM \n budget\n CROSS JOIN (SELECT EXPLODE(sequence(0, num_months)) AS s FROM months_seq) t\n)\n, burn AS (\n SELECT \n make_date(year(date), month(date), 1) as date,\n SUM(rpu) as monthly_cost\n FROM \n dev_dkruh1.infra__rivery_daily_usage, budget as d\n WHERE\n date BETWEEN d.start_date AND d.end_date \n GROUP BY \n 1\n)\n, cost_and_months AS (\n SELECT \n months.date,\n coalesce(monthly_cost, 0) as monthly_cost,\n year,\n month,\n days_in_month,\n SUM(1) OVER (ORDER BY months.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS months_count,\n SUM(days_in_month) OVER (ORDER BY months.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS days_count,\n CASE WHEN make_date(year,month,days_in_month) >= date(now()) THEN FALSE ELSE TRUE END AS is_closed_month,\n COALESCE(LAG(monthly_cost) OVER (ORDER BY months.date), 0) AS prev_monthly_cost,\n budget.yearly_budget\n FROM months, budget\n LEFT JOIN burn\n ON burn.date = months.date\n)\n, prepare_for_forcast AS (\n SELECT \n *,\n SUM(prev_monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_without_current_month,\n SUM(monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_with_current_month,\n CASE WHEN is_closed_month THEN 12 - months_count + 1 ELSE EXTRACT(MONTH FROM budget.end_date) - EXTRACT(MONTH FROM now()) + 1 END AS months_left\n FROM \n cost_and_months, budget\n)\n, cost_forcast AS (\n SELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n budget.*,\n monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n prev_monthly_cost,\n CASE \n WHEN year = YEAR(now()) AND MONTH(now()) = month THEN monthly_cost/DAY(now())\n ELSE monthly_cost/days_in_month END\n AS daily_avg_cost,\n budget.yearly_budget - cumulative_cost_without_current_month AS budget_left\n FROM\n prepare_for_forcast, budget\n), cost_forcast_with_estimated_months_left AS (\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n start_date,\n end_date,\n monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n budget_left,\n prev_monthly_cost,\n CASE WHEN is_closed_month THEN (yearly_budget - (budget_left - monthly_cost))/months_count ELSE 0 END AS monthly_burn_rate\nFROM \n cost_forcast\n), final as(\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n start_date AS contract_start_time,\n end_date AS contract_end_time,\n monthly_cost,\n prev_monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n monthly_burn_rate,\n budget_left,\n budget_left / months_left as calculated_monthly_budget,\n CASE WHEN is_closed_month THEN CEILING(budget_left / monthly_cost) ELSE 0 END AS estimated_months_left_for_renewal_last_month,\n CASE WHEN is_closed_month THEN CEILING(budget_left / monthly_burn_rate) ELSE 0 END AS estimated_months_left_for_renewal_burn_rate\nFROM \n cost_forcast_with_estimated_months_left\n)\n\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n contract_start_time,\n contract_end_time,\n monthly_cost,\n prev_monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n monthly_burn_rate,\n budget_left,\n calculated_monthly_budget,\n estimated_months_left_for_renewal_last_month,\n estimated_months_left_for_renewal_burn_rate \nFROM \n final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__rivery_daily_usage": {"database": null, "schema": "dev_dkruh1", "name": "infra__rivery_daily_usage", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.sql", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.sql", "unique_id": "model.yoda.infra__rivery_daily_usage", "fqn": ["yoda", "infra", "marts", "infra__rivery_daily_usage", "infra__rivery_daily_usage"], "alias": "infra__rivery_daily_usage", "checksum": {"name": "sha256", "checksum": "19e8687e704bb0dd9b65b1fad153a47f5e44d6b7b5beade8a6ba1786634872b0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra", "models/infra/exposures/looker/infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra", "models/infra/exposures/looker/infra"], "description": "Daily Rivery Usage", "columns": {"account_id": {"name": "account_id", "description": "Rivery Account ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "environment_name": {"name": "environment_name", "description": "Rivery Environment Name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "river_name": {"name": "river_name", "description": "River name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "group_name": {"name": "group_name", "description": "River Group name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "Whether the river is deleted", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_scheduled": {"name": "is_scheduled", "description": "Whether the river is scheduled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "rpu_before_discount": {"name": "rpu_before_discount", "description": "Total daily used RPU before discounts", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rpu": {"name": "rpu", "description": "Total daily used RPU. For some specific groups (like Zuora), there are specifc logic that we apply.", "meta": {"looker": {"measures": {"sum_rpu": {"name": "sum_rpu", "type": "sum", "value_format_name": "decimal_0"}}}}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_size_in_MB": {"name": "total_size_in_MB", "description": "Total processed river data in MB", "meta": {"looker": {"measures": {"sum_total_size_in_MB": {"name": "sum_total_size_in_MB", "type": "sum", "value_format_name": "decimal_0"}}}}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "failed_runs": {"name": "failed_runs", "description": "Amount of failed runs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "succeeded_runs": {"name": "succeeded_runs", "description": "Amount of successful runs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cost": {"name": "cost", "description": "River cost (based on 0.405$ per single RPU)", "meta": {"looker": {"measures": {"sum_rivery_costs": {"name": "sum_rivery_costs", "type": "sum", "value_format_name": "decimal_0"}}}}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra", "models/infra/exposures/looker/infra"], "materialized": "view", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.2256992, "relation_name": "dev_dkruh1.infra__rivery_daily_usage", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('view'),\n )\n}}\nWITH river_per_day AS (\n SELECT \n account_id,\n environment_id, \n river_name, \n start_time AS date,\n datasource_id,\n FIRST(group_id) AS group_id, \n FIRST(is_deleted) AS is_deleted,\n FIRST(is_scheduled) AS is_scheduled, \n SUM(units) AS total_rpu, \n SUM(failed) AS failed_runs,\n SUM(succeeded) AS succeeded_runs,\n SUM(total_size) / (1000 * 1000) AS total_size_in_MB\n FROM \n {{ ref('infra_stg__rivery_rivers_usage') }}\n WHERE \n river_id IS NOT NULL \n GROUP BY \n 1,2,3,4,5\n), with_env AS (\n SELECT \n river_per_day.account_id,\n environments.name AS environment_name, \n river_name, \n date,\n groups.name as group_name,\n river_per_day.is_deleted,\n is_scheduled,\n total_rpu as rpu_before_discount,\n CASE \n WHEN group_id = \"646361ce8b075b00133e46ac\" AND datasource_id <> 'logic' THEN total_size_in_MB / 100 \n ELSE total_rpu \n END AS rpu, \n total_size_in_MB,\n failed_runs,\n succeeded_runs\n FROM river_per_day \n LEFT JOIN {{ ref('infra_stg__rivery_environments') }} AS environments \n ON environments.id = river_per_day.environment_id \n LEFT JOIN {{ ref('infra_stg__rivery_groups') }} AS groups \n ON groups.id = river_per_day.group_id \n), with_cost AS (\n SELECT \n *,\n rpu * 0.405 AS cost\n FROM \n with_env\n)\nSELECT * \nFROM with_cost", "language": "sql", "refs": [{"name": "infra_stg__rivery_rivers_usage", "package": null, "version": null}, {"name": "infra_stg__rivery_environments", "package": null, "version": null}, {"name": "infra_stg__rivery_groups", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__rivery_rivers_usage", "model.yoda.infra_stg__rivery_environments", "model.yoda.infra_stg__rivery_groups"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.sql", "compiled": true, "compiled_code": "\nWITH river_per_day AS (\n SELECT \n account_id,\n environment_id, \n river_name, \n start_time AS date,\n datasource_id,\n FIRST(group_id) AS group_id, \n FIRST(is_deleted) AS is_deleted,\n FIRST(is_scheduled) AS is_scheduled, \n SUM(units) AS total_rpu, \n SUM(failed) AS failed_runs,\n SUM(succeeded) AS succeeded_runs,\n SUM(total_size) / (1000 * 1000) AS total_size_in_MB\n FROM \n dev_dkruh1.infra_stg__rivery_rivers_usage\n WHERE \n river_id IS NOT NULL \n GROUP BY \n 1,2,3,4,5\n), with_env AS (\n SELECT \n river_per_day.account_id,\n environments.name AS environment_name, \n river_name, \n date,\n groups.name as group_name,\n river_per_day.is_deleted,\n is_scheduled,\n total_rpu as rpu_before_discount,\n CASE \n WHEN group_id = \"646361ce8b075b00133e46ac\" AND datasource_id <> 'logic' THEN total_size_in_MB / 100 \n ELSE total_rpu \n END AS rpu, \n total_size_in_MB,\n failed_runs,\n succeeded_runs\n FROM river_per_day \n LEFT JOIN dev_dkruh1.infra_stg__rivery_environments AS environments \n ON environments.id = river_per_day.environment_id \n LEFT JOIN dev_dkruh1.infra_stg__rivery_groups AS groups \n ON groups.id = river_per_day.group_id \n), with_cost AS (\n SELECT \n *,\n rpu * 0.405 AS cost\n FROM \n with_env\n)\nSELECT * \nFROM with_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__s3_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__s3_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.sql", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.sql", "unique_id": "model.yoda.infra__s3_cost", "fqn": ["yoda", "infra", "marts", "infra__s3_cost", "infra__s3_cost"], "alias": "infra__s3_cost", "checksum": {"name": "sha256", "checksum": "f3d2885534a2118e099b29259f9b026714c1da6925398ec796f9d8f22f6e5497"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "AWS S3 Cost table which is a union of s3_cost_hot (table, only last two months) and s3_cost_cold (incremental, older than 2 motnhs). We always refresh the last two months because they are likely to change (by AWS)\nReferences:\nhttps://docs.aws.amazon.com/cur/latest/userguide/Lineitem-columns.html\nhttps://wellarchitectedlabs.com/cost/300_labs/300_cur_queries/queries/global/#amortized-cost-by-charge-type", "columns": {"billing_period": {"name": "billing_period", "description": "Billing period date monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "Billing date for a specific S3 service (day granularity)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "Account ID (identical to line_item_usage_account_id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "Account name (not complete, only main ones)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bucket": {"name": "bucket", "description": "Bucket Name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "Data Transfer, API Request, Storage, Fee", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_type": {"name": "line_item_usage_type", "description": "Out/In-Bytes, Requests-Tier,TimedStorage, StorageAnalytics, DataTransfer, Inventory-ObjectsListed, Retrieval, EarlyDelete-ByteHrs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "Unblended cost equals usage plus upfront fees", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "Amortized cost equals usage plus the portion of upfront fees applicable to the period (both used and unused)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_line": {"name": "product_line", "description": "Product line attached to the bucket. In cases where the bucket is not tagged, we either tag it by custom tagging (until tagged properly), or tag it as untagged", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "User defined group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "User defined team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "User defined feature", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__s3_cost/infra__s3_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "view", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082669.2690504, "relation_name": "dev_dkruh1.infra__s3_cost", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('view'),\n )\n}}\nWITH s3_cost_cold AS (\n SELECT \n billing_period, \n bill_start_date,\n bill_payer_account_id,\n account_name,\n bucket,\n product_product_family, \n line_item_usage_type,\n line_item_line_item_type,\n unblended_cost,\n amortized_cost,\n product_line,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n {{ ref('infra__s3_cost_cold') }}\n), s3_cost_hot AS (\n SELECT \n billing_period, \n bill_start_date,\n bill_payer_account_id,\n account_name,\n bucket,\n product_product_family, \n line_item_usage_type,\n line_item_line_item_type,\n unblended_cost,\n amortized_cost,\n product_line,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n {{ ref('infra__s3_cost_hot') }}\n), s3_unioned_cost AS (\n SELECT \n *\n FROM s3_cost_cold \n UNION ALL \n SELECT \n *\n FROM s3_cost_hot\n), s3_cost AS (\n SELECT \n billing_period, \n bill_start_date,\n bill_payer_account_id,\n account_name,\n bucket,\n product_product_family, \n line_item_usage_type,\n line_item_line_item_type,\n unblended_cost,\n amortized_cost,\n CASE \n WHEN product_line = 'untagged' AND LOWER(bucket) LIKE '%coralogix%' THEN 'infra'\n WHEN product_line = 'untagged' AND (LOWER(bucket) LIKE '%dbt%' OR LOWER(bucket) LIKE '%yoda%' OR LOWER(bucket) LIKE '%hive%' OR LOWER(bucket) LIKE '%costpo%') THEN 'data'\n WHEN product_line = 'untagged' AND LOWER(bucket) LIKE '%unomi%' THEN 'platform'\n ELSE product_line\n END AS product_line,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n s3_unioned_cost\n)\n\nSELECT * FROM s3_cost", "language": "sql", "refs": [{"name": "infra__s3_cost_cold", "package": null, "version": null}, {"name": "infra__s3_cost_hot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__s3_cost_cold", "model.yoda.infra__s3_cost_hot"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__s3_cost/infra__s3_cost.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH s3_cost_cold AS (\n SELECT \n billing_period, \n bill_start_date,\n bill_payer_account_id,\n account_name,\n bucket,\n product_product_family, \n line_item_usage_type,\n line_item_line_item_type,\n unblended_cost,\n amortized_cost,\n product_line,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n dev_dkruh1.infra__s3_cost_cold\n), s3_cost_hot AS (\n SELECT \n billing_period, \n bill_start_date,\n bill_payer_account_id,\n account_name,\n bucket,\n product_product_family, \n line_item_usage_type,\n line_item_line_item_type,\n unblended_cost,\n amortized_cost,\n product_line,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n dev_dkruh1.infra__s3_cost_hot\n), s3_unioned_cost AS (\n SELECT \n *\n FROM s3_cost_cold \n UNION ALL \n SELECT \n *\n FROM s3_cost_hot\n), s3_cost AS (\n SELECT \n billing_period, \n bill_start_date,\n bill_payer_account_id,\n account_name,\n bucket,\n product_product_family, \n line_item_usage_type,\n line_item_line_item_type,\n unblended_cost,\n amortized_cost,\n CASE \n WHEN product_line = 'untagged' AND LOWER(bucket) LIKE '%coralogix%' THEN 'infra'\n WHEN product_line = 'untagged' AND (LOWER(bucket) LIKE '%dbt%' OR LOWER(bucket) LIKE '%yoda%' OR LOWER(bucket) LIKE '%hive%' OR LOWER(bucket) LIKE '%costpo%') THEN 'data'\n WHEN product_line = 'untagged' AND LOWER(bucket) LIKE '%unomi%' THEN 'platform'\n ELSE product_line\n END AS product_line,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n s3_unioned_cost\n)\n\nSELECT * FROM s3_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__s3_cost_cold": {"database": null, "schema": "dev_dkruh1", "name": "infra__s3_cost_cold", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.sql", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.sql", "unique_id": "model.yoda.infra__s3_cost_cold", "fqn": ["yoda", "infra", "marts", "infra__s3_cost_cold", "infra__s3_cost_cold"], "alias": "infra__s3_cost_cold", "checksum": {"name": "sha256", "checksum": "d1c631e991cd9bb04d3729c22b77a3147036a4dcb6fc16a3d2748b916fddf6f2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["billing_period", "bucket"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "AWS S3 Bucket Costs aggregations table based on `AWS Cost and Usage Reports` flushed into `aws-billing-report-costpo` bucket.\nThe table are created [here|https://github.com/YotpoLtd/costpo/blob/master/sql-views.sql#L15] and contains only unchanged data older than 2 months only", "columns": {"billing_period": {"name": "billing_period", "description": "Billing period date monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "Billing date for a specific S3 service (day granularity)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bucket": {"name": "bucket", "description": "Bucket Name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "Data Transfer, API Request, Storage, Fee", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_type": {"name": "line_item_usage_type", "description": "Out/In-Bytes, Requests-Tier,TimedStorage, StorageAnalytics, DataTransfer, Inventory-ObjectsListed, Retrieval, EarlyDelete-ByteHrs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "incremental", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["billing_period", "bucket"]}, "created_at": 1700082669.2890797, "relation_name": "dev_dkruh1.infra__s3_cost_cold", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=[\"billing_period\", \"bucket\"]\n )\n}}\nWITH s3_cost AS (\n\n SELECT \n billing_period, \n bill_start_date,\n bill_payer_account_id,\n account_name,\n product_line,\n bucket,\n product_product_family, \n line_item_usage_type,\n line_item_line_item_type,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n {{ ref('infra_stg__aws_s3_cost') }}\n)\n\nSELECT * FROM s3_cost\n\n{% if is_incremental() %}\n WHERE \n billing_period < DATEADD(month, -2, current_date()) AND billing_period > (SELECT case when MAX(billing_period) is null then '2020-01-01' ELSE MAX(billing_period) END FROM {{ this }})\n{% endif %}", "language": "sql", "refs": [{"name": "infra_stg__aws_s3_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__aws_s3_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH s3_cost AS (\n\n SELECT \n billing_period, \n bill_start_date,\n bill_payer_account_id,\n account_name,\n product_line,\n bucket,\n product_product_family, \n line_item_usage_type,\n line_item_line_item_type,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n dev_dkruh1.infra_stg__aws_s3_cost\n)\n\nSELECT * FROM s3_cost\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__s3_cost_hot": {"database": null, "schema": "dev_dkruh1", "name": "infra__s3_cost_hot", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.sql", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.sql", "unique_id": "model.yoda.infra__s3_cost_hot", "fqn": ["yoda", "infra", "marts", "infra__s3_cost_hot", "infra__s3_cost_hot"], "alias": "infra__s3_cost_hot", "checksum": {"name": "sha256", "checksum": "a1f07f4be5a4015837b94a68496ba17ec451d4f72baaa266b4f5664312fee7d3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["billing_period", "bucket"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "AWS S3 Bucket Costs aggregations table based on `AWS Cost and Usage Reports` flushed into `aws-billing-report-costpo` bucket.\nThe table are created [here|https://github.com/YotpoLtd/costpo/blob/master/sql-views.sql#L15] and contains data that is only for the last 2 months", "columns": {"billing_period": {"name": "billing_period", "description": "Billing period date monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "Billing date for a specific S3 service (day granularity)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bucket": {"name": "bucket", "description": "Bucket Name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "Data Transfer, API Request, Storage, Fee", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_type": {"name": "line_item_usage_type", "description": "Out/In-Bytes, Requests-Tier,TimedStorage, StorageAnalytics, DataTransfer, Inventory-ObjectsListed, Retrieval, EarlyDelete-ByteHrs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "table", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "partition_by": ["billing_period", "bucket"]}, "created_at": 1700082669.3087275, "relation_name": "dev_dkruh1.infra__s3_cost_hot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partition_by=[\"billing_period\", \"bucket\"]\n )\n}}\nWITH s3_cost AS (\n\n SELECT \n billing_period, \n bill_start_date,\n bill_payer_account_id,\n account_name,\n product_line,\n bucket,\n product_product_family, \n line_item_usage_type,\n line_item_line_item_type,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n {{ ref('infra_stg__aws_s3_cost') }}\n WHERE \n billing_period >= DATEADD(month, -2, current_date())\n)\n\nSELECT * FROM s3_cost", "language": "sql", "refs": [{"name": "infra_stg__aws_s3_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__aws_s3_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH s3_cost AS (\n\n SELECT \n billing_period, \n bill_start_date,\n bill_payer_account_id,\n account_name,\n product_line,\n bucket,\n product_product_family, \n line_item_usage_type,\n line_item_line_item_type,\n unblended_cost,\n amortized_cost,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature\n FROM \n dev_dkruh1.infra_stg__aws_s3_cost\n WHERE \n billing_period >= DATEADD(month, -2, current_date())\n)\n\nSELECT * FROM s3_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__s3_prefix_aggregations": {"database": null, "schema": "dev_dkruh1", "name": "infra__s3_prefix_aggregations", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.sql", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.sql", "unique_id": "model.yoda.infra__s3_prefix_aggregations", "fqn": ["yoda", "infra", "marts", "infra__s3_prefix_aggregations", "infra__s3_prefix_aggregations"], "alias": "infra__s3_prefix_aggregations", "checksum": {"name": "sha256", "checksum": "ac3bb708d65197c39eb0e10c70f357e0b96944ae53cc06fd164715c8eb059e8b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["year", "month", "day"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "S3 prefix aggregations table which is based s3 inventory report", "columns": {"prefix_split_size": {"name": "prefix_split_size", "description": "The prefix level (1,2..)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "year": {"name": "year", "description": "Year of the inventory", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "Month of the inventory", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "Day of the inventory", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "bucket": {"name": "bucket", "description": "Bucket name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storage_class": {"name": "storage_class", "description": "Total estimated cost based on storage class", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prefix": {"name": "prefix", "description": "Prefix (S3 path)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_objects": {"name": "total_objects", "description": "Amount of objects per prefix", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_size_in_GB": {"name": "total_size_in_GB", "description": "Amount of object's size per prefix in GB", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_size_in_MB": {"name": "avg_size_in_MB", "description": "Avarage prefix aggregation in MB", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "p20_in_MB": {"name": "p20_in_MB", "description": "Prefix aggregation 0.20 Percentile size in MB", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "p50_in_MB": {"name": "p50_in_MB", "description": "Prefix aggregation 0.50 Percentile size in MB", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "p75_in_MB": {"name": "p75_in_MB", "description": "Prefix aggregation 0.75 Percentile size in MB", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "p99_in_MB": {"name": "p99_in_MB", "description": "Prefix aggregation 0.99 Percentile size in MB", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "estimated_storage_cost": {"name": "estimated_storage_cost", "description": "Total estimated cost based on storage class", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "billing_day": {"name": "billing_day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "incremental", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["year", "month", "day"]}, "created_at": 1700082669.331684, "relation_name": "dev_dkruh1.infra__s3_prefix_aggregations", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=[\"year\", \"month\", \"day\"])\n}}\n\n\nWITH new_incremental_prefix_data AS (\n SELECT\n year,\n month,\n day,\n bucket,\n storage_class,\n prefix1,\n prefix2,\n size, \n product_line\n FROM {{ ref('infra_stg__aws_s3_inventory_data') }}\n\n{% if is_incremental() %}\n WHERE \n CONCAT(year, LPAD(month, 2, '0'), LPAD(day, 2, '0')) > (\n SELECT MAX(CONCAT(year, LPAD(month, 2, '0'), LPAD(day, 2, '0'))) \n FROM {{ this }}) \n{% endif %} \n), new_prefix_data AS (\n SELECT\n year,\n month,\n day,\n bucket,\n storage_class,\n prefix1,\n prefix2,\n size,\n product_line\n FROM \n new_incremental_prefix_data\n WHERE\n size > 0\n), s3_prefix_1_aggregation AS (\n SELECT \n year,\n month,\n day,\n bucket,\n storage_class,\n product_line,\n prefix1 as prefix,\n COUNT(*) as total_objects,\n round(sum(size)/1000000000,2) as total_size_in_GB,\n round(avg(size)/1000000,2) as avg_size_in_MB,\n round(percentile(size, 0.20)/1000000,2) as p20_in_MB,\n round(percentile(size, 0.50)/1000000,2) as p50_in_MB,\n round(percentile(size, 0.75)/1000000,2) as p75_in_MB,\n round(percentile(size, 0.99)/1000000,2) as p99_in_MB,\n round(sum(size)/1000000000*(case\n when storage_class = 'STANDARD' then 0.022\n when storage_class = 'STANDARD_IA' then 0.0125\n when storage_class = 'GLACIER' then 0.004\n else 0.022 end)) as estimated_storage_cost\n FROM new_prefix_data\n GROUP BY \n year,\n month,\n day,\n bucket,\n storage_class,\n product_line,\n prefix\n ORDER BY total_size_in_GB desc\n LIMIT 1000\n), s3_prefix_2_aggregation AS (\n SELECT \n year,\n month,\n day,\n bucket,\n storage_class,\n prefix2 as prefix,\n product_line,\n COUNT(*) as total_objects,\n round(sum(size)/1000000000,2) as total_size_in_GB,\n round(avg(size)/1000000,2) as avg_size_in_MB,\n round(percentile(size, 0.20)/1000000,2) as p20_in_MB,\n round(percentile(size, 0.50)/1000000,2) as p50_in_MB,\n round(percentile(size, 0.75)/1000000,2) as p75_in_MB,\n round(percentile(size, 0.99)/1000000,2) as p99_in_MB,\n round(sum(size)/1000000000*(case\n when storage_class = 'STANDARD' then 0.022\n when storage_class = 'STANDARD_IA' then 0.0125\n when storage_class = 'GLACIER' then 0.004\n else 0.022 end)) as estimated_storage_cost\n FROM new_prefix_data\n GROUP BY \n year,\n month,\n day,\n bucket,\n storage_class,\n product_line,\n prefix\n ORDER BY total_size_in_GB desc\n LIMIT 1000\n)\n\nSELECT 1 as prefix_split_size , *, make_date(year, month, day) AS billing_day FROM s3_prefix_1_aggregation\nUNION ALL\nSELECT 2 as prefix_split_size , *, make_date(year, month, day) AS billing_day FROM s3_prefix_2_aggregation", "language": "sql", "refs": [{"name": "infra_stg__aws_s3_inventory_data", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__aws_s3_inventory_data"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH new_incremental_prefix_data AS (\n SELECT\n year,\n month,\n day,\n bucket,\n storage_class,\n prefix1,\n prefix2,\n size, \n product_line\n FROM dev_dkruh1.infra_stg__aws_s3_inventory_data\n\n \n), new_prefix_data AS (\n SELECT\n year,\n month,\n day,\n bucket,\n storage_class,\n prefix1,\n prefix2,\n size,\n product_line\n FROM \n new_incremental_prefix_data\n WHERE\n size > 0\n), s3_prefix_1_aggregation AS (\n SELECT \n year,\n month,\n day,\n bucket,\n storage_class,\n product_line,\n prefix1 as prefix,\n COUNT(*) as total_objects,\n round(sum(size)/1000000000,2) as total_size_in_GB,\n round(avg(size)/1000000,2) as avg_size_in_MB,\n round(percentile(size, 0.20)/1000000,2) as p20_in_MB,\n round(percentile(size, 0.50)/1000000,2) as p50_in_MB,\n round(percentile(size, 0.75)/1000000,2) as p75_in_MB,\n round(percentile(size, 0.99)/1000000,2) as p99_in_MB,\n round(sum(size)/1000000000*(case\n when storage_class = 'STANDARD' then 0.022\n when storage_class = 'STANDARD_IA' then 0.0125\n when storage_class = 'GLACIER' then 0.004\n else 0.022 end)) as estimated_storage_cost\n FROM new_prefix_data\n GROUP BY \n year,\n month,\n day,\n bucket,\n storage_class,\n product_line,\n prefix\n ORDER BY total_size_in_GB desc\n LIMIT 1000\n), s3_prefix_2_aggregation AS (\n SELECT \n year,\n month,\n day,\n bucket,\n storage_class,\n prefix2 as prefix,\n product_line,\n COUNT(*) as total_objects,\n round(sum(size)/1000000000,2) as total_size_in_GB,\n round(avg(size)/1000000,2) as avg_size_in_MB,\n round(percentile(size, 0.20)/1000000,2) as p20_in_MB,\n round(percentile(size, 0.50)/1000000,2) as p50_in_MB,\n round(percentile(size, 0.75)/1000000,2) as p75_in_MB,\n round(percentile(size, 0.99)/1000000,2) as p99_in_MB,\n round(sum(size)/1000000000*(case\n when storage_class = 'STANDARD' then 0.022\n when storage_class = 'STANDARD_IA' then 0.0125\n when storage_class = 'GLACIER' then 0.004\n else 0.022 end)) as estimated_storage_cost\n FROM new_prefix_data\n GROUP BY \n year,\n month,\n day,\n bucket,\n storage_class,\n product_line,\n prefix\n ORDER BY total_size_in_GB desc\n LIMIT 1000\n)\n\nSELECT 1 as prefix_split_size , *, make_date(year, month, day) AS billing_day FROM s3_prefix_1_aggregation\nUNION ALL\nSELECT 2 as prefix_split_size , *, make_date(year, month, day) AS billing_day FROM s3_prefix_2_aggregation", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__s3_storage_data_summary": {"database": null, "schema": "dev_dkruh1", "name": "infra__s3_storage_data_summary", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.sql", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.sql", "unique_id": "model.yoda.infra__s3_storage_data_summary", "fqn": ["yoda", "infra", "marts", "infra__s3_storage_data_summary", "infra__s3_storage_data_summary"], "alias": "infra__s3_storage_data_summary", "checksum": {"name": "sha256", "checksum": "5f3622e6b9ada23c1e53797039aefe48723680e5f49f7030b442494c9194bfa2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["year", "month", "day"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "AWS S3 Storage aggregation based on inventory", "columns": {"year": {"name": "year", "description": "Year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "Month of the year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "Day of the week", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "bucket": {"name": "bucket", "description": "Bucket name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storage_class": {"name": "storage_class", "description": "Storage class (STANDARD, STANDARD_IA, GLACIER)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_objects": {"name": "total_objects", "description": "Total objects for a given day", "meta": {"looker": {"measures": {"sum_total_objects": {"name": "sum_total_objects", "type": "sum", "value_format_name": "decimal_0"}}}}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_size_in_GB": {"name": "total_size_in_GB", "description": "Total object size for a given day", "meta": {"looker": {"measures": {"sum_total_size_in_GB": {"name": "sum_total_size_in_GB", "type": "sum", "value_format_name": "decimal_0"}}}}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_size_in_MB": {"name": "avg_size_in_MB", "description": "Avarage size for a given day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "p20_in_MB": {"name": "p20_in_MB", "description": "20 percentile size for a given day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "p50_in_MB": {"name": "p50_in_MB", "description": "50 percentile size for a given day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "p75_in_MB": {"name": "p75_in_MB", "description": "75 percentile size for a given day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "p99_in_MB": {"name": "p99_in_MB", "description": "99 percentile size for a given day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "billing_day": {"name": "billing_day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "incremental", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["year", "month", "day"]}, "created_at": 1700082669.353032, "relation_name": "dev_dkruh1.infra__s3_storage_data_summary", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=[\"year\", \"month\", \"day\"])\n}}\n\nWITH s3_inventory_data AS (\n\n SELECT \n year,\n month,\n day,\n bucket,\n storage_class,\n product_line,\n COUNT(*) as total_objects,\n round(sum(size)/1000000000,2) as total_size_in_GB,\n round(avg(size)/1000000,2) as avg_size_in_MB,\n round(percentile(size, 0.20)/1000000,2) as p20_in_MB,\n round(percentile(size, 0.50)/1000000,2) as p50_in_MB,\n round(percentile(size, 0.75)/1000000,2) as p75_in_MB,\n round(percentile(size, 0.99)/1000000,2) as p99_in_MB\n FROM {{ ref('infra_stg__aws_s3_inventory_data') }}\n GROUP BY \n year, \n month,\n day,\n bucket,\n storage_class,\n product_line\n)\n\nSELECT *, make_date(year, month, day) AS billing_day FROM s3_inventory_data\n\n{% if is_incremental() %}\n WHERE \n CONCAT(year, LPAD(month, 2, '0'), LPAD(day, 2, '0')) > (\n SELECT MAX(CONCAT(year, LPAD(month, 2, '0'), LPAD(day, 2, '0'))) \n FROM {{ this }}) \n{% endif %}", "language": "sql", "refs": [{"name": "infra_stg__aws_s3_inventory_data", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__aws_s3_inventory_data"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\nWITH s3_inventory_data AS (\n\n SELECT \n year,\n month,\n day,\n bucket,\n storage_class,\n product_line,\n COUNT(*) as total_objects,\n round(sum(size)/1000000000,2) as total_size_in_GB,\n round(avg(size)/1000000,2) as avg_size_in_MB,\n round(percentile(size, 0.20)/1000000,2) as p20_in_MB,\n round(percentile(size, 0.50)/1000000,2) as p50_in_MB,\n round(percentile(size, 0.75)/1000000,2) as p75_in_MB,\n round(percentile(size, 0.99)/1000000,2) as p99_in_MB\n FROM dev_dkruh1.infra_stg__aws_s3_inventory_data\n GROUP BY \n year, \n month,\n day,\n bucket,\n storage_class,\n product_line\n)\n\nSELECT *, make_date(year, month, day) AS billing_day FROM s3_inventory_data\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__snowflake_automatic_clustering_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__snowflake_automatic_clustering_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.sql", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.sql", "unique_id": "model.yoda.infra__snowflake_automatic_clustering_cost", "fqn": ["yoda", "infra", "marts", "infra__snowflake_automatic_clustering_cost", "infra__snowflake_automatic_clustering_cost"], "alias": "infra__snowflake_automatic_clustering_cost", "checksum": {"name": "sha256", "checksum": "b0bc4e2a043be238d8593dba2e1f2ef2a1a12ae13b2afbec17134c32c2e74fe4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Snowflake automatic clustering daily costs", "columns": {"account": {"name": "account", "description": "Snowflake account (product / HR)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "Daily date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "database_name": {"name": "database_name", "description": "Database name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "schema_name": {"name": "schema_name", "description": "Schem name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "table_name": {"name": "table_name", "description": "Table name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_staging": {"name": "is_staging", "description": "Whether the table is a staging one", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_upsolver": {"name": "is_upsolver", "description": "Whether the table is a temporary upsolver one", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "agg_credits_used": {"name": "agg_credits_used", "description": "Overall credits used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "agg_cost": {"name": "agg_cost", "description": "Cost (Credit * 2.58)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "agg_num_bytes_reclustered": {"name": "agg_num_bytes_reclustered", "description": "Amount of bytes which were invloved in the clustering", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "agg_num_rows_reclustered": {"name": "agg_num_rows_reclustered", "description": "Amount of rows which were invloved in the clustering", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_line": {"name": "product_line", "description": "Owner of the table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.3767767, "relation_name": "dev_dkruh1.infra__snowflake_automatic_clustering_cost", "raw_code": "WITH tags AS (\n SELECT \n object_schema,\n tag_value,\n object_name\n FROM \n {{ ref('infra_stg__snowflake_tag_references') }}\n WHERE \n tag_name = 'PRODUCTLINE' AND\n domain = 'TABLE' AND\n object_deleted is NULL\n), automatic_clustering_cost AS (\n SELECT \n automatic_clustering.start_time,\n\t\tautomatic_clustering.end_time,\n\t\tautomatic_clustering.table_id,\n\t\tautomatic_clustering.credits_used,\n\t\tautomatic_clustering.database_id,\n\t\tautomatic_clustering.database_name,\n\t\tautomatic_clustering.num_bytes_reclustered,\n\t\tautomatic_clustering.num_rows_reclustered,\n\t\tautomatic_clustering.schema_id,\n\t\tautomatic_clustering.schema_name,\n\t\tautomatic_clustering.table_name,\n\t\tautomatic_clustering.account,\n tags.object_schema,\n tags.tag_value,\n tags.object_name\n FROM \n {{ ref('infra_stg__snowflake_automatic_clustering_history') }} AS automatic_clustering\n LEFT JOIN tags\n ON \n (tags.object_name = automatic_clustering.table_name OR reverse(split(automatic_clustering.table_name,'_STAGING_'))[1] = tags.object_name)\n AND tags.object_schema = automatic_clustering.schema_name\n), groupped_cost AS (\n SELECT \n account,\n DATE(start_time) as date,\n database_name,\n schema_name,\n table_name,\n FIRST(\n CASE \n WHEN table_name like '%_STAGING_%' THEN 1\n ELSE 0 \n END\n ) AS is_staging,\n FIRST(\n CASE \n WHEN table_name like 'UPSOLVER_%' THEN 1\n ELSE 0 \n END\n ) AS is_upsolver,\n\t\tSUM(credits_used) AS agg_credits_used,\n SUM(credits_used) * 2.58 AS agg_cost,\n\t\tSUM(num_bytes_reclustered) AS agg_num_bytes_reclustered,\n\t\tSUM(num_rows_reclustered) AS agg_num_rows_reclustered,\n\t\tFIRST(\n CASE \n WHEN tag_value IS NOT NULL THEN tag_value\n WHEN tag_value IS NULL AND account = 'hr' THEN 'hr'\n ELSE 'untagged'\n END\n ) AS product_line\n FROM automatic_clustering_cost\n GROUP BY 1, 2, 3, 4, 5\n)\n\nSELECT \n account, \n date,\n database_name,\n schema_name,\n table_name,\n is_staging,\n is_upsolver,\n\tagg_credits_used,\n agg_cost,\n\tagg_num_bytes_reclustered,\n\tagg_num_rows_reclustered,\n\tproduct_line\n FROM groupped_cost", "language": "sql", "refs": [{"name": "infra_stg__snowflake_tag_references", "package": null, "version": null}, {"name": "infra_stg__snowflake_automatic_clustering_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__snowflake_tag_references", "model.yoda.infra_stg__snowflake_automatic_clustering_history"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.sql", "compiled": true, "compiled_code": "WITH tags AS (\n SELECT \n object_schema,\n tag_value,\n object_name\n FROM \n dev_dkruh1.infra_stg__snowflake_tag_references\n WHERE \n tag_name = 'PRODUCTLINE' AND\n domain = 'TABLE' AND\n object_deleted is NULL\n), automatic_clustering_cost AS (\n SELECT \n automatic_clustering.start_time,\n\t\tautomatic_clustering.end_time,\n\t\tautomatic_clustering.table_id,\n\t\tautomatic_clustering.credits_used,\n\t\tautomatic_clustering.database_id,\n\t\tautomatic_clustering.database_name,\n\t\tautomatic_clustering.num_bytes_reclustered,\n\t\tautomatic_clustering.num_rows_reclustered,\n\t\tautomatic_clustering.schema_id,\n\t\tautomatic_clustering.schema_name,\n\t\tautomatic_clustering.table_name,\n\t\tautomatic_clustering.account,\n tags.object_schema,\n tags.tag_value,\n tags.object_name\n FROM \n dev_dkruh1.infra_stg__snowflake_automatic_clustering_history AS automatic_clustering\n LEFT JOIN tags\n ON \n (tags.object_name = automatic_clustering.table_name OR reverse(split(automatic_clustering.table_name,'_STAGING_'))[1] = tags.object_name)\n AND tags.object_schema = automatic_clustering.schema_name\n), groupped_cost AS (\n SELECT \n account,\n DATE(start_time) as date,\n database_name,\n schema_name,\n table_name,\n FIRST(\n CASE \n WHEN table_name like '%_STAGING_%' THEN 1\n ELSE 0 \n END\n ) AS is_staging,\n FIRST(\n CASE \n WHEN table_name like 'UPSOLVER_%' THEN 1\n ELSE 0 \n END\n ) AS is_upsolver,\n\t\tSUM(credits_used) AS agg_credits_used,\n SUM(credits_used) * 2.58 AS agg_cost,\n\t\tSUM(num_bytes_reclustered) AS agg_num_bytes_reclustered,\n\t\tSUM(num_rows_reclustered) AS agg_num_rows_reclustered,\n\t\tFIRST(\n CASE \n WHEN tag_value IS NOT NULL THEN tag_value\n WHEN tag_value IS NULL AND account = 'hr' THEN 'hr'\n ELSE 'untagged'\n END\n ) AS product_line\n FROM automatic_clustering_cost\n GROUP BY 1, 2, 3, 4, 5\n)\n\nSELECT \n account, \n date,\n database_name,\n schema_name,\n table_name,\n is_staging,\n is_upsolver,\n\tagg_credits_used,\n agg_cost,\n\tagg_num_bytes_reclustered,\n\tagg_num_rows_reclustered,\n\tproduct_line\n FROM groupped_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__snowflake_contract_details": {"database": null, "schema": "dev_dkruh1", "name": "infra__snowflake_contract_details", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.sql", "original_file_path": "models/infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.sql", "unique_id": "model.yoda.infra__snowflake_contract_details", "fqn": ["yoda", "infra", "marts", "infra__snowflake_contract_details", "infra__snowflake_contract_details"], "alias": "infra__snowflake_contract_details", "checksum": {"name": "sha256", "checksum": "5542bdbb770283997160994654ef6621136e6cae6b88863507b09c11ac282ad5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra", "deprecated"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra", "deprecated"], "description": "Table containing informatino about Snowflake contract", "columns": {"yearly_budget": {"name": "yearly_budget", "description": "Yearly budget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "start_date": {"name": "start_date", "description": "Contract start time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "end_date": {"name": "end_date", "description": "Contract end time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra", "deprecated"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.388378, "relation_name": "dev_dkruh1.infra__snowflake_contract_details", "raw_code": "SELECT \n 206400 as yearly_budget,\n DATE('2022-12-01') AS start_date,\n DATE('2023-11-01') AS end_date", "language": "sql", "refs": [], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": []}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.sql", "compiled": true, "compiled_code": "SELECT \n 206400 as yearly_budget,\n DATE('2022-12-01') AS start_date,\n DATE('2023-11-01') AS end_date", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__snowflake_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__snowflake_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost/infra__snowflake_cost.sql", "original_file_path": "models/infra/marts/infra__snowflake_cost/infra__snowflake_cost.sql", "unique_id": "model.yoda.infra__snowflake_cost", "fqn": ["yoda", "infra", "marts", "infra__snowflake_cost", "infra__snowflake_cost"], "alias": "infra__snowflake_cost", "checksum": {"name": "sha256", "checksum": "0a52c2de69ed50490e248b86fa07dea195d96be2bc3624c1d52e5c8f22efe570"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Snowflake cost data", "columns": {"account": {"name": "account", "description": "Account (RND/HR)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cost": {"name": "cost", "description": "Overall cost (warehouse + materialized views + storage + autoclustering)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__snowflake_cost/infra__snowflake_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "view", "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.400645, "relation_name": "dev_dkruh1.infra__snowflake_cost", "raw_code": "{{ config(\n materialized = dbt_data_applications.get_table_materialization('view', 'view'))\n}}\n\n\nWITH automatic_clustering_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM\n {{ref('infra__snowflake_automatic_clustering_cost')}}\n GROUP BY \n 1,2,3\n), storage_cost AS (\n SELECT \n account,\n DATE(usage_date) AS date, \n \"shared\" AS product_line,\n SUM(agg_billable_cost) AS cost\n FROM \n {{ref('infra__snowflake_storage_cost')}}\n GROUP BY \n 1,2,3\n), views_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n {{ref('infra__snowflake_views_cost')}}\n GROUP BY \n 1,2,3\n), warehouse_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n {{ref('infra__snowflake_warehouse_cost')}}\n GROUP BY\n 1,2,3\n)\nSELECT * \nFROM automatic_clustering_cost\nUNION ALL\nSELECT * \nFROM storage_cost\nUNION ALL\nSELECT * \nFROM views_cost\nUNION ALL\nSELECT * \nFROM warehouse_cost", "language": "sql", "refs": [{"name": "infra__snowflake_automatic_clustering_cost", "package": null, "version": null}, {"name": "infra__snowflake_storage_cost", "package": null, "version": null}, {"name": "infra__snowflake_views_cost", "package": null, "version": null}, {"name": "infra__snowflake_warehouse_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__snowflake_automatic_clustering_cost", "model.yoda.infra__snowflake_storage_cost", "model.yoda.infra__snowflake_views_cost", "model.yoda.infra__snowflake_warehouse_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__snowflake_cost/infra__snowflake_cost.sql", "compiled": true, "compiled_code": "\n\n\nWITH automatic_clustering_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM\n dev_dkruh1.infra__snowflake_automatic_clustering_cost\n GROUP BY \n 1,2,3\n), storage_cost AS (\n SELECT \n account,\n DATE(usage_date) AS date, \n \"shared\" AS product_line,\n SUM(agg_billable_cost) AS cost\n FROM \n dev_dkruh1.infra__snowflake_storage_cost\n GROUP BY \n 1,2,3\n), views_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n dev_dkruh1.infra__snowflake_views_cost\n GROUP BY \n 1,2,3\n), warehouse_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n dev_dkruh1.infra__snowflake_warehouse_cost\n GROUP BY\n 1,2,3\n)\nSELECT * \nFROM automatic_clustering_cost\nUNION ALL\nSELECT * \nFROM storage_cost\nUNION ALL\nSELECT * \nFROM views_cost\nUNION ALL\nSELECT * \nFROM warehouse_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__snowflake_cost_summary": {"database": null, "schema": "dev_dkruh1", "name": "infra__snowflake_cost_summary", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.sql", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.sql", "unique_id": "model.yoda.infra__snowflake_cost_summary", "fqn": ["yoda", "infra", "marts", "infra__snowflake_cost_summary", "infra__snowflake_cost_summary"], "alias": "infra__snowflake_cost_summary", "checksum": {"name": "sha256", "checksum": "def4d167090e8b760b9458923c639365a45147e9efe4480934439bd27a7a5630"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra", "deprecated"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra", "deprecated"], "description": "Table summarizing monthly snowflake cost with forcasting", "columns": {"date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "year": {"name": "year", "description": "Year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "days_count": {"name": "days_count", "description": "Cumulative days from the begining of the contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_in_month": {"name": "days_in_month", "description": "Current month days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "months_count": {"name": "months_count", "description": "Cumulative months from the begining of the contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "months_left": {"name": "months_left", "description": "Months left till the end of the contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_closed_month": {"name": "is_closed_month", "description": "Is month closed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yearly_budget": {"name": "yearly_budget", "description": "Yearly budget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "contract_start_time": {"name": "contract_start_time", "description": "Contract start time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "contract_end_time": {"name": "contract_end_time", "description": "Contract end time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "monthly_cost": {"name": "monthly_cost", "description": "Monthly cost to Snowflake", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "prev_monthly_cost": {"name": "prev_monthly_cost", "description": "Previous month cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cumulative_cost_without_current_month": {"name": "cumulative_cost_without_current_month", "description": "Cumulative monthly cost without the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cumulative_cost_with_current_month": {"name": "cumulative_cost_with_current_month", "description": "Cumulative monthly cost with the current month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "daily_avg_cost": {"name": "daily_avg_cost", "description": "Daily avarage cost per month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "monthly_burn_rate": {"name": "monthly_burn_rate", "description": "Monthyl burn rate (AVG of all closed + current months)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "budget_left": {"name": "budget_left", "description": "Budget left from the begining of the current contract (with history)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "calculated_monthly_budget": {"name": "calculated_monthly_budget", "description": "Adaptive budget based on closed months and budget left", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "estimated_months_left_for_renewal_last_month": {"name": "estimated_months_left_for_renewal_last_month", "description": "Estimated months left based on the last month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "estimated_months_left_for_renewal_burn_rate": {"name": "estimated_months_left_for_renewal_burn_rate", "description": "Estimated months left based on the burn rate", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra", "deprecated"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.4256184, "relation_name": "dev_dkruh1.infra__snowflake_cost_summary", "raw_code": "WITH budget AS (\n SELECT\n yearly_budget,\n start_date,\n end_date \n FROM\n {{ ref('infra__snowflake_contract_details') }}\n), months_seq AS (\n SELECT\n CAST(MONTHS_BETWEEN(end_date, start_date) AS INT) AS num_months\n FROM \n budget\n), months AS (\n SELECT\n ADD_MONTHS(budget.start_date, t.s) AS date,\n YEAR(ADD_MONTHS(budget.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(budget.start_date, t.s)) AS month,\n DAY(LAST_DAY(ADD_MONTHS(budget.start_date, s))) AS days_in_month\n FROM \n budget\n CROSS JOIN (SELECT EXPLODE(sequence(0, num_months)) AS s FROM months_seq) t\n), burn AS (\n SELECT \n date,\n SUM(warehouse_cost + views_cost + automatic_clustering_cost + storage_cost) as monthly_cost\n FROM \n {{ ref('infra__snowflake_monthly_cost') }}, budget as d\n WHERE\n date BETWEEN d.start_date AND d.end_date \n GROUP BY \n date\n), cost_and_months AS (\n SELECT \n months.date,\n coalesce(monthly_cost, 0) as monthly_cost,\n year,\n month,\n days_in_month,\n SUM(1) OVER (ORDER BY months.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS months_count,\n SUM(days_in_month) OVER (ORDER BY months.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS days_count,\n CASE WHEN make_date(year,month,days_in_month) >= date(now()) THEN FALSE ELSE TRUE END AS is_closed_month,\n COALESCE(LAG(monthly_cost) OVER (ORDER BY months.date), 0) AS prev_monthly_cost,\n budget.yearly_budget\n FROM months, budget\n LEFT JOIN burn\n ON burn.date = months.date\n), prepare_for_forcast AS (\n SELECT \n *,\n SUM(prev_monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_without_current_month,\n SUM(monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_with_current_month,\n CASE WHEN is_closed_month THEN 12 - months_count + 1 ELSE EXTRACT(MONTH FROM budget.end_date) - EXTRACT(MONTH FROM now()) + 1 END AS months_left\n FROM \n cost_and_months, budget\n), cost_forcast AS (\n SELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n budget.*,\n monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n prev_monthly_cost,\n CASE \n WHEN year = YEAR(now()) AND MONTH(now()) = month THEN monthly_cost/DAY(now())\n ELSE monthly_cost/days_in_month END\n AS daily_avg_cost,\n budget.yearly_budget - cumulative_cost_without_current_month AS budget_left\n FROM\n prepare_for_forcast, budget\n), cost_forcast_with_estimated_months_left AS (\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n start_date,\n end_date,\n monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n budget_left,\n prev_monthly_cost,\n CASE WHEN is_closed_month THEN (yearly_budget - (budget_left - monthly_cost))/months_count ELSE 0 END AS monthly_burn_rate\nFROM \n cost_forcast\n), final as(\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n start_date AS contract_start_time,\n end_date AS contract_end_time,\n monthly_cost,\n prev_monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n monthly_burn_rate,\n budget_left,\n budget_left / months_left as calculated_monthly_budget,\n CASE WHEN is_closed_month THEN CEILING(budget_left / monthly_cost) ELSE 0 END AS estimated_months_left_for_renewal_last_month,\n CASE WHEN is_closed_month THEN CEILING(budget_left / monthly_burn_rate) ELSE 0 END AS estimated_months_left_for_renewal_burn_rate\nFROM \n cost_forcast_with_estimated_months_left\n)\n\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n contract_start_time,\n contract_end_time,\n monthly_cost,\n prev_monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n monthly_burn_rate,\n budget_left,\n calculated_monthly_budget,\n estimated_months_left_for_renewal_last_month,\n estimated_months_left_for_renewal_burn_rate \nFROM \n final", "language": "sql", "refs": [{"name": "infra__snowflake_contract_details", "package": null, "version": null}, {"name": "infra__snowflake_monthly_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__snowflake_contract_details", "model.yoda.infra__snowflake_monthly_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.sql", "compiled": true, "compiled_code": "WITH budget AS (\n SELECT\n yearly_budget,\n start_date,\n end_date \n FROM\n dev_dkruh1.infra__snowflake_contract_details\n), months_seq AS (\n SELECT\n CAST(MONTHS_BETWEEN(end_date, start_date) AS INT) AS num_months\n FROM \n budget\n), months AS (\n SELECT\n ADD_MONTHS(budget.start_date, t.s) AS date,\n YEAR(ADD_MONTHS(budget.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(budget.start_date, t.s)) AS month,\n DAY(LAST_DAY(ADD_MONTHS(budget.start_date, s))) AS days_in_month\n FROM \n budget\n CROSS JOIN (SELECT EXPLODE(sequence(0, num_months)) AS s FROM months_seq) t\n), burn AS (\n SELECT \n date,\n SUM(warehouse_cost + views_cost + automatic_clustering_cost + storage_cost) as monthly_cost\n FROM \n dev_dkruh1.infra__snowflake_monthly_cost, budget as d\n WHERE\n date BETWEEN d.start_date AND d.end_date \n GROUP BY \n date\n), cost_and_months AS (\n SELECT \n months.date,\n coalesce(monthly_cost, 0) as monthly_cost,\n year,\n month,\n days_in_month,\n SUM(1) OVER (ORDER BY months.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS months_count,\n SUM(days_in_month) OVER (ORDER BY months.date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS days_count,\n CASE WHEN make_date(year,month,days_in_month) >= date(now()) THEN FALSE ELSE TRUE END AS is_closed_month,\n COALESCE(LAG(monthly_cost) OVER (ORDER BY months.date), 0) AS prev_monthly_cost,\n budget.yearly_budget\n FROM months, budget\n LEFT JOIN burn\n ON burn.date = months.date\n), prepare_for_forcast AS (\n SELECT \n *,\n SUM(prev_monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_without_current_month,\n SUM(monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_with_current_month,\n CASE WHEN is_closed_month THEN 12 - months_count + 1 ELSE EXTRACT(MONTH FROM budget.end_date) - EXTRACT(MONTH FROM now()) + 1 END AS months_left\n FROM \n cost_and_months, budget\n), cost_forcast AS (\n SELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n budget.*,\n monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n prev_monthly_cost,\n CASE \n WHEN year = YEAR(now()) AND MONTH(now()) = month THEN monthly_cost/DAY(now())\n ELSE monthly_cost/days_in_month END\n AS daily_avg_cost,\n budget.yearly_budget - cumulative_cost_without_current_month AS budget_left\n FROM\n prepare_for_forcast, budget\n), cost_forcast_with_estimated_months_left AS (\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n start_date,\n end_date,\n monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n budget_left,\n prev_monthly_cost,\n CASE WHEN is_closed_month THEN (yearly_budget - (budget_left - monthly_cost))/months_count ELSE 0 END AS monthly_burn_rate\nFROM \n cost_forcast\n), final as(\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n start_date AS contract_start_time,\n end_date AS contract_end_time,\n monthly_cost,\n prev_monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n monthly_burn_rate,\n budget_left,\n budget_left / months_left as calculated_monthly_budget,\n CASE WHEN is_closed_month THEN CEILING(budget_left / monthly_cost) ELSE 0 END AS estimated_months_left_for_renewal_last_month,\n CASE WHEN is_closed_month THEN CEILING(budget_left / monthly_burn_rate) ELSE 0 END AS estimated_months_left_for_renewal_burn_rate\nFROM \n cost_forcast_with_estimated_months_left\n)\n\nSELECT \n date,\n year,\n month,\n days_count,\n days_in_month,\n months_count,\n months_left,\n is_closed_month,\n yearly_budget,\n contract_start_time,\n contract_end_time,\n monthly_cost,\n prev_monthly_cost,\n cumulative_cost_without_current_month,\n cumulative_cost_with_current_month,\n daily_avg_cost,\n monthly_burn_rate,\n budget_left,\n calculated_monthly_budget,\n estimated_months_left_for_renewal_last_month,\n estimated_months_left_for_renewal_burn_rate \nFROM \n final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__snowflake_daily_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__snowflake_daily_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.sql", "original_file_path": "models/infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.sql", "unique_id": "model.yoda.infra__snowflake_daily_cost", "fqn": ["yoda", "infra", "marts", "infra__snowflake_daily_cost", "infra__snowflake_daily_cost"], "alias": "infra__snowflake_daily_cost", "checksum": {"name": "sha256", "checksum": "2355395c0228cb00207143b9b7e3e6e749bac44db70ccdc150b8d9277ca07ca4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Snowflake daily cost", "columns": {"date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "account": {"name": "account", "description": "Snowflake account (RND / HR)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "Product line that is tagged with the resource", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "warehouse_cost": {"name": "warehouse_cost", "description": "Daily warehousing cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "views_cost": {"name": "views_cost", "description": "Daily materialized views cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "automatic_clustering_cost": {"name": "automatic_clustering_cost", "description": "Daily automatic clustering cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "storage_cost": {"name": "storage_cost", "description": "Daily storage cost (total used divided by the amount of closed days)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.4399207, "relation_name": "dev_dkruh1.infra__snowflake_daily_cost", "raw_code": "WITH automatic_clustering_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM\n {{ref('infra__snowflake_automatic_clustering_cost')}}\n GROUP BY \n 1,2,3\n), storage_cost AS (\n SELECT \n account,\n DATE(usage_date) AS date, \n \"shared\" AS product_line,\n SUM(agg_billable_cost) AS cost\n FROM \n {{ref('infra__snowflake_storage_cost')}}\n GROUP BY \n 1,2,3\n), views_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n {{ref('infra__snowflake_views_cost')}}\n GROUP BY \n 1,2,3\n), warehouse_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n {{ref('infra__snowflake_warehouse_cost')}}\n GROUP BY\n 1,2,3\n), all_prodcut_lines AS (\n SELECT distinct(product_line) AS product_line FROM warehouse_cost\n UNION\n SELECT distinct(product_line) AS product_line FROM views_cost\n UNION\n SELECT distinct(product_line) AS product_line FROM storage_cost\n UNION\n SELECT distinct(product_line) AS product_line FROM automatic_clustering_cost\n), all_accounts AS (\n SELECT distinct(account) AS account FROM warehouse_cost\n UNION\n SELECT distinct(account) AS account FROM views_cost\n UNION\n SELECT distinct(account) AS account FROM storage_cost\n UNION\n SELECT distinct(account) AS account FROM automatic_clustering_cost\n), dates AS (\n SELECT\n start_date,\n end_date \n FROM\n {{ ref('infra__snowflake_contract_details') }}\n), months_seq AS (\n SELECT \n CAST(MONTHS_BETWEEN(end_date, start_date) AS INT) AS num_months\n FROM \n dates\n), months AS (\n SELECT \n YEAR(ADD_MONTHS(dates.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(dates.start_date, t.s)) AS month,\n DATE_ADD(dates.start_date, t.s) AS date,\n DAY(LAST_DAY(ADD_MONTHS(dates.start_date, s))) AS days_in_month\n FROM \n dates\n CROSS JOIN (\n SELECT explode(sequence(0, 364)) AS s\n FROM months_seq\n ) t\n), all_dates_with_product_line AS (\n SELECT \n * \n FROM \n all_prodcut_lines\n CROSS JOIN\n (SELECT * FROM months) z\n CROSS JOIN \n (SELECT * FROM all_accounts) zz\n), dates_with_product_line AS (\n SELECT \n *\n FROM \n all_dates_with_product_line\n WHERE \n all_dates_with_product_line.date < date(current_date())\n), aggregated_cost AS (\n SELECT \n dates_with_product_line.date,\n dates_with_product_line.year,\n dates_with_product_line.month,\n dates_with_product_line.days_in_month,\n dates_with_product_line.product_line,\n COALESCE(warehouse_cost.account, automatic_clustering_cost.account,views_cost.account,storage_cost.account,'unkonwn') AS account,\n CASE WHEN warehouse_cost.cost IS NULL THEN 0 ELSE warehouse_cost.cost END AS warehouse_cost,\n CASE WHEN automatic_clustering_cost.cost IS NULL THEN 0 ELSE automatic_clustering_cost.cost END AS automatic_clustering_cost,\n CASE WHEN views_cost.cost IS NULL THEN 0 ELSE views_cost.cost END AS views_cost,\n CASE WHEN storage_cost.cost IS NULL THEN 0 ELSE storage_cost.cost END AS storage_cost\n FROM \n dates_with_product_line\n LEFT JOIN warehouse_cost \n ON dates_with_product_line.date = warehouse_cost.date and dates_with_product_line.product_line = warehouse_cost.product_line and dates_with_product_line.account = warehouse_cost.account\n LEFT JOIN views_cost \n ON dates_with_product_line.date = views_cost.date and dates_with_product_line.product_line = views_cost.product_line and dates_with_product_line.account = views_cost.account\n LEFT JOIN automatic_clustering_cost \n ON dates_with_product_line.date = automatic_clustering_cost.date and dates_with_product_line.product_line = automatic_clustering_cost.product_line and dates_with_product_line.account = automatic_clustering_cost.account\n LEFT JOIN storage_cost \n ON dates_with_product_line.date = storage_cost.date and dates_with_product_line.product_line = storage_cost.product_line and dates_with_product_line.account = storage_cost.account\n) \n\nSELECT \n date, \n account, \n product_line,\n SUM(warehouse_cost) AS warehouse_cost, \n SUM(views_cost) AS views_cost, \n SUM(automatic_clustering_cost) AS automatic_clustering_cost, \n SUM(storage_cost) AS storage_cost\nFROM \n aggregated_cost \nWHERE \n account <> 'unkonwn'\nGROUP BY \n date, \n account,\n product_line", "language": "sql", "refs": [{"name": "infra__snowflake_automatic_clustering_cost", "package": null, "version": null}, {"name": "infra__snowflake_storage_cost", "package": null, "version": null}, {"name": "infra__snowflake_views_cost", "package": null, "version": null}, {"name": "infra__snowflake_warehouse_cost", "package": null, "version": null}, {"name": "infra__snowflake_contract_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__snowflake_automatic_clustering_cost", "model.yoda.infra__snowflake_storage_cost", "model.yoda.infra__snowflake_views_cost", "model.yoda.infra__snowflake_warehouse_cost", "model.yoda.infra__snowflake_contract_details"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.sql", "compiled": true, "compiled_code": "WITH automatic_clustering_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM\n dev_dkruh1.infra__snowflake_automatic_clustering_cost\n GROUP BY \n 1,2,3\n), storage_cost AS (\n SELECT \n account,\n DATE(usage_date) AS date, \n \"shared\" AS product_line,\n SUM(agg_billable_cost) AS cost\n FROM \n dev_dkruh1.infra__snowflake_storage_cost\n GROUP BY \n 1,2,3\n), views_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n dev_dkruh1.infra__snowflake_views_cost\n GROUP BY \n 1,2,3\n), warehouse_cost AS (\n SELECT \n account,\n date,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n dev_dkruh1.infra__snowflake_warehouse_cost\n GROUP BY\n 1,2,3\n), all_prodcut_lines AS (\n SELECT distinct(product_line) AS product_line FROM warehouse_cost\n UNION\n SELECT distinct(product_line) AS product_line FROM views_cost\n UNION\n SELECT distinct(product_line) AS product_line FROM storage_cost\n UNION\n SELECT distinct(product_line) AS product_line FROM automatic_clustering_cost\n), all_accounts AS (\n SELECT distinct(account) AS account FROM warehouse_cost\n UNION\n SELECT distinct(account) AS account FROM views_cost\n UNION\n SELECT distinct(account) AS account FROM storage_cost\n UNION\n SELECT distinct(account) AS account FROM automatic_clustering_cost\n), dates AS (\n SELECT\n start_date,\n end_date \n FROM\n dev_dkruh1.infra__snowflake_contract_details\n), months_seq AS (\n SELECT \n CAST(MONTHS_BETWEEN(end_date, start_date) AS INT) AS num_months\n FROM \n dates\n), months AS (\n SELECT \n YEAR(ADD_MONTHS(dates.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(dates.start_date, t.s)) AS month,\n DATE_ADD(dates.start_date, t.s) AS date,\n DAY(LAST_DAY(ADD_MONTHS(dates.start_date, s))) AS days_in_month\n FROM \n dates\n CROSS JOIN (\n SELECT explode(sequence(0, 364)) AS s\n FROM months_seq\n ) t\n), all_dates_with_product_line AS (\n SELECT \n * \n FROM \n all_prodcut_lines\n CROSS JOIN\n (SELECT * FROM months) z\n CROSS JOIN \n (SELECT * FROM all_accounts) zz\n), dates_with_product_line AS (\n SELECT \n *\n FROM \n all_dates_with_product_line\n WHERE \n all_dates_with_product_line.date < date(current_date())\n), aggregated_cost AS (\n SELECT \n dates_with_product_line.date,\n dates_with_product_line.year,\n dates_with_product_line.month,\n dates_with_product_line.days_in_month,\n dates_with_product_line.product_line,\n COALESCE(warehouse_cost.account, automatic_clustering_cost.account,views_cost.account,storage_cost.account,'unkonwn') AS account,\n CASE WHEN warehouse_cost.cost IS NULL THEN 0 ELSE warehouse_cost.cost END AS warehouse_cost,\n CASE WHEN automatic_clustering_cost.cost IS NULL THEN 0 ELSE automatic_clustering_cost.cost END AS automatic_clustering_cost,\n CASE WHEN views_cost.cost IS NULL THEN 0 ELSE views_cost.cost END AS views_cost,\n CASE WHEN storage_cost.cost IS NULL THEN 0 ELSE storage_cost.cost END AS storage_cost\n FROM \n dates_with_product_line\n LEFT JOIN warehouse_cost \n ON dates_with_product_line.date = warehouse_cost.date and dates_with_product_line.product_line = warehouse_cost.product_line and dates_with_product_line.account = warehouse_cost.account\n LEFT JOIN views_cost \n ON dates_with_product_line.date = views_cost.date and dates_with_product_line.product_line = views_cost.product_line and dates_with_product_line.account = views_cost.account\n LEFT JOIN automatic_clustering_cost \n ON dates_with_product_line.date = automatic_clustering_cost.date and dates_with_product_line.product_line = automatic_clustering_cost.product_line and dates_with_product_line.account = automatic_clustering_cost.account\n LEFT JOIN storage_cost \n ON dates_with_product_line.date = storage_cost.date and dates_with_product_line.product_line = storage_cost.product_line and dates_with_product_line.account = storage_cost.account\n) \n\nSELECT \n date, \n account, \n product_line,\n SUM(warehouse_cost) AS warehouse_cost, \n SUM(views_cost) AS views_cost, \n SUM(automatic_clustering_cost) AS automatic_clustering_cost, \n SUM(storage_cost) AS storage_cost\nFROM \n aggregated_cost \nWHERE \n account <> 'unkonwn'\nGROUP BY \n date, \n account,\n product_line", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__snowflake_monthly_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__snowflake_monthly_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.sql", "original_file_path": "models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.sql", "unique_id": "model.yoda.infra__snowflake_monthly_cost", "fqn": ["yoda", "infra", "marts", "infra__snowflake_monthly_cost", "infra__snowflake_monthly_cost"], "alias": "infra__snowflake_monthly_cost", "checksum": {"name": "sha256", "checksum": "e5fc75a67c39e4d216fb9f1e5a372c56c1b5c7c112d10cfdf65f12c7ab2122db"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Snowflake daily cost", "columns": {"year": {"name": "year", "description": "Year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "Month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "account": {"name": "account", "description": "Snowflake account (RND / HR)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "Prodcut line tagged with the resource", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "warehouse_cost": {"name": "warehouse_cost", "description": "Monthly warehousing cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "views_cost": {"name": "views_cost", "description": "Monthly materialized views cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "automatic_clustering_cost": {"name": "automatic_clustering_cost", "description": "Monthly automatic clustering cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "storage_cost": {"name": "storage_cost", "description": "Monthly storage cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.4575121, "relation_name": "dev_dkruh1.infra__snowflake_monthly_cost", "raw_code": "WITH automatic_clustering_cost AS (\n SELECT\n account,\n YEAR(date) AS year, \n MONTH(date) AS month,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n {{ref('infra__snowflake_automatic_clustering_cost')}}\n GROUP BY \n 1,2,3,4\n), storage_cost AS (\n SELECT\n account,\n YEAR(usage_date) AS year, \n MONTH(usage_date) AS month,\n \"shared\" AS product_line,\n SUM(agg_billable_cost) AS cost\n FROM \n {{ref('infra__snowflake_storage_cost')}}\n GROUP BY \n 1,2,3,4\n), views_cost AS (\n SELECT\n account,\n YEAR(date) AS year, \n MONTH(date) AS month,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n {{ref('infra__snowflake_views_cost')}}\n GROUP BY\n 1,2,3,4\n), warehouse_cost AS (\n SELECT\n account,\n YEAR(date) AS year, \n MONTH(date) AS month,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n {{ref('infra__snowflake_warehouse_cost')}}\n GROUP BY\n 1,2,3,4\n), all_prodcut_lines AS (\n SELECT DISTINCT(product_line) AS product_line FROM warehouse_cost\n UNION \n SELECT DISTINCT(product_line) AS product_line FROM views_cost\n UNION \n SELECT DISTINCT(product_line) AS product_line FROM storage_cost\n UNION \n SELECT DISTINCT(product_line) AS product_line FROM automatic_clustering_cost\n), all_accounts AS (\n SELECT DISTINCT(account) AS account FROM warehouse_cost\n UNION \n SELECT DISTINCT(account) AS account FROM views_cost\n UNION \n SELECT DISTINCT(account) AS account FROM storage_cost\n UNION \n SELECT DISTINCT(account) AS account FROM automatic_clustering_cost\n), dates AS (\n SELECT\n start_date,\n end_date \n FROM\n {{ ref('infra__snowflake_contract_details') }}\n), months_seq AS (\n SELECT\n CAST(MONTHS_BETWEEN(end_date, start_date) AS INT) AS num_months\n FROM dates\n), months AS (\n SELECT\n ADD_MONTHS(dates.start_date, t.s) AS date,\n YEAR(ADD_MONTHS(dates.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(dates.start_date, t.s)) AS month,\n DAY(LAST_DAY(ADD_MONTHS(dates.start_date, s))) AS days_in_month\n FROM \n dates\n CROSS JOIN (SELECT EXPLODE(sequence(0, num_months)) AS s FROM months_seq) t\n), all_dates_with_product_line AS (\n SELECT\n * \n FROM \n all_prodcut_lines\n CROSS JOIN (SELECT * FROM months) z\n CROSS JOIN (SELECT * FROM all_accounts) zz\n), dates_with_product_line AS (\n SELECT \n *\n FROM \n all_dates_with_product_line\n WHERE \n all_dates_with_product_line.date < date(current_date())\n), aggregated_monthly_cost as(\n SELECT \n dates_with_product_line.date,\n dates_with_product_line.year,\n dates_with_product_line.month,\n dates_with_product_line.days_in_month,\n dates_with_product_line.product_line,\n COALESCE(warehouse_cost.account, automatic_clustering_cost.account,views_cost.account,storage_cost.account,'unkonwn') AS account,\n CASE WHEN warehouse_cost.cost IS NULL THEN 0 ELSE warehouse_cost.cost END AS warehouse_cost,\n CASE WHEN automatic_clustering_cost.cost IS NULL THEN 0 ELSE automatic_clustering_cost.cost END AS automatic_clustering_cost,\n CASE WHEN views_cost.cost IS NULL THEN 0 ELSE views_cost.cost END AS views_cost,\n CASE WHEN storage_cost.cost IS NULL THEN 0 ELSE storage_cost.cost END AS storage_cost\n FROM\n dates_with_product_line\n LEFT JOIN warehouse_cost \n ON dates_with_product_line.year = warehouse_cost.year and warehouse_cost.month = dates_with_product_line.month and dates_with_product_line.product_line = warehouse_cost.product_line and dates_with_product_line.account = warehouse_cost.account\n LEFT JOIN views_cost \n ON dates_with_product_line.year = views_cost.year and views_cost.month = dates_with_product_line.month and dates_with_product_line.product_line = views_cost.product_line and dates_with_product_line.account = views_cost.account\n LEFT JOIN automatic_clustering_cost \n ON dates_with_product_line.year = automatic_clustering_cost.year and automatic_clustering_cost.month = dates_with_product_line.month and dates_with_product_line.product_line = automatic_clustering_cost.product_line and dates_with_product_line.account = automatic_clustering_cost.account\n LEFT JOIN storage_cost \n ON dates_with_product_line.year = storage_cost.year and storage_cost.month = dates_with_product_line.month and dates_with_product_line.product_line = storage_cost.product_line and dates_with_product_line.account = storage_cost.account\n) \n\nSELECT \n year, \n month, \n account, \n product_line,\n make_date(year, month, 1) AS date,\n SUM(warehouse_cost) AS warehouse_cost, \n SUM(views_cost) AS views_cost, \n SUM(automatic_clustering_cost) AS automatic_clustering_cost, \n SUM(storage_cost) AS storage_cost\nFROM \n aggregated_monthly_cost \nWHERE \n account <> 'unkonwn'\nGROUP BY \n 1,2,3,4", "language": "sql", "refs": [{"name": "infra__snowflake_automatic_clustering_cost", "package": null, "version": null}, {"name": "infra__snowflake_storage_cost", "package": null, "version": null}, {"name": "infra__snowflake_views_cost", "package": null, "version": null}, {"name": "infra__snowflake_warehouse_cost", "package": null, "version": null}, {"name": "infra__snowflake_contract_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__snowflake_automatic_clustering_cost", "model.yoda.infra__snowflake_storage_cost", "model.yoda.infra__snowflake_views_cost", "model.yoda.infra__snowflake_warehouse_cost", "model.yoda.infra__snowflake_contract_details"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.sql", "compiled": true, "compiled_code": "WITH automatic_clustering_cost AS (\n SELECT\n account,\n YEAR(date) AS year, \n MONTH(date) AS month,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n dev_dkruh1.infra__snowflake_automatic_clustering_cost\n GROUP BY \n 1,2,3,4\n), storage_cost AS (\n SELECT\n account,\n YEAR(usage_date) AS year, \n MONTH(usage_date) AS month,\n \"shared\" AS product_line,\n SUM(agg_billable_cost) AS cost\n FROM \n dev_dkruh1.infra__snowflake_storage_cost\n GROUP BY \n 1,2,3,4\n), views_cost AS (\n SELECT\n account,\n YEAR(date) AS year, \n MONTH(date) AS month,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n dev_dkruh1.infra__snowflake_views_cost\n GROUP BY\n 1,2,3,4\n), warehouse_cost AS (\n SELECT\n account,\n YEAR(date) AS year, \n MONTH(date) AS month,\n product_line,\n SUM(agg_cost) AS cost\n FROM \n dev_dkruh1.infra__snowflake_warehouse_cost\n GROUP BY\n 1,2,3,4\n), all_prodcut_lines AS (\n SELECT DISTINCT(product_line) AS product_line FROM warehouse_cost\n UNION \n SELECT DISTINCT(product_line) AS product_line FROM views_cost\n UNION \n SELECT DISTINCT(product_line) AS product_line FROM storage_cost\n UNION \n SELECT DISTINCT(product_line) AS product_line FROM automatic_clustering_cost\n), all_accounts AS (\n SELECT DISTINCT(account) AS account FROM warehouse_cost\n UNION \n SELECT DISTINCT(account) AS account FROM views_cost\n UNION \n SELECT DISTINCT(account) AS account FROM storage_cost\n UNION \n SELECT DISTINCT(account) AS account FROM automatic_clustering_cost\n), dates AS (\n SELECT\n start_date,\n end_date \n FROM\n dev_dkruh1.infra__snowflake_contract_details\n), months_seq AS (\n SELECT\n CAST(MONTHS_BETWEEN(end_date, start_date) AS INT) AS num_months\n FROM dates\n), months AS (\n SELECT\n ADD_MONTHS(dates.start_date, t.s) AS date,\n YEAR(ADD_MONTHS(dates.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(dates.start_date, t.s)) AS month,\n DAY(LAST_DAY(ADD_MONTHS(dates.start_date, s))) AS days_in_month\n FROM \n dates\n CROSS JOIN (SELECT EXPLODE(sequence(0, num_months)) AS s FROM months_seq) t\n), all_dates_with_product_line AS (\n SELECT\n * \n FROM \n all_prodcut_lines\n CROSS JOIN (SELECT * FROM months) z\n CROSS JOIN (SELECT * FROM all_accounts) zz\n), dates_with_product_line AS (\n SELECT \n *\n FROM \n all_dates_with_product_line\n WHERE \n all_dates_with_product_line.date < date(current_date())\n), aggregated_monthly_cost as(\n SELECT \n dates_with_product_line.date,\n dates_with_product_line.year,\n dates_with_product_line.month,\n dates_with_product_line.days_in_month,\n dates_with_product_line.product_line,\n COALESCE(warehouse_cost.account, automatic_clustering_cost.account,views_cost.account,storage_cost.account,'unkonwn') AS account,\n CASE WHEN warehouse_cost.cost IS NULL THEN 0 ELSE warehouse_cost.cost END AS warehouse_cost,\n CASE WHEN automatic_clustering_cost.cost IS NULL THEN 0 ELSE automatic_clustering_cost.cost END AS automatic_clustering_cost,\n CASE WHEN views_cost.cost IS NULL THEN 0 ELSE views_cost.cost END AS views_cost,\n CASE WHEN storage_cost.cost IS NULL THEN 0 ELSE storage_cost.cost END AS storage_cost\n FROM\n dates_with_product_line\n LEFT JOIN warehouse_cost \n ON dates_with_product_line.year = warehouse_cost.year and warehouse_cost.month = dates_with_product_line.month and dates_with_product_line.product_line = warehouse_cost.product_line and dates_with_product_line.account = warehouse_cost.account\n LEFT JOIN views_cost \n ON dates_with_product_line.year = views_cost.year and views_cost.month = dates_with_product_line.month and dates_with_product_line.product_line = views_cost.product_line and dates_with_product_line.account = views_cost.account\n LEFT JOIN automatic_clustering_cost \n ON dates_with_product_line.year = automatic_clustering_cost.year and automatic_clustering_cost.month = dates_with_product_line.month and dates_with_product_line.product_line = automatic_clustering_cost.product_line and dates_with_product_line.account = automatic_clustering_cost.account\n LEFT JOIN storage_cost \n ON dates_with_product_line.year = storage_cost.year and storage_cost.month = dates_with_product_line.month and dates_with_product_line.product_line = storage_cost.product_line and dates_with_product_line.account = storage_cost.account\n) \n\nSELECT \n year, \n month, \n account, \n product_line,\n make_date(year, month, 1) AS date,\n SUM(warehouse_cost) AS warehouse_cost, \n SUM(views_cost) AS views_cost, \n SUM(automatic_clustering_cost) AS automatic_clustering_cost, \n SUM(storage_cost) AS storage_cost\nFROM \n aggregated_monthly_cost \nWHERE \n account <> 'unkonwn'\nGROUP BY \n 1,2,3,4", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__snowflake_query_statistics": {"database": null, "schema": "dev_dkruh1", "name": "infra__snowflake_query_statistics", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.sql", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.sql", "unique_id": "model.yoda.infra__snowflake_query_statistics", "fqn": ["yoda", "infra", "marts", "infra__snowflake_query_statistics", "infra__snowflake_query_statistics"], "alias": "infra__snowflake_query_statistics", "checksum": {"name": "sha256", "checksum": "dfcf2f7757b4a3626f09d4e6a5a788e8163547b9fe66744a6424ff16ddaff52d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Snowflake query statistics (extraction logic resides in our ingestion flow in Databricks)", "columns": {"start_time": {"name": "start_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "warehouse_name": {"name": "warehouse_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "query_type": {"name": "query_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "warehouse_size": {"name": "warehouse_size", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "execution_status": {"name": "execution_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_queries": {"name": "total_queries", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "min_cluster_cnt": {"name": "min_cluster_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "max_cluster_cnt": {"name": "max_cluster_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "total_elapsed_p25": {"name": "total_elapsed_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_p50": {"name": "total_elapsed_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_p75": {"name": "total_elapsed_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_p95": {"name": "total_elapsed_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_avg": {"name": "total_elapsed_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed": {"name": "total_elapsed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p25": {"name": "compilation_time_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p50": {"name": "compilation_time_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p75": {"name": "compilation_time_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p95": {"name": "compilation_time_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_avg": {"name": "compilation_time_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time": {"name": "compilation_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p25": {"name": "execution_time_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p50": {"name": "execution_time_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p75": {"name": "execution_time_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p95": {"name": "execution_time_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_avg": {"name": "execution_time_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time": {"name": "execution_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p25": {"name": "queue_time_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p50": {"name": "queue_time_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p75": {"name": "queue_time_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p95": {"name": "queue_time_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_avg": {"name": "queue_time_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time": {"name": "queue_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p25": {"name": "blocked_time_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p50": {"name": "blocked_time_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p75": {"name": "blocked_time_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p95": {"name": "blocked_time_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_avg": {"name": "blocked_time_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time": {"name": "blocked_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "spilled_to_local_cnt": {"name": "spilled_to_local_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "spilled_to_remote_cnt": {"name": "spilled_to_remote_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "scanned_from_cache_p25": {"name": "scanned_from_cache_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_p50": {"name": "scanned_from_cache_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_p75": {"name": "scanned_from_cache_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_p95": {"name": "scanned_from_cache_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_avg": {"name": "scanned_from_cache_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache": {"name": "scanned_from_cache", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p25": {"name": "inbound_data_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p50": {"name": "inbound_data_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p75": {"name": "inbound_data_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p95": {"name": "inbound_data_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_avg": {"name": "inbound_data_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data": {"name": "inbound_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p25": {"name": "outbound_data_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p50": {"name": "outbound_data_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p75": {"name": "outbound_data_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p95": {"name": "outbound_data_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_avg": {"name": "outbound_data_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data": {"name": "outbound_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queries_partition_proning_cnt": {"name": "queries_partition_proning_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "view", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.5063202, "relation_name": "dev_dkruh1.infra__snowflake_query_statistics", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n)\n}}\n\n\nWITH source AS (\n\n SELECT \n start_time,\n\t\twarehouse_name,\n\t\tquery_type,\n\t\tuser_name,\n\t\twarehouse_size,\n\t\texecution_status,\n\t\ttotal_queries,\n\t\tmin_cluster_cnt,\n\t\tmax_cluster_cnt,\n\t\ttotal_elapsed_p25,\n\t\ttotal_elapsed_p50,\n\t\ttotal_elapsed_p75,\n\t\ttotal_elapsed_p95,\n\t\ttotal_elapsed_avg,\n\t\ttotal_elapsed,\n\t\tcompilation_time_p25,\n\t\tcompilation_time_p50,\n\t\tcompilation_time_p75,\n\t\tcompilation_time_p95,\n\t\tcompilation_time_avg,\n\t\tcompilation_time,\n\t\texecution_time_p25,\n\t\texecution_time_p50,\n\t\texecution_time_p75,\n\t\texecution_time_p95,\n\t\texecution_time_avg,\n\t\texecution_time,\n\t\tqueue_time_p25,\n\t\tqueue_time_p50,\n\t\tqueue_time_p75,\n\t\tqueue_time_p95,\n\t\tqueue_time_avg,\n\t\tqueue_time,\n\t\tblocked_time_p25,\n\t\tblocked_time_p50,\n\t\tblocked_time_p75,\n\t\tblocked_time_p95,\n\t\tblocked_time_avg,\n\t\tblocked_time,\n\t\tspilled_to_local_cnt,\n\t\tspilled_to_remote_cnt,\n\t\tscanned_from_cache_p25,\n\t\tscanned_from_cache_p50,\n\t\tscanned_from_cache_p75,\n\t\tscanned_from_cache_p95,\n\t\tscanned_from_cache_avg,\n\t\tscanned_from_cache,\n\t\tinbound_data_p25,\n\t\tinbound_data_p50,\n\t\tinbound_data_p75,\n\t\tinbound_data_p95,\n\t\tinbound_data_avg,\n\t\tinbound_data,\n\t\toutbound_data_p25,\n\t\toutbound_data_p50,\n\t\toutbound_data_p75,\n\t\toutbound_data_p95,\n\t\toutbound_data_avg,\n\t\toutbound_data,\n\t\tqueries_partition_proning_cnt\n FROM \n {{ ref('infra_stg__snowflake_queries_statistics') }}\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "infra_stg__snowflake_queries_statistics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__snowflake_queries_statistics"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.sql", "compiled": true, "compiled_code": "\n\n\nWITH source AS (\n\n SELECT \n start_time,\n\t\twarehouse_name,\n\t\tquery_type,\n\t\tuser_name,\n\t\twarehouse_size,\n\t\texecution_status,\n\t\ttotal_queries,\n\t\tmin_cluster_cnt,\n\t\tmax_cluster_cnt,\n\t\ttotal_elapsed_p25,\n\t\ttotal_elapsed_p50,\n\t\ttotal_elapsed_p75,\n\t\ttotal_elapsed_p95,\n\t\ttotal_elapsed_avg,\n\t\ttotal_elapsed,\n\t\tcompilation_time_p25,\n\t\tcompilation_time_p50,\n\t\tcompilation_time_p75,\n\t\tcompilation_time_p95,\n\t\tcompilation_time_avg,\n\t\tcompilation_time,\n\t\texecution_time_p25,\n\t\texecution_time_p50,\n\t\texecution_time_p75,\n\t\texecution_time_p95,\n\t\texecution_time_avg,\n\t\texecution_time,\n\t\tqueue_time_p25,\n\t\tqueue_time_p50,\n\t\tqueue_time_p75,\n\t\tqueue_time_p95,\n\t\tqueue_time_avg,\n\t\tqueue_time,\n\t\tblocked_time_p25,\n\t\tblocked_time_p50,\n\t\tblocked_time_p75,\n\t\tblocked_time_p95,\n\t\tblocked_time_avg,\n\t\tblocked_time,\n\t\tspilled_to_local_cnt,\n\t\tspilled_to_remote_cnt,\n\t\tscanned_from_cache_p25,\n\t\tscanned_from_cache_p50,\n\t\tscanned_from_cache_p75,\n\t\tscanned_from_cache_p95,\n\t\tscanned_from_cache_avg,\n\t\tscanned_from_cache,\n\t\tinbound_data_p25,\n\t\tinbound_data_p50,\n\t\tinbound_data_p75,\n\t\tinbound_data_p95,\n\t\tinbound_data_avg,\n\t\tinbound_data,\n\t\toutbound_data_p25,\n\t\toutbound_data_p50,\n\t\toutbound_data_p75,\n\t\toutbound_data_p95,\n\t\toutbound_data_avg,\n\t\toutbound_data,\n\t\tqueries_partition_proning_cnt\n FROM \n dev_dkruh1.infra_stg__snowflake_queries_statistics\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__snowflake_storage_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__snowflake_storage_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.sql", "original_file_path": "models/infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.sql", "unique_id": "model.yoda.infra__snowflake_storage_cost", "fqn": ["yoda", "infra", "marts", "infra__snowflake_storage_cost", "infra__snowflake_storage_cost"], "alias": "infra__snowflake_storage_cost", "checksum": {"name": "sha256", "checksum": "ab6066d7a29ac4666bb8a1c9de814b586b614584fa9d183dabec84d373b6e3c7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Daily Snowflake Storage Cost", "columns": {"account": {"name": "account", "description": "Snowflake account (product / HR)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usage_date": {"name": "usage_date", "description": "Billable date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "agg_deleted_storage_cost": {"name": "agg_deleted_storage_cost", "description": "Daily billable deleted storage cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "agg_storage_cost": {"name": "agg_storage_cost", "description": "Daily billable deleted storage cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "agg_billable_cost": {"name": "agg_billable_cost", "description": "Daily billable overall storage cost (storage + delete storage)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "database_name": {"name": "database_name", "description": "Database", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.520762, "relation_name": "dev_dkruh1.infra__snowflake_storage_cost", "raw_code": "WITH storage_summaries AS (SELECT \n usage_date,\n database_id,\n database_name,\n average_database_bytes,\n average_failsafe_bytes,\n account,\n SUM(average_failsafe_bytes + average_failsafe_bytes) OVER(PARTITION BY YEAR(usage_date), MONTH(usage_date)) AS total_monthly_billable_fee,\n MAX(DAY(LAST_DAY(usage_date))) OVER(PARTITION BY YEAR(usage_date), MONTH(usage_date)) AS total_days\nFROM \n {{ ref('infra_stg__snowflake_database_storage_usage_history') }}\n), \ndaily_storage_cost AS (\n SELECT \n account,\n YEAR(usage_date) AS year, \n MONTH(usage_date) AS month,\n DAY(usage_date) AS day,\n database_name,\n FIRST(total_days) AS total_month_days,\n FIRST(usage_date) AS usage_date,\n ((SUM(average_failsafe_bytes) / FIRST(total_days)) / power(1024,4)) * 23 AS agg_deleted_storage_cost,\n ((SUM(average_database_bytes) / FIRST(total_days)) / power(1024,4)) * 23 AS agg_storage_cost,\n ((SUM(average_failsafe_bytes + average_database_bytes) / FIRST(total_days)) / power(1024,4)) * 23 AS agg_billable_cost\n FROM \n storage_summaries\n GROUP BY \n 1, 2, 3, 4, 5\n)\n\nSELECT\n account, \n usage_date,\n agg_deleted_storage_cost,\n agg_storage_cost,\n agg_billable_cost,\n database_name\nFROM daily_storage_cost", "language": "sql", "refs": [{"name": "infra_stg__snowflake_database_storage_usage_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__snowflake_database_storage_usage_history"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.sql", "compiled": true, "compiled_code": "WITH storage_summaries AS (SELECT \n usage_date,\n database_id,\n database_name,\n average_database_bytes,\n average_failsafe_bytes,\n account,\n SUM(average_failsafe_bytes + average_failsafe_bytes) OVER(PARTITION BY YEAR(usage_date), MONTH(usage_date)) AS total_monthly_billable_fee,\n MAX(DAY(LAST_DAY(usage_date))) OVER(PARTITION BY YEAR(usage_date), MONTH(usage_date)) AS total_days\nFROM \n dev_dkruh1.infra_stg__snowflake_database_storage_usage_history\n), \ndaily_storage_cost AS (\n SELECT \n account,\n YEAR(usage_date) AS year, \n MONTH(usage_date) AS month,\n DAY(usage_date) AS day,\n database_name,\n FIRST(total_days) AS total_month_days,\n FIRST(usage_date) AS usage_date,\n ((SUM(average_failsafe_bytes) / FIRST(total_days)) / power(1024,4)) * 23 AS agg_deleted_storage_cost,\n ((SUM(average_database_bytes) / FIRST(total_days)) / power(1024,4)) * 23 AS agg_storage_cost,\n ((SUM(average_failsafe_bytes + average_database_bytes) / FIRST(total_days)) / power(1024,4)) * 23 AS agg_billable_cost\n FROM \n storage_summaries\n GROUP BY \n 1, 2, 3, 4, 5\n)\n\nSELECT\n account, \n usage_date,\n agg_deleted_storage_cost,\n agg_storage_cost,\n agg_billable_cost,\n database_name\nFROM daily_storage_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__snowflake_views_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__snowflake_views_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.sql", "original_file_path": "models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.sql", "unique_id": "model.yoda.infra__snowflake_views_cost", "fqn": ["yoda", "infra", "marts", "infra__snowflake_views_cost", "infra__snowflake_views_cost"], "alias": "infra__snowflake_views_cost", "checksum": {"name": "sha256", "checksum": "617c08a0c6f44ffa73ecd3ec541e4a665e8e771cde76ff9ddb276ba3548b238c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Table containing daily materialized views cost", "columns": {"account": {"name": "account", "description": "Snowflake account (product / HR)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "database_name": {"name": "database_name", "description": "Database name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "schema_name": {"name": "schema_name", "description": "Schema name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "table_name": {"name": "table_name", "description": "Table name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agg_credits_used": {"name": "agg_credits_used", "description": "Daily matermaterialized views credits", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "agg_cost": {"name": "agg_cost", "description": "Daily matermaterialized views cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_line": {"name": "product_line", "description": "Onwer of the materialized view", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.5354178, "relation_name": "dev_dkruh1.infra__snowflake_views_cost", "raw_code": "WITH tags AS (\n SELECT \n object_schema,\n tag_value,\n object_name\n FROM \n {{ ref('infra_stg__snowflake_tag_references') }}\n WHERE \n tag_name = 'PRODUCTLINE' AND\n domain = 'TABLE' AND\n object_deleted is NULL\n), materialized_views_cost AS (\n SELECT \n materialized_views.start_time,\n\t\tmaterialized_views.end_time,\n\t\tmaterialized_views.table_id,\n\t\tmaterialized_views.credits_used,\n\t\tmaterialized_views.database_id,\n\t\tmaterialized_views.database_name,\n\t\tmaterialized_views.schema_id,\n\t\tmaterialized_views.schema_name,\n\t\tmaterialized_views.table_name,\n materialized_views.account,\n tags.object_schema,\n tags.tag_value,\n tags.object_name\n FROM \n {{ ref('infra_stg__snowflake_materialized_view_refresh_history') }} AS materialized_views\n LEFT JOIN tags\n ON \n (tags.object_name = materialized_views.table_name OR reverse(split(materialized_views.table_name,'_STAGING_'))[1] = tags.object_name)\n AND tags.object_schema = materialized_views.schema_name\n), groupped_cost AS (\n SELECT \n account,\n DATE(start_time) as date,\n database_name,\n schema_name,\n table_name,\n\t\tSUM(credits_used) AS agg_credits_used,\n SUM(credits_used) * 2.58 AS agg_cost,\n\t\tFIRST(\n CASE \n WHEN tag_value IS NULL AND account = 'hr' THEN 'hr'\n WHEN tag_value IS NULL THEN 'untagged'\n ELSE tag_value \n END\n ) AS product_line\n FROM materialized_views_cost\n GROUP BY 1, 2, 3, 4, 5\n)\n\nSELECT \n account, \n date,\n database_name,\n schema_name,\n table_name,\n\tagg_credits_used,\n agg_cost,\n\tproduct_line\n FROM groupped_cost", "language": "sql", "refs": [{"name": "infra_stg__snowflake_tag_references", "package": null, "version": null}, {"name": "infra_stg__snowflake_materialized_view_refresh_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__snowflake_tag_references", "model.yoda.infra_stg__snowflake_materialized_view_refresh_history"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.sql", "compiled": true, "compiled_code": "WITH tags AS (\n SELECT \n object_schema,\n tag_value,\n object_name\n FROM \n dev_dkruh1.infra_stg__snowflake_tag_references\n WHERE \n tag_name = 'PRODUCTLINE' AND\n domain = 'TABLE' AND\n object_deleted is NULL\n), materialized_views_cost AS (\n SELECT \n materialized_views.start_time,\n\t\tmaterialized_views.end_time,\n\t\tmaterialized_views.table_id,\n\t\tmaterialized_views.credits_used,\n\t\tmaterialized_views.database_id,\n\t\tmaterialized_views.database_name,\n\t\tmaterialized_views.schema_id,\n\t\tmaterialized_views.schema_name,\n\t\tmaterialized_views.table_name,\n materialized_views.account,\n tags.object_schema,\n tags.tag_value,\n tags.object_name\n FROM \n dev_dkruh1.infra_stg__snowflake_materialized_view_refresh_history AS materialized_views\n LEFT JOIN tags\n ON \n (tags.object_name = materialized_views.table_name OR reverse(split(materialized_views.table_name,'_STAGING_'))[1] = tags.object_name)\n AND tags.object_schema = materialized_views.schema_name\n), groupped_cost AS (\n SELECT \n account,\n DATE(start_time) as date,\n database_name,\n schema_name,\n table_name,\n\t\tSUM(credits_used) AS agg_credits_used,\n SUM(credits_used) * 2.58 AS agg_cost,\n\t\tFIRST(\n CASE \n WHEN tag_value IS NULL AND account = 'hr' THEN 'hr'\n WHEN tag_value IS NULL THEN 'untagged'\n ELSE tag_value \n END\n ) AS product_line\n FROM materialized_views_cost\n GROUP BY 1, 2, 3, 4, 5\n)\n\nSELECT \n account, \n date,\n database_name,\n schema_name,\n table_name,\n\tagg_credits_used,\n agg_cost,\n\tproduct_line\n FROM groupped_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__snowflake_warehouse_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__snowflake_warehouse_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.sql", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.sql", "unique_id": "model.yoda.infra__snowflake_warehouse_cost", "fqn": ["yoda", "infra", "marts", "infra__snowflake_warehouse_cost", "infra__snowflake_warehouse_cost"], "alias": "infra__snowflake_warehouse_cost", "checksum": {"name": "sha256", "checksum": "7514926acc67d111fac7950b7b86c7b88861ee93342a341a87e0c326f10432f7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Daily warehouse cost aggregations", "columns": {"account": {"name": "account", "description": "Snowflake account (product / HR)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "warehouse_name": {"name": "warehouse_name", "description": "Warehouse name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agg_credits_used": {"name": "agg_credits_used", "description": "Daily aggregated credit used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "agg_cost": {"name": "agg_cost", "description": "Daily cost (composed out of compute credits * 2.58)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "agg_credits_used_compute": {"name": "agg_credits_used_compute", "description": "Daily aggregated credit used for compute", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "agg_credits_used_cloud_services": {"name": "agg_credits_used_cloud_services", "description": "Daily aggregated credit used for cloud services", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.5515575, "relation_name": "dev_dkruh1.infra__snowflake_warehouse_cost", "raw_code": "WITH tags AS (\n SELECT \n object_schema,\n tag_value,\n object_name\n FROM \n {{ ref('infra_stg__snowflake_tag_references') }}\n WHERE \n tag_name = 'PRODUCTLINE' AND\n domain = 'WAREHOUSE' AND\n object_deleted is NULL\n), warehouse_cost AS (\n SELECT \n warehouse.start_time,\n\t\twarehouse.end_time,\n\t\twarehouse.warehouse_id,\n\t\twarehouse.warehouse_name,\n\t\twarehouse.credits_used,\n\t\twarehouse.credits_used_compute,\n\t\twarehouse.credits_used_cloud_services,\n warehouse.account,\n tags.object_schema,\n tags.tag_value,\n tags.object_name\n FROM \n {{ ref('infra_stg__snowflake_warehouse_metering_history') }} AS warehouse\n LEFT JOIN tags\n ON \n tags.object_name = warehouse.warehouse_name\n), groupped_cost AS (\n SELECT \n account,\n DATE(start_time) as date,\n warehouse_name,\n\t\tSUM(credits_used) AS agg_credits_used,\n SUM(credits_used_compute) * 2.58 AS agg_cost,\n\t\tSUM(credits_used_compute) AS agg_credits_used_compute,\n\t\tSUM(credits_used_cloud_services) AS agg_credits_used_cloud_services,\n\t\tFIRST(\n CASE \n WHEN tag_value IS NOT NULL THEN tag_value\n WHEN tag_value IS NULL AND account = 'hr' THEN 'hr'\n ELSE 'untagged'\n END\n ) AS product_line\n FROM warehouse_cost\n GROUP BY 1, 2, 3\n)\n\nSELECT \n account,\n date,\n warehouse_name,\n agg_credits_used,\n agg_cost,\n\tagg_credits_used_compute,\n\tagg_credits_used_cloud_services,\n\tproduct_line\n FROM groupped_cost", "language": "sql", "refs": [{"name": "infra_stg__snowflake_tag_references", "package": null, "version": null}, {"name": "infra_stg__snowflake_warehouse_metering_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__snowflake_tag_references", "model.yoda.infra_stg__snowflake_warehouse_metering_history"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.sql", "compiled": true, "compiled_code": "WITH tags AS (\n SELECT \n object_schema,\n tag_value,\n object_name\n FROM \n dev_dkruh1.infra_stg__snowflake_tag_references\n WHERE \n tag_name = 'PRODUCTLINE' AND\n domain = 'WAREHOUSE' AND\n object_deleted is NULL\n), warehouse_cost AS (\n SELECT \n warehouse.start_time,\n\t\twarehouse.end_time,\n\t\twarehouse.warehouse_id,\n\t\twarehouse.warehouse_name,\n\t\twarehouse.credits_used,\n\t\twarehouse.credits_used_compute,\n\t\twarehouse.credits_used_cloud_services,\n warehouse.account,\n tags.object_schema,\n tags.tag_value,\n tags.object_name\n FROM \n dev_dkruh1.infra_stg__snowflake_warehouse_metering_history AS warehouse\n LEFT JOIN tags\n ON \n tags.object_name = warehouse.warehouse_name\n), groupped_cost AS (\n SELECT \n account,\n DATE(start_time) as date,\n warehouse_name,\n\t\tSUM(credits_used) AS agg_credits_used,\n SUM(credits_used_compute) * 2.58 AS agg_cost,\n\t\tSUM(credits_used_compute) AS agg_credits_used_compute,\n\t\tSUM(credits_used_cloud_services) AS agg_credits_used_cloud_services,\n\t\tFIRST(\n CASE \n WHEN tag_value IS NOT NULL THEN tag_value\n WHEN tag_value IS NULL AND account = 'hr' THEN 'hr'\n ELSE 'untagged'\n END\n ) AS product_line\n FROM warehouse_cost\n GROUP BY 1, 2, 3\n)\n\nSELECT \n account,\n date,\n warehouse_name,\n agg_credits_used,\n agg_cost,\n\tagg_credits_used_compute,\n\tagg_credits_used_cloud_services,\n\tproduct_line\n FROM groupped_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__snowflake_warehouse_statistics": {"database": null, "schema": "dev_dkruh1", "name": "infra__snowflake_warehouse_statistics", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.sql", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.sql", "unique_id": "model.yoda.infra__snowflake_warehouse_statistics", "fqn": ["yoda", "infra", "marts", "infra__snowflake_warehouse_statistics", "infra__snowflake_warehouse_statistics"], "alias": "infra__snowflake_warehouse_statistics", "checksum": {"name": "sha256", "checksum": "f43836acaf9f5d44c3fbaa73bd30592728efafd0c51e2cf902742c08d904f0d1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["date", "warehouse_name"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Snowflake warehouse cluster scaling statistics (Every 5 Minutes)", "columns": {"date": {"name": "date", "description": "date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "warehouse_name": {"name": "warehouse_name", "description": "Warehouse name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cluster_count": {"name": "cluster_count", "description": "Amount of clusters per given time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "incremental", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "unique_key": ["date", "warehouse_name"], "incremental_strategy": "merge"}, "created_at": 1700082669.5632393, "relation_name": "dev_dkruh1.infra__snowflake_warehouse_statistics", "raw_code": "{{ config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key = ['date','warehouse_name'],\n incremental_strategy = 'merge'\n )\n}}\n\nWITH warehouse_events AS (\n SELECT cluster_number, warehouse_name, TIMESTAMP, event_name, DATE(TIMESTAMP) AS date\n FROM {{ref('infra_stg__snowflake_warehouse_events')}}\n WHERE event_name in ('RESUME_CLUSTER', 'SUSPEND_CLUSTER') AND event_state = 'COMPLETED'\n AND TIMESTAMP >= '2023-01-01'\n{% if is_incremental() %}\n AND DATE(TIMESTAMP) >= (SELECT max(date) FROM {{ this }})\n{% endif %}\n\n), source AS (\n SELECT * FROM warehouse_events\n UNION \n SELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date \n FROM (\n SELECT warehouse_name,cluster_number, date AS TIMESTAMP, 'NEW_DAY' AS event_name, date\n FROM warehouse_events\n GROUP BY date, warehouse_name, cluster_number\n )\n)\n, c_0 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 0)\n, c_1 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 1)\n, c_2 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 2)\n, c_3 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 3)\n, c_4 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 4)\n, c_5 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 5)\n, c_6 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 6)\n, c_7 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 7)\n, c_8 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 8)\n, c_9 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 9)\n, c_10 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 10)\n\n, cluster_data AS (\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_0 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_1 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_2 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_3 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_4 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_5 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_6 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_7 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_8 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_9 WHERE event_name = 'SUSPEND_CLUSTER' \n), limits AS (\n SELECT \n DATE_FORMAT(MIN(start_time),'yyyy-MM-dd 00:00:00') AS start_time,\n DATEDIFF(MAX(shutdown_time), MIN(start_time)) + 1 AS days\n FROM cluster_data\n), time_spans AS (\n SELECT \n DATE_FORMAT(\n start_time + make_interval(0, 0, 0 , 0, 0, 5 * s, 0), \n 'yyyy-MM-dd HH:mm:ss')\n AS date\nFROM limits, (\n SELECT EXPLODE(SEQUENCE(0, limits.days * 24 * 12 - 1)) AS s\n FROM limits\n) t\n), aggregation AS (\n SELECT \n time_spans.date, \n COALESCE(cluster_data.warehouse_name, \"NONE\") AS warehouse_name, \n COUNT(cluster_number) AS cluster_count\n FROM \n time_spans\n LEFT JOIN \n cluster_data ON time_spans.date >= cluster_data.start_time \n AND time_spans.date <= cluster_data.shutdown_time\n GROUP BY \n time_spans.date, \n cluster_data.warehouse_name\n ORDER BY \n time_spans.date\n)\n\nSELECT \n to_timestamp(date) as date, \n warehouse_name, \n cluster_count\nFROM aggregation", "language": "sql", "refs": [{"name": "infra_stg__snowflake_warehouse_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__snowflake_warehouse_events"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.sql", "compiled": true, "compiled_code": "\n\nWITH warehouse_events AS (\n SELECT cluster_number, warehouse_name, TIMESTAMP, event_name, DATE(TIMESTAMP) AS date\n FROM dev_dkruh1.infra_stg__snowflake_warehouse_events\n WHERE event_name in ('RESUME_CLUSTER', 'SUSPEND_CLUSTER') AND event_state = 'COMPLETED'\n AND TIMESTAMP >= '2023-01-01'\n\n\n), source AS (\n SELECT * FROM warehouse_events\n UNION \n SELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date \n FROM (\n SELECT warehouse_name,cluster_number, date AS TIMESTAMP, 'NEW_DAY' AS event_name, date\n FROM warehouse_events\n GROUP BY date, warehouse_name, cluster_number\n )\n)\n, c_0 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 0)\n, c_1 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 1)\n, c_2 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 2)\n, c_3 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 3)\n, c_4 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 4)\n, c_5 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 5)\n, c_6 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 6)\n, c_7 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 7)\n, c_8 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 8)\n, c_9 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 9)\n, c_10 AS (\nSELECT warehouse_name, cluster_number, TIMESTAMP, event_name, date,\n Lag(TIMESTAMP, 1) OVER(ORDER BY warehouse_name, TIMESTAMP ASC) AS END_TIME,\n CAST(TIMESTAMP - Lag(TIMESTAMP, 1) OVER(\n ORDER BY TIMESTAMP ASC) AS LONG) AS duration\nfrom source WHERE cluster_number = 10)\n\n, cluster_data AS (\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_0 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_1 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_2 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_3 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_4 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_5 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_6 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_7 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_8 WHERE event_name = 'SUSPEND_CLUSTER'\n UNION ALL\n SELECT warehouse_name, cluster_number, date, timestamp AS shutdown_time, END_TIME AS start_time FROM c_9 WHERE event_name = 'SUSPEND_CLUSTER' \n), limits AS (\n SELECT \n DATE_FORMAT(MIN(start_time),'yyyy-MM-dd 00:00:00') AS start_time,\n DATEDIFF(MAX(shutdown_time), MIN(start_time)) + 1 AS days\n FROM cluster_data\n), time_spans AS (\n SELECT \n DATE_FORMAT(\n start_time + make_interval(0, 0, 0 , 0, 0, 5 * s, 0), \n 'yyyy-MM-dd HH:mm:ss')\n AS date\nFROM limits, (\n SELECT EXPLODE(SEQUENCE(0, limits.days * 24 * 12 - 1)) AS s\n FROM limits\n) t\n), aggregation AS (\n SELECT \n time_spans.date, \n COALESCE(cluster_data.warehouse_name, \"NONE\") AS warehouse_name, \n COUNT(cluster_number) AS cluster_count\n FROM \n time_spans\n LEFT JOIN \n cluster_data ON time_spans.date >= cluster_data.start_time \n AND time_spans.date <= cluster_data.shutdown_time\n GROUP BY \n time_spans.date, \n cluster_data.warehouse_name\n ORDER BY \n time_spans.date\n)\n\nSELECT \n to_timestamp(date) as date, \n warehouse_name, \n cluster_count\nFROM aggregation", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__spark_jobs": {"database": null, "schema": "dev_dkruh1", "name": "infra__spark_jobs", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.sql", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.sql", "unique_id": "model.yoda.infra__spark_jobs", "fqn": ["yoda", "infra", "marts", "infra__spark_jobs", "infra__spark_jobs"], "alias": "infra__spark_jobs", "checksum": {"name": "sha256", "checksum": "9a4a9ed4522df32aec73c6106c80fbe0ddaa7e524aa5573c39e57406730d6c34"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["run_id", "run_date"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["year", "month"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Table which aggregates spark jobs with multiple aggregations", "columns": {"run_id": {"name": "run_id", "description": "The unique job id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "year": {"name": "year", "description": "The year the job ran on", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "The month the job ran on", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "Day of the spark job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group": {"name": "group", "description": "Group name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "Team", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "system": {"name": "system", "description": "System of the spark job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subsystem": {"name": "subsystem", "description": "Sub system of the spark job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "component": {"name": "component", "description": "Component of the spark job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feature": {"name": "feature", "description": "Feature of the spark job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_cast": {"name": "is_cast", "description": "Indicate if the spark job executed on pods provisioned by Cast", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "run_date": {"name": "run_date", "description": "Date format of the job execution", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "total_network_transfer_in_bytes": {"name": "total_network_transfer_in_bytes", "description": "Total amounts of bytes transferred to the different components of the job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_network_received_in_bytes": {"name": "total_network_received_in_bytes", "description": "Total amounts of bytes received from the different components of the job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cost": {"name": "cost", "description": "Total cost for a given spark job (computation resources only)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucost": {"name": "cpucost", "description": "Total cpu cost for a given run", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvcost": {"name": "pvcost", "description": "The amount of kubernetes storage (PV) cost for the specific job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkcost": {"name": "networkcost", "description": "The amount of network cost for the specific job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramcost": {"name": "ramcost", "description": "The amount of memory cost for the specific job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucorehours": {"name": "cpucorehours", "description": "Total cpu hours for a given run", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambytehours": {"name": "rambytehours", "description": "The amount of ram hours the job has consumed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "productline_instance_tag": {"name": "productline_instance_tag", "description": "The product line the EC2 instance is tagged to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_multi_az_cost": {"name": "is_multi_az_cost", "description": "Whether the job ran on mutiple AZ (and therefore will intorduce data transfer cost)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "region": {"name": "region", "description": "The region the job ran on", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "release_name": {"name": "release_name", "description": "The name of the job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "duration": {"name": "duration", "description": "Job duration in minutes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "driver_cores": {"name": "driver_cores", "description": "Amount of cores the driver requested", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "driver_memory_in_bytes": {"name": "driver_memory_in_bytes", "description": "The amount of memory the driver has requested", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "driver_avg_network_transfer_in_bytes": {"name": "driver_avg_network_transfer_in_bytes", "description": "Total average amount of bytes trasferred from the driver for a given job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "driver_avg_network_received_in_bytes": {"name": "driver_avg_network_received_in_bytes", "description": "Total average amount of bytes received by the driver for a given job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "driver_max_core_usage": {"name": "driver_max_core_usage", "description": "The maximum amount of cores which was used for a give job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "driver_max_memory_usage": {"name": "driver_max_memory_usage", "description": "The maximum amount of memory which was used for a give job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "driver_instance_types": {"name": "driver_instance_types", "description": "EC2 Instance type which the driver ran on", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "driver_instance_vcpu": {"name": "driver_instance_vcpu", "description": "The amount of virtual cpus the EC2 instance which ran the driver has", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "driver_instance_memory": {"name": "driver_instance_memory", "description": "The amount of memory the EC2 instance which ran the driver has", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "driver_instance_network_performance": {"name": "driver_instance_network_performance", "description": "The network performance the EC2 instance which ran the driver has", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "driver_instance_pricing_term": {"name": "driver_instance_pricing_term", "description": "Whether the EC2 instance that ran the driver is spot, on demand or reserved", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "driver_availability_zone": {"name": "driver_availability_zone", "description": "The AZ which the driver was provisioned in", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "driver_product_storage": {"name": "driver_product_storage", "description": "Whether the instance provisioned has storage or requires EBS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "driver_ram_efficiency": {"name": "driver_ram_efficiency", "description": "The average amount of memory divided by the memory requested by the driver", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "driver_ram_efficiency_by_max": {"name": "driver_ram_efficiency_by_max", "description": "The maximum amount of memory divided by the memory requested by the driver", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "driver_cpu_efficiency": {"name": "driver_cpu_efficiency", "description": "Driver CPU average usage devided by the requested CPU", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "driver_cpu_efficiency_by_max": {"name": "driver_cpu_efficiency_by_max", "description": "Driver CPU max usage devided by the requested CPU", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "driver_cost": {"name": "driver_cost", "description": "Total cost only for the driver", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_driver_OD_candidate": {"name": "is_driver_OD_candidate", "description": "Whether the driver is a candidate to be replaced with spot (based on the amount of minutes the job ran)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "driver_compute_cost": {"name": "driver_compute_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "driver_data_transfer_cost": {"name": "driver_data_transfer_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_executor_duration": {"name": "avg_executor_duration", "description": "Average executors duration in minutes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "max_executor_duration": {"name": "max_executor_duration", "description": "The maximum amount of executor duration", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "min_executor_duration": {"name": "min_executor_duration", "description": "The minimum amount of executor duration", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_executors_duration": {"name": "total_executors_duration", "description": "The total amounts of minutes of the executors", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executors_count": {"name": "executors_count", "description": "Total amount of executors which participated in the job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "executor_cores": {"name": "executor_cores", "description": "Cores requested by the executor", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executor_memory_in_bytes": {"name": "executor_memory_in_bytes", "description": "Memory requested by the executor in bytes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executor_max_core_usage": {"name": "executor_max_core_usage", "description": "Maximum used core across all executors", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executor_max_memory_usage": {"name": "executor_max_memory_usage", "description": "Maximum used memory across all executors", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "executor_avg_network_transfer_in_bytes": {"name": "executor_avg_network_transfer_in_bytes", "description": "Total average amount of bytes transferred from the driver for a given job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executor_avg_network_received_in_bytes": {"name": "executor_avg_network_received_in_bytes", "description": "Total average amount of bytes received by the execotors for a given job", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executors_instance_types": {"name": "executors_instance_types", "description": "Collection of instance types across all executors", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "executors_vcpu": {"name": "executors_vcpu", "description": "The amount of virtual cpus the instaces that ran the executor has", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "executors_memory": {"name": "executors_memory", "description": "The amount of memory the executed request", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "executor_network_performance": {"name": "executor_network_performance", "description": "The network performance of the EC2 instance which ran the driver", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "executor_pricing_term": {"name": "executor_pricing_term", "description": "Whether the EC2 instance that ran the executor is spot, on demand or reserved", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "executors_availability_zone": {"name": "executors_availability_zone", "description": "Collection of all the AZ across all executors", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "executors_product_storage": {"name": "executors_product_storage", "description": "Whether the instance comes with storage or if requires an EBS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "executor_ram_efficiency": {"name": "executor_ram_efficiency", "description": "The average amount of memory the executor used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executor_ram_efficiency_by_max": {"name": "executor_ram_efficiency_by_max", "description": "The maximum amount of memory the executor used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executor_cpu_efficiency": {"name": "executor_cpu_efficiency", "description": "Executor CPU average usage devided by the requested CPU", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executor_cpu_efficiency_by_max": {"name": "executor_cpu_efficiency_by_max", "description": "Executor CPU max usage devided by the requested CPU", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executors_cost": {"name": "executors_cost", "description": "Total cost of all executors", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executor_compute_cost": {"name": "executor_compute_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "executor_data_transfer_cost": {"name": "executor_data_transfer_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__spark_jobs/infra__spark_jobs.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "incremental", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "merge", "unique_key": ["run_id", "run_date"], "partition_by": ["year", "month"]}, "created_at": 1700082669.6395547, "relation_name": "dev_dkruh1.infra__spark_jobs", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'merge',\n unique_key=['run_id','run_date'],\n partition_by=[\"year\", \"month\"])\n}}\n-- This model generates spark job rows with relevant aggregations, split by driver / executor\nWITH spark_jobs_cost AS (\n SELECT\n *,\n productline AS product_line,\n NVL(group,'untagged') AS group_normalized,\n NVL(team,'untagged') AS team_normalized\n FROM\n {{ ref('infra__kubernetes_cost') }} AS kcost\n WHERE\n cluster = \"cluster-one\" AND\n namespace = \"data-group\" AND\n kcost.service = 'spark' AND\n run_id IS NOT NULL\n {% if is_incremental() %}\n AND\n make_date(kcost.year, kcost.month, kcost.day) >=\n (\n SELECT dateadd(day,-2,MAX(run_date))\n FROM {{ this }}\n )\n {% endif %}\n),\n-- Aggregating job level data\nspark_job AS (\n SELECT\n run_id,\n year,\n month,\n day,\n FIRST(product_line) as product_line,\n make_date(year, month, day) AS run_date,\n FIRST(group_normalized) as group,\n FIRST(team_normalized) as team,\n FIRST(system_normalized) as system,\n FIRST(subsystem_normalized) as subsystem,\n FIRST(component_normalized) as component,\n FIRST(feature_normalized) as feature,\n FIRST(is_cast) as is_cast,\n SUM(networktransferbytes) AS total_network_transfer_in_bytes,\n SUM(networkreceivebytes) AS total_network_received_in_bytes,\n SUM(totalcost) AS cost,\n SUM(cpucost) AS cpucost,\n SUM(pvcost) AS pvcost,\n SUM(networkcost) AS networkcost,\n SUM(ramcost) AS ramcost,\n SUM(cpucorehours) AS cpucorehours,\n SUM(rambytehours) AS rambytehours,\n FIRST(resource_tags_user_product_line) productline_instance_tag,\n COUNT(DISTINCT(availability_zone)) > 1 AS is_multi_az_cost,\n FIRST(product_region) AS region\n FROM\n spark_jobs_cost\n GROUP BY\n run_id,\n year,\n month,\n day\n),\n-- Aggregating executor level data\nexecutor_agg AS (\n SELECT\n run_id,\n year,\n month,\n day,\n FIRST(product_line) as product_line,\n FIRST(group_normalized) as group,\n FIRST(team_normalized) as team,\n FIRST(system_normalized) as system,\n FIRST(subsystem_normalized) as subsystem,\n FIRST(component_normalized) as component,\n FIRST(feature_normalized) as feature,\n FIRST(is_cast) as is_cast,\n ROUND(AVG(minutes)) AS avg_executor_duration,\n MAX(minutes) AS max_executor_duration,\n MIN(minutes) AS min_executor_duration,\n SUM(minutes) AS total_executors_duration,\n COUNT(*) AS executors_count,\n MAX(cpucores) AS executor_cores,\n MAX(rambytes) AS executor_memory_in_bytes,\n MAX(cpuCoreUsageMax) AS executor_max_core_usage,\n MAX(ramByteUsageMax) AS executor_max_memory_usage,\n AVG(networktransferbytes) AS executor_avg_network_transfer_in_bytes,\n AVG(networkreceivebytes) AS executor_avg_network_received_in_bytes,\n concat_ws(',', array_distinct(collect_list(product_instance_type))) AS executors_instance_types,\n concat_ws(',', array_distinct(collect_list(product_vcpu))) AS executors_vcpu,\n concat_ws(',', array_distinct(collect_list(product_memory))) AS executors_memory,\n concat_ws(',', array_distinct(collect_list(product_network_performance))) AS executor_network_performance,\n concat_ws(',', array_distinct(collect_list(pricing_term))) AS executor_pricing_term,\n concat_ws(',', array_distinct(collect_list(availability_zone))) AS executors_availability_zone,\n concat_ws(',', array_distinct(collect_list(product_storage))) AS executors_product_storage,\n MAX(ramefficiency) AS executor_ram_efficiency,\n MAX(ramByteUsageMax/rambyterequestaverage) AS executor_ram_efficiency_by_max,\n MAX(cpuefficiency) AS executor_cpu_efficiency,\n MAX(cpuCoreUsageMax/cpucorerequestaverage) AS executor_cpu_efficiency_by_max,\n SUM(totalcost) AS executors_cost,\n SUM(compute_cost) AS executor_compute_cost,\n SUM(data_transfer_cost) AS executor_data_transfer_cost\n FROM\n spark_jobs_cost\n WHERE\n sub_service = 'executor'\n GROUP BY\n run_id,\n year,\n month,\n day\n),\n-- Aggregating driver level data\ndriver_agg AS (\n SELECT\n run_id,\n year,\n month,\n day,\n FIRST(product_line) as product_line,\n FIRST(group_normalized) as group,\n FIRST(team_normalized) as team,\n FIRST(system_normalized) as system,\n FIRST(subsystem_normalized) as subsystem,\n FIRST(component_normalized) as component,\n FIRST(feature_normalized) as feature,\n FIRST(is_cast) as is_cast,\n FIRST(release_name) as release_name,\n FIRST(minutes) AS duration,\n MAX(cpucores) AS driver_cores,\n MAX(rambytes) AS driver_memory_in_bytes,\n AVG(networktransferbytes) AS driver_avg_network_transfer_in_bytes,\n AVG(networkreceivebytes) AS driver_avg_network_received_in_bytes,\n MAX(cpuCoreUsageMax) AS driver_max_core_usage,\n MAX(ramByteUsageMax) AS driver_max_memory_usage,\n concat_ws(',', array_distinct(collect_list(product_instance_type))) AS driver_instance_types,\n concat_ws(',', array_distinct(collect_list(product_vcpu))) AS driver_instance_vcpu,\n concat_ws(',', array_distinct(collect_list(product_memory))) AS driver_instance_memory,\n concat_ws(',', array_distinct(collect_list(product_network_performance))) AS driver_instance_network_performance,\n concat_ws(',', array_distinct(collect_list(pricing_term))) AS driver_instance_pricing_term,\n concat_ws(',', array_distinct(collect_list(availability_zone))) AS driver_availability_zone,\n concat_ws(',', array_distinct(collect_list(product_storage))) AS driver_product_storage,\n MAX(ramefficiency) AS driver_ram_efficiency,\n MAX(ramByteUsageMax/rambyterequestaverage) AS driver_ram_efficiency_by_max,\n MAX(cpuefficiency) AS driver_cpu_efficiency,\n MAX(cpuCoreUsageMax/cpucorerequestaverage) AS driver_cpu_efficiency_by_max,\n SUM(totalcost) AS driver_cost,\n FIRST(minutes) <= 3 AS is_driver_OD_candidate,\n SUM(compute_cost) AS driver_compute_cost,\n SUM(data_transfer_cost) AS driver_data_transfer_cost\n FROM\n spark_jobs_cost\n WHERE\n sub_service = 'driver'\n GROUP BY\n run_id,\n year,\n month,\n day\n)\nSELECT\n *\nFROM\n spark_job AS job\n LEFT JOIN\n driver_agg AS driver\n USING(run_id, year, month, day, product_line, group, team, system, subsystem, component, feature, is_cast)\n LEFT JOIN\n executor_agg AS executor\n USING(run_id, year, month, day, product_line, group, team, system, subsystem, component, feature, is_cast)", "language": "sql", "refs": [{"name": "infra__kubernetes_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__kubernetes_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__spark_jobs/infra__spark_jobs.sql", "compiled": true, "compiled_code": "\n-- This model generates spark job rows with relevant aggregations, split by driver / executor\nWITH spark_jobs_cost AS (\n SELECT\n *,\n productline AS product_line,\n NVL(group,'untagged') AS group_normalized,\n NVL(team,'untagged') AS team_normalized\n FROM\n dev_dkruh1.infra__kubernetes_cost AS kcost\n WHERE\n cluster = \"cluster-one\" AND\n namespace = \"data-group\" AND\n kcost.service = 'spark' AND\n run_id IS NOT NULL\n \n),\n-- Aggregating job level data\nspark_job AS (\n SELECT\n run_id,\n year,\n month,\n day,\n FIRST(product_line) as product_line,\n make_date(year, month, day) AS run_date,\n FIRST(group_normalized) as group,\n FIRST(team_normalized) as team,\n FIRST(system_normalized) as system,\n FIRST(subsystem_normalized) as subsystem,\n FIRST(component_normalized) as component,\n FIRST(feature_normalized) as feature,\n FIRST(is_cast) as is_cast,\n SUM(networktransferbytes) AS total_network_transfer_in_bytes,\n SUM(networkreceivebytes) AS total_network_received_in_bytes,\n SUM(totalcost) AS cost,\n SUM(cpucost) AS cpucost,\n SUM(pvcost) AS pvcost,\n SUM(networkcost) AS networkcost,\n SUM(ramcost) AS ramcost,\n SUM(cpucorehours) AS cpucorehours,\n SUM(rambytehours) AS rambytehours,\n FIRST(resource_tags_user_product_line) productline_instance_tag,\n COUNT(DISTINCT(availability_zone)) > 1 AS is_multi_az_cost,\n FIRST(product_region) AS region\n FROM\n spark_jobs_cost\n GROUP BY\n run_id,\n year,\n month,\n day\n),\n-- Aggregating executor level data\nexecutor_agg AS (\n SELECT\n run_id,\n year,\n month,\n day,\n FIRST(product_line) as product_line,\n FIRST(group_normalized) as group,\n FIRST(team_normalized) as team,\n FIRST(system_normalized) as system,\n FIRST(subsystem_normalized) as subsystem,\n FIRST(component_normalized) as component,\n FIRST(feature_normalized) as feature,\n FIRST(is_cast) as is_cast,\n ROUND(AVG(minutes)) AS avg_executor_duration,\n MAX(minutes) AS max_executor_duration,\n MIN(minutes) AS min_executor_duration,\n SUM(minutes) AS total_executors_duration,\n COUNT(*) AS executors_count,\n MAX(cpucores) AS executor_cores,\n MAX(rambytes) AS executor_memory_in_bytes,\n MAX(cpuCoreUsageMax) AS executor_max_core_usage,\n MAX(ramByteUsageMax) AS executor_max_memory_usage,\n AVG(networktransferbytes) AS executor_avg_network_transfer_in_bytes,\n AVG(networkreceivebytes) AS executor_avg_network_received_in_bytes,\n concat_ws(',', array_distinct(collect_list(product_instance_type))) AS executors_instance_types,\n concat_ws(',', array_distinct(collect_list(product_vcpu))) AS executors_vcpu,\n concat_ws(',', array_distinct(collect_list(product_memory))) AS executors_memory,\n concat_ws(',', array_distinct(collect_list(product_network_performance))) AS executor_network_performance,\n concat_ws(',', array_distinct(collect_list(pricing_term))) AS executor_pricing_term,\n concat_ws(',', array_distinct(collect_list(availability_zone))) AS executors_availability_zone,\n concat_ws(',', array_distinct(collect_list(product_storage))) AS executors_product_storage,\n MAX(ramefficiency) AS executor_ram_efficiency,\n MAX(ramByteUsageMax/rambyterequestaverage) AS executor_ram_efficiency_by_max,\n MAX(cpuefficiency) AS executor_cpu_efficiency,\n MAX(cpuCoreUsageMax/cpucorerequestaverage) AS executor_cpu_efficiency_by_max,\n SUM(totalcost) AS executors_cost,\n SUM(compute_cost) AS executor_compute_cost,\n SUM(data_transfer_cost) AS executor_data_transfer_cost\n FROM\n spark_jobs_cost\n WHERE\n sub_service = 'executor'\n GROUP BY\n run_id,\n year,\n month,\n day\n),\n-- Aggregating driver level data\ndriver_agg AS (\n SELECT\n run_id,\n year,\n month,\n day,\n FIRST(product_line) as product_line,\n FIRST(group_normalized) as group,\n FIRST(team_normalized) as team,\n FIRST(system_normalized) as system,\n FIRST(subsystem_normalized) as subsystem,\n FIRST(component_normalized) as component,\n FIRST(feature_normalized) as feature,\n FIRST(is_cast) as is_cast,\n FIRST(release_name) as release_name,\n FIRST(minutes) AS duration,\n MAX(cpucores) AS driver_cores,\n MAX(rambytes) AS driver_memory_in_bytes,\n AVG(networktransferbytes) AS driver_avg_network_transfer_in_bytes,\n AVG(networkreceivebytes) AS driver_avg_network_received_in_bytes,\n MAX(cpuCoreUsageMax) AS driver_max_core_usage,\n MAX(ramByteUsageMax) AS driver_max_memory_usage,\n concat_ws(',', array_distinct(collect_list(product_instance_type))) AS driver_instance_types,\n concat_ws(',', array_distinct(collect_list(product_vcpu))) AS driver_instance_vcpu,\n concat_ws(',', array_distinct(collect_list(product_memory))) AS driver_instance_memory,\n concat_ws(',', array_distinct(collect_list(product_network_performance))) AS driver_instance_network_performance,\n concat_ws(',', array_distinct(collect_list(pricing_term))) AS driver_instance_pricing_term,\n concat_ws(',', array_distinct(collect_list(availability_zone))) AS driver_availability_zone,\n concat_ws(',', array_distinct(collect_list(product_storage))) AS driver_product_storage,\n MAX(ramefficiency) AS driver_ram_efficiency,\n MAX(ramByteUsageMax/rambyterequestaverage) AS driver_ram_efficiency_by_max,\n MAX(cpuefficiency) AS driver_cpu_efficiency,\n MAX(cpuCoreUsageMax/cpucorerequestaverage) AS driver_cpu_efficiency_by_max,\n SUM(totalcost) AS driver_cost,\n FIRST(minutes) <= 3 AS is_driver_OD_candidate,\n SUM(compute_cost) AS driver_compute_cost,\n SUM(data_transfer_cost) AS driver_data_transfer_cost\n FROM\n spark_jobs_cost\n WHERE\n sub_service = 'driver'\n GROUP BY\n run_id,\n year,\n month,\n day\n)\nSELECT\n *\nFROM\n spark_job AS job\n LEFT JOIN\n driver_agg AS driver\n USING(run_id, year, month, day, product_line, group, team, system, subsystem, component, feature, is_cast)\n LEFT JOIN\n executor_agg AS executor\n USING(run_id, year, month, day, product_line, group, team, system, subsystem, component, feature, is_cast)", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__sqs_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra__sqs_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.sql", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.sql", "unique_id": "model.yoda.infra__sqs_cost", "fqn": ["yoda", "infra", "marts", "infra__sqs_cost", "infra__sqs_cost"], "alias": "infra__sqs_cost", "checksum": {"name": "sha256", "checksum": "ca67c3212e89a7430c4ec9ca2d341a4e7b324fe696f2513d153f7118c5d2a0ff"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "SQS Costs", "columns": {"billing_period": {"name": "billing_period", "description": "Billing month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "Billing day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "cluster_name": {"name": "cluster_name", "description": "Cluster name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_resource_id": {"name": "line_item_resource_id", "description": "ARN", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_account_id": {"name": "line_item_usage_account_id", "description": "Account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "Account name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "Group tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "Team tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "Feature tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_operation": {"name": "line_item_operation", "description": "Operation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "Product family", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "Unblended costs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "Amortized Costs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "Item type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_amount": {"name": "line_item_usage_amount", "description": "Usage amount", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pricing_term": {"name": "pricing_term", "description": "Pricing term", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_message_delivery_frequency": {"name": "product_message_delivery_frequency", "description": "Message delivery frequency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__sqs_cost/infra__sqs_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.660754, "relation_name": "dev_dkruh1.infra__sqs_cost", "raw_code": "with sqs_clusters as (\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n regexp_extract(line_item_resource_id,'([^:]+)$', 1) AS cluster_name,\n line_item_resource_id,\n line_item_usage_account_id,\n {{ resolve_account('line_item_usage_account_id') }} AS account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n line_item_operation,\n product_product_family,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost,\n FIRST(line_item_line_item_type) AS line_item_line_item_type,\n SUM(line_item_usage_amount) AS line_item_usage_amount,\n FIRST(pricing_term) AS pricing_term, \n FIRST(product_line) AS product_line,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(product_message_delivery_frequency)))) AS product_message_delivery_frequency\n FROM \n dev_moshederri.infra_stg__aws_payer_billing_report_raw\n WHERE \n line_item_product_code=\"AWSQueueService\" AND \n line_item_line_item_type not in ('PrivateRateDiscount','EdpDiscount', 'Tax') AND\n bill_billing_period_start_date >= '2023-01-01 00:00:00'\n GROUP BY \n billing_period, \n bill_start_date,\n cluster_name,\n line_item_resource_id, \n line_item_usage_account_id,\n account_name,\n product_product_family,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n line_item_operation\n)\n\nSELECT * FROM sqs_clusters", "language": "sql", "refs": [], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.resolve_account", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": []}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__sqs_cost/infra__sqs_cost.sql", "compiled": true, "compiled_code": "with sqs_clusters as (\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n regexp_extract(line_item_resource_id,'([^:]+)$', 1) AS cluster_name,\n line_item_resource_id,\n line_item_usage_account_id,\n \nCASE \n WHEN line_item_usage_account_id = '402837048690' THEN 'Yotpo Ltd'\n WHEN line_item_usage_account_id = '140980321741' THEN 'Omri Cohen (Support+RI+MP)'\n WHEN line_item_usage_account_id = '368297226064' THEN 'SMSBump'\n WHEN line_item_usage_account_id = '067361735412' THEN 'AWS QA (Staging)'\n WHEN line_item_usage_account_id = '237698446327' THEN 'Yotpo IT'\n ELSE ''\nEND\n AS account_name,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n line_item_operation,\n product_product_family,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost,\n FIRST(line_item_line_item_type) AS line_item_line_item_type,\n SUM(line_item_usage_amount) AS line_item_usage_amount,\n FIRST(pricing_term) AS pricing_term, \n FIRST(product_line) AS product_line,\n TRIM(CONCAT_WS(' ', array_distinct(collect_list(product_message_delivery_frequency)))) AS product_message_delivery_frequency\n FROM \n dev_moshederri.infra_stg__aws_payer_billing_report_raw\n WHERE \n line_item_product_code=\"AWSQueueService\" AND \n line_item_line_item_type not in ('PrivateRateDiscount','EdpDiscount', 'Tax') AND\n bill_billing_period_start_date >= '2023-01-01 00:00:00'\n GROUP BY \n billing_period, \n bill_start_date,\n cluster_name,\n line_item_resource_id, \n line_item_usage_account_id,\n account_name,\n product_product_family,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n line_item_operation\n)\n\nSELECT * FROM sqs_clusters", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__sub_departments_monthly_budget_cur": {"database": null, "schema": "dev_dkruh1", "name": "infra__sub_departments_monthly_budget_cur", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.sql", "original_file_path": "models/infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.sql", "unique_id": "model.yoda.infra__sub_departments_monthly_budget_cur", "fqn": ["yoda", "infra", "marts", "infra__sub_departments_monthly_budget_cur", "infra__sub_departments_monthly_budget_cur"], "alias": "infra__sub_departments_monthly_budget_cur", "checksum": {"name": "sha256", "checksum": "375c505e5aa4dee2e7d680de50a2c14da1f69070a7bbc94ae0ee044f1a965615"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Sub departments budgets", "columns": {"department": {"name": "department", "description": "Department", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "department_disply_name": {"name": "department_disply_name", "description": "Department display name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "budget": {"name": "budget", "description": "Budget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "updated_date": {"name": "updated_date", "description": "Budget update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "view", "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.673929, "relation_name": "dev_dkruh1.infra__sub_departments_monthly_budget_cur", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view'),\n )\n}}\n\nWITH budget AS(\n SELECT \n department,\n\t\tdepartment_disply_name,\n\t\tchange_date,\n\t\tbudget,\n MAX(change_date) OVER (PARTITION BY department) AS updated_date\n FROM \n {{ ref('infra_stg__sub_departments_monthly_budget') }} \n), latest_view AS (\n SELECT \n department,\n\t\tdepartment_disply_name,\n\t\tbudget,\n updated_date\n FROM \n budget\n WHERE \n updated_date = change_date\n)\n\nSELECT \n department,\n department_disply_name,\n budget,\n updated_date \n \nFROM latest_view", "language": "sql", "refs": [{"name": "infra_stg__sub_departments_monthly_budget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__sub_departments_monthly_budget"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.sql", "compiled": true, "compiled_code": "\n\nWITH budget AS(\n SELECT \n department,\n\t\tdepartment_disply_name,\n\t\tchange_date,\n\t\tbudget,\n MAX(change_date) OVER (PARTITION BY department) AS updated_date\n FROM \n dev_dkruh1.infra_stg__sub_departments_monthly_budget \n), latest_view AS (\n SELECT \n department,\n\t\tdepartment_disply_name,\n\t\tbudget,\n updated_date\n FROM \n budget\n WHERE \n updated_date = change_date\n)\n\nSELECT \n department,\n department_disply_name,\n budget,\n updated_date \n \nFROM latest_view", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra__vendor_contracts": {"database": null, "schema": "dev_dkruh1", "name": "infra__vendor_contracts", "resource_type": "model", "package_name": "yoda", "path": "infra/marts/infra__vendor_contracts/infra__vendor_contracts.sql", "original_file_path": "models/infra/marts/infra__vendor_contracts/infra__vendor_contracts.sql", "unique_id": "model.yoda.infra__vendor_contracts", "fqn": ["yoda", "infra", "marts", "infra__vendor_contracts", "infra__vendor_contracts"], "alias": "infra__vendor_contracts", "checksum": {"name": "sha256", "checksum": "f34738969cb98bf616fec8586dc8cb3ca3d1eb63382e5c2d09e4894a14fa73b5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Table Description", "columns": {"vendor": {"name": "vendor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yearly_budget": {"name": "yearly_budget", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(13,3)"}, "start_date": {"name": "start_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "end_date": {"name": "end_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/marts/infra__vendor_contracts/infra__vendor_contracts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082669.685976, "relation_name": "dev_dkruh1.infra__vendor_contracts", "raw_code": "SELECT\n \"rivery\" as vendor,\n 46000 * 0.405 as yearly_budget,\n \"2023-10-23\" AS start_date,\n \"2024-10-24\" AS end_date \nUNION\nSELECT \n \"databricks\" as vendor,\n 240000 as yearly_budget,\n \"2022-11-01\" AS start_date,\n \"2023-10-31\" AS end_date \nUNION\nSELECT \n \"snowflake\" as vendor,\n 206400 as yearly_budget,\n \"2022-12-01\" AS start_date,\n \"2023-11-30\" AS end_date", "language": "sql", "refs": [], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": []}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__vendor_contracts/infra__vendor_contracts.sql", "compiled": true, "compiled_code": "SELECT\n \"rivery\" as vendor,\n 46000 * 0.405 as yearly_budget,\n \"2023-10-23\" AS start_date,\n \"2024-10-24\" AS end_date \nUNION\nSELECT \n \"databricks\" as vendor,\n 240000 as yearly_budget,\n \"2022-11-01\" AS start_date,\n \"2023-10-31\" AS end_date \nUNION\nSELECT \n \"snowflake\" as vendor,\n 206400 as yearly_budget,\n \"2022-12-01\" AS start_date,\n \"2023-11-30\" AS end_date", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__alerts": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__alerts", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.sql", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.sql", "unique_id": "model.yoda.infra_stg__alerts", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__alerts", "infra_stg__alerts"], "alias": "infra_stg__alerts", "checksum": {"name": "sha256", "checksum": "808df4a0abecf490ea6ba9feef88b2dd116cf588170152023f7149f2884d2e2f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Table Description", "columns": {"alert_id": {"name": "alert_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "acknowledged": {"name": "acknowledged", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "seen": {"name": "seen", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "snoozed": {"name": "snoozed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "count": {"name": "count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updatedat": {"name": "updatedat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "impact_duration_in_seconds": {"name": "impact_duration_in_seconds", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source": {"name": "source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priority": {"name": "priority", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "teams": {"name": "teams", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "integration": {"name": "integration", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "tags": {"name": "tags", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082670.6975536, "relation_name": "dev_dkruh1.infra_stg__alerts", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__opsgenie', 'alerts') }}\n\n), infra_stg__alerts AS (\n\n SELECT \n\t\ttinyid as alert_id,\n\t\tmessage,\n\t\tstatus,\n\t\tacknowledged,\n\t\tseen,\n\t\tsnoozed,\n\t\tcount,\n\t\tCAST(updatedat AS TIMESTAMP) as createdat, \n\t\tCAST(createdat AS TIMESTAMP) as updatedat, \n\t\tunix_timestamp(CAST(updatedat AS TIMESTAMP)) - unix_timestamp(CAST(createdat AS TIMESTAMP)) AS impact_duration_in_seconds,\n\t\tsource,\n\t\towner,\n\t\tpriority,\n\t\tFROM_JSON(teams, 'array>') AS teams,\n\t\tFROM_JSON(integration, 'struct') AS integration,\n\t\tFROM_JSON(tags, 'array') AS tags\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__alerts", "language": "sql", "refs": [], "sources": [["infra__opsgenie", "alerts"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__opsgenie.alerts"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM opsgenie.alerts\n\n), infra_stg__alerts AS (\n\n SELECT \n\t\ttinyid as alert_id,\n\t\tmessage,\n\t\tstatus,\n\t\tacknowledged,\n\t\tseen,\n\t\tsnoozed,\n\t\tcount,\n\t\tCAST(updatedat AS TIMESTAMP) as createdat, \n\t\tCAST(createdat AS TIMESTAMP) as updatedat, \n\t\tunix_timestamp(CAST(updatedat AS TIMESTAMP)) - unix_timestamp(CAST(createdat AS TIMESTAMP)) AS impact_duration_in_seconds,\n\t\tsource,\n\t\towner,\n\t\tpriority,\n\t\tFROM_JSON(teams, 'array>') AS teams,\n\t\tFROM_JSON(integration, 'struct') AS integration,\n\t\tFROM_JSON(tags, 'array') AS tags\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__alerts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__aws_billing_report_raw": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__aws_billing_report_raw", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.sql", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.sql", "unique_id": "model.yoda.infra_stg__aws_billing_report_raw", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__aws_billing_report_raw", "infra_stg__aws_billing_report_raw"], "alias": "infra_stg__aws_billing_report_raw", "checksum": {"name": "sha256", "checksum": "b1b5d50f28c027faa73de90e6234fdee3acab516974ef848426506b6cc4878f4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": [{"sql": "\n \n \n \n \n", "transaction": true, "index": null}]}, "tags": ["infra"], "description": "infra_stg__aws_billing_report_raw", "columns": {"identity_line_item_id": {"name": "identity_line_item_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "identity_time_interval": {"name": "identity_time_interval", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_invoice_id": {"name": "bill_invoice_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_billing_entity": {"name": "bill_billing_entity", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_bill_type": {"name": "bill_bill_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_billing_period_start_date": {"name": "bill_billing_period_start_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_billing_period_end_date": {"name": "bill_billing_period_end_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_usage_account_id": {"name": "line_item_usage_account_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_start_date": {"name": "line_item_usage_start_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_usage_end_date": {"name": "line_item_usage_end_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_product_code": {"name": "line_item_product_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_type": {"name": "line_item_usage_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_operation": {"name": "line_item_operation", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_availability_zone": {"name": "line_item_availability_zone", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_resource_id": {"name": "line_item_resource_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_amount": {"name": "line_item_usage_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_normalization_factor": {"name": "line_item_normalization_factor", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_normalized_usage_amount": {"name": "line_item_normalized_usage_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_currency_code": {"name": "line_item_currency_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_unblended_rate": {"name": "line_item_unblended_rate", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_unblended_cost": {"name": "line_item_unblended_cost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_blended_rate": {"name": "line_item_blended_rate", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_blended_cost": {"name": "line_item_blended_cost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_line_item_description": {"name": "line_item_line_item_description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_tax_type": {"name": "line_item_tax_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_net_unblended_rate": {"name": "line_item_net_unblended_rate", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_net_unblended_cost": {"name": "line_item_net_unblended_cost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_legal_entity": {"name": "line_item_legal_entity", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_name": {"name": "product_product_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_purchase_option": {"name": "product_purchase_option", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_alarm_type": {"name": "product_alarm_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_availability": {"name": "product_availability", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_availability_zone": {"name": "product_availability_zone", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle": {"name": "product_bundle", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle_description": {"name": "product_bundle_description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle_group": {"name": "product_bundle_group", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_cache_engine": {"name": "product_cache_engine", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_capacitystatus": {"name": "product_capacitystatus", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_category": {"name": "product_category", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_clock_speed": {"name": "product_clock_speed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_component": {"name": "product_component", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_compute_family": {"name": "product_compute_family", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_compute_type": {"name": "product_compute_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_concurrencyscalingfreeusage": {"name": "product_concurrencyscalingfreeusage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_counts_against_quota": {"name": "product_counts_against_quota", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_cputype": {"name": "product_cputype", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_current_generation": {"name": "product_current_generation", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_data": {"name": "product_data", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_data_transfer_quota": {"name": "product_data_transfer_quota", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_database_engine": {"name": "product_database_engine", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_datastore_storagetype": {"name": "product_datastore_storagetype", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_dedicated_ebs_throughput": {"name": "product_dedicated_ebs_throughput", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_deployment_option": {"name": "product_deployment_option", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_description": {"name": "product_description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_durability": {"name": "product_durability", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_ecu": {"name": "product_ecu", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_endpoint": {"name": "product_endpoint", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_endpoint_type": {"name": "product_endpoint_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_engine_code": {"name": "product_engine_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_enhanced_networking_supported": {"name": "product_enhanced_networking_supported", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_event_type": {"name": "product_event_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_execution_frequency": {"name": "product_execution_frequency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_execution_location": {"name": "product_execution_location", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_fee_code": {"name": "product_fee_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_fee_description": {"name": "product_fee_description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_free_overage": {"name": "product_free_overage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_frequency_mode": {"name": "product_frequency_mode", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_from_location": {"name": "product_from_location", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_from_location_type": {"name": "product_from_location_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_gpu": {"name": "product_gpu", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_gpu_memory": {"name": "product_gpu_memory", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_granularity": {"name": "product_granularity", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_group": {"name": "product_group", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_group_description": {"name": "product_group_description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_insightstype": {"name": "product_insightstype", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_family": {"name": "product_instance_family", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_name": {"name": "product_instance_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type": {"name": "product_instance_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type_family": {"name": "product_instance_type_family", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_avx2_available": {"name": "product_intel_avx2_available", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_avx_available": {"name": "product_intel_avx_available", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_turbo_available": {"name": "product_intel_turbo_available", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_io": {"name": "product_io", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_license": {"name": "product_license", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_license_model": {"name": "product_license_model", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_location": {"name": "product_location", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_location_type": {"name": "product_location_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_logs_destination": {"name": "product_logs_destination", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_iops_burst_performance": {"name": "product_max_iops_burst_performance", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_iopsvolume": {"name": "product_max_iopsvolume", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_throughputvolume": {"name": "product_max_throughputvolume", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_volume_size": {"name": "product_max_volume_size", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_maximum_extended_storage": {"name": "product_maximum_extended_storage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory": {"name": "product_memory", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory_gib": {"name": "product_memory_gib", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memorytype": {"name": "product_memorytype", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_message_delivery_frequency": {"name": "product_message_delivery_frequency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_message_delivery_order": {"name": "product_message_delivery_order", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_min_volume_size": {"name": "product_min_volume_size", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_network_performance": {"name": "product_network_performance", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_normalization_size_factor": {"name": "product_normalization_size_factor", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_operating_system": {"name": "product_operating_system", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_operation": {"name": "product_operation", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_overage_type": {"name": "product_overage_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_cpu": {"name": "product_physical_cpu", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_gpu": {"name": "product_physical_gpu", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_processor": {"name": "product_physical_processor", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_pre_installed_sw": {"name": "product_pre_installed_sw", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_pricing_unit": {"name": "product_pricing_unit", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_processor_architecture": {"name": "product_processor_architecture", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_processor_features": {"name": "product_processor_features", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_purchaseterm": {"name": "product_purchaseterm", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_queue_type": {"name": "product_queue_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_ratetype": {"name": "product_ratetype", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_request_description": {"name": "product_request_description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_request_type": {"name": "product_request_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_resource_endpoint": {"name": "product_resource_endpoint", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_resource_type": {"name": "product_resource_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rootvolume": {"name": "product_rootvolume", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_routing_target": {"name": "product_routing_target", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_routing_type": {"name": "product_routing_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_running_mode": {"name": "product_running_mode", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_servicecode": {"name": "product_servicecode", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_servicename": {"name": "product_servicename", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_sku": {"name": "product_sku", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_software_included": {"name": "product_software_included", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_software_type": {"name": "product_software_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_standard_storage_retention_included": {"name": "product_standard_storage_retention_included", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage": {"name": "product_storage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_class": {"name": "product_storage_class", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_family": {"name": "product_storage_family", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_media": {"name": "product_storage_media", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_type": {"name": "product_storage_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_tenancy": {"name": "product_tenancy", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_tiertype": {"name": "product_tiertype", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_to_location": {"name": "product_to_location", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_to_location_type": {"name": "product_to_location_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_transfer_type": {"name": "product_transfer_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_type": {"name": "product_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_usage_family": {"name": "product_usage_family", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_usagetype": {"name": "product_usagetype", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_uservolume": {"name": "product_uservolume", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_vcpu": {"name": "product_vcpu", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_version": {"name": "product_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_volume_api_name": {"name": "product_volume_api_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_volume_type": {"name": "product_volume_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_with_active_users": {"name": "product_with_active_users", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_lease_contract_length": {"name": "pricing_lease_contract_length", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_offering_class": {"name": "pricing_offering_class", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_purchase_option": {"name": "pricing_purchase_option", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_rate_code": {"name": "pricing_rate_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_rate_id": {"name": "pricing_rate_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_currency": {"name": "pricing_currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_public_on_demand_cost": {"name": "pricing_public_on_demand_cost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pricing_public_on_demand_rate": {"name": "pricing_public_on_demand_rate", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_unit": {"name": "pricing_unit", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_amortized_upfront_cost_for_usage": {"name": "reservation_amortized_upfront_cost_for_usage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_amortized_upfront_fee_for_billing_period": {"name": "reservation_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_effective_cost": {"name": "reservation_effective_cost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_end_time": {"name": "reservation_end_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_modification_status": {"name": "reservation_modification_status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_net_amortized_upfront_cost_for_usage": {"name": "reservation_net_amortized_upfront_cost_for_usage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_amortized_upfront_fee_for_billing_period": {"name": "reservation_net_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_effective_cost": {"name": "reservation_net_effective_cost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_recurring_fee_for_usage": {"name": "reservation_net_recurring_fee_for_usage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_unused_amortized_upfront_fee_for_billing_period": {"name": "reservation_net_unused_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_unused_recurring_fee": {"name": "reservation_net_unused_recurring_fee", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_upfront_value": {"name": "reservation_net_upfront_value", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_normalized_units_per_reservation": {"name": "reservation_normalized_units_per_reservation", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_number_of_reservations": {"name": "reservation_number_of_reservations", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_recurring_fee_for_usage": {"name": "reservation_recurring_fee_for_usage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_reservation_a_r_n": {"name": "reservation_reservation_a_r_n", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_start_time": {"name": "reservation_start_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_subscription_id": {"name": "reservation_subscription_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_total_reserved_normalized_units": {"name": "reservation_total_reserved_normalized_units", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_total_reserved_units": {"name": "reservation_total_reserved_units", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_units_per_reservation": {"name": "reservation_units_per_reservation", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_unused_amortized_upfront_fee_for_billing_period": {"name": "reservation_unused_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_normalized_unit_quantity": {"name": "reservation_unused_normalized_unit_quantity", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_quantity": {"name": "reservation_unused_quantity", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_recurring_fee": {"name": "reservation_unused_recurring_fee", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_upfront_value": {"name": "reservation_upfront_value", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_edp_discount": {"name": "discount_edp_discount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_private_rate_discount": {"name": "discount_private_rate_discount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_total_discount": {"name": "discount_total_discount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_total_commitment_to_date": {"name": "savings_plan_total_commitment_to_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_savings_plan_a_r_n": {"name": "savings_plan_savings_plan_a_r_n", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_savings_plan_rate": {"name": "savings_plan_savings_plan_rate", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_used_commitment": {"name": "savings_plan_used_commitment", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_savings_plan_effective_cost": {"name": "savings_plan_savings_plan_effective_cost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_amortized_upfront_commitment_for_billing_period": {"name": "savings_plan_amortized_upfront_commitment_for_billing_period", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_recurring_commitment_for_billing_period": {"name": "savings_plan_recurring_commitment_for_billing_period", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_start_time": {"name": "savings_plan_start_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_end_time": {"name": "savings_plan_end_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_instance_type_family": {"name": "savings_plan_instance_type_family", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_offering_type": {"name": "savings_plan_offering_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_payment_option": {"name": "savings_plan_payment_option", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_purchase_term": {"name": "savings_plan_purchase_term", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_region": {"name": "savings_plan_region", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_net_savings_plan_effective_cost": {"name": "savings_plan_net_savings_plan_effective_cost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_net_amortized_upfront_commitment_for_billing_period": {"name": "savings_plan_net_amortized_upfront_commitment_for_billing_period", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_net_recurring_commitment_for_billing_period": {"name": "savings_plan_net_recurring_commitment_for_billing_period", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "resource_tags_aws_created_by": {"name": "resource_tags_aws_created_by", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_aws_elasticmapreduce_instance_group_role": {"name": "resource_tags_aws_elasticmapreduce_instance_group_role", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_aws_elasticmapreduce_job_flow_id": {"name": "resource_tags_aws_elasticmapreduce_job_flow_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_databricks_instance_pool_id": {"name": "resource_tags_user_databricks_instance_pool_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_docker_compose": {"name": "resource_tags_user_docker_compose", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_environment": {"name": "resource_tags_user_environment", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_name": {"name": "resource_tags_user_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_service": {"name": "resource_tags_user_service", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_account": {"name": "resource_tags_user_account", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_asg": {"name": "resource_tags_user_asg", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_cluster_name": {"name": "resource_tags_user_cluster_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_component": {"name": "resource_tags_user_component", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_product_line": {"name": "resource_tags_user_product_line", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_componenet": {"name": "resource_tags_user_sub_componenet", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_component": {"name": "resource_tags_user_sub_component", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "year": {"name": "year", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "pre-hook": ["\n \n \n \n \n"]}, "created_at": 1700082670.8564463, "relation_name": "dev_dkruh1.infra_stg__aws_billing_report_raw", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{ config(pre_hook=[msck_repair([source('infra__costpo', 'aws_billing_report_raw')])]) }}\n\nWITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'aws_billing_report_raw') }}\n\n), infra_stg__aws_billing_report_raw AS (\n\n SELECT \n\t\tidentity_line_item_id,\n\t\tidentity_time_interval,\n\t\tbill_invoice_id,\n\t\tbill_billing_entity,\n\t\tbill_bill_type,\n\t\tbill_payer_account_id,\n\t\tbill_billing_period_start_date,\n\t\tbill_billing_period_end_date,\n\t\tline_item_usage_account_id,\n\t\tline_item_line_item_type,\n\t\tline_item_usage_start_date,\n\t\tline_item_usage_end_date,\n\t\tline_item_product_code,\n\t\tline_item_usage_type,\n\t\tline_item_operation,\n\t\tline_item_availability_zone,\n\t\tline_item_resource_id,\n\t\tline_item_usage_amount,\n\t\tline_item_normalization_factor,\n\t\tline_item_normalized_usage_amount,\n\t\tline_item_currency_code,\n\t\tline_item_unblended_rate,\n\t\tline_item_unblended_cost,\n\t\tline_item_blended_rate,\n\t\tline_item_blended_cost,\n\t\tline_item_line_item_description,\n\t\tline_item_tax_type,\n\t\tline_item_net_unblended_rate,\n\t\tline_item_net_unblended_cost,\n\t\tline_item_legal_entity,\n\t\tproduct_product_name,\n\t\tproduct_purchase_option,\n\t\tproduct_alarm_type,\n\t\tproduct_availability,\n\t\tproduct_availability_zone,\n\t\tproduct_bundle,\n\t\tproduct_bundle_description,\n\t\tproduct_bundle_group,\n\t\tproduct_cache_engine,\n\t\tproduct_capacitystatus,\n\t\tproduct_category,\n\t\tproduct_clock_speed,\n\t\tproduct_component,\n\t\tproduct_compute_family,\n\t\tproduct_compute_type,\n\t\tproduct_concurrencyscalingfreeusage,\n\t\tproduct_counts_against_quota,\n\t\tproduct_cputype,\n\t\tproduct_current_generation,\n\t\tproduct_data,\n\t\tproduct_data_transfer_quota,\n\t\tproduct_database_engine,\n\t\tproduct_datastore_storagetype,\n\t\tproduct_dedicated_ebs_throughput,\n\t\tproduct_deployment_option,\n\t\tproduct_description,\n\t\tproduct_durability,\n\t\tproduct_ecu,\n\t\tproduct_endpoint,\n\t\tproduct_endpoint_type,\n\t\tproduct_engine_code,\n\t\tproduct_enhanced_networking_supported,\n\t\tproduct_event_type,\n\t\tproduct_execution_frequency,\n\t\tproduct_execution_location,\n\t\tproduct_fee_code,\n\t\tproduct_fee_description,\n\t\tproduct_free_overage,\n\t\tproduct_frequency_mode,\n\t\tproduct_from_location,\n\t\tproduct_from_location_type,\n\t\tproduct_gpu,\n\t\tproduct_gpu_memory,\n\t\tproduct_granularity,\n\t\tproduct_group,\n\t\tproduct_group_description,\n\t\tproduct_insightstype,\n\t\tproduct_instance_family,\n\t\tproduct_instance_name,\n\t\tproduct_instance_type,\n\t\tproduct_instance_type_family,\n\t\tproduct_intel_avx2_available,\n\t\tproduct_intel_avx_available,\n\t\tproduct_intel_turbo_available,\n\t\tproduct_io,\n\t\tproduct_license,\n\t\tproduct_license_model,\n\t\tproduct_location,\n\t\tproduct_location_type,\n\t\tproduct_logs_destination,\n\t\tproduct_max_iops_burst_performance,\n\t\tproduct_max_iopsvolume,\n\t\tproduct_max_throughputvolume,\n\t\tproduct_max_volume_size,\n\t\tproduct_maximum_extended_storage,\n\t\tproduct_memory,\n\t\tproduct_memory_gib,\n\t\tproduct_memorytype,\n\t\tproduct_message_delivery_frequency,\n\t\tproduct_message_delivery_order,\n\t\tproduct_min_volume_size,\n\t\tproduct_network_performance,\n\t\tproduct_normalization_size_factor,\n\t\tproduct_operating_system,\n\t\tproduct_operation,\n\t\tproduct_overage_type,\n\t\tproduct_physical_cpu,\n\t\tproduct_physical_gpu,\n\t\tproduct_physical_processor,\n\t\tproduct_pre_installed_sw,\n\t\tproduct_pricing_unit,\n\t\tproduct_processor_architecture,\n\t\tproduct_processor_features,\n\t\tproduct_product_family,\n\t\tproduct_purchaseterm,\n\t\tproduct_queue_type,\n\t\tproduct_ratetype,\n\t\tproduct_region,\n\t\tproduct_request_description,\n\t\tproduct_request_type,\n\t\tproduct_resource_endpoint,\n\t\tproduct_resource_type,\n\t\tproduct_rootvolume,\n\t\tproduct_routing_target,\n\t\tproduct_routing_type,\n\t\tproduct_running_mode,\n\t\tproduct_servicecode,\n\t\tproduct_servicename,\n\t\tproduct_sku,\n\t\tproduct_software_included,\n\t\tproduct_software_type,\n\t\tproduct_standard_storage_retention_included,\n\t\tproduct_storage,\n\t\tproduct_storage_class,\n\t\tproduct_storage_family,\n\t\tproduct_storage_media,\n\t\tproduct_storage_type,\n\t\tproduct_tenancy,\n\t\tproduct_tiertype,\n\t\tproduct_to_location,\n\t\tproduct_to_location_type,\n\t\tproduct_transfer_type,\n\t\tproduct_type,\n\t\tproduct_usage_family,\n\t\tproduct_usagetype,\n\t\tproduct_uservolume,\n\t\tproduct_vcpu,\n\t\tproduct_version,\n\t\tproduct_volume_api_name,\n\t\tproduct_volume_type,\n\t\tproduct_with_active_users,\n\t\tpricing_lease_contract_length,\n\t\tpricing_offering_class,\n\t\tpricing_purchase_option,\n\t\tpricing_rate_code,\n\t\tpricing_rate_id,\n\t\tpricing_currency,\n\t\tpricing_public_on_demand_cost,\n\t\tpricing_public_on_demand_rate,\n\t\tpricing_term,\n\t\tpricing_unit,\n\t\treservation_amortized_upfront_cost_for_usage,\n\t\treservation_amortized_upfront_fee_for_billing_period,\n\t\treservation_effective_cost,\n\t\treservation_end_time,\n\t\treservation_modification_status,\n\t\treservation_net_amortized_upfront_cost_for_usage,\n\t\treservation_net_amortized_upfront_fee_for_billing_period,\n\t\treservation_net_effective_cost,\n\t\treservation_net_recurring_fee_for_usage,\n\t\treservation_net_unused_amortized_upfront_fee_for_billing_period,\n\t\treservation_net_unused_recurring_fee,\n\t\treservation_net_upfront_value,\n\t\treservation_normalized_units_per_reservation,\n\t\treservation_number_of_reservations,\n\t\treservation_recurring_fee_for_usage,\n\t\treservation_reservation_a_r_n,\n\t\treservation_start_time,\n\t\treservation_subscription_id,\n\t\treservation_total_reserved_normalized_units,\n\t\treservation_total_reserved_units,\n\t\treservation_units_per_reservation,\n\t\treservation_unused_amortized_upfront_fee_for_billing_period,\n\t\treservation_unused_normalized_unit_quantity,\n\t\treservation_unused_quantity,\n\t\treservation_unused_recurring_fee,\n\t\treservation_upfront_value,\n\t\tdiscount_edp_discount,\n\t\tdiscount_private_rate_discount,\n\t\tdiscount_total_discount,\n\t\tsavings_plan_total_commitment_to_date,\n\t\tsavings_plan_savings_plan_a_r_n,\n\t\tsavings_plan_savings_plan_rate,\n\t\tsavings_plan_used_commitment,\n\t\tsavings_plan_savings_plan_effective_cost,\n\t\tsavings_plan_amortized_upfront_commitment_for_billing_period,\n\t\tsavings_plan_recurring_commitment_for_billing_period,\n\t\tsavings_plan_start_time,\n\t\tsavings_plan_end_time,\n\t\tsavings_plan_instance_type_family,\n\t\tsavings_plan_offering_type,\n\t\tsavings_plan_payment_option,\n\t\tsavings_plan_purchase_term,\n\t\tsavings_plan_region,\n\t\tsavings_plan_net_savings_plan_effective_cost,\n\t\tsavings_plan_net_amortized_upfront_commitment_for_billing_period,\n\t\tsavings_plan_net_recurring_commitment_for_billing_period,\n\t\tresource_tags_aws_created_by,\n\t\tresource_tags_aws_elasticmapreduce_instance_group_role,\n\t\tresource_tags_aws_elasticmapreduce_job_flow_id,\n\t\tresource_tags_user_databricks_instance_pool_id,\n\t\tresource_tags_user_docker_compose,\n\t\tresource_tags_user_environment,\n\t\tresource_tags_user_name,\n\t\tresource_tags_user_service,\n\t\tresource_tags_user_account,\n\t\tresource_tags_user_asg,\n\t\tresource_tags_user_cluster_name,\n\t\tresource_tags_user_component,\n\t\tresource_tags_user_product_line,\n\t\tresource_tags_user_sub_componenet,\n\t\tresource_tags_user_sub_component,\n\t\tCASE \n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'ugc' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'reviews' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'vms' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'shared'\n\t\t\tTHEN 'ugc'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'data' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'data-group' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'sql-analytics' OR \n\t\t\t\tLOWER(resource_tags_user_product_line) like 'yoda_e2e_%'\n\t\t\tTHEN 'data'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platform' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platfrom' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platforma' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'billing' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'backoffice'\n\t\t\tTHEN 'platform'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'sms' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'smsbump'\n\t\t\tTHEN 'sms'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'bi' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'bp'\n\t\t\tTHEN 'bi'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'communication-analytics' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'emails'\n\t\t\tTHEN 'communication'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'subscription'\n\t\t\tTHEN 'subscriptions'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'app-infra'\n\t\t\tTHEN 'infra'\n\t\t\tWHEN \n\t\t\t\tresource_tags_user_product_line = '' \n\t\t\tTHEN 'untagged'\n\t\t\tELSE \n\t\t\t\tLOWER(resource_tags_user_product_line)\n\t\tEND AS product_line,\n\t\tyear,\n\t\tmonth\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__aws_billing_report_raw", "language": "sql", "refs": [], "sources": [["infra__costpo", "aws_billing_report_raw"], ["infra__costpo", "aws_billing_report_raw"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.msck_repair", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.aws_billing_report_raw", "source.yoda.infra__costpo.aws_billing_report_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n\n SELECT * FROM costpo.aws_billing_report_raw\n\n), infra_stg__aws_billing_report_raw AS (\n\n SELECT \n\t\tidentity_line_item_id,\n\t\tidentity_time_interval,\n\t\tbill_invoice_id,\n\t\tbill_billing_entity,\n\t\tbill_bill_type,\n\t\tbill_payer_account_id,\n\t\tbill_billing_period_start_date,\n\t\tbill_billing_period_end_date,\n\t\tline_item_usage_account_id,\n\t\tline_item_line_item_type,\n\t\tline_item_usage_start_date,\n\t\tline_item_usage_end_date,\n\t\tline_item_product_code,\n\t\tline_item_usage_type,\n\t\tline_item_operation,\n\t\tline_item_availability_zone,\n\t\tline_item_resource_id,\n\t\tline_item_usage_amount,\n\t\tline_item_normalization_factor,\n\t\tline_item_normalized_usage_amount,\n\t\tline_item_currency_code,\n\t\tline_item_unblended_rate,\n\t\tline_item_unblended_cost,\n\t\tline_item_blended_rate,\n\t\tline_item_blended_cost,\n\t\tline_item_line_item_description,\n\t\tline_item_tax_type,\n\t\tline_item_net_unblended_rate,\n\t\tline_item_net_unblended_cost,\n\t\tline_item_legal_entity,\n\t\tproduct_product_name,\n\t\tproduct_purchase_option,\n\t\tproduct_alarm_type,\n\t\tproduct_availability,\n\t\tproduct_availability_zone,\n\t\tproduct_bundle,\n\t\tproduct_bundle_description,\n\t\tproduct_bundle_group,\n\t\tproduct_cache_engine,\n\t\tproduct_capacitystatus,\n\t\tproduct_category,\n\t\tproduct_clock_speed,\n\t\tproduct_component,\n\t\tproduct_compute_family,\n\t\tproduct_compute_type,\n\t\tproduct_concurrencyscalingfreeusage,\n\t\tproduct_counts_against_quota,\n\t\tproduct_cputype,\n\t\tproduct_current_generation,\n\t\tproduct_data,\n\t\tproduct_data_transfer_quota,\n\t\tproduct_database_engine,\n\t\tproduct_datastore_storagetype,\n\t\tproduct_dedicated_ebs_throughput,\n\t\tproduct_deployment_option,\n\t\tproduct_description,\n\t\tproduct_durability,\n\t\tproduct_ecu,\n\t\tproduct_endpoint,\n\t\tproduct_endpoint_type,\n\t\tproduct_engine_code,\n\t\tproduct_enhanced_networking_supported,\n\t\tproduct_event_type,\n\t\tproduct_execution_frequency,\n\t\tproduct_execution_location,\n\t\tproduct_fee_code,\n\t\tproduct_fee_description,\n\t\tproduct_free_overage,\n\t\tproduct_frequency_mode,\n\t\tproduct_from_location,\n\t\tproduct_from_location_type,\n\t\tproduct_gpu,\n\t\tproduct_gpu_memory,\n\t\tproduct_granularity,\n\t\tproduct_group,\n\t\tproduct_group_description,\n\t\tproduct_insightstype,\n\t\tproduct_instance_family,\n\t\tproduct_instance_name,\n\t\tproduct_instance_type,\n\t\tproduct_instance_type_family,\n\t\tproduct_intel_avx2_available,\n\t\tproduct_intel_avx_available,\n\t\tproduct_intel_turbo_available,\n\t\tproduct_io,\n\t\tproduct_license,\n\t\tproduct_license_model,\n\t\tproduct_location,\n\t\tproduct_location_type,\n\t\tproduct_logs_destination,\n\t\tproduct_max_iops_burst_performance,\n\t\tproduct_max_iopsvolume,\n\t\tproduct_max_throughputvolume,\n\t\tproduct_max_volume_size,\n\t\tproduct_maximum_extended_storage,\n\t\tproduct_memory,\n\t\tproduct_memory_gib,\n\t\tproduct_memorytype,\n\t\tproduct_message_delivery_frequency,\n\t\tproduct_message_delivery_order,\n\t\tproduct_min_volume_size,\n\t\tproduct_network_performance,\n\t\tproduct_normalization_size_factor,\n\t\tproduct_operating_system,\n\t\tproduct_operation,\n\t\tproduct_overage_type,\n\t\tproduct_physical_cpu,\n\t\tproduct_physical_gpu,\n\t\tproduct_physical_processor,\n\t\tproduct_pre_installed_sw,\n\t\tproduct_pricing_unit,\n\t\tproduct_processor_architecture,\n\t\tproduct_processor_features,\n\t\tproduct_product_family,\n\t\tproduct_purchaseterm,\n\t\tproduct_queue_type,\n\t\tproduct_ratetype,\n\t\tproduct_region,\n\t\tproduct_request_description,\n\t\tproduct_request_type,\n\t\tproduct_resource_endpoint,\n\t\tproduct_resource_type,\n\t\tproduct_rootvolume,\n\t\tproduct_routing_target,\n\t\tproduct_routing_type,\n\t\tproduct_running_mode,\n\t\tproduct_servicecode,\n\t\tproduct_servicename,\n\t\tproduct_sku,\n\t\tproduct_software_included,\n\t\tproduct_software_type,\n\t\tproduct_standard_storage_retention_included,\n\t\tproduct_storage,\n\t\tproduct_storage_class,\n\t\tproduct_storage_family,\n\t\tproduct_storage_media,\n\t\tproduct_storage_type,\n\t\tproduct_tenancy,\n\t\tproduct_tiertype,\n\t\tproduct_to_location,\n\t\tproduct_to_location_type,\n\t\tproduct_transfer_type,\n\t\tproduct_type,\n\t\tproduct_usage_family,\n\t\tproduct_usagetype,\n\t\tproduct_uservolume,\n\t\tproduct_vcpu,\n\t\tproduct_version,\n\t\tproduct_volume_api_name,\n\t\tproduct_volume_type,\n\t\tproduct_with_active_users,\n\t\tpricing_lease_contract_length,\n\t\tpricing_offering_class,\n\t\tpricing_purchase_option,\n\t\tpricing_rate_code,\n\t\tpricing_rate_id,\n\t\tpricing_currency,\n\t\tpricing_public_on_demand_cost,\n\t\tpricing_public_on_demand_rate,\n\t\tpricing_term,\n\t\tpricing_unit,\n\t\treservation_amortized_upfront_cost_for_usage,\n\t\treservation_amortized_upfront_fee_for_billing_period,\n\t\treservation_effective_cost,\n\t\treservation_end_time,\n\t\treservation_modification_status,\n\t\treservation_net_amortized_upfront_cost_for_usage,\n\t\treservation_net_amortized_upfront_fee_for_billing_period,\n\t\treservation_net_effective_cost,\n\t\treservation_net_recurring_fee_for_usage,\n\t\treservation_net_unused_amortized_upfront_fee_for_billing_period,\n\t\treservation_net_unused_recurring_fee,\n\t\treservation_net_upfront_value,\n\t\treservation_normalized_units_per_reservation,\n\t\treservation_number_of_reservations,\n\t\treservation_recurring_fee_for_usage,\n\t\treservation_reservation_a_r_n,\n\t\treservation_start_time,\n\t\treservation_subscription_id,\n\t\treservation_total_reserved_normalized_units,\n\t\treservation_total_reserved_units,\n\t\treservation_units_per_reservation,\n\t\treservation_unused_amortized_upfront_fee_for_billing_period,\n\t\treservation_unused_normalized_unit_quantity,\n\t\treservation_unused_quantity,\n\t\treservation_unused_recurring_fee,\n\t\treservation_upfront_value,\n\t\tdiscount_edp_discount,\n\t\tdiscount_private_rate_discount,\n\t\tdiscount_total_discount,\n\t\tsavings_plan_total_commitment_to_date,\n\t\tsavings_plan_savings_plan_a_r_n,\n\t\tsavings_plan_savings_plan_rate,\n\t\tsavings_plan_used_commitment,\n\t\tsavings_plan_savings_plan_effective_cost,\n\t\tsavings_plan_amortized_upfront_commitment_for_billing_period,\n\t\tsavings_plan_recurring_commitment_for_billing_period,\n\t\tsavings_plan_start_time,\n\t\tsavings_plan_end_time,\n\t\tsavings_plan_instance_type_family,\n\t\tsavings_plan_offering_type,\n\t\tsavings_plan_payment_option,\n\t\tsavings_plan_purchase_term,\n\t\tsavings_plan_region,\n\t\tsavings_plan_net_savings_plan_effective_cost,\n\t\tsavings_plan_net_amortized_upfront_commitment_for_billing_period,\n\t\tsavings_plan_net_recurring_commitment_for_billing_period,\n\t\tresource_tags_aws_created_by,\n\t\tresource_tags_aws_elasticmapreduce_instance_group_role,\n\t\tresource_tags_aws_elasticmapreduce_job_flow_id,\n\t\tresource_tags_user_databricks_instance_pool_id,\n\t\tresource_tags_user_docker_compose,\n\t\tresource_tags_user_environment,\n\t\tresource_tags_user_name,\n\t\tresource_tags_user_service,\n\t\tresource_tags_user_account,\n\t\tresource_tags_user_asg,\n\t\tresource_tags_user_cluster_name,\n\t\tresource_tags_user_component,\n\t\tresource_tags_user_product_line,\n\t\tresource_tags_user_sub_componenet,\n\t\tresource_tags_user_sub_component,\n\t\tCASE \n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'ugc' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'reviews' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'vms' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'shared'\n\t\t\tTHEN 'ugc'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'data' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'data-group' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'sql-analytics' OR \n\t\t\t\tLOWER(resource_tags_user_product_line) like 'yoda_e2e_%'\n\t\t\tTHEN 'data'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platform' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platfrom' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platforma' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'billing' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'backoffice'\n\t\t\tTHEN 'platform'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'sms' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'smsbump'\n\t\t\tTHEN 'sms'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'bi' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'bp'\n\t\t\tTHEN 'bi'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'communication-analytics' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'emails'\n\t\t\tTHEN 'communication'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'subscription'\n\t\t\tTHEN 'subscriptions'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'app-infra'\n\t\t\tTHEN 'infra'\n\t\t\tWHEN \n\t\t\t\tresource_tags_user_product_line = '' \n\t\t\tTHEN 'untagged'\n\t\t\tELSE \n\t\t\t\tLOWER(resource_tags_user_product_line)\n\t\tEND AS product_line,\n\t\tyear,\n\t\tmonth\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__aws_billing_report_raw", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__aws_payer_billing_report_raw": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__aws_payer_billing_report_raw", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.sql", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.sql", "unique_id": "model.yoda.infra_stg__aws_payer_billing_report_raw", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__aws_payer_billing_report_raw", "infra_stg__aws_payer_billing_report_raw"], "alias": "infra_stg__aws_payer_billing_report_raw", "checksum": {"name": "sha256", "checksum": "9b65a0179858969b06876613347f4ef547145c79af40be102bc89084900e3ea6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": [{"sql": "\n \n \n \n \n", "transaction": true, "index": null}]}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"identity_line_item_id": {"name": "identity_line_item_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "identity_time_interval": {"name": "identity_time_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_invoice_id": {"name": "bill_invoice_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_billing_entity": {"name": "bill_billing_entity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_bill_type": {"name": "bill_bill_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_billing_period_start_date": {"name": "bill_billing_period_start_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_billing_period_end_date": {"name": "bill_billing_period_end_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_usage_account_id": {"name": "line_item_usage_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_start_date": {"name": "line_item_usage_start_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_usage_end_date": {"name": "line_item_usage_end_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_product_code": {"name": "line_item_product_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_type": {"name": "line_item_usage_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_operation": {"name": "line_item_operation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_availability_zone": {"name": "line_item_availability_zone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_resource_id": {"name": "line_item_resource_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_amount": {"name": "line_item_usage_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_normalization_factor": {"name": "line_item_normalization_factor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_normalized_usage_amount": {"name": "line_item_normalized_usage_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_currency_code": {"name": "line_item_currency_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_unblended_rate": {"name": "line_item_unblended_rate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_unblended_cost": {"name": "line_item_unblended_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_blended_rate": {"name": "line_item_blended_rate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_blended_cost": {"name": "line_item_blended_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_line_item_description": {"name": "line_item_line_item_description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_tax_type": {"name": "line_item_tax_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_net_unblended_rate": {"name": "line_item_net_unblended_rate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_net_unblended_cost": {"name": "line_item_net_unblended_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_legal_entity": {"name": "line_item_legal_entity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_name": {"name": "product_product_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_purchase_option": {"name": "product_purchase_option", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_alarm_type": {"name": "product_alarm_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_availability": {"name": "product_availability", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_availability_zone": {"name": "product_availability_zone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle": {"name": "product_bundle", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle_description": {"name": "product_bundle_description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle_group": {"name": "product_bundle_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_cache_engine": {"name": "product_cache_engine", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_capacitystatus": {"name": "product_capacitystatus", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_category": {"name": "product_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_clock_speed": {"name": "product_clock_speed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_component": {"name": "product_component", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_compute_family": {"name": "product_compute_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_compute_type": {"name": "product_compute_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_concurrencyscalingfreeusage": {"name": "product_concurrencyscalingfreeusage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_counts_against_quota": {"name": "product_counts_against_quota", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_cputype": {"name": "product_cputype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_current_generation": {"name": "product_current_generation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_data": {"name": "product_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_data_transfer_quota": {"name": "product_data_transfer_quota", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_database_engine": {"name": "product_database_engine", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_datastore_storagetype": {"name": "product_datastore_storagetype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_dedicated_ebs_throughput": {"name": "product_dedicated_ebs_throughput", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_deployment_option": {"name": "product_deployment_option", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_description": {"name": "product_description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_durability": {"name": "product_durability", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_ecu": {"name": "product_ecu", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_endpoint": {"name": "product_endpoint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_endpoint_type": {"name": "product_endpoint_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_engine_code": {"name": "product_engine_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_enhanced_networking_supported": {"name": "product_enhanced_networking_supported", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_event_type": {"name": "product_event_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_execution_frequency": {"name": "product_execution_frequency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_execution_location": {"name": "product_execution_location", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_fee_code": {"name": "product_fee_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_fee_description": {"name": "product_fee_description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_free_overage": {"name": "product_free_overage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_frequency_mode": {"name": "product_frequency_mode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_from_location": {"name": "product_from_location", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_from_location_type": {"name": "product_from_location_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_gpu": {"name": "product_gpu", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_gpu_memory": {"name": "product_gpu_memory", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_granularity": {"name": "product_granularity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_group": {"name": "product_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_group_description": {"name": "product_group_description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_insightstype": {"name": "product_insightstype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_family": {"name": "product_instance_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_name": {"name": "product_instance_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type": {"name": "product_instance_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type_family": {"name": "product_instance_type_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_avx2_available": {"name": "product_intel_avx2_available", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_avx_available": {"name": "product_intel_avx_available", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_turbo_available": {"name": "product_intel_turbo_available", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_io": {"name": "product_io", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_license": {"name": "product_license", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_license_model": {"name": "product_license_model", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_location": {"name": "product_location", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_location_type": {"name": "product_location_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_logs_destination": {"name": "product_logs_destination", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_iops_burst_performance": {"name": "product_max_iops_burst_performance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_iopsvolume": {"name": "product_max_iopsvolume", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_throughputvolume": {"name": "product_max_throughputvolume", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_volume_size": {"name": "product_max_volume_size", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_maximum_extended_storage": {"name": "product_maximum_extended_storage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory": {"name": "product_memory", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory_gib": {"name": "product_memory_gib", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memorytype": {"name": "product_memorytype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_message_delivery_frequency": {"name": "product_message_delivery_frequency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_message_delivery_order": {"name": "product_message_delivery_order", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_min_volume_size": {"name": "product_min_volume_size", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_network_performance": {"name": "product_network_performance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_normalization_size_factor": {"name": "product_normalization_size_factor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_operating_system": {"name": "product_operating_system", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_operation": {"name": "product_operation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_overage_type": {"name": "product_overage_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_cpu": {"name": "product_physical_cpu", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_gpu": {"name": "product_physical_gpu", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_processor": {"name": "product_physical_processor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_pre_installed_sw": {"name": "product_pre_installed_sw", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_pricing_unit": {"name": "product_pricing_unit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_processor_architecture": {"name": "product_processor_architecture", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_processor_features": {"name": "product_processor_features", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_purchaseterm": {"name": "product_purchaseterm", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_queue_type": {"name": "product_queue_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_ratetype": {"name": "product_ratetype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_request_description": {"name": "product_request_description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_request_type": {"name": "product_request_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_resource_endpoint": {"name": "product_resource_endpoint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_resource_type": {"name": "product_resource_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rootvolume": {"name": "product_rootvolume", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_routing_target": {"name": "product_routing_target", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_routing_type": {"name": "product_routing_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_running_mode": {"name": "product_running_mode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_servicecode": {"name": "product_servicecode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_servicename": {"name": "product_servicename", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_sku": {"name": "product_sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_software_included": {"name": "product_software_included", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_software_type": {"name": "product_software_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_standard_storage_retention_included": {"name": "product_standard_storage_retention_included", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage": {"name": "product_storage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_class": {"name": "product_storage_class", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_family": {"name": "product_storage_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_media": {"name": "product_storage_media", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_type": {"name": "product_storage_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_tenancy": {"name": "product_tenancy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_tiertype": {"name": "product_tiertype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_to_location": {"name": "product_to_location", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_to_location_type": {"name": "product_to_location_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_transfer_type": {"name": "product_transfer_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_type": {"name": "product_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_usage_family": {"name": "product_usage_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_usagetype": {"name": "product_usagetype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_uservolume": {"name": "product_uservolume", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_vcpu": {"name": "product_vcpu", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_version": {"name": "product_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_volume_api_name": {"name": "product_volume_api_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_volume_type": {"name": "product_volume_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_with_active_users": {"name": "product_with_active_users", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_lease_contract_length": {"name": "pricing_lease_contract_length", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_offering_class": {"name": "pricing_offering_class", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_purchase_option": {"name": "pricing_purchase_option", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_rate_code": {"name": "pricing_rate_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_rate_id": {"name": "pricing_rate_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_currency": {"name": "pricing_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_public_on_demand_cost": {"name": "pricing_public_on_demand_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pricing_public_on_demand_rate": {"name": "pricing_public_on_demand_rate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_unit": {"name": "pricing_unit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_amortized_upfront_cost_for_usage": {"name": "reservation_amortized_upfront_cost_for_usage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_amortized_upfront_fee_for_billing_period": {"name": "reservation_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_effective_cost": {"name": "reservation_effective_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_end_time": {"name": "reservation_end_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_modification_status": {"name": "reservation_modification_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_net_amortized_upfront_cost_for_usage": {"name": "reservation_net_amortized_upfront_cost_for_usage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_amortized_upfront_fee_for_billing_period": {"name": "reservation_net_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_effective_cost": {"name": "reservation_net_effective_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_recurring_fee_for_usage": {"name": "reservation_net_recurring_fee_for_usage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_unused_amortized_upfront_fee_for_billing_period": {"name": "reservation_net_unused_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_unused_recurring_fee": {"name": "reservation_net_unused_recurring_fee", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_upfront_value": {"name": "reservation_net_upfront_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_normalized_units_per_reservation": {"name": "reservation_normalized_units_per_reservation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_number_of_reservations": {"name": "reservation_number_of_reservations", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_recurring_fee_for_usage": {"name": "reservation_recurring_fee_for_usage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_reservation_a_r_n": {"name": "reservation_reservation_a_r_n", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_start_time": {"name": "reservation_start_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_subscription_id": {"name": "reservation_subscription_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_total_reserved_normalized_units": {"name": "reservation_total_reserved_normalized_units", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_total_reserved_units": {"name": "reservation_total_reserved_units", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_units_per_reservation": {"name": "reservation_units_per_reservation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_unused_amortized_upfront_fee_for_billing_period": {"name": "reservation_unused_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_normalized_unit_quantity": {"name": "reservation_unused_normalized_unit_quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_quantity": {"name": "reservation_unused_quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_recurring_fee": {"name": "reservation_unused_recurring_fee", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_upfront_value": {"name": "reservation_upfront_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_edp_discount": {"name": "discount_edp_discount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_private_rate_discount": {"name": "discount_private_rate_discount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_total_discount": {"name": "discount_total_discount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_total_commitment_to_date": {"name": "savings_plan_total_commitment_to_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_savings_plan_a_r_n": {"name": "savings_plan_savings_plan_a_r_n", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_savings_plan_rate": {"name": "savings_plan_savings_plan_rate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_used_commitment": {"name": "savings_plan_used_commitment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_savings_plan_effective_cost": {"name": "savings_plan_savings_plan_effective_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_amortized_upfront_commitment_for_billing_period": {"name": "savings_plan_amortized_upfront_commitment_for_billing_period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_recurring_commitment_for_billing_period": {"name": "savings_plan_recurring_commitment_for_billing_period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_start_time": {"name": "savings_plan_start_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_end_time": {"name": "savings_plan_end_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_instance_type_family": {"name": "savings_plan_instance_type_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_offering_type": {"name": "savings_plan_offering_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_payment_option": {"name": "savings_plan_payment_option", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_purchase_term": {"name": "savings_plan_purchase_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_region": {"name": "savings_plan_region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_net_savings_plan_effective_cost": {"name": "savings_plan_net_savings_plan_effective_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_net_amortized_upfront_commitment_for_billing_period": {"name": "savings_plan_net_amortized_upfront_commitment_for_billing_period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_net_recurring_commitment_for_billing_period": {"name": "savings_plan_net_recurring_commitment_for_billing_period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "resource_tags_aws_created_by": {"name": "resource_tags_aws_created_by", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_aws_elasticmapreduce_instance_group_role": {"name": "resource_tags_aws_elasticmapreduce_instance_group_role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_aws_elasticmapreduce_job_flow_id": {"name": "resource_tags_aws_elasticmapreduce_job_flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_databricks_instance_pool_id": {"name": "resource_tags_user_databricks_instance_pool_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_docker_compose": {"name": "resource_tags_user_docker_compose", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_environment": {"name": "resource_tags_user_environment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_name": {"name": "resource_tags_user_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_service": {"name": "resource_tags_user_service", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_account": {"name": "resource_tags_user_account", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_asg": {"name": "resource_tags_user_asg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_cluster_name": {"name": "resource_tags_user_cluster_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_component": {"name": "resource_tags_user_component", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_product_line": {"name": "resource_tags_user_product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_componenet": {"name": "resource_tags_user_sub_componenet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_component": {"name": "resource_tags_user_sub_component", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_iac": {"name": "resource_tags_user_iac", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_repository": {"name": "resource_tags_user_repository", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_cast_managed_by": {"name": "resource_tags_user_cast_managed_by", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_cast_cluster_id": {"name": "resource_tags_user_cast_cluster_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_cast_node_id": {"name": "resource_tags_user_cast_node_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_castai": {"name": "resource_tags_user_castai", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_managed_by_cast_ai": {"name": "is_managed_by_cast_ai", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "year": {"name": "year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "pre-hook": ["\n \n \n \n \n"]}, "created_at": 1700082671.0213768, "relation_name": "dev_dkruh1.infra_stg__aws_payer_billing_report_raw", "raw_code": "{{ config(pre_hook=[msck_repair([source('infra__costpo', 'aws_payer_billing_report_raw')])]) }}\n\nWITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'aws_payer_billing_report_raw') }}\n\n), infra_stg__aws_payer_billing_report_raw AS (\n\n SELECT \n\t\tidentity_line_item_id,\n\t\tidentity_time_interval,\n\t\tbill_invoice_id,\n\t\tbill_billing_entity,\n\t\tbill_bill_type,\n\t\tbill_payer_account_id,\n\t\tbill_billing_period_start_date,\n\t\tbill_billing_period_end_date,\n\t\tline_item_usage_account_id,\n\t\tline_item_line_item_type,\n\t\tline_item_usage_start_date,\n\t\tline_item_usage_end_date,\n\t\tline_item_product_code,\n\t\tline_item_usage_type,\n\t\tline_item_operation,\n\t\tline_item_availability_zone,\n\t\tline_item_resource_id,\n\t\tline_item_usage_amount,\n\t\tline_item_normalization_factor,\n\t\tline_item_normalized_usage_amount,\n\t\tline_item_currency_code,\n\t\tline_item_unblended_rate,\n\t\tline_item_unblended_cost,\n\t\tline_item_blended_rate,\n\t\tline_item_blended_cost,\n\t\tline_item_line_item_description,\n\t\tline_item_tax_type,\n\t\tline_item_net_unblended_rate,\n\t\tline_item_net_unblended_cost,\n\t\tline_item_legal_entity,\n\t\tproduct_product_name,\n\t\tproduct_purchase_option,\n\t\tproduct_alarm_type,\n\t\tproduct_availability,\n\t\tproduct_availability_zone,\n\t\tproduct_bundle,\n\t\tproduct_bundle_description,\n\t\tproduct_bundle_group,\n\t\tproduct_cache_engine,\n\t\tproduct_capacitystatus,\n\t\tproduct_category,\n\t\tproduct_clock_speed,\n\t\tproduct_component,\n\t\tproduct_compute_family,\n\t\tproduct_compute_type,\n\t\tproduct_concurrencyscalingfreeusage,\n\t\tproduct_counts_against_quota,\n\t\tproduct_cputype,\n\t\tproduct_current_generation,\n\t\tproduct_data,\n\t\tproduct_data_transfer_quota,\n\t\tproduct_database_engine,\n\t\tproduct_datastore_storagetype,\n\t\tproduct_dedicated_ebs_throughput,\n\t\tproduct_deployment_option,\n\t\tproduct_description,\n\t\tproduct_durability,\n\t\tproduct_ecu,\n\t\tproduct_endpoint,\n\t\tproduct_endpoint_type,\n\t\tproduct_engine_code,\n\t\tproduct_enhanced_networking_supported,\n\t\tproduct_event_type,\n\t\tproduct_execution_frequency,\n\t\tproduct_execution_location,\n\t\tproduct_fee_code,\n\t\tproduct_fee_description,\n\t\tproduct_free_overage,\n\t\tproduct_frequency_mode,\n\t\tproduct_from_location,\n\t\tproduct_from_location_type,\n\t\tproduct_gpu,\n\t\tproduct_gpu_memory,\n\t\tproduct_granularity,\n\t\tproduct_group,\n\t\tproduct_group_description,\n\t\tproduct_insightstype,\n\t\tproduct_instance_family,\n\t\tproduct_instance_name,\n\t\tproduct_instance_type,\n\t\tproduct_instance_type_family,\n\t\tproduct_intel_avx2_available,\n\t\tproduct_intel_avx_available,\n\t\tproduct_intel_turbo_available,\n\t\tproduct_io,\n\t\tproduct_license,\n\t\tproduct_license_model,\n\t\tproduct_location,\n\t\tproduct_location_type,\n\t\tproduct_logs_destination,\n\t\tproduct_max_iops_burst_performance,\n\t\tproduct_max_iopsvolume,\n\t\tproduct_max_throughputvolume,\n\t\tproduct_max_volume_size,\n\t\tproduct_maximum_extended_storage,\n\t\tproduct_memory,\n\t\tproduct_memory_gib,\n\t\tproduct_memorytype,\n\t\tproduct_message_delivery_frequency,\n\t\tproduct_message_delivery_order,\n\t\tproduct_min_volume_size,\n\t\tproduct_network_performance,\n\t\tproduct_normalization_size_factor,\n\t\tproduct_operating_system,\n\t\tproduct_operation,\n\t\tproduct_overage_type,\n\t\tproduct_physical_cpu,\n\t\tproduct_physical_gpu,\n\t\tproduct_physical_processor,\n\t\tproduct_pre_installed_sw,\n\t\tproduct_pricing_unit,\n\t\tproduct_processor_architecture,\n\t\tproduct_processor_features,\n\t\tproduct_product_family,\n\t\tproduct_purchaseterm,\n\t\tproduct_queue_type,\n\t\tproduct_ratetype,\n\t\tproduct_region,\n\t\tproduct_request_description,\n\t\tproduct_request_type,\n\t\tproduct_resource_endpoint,\n\t\tproduct_resource_type,\n\t\tproduct_rootvolume,\n\t\tproduct_routing_target,\n\t\tproduct_routing_type,\n\t\tproduct_running_mode,\n\t\tproduct_servicecode,\n\t\tproduct_servicename,\n\t\tproduct_sku,\n\t\tproduct_software_included,\n\t\tproduct_software_type,\n\t\tproduct_standard_storage_retention_included,\n\t\tproduct_storage,\n\t\tproduct_storage_class,\n\t\tproduct_storage_family,\n\t\tproduct_storage_media,\n\t\tproduct_storage_type,\n\t\tproduct_tenancy,\n\t\tproduct_tiertype,\n\t\tproduct_to_location,\n\t\tproduct_to_location_type,\n\t\tproduct_transfer_type,\n\t\tproduct_type,\n\t\tproduct_usage_family,\n\t\tproduct_usagetype,\n\t\tproduct_uservolume,\n\t\tproduct_vcpu,\n\t\tproduct_version,\n\t\tproduct_volume_api_name,\n\t\tproduct_volume_type,\n\t\tproduct_with_active_users,\n\t\tpricing_lease_contract_length,\n\t\tpricing_offering_class,\n\t\tpricing_purchase_option,\n\t\tpricing_rate_code,\n\t\tpricing_rate_id,\n\t\tpricing_currency,\n\t\tpricing_public_on_demand_cost,\n\t\tpricing_public_on_demand_rate,\n\t\tpricing_term,\n\t\tpricing_unit,\n\t\treservation_amortized_upfront_cost_for_usage,\n\t\treservation_amortized_upfront_fee_for_billing_period,\n\t\treservation_effective_cost,\n\t\treservation_end_time,\n\t\treservation_modification_status,\n\t\treservation_net_amortized_upfront_cost_for_usage,\n\t\treservation_net_amortized_upfront_fee_for_billing_period,\n\t\treservation_net_effective_cost,\n\t\treservation_net_recurring_fee_for_usage,\n\t\treservation_net_unused_amortized_upfront_fee_for_billing_period,\n\t\treservation_net_unused_recurring_fee,\n\t\treservation_net_upfront_value,\n\t\treservation_normalized_units_per_reservation,\n\t\treservation_number_of_reservations,\n\t\treservation_recurring_fee_for_usage,\n\t\treservation_reservation_a_r_n,\n\t\treservation_start_time,\n\t\treservation_subscription_id,\n\t\treservation_total_reserved_normalized_units,\n\t\treservation_total_reserved_units,\n\t\treservation_units_per_reservation,\n\t\treservation_unused_amortized_upfront_fee_for_billing_period,\n\t\treservation_unused_normalized_unit_quantity,\n\t\treservation_unused_quantity,\n\t\treservation_unused_recurring_fee,\n\t\treservation_upfront_value,\n\t\tdiscount_edp_discount,\n\t\tdiscount_private_rate_discount,\n\t\tdiscount_total_discount,\n\t\tsavings_plan_total_commitment_to_date,\n\t\tsavings_plan_savings_plan_a_r_n,\n\t\tsavings_plan_savings_plan_rate,\n\t\tsavings_plan_used_commitment,\n\t\tsavings_plan_savings_plan_effective_cost,\n\t\tsavings_plan_amortized_upfront_commitment_for_billing_period,\n\t\tsavings_plan_recurring_commitment_for_billing_period,\n\t\tsavings_plan_start_time,\n\t\tsavings_plan_end_time,\n\t\tsavings_plan_instance_type_family,\n\t\tsavings_plan_offering_type,\n\t\tsavings_plan_payment_option,\n\t\tsavings_plan_purchase_term,\n\t\tsavings_plan_region,\n\t\tsavings_plan_net_savings_plan_effective_cost,\n\t\tsavings_plan_net_amortized_upfront_commitment_for_billing_period,\n\t\tsavings_plan_net_recurring_commitment_for_billing_period,\n\t\tresource_tags_aws_created_by,\n\t\tresource_tags_aws_elasticmapreduce_instance_group_role,\n\t\tresource_tags_aws_elasticmapreduce_job_flow_id,\n\t\tresource_tags_user_databricks_instance_pool_id,\n\t\tresource_tags_user_docker_compose,\n\t\tresource_tags_user_environment,\n\t\tresource_tags_user_name,\n\t\tresource_tags_user_service,\n\t\tresource_tags_user_account,\n\t\tresource_tags_user_asg,\n\t\tresource_tags_user_cluster_name,\n\t\tresource_tags_user_component,\n\t\tresource_tags_user_product_line,\n\t\tresource_tags_user_sub_componenet,\n\t\tresource_tags_user_sub_component,\n\t\tCASE \n\t\t\tWHEN LOWER(resource_tags_user_product_line) = 'bi' OR LOWER(resource_tags_user_product_line) = 'bp' THEN 'data'\n\t\t\tELSE LOWER(resource_tags_user_group)\n\t\tEND AS resource_tags_user_group,\n\t\tresource_tags_user_iac,\n\t\tresource_tags_user_repository,\n\t\tCASE \n\t\t\tWHEN LOWER(resource_tags_user_product_line) = 'bi' OR LOWER(resource_tags_user_product_line) = 'bp' THEN 'polars'\n\t\t\tELSE LOWER(resource_tags_user_team)\n\t\tEND AS resource_tags_user_team,\n\t\tresource_tags_user_feature,\n\t\tresource_tags_user_cast_managed_by,\n\t\tresource_tags_user_cast_cluster_id,\n\t\tresource_tags_user_cast_node_id,\n\t\tresource_tags_user_castai,\n\t\tCASE \n\t\t WHEN \n\t\t LOWER(resource_tags_user_cast_managed_by) = 'cast.ai'\n\t\t\t THEN true\n\t\t\tELSE false\n\t\tEND AS is_managed_by_cast_ai,\n\t\tCASE \n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'ugc' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'reviews' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'vms' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'shared'\n\t\t\tTHEN 'ugc'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'data' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'data-group' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'sql-analytics' OR \n\t\t\t\tLOWER(resource_tags_user_product_line) like 'yoda_e2e_%' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'app-infra' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'bi' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'bp'\n\t\t\tTHEN 'data'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platform' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platfrom' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platforma' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'billing' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'backoffice'\n\t\t\tTHEN 'platform'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'sms' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'smsbump' OR\n\t\t\t\tline_item_usage_account_id = '368297226064'\n\t\t\tTHEN 'sms'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'communication-analytics' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'emails'\n\t\t\tTHEN 'communication'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'subscription'\n\t\t\tTHEN 'subscriptions'\n\t\t\tWHEN \n\t\t\t\tline_item_usage_account_id = '067361735412' \n\t\t\tTHEN 'qa'\n\t\t\tWHEN \n\t\t\t\tline_item_usage_account_id = '237698446327' \n\t\t\tTHEN 'it'\n\t\t\tWHEN \n\t\t\t\tresource_tags_user_product_line = '' \n\t\t\tTHEN 'untagged'\n\t\t\tELSE \n\t\t\t\tLOWER(resource_tags_user_product_line)\n\t\tEND AS product_line,\n\t\tCOALESCE(product_product_name, line_item_product_code) as product_name, \n\t\tyear,\n\t\tmonth\n FROM source\n)\n\nSELECT * \nFROM infra_stg__aws_payer_billing_report_raw", "language": "sql", "refs": [], "sources": [["infra__costpo", "aws_payer_billing_report_raw"], ["infra__costpo", "aws_payer_billing_report_raw"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.msck_repair", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.aws_payer_billing_report_raw", "source.yoda.infra__costpo.aws_payer_billing_report_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.sql", "compiled": true, "compiled_code": "\n\nWITH source AS (\n\n SELECT * FROM costpo.aws_payer_billing_report_raw\n\n), infra_stg__aws_payer_billing_report_raw AS (\n\n SELECT \n\t\tidentity_line_item_id,\n\t\tidentity_time_interval,\n\t\tbill_invoice_id,\n\t\tbill_billing_entity,\n\t\tbill_bill_type,\n\t\tbill_payer_account_id,\n\t\tbill_billing_period_start_date,\n\t\tbill_billing_period_end_date,\n\t\tline_item_usage_account_id,\n\t\tline_item_line_item_type,\n\t\tline_item_usage_start_date,\n\t\tline_item_usage_end_date,\n\t\tline_item_product_code,\n\t\tline_item_usage_type,\n\t\tline_item_operation,\n\t\tline_item_availability_zone,\n\t\tline_item_resource_id,\n\t\tline_item_usage_amount,\n\t\tline_item_normalization_factor,\n\t\tline_item_normalized_usage_amount,\n\t\tline_item_currency_code,\n\t\tline_item_unblended_rate,\n\t\tline_item_unblended_cost,\n\t\tline_item_blended_rate,\n\t\tline_item_blended_cost,\n\t\tline_item_line_item_description,\n\t\tline_item_tax_type,\n\t\tline_item_net_unblended_rate,\n\t\tline_item_net_unblended_cost,\n\t\tline_item_legal_entity,\n\t\tproduct_product_name,\n\t\tproduct_purchase_option,\n\t\tproduct_alarm_type,\n\t\tproduct_availability,\n\t\tproduct_availability_zone,\n\t\tproduct_bundle,\n\t\tproduct_bundle_description,\n\t\tproduct_bundle_group,\n\t\tproduct_cache_engine,\n\t\tproduct_capacitystatus,\n\t\tproduct_category,\n\t\tproduct_clock_speed,\n\t\tproduct_component,\n\t\tproduct_compute_family,\n\t\tproduct_compute_type,\n\t\tproduct_concurrencyscalingfreeusage,\n\t\tproduct_counts_against_quota,\n\t\tproduct_cputype,\n\t\tproduct_current_generation,\n\t\tproduct_data,\n\t\tproduct_data_transfer_quota,\n\t\tproduct_database_engine,\n\t\tproduct_datastore_storagetype,\n\t\tproduct_dedicated_ebs_throughput,\n\t\tproduct_deployment_option,\n\t\tproduct_description,\n\t\tproduct_durability,\n\t\tproduct_ecu,\n\t\tproduct_endpoint,\n\t\tproduct_endpoint_type,\n\t\tproduct_engine_code,\n\t\tproduct_enhanced_networking_supported,\n\t\tproduct_event_type,\n\t\tproduct_execution_frequency,\n\t\tproduct_execution_location,\n\t\tproduct_fee_code,\n\t\tproduct_fee_description,\n\t\tproduct_free_overage,\n\t\tproduct_frequency_mode,\n\t\tproduct_from_location,\n\t\tproduct_from_location_type,\n\t\tproduct_gpu,\n\t\tproduct_gpu_memory,\n\t\tproduct_granularity,\n\t\tproduct_group,\n\t\tproduct_group_description,\n\t\tproduct_insightstype,\n\t\tproduct_instance_family,\n\t\tproduct_instance_name,\n\t\tproduct_instance_type,\n\t\tproduct_instance_type_family,\n\t\tproduct_intel_avx2_available,\n\t\tproduct_intel_avx_available,\n\t\tproduct_intel_turbo_available,\n\t\tproduct_io,\n\t\tproduct_license,\n\t\tproduct_license_model,\n\t\tproduct_location,\n\t\tproduct_location_type,\n\t\tproduct_logs_destination,\n\t\tproduct_max_iops_burst_performance,\n\t\tproduct_max_iopsvolume,\n\t\tproduct_max_throughputvolume,\n\t\tproduct_max_volume_size,\n\t\tproduct_maximum_extended_storage,\n\t\tproduct_memory,\n\t\tproduct_memory_gib,\n\t\tproduct_memorytype,\n\t\tproduct_message_delivery_frequency,\n\t\tproduct_message_delivery_order,\n\t\tproduct_min_volume_size,\n\t\tproduct_network_performance,\n\t\tproduct_normalization_size_factor,\n\t\tproduct_operating_system,\n\t\tproduct_operation,\n\t\tproduct_overage_type,\n\t\tproduct_physical_cpu,\n\t\tproduct_physical_gpu,\n\t\tproduct_physical_processor,\n\t\tproduct_pre_installed_sw,\n\t\tproduct_pricing_unit,\n\t\tproduct_processor_architecture,\n\t\tproduct_processor_features,\n\t\tproduct_product_family,\n\t\tproduct_purchaseterm,\n\t\tproduct_queue_type,\n\t\tproduct_ratetype,\n\t\tproduct_region,\n\t\tproduct_request_description,\n\t\tproduct_request_type,\n\t\tproduct_resource_endpoint,\n\t\tproduct_resource_type,\n\t\tproduct_rootvolume,\n\t\tproduct_routing_target,\n\t\tproduct_routing_type,\n\t\tproduct_running_mode,\n\t\tproduct_servicecode,\n\t\tproduct_servicename,\n\t\tproduct_sku,\n\t\tproduct_software_included,\n\t\tproduct_software_type,\n\t\tproduct_standard_storage_retention_included,\n\t\tproduct_storage,\n\t\tproduct_storage_class,\n\t\tproduct_storage_family,\n\t\tproduct_storage_media,\n\t\tproduct_storage_type,\n\t\tproduct_tenancy,\n\t\tproduct_tiertype,\n\t\tproduct_to_location,\n\t\tproduct_to_location_type,\n\t\tproduct_transfer_type,\n\t\tproduct_type,\n\t\tproduct_usage_family,\n\t\tproduct_usagetype,\n\t\tproduct_uservolume,\n\t\tproduct_vcpu,\n\t\tproduct_version,\n\t\tproduct_volume_api_name,\n\t\tproduct_volume_type,\n\t\tproduct_with_active_users,\n\t\tpricing_lease_contract_length,\n\t\tpricing_offering_class,\n\t\tpricing_purchase_option,\n\t\tpricing_rate_code,\n\t\tpricing_rate_id,\n\t\tpricing_currency,\n\t\tpricing_public_on_demand_cost,\n\t\tpricing_public_on_demand_rate,\n\t\tpricing_term,\n\t\tpricing_unit,\n\t\treservation_amortized_upfront_cost_for_usage,\n\t\treservation_amortized_upfront_fee_for_billing_period,\n\t\treservation_effective_cost,\n\t\treservation_end_time,\n\t\treservation_modification_status,\n\t\treservation_net_amortized_upfront_cost_for_usage,\n\t\treservation_net_amortized_upfront_fee_for_billing_period,\n\t\treservation_net_effective_cost,\n\t\treservation_net_recurring_fee_for_usage,\n\t\treservation_net_unused_amortized_upfront_fee_for_billing_period,\n\t\treservation_net_unused_recurring_fee,\n\t\treservation_net_upfront_value,\n\t\treservation_normalized_units_per_reservation,\n\t\treservation_number_of_reservations,\n\t\treservation_recurring_fee_for_usage,\n\t\treservation_reservation_a_r_n,\n\t\treservation_start_time,\n\t\treservation_subscription_id,\n\t\treservation_total_reserved_normalized_units,\n\t\treservation_total_reserved_units,\n\t\treservation_units_per_reservation,\n\t\treservation_unused_amortized_upfront_fee_for_billing_period,\n\t\treservation_unused_normalized_unit_quantity,\n\t\treservation_unused_quantity,\n\t\treservation_unused_recurring_fee,\n\t\treservation_upfront_value,\n\t\tdiscount_edp_discount,\n\t\tdiscount_private_rate_discount,\n\t\tdiscount_total_discount,\n\t\tsavings_plan_total_commitment_to_date,\n\t\tsavings_plan_savings_plan_a_r_n,\n\t\tsavings_plan_savings_plan_rate,\n\t\tsavings_plan_used_commitment,\n\t\tsavings_plan_savings_plan_effective_cost,\n\t\tsavings_plan_amortized_upfront_commitment_for_billing_period,\n\t\tsavings_plan_recurring_commitment_for_billing_period,\n\t\tsavings_plan_start_time,\n\t\tsavings_plan_end_time,\n\t\tsavings_plan_instance_type_family,\n\t\tsavings_plan_offering_type,\n\t\tsavings_plan_payment_option,\n\t\tsavings_plan_purchase_term,\n\t\tsavings_plan_region,\n\t\tsavings_plan_net_savings_plan_effective_cost,\n\t\tsavings_plan_net_amortized_upfront_commitment_for_billing_period,\n\t\tsavings_plan_net_recurring_commitment_for_billing_period,\n\t\tresource_tags_aws_created_by,\n\t\tresource_tags_aws_elasticmapreduce_instance_group_role,\n\t\tresource_tags_aws_elasticmapreduce_job_flow_id,\n\t\tresource_tags_user_databricks_instance_pool_id,\n\t\tresource_tags_user_docker_compose,\n\t\tresource_tags_user_environment,\n\t\tresource_tags_user_name,\n\t\tresource_tags_user_service,\n\t\tresource_tags_user_account,\n\t\tresource_tags_user_asg,\n\t\tresource_tags_user_cluster_name,\n\t\tresource_tags_user_component,\n\t\tresource_tags_user_product_line,\n\t\tresource_tags_user_sub_componenet,\n\t\tresource_tags_user_sub_component,\n\t\tCASE \n\t\t\tWHEN LOWER(resource_tags_user_product_line) = 'bi' OR LOWER(resource_tags_user_product_line) = 'bp' THEN 'data'\n\t\t\tELSE LOWER(resource_tags_user_group)\n\t\tEND AS resource_tags_user_group,\n\t\tresource_tags_user_iac,\n\t\tresource_tags_user_repository,\n\t\tCASE \n\t\t\tWHEN LOWER(resource_tags_user_product_line) = 'bi' OR LOWER(resource_tags_user_product_line) = 'bp' THEN 'polars'\n\t\t\tELSE LOWER(resource_tags_user_team)\n\t\tEND AS resource_tags_user_team,\n\t\tresource_tags_user_feature,\n\t\tresource_tags_user_cast_managed_by,\n\t\tresource_tags_user_cast_cluster_id,\n\t\tresource_tags_user_cast_node_id,\n\t\tresource_tags_user_castai,\n\t\tCASE \n\t\t WHEN \n\t\t LOWER(resource_tags_user_cast_managed_by) = 'cast.ai'\n\t\t\t THEN true\n\t\t\tELSE false\n\t\tEND AS is_managed_by_cast_ai,\n\t\tCASE \n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'ugc' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'reviews' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'vms' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'shared'\n\t\t\tTHEN 'ugc'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'data' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'data-group' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'sql-analytics' OR \n\t\t\t\tLOWER(resource_tags_user_product_line) like 'yoda_e2e_%' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'app-infra' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'bi' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'bp'\n\t\t\tTHEN 'data'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platform' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platfrom' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'platforma' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'billing' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'backoffice'\n\t\t\tTHEN 'platform'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'sms' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'smsbump' OR\n\t\t\t\tline_item_usage_account_id = '368297226064'\n\t\t\tTHEN 'sms'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'communication-analytics' OR\n\t\t\t\tLOWER(resource_tags_user_product_line) = 'emails'\n\t\t\tTHEN 'communication'\n\t\t\tWHEN \n\t\t\t\tLOWER(resource_tags_user_product_line) = 'subscription'\n\t\t\tTHEN 'subscriptions'\n\t\t\tWHEN \n\t\t\t\tline_item_usage_account_id = '067361735412' \n\t\t\tTHEN 'qa'\n\t\t\tWHEN \n\t\t\t\tline_item_usage_account_id = '237698446327' \n\t\t\tTHEN 'it'\n\t\t\tWHEN \n\t\t\t\tresource_tags_user_product_line = '' \n\t\t\tTHEN 'untagged'\n\t\t\tELSE \n\t\t\t\tLOWER(resource_tags_user_product_line)\n\t\tEND AS product_line,\n\t\tCOALESCE(product_product_name, line_item_product_code) as product_name, \n\t\tyear,\n\t\tmonth\n FROM source\n)\n\nSELECT * \nFROM infra_stg__aws_payer_billing_report_raw", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__budget": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__budget", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__budget/infra_stg__budget.sql", "original_file_path": "models/infra/staging/base/infra_stg__budget/infra_stg__budget.sql", "unique_id": "model.yoda.infra_stg__budget", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__budget", "infra_stg__budget"], "alias": "infra_stg__budget", "checksum": {"name": "sha256", "checksum": "c93283b722d700a6ffa4902b0a4207ab24982ae40724ee192343a33b0c93e43e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "daily": {"name": "daily", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__budget/infra_stg__budget.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.0333455, "relation_name": "dev_dkruh1.infra_stg__budget", "raw_code": "{% set infra__costpo_budget = select_table(source('infra__costpo', 'budget'), ref('unit_test__source__infra_stg__budget__infra__costpo_budget'), var('mock_data', false)) %}\nWITH source AS (\n\n SELECT * FROM {{ infra__costpo_budget }}\n\n), infra_stg__budget AS (\n\n SELECT \n\t\tproduct_line,\n\t\tupdated_at,\n\t\tdaily\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__budget", "language": "sql", "refs": [{"name": "unit_test__source__infra_stg__budget__infra__costpo_budget", "package": null, "version": null}], "sources": [["infra__costpo", "budget"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.select_table", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.budget", "seed.yoda.unit_test__source__infra_stg__budget__infra__costpo_budget"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__budget/infra_stg__budget.sql", "compiled": true, "compiled_code": "\nWITH source AS (\n\n SELECT * FROM costpo.budget\n\n), infra_stg__budget AS (\n\n SELECT \n\t\tproduct_line,\n\t\tupdated_at,\n\t\tdaily\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__budget", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__databricks_cost_raw": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__databricks_cost_raw", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.sql", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.sql", "unique_id": "model.yoda.infra_stg__databricks_cost_raw", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__databricks_cost_raw", "infra_stg__databricks_cost_raw"], "alias": "infra_stg__databricks_cost_raw", "checksum": {"name": "sha256", "checksum": "1d083b2060509ede2ddaadd3c7ccd68e9a14ecb7820a785a25f579ee05b33e22"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "infra_stg__databricks_cost_raw", "columns": {"workspaceid": {"name": "workspaceid", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "clusterid": {"name": "clusterid", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clustername": {"name": "clustername", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clusternodetype": {"name": "clusternodetype", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clusterowneruserid": {"name": "clusterowneruserid", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clustercustomtags": {"name": "clustercustomtags", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dbus": {"name": "dbus", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "machinehours": {"name": "machinehours", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "clusterownerusername": {"name": "clusterownerusername", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.0664306, "relation_name": "dev_dkruh1.infra_stg__databricks_cost_raw", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'databricks_cost_raw') }}\n\n), infra_stg__databricks_cost_raw AS (\n\n SELECT \n\t\tworkspaceid,\n\t\ttimestamp,\n\t\tclusterid,\n\t\tclustername,\n\t\tclusternodetype,\n\t\tclusterowneruserid,\n\t\tclustercustomtags,\n\t\tsku,\n\t\tdbus,\n\t\tmachinehours,\n\t\tclusterownerusername,\n\t\ttags\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__databricks_cost_raw", "language": "sql", "refs": [], "sources": [["infra__costpo", "databricks_cost_raw"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.databricks_cost_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM costpo.databricks_cost_raw\n\n), infra_stg__databricks_cost_raw AS (\n\n SELECT \n\t\tworkspaceid,\n\t\ttimestamp,\n\t\tclusterid,\n\t\tclustername,\n\t\tclusternodetype,\n\t\tclusterowneruserid,\n\t\tclustercustomtags,\n\t\tsku,\n\t\tdbus,\n\t\tmachinehours,\n\t\tclusterownerusername,\n\t\ttags\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__databricks_cost_raw", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__group": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__group", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.sql", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.sql", "unique_id": "model.yoda.infra_stg__group", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__group", "infra_stg__group"], "alias": "infra_stg__group", "checksum": {"name": "sha256", "checksum": "78248c89382b551992f4fd014ccea4d383a6e21fb616920ba82d2ec4ba7e43c3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Segment Group Events (partitioned by partition_date)", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth_0_user_id": {"name": "auth_0_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_internal_user": {"name": "is_internal_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_billin_providers": {"name": "org_billin_providers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_created_at": {"name": "org_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_email": {"name": "org_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_industry": {"name": "org_industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_is_loyalty": {"name": "org_is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_is_reviews": {"name": "org_is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_is_sms": {"name": "org_is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_is_test": {"name": "org_is_test", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_is_vugc": {"name": "org_is_vugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_loyalty_monthly_price": {"name": "org_loyalty_monthly_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_loyalty_package": {"name": "org_loyalty_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_name": {"name": "org_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_organization_key": {"name": "org_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_package_extensions": {"name": "org_package_extensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_reviews_monthly_price": {"name": "org_reviews_monthly_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_reviews_package": {"name": "org_reviews_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_signup_country": {"name": "org_signup_country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_signup_utm_campaign": {"name": "org_signup_utm_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_signup_utm_source": {"name": "org_signup_utm_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_sms_monthly_price": {"name": "org_sms_monthly_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_sms_package": {"name": "org_sms_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_store_count": {"name": "org_store_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_store_limit": {"name": "org_store_limit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_vugc_monthly_price": {"name": "org_vugc_monthly_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_vugc_package": {"name": "org_vugc_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_bump_plan": {"name": "sms_bump_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_app_key": {"name": "store_app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_created_at": {"name": "store_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "store_is_test": {"name": "store_is_test", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "store_loyalty_merchant_id": {"name": "store_loyalty_merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_name": {"name": "store_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_org_id": {"name": "store_org_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "store_org_key": {"name": "store_org_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_platform": {"name": "store_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_platform_domain": {"name": "store_platform_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_platform_plan": {"name": "store_platform_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_reviews_is_valid_platform_credentials": {"name": "store_reviews_is_valid_platform_credentials", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "store_sms_user_id": {"name": "store_sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_users_count": {"name": "store_users_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "store_users_limit": {"name": "store_users_limit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "admin_user_name": {"name": "admin_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_vugc": {"name": "is_vugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyalty_merchant_id": {"name": "loyalty_merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_package": {"name": "loyalty_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_id": {"name": "org_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_key": {"name": "org_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_package": {"name": "reviews_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_package": {"name": "sms_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugc_package": {"name": "vugc_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_version": {"name": "platform_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ht": {"name": "is_ht", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__group/infra_stg__group.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.1256218, "relation_name": "dev_dkruh1.infra_stg__group", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__segment', 'group') }}\n\n), infra_stg__group AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tanonymous_id,\n\t\tuser_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tauth_0_user_id,\n\t\tgroup_id,\n\t\tis_internal_user,\n\t\torg_billin_providers,\n\t\torg_created_at,\n\t\torg_email,\n\t\torg_industry,\n\t\torg_is_loyalty,\n\t\torg_is_reviews,\n\t\torg_is_sms,\n\t\torg_is_test,\n\t\torg_is_vugc,\n\t\torg_loyalty_monthly_price,\n\t\torg_loyalty_package,\n\t\torg_name,\n\t\torg_organization_key,\n\t\torg_package_extensions,\n\t\torg_reviews_monthly_price,\n\t\torg_reviews_package,\n\t\torg_signup_country,\n\t\torg_signup_utm_campaign,\n\t\torg_signup_utm_source,\n\t\torg_sms_monthly_price,\n\t\torg_sms_package,\n\t\torg_store_count,\n\t\torg_store_limit,\n\t\torg_vugc_monthly_price,\n\t\torg_vugc_package,\n\t\tsms_bump_plan,\n\t\tstore_app_key,\n\t\tstore_created_at,\n\t\tstore_domain,\n\t\tstore_id,\n\t\tstore_is_test,\n\t\tstore_loyalty_merchant_id,\n\t\tstore_name,\n\t\tstore_org_id,\n\t\tstore_org_key,\n\t\tstore_platform,\n\t\tstore_platform_domain,\n\t\tstore_platform_plan,\n\t\tstore_reviews_is_valid_platform_credentials,\n\t\tstore_sms_user_id,\n\t\tstore_users_count,\n\t\tstore_users_limit,\n\t\tadmin_user_name,\n\t\tapp_key,\n\t\tis_loyalty,\n\t\tis_reviews,\n\t\tis_sms,\n\t\tis_vugc,\n\t\tloyalty_merchant_id,\n\t\tloyalty_package,\n\t\torg_id,\n\t\torg_key,\n\t\tplatform,\n\t\tplatform_plan,\n\t\treviews_package,\n\t\tsms_package,\n\t\tsms_user_id,\n\t\tvugc_package,\n\t\tplatform_version,\n\t\tis_ht,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__group", "language": "sql", "refs": [], "sources": [["infra__segment", "group"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__segment.group"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__group/infra_stg__group.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.group\n\n), infra_stg__group AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tanonymous_id,\n\t\tuser_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tauth_0_user_id,\n\t\tgroup_id,\n\t\tis_internal_user,\n\t\torg_billin_providers,\n\t\torg_created_at,\n\t\torg_email,\n\t\torg_industry,\n\t\torg_is_loyalty,\n\t\torg_is_reviews,\n\t\torg_is_sms,\n\t\torg_is_test,\n\t\torg_is_vugc,\n\t\torg_loyalty_monthly_price,\n\t\torg_loyalty_package,\n\t\torg_name,\n\t\torg_organization_key,\n\t\torg_package_extensions,\n\t\torg_reviews_monthly_price,\n\t\torg_reviews_package,\n\t\torg_signup_country,\n\t\torg_signup_utm_campaign,\n\t\torg_signup_utm_source,\n\t\torg_sms_monthly_price,\n\t\torg_sms_package,\n\t\torg_store_count,\n\t\torg_store_limit,\n\t\torg_vugc_monthly_price,\n\t\torg_vugc_package,\n\t\tsms_bump_plan,\n\t\tstore_app_key,\n\t\tstore_created_at,\n\t\tstore_domain,\n\t\tstore_id,\n\t\tstore_is_test,\n\t\tstore_loyalty_merchant_id,\n\t\tstore_name,\n\t\tstore_org_id,\n\t\tstore_org_key,\n\t\tstore_platform,\n\t\tstore_platform_domain,\n\t\tstore_platform_plan,\n\t\tstore_reviews_is_valid_platform_credentials,\n\t\tstore_sms_user_id,\n\t\tstore_users_count,\n\t\tstore_users_limit,\n\t\tadmin_user_name,\n\t\tapp_key,\n\t\tis_loyalty,\n\t\tis_reviews,\n\t\tis_sms,\n\t\tis_vugc,\n\t\tloyalty_merchant_id,\n\t\tloyalty_package,\n\t\torg_id,\n\t\torg_key,\n\t\tplatform,\n\t\tplatform_plan,\n\t\treviews_package,\n\t\tsms_package,\n\t\tsms_user_id,\n\t\tvugc_package,\n\t\tplatform_version,\n\t\tis_ht,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__group", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__identify": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__identify", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.sql", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.sql", "unique_id": "model.yoda.infra_stg__identify", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__identify", "infra_stg__identify"], "alias": "infra_stg__identify", "checksum": {"name": "sha256", "checksum": "462f3f665714c36594d933c4fa18c2afb2f6b4de025403aab3a9ea9d55829869"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Segment Identify Events (partitioned by partition_date)", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth_0_user_id": {"name": "auth_0_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_internal_user": {"name": "is_internal_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "user_app_key": {"name": "user_app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_created_at": {"name": "user_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_email": {"name": "user_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_is_admin": {"name": "user_is_admin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "user_is_test": {"name": "user_is_test", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "user_org_id": {"name": "user_org_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "user_org_key": {"name": "user_org_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_phone": {"name": "user_phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_role": {"name": "user_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_store_id": {"name": "user_store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin_user_name": {"name": "admin_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_vugc": {"name": "is_vugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyalty_merchant_id": {"name": "loyalty_merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_package": {"name": "loyalty_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_id": {"name": "org_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_key": {"name": "org_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_package": {"name": "reviews_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_package": {"name": "sms_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugc_package": {"name": "vugc_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ht": {"name": "is_ht", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "platform_version": {"name": "platform_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_platform_domain": {"name": "store_platform_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__identify/infra_stg__identify.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.1641703, "relation_name": "dev_dkruh1.infra_stg__identify", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__segment', 'identify') }}\n\n), infra_stg__identify AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tmessage_id,\n\t\tprocessing_time,\n\t\tanonymous_id,\n\t\ttimestamp,\n\t\tuser_id,\n\t\tauth_0_user_id,\n\t\tis_internal_user,\n\t\tuser_app_key,\n\t\tuser_created_at,\n\t\tuser_email,\n\t\tuser_is_admin,\n\t\tuser_is_test,\n\t\tuser_org_id,\n\t\tuser_org_key,\n\t\tuser_phone,\n\t\tuser_role,\n\t\tuser_store_id,\n\t\tadmin_user_name,\n\t\tapp_key,\n\t\tis_loyalty,\n\t\tis_reviews,\n\t\tis_sms,\n\t\tis_vugc,\n\t\tloyalty_merchant_id,\n\t\tloyalty_package,\n\t\torg_id,\n\t\torg_key,\n\t\tplatform,\n\t\tplatform_plan,\n\t\treviews_package,\n\t\tsms_package,\n\t\tsms_user_id,\n\t\tstore_domain,\n\t\tstore_id,\n\t\tvugc_package,\n\t\tis_ht,\n\t\tplatform_version,\n\t\tstore_platform_domain,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__identify", "language": "sql", "refs": [], "sources": [["infra__segment", "identify"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__segment.identify"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__identify/infra_stg__identify.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.identify\n\n), infra_stg__identify AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tmessage_id,\n\t\tprocessing_time,\n\t\tanonymous_id,\n\t\ttimestamp,\n\t\tuser_id,\n\t\tauth_0_user_id,\n\t\tis_internal_user,\n\t\tuser_app_key,\n\t\tuser_created_at,\n\t\tuser_email,\n\t\tuser_is_admin,\n\t\tuser_is_test,\n\t\tuser_org_id,\n\t\tuser_org_key,\n\t\tuser_phone,\n\t\tuser_role,\n\t\tuser_store_id,\n\t\tadmin_user_name,\n\t\tapp_key,\n\t\tis_loyalty,\n\t\tis_reviews,\n\t\tis_sms,\n\t\tis_vugc,\n\t\tloyalty_merchant_id,\n\t\tloyalty_package,\n\t\torg_id,\n\t\torg_key,\n\t\tplatform,\n\t\tplatform_plan,\n\t\treviews_package,\n\t\tsms_package,\n\t\tsms_user_id,\n\t\tstore_domain,\n\t\tstore_id,\n\t\tvugc_package,\n\t\tis_ht,\n\t\tplatform_version,\n\t\tstore_platform_domain,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__identify", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__incidents": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__incidents", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.sql", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.sql", "unique_id": "model.yoda.infra_stg__incidents", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__incidents", "infra_stg__incidents"], "alias": "infra_stg__incidents", "checksum": {"name": "sha256", "checksum": "18eb0b5a7a16f2548afa929fecc545f3290c014504c9d1bff2b533ca99053848"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Table Description", "columns": {"seen": {"name": "seen", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tiny_id": {"name": "tiny_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "alias": {"name": "alias", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "acknowledged": {"name": "acknowledged", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_seen": {"name": "is_seen", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "snoozed": {"name": "snoozed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "count": {"name": "count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_occured_at": {"name": "last_occured_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "source": {"name": "source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priority": {"name": "priority", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "teams": {"name": "teams", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "responders": {"name": "responders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "integration": {"name": "integration", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "report": {"name": "report", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_team_id": {"name": "owner_team_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_team": {"name": "owner_team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "extra_properties": {"name": "extra_properties", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "links": {"name": "links", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "impact_start_date": {"name": "impact_start_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "impact_end_date": {"name": "impact_end_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "impacted_services": {"name": "impacted_services", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "actions": {"name": "actions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.193495, "relation_name": "dev_dkruh1.infra_stg__incidents", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__opsgenie', 'incidents') }}\n\n), infra_stg__incidents AS (\n\n SELECT \n\t\tseen,\n\t\tid,\n\t\ttinyId AS tiny_id,\n\t\talias,\n\t\tmessage,\n\t\tstatus,\n\t\tacknowledged,\n\t\tCAST(isSeen AS TIMESTAMP) AS is_seen,\n\t\tsnoozed,\n\t\tcount,\n\t\tCAST(lastOccurredAt AS TIMESTAMP) AS last_occured_at,\n\t\tCAST(createdAt AS TIMESTAMP) AS created_at,\n\t\tCAST(updatedAt AS TIMESTAMP) AS updated_at,\n\t\tsource,\n\t\towner,\n\t\tpriority,\n\t\tFROM_JSON(teams, 'array>') AS teams,\n\t\tFROM_JSON(responders, 'array>') AS responders,\n\t\tintegration,\n\t\treport,\n\t\townerTeamId AS owner_team_id,\n\t\tFROM_JSON(tags, 'array') AS tags,\n\t\tdescription,\n\t\townerTeam AS owner_team,\n\t\textraProperties AS extra_properties,\n\t\tFROM_JSON(links, 'struct') AS links,\n\t\tCAST(impactStartDate AS TIMESTAMP) AS impact_start_date,\n\t\tCAST(impactEndDate AS TIMESTAMP) AS impact_end_date,\n\t\tFROM_JSON(impactedServices, 'array') AS impacted_services,\n\t\tFROM_JSON(actions, 'array') AS actions\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__incidents", "language": "sql", "refs": [], "sources": [["infra__opsgenie", "incidents"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__opsgenie.incidents"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM opsgenie.incidents\n\n), infra_stg__incidents AS (\n\n SELECT \n\t\tseen,\n\t\tid,\n\t\ttinyId AS tiny_id,\n\t\talias,\n\t\tmessage,\n\t\tstatus,\n\t\tacknowledged,\n\t\tCAST(isSeen AS TIMESTAMP) AS is_seen,\n\t\tsnoozed,\n\t\tcount,\n\t\tCAST(lastOccurredAt AS TIMESTAMP) AS last_occured_at,\n\t\tCAST(createdAt AS TIMESTAMP) AS created_at,\n\t\tCAST(updatedAt AS TIMESTAMP) AS updated_at,\n\t\tsource,\n\t\towner,\n\t\tpriority,\n\t\tFROM_JSON(teams, 'array>') AS teams,\n\t\tFROM_JSON(responders, 'array>') AS responders,\n\t\tintegration,\n\t\treport,\n\t\townerTeamId AS owner_team_id,\n\t\tFROM_JSON(tags, 'array') AS tags,\n\t\tdescription,\n\t\townerTeam AS owner_team,\n\t\textraProperties AS extra_properties,\n\t\tFROM_JSON(links, 'struct') AS links,\n\t\tCAST(impactStartDate AS TIMESTAMP) AS impact_start_date,\n\t\tCAST(impactEndDate AS TIMESTAMP) AS impact_end_date,\n\t\tFROM_JSON(impactedServices, 'array') AS impacted_services,\n\t\tFROM_JSON(actions, 'array') AS actions\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__incidents", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__infra_metrics": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__infra_metrics", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.sql", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.sql", "unique_id": "model.yoda.infra_stg__infra_metrics", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__infra_metrics", "infra_stg__infra_metrics"], "alias": "infra_stg__infra_metrics", "checksum": {"name": "sha256", "checksum": "6c8e7fc74d2051c15b5e2d36c0456b975cfcd2ac8395d0cdd3d544f42fc2c0ea"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "A table that exposes raw infra metrics", "columns": {"ts": {"name": "ts", "description": "the timestamp the metric was taken", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_line": {"name": "product_line", "description": "metric value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "the source of the metric (i.e github)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "component": {"name": "component", "description": "the component this metric refers to (i.e git repo name)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "key": {"name": "key", "description": "metric key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "the metric's value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "custom_properties": {"name": "custom_properties", "description": "any custom porerties in addition to the key value of the metrics", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.2087212, "relation_name": "dev_dkruh1.infra_stg__infra_metrics", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__infra_metrics', 'infra_raw_metrics') }}\n\n), infra_stg__infra_metrics AS (\n\n SELECT \n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__infra_metrics", "language": "sql", "refs": [], "sources": [["infra__infra_metrics", "infra_raw_metrics"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__infra_metrics.infra_raw_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM infra_metrics.infra_raw_metrics\n\n), infra_stg__infra_metrics AS (\n\n SELECT \n ts,\n product_line,\n source,\n component,\n key,\n value,\n custom_properties\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__infra_metrics", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__kubecost_delta": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__kubecost_delta", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.sql", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.sql", "unique_id": "model.yoda.infra_stg__kubecost_delta", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__kubecost_delta", "infra_stg__kubecost_delta"], "alias": "infra_stg__kubecost_delta", "checksum": {"name": "sha256", "checksum": "6c9ebbd3cc8fa139957e2db6ce937a1b42443ccbc7bbb76ca73108ad5949a412"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"cpuCoreHours": {"name": "cpuCoreHours", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCoreRequestAverage": {"name": "cpuCoreRequestAverage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCoreUsageAverage": {"name": "cpuCoreUsageAverage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCores": {"name": "cpuCores", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCost": {"name": "cpuCost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCostAdjustment": {"name": "cpuCostAdjustment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuEfficiency": {"name": "cpuEfficiency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end": {"name": "end", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "externalCost": {"name": "externalCost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpuCost": {"name": "gpuCost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpuCostAdjustment": {"name": "gpuCostAdjustment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpuCount": {"name": "gpuCount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpuHours": {"name": "gpuHours", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loadBalancerCost": {"name": "loadBalancerCost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loadBalancerCostAdjustment": {"name": "loadBalancerCostAdjustment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "minutes": {"name": "minutes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "networkCost": {"name": "networkCost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkCostAdjustment": {"name": "networkCostAdjustment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkReceiveBytes": {"name": "networkReceiveBytes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkTransferBytes": {"name": "networkTransferBytes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "properties": {"name": "properties", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct,namespace:string,node:string,pod:string,providerID:string,services:array>"}, "pvByteHours": {"name": "pvByteHours", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvBytes": {"name": "pvBytes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvCost": {"name": "pvCost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvCostAdjustment": {"name": "pvCostAdjustment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvs": {"name": "pvs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ramByteHours": {"name": "ramByteHours", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramByteRequestAverage": {"name": "ramByteRequestAverage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramByteUsageAverage": {"name": "ramByteUsageAverage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramBytes": {"name": "ramBytes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramCost": {"name": "ramCost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramCostAdjustment": {"name": "ramCostAdjustment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramEfficiency": {"name": "ramEfficiency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rawAllocationOnly": {"name": "rawAllocationOnly", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "sharedCost": {"name": "sharedCost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "start": {"name": "start", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "totalCost": {"name": "totalCost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalEfficiency": {"name": "totalEfficiency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "window": {"name": "window", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "year": {"name": "year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.2747517, "relation_name": "dev_dkruh1.infra_stg__kubecost_delta", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'kubecost_delta') }}\n\n), infra_stg__kubecost_delta AS (\n\n SELECT \n\t\tcpuCoreHours,\n\t\tcpuCoreRequestAverage,\n\t\tcpuCoreUsageAverage,\n\t\tcpuCores,\n\t\tcpuCost,\n\t\tcpuCostAdjustment,\n\t\tcpuEfficiency,\n\t\tend,\n\t\texternalCost,\n\t\tgpuCost,\n\t\tgpuCostAdjustment,\n\t\tgpuCount,\n\t\tgpuHours,\n\t\tloadBalancerCost,\n\t\tloadBalancerCostAdjustment,\n\t\tminutes,\n\t\tname,\n\t\tnetworkCost,\n\t\tnetworkCostAdjustment,\n\t\tnetworkReceiveBytes,\n\t\tnetworkTransferBytes,\n\t\tproperties,\n\t\tpvByteHours,\n\t\tpvBytes,\n\t\tpvCost,\n\t\tpvCostAdjustment,\n\t\tpvs,\n\t\tramByteHours,\n\t\tramByteRequestAverage,\n\t\tramByteUsageAverage,\n\t\tramBytes,\n\t\tramCost,\n\t\tramCostAdjustment,\n\t\tramEfficiency,\n\t\trawAllocationOnly,\n\t\tsharedCost,\n\t\tstart,\n\t\ttotalCost,\n\t\ttotalEfficiency,\n\t\twindow,\n\t\tyear,\n\t\tmonth,\n\t\tday\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__kubecost_delta", "language": "sql", "refs": [], "sources": [["infra__costpo", "kubecost_delta"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.kubecost_delta"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM costpo.kubecost_delta\n\n), infra_stg__kubecost_delta AS (\n\n SELECT \n\t\tcpuCoreHours,\n\t\tcpuCoreRequestAverage,\n\t\tcpuCoreUsageAverage,\n\t\tcpuCores,\n\t\tcpuCost,\n\t\tcpuCostAdjustment,\n\t\tcpuEfficiency,\n\t\tend,\n\t\texternalCost,\n\t\tgpuCost,\n\t\tgpuCostAdjustment,\n\t\tgpuCount,\n\t\tgpuHours,\n\t\tloadBalancerCost,\n\t\tloadBalancerCostAdjustment,\n\t\tminutes,\n\t\tname,\n\t\tnetworkCost,\n\t\tnetworkCostAdjustment,\n\t\tnetworkReceiveBytes,\n\t\tnetworkTransferBytes,\n\t\tproperties,\n\t\tpvByteHours,\n\t\tpvBytes,\n\t\tpvCost,\n\t\tpvCostAdjustment,\n\t\tpvs,\n\t\tramByteHours,\n\t\tramByteRequestAverage,\n\t\tramByteUsageAverage,\n\t\tramBytes,\n\t\tramCost,\n\t\tramCostAdjustment,\n\t\tramEfficiency,\n\t\trawAllocationOnly,\n\t\tsharedCost,\n\t\tstart,\n\t\ttotalCost,\n\t\ttotalEfficiency,\n\t\twindow,\n\t\tyear,\n\t\tmonth,\n\t\tday\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__kubecost_delta", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__kubecost_raw": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__kubecost_raw", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.sql", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.sql", "unique_id": "model.yoda.infra_stg__kubecost_raw", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__kubecost_raw", "infra_stg__kubecost_raw"], "alias": "infra_stg__kubecost_raw", "checksum": {"name": "sha256", "checksum": "9bdd1c06339d521d3fda075bf9ad03a36970a7843f99f6e0b0e4f275fa779887"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "infra_stg__kubecost_raw", "columns": {"cpucorehours": {"name": "cpucorehours", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucorerequestaverage": {"name": "cpucorerequestaverage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucoreusageaverage": {"name": "cpucoreusageaverage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucores": {"name": "cpucores", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucost": {"name": "cpucost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucostadjustment": {"name": "cpucostadjustment", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuefficiency": {"name": "cpuefficiency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end": {"name": "end", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "externalcost": {"name": "externalcost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpucost": {"name": "gpucost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpucostadjustment": {"name": "gpucostadjustment", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpucount": {"name": "gpucount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpuhours": {"name": "gpuhours", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loadbalancercost": {"name": "loadbalancercost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loadbalancercostadjustment": {"name": "loadbalancercostadjustment", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "minutes": {"name": "minutes", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "networkcost": {"name": "networkcost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkcostadjustment": {"name": "networkcostadjustment", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkreceivebytes": {"name": "networkreceivebytes", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networktransferbytes": {"name": "networktransferbytes", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "properties": {"name": "properties", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct,namespace:string,node:string,pod:string,providerID:string,services:array>"}, "pvbytehours": {"name": "pvbytehours", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvbytes": {"name": "pvbytes", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvcost": {"name": "pvcost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvcostadjustment": {"name": "pvcostadjustment", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvs": {"name": "pvs", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rambytehours": {"name": "rambytehours", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyterequestaverage": {"name": "rambyterequestaverage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyteusageaverage": {"name": "rambyteusageaverage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambytes": {"name": "rambytes", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramcost": {"name": "ramcost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramcostadjustment": {"name": "ramcostadjustment", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramefficiency": {"name": "ramefficiency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rawallocationonly": {"name": "rawallocationonly", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "sharedcost": {"name": "sharedcost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "start": {"name": "start", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "totalcost": {"name": "totalcost", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalefficiency": {"name": "totalefficiency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "window": {"name": "window", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "year": {"name": "year", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "dporat@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.313437, "relation_name": "dev_dkruh1.infra_stg__kubecost_raw", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'kubecost_raw') }}\n\n), infra_stg__kubecost_raw AS (\n\n SELECT \n\t\tcpucorehours,\n\t\tcpucorerequestaverage,\n\t\tcpucoreusageaverage,\n\t\tcpucores,\n\t\tcpucost,\n\t\tcpucostadjustment,\n\t\tcpuefficiency,\n\t\tend,\n\t\texternalcost,\n\t\tgpucost,\n\t\tgpucostadjustment,\n\t\tgpucount,\n\t\tgpuhours,\n\t\tloadbalancercost,\n\t\tloadbalancercostadjustment,\n\t\tminutes,\n\t\tname,\n\t\tnetworkcost,\n\t\tnetworkcostadjustment,\n\t\tnetworkreceivebytes,\n\t\tnetworktransferbytes,\n\t\tproperties,\n\t\tpvbytehours,\n\t\tpvbytes,\n\t\tpvcost,\n\t\tpvcostadjustment,\n\t\tpvs,\n\t\trambytehours,\n\t\trambyterequestaverage,\n\t\trambyteusageaverage,\n\t\trambytes,\n\t\tramcost,\n\t\tramcostadjustment,\n\t\tramefficiency,\n\t\trawallocationonly,\n\t\tsharedcost,\n\t\tstart,\n\t\ttotalcost,\n\t\ttotalefficiency,\n\t\twindow,\n\t\tyear,\n\t\tmonth,\n\t\tday\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__kubecost_raw", "language": "sql", "refs": [], "sources": [["infra__costpo", "kubecost_raw"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.kubecost_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM costpo.kubecost_raw\n\n), infra_stg__kubecost_raw AS (\n\n SELECT \n\t\tcpucorehours,\n\t\tcpucorerequestaverage,\n\t\tcpucoreusageaverage,\n\t\tcpucores,\n\t\tcpucost,\n\t\tcpucostadjustment,\n\t\tcpuefficiency,\n\t\tend,\n\t\texternalcost,\n\t\tgpucost,\n\t\tgpucostadjustment,\n\t\tgpucount,\n\t\tgpuhours,\n\t\tloadbalancercost,\n\t\tloadbalancercostadjustment,\n\t\tminutes,\n\t\tname,\n\t\tnetworkcost,\n\t\tnetworkcostadjustment,\n\t\tnetworkreceivebytes,\n\t\tnetworktransferbytes,\n\t\tproperties,\n\t\tpvbytehours,\n\t\tpvbytes,\n\t\tpvcost,\n\t\tpvcostadjustment,\n\t\tpvs,\n\t\trambytehours,\n\t\trambyterequestaverage,\n\t\trambyteusageaverage,\n\t\trambytes,\n\t\tramcost,\n\t\tramcostadjustment,\n\t\tramefficiency,\n\t\trawallocationonly,\n\t\tsharedcost,\n\t\tstart,\n\t\ttotalcost,\n\t\ttotalefficiency,\n\t\twindow,\n\t\tyear,\n\t\tmonth,\n\t\tday\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__kubecost_raw", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__page": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__page", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.sql", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.sql", "unique_id": "model.yoda.infra_stg__page", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__page", "infra_stg__page"], "alias": "infra_stg__page", "checksum": {"name": "sha256", "checksum": "ab526a32f44918c23099afeefe3285bf40cca871e1dd70c1f38cc5a86093c659"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Segment Page Events (partitioned by partition_date)", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin_user_name": {"name": "admin_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth_0_user_id": {"name": "auth_0_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ht": {"name": "is_ht", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_internal_user": {"name": "is_internal_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_vugc": {"name": "is_vugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyalty_merchant_id": {"name": "loyalty_merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_package": {"name": "loyalty_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_id": {"name": "org_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_key": {"name": "org_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_version": {"name": "platform_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_package": {"name": "reviews_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_package": {"name": "sms_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_platform_domain": {"name": "store_platform_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugc_package": {"name": "vugc_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_context": {"name": "page_context", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_name": {"name": "page_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_sub_context": {"name": "page_sub_context", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tab_name": {"name": "tab_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "campaign_source": {"name": "campaign_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_medium": {"name": "campaign_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_content": {"name": "campaign_content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_search": {"name": "page_search", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "session_id": {"name": "session_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_referrer": {"name": "original_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__page/infra_stg__page.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.373013, "relation_name": "dev_dkruh1.infra_stg__page", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__segment', 'page') }}\n\n), infra_stg__page AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tname,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tadmin_user_name,\n\t\tapp_key,\n\t\tauth_0_user_id,\n\t\tis_ht,\n\t\tis_internal_user,\n\t\tis_loyalty,\n\t\tis_reviews,\n\t\tis_sms,\n\t\tis_vugc,\n\t\tloyalty_merchant_id,\n\t\tloyalty_package,\n\t\torg_id,\n\t\torg_key,\n\t\tplatform,\n\t\tplatform_plan,\n\t\tplatform_version,\n\t\treviews_package,\n\t\tsms_package,\n\t\tsms_user_id,\n\t\tstore_domain,\n\t\tstore_id,\n\t\tstore_platform_domain,\n\t\tvugc_package,\n\t\tpage_context,\n\t\tpage_name,\n\t\tpage_sub_context,\n\t\tproduct,\n\t\tstate,\n\t\ttab_name,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tcampaign_source,\n\t\tcampaign_medium,\n\t\tcampaign_content,\n\t\tpage_search,\n\t\tsession_id,\n\t\toriginal_referrer,\n\t\tviolated_event\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__page", "language": "sql", "refs": [], "sources": [["infra__segment", "page"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__segment.page"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__page/infra_stg__page.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.page\n\n), infra_stg__page AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tname,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tadmin_user_name,\n\t\tapp_key,\n\t\tauth_0_user_id,\n\t\tis_ht,\n\t\tis_internal_user,\n\t\tis_loyalty,\n\t\tis_reviews,\n\t\tis_sms,\n\t\tis_vugc,\n\t\tloyalty_merchant_id,\n\t\tloyalty_package,\n\t\torg_id,\n\t\torg_key,\n\t\tplatform,\n\t\tplatform_plan,\n\t\tplatform_version,\n\t\treviews_package,\n\t\tsms_package,\n\t\tsms_user_id,\n\t\tstore_domain,\n\t\tstore_id,\n\t\tstore_platform_domain,\n\t\tvugc_package,\n\t\tpage_context,\n\t\tpage_name,\n\t\tpage_sub_context,\n\t\tproduct,\n\t\tstate,\n\t\ttab_name,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tcampaign_source,\n\t\tcampaign_medium,\n\t\tcampaign_content,\n\t\tpage_search,\n\t\tsession_id,\n\t\toriginal_referrer,\n\t\tviolated_event\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__page", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__page_track": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__page_track", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.sql", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.sql", "unique_id": "model.yoda.infra_stg__page_track", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__page_track", "infra_stg__page_track"], "alias": "infra_stg__page_track", "checksum": {"name": "sha256", "checksum": "2213f004678edc455ae5c14fb38d853af125afe64c0f2e753559e2a42955424b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Segment Track Events, partitioned by partition_date. There are multiple views for each track event registed in Segment (with it's dedicated schema).", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "session_id": {"name": "session_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rrssentinbillingcycle": {"name": "rrssentinbillingcycle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin": {"name": "admin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingprovider": {"name": "billingprovider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargifybalance": {"name": "chargifybalance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargifyrevenue": {"name": "chargifyrevenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysindunning": {"name": "daysindunning", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "intercomuserhash": {"name": "intercomuserhash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isautopublishenabled": {"name": "isautopublishenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledcoupons": {"name": "isenabledcoupons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledcustomreviews": {"name": "isenabledcustomreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledgsr": {"name": "isenabledgsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledmap": {"name": "isenabledmap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpla": {"name": "isenabledpla", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpromotedproductsemail": {"name": "isenabledpromotedproductsemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpromotedproductswidget": {"name": "isenabledpromotedproductswidget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledqna": {"name": "isenabledqna", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledrichsnippets": {"name": "isenabledrichsnippets", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasbadge": {"name": "ishasbadge", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascomments": {"name": "ishascomments", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasconverttositereview": {"name": "ishasconverttositereview", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascoupons": {"name": "ishascoupons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascsseditor": {"name": "ishascsseditor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascustomreviews": {"name": "ishascustomreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasdedicatedpage": {"name": "ishasdedicatedpage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasgsr": {"name": "ishasgsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasnewmainwidgetlayout": {"name": "ishasnewmainwidgetlayout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspla": {"name": "ishaspla", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspromotedproductsemail": {"name": "ishaspromotedproductsemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspromotedproductswidget": {"name": "ishaspromotedproductswidget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasqna": {"name": "ishasqna", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasreviewscarousel": {"name": "ishasreviewscarousel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasreviewstab": {"name": "ishasreviewstab", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasrichsnippets": {"name": "ishasrichsnippets", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmai": {"name": "ishassentmai", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmas": {"name": "ishassentmas", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmap": {"name": "ishassentmap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentsitereminder": {"name": "ishassentsitereminder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassenttpr": {"name": "ishassenttpr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassenttsr": {"name": "ishassenttsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasshoppableinstagram": {"name": "ishasshoppableinstagram", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassocialpush": {"name": "ishassocialpush", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasstarrating": {"name": "ishasstarrating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishastpr": {"name": "ishastpr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishastsr": {"name": "ishastsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ismapcustomfieldsenabled": {"name": "ismapcustomfieldsenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreceivesentimentnotification": {"name": "isreceivesentimentnotification", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagecategory": {"name": "pagecategory", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paysvia": {"name": "paysvia", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurringpaymentinterval": {"name": "recurringpaymentinterval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uiversion": {"name": "uiversion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoproductscorev2": {"name": "yotpoproductscorev2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "creditcardtype": {"name": "creditcardtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daystorenewal": {"name": "daystorenewal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nameoncreditcard": {"name": "nameoncreditcard", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nextchargedate": {"name": "nextchargedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewaldate": {"name": "renewaldate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoproductscore": {"name": "yotpoproductscore", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pixelversion": {"name": "pixelversion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creditcardlast4digits": {"name": "creditcardlast4digits", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_duplicated_2": {"name": "is_duplicated_2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.5062413, "relation_name": "dev_dkruh1.infra_stg__page_track", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__segment', 'page_track') }}\n\n), infra_stg__page_track AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tsession_id,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\trrssentinbillingcycle,\n\t\taccountid,\n\t\tadminname,\n\t\tadmin,\n\t\tappkey,\n\t\tbillingprovider,\n\t\tchargifybalance,\n\t\tchargifyrevenue,\n\t\tcreatedat,\n\t\tdaysindunning,\n\t\temail,\n\t\tgroupid,\n\t\tintercomuserhash,\n\t\tisautopublishenabled,\n\t\tisenabledcoupons,\n\t\tisenabledcustomreviews,\n\t\tisenabledgsr,\n\t\tisenabledmap,\n\t\tisenabledpla,\n\t\tisenabledpromotedproductsemail,\n\t\tisenabledpromotedproductswidget,\n\t\tisenabledqna,\n\t\tisenabledrichsnippets,\n\t\tishasbadge,\n\t\tishascomments,\n\t\tishasconverttositereview,\n\t\tishascoupons,\n\t\tishascsseditor,\n\t\tishascustomreviews,\n\t\tishasdedicatedpage,\n\t\tishasgsr,\n\t\tishasnewmainwidgetlayout,\n\t\tishaspla,\n\t\tishaspromotedproductsemail,\n\t\tishaspromotedproductswidget,\n\t\tishasqna,\n\t\tishasreviewscarousel,\n\t\tishasreviewstab,\n\t\tishasrichsnippets,\n\t\tishassentmai,\n\t\tishassentmas,\n\t\tishassentmap,\n\t\tishassentsitereminder,\n\t\tishassenttpr,\n\t\tishassenttsr,\n\t\tishasshoppableinstagram,\n\t\tishassocialpush,\n\t\tishasstarrating,\n\t\tishastpr,\n\t\tishastsr,\n\t\tisinvalidfacebooktoken,\n\t\tismapcustomfieldsenabled,\n\t\tisnewslettersubscribed,\n\t\tisreceivesentimentnotification,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpagecategory,\n\t\tpath,\n\t\tpaysvia,\n\t\tplanname,\n\t\tplatform,\n\t\trecurringpaymentinterval,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tsubscriptionstate,\n\t\ttitle,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuiversion,\n\t\turl,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\tyotpoproductscorev2,\n\t\tphone,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tpendingrrs,\n\t\tcreditcardtype,\n\t\tdaysinvalidfacebooktoken,\n\t\tdaystorenewal,\n\t\tisinvalidfacebooktokendate,\n\t\tlastconversionordertime,\n\t\tnameoncreditcard,\n\t\tnextchargedate,\n\t\trenewaldate,\n\t\tyotpoproductscore,\n\t\tpixelversion,\n\t\tisinvalidtwittertoken,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tisinvalidpinteresttoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tpackageextensions,\n\t\tcreditcardlast4digits,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tbillingproviders,\n\t\tstoredomain,\n\t\tis_duplicated_2\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__page_track", "language": "sql", "refs": [], "sources": [["infra__segment", "page_track"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__segment.page_track"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.page_track\n\n), infra_stg__page_track AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tsession_id,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\trrssentinbillingcycle,\n\t\taccountid,\n\t\tadminname,\n\t\tadmin,\n\t\tappkey,\n\t\tbillingprovider,\n\t\tchargifybalance,\n\t\tchargifyrevenue,\n\t\tcreatedat,\n\t\tdaysindunning,\n\t\temail,\n\t\tgroupid,\n\t\tintercomuserhash,\n\t\tisautopublishenabled,\n\t\tisenabledcoupons,\n\t\tisenabledcustomreviews,\n\t\tisenabledgsr,\n\t\tisenabledmap,\n\t\tisenabledpla,\n\t\tisenabledpromotedproductsemail,\n\t\tisenabledpromotedproductswidget,\n\t\tisenabledqna,\n\t\tisenabledrichsnippets,\n\t\tishasbadge,\n\t\tishascomments,\n\t\tishasconverttositereview,\n\t\tishascoupons,\n\t\tishascsseditor,\n\t\tishascustomreviews,\n\t\tishasdedicatedpage,\n\t\tishasgsr,\n\t\tishasnewmainwidgetlayout,\n\t\tishaspla,\n\t\tishaspromotedproductsemail,\n\t\tishaspromotedproductswidget,\n\t\tishasqna,\n\t\tishasreviewscarousel,\n\t\tishasreviewstab,\n\t\tishasrichsnippets,\n\t\tishassentmai,\n\t\tishassentmas,\n\t\tishassentmap,\n\t\tishassentsitereminder,\n\t\tishassenttpr,\n\t\tishassenttsr,\n\t\tishasshoppableinstagram,\n\t\tishassocialpush,\n\t\tishasstarrating,\n\t\tishastpr,\n\t\tishastsr,\n\t\tisinvalidfacebooktoken,\n\t\tismapcustomfieldsenabled,\n\t\tisnewslettersubscribed,\n\t\tisreceivesentimentnotification,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpagecategory,\n\t\tpath,\n\t\tpaysvia,\n\t\tplanname,\n\t\tplatform,\n\t\trecurringpaymentinterval,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tsubscriptionstate,\n\t\ttitle,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuiversion,\n\t\turl,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\tyotpoproductscorev2,\n\t\tphone,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tpendingrrs,\n\t\tcreditcardtype,\n\t\tdaysinvalidfacebooktoken,\n\t\tdaystorenewal,\n\t\tisinvalidfacebooktokendate,\n\t\tlastconversionordertime,\n\t\tnameoncreditcard,\n\t\tnextchargedate,\n\t\trenewaldate,\n\t\tyotpoproductscore,\n\t\tpixelversion,\n\t\tisinvalidtwittertoken,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tisinvalidpinteresttoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tpackageextensions,\n\t\tcreditcardlast4digits,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tbillingproviders,\n\t\tstoredomain,\n\t\tis_duplicated_2\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__page_track", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__pixel_enrichment": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__pixel_enrichment", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.sql", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.sql", "unique_id": "model.yoda.infra_stg__pixel_enrichment", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__pixel_enrichment", "infra_stg__pixel_enrichment"], "alias": "infra_stg__pixel_enrichment", "checksum": {"name": "sha256", "checksum": "22ac4d6eff99f5dd4a250c45cb56646805adcfc7e048c030718fbb51efe9fea6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Pixel data ever since the 2022-12-01, reference - https://docs.google.com/document/d/1kmhB2ZgTzGgRVXFHP8rMhm_GKtEDHNF0cTmSeGPPuAI/edit?usp=sharing", "columns": {"processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "br_colordepth": {"name": "br_colordepth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_cookies": {"name": "br_cookies", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_family": {"name": "br_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_features_director": {"name": "br_features_director", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_flash": {"name": "br_features_flash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_gears": {"name": "br_features_gears", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_java": {"name": "br_features_java", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_pdf": {"name": "br_features_pdf", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_quicktime": {"name": "br_features_quicktime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_realplayer": {"name": "br_features_realplayer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_silverlight": {"name": "br_features_silverlight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_windowsmedia": {"name": "br_features_windowsmedia", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_lang": {"name": "br_lang", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_major": {"name": "br_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_minor": {"name": "br_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_viewheight": {"name": "br_viewheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_viewwidth": {"name": "br_viewwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_day": {"name": "collector_day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_epoch": {"name": "collector_epoch", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_month": {"name": "collector_month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_year": {"name": "collector_year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_family": {"name": "device_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_charset": {"name": "doc_charset", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_height": {"name": "doc_height", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "doc_width": {"name": "doc_width", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_sessionidx": {"name": "domain_sessionidx", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dvce_screenheight": {"name": "dvce_screenheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_screenwidth": {"name": "dvce_screenwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_tstamp": {"name": "dvce_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_id": {"name": "event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_vendor": {"name": "event_vendor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event": {"name": "event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_city": {"name": "geo_city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_country": {"name": "geo_country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_latitude": {"name": "geo_latitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_longitude": {"name": "geo_longitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_region": {"name": "geo_region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_zipcode": {"name": "geo_zipcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_campaign": {"name": "mkt_campaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_content": {"name": "mkt_content", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_medium": {"name": "mkt_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_source": {"name": "mkt_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_term": {"name": "mkt_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_family": {"name": "os_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_major": {"name": "os_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_minor": {"name": "os_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_timezone": {"name": "os_timezone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlfragment": {"name": "page_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlhost": {"name": "page_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlpath": {"name": "page_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlport": {"name": "page_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_urlquery": {"name": "page_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlscheme": {"name": "page_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pp_xoffset_max": {"name": "pp_xoffset_max", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_xoffset_min": {"name": "pp_xoffset_min", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_max": {"name": "pp_yoffset_max", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_min": {"name": "pp_yoffset_min", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_medium": {"name": "refr_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_source": {"name": "refr_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_term": {"name": "refr_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlfragment": {"name": "refr_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlhost": {"name": "refr_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlpath": {"name": "refr_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlport": {"name": "refr_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_urlquery": {"name": "refr_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlscheme": {"name": "refr_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_page_sku": {"name": "se_page_sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_testing_groups": {"name": "se_testing_groups", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_value": {"name": "se_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_currency": {"name": "tr_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_orderid": {"name": "tr_orderid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_total": {"name": "tr_total", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "txn_id": {"name": "txn_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_fingerprint": {"name": "user_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useragent": {"name": "useragent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_collector": {"name": "v_collector", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_etl": {"name": "v_etl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_tracker": {"name": "v_tracker", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "y_fingerprint": {"name": "y_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hour": {"name": "hour", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.611475, "relation_name": "dev_dkruh1.infra_stg__pixel_enrichment", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__pixel', 'pixel_enrichment') }}\n\n), infra_stg__pixel_enrichment AS (\n\n SELECT \n\t\tprocessing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id,\n\t\tapp_id,\n\t\tpartition_date,\n\t\thour\n FROM source\n\tWHERE\n\t\tpartition_date >= '2022-12-01'\n)\n\nSELECT * \nFROM infra_stg__pixel_enrichment", "language": "sql", "refs": [], "sources": [["infra__pixel", "pixel_enrichment"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__pixel.pixel_enrichment"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM pixel.pixel_enrichment\n\n), infra_stg__pixel_enrichment AS (\n\n SELECT \n\t\tprocessing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id,\n\t\tapp_id,\n\t\tpartition_date,\n\t\thour\n FROM source\n\tWHERE\n\t\tpartition_date >= '2022-12-01'\n)\n\nSELECT * \nFROM infra_stg__pixel_enrichment", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__repos": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__repos", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.sql", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.sql", "unique_id": "model.yoda.infra_stg__repos", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__repos", "infra_stg__repos"], "alias": "infra_stg__repos", "checksum": {"name": "sha256", "checksum": "8d0d428f42bea2ad46f8c741936c915bc25321511d13d04dde60264967808531"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Yotpo oranization git repo as extracted from https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#list-organization-repositories", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "node_id": {"name": "node_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_name": {"name": "full_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fork": {"name": "fork", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "private": {"name": "private", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "forks_count": {"name": "forks_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "stargazers_count": {"name": "stargazers_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "watchers_count": {"name": "watchers_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "size": {"name": "size", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "default_branch": {"name": "default_branch", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "open_issues_count": {"name": "open_issues_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_template": {"name": "is_template", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_issues": {"name": "has_issues", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_projects": {"name": "has_projects", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_wiki": {"name": "has_wiki", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_pages": {"name": "has_pages", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_downloads": {"name": "has_downloads", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_discussions": {"name": "has_discussions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "archived": {"name": "archived", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "disabled": {"name": "disabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "visibility": {"name": "visibility", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pushed_at": {"name": "pushed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__repos/infra_stg__repos.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.6577375, "relation_name": "dev_dkruh1.infra_stg__repos", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__github_info', 'repos') }}\n\n), infra_stg__repos AS (\n\n SELECT \n\t\tid,\n\t\tnode_id,\n\t\tname,\n\t\tfull_name,\n\t\tdescription,\n\t\tfork,\n\t\tprivate,\n\t\turl,\n\t\tforks_count,\n\t\tstargazers_count,\n\t\twatchers_count,\n\t\tsize,\n\t\tdefault_branch,\n\t\topen_issues_count,\n\t\tis_template,\n\t\thas_issues,\n\t\thas_projects,\n\t\thas_wiki,\n\t\thas_pages,\n\t\thas_downloads,\n\t\thas_discussions,\n\t\tarchived,\n\t\tdisabled,\n\t\tvisibility,\n\t\tpushed_at\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__repos", "language": "sql", "refs": [], "sources": [["infra__github_info", "repos"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__github_info.repos"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__repos/infra_stg__repos.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM github_info.repos\n\n), infra_stg__repos AS (\n\n SELECT \n\t\tid,\n\t\tnode_id,\n\t\tname,\n\t\tfull_name,\n\t\tdescription,\n\t\tfork,\n\t\tprivate,\n\t\turl,\n\t\tforks_count,\n\t\tstargazers_count,\n\t\twatchers_count,\n\t\tsize,\n\t\tdefault_branch,\n\t\topen_issues_count,\n\t\tis_template,\n\t\thas_issues,\n\t\thas_projects,\n\t\thas_wiki,\n\t\thas_pages,\n\t\thas_downloads,\n\t\thas_discussions,\n\t\tarchived,\n\t\tdisabled,\n\t\tvisibility,\n\t\tpushed_at\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__repos", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__rivery_environments": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__rivery_environments", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.sql", "original_file_path": "models/infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.sql", "unique_id": "model.yoda.infra_stg__rivery_environments", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__rivery_environments", "infra_stg__rivery_environments"], "alias": "infra_stg__rivery_environments", "checksum": {"name": "sha256", "checksum": "824b110b14a8cb3bd5ae206be29cb6fe626e5ea081ce8c85cc6987454c03b1ff"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Rivery table containing all of our environments", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.6878288, "relation_name": "dev_dkruh1.infra_stg__rivery_environments", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__infra', 'rivery_environments') }}\n\n), infra_stg__rivery_environments AS (\n\n SELECT \n\t\tid,\n\t\tname,\n\t\taccount_id,\n\t\tis_deleted\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__rivery_environments", "language": "sql", "refs": [], "sources": [["infra__infra", "rivery_environments"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__infra.rivery_environments"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM infra.rivery_environments\n\n), infra_stg__rivery_environments AS (\n\n SELECT \n\t\tid,\n\t\tname,\n\t\taccount_id,\n\t\tis_deleted\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__rivery_environments", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__rivery_groups": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__rivery_groups", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.sql", "original_file_path": "models/infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.sql", "unique_id": "model.yoda.infra_stg__rivery_groups", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__rivery_groups", "infra_stg__rivery_groups"], "alias": "infra_stg__rivery_groups", "checksum": {"name": "sha256", "checksum": "ccd2563b9bf62bd6099a95b76a9c0ede99787d9eca075f40f4ea400303415a2b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Rivery table containing all of our river groups", "columns": {"account_id": {"name": "account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "environment_id": {"name": "environment_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.7203872, "relation_name": "dev_dkruh1.infra_stg__rivery_groups", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__infra', 'rivery_groups') }}\n\n), infra_stg__rivery_groups AS (\n\n SELECT \n\t\taccount_id,\n\t\tenvironment_id,\n\t\tid,\n\t\tname\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__rivery_groups", "language": "sql", "refs": [], "sources": [["infra__infra", "rivery_groups"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__infra.rivery_groups"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM infra.rivery_groups\n\n), infra_stg__rivery_groups AS (\n\n SELECT \n\t\taccount_id,\n\t\tenvironment_id,\n\t\tid,\n\t\tname\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__rivery_groups", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__rivery_rivers_usage": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__rivery_rivers_usage", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.sql", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.sql", "unique_id": "model.yoda.infra_stg__rivery_rivers_usage", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__rivery_rivers_usage", "infra_stg__rivery_rivers_usage"], "alias": "infra_stg__rivery_rivers_usage", "checksum": {"name": "sha256", "checksum": "f3bffd167f7e84c08e1cbcdd9289509552468bd920699c334d4ecdf68f3e9f9e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Rivery usage table which getting extracted by https://yotpo.cloud.databricks.com/?o=5080138803352597#notebook/4361014601830155", "columns": {"account_id": {"name": "account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "environment_id": {"name": "environment_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cross_id": {"name": "cross_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "river_id": {"name": "river_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "master_river_id": {"name": "master_river_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "river_name": {"name": "river_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sub_river": {"name": "is_sub_river", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_master_river": {"name": "is_master_river", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_multi": {"name": "is_multi", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_deleted": {"name": "is_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "group_id": {"name": "group_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_scheduled": {"name": "is_scheduled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "total_files": {"name": "total_files", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "units": {"name": "units", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_size": {"name": "total_size", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_run": {"name": "last_run", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pending": {"name": "pending", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "failed": {"name": "failed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "running": {"name": "running", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "succeeded": {"name": "succeeded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "canceled": {"name": "canceled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "datasource_id": {"name": "datasource_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dry_runs": {"name": "dry_runs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "start_time": {"name": "start_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "end_time": {"name": "end_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.8318572, "relation_name": "dev_dkruh1.infra_stg__rivery_rivers_usage", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__infra', 'rivery_rivers_usage') }}\n\n), infra_stg__rivery_rivers_usage AS (\n\n SELECT \n\t\taccount_id,\n\t\tenvironment_id,\n\t\tcross_id,\n\t\triver_id,\n\t\tmaster_river_id,\n\t\triver_name,\n\t\tis_sub_river,\n\t\tis_master_river,\n\t\tis_multi,\n\t\tis_deleted,\n\t\tgroup_id,\n\t\tis_scheduled,\n\t\ttotal_files,\n\t\tunits,\n\t\ttotal_size,\n\t\tlast_run,\n\t\tpending,\n\t\tfailed,\n\t\trunning,\n\t\tsucceeded,\n\t\tcanceled,\n\t\tdatasource_id,\n\t\tdry_runs,\n\t\tdate(start_time) as start_time,\n\t\tdate(end_time) as end_time\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__rivery_rivers_usage", "language": "sql", "refs": [], "sources": [["infra__infra", "rivery_rivers_usage"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__infra.rivery_rivers_usage"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM infra.rivery_rivers_usage\n\n), infra_stg__rivery_rivers_usage AS (\n\n SELECT \n\t\taccount_id,\n\t\tenvironment_id,\n\t\tcross_id,\n\t\triver_id,\n\t\tmaster_river_id,\n\t\triver_name,\n\t\tis_sub_river,\n\t\tis_master_river,\n\t\tis_multi,\n\t\tis_deleted,\n\t\tgroup_id,\n\t\tis_scheduled,\n\t\ttotal_files,\n\t\tunits,\n\t\ttotal_size,\n\t\tlast_run,\n\t\tpending,\n\t\tfailed,\n\t\trunning,\n\t\tsucceeded,\n\t\tcanceled,\n\t\tdatasource_id,\n\t\tdry_runs,\n\t\tdate(start_time) as start_time,\n\t\tdate(end_time) as end_time\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__rivery_rivers_usage", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__s3_inventory_raw": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__s3_inventory_raw", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.sql", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.sql", "unique_id": "model.yoda.infra_stg__s3_inventory_raw", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__s3_inventory_raw", "infra_stg__s3_inventory_raw"], "alias": "infra_stg__s3_inventory_raw", "checksum": {"name": "sha256", "checksum": "695a5c0b1c28de91a255dc98b18080ed3d7d14cc1f9d1ae1e84dbe293b2b3215"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": [{"sql": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n", "transaction": true, "index": null}]}, "tags": ["infra"], "description": "infra_stg__s3_inventory_raw", "columns": {"bucket": {"name": "bucket", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "key": {"name": "key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "size": {"name": "size", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_modified_date": {"name": "last_modified_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "e_tag": {"name": "e_tag", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storage_class": {"name": "storage_class", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_multipart_uploaded": {"name": "is_multipart_uploaded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "replication_status": {"name": "replication_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "encryption_status": {"name": "encryption_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_lock_retain_until_date": {"name": "object_lock_retain_until_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "object_lock_mode": {"name": "object_lock_mode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_lock_legal_hold_status": {"name": "object_lock_legal_hold_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "intelligent_tiering_access_tier": {"name": "intelligent_tiering_access_tier", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "year": {"name": "year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "view", "pre-hook": ["\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n"]}, "created_at": 1700082671.8737192, "relation_name": "dev_dkruh1.infra_stg__s3_inventory_raw", "raw_code": "{{ config(materialized=\"view\",\n pre_hook=[msck_repair([\n\t\t\t's3_inventory_yotpo_data_lake', \n\t\t\t's3_inventory_yotpo_data_lake_unversioned', \n\t\t\t's3_inventory_yotpo_data_lake51', \n\t\t\t's3_inventory_us_east_1_upsolver_02dd5906_3e54_43df_a64b_701186d037d2', \n\t\t\t's3_inventory_yotpo_images_production', \n\t\t\t's3_inventory_yotpo_data_lake_dbt'\n\t\t\t])]\n\t\t ) }}\n\nWITH source AS (\n\n SELECT * FROM {{ source('infra__default', 's3_inventory') }}\n\n), infra_stg__s3_inventory AS (\n\n SELECT \n\t\tbucket,\n\t\tkey,\n\t\tsize,\n\t\tlast_modified_date,\n\t\te_tag,\n\t\tstorage_class,\n\t\tis_multipart_uploaded,\n\t\treplication_status,\n\t\tencryption_status,\n\t\tobject_lock_retain_until_date,\n\t\tobject_lock_mode,\n\t\tobject_lock_legal_hold_status,\n\t\tintelligent_tiering_access_tier,\n\t\tCASE \n\t\t\tWHEN bucket LIKE 'yotpo-data-lake%' OR \n\t\t\t\tbucket LIKE 'us-east-1-upsolver%' OR\n\t\t\t\tbucket = 'yotpo-images-production'\n\t\t\tTHEN 'data'\n\t\t\tELSE 'untagged'\n\t\tEND AS product_line,\n\t\tyear,\n\t\tmonth,\n\t\tday\n FROM source\n WHERE\n\t\tCONCAT(year, LPAD(month, 2, '0'), LPAD(day, 2, '0')) > '20221220'\n)\n\nSELECT * \nFROM infra_stg__s3_inventory", "language": "sql", "refs": [], "sources": [["infra__default", "s3_inventory"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.msck_repair", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__default.s3_inventory"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.sql", "compiled": true, "compiled_code": "\n\nWITH source AS (\n\n SELECT * FROM default.s3_inventory\n\n), infra_stg__s3_inventory AS (\n\n SELECT \n\t\tbucket,\n\t\tkey,\n\t\tsize,\n\t\tlast_modified_date,\n\t\te_tag,\n\t\tstorage_class,\n\t\tis_multipart_uploaded,\n\t\treplication_status,\n\t\tencryption_status,\n\t\tobject_lock_retain_until_date,\n\t\tobject_lock_mode,\n\t\tobject_lock_legal_hold_status,\n\t\tintelligent_tiering_access_tier,\n\t\tCASE \n\t\t\tWHEN bucket LIKE 'yotpo-data-lake%' OR \n\t\t\t\tbucket LIKE 'us-east-1-upsolver%' OR\n\t\t\t\tbucket = 'yotpo-images-production'\n\t\t\tTHEN 'data'\n\t\t\tELSE 'untagged'\n\t\tEND AS product_line,\n\t\tyear,\n\t\tmonth,\n\t\tday\n FROM source\n WHERE\n\t\tCONCAT(year, LPAD(month, 2, '0'), LPAD(day, 2, '0')) > '20221220'\n)\n\nSELECT * \nFROM infra_stg__s3_inventory", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__services": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__services", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__services/infra_stg__services.sql", "original_file_path": "models/infra/staging/base/infra_stg__services/infra_stg__services.sql", "unique_id": "model.yoda.infra_stg__services", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__services", "infra_stg__services"], "alias": "infra_stg__services", "checksum": {"name": "sha256", "checksum": "5856809496fe8b8a1669e6419656e233877927355fc208e88148c3f4f4e34340"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "links": {"name": "links", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "team_id": {"name": "team_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_external": {"name": "is_external", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "tags": {"name": "tags", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__services/infra_stg__services.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.8995116, "relation_name": "dev_dkruh1.infra_stg__services", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__opsgenie', 'services') }}\n\n), infra_stg__services AS (\n\n SELECT \n\t\tid,\n\t\tname,\n\t\tdescription,\n\t\tFROM_JSON(links, 'struct') AS links,\n\t\tteamId AS team_id,\n\t\tisExternal AS is_external,\n\t\tFROM_JSON(tags, 'array') AS tags\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__services", "language": "sql", "refs": [], "sources": [["infra__opsgenie", "services"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__opsgenie.services"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__services/infra_stg__services.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM opsgenie.services\n\n), infra_stg__services AS (\n\n SELECT \n\t\tid,\n\t\tname,\n\t\tdescription,\n\t\tFROM_JSON(links, 'struct') AS links,\n\t\tteamId AS team_id,\n\t\tisExternal AS is_external,\n\t\tFROM_JSON(tags, 'array') AS tags\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__services", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__snowflake_automatic_clustering_history": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__snowflake_automatic_clustering_history", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.sql", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.sql", "unique_id": "model.yoda.infra_stg__snowflake_automatic_clustering_history", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__snowflake_automatic_clustering_history", "infra_stg__snowflake_automatic_clustering_history"], "alias": "infra_stg__snowflake_automatic_clustering_history", "checksum": {"name": "sha256", "checksum": "c7399f34f905fbb1843e55bbd60dbaada34daa4f0ec91b9a5668133ba9e91e88"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"start_time": {"name": "start_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "end_time": {"name": "end_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "table_id": {"name": "table_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits_used": {"name": "credits_used", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "database_id": {"name": "database_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "database_name": {"name": "database_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "num_bytes_reclustered": {"name": "num_bytes_reclustered", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "num_rows_reclustered": {"name": "num_rows_reclustered", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "schema_id": {"name": "schema_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "schema_name": {"name": "schema_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "table_name": {"name": "table_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account": {"name": "account", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.9247272, "relation_name": "dev_dkruh1.infra_stg__snowflake_automatic_clustering_history", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'snowflake_automatic_clustering_history') }}\n\n), infra_stg__snowflake_automatic_clustering_history AS (\n\n SELECT \n\t\tstart_time,\n\t\tend_time,\n\t\ttable_id,\n\t\tcredits_used,\n\t\tdatabase_id,\n\t\tdatabase_name,\n\t\tnum_bytes_reclustered,\n\t\tnum_rows_reclustered,\n\t\tschema_id,\n\t\tschema_name,\n\t\ttable_name,\n\t\taccount\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_automatic_clustering_history", "language": "sql", "refs": [], "sources": [["infra__costpo", "snowflake_automatic_clustering_history"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.snowflake_automatic_clustering_history"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM costpo.snowflake_automatic_clustering_history\n\n), infra_stg__snowflake_automatic_clustering_history AS (\n\n SELECT \n\t\tstart_time,\n\t\tend_time,\n\t\ttable_id,\n\t\tcredits_used,\n\t\tdatabase_id,\n\t\tdatabase_name,\n\t\tnum_bytes_reclustered,\n\t\tnum_rows_reclustered,\n\t\tschema_id,\n\t\tschema_name,\n\t\ttable_name,\n\t\taccount\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_automatic_clustering_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__snowflake_database_storage_usage_history": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__snowflake_database_storage_usage_history", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.sql", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.sql", "unique_id": "model.yoda.infra_stg__snowflake_database_storage_usage_history", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__snowflake_database_storage_usage_history", "infra_stg__snowflake_database_storage_usage_history"], "alias": "infra_stg__snowflake_database_storage_usage_history", "checksum": {"name": "sha256", "checksum": "bc2480605d4a943535378222f3ae5238130ebbc04cbb238ae39822da481e6391"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"usage_date": {"name": "usage_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "database_id": {"name": "database_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "database_name": {"name": "database_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "average_database_bytes": {"name": "average_database_bytes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "average_failsafe_bytes": {"name": "average_failsafe_bytes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account": {"name": "account", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.9386256, "relation_name": "dev_dkruh1.infra_stg__snowflake_database_storage_usage_history", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'snowflake_database_storage_usage_history') }}\n\n), infra_stg__snowflake_database_storage_usage_history AS (\n\n SELECT \n\t\tusage_date,\n\t\tdatabase_id,\n\t\tdatabase_name,\n\t\tdeleted,\n\t\taverage_database_bytes,\n\t\taverage_failsafe_bytes,\n\t\taccount\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_database_storage_usage_history", "language": "sql", "refs": [], "sources": [["infra__costpo", "snowflake_database_storage_usage_history"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.snowflake_database_storage_usage_history"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM costpo.snowflake_database_storage_usage_history\n\n), infra_stg__snowflake_database_storage_usage_history AS (\n\n SELECT \n\t\tusage_date,\n\t\tdatabase_id,\n\t\tdatabase_name,\n\t\tdeleted,\n\t\taverage_database_bytes,\n\t\taverage_failsafe_bytes,\n\t\taccount\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_database_storage_usage_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__snowflake_materialized_view_refresh_history": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__snowflake_materialized_view_refresh_history", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.sql", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.sql", "unique_id": "model.yoda.infra_stg__snowflake_materialized_view_refresh_history", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__snowflake_materialized_view_refresh_history", "infra_stg__snowflake_materialized_view_refresh_history"], "alias": "infra_stg__snowflake_materialized_view_refresh_history", "checksum": {"name": "sha256", "checksum": "ac9fec86be9021d9226493ffe06d74dd4a5e428cf49f2baf68c7b9fd5b6b3ba2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"start_time": {"name": "start_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "end_time": {"name": "end_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "credits_used": {"name": "credits_used", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "table_id": {"name": "table_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "table_name": {"name": "table_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "schema_id": {"name": "schema_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "schema_name": {"name": "schema_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "database_id": {"name": "database_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "database_name": {"name": "database_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account": {"name": "account", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082671.9588692, "relation_name": "dev_dkruh1.infra_stg__snowflake_materialized_view_refresh_history", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'snowflake_materialized_view_refresh_history') }}\n\n), infra_stg__snowflake_materialized_view_refresh_history AS (\n\n SELECT \n\t\tstart_time,\n\t\tend_time,\n\t\tcredits_used,\n\t\ttable_id,\n\t\ttable_name,\n\t\tschema_id,\n\t\tschema_name,\n\t\tdatabase_id,\n\t\tdatabase_name,\n\t\taccount\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_materialized_view_refresh_history", "language": "sql", "refs": [], "sources": [["infra__costpo", "snowflake_materialized_view_refresh_history"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.snowflake_materialized_view_refresh_history"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM costpo.snowflake_materialized_view_refresh_history\n\n), infra_stg__snowflake_materialized_view_refresh_history AS (\n\n SELECT \n\t\tstart_time,\n\t\tend_time,\n\t\tcredits_used,\n\t\ttable_id,\n\t\ttable_name,\n\t\tschema_id,\n\t\tschema_name,\n\t\tdatabase_id,\n\t\tdatabase_name,\n\t\taccount\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_materialized_view_refresh_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__snowflake_queries_statistics": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__snowflake_queries_statistics", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.sql", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.sql", "unique_id": "model.yoda.infra_stg__snowflake_queries_statistics", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__snowflake_queries_statistics", "infra_stg__snowflake_queries_statistics"], "alias": "infra_stg__snowflake_queries_statistics", "checksum": {"name": "sha256", "checksum": "765fb1ed7660dcae953a4c3498a3ab31a84383f5da27c435d8ebb4b5656e961a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"start_time": {"name": "start_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "warehouse_name": {"name": "warehouse_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "query_type": {"name": "query_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "warehouse_size": {"name": "warehouse_size", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "EXECUTION_STATUS": {"name": "EXECUTION_STATUS", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_queries": {"name": "total_queries", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "min_cluster_cnt": {"name": "min_cluster_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "max_cluster_cnt": {"name": "max_cluster_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "total_elapsed_p25": {"name": "total_elapsed_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_p50": {"name": "total_elapsed_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_p75": {"name": "total_elapsed_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_p95": {"name": "total_elapsed_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_avg": {"name": "total_elapsed_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed": {"name": "total_elapsed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p25": {"name": "compilation_time_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p50": {"name": "compilation_time_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p75": {"name": "compilation_time_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p95": {"name": "compilation_time_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_avg": {"name": "compilation_time_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time": {"name": "compilation_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p25": {"name": "execution_time_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p50": {"name": "execution_time_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p75": {"name": "execution_time_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p95": {"name": "execution_time_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_avg": {"name": "execution_time_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time": {"name": "execution_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p25": {"name": "queue_time_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p50": {"name": "queue_time_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p75": {"name": "queue_time_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p95": {"name": "queue_time_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_avg": {"name": "queue_time_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time": {"name": "queue_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p25": {"name": "blocked_time_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p50": {"name": "blocked_time_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p75": {"name": "blocked_time_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p95": {"name": "blocked_time_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_avg": {"name": "blocked_time_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time": {"name": "blocked_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "spilled_to_local_cnt": {"name": "spilled_to_local_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "spilled_to_remote_cnt": {"name": "spilled_to_remote_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "scanned_from_cache_p25": {"name": "scanned_from_cache_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_p50": {"name": "scanned_from_cache_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_p75": {"name": "scanned_from_cache_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_p95": {"name": "scanned_from_cache_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_avg": {"name": "scanned_from_cache_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache": {"name": "scanned_from_cache", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p25": {"name": "inbound_data_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p50": {"name": "inbound_data_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p75": {"name": "inbound_data_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p95": {"name": "inbound_data_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_avg": {"name": "inbound_data_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data": {"name": "inbound_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p25": {"name": "outbound_data_p25", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p50": {"name": "outbound_data_p50", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p75": {"name": "outbound_data_p75", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p95": {"name": "outbound_data_p95", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_avg": {"name": "outbound_data_avg", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data": {"name": "outbound_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queries_partition_proning_cnt": {"name": "queries_partition_proning_cnt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082672.0094857, "relation_name": "dev_dkruh1.infra_stg__snowflake_queries_statistics", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'snowflake_queries_statistics') }}\n\n), infra_stg__snowflake_queries_statistics AS (\n\n SELECT \n\t\tstart_time,\n\t\twarehouse_name,\n\t\tquery_type,\n\t\tuser_name,\n\t\twarehouse_size,\n\t\tEXECUTION_STATUS,\n\t\ttotal_queries,\n\t\tmin_cluster_cnt,\n\t\tmax_cluster_cnt,\n\t\ttotal_elapsed_p25,\n\t\ttotal_elapsed_p50,\n\t\ttotal_elapsed_p75,\n\t\ttotal_elapsed_p95,\n\t\ttotal_elapsed_avg,\n\t\ttotal_elapsed,\n\t\tcompilation_time_p25,\n\t\tcompilation_time_p50,\n\t\tcompilation_time_p75,\n\t\tcompilation_time_p95,\n\t\tcompilation_time_avg,\n\t\tcompilation_time,\n\t\texecution_time_p25,\n\t\texecution_time_p50,\n\t\texecution_time_p75,\n\t\texecution_time_p95,\n\t\texecution_time_avg,\n\t\texecution_time,\n\t\tqueue_time_p25,\n\t\tqueue_time_p50,\n\t\tqueue_time_p75,\n\t\tqueue_time_p95,\n\t\tqueue_time_avg,\n\t\tqueue_time,\n\t\tblocked_time_p25,\n\t\tblocked_time_p50,\n\t\tblocked_time_p75,\n\t\tblocked_time_p95,\n\t\tblocked_time_avg,\n\t\tblocked_time,\n\t\tspilled_to_local_cnt,\n\t\tspilled_to_remote_cnt,\n\t\tscanned_from_cache_p25,\n\t\tscanned_from_cache_p50,\n\t\tscanned_from_cache_p75,\n\t\tscanned_from_cache_p95,\n\t\tscanned_from_cache_avg,\n\t\tscanned_from_cache,\n\t\tinbound_data_p25,\n\t\tinbound_data_p50,\n\t\tinbound_data_p75,\n\t\tinbound_data_p95,\n\t\tinbound_data_avg,\n\t\tinbound_data,\n\t\toutbound_data_p25,\n\t\toutbound_data_p50,\n\t\toutbound_data_p75,\n\t\toutbound_data_p95,\n\t\toutbound_data_avg,\n\t\toutbound_data,\n\t\tqueries_partition_proning_cnt\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_queries_statistics", "language": "sql", "refs": [], "sources": [["infra__costpo", "snowflake_queries_statistics"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.snowflake_queries_statistics"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM costpo.snowflake_queries_statistics\n\n), infra_stg__snowflake_queries_statistics AS (\n\n SELECT \n\t\tstart_time,\n\t\twarehouse_name,\n\t\tquery_type,\n\t\tuser_name,\n\t\twarehouse_size,\n\t\tEXECUTION_STATUS,\n\t\ttotal_queries,\n\t\tmin_cluster_cnt,\n\t\tmax_cluster_cnt,\n\t\ttotal_elapsed_p25,\n\t\ttotal_elapsed_p50,\n\t\ttotal_elapsed_p75,\n\t\ttotal_elapsed_p95,\n\t\ttotal_elapsed_avg,\n\t\ttotal_elapsed,\n\t\tcompilation_time_p25,\n\t\tcompilation_time_p50,\n\t\tcompilation_time_p75,\n\t\tcompilation_time_p95,\n\t\tcompilation_time_avg,\n\t\tcompilation_time,\n\t\texecution_time_p25,\n\t\texecution_time_p50,\n\t\texecution_time_p75,\n\t\texecution_time_p95,\n\t\texecution_time_avg,\n\t\texecution_time,\n\t\tqueue_time_p25,\n\t\tqueue_time_p50,\n\t\tqueue_time_p75,\n\t\tqueue_time_p95,\n\t\tqueue_time_avg,\n\t\tqueue_time,\n\t\tblocked_time_p25,\n\t\tblocked_time_p50,\n\t\tblocked_time_p75,\n\t\tblocked_time_p95,\n\t\tblocked_time_avg,\n\t\tblocked_time,\n\t\tspilled_to_local_cnt,\n\t\tspilled_to_remote_cnt,\n\t\tscanned_from_cache_p25,\n\t\tscanned_from_cache_p50,\n\t\tscanned_from_cache_p75,\n\t\tscanned_from_cache_p95,\n\t\tscanned_from_cache_avg,\n\t\tscanned_from_cache,\n\t\tinbound_data_p25,\n\t\tinbound_data_p50,\n\t\tinbound_data_p75,\n\t\tinbound_data_p95,\n\t\tinbound_data_avg,\n\t\tinbound_data,\n\t\toutbound_data_p25,\n\t\toutbound_data_p50,\n\t\toutbound_data_p75,\n\t\toutbound_data_p95,\n\t\toutbound_data_avg,\n\t\toutbound_data,\n\t\tqueries_partition_proning_cnt\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_queries_statistics", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__snowflake_tag_references": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__snowflake_tag_references", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.sql", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.sql", "unique_id": "model.yoda.infra_stg__snowflake_tag_references", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__snowflake_tag_references", "infra_stg__snowflake_tag_references"], "alias": "infra_stg__snowflake_tag_references", "checksum": {"name": "sha256", "checksum": "b55bf7df9dba69455cd9769ba47785aa0c60596b33654dda14233b05fea9b4df"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"column_id": {"name": "column_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "column_name": {"name": "column_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_database": {"name": "object_database", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_deleted": {"name": "object_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "object_id": {"name": "object_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "object_name": {"name": "object_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_schema": {"name": "object_schema", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tag_database": {"name": "tag_database", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tag_id": {"name": "tag_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tag_name": {"name": "tag_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tag_schema": {"name": "tag_schema", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tag_value": {"name": "tag_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082672.0277176, "relation_name": "dev_dkruh1.infra_stg__snowflake_tag_references", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'snowflake_tag_references') }}\n\n), infra_stg__snowflake_tag_references AS (\n\n SELECT \n\t\tcolumn_id,\n\t\tcolumn_name,\n\t\tdomain,\n\t\tobject_database,\n\t\tobject_deleted,\n\t\tobject_id,\n\t\tobject_name,\n\t\tobject_schema,\n\t\ttag_database,\n\t\ttag_id,\n\t\ttag_name,\n\t\ttag_schema,\n\t\ttag_value\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_tag_references", "language": "sql", "refs": [], "sources": [["infra__costpo", "snowflake_tag_references"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.snowflake_tag_references"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM costpo.snowflake_tag_references\n\n), infra_stg__snowflake_tag_references AS (\n\n SELECT \n\t\tcolumn_id,\n\t\tcolumn_name,\n\t\tdomain,\n\t\tobject_database,\n\t\tobject_deleted,\n\t\tobject_id,\n\t\tobject_name,\n\t\tobject_schema,\n\t\ttag_database,\n\t\ttag_id,\n\t\ttag_name,\n\t\ttag_schema,\n\t\ttag_value\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_tag_references", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__snowflake_warehouse_events": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__snowflake_warehouse_events", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.sql", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.sql", "unique_id": "model.yoda.infra_stg__snowflake_warehouse_events", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__snowflake_warehouse_events", "infra_stg__snowflake_warehouse_events"], "alias": "infra_stg__snowflake_warehouse_events", "checksum": {"name": "sha256", "checksum": "a6df9fd6371abc6bbf19bdc11fbebf4a98297aaa9837ece29ff7c58d1d466343"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "warehouse_name": {"name": "warehouse_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cluster_number": {"name": "cluster_number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_state": {"name": "event_state", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082672.0406303, "relation_name": "dev_dkruh1.infra_stg__snowflake_warehouse_events", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'snowflake_warehouse_events') }}\n\n), infra_stg__snowflake_warehouse_events AS (\n\n SELECT \n\t\ttimestamp,\n\t\twarehouse_name,\n\t\tcluster_number,\n\t\tevent_name,\n\t\tevent_state\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_warehouse_events", "language": "sql", "refs": [], "sources": [["infra__costpo", "snowflake_warehouse_events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.snowflake_warehouse_events"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM costpo.snowflake_warehouse_events\n\n), infra_stg__snowflake_warehouse_events AS (\n\n SELECT \n\t\ttimestamp,\n\t\twarehouse_name,\n\t\tcluster_number,\n\t\tevent_name,\n\t\tevent_state\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_warehouse_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__snowflake_warehouse_metering_history": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__snowflake_warehouse_metering_history", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.sql", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.sql", "unique_id": "model.yoda.infra_stg__snowflake_warehouse_metering_history", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__snowflake_warehouse_metering_history", "infra_stg__snowflake_warehouse_metering_history"], "alias": "infra_stg__snowflake_warehouse_metering_history", "checksum": {"name": "sha256", "checksum": "6258cb8ba4e32190d1583912cb4e8fa90da88fd30c2c5a477a2bf81d9d41d7fe"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"start_time": {"name": "start_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "end_time": {"name": "end_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "warehouse_id": {"name": "warehouse_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "warehouse_name": {"name": "warehouse_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "credits_used": {"name": "credits_used", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits_used_compute": {"name": "credits_used_compute", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits_used_cloud_services": {"name": "credits_used_cloud_services", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account": {"name": "account", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082672.0562396, "relation_name": "dev_dkruh1.infra_stg__snowflake_warehouse_metering_history", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'snowflake_warehouse_metering_history') }}\n\n), infra_stg__snowflake_warehouse_metering_history AS (\n\n SELECT \n\t\tstart_time,\n\t\tend_time,\n\t\twarehouse_id,\n\t\twarehouse_name,\n\t\tcredits_used,\n\t\tcredits_used_compute,\n\t\tcredits_used_cloud_services,\n\t\taccount\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_warehouse_metering_history", "language": "sql", "refs": [], "sources": [["infra__costpo", "snowflake_warehouse_metering_history"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.snowflake_warehouse_metering_history"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM costpo.snowflake_warehouse_metering_history\n\n), infra_stg__snowflake_warehouse_metering_history AS (\n\n SELECT \n\t\tstart_time,\n\t\tend_time,\n\t\twarehouse_id,\n\t\twarehouse_name,\n\t\tcredits_used,\n\t\tcredits_used_compute,\n\t\tcredits_used_cloud_services,\n\t\taccount\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__snowflake_warehouse_metering_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__sub_departments_monthly_budget": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__sub_departments_monthly_budget", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.sql", "original_file_path": "models/infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.sql", "unique_id": "model.yoda.infra_stg__sub_departments_monthly_budget", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__sub_departments_monthly_budget", "infra_stg__sub_departments_monthly_budget"], "alias": "infra_stg__sub_departments_monthly_budget", "checksum": {"name": "sha256", "checksum": "90effadc5eb506fa217839944e0f07d481814ff91d6be3d98bd218545779f919"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"department": {"name": "department", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "department_disply_name": {"name": "department_disply_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "change_date": {"name": "change_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "budget": {"name": "budget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082672.0693924, "relation_name": "dev_dkruh1.infra_stg__sub_departments_monthly_budget", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'sub_departments_monthly_budget') }}\n\n), infra_stg__sub_departments_monthly_budget AS (\n\n SELECT \n\t\tdepartment,\n\t\tdepartment_disply_name,\n\t\tchange_date,\n\t\tbudget\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__sub_departments_monthly_budget", "language": "sql", "refs": [], "sources": [["infra__costpo", "sub_departments_monthly_budget"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.sub_departments_monthly_budget"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM costpo.sub_departments_monthly_budget\n\n), infra_stg__sub_departments_monthly_budget AS (\n\n SELECT \n\t\tdepartment,\n\t\tdepartment_disply_name,\n\t\tchange_date,\n\t\tbudget\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__sub_departments_monthly_budget", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__team_budget": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__team_budget", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.sql", "original_file_path": "models/infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.sql", "unique_id": "model.yoda.infra_stg__team_budget", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__team_budget", "infra_stg__team_budget"], "alias": "infra_stg__team_budget", "checksum": {"name": "sha256", "checksum": "caed48de0befd30f0d6e2491cd713ca5fc930a6cf657e092c5bf9ee429fdce07"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_line": {"name": "product_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group": {"name": "group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "budget": {"name": "budget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082672.0819666, "relation_name": "dev_dkruh1.infra_stg__team_budget", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__costpo', 'team_budget') }}\n\n), infra_stg__team_budget AS (\n\n SELECT \n\t\tupdated_at,\n\t\tproduct_line,\n\t\tgroup,\n\t\tteam,\n\t\tbudget\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__team_budget", "language": "sql", "refs": [], "sources": [["infra__costpo", "team_budget"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__costpo.team_budget"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM costpo.team_budget\n\n), infra_stg__team_budget AS (\n\n SELECT \n\t\tupdated_at,\n\t\tproduct_line,\n\t\tgroup,\n\t\tteam,\n\t\tbudget\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__team_budget", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__teams": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__teams", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__teams/infra_stg__teams.sql", "original_file_path": "models/infra/staging/base/infra_stg__teams/infra_stg__teams.sql", "unique_id": "model.yoda.infra_stg__teams", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__teams", "infra_stg__teams"], "alias": "infra_stg__teams", "checksum": {"name": "sha256", "checksum": "c6d37de68d3f5a3893d0fd8dd582f1a490b40eceba3bda73211a28ddd8b39390"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "links": {"name": "links", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__teams/infra_stg__teams.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "aliebstein@yotpo.com", "alert_channels": ["pandas-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082672.0939364, "relation_name": "dev_dkruh1.infra_stg__teams", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__opsgenie', 'teams') }}\n\n), infra_stg__teams AS (\n\n SELECT \n\t\tid,\n\t\tname,\n\t\tdescription,\n\t\tFROM_JSON(links, 'struct') AS links\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__teams", "language": "sql", "refs": [], "sources": [["infra__opsgenie", "teams"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__opsgenie.teams"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__teams/infra_stg__teams.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM opsgenie.teams\n\n), infra_stg__teams AS (\n\n SELECT \n\t\tid,\n\t\tname,\n\t\tdescription,\n\t\tFROM_JSON(links, 'struct') AS links\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__teams", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__upsolver_outputs": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__upsolver_outputs", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.sql", "original_file_path": "models/infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.sql", "unique_id": "model.yoda.infra_stg__upsolver_outputs", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__upsolver_outputs", "infra_stg__upsolver_outputs"], "alias": "infra_stg__upsolver_outputs", "checksum": {"name": "sha256", "checksum": "aa048beda9fc48183246a3e14d460af1477ad3237e31900223d74ff3c89f489c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "redpandas", "created_by": "michal.fijolek@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Table Description", "columns": {"ts": {"name": "ts", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "databaseName": {"name": "databaseName", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tableName": {"name": "tableName", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "workspaceName": {"name": "workspaceName", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "redpandas", "created_by": "michal.fijolek@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "redpandas", "created_by": "michal.fijolek@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082672.1085048, "relation_name": "dev_dkruh1.infra_stg__upsolver_outputs", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__infra_metrics', 'upsolver_raw_output') }}\n\n), infra_stg__upsolver_outputs AS (\n\n SELECT \n ts,\n databaseName,\n name,\n tableName,\n workspaceName\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__upsolver_outputs", "language": "sql", "refs": [], "sources": [["infra__infra_metrics", "upsolver_raw_output"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__infra_metrics.upsolver_raw_output"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM infra_metrics.upsolver_raw_output\n\n), infra_stg__upsolver_outputs AS (\n\n SELECT \n ts,\n databaseName,\n name,\n tableName,\n workspaceName\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__upsolver_outputs", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__workflow_runs": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__workflow_runs", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.sql", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.sql", "unique_id": "model.yoda.infra_stg__workflow_runs", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__workflow_runs", "infra_stg__workflow_runs"], "alias": "infra_stg__workflow_runs", "checksum": {"name": "sha256", "checksum": "2beda9b816d7a303c8fcfa1831197b0f0b62f899041de506fb3bb851da12b58b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Yotpo github repositories worfklow actions runs", "columns": {"repo_name": {"name": "repo_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "node_id": {"name": "node_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "check_suite_id": {"name": "check_suite_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "check_suite_node_id": {"name": "check_suite_node_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "head_branch": {"name": "head_branch", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "head_sha": {"name": "head_sha", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_number": {"name": "run_number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event": {"name": "event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "conclusion": {"name": "conclusion", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "workflow_id": {"name": "workflow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_attempt": {"name": "run_attempt", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "run_started_at": {"name": "run_started_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082672.1299443, "relation_name": "dev_dkruh1.infra_stg__workflow_runs", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__github_info', 'workflow_runs') }}\n\n), infra_stg__workflow_runs AS (\n\n SELECT \n\t\trepo_name,\n\t\tid,\n\t\tname,\n\t\tnode_id,\n\t\tcheck_suite_id,\n\t\tcheck_suite_node_id,\n\t\thead_branch,\n\t\thead_sha,\n\t\trun_number,\n\t\tevent,\n\t\tstatus,\n\t\tconclusion,\n\t\tworkflow_id,\n\t\turl,\n\t\trun_attempt,\n\t\trun_started_at,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__workflow_runs", "language": "sql", "refs": [], "sources": [["infra__github_info", "workflow_runs"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__github_info.workflow_runs"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM github_info.workflow_runs\n\n), infra_stg__workflow_runs AS (\n\n SELECT \n\t\trepo_name,\n\t\tid,\n\t\tname,\n\t\tnode_id,\n\t\tcheck_suite_id,\n\t\tcheck_suite_node_id,\n\t\thead_branch,\n\t\thead_sha,\n\t\trun_number,\n\t\tevent,\n\t\tstatus,\n\t\tconclusion,\n\t\tworkflow_id,\n\t\turl,\n\t\trun_attempt,\n\t\trun_started_at,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__workflow_runs", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__workflows": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__workflows", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflows/infra_stg__workflows.sql", "original_file_path": "models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.sql", "unique_id": "model.yoda.infra_stg__workflows", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__workflows", "infra_stg__workflows"], "alias": "infra_stg__workflows", "checksum": {"name": "sha256", "checksum": "94ddc2c080f91d4c3ef002c7d1d0d0fb8f3a6a0e39b9e3a88bdc29c60d2a77fc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "Yotpo github actions metadata as extracted from https://docs.github.com/en/rest/actions/workflows?apiVersion=2022-11-28#list-repository-workflows", "columns": {"repo_name": {"name": "repo_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "node_id": {"name": "node_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082672.146475, "relation_name": "dev_dkruh1.infra_stg__workflows", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('infra__github_info', 'workflows') }}\n\n), infra_stg__workflows AS (\n\n SELECT \n\t\trepo_name,\n\t\tid,\n\t\tnode_id,\n\t\tname,\n\t\tpath,\n\t\tstate,\n\t\turl,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__workflows", "language": "sql", "refs": [], "sources": [["infra__github_info", "workflows"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.infra__github_info.workflows"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM github_info.workflows\n\n), infra_stg__workflows AS (\n\n SELECT \n\t\trepo_name,\n\t\tid,\n\t\tnode_id,\n\t\tname,\n\t\tpath,\n\t\tstate,\n\t\turl,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM infra_stg__workflows", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__aws_s3_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__aws_s3_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.sql", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.sql", "unique_id": "model.yoda.infra_stg__aws_s3_cost", "fqn": ["yoda", "infra", "staging", "marts_compatible", "infra_stg__aws_s3_cost", "infra_stg__aws_s3_cost"], "alias": "infra_stg__aws_s3_cost", "checksum": {"name": "sha256", "checksum": "cb8fdfe1fc42438afec592e879c890d056401e0107437e2cb57039af4abb943a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "infra_stg__aws_s3_cost", "columns": {"billing_period": {"name": "billing_period", "description": "Billing period date monthly", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "Billing date for a specific S3 service (day granularity)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bucket": {"name": "bucket", "description": "Bucket name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "Data Transfer, API Request, Storage, Fee", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_type": {"name": "line_item_usage_type", "description": "Out/In-Bytes, Requests-Tier,TimedStorage, StorageAnalytics, DataTransfer, Inventory-ObjectsListed, Retrieval, EarlyDelete-ByteHrs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082672.1655936, "relation_name": "dev_dkruh1.infra_stg__aws_s3_cost", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\nWITH aws_s3_cost AS (\n\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n line_item_usage_account_id As bill_payer_account_id,\n CASE \n WHEN line_item_usage_account_id = '402837048690' THEN 'Yotpo Ltd'\n WHEN line_item_usage_account_id = '140980321741' THEN 'Omri Cohen (Support+RI+MP)'\n WHEN line_item_usage_account_id = '368297226064' THEN 'SMSBump'\n WHEN line_item_usage_account_id = '067361735412' THEN 'AWS QA (Staging)'\n WHEN line_item_usage_account_id = '237698446327' THEN 'Yotpo IT'\n ELSE ''\n END AS account_name,\n product_line,\n CASE\n WHEN line_item_resource_id like 'us-east-1-upsolver-02dd5906-3e54-43df-a64b-701186d037d2' THEN 'us-east-1-upsolver'\n ELSE line_item_resource_id \n END AS bucket,\n product_product_family, \n line_item_usage_type, \n line_item_line_item_type,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost\n FROM \n {{ ref('infra_stg__aws_payer_billing_report_raw') }}\n WHERE \n LOWER(line_item_product_code)=\"amazons3\"\n AND bill_billing_period_start_date >= '2021-01-01 00:00:00'\n GROUP BY \n 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12\n)\nSELECT * \nFROM aws_s3_cost", "language": "sql", "refs": [{"name": "infra_stg__aws_payer_billing_report_raw", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__aws_payer_billing_report_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\nWITH aws_s3_cost AS (\n\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n line_item_usage_account_id As bill_payer_account_id,\n CASE \n WHEN line_item_usage_account_id = '402837048690' THEN 'Yotpo Ltd'\n WHEN line_item_usage_account_id = '140980321741' THEN 'Omri Cohen (Support+RI+MP)'\n WHEN line_item_usage_account_id = '368297226064' THEN 'SMSBump'\n WHEN line_item_usage_account_id = '067361735412' THEN 'AWS QA (Staging)'\n WHEN line_item_usage_account_id = '237698446327' THEN 'Yotpo IT'\n ELSE ''\n END AS account_name,\n product_line,\n CASE\n WHEN line_item_resource_id like 'us-east-1-upsolver-02dd5906-3e54-43df-a64b-701186d037d2' THEN 'us-east-1-upsolver'\n ELSE line_item_resource_id \n END AS bucket,\n product_product_family, \n line_item_usage_type, \n line_item_line_item_type,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost\n FROM \n dev_dkruh1.infra_stg__aws_payer_billing_report_raw\n WHERE \n LOWER(line_item_product_code)=\"amazons3\"\n AND bill_billing_period_start_date >= '2021-01-01 00:00:00'\n GROUP BY \n 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12\n)\nSELECT * \nFROM aws_s3_cost", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__aws_s3_inventory_data": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__aws_s3_inventory_data", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.sql", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.sql", "unique_id": "model.yoda.infra_stg__aws_s3_inventory_data", "fqn": ["yoda", "infra", "staging", "marts_compatible", "infra_stg__aws_s3_inventory_data", "infra_stg__aws_s3_inventory_data"], "alias": "infra_stg__aws_s3_inventory_data", "checksum": {"name": "sha256", "checksum": "a576714e274e85587f9a2920b01f99723f2452c907c6cafd014ba9e9ed91c391"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "S3 Inventory table set up [here|https://github.com/YotpoLtd/costpo/blob/master/dags/dags/s3_cost.py] and scheduled [here|https://airflow-data-infra.data-group.yotpo.xyz/graph?dag_id=s3_cost]", "columns": {"bucket": {"name": "bucket", "description": "Bucket name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "key": {"name": "key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "size": {"name": "size", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_modified_date": {"name": "last_modified_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "e_tag": {"name": "e_tag", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storage_class": {"name": "storage_class", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_multipart_uploaded": {"name": "is_multipart_uploaded", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "replication_status": {"name": "replication_status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "encryption_status": {"name": "encryption_status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_lock_retain_until_date": {"name": "object_lock_retain_until_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "object_lock_mode": {"name": "object_lock_mode", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_lock_legal_hold_status": {"name": "object_lock_legal_hold_status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "intelligent_tiering_access_tier": {"name": "intelligent_tiering_access_tier", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "year": {"name": "year", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "Day of the month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prefix1": {"name": "prefix1", "description": "Object name split by Prefix (/) - first level (root)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prefix2": {"name": "prefix2", "description": "Object name split by Prefix (/) - second level", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082672.1890562, "relation_name": "dev_dkruh1.infra_stg__aws_s3_inventory_data", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH s3_inventory_costs AS (\n\n SELECT \n bucket,\n key,\n size,\n last_modified_date,\n e_tag,\n storage_class,\n is_multipart_uploaded,\n replication_status,\n encryption_status,\n object_lock_retain_until_date,\n object_lock_mode,\n object_lock_legal_hold_status,\n intelligent_tiering_access_tier,\n year,\n month,\n day,\n product_line,\n regexp_extract(key,'^((.*?\\\\/)\\{1\\})', 1) AS prefix1,\n regexp_extract(key,'^((.*?\\\\/)\\{2\\})', 1) AS prefix2\n FROM {{ ref('infra_stg__s3_inventory_raw') }}\n\n)\n\nSELECT * \nFROM s3_inventory_costs", "language": "sql", "refs": [{"name": "infra_stg__s3_inventory_raw", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__s3_inventory_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH s3_inventory_costs AS (\n\n SELECT \n bucket,\n key,\n size,\n last_modified_date,\n e_tag,\n storage_class,\n is_multipart_uploaded,\n replication_status,\n encryption_status,\n object_lock_retain_until_date,\n object_lock_mode,\n object_lock_legal_hold_status,\n intelligent_tiering_access_tier,\n year,\n month,\n day,\n product_line,\n regexp_extract(key,'^((.*?\\\\/)\\{1\\})', 1) AS prefix1,\n regexp_extract(key,'^((.*?\\\\/)\\{2\\})', 1) AS prefix2\n FROM dev_dkruh1.infra_stg__s3_inventory_raw\n\n)\n\nSELECT * \nFROM s3_inventory_costs", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__ec2_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__ec2_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.sql", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.sql", "unique_id": "model.yoda.infra_stg__ec2_cost", "fqn": ["yoda", "infra", "staging", "marts_compatible", "infra_stg__ec2_cost", "infra_stg__ec2_cost"], "alias": "infra_stg__ec2_cost", "checksum": {"name": "sha256", "checksum": "5fe3558fe116a7a415133bc7ea4c74063ef59c9e2d80a3362e51c1c415fe33b2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Table Description", "columns": {"billing_period": {"name": "billing_period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_start_date": {"name": "bill_start_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line": {"name": "product_line", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type": {"name": "product_instance_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_component": {"name": "resource_tags_user_sub_component", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_component": {"name": "resource_tags_user_component", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_environment": {"name": "resource_tags_user_environment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_managed_by_cast_ai": {"name": "is_managed_by_cast_ai", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ags": {"name": "ags", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unblended_cost": {"name": "unblended_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amortized_cost": {"name": "amortized_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082672.2120721, "relation_name": "dev_dkruh1.infra_stg__ec2_cost", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n line_item_usage_account_id as bill_payer_account_id,\n {{ resolve_account('line_item_usage_account_id') }} AS account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n is_managed_by_cast_ai,\n COALESCE(resource_tags_user_name,resource_tags_user_asg) AS ags,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost\n FROM \n {{ ref('infra_stg__aws_payer_billing_report_raw') }}\n WHERE \n LOWER(line_item_product_code)=\"amazonec2\"\n GROUP BY \n bill_billing_period_start_date, \n line_item_usage_start_date, \n line_item_usage_account_id,\n account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n ags,\n is_managed_by_cast_ai\n\n)\n\nSELECT * \nFROM source", "language": "sql", "refs": [{"name": "infra_stg__aws_payer_billing_report_raw", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.resolve_account", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__aws_payer_billing_report_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n SELECT \n bill_billing_period_start_date AS billing_period, \n line_item_usage_start_date As bill_start_date,\n line_item_usage_account_id as bill_payer_account_id,\n \nCASE \n WHEN line_item_usage_account_id = '402837048690' THEN 'Yotpo Ltd'\n WHEN line_item_usage_account_id = '140980321741' THEN 'Omri Cohen (Support+RI+MP)'\n WHEN line_item_usage_account_id = '368297226064' THEN 'SMSBump'\n WHEN line_item_usage_account_id = '067361735412' THEN 'AWS QA (Staging)'\n WHEN line_item_usage_account_id = '237698446327' THEN 'Yotpo IT'\n ELSE ''\nEND\n AS account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n is_managed_by_cast_ai,\n COALESCE(resource_tags_user_name,resource_tags_user_asg) AS ags,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0 \n ELSE line_item_unblended_cost \n END) AS unblended_cost,\n SUM(CASE\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0 \n ELSE line_item_unblended_cost \n END) AS amortized_cost\n FROM \n dev_dkruh1.infra_stg__aws_payer_billing_report_raw\n WHERE \n LOWER(line_item_product_code)=\"amazonec2\"\n GROUP BY \n bill_billing_period_start_date, \n line_item_usage_start_date, \n line_item_usage_account_id,\n account_name,\n product_line, \n line_item_line_item_type,\n product_product_family,\n product_region, \n pricing_term,\n product_instance_type,\n resource_tags_user_sub_component,\n resource_tags_user_component,\n resource_tags_user_environment,\n resource_tags_user_group,\n resource_tags_user_team,\n resource_tags_user_feature,\n ags,\n is_managed_by_cast_ai\n\n)\n\nSELECT * \nFROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.infra_stg__kubernetes_cost": {"database": null, "schema": "dev_dkruh1", "name": "infra_stg__kubernetes_cost", "resource_type": "model", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.sql", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.sql", "unique_id": "model.yoda.infra_stg__kubernetes_cost", "fqn": ["yoda", "infra", "staging", "marts_compatible", "infra_stg__kubernetes_cost", "infra_stg__kubernetes_cost"], "alias": "infra_stg__kubernetes_cost", "checksum": {"name": "sha256", "checksum": "ba5ce94931fa0a6de7ff10ba823d0cd66882554e1f3b7cef291752dd7003233a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["infra", "infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["infra"], "description": "TODO: Update Table Description", "columns": {"ec2_id": {"name": "ec2_id", "description": "EC2 instance id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "service": {"name": "service", "description": "Service running by the pod (e.g. spark/airflow/ect.)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productline": {"name": "productline", "description": "Product line that is tagged to the resource. Each service gathers it from a different label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_service": {"name": "sub_service", "description": "Sub service running by the pod (e.g. spark executor/worker)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "release_name": {"name": "release_name", "description": "Name of a feature which are executed by a service, for instance spark job name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cluster": {"name": "cluster", "description": "Cluster", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "namespace": {"name": "namespace", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_id": {"name": "run_id", "description": "Pod name (or a dedicated service run id, for instance, spark job id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cpucost": {"name": "cpucost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvcost": {"name": "pvcost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkcost": {"name": "networkcost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramcost": {"name": "ramcost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalcost": {"name": "totalcost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalefficiency": {"name": "totalefficiency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuefficiency": {"name": "cpuefficiency", "description": "CPU efficiency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucorehours": {"name": "cpucorehours", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucorerequestaverage": {"name": "cpucorerequestaverage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucoreusageaverage": {"name": "cpucoreusageaverage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucores": {"name": "cpucores", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCoreUsageMax": {"name": "cpuCoreUsageMax", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networktransferbytes": {"name": "networktransferbytes", "description": "Network transfer bytes", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkreceivebytes": {"name": "networkreceivebytes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramefficiency": {"name": "ramefficiency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramByteUsageMax": {"name": "ramByteUsageMax", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rambytehours": {"name": "rambytehours", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyteusageaverage": {"name": "rambyteusageaverage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyterequestaverage": {"name": "rambyterequestaverage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambytes": {"name": "rambytes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "minutes": {"name": "minutes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "year": {"name": "year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "billing_day": {"name": "billing_day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group": {"name": "group", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "system": {"name": "system", "description": "System", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subsystem": {"name": "subsystem", "description": "Sub System", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "component": {"name": "component", "description": "Component", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feature": {"name": "feature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_cast": {"name": "is_cast", "description": "Indicates if the pod is managed by castai", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "product_instance_type": {"name": "product_instance_type", "description": "Product instance type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "Product region", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "Pricing term - On demand / Spot", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_product_line": {"name": "resource_tags_user_product_line", "description": "Product line , EC2 tag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory": {"name": "product_memory", "description": "Product memory", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_network_performance": {"name": "product_network_performance", "description": "Product network performance", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage": {"name": "product_storage", "description": "Product storage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_vcpu": {"name": "product_vcpu", "description": "Product virtual CPU", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "availability_zone": {"name": "availability_zone", "description": "Availability zone", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "compute_cost": {"name": "compute_cost", "description": "Compute cost", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "data_transfer_cost": {"name": "data_transfer_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["infra"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082672.2550855, "relation_name": "dev_dkruh1.infra_stg__kubernetes_cost", "raw_code": "WITH kubcost_with_service AS (\n SELECT \n CASE\n WHEN properties.container LIKE 'spark-%' OR properties.labels.spark_role IS NOT NULL OR properties.container = 'executor' THEN 'spark' \n WHEN properties.labels.app_kubernetes_io_name = 'airflow' THEN 'airflow' \n WHEN properties.container LIKE 'zeppelin%' THEN 'zeppelin' \n WHEN properties.container LIKE 'flink-%' OR properties.labels.app = 'flink' OR properties.labels.app LIKE '%flink-%' THEN 'flink' \n WHEN properties.container LIKE 'cdc-%' OR properties.container LIKE '%data-group-connect' THEN 'cdc' \n WHEN properties.container LIKE 'hive%' THEN 'hive' \n WHEN properties.container LIKE 'okera%' THEN 'okera' \n WHEN properties.container LIKE 'lakefs%' THEN 'lakefs' \n WHEN properties.labels.app_kubernetes_io_instance LIKE '%-nginx%' THEN 'nginx' \n WHEN properties.container LIKE '%mirrormaker2%' THEN 'mirrormaker' \n ELSE 'untagged'\n END AS service,\n *\n FROM\n {{ ref('infra_stg__kubecost_delta') }}\n WHERE\n CONCAT(year, LPAD(month, 2, '0'), LPAD(day, 2, '0')) > '2022-09'\n), kubcost_with_service_and_productline AS (\n SELECT \n service,\n CASE\n WHEN service = 'airflow' AND properties.labels.app_kubernetes_io_instance is NOT NULL THEN replace(properties.labels.app_kubernetes_io_instance, \"airflow-\",\"\")\n WHEN service = 'lakefs' THEN 'data'\n WHEN service = 'mirrormaker' THEN replace(replace(properties.container,\"mm2-\",\"\"),\"-data-group-mirrormaker2\",\"\")\n ELSE COALESCE(properties.labels.productline, properties.labels.product_line, 'untagged')\n END AS productline,\n CASE\n WHEN service = 'spark' AND properties.container = 'executor' THEN 'executor'\n WHEN service = 'spark' THEN COALESCE(properties.labels.spark_role, 'untagged')\n WHEN service = 'airflow' AND properties.labels.app_kubernetes_io_component is not null THEN properties.labels.app_kubernetes_io_component\n WHEN service IN ('flink', 'okera', 'lakefs', 'mirrormaker', 'nginx') THEN COALESCE(properties.container, 'untagged')\n WHEN service = 'cdc' THEN COALESCE(properties.labels.app_kubernetes_io_name, 'untagged')\n WHEN service IN ('zeppelin', 'hive') THEN COALESCE(properties.controller, 'untagged')\n ELSE COALESCE(properties.container, 'untagged')\n END AS sub_service,\n CASE\n WHEN service = 'spark' THEN regexp_replace(regexp_replace(regexp_replace(properties.pod,\"airflow-\\\\d+-[^-]+-\",\"\"),\"(-driver|-[^-]+-exec-\\\\d+)$\",\"\"),\"-\\\\d+$\",\"\")\n WHEN service IN ('flink', 'zeppelin', 'hive', 'okera', 'lakefs', 'mirrormaker', 'nginx') THEN COALESCE(properties.labels.app, 'untagged') \n WHEN service = 'cdc' THEN COALESCE(properties.labels.release, properties.container, 'untagged')\n WHEN service = 'airflow' THEN COALESCE(properties.labels.task_id, properties.labels.app_kubernetes_io_component ,'untagged')\n ELSE COALESCE(properties.labels.app, 'untagged')\n END AS release_name,\n COALESCE(properties.labels.spark_app_selector, properties.labels.pod_template_hash) AS run_id,\n properties.cluster AS cluster,\n properties.namespace AS namespace,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency, \n cpucorehours, \n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores, \n rawallocationonly.cpuCoreUsageMax as cpuCoreUsageMax, \n networktransferbytes,\n networkreceivebytes,\n ramefficiency, \n rawallocationonly.ramByteUsageMax as ramByteUsageMax, \n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n properties.providerID as ec2_id,\n name, \n LOWER(properties.labels.group) as group,\n LOWER(properties.labels.team) as team,\n LOWER(properties.labels.system) as system,\n LOWER(properties.labels.subsystem) as subsystem,\n LOWER(properties.labels.component) as component,\n LOWER(properties.labels.feature) as feature,\n CASE WHEN LOWER(properties.labels.scaler) = 'castai' THEN true ELSE false END as is_cast\n FROM kubcost_with_service\n), normalized_kubcost (\n SELECT\n service,\n CASE \n WHEN \n\t\t\t\tLOWER(productline) in ('corgis', 'mochas', 'ds-products','data-science','corgis-fails-topics','ordersoutbox-test','packages-test')\n\t\t\tTHEN 'platform'\n WHEN \n\t\t\t\tLOWER(productline) = 'app-infra' OR\n (productline = 'untagged' AND namespace = 'infra' )\n\t\t\tTHEN 'infra'\n WHEN\n\t\t\t\tLOWER(productline) in ('yoda-e2e', 'data-group', 'data-infra', 'data-applications', 'data-applications', 'cdc', 'bi', 'bp') OR\n (productline = 'untagged' AND namespace in ('okera', 'data-group'))\n\t\t\tTHEN 'data'\n WHEN \n\t\t\t\tLOWER(productline) = 'smsbump'\n\t\t\tTHEN 'sms'\n WHEN \n\t\t\t\tLOWER(productline) = 'mm-platform-ugc-mirrormaker2'\n\t\t\tTHEN 'ugc'\n\t\t\tWHEN productline = 'untagged' AND (namespace in ('__unmounted__', 'kube-system', 'vault-secrets', 'default', 'infra') OR namespace is NULL) THEN 'infra'\n WHEN productline = '' THEN 'untagged'\n\t\t\tELSE LOWER(productline)\n\t\tEND AS productline,\n sub_service,\n release_name,\n cluster,\n namespace,\n run_id,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency, \n cpucorehours, \n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores, \n cpuCoreUsageMax, \n networktransferbytes,\n networkreceivebytes,\n ramefficiency, \n ramByteUsageMax, \n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n make_date(year,month,day) AS billing_day,\n ec2_id,\n name,\n group,\n team,\n system,\n subsystem,\n component,\n feature,\n is_cast\n FROM\n kubcost_with_service_and_productline\n),\n-- Selecting EC2 information of the instances\n ec2_instances AS (\n SELECT\n billing.line_item_resource_id as ec2_id,\n MAX(billing.product_instance_type) AS product_instance_type,\n MAX(billing.product_region) AS product_region,\n MAX(billing.pricing_term) AS pricing_term,\n MAX(billing.resource_tags_user_product_line) AS resource_tags_user_product_line,\n MAX(billing.product_memory) AS product_memory,\n MAX(billing.product_network_performance) AS product_network_performance,\n MAX(billing.product_storage) AS product_storage,\n MAX(billing.product_vcpu) AS product_vcpu,\n MAX(\n CASE\n WHEN billing.line_item_availability_zone IS NULL OR billing.line_item_availability_zone = '' THEN billing.product_availability_zone\n ELSE billing.line_item_availability_zone\n END\n ) AS availability_zone,\n SUM(CASE WHEN billing.product_product_family <> 'Compute Instance' THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0\n ELSE line_item_unblended_cost\n END) AS compute_cost,\n SUM(CASE WHEN billing.product_product_family <> 'Data Transfer' THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0\n ELSE line_item_unblended_cost\n END) AS data_transfer_cost\n FROM\n {{ ref('infra_stg__aws_payer_billing_report_raw') }} AS billing\n WHERE\n billing.line_item_product_code = 'AmazonEC2'\n AND billing.product_product_family in ('Compute Instance', 'Data Transfer')\n AND CONCAT(billing.year, LPAD(billing.month, 2, '0')) >= (\n SELECT MIN(CONCAT(year, LPAD(month, 2, '0')))\n FROM normalized_kubcost)\n AND billing.line_item_resource_id in (select distinct(ec2_id) from normalized_kubcost)\n GROUP BY billing.line_item_resource_id\n), k8s_cost_with_instances AS (\n SELECT *\n FROM normalized_kubcost\n LEFT JOIN\n (SELECT * FROM ec2_instances) AS instances\n USING(ec2_id)\n)\n \n SELECT \n *\nFROM \n k8s_cost_with_instances", "language": "sql", "refs": [{"name": "infra_stg__kubecost_delta", "package": null, "version": null}, {"name": "infra_stg__aws_payer_billing_report_raw", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra_stg__kubecost_delta", "model.yoda.infra_stg__aws_payer_billing_report_raw"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.sql", "compiled": true, "compiled_code": "WITH kubcost_with_service AS (\n SELECT \n CASE\n WHEN properties.container LIKE 'spark-%' OR properties.labels.spark_role IS NOT NULL OR properties.container = 'executor' THEN 'spark' \n WHEN properties.labels.app_kubernetes_io_name = 'airflow' THEN 'airflow' \n WHEN properties.container LIKE 'zeppelin%' THEN 'zeppelin' \n WHEN properties.container LIKE 'flink-%' OR properties.labels.app = 'flink' OR properties.labels.app LIKE '%flink-%' THEN 'flink' \n WHEN properties.container LIKE 'cdc-%' OR properties.container LIKE '%data-group-connect' THEN 'cdc' \n WHEN properties.container LIKE 'hive%' THEN 'hive' \n WHEN properties.container LIKE 'okera%' THEN 'okera' \n WHEN properties.container LIKE 'lakefs%' THEN 'lakefs' \n WHEN properties.labels.app_kubernetes_io_instance LIKE '%-nginx%' THEN 'nginx' \n WHEN properties.container LIKE '%mirrormaker2%' THEN 'mirrormaker' \n ELSE 'untagged'\n END AS service,\n *\n FROM\n dev_dkruh1.infra_stg__kubecost_delta\n WHERE\n CONCAT(year, LPAD(month, 2, '0'), LPAD(day, 2, '0')) > '2022-09'\n), kubcost_with_service_and_productline AS (\n SELECT \n service,\n CASE\n WHEN service = 'airflow' AND properties.labels.app_kubernetes_io_instance is NOT NULL THEN replace(properties.labels.app_kubernetes_io_instance, \"airflow-\",\"\")\n WHEN service = 'lakefs' THEN 'data'\n WHEN service = 'mirrormaker' THEN replace(replace(properties.container,\"mm2-\",\"\"),\"-data-group-mirrormaker2\",\"\")\n ELSE COALESCE(properties.labels.productline, properties.labels.product_line, 'untagged')\n END AS productline,\n CASE\n WHEN service = 'spark' AND properties.container = 'executor' THEN 'executor'\n WHEN service = 'spark' THEN COALESCE(properties.labels.spark_role, 'untagged')\n WHEN service = 'airflow' AND properties.labels.app_kubernetes_io_component is not null THEN properties.labels.app_kubernetes_io_component\n WHEN service IN ('flink', 'okera', 'lakefs', 'mirrormaker', 'nginx') THEN COALESCE(properties.container, 'untagged')\n WHEN service = 'cdc' THEN COALESCE(properties.labels.app_kubernetes_io_name, 'untagged')\n WHEN service IN ('zeppelin', 'hive') THEN COALESCE(properties.controller, 'untagged')\n ELSE COALESCE(properties.container, 'untagged')\n END AS sub_service,\n CASE\n WHEN service = 'spark' THEN regexp_replace(regexp_replace(regexp_replace(properties.pod,\"airflow-\\\\d+-[^-]+-\",\"\"),\"(-driver|-[^-]+-exec-\\\\d+)$\",\"\"),\"-\\\\d+$\",\"\")\n WHEN service IN ('flink', 'zeppelin', 'hive', 'okera', 'lakefs', 'mirrormaker', 'nginx') THEN COALESCE(properties.labels.app, 'untagged') \n WHEN service = 'cdc' THEN COALESCE(properties.labels.release, properties.container, 'untagged')\n WHEN service = 'airflow' THEN COALESCE(properties.labels.task_id, properties.labels.app_kubernetes_io_component ,'untagged')\n ELSE COALESCE(properties.labels.app, 'untagged')\n END AS release_name,\n COALESCE(properties.labels.spark_app_selector, properties.labels.pod_template_hash) AS run_id,\n properties.cluster AS cluster,\n properties.namespace AS namespace,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency, \n cpucorehours, \n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores, \n rawallocationonly.cpuCoreUsageMax as cpuCoreUsageMax, \n networktransferbytes,\n networkreceivebytes,\n ramefficiency, \n rawallocationonly.ramByteUsageMax as ramByteUsageMax, \n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n properties.providerID as ec2_id,\n name, \n LOWER(properties.labels.group) as group,\n LOWER(properties.labels.team) as team,\n LOWER(properties.labels.system) as system,\n LOWER(properties.labels.subsystem) as subsystem,\n LOWER(properties.labels.component) as component,\n LOWER(properties.labels.feature) as feature,\n CASE WHEN LOWER(properties.labels.scaler) = 'castai' THEN true ELSE false END as is_cast\n FROM kubcost_with_service\n), normalized_kubcost (\n SELECT\n service,\n CASE \n WHEN \n\t\t\t\tLOWER(productline) in ('corgis', 'mochas', 'ds-products','data-science','corgis-fails-topics','ordersoutbox-test','packages-test')\n\t\t\tTHEN 'platform'\n WHEN \n\t\t\t\tLOWER(productline) = 'app-infra' OR\n (productline = 'untagged' AND namespace = 'infra' )\n\t\t\tTHEN 'infra'\n WHEN\n\t\t\t\tLOWER(productline) in ('yoda-e2e', 'data-group', 'data-infra', 'data-applications', 'data-applications', 'cdc', 'bi', 'bp') OR\n (productline = 'untagged' AND namespace in ('okera', 'data-group'))\n\t\t\tTHEN 'data'\n WHEN \n\t\t\t\tLOWER(productline) = 'smsbump'\n\t\t\tTHEN 'sms'\n WHEN \n\t\t\t\tLOWER(productline) = 'mm-platform-ugc-mirrormaker2'\n\t\t\tTHEN 'ugc'\n\t\t\tWHEN productline = 'untagged' AND (namespace in ('__unmounted__', 'kube-system', 'vault-secrets', 'default', 'infra') OR namespace is NULL) THEN 'infra'\n WHEN productline = '' THEN 'untagged'\n\t\t\tELSE LOWER(productline)\n\t\tEND AS productline,\n sub_service,\n release_name,\n cluster,\n namespace,\n run_id,\n cpucost,\n pvcost,\n networkcost,\n ramcost,\n totalcost,\n totalefficiency,\n cpuefficiency, \n cpucorehours, \n cpucorerequestaverage,\n cpucoreusageaverage,\n cpucores, \n cpuCoreUsageMax, \n networktransferbytes,\n networkreceivebytes,\n ramefficiency, \n ramByteUsageMax, \n rambytehours,\n rambyteusageaverage,\n rambyterequestaverage,\n rambytes,\n minutes,\n year,\n month,\n day,\n make_date(year,month,day) AS billing_day,\n ec2_id,\n name,\n group,\n team,\n system,\n subsystem,\n component,\n feature,\n is_cast\n FROM\n kubcost_with_service_and_productline\n),\n-- Selecting EC2 information of the instances\n ec2_instances AS (\n SELECT\n billing.line_item_resource_id as ec2_id,\n MAX(billing.product_instance_type) AS product_instance_type,\n MAX(billing.product_region) AS product_region,\n MAX(billing.pricing_term) AS pricing_term,\n MAX(billing.resource_tags_user_product_line) AS resource_tags_user_product_line,\n MAX(billing.product_memory) AS product_memory,\n MAX(billing.product_network_performance) AS product_network_performance,\n MAX(billing.product_storage) AS product_storage,\n MAX(billing.product_vcpu) AS product_vcpu,\n MAX(\n CASE\n WHEN billing.line_item_availability_zone IS NULL OR billing.line_item_availability_zone = '' THEN billing.product_availability_zone\n ELSE billing.line_item_availability_zone\n END\n ) AS availability_zone,\n SUM(CASE WHEN billing.product_product_family <> 'Compute Instance' THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0\n ELSE line_item_unblended_cost\n END) AS compute_cost,\n SUM(CASE WHEN billing.product_product_family <> 'Data Transfer' THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanCoveredUsage') THEN savings_plan_savings_plan_effective_cost\n WHEN (line_item_line_item_type = 'SavingsPlanRecurringFee') THEN (savings_plan_total_commitment_to_date - savings_plan_used_commitment)\n WHEN (line_item_line_item_type = 'SavingsPlanNegation') THEN 0\n WHEN (line_item_line_item_type = 'SavingsPlanUpfrontFee') THEN 0\n WHEN (line_item_line_item_type = 'DiscountedUsage') THEN reservation_effective_cost\n WHEN (line_item_line_item_type = 'RIFee') THEN (reservation_unused_amortized_upfront_fee_for_billing_period + reservation_unused_recurring_fee)\n WHEN ((line_item_line_item_type = 'Fee') AND (reservation_reservation_a_r_n <> '')) THEN 0\n ELSE line_item_unblended_cost\n END) AS data_transfer_cost\n FROM\n dev_dkruh1.infra_stg__aws_payer_billing_report_raw AS billing\n WHERE\n billing.line_item_product_code = 'AmazonEC2'\n AND billing.product_product_family in ('Compute Instance', 'Data Transfer')\n AND CONCAT(billing.year, LPAD(billing.month, 2, '0')) >= (\n SELECT MIN(CONCAT(year, LPAD(month, 2, '0')))\n FROM normalized_kubcost)\n AND billing.line_item_resource_id in (select distinct(ec2_id) from normalized_kubcost)\n GROUP BY billing.line_item_resource_id\n), k8s_cost_with_instances AS (\n SELECT *\n FROM normalized_kubcost\n LEFT JOIN\n (SELECT * FROM ec2_instances) AS instances\n USING(ec2_id)\n)\n \n SELECT \n *\nFROM \n k8s_cost_with_instances", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_consumer_entity_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_consumer_entity_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_consumer_entity_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__consumer_entity_daily_snapshot", "loyalty__dim_consumer_entity_daily_snapshot"], "alias": "loyalty__dim_consumer_entity_daily_snapshot", "checksum": {"name": "sha256", "checksum": "3bf76c60231741365b06370d3d6d80287444815cea190384c8d813c0e2add2e1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "company_name": {"name": "company_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_name": {"name": "first_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_customer": {"name": "referred_by_customer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_balance": {"name": "points_balance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_redeemed": {"name": "points_redeemed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_member": {"name": "is_member", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "vip_tier_id": {"name": "vip_tier_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vip_tier_name": {"name": "vip_tier_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vip_tier_next_id": {"name": "vip_tier_next_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vip_tier_next_name": {"name": "vip_tier_next_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "remaining_to_next_tier": {"name": "remaining_to_next_tier", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_sent_count": {"name": "email_sent_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_redemption_date": {"name": "first_redemption_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_redemption_date": {"name": "last_redemption_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "total_coupons_used": {"name": "total_coupons_used", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_amount_deducted_points": {"name": "total_amount_deducted_points", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_times_point_redeemed": {"name": "total_times_point_redeemed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_purchases_applied_to_campaigns": {"name": "total_purchases_applied_to_campaigns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_purchases": {"name": "total_purchases", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_purchase_at": {"name": "last_purchase_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "billing_country_codes": {"name": "billing_country_codes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_cities": {"name": "billing_cities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_country_codes": {"name": "shipping_country_codes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_cities": {"name": "shipping_cities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_refunds": {"name": "total_refunds", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "lifetime_spend_cents": {"name": "lifetime_spend_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lifetime_spend_usd": {"name": "lifetime_spend_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lifetime_spend_on_base_currency": {"name": "lifetime_spend_on_base_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lifetime_spend_cents_applied_to_campaigns": {"name": "lifetime_spend_cents_applied_to_campaigns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lifetime_spend_usd_applied_to_campaigns": {"name": "lifetime_spend_usd_applied_to_campaigns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lifetime_spend_on_base_currency_applied_to_campaigns": {"name": "lifetime_spend_on_base_currency_applied_to_campaigns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "first_purchase_at": {"name": "first_purchase_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_purchase_value": {"name": "first_purchase_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "first_purchase_value_cents": {"name": "first_purchase_value_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_purchase_value_usd": {"name": "first_purchase_value_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "first_purchase_value_on_base_currency": {"name": "first_purchase_value_on_base_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "aov": {"name": "aov", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "aov_usd": {"name": "aov_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_loyalty_member": {"name": "is_loyalty_member", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "customer_opted_in_at": {"name": "customer_opted_in_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "birthday": {"name": "birthday", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "birthday_last_sent": {"name": "birthday_last_sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "referral_links_clicked": {"name": "referral_links_clicked", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_orders": {"name": "referral_orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_amount_on_base_currency": {"name": "referral_amount_on_base_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referral_amount_usd": {"name": "referral_amount_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referral_amount_cents": {"name": "referral_amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "likelihood_to_make_a_purchase": {"name": "likelihood_to_make_a_purchase", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "void"}, "not_eligible": {"name": "not_eligible", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "asavg_star_rating": {"name": "asavg_star_rating", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "void"}, "avg_sentiment": {"name": "avg_sentiment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "void"}, "last_review_star_rating": {"name": "last_review_star_rating", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "void"}, "last_review_sentiment": {"name": "last_review_sentiment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "void"}, "topics": {"name": "topics", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "void"}, "count_reviews": {"name": "count_reviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "count_positive_reviews": {"name": "count_positive_reviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "count_negative_reviews": {"name": "count_negative_reviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082672.4728642, "relation_name": "dev_dkruh1.loyalty__dim_consumer_entity_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH customers as (\n select c.id ,\n c.group_customer_id,\n c.name,\n c.first_name,\n c.last_name,\n TRIM(LOWER(c.email)) AS email,\n c.points_balance,\n c.points_earned,\n c.last_purchase_at,\n c.email_sent_count,\n c.points_earned - c.points_balance AS points_redeemed,\n referred_by_customer_id,\n m.app_key,\n c.merchant_id,\n m.company_name,\n c.created_at,\n c.vip_tier_id,\n c.is_member,\n c.is_loyalty_member,\n c.opted_in_at AS customer_opted_in_at\n FROM {{ ref('loyalty__dim_customers_daily_snapshot') }} c\n LEFT JOIN {{ ref('loyalty__dim_merchants_daily_snapshot') }} m\n ON m.id = c.merchant_id\n where exclude_from_reports = false\n \n), purchases as (\n select * from {{ ref('loyalty__fact_purchases_daily_snapshot') }} \n\n), points_redemption_swell as (\n\n SELECT customer_id AS swell_customer_id,\n min(created_at) AS first_redemption_date,\n max(updated_at) AS last_redemption_date,\n sum(uses) AS total_coupon_uses,\n sum(amount_deducted_points) AS total_amount_deducted_points\n FROM {{ ref('loyalty__fact_redemptions_daily_snapshot') }}\n GROUP BY customer_id\n\n), number_of_redemptions as (\n SELECT customer_id,\n COUNT(*) AS total_times_point_redeemed\n FROM purchases\n LEFT JOIN {{ ref('loyalty__fact_purchases_redemptions_daily_snapshot') }} redemptions \n ON (purchases.id = redemptions.purchase_id)\n WHERE is_refunded = false AND\n (swell_discount_cost_cents > 0 OR\n redemptions.redemption_id IS NOT NULL)\n GROUP BY customer_id\n\n), purchases_with_total_refund as (\n \n SELECT customer_id,\n collect_set(processor_type) as channel,\n concat_ws(',',collect_set(upper(trim(billing_country_code)))) AS billing_country_codes,\n concat_ws(',',collect_set(initcap(lower(trim(billing_city))))) AS billing_cities,\n concat_ws(',',collect_set(upper(trim(shipping_country_code)))) shipping_country_codes,\n concat_ws(',',collect_set(initcap(lower(trim(shipping_city))))) AS shipping_cities,\n count(CASE WHEN not (amount_cents - amount_refunded_cents = 0) THEN 1 END) as total_purchases,\n min(created_at) as first_purchase_at,\n max(CASE WHEN not (amount_cents - amount_refunded_cents = 0) THEN created_at END) as last_purchase_at,\n count(CASE WHEN (amount_cents - amount_refunded_cents = 0) THEN true END) as total_refunds,\n count(CASE WHEN applied_to_campaigns AND NOT (amount_cents - amount_refunded_cents = 0) THEN true END) as total_purchases_applied_to_campaigns,\n sum(amount_cents - amount_refunded_cents) as lifetime_spend_cents,\n sum(CASE WHEN applied_to_campaigns AND not (amount_cents - amount_refunded_cents = 0) THEN amount_cents - amount_refunded_cents ELSE 0 END) as lifetime_spend_cents_applied_to_campaigns,\n sum(purchase_amount_usd - amount_refunded_usd) as lifetime_spend_usd,\n sum(CASE WHEN applied_to_campaigns AND not (purchase_amount_usd - amount_refunded_usd = 0) THEN purchase_amount_usd - amount_refunded_usd ELSE 0 END) as lifetime_spend_usd_applied_to_campaigns,\n sum(purchase_amount_on_base_currency - amount_refunded_on_base_currency) as lifetime_spend_on_base_currency,\n sum(CASE WHEN applied_to_campaigns AND not (purchase_amount_on_base_currency - amount_refunded_on_base_currency = 0) THEN purchase_amount_on_base_currency - amount_refunded_on_base_currency ELSE 0 END) as lifetime_spend_on_base_currency_applied_to_campaigns\n FROM purchases\n GROUP BY customer_id\n\n \n ), customer_birthdays_swell as (\n SELECT\n customers.id AS swell_customer_id,\n concat_ws(',',collect_set(concat_ws('/', day,month,year))) AS birthday,\n max(last_sent) AS birthday_last_sent\n FROM {{ ref('loyalty__dim_customer_birthdays_daily_snapshot') }} birthdays\n LEFT JOIN customers on birthdays.group_customer_id = customers.group_customer_id\n GROUP BY customers.id\n\n ), first_purchases_value as (\n SELECT\n p.customer_id,\n fpd.first_purchase_at,\n CASE WHEN count(*) = 1 THEN MAX(CASE WHEN p.amount_cents is null THEN 0 ELSE p.amount_cents END) ELSE 0 END as first_purchase_value_cents,\n CASE WHEN count(*) = 1 THEN MAX(CASE WHEN p.purchase_amount_usd is null THEN 0 ELSE p.purchase_amount_usd END) ELSE 0 END as first_purchase_value_usd,\n CASE WHEN count(*) = 1 THEN MAX(CASE WHEN p.purchase_amount_on_base_currency is null THEN 0 ELSE p.purchase_amount_on_base_currency END) ELSE 0 END as first_purchase_value_on_base_currency,\n CASE WHEN count(*) = 1 THEN MAX(CASE WHEN p.purchase_amount_usd is null THEN 0 ELSE p.purchase_amount_usd END) ELSE 0 END as first_purchase_value\n FROM purchases p\n JOIN purchases_with_total_refund as fpd ON p.customer_id = fpd.customer_id AND p.created_at = fpd.first_purchase_at\n GROUP BY p.customer_id, fpd.first_purchase_at\n \n ), purchases_with_aov (\n SELECT customer_id AS swell_customer_id,\n avg(amount_cents) as aov,\n avg(purchase_amount_usd) as aov_usd\n FROM purchases\n WHERE NOT is_refunded\n GROUP BY customer_id\n\n ), referral_codes as(\n select * from {{ ref('loyalty__dim_referral_codes_daily_snapshot') }}\n\n ), customers_referral_codes_links as (\n SELECT referral_codes.customer_id,\n COUNT(*) AS referral_links_clicked\n FROM referral_codes\n WHERE referral_id is not NULL\n GROUP BY customer_id\n\n ), customers_referral_codes_purchases as (\n SELECT referral_codes.customer_id,\n referral_links_clicked,\n COUNT(*) AS referral_orders,\n SUM(purchase_amount_on_base_currency) - SUM(amount_refunded_on_base_currency) AS referral_amount_on_base_currency,\n SUM(purchase_amount_usd) - SUM(amount_refunded_usd) AS referral_amount_usd,\n SUM(p.amount_cents) - SUM(p.amount_refunded_cents) AS referral_amount_cents\n FROM referral_codes\n JOIN customers_referral_codes_links crcl on referral_codes.customer_id = crcl.customer_id\n JOIN purchases AS p on p.referral_id = referral_codes.referral_id\n WHERE referral_codes.completed_at is not null\n GROUP BY referral_codes.customer_id,\n referral_links_clicked\n HAVING referral_amount_cents > 0\n\n ), customers_referral_codes_successful_referrals as (\n SELECT referral_codes.customer_id AS swell_customer_id,\n COUNT(completed_at) AS total_referrals\n FROM referral_codes\n WHERE completed_at is not null\n GROUP BY customer_id \n\n), vip_tiers_current_tier as (\n SELECT *\n FROM {{ ref('loyalty__dim_vip_tiers_daily_snapshot') }}\n\n ), vip_tiers_next_tier as (\n SELECT *,\n lead(points_earned) OVER (PARTITION BY merchant_id ORDER BY rank) AS next_tier_points_earned\n FROM vip_tiers_current_tier\n\n ), customers_with_remaining_points_to_next_tier as (\n SELECT\n customers.id as swell_customer_id,\n vip_tiers_next_tier.id as vip_tier_next_id,\n vip_tiers_next_tier.name as vip_tier_next_name,\n vip_tiers_next_tier.next_tier_points_earned - customers.points_earned AS remaining_to_next_tier\n FROM customers\n LEFT JOIN vip_tiers_next_tier ON customers.vip_tier_id = vip_tiers_next_tier.id\n WHERE vip_tiers_next_tier.name is not null AND vip_tiers_next_tier.next_tier_points_earned - customers.points_earned > 0\n \n\n), customers_loyalty as (\n \n SELECT\n customers.id,\n customers.app_key,\n customers.merchant_id,\n customers.company_name,\n customers.name,\n customers.first_name,\n customers.last_name,\n CASE WHEN customers.referred_by_customer_id IS NULL THEN false ELSE true END AS referred_by_customer,\n customers.email,\n customers.points_balance,\n customers.points_earned,\n customers.points_redeemed,\n customers.is_member,\n customers.created_at,\n customers.vip_tier_id,\n vip_tiers_current_tier.name as vip_tier_name,\n customers_with_remaining_points_to_next_tier.vip_tier_next_id,\n customers_with_remaining_points_to_next_tier.vip_tier_next_name,\n customers_with_remaining_points_to_next_tier.remaining_to_next_tier,\n CASE WHEN customers.email_sent_count is null THEN 0 ELSE customers.email_sent_count END AS email_sent_count,\n points_redemption_swell.first_redemption_date,\n points_redemption_swell.last_redemption_date,\n CASE WHEN points_redemption_swell.total_coupon_uses is null THEN 0 ELSE points_redemption_swell.total_coupon_uses END AS total_coupons_used,\n CASE WHEN points_redemption_swell.total_amount_deducted_points is null THEN 0 ELSE points_redemption_swell.total_amount_deducted_points END AS total_amount_deducted_points,\n CASE WHEN number_of_redemptions.total_times_point_redeemed is null THEN 0 ELSE number_of_redemptions.total_times_point_redeemed END AS total_times_point_redeemed,\n CASE WHEN purchases_with_total_refund.total_purchases_applied_to_campaigns is null THEN 0 ELSE purchases_with_total_refund.total_purchases_applied_to_campaigns END AS total_purchases_applied_to_campaigns,\n CASE WHEN purchases_with_total_refund.total_purchases is null THEN 0 ELSE purchases_with_total_refund.total_purchases END AS total_purchases,\n purchases_with_total_refund.last_purchase_at, \n purchases_with_total_refund.billing_country_codes,\n purchases_with_total_refund.billing_cities,\n purchases_with_total_refund.shipping_country_codes,\n purchases_with_total_refund.shipping_cities,\n CASE WHEN purchases_with_total_refund.total_refunds is null THEN 0 ELSE purchases_with_total_refund.total_refunds END AS total_refunds,\n purchases_with_total_refund.channel,\n CASE WHEN purchases_with_total_refund.lifetime_spend_cents is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_cents END AS lifetime_spend_cents,\n CASE WHEN purchases_with_total_refund.lifetime_spend_usd is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_usd END AS lifetime_spend_usd,\n CASE WHEN purchases_with_total_refund.lifetime_spend_on_base_currency is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_on_base_currency END AS lifetime_spend_on_base_currency,\n CASE WHEN purchases_with_total_refund.lifetime_spend_cents_applied_to_campaigns is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_cents_applied_to_campaigns END AS lifetime_spend_cents_applied_to_campaigns,\n CASE WHEN purchases_with_total_refund.lifetime_spend_usd_applied_to_campaigns is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_usd_applied_to_campaigns END AS lifetime_spend_usd_applied_to_campaigns,\n CASE WHEN purchases_with_total_refund.lifetime_spend_on_base_currency_applied_to_campaigns is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_on_base_currency_applied_to_campaigns END AS lifetime_spend_on_base_currency_applied_to_campaigns,\n first_purchases_value.first_purchase_at,\n CASE WHEN first_purchases_value.first_purchase_value is null THEN 0 ELSE first_purchase_value END AS first_purchase_value,\n CASE WHEN first_purchase_value_cents is null THEN 0 ELSE first_purchase_value_cents END AS first_purchase_value_cents,\n CASE WHEN first_purchase_value_usd is null THEN 0 ELSE first_purchase_value_usd END AS first_purchase_value_usd,\n CASE WHEN first_purchase_value_on_base_currency is null THEN 0 ELSE first_purchase_value_on_base_currency END AS first_purchase_value_on_base_currency,\n CASE WHEN aov is null THEN 0 ELSE aov END AS aov,\n CASE WHEN aov_usd is null THEN 0 ELSE aov_usd END AS aov_usd,\n customers.is_loyalty_member,\n customers.customer_opted_in_at,\n customer_birthdays_swell.birthday,\n customer_birthdays_swell.birthday_last_sent,\n CASE WHEN referral_links_clicked IS NULL THEN 0 ELSE referral_links_clicked END AS referral_links_clicked,\n CASE WHEN referral_orders IS NULL THEN 0 ELSE referral_orders END AS referral_orders,\n CASE WHEN referral_amount_on_base_currency IS NULL THEN 0 ELSE referral_amount_on_base_currency END AS referral_amount_on_base_currency,\n CASE WHEN referral_amount_usd IS NULL THEN 0 ELSE referral_amount_usd END AS referral_amount_usd,\n CASE WHEN referral_amount_cents IS NULL THEN 0 ELSE referral_amount_cents END AS referral_amount_cents,\n null as likelihood_to_make_a_purchase,\n true as not_eligible,\n null asavg_star_rating,\n 0 as avg_sentiment,\n null as user_id,\n null as last_review_star_rating,\n null as last_review_sentiment,\n null as topics,\n 0 AS count_reviews,\n 0 AS count_positive_reviews,\n 0 AS count_negative_reviews\n FROM customers\n LEFT JOIN points_redemption_swell ON customers.id = points_redemption_swell.swell_customer_id\n LEFT JOIN number_of_redemptions ON customers.id = number_of_redemptions.customer_id\n LEFT JOIN purchases_with_total_refund ON customers.id = purchases_with_total_refund.customer_id\n LEFT JOIN first_purchases_value ON customers.id = first_purchases_value.customer_id\n LEFT JOIN purchases_with_aov ON customers.id = purchases_with_aov.swell_customer_id\n LEFT JOIN customer_birthdays_swell ON customers.id = customer_birthdays_swell.swell_customer_id\n LEFT JOIN customers_with_remaining_points_to_next_tier ON customers.id = customers_with_remaining_points_to_next_tier.swell_customer_id\n LEFT JOIN customers_referral_codes_purchases ON customers.id = customers_referral_codes_purchases.customer_id\n LEFT JOIN customers_referral_codes_successful_referrals ON customers.id = customers_referral_codes_purchases.customer_id\n LEFT JOIN vip_tiers_current_tier ON vip_tier_id = vip_tiers_current_tier.id\n )\n\nselect * from customers_loyalty", "language": "sql", "refs": [{"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_merchants_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_purchases_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_redemptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_purchases_redemptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_customer_birthdays_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_referral_codes_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_vip_tiers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_customers_daily_snapshot", "model.yoda.loyalty__dim_merchants_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot", "model.yoda.loyalty__dim_customer_birthdays_daily_snapshot", "model.yoda.loyalty__dim_referral_codes_daily_snapshot", "model.yoda.loyalty__dim_vip_tiers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH customers as (\n select c.id ,\n c.group_customer_id,\n c.name,\n c.first_name,\n c.last_name,\n TRIM(LOWER(c.email)) AS email,\n c.points_balance,\n c.points_earned,\n c.last_purchase_at,\n c.email_sent_count,\n c.points_earned - c.points_balance AS points_redeemed,\n referred_by_customer_id,\n m.app_key,\n c.merchant_id,\n m.company_name,\n c.created_at,\n c.vip_tier_id,\n c.is_member,\n c.is_loyalty_member,\n c.opted_in_at AS customer_opted_in_at\n FROM dev_dkruh1.loyalty__dim_customers_daily_snapshot c\n LEFT JOIN dev_dkruh1.loyalty__dim_merchants_daily_snapshot m\n ON m.id = c.merchant_id\n where exclude_from_reports = false\n \n), purchases as (\n select * from dev_dkruh1.loyalty__fact_purchases_daily_snapshot \n\n), points_redemption_swell as (\n\n SELECT customer_id AS swell_customer_id,\n min(created_at) AS first_redemption_date,\n max(updated_at) AS last_redemption_date,\n sum(uses) AS total_coupon_uses,\n sum(amount_deducted_points) AS total_amount_deducted_points\n FROM dev_dkruh1.loyalty__fact_redemptions_daily_snapshot\n GROUP BY customer_id\n\n), number_of_redemptions as (\n SELECT customer_id,\n COUNT(*) AS total_times_point_redeemed\n FROM purchases\n LEFT JOIN dev_dkruh1.loyalty__fact_purchases_redemptions_daily_snapshot redemptions \n ON (purchases.id = redemptions.purchase_id)\n WHERE is_refunded = false AND\n (swell_discount_cost_cents > 0 OR\n redemptions.redemption_id IS NOT NULL)\n GROUP BY customer_id\n\n), purchases_with_total_refund as (\n \n SELECT customer_id,\n collect_set(processor_type) as channel,\n concat_ws(',',collect_set(upper(trim(billing_country_code)))) AS billing_country_codes,\n concat_ws(',',collect_set(initcap(lower(trim(billing_city))))) AS billing_cities,\n concat_ws(',',collect_set(upper(trim(shipping_country_code)))) shipping_country_codes,\n concat_ws(',',collect_set(initcap(lower(trim(shipping_city))))) AS shipping_cities,\n count(CASE WHEN not (amount_cents - amount_refunded_cents = 0) THEN 1 END) as total_purchases,\n min(created_at) as first_purchase_at,\n max(CASE WHEN not (amount_cents - amount_refunded_cents = 0) THEN created_at END) as last_purchase_at,\n count(CASE WHEN (amount_cents - amount_refunded_cents = 0) THEN true END) as total_refunds,\n count(CASE WHEN applied_to_campaigns AND NOT (amount_cents - amount_refunded_cents = 0) THEN true END) as total_purchases_applied_to_campaigns,\n sum(amount_cents - amount_refunded_cents) as lifetime_spend_cents,\n sum(CASE WHEN applied_to_campaigns AND not (amount_cents - amount_refunded_cents = 0) THEN amount_cents - amount_refunded_cents ELSE 0 END) as lifetime_spend_cents_applied_to_campaigns,\n sum(purchase_amount_usd - amount_refunded_usd) as lifetime_spend_usd,\n sum(CASE WHEN applied_to_campaigns AND not (purchase_amount_usd - amount_refunded_usd = 0) THEN purchase_amount_usd - amount_refunded_usd ELSE 0 END) as lifetime_spend_usd_applied_to_campaigns,\n sum(purchase_amount_on_base_currency - amount_refunded_on_base_currency) as lifetime_spend_on_base_currency,\n sum(CASE WHEN applied_to_campaigns AND not (purchase_amount_on_base_currency - amount_refunded_on_base_currency = 0) THEN purchase_amount_on_base_currency - amount_refunded_on_base_currency ELSE 0 END) as lifetime_spend_on_base_currency_applied_to_campaigns\n FROM purchases\n GROUP BY customer_id\n\n \n ), customer_birthdays_swell as (\n SELECT\n customers.id AS swell_customer_id,\n concat_ws(',',collect_set(concat_ws('/', day,month,year))) AS birthday,\n max(last_sent) AS birthday_last_sent\n FROM dev_dkruh1.loyalty__dim_customer_birthdays_daily_snapshot birthdays\n LEFT JOIN customers on birthdays.group_customer_id = customers.group_customer_id\n GROUP BY customers.id\n\n ), first_purchases_value as (\n SELECT\n p.customer_id,\n fpd.first_purchase_at,\n CASE WHEN count(*) = 1 THEN MAX(CASE WHEN p.amount_cents is null THEN 0 ELSE p.amount_cents END) ELSE 0 END as first_purchase_value_cents,\n CASE WHEN count(*) = 1 THEN MAX(CASE WHEN p.purchase_amount_usd is null THEN 0 ELSE p.purchase_amount_usd END) ELSE 0 END as first_purchase_value_usd,\n CASE WHEN count(*) = 1 THEN MAX(CASE WHEN p.purchase_amount_on_base_currency is null THEN 0 ELSE p.purchase_amount_on_base_currency END) ELSE 0 END as first_purchase_value_on_base_currency,\n CASE WHEN count(*) = 1 THEN MAX(CASE WHEN p.purchase_amount_usd is null THEN 0 ELSE p.purchase_amount_usd END) ELSE 0 END as first_purchase_value\n FROM purchases p\n JOIN purchases_with_total_refund as fpd ON p.customer_id = fpd.customer_id AND p.created_at = fpd.first_purchase_at\n GROUP BY p.customer_id, fpd.first_purchase_at\n \n ), purchases_with_aov (\n SELECT customer_id AS swell_customer_id,\n avg(amount_cents) as aov,\n avg(purchase_amount_usd) as aov_usd\n FROM purchases\n WHERE NOT is_refunded\n GROUP BY customer_id\n\n ), referral_codes as(\n select * from dev_dkruh1.loyalty__dim_referral_codes_daily_snapshot\n\n ), customers_referral_codes_links as (\n SELECT referral_codes.customer_id,\n COUNT(*) AS referral_links_clicked\n FROM referral_codes\n WHERE referral_id is not NULL\n GROUP BY customer_id\n\n ), customers_referral_codes_purchases as (\n SELECT referral_codes.customer_id,\n referral_links_clicked,\n COUNT(*) AS referral_orders,\n SUM(purchase_amount_on_base_currency) - SUM(amount_refunded_on_base_currency) AS referral_amount_on_base_currency,\n SUM(purchase_amount_usd) - SUM(amount_refunded_usd) AS referral_amount_usd,\n SUM(p.amount_cents) - SUM(p.amount_refunded_cents) AS referral_amount_cents\n FROM referral_codes\n JOIN customers_referral_codes_links crcl on referral_codes.customer_id = crcl.customer_id\n JOIN purchases AS p on p.referral_id = referral_codes.referral_id\n WHERE referral_codes.completed_at is not null\n GROUP BY referral_codes.customer_id,\n referral_links_clicked\n HAVING referral_amount_cents > 0\n\n ), customers_referral_codes_successful_referrals as (\n SELECT referral_codes.customer_id AS swell_customer_id,\n COUNT(completed_at) AS total_referrals\n FROM referral_codes\n WHERE completed_at is not null\n GROUP BY customer_id \n\n), vip_tiers_current_tier as (\n SELECT *\n FROM dev_dkruh1.loyalty__dim_vip_tiers_daily_snapshot\n\n ), vip_tiers_next_tier as (\n SELECT *,\n lead(points_earned) OVER (PARTITION BY merchant_id ORDER BY rank) AS next_tier_points_earned\n FROM vip_tiers_current_tier\n\n ), customers_with_remaining_points_to_next_tier as (\n SELECT\n customers.id as swell_customer_id,\n vip_tiers_next_tier.id as vip_tier_next_id,\n vip_tiers_next_tier.name as vip_tier_next_name,\n vip_tiers_next_tier.next_tier_points_earned - customers.points_earned AS remaining_to_next_tier\n FROM customers\n LEFT JOIN vip_tiers_next_tier ON customers.vip_tier_id = vip_tiers_next_tier.id\n WHERE vip_tiers_next_tier.name is not null AND vip_tiers_next_tier.next_tier_points_earned - customers.points_earned > 0\n \n\n), customers_loyalty as (\n \n SELECT\n customers.id,\n customers.app_key,\n customers.merchant_id,\n customers.company_name,\n customers.name,\n customers.first_name,\n customers.last_name,\n CASE WHEN customers.referred_by_customer_id IS NULL THEN false ELSE true END AS referred_by_customer,\n customers.email,\n customers.points_balance,\n customers.points_earned,\n customers.points_redeemed,\n customers.is_member,\n customers.created_at,\n customers.vip_tier_id,\n vip_tiers_current_tier.name as vip_tier_name,\n customers_with_remaining_points_to_next_tier.vip_tier_next_id,\n customers_with_remaining_points_to_next_tier.vip_tier_next_name,\n customers_with_remaining_points_to_next_tier.remaining_to_next_tier,\n CASE WHEN customers.email_sent_count is null THEN 0 ELSE customers.email_sent_count END AS email_sent_count,\n points_redemption_swell.first_redemption_date,\n points_redemption_swell.last_redemption_date,\n CASE WHEN points_redemption_swell.total_coupon_uses is null THEN 0 ELSE points_redemption_swell.total_coupon_uses END AS total_coupons_used,\n CASE WHEN points_redemption_swell.total_amount_deducted_points is null THEN 0 ELSE points_redemption_swell.total_amount_deducted_points END AS total_amount_deducted_points,\n CASE WHEN number_of_redemptions.total_times_point_redeemed is null THEN 0 ELSE number_of_redemptions.total_times_point_redeemed END AS total_times_point_redeemed,\n CASE WHEN purchases_with_total_refund.total_purchases_applied_to_campaigns is null THEN 0 ELSE purchases_with_total_refund.total_purchases_applied_to_campaigns END AS total_purchases_applied_to_campaigns,\n CASE WHEN purchases_with_total_refund.total_purchases is null THEN 0 ELSE purchases_with_total_refund.total_purchases END AS total_purchases,\n purchases_with_total_refund.last_purchase_at, \n purchases_with_total_refund.billing_country_codes,\n purchases_with_total_refund.billing_cities,\n purchases_with_total_refund.shipping_country_codes,\n purchases_with_total_refund.shipping_cities,\n CASE WHEN purchases_with_total_refund.total_refunds is null THEN 0 ELSE purchases_with_total_refund.total_refunds END AS total_refunds,\n purchases_with_total_refund.channel,\n CASE WHEN purchases_with_total_refund.lifetime_spend_cents is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_cents END AS lifetime_spend_cents,\n CASE WHEN purchases_with_total_refund.lifetime_spend_usd is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_usd END AS lifetime_spend_usd,\n CASE WHEN purchases_with_total_refund.lifetime_spend_on_base_currency is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_on_base_currency END AS lifetime_spend_on_base_currency,\n CASE WHEN purchases_with_total_refund.lifetime_spend_cents_applied_to_campaigns is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_cents_applied_to_campaigns END AS lifetime_spend_cents_applied_to_campaigns,\n CASE WHEN purchases_with_total_refund.lifetime_spend_usd_applied_to_campaigns is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_usd_applied_to_campaigns END AS lifetime_spend_usd_applied_to_campaigns,\n CASE WHEN purchases_with_total_refund.lifetime_spend_on_base_currency_applied_to_campaigns is null THEN 0 ELSE purchases_with_total_refund.lifetime_spend_on_base_currency_applied_to_campaigns END AS lifetime_spend_on_base_currency_applied_to_campaigns,\n first_purchases_value.first_purchase_at,\n CASE WHEN first_purchases_value.first_purchase_value is null THEN 0 ELSE first_purchase_value END AS first_purchase_value,\n CASE WHEN first_purchase_value_cents is null THEN 0 ELSE first_purchase_value_cents END AS first_purchase_value_cents,\n CASE WHEN first_purchase_value_usd is null THEN 0 ELSE first_purchase_value_usd END AS first_purchase_value_usd,\n CASE WHEN first_purchase_value_on_base_currency is null THEN 0 ELSE first_purchase_value_on_base_currency END AS first_purchase_value_on_base_currency,\n CASE WHEN aov is null THEN 0 ELSE aov END AS aov,\n CASE WHEN aov_usd is null THEN 0 ELSE aov_usd END AS aov_usd,\n customers.is_loyalty_member,\n customers.customer_opted_in_at,\n customer_birthdays_swell.birthday,\n customer_birthdays_swell.birthday_last_sent,\n CASE WHEN referral_links_clicked IS NULL THEN 0 ELSE referral_links_clicked END AS referral_links_clicked,\n CASE WHEN referral_orders IS NULL THEN 0 ELSE referral_orders END AS referral_orders,\n CASE WHEN referral_amount_on_base_currency IS NULL THEN 0 ELSE referral_amount_on_base_currency END AS referral_amount_on_base_currency,\n CASE WHEN referral_amount_usd IS NULL THEN 0 ELSE referral_amount_usd END AS referral_amount_usd,\n CASE WHEN referral_amount_cents IS NULL THEN 0 ELSE referral_amount_cents END AS referral_amount_cents,\n null as likelihood_to_make_a_purchase,\n true as not_eligible,\n null asavg_star_rating,\n 0 as avg_sentiment,\n null as user_id,\n null as last_review_star_rating,\n null as last_review_sentiment,\n null as topics,\n 0 AS count_reviews,\n 0 AS count_positive_reviews,\n 0 AS count_negative_reviews\n FROM customers\n LEFT JOIN points_redemption_swell ON customers.id = points_redemption_swell.swell_customer_id\n LEFT JOIN number_of_redemptions ON customers.id = number_of_redemptions.customer_id\n LEFT JOIN purchases_with_total_refund ON customers.id = purchases_with_total_refund.customer_id\n LEFT JOIN first_purchases_value ON customers.id = first_purchases_value.customer_id\n LEFT JOIN purchases_with_aov ON customers.id = purchases_with_aov.swell_customer_id\n LEFT JOIN customer_birthdays_swell ON customers.id = customer_birthdays_swell.swell_customer_id\n LEFT JOIN customers_with_remaining_points_to_next_tier ON customers.id = customers_with_remaining_points_to_next_tier.swell_customer_id\n LEFT JOIN customers_referral_codes_purchases ON customers.id = customers_referral_codes_purchases.customer_id\n LEFT JOIN customers_referral_codes_successful_referrals ON customers.id = customers_referral_codes_purchases.customer_id\n LEFT JOIN vip_tiers_current_tier ON vip_tier_id = vip_tiers_current_tier.id\n )\n\nselect * from customers_loyalty", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__customer_group_date_history": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__customer_group_date_history", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.sql", "unique_id": "model.yoda.loyalty__customer_group_date_history", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_group_date_history", "loyalty__customer_group_date_history"], "alias": "loyalty__customer_group_date_history", "checksum": {"name": "sha256", "checksum": "7c02e10f8b8b3e24cf41b1652500158f335b0c0b7786b10dc24adfc5b6549d7c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["group_customer_id", "merchant_group_id", "category"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Table holds category and value for each group_customer_id.\nThe value for each category will update only when a new relevant value is found.\nGranularity: group_customer_id | merchant_group_id | category", "columns": {"group_customer_id": {"name": "group_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_group_id": {"name": "merchant_group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "category name example: 'last_reset_date'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "category value example: for category: 'last_reset_date' the value will be the date of the latest point tranaction reset date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "row update date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["loyalty"], "materialized": "incremental", "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["group_customer_id", "merchant_group_id", "category"], "incremental_strategy": "merge"}, "created_at": 1700082672.684878, "relation_name": "dev_dkruh1.loyalty__customer_group_date_history", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental','view'),\n unique_key=['group_customer_id','merchant_group_id','category'],\n incremental_strategy = 'merge',\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE public_loyalty.customer_group_date_history ZORDER BY group_customer_id;')\n )\n}}\n\n-- Import --\n\nWITH import_customer_point_transaction_metrics_daily AS (\nSELECT * FROM {{ ref('loyalty__customer_point_transaction_metrics_daily') }}\n), \n\n-- Logic --\n\ncustomer_group_lastest_reset_date AS (\nSELECT\n transaction.group_customer_id,\n transaction.merchant_group_id,\n 'last_points_reset_date' AS category,\n DATE(MAX(transaction.date)) AS value\nFROM import_customer_point_transaction_metrics_daily AS transaction\n{% if is_incremental() %}\nLEFT JOIN {{this}} AS this\n ON this.category = 'last_points_reset_date'\n AND transaction.group_customer_id = this.group_customer_id\n AND transaction.merchant_group_id = this.merchant_group_id\nWHERE transaction.is_point_reset_date = 1\nAND transaction.date > (SELECT NVL(MAX(value),'1900-01-01') FROM {{this}} WHERE category = 'last_points_reset_date')\nAND transaction.date > NVL(this.value,'1900-01-01')\n{% else %}\nWHERE transaction.is_point_reset_date = 1\n{% endif %}\nGROUP BY 1,2\n),\n\ncustomer_group_date_history_res AS (\nSELECT\n group_customer_id,\n merchant_group_id,\n category,\n value,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM customer_group_lastest_reset_date\n)\n\n-- Result --\n\nSELECT *\nFROM customer_group_date_history_res", "language": "sql", "refs": [{"name": "loyalty__customer_point_transaction_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_customer_point_transaction_metrics_daily AS (\nSELECT * FROM dev_dkruh1.loyalty__customer_point_transaction_metrics_daily\n), \n\n-- Logic --\n\ncustomer_group_lastest_reset_date AS (\nSELECT\n transaction.group_customer_id,\n transaction.merchant_group_id,\n 'last_points_reset_date' AS category,\n DATE(MAX(transaction.date)) AS value\nFROM import_customer_point_transaction_metrics_daily AS transaction\n\nWHERE transaction.is_point_reset_date = 1\n\nGROUP BY 1,2\n),\n\ncustomer_group_date_history_res AS (\nSELECT\n group_customer_id,\n merchant_group_id,\n category,\n value,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM customer_group_lastest_reset_date\n)\n\n-- Result --\n\nSELECT *\nFROM customer_group_date_history_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__customer_point_transaction_metrics_daily": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__customer_point_transaction_metrics_daily", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.sql", "unique_id": "model.yoda.loyalty__customer_point_transaction_metrics_daily", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_point_transaction_metrics_daily", "loyalty__customer_point_transaction_metrics_daily"], "alias": "loyalty__customer_point_transaction_metrics_daily", "checksum": {"name": "sha256", "checksum": "a34a177c77f2eaa27737cf0ac971830d1226dd13a378678819fa20a73a8e70d2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": ["date", "group_customer_id"], "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Aggregated daily table for group_customer_id point transactions.\nContains only dates where customer_group had points tranaction.\nGranularity: date | group_customer_id", "columns": {"date": {"name": "date", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "group_customer_id": {"name": "group_customer_id", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_group_id": {"name": "merchant_group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "earned_points_sum": {"name": "earned_points_sum", "description": "Sum of positive earning transactions per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "earned_reversed_points_sum": {"name": "earned_reversed_points_sum", "description": "Sum of negative earning transactions per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redeemed_points_sum": {"name": "redeemed_points_sum", "description": "Sum of negative balance-only transactions with reason_type = Redemption OR [reason_type = Manual Adjustment AND description = \u201cRedeem points for a discount\u201d] per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reimbursed_points_sum": {"name": "reimbursed_points_sum", "description": "Sum of positive balance-only transactions per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expired_points_sum": {"name": "expired_points_sum", "description": "Sum of negative balance-only transactions with one of the following reason types across customers per date:\nPoint Expiration, Opt Out , Manual Adjustment AND description = Manually expire points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opening_outstanding_points_sum": {"name": "opening_outstanding_points_sum", "description": "last date closing_outstanding_points_sum", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "outstanding_points_difference_sum": {"name": "outstanding_points_difference_sum", "description": "Points earned - Points earning reversed - Points redeemed + Points reimbursed - Points expired per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "closing_outstanding_points_sum": {"name": "closing_outstanding_points_sum", "description": "Sum of all point balances calculated at the end of each day (i.e. taking into account all point transactions that occurred on that date)\nNote: This number should be equal to opening_outstanding_points_sum + outstanding_points_difference_sum", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_point_reset_date": {"name": "is_point_reset_date", "description": "indicator = 1 if there was a reset of points in point transaction", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "positive_outstanding_points_sum": {"name": "positive_outstanding_points_sum", "description": "Sum of outstanding_points that are > 0 for per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "negative_outstanding_points_sum": {"name": "negative_outstanding_points_sum", "description": "Sum of outstanding_points that are < 0 for per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "incremental", "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "unique_key": ["date", "group_customer_id"], "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082672.734397, "relation_name": "dev_dkruh1.loyalty__customer_point_transaction_metrics_daily", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key=['date','group_customer_id'],\n incremental_strategy = 'append',\n partition_by = ['date']\n )\n}}\n\n-- Import --\n\nWITH import_point_transaction AS (\nSELECT * \nFROM {{ ref('loyalty_stg__point_transaction') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='date',query_condition_column='created_date')}}\n), \n\ncustomer_group_daily_agg AS (\nSELECT\n created_date AS date,\n customer_group_id AS group_customer_id,\n merchant_group_id,\n SUM(points_transaction_amount) AS closing_outstanding_points_sum,\n SUM(IF(points_transaction_amount > 0 AND is_transaction_type_earning = 1, points_transaction_amount, 0)) AS earned_points_sum,\n SUM(IF(points_transaction_amount < 0 AND is_transaction_type_earning = 1, points_transaction_amount, 0)) AS earned_reversed_points_sum,\n SUM(IF(points_transaction_amount < 0 AND is_redeemed = 1, points_transaction_amount, 0)) AS redeemed_points_sum,\n SUM(IF(points_transaction_amount > 0 AND is_transaction_type_balance_only = 1, points_transaction_amount, 0)) AS reimbursed_points_sum,\n SUM(IF(points_transaction_amount < 0 AND is_expired = 1, points_transaction_amount, 0)) AS expired_points_sum,\n SMALLINT(MAX(IF(is_transaction_type_reset = 1,1,0))) AS is_point_reset_date\nFROM import_point_transaction\nGROUP BY 1,2,3\n),\n\ncustomer_point_transaction_metrics_daily_res AS (\nSELECT\n date,\n group_customer_id,\n merchant_group_id,\n earned_points_sum,\n earned_reversed_points_sum,\n redeemed_points_sum,\n reimbursed_points_sum,\n expired_points_sum,\n NVL(LAG(closing_outstanding_points_sum) OVER(PARTITION BY group_customer_id,merchant_group_id ORDER BY date),0) AS opening_outstanding_points_sum,\n earned_points_sum - earned_reversed_points_sum - redeemed_points_sum + reimbursed_points_sum - expired_points_sum AS outstanding_points_difference_sum,\n closing_outstanding_points_sum,\n is_point_reset_date,\n IF(closing_outstanding_points_sum > 0, closing_outstanding_points_sum, 0) AS positive_outstanding_points_sum,\n IF(closing_outstanding_points_sum > 0, closing_outstanding_points_sum, 0) AS negative_outstanding_points_sum,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM customer_group_daily_agg\n)\n\nSELECT * \nFROM customer_point_transaction_metrics_daily_res", "language": "sql", "refs": [{"name": "loyalty_stg__point_transaction", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__point_transaction"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_point_transaction AS (\nSELECT * \nFROM dev_dkruh1.loyalty_stg__point_transaction\nWHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1)\n), \n\ncustomer_group_daily_agg AS (\nSELECT\n created_date AS date,\n customer_group_id AS group_customer_id,\n merchant_group_id,\n SUM(points_transaction_amount) AS closing_outstanding_points_sum,\n SUM(IF(points_transaction_amount > 0 AND is_transaction_type_earning = 1, points_transaction_amount, 0)) AS earned_points_sum,\n SUM(IF(points_transaction_amount < 0 AND is_transaction_type_earning = 1, points_transaction_amount, 0)) AS earned_reversed_points_sum,\n SUM(IF(points_transaction_amount < 0 AND is_redeemed = 1, points_transaction_amount, 0)) AS redeemed_points_sum,\n SUM(IF(points_transaction_amount > 0 AND is_transaction_type_balance_only = 1, points_transaction_amount, 0)) AS reimbursed_points_sum,\n SUM(IF(points_transaction_amount < 0 AND is_expired = 1, points_transaction_amount, 0)) AS expired_points_sum,\n SMALLINT(MAX(IF(is_transaction_type_reset = 1,1,0))) AS is_point_reset_date\nFROM import_point_transaction\nGROUP BY 1,2,3\n),\n\ncustomer_point_transaction_metrics_daily_res AS (\nSELECT\n date,\n group_customer_id,\n merchant_group_id,\n earned_points_sum,\n earned_reversed_points_sum,\n redeemed_points_sum,\n reimbursed_points_sum,\n expired_points_sum,\n NVL(LAG(closing_outstanding_points_sum) OVER(PARTITION BY group_customer_id,merchant_group_id ORDER BY date),0) AS opening_outstanding_points_sum,\n earned_points_sum - earned_reversed_points_sum - redeemed_points_sum + reimbursed_points_sum - expired_points_sum AS outstanding_points_difference_sum,\n closing_outstanding_points_sum,\n is_point_reset_date,\n IF(closing_outstanding_points_sum > 0, closing_outstanding_points_sum, 0) AS positive_outstanding_points_sum,\n IF(closing_outstanding_points_sum > 0, closing_outstanding_points_sum, 0) AS negative_outstanding_points_sum,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM customer_group_daily_agg\n)\n\nSELECT * \nFROM customer_point_transaction_metrics_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_campaigns_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_campaigns_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_campaigns_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_campaigns_daily_snapshot", "loyalty__dim_campaigns_daily_snapshot"], "alias": "loyalty__dim_campaigns_daily_snapshot", "checksum": {"name": "sha256", "checksum": "a62caf05ed5290c562898507ea5ed8f2d8b4a7f3593bee1380f013fca30cf2c9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__dim_campaigns_daily_snapshot", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "min_spend_cents": {"name": "min_spend_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082672.7839892, "relation_name": "dev_dkruh1.loyalty__dim_campaigns_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__campaigns AS (\n\n SELECT * FROM {{ ref('loyalty_stg__campaigns') }}\n\n), loyalty__dim_campaigns_daily_snapshot AS (\n\n SELECT \n id,\n type,\n min_spend_cents,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__campaigns\n\n)\n\nSELECT * FROM loyalty__dim_campaigns_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__campaigns AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__campaigns\n\n), loyalty__dim_campaigns_daily_snapshot AS (\n\n SELECT \n id,\n type,\n min_spend_cents,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__campaigns\n\n)\n\nSELECT * FROM loyalty__dim_campaigns_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_customer_birthdays_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_customer_birthdays_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_customer_birthdays_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customer_birthdays_daily_snapshot", "loyalty__dim_customer_birthdays_daily_snapshot"], "alias": "loyalty__dim_customer_birthdays_daily_snapshot", "checksum": {"name": "sha256", "checksum": "2095dc78319ea9e0470087d9031b86f17b3adc6248b9e79790969c4515e07896"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__dim_customer_birthdays_daily_snapshot", "columns": {"group_customer_id": {"name": "group_customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "day": {"name": "day", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "month": {"name": "month", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "year": {"name": "year", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_sent": {"name": "last_sent", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082672.8277743, "relation_name": "dev_dkruh1.loyalty__dim_customer_birthdays_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__customer_birthdays AS (\n\n SELECT * FROM {{ ref('loyalty_stg__customer_birthdays') }}\n\n), loyalty_stg__customers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__customers') }}\n\n), loyalty__dim_customer_birthdays_daily_snapshot AS (\n\n SELECT \n loyalty_stg__customer_birthdays.group_customer_id,\n loyalty_stg__customer_birthdays.day,\n loyalty_stg__customer_birthdays.month,\n loyalty_stg__customer_birthdays.year,\n loyalty_stg__customer_birthdays.last_sent,\n loyalty_stg__customers.id as customer_id,\n loyalty_stg__customers.merchant_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__customers\n INNER JOIN loyalty_stg__customer_birthdays\n ON loyalty_stg__customer_birthdays.group_customer_id = loyalty_stg__customers.group_customer_id\n\n)\n\nSELECT * FROM loyalty__dim_customer_birthdays_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__customer_birthdays", "package": null, "version": null}, {"name": "loyalty_stg__customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__customer_birthdays", "model.yoda.loyalty_stg__customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__customer_birthdays AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__customer_birthdays\n\n), loyalty_stg__customers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__customers\n\n), loyalty__dim_customer_birthdays_daily_snapshot AS (\n\n SELECT \n loyalty_stg__customer_birthdays.group_customer_id,\n loyalty_stg__customer_birthdays.day,\n loyalty_stg__customer_birthdays.month,\n loyalty_stg__customer_birthdays.year,\n loyalty_stg__customer_birthdays.last_sent,\n loyalty_stg__customers.id as customer_id,\n loyalty_stg__customers.merchant_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__customers\n INNER JOIN loyalty_stg__customer_birthdays\n ON loyalty_stg__customer_birthdays.group_customer_id = loyalty_stg__customers.group_customer_id\n\n)\n\nSELECT * FROM loyalty__dim_customer_birthdays_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_customers_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_customers_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_customers_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customers_daily_snapshot", "loyalty__dim_customers_daily_snapshot"], "alias": "loyalty__dim_customers_daily_snapshot", "checksum": {"name": "sha256", "checksum": "6e03df02f65bb7f4397f00f93124ac567e9abd0cd7d6e34834166e00ba61a907"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__dim_customers_daily_snapshot", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_customer_id": {"name": "group_customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_id": {"name": "group_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_name": {"name": "first_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_number": {"name": "phone_number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_account_id": {"name": "store_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_balance": {"name": "points_balance", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_by_customer_id": {"name": "referred_by_customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vip_tier_id": {"name": "vip_tier_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_expiration_date": {"name": "tier_expiration_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_entry_date": {"name": "tier_entry_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_purchase_at": {"name": "last_purchase_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email_sent_count": {"name": "email_sent_count", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "state": {"name": "state", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_member": {"name": "is_member", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "exclude_from_reports": {"name": "exclude_from_reports", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "last_seen_at": {"name": "last_seen_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "platform_account_created_at": {"name": "platform_account_created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opted_in_at": {"name": "opted_in_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_loyalty_member": {"name": "is_loyalty_member", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082672.8648803, "relation_name": "dev_dkruh1.loyalty__dim_customers_daily_snapshot", "raw_code": "WITH agg_customers_emails_campaigns_temp AS (\n\n SELECT \n customer_id, \n sum(CASE WHEN sent THEN 1 ELSE 0 END) as email_sent_count\n FROM {{ ref('loyalty_stg__email_campaign_emails') }}\n GROUP BY customer_id\n\n),loyalty_stg__enriched_customers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__enriched_customers') }}\n\n),loyalty_stg__customers_vip_tiers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__customers_vip_tiers') }}\n\n),customers_platform_accounts AS (\n\n SELECT * FROM {{ ref('loyalty_stg__customers_platform_accounts') }}\n\n),customers_opt_in AS (\n\n SELECT * FROM {{ ref('loyalty_stg__customers_opt_in') }}\n\n),loyalty__dim_customers_daily_snapshot AS (\n\n SELECT \n loyalty_stg__enriched_customers.customer_id as id,\n loyalty_stg__enriched_customers.group_customer_id,\n loyalty_stg__enriched_customers.group_id,\n loyalty_stg__enriched_customers.merchant_id,\n loyalty_stg__enriched_customers.first_name,\n loyalty_stg__enriched_customers.last_name,\n loyalty_stg__enriched_customers.name,\n loyalty_stg__enriched_customers.email,\n loyalty_stg__enriched_customers.phone_number,\n loyalty_stg__enriched_customers.store_account_id,\n loyalty_stg__enriched_customers.points_balance,\n loyalty_stg__enriched_customers.points_earned,\n loyalty_stg__enriched_customers.referred_by_customer_id,\n loyalty_stg__customers_vip_tiers.tier_id as vip_tier_id,\n loyalty_stg__customers_vip_tiers.tier_expiration_date,\n loyalty_stg__customers_vip_tiers.tier_entry_date,\n loyalty_stg__enriched_customers.last_purchase_at,\n CASE WHEN agg_customers_emails_campaigns_temp.email_sent_count is null THEN 0 ELSE agg_customers_emails_campaigns_temp.email_sent_count END as email_sent_count,\n loyalty_stg__customers_vip_tiers.state,\n loyalty_stg__enriched_customers.created_at,\n loyalty_stg__enriched_customers.updated_at,\n loyalty_stg__enriched_customers.is_member,\n loyalty_stg__enriched_customers.exclude_from_reports,\n loyalty_stg__enriched_customers.last_seen_at,\n customers_platform_accounts.platform_account_created_at,\n customers_opt_in.opted_in_at,\n CASE WHEN customers_opt_in.customer_id IS NULL THEN false ELSE true END AS is_loyalty_member,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__enriched_customers\n LEFT JOIN loyalty_stg__customers_vip_tiers\n ON loyalty_stg__enriched_customers.customer_id = loyalty_stg__customers_vip_tiers.customer_id\n LEFT JOIN agg_customers_emails_campaigns_temp\n ON loyalty_stg__enriched_customers.customer_id = agg_customers_emails_campaigns_temp.customer_id\n LEFT JOIN customers_platform_accounts\n ON loyalty_stg__enriched_customers.customer_id = customers_platform_accounts.customer_id\n LEFT JOIN customers_opt_in\n ON loyalty_stg__enriched_customers.customer_id = customers_opt_in.customer_id\n\n)\n\nSELECT * FROM loyalty__dim_customers_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}, {"name": "loyalty_stg__enriched_customers", "package": null, "version": null}, {"name": "loyalty_stg__customers_vip_tiers", "package": null, "version": null}, {"name": "loyalty_stg__customers_platform_accounts", "package": null, "version": null}, {"name": "loyalty_stg__customers_opt_in", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__customers_vip_tiers", "model.yoda.loyalty_stg__customers_platform_accounts", "model.yoda.loyalty_stg__customers_opt_in"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.sql", "compiled": true, "compiled_code": "WITH agg_customers_emails_campaigns_temp AS (\n\n SELECT \n customer_id, \n sum(CASE WHEN sent THEN 1 ELSE 0 END) as email_sent_count\n FROM dev_dkruh1.loyalty_stg__email_campaign_emails\n GROUP BY customer_id\n\n),loyalty_stg__enriched_customers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__enriched_customers\n\n),loyalty_stg__customers_vip_tiers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__customers_vip_tiers\n\n),customers_platform_accounts AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__customers_platform_accounts\n\n),customers_opt_in AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__customers_opt_in\n\n),loyalty__dim_customers_daily_snapshot AS (\n\n SELECT \n loyalty_stg__enriched_customers.customer_id as id,\n loyalty_stg__enriched_customers.group_customer_id,\n loyalty_stg__enriched_customers.group_id,\n loyalty_stg__enriched_customers.merchant_id,\n loyalty_stg__enriched_customers.first_name,\n loyalty_stg__enriched_customers.last_name,\n loyalty_stg__enriched_customers.name,\n loyalty_stg__enriched_customers.email,\n loyalty_stg__enriched_customers.phone_number,\n loyalty_stg__enriched_customers.store_account_id,\n loyalty_stg__enriched_customers.points_balance,\n loyalty_stg__enriched_customers.points_earned,\n loyalty_stg__enriched_customers.referred_by_customer_id,\n loyalty_stg__customers_vip_tiers.tier_id as vip_tier_id,\n loyalty_stg__customers_vip_tiers.tier_expiration_date,\n loyalty_stg__customers_vip_tiers.tier_entry_date,\n loyalty_stg__enriched_customers.last_purchase_at,\n CASE WHEN agg_customers_emails_campaigns_temp.email_sent_count is null THEN 0 ELSE agg_customers_emails_campaigns_temp.email_sent_count END as email_sent_count,\n loyalty_stg__customers_vip_tiers.state,\n loyalty_stg__enriched_customers.created_at,\n loyalty_stg__enriched_customers.updated_at,\n loyalty_stg__enriched_customers.is_member,\n loyalty_stg__enriched_customers.exclude_from_reports,\n loyalty_stg__enriched_customers.last_seen_at,\n customers_platform_accounts.platform_account_created_at,\n customers_opt_in.opted_in_at,\n CASE WHEN customers_opt_in.customer_id IS NULL THEN false ELSE true END AS is_loyalty_member,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__enriched_customers\n LEFT JOIN loyalty_stg__customers_vip_tiers\n ON loyalty_stg__enriched_customers.customer_id = loyalty_stg__customers_vip_tiers.customer_id\n LEFT JOIN agg_customers_emails_campaigns_temp\n ON loyalty_stg__enriched_customers.customer_id = agg_customers_emails_campaigns_temp.customer_id\n LEFT JOIN customers_platform_accounts\n ON loyalty_stg__enriched_customers.customer_id = customers_platform_accounts.customer_id\n LEFT JOIN customers_opt_in\n ON loyalty_stg__enriched_customers.customer_id = customers_opt_in.customer_id\n\n)\n\nSELECT * FROM loyalty__dim_customers_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot"], "alias": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "checksum": {"name": "sha256", "checksum": "d30355e4042ffe9f2175678f02ed4256079249ea96e2ae2dc88ff5d1e0335db5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "columns": {"history_id": {"name": "history_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_name": {"name": "tier_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rank": {"name": "rank", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_balance": {"name": "points_balance", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_member": {"name": "is_member", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "vip_tier_id": {"name": "vip_tier_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_entry_date": {"name": "tier_entry_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_expiration_date": {"name": "tier_expiration_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "expired_at": {"name": "expired_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "action": {"name": "action", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_created_at": {"name": "customer_created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_updated_at": {"name": "customer_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_vip_tiers_history_created_at": {"name": "customer_vip_tiers_history_created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_vip_tiers_history_updated_at": {"name": "customer_vip_tiers_history_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082672.9303777, "relation_name": "dev_dkruh1.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__enriched_customers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__enriched_customers') }}\n\n), loyalty_stg__customers_vip_tiers_history AS (\n\n SELECT * FROM {{ ref('loyalty_stg__customers_vip_tiers_history') }}\n\n), loyalty_stg__vip_tiers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__vip_tiers') }}\n\n), loyalty__dim_customers_with_vip_tiers_history_daily_snapshot AS (\n\n SELECT\n loyalty_stg__customers_vip_tiers_history.id as history_id,\n loyalty_stg__enriched_customers.customer_id as id,\n loyalty_stg__enriched_customers.merchant_id,\n loyalty_stg__vip_tiers.name as tier_name,\n loyalty_stg__enriched_customers.email,\n loyalty_stg__vip_tiers.rank,\n loyalty_stg__enriched_customers.points_balance,\n loyalty_stg__enriched_customers.points_earned,\n loyalty_stg__enriched_customers.is_member,\n loyalty_stg__customers_vip_tiers_history.tier_id as vip_tier_id,\n loyalty_stg__customers_vip_tiers_history.tier_entry_date,\n loyalty_stg__customers_vip_tiers_history.tier_expiration_date,\n loyalty_stg__customers_vip_tiers_history.expired_at,\n loyalty_stg__customers_vip_tiers_history.action,\n loyalty_stg__enriched_customers.created_at as customer_created_at,\n loyalty_stg__enriched_customers.updated_at as customer_updated_at,\n loyalty_stg__customers_vip_tiers_history.created_at as customer_vip_tiers_history_created_at,\n loyalty_stg__customers_vip_tiers_history.updated_at as customer_vip_tiers_history_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__enriched_customers\n LEFT JOIN loyalty_stg__customers_vip_tiers_history\n ON loyalty_stg__enriched_customers.customer_id = loyalty_stg__customers_vip_tiers_history.customer_id\n LEFT JOIN loyalty_stg__vip_tiers\n ON loyalty_stg__vip_tiers.id = loyalty_stg__customers_vip_tiers_history.tier_id\n\n)\n\nSELECT * FROM loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__enriched_customers", "package": null, "version": null}, {"name": "loyalty_stg__customers_vip_tiers_history", "package": null, "version": null}, {"name": "loyalty_stg__vip_tiers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__customers_vip_tiers_history", "model.yoda.loyalty_stg__vip_tiers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__enriched_customers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__enriched_customers\n\n), loyalty_stg__customers_vip_tiers_history AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__customers_vip_tiers_history\n\n), loyalty_stg__vip_tiers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__vip_tiers\n\n), loyalty__dim_customers_with_vip_tiers_history_daily_snapshot AS (\n\n SELECT\n loyalty_stg__customers_vip_tiers_history.id as history_id,\n loyalty_stg__enriched_customers.customer_id as id,\n loyalty_stg__enriched_customers.merchant_id,\n loyalty_stg__vip_tiers.name as tier_name,\n loyalty_stg__enriched_customers.email,\n loyalty_stg__vip_tiers.rank,\n loyalty_stg__enriched_customers.points_balance,\n loyalty_stg__enriched_customers.points_earned,\n loyalty_stg__enriched_customers.is_member,\n loyalty_stg__customers_vip_tiers_history.tier_id as vip_tier_id,\n loyalty_stg__customers_vip_tiers_history.tier_entry_date,\n loyalty_stg__customers_vip_tiers_history.tier_expiration_date,\n loyalty_stg__customers_vip_tiers_history.expired_at,\n loyalty_stg__customers_vip_tiers_history.action,\n loyalty_stg__enriched_customers.created_at as customer_created_at,\n loyalty_stg__enriched_customers.updated_at as customer_updated_at,\n loyalty_stg__customers_vip_tiers_history.created_at as customer_vip_tiers_history_created_at,\n loyalty_stg__customers_vip_tiers_history.updated_at as customer_vip_tiers_history_updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__enriched_customers\n LEFT JOIN loyalty_stg__customers_vip_tiers_history\n ON loyalty_stg__enriched_customers.customer_id = loyalty_stg__customers_vip_tiers_history.customer_id\n LEFT JOIN loyalty_stg__vip_tiers\n ON loyalty_stg__vip_tiers.id = loyalty_stg__customers_vip_tiers_history.tier_id\n\n)\n\nSELECT * FROM loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_merchants_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_merchants_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_merchants_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_merchants_daily_snapshot", "loyalty__dim_merchants_daily_snapshot"], "alias": "loyalty__dim_merchants_daily_snapshot", "checksum": {"name": "sha256", "checksum": "ce3bb7e3374e6a3925879d6c97060dc2bb68311d9d3e7eede1eb648a932843f1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__dim_merchants_daily_snapshot", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "guid": {"name": "guid", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_name": {"name": "company_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "on_free_trial": {"name": "on_free_trial", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "platform": {"name": "platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_yotpo_industry": {"name": "account_yotpo_industry", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_yotpo_sub_industry": {"name": "account_yotpo_sub_industry", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_yotpo_industry_confidence_level": {"name": "account_yotpo_industry_confidence_level", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_account_data_excluded": {"name": "is_account_data_excluded", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "test_account": {"name": "test_account", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "app_key": {"name": "app_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082672.952836, "relation_name": "dev_dkruh1.loyalty__dim_merchants_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH sf_accounts_temp AS (\n\n SELECT \n organization_id,\n merchant_id,\n first(industry_name) AS industry_name,\n first(sub_industry_name) AS sub_industry_name,\n first(yotpo_industry_confidence_level) AS yotpo_industry_confidence_level,\n first(is_account_data_excluded) AS is_account_data_excluded\n FROM {{ ref('analytics___salesforce__account') }}\n WHERE industry_name is not null\n GROUP BY 1,2\n\n),loyalty_stg__merchants AS (\n\n SELECT * FROM {{ ref('loyalty_stg__merchants') }}\n\n),loyalty_stg__yotpo_platform_accounts AS (\n\n SELECT * FROM {{ ref('loyalty_stg__yotpo_platform_accounts') }}\n\n), loyalty__dim_merchants_daily_snapshot AS (\n\n SELECT \n loyalty_stg__merchants.id,\n first(loyalty_stg__merchants.guid) as guid,\n first(loyalty_stg__merchants.website) as website,\n first(loyalty_stg__merchants.company_name) as company_name,\n first(loyalty_stg__merchants.on_free_trial) as on_free_trial,\n first(loyalty_stg__merchants.created_at) as created_at,\n first(loyalty_stg__merchants.updated_at) as updated_at,\n first(loyalty_stg__merchants.platform) as platform,\n first(loyalty_stg__merchants.currency) as currency,\n first(sf_accounts_temp.industry_name) as account_yotpo_industry,\n first(sf_accounts_temp.sub_industry_name) as account_yotpo_sub_industry,\n first(sf_accounts_temp.yotpo_industry_confidence_level) as account_yotpo_industry_confidence_level,\n first(sf_accounts_temp.is_account_data_excluded) as is_account_data_excluded,\n first(loyalty_stg__merchants.test_account) as test_account,\n first(loyalty_stg__yotpo_platform_accounts.app_key) as app_key,\n first(loyalty_stg__merchants.group_id) as group_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__merchants\n LEFT JOIN loyalty_stg__yotpo_platform_accounts ON (loyalty_stg__merchants.id = loyalty_stg__yotpo_platform_accounts.merchant_id)\n LEFT JOIN sf_accounts_temp ON (sf_accounts_temp.merchant_id = loyalty_stg__merchants.id OR sf_accounts_temp.organization_id = loyalty_stg__yotpo_platform_accounts.org_key)\n GROUP BY 1\n\n)\n\nSELECT * FROM loyalty__dim_merchants_daily_snapshot", "language": "sql", "refs": [{"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "loyalty_stg__merchants", "package": null, "version": null}, {"name": "loyalty_stg__yotpo_platform_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___salesforce__account", "model.yoda.loyalty_stg__merchants", "model.yoda.loyalty_stg__yotpo_platform_accounts"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH sf_accounts_temp AS (\n\n SELECT \n organization_id,\n merchant_id,\n first(industry_name) AS industry_name,\n first(sub_industry_name) AS sub_industry_name,\n first(yotpo_industry_confidence_level) AS yotpo_industry_confidence_level,\n first(is_account_data_excluded) AS is_account_data_excluded\n FROM dev_dkruh1.analytics___salesforce__account\n WHERE industry_name is not null\n GROUP BY 1,2\n\n),loyalty_stg__merchants AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__merchants\n\n),loyalty_stg__yotpo_platform_accounts AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__yotpo_platform_accounts\n\n), loyalty__dim_merchants_daily_snapshot AS (\n\n SELECT \n loyalty_stg__merchants.id,\n first(loyalty_stg__merchants.guid) as guid,\n first(loyalty_stg__merchants.website) as website,\n first(loyalty_stg__merchants.company_name) as company_name,\n first(loyalty_stg__merchants.on_free_trial) as on_free_trial,\n first(loyalty_stg__merchants.created_at) as created_at,\n first(loyalty_stg__merchants.updated_at) as updated_at,\n first(loyalty_stg__merchants.platform) as platform,\n first(loyalty_stg__merchants.currency) as currency,\n first(sf_accounts_temp.industry_name) as account_yotpo_industry,\n first(sf_accounts_temp.sub_industry_name) as account_yotpo_sub_industry,\n first(sf_accounts_temp.yotpo_industry_confidence_level) as account_yotpo_industry_confidence_level,\n first(sf_accounts_temp.is_account_data_excluded) as is_account_data_excluded,\n first(loyalty_stg__merchants.test_account) as test_account,\n first(loyalty_stg__yotpo_platform_accounts.app_key) as app_key,\n first(loyalty_stg__merchants.group_id) as group_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__merchants\n LEFT JOIN loyalty_stg__yotpo_platform_accounts ON (loyalty_stg__merchants.id = loyalty_stg__yotpo_platform_accounts.merchant_id)\n LEFT JOIN sf_accounts_temp ON (sf_accounts_temp.merchant_id = loyalty_stg__merchants.id OR sf_accounts_temp.organization_id = loyalty_stg__yotpo_platform_accounts.org_key)\n GROUP BY 1\n\n)\n\nSELECT * FROM loyalty__dim_merchants_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_referral_codes_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_referral_codes_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_referral_codes_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_referral_codes_daily_snapshot", "loyalty__dim_referral_codes_daily_snapshot"], "alias": "loyalty__dim_referral_codes_daily_snapshot", "checksum": {"name": "sha256", "checksum": "833ded1b612eb4802570f98706073b75cabd60f75bf5505368c2d520c83512c3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__dim_referral_codes_daily_snapshot", "columns": {"merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "links_clicked": {"name": "links_clicked", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shares": {"name": "shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_customer_id": {"name": "referred_customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_usd": {"name": "amount_usd", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount": {"name": "amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082672.989583, "relation_name": "dev_dkruh1.loyalty__dim_referral_codes_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__referral_codes AS (\n\n SELECT * FROM {{ ref('loyalty_stg__referral_codes') }}\n\n), loyalty_stg__referrals AS (\n\n SELECT * FROM {{ ref('loyalty_stg__referrals') }}\n\n), loyalty_stg__currency_rates AS (\n\n SELECT * FROM {{ ref('loyalty_stg__currency_rates') }}\n\n), loyalty__dim_referral_codes_daily_snapshot AS (\n\n SELECT \n loyalty_stg__referral_codes.merchant_id,\n loyalty_stg__referral_codes.customer_id,\n loyalty_stg__referral_codes.created_at,\n loyalty_stg__referral_codes.links_clicked,\n loyalty_stg__referral_codes.campaign_id,\n loyalty_stg__referral_codes.shares,\n loyalty_stg__referrals.referral_code_id,\n loyalty_stg__referrals.id AS referral_id,\n loyalty_stg__referrals.customer_id AS referred_customer_id,\n loyalty_stg__referrals.amount_cents,\n loyalty_stg__referrals.currency,\n (loyalty_stg__referrals.amount_cents / 100) / loyalty_stg__currency_rates.currency AS amount_usd,\n (loyalty_stg__referrals.amount_cents / 100) AS amount,\n loyalty_stg__referrals.completed_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referral_codes\n LEFT JOIN loyalty_stg__referrals \n ON referral_code_id = loyalty_stg__referral_codes.id\n LEFT JOIN loyalty_stg__currency_rates\n ON (loyalty_stg__currency_rates.country = UPPER(loyalty_stg__referrals.currency))\n AND (loyalty_stg__currency_rates.date = cast(loyalty_stg__referrals.completed_at as date))\n\n)\n\nSELECT * FROM loyalty__dim_referral_codes_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__referral_codes", "package": null, "version": null}, {"name": "loyalty_stg__referrals", "package": null, "version": null}, {"name": "loyalty_stg__currency_rates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__referral_codes", "model.yoda.loyalty_stg__referrals", "model.yoda.loyalty_stg__currency_rates"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__referral_codes AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__referral_codes\n\n), loyalty_stg__referrals AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__referrals\n\n), loyalty_stg__currency_rates AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__currency_rates\n\n), loyalty__dim_referral_codes_daily_snapshot AS (\n\n SELECT \n loyalty_stg__referral_codes.merchant_id,\n loyalty_stg__referral_codes.customer_id,\n loyalty_stg__referral_codes.created_at,\n loyalty_stg__referral_codes.links_clicked,\n loyalty_stg__referral_codes.campaign_id,\n loyalty_stg__referral_codes.shares,\n loyalty_stg__referrals.referral_code_id,\n loyalty_stg__referrals.id AS referral_id,\n loyalty_stg__referrals.customer_id AS referred_customer_id,\n loyalty_stg__referrals.amount_cents,\n loyalty_stg__referrals.currency,\n (loyalty_stg__referrals.amount_cents / 100) / loyalty_stg__currency_rates.currency AS amount_usd,\n (loyalty_stg__referrals.amount_cents / 100) AS amount,\n loyalty_stg__referrals.completed_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referral_codes\n LEFT JOIN loyalty_stg__referrals \n ON referral_code_id = loyalty_stg__referral_codes.id\n LEFT JOIN loyalty_stg__currency_rates\n ON (loyalty_stg__currency_rates.country = UPPER(loyalty_stg__referrals.currency))\n AND (loyalty_stg__currency_rates.date = cast(loyalty_stg__referrals.completed_at as date))\n\n)\n\nSELECT * FROM loyalty__dim_referral_codes_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_referral_discount_codes_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_referral_discount_codes_daily_snapshot", "loyalty__dim_referral_discount_codes_daily_snapshot"], "alias": "loyalty__dim_referral_discount_codes_daily_snapshot", "checksum": {"name": "sha256", "checksum": "92aa06539fb9bb4f04d569f36f44a5e3d7db9423445d59244a7c3a17abe58c25"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__dim_referral_discount_codes_daily_snapshot", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_amount_cents": {"name": "average_amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.0064852, "relation_name": "dev_dkruh1.loyalty__dim_referral_discount_codes_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__referral_discount_codes AS (\n\n SELECT * FROM {{ ref('loyalty_stg__referral_discount_codes') }}\n\n), loyalty__dim_referral_discount_codes_daily_snapshot AS (\n\n SELECT \n id,\n redemption_option_id,\n campaign_id,\n merchant_id,\n customer_id,\n amount_cents,\n average_amount_cents,\n orders,\n created_at,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referral_discount_codes\n\n)\n\nSELECT * FROM loyalty__dim_referral_discount_codes_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__referral_discount_codes", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__referral_discount_codes"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__referral_discount_codes AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__referral_discount_codes\n\n), loyalty__dim_referral_discount_codes_daily_snapshot AS (\n\n SELECT \n id,\n redemption_option_id,\n campaign_id,\n merchant_id,\n customer_id,\n amount_cents,\n average_amount_cents,\n orders,\n created_at,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referral_discount_codes\n\n)\n\nSELECT * FROM loyalty__dim_referral_discount_codes_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_subscriptions_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_subscriptions_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_subscriptions_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_subscriptions_daily_snapshot", "loyalty__dim_subscriptions_daily_snapshot"], "alias": "loyalty__dim_subscriptions_daily_snapshot", "checksum": {"name": "sha256", "checksum": "5ee2b56ef8646636a60fbca03f548e25084f12f205e79aa6b091a2dc843b438e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__dim_subscriptions_daily_snapshot", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current": {"name": "current", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "plan_id": {"name": "plan_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "was_current": {"name": "was_current", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "daily_amount": {"name": "daily_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "monthly_amount": {"name": "monthly_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yearly_amount": {"name": "yearly_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "daily_amount_usd": {"name": "daily_amount_usd", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "monthly_amount_usd": {"name": "monthly_amount_usd", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yearly_amount_usd": {"name": "yearly_amount_usd", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "merchant_currency": {"name": "merchant_currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.036811, "relation_name": "dev_dkruh1.loyalty__dim_subscriptions_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__subscriptions AS (\n\n SELECT * FROM {{ ref('loyalty_stg__subscriptions') }}\n\n), loyalty__dim_merchants_daily_snapshot AS (\n\n SELECT * FROM {{ ref('loyalty__dim_merchants_daily_snapshot') }}\n\n), loyalty_stg__currency_rates AS (\n\n SELECT * FROM {{ ref('loyalty_stg__currency_rates') }}\n\n), loyalty__dim_subscriptions_daily_snapshot AS (\n\n SELECT \n loyalty_stg__subscriptions.id,\n loyalty_stg__subscriptions.merchant_id,\n loyalty_stg__subscriptions.current,\n loyalty_stg__subscriptions.plan_id,\n loyalty_stg__subscriptions.was_current,\n 12 * ((loyalty_stg__subscriptions.base_price_cents / 100) * loyalty_stg__currency_rates.currency) / 365 AS daily_amount,\n (loyalty_stg__subscriptions.base_price_cents / 100) * loyalty_stg__currency_rates.currency AS monthly_amount,\n 12 * (loyalty_stg__subscriptions.base_price_cents / 100) * loyalty_stg__currency_rates.currency AS yearly_amount,\n 12 * (loyalty_stg__subscriptions.base_price_cents / 100) / 365 AS daily_amount_usd,\n (loyalty_stg__subscriptions.base_price_cents / 100) AS monthly_amount_usd,\n 12 * (loyalty_stg__subscriptions.base_price_cents / 100) AS yearly_amount_usd,\n loyalty__dim_merchants_daily_snapshot.currency AS merchant_currency,\n loyalty_stg__subscriptions.created_at,\n loyalty_stg__subscriptions.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__subscriptions\n LEFT JOIN loyalty__dim_merchants_daily_snapshot\n ON (loyalty__dim_merchants_daily_snapshot.id = loyalty_stg__subscriptions.merchant_id)\n LEFT JOIN loyalty_stg__currency_rates\n ON (loyalty_stg__currency_rates.country = UPPER(loyalty__dim_merchants_daily_snapshot.currency))\n AND (loyalty_stg__currency_rates.date = cast(loyalty_stg__subscriptions.created_at as date))\n WHERE loyalty_stg__subscriptions.current = 1\n OR loyalty_stg__subscriptions.was_current = 1\n\n)\n\nSELECT * FROM loyalty__dim_subscriptions_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__subscriptions", "package": null, "version": null}, {"name": "loyalty__dim_merchants_daily_snapshot", "package": null, "version": null}, {"name": "loyalty_stg__currency_rates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__subscriptions", "model.yoda.loyalty__dim_merchants_daily_snapshot", "model.yoda.loyalty_stg__currency_rates"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__subscriptions AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__subscriptions\n\n), loyalty__dim_merchants_daily_snapshot AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_merchants_daily_snapshot\n\n), loyalty_stg__currency_rates AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__currency_rates\n\n), loyalty__dim_subscriptions_daily_snapshot AS (\n\n SELECT \n loyalty_stg__subscriptions.id,\n loyalty_stg__subscriptions.merchant_id,\n loyalty_stg__subscriptions.current,\n loyalty_stg__subscriptions.plan_id,\n loyalty_stg__subscriptions.was_current,\n 12 * ((loyalty_stg__subscriptions.base_price_cents / 100) * loyalty_stg__currency_rates.currency) / 365 AS daily_amount,\n (loyalty_stg__subscriptions.base_price_cents / 100) * loyalty_stg__currency_rates.currency AS monthly_amount,\n 12 * (loyalty_stg__subscriptions.base_price_cents / 100) * loyalty_stg__currency_rates.currency AS yearly_amount,\n 12 * (loyalty_stg__subscriptions.base_price_cents / 100) / 365 AS daily_amount_usd,\n (loyalty_stg__subscriptions.base_price_cents / 100) AS monthly_amount_usd,\n 12 * (loyalty_stg__subscriptions.base_price_cents / 100) AS yearly_amount_usd,\n loyalty__dim_merchants_daily_snapshot.currency AS merchant_currency,\n loyalty_stg__subscriptions.created_at,\n loyalty_stg__subscriptions.updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__subscriptions\n LEFT JOIN loyalty__dim_merchants_daily_snapshot\n ON (loyalty__dim_merchants_daily_snapshot.id = loyalty_stg__subscriptions.merchant_id)\n LEFT JOIN loyalty_stg__currency_rates\n ON (loyalty_stg__currency_rates.country = UPPER(loyalty__dim_merchants_daily_snapshot.currency))\n AND (loyalty_stg__currency_rates.date = cast(loyalty_stg__subscriptions.created_at as date))\n WHERE loyalty_stg__subscriptions.current = 1\n OR loyalty_stg__subscriptions.was_current = 1\n\n)\n\nSELECT * FROM loyalty__dim_subscriptions_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_vip_tiers_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_vip_tiers_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_vip_tiers_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_vip_tiers_daily_snapshot", "loyalty__dim_vip_tiers_daily_snapshot"], "alias": "loyalty__dim_vip_tiers_daily_snapshot", "checksum": {"name": "sha256", "checksum": "e8502a388bca1b5bc973448153eda72db6f7d5f065470d7c196f0860dcbf0840"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__dim_vip_tiers_daily_snapshot", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rank": {"name": "rank", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.0644677, "relation_name": "dev_dkruh1.loyalty__dim_vip_tiers_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__vip_tiers_thresholds AS (\n\n SELECT * FROM {{ ref('loyalty_stg__vip_tiers_thresholds') }}\n\n), loyalty_stg__vip_tiers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__vip_tiers') }}\n\n), loyalty__dim_vip_tiers_daily_snapshot AS (\n\n SELECT \n loyalty_stg__vip_tiers.id,\n loyalty_stg__vip_tiers.merchant_id,\n loyalty_stg__vip_tiers.rank,\n loyalty_stg__vip_tiers.name,\n loyalty_stg__vip_tiers.description,\n loyalty_stg__vip_tiers_thresholds.points_earned,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__vip_tiers\n LEFT JOIN loyalty_stg__vip_tiers_thresholds \n ON loyalty_stg__vip_tiers.id = loyalty_stg__vip_tiers_thresholds.tier_id\n WHERE loyalty_stg__vip_tiers_thresholds.type = 'EntryVipTiersThreshold'\n\n)\n\nSELECT * FROM loyalty__dim_vip_tiers_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__vip_tiers_thresholds", "package": null, "version": null}, {"name": "loyalty_stg__vip_tiers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__vip_tiers_thresholds", "model.yoda.loyalty_stg__vip_tiers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__vip_tiers_thresholds AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__vip_tiers_thresholds\n\n), loyalty_stg__vip_tiers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__vip_tiers\n\n), loyalty__dim_vip_tiers_daily_snapshot AS (\n\n SELECT \n loyalty_stg__vip_tiers.id,\n loyalty_stg__vip_tiers.merchant_id,\n loyalty_stg__vip_tiers.rank,\n loyalty_stg__vip_tiers.name,\n loyalty_stg__vip_tiers.description,\n loyalty_stg__vip_tiers_thresholds.points_earned,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__vip_tiers\n LEFT JOIN loyalty_stg__vip_tiers_thresholds \n ON loyalty_stg__vip_tiers.id = loyalty_stg__vip_tiers_thresholds.tier_id\n WHERE loyalty_stg__vip_tiers_thresholds.type = 'EntryVipTiersThreshold'\n\n)\n\nSELECT * FROM loyalty__dim_vip_tiers_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_vip_tiers_history_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_vip_tiers_history_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_vip_tiers_history_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_vip_tiers_history_daily_snapshot", "loyalty__dim_vip_tiers_history_daily_snapshot"], "alias": "loyalty__dim_vip_tiers_history_daily_snapshot", "checksum": {"name": "sha256", "checksum": "c83c3e582d5e3c2d066ab57c3b1deeca2cd3bed961b58ffa05b064be4e7f4ef9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__dim_vip_tiers_history_daily_snapshot", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rank": {"name": "rank", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "calculated_rank": {"name": "calculated_rank", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action": {"name": "action", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_performed_at": {"name": "action_performed_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_id": {"name": "tier_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_entry_date": {"name": "tier_entry_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_expiration_date": {"name": "tier_expiration_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "expired_at": {"name": "expired_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "next_action": {"name": "next_action", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "next_action_performed_at": {"name": "next_action_performed_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "next_tier_rank": {"name": "next_tier_rank", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "next_tier_name": {"name": "next_tier_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.0979276, "relation_name": "dev_dkruh1.loyalty__dim_vip_tiers_history_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__customers_vip_tiers_history AS (\n\n SELECT * FROM {{ ref('loyalty_stg__customers_vip_tiers_history') }}\n\n), loyalty_stg__vip_tiers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__vip_tiers') }}\n\n), vip_tiers_history_precalculation AS (\n\n SELECT\n customers_tiers_history.id,\n customers_tiers_history.merchant_id,\n customers_tiers_history.customer_id,\n loyalty_stg__vip_tiers.name,\n loyalty_stg__vip_tiers.rank,\n customers_tiers_history.action,\n customers_tiers_history.tier_id,\n customers_tiers_history.tier_entry_date,\n customers_tiers_history.tier_expiration_date,\n customers_tiers_history.expired_at,\n customers_tiers_history.created_at,\n customers_tiers_history.updated_at,\n CASE WHEN customers_tiers_history.action = 'Dropped to' THEN customers_tiers_history.created_at ELSE customers_tiers_history.tier_entry_date END AS action_performed_at,\n CASE WHEN loyalty_stg__vip_tiers.rank IS NULL THEN -1 ELSE loyalty_stg__vip_tiers.rank END AS calculated_rank\n FROM loyalty_stg__customers_vip_tiers_history as customers_tiers_history\n LEFT JOIN loyalty_stg__vip_tiers\n ON customers_tiers_history.tier_id = loyalty_stg__vip_tiers.id\n\n), loyalty__dim_vip_tiers_history_daily_snapshot AS (\n\n SELECT\n id,\n merchant_id,\n customer_id,\n name,\n rank,\n calculated_rank,\n action,\n action_performed_at,\n tier_id,\n tier_entry_date,\n tier_expiration_date,\n expired_at,\n created_at,\n updated_at,\n lead(action, 1) OVER (partition by customer_id order by action_performed_at asc) as next_action,\n lead(action_performed_at, 1) OVER (partition by customer_id order by action_performed_at asc) as next_action_performed_at,\n lead(calculated_rank, 1) OVER (partition by customer_id order by action_performed_at asc) as next_tier_rank,\n lead(name, 1) OVER (partition by customer_id order by action_performed_at asc) as next_tier_name,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM vip_tiers_history_precalculation\n\n)\n\nSELECT * FROM loyalty__dim_vip_tiers_history_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__customers_vip_tiers_history", "package": null, "version": null}, {"name": "loyalty_stg__vip_tiers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__customers_vip_tiers_history", "model.yoda.loyalty_stg__vip_tiers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__customers_vip_tiers_history AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__customers_vip_tiers_history\n\n), loyalty_stg__vip_tiers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__vip_tiers\n\n), vip_tiers_history_precalculation AS (\n\n SELECT\n customers_tiers_history.id,\n customers_tiers_history.merchant_id,\n customers_tiers_history.customer_id,\n loyalty_stg__vip_tiers.name,\n loyalty_stg__vip_tiers.rank,\n customers_tiers_history.action,\n customers_tiers_history.tier_id,\n customers_tiers_history.tier_entry_date,\n customers_tiers_history.tier_expiration_date,\n customers_tiers_history.expired_at,\n customers_tiers_history.created_at,\n customers_tiers_history.updated_at,\n CASE WHEN customers_tiers_history.action = 'Dropped to' THEN customers_tiers_history.created_at ELSE customers_tiers_history.tier_entry_date END AS action_performed_at,\n CASE WHEN loyalty_stg__vip_tiers.rank IS NULL THEN -1 ELSE loyalty_stg__vip_tiers.rank END AS calculated_rank\n FROM loyalty_stg__customers_vip_tiers_history as customers_tiers_history\n LEFT JOIN loyalty_stg__vip_tiers\n ON customers_tiers_history.tier_id = loyalty_stg__vip_tiers.id\n\n), loyalty__dim_vip_tiers_history_daily_snapshot AS (\n\n SELECT\n id,\n merchant_id,\n customer_id,\n name,\n rank,\n calculated_rank,\n action,\n action_performed_at,\n tier_id,\n tier_entry_date,\n tier_expiration_date,\n expired_at,\n created_at,\n updated_at,\n lead(action, 1) OVER (partition by customer_id order by action_performed_at asc) as next_action,\n lead(action_performed_at, 1) OVER (partition by customer_id order by action_performed_at asc) as next_action_performed_at,\n lead(calculated_rank, 1) OVER (partition by customer_id order by action_performed_at asc) as next_tier_rank,\n lead(name, 1) OVER (partition by customer_id order by action_performed_at asc) as next_tier_name,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM vip_tiers_history_precalculation\n\n)\n\nSELECT * FROM loyalty__dim_vip_tiers_history_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "loyalty__dim_yotpo_platform_accounts_daily_snapshot"], "alias": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "checksum": {"name": "sha256", "checksum": "2ab07fd6787efb5907f86ab110b80319782bee75d33279d5f8b33e2c2130dbce"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_key": {"name": "org_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "has_secret": {"name": "has_secret", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.1130853, "relation_name": "dev_dkruh1.loyalty__dim_yotpo_platform_accounts_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__yotpo_platform_accounts AS (\n\n SELECT * FROM {{ ref('loyalty_stg__yotpo_platform_accounts') }}\n\n), loyalty__dim_yotpo_platform_accounts_daily_snapshot AS (\n\n SELECT \n id,\n app_key,\n org_key,\n merchant_id,\n created_at,\n updated_at,\n CASE WHEN app_secret IS NOT NULL THEN 1 ELSE 0 END AS has_secret,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__yotpo_platform_accounts\n\n)\n\nSELECT * FROM loyalty__dim_yotpo_platform_accounts_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__yotpo_platform_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__yotpo_platform_accounts"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__yotpo_platform_accounts AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__yotpo_platform_accounts\n\n), loyalty__dim_yotpo_platform_accounts_daily_snapshot AS (\n\n SELECT \n id,\n app_key,\n org_key,\n merchant_id,\n created_at,\n updated_at,\n CASE WHEN app_secret IS NOT NULL THEN 1 ELSE 0 END AS has_secret,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__yotpo_platform_accounts\n\n)\n\nSELECT * FROM loyalty__dim_yotpo_platform_accounts_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_dates_for_investment_metric_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_dates_for_investment_metric_daily_snapshot", "loyalty__fact_dates_for_investment_metric_daily_snapshot"], "alias": "loyalty__fact_dates_for_investment_metric_daily_snapshot", "checksum": {"name": "sha256", "checksum": "a31ddf1226992303ab90ef337317c9076d1292b8f837c2ca879bdea6ff756e34"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__fact_dates_for_investment_metric_daily_snapshot", "columns": {"investment_date": {"name": "investment_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.1348503, "relation_name": "dev_dkruh1.loyalty__fact_dates_for_investment_metric_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty__fact_dates_for_investment_metric_daily_snapshot AS (\n\n SELECT \n explode(sequence(to_date('2015-01-01'), current_date(), interval 1 day)) as investment_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n\n)\n\nSELECT * FROM loyalty__fact_dates_for_investment_metric_daily_snapshot", "language": "sql", "refs": [], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": []}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty__fact_dates_for_investment_metric_daily_snapshot AS (\n\n SELECT \n explode(sequence(to_date('2015-01-01'), current_date(), interval 1 day)) as investment_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n\n)\n\nSELECT * FROM loyalty__fact_dates_for_investment_metric_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_email_campaigns_emails_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_email_campaigns_emails_daily_snapshot", "loyalty__fact_email_campaigns_emails_daily_snapshot"], "alias": "loyalty__fact_email_campaigns_emails_daily_snapshot", "checksum": {"name": "sha256", "checksum": "6b0136b093305d335c082c5ac6cd59bbf9c77838ef033206e3e0fc3496f985a4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__fact_email_campaigns_emails_daily_snapshot", "columns": {"customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_campaign_id": {"name": "email_campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent_at": {"name": "sent_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "clicked": {"name": "clicked", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "clicked_at": {"name": "clicked_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "unsubscribed": {"name": "unsubscribed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "unsubscribed_at": {"name": "unsubscribed_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "marked_as_spam": {"name": "marked_as_spam", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "marked_as_spam_at": {"name": "marked_as_spam_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.166344, "relation_name": "dev_dkruh1.loyalty__fact_email_campaigns_emails_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__email_campaign_emails AS (\n\n SELECT * FROM {{ ref('loyalty_stg__email_campaign_emails') }}\n\n), loyalty__fact_email_campaigns_emails_daily_snapshot AS (\n\n SELECT \n customer_id,\n merchant_id,\n email_campaign_id,\n sent_at,\n clicked,\n clicked_at,\n unsubscribed,\n unsubscribed_at,\n marked_as_spam,\n marked_as_spam_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__email_campaign_emails\n WHERE customer_id IS NOT NULL \n AND merchant_id IS NOT NULL\n\n)\n\nSELECT * FROM loyalty__fact_email_campaigns_emails_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__email_campaign_emails AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__email_campaign_emails\n\n), loyalty__fact_email_campaigns_emails_daily_snapshot AS (\n\n SELECT \n customer_id,\n merchant_id,\n email_campaign_id,\n sent_at,\n clicked,\n clicked_at,\n unsubscribed,\n unsubscribed_at,\n marked_as_spam,\n marked_as_spam_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__email_campaign_emails\n WHERE customer_id IS NOT NULL \n AND merchant_id IS NOT NULL\n\n)\n\nSELECT * FROM loyalty__fact_email_campaigns_emails_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_perks_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_perks_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_perks_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_perks_daily_snapshot", "loyalty__fact_perks_daily_snapshot"], "alias": "loyalty__fact_perks_daily_snapshot", "checksum": {"name": "sha256", "checksum": "48d840a61af0675756b5792922d3db8e318ae03aebf98734207e27bbefc0e674"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__fact_perks_daily_snapshot", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_points": {"name": "reward_points", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reversed": {"name": "reversed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "completed": {"name": "completed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_member": {"name": "is_member", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.1944983, "relation_name": "dev_dkruh1.loyalty__fact_perks_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__perks AS (\n\n SELECT * FROM {{ ref('loyalty_stg__perks') }}\n\n), loyalty_stg__customers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__customers') }}\n\n), loyalty__fact_perks_daily_snapshot AS (\n\n SELECT \n loyalty_stg__perks.id,\n loyalty_stg__perks.reward_points,\n loyalty_stg__perks.reversed,\n loyalty_stg__perks.completed,\n loyalty_stg__perks.completed_at,\n loyalty_stg__perks.merchant_id,\n loyalty_stg__perks.created_at,\n loyalty_stg__perks.customer_id,\n loyalty_stg__customers.is_member,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__perks\n INNER JOIN loyalty_stg__customers ON(loyalty_stg__perks.customer_id = loyalty_stg__customers.id)\n\n)\n\nSELECT * FROM loyalty__fact_perks_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__perks", "package": null, "version": null}, {"name": "loyalty_stg__customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__perks", "model.yoda.loyalty_stg__customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_stg__perks AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__perks\n\n), loyalty_stg__customers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__customers\n\n), loyalty__fact_perks_daily_snapshot AS (\n\n SELECT \n loyalty_stg__perks.id,\n loyalty_stg__perks.reward_points,\n loyalty_stg__perks.reversed,\n loyalty_stg__perks.completed,\n loyalty_stg__perks.completed_at,\n loyalty_stg__perks.merchant_id,\n loyalty_stg__perks.created_at,\n loyalty_stg__perks.customer_id,\n loyalty_stg__customers.is_member,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__perks\n INNER JOIN loyalty_stg__customers ON(loyalty_stg__perks.customer_id = loyalty_stg__customers.id)\n\n)\n\nSELECT * FROM loyalty__fact_perks_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_purchase_items_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_purchase_items_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_purchase_items_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_purchase_items_daily_snapshot", "loyalty__fact_purchase_items_daily_snapshot"], "alias": "loyalty__fact_purchase_items_daily_snapshot", "checksum": {"name": "sha256", "checksum": "6e63835d230eefd700187a2b8b60b64caec2560bdc58be893614dee93d5a73c3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_photon_with_intensive_memory"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["created_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty__fact_purchase_items_daily_snapshot", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_cents": {"name": "price_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_usd": {"name": "price_usd", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price": {"name": "price", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "purchase_item_currency": {"name": "purchase_item_currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date": {"name": "created_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_photon_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "incremental", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_photon_with_intensive_memory"}}, "incremental_strategy": "append", "partition_by": ["created_date"]}, "created_at": 1700082673.2228365, "relation_name": "dev_dkruh1.loyalty__fact_purchase_items_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy='append',\n partition_by = ['created_date']\n )\n}}\n\nWITH loyalty_stg__purchase_items AS (\n\n SELECT * FROM {{ ref('loyalty_stg__purchase_items') }}\n {% if is_incremental() %}\n where (created_at) < CURRENT_DATE and created_at >= (SELECT MAX(created_date) + 1 FROM {{this}}) \n {% endif %}\n\n\n), loyalty_stg__currency_rates AS (\n\n SELECT * FROM {{ ref('loyalty_stg__currency_rates') }} currency\n {% if is_incremental() %}\n where currency.date < CURRENT_DATE and currency.date > (SELECT MAX(created_date) FROM {{this}}) \n {% endif %}\n\n), loyalty__fact_purchase_items_daily_snapshot AS (\n\n SELECT\n loyalty_stg__purchase_items.id,\n loyalty_stg__purchase_items.purchase_id,\n loyalty_stg__purchase_items.product_id,\n loyalty_stg__purchase_items.quantity,\n loyalty_stg__purchase_items.price_cents,\n (loyalty_stg__purchase_items.price_cents / 100) / loyalty_stg__currency_rates.currency AS price_usd,\n (loyalty_stg__purchase_items.price_cents / 100) AS price,\n loyalty_stg__purchase_items.currency AS purchase_item_currency,\n date(loyalty_stg__purchase_items.created_at) as created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__purchase_items\n LEFT JOIN loyalty_stg__currency_rates\n ON (loyalty_stg__currency_rates.country = UPPER(loyalty_stg__purchase_items.currency))\n AND (loyalty_stg__currency_rates.date = cast(loyalty_stg__purchase_items.created_at as date))\n\n)\n\nSELECT * FROM loyalty__fact_purchase_items_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__purchase_items", "package": null, "version": null}, {"name": "loyalty_stg__currency_rates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__purchase_items", "model.yoda.loyalty_stg__currency_rates"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\nWITH loyalty_stg__purchase_items AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__purchase_items\n \n\n\n), loyalty_stg__currency_rates AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__currency_rates currency\n \n\n), loyalty__fact_purchase_items_daily_snapshot AS (\n\n SELECT\n loyalty_stg__purchase_items.id,\n loyalty_stg__purchase_items.purchase_id,\n loyalty_stg__purchase_items.product_id,\n loyalty_stg__purchase_items.quantity,\n loyalty_stg__purchase_items.price_cents,\n (loyalty_stg__purchase_items.price_cents / 100) / loyalty_stg__currency_rates.currency AS price_usd,\n (loyalty_stg__purchase_items.price_cents / 100) AS price,\n loyalty_stg__purchase_items.currency AS purchase_item_currency,\n date(loyalty_stg__purchase_items.created_at) as created_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__purchase_items\n LEFT JOIN loyalty_stg__currency_rates\n ON (loyalty_stg__currency_rates.country = UPPER(loyalty_stg__purchase_items.currency))\n AND (loyalty_stg__currency_rates.date = cast(loyalty_stg__purchase_items.created_at as date))\n\n)\n\nSELECT * FROM loyalty__fact_purchase_items_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_purchases_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_purchases_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_purchases_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_purchases_daily_snapshot", "loyalty__fact_purchases_daily_snapshot"], "alias": "loyalty__fact_purchases_daily_snapshot", "checksum": {"name": "sha256", "checksum": "b2164fdd3df45ec21707f8ca51729637fa1d0652e2958877ffb42496e60bf650"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Daily snapshot of enriched loyalty purchases data, equivalent to default.swell_purchases_view", "columns": {"id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column customer_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column merchant_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_country_code": {"name": "billing_country_code", "description": "TODO: Update Column billing_country_code Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_city": {"name": "billing_city", "description": "TODO: Update Column billing_city Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_country_code": {"name": "shipping_country_code", "description": "TODO: Update Column shipping_country_code Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_city": {"name": "shipping_city", "description": "TODO: Update Column shipping_city Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applied_to_campaigns": {"name": "applied_to_campaigns", "description": "TODO: Update Column applied_to_campaigns Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "order_id": {"name": "order_id", "description": "TODO: Update Column order_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Column amount_cents Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Column currency Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopper_currency_exchange_rate_to_usd": {"name": "shopper_currency_exchange_rate_to_usd", "description": "TODO: Update Column shopper_currency_exchange_rate_to_usd Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "base_currency_exchange_rate_to_usd": {"name": "base_currency_exchange_rate_to_usd", "description": "TODO: Update Column base_currency_exchange_rate_to_usd Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "base_currency": {"name": "base_currency", "description": "TODO: Update Column base_currency Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Column referral_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_discount_code_id": {"name": "referral_discount_code_id", "description": "TODO: Update Column referral_discount_code_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column created_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "swell_discount_cost_cents": {"name": "swell_discount_cost_cents", "description": "TODO: Update Column swell_discount_cost_cents Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent": {"name": "user_agent", "description": "TODO: Update Column user_agent Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_discount_cost_usd": {"name": "swell_discount_cost_usd", "description": "TODO: Update Column swell_discount_cost_usd Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "swell_discount_cost_on_base_currency": {"name": "swell_discount_cost_on_base_currency", "description": "TODO: Update Column swell_discount_cost_on_base_currency Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "swell_discount_cost": {"name": "swell_discount_cost", "description": "TODO: Update Column swell_discount_cost Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "processor_type": {"name": "processor_type", "description": "TODO: Update Column processor_type Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_refunded": {"name": "is_refunded", "description": "TODO: Update Column is_refunded Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "total_refunds": {"name": "total_refunds", "description": "TODO: Update Column total_refunds Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_refunded_cents": {"name": "amount_refunded_cents", "description": "TODO: Update Column amount_refunded_cents Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_refunded_usd": {"name": "amount_refunded_usd", "description": "TODO: Update Column amount_refunded_usd Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_refunded": {"name": "amount_refunded", "description": "TODO: Update Column amount_refunded Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_refunded_on_base_currency": {"name": "amount_refunded_on_base_currency", "description": "TODO: Update Column amount_refunded_on_base_currency Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "purchase_amount_usd": {"name": "purchase_amount_usd", "description": "TODO: Update Column purchase_amount_usd Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "purchase_amount_on_base_currency": {"name": "purchase_amount_on_base_currency", "description": "TODO: Update Column purchase_amount_on_base_currency Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "purchase_amount": {"name": "purchase_amount", "description": "TODO: Update Column purchase_amount Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_member": {"name": "is_member", "description": "TODO: Update Column is_member Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_customer_opt_in": {"name": "is_customer_opt_in", "description": "TODO: Update Column is_customer_opt_in Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "customer_opted_in_at": {"name": "customer_opted_in_at", "description": "TODO: Update Column customer_opted_in_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_redeem": {"name": "is_redeem", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "first_point_redemptions_id": {"name": "first_point_redemptions_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "count_redemptions": {"name": "count_redemptions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_redemption_tied_to_purchase": {"name": "is_redemption_tied_to_purchase", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "cnt_loyalty_redemptions": {"name": "cnt_loyalty_redemptions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cnt_referrals_redemptions": {"name": "cnt_referrals_redemptions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyalty_purchase_total_discount": {"name": "loyalty_purchase_total_discount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referral_purchase_total_discount": {"name": "referral_purchase_total_discount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "source_redemption": {"name": "source_redemption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_full_refunded": {"name": "is_full_refunded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082673.2748258, "relation_name": "dev_dkruh1.loyalty__fact_purchases_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH customers As (\n\n select customer_id as id ,\n cast(is_member as bigint)\n from {{ ref('loyalty_stg__enriched_customers') }}\n where exclude_from_reports = 0\n\n), agg_refunds AS (\n\n SELECT \n purchase_id,\n SUM(amount_cents) AS amount_refunded_cents,\n SUM(refund_amount_usd) AS amount_refunded_usd,\n SUM(refund_amount) AS amount_refunded,\n COUNT(*) AS total_refunds\n FROM {{ ref ('loyalty__fact_refunds_daily_snapshot') }}\n GROUP BY purchase_id\n\n), stg_currency_rates AS (\n\n SELECT \n currency,\n country,\n date\n FROM \n {{ ref('loyalty_stg__currency_rates') }}\n \n\n), loyalty_stg__purchases AS (\n\n SELECT purchases.id,\n purchases.merchant_id,\n purchases.customer_id,\n purchases.billing_country_code,\n purchases.billing_city,\n purchases.shipping_country_code,\n purchases.shipping_city,\n purchases.applied_to_campaigns,\n purchases.order_id,\n purchases.referral_id,\n purchases.referral_discount_code_id,\n purchases.created_at,\n purchases.updated_at,\n purchases.swell_discount_cost_cents,\n purchases.currency,\n purchases.user_agent_id,\n purchases.processor_id,\n purchases.amount_cents\n\n FROM {{ ref('loyalty_stg__purchases') }} purchases\n inner join customers on customers.id = customer_id \n\n), merchants AS (\n SELECT\n id,\n currency\n FROM\n {{ ref('loyalty_stg__merchants') }}\n\n), purchases_with_base_currency_exchange_rate AS (\n\n SELECT \n purchases.id as purchase_id,\n merchants.currency as base_currency,\n currency_rates.currency as base_currency_exchange_rate_to_usd\n FROM loyalty_stg__purchases as purchases\n inner JOIN merchants\n ON merchants.id = purchases.merchant_id\n LEFT JOIN stg_currency_rates as currency_rates\n ON (currency_rates.country = UPPER(merchants.currency))\n AND (currency_rates.date = cast(purchases.created_at as date))\n\n), purchases_multi_currency AS (\n\n SELECT\n purchases.id AS purchase_id,\n CASE WHEN pc.id IS NULL THEN purchases.amount_cents ELSE pc.amount_cents END AS amount_cents,\n CASE WHEN pc.id IS NULL THEN purchases.currency ELSE pc.currency_symbol END AS currency,\n currency_rates.currency as exchange_rate\n FROM loyalty_stg__purchases as purchases\n LEFT JOIN {{ ref('loyalty_stg__purchases_with_currency') }} as pc \n ON pc.purchase_id = purchases.id\n LEFT JOIN stg_currency_rates as currency_rates \n ON (((pc.id IS NOT NULL AND currency_rates.country = UPPER(pc.currency_symbol)) OR (pc.id IS NULL AND currency_rates.country = UPPER(purchases.currency)))\n AND (currency_rates.date = cast(purchases.created_at as date)))\n\n), purchases_multi_currency_view AS (\n\n SELECT purchase_id,\n amount_cents,\n currency,\n exchange_rate,\n CASE\n WHEN currency = 'BTC' THEN 100000000\n WHEN currency = 'CNY' THEN 10\n WHEN currency = 'CLP' THEN 1\n WHEN currency = 'JPY' THEN 1\n WHEN currency = 'UGX' THEN 1\n WHEN currency = 'VND' THEN 10\n ELSE 100\n END AS sub_unit\n FROM purchases_multi_currency\n\n),redemptions AS (\n\n SELECT \n point_redemptions_id as id, \n merchant_id,\n redemption_option_id,\n customer_id,\n discount_type,\n discount_percentage,\n created_at,\n amount_deducted as redemption_amount_deducted,\n is_delayed_redemption,\n is_redemption_points_deducted\n FROM {{ ref('loyalty__fact_redemptions_daily_snapshot') }}\n inner join customers on customers.id = customer_id\n\n),referral_campaigns AS (\n\n SELECT \n id,\n referral_redemption_option_id,\n redemption_option_id \n FROM {{ ref('loyalty_stg__campaigns') }}\n where type = 'ReferralCampaign'\n\n), customers_opt_in AS (\n\n SELECT id, customer_id, opted_in_at FROM {{ ref('loyalty_stg__customers_opt_in') }}\n\n), processors AS (\n\n SELECT id, type FROM {{ ref('loyalty_stg__processors') }}\n\n), purchase_amount AS (\n\n SELECT \n m.purchase_id,\n (m.amount_cents / m.sub_unit) AS purchase_amount\n from purchases_multi_currency_view m\n\n\n), loyalty__fact_user_agents_daily_snapshot AS (\n\n SELECT id, user_agent FROM {{ ref('loyalty__fact_user_agents_daily_snapshot') }}\n\n), all_redemption_to_purchase as (\n select \n point_redemptions_id,\n purchase_id,\n merchant_id,\n customer_id,\n redemption_option_id,\n is_redemption_tied_to_purchase\nfrom \n {{ ref('loyalty_stg__all_redemption_to_purchase') }}\n\n), group_redemptions_to_purchase AS (\n\n select \n all_redemption_to_purchase.merchant_id,\n first(redemptions.id) as first_point_redemptions_id,\n count(redemptions.id) as count_redemptions,\n is_redemption_tied_to_purchase,\n sum(case when referral_campaigns.id is null then 1 else 0 end) as cnt_loyalty_redemptions,\n sum(case when referral_campaigns.id is null then 0 else 1 end) as cnt_referrals_redemptions,\n all_redemption_to_purchase.purchase_id as purchase_id ,\n sum(case \n when referral_campaigns.id is null then \n case \n when (redemptions.discount_type LIKE '%percent%') then\n case \n when redemptions.discount_percentage = 100 then\n purchase_amount\n else\n ((purchase_amount/((100-discount_percentage)/100))-purchase_amount)\n end\n else\n redemption_amount_deducted\n end\n else 0\n end) as loyalty_purchase_total_discount,\n sum(case \n when referral_campaigns.id is null then 0\n else\n case \n when (discount_type LIKE '%percent%') then\n case\n when discount_percentage = 100 then\n purchase_amount\n else\n ((purchase_amount/((100-discount_percentage)/100))-purchase_amount)\n end\n else\n redemption_amount_deducted\n end\n end) as referral_purchase_total_discount,\n all_redemption_to_purchase.customer_id\n from all_redemption_to_purchase\n inner join purchase_amount on\n purchase_amount.purchase_id = all_redemption_to_purchase.purchase_id\n left join redemptions on\n redemptions.id = all_redemption_to_purchase.point_redemptions_id\n \n left join referral_campaigns \n on (all_redemption_to_purchase.redemption_option_id = referral_campaigns.referral_redemption_option_id or all_redemption_to_purchase.redemption_option_id = referral_campaigns.redemption_option_id)\n \n group by all_redemption_to_purchase.purchase_id, all_redemption_to_purchase.customer_id, all_redemption_to_purchase.merchant_id, is_redemption_tied_to_purchase\n\n), fact_purchases as(\n\n SELECT \n loyalty_purchases.id,\n loyalty_purchases.customer_id,\n loyalty_purchases.merchant_id,\n loyalty_purchases.billing_country_code,\n loyalty_purchases.billing_city,\n loyalty_purchases.shipping_country_code,\n loyalty_purchases.shipping_city,\n loyalty_purchases.applied_to_campaigns,\n loyalty_purchases.order_id,\n purchases_multi_currency_view.amount_cents,\n purchases_multi_currency_view.currency,\n purchases_multi_currency_view.exchange_rate as shopper_currency_exchange_rate_to_usd,\n purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd,\n purchases_with_base_currency_exchange_rate.base_currency,\n loyalty_purchases.referral_id,\n loyalty_purchases.referral_discount_code_id,\n loyalty_purchases.created_at,\n loyalty_purchases.updated_at,\n loyalty_purchases.swell_discount_cost_cents,\n loyalty__fact_user_agents_daily_snapshot.user_agent,\n (loyalty_purchases.swell_discount_cost_cents/ purchases_multi_currency_view.sub_unit) / purchases_multi_currency_view.exchange_rate AS swell_discount_cost_usd,\n CASE WHEN purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd IS NULL\n THEN\n 0\n ELSE\n CASE WHEN loyalty_purchases.currency == purchases_with_base_currency_exchange_rate.base_currency\n THEN\n (swell_discount_cost_cents / purchases_multi_currency_view.sub_unit)\n ELSE\n ((swell_discount_cost_cents / purchases_multi_currency_view.sub_unit) / purchases_multi_currency_view.exchange_rate) * purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd\n END\n END AS swell_discount_cost_on_base_currency,\n (loyalty_purchases.swell_discount_cost_cents / purchases_multi_currency_view.sub_unit) AS swell_discount_cost,\n replace(processors.type, \"Processor\", \"\") as processor_type,\n CASE WHEN agg_refunds.total_refunds IS NULL THEN false ELSE true END AS is_refunded,\n CASE WHEN agg_refunds.total_refunds IS NULL THEN 0 ELSE agg_refunds.total_refunds END AS total_refunds,\n CASE WHEN agg_refunds.amount_refunded_cents IS NULL THEN 0 ELSE agg_refunds.amount_refunded_cents END AS amount_refunded_cents,\n CASE WHEN agg_refunds.amount_refunded_usd IS NULL THEN 0 ELSE agg_refunds.amount_refunded_usd END AS amount_refunded_usd,\n CASE WHEN agg_refunds.amount_refunded IS NULL THEN 0 ELSE agg_refunds.amount_refunded END AS amount_refunded,\n CASE WHEN agg_refunds.amount_refunded IS NULL\n THEN\n 0\n ELSE\n CASE WHEN purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd IS NULL\n THEN\n null\n ELSE\n CASE WHEN purchases_multi_currency_view.currency == purchases_with_base_currency_exchange_rate.base_currency\n THEN\n agg_refunds.amount_refunded\n ELSE\n (agg_refunds.amount_refunded / purchases_multi_currency_view.exchange_rate) * purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd\n END\n END\n END AS amount_refunded_on_base_currency,\n CAST((purchases_multi_currency_view.amount_cents / purchases_multi_currency_view.sub_unit / purchases_multi_currency_view.exchange_rate) AS FLOAT) AS purchase_amount_usd,\n CASE WHEN purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd IS NULL\n THEN\n null\n ELSE\n CASE WHEN purchases_multi_currency_view.currency == purchases_with_base_currency_exchange_rate.base_currency\n THEN\n CAST(purchases_multi_currency_view.amount_cents / purchases_multi_currency_view.sub_unit AS FLOAT)\n ELSE\n CAST((purchases_multi_currency_view.amount_cents / purchases_multi_currency_view.sub_unit / purchases_multi_currency_view.exchange_rate) * purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd AS FLOAT)\n END\n END AS purchase_amount_on_base_currency,\n (purchases_multi_currency_view.amount_cents / purchases_multi_currency_view.sub_unit) AS purchase_amount,\n customers.is_member AS is_member,\n CASE WHEN customers_opt_in.id IS NULL THEN false ELSE true END AS is_customer_opt_in,\n CASE WHEN customers_opt_in.id IS NULL THEN null ELSE customers_opt_in.opted_in_at END AS customer_opted_in_at,\n CASE WHEN group_redemptions_to_purchase.purchase_id IS NULL THEN false ELSE true END AS is_redeem,\n group_redemptions_to_purchase.first_point_redemptions_id,\n group_redemptions_to_purchase.count_redemptions,\n group_redemptions_to_purchase.is_redemption_tied_to_purchase,\n group_redemptions_to_purchase.cnt_loyalty_redemptions,\n group_redemptions_to_purchase.cnt_referrals_redemptions,\n group_redemptions_to_purchase.loyalty_purchase_total_discount,\n group_redemptions_to_purchase.referral_purchase_total_discount,\n CASE WHEN group_redemptions_to_purchase.cnt_referrals_redemptions == 0 THEN 'loyalty' WHEN group_redemptions_to_purchase.cnt_loyalty_redemptions == 0 THEN 'referral' ELSE 'loyalty_and_referral' END as source_redemption, \n CURRENT_TIMESTAMP AS dwh_updated_at\n \n FROM loyalty_stg__purchases as loyalty_purchases\n INNER JOIN customers \n ON customers.id = loyalty_purchases.customer_id\n LEFT JOIN agg_refunds \n ON loyalty_purchases.id = agg_refunds.purchase_id\n LEFT JOIN customers_opt_in \n ON customers_opt_in.customer_id = loyalty_purchases.customer_id\n LEFT JOIN processors \n ON processors.id = loyalty_purchases.processor_id\n LEFT JOIN purchases_with_base_currency_exchange_rate \n ON purchases_with_base_currency_exchange_rate.purchase_id = loyalty_purchases.id\n LEFT JOIN purchases_multi_currency_view \n ON purchases_multi_currency_view.purchase_id = loyalty_purchases.id\n LEFT JOIN loyalty__fact_user_agents_daily_snapshot \n ON loyalty__fact_user_agents_daily_snapshot.id = loyalty_purchases.user_agent_id\n LEFT JOIN group_redemptions_to_purchase \n ON loyalty_purchases.id = group_redemptions_to_purchase.purchase_id\n)\n\nselect * , (is_refunded = true and round(purchase_amount_on_base_currency,0) - round(amount_refunded_on_base_currency,0) =0 ) as is_full_refunded\nfrom fact_purchases", "language": "sql", "refs": [{"name": "loyalty_stg__enriched_customers", "package": null, "version": null}, {"name": "loyalty__fact_refunds_daily_snapshot", "package": null, "version": null}, {"name": "loyalty_stg__currency_rates", "package": null, "version": null}, {"name": "loyalty_stg__purchases", "package": null, "version": null}, {"name": "loyalty_stg__merchants", "package": null, "version": null}, {"name": "loyalty_stg__purchases_with_currency", "package": null, "version": null}, {"name": "loyalty__fact_redemptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty_stg__campaigns", "package": null, "version": null}, {"name": "loyalty_stg__customers_opt_in", "package": null, "version": null}, {"name": "loyalty_stg__processors", "package": null, "version": null}, {"name": "loyalty__fact_user_agents_daily_snapshot", "package": null, "version": null}, {"name": "loyalty_stg__all_redemption_to_purchase", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty__fact_refunds_daily_snapshot", "model.yoda.loyalty_stg__currency_rates", "model.yoda.loyalty_stg__purchases", "model.yoda.loyalty_stg__merchants", "model.yoda.loyalty_stg__purchases_with_currency", "model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty_stg__campaigns", "model.yoda.loyalty_stg__customers_opt_in", "model.yoda.loyalty_stg__processors", "model.yoda.loyalty__fact_user_agents_daily_snapshot", "model.yoda.loyalty_stg__all_redemption_to_purchase"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH customers As (\n\n select customer_id as id ,\n cast(is_member as bigint)\n from dev_dkruh1.loyalty_stg__enriched_customers\n where exclude_from_reports = 0\n\n), agg_refunds AS (\n\n SELECT \n purchase_id,\n SUM(amount_cents) AS amount_refunded_cents,\n SUM(refund_amount_usd) AS amount_refunded_usd,\n SUM(refund_amount) AS amount_refunded,\n COUNT(*) AS total_refunds\n FROM dev_dkruh1.loyalty__fact_refunds_daily_snapshot\n GROUP BY purchase_id\n\n), stg_currency_rates AS (\n\n SELECT \n currency,\n country,\n date\n FROM \n dev_dkruh1.loyalty_stg__currency_rates\n \n\n), loyalty_stg__purchases AS (\n\n SELECT purchases.id,\n purchases.merchant_id,\n purchases.customer_id,\n purchases.billing_country_code,\n purchases.billing_city,\n purchases.shipping_country_code,\n purchases.shipping_city,\n purchases.applied_to_campaigns,\n purchases.order_id,\n purchases.referral_id,\n purchases.referral_discount_code_id,\n purchases.created_at,\n purchases.updated_at,\n purchases.swell_discount_cost_cents,\n purchases.currency,\n purchases.user_agent_id,\n purchases.processor_id,\n purchases.amount_cents\n\n FROM dev_dkruh1.loyalty_stg__purchases purchases\n inner join customers on customers.id = customer_id \n\n), merchants AS (\n SELECT\n id,\n currency\n FROM\n dev_dkruh1.loyalty_stg__merchants\n\n), purchases_with_base_currency_exchange_rate AS (\n\n SELECT \n purchases.id as purchase_id,\n merchants.currency as base_currency,\n currency_rates.currency as base_currency_exchange_rate_to_usd\n FROM loyalty_stg__purchases as purchases\n inner JOIN merchants\n ON merchants.id = purchases.merchant_id\n LEFT JOIN stg_currency_rates as currency_rates\n ON (currency_rates.country = UPPER(merchants.currency))\n AND (currency_rates.date = cast(purchases.created_at as date))\n\n), purchases_multi_currency AS (\n\n SELECT\n purchases.id AS purchase_id,\n CASE WHEN pc.id IS NULL THEN purchases.amount_cents ELSE pc.amount_cents END AS amount_cents,\n CASE WHEN pc.id IS NULL THEN purchases.currency ELSE pc.currency_symbol END AS currency,\n currency_rates.currency as exchange_rate\n FROM loyalty_stg__purchases as purchases\n LEFT JOIN dev_dkruh1.loyalty_stg__purchases_with_currency as pc \n ON pc.purchase_id = purchases.id\n LEFT JOIN stg_currency_rates as currency_rates \n ON (((pc.id IS NOT NULL AND currency_rates.country = UPPER(pc.currency_symbol)) OR (pc.id IS NULL AND currency_rates.country = UPPER(purchases.currency)))\n AND (currency_rates.date = cast(purchases.created_at as date)))\n\n), purchases_multi_currency_view AS (\n\n SELECT purchase_id,\n amount_cents,\n currency,\n exchange_rate,\n CASE\n WHEN currency = 'BTC' THEN 100000000\n WHEN currency = 'CNY' THEN 10\n WHEN currency = 'CLP' THEN 1\n WHEN currency = 'JPY' THEN 1\n WHEN currency = 'UGX' THEN 1\n WHEN currency = 'VND' THEN 10\n ELSE 100\n END AS sub_unit\n FROM purchases_multi_currency\n\n),redemptions AS (\n\n SELECT \n point_redemptions_id as id, \n merchant_id,\n redemption_option_id,\n customer_id,\n discount_type,\n discount_percentage,\n created_at,\n amount_deducted as redemption_amount_deducted,\n is_delayed_redemption,\n is_redemption_points_deducted\n FROM dev_dkruh1.loyalty__fact_redemptions_daily_snapshot\n inner join customers on customers.id = customer_id\n\n),referral_campaigns AS (\n\n SELECT \n id,\n referral_redemption_option_id,\n redemption_option_id \n FROM dev_dkruh1.loyalty_stg__campaigns\n where type = 'ReferralCampaign'\n\n), customers_opt_in AS (\n\n SELECT id, customer_id, opted_in_at FROM dev_dkruh1.loyalty_stg__customers_opt_in\n\n), processors AS (\n\n SELECT id, type FROM dev_dkruh1.loyalty_stg__processors\n\n), purchase_amount AS (\n\n SELECT \n m.purchase_id,\n (m.amount_cents / m.sub_unit) AS purchase_amount\n from purchases_multi_currency_view m\n\n\n), loyalty__fact_user_agents_daily_snapshot AS (\n\n SELECT id, user_agent FROM dev_dkruh1.loyalty__fact_user_agents_daily_snapshot\n\n), all_redemption_to_purchase as (\n select \n point_redemptions_id,\n purchase_id,\n merchant_id,\n customer_id,\n redemption_option_id,\n is_redemption_tied_to_purchase\nfrom \n dev_dkruh1.loyalty_stg__all_redemption_to_purchase\n\n), group_redemptions_to_purchase AS (\n\n select \n all_redemption_to_purchase.merchant_id,\n first(redemptions.id) as first_point_redemptions_id,\n count(redemptions.id) as count_redemptions,\n is_redemption_tied_to_purchase,\n sum(case when referral_campaigns.id is null then 1 else 0 end) as cnt_loyalty_redemptions,\n sum(case when referral_campaigns.id is null then 0 else 1 end) as cnt_referrals_redemptions,\n all_redemption_to_purchase.purchase_id as purchase_id ,\n sum(case \n when referral_campaigns.id is null then \n case \n when (redemptions.discount_type LIKE '%percent%') then\n case \n when redemptions.discount_percentage = 100 then\n purchase_amount\n else\n ((purchase_amount/((100-discount_percentage)/100))-purchase_amount)\n end\n else\n redemption_amount_deducted\n end\n else 0\n end) as loyalty_purchase_total_discount,\n sum(case \n when referral_campaigns.id is null then 0\n else\n case \n when (discount_type LIKE '%percent%') then\n case\n when discount_percentage = 100 then\n purchase_amount\n else\n ((purchase_amount/((100-discount_percentage)/100))-purchase_amount)\n end\n else\n redemption_amount_deducted\n end\n end) as referral_purchase_total_discount,\n all_redemption_to_purchase.customer_id\n from all_redemption_to_purchase\n inner join purchase_amount on\n purchase_amount.purchase_id = all_redemption_to_purchase.purchase_id\n left join redemptions on\n redemptions.id = all_redemption_to_purchase.point_redemptions_id\n \n left join referral_campaigns \n on (all_redemption_to_purchase.redemption_option_id = referral_campaigns.referral_redemption_option_id or all_redemption_to_purchase.redemption_option_id = referral_campaigns.redemption_option_id)\n \n group by all_redemption_to_purchase.purchase_id, all_redemption_to_purchase.customer_id, all_redemption_to_purchase.merchant_id, is_redemption_tied_to_purchase\n\n), fact_purchases as(\n\n SELECT \n loyalty_purchases.id,\n loyalty_purchases.customer_id,\n loyalty_purchases.merchant_id,\n loyalty_purchases.billing_country_code,\n loyalty_purchases.billing_city,\n loyalty_purchases.shipping_country_code,\n loyalty_purchases.shipping_city,\n loyalty_purchases.applied_to_campaigns,\n loyalty_purchases.order_id,\n purchases_multi_currency_view.amount_cents,\n purchases_multi_currency_view.currency,\n purchases_multi_currency_view.exchange_rate as shopper_currency_exchange_rate_to_usd,\n purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd,\n purchases_with_base_currency_exchange_rate.base_currency,\n loyalty_purchases.referral_id,\n loyalty_purchases.referral_discount_code_id,\n loyalty_purchases.created_at,\n loyalty_purchases.updated_at,\n loyalty_purchases.swell_discount_cost_cents,\n loyalty__fact_user_agents_daily_snapshot.user_agent,\n (loyalty_purchases.swell_discount_cost_cents/ purchases_multi_currency_view.sub_unit) / purchases_multi_currency_view.exchange_rate AS swell_discount_cost_usd,\n CASE WHEN purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd IS NULL\n THEN\n 0\n ELSE\n CASE WHEN loyalty_purchases.currency == purchases_with_base_currency_exchange_rate.base_currency\n THEN\n (swell_discount_cost_cents / purchases_multi_currency_view.sub_unit)\n ELSE\n ((swell_discount_cost_cents / purchases_multi_currency_view.sub_unit) / purchases_multi_currency_view.exchange_rate) * purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd\n END\n END AS swell_discount_cost_on_base_currency,\n (loyalty_purchases.swell_discount_cost_cents / purchases_multi_currency_view.sub_unit) AS swell_discount_cost,\n replace(processors.type, \"Processor\", \"\") as processor_type,\n CASE WHEN agg_refunds.total_refunds IS NULL THEN false ELSE true END AS is_refunded,\n CASE WHEN agg_refunds.total_refunds IS NULL THEN 0 ELSE agg_refunds.total_refunds END AS total_refunds,\n CASE WHEN agg_refunds.amount_refunded_cents IS NULL THEN 0 ELSE agg_refunds.amount_refunded_cents END AS amount_refunded_cents,\n CASE WHEN agg_refunds.amount_refunded_usd IS NULL THEN 0 ELSE agg_refunds.amount_refunded_usd END AS amount_refunded_usd,\n CASE WHEN agg_refunds.amount_refunded IS NULL THEN 0 ELSE agg_refunds.amount_refunded END AS amount_refunded,\n CASE WHEN agg_refunds.amount_refunded IS NULL\n THEN\n 0\n ELSE\n CASE WHEN purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd IS NULL\n THEN\n null\n ELSE\n CASE WHEN purchases_multi_currency_view.currency == purchases_with_base_currency_exchange_rate.base_currency\n THEN\n agg_refunds.amount_refunded\n ELSE\n (agg_refunds.amount_refunded / purchases_multi_currency_view.exchange_rate) * purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd\n END\n END\n END AS amount_refunded_on_base_currency,\n CAST((purchases_multi_currency_view.amount_cents / purchases_multi_currency_view.sub_unit / purchases_multi_currency_view.exchange_rate) AS FLOAT) AS purchase_amount_usd,\n CASE WHEN purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd IS NULL\n THEN\n null\n ELSE\n CASE WHEN purchases_multi_currency_view.currency == purchases_with_base_currency_exchange_rate.base_currency\n THEN\n CAST(purchases_multi_currency_view.amount_cents / purchases_multi_currency_view.sub_unit AS FLOAT)\n ELSE\n CAST((purchases_multi_currency_view.amount_cents / purchases_multi_currency_view.sub_unit / purchases_multi_currency_view.exchange_rate) * purchases_with_base_currency_exchange_rate.base_currency_exchange_rate_to_usd AS FLOAT)\n END\n END AS purchase_amount_on_base_currency,\n (purchases_multi_currency_view.amount_cents / purchases_multi_currency_view.sub_unit) AS purchase_amount,\n customers.is_member AS is_member,\n CASE WHEN customers_opt_in.id IS NULL THEN false ELSE true END AS is_customer_opt_in,\n CASE WHEN customers_opt_in.id IS NULL THEN null ELSE customers_opt_in.opted_in_at END AS customer_opted_in_at,\n CASE WHEN group_redemptions_to_purchase.purchase_id IS NULL THEN false ELSE true END AS is_redeem,\n group_redemptions_to_purchase.first_point_redemptions_id,\n group_redemptions_to_purchase.count_redemptions,\n group_redemptions_to_purchase.is_redemption_tied_to_purchase,\n group_redemptions_to_purchase.cnt_loyalty_redemptions,\n group_redemptions_to_purchase.cnt_referrals_redemptions,\n group_redemptions_to_purchase.loyalty_purchase_total_discount,\n group_redemptions_to_purchase.referral_purchase_total_discount,\n CASE WHEN group_redemptions_to_purchase.cnt_referrals_redemptions == 0 THEN 'loyalty' WHEN group_redemptions_to_purchase.cnt_loyalty_redemptions == 0 THEN 'referral' ELSE 'loyalty_and_referral' END as source_redemption, \n CURRENT_TIMESTAMP AS dwh_updated_at\n \n FROM loyalty_stg__purchases as loyalty_purchases\n INNER JOIN customers \n ON customers.id = loyalty_purchases.customer_id\n LEFT JOIN agg_refunds \n ON loyalty_purchases.id = agg_refunds.purchase_id\n LEFT JOIN customers_opt_in \n ON customers_opt_in.customer_id = loyalty_purchases.customer_id\n LEFT JOIN processors \n ON processors.id = loyalty_purchases.processor_id\n LEFT JOIN purchases_with_base_currency_exchange_rate \n ON purchases_with_base_currency_exchange_rate.purchase_id = loyalty_purchases.id\n LEFT JOIN purchases_multi_currency_view \n ON purchases_multi_currency_view.purchase_id = loyalty_purchases.id\n LEFT JOIN loyalty__fact_user_agents_daily_snapshot \n ON loyalty__fact_user_agents_daily_snapshot.id = loyalty_purchases.user_agent_id\n LEFT JOIN group_redemptions_to_purchase \n ON loyalty_purchases.id = group_redemptions_to_purchase.purchase_id\n)\n\nselect * , (is_refunded = true and round(purchase_amount_on_base_currency,0) - round(amount_refunded_on_base_currency,0) =0 ) as is_full_refunded\nfrom fact_purchases", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_purchases_redemptions_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_purchases_redemptions_daily_snapshot", "loyalty__fact_purchases_redemptions_daily_snapshot"], "alias": "loyalty__fact_purchases_redemptions_daily_snapshot", "checksum": {"name": "sha256", "checksum": "c70047974ae8a881260cc7abd6e3f3cf640fbf2f9d0e867e1a567d701cb0fc5b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Associative table between loyalty purchases and loyalty point redemptions, equivalent to default.swell_purchases_redemptions_view", "columns": {"id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Column purchase_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_id": {"name": "redemption_id", "description": "TODO: Update Column redemption_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.2991927, "relation_name": "dev_dkruh1.loyalty__fact_purchases_redemptions_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__purchases_redemptions AS (\n\n SELECT * FROM {{ ref('loyalty_stg__purchases_redemptions') }}\n\n), loyalty__fact_purchases_redemptions_daily_snapshot AS (\n\n SELECT\n id, \n purchase_id, \n redemption_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__purchases_redemptions\n\n)\n\nSELECT * FROM loyalty__fact_purchases_redemptions_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__purchases_redemptions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__purchases_redemptions"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__purchases_redemptions AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__purchases_redemptions\n\n), loyalty__fact_purchases_redemptions_daily_snapshot AS (\n\n SELECT\n id, \n purchase_id, \n redemption_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__purchases_redemptions\n\n)\n\nSELECT * FROM loyalty__fact_purchases_redemptions_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_redemptions_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_redemptions_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_redemptions_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_redemptions_daily_snapshot", "loyalty__fact_redemptions_daily_snapshot"], "alias": "loyalty__fact_redemptions_daily_snapshot", "checksum": {"name": "sha256", "checksum": "cad92fe629ed55be4ab92d70703ca7f10c8c16885c02912fa0c7b501ffea95f2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Daily snapshot of enriched loyalty redemptions (both point redemptions and direct rewards), equivalent to default.swell_redemptions_view", "columns": {"point_redemptions_id": {"name": "point_redemptions_id", "description": "TODO: Update Column point_redemptions_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_codes_id": {"name": "redemption_codes_id", "description": "TODO: Update Column redemption_codes_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Column redemption_option_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column merchant_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column customer_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_deducted_points": {"name": "amount_deducted_points", "description": "TODO: Update Column amount_deducted_points Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_deducted_usd": {"name": "amount_deducted_usd", "description": "TODO: Update Column amount_deducted_usd Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_deducted": {"name": "amount_deducted", "description": "TODO: Update Column amount_deducted Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_deducted_cents": {"name": "amount_deducted_cents", "description": "TODO: Update Column amount_deducted_cents Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_type": {"name": "discount_type", "description": "TODO: Update Column discount_type Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column created_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "code": {"name": "code", "description": "TODO: Update Column code Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uses": {"name": "uses", "description": "TODO: Update Column uses Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_referred_redemption": {"name": "is_referred_redemption", "description": "TODO: Update Column is_referred_redemption Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_referring_redemption": {"name": "is_referring_redemption", "description": "TODO: Update Column is_referring_redemption Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "discount_percentage": {"name": "discount_percentage", "description": "TODO: Update Column discount_percentage Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_delayed_redemption": {"name": "is_delayed_redemption", "description": "TODO: Update Column is_delayed_redemption Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_redemption_points_deducted": {"name": "is_redemption_points_deducted", "description": "TODO: Update Column is_redemption_points_deducted Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "redemption_option_currnecy": {"name": "redemption_option_currnecy", "description": "TODO: Update Column redemption_option_currnecy Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_source": {"name": "redemption_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.3361266, "relation_name": "dev_dkruh1.loyalty__fact_redemptions_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH loyalty_stg__point_redemptions AS (\n\n SELECT \n *\n FROM {{ ref('loyalty_stg__point_redemptions') }}\n\n), loyalty_stg__redemption_codes AS (\n\n SELECT \n *\n FROM {{ ref('loyalty_stg__redemption_codes') }}\n\n), loyalty_stg__redemption_options AS (\n\n SELECT \n *,\n CASE\n \t\tWHEN currency = 'BTC' THEN 100000000\n \t\tWHEN currency = 'CNY' THEN 10\n \t\tWHEN currency = 'CLP' THEN 1\n \t\tWHEN currency = 'JPY' THEN 1\n \t\tWHEN currency = 'UGX' THEN 1\n \t\tWHEN currency = 'VND' THEN 10\n \t\tELSE 100\n \tEND AS sub_unit\n FROM {{ ref('loyalty_stg__redemption_options') }}\n\n), referral_campaigns AS (\n\n SELECT id,\n referral_redemption_option_id,\n redemption_option_id \n FROM {{ ref('loyalty_stg__campaigns') }}\n where type = 'ReferralCampaign'\n\n), loyalty_stg__currency_rates AS (\n\n SELECT \n *\n FROM {{ ref('loyalty_stg__currency_rates') }}\n \n), loyalty__fact_redemptions_daily_snapshot AS (\n\n SELECT \n loyalty_stg__point_redemptions.id AS point_redemptions_id,\n loyalty_stg__redemption_codes.id AS redemption_codes_id,\n loyalty_stg__point_redemptions.redemption_option_id AS redemption_option_id,\n loyalty_stg__point_redemptions.merchant_id,\n loyalty_stg__point_redemptions.customer_id,\n CASE\n WHEN loyalty_stg__point_redemptions.at_checkout == FALSE\n OR loyalty_stg__redemption_codes.uses > 0 THEN\n CASE\n WHEN discount_type LIKE \"%variable%\" THEN\n loyalty_stg__point_redemptions.amount\n ELSE loyalty_stg__redemption_options.amount\n END\n ELSE 0\n END AS amount_deducted_points,\n CASE\n WHEN discount_type LIKE \"%variable%\" THEN\n (loyalty_stg__point_redemptions.amount * loyalty_stg__redemption_options.discount_rate_cents / 100) / loyalty_stg__currency_rates.currency\n WHEN discount_type == \"product\" THEN\n (loyalty_stg__redemption_options.free_product_cost_cents / 100) / loyalty_stg__currency_rates.currency\n WHEN discount_type == \"custom\" OR discount_type == \"custom_reward\" THEN\n (loyalty_stg__redemption_options.custom_coupon_cost_cents / 100) / loyalty_stg__currency_rates.currency\n ELSE (loyalty_stg__redemption_options.discount_amount_cents / 100) / loyalty_stg__currency_rates.currency\n END AS amount_deducted_usd,\n CASE\n WHEN discount_type LIKE \"%variable%\" THEN\n (loyalty_stg__point_redemptions.amount * loyalty_stg__redemption_options.discount_rate_cents / loyalty_stg__redemption_options.sub_unit)\n WHEN discount_type == \"product\" THEN\n (loyalty_stg__redemption_options.free_product_cost_cents / loyalty_stg__redemption_options.sub_unit)\n WHEN discount_type == \"custom\" OR discount_type == \"custom_reward\" THEN\n (loyalty_stg__redemption_options.custom_coupon_cost_cents / loyalty_stg__redemption_options.sub_unit)\n ELSE\n (loyalty_stg__redemption_options.discount_amount_cents / loyalty_stg__redemption_options.sub_unit)\n END AS amount_deducted,\n CASE\n WHEN discount_type LIKE \"%variable%\" THEN\n loyalty_stg__point_redemptions.amount * loyalty_stg__redemption_options.discount_rate_cents\n WHEN discount_type == \"product\" THEN\n loyalty_stg__redemption_options.free_product_cost_cents\n WHEN discount_type == \"custom\" OR discount_type == \"custom_reward\" THEN\n loyalty_stg__redemption_options.custom_coupon_cost_cents\n ELSE\n loyalty_stg__redemption_options.discount_amount_cents\n END AS amount_deducted_cents,\n loyalty_stg__redemption_options.discount_type,\n loyalty_stg__point_redemptions.created_at,\n loyalty_stg__point_redemptions.updated_at,\n loyalty_stg__redemption_codes.code,\n uses,\n CASE\n WHEN loyalty_stg__point_redemptions.is_admin != true AND loyalty_stg__point_redemptions.redemption_option_id == referral_campaigns.referral_redemption_option_id THEN\n true\n ELSE false\n END AS is_referred_redemption,\n CASE\n\n WHEN loyalty_stg__point_redemptions.is_admin != true AND loyalty_stg__point_redemptions.redemption_option_id == referral_campaigns.redemption_option_id THEN\n true\n ELSE false\n END AS is_referring_redemption,\n loyalty_stg__redemption_options.discount_percentage,\n loyalty_stg__point_redemptions.at_checkout AS is_delayed_redemption,\n loyalty_stg__point_redemptions.visible AS is_redemption_points_deducted,\n loyalty_stg__redemption_options.currency AS redemption_option_currnecy,\n loyalty_stg__point_redemptions.redemption_source AS redemption_source,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__point_redemptions\n LEFT JOIN loyalty_stg__redemption_codes\n ON ( loyalty_stg__point_redemptions.id = loyalty_stg__redemption_codes.point_redemption_id )\n LEFT JOIN loyalty_stg__redemption_options\n ON ( loyalty_stg__point_redemptions.redemption_option_id = loyalty_stg__redemption_options.id )\n LEFT JOIN referral_campaigns\n ON (loyalty_stg__point_redemptions.redemption_option_id = referral_campaigns.referral_redemption_option_id or loyalty_stg__point_redemptions.redemption_option_id = referral_campaigns.redemption_option_id)\n LEFT JOIN loyalty_stg__currency_rates\n ON (loyalty_stg__currency_rates.country = UPPER(loyalty_stg__redemption_options.currency))\n AND (loyalty_stg__currency_rates.date = cast(loyalty_stg__point_redemptions.created_at as date))\n\n)\n\nSELECT * FROM loyalty__fact_redemptions_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__point_redemptions", "package": null, "version": null}, {"name": "loyalty_stg__redemption_codes", "package": null, "version": null}, {"name": "loyalty_stg__redemption_options", "package": null, "version": null}, {"name": "loyalty_stg__campaigns", "package": null, "version": null}, {"name": "loyalty_stg__currency_rates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__point_redemptions", "model.yoda.loyalty_stg__redemption_codes", "model.yoda.loyalty_stg__redemption_options", "model.yoda.loyalty_stg__campaigns", "model.yoda.loyalty_stg__currency_rates"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH loyalty_stg__point_redemptions AS (\n\n SELECT \n *\n FROM dev_dkruh1.loyalty_stg__point_redemptions\n\n), loyalty_stg__redemption_codes AS (\n\n SELECT \n *\n FROM dev_dkruh1.loyalty_stg__redemption_codes\n\n), loyalty_stg__redemption_options AS (\n\n SELECT \n *,\n CASE\n \t\tWHEN currency = 'BTC' THEN 100000000\n \t\tWHEN currency = 'CNY' THEN 10\n \t\tWHEN currency = 'CLP' THEN 1\n \t\tWHEN currency = 'JPY' THEN 1\n \t\tWHEN currency = 'UGX' THEN 1\n \t\tWHEN currency = 'VND' THEN 10\n \t\tELSE 100\n \tEND AS sub_unit\n FROM dev_dkruh1.loyalty_stg__redemption_options\n\n), referral_campaigns AS (\n\n SELECT id,\n referral_redemption_option_id,\n redemption_option_id \n FROM dev_dkruh1.loyalty_stg__campaigns\n where type = 'ReferralCampaign'\n\n), loyalty_stg__currency_rates AS (\n\n SELECT \n *\n FROM dev_dkruh1.loyalty_stg__currency_rates\n \n), loyalty__fact_redemptions_daily_snapshot AS (\n\n SELECT \n loyalty_stg__point_redemptions.id AS point_redemptions_id,\n loyalty_stg__redemption_codes.id AS redemption_codes_id,\n loyalty_stg__point_redemptions.redemption_option_id AS redemption_option_id,\n loyalty_stg__point_redemptions.merchant_id,\n loyalty_stg__point_redemptions.customer_id,\n CASE\n WHEN loyalty_stg__point_redemptions.at_checkout == FALSE\n OR loyalty_stg__redemption_codes.uses > 0 THEN\n CASE\n WHEN discount_type LIKE \"%variable%\" THEN\n loyalty_stg__point_redemptions.amount\n ELSE loyalty_stg__redemption_options.amount\n END\n ELSE 0\n END AS amount_deducted_points,\n CASE\n WHEN discount_type LIKE \"%variable%\" THEN\n (loyalty_stg__point_redemptions.amount * loyalty_stg__redemption_options.discount_rate_cents / 100) / loyalty_stg__currency_rates.currency\n WHEN discount_type == \"product\" THEN\n (loyalty_stg__redemption_options.free_product_cost_cents / 100) / loyalty_stg__currency_rates.currency\n WHEN discount_type == \"custom\" OR discount_type == \"custom_reward\" THEN\n (loyalty_stg__redemption_options.custom_coupon_cost_cents / 100) / loyalty_stg__currency_rates.currency\n ELSE (loyalty_stg__redemption_options.discount_amount_cents / 100) / loyalty_stg__currency_rates.currency\n END AS amount_deducted_usd,\n CASE\n WHEN discount_type LIKE \"%variable%\" THEN\n (loyalty_stg__point_redemptions.amount * loyalty_stg__redemption_options.discount_rate_cents / loyalty_stg__redemption_options.sub_unit)\n WHEN discount_type == \"product\" THEN\n (loyalty_stg__redemption_options.free_product_cost_cents / loyalty_stg__redemption_options.sub_unit)\n WHEN discount_type == \"custom\" OR discount_type == \"custom_reward\" THEN\n (loyalty_stg__redemption_options.custom_coupon_cost_cents / loyalty_stg__redemption_options.sub_unit)\n ELSE\n (loyalty_stg__redemption_options.discount_amount_cents / loyalty_stg__redemption_options.sub_unit)\n END AS amount_deducted,\n CASE\n WHEN discount_type LIKE \"%variable%\" THEN\n loyalty_stg__point_redemptions.amount * loyalty_stg__redemption_options.discount_rate_cents\n WHEN discount_type == \"product\" THEN\n loyalty_stg__redemption_options.free_product_cost_cents\n WHEN discount_type == \"custom\" OR discount_type == \"custom_reward\" THEN\n loyalty_stg__redemption_options.custom_coupon_cost_cents\n ELSE\n loyalty_stg__redemption_options.discount_amount_cents\n END AS amount_deducted_cents,\n loyalty_stg__redemption_options.discount_type,\n loyalty_stg__point_redemptions.created_at,\n loyalty_stg__point_redemptions.updated_at,\n loyalty_stg__redemption_codes.code,\n uses,\n CASE\n WHEN loyalty_stg__point_redemptions.is_admin != true AND loyalty_stg__point_redemptions.redemption_option_id == referral_campaigns.referral_redemption_option_id THEN\n true\n ELSE false\n END AS is_referred_redemption,\n CASE\n\n WHEN loyalty_stg__point_redemptions.is_admin != true AND loyalty_stg__point_redemptions.redemption_option_id == referral_campaigns.redemption_option_id THEN\n true\n ELSE false\n END AS is_referring_redemption,\n loyalty_stg__redemption_options.discount_percentage,\n loyalty_stg__point_redemptions.at_checkout AS is_delayed_redemption,\n loyalty_stg__point_redemptions.visible AS is_redemption_points_deducted,\n loyalty_stg__redemption_options.currency AS redemption_option_currnecy,\n loyalty_stg__point_redemptions.redemption_source AS redemption_source,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__point_redemptions\n LEFT JOIN loyalty_stg__redemption_codes\n ON ( loyalty_stg__point_redemptions.id = loyalty_stg__redemption_codes.point_redemption_id )\n LEFT JOIN loyalty_stg__redemption_options\n ON ( loyalty_stg__point_redemptions.redemption_option_id = loyalty_stg__redemption_options.id )\n LEFT JOIN referral_campaigns\n ON (loyalty_stg__point_redemptions.redemption_option_id = referral_campaigns.referral_redemption_option_id or loyalty_stg__point_redemptions.redemption_option_id = referral_campaigns.redemption_option_id)\n LEFT JOIN loyalty_stg__currency_rates\n ON (loyalty_stg__currency_rates.country = UPPER(loyalty_stg__redemption_options.currency))\n AND (loyalty_stg__currency_rates.date = cast(loyalty_stg__point_redemptions.created_at as date))\n\n)\n\nSELECT * FROM loyalty__fact_redemptions_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_redemptions_with_purchases_daily_snapshot", "loyalty__fact_redemptions_with_purchases_daily_snapshot"], "alias": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "checksum": {"name": "sha256", "checksum": "8e2eaa476e91a68d07f151098981bd708f09ef3fab7d467ee766c52205707206"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Joined table over redemptions and purchases redemptions daily snapshot tables", "columns": {"redemption_created_at": {"name": "redemption_created_at", "description": "The time at which point the customer redeemed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_referred_redemption": {"name": "is_referred_redemption", "description": "Wether this redemption was given to the customer for being referred by a friend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_referring_redemption": {"name": "is_referring_redemption", "description": "Wether this redemption was given to the customer for referring a friend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "point_redemption_id": {"name": "point_redemption_id", "description": "The internal loyalty id of the redemption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "The internal loyalty id of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "The internal loyalty id of the customer that made the redemption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "The internal loyalty id of the purchase the redemption was used on", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082673.3507507, "relation_name": "dev_dkruh1.loyalty__fact_redemptions_with_purchases_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH redemptions AS (\n\n SELECT created_at,\n is_referred_redemption,\n is_referring_redemption, \n point_redemptions_id as point_redemption_id,\n merchant_id,\n customer_id\n FROM {{ ref('loyalty__fact_redemptions_daily_snapshot') }}\n\n), purchases_redemptions AS (\n\n SELECT * FROM {{ ref('loyalty__fact_purchases_redemptions_daily_snapshot') }}\n\n), loyalty__fact_redemptions_with_purchases_daily_snapshot AS (\n\n SELECT redemptions.created_at as redemption_created_at,\n redemptions.is_referred_redemption,\n redemptions.is_referring_redemption, \n redemptions.point_redemption_id,\n redemptions.merchant_id,\n redemptions.customer_id,\n purchases_redemptions.purchase_id\n FROM purchases_redemptions\n INNER JOIN redemptions on purchases_redemptions.redemption_id = redemptions.point_redemption_id\n\n)\n\nSELECT * FROM loyalty__fact_redemptions_with_purchases_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_redemptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_purchases_redemptions_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH redemptions AS (\n\n SELECT created_at,\n is_referred_redemption,\n is_referring_redemption, \n point_redemptions_id as point_redemption_id,\n merchant_id,\n customer_id\n FROM dev_dkruh1.loyalty__fact_redemptions_daily_snapshot\n\n), purchases_redemptions AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_purchases_redemptions_daily_snapshot\n\n), loyalty__fact_redemptions_with_purchases_daily_snapshot AS (\n\n SELECT redemptions.created_at as redemption_created_at,\n redemptions.is_referred_redemption,\n redemptions.is_referring_redemption, \n redemptions.point_redemption_id,\n redemptions.merchant_id,\n redemptions.customer_id,\n purchases_redemptions.purchase_id\n FROM purchases_redemptions\n INNER JOIN redemptions on purchases_redemptions.redemption_id = redemptions.point_redemption_id\n\n)\n\nSELECT * FROM loyalty__fact_redemptions_with_purchases_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_referral_perks_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_referral_perks_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_referral_perks_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referral_perks_daily_snapshot", "loyalty__fact_referral_perks_daily_snapshot"], "alias": "loyalty__fact_referral_perks_daily_snapshot", "checksum": {"name": "sha256", "checksum": "898b61aa46d6871540785a7473b9d7803b729b589364c0dc7e19959555c2568f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Daily snapshot of referral perks, equivalent to default.swell_referral_perks_view", "columns": {"id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Column redemption_option_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column customer_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column merchant_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column created_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.402037, "relation_name": "dev_dkruh1.loyalty__fact_referral_perks_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__user_actions AS (\n\n SELECT * FROM {{ ref('loyalty_stg__user_actions') }}\n\n), loyalty_stg__perks_user_actions AS (\n\n SELECT * FROM {{ ref('loyalty_stg__perks_user_actions') }}\n\n), loyalty_stg__perks AS (\n\n SELECT * FROM {{ ref('loyalty_stg__perks') }}\n\n), loyalty__fact_referral_perks_daily_snapshot AS (\n\n SELECT \n loyalty_stg__perks.id,\n loyalty_stg__perks.redemption_option_id,\n loyalty_stg__perks.customer_id,\n loyalty_stg__perks.merchant_id,\n loyalty_stg__perks.created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__user_actions\n INNER JOIN loyalty_stg__perks_user_actions \n ON loyalty_stg__perks_user_actions.user_action_id = loyalty_stg__user_actions.id\n INNER JOIN loyalty_stg__perks \n ON loyalty_stg__perks_user_actions.perk_id = loyalty_stg__perks.id\n WHERE loyalty_stg__user_actions.type = 'ReferrerCompletion'\n AND loyalty_stg__perks.reversed = false\n AND loyalty_stg__perks.customer_id is not null\n\n)\n\nSELECT * FROM loyalty__fact_referral_perks_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__user_actions", "package": null, "version": null}, {"name": "loyalty_stg__perks_user_actions", "package": null, "version": null}, {"name": "loyalty_stg__perks", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__user_actions", "model.yoda.loyalty_stg__perks_user_actions", "model.yoda.loyalty_stg__perks"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__user_actions AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__user_actions\n\n), loyalty_stg__perks_user_actions AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__perks_user_actions\n\n), loyalty_stg__perks AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__perks\n\n), loyalty__fact_referral_perks_daily_snapshot AS (\n\n SELECT \n loyalty_stg__perks.id,\n loyalty_stg__perks.redemption_option_id,\n loyalty_stg__perks.customer_id,\n loyalty_stg__perks.merchant_id,\n loyalty_stg__perks.created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__user_actions\n INNER JOIN loyalty_stg__perks_user_actions \n ON loyalty_stg__perks_user_actions.user_action_id = loyalty_stg__user_actions.id\n INNER JOIN loyalty_stg__perks \n ON loyalty_stg__perks_user_actions.perk_id = loyalty_stg__perks.id\n WHERE loyalty_stg__user_actions.type = 'ReferrerCompletion'\n AND loyalty_stg__perks.reversed = false\n AND loyalty_stg__perks.customer_id is not null\n\n)\n\nSELECT * FROM loyalty__fact_referral_perks_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_referral_receipts_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_referral_receipts_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_referral_receipts_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referral_receipts_daily_snapshot", "loyalty__fact_referral_receipts_daily_snapshot"], "alias": "loyalty__fact_referral_receipts_daily_snapshot", "checksum": {"name": "sha256", "checksum": "76b35ab090749f35702a7a8ec6ebcd5c085f98cb512025537dedde3214152073"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Daily snapshot of clicks on referral links, equivalent to default.swell_referral_receipts_view", "columns": {"id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Column referral_code_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column customer_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column merchant_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_customer_id": {"name": "referred_customer_id", "description": "TODO: Update Column referred_customer_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Column completed_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column created_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Column referral_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_discount_code_id": {"name": "referral_discount_code_id", "description": "TODO: Update Column referral_discount_code_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_reversed": {"name": "is_reversed", "description": "TODO: Update Column is_reversed Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.4191027, "relation_name": "dev_dkruh1.loyalty__fact_referral_receipts_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__referral_receipts AS (\n\n SELECT * FROM {{ ref('loyalty_stg__referral_receipts') }}\n\n), loyalty__fact_referral_receipts_daily_snapshot AS (\n\n SELECT \n id,\n referral_code_id,\n customer_id,\n merchant_id,\n referred_customer_id,\n completed_at,\n created_at,\n referral_id,\n referral_discount_code_id,\n is_reversed,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referral_receipts\n\n)\n\nSELECT * FROM loyalty__fact_referral_receipts_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__referral_receipts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__referral_receipts"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__referral_receipts AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__referral_receipts\n\n), loyalty__fact_referral_receipts_daily_snapshot AS (\n\n SELECT \n id,\n referral_code_id,\n customer_id,\n merchant_id,\n referred_customer_id,\n completed_at,\n created_at,\n referral_id,\n referral_discount_code_id,\n is_reversed,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referral_receipts\n\n)\n\nSELECT * FROM loyalty__fact_referral_receipts_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_referral_shares_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_referral_shares_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_referral_shares_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referral_shares_daily_snapshot", "loyalty__fact_referral_shares_daily_snapshot"], "alias": "loyalty__fact_referral_shares_daily_snapshot", "checksum": {"name": "sha256", "checksum": "5f250fe7f96618a280d954b716db9624f7cb8b55efb13a1616cc43ccb3bc6eb6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Daily snapshot of all referral link shares, equivalent to default.swell_referral_shares_view", "columns": {"id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Column referral_code_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column customer_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column merchant_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Column type Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column created_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.4464633, "relation_name": "dev_dkruh1.loyalty__fact_referral_shares_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__referral_shares AS (\n\n SELECT * FROM {{ ref('loyalty_stg__referral_shares') }}\n\n), loyalty__fact_referral_shares_daily_snapshot AS (\n\n SELECT \n id,\n referral_code_id,\n customer_id,\n merchant_id,\n type,\n created_at,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referral_shares\n\n)\n\nSELECT * FROM loyalty__fact_referral_shares_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__referral_shares", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__referral_shares"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__referral_shares AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__referral_shares\n\n), loyalty__fact_referral_shares_daily_snapshot AS (\n\n SELECT \n id,\n referral_code_id,\n customer_id,\n merchant_id,\n type,\n created_at,\n updated_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referral_shares\n\n)\n\nSELECT * FROM loyalty__fact_referral_shares_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_referral_snapshots_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_referral_snapshots_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_referral_snapshots_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referral_snapshots_daily_snapshot", "loyalty__fact_referral_snapshots_daily_snapshot"], "alias": "loyalty__fact_referral_snapshots_daily_snapshot", "checksum": {"name": "sha256", "checksum": "548f003fabe52e98259a8f7c255201a1ad65c699a8e2b6f44e76af1b8b970624"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Daily snapshot of daily referral link shares and clicks per merchant, equivalent to default.swell_referral_snapshots_view", "columns": {"id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column merchant_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "day": {"name": "day", "description": "TODO: Update Column day Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "links_clicked": {"name": "links_clicked", "description": "TODO: Update Column links_clicked Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.4711628, "relation_name": "dev_dkruh1.loyalty__fact_referral_snapshots_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__referral_snapshots AS (\n\n SELECT * FROM {{ ref('loyalty_stg__referral_snapshots') }}\n\n), loyalty__fact_referral_snapshots_daily_snapshot AS (\n\n SELECT \n id,\n merchant_id,\n day,\n links_clicked,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referral_snapshots\n\n)\n\nSELECT * FROM loyalty__fact_referral_snapshots_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__referral_snapshots", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__referral_snapshots"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__referral_snapshots AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__referral_snapshots\n\n), loyalty__fact_referral_snapshots_daily_snapshot AS (\n\n SELECT \n id,\n merchant_id,\n day,\n links_clicked,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referral_snapshots\n\n)\n\nSELECT * FROM loyalty__fact_referral_snapshots_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_referrals_without_crawlers_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referrals_without_crawlers_daily_snapshot", "loyalty__fact_referrals_without_crawlers_daily_snapshot"], "alias": "loyalty__fact_referrals_without_crawlers_daily_snapshot", "checksum": {"name": "sha256", "checksum": "d968bc7862da9dcce032abca8d89c2120e4800392b9ea757dd0a9630a50bbd3d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Column referral_code_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referrer_perk_id": {"name": "referrer_perk_id", "description": "TODO: Update Column referrer_perk_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_user_perk_id": {"name": "referred_user_perk_id", "description": "TODO: Update Column referred_user_perk_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column customer_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ip_address": {"name": "ip_address", "description": "TODO: Update Column ip_address Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent_id": {"name": "user_agent_id", "description": "TODO: Update Column user_agent_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column campaign_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column merchant_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column created_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "orders": {"name": "orders", "description": "TODO: Update Column orders Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Column currency Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Column completed_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Column amount_cents Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "link_share_type": {"name": "link_share_type", "description": "TODO: Update Column link_share_type Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_product_id": {"name": "external_product_id", "description": "TODO: Update Column external_product_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent": {"name": "user_agent", "description": "TODO: Update Column user_agent Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.5069904, "relation_name": "dev_dkruh1.loyalty__fact_referrals_without_crawlers_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_crawlers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__known_crawlers') }}\n\n), loyalty_stg__referrals AS (\n\n SELECT * FROM {{ ref('loyalty_stg__referrals') }}\n\n), loyalty__fact_user_agents_daily_snapshot AS (\n\n SELECT * FROM {{ ref('loyalty__fact_user_agents_daily_snapshot') }}\n\n), referrals_count_user_agent_per_merchant_temp AS (\n\n SELECT \n count(id) as count_ua,\n user_agent_id,\n merchant_id\n FROM loyalty_stg__referrals\n GROUP BY user_agent_id, merchant_id\n\n), loyalty__fact_referrals_without_crawlers_daily_snapshot AS (\n\n SELECT \n referrals.id as id,\n referrals.referral_code_id,\n referrals.referrer_perk_id,\n referrals.referred_user_perk_id,\n referrals.customer_id,\n referrals.ip_address,\n referrals.user_agent_id,\n referrals.campaign_id,\n referrals.merchant_id,\n referrals.created_at,\n referrals.updated_at,\n referrals.orders,\n referrals.currency,\n referrals.completed_at,\n referrals.amount_cents,\n referrals.link_share_type,\n referrals.external_product_id,\n user_agents.user_agent AS user_agent,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referrals as referrals\n LEFT JOIN loyalty__fact_user_agents_daily_snapshot AS user_agents\n ON referrals.user_agent_id = user_agents.id\n LEFT JOIN referrals_count_user_agent_per_merchant_temp AS count_ua\n ON referrals.user_agent_id = count_ua.user_agent_id\n AND referrals.merchant_id = count_ua.merchant_id\n WHERE\n count_ua.count_ua < 50 \n AND user_agents.user_agent NOT IN (SELECT DISTINCT crawler_name FROM loyalty_crawlers)\n\n)\n\nSELECT * FROM loyalty__fact_referrals_without_crawlers_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__known_crawlers", "package": null, "version": null}, {"name": "loyalty_stg__referrals", "package": null, "version": null}, {"name": "loyalty__fact_user_agents_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__known_crawlers", "model.yoda.loyalty_stg__referrals", "model.yoda.loyalty__fact_user_agents_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH loyalty_crawlers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__known_crawlers\n\n), loyalty_stg__referrals AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__referrals\n\n), loyalty__fact_user_agents_daily_snapshot AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_user_agents_daily_snapshot\n\n), referrals_count_user_agent_per_merchant_temp AS (\n\n SELECT \n count(id) as count_ua,\n user_agent_id,\n merchant_id\n FROM loyalty_stg__referrals\n GROUP BY user_agent_id, merchant_id\n\n), loyalty__fact_referrals_without_crawlers_daily_snapshot AS (\n\n SELECT \n referrals.id as id,\n referrals.referral_code_id,\n referrals.referrer_perk_id,\n referrals.referred_user_perk_id,\n referrals.customer_id,\n referrals.ip_address,\n referrals.user_agent_id,\n referrals.campaign_id,\n referrals.merchant_id,\n referrals.created_at,\n referrals.updated_at,\n referrals.orders,\n referrals.currency,\n referrals.completed_at,\n referrals.amount_cents,\n referrals.link_share_type,\n referrals.external_product_id,\n user_agents.user_agent AS user_agent,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__referrals as referrals\n LEFT JOIN loyalty__fact_user_agents_daily_snapshot AS user_agents\n ON referrals.user_agent_id = user_agents.id\n LEFT JOIN referrals_count_user_agent_per_merchant_temp AS count_ua\n ON referrals.user_agent_id = count_ua.user_agent_id\n AND referrals.merchant_id = count_ua.merchant_id\n WHERE\n count_ua.count_ua < 50 \n AND user_agents.user_agent NOT IN (SELECT DISTINCT crawler_name FROM loyalty_crawlers)\n\n)\n\nSELECT * FROM loyalty__fact_referrals_without_crawlers_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_refund_items_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_refund_items_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_refund_items_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_refund_items_daily_snapshot", "loyalty__fact_refund_items_daily_snapshot"], "alias": "loyalty__fact_refund_items_daily_snapshot", "checksum": {"name": "sha256", "checksum": "b5c10133561988a0c9724d027ef74702e54b95d1e332bd96a806766f77132888"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Daily snapshot of loyalty refund items, equivalent to default.swell_refund_items_view", "columns": {"id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refund_id": {"name": "refund_id", "description": "TODO: Update Column refund_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_item_id": {"name": "purchase_item_id", "description": "TODO: Update Column purchase_item_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "quantity": {"name": "quantity", "description": "TODO: Update Column quantity Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.532067, "relation_name": "dev_dkruh1.loyalty__fact_refund_items_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__refund_items AS (\n\n SELECT * FROM {{ ref('loyalty_stg__refund_items') }}\n\n), loyalty__fact_refund_items_daily_snapshot AS (\n\n SELECT \n id,\n refund_id,\n purchase_item_id,\n quantity,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__refund_items\n\n)\n\nSELECT * FROM loyalty__fact_refund_items_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__refund_items", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__refund_items"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__refund_items AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__refund_items\n\n), loyalty__fact_refund_items_daily_snapshot AS (\n\n SELECT \n id,\n refund_id,\n purchase_item_id,\n quantity,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__refund_items\n\n)\n\nSELECT * FROM loyalty__fact_refund_items_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_refunds_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_refunds_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_refunds_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_refunds_daily_snapshot", "loyalty__fact_refunds_daily_snapshot"], "alias": "loyalty__fact_refunds_daily_snapshot", "checksum": {"name": "sha256", "checksum": "78cc2e2ad0d94dd1a8b03cb52faf14c036627cb0de677851ab5571be9c17da59"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Daily snapshot of enriched loyalty refunds data, equivalent to default.swell_refunds_view", "columns": {"refund_id": {"name": "refund_id", "description": "TODO: Update Column refund_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Column purchase_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refund_amount_usd": {"name": "refund_amount_usd", "description": "TODO: Update Column refund_amount_usd Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "refund_amount": {"name": "refund_amount", "description": "TODO: Update Column refund_amount Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "refund_currency": {"name": "refund_currency", "description": "TODO: Update Column refund_currency Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Column amount_cents Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refunded_at": {"name": "refunded_at", "description": "TODO: Update Column refunded_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.5603337, "relation_name": "dev_dkruh1.loyalty__fact_refunds_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__refunds AS (\n\n SELECT \n id,\n purchase_id,\n amount_cents,\n amount_cents_in_shopper_currency,\n currency,\n created_at\n FROM {{ ref('loyalty_stg__refunds') }}\n\n), loyalty_stg__purchases_with_currency AS (\n\n SELECT id,\n purchase_id,\n currency_symbol\n FROM {{ ref('loyalty_stg__purchases_with_currency') }}\n\n), loyalty_stg__currency_rates AS (\n\n SELECT country,\n date,\n currency\n FROM {{ ref('loyalty_stg__currency_rates') }}\n\n), loyalty__fact_refunds_daily_snapshot AS (\n\n SELECT\n loyalty_stg__refunds.id AS refund_id,\n loyalty_stg__refunds.purchase_id,\n CASE WHEN pc.id IS NULL\n THEN loyalty_stg__refunds.amount_cents / 100 / loyalty_stg__currency_rates.currency\n ELSE loyalty_stg__refunds.amount_cents_in_shopper_currency / 100 / loyalty_stg__currency_rates.currency\n END AS refund_amount_usd, \n CASE WHEN pc.id IS NULL\n THEN loyalty_stg__refunds.amount_cents / 100 \n ELSE loyalty_stg__refunds.amount_cents_in_shopper_currency / 100\n END AS refund_amount,\n CASE WHEN pc.id IS NULL\n THEN loyalty_stg__refunds.currency\n ELSE pc.currency_symbol\n END AS refund_currency,\n CASE WHEN pc.id IS NULL\n THEN loyalty_stg__refunds.amount_cents\n ELSE loyalty_stg__refunds.amount_cents_in_shopper_currency\n END AS amount_cents,\n loyalty_stg__refunds.created_at AS refunded_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__refunds\n LEFT JOIN loyalty_stg__purchases_with_currency as pc ON pc.purchase_id = loyalty_stg__refunds.purchase_id\n LEFT JOIN loyalty_stg__currency_rates ON (\n ((pc.id IS NOT NULL AND loyalty_stg__currency_rates.country = UPPER(pc.currency_symbol)) OR (pc.id IS NULL AND loyalty_stg__currency_rates.country = UPPER(loyalty_stg__refunds.currency)))\n AND (loyalty_stg__currency_rates.date = cast(loyalty_stg__refunds.created_at as date))\n )\n\n)\n\nSELECT * FROM loyalty__fact_refunds_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__refunds", "package": null, "version": null}, {"name": "loyalty_stg__purchases_with_currency", "package": null, "version": null}, {"name": "loyalty_stg__currency_rates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__refunds", "model.yoda.loyalty_stg__purchases_with_currency", "model.yoda.loyalty_stg__currency_rates"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__refunds AS (\n\n SELECT \n id,\n purchase_id,\n amount_cents,\n amount_cents_in_shopper_currency,\n currency,\n created_at\n FROM dev_dkruh1.loyalty_stg__refunds\n\n), loyalty_stg__purchases_with_currency AS (\n\n SELECT id,\n purchase_id,\n currency_symbol\n FROM dev_dkruh1.loyalty_stg__purchases_with_currency\n\n), loyalty_stg__currency_rates AS (\n\n SELECT country,\n date,\n currency\n FROM dev_dkruh1.loyalty_stg__currency_rates\n\n), loyalty__fact_refunds_daily_snapshot AS (\n\n SELECT\n loyalty_stg__refunds.id AS refund_id,\n loyalty_stg__refunds.purchase_id,\n CASE WHEN pc.id IS NULL\n THEN loyalty_stg__refunds.amount_cents / 100 / loyalty_stg__currency_rates.currency\n ELSE loyalty_stg__refunds.amount_cents_in_shopper_currency / 100 / loyalty_stg__currency_rates.currency\n END AS refund_amount_usd, \n CASE WHEN pc.id IS NULL\n THEN loyalty_stg__refunds.amount_cents / 100 \n ELSE loyalty_stg__refunds.amount_cents_in_shopper_currency / 100\n END AS refund_amount,\n CASE WHEN pc.id IS NULL\n THEN loyalty_stg__refunds.currency\n ELSE pc.currency_symbol\n END AS refund_currency,\n CASE WHEN pc.id IS NULL\n THEN loyalty_stg__refunds.amount_cents\n ELSE loyalty_stg__refunds.amount_cents_in_shopper_currency\n END AS amount_cents,\n loyalty_stg__refunds.created_at AS refunded_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__refunds\n LEFT JOIN loyalty_stg__purchases_with_currency as pc ON pc.purchase_id = loyalty_stg__refunds.purchase_id\n LEFT JOIN loyalty_stg__currency_rates ON (\n ((pc.id IS NOT NULL AND loyalty_stg__currency_rates.country = UPPER(pc.currency_symbol)) OR (pc.id IS NULL AND loyalty_stg__currency_rates.country = UPPER(loyalty_stg__refunds.currency)))\n AND (loyalty_stg__currency_rates.date = cast(loyalty_stg__refunds.created_at as date))\n )\n\n)\n\nSELECT * FROM loyalty__fact_refunds_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_user_actions_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_user_actions_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_user_actions_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_user_actions_daily_snapshot", "loyalty__fact_user_actions_daily_snapshot"], "alias": "loyalty__fact_user_actions_daily_snapshot", "checksum": {"name": "sha256", "checksum": "4f0fcc0f294a906538d081eee5b4bc7ce071333bf6f56ae056a0ace54e3c5537"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Daily snapshot of loyalty customers' actions, equivalent to default.swell_user_actions_view", "columns": {"id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column merchant_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column created_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082673.5838468, "relation_name": "dev_dkruh1.loyalty__fact_user_actions_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty__fact_user_actions_daily_snapshot AS (\n\n SELECT \n id,\n merchant_id,\n created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM {{ ref('loyalty_stg__user_actions') }}\n\n)\n\nSELECT * FROM loyalty__fact_user_actions_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__user_actions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__user_actions"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty__fact_user_actions_daily_snapshot AS (\n\n SELECT \n id,\n merchant_id,\n created_at,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.loyalty_stg__user_actions\n\n)\n\nSELECT * FROM loyalty__fact_user_actions_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__fact_user_agents_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__fact_user_agents_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__fact_user_agents_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_user_agents_daily_snapshot", "loyalty__fact_user_agents_daily_snapshot"], "alias": "loyalty__fact_user_agents_daily_snapshot", "checksum": {"name": "sha256", "checksum": "10c00950d84191df0336138cabf3419be7a99390a9a6d7ce6a0a285bb2ee1b95"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Daily snapshot of loyalty user agents data, equivalent to default.swell_user_agents_view", "columns": {"id": {"name": "id", "description": "TODO: Update Column id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent": {"name": "user_agent", "description": "TODO: Update Column user_agent Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent_hash": {"name": "user_agent_hash", "description": "TODO: Update Column user_agent_hash Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column dwh_updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.60899, "relation_name": "dev_dkruh1.loyalty__fact_user_agents_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__user_agents AS (\n\n SELECT * FROM {{ ref('loyalty_stg__user_agents') }}\n\n), loyalty__fact_user_agents_daily_snapshot AS (\n\n SELECT \n id,\n user_agent,\n user_agent_hash,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__user_agents\n\n)\n\nSELECT * FROM loyalty__fact_user_agents_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty_stg__user_agents", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__user_agents"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH loyalty_stg__user_agents AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__user_agents\n\n), loyalty__fact_user_agents_daily_snapshot AS (\n\n SELECT \n id,\n user_agent,\n user_agent_hash,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM loyalty_stg__user_agents\n\n)\n\nSELECT * FROM loyalty__fact_user_agents_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__merchant_point_transaction_metrics_daily": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__merchant_point_transaction_metrics_daily", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.sql", "original_file_path": "models/loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.sql", "unique_id": "model.yoda.loyalty__merchant_point_transaction_metrics_daily", "fqn": ["yoda", "loyalty", "marts", "loyalty__merchant_point_transaction_metrics_daily", "loyalty__merchant_point_transaction_metrics_daily"], "alias": "loyalty__merchant_point_transaction_metrics_daily", "checksum": {"name": "sha256", "checksum": "50bb04e06f60e01319e44af6338d4b12be5814bbc216b83a36e805b75be29a81"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Aggregated daily table for merchant_group_id point transactions across all merchant's customer_groups.\nContains only dates where group_customer had points tranaction.\nIf customer has been reset historic data will not show in table.\nGranularity: date | merchant_group_id", "columns": {"date": {"name": "date", "description": "PK", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "merchant_group_id": {"name": "merchant_group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "earned_points_sum": {"name": "earned_points_sum", "description": "Sum of positive earning transactions per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "earned_reversed_points_sum": {"name": "earned_reversed_points_sum", "description": "Sum of negative earning transactions per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redeemed_points_sum": {"name": "redeemed_points_sum", "description": "Sum of negative balance-only transactions with reason_type = Redemption OR [reason_type = Manual Adjustment AND description = \u201cRedeem points for a discount\u201d] per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reimbursed_points_sum": {"name": "reimbursed_points_sum", "description": "Sum of positive balance-only transactions per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expired_points_sum": {"name": "expired_points_sum", "description": "Sum of negative balance-only transactions with one of the following reason types across customers per date:\nPoint Expiration, Opt Out , Manual Adjustment AND description = Manually expire points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opening_outstanding_points_sum": {"name": "opening_outstanding_points_sum", "description": "last date closing_outstanding_points_sum", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "outstanding_points_difference_sum": {"name": "outstanding_points_difference_sum", "description": "Points earned - Points earning reversed - Points redeemed + Points reimbursed - Points expired per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "closing_outstanding_points_sum": {"name": "closing_outstanding_points_sum", "description": "Sum of all point balances calculated at the end of each day (i.e. taking into account all point transactions that occurred on that date)\nNote: This number should be equal to opening_outstanding_points_sum + outstanding_points_difference_sum", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "positive_outstanding_points_sum": {"name": "positive_outstanding_points_sum", "description": "Sum of outstanding_points that are > 0 for per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "negative_outstanding_points_sum": {"name": "negative_outstanding_points_sum", "description": "Sum of outstanding_points that are < 0 for per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_point_reset_date": {"name": "is_point_reset_date", "description": "indicator = 1 if there was a reset of points in point transaction", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "table update timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.639219, "relation_name": "dev_dkruh1.loyalty__merchant_point_transaction_metrics_daily", "raw_code": "-- Import --\n\nWITH import_customer_metrics_daily AS (\nSELECT * \nFROM {{ ref('loyalty__customer_point_transaction_metrics_daily') }}\nWHERE date <= DATE_SUB(CURRENT_DATE,1)\n), \n\nimport_customer_date_history AS (\nSELECT * FROM {{ ref('loyalty__customer_group_date_history') }}\n),\n\nimport_group_customers AS (\nSELECT * FROM {{ ref('loyalty_stg__group_customers') }}\n),\n\nmerchant_group_excluding_before_reset_dates AS (\nSELECT\n customer.date,\n customer.merchant_group_id,\n SUM(customer.earned_points_sum) AS earned_points_sum,\n SUM(customer.earned_reversed_points_sum) AS earned_reversed_points_sum,\n SUM(customer.redeemed_points_sum) AS redeemed_points_sum,\n SUM(customer.reimbursed_points_sum) AS reimbursed_points_sum,\n SUM(customer.expired_points_sum) AS expired_points_sum,\n SUM(customer.opening_outstanding_points_sum) AS opening_outstanding_points_sum,\n SUM(customer.outstanding_points_difference_sum) AS outstanding_points_difference_sum,\n SUM(customer.closing_outstanding_points_sum) AS closing_outstanding_points_sum,\n SUM(customer.positive_outstanding_points_sum) AS positive_outstanding_points_sum,\n SUM(customer.negative_outstanding_points_sum) AS negative_outstanding_points_sum,\n MAX(customer.is_point_reset_date) AS is_point_reset_date\nFROM import_customer_metrics_daily AS customer\nINNER JOIN import_group_customers AS group_customer\n ON customer.group_customer_id = group_customer.id\nLEFT JOIN import_customer_date_history AS history\n ON history.category = 'last_points_reset_date'\n AND customer.group_customer_id = history.group_customer_id\nWHERE group_customer.exclude_from_reports = FALSE\nAND customer.date > DATE(NVL(history.value,'1900-01-01'))\nGROUP BY 1,2\n),\n\nmerchant_point_transaction_metrics_daily_res AS (\nSELECT\n date,\n merchant_group_id,\n earned_points_sum,\n earned_reversed_points_sum,\n redeemed_points_sum,\n reimbursed_points_sum,\n expired_points_sum,\n opening_outstanding_points_sum,\n outstanding_points_difference_sum,\n closing_outstanding_points_sum,\n positive_outstanding_points_sum,\n negative_outstanding_points_sum,\n is_point_reset_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM merchant_group_excluding_before_reset_dates\n)\n\nSELECT * \nFROM merchant_point_transaction_metrics_daily_res", "language": "sql", "refs": [{"name": "loyalty__customer_point_transaction_metrics_daily", "package": null, "version": null}, {"name": "loyalty__customer_group_date_history", "package": null, "version": null}, {"name": "loyalty_stg__group_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__customer_point_transaction_metrics_daily", "model.yoda.loyalty__customer_group_date_history", "model.yoda.loyalty_stg__group_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.sql", "compiled": true, "compiled_code": "-- Import --\n\nWITH import_customer_metrics_daily AS (\nSELECT * \nFROM dev_dkruh1.loyalty__customer_point_transaction_metrics_daily\nWHERE date <= DATE_SUB(CURRENT_DATE,1)\n), \n\nimport_customer_date_history AS (\nSELECT * FROM dev_dkruh1.loyalty__customer_group_date_history\n),\n\nimport_group_customers AS (\nSELECT * FROM dev_dkruh1.loyalty_stg__group_customers\n),\n\nmerchant_group_excluding_before_reset_dates AS (\nSELECT\n customer.date,\n customer.merchant_group_id,\n SUM(customer.earned_points_sum) AS earned_points_sum,\n SUM(customer.earned_reversed_points_sum) AS earned_reversed_points_sum,\n SUM(customer.redeemed_points_sum) AS redeemed_points_sum,\n SUM(customer.reimbursed_points_sum) AS reimbursed_points_sum,\n SUM(customer.expired_points_sum) AS expired_points_sum,\n SUM(customer.opening_outstanding_points_sum) AS opening_outstanding_points_sum,\n SUM(customer.outstanding_points_difference_sum) AS outstanding_points_difference_sum,\n SUM(customer.closing_outstanding_points_sum) AS closing_outstanding_points_sum,\n SUM(customer.positive_outstanding_points_sum) AS positive_outstanding_points_sum,\n SUM(customer.negative_outstanding_points_sum) AS negative_outstanding_points_sum,\n MAX(customer.is_point_reset_date) AS is_point_reset_date\nFROM import_customer_metrics_daily AS customer\nINNER JOIN import_group_customers AS group_customer\n ON customer.group_customer_id = group_customer.id\nLEFT JOIN import_customer_date_history AS history\n ON history.category = 'last_points_reset_date'\n AND customer.group_customer_id = history.group_customer_id\nWHERE group_customer.exclude_from_reports = FALSE\nAND customer.date > DATE(NVL(history.value,'1900-01-01'))\nGROUP BY 1,2\n),\n\nmerchant_point_transaction_metrics_daily_res AS (\nSELECT\n date,\n merchant_group_id,\n earned_points_sum,\n earned_reversed_points_sum,\n redeemed_points_sum,\n reimbursed_points_sum,\n expired_points_sum,\n opening_outstanding_points_sum,\n outstanding_points_difference_sum,\n closing_outstanding_points_sum,\n positive_outstanding_points_sum,\n negative_outstanding_points_sum,\n is_point_reset_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM merchant_group_excluding_before_reset_dates\n)\n\nSELECT * \nFROM merchant_point_transaction_metrics_daily_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__opted_in_customers": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__opted_in_customers", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.sql", "original_file_path": "models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.sql", "unique_id": "model.yoda.loyalty__opted_in_customers", "fqn": ["yoda", "loyalty", "marts", "loyalty__opted_in_customers", "loyalty__opted_in_customers"], "alias": "loyalty__opted_in_customers", "checksum": {"name": "sha256", "checksum": "8739387772256be0ea0ccbc4b28e68e46a9dc52c3a6d8ba9dd237838ff6856a0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Table containing all the customers who are opted into the merchants' loyalty programs", "columns": {"customer_id": {"name": "customer_id", "description": "Customer identifier in the loyalty system", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "Merchant unique identifier in Yotpo platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opted_in_at": {"name": "opted_in_at", "description": "The date in which the customer has opted into the loyalty program - can not be older than the merchant's creation time in loyalty", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_external_id": {"name": "customer_external_id", "description": "Customer identifier on the ecommerce platform - not all ecommerce platforms have ids for guest customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "Customer's email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.6686008, "relation_name": "dev_dkruh1.loyalty__opted_in_customers", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH customers_opt_in AS (\n\n SELECT * FROM {{ ref('loyalty_stg__customers_opt_in') }}\n\n), customers AS (\n\n SELECT * \n FROM {{ ref('loyalty_stg__enriched_customers') }}\n WHERE email IS NOT NULL\n\n), yotpo_platform_accounts AS (\n\n SELECT * FROM {{ ref('loyalty_stg__yotpo_platform_accounts') }}\n\n), opted_in_customers AS (\n\n SELECT \n customers.customer_id,\n yotpo_platform_accounts.app_key,\n customers_opt_in.opted_in_at,\n customers.store_account_id AS customer_external_id,\n customers.email as customer_email\n FROM customers_opt_in \n INNER JOIN customers ON customers.customer_id = customers_opt_in.customer_id\n INNER JOIN yotpo_platform_accounts ON customers_opt_in.merchant_id = yotpo_platform_accounts.merchant_id\n\n)\n\nSELECT * FROM opted_in_customers", "language": "sql", "refs": [{"name": "loyalty_stg__customers_opt_in", "package": null, "version": null}, {"name": "loyalty_stg__enriched_customers", "package": null, "version": null}, {"name": "loyalty_stg__yotpo_platform_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__customers_opt_in", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__yotpo_platform_accounts"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH customers_opt_in AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__customers_opt_in\n\n), customers AS (\n\n SELECT * \n FROM dev_dkruh1.loyalty_stg__enriched_customers\n WHERE email IS NOT NULL\n\n), yotpo_platform_accounts AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__yotpo_platform_accounts\n\n), opted_in_customers AS (\n\n SELECT \n customers.customer_id,\n yotpo_platform_accounts.app_key,\n customers_opt_in.opted_in_at,\n customers.store_account_id AS customer_external_id,\n customers.email as customer_email\n FROM customers_opt_in \n INNER JOIN customers ON customers.customer_id = customers_opt_in.customer_id\n INNER JOIN yotpo_platform_accounts ON customers_opt_in.merchant_id = yotpo_platform_accounts.merchant_id\n\n)\n\nSELECT * FROM opted_in_customers", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__pixel_events": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__pixel_events", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.sql", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.sql", "unique_id": "model.yoda.loyalty__pixel_events", "fqn": ["yoda", "loyalty", "marts", "loyalty__pixel_events", "loyalty__pixel_events"], "alias": "loyalty__pixel_events", "checksum": {"name": "sha256", "checksum": "6fda42e4cf1d708aa955496f44233fbf89ccc54c591cff170f604072ad6c404b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "se_value": {"name": "se_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_checkout": {"name": "is_checkout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "share_type": {"name": "share_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "filled_customer_id": {"name": "filled_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.7108798, "relation_name": "dev_dkruh1.loyalty__pixel_events", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\n\nWITH useradmin_to_customer_id AS (\n\n SELECT \n * \n FROM \n {{ ref('loyalty_stg__domain_useradmin_to_customer_id') }}\n\n), normalized_pixel_events AS (\n\n SELECT \n * \n FROM \n {{ ref('loyalty_stg__normalized_pixel_events') }}\n WHERE \n partition_date <= (SELECT MAX(partition_date) FROM useradmin_to_customer_id)\n\n), loyalty_final_pixel_events AS (\n SELECT merchants.id as merchant_id,\n normalized_pixel_events.*,\n useradmin_to_customer_id.customer_id as filled_customer_id\n FROM \n normalized_pixel_events\n LEFT JOIN {{ ref('loyalty_stg__merchants') }} AS merchants\n ON normalized_pixel_events.se_value = merchants.guid\n LEFT JOIN useradmin_to_customer_id\n ON useradmin_to_customer_id.domain_userid = normalized_pixel_events.domain_userid\n)\n\nSELECT * FROM loyalty_final_pixel_events\nWHERE partition_date > '2022-12-27'", "language": "sql", "refs": [{"name": "loyalty_stg__domain_useradmin_to_customer_id", "package": null, "version": null}, {"name": "loyalty_stg__normalized_pixel_events", "package": null, "version": null}, {"name": "loyalty_stg__merchants", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__domain_useradmin_to_customer_id", "model.yoda.loyalty_stg__normalized_pixel_events", "model.yoda.loyalty_stg__merchants"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.sql", "compiled": true, "compiled_code": "\n\n\nWITH useradmin_to_customer_id AS (\n\n SELECT \n * \n FROM \n dev_dkruh1.loyalty_stg__domain_useradmin_to_customer_id\n\n), normalized_pixel_events AS (\n\n SELECT \n * \n FROM \n dev_dkruh1.loyalty_stg__normalized_pixel_events\n WHERE \n partition_date <= (SELECT MAX(partition_date) FROM useradmin_to_customer_id)\n\n), loyalty_final_pixel_events AS (\n SELECT merchants.id as merchant_id,\n normalized_pixel_events.*,\n useradmin_to_customer_id.customer_id as filled_customer_id\n FROM \n normalized_pixel_events\n LEFT JOIN dev_dkruh1.loyalty_stg__merchants AS merchants\n ON normalized_pixel_events.se_value = merchants.guid\n LEFT JOIN useradmin_to_customer_id\n ON useradmin_to_customer_id.domain_userid = normalized_pixel_events.domain_userid\n)\n\nSELECT * FROM loyalty_final_pixel_events\nWHERE partition_date > '2022-12-27'", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__redeemed_purchases": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__redeemed_purchases", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.sql", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.sql", "unique_id": "model.yoda.loyalty__redeemed_purchases", "fqn": ["yoda", "loyalty", "marts", "loyalty__redeemed_purchases", "loyalty__redeemed_purchases"], "alias": "loyalty__redeemed_purchases", "checksum": {"name": "sha256", "checksum": "f7c80ebbce74d95febfef227e152846d2a02c286939afbcd0c4851dcfd4705ec"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Loyalty purchases made with redemption, matches to redeemed purchases in loyalty ROI dashboard. One entry per redemption on purchase", "columns": {"app_key": {"name": "app_key", "description": "merchant's unique identifier in the yotpo platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "the purchase's customer's unique identifier in the ecommerce platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "Customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_total": {"name": "order_total", "description": "the total value of the purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "external_order_id": {"name": "external_order_id", "description": "the purchase's unique identifier in the ecommerce platform - could be duplicated with different redemption values", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_option_id": {"name": "redemption_option_id", "description": "Redemption_option_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_id": {"name": "redemption_id", "description": "Redemption_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_deducted_points": {"name": "amount_deducted_points", "description": "Points Redeemed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_date": {"name": "order_date", "description": "the date of the purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082673.7269862, "relation_name": "dev_dkruh1.loyalty__redeemed_purchases", "raw_code": "WITH purchases AS (\n\n SELECT \n id,\n purchase_amount_on_base_currency,\n amount_refunded_on_base_currency,\n order_id,\n created_at,\n customer_id,\n merchant_id,\n is_refunded,\n swell_discount_cost_cents\n FROM \n {{ ref('loyalty__fact_purchases_daily_snapshot') }}\n WHERE \n purchase_amount_on_base_currency IS NOT NULL\n AND amount_refunded_on_base_currency IS NOT NULL\n\n), purchases_redemptions AS (\n\n SELECT * FROM {{ ref('loyalty__fact_purchases_redemptions_daily_snapshot') }}\n\n), redemptions AS (\n\n SELECT * FROM {{ ref('loyalty__fact_redemptions_daily_snapshot') }}\n\n), yotpo_platform_accounts AS (\n\n SELECT * FROM {{ ref('loyalty__dim_yotpo_platform_accounts_daily_snapshot') }}\n\n), customers AS (\n\n SELECT * FROM {{ ref('loyalty__dim_customers_daily_snapshot') }}\n\n), redeemed_purchases AS (\n\n SELECT \n yotpo_platform_accounts.app_key, \n customers.store_account_id AS external_customer_id, \n customers.email AS customer_email,\n (purchases.purchase_amount_on_base_currency - purchases.amount_refunded_on_base_currency) AS order_total, \n purchases.order_id AS external_order_id, \n redemptions.redemption_option_id AS redemption_option_id,\n redemptions.point_redemptions_id AS redemption_id,\n redemptions.amount_deducted_points AS amount_deducted_points,\n DATE(purchases.created_at) AS order_date \n FROM \n purchases \n LEFT JOIN purchases_redemptions ON purchases.id = purchases_redemptions.purchase_id \n LEFT JOIN redemptions ON redemptions.point_redemptions_id = purchases_redemptions.redemption_id \n JOIN yotpo_platform_accounts ON purchases.merchant_id = yotpo_platform_accounts.merchant_id \n JOIN customers ON purchases.customer_id = customers.id \n WHERE \n purchases.is_refunded = false \n AND redemptions.is_referred_redemption = false \n AND (purchases_redemptions.redemption_id IS NOT NULL \n OR purchases.swell_discount_cost_cents > 0) \n and customers.exclude_from_reports = 0\n\n)\n\nSELECT * \nFROM redeemed_purchases", "language": "sql", "refs": [{"name": "loyalty__fact_purchases_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_purchases_redemptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_redemptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot", "model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot", "model.yoda.loyalty__dim_customers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.sql", "compiled": true, "compiled_code": "WITH purchases AS (\n\n SELECT \n id,\n purchase_amount_on_base_currency,\n amount_refunded_on_base_currency,\n order_id,\n created_at,\n customer_id,\n merchant_id,\n is_refunded,\n swell_discount_cost_cents\n FROM \n dev_dkruh1.loyalty__fact_purchases_daily_snapshot\n WHERE \n purchase_amount_on_base_currency IS NOT NULL\n AND amount_refunded_on_base_currency IS NOT NULL\n\n), purchases_redemptions AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_purchases_redemptions_daily_snapshot\n\n), redemptions AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_redemptions_daily_snapshot\n\n), yotpo_platform_accounts AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_yotpo_platform_accounts_daily_snapshot\n\n), customers AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_customers_daily_snapshot\n\n), redeemed_purchases AS (\n\n SELECT \n yotpo_platform_accounts.app_key, \n customers.store_account_id AS external_customer_id, \n customers.email AS customer_email,\n (purchases.purchase_amount_on_base_currency - purchases.amount_refunded_on_base_currency) AS order_total, \n purchases.order_id AS external_order_id, \n redemptions.redemption_option_id AS redemption_option_id,\n redemptions.point_redemptions_id AS redemption_id,\n redemptions.amount_deducted_points AS amount_deducted_points,\n DATE(purchases.created_at) AS order_date \n FROM \n purchases \n LEFT JOIN purchases_redemptions ON purchases.id = purchases_redemptions.purchase_id \n LEFT JOIN redemptions ON redemptions.point_redemptions_id = purchases_redemptions.redemption_id \n JOIN yotpo_platform_accounts ON purchases.merchant_id = yotpo_platform_accounts.merchant_id \n JOIN customers ON purchases.customer_id = customers.id \n WHERE \n purchases.is_refunded = false \n AND redemptions.is_referred_redemption = false \n AND (purchases_redemptions.redemption_id IS NOT NULL \n OR purchases.swell_discount_cost_cents > 0) \n and customers.exclude_from_reports = 0\n\n)\n\nSELECT * \nFROM redeemed_purchases", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__redeemed_purchases_with_subs_redemption_option", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.sql", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.sql", "unique_id": "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option", "fqn": ["yoda", "loyalty", "marts", "loyalty__redeemed_purchases_with_subs_redemption_option", "loyalty__redeemed_purchases_with_subs_redemption_option"], "alias": "loyalty__redeemed_purchases_with_subs_redemption_option", "checksum": {"name": "sha256", "checksum": "6809fa4b513316c531803bac2a374dd5f2a5fe035f15f17b446be19d24b9ba21"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "ycohen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Orders with the yotpo_subs_fixed_amount redemption option", "columns": {"order_id": {"name": "order_id", "description": "The order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "point_redemption_id": {"name": "point_redemption_id", "description": "The point redemption ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount": {"name": "amount", "description": "The amount redeemed according to the redemption option", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "The merchant's unique identifier in Yotpo platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "ycohen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "ycohen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082673.78606, "relation_name": "dev_dkruh1.loyalty__redeemed_purchases_with_subs_redemption_option", "raw_code": "WITH purchases AS (\n\n SELECT \n id,\n merchant_id,\n order_id\n FROM {{ ref('loyalty_stg__purchases') }}\n\n), redemption_options AS (\n\n SELECT\n id,\n amount,\n discount_type\n FROM {{ ref('loyalty_stg__redemption_options') }}\n\n), point_redemptions AS (\n\n SELECT \n id,\n redemption_option_id\n FROM {{ ref('loyalty_stg__point_redemptions') }}\n\n), purchases_redemptions AS (\n\n SELECT \n purchase_id,\n redemption_id\n FROM {{ ref('loyalty_stg__purchases_redemptions') }}\n\n), yotpo_platform_accounts AS (\n\n SELECT \n merchant_id,\n app_key\n FROM {{ ref('loyalty_stg__yotpo_platform_accounts') }}\n\n), redeemed_purchases_with_subs_redemption_option AS (\n\n SELECT \n purchases.order_id,\n point_redemptions.id AS point_redemption_id,\n redemption_options.amount,\n yotpo_platform_accounts.app_key\n FROM \n redemption_options \n JOIN point_redemptions ON redemption_options.id = point_redemptions.redemption_option_id\n JOIN purchases_redemptions ON point_redemptions.id = purchases_redemptions.redemption_id\n JOIN purchases ON purchases_redemptions.purchase_id = purchases.id\n JOIN yotpo_platform_accounts ON purchases.merchant_id = yotpo_platform_accounts.merchant_id\n WHERE redemption_options.discount_type = 'yotpo_subs_fixed_amount'\n\n)\n\nSELECT * FROM redeemed_purchases_with_subs_redemption_option", "language": "sql", "refs": [{"name": "loyalty_stg__purchases", "package": null, "version": null}, {"name": "loyalty_stg__redemption_options", "package": null, "version": null}, {"name": "loyalty_stg__point_redemptions", "package": null, "version": null}, {"name": "loyalty_stg__purchases_redemptions", "package": null, "version": null}, {"name": "loyalty_stg__yotpo_platform_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__purchases", "model.yoda.loyalty_stg__redemption_options", "model.yoda.loyalty_stg__point_redemptions", "model.yoda.loyalty_stg__purchases_redemptions", "model.yoda.loyalty_stg__yotpo_platform_accounts"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.sql", "compiled": true, "compiled_code": "WITH purchases AS (\n\n SELECT \n id,\n merchant_id,\n order_id\n FROM dev_dkruh1.loyalty_stg__purchases\n\n), redemption_options AS (\n\n SELECT\n id,\n amount,\n discount_type\n FROM dev_dkruh1.loyalty_stg__redemption_options\n\n), point_redemptions AS (\n\n SELECT \n id,\n redemption_option_id\n FROM dev_dkruh1.loyalty_stg__point_redemptions\n\n), purchases_redemptions AS (\n\n SELECT \n purchase_id,\n redemption_id\n FROM dev_dkruh1.loyalty_stg__purchases_redemptions\n\n), yotpo_platform_accounts AS (\n\n SELECT \n merchant_id,\n app_key\n FROM dev_dkruh1.loyalty_stg__yotpo_platform_accounts\n\n), redeemed_purchases_with_subs_redemption_option AS (\n\n SELECT \n purchases.order_id,\n point_redemptions.id AS point_redemption_id,\n redemption_options.amount,\n yotpo_platform_accounts.app_key\n FROM \n redemption_options \n JOIN point_redemptions ON redemption_options.id = point_redemptions.redemption_option_id\n JOIN purchases_redemptions ON point_redemptions.id = purchases_redemptions.redemption_id\n JOIN purchases ON purchases_redemptions.purchase_id = purchases.id\n JOIN yotpo_platform_accounts ON purchases.merchant_id = yotpo_platform_accounts.merchant_id\n WHERE redemption_options.discount_type = 'yotpo_subs_fixed_amount'\n\n)\n\nSELECT * FROM redeemed_purchases_with_subs_redemption_option", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__redemptions": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__redemptions", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__redemptions/loyalty__redemptions.sql", "original_file_path": "models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.sql", "unique_id": "model.yoda.loyalty__redemptions", "fqn": ["yoda", "loyalty", "marts", "loyalty__redemptions", "loyalty__redemptions"], "alias": "loyalty__redemptions", "checksum": {"name": "sha256", "checksum": "a13675d53214900f5cbfd1e185c257005505206c52f22a79dad23c1efa8633f4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "dgrey@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Loyalty redemptions with customer external id and store account", "columns": {"app_key": {"name": "app_key", "description": "App key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "External customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "Customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_option_id": {"name": "redemption_option_id", "description": "Redemption option id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_id": {"name": "redemption_id", "description": "Redemption id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_deducted_points": {"name": "amount_deducted_points", "description": "Amount deducted points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "Creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "redemption_source": {"name": "redemption_source", "description": "Redemption source. examples: synergy_subscription/synergy_sms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "dgrey@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "dgrey@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082673.8038774, "relation_name": "dev_dkruh1.loyalty__redemptions", "raw_code": "WITH points_redemptions AS (\n\n SELECT * FROM {{ ref('loyalty__fact_redemptions_daily_snapshot') }}\n\n), yotpo_platform_accounts AS (\n\n SELECT * FROM {{ ref('loyalty__dim_yotpo_platform_accounts_daily_snapshot') }}\n\n), customers AS (\n\n SELECT * FROM {{ ref('loyalty__dim_customers_daily_snapshot') }}\n\n), redemptions AS (\n\n SELECT \n yotpo_platform_accounts.app_key, \n customers.store_account_id AS external_customer_id, \n customers.email AS customer_email,\n points_redemptions.redemption_option_id AS redemption_option_id,\n points_redemptions.point_redemptions_id AS redemption_id,\n points_redemptions.amount_deducted_points AS amount_deducted_points,\n points_redemptions.created_at AS created_at,\n points_redemptions.redemption_source \n FROM \n points_redemptions\n JOIN yotpo_platform_accounts ON points_redemptions.merchant_id = yotpo_platform_accounts.merchant_id \n JOIN customers ON points_redemptions.customer_id = customers.id \n WHERE points_redemptions.is_referred_redemption = false \n AND customers.exclude_from_reports = 0\n)\n\nSELECT * \nFROM redemptions", "language": "sql", "refs": [{"name": "loyalty__fact_redemptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot", "model.yoda.loyalty__dim_customers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.sql", "compiled": true, "compiled_code": "WITH points_redemptions AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_redemptions_daily_snapshot\n\n), yotpo_platform_accounts AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_yotpo_platform_accounts_daily_snapshot\n\n), customers AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_customers_daily_snapshot\n\n), redemptions AS (\n\n SELECT \n yotpo_platform_accounts.app_key, \n customers.store_account_id AS external_customer_id, \n customers.email AS customer_email,\n points_redemptions.redemption_option_id AS redemption_option_id,\n points_redemptions.point_redemptions_id AS redemption_id,\n points_redemptions.amount_deducted_points AS amount_deducted_points,\n points_redemptions.created_at AS created_at,\n points_redemptions.redemption_source \n FROM \n points_redemptions\n JOIN yotpo_platform_accounts ON points_redemptions.merchant_id = yotpo_platform_accounts.merchant_id \n JOIN customers ON points_redemptions.customer_id = customers.id \n WHERE points_redemptions.is_referred_redemption = false \n AND customers.exclude_from_reports = 0\n)\n\nSELECT * \nFROM redemptions", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__review_earning_rule_loyalty": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__review_earning_rule_loyalty", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.sql", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.sql", "unique_id": "model.yoda.loyalty__review_earning_rule_loyalty", "fqn": ["yoda", "loyalty", "marts", "loyalty__review_earning_rule_loyalty", "loyalty__review_earning_rule_loyalty"], "alias": "loyalty__review_earning_rule_loyalty", "checksum": {"name": "sha256", "checksum": "e55b37554b5dcb2af46327d0323e4852ea838d3d7e81f5f127a7952e23fa3df4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "embers", "created_by": "dgrey@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Data on review earning rule in loyalty", "columns": {"id": {"name": "id", "description": "Unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "Customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "Customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "Platform customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "Merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "The revew_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "Widget key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "Earning rule", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "Earning rule id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "Review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "Review order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "Rating", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "Rating score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Row apdated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "embers", "created_by": "dgrey@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "embers", "created_by": "dgrey@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.823621, "relation_name": "dev_dkruh1.loyalty__review_earning_rule_loyalty", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH user_actions AS (\n\n SELECT campaign_id,\n third_party_id,\n merchant_id,\n customer_id,\n type,\n MAX(updated_at) AS updated_at\n FROM {{ ref('loyalty_stg__user_actions') }}\n GROUP BY campaign_id, third_party_id, customer_id, merchant_id, type\n\n), customers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__enriched_customers') }}\n\n), yotpo_platform_accounts AS (\n\n SELECT * FROM {{ ref('loyalty_stg__yotpo_platform_accounts') }}\n\n), export_reviews AS (\n\n SELECT DISTINCT review_id,\n review_score,\n app_key\n FROM {{ ref('ugc__export_reviews') }}\n\n), review_synergy_details AS (\n\n SELECT uuid() AS id,\n customers.email AS customer_email,\n customers.phone_number AS customer_phone_number,\n customers.store_account_id AS customer_external_id,\n yotpo_platform_accounts.app_key AS app_key,\n user_actions.third_party_id AS action_id,\n CASE WHEN user_actions.type = 'YotpoVideoReview' THEN 118\n WHEN user_actions.type = 'YotpoImageReview' THEN 117\n WHEN user_actions.type = 'YotpoReview' THEN 107\n ELSE 0 END AS synergy_id,\n 'earning_rule' AS source_type,\n user_actions.campaign_id AS source_id,\n CASE WHEN user_actions.type = 'YotpoReview' THEN 'review'\n ELSE 'media' END AS action_type,\n BIGINT(NULL) AS order_id,\n CASE WHEN user_actions.type = 'YotpoReview' THEN 'rating'\n ELSE STRING(NULL) END AS action_attribute_type,\n export_reviews.review_score AS action_attribute_value,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM user_actions \n INNER JOIN customers ON user_actions.customer_id = customers.customer_id\n INNER JOIN yotpo_platform_accounts ON yotpo_platform_accounts.merchant_id = user_actions.merchant_id\n LEFT JOIN export_reviews ON export_reviews.review_id = user_actions.third_party_id AND export_reviews.app_key = yotpo_platform_accounts.app_key\n WHERE user_actions.type IN ('YotpoReview', 'YotpoImageReview', 'YotpoVideoReview')\n\n)\n\nSELECT * FROM review_synergy_details", "language": "sql", "refs": [{"name": "loyalty_stg__user_actions", "package": null, "version": null}, {"name": "loyalty_stg__enriched_customers", "package": null, "version": null}, {"name": "loyalty_stg__yotpo_platform_accounts", "package": null, "version": null}, {"name": "ugc__export_reviews", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__user_actions", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__yotpo_platform_accounts", "model.yoda.ugc__export_reviews"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH user_actions AS (\n\n SELECT campaign_id,\n third_party_id,\n merchant_id,\n customer_id,\n type,\n MAX(updated_at) AS updated_at\n FROM dev_dkruh1.loyalty_stg__user_actions\n GROUP BY campaign_id, third_party_id, customer_id, merchant_id, type\n\n), customers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__enriched_customers\n\n), yotpo_platform_accounts AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__yotpo_platform_accounts\n\n), export_reviews AS (\n\n SELECT DISTINCT review_id,\n review_score,\n app_key\n FROM dev_dkruh1.ugc__export_reviews\n\n), review_synergy_details AS (\n\n SELECT uuid() AS id,\n customers.email AS customer_email,\n customers.phone_number AS customer_phone_number,\n customers.store_account_id AS customer_external_id,\n yotpo_platform_accounts.app_key AS app_key,\n user_actions.third_party_id AS action_id,\n CASE WHEN user_actions.type = 'YotpoVideoReview' THEN 118\n WHEN user_actions.type = 'YotpoImageReview' THEN 117\n WHEN user_actions.type = 'YotpoReview' THEN 107\n ELSE 0 END AS synergy_id,\n 'earning_rule' AS source_type,\n user_actions.campaign_id AS source_id,\n CASE WHEN user_actions.type = 'YotpoReview' THEN 'review'\n ELSE 'media' END AS action_type,\n BIGINT(NULL) AS order_id,\n CASE WHEN user_actions.type = 'YotpoReview' THEN 'rating'\n ELSE STRING(NULL) END AS action_attribute_type,\n export_reviews.review_score AS action_attribute_value,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM user_actions \n INNER JOIN customers ON user_actions.customer_id = customers.customer_id\n INNER JOIN yotpo_platform_accounts ON yotpo_platform_accounts.merchant_id = user_actions.merchant_id\n LEFT JOIN export_reviews ON export_reviews.review_id = user_actions.third_party_id AND export_reviews.app_key = yotpo_platform_accounts.app_key\n WHERE user_actions.type IN ('YotpoReview', 'YotpoImageReview', 'YotpoVideoReview')\n\n)\n\nSELECT * FROM review_synergy_details", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__sms_earning_rule_loyalty": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__sms_earning_rule_loyalty", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.sql", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.sql", "unique_id": "model.yoda.loyalty__sms_earning_rule_loyalty", "fqn": ["yoda", "loyalty", "marts", "loyalty__sms_earning_rule_loyalty", "loyalty__sms_earning_rule_loyalty"], "alias": "loyalty__sms_earning_rule_loyalty", "checksum": {"name": "sha256", "checksum": "2a70f88fcce35090a261077c78b1eff19e4c3d575fd455709c98d7d1ab978e42"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "embers", "created_by": "dgrey@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Data on review earning rule in loyalty", "columns": {"id": {"name": "id", "description": "Unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "Customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "Customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "Platform customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergy_id": {"name": "synergy_id", "description": "Widget key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "Earning rule", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "Earning rule id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "new subscriber", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_type": {"name": "action_attribute_type", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Row apdated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "embers", "created_by": "dgrey@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "embers", "created_by": "dgrey@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082673.866082, "relation_name": "dev_dkruh1.loyalty__sms_earning_rule_loyalty", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH perks AS (\n\n SELECT id,\n campaign_id,\n customer_id,\n merchant_id,\n MAX(updated_at) AS updated_at\n FROM {{ ref('loyalty_stg__perks') }}\n GROUP BY id, campaign_id, customer_id, merchant_id\n\n), customers AS (\n\n SELECT email,\n phone_number,\n store_account_id,\n merchant_id,\n MAX(customer_id) AS customer_id\n FROM {{ ref('loyalty_stg__enriched_customers') }}\n GROUP BY email, phone_number, store_account_id ,merchant_id\n\n), yotpo_platform_accounts AS (\n\n SELECT * FROM {{ ref('loyalty_stg__yotpo_platform_accounts') }}\n\n), campaigns AS (\n\n SELECT * FROM {{ ref('loyalty_stg__campaigns') }}\n\n), sms_synergy_details AS (\n\n SELECT uuid() AS id,\n customers.email AS customer_email,\n customers.phone_number AS customer_phone_number,\n customers.store_account_id AS customer_external_id,\n yotpo_platform_accounts.app_key AS app_key,\n perks.id AS action_id,\n 106 AS synergy_id, \n 'earning_rule' AS source_type,\n campaigns.id AS source_id,\n BIGINT(NULL) AS order_id,\n 'new_subscriber' AS action_type,\n STRING(NULL) AS action_attribute_type,\n BIGINT(NULL) AS action_attribute_value,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM campaigns\n INNER JOIN perks as perks on perks.campaign_id = campaigns.id\n INNER JOIN customers ON perks.customer_id = customers.customer_id\n INNER JOIN yotpo_platform_accounts ON yotpo_platform_accounts.merchant_id = perks.merchant_id\n WHERE campaigns.type = 'SmsSignUpCampaign'\n)\n\nSELECT * FROM sms_synergy_details", "language": "sql", "refs": [{"name": "loyalty_stg__perks", "package": null, "version": null}, {"name": "loyalty_stg__enriched_customers", "package": null, "version": null}, {"name": "loyalty_stg__yotpo_platform_accounts", "package": null, "version": null}, {"name": "loyalty_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__perks", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__yotpo_platform_accounts", "model.yoda.loyalty_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH perks AS (\n\n SELECT id,\n campaign_id,\n customer_id,\n merchant_id,\n MAX(updated_at) AS updated_at\n FROM dev_dkruh1.loyalty_stg__perks\n GROUP BY id, campaign_id, customer_id, merchant_id\n\n), customers AS (\n\n SELECT email,\n phone_number,\n store_account_id,\n merchant_id,\n MAX(customer_id) AS customer_id\n FROM dev_dkruh1.loyalty_stg__enriched_customers\n GROUP BY email, phone_number, store_account_id ,merchant_id\n\n), yotpo_platform_accounts AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__yotpo_platform_accounts\n\n), campaigns AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__campaigns\n\n), sms_synergy_details AS (\n\n SELECT uuid() AS id,\n customers.email AS customer_email,\n customers.phone_number AS customer_phone_number,\n customers.store_account_id AS customer_external_id,\n yotpo_platform_accounts.app_key AS app_key,\n perks.id AS action_id,\n 106 AS synergy_id, \n 'earning_rule' AS source_type,\n campaigns.id AS source_id,\n BIGINT(NULL) AS order_id,\n 'new_subscriber' AS action_type,\n STRING(NULL) AS action_attribute_type,\n BIGINT(NULL) AS action_attribute_value,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM campaigns\n INNER JOIN perks as perks on perks.campaign_id = campaigns.id\n INNER JOIN customers ON perks.customer_id = customers.customer_id\n INNER JOIN yotpo_platform_accounts ON yotpo_platform_accounts.merchant_id = perks.merchant_id\n WHERE campaigns.type = 'SmsSignUpCampaign'\n)\n\nSELECT * FROM sms_synergy_details", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_consumer_entity_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_consumer_entity_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_consumer_entity_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_consumer_entity_daily_snapshot", "loyalty__snowflake_consumer_entity_daily_snapshot"], "alias": "loyalty__snowflake_consumer_entity_daily_snapshot", "checksum": {"name": "sha256", "checksum": "10856c27cc9adc1cba4f9b5063a4ab17b37f5bbdfcc595a3b805f8b5e25b4bd8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "consumer_entity_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table consumer_entity_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "company_name": {"name": "company_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_name": {"name": "first_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_customer": {"name": "referred_by_customer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_balance": {"name": "points_balance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_redeemed": {"name": "points_redeemed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_member": {"name": "is_member", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "vip_tier_id": {"name": "vip_tier_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vip_tier_name": {"name": "vip_tier_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vip_tier_next_id": {"name": "vip_tier_next_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vip_tier_next_name": {"name": "vip_tier_next_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "remaining_to_next_tier": {"name": "remaining_to_next_tier", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_sent_count": {"name": "email_sent_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_redemption_date": {"name": "first_redemption_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_redemption_date": {"name": "last_redemption_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "total_coupons_used": {"name": "total_coupons_used", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_amount_deducted_points": {"name": "total_amount_deducted_points", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_times_point_redeemed": {"name": "total_times_point_redeemed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_purchases_applied_to_campaigns": {"name": "total_purchases_applied_to_campaigns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_purchases": {"name": "total_purchases", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_purchase_at": {"name": "last_purchase_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "billing_country_codes": {"name": "billing_country_codes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_cities": {"name": "billing_cities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_country_codes": {"name": "shipping_country_codes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_cities": {"name": "shipping_cities", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_refunds": {"name": "total_refunds", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lifetime_spend_cents": {"name": "lifetime_spend_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lifetime_spend_usd": {"name": "lifetime_spend_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lifetime_spend_on_base_currency": {"name": "lifetime_spend_on_base_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lifetime_spend_cents_applied_to_campaigns": {"name": "lifetime_spend_cents_applied_to_campaigns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lifetime_spend_usd_applied_to_campaigns": {"name": "lifetime_spend_usd_applied_to_campaigns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lifetime_spend_on_base_currency_applied_to_campaigns": {"name": "lifetime_spend_on_base_currency_applied_to_campaigns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_purchase_at": {"name": "first_purchase_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_purchase_value": {"name": "first_purchase_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "first_purchase_value_cents": {"name": "first_purchase_value_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_purchase_value_usd": {"name": "first_purchase_value_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "first_purchase_value_on_base_currency": {"name": "first_purchase_value_on_base_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "aov": {"name": "aov", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "aov_usd": {"name": "aov_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_loyalty_member": {"name": "is_loyalty_member", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "customer_opted_in_at": {"name": "customer_opted_in_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "birthday": {"name": "birthday", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "birthday_last_sent": {"name": "birthday_last_sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "referral_links_clicked": {"name": "referral_links_clicked", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_orders": {"name": "referral_orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_amount_on_base_currency": {"name": "referral_amount_on_base_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referral_amount_usd": {"name": "referral_amount_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referral_amount_cents": {"name": "referral_amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "likelihood_to_make_a_purchase": {"name": "likelihood_to_make_a_purchase", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "not_eligible": {"name": "not_eligible", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "asavg_star_rating": {"name": "asavg_star_rating", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avg_sentiment": {"name": "avg_sentiment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "last_review_star_rating": {"name": "last_review_star_rating", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_review_sentiment": {"name": "last_review_sentiment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "topics": {"name": "topics", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "count_reviews": {"name": "count_reviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "count_positive_reviews": {"name": "count_positive_reviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "count_negative_reviews": {"name": "count_negative_reviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "consumer_entity_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table consumer_entity_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "consumer_entity_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table consumer_entity_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082673.9461539, "relation_name": "dev_dkruh1.loyalty__snowflake_consumer_entity_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\nWITH consumer_entity AS (\n\n SELECT * FROM {{ ref('loyalty__dim_consumer_entity_daily_snapshot') }}\n\n), loyalty__snowflake_consumer_entity_daily_snapshot AS (\n\n \n SELECT\n cast(id as bigint),\n cast(app_key as string),\n cast(merchant_id as bigint),\n cast(company_name as string),\n cast(name as string),\n cast(first_name as string),\n cast(last_name as string),\n cast(referred_by_customer as boolean),\n cast(email as string),\n cast(points_balance as bigint),\n cast(points_earned as bigint),\n cast(points_redeemed as bigint),\n cast(is_member as boolean),\n cast(created_at as timestamp),\n cast(vip_tier_id as bigint),\n cast(vip_tier_name as string),\n cast(vip_tier_next_id as bigint),\n cast(vip_tier_next_name as string),\n cast(remaining_to_next_tier as bigint),\n cast(email_sent_count as bigint),\n cast(first_redemption_date as timestamp),\n cast(last_redemption_date as timestamp),\n cast(total_coupons_used as bigint),\n cast(total_amount_deducted_points as bigint),\n cast(total_times_point_redeemed as bigint),\n cast(total_purchases_applied_to_campaigns as bigint),\n cast(total_purchases as bigint),\n cast(last_purchase_at as timestamp), \n cast(billing_country_codes as string),\n cast(billing_cities as string),\n cast(shipping_country_codes as string),\n cast(shipping_cities as string),\n cast(total_refunds as bigint),\n cast(channel as string),\n cast(lifetime_spend_cents as bigint),\n cast(lifetime_spend_usd as double),\n cast(lifetime_spend_on_base_currency as double),\n cast(lifetime_spend_cents_applied_to_campaigns as bigint),\n cast(lifetime_spend_usd_applied_to_campaigns as double),\n cast(lifetime_spend_on_base_currency_applied_to_campaigns as bigint),\n cast(first_purchase_at as timestamp), \n cast(first_purchase_value as float),\n cast(first_purchase_value_cents as bigint),\n cast(first_purchase_value_usd as float),\n cast(first_purchase_value_on_base_currency as float),\n cast(aov as double),\n cast(aov_usd as double),\n cast(is_loyalty_member as boolean),\n cast(customer_opted_in_at as timestamp), \n cast(birthday as string),\n cast(birthday_last_sent as timestamp), \n cast(referral_links_clicked as bigint),\n cast(referral_orders as bigint),\n cast(referral_amount_on_base_currency as double),\n cast(referral_amount_usd as double),\n cast(referral_amount_cents as bigint),\n cast(likelihood_to_make_a_purchase as string),\n cast(not_eligible as boolean),\n cast(asavg_star_rating as string),\n cast(avg_sentiment as float),\n cast(user_id as int),\n cast(last_review_star_rating as timestamp),\n cast(last_review_sentiment as timestamp),\n cast(topics as string),\n cast(count_reviews as int),\n cast(count_positive_reviews as int),\n cast(count_negative_reviews as int)\n \n FROM consumer_entity\n)\n\nSELECT * FROM loyalty__snowflake_consumer_entity_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__dim_consumer_entity_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_consumer_entity_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH consumer_entity AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_consumer_entity_daily_snapshot\n\n), loyalty__snowflake_consumer_entity_daily_snapshot AS (\n\n \n SELECT\n cast(id as bigint),\n cast(app_key as string),\n cast(merchant_id as bigint),\n cast(company_name as string),\n cast(name as string),\n cast(first_name as string),\n cast(last_name as string),\n cast(referred_by_customer as boolean),\n cast(email as string),\n cast(points_balance as bigint),\n cast(points_earned as bigint),\n cast(points_redeemed as bigint),\n cast(is_member as boolean),\n cast(created_at as timestamp),\n cast(vip_tier_id as bigint),\n cast(vip_tier_name as string),\n cast(vip_tier_next_id as bigint),\n cast(vip_tier_next_name as string),\n cast(remaining_to_next_tier as bigint),\n cast(email_sent_count as bigint),\n cast(first_redemption_date as timestamp),\n cast(last_redemption_date as timestamp),\n cast(total_coupons_used as bigint),\n cast(total_amount_deducted_points as bigint),\n cast(total_times_point_redeemed as bigint),\n cast(total_purchases_applied_to_campaigns as bigint),\n cast(total_purchases as bigint),\n cast(last_purchase_at as timestamp), \n cast(billing_country_codes as string),\n cast(billing_cities as string),\n cast(shipping_country_codes as string),\n cast(shipping_cities as string),\n cast(total_refunds as bigint),\n cast(channel as string),\n cast(lifetime_spend_cents as bigint),\n cast(lifetime_spend_usd as double),\n cast(lifetime_spend_on_base_currency as double),\n cast(lifetime_spend_cents_applied_to_campaigns as bigint),\n cast(lifetime_spend_usd_applied_to_campaigns as double),\n cast(lifetime_spend_on_base_currency_applied_to_campaigns as bigint),\n cast(first_purchase_at as timestamp), \n cast(first_purchase_value as float),\n cast(first_purchase_value_cents as bigint),\n cast(first_purchase_value_usd as float),\n cast(first_purchase_value_on_base_currency as float),\n cast(aov as double),\n cast(aov_usd as double),\n cast(is_loyalty_member as boolean),\n cast(customer_opted_in_at as timestamp), \n cast(birthday as string),\n cast(birthday_last_sent as timestamp), \n cast(referral_links_clicked as bigint),\n cast(referral_orders as bigint),\n cast(referral_amount_on_base_currency as double),\n cast(referral_amount_usd as double),\n cast(referral_amount_cents as bigint),\n cast(likelihood_to_make_a_purchase as string),\n cast(not_eligible as boolean),\n cast(asavg_star_rating as string),\n cast(avg_sentiment as float),\n cast(user_id as int),\n cast(last_review_star_rating as timestamp),\n cast(last_review_sentiment as timestamp),\n cast(topics as string),\n cast(count_reviews as int),\n cast(count_positive_reviews as int),\n cast(count_negative_reviews as int)\n \n FROM consumer_entity\n)\n\nSELECT * FROM loyalty__snowflake_consumer_entity_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_customer_birthdays_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_customer_birthdays_daily_snapshot", "loyalty__snowflake_customer_birthdays_daily_snapshot"], "alias": "loyalty__snowflake_customer_birthdays_daily_snapshot", "checksum": {"name": "sha256", "checksum": "4f2a89ecddec32b0835ebe8c5c60a9a956d11d764dc780093a95d875f6ae608c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_customer_birthdays_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"group_customer_id": {"name": "group_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "day": {"name": "day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "month": {"name": "month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "year": {"name": "year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_sent": {"name": "last_sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_customer_birthdays_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_customer_birthdays_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082673.9652197, "relation_name": "dev_dkruh1.loyalty__snowflake_customer_birthdays_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__dim_customer_birthdays_daily_snapshot') }}\n\n), snowflake_customer_birthdays_daily_snapshot AS (\n\n SELECT \n\t\tcast(group_customer_id as bigint),\n\t\tcast(day as bigint),\n\t\tcast(month as bigint),\n\t\tcast(year as bigint),\n\t\tcast(last_sent as timestamp),\n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY group_customer_id\n\n)\n\nSELECT * FROM snowflake_customer_birthdays_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__dim_customer_birthdays_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_customer_birthdays_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_customer_birthdays_daily_snapshot\n\n), snowflake_customer_birthdays_daily_snapshot AS (\n\n SELECT \n\t\tcast(group_customer_id as bigint),\n\t\tcast(day as bigint),\n\t\tcast(month as bigint),\n\t\tcast(year as bigint),\n\t\tcast(last_sent as timestamp),\n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY group_customer_id\n\n)\n\nSELECT * FROM snowflake_customer_birthdays_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_customers_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_customers_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_customers_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_customers_daily_snapshot", "loyalty__snowflake_customers_daily_snapshot"], "alias": "loyalty__snowflake_customers_daily_snapshot", "checksum": {"name": "sha256", "checksum": "4c51d87aaea89028d09c80f464d6b9b7e04979f29b61b0ed8008761048e12ed4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_customers_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_customers_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_customer_id": {"name": "group_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_id": {"name": "group_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_name": {"name": "first_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_number": {"name": "phone_number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_account_id": {"name": "store_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_balance": {"name": "points_balance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_by_customer_id": {"name": "referred_by_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vip_tier_id": {"name": "vip_tier_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_expiration_date": {"name": "tier_expiration_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_entry_date": {"name": "tier_entry_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_purchase_at": {"name": "last_purchase_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email_sent_count": {"name": "email_sent_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "state": {"name": "state", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_member": {"name": "is_member", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "exclude_from_reports": {"name": "exclude_from_reports", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "last_seen_at": {"name": "last_seen_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "platform_account_created_at": {"name": "platform_account_created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opted_in_at": {"name": "opted_in_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_customers_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_customers_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_customers_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_customers_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082673.9952462, "relation_name": "dev_dkruh1.loyalty__snowflake_customers_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__dim_customers_daily_snapshot') }}\n\n), snowflake_customers_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(group_customer_id as bigint),\n\t\tcast(group_id as string),\n\t\tcast(merchant_id as bigint),\n\t\tcast(first_name as string),\n\t\tcast(last_name as string),\n\t\tcast(name as string),\n\t\tcast(email as string),\n\t\tcast(phone_number as string),\n\t\tcast(store_account_id as string),\n\t\tcast(points_balance as bigint),\n\t\tcast(points_earned as bigint),\n\t\tcast(referred_by_customer_id as bigint),\n\t\tcast(vip_tier_id as bigint),\n\t\tcast(tier_expiration_date as timestamp),\n\t\tcast(tier_entry_date as timestamp),\n\t\tcast(last_purchase_at as timestamp),\n\t\tcast(email_sent_count as bigint),\n\t\tcast(state as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(is_member as boolean),\n\t\tcast(exclude_from_reports as boolean),\n\t\tcast(last_seen_at as timestamp),\n\t\tcast(platform_account_created_at as timestamp),\n\t\tcast(opted_in_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_customers_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_customers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_customers_daily_snapshot\n\n), snowflake_customers_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(group_customer_id as bigint),\n\t\tcast(group_id as string),\n\t\tcast(merchant_id as bigint),\n\t\tcast(first_name as string),\n\t\tcast(last_name as string),\n\t\tcast(name as string),\n\t\tcast(email as string),\n\t\tcast(phone_number as string),\n\t\tcast(store_account_id as string),\n\t\tcast(points_balance as bigint),\n\t\tcast(points_earned as bigint),\n\t\tcast(referred_by_customer_id as bigint),\n\t\tcast(vip_tier_id as bigint),\n\t\tcast(tier_expiration_date as timestamp),\n\t\tcast(tier_entry_date as timestamp),\n\t\tcast(last_purchase_at as timestamp),\n\t\tcast(email_sent_count as bigint),\n\t\tcast(state as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(is_member as boolean),\n\t\tcast(exclude_from_reports as boolean),\n\t\tcast(last_seen_at as timestamp),\n\t\tcast(platform_account_created_at as timestamp),\n\t\tcast(opted_in_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_customers_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot", "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot"], "alias": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot", "checksum": {"name": "sha256", "checksum": "e97596d844d7cbc32c26697464b5fcac4b37e38c488b3bbfbbf4079428390bfd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_customers_with_vip_tiers_history_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_customers_with_vip_tiers_history_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"history_id": {"name": "history_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_name": {"name": "tier_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rank": {"name": "rank", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_balance": {"name": "points_balance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_member": {"name": "is_member", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "vip_tier_id": {"name": "vip_tier_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_entry_date": {"name": "tier_entry_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_expiration_date": {"name": "tier_expiration_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "expired_at": {"name": "expired_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "action": {"name": "action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_created_at": {"name": "customer_created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_updated_at": {"name": "customer_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_vip_tiers_history_created_at": {"name": "customer_vip_tiers_history_created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_vip_tiers_history_updated_at": {"name": "customer_vip_tiers_history_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_customers_with_vip_tiers_history_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_customers_with_vip_tiers_history_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_customers_with_vip_tiers_history_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_customers_with_vip_tiers_history_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.0221968, "relation_name": "dev_dkruh1.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__dim_customers_with_vip_tiers_history_daily_snapshot') }}\n\n), snowflake_customers_with_vip_tiers_history_daily_snapshot AS (\n\n SELECT \n\t\tcast(history_id as bigint),\n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(tier_name as string),\n\t\tcast(email as string),\n\t\tcast(rank as bigint),\n\t\tcast(points_balance as bigint),\n\t\tcast(points_earned as bigint),\n\t\tcast(is_member as boolean),\n\t\tcast(vip_tier_id as bigint),\n\t\tcast(tier_entry_date as timestamp),\n\t\tcast(tier_expiration_date as timestamp),\n\t\tcast(expired_at as timestamp),\n\t\tcast(action as string),\n\t\tcast(customer_created_at as timestamp),\n\t\tcast(customer_updated_at as timestamp),\n\t\tcast(customer_vip_tiers_history_created_at as timestamp),\n\t\tcast(customer_vip_tiers_history_updated_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_customers_with_vip_tiers_history_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot\n\n), snowflake_customers_with_vip_tiers_history_daily_snapshot AS (\n\n SELECT \n\t\tcast(history_id as bigint),\n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(tier_name as string),\n\t\tcast(email as string),\n\t\tcast(rank as bigint),\n\t\tcast(points_balance as bigint),\n\t\tcast(points_earned as bigint),\n\t\tcast(is_member as boolean),\n\t\tcast(vip_tier_id as bigint),\n\t\tcast(tier_entry_date as timestamp),\n\t\tcast(tier_expiration_date as timestamp),\n\t\tcast(expired_at as timestamp),\n\t\tcast(action as string),\n\t\tcast(customer_created_at as timestamp),\n\t\tcast(customer_updated_at as timestamp),\n\t\tcast(customer_vip_tiers_history_created_at as timestamp),\n\t\tcast(customer_vip_tiers_history_updated_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_customers_with_vip_tiers_history_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_dates_for_investment_metric_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_dates_for_investment_metric_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_dates_for_investment_metric_daily_snapshot/loyalty__snowflake_dates_for_investment_metric_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_dates_for_investment_metric_daily_snapshot/loyalty__snowflake_dates_for_investment_metric_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_dates_for_investment_metric_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_dates_for_investment_metric_daily_snapshot", "loyalty__snowflake_dates_for_investment_metric_daily_snapshot"], "alias": "loyalty__snowflake_dates_for_investment_metric_daily_snapshot", "checksum": {"name": "sha256", "checksum": "0d5a6e8973eb8528fd7874ac70869645cf744da9f419dff902db2987d426ee98"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_dates_for_investment_metric", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_dates_for_investment_metric cluster by (investment_date);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"investment_date": {"name": "investment_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_dates_for_investment_metric", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_dates_for_investment_metric cluster by (investment_date);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_dates_for_investment_metric_daily_snapshot/loyalty__snowflake_dates_for_investment_metric_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_dates_for_investment_metric", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_dates_for_investment_metric cluster by (investment_date);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.0367901, "relation_name": "dev_dkruh1.loyalty__snowflake_dates_for_investment_metric_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_dates_for_investment_metric_daily_snapshot') }}\n\n), snowflake_dates_for_investment_metric_daily_snapshot AS (\n\n SELECT \n\t\tcast(investment_date as date),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY investment_date\n\n)\n\nSELECT * FROM snowflake_dates_for_investment_metric_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_dates_for_investment_metric_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_dates_for_investment_metric_daily_snapshot/loyalty__snowflake_dates_for_investment_metric_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_dates_for_investment_metric_daily_snapshot\n\n), snowflake_dates_for_investment_metric_daily_snapshot AS (\n\n SELECT \n\t\tcast(investment_date as date),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY investment_date\n\n)\n\nSELECT * FROM snowflake_dates_for_investment_metric_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_email_campagins_emails_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_email_campagins_emails_daily_snapshot", "loyalty__snowflake_email_campagins_emails_daily_snapshot"], "alias": "loyalty__snowflake_email_campagins_emails_daily_snapshot", "checksum": {"name": "sha256", "checksum": "4a4f2b884c6b54203067afbf989743a9cdd1758c1f54f6709468fcd076511651"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_email_campaign_emails_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_email_campaign_emails_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_campaign_id": {"name": "email_campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent_at": {"name": "sent_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "clicked": {"name": "clicked", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "clicked_at": {"name": "clicked_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "unsubscribed": {"name": "unsubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "unsubscribed_at": {"name": "unsubscribed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "marked_as_spam": {"name": "marked_as_spam", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "marked_as_spam_at": {"name": "marked_as_spam_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_email_campaign_emails_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_email_campaign_emails_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_email_campaign_emails_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_email_campaign_emails_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.0584779, "relation_name": "dev_dkruh1.loyalty__snowflake_email_campagins_emails_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_email_campaigns_emails_daily_snapshot') }}\n\n), snowflake_email_campagins_emails_daily_snapshot AS (\n\n SELECT \n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(email_campaign_id as bigint),\n\t\tcast(sent_at as timestamp),\n\t\tcast(clicked as boolean),\n\t\tcast(clicked_at as timestamp),\n\t\tcast(unsubscribed as boolean),\n\t\tcast(unsubscribed_at as timestamp),\n\t\tcast(marked_as_spam as boolean),\n\t\tcast(marked_as_spam_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_email_campagins_emails_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_email_campaigns_emails_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_email_campaigns_emails_daily_snapshot\n\n), snowflake_email_campagins_emails_daily_snapshot AS (\n\n SELECT \n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(email_campaign_id as bigint),\n\t\tcast(sent_at as timestamp),\n\t\tcast(clicked as boolean),\n\t\tcast(clicked_at as timestamp),\n\t\tcast(unsubscribed as boolean),\n\t\tcast(unsubscribed_at as timestamp),\n\t\tcast(marked_as_spam as boolean),\n\t\tcast(marked_as_spam_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_email_campagins_emails_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_email_campaigns": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_email_campaigns", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.sql", "unique_id": "model.yoda.loyalty__snowflake_email_campaigns", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_email_campaigns", "loyalty__snowflake_email_campaigns"], "alias": "loyalty__snowflake_email_campaigns", "checksum": {"name": "sha256", "checksum": "8f657b60a8220d34800652fda96ece57340bb5690c369076c452535f10c6ab8e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_email_campaigns", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_email_campaigns cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "activated_at": {"name": "activated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "active": {"name": "active", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "body": {"name": "body", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delay_days": {"name": "delay_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_bounced_count": {"name": "email_bounced_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_clicked_count": {"name": "email_clicked_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_delayed_count": {"name": "email_delayed_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_marked_as_spam_count": {"name": "email_marked_as_spam_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_opened_count": {"name": "email_opened_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_rejected_count": {"name": "email_rejected_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_sent_count": {"name": "email_sent_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_soft_bounced_count": {"name": "email_soft_bounced_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_unsubscribed_count": {"name": "email_unsubscribed_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "layout": {"name": "layout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent_at": {"name": "sent_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sent": {"name": "sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "show_recommendations": {"name": "show_recommendations", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "start_job_id": {"name": "start_job_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "starts_at": {"name": "starts_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subject": {"name": "subject", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_email_campaigns", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_email_campaigns cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_email_campaigns", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_email_campaigns cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.0896833, "relation_name": "dev_dkruh1.loyalty__snowflake_email_campaigns", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty_stg__email_campaigns') }}\n\n), snowflake_email_campaigns AS (\n\n SELECT \n\t\tcast(updated_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(activated_at as timestamp),\n\t\tcast(active as boolean),\n\t\tcast(body as string),\n\t\tcast(campaign_id as bigint),\n\t\tcast(delay_days as bigint),\n\t\tcast(email_bounced_count as bigint),\n\t\tcast(email_clicked_count as bigint),\n\t\tcast(email_delayed_count as bigint),\n\t\tcast(email_marked_as_spam_count as bigint),\n\t\tcast(email_opened_count as bigint),\n\t\tcast(email_rejected_count as bigint),\n\t\tcast(email_sent_count as bigint),\n\t\tcast(email_soft_bounced_count as bigint),\n\t\tcast(email_unsubscribed_count as bigint),\n\t\tcast(id as bigint),\n\t\tcast(layout as string),\n\t\tcast(merchant_id as bigint),\n\t\tcast(sent_at as timestamp),\n\t\tcast(sent as boolean),\n\t\tcast(show_recommendations as boolean),\n\t\tcast(start_job_id as string),\n\t\tcast(starts_at as timestamp),\n\t\tcast(subject as string),\n\t\tcast(type as string)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_email_campaigns", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__email_campaigns"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__email_campaigns\n\n), snowflake_email_campaigns AS (\n\n SELECT \n\t\tcast(updated_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(activated_at as timestamp),\n\t\tcast(active as boolean),\n\t\tcast(body as string),\n\t\tcast(campaign_id as bigint),\n\t\tcast(delay_days as bigint),\n\t\tcast(email_bounced_count as bigint),\n\t\tcast(email_clicked_count as bigint),\n\t\tcast(email_delayed_count as bigint),\n\t\tcast(email_marked_as_spam_count as bigint),\n\t\tcast(email_opened_count as bigint),\n\t\tcast(email_rejected_count as bigint),\n\t\tcast(email_sent_count as bigint),\n\t\tcast(email_soft_bounced_count as bigint),\n\t\tcast(email_unsubscribed_count as bigint),\n\t\tcast(id as bigint),\n\t\tcast(layout as string),\n\t\tcast(merchant_id as bigint),\n\t\tcast(sent_at as timestamp),\n\t\tcast(sent as boolean),\n\t\tcast(show_recommendations as boolean),\n\t\tcast(start_job_id as string),\n\t\tcast(starts_at as timestamp),\n\t\tcast(subject as string),\n\t\tcast(type as string)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_email_campaigns", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_merchants_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_merchants_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_merchants_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_merchants_daily_snapshot", "loyalty__snowflake_merchants_daily_snapshot"], "alias": "loyalty__snowflake_merchants_daily_snapshot", "checksum": {"name": "sha256", "checksum": "b91a0e9daaf365f71f109463154a65c80a3083165c9ad44903198f3376afe767"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_merchants_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "guid": {"name": "guid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_name": {"name": "company_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "on_free_trial": {"name": "on_free_trial", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_yotpo_industry": {"name": "account_yotpo_industry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_yotpo_sub_industry": {"name": "account_yotpo_sub_industry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_yotpo_industry_confidence_level": {"name": "account_yotpo_industry_confidence_level", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_account_data_excluded": {"name": "is_account_data_excluded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "test_account": {"name": "test_account", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_merchants_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_merchants_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.1165287, "relation_name": "dev_dkruh1.loyalty__snowflake_merchants_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__dim_merchants_daily_snapshot') }}\n\n), snowflake_merchants_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(guid as string),\n\t\tcast(website as string),\n\t\tcast(company_name as string),\n\t\tcast(on_free_trial as boolean),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(platform as string),\n\t\tcast(currency as string),\n\t\tcast(account_yotpo_industry as string),\n\t\tcast(account_yotpo_sub_industry as string),\n\t\tcast(account_yotpo_industry_confidence_level as string),\n\t\tcast(is_account_data_excluded as smallint),\n\t\tcast(test_account as boolean),\n\t\tcast(app_key as string),\n\t\tcast(group_id as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_merchants_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__dim_merchants_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_merchants_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_merchants_daily_snapshot\n\n), snowflake_merchants_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(guid as string),\n\t\tcast(website as string),\n\t\tcast(company_name as string),\n\t\tcast(on_free_trial as boolean),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(platform as string),\n\t\tcast(currency as string),\n\t\tcast(account_yotpo_industry as string),\n\t\tcast(account_yotpo_sub_industry as string),\n\t\tcast(account_yotpo_industry_confidence_level as string),\n\t\tcast(is_account_data_excluded as smallint),\n\t\tcast(test_account as boolean),\n\t\tcast(app_key as string),\n\t\tcast(group_id as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_merchants_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_perks_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_perks_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_perks_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_perks_daily_snapshot", "loyalty__snowflake_perks_daily_snapshot"], "alias": "loyalty__snowflake_perks_daily_snapshot", "checksum": {"name": "sha256", "checksum": "8a937a420a16677c59d517ea8929fecde2d39e4627739d1ea3497dd70c1735e3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_perks_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_perks_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_points": {"name": "reward_points", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reversed": {"name": "reversed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "completed": {"name": "completed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_member": {"name": "is_member", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_perks_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_perks_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_perks_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_perks_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.1360745, "relation_name": "dev_dkruh1.loyalty__snowflake_perks_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_perks_daily_snapshot') }}\n\n), snowflake_perks_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(reward_points as bigint),\n\t\tcast(reversed as boolean),\n\t\tcast(completed as boolean),\n\t\tcast(completed_at as timestamp),\n\t\tcast(merchant_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(customer_id as bigint),\n\t\tcast(is_member as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_perks_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_perks_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_perks_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_perks_daily_snapshot\n\n), snowflake_perks_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(reward_points as bigint),\n\t\tcast(reversed as boolean),\n\t\tcast(completed as boolean),\n\t\tcast(completed_at as timestamp),\n\t\tcast(merchant_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(customer_id as bigint),\n\t\tcast(is_member as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_perks_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_pixel_events": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_pixel_events", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.sql", "unique_id": "model.yoda.loyalty__snowflake_pixel_events", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_pixel_events", "loyalty__snowflake_pixel_events"], "alias": "loyalty__snowflake_pixel_events", "checksum": {"name": "sha256", "checksum": "5568a8746808226cd80132e7df85e0756df9509dec47e33695539c2d655b5288"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_pixel_events", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Append", "warehouse": "INGESTION", "pre_actions": "alter table swell_pixel_events cluster by (collector_date, substring(merchant_id, 0, 5));", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_value": {"name": "se_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_date": {"name": "collector_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_checkout": {"name": "is_checkout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "share_type": {"name": "share_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "filled_customer_id": {"name": "filled_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_pixel_events", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Append", "warehouse": "INGESTION", "pre_actions": "alter table swell_pixel_events cluster by (collector_date, substring(merchant_id, 0, 5));", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_pixel_events", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Append", "warehouse": "INGESTION", "pre_actions": "alter table swell_pixel_events cluster by (collector_date, substring(merchant_id, 0, 5));", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.158592, "relation_name": "dev_dkruh1.loyalty__snowflake_pixel_events", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH reduced_events AS (\n\n\tSELECT\n\t\t*\n\tFROM\n\t\t{{ ref('loyalty__pixel_events') }}\n\tWHERE\n\t\tpartition_date >= CURRENT_DATE - INTERVAL 1 DAY\n\n), export_candidate AS (\n\n SELECT \n\t\t* \n\tFROM \n\t\treduced_events\n\tWHERE\n\t\tDATE(collector_tstamp) = CURRENT_DATE - INTERVAL 1 DAY\n), snowflake_loyalty_pixel_events AS (\n\n SELECT \n\t\tcast(merchant_id as bigint),\n\t\tcast(domain_userid as string),\n\t\tcast(se_value as string),\n\t\tcast(collector_tstamp as date) AS collector_date,\n\t\tcast(page_url as string),\n\t\tcast(se_action as string),\n\t\tcast(se_category as string),\n\t\tcast(se_property as string),\n\t\tcast(se_label as string),\n\t\tcast(customer_id as string),\n\t\tcast(is_mobile as boolean),\n\t\tcast(is_checkout as boolean),\n\t\tcast(share_type as string),\n\t\tcast(filled_customer_id as string)\n\n FROM export_candidate\n\n)\n\nSELECT \n\t* \nFROM \n\tsnowflake_loyalty_pixel_events", "language": "sql", "refs": [{"name": "loyalty__pixel_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__pixel_events"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.sql", "compiled": true, "compiled_code": "\n\nWITH reduced_events AS (\n\n\tSELECT\n\t\t*\n\tFROM\n\t\tdev_dkruh1.loyalty__pixel_events\n\tWHERE\n\t\tpartition_date >= CURRENT_DATE - INTERVAL 1 DAY\n\n), export_candidate AS (\n\n SELECT \n\t\t* \n\tFROM \n\t\treduced_events\n\tWHERE\n\t\tDATE(collector_tstamp) = CURRENT_DATE - INTERVAL 1 DAY\n), snowflake_loyalty_pixel_events AS (\n\n SELECT \n\t\tcast(merchant_id as bigint),\n\t\tcast(domain_userid as string),\n\t\tcast(se_value as string),\n\t\tcast(collector_tstamp as date) AS collector_date,\n\t\tcast(page_url as string),\n\t\tcast(se_action as string),\n\t\tcast(se_category as string),\n\t\tcast(se_property as string),\n\t\tcast(se_label as string),\n\t\tcast(customer_id as string),\n\t\tcast(is_mobile as boolean),\n\t\tcast(is_checkout as boolean),\n\t\tcast(share_type as string),\n\t\tcast(filled_customer_id as string)\n\n FROM export_candidate\n\n)\n\nSELECT \n\t* \nFROM \n\tsnowflake_loyalty_pixel_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_plans": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_plans", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.sql", "unique_id": "model.yoda.loyalty__snowflake_plans", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_plans", "loyalty__snowflake_plans"], "alias": "loyalty__snowflake_plans", "checksum": {"name": "sha256", "checksum": "ec5ecb1757ef87e94725c45e17ce70da97047b23bc3e94c54bae3e203919901f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_plans", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "base_price_cents": {"name": "base_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "capped_amount_cents": {"name": "capped_amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "included_orders": {"name": "included_orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "per_order_price_cents": {"name": "per_order_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_plans", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_plans", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.1760921, "relation_name": "dev_dkruh1.loyalty__snowflake_plans", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty_stg__plans') }}\n\n), snowflake_plans AS (\n\n SELECT \n\t\tcast(updated_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(base_price_cents as bigint),\n\t\tcast(capped_amount_cents as bigint),\n\t\tcast(id as bigint),\n\t\tcast(included_orders as bigint),\n\t\tcast(name as string),\n\t\tcast(per_order_price_cents as bigint)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_plans", "language": "sql", "refs": [{"name": "loyalty_stg__plans", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__plans"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__plans\n\n), snowflake_plans AS (\n\n SELECT \n\t\tcast(updated_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(base_price_cents as bigint),\n\t\tcast(capped_amount_cents as bigint),\n\t\tcast(id as bigint),\n\t\tcast(included_orders as bigint),\n\t\tcast(name as string),\n\t\tcast(per_order_price_cents as bigint)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_plans", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_purchase_items_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_purchase_items_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_purchase_items_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_purchase_items_daily_snapshot", "loyalty__snowflake_purchase_items_daily_snapshot"], "alias": "loyalty__snowflake_purchase_items_daily_snapshot", "checksum": {"name": "sha256", "checksum": "b34a12856d14ac43db31e29573c66c878f741d13fa66cd688f3e5b21c2924101"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_purchase_items_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_cents": {"name": "price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_usd": {"name": "price_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price": {"name": "price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "purchase_item_currency": {"name": "purchase_item_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_purchase_items_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_purchase_items_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.1945553, "relation_name": "dev_dkruh1.loyalty__snowflake_purchase_items_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_purchase_items_daily_snapshot') }}\n\n), snowflake_purchase_items_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(purchase_id as bigint),\n\t\tcast(product_id as string),\n\t\tcast(quantity as bigint),\n\t\tcast(price_cents as bigint),\n\t\tcast(price_usd as double),\n\t\tcast(price as double),\n\t\tcast(purchase_item_currency as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY purchase_id\n\n)\n\nSELECT * FROM snowflake_purchase_items_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_purchase_items_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_purchase_items_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_purchase_items_daily_snapshot\n\n), snowflake_purchase_items_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(purchase_id as bigint),\n\t\tcast(product_id as string),\n\t\tcast(quantity as bigint),\n\t\tcast(price_cents as bigint),\n\t\tcast(price_usd as double),\n\t\tcast(price as double),\n\t\tcast(purchase_item_currency as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY purchase_id\n\n)\n\nSELECT * FROM snowflake_purchase_items_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_purchases_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_purchases_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_purchases_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_purchases_daily_snapshot", "loyalty__snowflake_purchases_daily_snapshot"], "alias": "loyalty__snowflake_purchases_daily_snapshot", "checksum": {"name": "sha256", "checksum": "8f8f8632350a2b9e8457ab8193dedbf90a58bf9b7d3bb9f6fded43020b13bd07"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_purchases_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_purchases_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_country_code": {"name": "billing_country_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_city": {"name": "billing_city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_country_code": {"name": "shipping_country_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_city": {"name": "shipping_city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applied_to_campaigns": {"name": "applied_to_campaigns", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "order_id": {"name": "order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopper_currency_exchange_rate_to_usd": {"name": "shopper_currency_exchange_rate_to_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "base_currency_exchange_rate_to_usd": {"name": "base_currency_exchange_rate_to_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "base_currency": {"name": "base_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_discount_code_id": {"name": "referral_discount_code_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "swell_discount_cost_cents": {"name": "swell_discount_cost_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent": {"name": "user_agent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_discount_cost_usd": {"name": "swell_discount_cost_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "swell_discount_cost_on_base_currency": {"name": "swell_discount_cost_on_base_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "swell_discount_cost": {"name": "swell_discount_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "processor_type": {"name": "processor_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_refunded": {"name": "is_refunded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "total_refunds": {"name": "total_refunds", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_refunded_cents": {"name": "amount_refunded_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_refunded_usd": {"name": "amount_refunded_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_refunded": {"name": "amount_refunded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_refunded_on_base_currency": {"name": "amount_refunded_on_base_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "purchase_amount_usd": {"name": "purchase_amount_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "purchase_amount_on_base_currency": {"name": "purchase_amount_on_base_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "purchase_amount": {"name": "purchase_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_member": {"name": "is_member", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_customer_opt_in": {"name": "is_customer_opt_in", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "customer_opted_in_at": {"name": "customer_opted_in_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_redeem": {"name": "is_redeem", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "first_point_redemptions_id": {"name": "first_point_redemptions_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "count_redemptions": {"name": "count_redemptions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_redemption_tied_to_purchase": {"name": "is_redemption_tied_to_purchase", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "cnt_loyalty_redemptions": {"name": "cnt_loyalty_redemptions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "cnt_referrals_redemptions": {"name": "cnt_referrals_redemptions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "loyalty_purchase_total_discount": {"name": "loyalty_purchase_total_discount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "referral_purchase_total_discount": {"name": "referral_purchase_total_discount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "source_redemption": {"name": "source_redemption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_full_refunded": {"name": "is_full_refunded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_purchases_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_purchases_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_purchases_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_purchases_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082674.2392437, "relation_name": "dev_dkruh1.loyalty__snowflake_purchases_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_purchases_daily_snapshot') }}\n\n), snowflake_purchases_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(billing_country_code as string),\n\t\tcast(billing_city as string),\n\t\tcast(shipping_country_code as string),\n\t\tcast(shipping_city as string),\n\t\tcast(applied_to_campaigns as boolean),\n\t\tcast(order_id as string),\n\t\tcast(amount_cents as bigint),\n\t\tcast(currency as string),\n\t\tcast(shopper_currency_exchange_rate_to_usd as double),\n\t\tcast(base_currency_exchange_rate_to_usd as double),\n\t\tcast(base_currency as string),\n\t\tcast(referral_id as bigint),\n\t\tcast(referral_discount_code_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(swell_discount_cost_cents as bigint),\n\t\tcast(user_agent as string),\n\t\tcast(swell_discount_cost_usd as double),\n\t\tcast(swell_discount_cost_on_base_currency as double),\n\t\tcast(swell_discount_cost as double),\n\t\tcast(processor_type as string),\n\t\tcast(is_refunded as boolean),\n\t\tcast(total_refunds as bigint),\n\t\tcast(amount_refunded_cents as bigint),\n\t\tcast(amount_refunded_usd as double),\n\t\tcast(amount_refunded as double),\n\t\tcast(amount_refunded_on_base_currency as double),\n\t\tcast(purchase_amount_usd as float),\n\t\tcast(purchase_amount_on_base_currency as float),\n\t\tcast(purchase_amount as double),\n\t\tcast(is_member as bigint),\n\t\tcast(is_customer_opt_in as boolean),\n\t\tcast(customer_opted_in_at as timestamp),\n\t\tcast(is_redeem as boolean) as is_redeem,\n\t\tcast(first_point_redemptions_id as bigint),\n\t\tcast(count_redemptions as int),\n\t\tcast(is_redemption_tied_to_purchase as boolean),\n\t\tcast(cnt_loyalty_redemptions as int),\n\t\tcast(cnt_referrals_redemptions as int),\n\t\tcast(loyalty_purchase_total_discount as float),\n\t\tcast(referral_purchase_total_discount as float),\n\t\tcast(source_redemption as string),\n\t\tcast(is_full_refunded as boolean),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_purchases_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_purchases_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_purchases_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_purchases_daily_snapshot\n\n), snowflake_purchases_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(billing_country_code as string),\n\t\tcast(billing_city as string),\n\t\tcast(shipping_country_code as string),\n\t\tcast(shipping_city as string),\n\t\tcast(applied_to_campaigns as boolean),\n\t\tcast(order_id as string),\n\t\tcast(amount_cents as bigint),\n\t\tcast(currency as string),\n\t\tcast(shopper_currency_exchange_rate_to_usd as double),\n\t\tcast(base_currency_exchange_rate_to_usd as double),\n\t\tcast(base_currency as string),\n\t\tcast(referral_id as bigint),\n\t\tcast(referral_discount_code_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(swell_discount_cost_cents as bigint),\n\t\tcast(user_agent as string),\n\t\tcast(swell_discount_cost_usd as double),\n\t\tcast(swell_discount_cost_on_base_currency as double),\n\t\tcast(swell_discount_cost as double),\n\t\tcast(processor_type as string),\n\t\tcast(is_refunded as boolean),\n\t\tcast(total_refunds as bigint),\n\t\tcast(amount_refunded_cents as bigint),\n\t\tcast(amount_refunded_usd as double),\n\t\tcast(amount_refunded as double),\n\t\tcast(amount_refunded_on_base_currency as double),\n\t\tcast(purchase_amount_usd as float),\n\t\tcast(purchase_amount_on_base_currency as float),\n\t\tcast(purchase_amount as double),\n\t\tcast(is_member as bigint),\n\t\tcast(is_customer_opt_in as boolean),\n\t\tcast(customer_opted_in_at as timestamp),\n\t\tcast(is_redeem as boolean) as is_redeem,\n\t\tcast(first_point_redemptions_id as bigint),\n\t\tcast(count_redemptions as int),\n\t\tcast(is_redemption_tied_to_purchase as boolean),\n\t\tcast(cnt_loyalty_redemptions as int),\n\t\tcast(cnt_referrals_redemptions as int),\n\t\tcast(loyalty_purchase_total_discount as float),\n\t\tcast(referral_purchase_total_discount as float),\n\t\tcast(source_redemption as string),\n\t\tcast(is_full_refunded as boolean),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_purchases_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_purchases_redemptions_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_purchases_redemptions_daily_snapshot", "loyalty__snowflake_purchases_redemptions_daily_snapshot"], "alias": "loyalty__snowflake_purchases_redemptions_daily_snapshot", "checksum": {"name": "sha256", "checksum": "ba459fed42e9a5c388512852d91c99472f116e6c32ff4b26fa13aca071a8f0c5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_purchases_redemptions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_id": {"name": "redemption_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_purchases_redemptions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_purchases_redemptions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.254836, "relation_name": "dev_dkruh1.loyalty__snowflake_purchases_redemptions_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_purchases_redemptions_daily_snapshot') }}\n\n), snowflake_purchases_redemptions_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(purchase_id as bigint),\n\t\tcast(redemption_id as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY purchase_id\n\n)\n\nSELECT * FROM snowflake_purchases_redemptions_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_purchases_redemptions_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_purchases_redemptions_daily_snapshot\n\n), snowflake_purchases_redemptions_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(purchase_id as bigint),\n\t\tcast(redemption_id as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY purchase_id\n\n)\n\nSELECT * FROM snowflake_purchases_redemptions_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_redemptions_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_redemptions_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_redemptions_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_redemptions_daily_snapshot", "loyalty__snowflake_redemptions_daily_snapshot"], "alias": "loyalty__snowflake_redemptions_daily_snapshot", "checksum": {"name": "sha256", "checksum": "d7d518d77f3ae2f9ac3e46d36410031306620aad22ad70028c6cca54d65e4757"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_redemptions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_redemptions_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"point_redemptions_id": {"name": "point_redemptions_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_codes_id": {"name": "redemption_codes_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_deducted_points": {"name": "amount_deducted_points", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_deducted_usd": {"name": "amount_deducted_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_deducted": {"name": "amount_deducted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_deducted_cents": {"name": "amount_deducted_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_type": {"name": "discount_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "code": {"name": "code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uses": {"name": "uses", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_referred_redemption": {"name": "is_referred_redemption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_referring_redemption": {"name": "is_referring_redemption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "discount_percentage": {"name": "discount_percentage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_delayed_redemption": {"name": "is_delayed_redemption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_redemption_points_deducted": {"name": "is_redemption_points_deducted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_currnecy": {"name": "redemption_option_currnecy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_redemptions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_redemptions_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_redemptions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_redemptions_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.2808921, "relation_name": "dev_dkruh1.loyalty__snowflake_redemptions_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_redemptions_daily_snapshot') }}\n\n), snowflake_redemptions_daily_snapshot AS (\n\n SELECT \n\t\tcast(point_redemptions_id as bigint),\n\t\tcast(redemption_codes_id as bigint),\n\t\tcast(redemption_option_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(amount_deducted_points as bigint),\n\t\tcast(amount_deducted_usd as double),\n\t\tcast(amount_deducted as double),\n\t\tcast(amount_deducted_cents as bigint),\n\t\tcast(discount_type as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(code as string),\n\t\tcast(uses as bigint),\n\t\tcast(is_referred_redemption as boolean),\n\t\tcast(is_referring_redemption as boolean),\n\t\tcast(discount_percentage as bigint),\n\t\tcast(is_delayed_redemption as bigint),\n\t\tcast(is_redemption_points_deducted as bigint),\n\t\tcast(redemption_option_currnecy as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_redemptions_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_redemptions_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_redemptions_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_redemptions_daily_snapshot\n\n), snowflake_redemptions_daily_snapshot AS (\n\n SELECT \n\t\tcast(point_redemptions_id as bigint),\n\t\tcast(redemption_codes_id as bigint),\n\t\tcast(redemption_option_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(amount_deducted_points as bigint),\n\t\tcast(amount_deducted_usd as double),\n\t\tcast(amount_deducted as double),\n\t\tcast(amount_deducted_cents as bigint),\n\t\tcast(discount_type as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(code as string),\n\t\tcast(uses as bigint),\n\t\tcast(is_referred_redemption as boolean),\n\t\tcast(is_referring_redemption as boolean),\n\t\tcast(discount_percentage as bigint),\n\t\tcast(is_delayed_redemption as bigint),\n\t\tcast(is_redemption_points_deducted as bigint),\n\t\tcast(redemption_option_currnecy as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_redemptions_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_redemptions_with_purchases_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_redemptions_with_purchases_daily_snapshot", "loyalty__snowflake_redemptions_with_purchases_daily_snapshot"], "alias": "loyalty__snowflake_redemptions_with_purchases_daily_snapshot", "checksum": {"name": "sha256", "checksum": "56a7c65ff06033dfb6125a035689a5d70160202a47b1bdf7961aa702717fc952"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_redemptions_with_purchases", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_redemptions_with_purchases cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"redemption_created_at": {"name": "redemption_created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_referred_redemption": {"name": "is_referred_redemption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_referring_redemption": {"name": "is_referring_redemption", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "point_redemption_id": {"name": "point_redemption_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_redemptions_with_purchases", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_redemptions_with_purchases cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_redemptions_with_purchases", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_redemptions_with_purchases cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082674.298775, "relation_name": "dev_dkruh1.loyalty__snowflake_redemptions_with_purchases_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_redemptions_with_purchases_daily_snapshot') }}\n\n), snowflake_redemptions_with_purchases_daily_snapshot AS (\n\n SELECT \n\t\tcast(redemption_created_at as timestamp),\n\t\tcast(is_referred_redemption as boolean),\n\t\tcast(is_referring_redemption as boolean),\n\t\tcast(point_redemption_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(purchase_id as bigint)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_redemptions_with_purchases_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_redemptions_with_purchases_daily_snapshot\n\n), snowflake_redemptions_with_purchases_daily_snapshot AS (\n\n SELECT \n\t\tcast(redemption_created_at as timestamp),\n\t\tcast(is_referred_redemption as boolean),\n\t\tcast(is_referring_redemption as boolean),\n\t\tcast(point_redemption_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(purchase_id as bigint)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_redemptions_with_purchases_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_referral_codes_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_referral_codes_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_referral_codes_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_referral_codes_daily_snapshot", "loyalty__snowflake_referral_codes_daily_snapshot"], "alias": "loyalty__snowflake_referral_codes_daily_snapshot", "checksum": {"name": "sha256", "checksum": "b31055d2d12619015bbfb94ee8d950aa9ddd21001b44d4f2526c68901712a9c9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_codes_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_codes_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "links_clicked": {"name": "links_clicked", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shares": {"name": "shares", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_customer_id": {"name": "referred_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_usd": {"name": "amount_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount": {"name": "amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_codes_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_codes_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_codes_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_codes_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.3215606, "relation_name": "dev_dkruh1.loyalty__snowflake_referral_codes_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__dim_referral_codes_daily_snapshot') }}\n\n), snowflake_referral_codes_daily_snapshot AS (\n\n SELECT \n\t\tcast(merchant_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(links_clicked as bigint),\n\t\tcast(campaign_id as bigint),\n\t\tcast(shares as bigint),\n\t\tcast(referral_code_id as bigint),\n\t\tcast(referral_id as bigint),\n\t\tcast(referred_customer_id as bigint),\n\t\tcast(amount_cents as bigint),\n\t\tcast(currency as string),\n\t\tcast(amount_usd as double),\n\t\tcast(amount as double),\n\t\tcast(completed_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referral_codes_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__dim_referral_codes_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_referral_codes_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_referral_codes_daily_snapshot\n\n), snowflake_referral_codes_daily_snapshot AS (\n\n SELECT \n\t\tcast(merchant_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(links_clicked as bigint),\n\t\tcast(campaign_id as bigint),\n\t\tcast(shares as bigint),\n\t\tcast(referral_code_id as bigint),\n\t\tcast(referral_id as bigint),\n\t\tcast(referred_customer_id as bigint),\n\t\tcast(amount_cents as bigint),\n\t\tcast(currency as string),\n\t\tcast(amount_usd as double),\n\t\tcast(amount as double),\n\t\tcast(completed_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referral_codes_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_referral_discount_codes_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_referral_discount_codes_daily_snapshot", "loyalty__snowflake_referral_discount_codes_daily_snapshot"], "alias": "loyalty__snowflake_referral_discount_codes_daily_snapshot", "checksum": {"name": "sha256", "checksum": "40c20cfa2ec74bf7017ee324980363cb0c35cbbc7595ae423cfc33d6c9495d5e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_discount_codes_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_discount_codes_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_amount_cents": {"name": "average_amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_discount_codes_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_discount_codes_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_discount_codes_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_discount_codes_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.341093, "relation_name": "dev_dkruh1.loyalty__snowflake_referral_discount_codes_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__dim_referral_discount_codes_daily_snapshot') }}\n\n), snowflake_referral_discount_codes_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(redemption_option_id as bigint),\n\t\tcast(campaign_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(amount_cents as bigint),\n\t\tcast(average_amount_cents as bigint),\n\t\tcast(orders as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referral_discount_codes_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__dim_referral_discount_codes_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_referral_discount_codes_daily_snapshot\n\n), snowflake_referral_discount_codes_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(redemption_option_id as bigint),\n\t\tcast(campaign_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(amount_cents as bigint),\n\t\tcast(average_amount_cents as bigint),\n\t\tcast(orders as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referral_discount_codes_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_referral_perks_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_referral_perks_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_referral_perks_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_referral_perks_daily_snapshot", "loyalty__snowflake_referral_perks_daily_snapshot"], "alias": "loyalty__snowflake_referral_perks_daily_snapshot", "checksum": {"name": "sha256", "checksum": "2cef410feb35a803f786f13fcd1bb6105599ae027776c03127b622d1a6f02a2c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_perks_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_perks_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_perks_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_perks_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_perks_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_perks_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.3601654, "relation_name": "dev_dkruh1.loyalty__snowflake_referral_perks_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_referral_perks_daily_snapshot') }}\n\n), snowflake_referral_perks_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(redemption_option_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referral_perks_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_referral_perks_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_referral_perks_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_referral_perks_daily_snapshot\n\n), snowflake_referral_perks_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(redemption_option_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referral_perks_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_referral_receipts_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_referral_receipts_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_referral_receipts_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_referral_receipts_daily_snapshot", "loyalty__snowflake_referral_receipts_daily_snapshot"], "alias": "loyalty__snowflake_referral_receipts_daily_snapshot", "checksum": {"name": "sha256", "checksum": "f64708dff1d27b6315ee208275f5a60a8302bf64b55667a39a3536418e86a761"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_receipts_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_customer_id": {"name": "referred_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_discount_code_id": {"name": "referral_discount_code_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_reversed": {"name": "is_reversed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_receipts_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_receipts_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.3801546, "relation_name": "dev_dkruh1.loyalty__snowflake_referral_receipts_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_referral_receipts_daily_snapshot') }}\n\n), snowflake_referral_receipts_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(referral_code_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(referred_customer_id as bigint),\n\t\tcast(completed_at as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(referral_id as bigint),\n\t\tcast(referral_discount_code_id as bigint),\n\t\tcast(is_reversed as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_referral_receipts_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_referral_receipts_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_referral_receipts_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_referral_receipts_daily_snapshot\n\n), snowflake_referral_receipts_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(referral_code_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(referred_customer_id as bigint),\n\t\tcast(completed_at as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(referral_id as bigint),\n\t\tcast(referral_discount_code_id as bigint),\n\t\tcast(is_reversed as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_referral_receipts_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_referral_shares_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_referral_shares_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_referral_shares_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_referral_shares_daily_snapshot", "loyalty__snowflake_referral_shares_daily_snapshot"], "alias": "loyalty__snowflake_referral_shares_daily_snapshot", "checksum": {"name": "sha256", "checksum": "3d258c6aa20dc5a7e059b67ac8836c3fc4b310248c4a73b27b96b3c37fdcc765"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_shares_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_shares_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_shares_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_shares_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_shares_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_shares_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.3988461, "relation_name": "dev_dkruh1.loyalty__snowflake_referral_shares_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_referral_shares_daily_snapshot') }}\n\n), snowflake_referral_shares_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(referral_code_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(type as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referral_shares_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_referral_shares_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_referral_shares_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_referral_shares_daily_snapshot\n\n), snowflake_referral_shares_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(referral_code_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(type as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referral_shares_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_referral_snapshots_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_referral_snapshots_daily_snapshot", "loyalty__snowflake_referral_snapshots_daily_snapshot"], "alias": "loyalty__snowflake_referral_snapshots_daily_snapshot", "checksum": {"name": "sha256", "checksum": "637edb6f137ea4e30b7db11c68cd7560e5347766733feca7a2c84eaefc6db781"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_snapshots_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_snapshots cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "day": {"name": "day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "links_clicked": {"name": "links_clicked", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_snapshots_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_snapshots cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referral_snapshots_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referral_snapshots cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.4144979, "relation_name": "dev_dkruh1.loyalty__snowflake_referral_snapshots_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_referral_snapshots_daily_snapshot') }}\n\n), snowflake_referral_snapshots_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(day as date),\n\t\tcast(links_clicked as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referral_snapshots_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_referral_snapshots_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_referral_snapshots_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_referral_snapshots_daily_snapshot\n\n), snowflake_referral_snapshots_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(day as date),\n\t\tcast(links_clicked as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referral_snapshots_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_referrals": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_referrals", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.sql", "unique_id": "model.yoda.loyalty__snowflake_referrals", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_referrals", "loyalty__snowflake_referrals"], "alias": "loyalty__snowflake_referrals", "checksum": {"name": "sha256", "checksum": "0fbf66b11428ce7c503352ae3e94049b8781fcd5c3ecfed286eb4eb8ec2945b7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referrals", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referrals cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_amount_cents": {"name": "average_amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ip_address": {"name": "ip_address", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_apple_private_relay_ip": {"name": "is_apple_private_relay_ip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "link_share_type": {"name": "link_share_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_balance": {"name": "points_balance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_user_perk_id": {"name": "referred_user_perk_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referrer_perk_id": {"name": "referrer_perk_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent_id": {"name": "user_agent_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "referring_host": {"name": "referring_host", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_product_id": {"name": "external_product_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manually_override_status": {"name": "manually_override_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referrals", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referrals cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referrals", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referrals cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.4436858, "relation_name": "dev_dkruh1.loyalty__snowflake_referrals", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty_stg__referrals') }}\n\n), snowflake_referrals AS (\n\n SELECT \n\t\tcast(updated_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(amount_cents as bigint),\n\t\tcast(average_amount_cents as bigint),\n\t\tcast(campaign_id as bigint),\n\t\tcast(currency as string),\n\t\tcast(customer_id as bigint),\n\t\tcast(id as bigint),\n\t\tcast(ip_address as string),\n\t\tcast(is_apple_private_relay_ip as boolean),\n\t\tcast(link_share_type as string),\n\t\tcast(merchant_id as bigint),\n\t\tcast(orders as bigint),\n\t\tcast(points_balance as bigint),\n\t\tcast(points_earned as bigint),\n\t\tcast(referral_code_id as bigint),\n\t\tcast(referred_user_perk_id as bigint),\n\t\tcast(referrer_perk_id as bigint),\n\t\tcast(user_agent_id as bigint),\n\t\tcast(completed_at as timestamp),\n\t\tcast(referring_host as string),\n\t\tcast(external_product_id as string),\n\t\tcast(manually_override_status as bigint)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_referrals", "language": "sql", "refs": [{"name": "loyalty_stg__referrals", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__referrals"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__referrals\n\n), snowflake_referrals AS (\n\n SELECT \n\t\tcast(updated_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(amount_cents as bigint),\n\t\tcast(average_amount_cents as bigint),\n\t\tcast(campaign_id as bigint),\n\t\tcast(currency as string),\n\t\tcast(customer_id as bigint),\n\t\tcast(id as bigint),\n\t\tcast(ip_address as string),\n\t\tcast(is_apple_private_relay_ip as boolean),\n\t\tcast(link_share_type as string),\n\t\tcast(merchant_id as bigint),\n\t\tcast(orders as bigint),\n\t\tcast(points_balance as bigint),\n\t\tcast(points_earned as bigint),\n\t\tcast(referral_code_id as bigint),\n\t\tcast(referred_user_perk_id as bigint),\n\t\tcast(referrer_perk_id as bigint),\n\t\tcast(user_agent_id as bigint),\n\t\tcast(completed_at as timestamp),\n\t\tcast(referring_host as string),\n\t\tcast(external_product_id as string),\n\t\tcast(manually_override_status as bigint)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_referrals", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_referrals_without_crawlers_daily_snapshot", "loyalty__snowflake_referrals_without_crawlers_daily_snapshot"], "alias": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot", "checksum": {"name": "sha256", "checksum": "b28ead550a608159bd34bc6d75f92c2a19243e05add2ad9f8008c0c083bcd838"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referrals_with_is_crawler_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referrals_with_is_crawler_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referrer_perk_id": {"name": "referrer_perk_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_user_perk_id": {"name": "referred_user_perk_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ip_address": {"name": "ip_address", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent_id": {"name": "user_agent_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "orders": {"name": "orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "link_share_type": {"name": "link_share_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_product_id": {"name": "external_product_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent": {"name": "user_agent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referrals_with_is_crawler_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referrals_with_is_crawler_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_referrals_with_is_crawler_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_referrals_with_is_crawler_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.468684, "relation_name": "dev_dkruh1.loyalty__snowflake_referrals_without_crawlers_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_referrals_without_crawlers_daily_snapshot') }}\n\n), snowflake_referrals_without_crawlers_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(referral_code_id as bigint),\n\t\tcast(referrer_perk_id as bigint),\n\t\tcast(referred_user_perk_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(ip_address as string),\n\t\tcast(user_agent_id as bigint),\n\t\tcast(campaign_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(orders as bigint),\n\t\tcast(currency as string),\n\t\tcast(completed_at as bigint),\n\t\tcast(amount_cents as bigint),\n\t\tcast(link_share_type as string),\n\t\tcast(external_product_id as string),\n\t\tcast(user_agent as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referrals_without_crawlers_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_referrals_without_crawlers_daily_snapshot\n\n), snowflake_referrals_without_crawlers_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(referral_code_id as bigint),\n\t\tcast(referrer_perk_id as bigint),\n\t\tcast(referred_user_perk_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(ip_address as string),\n\t\tcast(user_agent_id as bigint),\n\t\tcast(campaign_id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(orders as bigint),\n\t\tcast(currency as string),\n\t\tcast(completed_at as bigint),\n\t\tcast(amount_cents as bigint),\n\t\tcast(link_share_type as string),\n\t\tcast(external_product_id as string),\n\t\tcast(user_agent as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_referrals_without_crawlers_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_refund_items_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_refund_items_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_refund_items_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_refund_items_daily_snapshot", "loyalty__snowflake_refund_items_daily_snapshot"], "alias": "loyalty__snowflake_refund_items_daily_snapshot", "checksum": {"name": "sha256", "checksum": "4734336613388f3861947c0739f3ea160588127e5f5db2b73998ede8d1861c2d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_refund_items_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refund_id": {"name": "refund_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_item_id": {"name": "purchase_item_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "quantity": {"name": "quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_refund_items_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_refund_items_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.486361, "relation_name": "dev_dkruh1.loyalty__snowflake_refund_items_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_refund_items_daily_snapshot') }}\n\n), snowflake_refund_items_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(refund_id as bigint),\n\t\tcast(purchase_item_id as bigint),\n\t\tcast(quantity as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY purchase_item_id\n\n)\n\nSELECT * FROM snowflake_refund_items_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_refund_items_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_refund_items_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_refund_items_daily_snapshot\n\n), snowflake_refund_items_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(refund_id as bigint),\n\t\tcast(purchase_item_id as bigint),\n\t\tcast(quantity as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY purchase_item_id\n\n)\n\nSELECT * FROM snowflake_refund_items_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_refunds_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_refunds_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_refunds_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_refunds_daily_snapshot", "loyalty__snowflake_refunds_daily_snapshot"], "alias": "loyalty__snowflake_refunds_daily_snapshot", "checksum": {"name": "sha256", "checksum": "cfac69e743e1045afcb9a7c8b995a90ec87f55b56871a8aef960886bffa467c0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_refunds_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"refund_id": {"name": "refund_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refund_amount_usd": {"name": "refund_amount_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "refund_amount": {"name": "refund_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "refund_currency": {"name": "refund_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refunded_at": {"name": "refunded_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_refunds_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_refunds_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.504556, "relation_name": "dev_dkruh1.loyalty__snowflake_refunds_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_refunds_daily_snapshot') }}\n\n), snowflake_refunds_daily_snapshot AS (\n\n SELECT \n\t\tcast(refund_id as bigint),\n\t\tcast(purchase_id as bigint),\n\t\tcast(refund_amount_usd as double),\n\t\tcast(refund_amount as double),\n\t\tcast(refund_currency as string),\n\t\tcast(amount_cents as bigint),\n\t\tcast(refunded_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY purchase_id\n\n)\n\nSELECT * FROM snowflake_refunds_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_refunds_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_refunds_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_refunds_daily_snapshot\n\n), snowflake_refunds_daily_snapshot AS (\n\n SELECT \n\t\tcast(refund_id as bigint),\n\t\tcast(purchase_id as bigint),\n\t\tcast(refund_amount_usd as double),\n\t\tcast(refund_amount as double),\n\t\tcast(refund_currency as string),\n\t\tcast(amount_cents as bigint),\n\t\tcast(refunded_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY purchase_id\n\n)\n\nSELECT * FROM snowflake_refunds_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_subscriptions": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_subscriptions", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.sql", "unique_id": "model.yoda.loyalty__snowflake_subscriptions", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_subscriptions", "loyalty__snowflake_subscriptions"], "alias": "loyalty__snowflake_subscriptions", "checksum": {"name": "sha256", "checksum": "e927acbbb0ed9ee921fd52061727e6ecd3897bf13f81875a4e39d2b200ead589"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_subscriptions", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "base_price_cents": {"name": "base_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_provider": {"name": "billing_provider", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current": {"name": "current", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "included_orders": {"name": "included_orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_usage_charge_at": {"name": "last_usage_charge_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overdue": {"name": "overdue", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pending": {"name": "pending", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "per_order_price_cents": {"name": "per_order_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "percentage_of_redemptions": {"name": "percentage_of_redemptions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "percentage_of_referrals": {"name": "percentage_of_referrals", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_id": {"name": "plan_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "was_current": {"name": "was_current", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "charge_status": {"name": "charge_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurring_charge_id": {"name": "recurring_charge_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manual_price_cents": {"name": "manual_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_subscriptions", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_subscriptions", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.5304976, "relation_name": "dev_dkruh1.loyalty__snowflake_subscriptions", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty_stg__subscriptions') }}\n\n), snowflake_subscriptions AS (\n\n SELECT \n\t\tcast(updated_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(base_price_cents as bigint),\n\t\tcast(billing_provider as string),\n\t\tcast(current as boolean),\n\t\tcast(id as bigint),\n\t\tcast(included_orders as bigint),\n\t\tcast(last_usage_charge_at as timestamp),\n\t\tcast(merchant_id as bigint),\n\t\tcast(overdue as boolean),\n\t\tcast(pending as boolean),\n\t\tcast(per_order_price_cents as bigint),\n\t\tcast(percentage_of_redemptions as bigint),\n\t\tcast(percentage_of_referrals as bigint),\n\t\tcast(plan_id as bigint),\n\t\tcast(was_current as boolean),\n\t\tcast(charge_status as string),\n\t\tcast(recurring_charge_id as string),\n\t\tcast(manual_price_cents as bigint)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_subscriptions", "language": "sql", "refs": [{"name": "loyalty_stg__subscriptions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__subscriptions"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__subscriptions\n\n), snowflake_subscriptions AS (\n\n SELECT \n\t\tcast(updated_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(base_price_cents as bigint),\n\t\tcast(billing_provider as string),\n\t\tcast(current as boolean),\n\t\tcast(id as bigint),\n\t\tcast(included_orders as bigint),\n\t\tcast(last_usage_charge_at as timestamp),\n\t\tcast(merchant_id as bigint),\n\t\tcast(overdue as boolean),\n\t\tcast(pending as boolean),\n\t\tcast(per_order_price_cents as bigint),\n\t\tcast(percentage_of_redemptions as bigint),\n\t\tcast(percentage_of_referrals as bigint),\n\t\tcast(plan_id as bigint),\n\t\tcast(was_current as boolean),\n\t\tcast(charge_status as string),\n\t\tcast(recurring_charge_id as string),\n\t\tcast(manual_price_cents as bigint)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM snowflake_subscriptions", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_subscriptions_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_subscriptions_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_subscriptions_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_subscriptions_daily_snapshot", "loyalty__snowflake_subscriptions_daily_snapshot"], "alias": "loyalty__snowflake_subscriptions_daily_snapshot", "checksum": {"name": "sha256", "checksum": "94d878e6abb1175f41dc8924910de094342822cc254959aae6e3c2bbea0a4e60"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_subscriptions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_subscriptions_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current": {"name": "current", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "plan_id": {"name": "plan_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "was_current": {"name": "was_current", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "daily_amount": {"name": "daily_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "monthly_amount": {"name": "monthly_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yearly_amount": {"name": "yearly_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "daily_amount_usd": {"name": "daily_amount_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "monthly_amount_usd": {"name": "monthly_amount_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yearly_amount_usd": {"name": "yearly_amount_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "merchant_currency": {"name": "merchant_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_subscriptions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_subscriptions_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_subscriptions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_subscriptions_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.553146, "relation_name": "dev_dkruh1.loyalty__snowflake_subscriptions_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__dim_subscriptions_daily_snapshot') }}\n\n), snowflake_subscriptions_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(current as boolean),\n\t\tcast(plan_id as bigint),\n\t\tcast(was_current as boolean),\n\t\tcast(daily_amount as double),\n\t\tcast(monthly_amount as double),\n\t\tcast(yearly_amount as double),\n\t\tcast(daily_amount_usd as double),\n\t\tcast(monthly_amount_usd as double),\n\t\tcast(yearly_amount_usd as double),\n\t\tcast(merchant_currency as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_subscriptions_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__dim_subscriptions_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_subscriptions_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_subscriptions_daily_snapshot\n\n), snowflake_subscriptions_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(current as boolean),\n\t\tcast(plan_id as bigint),\n\t\tcast(was_current as boolean),\n\t\tcast(daily_amount as double),\n\t\tcast(monthly_amount as double),\n\t\tcast(yearly_amount as double),\n\t\tcast(daily_amount_usd as double),\n\t\tcast(monthly_amount_usd as double),\n\t\tcast(yearly_amount_usd as double),\n\t\tcast(merchant_currency as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_subscriptions_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_user_actions_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_user_actions_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_user_actions_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_user_actions_daily_snapshot", "loyalty__snowflake_user_actions_daily_snapshot"], "alias": "loyalty__snowflake_user_actions_daily_snapshot", "checksum": {"name": "sha256", "checksum": "75b45c953a9b1ebc5d95b94af4bf6906c224fb19ab03732cbce40d511d41049a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_user_actions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_user_actions_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_user_actions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_user_actions_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_user_actions_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_user_actions_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.5689135, "relation_name": "dev_dkruh1.loyalty__snowflake_user_actions_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_user_actions_daily_snapshot') }}\n\n), snowflake_user_actions_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_user_actions_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_user_actions_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_user_actions_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_user_actions_daily_snapshot\n\n), snowflake_user_actions_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_user_actions_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_user_agents_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_user_agents_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_user_agents_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_user_agents_daily_snapshot", "loyalty__snowflake_user_agents_daily_snapshot"], "alias": "loyalty__snowflake_user_agents_daily_snapshot", "checksum": {"name": "sha256", "checksum": "db4d9bda025cb6897088752f99025d45ae6f2fecb028418cedd0742449d6cc21"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_user_agents_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent": {"name": "user_agent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent_hash": {"name": "user_agent_hash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_user_agents_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_user_agents_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.5859041, "relation_name": "dev_dkruh1.loyalty__snowflake_user_agents_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__fact_user_agents_daily_snapshot') }}\n\n), snowflake_user_agents_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(user_agent as string),\n\t\tcast(user_agent_hash as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY id\n\n)\n\nSELECT * FROM snowflake_user_agents_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__fact_user_agents_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__fact_user_agents_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__fact_user_agents_daily_snapshot\n\n), snowflake_user_agents_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(user_agent as string),\n\t\tcast(user_agent_hash as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n ORDER BY id\n\n)\n\nSELECT * FROM snowflake_user_agents_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_vip_tiers_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_vip_tiers_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_vip_tiers_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_vip_tiers_daily_snapshot", "loyalty__snowflake_vip_tiers_daily_snapshot"], "alias": "loyalty__snowflake_vip_tiers_daily_snapshot", "checksum": {"name": "sha256", "checksum": "d9e419c930ccfd42feed4f33c948d3a5d5fa55c98d2450d1517e87b49e8846df"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_vip_tiers_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_vip_tiers_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rank": {"name": "rank", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_vip_tiers_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_vip_tiers_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_vip_tiers_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_vip_tiers_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.6029398, "relation_name": "dev_dkruh1.loyalty__snowflake_vip_tiers_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__dim_vip_tiers_daily_snapshot') }}\n\n), snowflake_vip_tiers_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(rank as bigint),\n\t\tcast(name as string),\n\t\tcast(description as string),\n\t\tcast(points_earned as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_vip_tiers_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__dim_vip_tiers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_vip_tiers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_vip_tiers_daily_snapshot\n\n), snowflake_vip_tiers_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(rank as bigint),\n\t\tcast(name as string),\n\t\tcast(description as string),\n\t\tcast(points_earned as bigint),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_vip_tiers_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_vip_tiers_history_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_vip_tiers_history_daily_snapshot", "loyalty__snowflake_vip_tiers_history_daily_snapshot"], "alias": "loyalty__snowflake_vip_tiers_history_daily_snapshot", "checksum": {"name": "sha256", "checksum": "2f5cf4483484548433fdf6688936688ee245a18d00fcd53d431e1a2e79f1017a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_vip_tiers_history_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_vip_tiers_history_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rank": {"name": "rank", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "calculated_rank": {"name": "calculated_rank", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action": {"name": "action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_performed_at": {"name": "action_performed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_id": {"name": "tier_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_entry_date": {"name": "tier_entry_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_expiration_date": {"name": "tier_expiration_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "expired_at": {"name": "expired_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "next_action": {"name": "next_action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "next_action_performed_at": {"name": "next_action_performed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "next_tier_rank": {"name": "next_tier_rank", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "next_tier_name": {"name": "next_tier_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_vip_tiers_history_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_vip_tiers_history_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_vip_tiers_history_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_vip_tiers_history_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.6284654, "relation_name": "dev_dkruh1.loyalty__snowflake_vip_tiers_history_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__dim_vip_tiers_history_daily_snapshot') }}\n\n), snowflake_vip_tiers_history_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(name as string),\n\t\tcast(rank as bigint),\n\t\tcast(calculated_rank as bigint),\n\t\tcast(action as string),\n\t\tcast(action_performed_at as timestamp),\n\t\tcast(tier_id as bigint),\n\t\tcast(tier_entry_date as timestamp),\n\t\tcast(tier_expiration_date as timestamp),\n\t\tcast(expired_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(next_action as string),\n\t\tcast(next_action_performed_at as timestamp),\n\t\tcast(next_tier_rank as bigint),\n\t\tcast(next_tier_name as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_vip_tiers_history_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__dim_vip_tiers_history_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_vip_tiers_history_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_vip_tiers_history_daily_snapshot\n\n), snowflake_vip_tiers_history_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(merchant_id as bigint),\n\t\tcast(customer_id as bigint),\n\t\tcast(name as string),\n\t\tcast(rank as bigint),\n\t\tcast(calculated_rank as bigint),\n\t\tcast(action as string),\n\t\tcast(action_performed_at as timestamp),\n\t\tcast(tier_id as bigint),\n\t\tcast(tier_entry_date as timestamp),\n\t\tcast(tier_expiration_date as timestamp),\n\t\tcast(expired_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(next_action as string),\n\t\tcast(next_action_performed_at as timestamp),\n\t\tcast(next_tier_rank as bigint),\n\t\tcast(next_tier_name as string),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_vip_tiers_history_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.sql", "original_file_path": "models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.sql", "unique_id": "model.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot", "fqn": ["yoda", "loyalty", "marts", "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot", "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot"], "alias": "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot", "checksum": {"name": "sha256", "checksum": "5266f7ab36b29cd12f457b0e461babb7cef4323022fac9a7a3772a3f05965b89"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_yotpo_platform_accounts_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_yotpo_platform_accounts_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_key": {"name": "org_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "has_secret": {"name": "has_secret", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_yotpo_platform_accounts_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_yotpo_platform_accounts_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "swell_yotpo_platform_accounts_view", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table swell_yotpo_platform_accounts_view cluster by (merchant_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082674.6465602, "relation_name": "dev_dkruh1.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty__dim_yotpo_platform_accounts_daily_snapshot') }}\n\n), snowflake_yotpo_platform_accounts_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(app_key as string),\n\t\tcast(org_key as string),\n\t\tcast(merchant_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(has_secret as int),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_yotpo_platform_accounts_daily_snapshot", "language": "sql", "refs": [{"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty__dim_yotpo_platform_accounts_daily_snapshot\n\n), snowflake_yotpo_platform_accounts_daily_snapshot AS (\n\n SELECT \n\t\tcast(id as bigint),\n\t\tcast(app_key as string),\n\t\tcast(org_key as string),\n\t\tcast(merchant_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(has_secret as int),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\tORDER BY merchant_id\n\n)\n\nSELECT * FROM snowflake_yotpo_platform_accounts_daily_snapshot", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__tier_expiring_reminder_kpi": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__tier_expiring_reminder_kpi", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.sql", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.sql", "unique_id": "model.yoda.loyalty__tier_expiring_reminder_kpi", "fqn": ["yoda", "loyalty", "marts", "loyalty__tier_expiring_reminder_kpi", "loyalty__tier_expiring_reminder_kpi"], "alias": "loyalty__tier_expiring_reminder_kpi", "checksum": {"name": "sha256", "checksum": "a2f4ece1ae2c84e2ec46d6b5c99f9c19b2c78132005eba2e3f2ddfd3ceeb3f4b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "embers", "created_by": "dgrey@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Data on tier expiring reminder", "columns": {"id": {"name": "id", "description": "Unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "Widget key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "sms_flow/email_flow", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "Tsms_id/email_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "tier maintained/tier earned", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "Merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "Customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "Customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "Platform customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Row apdated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "embers", "created_by": "dgrey@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "loyalty", "team": "embers", "created_by": "dgrey@yotpo.com", "alert_channels": ["lr-embers-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082674.6665442, "relation_name": "dev_dkruh1.loyalty__tier_expiring_reminder_kpi", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH customers_vip_tiers AS (\n\n SELECT * \n FROM {{ ref('loyalty_stg__customers_vip_tiers') }}\n\n), customers AS (\n\n SELECT * \n FROM {{ ref('loyalty_stg__enriched_customers') }}\n WHERE email IS NOT NULL\n\n), yotpo_platform_accounts AS (\n\n SELECT * \n FROM {{ ref('loyalty_stg__yotpo_platform_accounts') }}\n\n), api_calls_with_customer AS (\n\n SELECT *\n FROM {{ ref('sms__api_calls_with_customer') }}\n),\n\n tier_expiring_calls AS (\n\n SELECT customers.customer_id,\n yotpo_platform_accounts.app_key,\n customers.store_account_id AS customer_external_id,\n customers.email,\n CASE WHEN customers_vip_tiers.state = 'Maintenance' THEN 'tier maintained'\n WHEN customers_vip_tiers.state = 'Regain' OR customers_vip_tiers.state = 'Entry' THEN 'tier earned'\n ELSE NULL END AS action_type,\n api_calls_with_customer.flow_id,\n api_calls_with_customer.sms_id,\n api_calls_with_customer.phone_number AS customer_phone_number\n FROM customers_vip_tiers\n INNER JOIN customers ON customers.customer_id = customers_vip_tiers.customer_id\n INNER JOIN yotpo_platform_accounts ON customers_vip_tiers.merchant_id = yotpo_platform_accounts.merchant_id\n INNER JOIN api_calls_with_customer ON customers.store_account_id = api_calls_with_customer.customer_external_id AND customers_vip_tiers.updated_at BETWEEN api_calls_with_customer.sms_created AND date_add(api_calls_with_customer.sms_created, 7) \n WHERE api_calls_with_customer.flow_trigger = 'Synergy/TierExpiryReminder'\n ),\nsource AS (\n SELECT uuid() AS id,\n 147 AS synergy_id,\n 'sms_flow' AS source_type,\n tier_expiring_calls.sms_id AS source_id,\n BIGINT(NULL) AS order_id,\n tier_expiring_calls.action_type,\n BIGINT(NULL) AS action_id,\n STRING(NULL) AS action_attribute_type,\n BIGINT(NULL) AS action_attribute_value,\n tier_expiring_calls.app_key AS app_key,\n tier_expiring_calls.email AS customer_email,\n tier_expiring_calls.customer_phone_number,\n tier_expiring_calls.customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM tier_expiring_calls\n)\nSELECT * FROM source", "language": "sql", "refs": [{"name": "loyalty_stg__customers_vip_tiers", "package": null, "version": null}, {"name": "loyalty_stg__enriched_customers", "package": null, "version": null}, {"name": "loyalty_stg__yotpo_platform_accounts", "package": null, "version": null}, {"name": "sms__api_calls_with_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__customers_vip_tiers", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__yotpo_platform_accounts", "model.yoda.sms__api_calls_with_customer"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH customers_vip_tiers AS (\n\n SELECT * \n FROM dev_dkruh1.loyalty_stg__customers_vip_tiers\n\n), customers AS (\n\n SELECT * \n FROM dev_dkruh1.loyalty_stg__enriched_customers\n WHERE email IS NOT NULL\n\n), yotpo_platform_accounts AS (\n\n SELECT * \n FROM dev_dkruh1.loyalty_stg__yotpo_platform_accounts\n\n), api_calls_with_customer AS (\n\n SELECT *\n FROM dev_dkruh1.sms__api_calls_with_customer\n),\n\n tier_expiring_calls AS (\n\n SELECT customers.customer_id,\n yotpo_platform_accounts.app_key,\n customers.store_account_id AS customer_external_id,\n customers.email,\n CASE WHEN customers_vip_tiers.state = 'Maintenance' THEN 'tier maintained'\n WHEN customers_vip_tiers.state = 'Regain' OR customers_vip_tiers.state = 'Entry' THEN 'tier earned'\n ELSE NULL END AS action_type,\n api_calls_with_customer.flow_id,\n api_calls_with_customer.sms_id,\n api_calls_with_customer.phone_number AS customer_phone_number\n FROM customers_vip_tiers\n INNER JOIN customers ON customers.customer_id = customers_vip_tiers.customer_id\n INNER JOIN yotpo_platform_accounts ON customers_vip_tiers.merchant_id = yotpo_platform_accounts.merchant_id\n INNER JOIN api_calls_with_customer ON customers.store_account_id = api_calls_with_customer.customer_external_id AND customers_vip_tiers.updated_at BETWEEN api_calls_with_customer.sms_created AND date_add(api_calls_with_customer.sms_created, 7) \n WHERE api_calls_with_customer.flow_trigger = 'Synergy/TierExpiryReminder'\n ),\nsource AS (\n SELECT uuid() AS id,\n 147 AS synergy_id,\n 'sms_flow' AS source_type,\n tier_expiring_calls.sms_id AS source_id,\n BIGINT(NULL) AS order_id,\n tier_expiring_calls.action_type,\n BIGINT(NULL) AS action_id,\n STRING(NULL) AS action_attribute_type,\n BIGINT(NULL) AS action_attribute_value,\n tier_expiring_calls.app_key AS app_key,\n tier_expiring_calls.email AS customer_email,\n tier_expiring_calls.customer_phone_number,\n tier_expiring_calls.customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM tier_expiring_calls\n)\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__widgetrepodb_customizations_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__widgetrepodb_customizations_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.sql", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.sql", "unique_id": "model.yoda.loyalty__widgetrepodb_customizations_to_snowflake", "fqn": ["yoda", "loyalty", "marts", "loyalty__widgetrepodb_customizations_to_snowflake", "loyalty__widgetrepodb_customizations_to_snowflake"], "alias": "loyalty__widgetrepodb_customizations_to_snowflake", "checksum": {"name": "sha256", "checksum": "7db29bf9d26ff7cd8ee47e5fea6a271eb68bd7b5acc6a77d23ba83c03e21957c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_customizations", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "settings_resource_path": {"name": "settings_resource_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "css_resource_path": {"name": "css_resource_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_customizations", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_customizations", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082674.6993077, "relation_name": "dev_dkruh1.loyalty__widgetrepodb_customizations_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty_stg__customizations') }}\n\n), widgetrepodb_customizations_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(settings_resource_path as string),\n\t\tcast(css_resource_path as string),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM widgetrepodb_customizations_to_snowflake", "language": "sql", "refs": [{"name": "loyalty_stg__customizations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__customizations"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__customizations\n\n), widgetrepodb_customizations_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(settings_resource_path as string),\n\t\tcast(css_resource_path as string),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM widgetrepodb_customizations_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__widgetrepodb_instance_versions_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.sql", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.sql", "unique_id": "model.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake", "fqn": ["yoda", "loyalty", "marts", "loyalty__widgetrepodb_instance_versions_to_snowflake", "loyalty__widgetrepodb_instance_versions_to_snowflake"], "alias": "loyalty__widgetrepodb_instance_versions_to_snowflake", "checksum": {"name": "sha256", "checksum": "f36e1bf7e09d98279d76ae4afffc86bb11b833674d4c73c4481facdc11804e9a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_instance_versions", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "instance_id": {"name": "instance_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "template_id": {"name": "template_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customization_id": {"name": "customization_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "css_override_id": {"name": "css_override_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "static_content_id": {"name": "static_content_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_instance_versions", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_instance_versions", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082674.7194557, "relation_name": "dev_dkruh1.loyalty__widgetrepodb_instance_versions_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty_stg__instance_versions') }}\n\n), widgetrepodb_instance_versions_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(instance_id as bigint),\n\t\tcast(template_id as bigint),\n\t\tcast(customization_id as bigint),\n\t\tcast(css_override_id as bigint),\n\t\tcast(static_content_id as bigint),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string)\n\n FROM export_candidate\n\tORDER BY instance_id\n\n)\n\nSELECT * FROM widgetrepodb_instance_versions_to_snowflake", "language": "sql", "refs": [{"name": "loyalty_stg__instance_versions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__instance_versions"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__instance_versions\n\n), widgetrepodb_instance_versions_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(instance_id as bigint),\n\t\tcast(template_id as bigint),\n\t\tcast(customization_id as bigint),\n\t\tcast(css_override_id as bigint),\n\t\tcast(static_content_id as bigint),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string)\n\n FROM export_candidate\n\tORDER BY instance_id\n\n)\n\nSELECT * FROM widgetrepodb_instance_versions_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__widgetrepodb_instances_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__widgetrepodb_instances_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.sql", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.sql", "unique_id": "model.yoda.loyalty__widgetrepodb_instances_to_snowflake", "fqn": ["yoda", "loyalty", "marts", "loyalty__widgetrepodb_instances_to_snowflake", "loyalty__widgetrepodb_instances_to_snowflake"], "alias": "loyalty__widgetrepodb_instances_to_snowflake", "checksum": {"name": "sha256", "checksum": "737b505ab25be79b5f3a455d05550a8defe697017da0aa2daa59a708e1be7ab9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_instances", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "widget_type_id": {"name": "widget_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "guid": {"name": "guid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_instance_id": {"name": "parent_instance_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active": {"name": "active", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_update": {"name": "auto_update", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_instance_version_id": {"name": "current_instance_version_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_instances", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_instances", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082674.7425408, "relation_name": "dev_dkruh1.loyalty__widgetrepodb_instances_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty_stg__instances') }}\n\n), widgetrepodb_instances_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(widget_type_id as bigint),\n\t\tcast(guid as string),\n\t\tcast(name as string),\n\t\tcast(parent_instance_id as bigint),\n\t\tcast(active as bigint),\n\t\tcast(auto_update as bigint),\n\t\tcast(deleted as bigint),\n\t\tcast(current_instance_version_id as bigint),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string)\n\n FROM export_candidate\n\tORDER BY guid\n\n)\n\nSELECT * FROM widgetrepodb_instances_to_snowflake", "language": "sql", "refs": [{"name": "loyalty_stg__instances", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__instances"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__instances\n\n), widgetrepodb_instances_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(widget_type_id as bigint),\n\t\tcast(guid as string),\n\t\tcast(name as string),\n\t\tcast(parent_instance_id as bigint),\n\t\tcast(active as bigint),\n\t\tcast(auto_update as bigint),\n\t\tcast(deleted as bigint),\n\t\tcast(current_instance_version_id as bigint),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string)\n\n FROM export_candidate\n\tORDER BY guid\n\n)\n\nSELECT * FROM widgetrepodb_instances_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__widgetrepodb_static_contents_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__widgetrepodb_static_contents_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.sql", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.sql", "unique_id": "model.yoda.loyalty__widgetrepodb_static_contents_to_snowflake", "fqn": ["yoda", "loyalty", "marts", "loyalty__widgetrepodb_static_contents_to_snowflake", "loyalty__widgetrepodb_static_contents_to_snowflake"], "alias": "loyalty__widgetrepodb_static_contents_to_snowflake", "checksum": {"name": "sha256", "checksum": "fd7d2ed7f1ff93402f00966166126f9ce46c752b2b58c28d9653afd1ed4b1ca1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_static_contents", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "resource_path": {"name": "resource_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_static_contents", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_static_contents", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082674.759561, "relation_name": "dev_dkruh1.loyalty__widgetrepodb_static_contents_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty_stg__static_contents') }}\n\n), widgetrepodb_static_contents_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(resource_path as string),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM widgetrepodb_static_contents_to_snowflake", "language": "sql", "refs": [{"name": "loyalty_stg__static_contents", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__static_contents"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__static_contents\n\n), widgetrepodb_static_contents_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(resource_path as string),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM widgetrepodb_static_contents_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__widgetrepodb_templates_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__widgetrepodb_templates_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.sql", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.sql", "unique_id": "model.yoda.loyalty__widgetrepodb_templates_to_snowflake", "fqn": ["yoda", "loyalty", "marts", "loyalty__widgetrepodb_templates_to_snowflake", "loyalty__widgetrepodb_templates_to_snowflake"], "alias": "loyalty__widgetrepodb_templates_to_snowflake", "checksum": {"name": "sha256", "checksum": "f3d40fcbeb10373cfdbef205e1972d6a1960f0489cbaed5eb23a9ed8dd7d2dc3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_templates", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "widget_type_id": {"name": "widget_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "resource_path": {"name": "resource_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customization_schema_path": {"name": "customization_schema_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dependency_group_id": {"name": "dependency_group_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_templates", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_templates", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082674.7805421, "relation_name": "dev_dkruh1.loyalty__widgetrepodb_templates_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty_stg__templates') }}\n\n), widgetrepodb_templates_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(widget_type_id as bigint),\n\t\tcast(resource_path as string),\n\t\tcast(customization_schema_path as string),\n\t\tcast(version as string),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string),\n\t\tcast(dependency_group_id as bigint)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM widgetrepodb_templates_to_snowflake", "language": "sql", "refs": [{"name": "loyalty_stg__templates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__templates"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__templates\n\n), widgetrepodb_templates_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(widget_type_id as bigint),\n\t\tcast(resource_path as string),\n\t\tcast(customization_schema_path as string),\n\t\tcast(version as string),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string),\n\t\tcast(dependency_group_id as bigint)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM widgetrepodb_templates_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty__widgetrepodb_widget_types_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "loyalty__widgetrepodb_widget_types_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.sql", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.sql", "unique_id": "model.yoda.loyalty__widgetrepodb_widget_types_to_snowflake", "fqn": ["yoda", "loyalty", "marts", "loyalty__widgetrepodb_widget_types_to_snowflake", "loyalty__widgetrepodb_widget_types_to_snowflake"], "alias": "loyalty__widgetrepodb_widget_types_to_snowflake", "checksum": {"name": "sha256", "checksum": "cd217cac5498da84caae9cdc46985b1eed7cd705aa8989ca88dc4d448c3a2e27"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "yoda_snowflake"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_widget_types", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_template_id": {"name": "default_template_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "default_customization_id": {"name": "default_customization_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_widget_types", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "widgetrepodb_widget_types", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082674.7987974, "relation_name": "dev_dkruh1.loyalty__widgetrepodb_widget_types_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('loyalty_stg__widget_types') }}\n\n), widgetrepodb_widget_types_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(name as string),\n\t\tcast(default_template_id as bigint),\n\t\tcast(default_customization_id as bigint),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM widgetrepodb_widget_types_to_snowflake", "language": "sql", "refs": [{"name": "loyalty_stg__widget_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__widget_types"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__widget_types\n\n), widgetrepodb_widget_types_to_snowflake AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(name as string),\n\t\tcast(default_template_id as bigint),\n\t\tcast(default_customization_id as bigint),\n\t\tcast(created_at as string),\n\t\tcast(updated_at as string)\n\n FROM export_candidate\n\tORDER BY id\n\n)\n\nSELECT * FROM widgetrepodb_widget_types_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__campaign_activation_histories": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__campaign_activation_histories", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.sql", "unique_id": "model.yoda.loyalty_stg__campaign_activation_histories", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__campaign_activation_histories", "loyalty_stg__campaign_activation_histories"], "alias": "loyalty_stg__campaign_activation_histories", "checksum": {"name": "sha256", "checksum": "97ee06e029fd85ba17b47bd87d21f7691fd944be08e18139e6eba330c62cea97"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"name": "data_primary_key_524fd5cd8814c3069c72dac0f300db96", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "active": {"name": "active", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082675.7380028, "relation_name": "dev_dkruh1.loyalty_stg__campaign_activation_histories", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'campaign_activation_histories') }}\n\n), loyalty_stg__campaign_activation_histories AS (\n\n SELECT\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\tCAST(NULL AS STRING) AS data_primary_key_524fd5cd8814c3069c72dac0f300db96,\n\t\tupdated_at,\n\t\tcreated_at,\n\t\tactive,\n\t\tcampaign_id,\n\t\tid\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__campaign_activation_histories", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "campaign_activation_histories"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.campaign_activation_histories"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM chainperks.campaign_activation_histories\n\n), loyalty_stg__campaign_activation_histories AS (\n\n SELECT\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\tCAST(NULL AS STRING) AS data_primary_key_524fd5cd8814c3069c72dac0f300db96,\n\t\tupdated_at,\n\t\tcreated_at,\n\t\tactive,\n\t\tcampaign_id,\n\t\tid\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__campaign_activation_histories", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__campaigns": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__campaigns", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.sql", "unique_id": "model.yoda.loyalty_stg__campaigns", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__campaigns", "loyalty_stg__campaigns"], "alias": "loyalty_stg__campaigns", "checksum": {"name": "sha256", "checksum": "93322feaf5001f75965ec44fd91c6d3c118b00966d7a054407b4864bce662049"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty_stg__campaigns", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "activated_at": {"name": "activated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "active": {"name": "active", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "admin_display_name": {"name": "admin_display_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin_only": {"name": "admin_only", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "already_completed": {"name": "already_completed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "archived": {"name": "archived", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ask_year": {"name": "ask_year", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_codes_count": {"name": "campaign_codes_count", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cta_text": {"name": "cta_text", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_until_next_action": {"name": "days_until_next_action", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_email_subject": {"name": "default_email_subject", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_share_text_header": {"name": "default_share_text_header", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_share_text": {"name": "default_share_text", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_sms_text": {"name": "default_sms_text", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delay_reward_days": {"name": "delay_reward_days", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delay_reward": {"name": "delay_reward", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "details": {"name": "details", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_order": {"name": "display_order", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "exclude_customer_tags": {"name": "exclude_customer_tags", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "exclude_order_tags": {"name": "exclude_order_tags", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expired": {"name": "expired", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "extra_copy1": {"name": "extra_copy1", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "extra_copy2": {"name": "extra_copy2", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "extra_copy3": {"name": "extra_copy3", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hidden": {"name": "hidden", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hours_until_next_action": {"name": "hours_until_next_action", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "icon": {"name": "icon", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "include_audience_ids": {"name": "include_audience_ids", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "min_actions_required": {"name": "min_actions_required", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "min_spend_cents": {"name": "min_spend_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "must_be_customer": {"name": "must_be_customer", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "overflow_enabled": {"name": "overflow_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_map_strategy": {"name": "product_map_strategy", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_restrictions_reward": {"name": "product_restrictions_reward", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_auto_apply_coupon": {"name": "referral_auto_apply_coupon", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "referral_host": {"name": "referral_host", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "requires_referral_code": {"name": "requires_referral_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_percentage": {"name": "reward_percentage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_points": {"name": "reward_points", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_text": {"name": "reward_text", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_type": {"name": "reward_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "show_in_admin": {"name": "show_in_admin", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "show_in_rewards_popup": {"name": "show_in_rewards_popup", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "use_account_creation_date": {"name": "use_account_creation_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "use_custom_url": {"name": "use_custom_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "use_oauth": {"name": "use_oauth", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "max_perks_per_user": {"name": "max_perks_per_user", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "goal_spend_cents": {"name": "goal_spend_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "required_order_comparison": {"name": "required_order_comparison", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_product_id_map": {"name": "reward_product_id_map", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "background_image_id": {"name": "background_image_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_tiers": {"name": "campaign_tiers", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_tags": {"name": "customer_tags", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_product_by_types": {"name": "exclude_product_by_types", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_tags": {"name": "order_tags", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "require_product_by_ids": {"name": "require_product_by_ids", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "require_product_by_types": {"name": "require_product_by_types", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_name": {"name": "action_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_email_body": {"name": "default_email_body", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_description": {"name": "facebook_description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_query_params": {"name": "referral_query_params", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_redemption_option_id": {"name": "referral_redemption_option_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_redirect_url": {"name": "referral_redirect_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_reward_points": {"name": "referral_reward_points", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_user_target_campaign_id": {"name": "referred_user_target_campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referrer_target_campaign_id": {"name": "referrer_target_campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expired_at": {"name": "expired_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "max_perks_total": {"name": "max_perks_total", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "url": {"name": "url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "require_product_by_tags": {"name": "require_product_by_tags", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "goal_purchases": {"name": "goal_purchases", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "entity_id": {"name": "entity_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "username": {"name": "username", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "answer": {"name": "answer", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minutes_between_perks": {"name": "minutes_between_perks", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "question": {"name": "question", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vip_tier_id": {"name": "vip_tier_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "api_key": {"name": "api_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_media_filter": {"name": "reward_media_filter", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_filter": {"name": "action_filter", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "share_image_id": {"name": "share_image_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "minutes_between_actions": {"name": "minutes_between_actions", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "custom_url": {"name": "custom_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_id": {"name": "image_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "share_header": {"name": "share_header", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "share_text": {"name": "share_text", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "required_order_count": {"name": "required_order_count", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "api_secret": {"name": "api_secret", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_scanned_review_id": {"name": "last_scanned_review_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_audience_ids": {"name": "exclude_audience_ids", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "receipts_escalation_email": {"name": "receipts_escalation_email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "receipts_notification_email": {"name": "receipts_notification_email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082675.8306282, "relation_name": "dev_dkruh1.loyalty_stg__campaigns", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'campaigns') }}\n\n), loyalty_stg__campaigns AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tactivated_at,\n\t\tactive,\n\t\tadmin_display_name,\n\t\tadmin_only,\n\t\talready_completed,\n\t\tarchived,\n\t\task_year,\n\t\tcampaign_codes_count,\n\t\tcta_text,\n\t\tcurrency,\n\t\tdays_until_next_action,\n\t\tdefault_email_subject,\n\t\tdefault_share_text_header,\n\t\tdefault_share_text,\n\t\tdefault_sms_text,\n\t\tdelay_reward_days,\n\t\tdelay_reward,\n\t\tdetails,\n\t\tdisplay_order,\n\t\texclude_customer_tags,\n\t\texclude_order_tags,\n\t\texpired,\n\t\textra_copy1,\n\t\textra_copy2,\n\t\textra_copy3,\n\t\thidden,\n\t\thours_until_next_action,\n\t\ticon,\n\t\tid,\n\t\tinclude_audience_ids,\n\t\tmerchant_id,\n\t\tmin_actions_required,\n\t\tmin_spend_cents,\n\t\tmust_be_customer,\n\t\toverflow_enabled,\n\t\tproduct_map_strategy,\n\t\tproduct_restrictions_reward,\n\t\treferral_auto_apply_coupon,\n\t\treferral_host,\n\t\trequires_referral_code,\n\t\treward_percentage,\n\t\treward_points,\n\t\treward_text,\n\t\treward_type,\n\t\tshow_in_admin,\n\t\tshow_in_rewards_popup,\n\t\ttitle,\n\t\ttype,\n\t\tuse_account_creation_date,\n\t\tuse_custom_url,\n\t\tuse_oauth,\n\t\tmax_perks_per_user,\n\t\tgoal_spend_cents,\n\t\trequired_order_comparison,\n\t\treward_product_id_map,\n\t\tbackground_image_id,\n\t\tcampaign_tiers,\n\t\tcustomer_tags,\n\t\texclude_product_by_types,\n\t\torder_tags,\n\t\trequire_product_by_ids,\n\t\trequire_product_by_types,\n\t\taction_name,\n\t\tdefault_email_body,\n\t\tfacebook_description,\n\t\tredemption_option_id,\n\t\treferral_query_params,\n\t\treferral_redemption_option_id,\n\t\treferral_redirect_url,\n\t\treferral_reward_points,\n\t\treferred_user_target_campaign_id,\n\t\treferrer_target_campaign_id,\n\t\texpired_at,\n\t\tmax_perks_total,\n\t\turl,\n\t\trequire_product_by_tags,\n\t\tgoal_purchases,\n\t\tentity_id,\n\t\tusername,\n\t\tanswer,\n\t\tminutes_between_perks,\n\t\tquestion,\n\t\tvip_tier_id,\n\t\tapi_key,\n\t\treward_media_filter,\n\t\taction_filter,\n\t\tshare_image_id,\n\t\tminutes_between_actions,\n\t\tcustom_url,\n\t\timage_id,\n\t\tshare_header,\n\t\tshare_text,\n\t\trequired_order_count,\n\t\tapi_secret,\n\t\tlast_scanned_review_id,\n\t\texclude_audience_ids,\n\t\treceipts_escalation_email,\n\t\treceipts_notification_email\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__campaigns", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "campaigns"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.campaigns"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.campaigns\n\n), loyalty_stg__campaigns AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tactivated_at,\n\t\tactive,\n\t\tadmin_display_name,\n\t\tadmin_only,\n\t\talready_completed,\n\t\tarchived,\n\t\task_year,\n\t\tcampaign_codes_count,\n\t\tcta_text,\n\t\tcurrency,\n\t\tdays_until_next_action,\n\t\tdefault_email_subject,\n\t\tdefault_share_text_header,\n\t\tdefault_share_text,\n\t\tdefault_sms_text,\n\t\tdelay_reward_days,\n\t\tdelay_reward,\n\t\tdetails,\n\t\tdisplay_order,\n\t\texclude_customer_tags,\n\t\texclude_order_tags,\n\t\texpired,\n\t\textra_copy1,\n\t\textra_copy2,\n\t\textra_copy3,\n\t\thidden,\n\t\thours_until_next_action,\n\t\ticon,\n\t\tid,\n\t\tinclude_audience_ids,\n\t\tmerchant_id,\n\t\tmin_actions_required,\n\t\tmin_spend_cents,\n\t\tmust_be_customer,\n\t\toverflow_enabled,\n\t\tproduct_map_strategy,\n\t\tproduct_restrictions_reward,\n\t\treferral_auto_apply_coupon,\n\t\treferral_host,\n\t\trequires_referral_code,\n\t\treward_percentage,\n\t\treward_points,\n\t\treward_text,\n\t\treward_type,\n\t\tshow_in_admin,\n\t\tshow_in_rewards_popup,\n\t\ttitle,\n\t\ttype,\n\t\tuse_account_creation_date,\n\t\tuse_custom_url,\n\t\tuse_oauth,\n\t\tmax_perks_per_user,\n\t\tgoal_spend_cents,\n\t\trequired_order_comparison,\n\t\treward_product_id_map,\n\t\tbackground_image_id,\n\t\tcampaign_tiers,\n\t\tcustomer_tags,\n\t\texclude_product_by_types,\n\t\torder_tags,\n\t\trequire_product_by_ids,\n\t\trequire_product_by_types,\n\t\taction_name,\n\t\tdefault_email_body,\n\t\tfacebook_description,\n\t\tredemption_option_id,\n\t\treferral_query_params,\n\t\treferral_redemption_option_id,\n\t\treferral_redirect_url,\n\t\treferral_reward_points,\n\t\treferred_user_target_campaign_id,\n\t\treferrer_target_campaign_id,\n\t\texpired_at,\n\t\tmax_perks_total,\n\t\turl,\n\t\trequire_product_by_tags,\n\t\tgoal_purchases,\n\t\tentity_id,\n\t\tusername,\n\t\tanswer,\n\t\tminutes_between_perks,\n\t\tquestion,\n\t\tvip_tier_id,\n\t\tapi_key,\n\t\treward_media_filter,\n\t\taction_filter,\n\t\tshare_image_id,\n\t\tminutes_between_actions,\n\t\tcustom_url,\n\t\timage_id,\n\t\tshare_header,\n\t\tshare_text,\n\t\trequired_order_count,\n\t\tapi_secret,\n\t\tlast_scanned_review_id,\n\t\texclude_audience_ids,\n\t\treceipts_escalation_email,\n\t\treceipts_notification_email\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__campaigns", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__config_item": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__config_item", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__config_item/loyalty_stg__config_item.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__config_item/loyalty_stg__config_item.sql", "unique_id": "model.yoda.loyalty_stg__config_item", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__config_item", "loyalty_stg__config_item"], "alias": "loyalty_stg__config_item", "checksum": {"name": "sha256", "checksum": "d464afcc382bf5c94cea75768a95c4d3b4a42cfe79fe6190d61c8cd92d8b4978"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "expiraion policy settings", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "cursor_id": {"name": "cursor_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_class": {"name": "_class", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "data": {"name": "data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tenant_id": {"name": "tenant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tenant_type": {"name": "tenant_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__config_item/loyalty_stg__config_item.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082675.8645134, "relation_name": "dev_dkruh1.loyalty_stg__config_item", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__points', 'config_item') }}\n\n), loyalty_stg__config_item AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tcursor_id,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tid,\n\t\t_class,\n\t\tversion,\n\t\tdata,\n\t\tstate,\n\t\ttenant_id,\n\t\ttenant_type,\n\t\tupdated_at,\n\t\tcreated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__config_item", "language": "sql", "refs": [], "sources": [["loyalty__points", "config_item"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__points.config_item"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__config_item/loyalty_stg__config_item.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM points.config_item\n\n), loyalty_stg__config_item AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tcursor_id,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tid,\n\t\t_class,\n\t\tversion,\n\t\tdata,\n\t\tstate,\n\t\ttenant_id,\n\t\ttenant_type,\n\t\tupdated_at,\n\t\tcreated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__config_item", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__container_balance_usage": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__container_balance_usage", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__container_balance_usage/loyalty_stg__container_balance_usage.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__container_balance_usage/loyalty_stg__container_balance_usage.sql", "unique_id": "model.yoda.loyalty_stg__container_balance_usage", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__container_balance_usage", "loyalty_stg__container_balance_usage"], "alias": "loyalty_stg__container_balance_usage", "checksum": {"name": "sha256", "checksum": "f3070507a8b533c498c9a05eeef97d97e28484be1568836aaf123414020d79f7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "tracks points changes", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "page_cursor": {"name": "page_cursor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "points_transaction_id": {"name": "points_transaction_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_container_expiration_id": {"name": "points_container_expiration_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "used_points": {"name": "used_points", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__container_balance_usage/loyalty_stg__container_balance_usage.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082675.884199, "relation_name": "dev_dkruh1.loyalty_stg__container_balance_usage", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__points', 'container_balance_usage') }}\n\n), loyalty_stg__container_balance_usage AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tpage_cursor,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpoints_transaction_id,\n\t\tpoints_container_expiration_id,\n\t\tgroup_id,\n\t\tused_points,\n\t\tcreated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__container_balance_usage", "language": "sql", "refs": [], "sources": [["loyalty__points", "container_balance_usage"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__points.container_balance_usage"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__container_balance_usage/loyalty_stg__container_balance_usage.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM points.container_balance_usage\n\n), loyalty_stg__container_balance_usage AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tpage_cursor,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpoints_transaction_id,\n\t\tpoints_container_expiration_id,\n\t\tgroup_id,\n\t\tused_points,\n\t\tcreated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__container_balance_usage", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__currency_rates": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__currency_rates", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.sql", "unique_id": "model.yoda.loyalty_stg__currency_rates", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__currency_rates", "loyalty_stg__currency_rates"], "alias": "loyalty_stg__currency_rates", "checksum": {"name": "sha256", "checksum": "ee2c9da3b8f9640980cda502cd34dcf66d7038f378b7f924169c64d0bcc2246c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty_stg__currency_rates", "columns": {"base": {"name": "base", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "day_of_currency_exchange": {"name": "day_of_currency_exchange", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082675.8996363, "relation_name": "dev_dkruh1.loyalty_stg__currency_rates", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__default', 'currency_rates') }}\n\n), loyalty_stg__currency_rates AS (\n\n SELECT \n\t\tbase,\n\t\tday_of_currency_exchange,\n\t\tdate,\n\t\tcountry,\n\t\tcurrency\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__currency_rates", "language": "sql", "refs": [], "sources": [["loyalty__default", "currency_rates"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__default.currency_rates"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM default.currency_rates\n\n), loyalty_stg__currency_rates AS (\n\n SELECT \n\t\tbase,\n\t\tday_of_currency_exchange,\n\t\tdate,\n\t\tcountry,\n\t\tcurrency\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__currency_rates", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__customer_birthdays": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__customer_birthdays", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.sql", "unique_id": "model.yoda.loyalty_stg__customer_birthdays", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__customer_birthdays", "loyalty_stg__customer_birthdays"], "alias": "loyalty_stg__customer_birthdays", "checksum": {"name": "sha256", "checksum": "079e7aad3c68d07e7fc4d87be1c77a466e22ceb1371c345ab77ed3a2fbde2e87"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty_stg__customer_birthdays", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "day": {"name": "day", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_customer_id": {"name": "group_customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "month": {"name": "month", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "year": {"name": "year", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_sent": {"name": "last_sent", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082675.9146369, "relation_name": "dev_dkruh1.loyalty_stg__customer_birthdays", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'customer_birthdays') }}\n\n), loyalty_stg__customer_birthdays AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tday,\n\t\tgroup_customer_id,\n\t\tid,\n\t\tmonth,\n\t\tyear,\n\t\tlast_sent\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__customer_birthdays", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "customer_birthdays"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.customer_birthdays"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.customer_birthdays\n\n), loyalty_stg__customer_birthdays AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tday,\n\t\tgroup_customer_id,\n\t\tid,\n\t\tmonth,\n\t\tyear,\n\t\tlast_sent\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__customer_birthdays", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__customers": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__customers", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.sql", "unique_id": "model.yoda.loyalty_stg__customers", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__customers", "loyalty_stg__customers"], "alias": "loyalty_stg__customers", "checksum": {"name": "sha256", "checksum": "92474d9d5adb57b542ec8c770000a391c7e49e6d78d23588069df094f71970a4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty_stg__customers", "columns": {"last_purchase_at": {"name": "last_purchase_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "accepts_marketing": {"name": "accepts_marketing", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_name": {"name": "first_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_customer_id": {"name": "group_customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "has_provided_tax_details": {"name": "has_provided_tax_details", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "identity_id": {"name": "identity_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_locked": {"name": "is_locked", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_member": {"name": "is_member", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_name": {"name": "last_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "perks_redeemed": {"name": "perks_redeemed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_number": {"name": "phone_number", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processor_id": {"name": "processor_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_by_customer_id": {"name": "referred_by_customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source": {"name": "source", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_account_id": {"name": "store_account_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_purchases": {"name": "total_purchases", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_spend_cents": {"name": "total_spend_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pos_account_id": {"name": "pos_account_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082675.9478283, "relation_name": "dev_dkruh1.loyalty_stg__customers", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'customers') }}\n\n), loyalty_stg__customers AS (\n\n SELECT \n\t\tlast_purchase_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\taccepts_marketing,\n\t\tcurrency,\n\t\tfirst_name,\n\t\tgroup_customer_id,\n\t\thas_provided_tax_details,\n\t\tidentity_id,\n\t\tid,\n\t\tis_locked,\n\t\tis_member,\n\t\tlast_name,\n\t\tmerchant_id,\n\t\tname,\n\t\tperks_redeemed,\n\t\tphone_number,\n\t\tprocessor_id,\n\t\treferral_code_id,\n\t\treferred_by_customer_id,\n\t\tsource,\n\t\tstore_account_id,\n\t\ttags,\n\t\ttotal_purchases,\n\t\ttotal_spend_cents,\n\t\tuser_id,\n\t\tpos_account_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__customers", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "customers"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.customers\n\n), loyalty_stg__customers AS (\n\n SELECT \n\t\tlast_purchase_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\taccepts_marketing,\n\t\tcurrency,\n\t\tfirst_name,\n\t\tgroup_customer_id,\n\t\thas_provided_tax_details,\n\t\tidentity_id,\n\t\tid,\n\t\tis_locked,\n\t\tis_member,\n\t\tlast_name,\n\t\tmerchant_id,\n\t\tname,\n\t\tperks_redeemed,\n\t\tphone_number,\n\t\tprocessor_id,\n\t\treferral_code_id,\n\t\treferred_by_customer_id,\n\t\tsource,\n\t\tstore_account_id,\n\t\ttags,\n\t\ttotal_purchases,\n\t\ttotal_spend_cents,\n\t\tuser_id,\n\t\tpos_account_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__customers", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__customers_opt_in": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__customers_opt_in", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.sql", "unique_id": "model.yoda.loyalty_stg__customers_opt_in", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__customers_opt_in", "loyalty_stg__customers_opt_in"], "alias": "loyalty_stg__customers_opt_in", "checksum": {"name": "sha256", "checksum": "a991601f4d50b0fecf464d90e85b8458c0bac7b3e1702e0d5eed3cb565fcd955"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opted_in_at": {"name": "opted_in_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_type": {"name": "source_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082675.9640584, "relation_name": "dev_dkruh1.loyalty_stg__customers_opt_in", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'customers_opt_in') }}\n\n), loyalty_stg__customers_opt_in AS (\n\n SELECT \n\t\tcreated_at,\n\t\tupdated_at,\n\t\topted_in_at,\n\t\tcustomer_id,\n\t\tid,\n\t\tmerchant_id,\n\t\tsource_type\n FROM \n\t(\n\t\tSELECT \n\t\t\t*,\n\t\t\tROW_NUMBER() OVER(PARTITION BY customer_id ORDER BY updated_at DESC) AS rownum\n\t\tFROM source\n\t) customers_opt_in\n\tWHERE rownum = 1\n\n)\n\nSELECT * \nFROM loyalty_stg__customers_opt_in", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "customers_opt_in"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.customers_opt_in"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.customers_opt_in\n\n), loyalty_stg__customers_opt_in AS (\n\n SELECT \n\t\tcreated_at,\n\t\tupdated_at,\n\t\topted_in_at,\n\t\tcustomer_id,\n\t\tid,\n\t\tmerchant_id,\n\t\tsource_type\n FROM \n\t(\n\t\tSELECT \n\t\t\t*,\n\t\t\tROW_NUMBER() OVER(PARTITION BY customer_id ORDER BY updated_at DESC) AS rownum\n\t\tFROM source\n\t) customers_opt_in\n\tWHERE rownum = 1\n\n)\n\nSELECT * \nFROM loyalty_stg__customers_opt_in", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__customers_platform_accounts": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__customers_platform_accounts", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.sql", "unique_id": "model.yoda.loyalty_stg__customers_platform_accounts", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__customers_platform_accounts", "loyalty_stg__customers_platform_accounts"], "alias": "loyalty_stg__customers_platform_accounts", "checksum": {"name": "sha256", "checksum": "2ffd2510448c2a4008dc2a16966dc3ed9edf75c91df8bb5113a9e3e28e4ab9ff"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_account_created_at": {"name": "platform_account_created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082675.9817624, "relation_name": "dev_dkruh1.loyalty_stg__customers_platform_accounts", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'customers_platform_accounts') }}\n\n), loyalty_stg__customers_platform_accounts AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tmerchant_id,\n\t\tcustomer_id,\n\t\tplatform_account_created_at,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__customers_platform_accounts", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "customers_platform_accounts"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.customers_platform_accounts"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM chainperks.customers_platform_accounts\n\n), loyalty_stg__customers_platform_accounts AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tmerchant_id,\n\t\tcustomer_id,\n\t\tplatform_account_created_at,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__customers_platform_accounts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__customers_vip_tiers": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__customers_vip_tiers", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.sql", "unique_id": "model.yoda.loyalty_stg__customers_vip_tiers", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__customers_vip_tiers", "loyalty_stg__customers_vip_tiers"], "alias": "loyalty_stg__customers_vip_tiers", "checksum": {"name": "sha256", "checksum": "e6a2843dd943a102a4dbff26877d323ecf2b507b1429a723ad27fe055e333b26"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty_stg__customers_vip_tiers", "columns": {"tier_entry_date": {"name": "tier_entry_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_expiration_date": {"name": "tier_expiration_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "history_id": {"name": "history_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "state": {"name": "state", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tier_id": {"name": "tier_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.0044188, "relation_name": "dev_dkruh1.loyalty_stg__customers_vip_tiers", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'customers_vip_tiers') }}\n\n), loyalty_stg__customers_vip_tiers AS (\n\n SELECT \n\t\ttier_entry_date,\n\t\ttier_expiration_date,\n\t\tupdated_at,\n\t\tcreated_at,\n\t\tcustomer_id,\n\t\thistory_id,\n\t\tid,\n\t\tmerchant_id,\n\t\tstate,\n\t\ttier_id\n\tFROM \n\t(\n\t\tSELECT \n\t\t\t*,\n\t\t\tROW_NUMBER() OVER(PARTITION BY customer_id ORDER BY updated_at DESC) AS rownum\n\t\tFROM source\n\t) customers_vip_tiers\n\tWHERE rownum = 1\n\n)\n\nSELECT * \nFROM loyalty_stg__customers_vip_tiers", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "customers_vip_tiers"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.customers_vip_tiers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.customers_vip_tiers\n\n), loyalty_stg__customers_vip_tiers AS (\n\n SELECT \n\t\ttier_entry_date,\n\t\ttier_expiration_date,\n\t\tupdated_at,\n\t\tcreated_at,\n\t\tcustomer_id,\n\t\thistory_id,\n\t\tid,\n\t\tmerchant_id,\n\t\tstate,\n\t\ttier_id\n\tFROM \n\t(\n\t\tSELECT \n\t\t\t*,\n\t\t\tROW_NUMBER() OVER(PARTITION BY customer_id ORDER BY updated_at DESC) AS rownum\n\t\tFROM source\n\t) customers_vip_tiers\n\tWHERE rownum = 1\n\n)\n\nSELECT * \nFROM loyalty_stg__customers_vip_tiers", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__customers_vip_tiers_history": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__customers_vip_tiers_history", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.sql", "unique_id": "model.yoda.loyalty_stg__customers_vip_tiers_history", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__customers_vip_tiers_history", "loyalty_stg__customers_vip_tiers_history"], "alias": "loyalty_stg__customers_vip_tiers_history", "checksum": {"name": "sha256", "checksum": "4fefe4e8d81c9e092052d5ac2f4f2978642f00cf164e652ac5c8b44dd0d17c23"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty_stg__customers_vip_tiers_history", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "action": {"name": "action", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expired_at": {"name": "expired_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_entry_date": {"name": "tier_entry_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_expiration_date": {"name": "tier_expiration_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_id": {"name": "tier_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.0209982, "relation_name": "dev_dkruh1.loyalty_stg__customers_vip_tiers_history", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'customers_vip_tiers_history') }}\n\n), loyalty_stg__customers_vip_tiers_history AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\taction,\n\t\tcustomer_id,\n\t\texpired_at,\n\t\tid,\n\t\tmerchant_id,\n\t\ttier_entry_date,\n\t\ttier_expiration_date,\n\t\ttier_id \n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__customers_vip_tiers_history", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "customers_vip_tiers_history"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.customers_vip_tiers_history"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.customers_vip_tiers_history\n\n), loyalty_stg__customers_vip_tiers_history AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\taction,\n\t\tcustomer_id,\n\t\texpired_at,\n\t\tid,\n\t\tmerchant_id,\n\t\ttier_entry_date,\n\t\ttier_expiration_date,\n\t\ttier_id \n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__customers_vip_tiers_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__customizations": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__customizations", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.sql", "unique_id": "model.yoda.loyalty_stg__customizations", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__customizations", "loyalty_stg__customizations"], "alias": "loyalty_stg__customizations", "checksum": {"name": "sha256", "checksum": "bd3e0ecad955c22c35b3bf90a2742eb1ec45d46c17c9b7838b2dc535a62bd408"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "settings_resource_path": {"name": "settings_resource_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "css_resource_path": {"name": "css_resource_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.0388563, "relation_name": "dev_dkruh1.loyalty_stg__customizations", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__widgetrepodb', 'customizations') }}\n\n), loyalty_stg__customizations AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsettings_resource_path,\n\t\tcss_resource_path,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__customizations", "language": "sql", "refs": [], "sources": [["loyalty__widgetrepodb", "customizations"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__widgetrepodb.customizations"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM widgetrepodb.customizations\n\n), loyalty_stg__customizations AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsettings_resource_path,\n\t\tcss_resource_path,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__customizations", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__email_campaign_emails": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__email_campaign_emails", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.sql", "unique_id": "model.yoda.loyalty_stg__email_campaign_emails", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "loyalty_stg__email_campaign_emails"], "alias": "loyalty_stg__email_campaign_emails", "checksum": {"name": "sha256", "checksum": "53f8f03ecf53a89c366eaf358fb7f66a6ed90a8fe69cf84441691e8907ed571a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bounced": {"name": "bounced", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "clicked": {"name": "clicked", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delayed": {"name": "delayed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "email_campaign_id": {"name": "email_campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marked_as_spam": {"name": "marked_as_spam", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opened_at": {"name": "opened_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opened": {"name": "opened", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "rejected": {"name": "rejected", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sent_at": {"name": "sent_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sent": {"name": "sent", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "soft_bounced": {"name": "soft_bounced", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "unsubscribed": {"name": "unsubscribed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "clicked_at": {"name": "clicked_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delayed_at": {"name": "delayed_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bounced_at": {"name": "bounced_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "unsubscribed_at": {"name": "unsubscribed_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "rejected_at": {"name": "rejected_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "marked_as_spam_at": {"name": "marked_as_spam_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082676.065226, "relation_name": "dev_dkruh1.loyalty_stg__email_campaign_emails", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'email_campaign_emails') }}\n\n), loyalty_stg__email_campaign_emails AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tCAST(bounced as BOOLEAN) as bounced,\n\t\tCAST(clicked as BOOLEAN) as clicked,\n\t\tcustomer_id,\n\t\tCAST(delayed as BOOLEAN) as delayed,\n\t\temail_campaign_id,\n\t\tid,\n\t\tCAST(marked_as_spam as BOOLEAN) as marked_as_spam,\n\t\tmerchant_id,\n\t\tCAST(opened_at as TIMESTAMP) as opened_at,\n\t\tCAST(opened as BOOLEAN) as opened,\n\t\tCAST(rejected as BOOLEAN) as rejected,\n\t\tCAST(sent_at as TIMESTAMP) as sent_at,\n\t\tCAST(sent as BOOLEAN) as sent,\n\t\tCAST(soft_bounced as BOOLEAN) as soft_bounced,\n\t\tCAST(unsubscribed as BOOLEAN) as unsubscribed,\n\t\tCAST(clicked_at as TIMESTAMP) as clicked_at,\n\t\tCAST(delayed_at as TIMESTAMP) as delayed_at,\n\t\tCAST(bounced_at as TIMESTAMP) as bounced_at,\n\t\tCAST(unsubscribed_at as TIMESTAMP) as unsubscribed_at,\n\t\tCAST(rejected_at as TIMESTAMP) as rejected_at,\n\t\tCAST(marked_as_spam_at as TIMESTAMP) as marked_as_spam_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__email_campaign_emails", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "email_campaign_emails"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.email_campaign_emails\n\n), loyalty_stg__email_campaign_emails AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tCAST(bounced as BOOLEAN) as bounced,\n\t\tCAST(clicked as BOOLEAN) as clicked,\n\t\tcustomer_id,\n\t\tCAST(delayed as BOOLEAN) as delayed,\n\t\temail_campaign_id,\n\t\tid,\n\t\tCAST(marked_as_spam as BOOLEAN) as marked_as_spam,\n\t\tmerchant_id,\n\t\tCAST(opened_at as TIMESTAMP) as opened_at,\n\t\tCAST(opened as BOOLEAN) as opened,\n\t\tCAST(rejected as BOOLEAN) as rejected,\n\t\tCAST(sent_at as TIMESTAMP) as sent_at,\n\t\tCAST(sent as BOOLEAN) as sent,\n\t\tCAST(soft_bounced as BOOLEAN) as soft_bounced,\n\t\tCAST(unsubscribed as BOOLEAN) as unsubscribed,\n\t\tCAST(clicked_at as TIMESTAMP) as clicked_at,\n\t\tCAST(delayed_at as TIMESTAMP) as delayed_at,\n\t\tCAST(bounced_at as TIMESTAMP) as bounced_at,\n\t\tCAST(unsubscribed_at as TIMESTAMP) as unsubscribed_at,\n\t\tCAST(rejected_at as TIMESTAMP) as rejected_at,\n\t\tCAST(marked_as_spam_at as TIMESTAMP) as marked_as_spam_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__email_campaign_emails", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__email_campaigns": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__email_campaigns", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.sql", "unique_id": "model.yoda.loyalty_stg__email_campaigns", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaigns", "loyalty_stg__email_campaigns"], "alias": "loyalty_stg__email_campaigns", "checksum": {"name": "sha256", "checksum": "6fe22d678960bcca69304e1b1949225e09c43b121471b6a0f5353410fbc9613b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "activated_at": {"name": "activated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "active": {"name": "active", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "body": {"name": "body", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delay_days": {"name": "delay_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_bounced_count": {"name": "email_bounced_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_clicked_count": {"name": "email_clicked_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_delayed_count": {"name": "email_delayed_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_marked_as_spam_count": {"name": "email_marked_as_spam_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_opened_count": {"name": "email_opened_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_rejected_count": {"name": "email_rejected_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_sent_count": {"name": "email_sent_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_soft_bounced_count": {"name": "email_soft_bounced_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_unsubscribed_count": {"name": "email_unsubscribed_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "layout": {"name": "layout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent_at": {"name": "sent_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sent": {"name": "sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "show_recommendations": {"name": "show_recommendations", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "start_job_id": {"name": "start_job_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "starts_at": {"name": "starts_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subject": {"name": "subject", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.2261894, "relation_name": "dev_dkruh1.loyalty_stg__email_campaigns", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'email_campaigns') }}\n\n), loyalty_stg__email_campaigns AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tactivated_at,\n\t\tactive,\n\t\tbody,\n\t\tcampaign_id,\n\t\tdelay_days,\n\t\temail_bounced_count,\n\t\temail_clicked_count,\n\t\temail_delayed_count,\n\t\temail_marked_as_spam_count,\n\t\temail_opened_count,\n\t\temail_rejected_count,\n\t\temail_sent_count,\n\t\temail_soft_bounced_count,\n\t\temail_unsubscribed_count,\n\t\tid,\n\t\tlayout,\n\t\tmerchant_id,\n\t\tsent_at,\n\t\tsent,\n\t\tshow_recommendations,\n\t\tstart_job_id,\n\t\tstarts_at,\n\t\tsubject,\n\t\ttype\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__email_campaigns", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "email_campaigns"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.email_campaigns"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM chainperks.email_campaigns\n\n), loyalty_stg__email_campaigns AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tactivated_at,\n\t\tactive,\n\t\tbody,\n\t\tcampaign_id,\n\t\tdelay_days,\n\t\temail_bounced_count,\n\t\temail_clicked_count,\n\t\temail_delayed_count,\n\t\temail_marked_as_spam_count,\n\t\temail_opened_count,\n\t\temail_rejected_count,\n\t\temail_sent_count,\n\t\temail_soft_bounced_count,\n\t\temail_unsubscribed_count,\n\t\tid,\n\t\tlayout,\n\t\tmerchant_id,\n\t\tsent_at,\n\t\tsent,\n\t\tshow_recommendations,\n\t\tstart_job_id,\n\t\tstarts_at,\n\t\tsubject,\n\t\ttype\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__email_campaigns", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__group_customers": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__group_customers", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.sql", "unique_id": "model.yoda.loyalty_stg__group_customers", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__group_customers", "loyalty_stg__group_customers"], "alias": "loyalty_stg__group_customers", "checksum": {"name": "sha256", "checksum": "c9af84b143906428628a3238f48b2f30811059ab3a7d449f6fb390800212792f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"last_seen_at": {"name": "last_seen_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email": {"name": "email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_from_reports": {"name": "exclude_from_reports", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "group_id": {"name": "group_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_balance": {"name": "points_balance", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_expire_at": {"name": "points_expire_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscribed": {"name": "subscribed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.2442765, "relation_name": "dev_dkruh1.loyalty_stg__group_customers", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'group_customers') }}\n\n), loyalty_stg__group_customers AS (\n\n SELECT \n\t\tlast_seen_at,\n\t\tupdated_at,\n\t\tcreated_at,\n\t\temail,\n\t\texclude_from_reports,\n\t\tgroup_id,\n\t\tid,\n\t\tpoints_balance,\n\t\tpoints_earned,\n\t\tpoints_expire_at,\n\t\tsubscribed\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__group_customers", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "group_customers"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.group_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.group_customers\n\n), loyalty_stg__group_customers AS (\n\n SELECT \n\t\tlast_seen_at,\n\t\tupdated_at,\n\t\tcreated_at,\n\t\temail,\n\t\texclude_from_reports,\n\t\tgroup_id,\n\t\tid,\n\t\tpoints_balance,\n\t\tpoints_earned,\n\t\tpoints_expire_at,\n\t\tsubscribed\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__group_customers", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__install_loyalty": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__install_loyalty", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.sql", "unique_id": "model.yoda.loyalty_stg__install_loyalty", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__install_loyalty", "loyalty_stg__install_loyalty"], "alias": "loyalty_stg__install_loyalty", "checksum": {"name": "sha256", "checksum": "9cd8a13611aa2ff1a83a585357e6a577037357cb159afae694c756f6c03779ec"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Segment events tables", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_name": {"name": "company_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currentplan": {"name": "currentplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initialnumoforders": {"name": "initialnumoforders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltyemail": {"name": "loyaltyemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pendingrrs": {"name": "pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "planname": {"name": "planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "packageextensions": {"name": "packageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082676.3059857, "relation_name": "dev_dkruh1.loyalty_stg__install_loyalty", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__segment', 'install_loyalty') }}\n\n), loyalty_stg__install_loyalty AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tcompany_name,\n\t\tcreatedat,\n\t\tcurrentplan,\n\t\temail,\n\t\tgroupid,\n\t\tinitialnumoforders,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tloyaltyemail,\n\t\tloyaltypackage,\n\t\tmerchant_id,\n\t\tname,\n\t\towner,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tplatform_plan,\n\t\tplatform,\n\t\tproduct,\n\t\trole,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\trrmonthlylimit,\n\t\tpendingrrs,\n\t\tplanname,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tisinvalidfacebooktoken,\n\t\tlastconversionordertime,\n\t\tphone,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tbillingproviders,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tisinvalidtwittertoken,\n\t\tpackageextensions,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tisinvalidpinteresttoken,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__install_loyalty", "language": "sql", "refs": [], "sources": [["loyalty__segment", "install_loyalty"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__segment.install_loyalty"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.install_loyalty\n\n), loyalty_stg__install_loyalty AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tcompany_name,\n\t\tcreatedat,\n\t\tcurrentplan,\n\t\temail,\n\t\tgroupid,\n\t\tinitialnumoforders,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tloyaltyemail,\n\t\tloyaltypackage,\n\t\tmerchant_id,\n\t\tname,\n\t\towner,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tplatform_plan,\n\t\tplatform,\n\t\tproduct,\n\t\trole,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\trrmonthlylimit,\n\t\tpendingrrs,\n\t\tplanname,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tisinvalidfacebooktoken,\n\t\tlastconversionordertime,\n\t\tphone,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tbillingproviders,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tisinvalidtwittertoken,\n\t\tpackageextensions,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tisinvalidpinteresttoken,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__install_loyalty", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__instance_versions": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__instance_versions", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.sql", "unique_id": "model.yoda.loyalty_stg__instance_versions", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__instance_versions", "loyalty_stg__instance_versions"], "alias": "loyalty_stg__instance_versions", "checksum": {"name": "sha256", "checksum": "fa23d5e805e88f737878ddfd268ad87a05e645fb7f133226d2c828403f993adc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "instance_id": {"name": "instance_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "template_id": {"name": "template_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customization_id": {"name": "customization_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "css_override_id": {"name": "css_override_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "static_content_id": {"name": "static_content_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.3302338, "relation_name": "dev_dkruh1.loyalty_stg__instance_versions", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__widgetrepodb', 'instance_versions') }}\n\n), loyalty_stg__instance_versions AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tinstance_id,\n\t\ttemplate_id,\n\t\tcustomization_id,\n\t\tcss_override_id,\n\t\tstatic_content_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__instance_versions", "language": "sql", "refs": [], "sources": [["loyalty__widgetrepodb", "instance_versions"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__widgetrepodb.instance_versions"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM widgetrepodb.instance_versions\n\n), loyalty_stg__instance_versions AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tinstance_id,\n\t\ttemplate_id,\n\t\tcustomization_id,\n\t\tcss_override_id,\n\t\tstatic_content_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__instance_versions", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__instances": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__instances", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.sql", "unique_id": "model.yoda.loyalty_stg__instances", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__instances", "loyalty_stg__instances"], "alias": "loyalty_stg__instances", "checksum": {"name": "sha256", "checksum": "10a369bd8498b8f84979533d71a1d5e2578366e67d334ca99cfef7419c27a4be"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "widget_type_id": {"name": "widget_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "guid": {"name": "guid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_instance_id": {"name": "parent_instance_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active": {"name": "active", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_update": {"name": "auto_update", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_instance_version_id": {"name": "current_instance_version_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.350521, "relation_name": "dev_dkruh1.loyalty_stg__instances", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__widgetrepodb', 'instances') }}\n\n), loyalty_stg__instances AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\twidget_type_id,\n\t\tguid,\n\t\tname,\n\t\tparent_instance_id,\n\t\tactive,\n\t\tauto_update,\n\t\tdeleted,\n\t\tcurrent_instance_version_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__instances", "language": "sql", "refs": [], "sources": [["loyalty__widgetrepodb", "instances"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__widgetrepodb.instances"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM widgetrepodb.instances\n\n), loyalty_stg__instances AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\twidget_type_id,\n\t\tguid,\n\t\tname,\n\t\tparent_instance_id,\n\t\tactive,\n\t\tauto_update,\n\t\tdeleted,\n\t\tcurrent_instance_version_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__instances", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__known_crawlers": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__known_crawlers", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__known_crawlers/loyalty_stg__known_crawlers.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__known_crawlers/loyalty_stg__known_crawlers.sql", "unique_id": "model.yoda.loyalty_stg__known_crawlers", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__known_crawlers", "loyalty_stg__known_crawlers"], "alias": "loyalty_stg__known_crawlers", "checksum": {"name": "sha256", "checksum": "8a97a20e7fc7c99486793ec96e09e982db6afa2609012be913df01e5a474de85"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "A table holding all known Loyalty crawlers, populated by notebook \"/Repos/Loyalty group/loyalty-databricks/notebooks/Loyalty_Crawlers\"", "columns": {"crawler_name": {"name": "crawler_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(1024)"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__known_crawlers/loyalty_stg__known_crawlers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082676.361338, "relation_name": "dev_dkruh1.loyalty_stg__known_crawlers", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__sources_loyalty', 'known_crawlers') }}\n\n), loyalty_stg__known_crawlers AS (\n\n SELECT \n\t\tcrawler_name\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__known_crawlers", "language": "sql", "refs": [], "sources": [["loyalty__sources_loyalty", "known_crawlers"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__sources_loyalty.known_crawlers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__known_crawlers/loyalty_stg__known_crawlers.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sources_loyalty.known_crawlers\n\n), loyalty_stg__known_crawlers AS (\n\n SELECT \n\t\tcrawler_name\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__known_crawlers", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__merchants": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__merchants", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.sql", "unique_id": "model.yoda.loyalty_stg__merchants", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__merchants", "loyalty_stg__merchants"], "alias": "loyalty_stg__merchants", "checksum": {"name": "sha256", "checksum": "1033aeafa90d3a13482026e390e99f0827ec508a2a944c142393d05b1e3aabf2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "affiliate_include_shipping": {"name": "affiliate_include_shipping", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "affiliate_order_price_setting": {"name": "affiliate_order_price_setting", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "allow_program_overwrite": {"name": "allow_program_overwrite", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "api_access_enabled": {"name": "api_access_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "api_key": {"name": "api_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bricknmortar": {"name": "bricknmortar", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "can_generate_coupons": {"name": "can_generate_coupons", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "cash_payout_setting": {"name": "cash_payout_setting", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "code_based_referral_program_on_demand": {"name": "code_based_referral_program_on_demand", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "company_name": {"name": "company_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completed_onboarding": {"name": "completed_onboarding", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "completed_profile": {"name": "completed_profile", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "contact_email": {"name": "contact_email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cross_origin_store_accounts": {"name": "cross_origin_store_accounts", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_payout_percentage": {"name": "default_payout_percentage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "default_paypal_email_subject": {"name": "default_paypal_email_subject", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delete_used_coupons_enable": {"name": "delete_used_coupons_enable", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "discount_code_based_referral_program_enabled": {"name": "discount_code_based_referral_program_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "discount_code_generation_strategy": {"name": "discount_code_generation_strategy", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_header_width": {"name": "email_header_width", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_layout": {"name": "email_layout", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_customer_tags": {"name": "exclude_customer_tags", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "facebook_app_id": {"name": "facebook_app_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "featured": {"name": "featured", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "first_time_referral_discounts_enable_flag": {"name": "first_time_referral_discounts_enable_flag", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "force_store_accounts": {"name": "force_store_accounts", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "free_products_enabled": {"name": "free_products_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "from_email": {"name": "from_email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_name": {"name": "from_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "guid": {"name": "guid", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_analytics_installed": {"name": "has_analytics_installed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_rewards_installed": {"name": "has_rewards_installed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_store": {"name": "has_store", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "include_purchases_with_details": {"name": "include_purchases_with_details", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "include_shipping": {"name": "include_shipping", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "include_storefront_css": {"name": "include_storefront_css", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "install_order_volume": {"name": "install_order_volume", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "installed_analytics_at": {"name": "installed_analytics_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "installed_rewards_at": {"name": "installed_rewards_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "invoice_job_id": {"name": "invoice_job_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_approved": {"name": "is_approved", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "limit_redemptions": {"name": "limit_redemptions", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyalty_opt_in_strategy": {"name": "loyalty_opt_in_strategy", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "manual_adjustment_admin_only": {"name": "manual_adjustment_admin_only", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "metafield_namespace": {"name": "metafield_namespace", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oauth_app_id": {"name": "oauth_app_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "on_free_trial": {"name": "on_free_trial", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "order_price_setting": {"name": "order_price_setting", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan": {"name": "plan", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_per_dollar": {"name": "points_per_dollar", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_reminder_delay_days": {"name": "points_reminder_delay_days", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "process_discounts_webhook": {"name": "process_discounts_webhook", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "process_order_webhook": {"name": "process_order_webhook", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "program_live": {"name": "program_live", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "program_locked": {"name": "program_locked", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "referral_avoid_ip_and_user_agent": {"name": "referral_avoid_ip_and_user_agent", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "referral_opt_in_strategy": {"name": "referral_opt_in_strategy", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_reminder_days": {"name": "referral_reminder_days", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "round_discounts_strategy": {"name": "round_discounts_strategy", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "security_level": {"name": "security_level", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "setup_rewards_page": {"name": "setup_rewards_page", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "show_billing_information": {"name": "show_billing_information", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "slug": {"name": "slug", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_account_login_url": {"name": "store_account_login_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_account_registration_url": {"name": "store_account_registration_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_redemptions_enabled": {"name": "swell_redemptions_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sync_fields_with_processor": {"name": "sync_fields_with_processor", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sync_newsletter_with_platform": {"name": "sync_newsletter_with_platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sync_tiers_with_platform": {"name": "sync_tiers_with_platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "test_account": {"name": "test_account", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_zone": {"name": "time_zone", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value_per_subscriber_cents": {"name": "value_per_subscriber_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "verified_email_domain": {"name": "verified_email_domain", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "vip_tiers_job_running": {"name": "vip_tiers_job_running", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "website": {"name": "website", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "weekly_digest_enabled": {"name": "weekly_digest_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "widget_bg_color": {"name": "widget_bg_color", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_brand_color": {"name": "widget_brand_color", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_distance_from_end": {"name": "widget_distance_from_end", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_enabled": {"name": "widget_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "widget_expanded_by_default": {"name": "widget_expanded_by_default", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "widget_header_text": {"name": "widget_header_text", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_height": {"name": "widget_height", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_location_mobile": {"name": "widget_location_mobile", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_location": {"name": "widget_location", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_mobile": {"name": "widget_mobile", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "widget_rounded": {"name": "widget_rounded", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "widget_text_color": {"name": "widget_text_color", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_text": {"name": "widget_text", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_theme": {"name": "widget_theme", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "logo_url": {"name": "logo_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nav_exclusions": {"name": "nav_exclusions", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_paid_status": {"name": "order_paid_status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "process_order_status": {"name": "process_order_status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stripe_customer_id": {"name": "stripe_customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "webhook_token": {"name": "webhook_token", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "webhook_url": {"name": "webhook_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collection_exclusions": {"name": "collection_exclusions", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_tags": {"name": "customer_tags", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_exclusions": {"name": "product_exclusions", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_layout_html": {"name": "email_layout_html", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_header_image_content_type": {"name": "email_header_image_content_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_header_image_file_name": {"name": "email_header_image_file_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_header_image_file_size": {"name": "email_header_image_file_size", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_header_image_updated_at": {"name": "email_header_image_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "usage_charge_job_id": {"name": "usage_charge_job_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uninstalled_analytics_at": {"name": "uninstalled_analytics_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "uninstalled_rewards_at": {"name": "uninstalled_rewards_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_paid_state": {"name": "order_paid_state", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "process_order_state": {"name": "process_order_state", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "used_coupons_delete_after_days": {"name": "used_coupons_delete_after_days", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "process_refund_status": {"name": "process_refund_status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_trial_expiration_job_id": {"name": "free_trial_expiration_job_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_trial_expires_at": {"name": "free_trial_expires_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "platform_engine": {"name": "platform_engine", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "logo_content_type": {"name": "logo_content_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "logo_file_name": {"name": "logo_file_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "logo_file_size": {"name": "logo_file_size", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "logo_updated_at": {"name": "logo_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "widget_font_family": {"name": "widget_font_family", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_font_url": {"name": "widget_font_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "custom_chat_group": {"name": "custom_chat_group", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "custom_script_url": {"name": "custom_script_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "program_first_activated_at": {"name": "program_first_activated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "discount_stacking_order": {"name": "discount_stacking_order", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_stacking_product": {"name": "discount_stacking_product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_stacking_shipping": {"name": "discount_stacking_shipping", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.475384, "relation_name": "dev_dkruh1.loyalty_stg__merchants", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'merchants') }}\n\n), loyalty_stg__merchants AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\taffiliate_include_shipping,\n\t\taffiliate_order_price_setting,\n\t\tallow_program_overwrite,\n\t\tapi_access_enabled,\n\t\tapi_key,\n\t\tbricknmortar,\n\t\tcan_generate_coupons,\n\t\tcash_payout_setting,\n\t\tcode_based_referral_program_on_demand,\n\t\tcompany_name,\n\t\tcompleted_onboarding,\n\t\tcompleted_profile,\n\t\tcontact_email,\n\t\tcross_origin_store_accounts,\n\t\tcurrency,\n\t\tdefault_payout_percentage,\n\t\tdefault_paypal_email_subject,\n\t\tdelete_used_coupons_enable,\n\t\tdiscount_code_based_referral_program_enabled,\n\t\tdiscount_code_generation_strategy,\n\t\temail_header_width,\n\t\temail_layout,\n\t\texclude_customer_tags,\n\t\tfacebook_app_id,\n\t\tfeatured,\n\t\tfirst_time_referral_discounts_enable_flag,\n\t\tforce_store_accounts,\n\t\tfree_products_enabled,\n\t\tfrom_email,\n\t\tfrom_name,\n\t\tgroup_id,\n\t\tguid,\n\t\thas_analytics_installed,\n\t\thas_rewards_installed,\n\t\thas_store,\n\t\tid,\n\t\tinclude_purchases_with_details,\n\t\tinclude_shipping,\n\t\tinclude_storefront_css,\n\t\tinstall_order_volume,\n\t\tinstalled_analytics_at,\n\t\tinstalled_rewards_at,\n\t\tinvoice_job_id,\n\t\tis_approved,\n\t\tlimit_redemptions,\n\t\tloyalty_opt_in_strategy,\n\t\tmanual_adjustment_admin_only,\n\t\tmetafield_namespace,\n\t\toauth_app_id,\n\t\ton_free_trial,\n\t\torder_price_setting,\n\t\towner_id,\n\t\tplan,\n\t\tplatform,\n\t\tpoints_per_dollar,\n\t\tpoints_reminder_delay_days,\n\t\tprocess_discounts_webhook,\n\t\tprocess_order_webhook,\n\t\tprogram_live,\n\t\tprogram_locked,\n\t\treferral_avoid_ip_and_user_agent,\n\t\treferral_opt_in_strategy,\n\t\treferral_reminder_days,\n\t\tround_discounts_strategy,\n\t\tsecurity_level,\n\t\tsetup_rewards_page,\n\t\tshow_billing_information,\n\t\tslug,\n\t\tsource,\n\t\tstore_account_login_url,\n\t\tstore_account_registration_url,\n\t\tstore_id,\n\t\tswell_redemptions_enabled,\n\t\tsync_fields_with_processor,\n\t\tsync_newsletter_with_platform,\n\t\tsync_tiers_with_platform,\n\t\ttest_account,\n\t\tthird_party_id,\n\t\ttime_zone,\n\t\tvalue_per_subscriber_cents,\n\t\tverified_email_domain,\n\t\tvip_tiers_job_running,\n\t\twebsite,\n\t\tweekly_digest_enabled,\n\t\twidget_bg_color,\n\t\twidget_brand_color,\n\t\twidget_distance_from_end,\n\t\twidget_enabled,\n\t\twidget_expanded_by_default,\n\t\twidget_header_text,\n\t\twidget_height,\n\t\twidget_location_mobile,\n\t\twidget_location,\n\t\twidget_mobile,\n\t\twidget_rounded,\n\t\twidget_text_color,\n\t\twidget_text,\n\t\twidget_theme,\n\t\tdescription,\n\t\tlogo_url,\n\t\tnav_exclusions,\n\t\torder_paid_status,\n\t\tprocess_order_status,\n\t\tstripe_customer_id,\n\t\twebhook_token,\n\t\twebhook_url,\n\t\tcollection_exclusions,\n\t\tcustomer_tags,\n\t\tproduct_exclusions,\n\t\temail_layout_html,\n\t\temail_header_image_content_type,\n\t\temail_header_image_file_name,\n\t\temail_header_image_file_size,\n\t\temail_header_image_updated_at,\n\t\tusage_charge_job_id,\n\t\tuninstalled_analytics_at,\n\t\tuninstalled_rewards_at,\n\t\torder_paid_state,\n\t\tprocess_order_state,\n\t\tused_coupons_delete_after_days,\n\t\tprocess_refund_status,\n\t\tfree_trial_expiration_job_id,\n\t\tfree_trial_expires_at,\n\t\tplatform_engine,\n\t\tlogo_content_type,\n\t\tlogo_file_name,\n\t\tlogo_file_size,\n\t\tlogo_updated_at,\n\t\twidget_font_family,\n\t\twidget_font_url,\n\t\tcustom_chat_group,\n\t\tcustom_script_url,\n\t\tprogram_first_activated_at,\n\t\tdiscount_stacking_order,\n discount_stacking_product,\n discount_stacking_shipping\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__merchants", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "merchants"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.merchants"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.merchants\n\n), loyalty_stg__merchants AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\taffiliate_include_shipping,\n\t\taffiliate_order_price_setting,\n\t\tallow_program_overwrite,\n\t\tapi_access_enabled,\n\t\tapi_key,\n\t\tbricknmortar,\n\t\tcan_generate_coupons,\n\t\tcash_payout_setting,\n\t\tcode_based_referral_program_on_demand,\n\t\tcompany_name,\n\t\tcompleted_onboarding,\n\t\tcompleted_profile,\n\t\tcontact_email,\n\t\tcross_origin_store_accounts,\n\t\tcurrency,\n\t\tdefault_payout_percentage,\n\t\tdefault_paypal_email_subject,\n\t\tdelete_used_coupons_enable,\n\t\tdiscount_code_based_referral_program_enabled,\n\t\tdiscount_code_generation_strategy,\n\t\temail_header_width,\n\t\temail_layout,\n\t\texclude_customer_tags,\n\t\tfacebook_app_id,\n\t\tfeatured,\n\t\tfirst_time_referral_discounts_enable_flag,\n\t\tforce_store_accounts,\n\t\tfree_products_enabled,\n\t\tfrom_email,\n\t\tfrom_name,\n\t\tgroup_id,\n\t\tguid,\n\t\thas_analytics_installed,\n\t\thas_rewards_installed,\n\t\thas_store,\n\t\tid,\n\t\tinclude_purchases_with_details,\n\t\tinclude_shipping,\n\t\tinclude_storefront_css,\n\t\tinstall_order_volume,\n\t\tinstalled_analytics_at,\n\t\tinstalled_rewards_at,\n\t\tinvoice_job_id,\n\t\tis_approved,\n\t\tlimit_redemptions,\n\t\tloyalty_opt_in_strategy,\n\t\tmanual_adjustment_admin_only,\n\t\tmetafield_namespace,\n\t\toauth_app_id,\n\t\ton_free_trial,\n\t\torder_price_setting,\n\t\towner_id,\n\t\tplan,\n\t\tplatform,\n\t\tpoints_per_dollar,\n\t\tpoints_reminder_delay_days,\n\t\tprocess_discounts_webhook,\n\t\tprocess_order_webhook,\n\t\tprogram_live,\n\t\tprogram_locked,\n\t\treferral_avoid_ip_and_user_agent,\n\t\treferral_opt_in_strategy,\n\t\treferral_reminder_days,\n\t\tround_discounts_strategy,\n\t\tsecurity_level,\n\t\tsetup_rewards_page,\n\t\tshow_billing_information,\n\t\tslug,\n\t\tsource,\n\t\tstore_account_login_url,\n\t\tstore_account_registration_url,\n\t\tstore_id,\n\t\tswell_redemptions_enabled,\n\t\tsync_fields_with_processor,\n\t\tsync_newsletter_with_platform,\n\t\tsync_tiers_with_platform,\n\t\ttest_account,\n\t\tthird_party_id,\n\t\ttime_zone,\n\t\tvalue_per_subscriber_cents,\n\t\tverified_email_domain,\n\t\tvip_tiers_job_running,\n\t\twebsite,\n\t\tweekly_digest_enabled,\n\t\twidget_bg_color,\n\t\twidget_brand_color,\n\t\twidget_distance_from_end,\n\t\twidget_enabled,\n\t\twidget_expanded_by_default,\n\t\twidget_header_text,\n\t\twidget_height,\n\t\twidget_location_mobile,\n\t\twidget_location,\n\t\twidget_mobile,\n\t\twidget_rounded,\n\t\twidget_text_color,\n\t\twidget_text,\n\t\twidget_theme,\n\t\tdescription,\n\t\tlogo_url,\n\t\tnav_exclusions,\n\t\torder_paid_status,\n\t\tprocess_order_status,\n\t\tstripe_customer_id,\n\t\twebhook_token,\n\t\twebhook_url,\n\t\tcollection_exclusions,\n\t\tcustomer_tags,\n\t\tproduct_exclusions,\n\t\temail_layout_html,\n\t\temail_header_image_content_type,\n\t\temail_header_image_file_name,\n\t\temail_header_image_file_size,\n\t\temail_header_image_updated_at,\n\t\tusage_charge_job_id,\n\t\tuninstalled_analytics_at,\n\t\tuninstalled_rewards_at,\n\t\torder_paid_state,\n\t\tprocess_order_state,\n\t\tused_coupons_delete_after_days,\n\t\tprocess_refund_status,\n\t\tfree_trial_expiration_job_id,\n\t\tfree_trial_expires_at,\n\t\tplatform_engine,\n\t\tlogo_content_type,\n\t\tlogo_file_name,\n\t\tlogo_file_size,\n\t\tlogo_updated_at,\n\t\twidget_font_family,\n\t\twidget_font_url,\n\t\tcustom_chat_group,\n\t\tcustom_script_url,\n\t\tprogram_first_activated_at,\n\t\tdiscount_stacking_order,\n discount_stacking_product,\n discount_stacking_shipping\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__merchants", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__onsite_v3": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__onsite_v3", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.sql", "unique_id": "model.yoda.loyalty_stg__onsite_v3", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__onsite_v3", "loyalty_stg__onsite_v3"], "alias": "loyalty_stg__onsite_v3", "checksum": {"name": "sha256", "checksum": "b5745295be91c68c00a61b1e8a20fb8880a987ec44627e2918568e870d1050dc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty_stg__onsite_v3", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hour": {"name": "hour", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "br_colordepth": {"name": "br_colordepth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_cookies": {"name": "br_cookies", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_family": {"name": "br_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_features_director": {"name": "br_features_director", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_flash": {"name": "br_features_flash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_gears": {"name": "br_features_gears", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_java": {"name": "br_features_java", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_pdf": {"name": "br_features_pdf", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_quicktime": {"name": "br_features_quicktime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_realplayer": {"name": "br_features_realplayer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_silverlight": {"name": "br_features_silverlight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_windowsmedia": {"name": "br_features_windowsmedia", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_lang": {"name": "br_lang", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_major": {"name": "br_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_minor": {"name": "br_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_viewheight": {"name": "br_viewheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_viewwidth": {"name": "br_viewwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_day": {"name": "collector_day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_epoch": {"name": "collector_epoch", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_month": {"name": "collector_month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_year": {"name": "collector_year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_family": {"name": "device_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_charset": {"name": "doc_charset", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_height": {"name": "doc_height", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "doc_width": {"name": "doc_width", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_sessionidx": {"name": "domain_sessionidx", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dvce_screenheight": {"name": "dvce_screenheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_screenwidth": {"name": "dvce_screenwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_tstamp": {"name": "dvce_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_id": {"name": "event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_vendor": {"name": "event_vendor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event": {"name": "event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_city": {"name": "geo_city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_country": {"name": "geo_country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_latitude": {"name": "geo_latitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_longitude": {"name": "geo_longitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_region": {"name": "geo_region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_zipcode": {"name": "geo_zipcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_campaign": {"name": "mkt_campaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_content": {"name": "mkt_content", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_medium": {"name": "mkt_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_source": {"name": "mkt_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_term": {"name": "mkt_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_family": {"name": "os_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_major": {"name": "os_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_minor": {"name": "os_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_timezone": {"name": "os_timezone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlfragment": {"name": "page_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlhost": {"name": "page_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlpath": {"name": "page_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlport": {"name": "page_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_urlquery": {"name": "page_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlscheme": {"name": "page_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_medium": {"name": "refr_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_source": {"name": "refr_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_term": {"name": "refr_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlfragment": {"name": "refr_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlhost": {"name": "refr_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlpath": {"name": "refr_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlport": {"name": "refr_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_urlquery": {"name": "refr_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlscheme": {"name": "refr_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_value": {"name": "se_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "txn_id": {"name": "txn_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_fingerprint": {"name": "user_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useragent": {"name": "useragent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_collector": {"name": "v_collector", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_etl": {"name": "v_etl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_tracker": {"name": "v_tracker", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "y_fingerprint": {"name": "y_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.5430434, "relation_name": "dev_dkruh1.loyalty_stg__onsite_v3", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__pixel', 'onsite_v3') }}\n\n), loyalty_stg__onsite_v3 AS (\n\n SELECT \n\t\tpartition_date,\n\t\thour,\n\t\tprocessing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_property,\n\t\tse_value,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__onsite_v3\nWHERE partition_date > '2022-12-26'", "language": "sql", "refs": [], "sources": [["loyalty__pixel", "onsite_v3"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__pixel.onsite_v3"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM pixel.onsite_v3\n\n), loyalty_stg__onsite_v3 AS (\n\n SELECT \n\t\tpartition_date,\n\t\thour,\n\t\tprocessing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_property,\n\t\tse_value,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__onsite_v3\nWHERE partition_date > '2022-12-26'", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__perks": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__perks", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.sql", "unique_id": "model.yoda.loyalty_stg__perks", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__perks", "loyalty_stg__perks"], "alias": "loyalty_stg__perks", "checksum": {"name": "sha256", "checksum": "f0e2545e5c15d340f41c1864ed0a6903e47630d95d5707320b8e59460ea086d0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "awarded_at": {"name": "awarded_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "original_awarded_at": {"name": "original_awarded_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "admin_only": {"name": "admin_only", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "award_job_id": {"name": "award_job_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "awarded": {"name": "awarded", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "balance_only": {"name": "balance_only", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "completed_action": {"name": "completed_action", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completed": {"name": "completed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expiration_job_id": {"name": "expiration_job_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expired_at": {"name": "expired_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "expired": {"name": "expired", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "expires_at": {"name": "expires_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "hidden": {"name": "hidden", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "history_title": {"name": "history_title", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "identity_id": {"name": "identity_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pending": {"name": "pending", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "redeemable": {"name": "redeemable", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reversed_at": {"name": "reversed_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "reversed": {"name": "reversed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "reward_points": {"name": "reward_points", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_multiplier": {"name": "points_multiplier", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "points_transactions": {"name": "points_transactions", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "point_transactions": {"name": "point_transactions", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.5767467, "relation_name": "dev_dkruh1.loyalty_stg__perks", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'perks') }}\n\n), loyalty_stg__perks AS (\n\n SELECT \n\t\tcreated_at,\n\t\tupdated_at,\n\t\tawarded_at,\n\t\toriginal_awarded_at,\n\t\tcompleted_at,\n\t\tadmin_only,\n\t\taward_job_id,\n\t\tawarded,\n\t\tbalance_only,\n\t\tcampaign_id,\n\t\tcompleted_action,\n\t\tcompleted,\n\t\tcurrency,\n\t\tcustomer_id,\n\t\texpiration_job_id,\n\t\texpired_at,\n\t\texpired,\n\t\texpires_at,\n\t\thidden,\n\t\thistory_title,\n\t\tidentity_id,\n\t\tid,\n\t\tmerchant_id,\n\t\tpending,\n\t\tredeemable,\n\t\tredemption_option_id,\n\t\treferral_id,\n\t\treversed_at,\n\t\treversed,\n\t\treward_points,\n\t\tpoints_multiplier,\n\t\tpoints_transactions,\n\t\tpoint_transactions\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__perks", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "perks"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.perks"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.perks\n\n), loyalty_stg__perks AS (\n\n SELECT \n\t\tcreated_at,\n\t\tupdated_at,\n\t\tawarded_at,\n\t\toriginal_awarded_at,\n\t\tcompleted_at,\n\t\tadmin_only,\n\t\taward_job_id,\n\t\tawarded,\n\t\tbalance_only,\n\t\tcampaign_id,\n\t\tcompleted_action,\n\t\tcompleted,\n\t\tcurrency,\n\t\tcustomer_id,\n\t\texpiration_job_id,\n\t\texpired_at,\n\t\texpired,\n\t\texpires_at,\n\t\thidden,\n\t\thistory_title,\n\t\tidentity_id,\n\t\tid,\n\t\tmerchant_id,\n\t\tpending,\n\t\tredeemable,\n\t\tredemption_option_id,\n\t\treferral_id,\n\t\treversed_at,\n\t\treversed,\n\t\treward_points,\n\t\tpoints_multiplier,\n\t\tpoints_transactions,\n\t\tpoint_transactions\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__perks", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__perks_user_actions": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__perks_user_actions", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.sql", "unique_id": "model.yoda.loyalty_stg__perks_user_actions", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__perks_user_actions", "loyalty_stg__perks_user_actions"], "alias": "loyalty_stg__perks_user_actions", "checksum": {"name": "sha256", "checksum": "cfbca631907ce069e047fe98834d076305b89367b666a406aa9b3c6f20e44c6a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "perk_id": {"name": "perk_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_action_id": {"name": "user_action_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.5905514, "relation_name": "dev_dkruh1.loyalty_stg__perks_user_actions", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'perks_user_actions') }}\n\n), loyalty_stg__perks_user_actions AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tperk_id,\n\t\tuser_action_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__perks_user_actions", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "perks_user_actions"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.perks_user_actions"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.perks_user_actions\n\n), loyalty_stg__perks_user_actions AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tperk_id,\n\t\tuser_action_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__perks_user_actions", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__plans": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__plans", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.sql", "unique_id": "model.yoda.loyalty_stg__plans", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__plans", "loyalty_stg__plans"], "alias": "loyalty_stg__plans", "checksum": {"name": "sha256", "checksum": "9c722e26b86ac19d87e6cb1091465851f80263c1736af617039f0eebd1569442"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "base_price_cents": {"name": "base_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "capped_amount_cents": {"name": "capped_amount_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "included_orders": {"name": "included_orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "per_order_price_cents": {"name": "per_order_price_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.6060593, "relation_name": "dev_dkruh1.loyalty_stg__plans", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'plans') }}\n\n), loyalty_stg__plans AS (\n\n SELECT \n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tbase_price_cents,\n\t\tcapped_amount_cents,\n\t\tid,\n\t\tincluded_orders,\n\t\tname,\n\t\tper_order_price_cents\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__plans", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "plans"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.plans"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM chainperks.plans\n\n), loyalty_stg__plans AS (\n\n SELECT \n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tbase_price_cents,\n\t\tcapped_amount_cents,\n\t\tid,\n\t\tincluded_orders,\n\t\tname,\n\t\tper_order_price_cents\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__plans", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__point_redemptions": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__point_redemptions", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.sql", "unique_id": "model.yoda.loyalty_stg__point_redemptions", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__point_redemptions", "loyalty_stg__point_redemptions"], "alias": "loyalty_stg__point_redemptions", "checksum": {"name": "sha256", "checksum": "59ae40fdf62d9277a34aa8033ab675077f689a267d672209e8047430983fad8f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "approved_at": {"name": "approved_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "approved": {"name": "approved", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "at_checkout": {"name": "at_checkout", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "cost_cents": {"name": "cost_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted": {"name": "deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_admin": {"name": "is_admin", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_pos": {"name": "is_pos", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refunded_amount": {"name": "refunded_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reversed": {"name": "reversed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "reward_text": {"name": "reward_text", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_title": {"name": "reward_title", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value_cents": {"name": "value_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "visible": {"name": "visible", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "cart_id": {"name": "cart_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "identity_id": {"name": "identity_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "perk_id": {"name": "perk_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount": {"name": "amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_order_id": {"name": "third_party_order_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "point_transactions": {"name": "point_transactions", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "api_version": {"name": "api_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_source": {"name": "redemption_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.6354697, "relation_name": "dev_dkruh1.loyalty_stg__point_redemptions", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'point_redemptions') }}\n\n), loyalty_stg__point_redemptions AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tapproved_at,\n\t\tapproved,\n\t\tat_checkout,\n\t\tcost_cents,\n\t\tcurrency,\n\t\tcustomer_id,\n\t\tdeleted,\n\t\tid,\n\t\tis_admin,\n\t\tis_pos,\n\t\tmerchant_id,\n\t\tredemption_option_id,\n\t\trefunded_amount,\n\t\treversed,\n\t\treward_text,\n\t\treward_title,\n\t\tvalue_cents,\n\t\tvisible,\n\t\tcart_id,\n\t\tidentity_id,\n\t\tperk_id,\n\t\tamount,\n\t\treferral_id,\n\t\tthird_party_order_id,\n\t\tpoint_transactions,\n\t\tapi_version,\n\t\tredemption_source\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__point_redemptions", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "point_redemptions"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.point_redemptions"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.point_redemptions\n\n), loyalty_stg__point_redemptions AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tapproved_at,\n\t\tapproved,\n\t\tat_checkout,\n\t\tcost_cents,\n\t\tcurrency,\n\t\tcustomer_id,\n\t\tdeleted,\n\t\tid,\n\t\tis_admin,\n\t\tis_pos,\n\t\tmerchant_id,\n\t\tredemption_option_id,\n\t\trefunded_amount,\n\t\treversed,\n\t\treward_text,\n\t\treward_title,\n\t\tvalue_cents,\n\t\tvisible,\n\t\tcart_id,\n\t\tidentity_id,\n\t\tperk_id,\n\t\tamount,\n\t\treferral_id,\n\t\tthird_party_order_id,\n\t\tpoint_transactions,\n\t\tapi_version,\n\t\tredemption_source\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__point_redemptions", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__points_container_expiration": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__points_container_expiration", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__points_container_expiration/loyalty_stg__points_container_expiration.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__points_container_expiration/loyalty_stg__points_container_expiration.sql", "unique_id": "model.yoda.loyalty_stg__points_container_expiration", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__points_container_expiration", "loyalty_stg__points_container_expiration"], "alias": "loyalty_stg__points_container_expiration", "checksum": {"name": "sha256", "checksum": "7a75fe76ed836e77bd89e7c76f3d5ffb917ca98ed50097e925bcabef83ab4fe9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "holds the expiration date and points amount for each container", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "page_cursor": {"name": "page_cursor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_transaction_id": {"name": "points_transaction_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_customer_id": {"name": "group_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expiration_policy_id": {"name": "expiration_policy_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "available_points": {"name": "available_points", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expiration_date": {"name": "expiration_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usable": {"name": "usable", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_points": {"name": "has_points", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__points_container_expiration/loyalty_stg__points_container_expiration.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.6577072, "relation_name": "dev_dkruh1.loyalty_stg__points_container_expiration", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__points', 'points_container_expiration') }}\n\n), loyalty_stg__points_container_expiration AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpage_cursor,\n\t\tpoints_transaction_id,\n\t\tgroup_id,\n\t\tgroup_customer_id,\n\t\texpiration_policy_id,\n\t\tavailable_points,\n\t\texpiration_date,\n\t\tusable,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tversion,\n\t\thas_points\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__points_container_expiration", "language": "sql", "refs": [], "sources": [["loyalty__points", "points_container_expiration"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__points.points_container_expiration"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__points_container_expiration/loyalty_stg__points_container_expiration.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM points.points_container_expiration\n\n), loyalty_stg__points_container_expiration AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpage_cursor,\n\t\tpoints_transaction_id,\n\t\tgroup_id,\n\t\tgroup_customer_id,\n\t\texpiration_policy_id,\n\t\tavailable_points,\n\t\texpiration_date,\n\t\tusable,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tversion,\n\t\thas_points\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__points_container_expiration", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__points_state": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__points_state", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__points_state/loyalty_stg__points_state.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__points_state/loyalty_stg__points_state.sql", "unique_id": "model.yoda.loyalty_stg__points_state", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__points_state", "loyalty_stg__points_state"], "alias": "loyalty_stg__points_state", "checksum": {"name": "sha256", "checksum": "a428c7147563e4e4c16fcbed4d61c275c9cb432ace6166b87c1fa72e7464be43"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "the current points state by group customer id", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_customer_id": {"name": "group_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_earned": {"name": "points_earned", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_balance": {"name": "points_balance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__points_state/loyalty_stg__points_state.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.6753142, "relation_name": "dev_dkruh1.loyalty_stg__points_state", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__points', 'points_state') }}\n\n), loyalty_stg__points_state AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tversion,\n\t\tgroup_customer_id,\n\t\tgroup_id,\n\t\tpoints_earned,\n\t\tpoints_balance,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__points_state", "language": "sql", "refs": [], "sources": [["loyalty__points", "points_state"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__points.points_state"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__points_state/loyalty_stg__points_state.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM points.points_state\n\n), loyalty_stg__points_state AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tversion,\n\t\tgroup_customer_id,\n\t\tgroup_id,\n\t\tpoints_earned,\n\t\tpoints_balance,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__points_state", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__points_transaction": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__points_transaction", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__points_transaction/loyalty_stg__points_transaction.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__points_transaction/loyalty_stg__points_transaction.sql", "unique_id": "model.yoda.loyalty_stg__points_transaction", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__points_transaction", "loyalty_stg__points_transaction"], "alias": "loyalty_stg__points_transaction", "checksum": {"name": "sha256", "checksum": "91cc35f91e37969d2fdf07159d3ae8d9a1d91f1a2deff60e2222bff1eb6fd0e1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "points transaction", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "page_cursor": {"name": "page_cursor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_customer_id": {"name": "group_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caused_in_store_id": {"name": "caused_in_store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transaction_type": {"name": "transaction_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason_type": {"name": "reason_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason_description": {"name": "reason_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_transaction_id": {"name": "original_transaction_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_transaction_at": {"name": "original_transaction_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "debug_data": {"name": "debug_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__points_transaction/loyalty_stg__points_transaction.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.6974232, "relation_name": "dev_dkruh1.loyalty_stg__points_transaction", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__points', 'points_transaction') }}\n\n), loyalty_stg__points_transaction AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpage_cursor,\n\t\tgroup_customer_id,\n\t\tcaused_in_store_id,\n\t\tgroup_id,\n\t\tamount,\n\t\ttransaction_type,\n\t\treason_type,\n\t\treason_description,\n\t\toriginal_transaction_id,\n\t\toriginal_transaction_at,\n\t\tdebug_data,\n\t\tcreated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__points_transaction", "language": "sql", "refs": [], "sources": [["loyalty__points", "points_transaction"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__points.points_transaction"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__points_transaction/loyalty_stg__points_transaction.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM points.points_transaction\n\n), loyalty_stg__points_transaction AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpage_cursor,\n\t\tgroup_customer_id,\n\t\tcaused_in_store_id,\n\t\tgroup_id,\n\t\tamount,\n\t\ttransaction_type,\n\t\treason_type,\n\t\treason_description,\n\t\toriginal_transaction_id,\n\t\toriginal_transaction_at,\n\t\tdebug_data,\n\t\tcreated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__points_transaction", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__processors": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__processors", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.sql", "unique_id": "model.yoda.loyalty_stg__processors", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__processors", "loyalty_stg__processors"], "alias": "loyalty_stg__processors", "checksum": {"name": "sha256", "checksum": "7f9ac50fe8edb1ec989af167a36f441bd163a30fcccbf1578abac3980c20d2c4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "guid": {"name": "guid", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_authorized": {"name": "has_authorized", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "import_completed": {"name": "import_completed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "import_records_processed": {"name": "import_records_processed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "import_started": {"name": "import_started", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "import_total_records": {"name": "import_total_records", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_fetch_at": {"name": "last_fetch_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_page_number": {"name": "last_page_number", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oauth_token_id": {"name": "oauth_token_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "paused": {"name": "paused", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "permissions": {"name": "permissions", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.7194235, "relation_name": "dev_dkruh1.loyalty_stg__processors", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'processors') }}\n\n), loyalty_stg__processors AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tguid,\n\t\thas_authorized,\n\t\tid,\n\t\timport_completed,\n\t\timport_records_processed,\n\t\timport_started,\n\t\timport_total_records,\n\t\tlast_fetch_at,\n\t\tlast_page_number,\n\t\tmerchant_id,\n\t\tname,\n\t\toauth_token_id,\n\t\tpaused,\n\t\ttype,\n\t\tpermissions\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__processors", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "processors"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.processors"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.processors\n\n), loyalty_stg__processors AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tguid,\n\t\thas_authorized,\n\t\tid,\n\t\timport_completed,\n\t\timport_records_processed,\n\t\timport_started,\n\t\timport_total_records,\n\t\tlast_fetch_at,\n\t\tlast_page_number,\n\t\tmerchant_id,\n\t\tname,\n\t\toauth_token_id,\n\t\tpaused,\n\t\ttype,\n\t\tpermissions\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__processors", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__purchase_items": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__purchase_items", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.sql", "unique_id": "model.yoda.loyalty_stg__purchase_items", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__purchase_items", "loyalty_stg__purchase_items"], "alias": "loyalty_stg__purchase_items", "checksum": {"name": "sha256", "checksum": "8d1ac251659b6d3d368a0fc19a5d30fd335eb73dba67b2f13102a2f4fd0445de"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "category_id": {"name": "category_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_cents": {"name": "price_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "quantity": {"name": "quantity", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vendor": {"name": "vendor", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_type": {"name": "product_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.7406363, "relation_name": "dev_dkruh1.loyalty_stg__purchase_items", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'purchase_items') }}\n\n), loyalty_stg__purchase_items AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tcategory_id,\n\t\tcurrency,\n\t\tid,\n\t\tprice_cents,\n\t\tproduct_id,\n\t\tpurchase_id,\n\t\tquantity,\n\t\tthird_party_id,\n\t\ttitle,\n\t\tvendor,\n\t\tproduct_type,\n\t\ttags\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__purchase_items", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "purchase_items"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.purchase_items"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.purchase_items\n\n), loyalty_stg__purchase_items AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tcategory_id,\n\t\tcurrency,\n\t\tid,\n\t\tprice_cents,\n\t\tproduct_id,\n\t\tpurchase_id,\n\t\tquantity,\n\t\tthird_party_id,\n\t\ttitle,\n\t\tvendor,\n\t\tproduct_type,\n\t\ttags\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__purchase_items", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__purchases": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__purchases", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.sql", "unique_id": "model.yoda.loyalty_stg__purchases", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__purchases", "loyalty_stg__purchases"], "alias": "loyalty_stg__purchases", "checksum": {"name": "sha256", "checksum": "e7884b92c66283f025fb002ba65cfab993e4180f75602f9df8a0d8b1175f0e4d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "applied_to_campaigns": {"name": "applied_to_campaigns", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "avs_postal_match": {"name": "avs_postal_match", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avs_result_code": {"name": "avs_result_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avs_street_match": {"name": "avs_street_match", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "before_swellrewards": {"name": "before_swellrewards", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "billing_address1": {"name": "billing_address1", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_address2": {"name": "billing_address2", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_city": {"name": "billing_city", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_country_code": {"name": "billing_country_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_first_name": {"name": "billing_first_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_last_name": {"name": "billing_last_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_phone": {"name": "billing_phone", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_zip": {"name": "billing_zip", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "browser_country_code": {"name": "browser_country_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeback_protection": {"name": "chargeback_protection", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "credit_card_bin": {"name": "credit_card_bin", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "credit_card_company": {"name": "credit_card_company", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "credit_card_number": {"name": "credit_card_number", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cvv_result_code": {"name": "cvv_result_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "eligible_for_vip_tiers": {"name": "eligible_for_vip_tiers", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "fraud_review": {"name": "fraud_review", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gateway": {"name": "gateway", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_swell_user": {"name": "has_swell_user", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ip_address": {"name": "ip_address", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_refunded": {"name": "is_refunded", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_repeat": {"name": "is_repeat", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "landing_site": {"name": "landing_site", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processor_id": {"name": "processor_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_code_id": {"name": "redemption_code_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referring_site": {"name": "referring_site", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sender_email": {"name": "sender_email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_address1": {"name": "shipping_address1", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_address2": {"name": "shipping_address2", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_city": {"name": "shipping_city", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_country_code": {"name": "shipping_country_code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_first_name": {"name": "shipping_first_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_last_name": {"name": "shipping_last_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_phone": {"name": "shipping_phone", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_zip": {"name": "shipping_zip", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_account_id": {"name": "store_account_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_discount_cost_cents": {"name": "swell_discount_cost_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synced_to_analytics": {"name": "synced_to_analytics", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "user_agent_id": {"name": "user_agent_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent": {"name": "user_agent", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "fee_amount_cents": {"name": "fee_amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transaction_id": {"name": "transaction_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "affiliate_amount": {"name": "affiliate_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referral_discount_code_id": {"name": "referral_discount_code_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transaction_hash": {"name": "transaction_hash", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vip_tier_eligibility_job_id": {"name": "vip_tier_eligibility_job_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel_type": {"name": "channel_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_address": {"name": "store_address", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clerk_name": {"name": "clerk_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_city": {"name": "store_city", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_state": {"name": "store_state", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clerk_employee_id": {"name": "clerk_employee_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.8004081, "relation_name": "dev_dkruh1.loyalty_stg__purchases", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'purchases') }}\n\n), loyalty_stg__purchases AS (\n\n SELECT \n\t\tcreated_at,\n\t\tupdated_at,\n\t\tamount_cents,\n\t\tapplied_to_campaigns,\n\t\tavs_postal_match,\n\t\tavs_result_code,\n\t\tavs_street_match,\n\t\tbefore_swellrewards,\n\t\tbilling_address1,\n\t\tbilling_address2,\n\t\tbilling_city,\n\t\tbilling_country_code,\n\t\tbilling_first_name,\n\t\tbilling_last_name,\n\t\tbilling_phone,\n\t\tbilling_zip,\n\t\tbrowser_country_code,\n\t\tchargeback_protection,\n\t\tcredit_card_bin,\n\t\tcredit_card_company,\n\t\tcredit_card_number,\n\t\tcurrency,\n\t\tcustomer_id,\n\t\tcvv_result_code,\n\t\teligible_for_vip_tiers,\n\t\tfraud_review,\n\t\tgateway,\n\t\thas_swell_user,\n\t\tid,\n\t\tip_address,\n\t\tis_refunded,\n\t\tis_repeat,\n\t\tlanding_site,\n\t\tmerchant_id,\n\t\torder_id,\n\t\tprocessor_id,\n\t\tredemption_code_id,\n\t\treferral_id,\n\t\treferring_site,\n\t\tsender_email,\n\t\tshipping_address1,\n\t\tshipping_address2,\n\t\tshipping_city,\n\t\tshipping_country_code,\n\t\tshipping_first_name,\n\t\tshipping_last_name,\n\t\tshipping_phone,\n\t\tshipping_zip,\n\t\tstore_account_id,\n\t\tswell_discount_cost_cents,\n\t\tsynced_to_analytics,\n\t\tuser_agent_id,\n\t\tuser_agent,\n\t\tuser_id,\n\t\tfee_amount_cents,\n\t\ttransaction_id,\n\t\taffiliate_amount,\n\t\treferral_discount_code_id,\n\t\ttransaction_hash,\n\t\tvip_tier_eligibility_job_id,\n\t\tchannel_type,\n\t\tstore_address,\n\t\tclerk_name,\n\t\tstore_city,\n\t\tstore_state,\n\t\tclerk_employee_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__purchases", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "purchases"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.purchases"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.purchases\n\n), loyalty_stg__purchases AS (\n\n SELECT \n\t\tcreated_at,\n\t\tupdated_at,\n\t\tamount_cents,\n\t\tapplied_to_campaigns,\n\t\tavs_postal_match,\n\t\tavs_result_code,\n\t\tavs_street_match,\n\t\tbefore_swellrewards,\n\t\tbilling_address1,\n\t\tbilling_address2,\n\t\tbilling_city,\n\t\tbilling_country_code,\n\t\tbilling_first_name,\n\t\tbilling_last_name,\n\t\tbilling_phone,\n\t\tbilling_zip,\n\t\tbrowser_country_code,\n\t\tchargeback_protection,\n\t\tcredit_card_bin,\n\t\tcredit_card_company,\n\t\tcredit_card_number,\n\t\tcurrency,\n\t\tcustomer_id,\n\t\tcvv_result_code,\n\t\teligible_for_vip_tiers,\n\t\tfraud_review,\n\t\tgateway,\n\t\thas_swell_user,\n\t\tid,\n\t\tip_address,\n\t\tis_refunded,\n\t\tis_repeat,\n\t\tlanding_site,\n\t\tmerchant_id,\n\t\torder_id,\n\t\tprocessor_id,\n\t\tredemption_code_id,\n\t\treferral_id,\n\t\treferring_site,\n\t\tsender_email,\n\t\tshipping_address1,\n\t\tshipping_address2,\n\t\tshipping_city,\n\t\tshipping_country_code,\n\t\tshipping_first_name,\n\t\tshipping_last_name,\n\t\tshipping_phone,\n\t\tshipping_zip,\n\t\tstore_account_id,\n\t\tswell_discount_cost_cents,\n\t\tsynced_to_analytics,\n\t\tuser_agent_id,\n\t\tuser_agent,\n\t\tuser_id,\n\t\tfee_amount_cents,\n\t\ttransaction_id,\n\t\taffiliate_amount,\n\t\treferral_discount_code_id,\n\t\ttransaction_hash,\n\t\tvip_tier_eligibility_job_id,\n\t\tchannel_type,\n\t\tstore_address,\n\t\tclerk_name,\n\t\tstore_city,\n\t\tstore_state,\n\t\tclerk_employee_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__purchases", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__purchases_redemptions": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__purchases_redemptions", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.sql", "unique_id": "model.yoda.loyalty_stg__purchases_redemptions", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__purchases_redemptions", "loyalty_stg__purchases_redemptions"], "alias": "loyalty_stg__purchases_redemptions", "checksum": {"name": "sha256", "checksum": "e4395223b6f147df0fffd82213744914bfbc40b8d26f268da1d5ea208e740745"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_id": {"name": "redemption_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.813757, "relation_name": "dev_dkruh1.loyalty_stg__purchases_redemptions", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'purchases_redemptions') }}\n\n), loyalty_stg__purchases_redemptions AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tid,\n\t\tpurchase_id,\n\t\tredemption_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__purchases_redemptions", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "purchases_redemptions"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.purchases_redemptions"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.purchases_redemptions\n\n), loyalty_stg__purchases_redemptions AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tid,\n\t\tpurchase_id,\n\t\tredemption_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__purchases_redemptions", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__purchases_with_currency": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__purchases_with_currency", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.sql", "unique_id": "model.yoda.loyalty_stg__purchases_with_currency", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__purchases_with_currency", "loyalty_stg__purchases_with_currency"], "alias": "loyalty_stg__purchases_with_currency", "checksum": {"name": "sha256", "checksum": "a16698025323b07bc5ad950328de99d587fa62507974ee5422b93d80adb8d5f3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency_symbol": {"name": "currency_symbol", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_exchange_rate": {"name": "external_exchange_rate", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyalty_exchange_rate": {"name": "loyalty_exchange_rate", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.8305922, "relation_name": "dev_dkruh1.loyalty_stg__purchases_with_currency", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'purchases_with_currency') }}\n\n), loyalty_stg__purchases_with_currency AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount_cents,\n\t\tcurrency_symbol,\n\t\texternal_exchange_rate,\n\t\tid,\n\t\tloyalty_exchange_rate,\n\t\tmerchant_id,\n\t\tpurchase_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__purchases_with_currency", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "purchases_with_currency"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.purchases_with_currency"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.purchases_with_currency\n\n), loyalty_stg__purchases_with_currency AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount_cents,\n\t\tcurrency_symbol,\n\t\texternal_exchange_rate,\n\t\tid,\n\t\tloyalty_exchange_rate,\n\t\tmerchant_id,\n\t\tpurchase_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__purchases_with_currency", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__redemption_codes": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__redemption_codes", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.sql", "unique_id": "model.yoda.loyalty_stg__redemption_codes", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__redemption_codes", "loyalty_stg__redemption_codes"], "alias": "loyalty_stg__redemption_codes", "checksum": {"name": "sha256", "checksum": "93827022798e10e61c836ea065dda4e83183df05c7697be6b99eac702308981c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_used_cents": {"name": "amount_used_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "code": {"name": "code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "point_redemption_id": {"name": "point_redemption_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "third_party_rule_id": {"name": "third_party_rule_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "used": {"name": "used", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "uses": {"name": "uses", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recharge_third_party_id": {"name": "recharge_third_party_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.8512197, "relation_name": "dev_dkruh1.loyalty_stg__redemption_codes", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'redemption_codes') }}\n\n), loyalty_stg__redemption_codes AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tamount_used_cents,\n\t\tcode,\n\t\tid,\n\t\tmerchant_id,\n\t\tpoint_redemption_id,\n\t\tredemption_option_id,\n\t\tthird_party_id,\n\t\tthird_party_rule_id,\n\t\tused,\n\t\tuses,\n\t\trecharge_third_party_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__redemption_codes", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "redemption_codes"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.redemption_codes"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.redemption_codes\n\n), loyalty_stg__redemption_codes AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tamount_used_cents,\n\t\tcode,\n\t\tid,\n\t\tmerchant_id,\n\t\tpoint_redemption_id,\n\t\tredemption_option_id,\n\t\tthird_party_id,\n\t\tthird_party_rule_id,\n\t\tused,\n\t\tuses,\n\t\trecharge_third_party_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__redemption_codes", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__redemption_options": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__redemption_options", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.sql", "unique_id": "model.yoda.loyalty_stg__redemption_options", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__redemption_options", "loyalty_stg__redemption_options"], "alias": "loyalty_stg__redemption_options", "checksum": {"name": "sha256", "checksum": "9d46464970b64033317e91e6d6e5f7ea9921dacf7927b5a0113757fbe7688411"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount": {"name": "amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "applies_once": {"name": "applies_once", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "applies_to_any_or_all_attributes": {"name": "applies_to_any_or_all_attributes", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_id": {"name": "applies_to_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_product_type": {"name": "applies_to_product_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_resource": {"name": "applies_to_resource", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "automatically_apply": {"name": "automatically_apply", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "charset": {"name": "charset", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "code_length": {"name": "code_length", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cost_text": {"name": "cost_text", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "coupon_cancellation_url": {"name": "coupon_cancellation_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "coupons_pool_amount": {"name": "coupons_pool_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "description": {"name": "description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_amount_cents": {"name": "discount_amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_percentage": {"name": "discount_percentage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_rate_cents": {"name": "discount_rate_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_type": {"name": "discount_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_in_admin": {"name": "display_in_admin", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "display_in_popup": {"name": "display_in_popup", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "display_order": {"name": "display_order", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "duration": {"name": "duration", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expires_after": {"name": "expires_after", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_product_cost_cents": {"name": "free_product_cost_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "free_shipping_less_than_cents": {"name": "free_shipping_less_than_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "generic_url": {"name": "generic_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "icon": {"name": "icon", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "image": {"name": "image", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_offline": {"name": "is_offline", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_pos": {"name": "is_pos", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "once_per_customer": {"name": "once_per_customer", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "prefix": {"name": "prefix", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "restrict_to_redeeming_customer": {"name": "restrict_to_redeeming_customer", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "reward_intro": {"name": "reward_intro", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secret": {"name": "secret", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "show_online": {"name": "show_online", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "single_use": {"name": "single_use", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "skip_platform_create": {"name": "skip_platform_create", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "title": {"name": "title", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usage_limit": {"name": "usage_limit", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "value_cents": {"name": "value_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "background_image_id": {"name": "background_image_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "saved_search_ids": {"name": "saved_search_ids", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_attributes": {"name": "applies_to_attributes", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_values": {"name": "applies_to_values", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cart_greater_than_cents": {"name": "cart_greater_than_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_ids": {"name": "customer_ids", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "custom_coupon_cost_cents": {"name": "custom_coupon_cost_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_ids": {"name": "product_ids", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_ids": {"name": "variant_ids", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collection_ids": {"name": "collection_ids", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_ids": {"name": "segment_ids", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_codes_webhook_threshold": {"name": "redemption_codes_webhook_threshold", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "min_amount": {"name": "min_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_ids": {"name": "group_ids", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.9059103, "relation_name": "dev_dkruh1.loyalty_stg__redemption_options", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'redemption_options') }}\n\n), loyalty_stg__redemption_options AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount,\n\t\tapplies_once,\n\t\tapplies_to_any_or_all_attributes,\n\t\tapplies_to_id,\n\t\tapplies_to_product_type,\n\t\tapplies_to_resource,\n\t\tautomatically_apply,\n\t\tcharset,\n\t\tcode_length,\n\t\tcost_text,\n\t\tcoupon_cancellation_url,\n\t\tcoupons_pool_amount,\n\t\tcurrency,\n\t\tdeleted,\n\t\tdescription,\n\t\tdiscount_amount_cents,\n\t\tdiscount_percentage,\n\t\tdiscount_rate_cents,\n\t\tdiscount_type,\n\t\tdisplay_in_admin,\n\t\tdisplay_in_popup,\n\t\tdisplay_order,\n\t\tduration,\n\t\texpires_after,\n\t\tfree_product_cost_cents,\n\t\tfree_shipping_less_than_cents,\n\t\tgeneric_url,\n\t\ticon,\n\t\tid,\n\t\timage,\n\t\tis_offline,\n\t\tis_pos,\n\t\tmerchant_id,\n\t\tname,\n\t\tonce_per_customer,\n\t\tprefix,\n\t\tquantity,\n\t\trestrict_to_redeeming_customer,\n\t\treward_intro,\n\t\tsecret,\n\t\tshow_online,\n\t\tsingle_use,\n\t\tskip_platform_create,\n\t\ttitle,\n\t\ttype,\n\t\tusage_limit,\n\t\tvalue_cents,\n\t\tthird_party_id,\n\t\tbackground_image_id,\n\t\tsaved_search_ids,\n\t\tapplies_to_attributes,\n\t\tapplies_to_values,\n\t\tcart_greater_than_cents,\n\t\tcustomer_ids,\n\t\tcustom_coupon_cost_cents,\n\t\tproduct_ids,\n\t\tvariant_ids,\n\t\tcollection_ids,\n\t\tsegment_ids,\n\t\tredemption_codes_webhook_threshold,\n\t\tmin_amount,\n\t\tgroup_ids\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__redemption_options", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "redemption_options"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.redemption_options"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.redemption_options\n\n), loyalty_stg__redemption_options AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount,\n\t\tapplies_once,\n\t\tapplies_to_any_or_all_attributes,\n\t\tapplies_to_id,\n\t\tapplies_to_product_type,\n\t\tapplies_to_resource,\n\t\tautomatically_apply,\n\t\tcharset,\n\t\tcode_length,\n\t\tcost_text,\n\t\tcoupon_cancellation_url,\n\t\tcoupons_pool_amount,\n\t\tcurrency,\n\t\tdeleted,\n\t\tdescription,\n\t\tdiscount_amount_cents,\n\t\tdiscount_percentage,\n\t\tdiscount_rate_cents,\n\t\tdiscount_type,\n\t\tdisplay_in_admin,\n\t\tdisplay_in_popup,\n\t\tdisplay_order,\n\t\tduration,\n\t\texpires_after,\n\t\tfree_product_cost_cents,\n\t\tfree_shipping_less_than_cents,\n\t\tgeneric_url,\n\t\ticon,\n\t\tid,\n\t\timage,\n\t\tis_offline,\n\t\tis_pos,\n\t\tmerchant_id,\n\t\tname,\n\t\tonce_per_customer,\n\t\tprefix,\n\t\tquantity,\n\t\trestrict_to_redeeming_customer,\n\t\treward_intro,\n\t\tsecret,\n\t\tshow_online,\n\t\tsingle_use,\n\t\tskip_platform_create,\n\t\ttitle,\n\t\ttype,\n\t\tusage_limit,\n\t\tvalue_cents,\n\t\tthird_party_id,\n\t\tbackground_image_id,\n\t\tsaved_search_ids,\n\t\tapplies_to_attributes,\n\t\tapplies_to_values,\n\t\tcart_greater_than_cents,\n\t\tcustomer_ids,\n\t\tcustom_coupon_cost_cents,\n\t\tproduct_ids,\n\t\tvariant_ids,\n\t\tcollection_ids,\n\t\tsegment_ids,\n\t\tredemption_codes_webhook_threshold,\n\t\tmin_amount,\n\t\tgroup_ids\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__redemption_options", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__referral_codes": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__referral_codes", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.sql", "unique_id": "model.yoda.loyalty_stg__referral_codes", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__referral_codes", "loyalty_stg__referral_codes"], "alias": "loyalty_stg__referral_codes", "checksum": {"name": "sha256", "checksum": "8f85598d48ea843a0783ee25c3223e5dca4e53337077584ec5e1ba35d0020119"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty_stg__referral_codes", "columns": {"created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_amount_cents": {"name": "average_amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "clicks": {"name": "clicks", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "code": {"name": "code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "copy_link_shares": {"name": "copy_link_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_shares": {"name": "email_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emails_sent": {"name": "emails_sent", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emails_viewed": {"name": "emails_viewed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expiration_final_reminder_job_id": {"name": "expiration_final_reminder_job_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expiration_reminder_job_id": {"name": "expiration_reminder_job_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expire_job_id": {"name": "expire_job_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expired": {"name": "expired", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "expires_at": {"name": "expires_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "facebook_messenger_shares": {"name": "facebook_messenger_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "facebook_shares": {"name": "facebook_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "identity_id": {"name": "identity_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "invalid_clicks": {"name": "invalid_clicks", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_email": {"name": "links_clicked_from_email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_facebook": {"name": "links_clicked_from_facebook", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_twitter": {"name": "links_clicked_from_twitter", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked": {"name": "links_clicked", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shares": {"name": "shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_shares": {"name": "sms_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "target_referrals": {"name": "target_referrals", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "twitter_shares": {"name": "twitter_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "whatsapp_shares": {"name": "whatsapp_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "personal_email_shares": {"name": "personal_email_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.9399595, "relation_name": "dev_dkruh1.loyalty_stg__referral_codes", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'referral_codes') }}\n\n), loyalty_stg__referral_codes AS (\n\n SELECT \n\t\tcreated_at,\n\t\tupdated_at,\n\t\tamount_cents,\n\t\taverage_amount_cents,\n\t\tcampaign_id,\n\t\tclicks,\n\t\tcode,\n\t\tcopy_link_shares,\n\t\tcustomer_id,\n\t\temail_shares,\n\t\temails_sent,\n\t\temails_viewed,\n\t\texpiration_final_reminder_job_id,\n\t\texpiration_reminder_job_id,\n\t\texpire_job_id,\n\t\texpired,\n\t\texpires_at,\n\t\tfacebook_messenger_shares,\n\t\tfacebook_shares,\n\t\tidentity_id,\n\t\tid,\n\t\tinvalid_clicks,\n\t\tlinks_clicked_from_email,\n\t\tlinks_clicked_from_facebook,\n\t\tlinks_clicked_from_twitter,\n\t\tlinks_clicked,\n\t\tmerchant_id,\n\t\torders,\n\t\tshares,\n\t\tsms_shares,\n\t\ttarget_referrals,\n\t\ttwitter_shares,\n\t\twhatsapp_shares,\n\t\tpersonal_email_shares\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referral_codes", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "referral_codes"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.referral_codes"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.referral_codes\n\n), loyalty_stg__referral_codes AS (\n\n SELECT \n\t\tcreated_at,\n\t\tupdated_at,\n\t\tamount_cents,\n\t\taverage_amount_cents,\n\t\tcampaign_id,\n\t\tclicks,\n\t\tcode,\n\t\tcopy_link_shares,\n\t\tcustomer_id,\n\t\temail_shares,\n\t\temails_sent,\n\t\temails_viewed,\n\t\texpiration_final_reminder_job_id,\n\t\texpiration_reminder_job_id,\n\t\texpire_job_id,\n\t\texpired,\n\t\texpires_at,\n\t\tfacebook_messenger_shares,\n\t\tfacebook_shares,\n\t\tidentity_id,\n\t\tid,\n\t\tinvalid_clicks,\n\t\tlinks_clicked_from_email,\n\t\tlinks_clicked_from_facebook,\n\t\tlinks_clicked_from_twitter,\n\t\tlinks_clicked,\n\t\tmerchant_id,\n\t\torders,\n\t\tshares,\n\t\tsms_shares,\n\t\ttarget_referrals,\n\t\ttwitter_shares,\n\t\twhatsapp_shares,\n\t\tpersonal_email_shares\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referral_codes", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__referral_discount_codes": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__referral_discount_codes", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.sql", "unique_id": "model.yoda.loyalty_stg__referral_discount_codes", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__referral_discount_codes", "loyalty_stg__referral_discount_codes"], "alias": "loyalty_stg__referral_discount_codes", "checksum": {"name": "sha256", "checksum": "84a0153d90b7c83c79a5ffbd66e0254d9198333895525c515e078dfb40ce7858"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_used_cents": {"name": "amount_used_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_amount_cents": {"name": "average_amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "code": {"name": "code", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "third_party_rule_id": {"name": "third_party_rule_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "used": {"name": "used", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "uses": {"name": "uses", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "batch_id": {"name": "batch_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.968526, "relation_name": "dev_dkruh1.loyalty_stg__referral_discount_codes", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'referral_discount_codes') }}\n\n), loyalty_stg__referral_discount_codes AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount_cents,\n\t\tamount_used_cents,\n\t\taverage_amount_cents,\n\t\tcampaign_id,\n\t\tcode,\n\t\tcustomer_id,\n\t\tid,\n\t\tmerchant_id,\n\t\torders,\n\t\tredemption_option_id,\n\t\tthird_party_id,\n\t\tthird_party_rule_id,\n\t\tused,\n\t\tuses,\n\t\tbatch_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referral_discount_codes", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "referral_discount_codes"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.referral_discount_codes"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.referral_discount_codes\n\n), loyalty_stg__referral_discount_codes AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount_cents,\n\t\tamount_used_cents,\n\t\taverage_amount_cents,\n\t\tcampaign_id,\n\t\tcode,\n\t\tcustomer_id,\n\t\tid,\n\t\tmerchant_id,\n\t\torders,\n\t\tredemption_option_id,\n\t\tthird_party_id,\n\t\tthird_party_rule_id,\n\t\tused,\n\t\tuses,\n\t\tbatch_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referral_discount_codes", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__referral_receipts": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__referral_receipts", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.sql", "unique_id": "model.yoda.loyalty_stg__referral_receipts", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__referral_receipts", "loyalty_stg__referral_receipts"], "alias": "loyalty_stg__referral_receipts", "checksum": {"name": "sha256", "checksum": "bb7e5c5cd6b32f8c6533ac39a310a06c31092101c9cc6fdb368a3df94a993b7a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_reversed": {"name": "is_reversed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_customer_id": {"name": "referred_customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signed_up_at": {"name": "signed_up_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "source": {"name": "source", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "reminder_job_id": {"name": "reminder_job_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_discount_code_id": {"name": "referral_discount_code_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082676.9903207, "relation_name": "dev_dkruh1.loyalty_stg__referral_receipts", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'referral_receipts') }}\n\n), loyalty_stg__referral_receipts AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tcustomer_id,\n\t\temail,\n\t\tid,\n\t\tis_reversed,\n\t\tmerchant_id,\n\t\treferral_code_id,\n\t\treferral_id,\n\t\treferred_customer_id,\n\t\tsigned_up_at,\n\t\tsource,\n\t\tcompleted_at,\n\t\treminder_job_id,\n\t\treferral_discount_code_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referral_receipts", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "referral_receipts"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.referral_receipts"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.referral_receipts\n\n), loyalty_stg__referral_receipts AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tcustomer_id,\n\t\temail,\n\t\tid,\n\t\tis_reversed,\n\t\tmerchant_id,\n\t\treferral_code_id,\n\t\treferral_id,\n\t\treferred_customer_id,\n\t\tsigned_up_at,\n\t\tsource,\n\t\tcompleted_at,\n\t\treminder_job_id,\n\t\treferral_discount_code_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referral_receipts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__referral_shares": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__referral_shares", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.sql", "unique_id": "model.yoda.loyalty_stg__referral_shares", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__referral_shares", "loyalty_stg__referral_shares"], "alias": "loyalty_stg__referral_shares", "checksum": {"name": "sha256", "checksum": "73f98349944d727bd7b46df8055fe24d87e326cdd1b46be205e325323f82f293"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ip_address": {"name": "ip_address", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent_id": {"name": "user_agent_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.0082405, "relation_name": "dev_dkruh1.loyalty_stg__referral_shares", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'referral_shares') }}\n\n), loyalty_stg__referral_shares AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tcustomer_id,\n\t\tid,\n\t\tip_address,\n\t\tmerchant_id,\n\t\treferral_code_id,\n\t\ttype,\n\t\tuser_agent_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referral_shares", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "referral_shares"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.referral_shares"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.referral_shares\n\n), loyalty_stg__referral_shares AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tcustomer_id,\n\t\tid,\n\t\tip_address,\n\t\tmerchant_id,\n\t\treferral_code_id,\n\t\ttype,\n\t\tuser_agent_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referral_shares", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__referral_snapshots": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__referral_snapshots", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.sql", "unique_id": "model.yoda.loyalty_stg__referral_snapshots", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__referral_snapshots", "loyalty_stg__referral_snapshots"], "alias": "loyalty_stg__referral_snapshots", "checksum": {"name": "sha256", "checksum": "7a45337bb654c53292eb6184a473f246494f435f3780e6d3cf2eb4a2e6dc5561"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_amount_cents": {"name": "average_amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "copy_link_shares": {"name": "copy_link_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "day": {"name": "day", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "email_shares": {"name": "email_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emails_sent": {"name": "emails_sent", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emails_viewed": {"name": "emails_viewed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "facebook_messenger_shares": {"name": "facebook_messenger_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "facebook_shares": {"name": "facebook_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_email": {"name": "links_clicked_from_email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_facebook": {"name": "links_clicked_from_facebook", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_twitter": {"name": "links_clicked_from_twitter", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked": {"name": "links_clicked", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "personal_email_shares": {"name": "personal_email_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shares": {"name": "shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_shares": {"name": "sms_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "twitter_shares": {"name": "twitter_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "whatsapp_shares": {"name": "whatsapp_shares", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.033931, "relation_name": "dev_dkruh1.loyalty_stg__referral_snapshots", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'referral_snapshots') }}\n\n), loyalty_stg__referral_snapshots AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tamount_cents,\n\t\taverage_amount_cents,\n\t\tcopy_link_shares,\n\t\tday,\n\t\temail_shares,\n\t\temails_sent,\n\t\temails_viewed,\n\t\tfacebook_messenger_shares,\n\t\tfacebook_shares,\n\t\tid,\n\t\tlinks_clicked_from_email,\n\t\tlinks_clicked_from_facebook,\n\t\tlinks_clicked_from_twitter,\n\t\tlinks_clicked,\n\t\tmerchant_id,\n\t\torders,\n\t\tpersonal_email_shares,\n\t\tshares,\n\t\tsms_shares,\n\t\ttwitter_shares,\n\t\twhatsapp_shares\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referral_snapshots", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "referral_snapshots"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.referral_snapshots"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.referral_snapshots\n\n), loyalty_stg__referral_snapshots AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tamount_cents,\n\t\taverage_amount_cents,\n\t\tcopy_link_shares,\n\t\tday,\n\t\temail_shares,\n\t\temails_sent,\n\t\temails_viewed,\n\t\tfacebook_messenger_shares,\n\t\tfacebook_shares,\n\t\tid,\n\t\tlinks_clicked_from_email,\n\t\tlinks_clicked_from_facebook,\n\t\tlinks_clicked_from_twitter,\n\t\tlinks_clicked,\n\t\tmerchant_id,\n\t\torders,\n\t\tpersonal_email_shares,\n\t\tshares,\n\t\tsms_shares,\n\t\ttwitter_shares,\n\t\twhatsapp_shares\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referral_snapshots", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__referrals": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__referrals", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.sql", "unique_id": "model.yoda.loyalty_stg__referrals", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__referrals", "loyalty_stg__referrals"], "alias": "loyalty_stg__referrals", "checksum": {"name": "sha256", "checksum": "5efcae5a936d78d13047d1cb1d10427c7a93e37c55011a289dde64d0e47cabff"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_amount_cents": {"name": "average_amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ip_address": {"name": "ip_address", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_apple_private_relay_ip": {"name": "is_apple_private_relay_ip", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "link_share_type": {"name": "link_share_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_balance": {"name": "points_balance", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_user_perk_id": {"name": "referred_user_perk_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referrer_perk_id": {"name": "referrer_perk_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent_id": {"name": "user_agent_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "referring_host": {"name": "referring_host", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_product_id": {"name": "external_product_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manually_override_status": {"name": "manually_override_status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.0601895, "relation_name": "dev_dkruh1.loyalty_stg__referrals", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'referrals') }}\n\n), loyalty_stg__referrals AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount_cents,\n\t\taverage_amount_cents,\n\t\tcampaign_id,\n\t\tcurrency,\n\t\tcustomer_id,\n\t\tid,\n\t\tip_address,\n\t\tis_apple_private_relay_ip,\n\t\tlink_share_type,\n\t\tmerchant_id,\n\t\torders,\n\t\tpoints_balance,\n\t\tpoints_earned,\n\t\treferral_code_id,\n\t\treferred_user_perk_id,\n\t\treferrer_perk_id,\n\t\tuser_agent_id,\n\t\tcompleted_at,\n\t\treferring_host,\n\t\texternal_product_id,\n\t\tmanually_override_status\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referrals", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "referrals"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.referrals"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.referrals\n\n), loyalty_stg__referrals AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount_cents,\n\t\taverage_amount_cents,\n\t\tcampaign_id,\n\t\tcurrency,\n\t\tcustomer_id,\n\t\tid,\n\t\tip_address,\n\t\tis_apple_private_relay_ip,\n\t\tlink_share_type,\n\t\tmerchant_id,\n\t\torders,\n\t\tpoints_balance,\n\t\tpoints_earned,\n\t\treferral_code_id,\n\t\treferred_user_perk_id,\n\t\treferrer_perk_id,\n\t\tuser_agent_id,\n\t\tcompleted_at,\n\t\treferring_host,\n\t\texternal_product_id,\n\t\tmanually_override_status\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__referrals", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__refund_items": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__refund_items", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.sql", "unique_id": "model.yoda.loyalty_stg__refund_items", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__refund_items", "loyalty_stg__refund_items"], "alias": "loyalty_stg__refund_items", "checksum": {"name": "sha256", "checksum": "5c92a370f69a421cc2f44a802668cb10e2200d914c27956412ad6a68f9570aa7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "discount_allocation_amount_cents": {"name": "discount_allocation_amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_item_id": {"name": "purchase_item_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "quantity": {"name": "quantity", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refund_id": {"name": "refund_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.0757732, "relation_name": "dev_dkruh1.loyalty_stg__refund_items", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'refund_items') }}\n\n), loyalty_stg__refund_items AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tdiscount_allocation_amount_cents,\n\t\tid,\n\t\tpurchase_item_id,\n\t\tquantity,\n\t\trefund_id,\n\t\tthird_party_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__refund_items", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "refund_items"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.refund_items"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.refund_items\n\n), loyalty_stg__refund_items AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tdiscount_allocation_amount_cents,\n\t\tid,\n\t\tpurchase_item_id,\n\t\tquantity,\n\t\trefund_id,\n\t\tthird_party_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__refund_items", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__refunds": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__refunds", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.sql", "unique_id": "model.yoda.loyalty_stg__refunds", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__refunds", "loyalty_stg__refunds"], "alias": "loyalty_stg__refunds", "checksum": {"name": "sha256", "checksum": "393bdb9725564a3dcb97f34cf74ee15956bfc231d6258c2d4f26d7688ab16982"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents_in_shopper_currency": {"name": "amount_cents_in_shopper_currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gift_card_amount": {"name": "gift_card_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gift_card_cents": {"name": "gift_card_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refund_id": {"name": "refund_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_gift_card_amount": {"name": "swell_gift_card_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "swell_gift_card_cents": {"name": "swell_gift_card_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_amount": {"name": "total_amount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.0956204, "relation_name": "dev_dkruh1.loyalty_stg__refunds", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'refunds') }}\n\n), loyalty_stg__refunds AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount_cents_in_shopper_currency,\n\t\tamount_cents,\n\t\tcurrency,\n\t\tgift_card_amount,\n\t\tgift_card_cents,\n\t\tid,\n\t\tpurchase_id,\n\t\trefund_id,\n\t\tswell_gift_card_amount,\n\t\tswell_gift_card_cents,\n\t\ttotal_amount\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__refunds", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "refunds"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.refunds"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.refunds\n\n), loyalty_stg__refunds AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount_cents_in_shopper_currency,\n\t\tamount_cents,\n\t\tcurrency,\n\t\tgift_card_amount,\n\t\tgift_card_cents,\n\t\tid,\n\t\tpurchase_id,\n\t\trefund_id,\n\t\tswell_gift_card_amount,\n\t\tswell_gift_card_cents,\n\t\ttotal_amount\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__refunds", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__static_contents": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__static_contents", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.sql", "unique_id": "model.yoda.loyalty_stg__static_contents", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__static_contents", "loyalty_stg__static_contents"], "alias": "loyalty_stg__static_contents", "checksum": {"name": "sha256", "checksum": "c0cfa0bfffa239fa20621cfcf79d4c467d3711b09b33888f7f93972843199480"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "resource_path": {"name": "resource_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.1122093, "relation_name": "dev_dkruh1.loyalty_stg__static_contents", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__widgetrepodb', 'static_contents') }}\n\n), loyalty_stg__static_contents AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tresource_path,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__static_contents", "language": "sql", "refs": [], "sources": [["loyalty__widgetrepodb", "static_contents"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__widgetrepodb.static_contents"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM widgetrepodb.static_contents\n\n), loyalty_stg__static_contents AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tresource_path,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__static_contents", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__subscriptions": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__subscriptions", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.sql", "unique_id": "model.yoda.loyalty_stg__subscriptions", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__subscriptions", "loyalty_stg__subscriptions"], "alias": "loyalty_stg__subscriptions", "checksum": {"name": "sha256", "checksum": "94863d87405db3feb7df50cd68e5b5bb4a62b27c73d19b5ccdfc50c511cb4abc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "base_price_cents": {"name": "base_price_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_provider": {"name": "billing_provider", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current": {"name": "current", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "included_orders": {"name": "included_orders", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_usage_charge_at": {"name": "last_usage_charge_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overdue": {"name": "overdue", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pending": {"name": "pending", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "per_order_price_cents": {"name": "per_order_price_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "percentage_of_redemptions": {"name": "percentage_of_redemptions", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "percentage_of_referrals": {"name": "percentage_of_referrals", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_id": {"name": "plan_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "was_current": {"name": "was_current", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "charge_status": {"name": "charge_status", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurring_charge_id": {"name": "recurring_charge_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manual_price_cents": {"name": "manual_price_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.1353598, "relation_name": "dev_dkruh1.loyalty_stg__subscriptions", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'subscriptions') }}\n\n), loyalty_stg__subscriptions AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tbase_price_cents,\n\t\tbilling_provider,\n\t\tcurrent,\n\t\tid,\n\t\tincluded_orders,\n\t\tlast_usage_charge_at,\n\t\tmerchant_id,\n\t\toverdue,\n\t\tpending,\n\t\tper_order_price_cents,\n\t\tpercentage_of_redemptions,\n\t\tpercentage_of_referrals,\n\t\tplan_id,\n\t\twas_current,\n\t\tcharge_status,\n\t\trecurring_charge_id,\n\t\tmanual_price_cents\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__subscriptions", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "subscriptions"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.subscriptions"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.subscriptions\n\n), loyalty_stg__subscriptions AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tbase_price_cents,\n\t\tbilling_provider,\n\t\tcurrent,\n\t\tid,\n\t\tincluded_orders,\n\t\tlast_usage_charge_at,\n\t\tmerchant_id,\n\t\toverdue,\n\t\tpending,\n\t\tper_order_price_cents,\n\t\tpercentage_of_redemptions,\n\t\tpercentage_of_referrals,\n\t\tplan_id,\n\t\twas_current,\n\t\tcharge_status,\n\t\trecurring_charge_id,\n\t\tmanual_price_cents\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__subscriptions", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__swell_vip_tiers_settings": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__swell_vip_tiers_settings", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.sql", "unique_id": "model.yoda.loyalty_stg__swell_vip_tiers_settings", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__swell_vip_tiers_settings", "loyalty_stg__swell_vip_tiers_settings"], "alias": "loyalty_stg__swell_vip_tiers_settings", "checksum": {"name": "sha256", "checksum": "0ac5ea783114a065b01cd039b91a892923f607da61680c80b6e4f60b4edf6e72"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty", "analytics"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "primary-key": "merchant_id", "foreign-keys": [{"foreign-key": "merchant_id", "ref-table": "loyalty_stg__loyalty_account", "ref-key": "merchant_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty", "analytics"], "description": "loyalty_stg__swell_vip_tiers_settings", "columns": {"merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_enabled_type": {"name": "last_enabled_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "entry_fulfillment_timeframe": {"name": "entry_fulfillment_timeframe", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "custom_start_date": {"name": "custom_start_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_vip_enabled": {"name": "is_vip_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dropping_policy": {"name": "dropping_policy", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_to_platform": {"name": "sync_to_platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "delay_purchase_eligibility_enabled": {"name": "delay_purchase_eligibility_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "delay_purchase_eligibility_days": {"name": "delay_purchase_eligibility_days", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "include_actions_pre_opt_in": {"name": "include_actions_pre_opt_in", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "primary-key": "merchant_id", "foreign-keys": [{"foreign-key": "merchant_id", "ref-table": "loyalty_stg__loyalty_account", "ref-key": "merchant_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty", "analytics"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "primary-key": "merchant_id", "foreign-keys": [{"foreign-key": "merchant_id", "ref-table": "loyalty_stg__loyalty_account", "ref-key": "merchant_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082677.1574094, "relation_name": "dev_dkruh1.loyalty_stg__swell_vip_tiers_settings", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'vip_tiers_settings') }}\n\n ), loyalty_stg__swell_vip_tiers_settings AS (\n\n SELECT merchant_id,\n type,\n last_enabled_type,\n entry_fulfillment_timeframe,\n TIMESTAMP(custom_start_date) AS custom_start_date,\n CAST( CASE WHEN is_enabled THEN 1 ELSE 0 END AS INT) AS is_vip_enabled,\n dropping_policy,\n sync_to_platform,\n delay_purchase_eligibility_enabled,\n delay_purchase_eligibility_days,\n include_actions_pre_opt_in,\n TIMESTAMP(created_at) AS created_at,\n TIMESTAMP(updated_at) AS updated_at\n FROM source\n\n)\n\nSELECT *\nFROM loyalty_stg__swell_vip_tiers_settings", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "vip_tiers_settings"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.vip_tiers_settings"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM chainperks.vip_tiers_settings\n\n ), loyalty_stg__swell_vip_tiers_settings AS (\n\n SELECT merchant_id,\n type,\n last_enabled_type,\n entry_fulfillment_timeframe,\n TIMESTAMP(custom_start_date) AS custom_start_date,\n CAST( CASE WHEN is_enabled THEN 1 ELSE 0 END AS INT) AS is_vip_enabled,\n dropping_policy,\n sync_to_platform,\n delay_purchase_eligibility_enabled,\n delay_purchase_eligibility_days,\n include_actions_pre_opt_in,\n TIMESTAMP(created_at) AS created_at,\n TIMESTAMP(updated_at) AS updated_at\n FROM source\n\n)\n\nSELECT *\nFROM loyalty_stg__swell_vip_tiers_settings", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__templates": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__templates", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.sql", "unique_id": "model.yoda.loyalty_stg__templates", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__templates", "loyalty_stg__templates"], "alias": "loyalty_stg__templates", "checksum": {"name": "sha256", "checksum": "ee2b22f4dcf88944a7825ebd18192b8d5aafa4e78ba445d257b99302ef7232dc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "widget_type_id": {"name": "widget_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "resource_path": {"name": "resource_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customization_schema_path": {"name": "customization_schema_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dependency_group_id": {"name": "dependency_group_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.186962, "relation_name": "dev_dkruh1.loyalty_stg__templates", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__widgetrepodb', 'templates') }}\n\n), loyalty_stg__templates AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\twidget_type_id,\n\t\tresource_path,\n\t\tcustomization_schema_path,\n\t\tversion,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tdependency_group_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__templates", "language": "sql", "refs": [], "sources": [["loyalty__widgetrepodb", "templates"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__widgetrepodb.templates"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM widgetrepodb.templates\n\n), loyalty_stg__templates AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\twidget_type_id,\n\t\tresource_path,\n\t\tcustomization_schema_path,\n\t\tversion,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tdependency_group_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__templates", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__uninstall_loyalty": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__uninstall_loyalty", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.sql", "unique_id": "model.yoda.loyalty_stg__uninstall_loyalty", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__uninstall_loyalty", "loyalty_stg__uninstall_loyalty"], "alias": "loyalty_stg__uninstall_loyalty", "checksum": {"name": "sha256", "checksum": "3a9102aa28ba2f6de1a9a6b917b0d41e4b985342671628e1b9baa2eb7ecb99f1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "loyalty_stg__uninstall_loyalty", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_name": {"name": "company_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currentplan": {"name": "currentplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initialbucketnumoforders": {"name": "initialbucketnumoforders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initialnumoforders": {"name": "initialnumoforders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "last30daysbucketorder": {"name": "last30daysbucketorder", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last30daysorder": {"name": "last30daysorder", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyaltyemail": {"name": "loyaltyemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082677.2516391, "relation_name": "dev_dkruh1.loyalty_stg__uninstall_loyalty", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__segment', 'uninstall_loyalty') }}\n\n), loyalty_stg__uninstall_loyalty AS (\n\n SELECT \n\t\tpartition_date,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tcompany_name,\n\t\tcreatedat,\n\t\tcurrentplan,\n\t\temail,\n\t\tgroupid,\n\t\tinitialbucketnumoforders,\n\t\tinitialnumoforders,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tlast30daysbucketorder,\n\t\tlast30daysorder,\n\t\tloyaltyemail,\n\t\tloyaltypackage,\n\t\tmerchant_id,\n\t\tname,\n\t\towner,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tplanname,\n\t\tplatform_plan,\n\t\tplatform,\n\t\tproduct,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\tpendingrrs,\n\t\tphone,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tbillingproviders,\n\t\tisinvalidfacebooktoken,\n\t\tlastconversionordertime,\n\t\tpackageextensions,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tisinvalidtwittertoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__uninstall_loyalty", "language": "sql", "refs": [], "sources": [["loyalty__segment", "uninstall_loyalty"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__segment.uninstall_loyalty"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.uninstall_loyalty\n\n), loyalty_stg__uninstall_loyalty AS (\n\n SELECT \n\t\tpartition_date,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tcompany_name,\n\t\tcreatedat,\n\t\tcurrentplan,\n\t\temail,\n\t\tgroupid,\n\t\tinitialbucketnumoforders,\n\t\tinitialnumoforders,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tlast30daysbucketorder,\n\t\tlast30daysorder,\n\t\tloyaltyemail,\n\t\tloyaltypackage,\n\t\tmerchant_id,\n\t\tname,\n\t\towner,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tplanname,\n\t\tplatform_plan,\n\t\tplatform,\n\t\tproduct,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\tpendingrrs,\n\t\tphone,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tbillingproviders,\n\t\tisinvalidfacebooktoken,\n\t\tlastconversionordertime,\n\t\tpackageextensions,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tisinvalidtwittertoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__uninstall_loyalty", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__user_actions": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__user_actions", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.sql", "unique_id": "model.yoda.loyalty_stg__user_actions", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__user_actions", "loyalty_stg__user_actions"], "alias": "loyalty_stg__user_actions", "checksum": {"name": "sha256", "checksum": "22674c7bbac12af0aafc6775044a900e82ab494b4026fb055e1dd32a436b8bd9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "applied_to_campaigns": {"name": "applied_to_campaigns", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_swell_user": {"name": "has_swell_user", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "history_title": {"name": "history_title", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ip_address": {"name": "ip_address", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "metadata": {"name": "metadata", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_perk_id": {"name": "parent_perk_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_points": {"name": "reward_points", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synced_to_analytics": {"name": "synced_to_analytics", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent_id": {"name": "user_agent_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_creation_time": {"name": "action_creation_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.2918146, "relation_name": "dev_dkruh1.loyalty_stg__user_actions", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'user_actions') }}\n\n), loyalty_stg__user_actions AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tapplied_to_campaigns,\n\t\tcampaign_id,\n\t\tcustomer_id,\n\t\temail,\n\t\thas_swell_user,\n\t\thistory_title,\n\t\tid,\n\t\tip_address,\n\t\tmerchant_id,\n\t\tmetadata,\n\t\tname,\n\t\tparent_perk_id,\n\t\treferral_id,\n\t\treward_points,\n\t\tsynced_to_analytics,\n\t\tthird_party_id,\n\t\ttype,\n\t\tuser_agent_id,\n\t\tuser_id,\n\t\taction_creation_time\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__user_actions", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "user_actions"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.user_actions"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.user_actions\n\n), loyalty_stg__user_actions AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tapplied_to_campaigns,\n\t\tcampaign_id,\n\t\tcustomer_id,\n\t\temail,\n\t\thas_swell_user,\n\t\thistory_title,\n\t\tid,\n\t\tip_address,\n\t\tmerchant_id,\n\t\tmetadata,\n\t\tname,\n\t\tparent_perk_id,\n\t\treferral_id,\n\t\treward_points,\n\t\tsynced_to_analytics,\n\t\tthird_party_id,\n\t\ttype,\n\t\tuser_agent_id,\n\t\tuser_id,\n\t\taction_creation_time\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__user_actions", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__user_agents": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__user_agents", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.sql", "unique_id": "model.yoda.loyalty_stg__user_agents", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__user_agents", "loyalty_stg__user_agents"], "alias": "loyalty_stg__user_agents", "checksum": {"name": "sha256", "checksum": "7542e9c1ca914dc919fc5f163c853411930ca076d92fb3967b394475307364c1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent_hash": {"name": "user_agent_hash", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent": {"name": "user_agent", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.3055284, "relation_name": "dev_dkruh1.loyalty_stg__user_agents", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'user_agents') }}\n\n), loyalty_stg__user_agents AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tid,\n\t\tuser_agent_hash,\n\t\tuser_agent\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__user_agents", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "user_agents"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.user_agents"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.user_agents\n\n), loyalty_stg__user_agents AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tid,\n\t\tuser_agent_hash,\n\t\tuser_agent\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__user_agents", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__vip_tiers": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__vip_tiers", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.sql", "unique_id": "model.yoda.loyalty_stg__vip_tiers", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__vip_tiers", "loyalty_stg__vip_tiers"], "alias": "loyalty_stg__vip_tiers", "checksum": {"name": "sha256", "checksum": "976c8f9854bac373625f270d1eb3577861212e31aac35640e4340f2f5c1a39d4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "currency": {"name": "currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "earned_title": {"name": "earned_title", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_multiplier": {"name": "points_multiplier", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rank": {"name": "rank", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_points": {"name": "reward_points", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "should_mirror_entry": {"name": "should_mirror_entry", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "background_image_id": {"name": "background_image_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.3261812, "relation_name": "dev_dkruh1.loyalty_stg__vip_tiers", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'vip_tiers') }}\n\n), loyalty_stg__vip_tiers AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tcurrency,\n\t\tdescription,\n\t\tearned_title,\n\t\tid,\n\t\tmerchant_id,\n\t\tname,\n\t\tpoints_multiplier,\n\t\trank,\n\t\treward_points,\n\t\tshould_mirror_entry,\n\t\ttype,\n\t\tredemption_option_id,\n\t\tbackground_image_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__vip_tiers", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "vip_tiers"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.vip_tiers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.vip_tiers\n\n), loyalty_stg__vip_tiers AS (\n\n SELECT\n\t\tCAST(NULL AS TIMESTAMP) AS updated_at,\n\t\tCAST(NULL AS TIMESTAMP) AS created_at,\n\t\tcurrency,\n\t\tdescription,\n\t\tearned_title,\n\t\tid,\n\t\tmerchant_id,\n\t\tname,\n\t\tpoints_multiplier,\n\t\trank,\n\t\treward_points,\n\t\tshould_mirror_entry,\n\t\ttype,\n\t\tredemption_option_id,\n\t\tbackground_image_id\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__vip_tiers", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__vip_tiers_settings": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__vip_tiers_settings", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.sql", "unique_id": "model.yoda.loyalty_stg__vip_tiers_settings", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__vip_tiers_settings", "loyalty_stg__vip_tiers_settings"], "alias": "loyalty_stg__vip_tiers_settings", "checksum": {"name": "sha256", "checksum": "84ba5f85a59b378509b0eb2a744f79d44329a03a28cd195ab6950f6252d09fd7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "custom_start_date": {"name": "custom_start_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delay_purchase_eligibility_days": {"name": "delay_purchase_eligibility_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delay_purchase_eligibility_enabled": {"name": "delay_purchase_eligibility_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dropping_policy": {"name": "dropping_policy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "entry_fulfillment_timeframe": {"name": "entry_fulfillment_timeframe", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "include_actions_pre_opt_in": {"name": "include_actions_pre_opt_in", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_enabled": {"name": "is_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "last_enabled_type": {"name": "last_enabled_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_to_platform": {"name": "sync_to_platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tier_expiring_reminder_days": {"name": "tier_expiring_reminder_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.3467188, "relation_name": "dev_dkruh1.loyalty_stg__vip_tiers_settings", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'vip_tiers_settings') }}\n\n), loyalty_stg__vip_tiers_settings AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tcustom_start_date,\n\t\tdelay_purchase_eligibility_days,\n\t\tdelay_purchase_eligibility_enabled,\n\t\tdropping_policy,\n\t\tentry_fulfillment_timeframe,\n\t\tid,\n\t\tinclude_actions_pre_opt_in,\n\t\tis_enabled,\n\t\tlast_enabled_type,\n\t\tmerchant_id,\n\t\tsync_to_platform,\n\t\ttype,\n\t\ttier_expiring_reminder_days\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__vip_tiers_settings", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "vip_tiers_settings"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.vip_tiers_settings"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM chainperks.vip_tiers_settings\n\n), loyalty_stg__vip_tiers_settings AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tcustom_start_date,\n\t\tdelay_purchase_eligibility_days,\n\t\tdelay_purchase_eligibility_enabled,\n\t\tdropping_policy,\n\t\tentry_fulfillment_timeframe,\n\t\tid,\n\t\tinclude_actions_pre_opt_in,\n\t\tis_enabled,\n\t\tlast_enabled_type,\n\t\tmerchant_id,\n\t\tsync_to_platform,\n\t\ttype,\n\t\ttier_expiring_reminder_days\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__vip_tiers_settings", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__vip_tiers_thresholds": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__vip_tiers_thresholds", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.sql", "unique_id": "model.yoda.loyalty_stg__vip_tiers_thresholds", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__vip_tiers_thresholds", "loyalty_stg__vip_tiers_thresholds"], "alias": "loyalty_stg__vip_tiers_thresholds", "checksum": {"name": "sha256", "checksum": "bd492a33fb8038330ef10af5b12fc1f423c30ec025c025b6b0aea162b45f80b8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_spent_cents": {"name": "amount_spent_cents", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_completed": {"name": "campaign_completed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchases_made": {"name": "purchases_made", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referrals_completed": {"name": "referrals_completed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "requirements_needed": {"name": "requirements_needed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_id": {"name": "tier_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.3662806, "relation_name": "dev_dkruh1.loyalty_stg__vip_tiers_thresholds", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'vip_tiers_thresholds') }}\n\n), loyalty_stg__vip_tiers_thresholds AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount_spent_cents,\n\t\tcampaign_completed,\n\t\tid,\n\t\tmerchant_id,\n\t\tpoints_earned,\n\t\tpurchases_made,\n\t\treferrals_completed,\n\t\trequirements_needed,\n\t\ttier_id,\n\t\ttype\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__vip_tiers_thresholds", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "vip_tiers_thresholds"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.vip_tiers_thresholds"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.vip_tiers_thresholds\n\n), loyalty_stg__vip_tiers_thresholds AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tamount_spent_cents,\n\t\tcampaign_completed,\n\t\tid,\n\t\tmerchant_id,\n\t\tpoints_earned,\n\t\tpurchases_made,\n\t\treferrals_completed,\n\t\trequirements_needed,\n\t\ttier_id,\n\t\ttype\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__vip_tiers_thresholds", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__widget_types": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__widget_types", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.sql", "unique_id": "model.yoda.loyalty_stg__widget_types", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__widget_types", "loyalty_stg__widget_types"], "alias": "loyalty_stg__widget_types", "checksum": {"name": "sha256", "checksum": "8937fbf400778ed21bfeb021210738b89727ca45598f02adf4ba637ffc8d1509"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_template_id": {"name": "default_template_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "default_customization_id": {"name": "default_customization_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "nmoran@yotpo.com", "alert_channels": ["meteors-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.3822713, "relation_name": "dev_dkruh1.loyalty_stg__widget_types", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('loyalty__widgetrepodb', 'widget_types') }}\n\n), loyalty_stg__widget_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tdefault_template_id,\n\t\tdefault_customization_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__widget_types", "language": "sql", "refs": [], "sources": [["loyalty__widgetrepodb", "widget_types"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__widgetrepodb.widget_types"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM widgetrepodb.widget_types\n\n), loyalty_stg__widget_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tdefault_template_id,\n\t\tdefault_customization_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__widget_types", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__yotpo_platform_accounts": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__yotpo_platform_accounts", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.sql", "unique_id": "model.yoda.loyalty_stg__yotpo_platform_accounts", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__yotpo_platform_accounts", "loyalty_stg__yotpo_platform_accounts"], "alias": "loyalty_stg__yotpo_platform_accounts", "checksum": {"name": "sha256", "checksum": "4b1d348ee20b038e4d6de85560e080419c7e8b80312f4b81801fae77eda8050b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Source Description", "columns": {"updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_secret": {"name": "app_secret", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "org_key": {"name": "org_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.3968873, "relation_name": "dev_dkruh1.loyalty_stg__yotpo_platform_accounts", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('loyalty__chainperks', 'yotpo_platform_accounts') }}\n\n), loyalty_stg__yotpo_platform_accounts AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tapp_key,\n\t\tapp_secret,\n\t\tid,\n\t\tmerchant_id,\n\t\torg_key\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__yotpo_platform_accounts", "language": "sql", "refs": [], "sources": [["loyalty__chainperks", "yotpo_platform_accounts"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.loyalty__chainperks.yotpo_platform_accounts"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM chainperks.yotpo_platform_accounts\n\n), loyalty_stg__yotpo_platform_accounts AS (\n\n SELECT \n\t\tupdated_at,\n\t\tcreated_at,\n\t\tapp_key,\n\t\tapp_secret,\n\t\tid,\n\t\tmerchant_id,\n\t\torg_key\n FROM source\n\n)\n\nSELECT * \nFROM loyalty_stg__yotpo_platform_accounts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__all_redemption_to_purchase": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__all_redemption_to_purchase", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.sql", "unique_id": "model.yoda.loyalty_stg__all_redemption_to_purchase", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__all_redemption_to_purchase", "loyalty_stg__all_redemption_to_purchase"], "alias": "loyalty_stg__all_redemption_to_purchase", "checksum": {"name": "sha256", "checksum": "b89067252fc868d1ac32b5222df0adc6a0e46719acd586de386b418b99af629b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "the table join redaemption with purchase by 2 way\ntied - by table purchases_redemptions\nuntied - All customers that received a loyalty reward and made a purchase 24 hours post the reward. \nFor a purchase that has more than one redemption, all of them will be aggregated together to leave the unique purchase_id", "columns": {"point_redemptions_id": {"name": "point_redemptions_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_redemption_tied_to_purchase": {"name": "is_redemption_tied_to_purchase", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "csterling@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082677.4119406, "relation_name": "dev_dkruh1.loyalty_stg__all_redemption_to_purchase", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH customers As (\n select customer_id as id \n from {{ ref('loyalty_stg__enriched_customers') }}\n where exclude_from_reports = 0\n\n),purchases_redemptions AS (\n\n SELECT \n purchase_id,\n redemption_id\n FROM {{ ref('loyalty_stg__purchases_redemptions') }}\n\n), point_redemptions as (\n select\n id, \n merchant_id,\n redemption_option_id,\n customer_id,\n created_at,\n at_checkout,\n visible\n from {{ ref('loyalty_stg__point_redemptions') }}\n \n), purchases AS (\n\n SELECT \n p.id,\n swell_discount_cost_cents,\n merchant_id,\n customer_id,\n created_at\n FROM {{ ref('loyalty_stg__purchases') }} as p\n inner join customers on customers.id = customer_id\n\n), tied_redemption_to_purchase as(\n\n select \n p.merchant_id,\n point_redemptions.id as point_redemptions_id,\n purchases_redemptions.purchase_id as purchase_id,\n point_redemptions.redemption_option_id as redemption_option_id,\n p.customer_id\n from point_redemptions \n inner join purchases_redemptions on\n point_redemptions.id = purchases_redemptions.redemption_id\n inner join purchases p on\n p.id = purchases_redemptions.purchase_id\n\n union all\n\n select \n purchases.merchant_id,\n null as point_redemptions_id,\n purchases.id,\n null as redemption_option_id,\n purchases.customer_id\n\n from purchases\n left join purchases_redemptions pr \n on purchases.id = pr.purchase_id\n where \n pr.purchase_id is null \n and purchases.swell_discount_cost_cents > 0 \n\n), redemptions_with_no_purchases AS (\n\n select \n r.id,\n r.created_at,\n r.merchant_id,\n r.customer_id,\n r.redemption_option_id\n from point_redemptions r\n left join purchases_redemptions tied \n on r.id = tied.redemption_id\n where tied.redemption_id is null\n and r.at_checkout = false\n and r.visible = true \n \n ), purchases_with_no_redemptions AS (\n\n select \n p.id,\n p.created_at,\n p.merchant_id,\n p.customer_id\n from purchases p\n left join tied_redemption_to_purchase tied \n on p.id = tied.purchase_id\n where tied.purchase_id is null\n\n ), redemption_to_purchase_tied_by_date AS (\n select \n r.id as point_redemptions_id,\n r.created_at as redemption_created_at,\n p.id as purchase_id,\n p.created_at as purchase_created_at,\n r.merchant_id,\n p.customer_id,\n r.redemption_option_id,\n row_number() OVER(PARTITION BY r.id ORDER BY p.created_at) as rn_purchase,\n row_number() OVER(PARTITION BY p.id ORDER BY r.created_at) as rn_redemption\n from redemptions_with_no_purchases r\n inner join purchases_with_no_redemptions p on \n r.merchant_id = p.merchant_id\n and r.customer_id = p.customer_id\n and p.created_at between (r.created_at) and date_add(r.created_at, 1)\n \n ), redemption_to_purchase_tied_by_date_dist AS (\n select point_redemptions_id,\n purchase_id,\n purchase_created_at,\n merchant_id,\n customer_id,\n redemption_option_id\n from redemption_to_purchase_tied_by_date\n where rn_purchase = rn_redemption\n\n), all_redemption_to_purchase as(\n SELECT \n point_redemptions_id,\n purchase_id,\n merchant_id,\n customer_id,\n redemption_option_id,\n true as is_redemption_tied_to_purchase\n FROM\n tied_redemption_to_purchase\n\n union all\n\n SELECT \n point_redemptions_id,\n purchase_id,\n merchant_id,\n customer_id,\n redemption_option_id,\n false as is_redemption_tied_to_purchase\n FROM \n redemption_to_purchase_tied_by_date_dist\n\n)\n\nselect * from all_redemption_to_purchase", "language": "sql", "refs": [{"name": "loyalty_stg__enriched_customers", "package": null, "version": null}, {"name": "loyalty_stg__purchases_redemptions", "package": null, "version": null}, {"name": "loyalty_stg__point_redemptions", "package": null, "version": null}, {"name": "loyalty_stg__purchases", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__purchases_redemptions", "model.yoda.loyalty_stg__point_redemptions", "model.yoda.loyalty_stg__purchases"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH customers As (\n select customer_id as id \n from dev_dkruh1.loyalty_stg__enriched_customers\n where exclude_from_reports = 0\n\n),purchases_redemptions AS (\n\n SELECT \n purchase_id,\n redemption_id\n FROM dev_dkruh1.loyalty_stg__purchases_redemptions\n\n), point_redemptions as (\n select\n id, \n merchant_id,\n redemption_option_id,\n customer_id,\n created_at,\n at_checkout,\n visible\n from dev_dkruh1.loyalty_stg__point_redemptions\n \n), purchases AS (\n\n SELECT \n p.id,\n swell_discount_cost_cents,\n merchant_id,\n customer_id,\n created_at\n FROM dev_dkruh1.loyalty_stg__purchases as p\n inner join customers on customers.id = customer_id\n\n), tied_redemption_to_purchase as(\n\n select \n p.merchant_id,\n point_redemptions.id as point_redemptions_id,\n purchases_redemptions.purchase_id as purchase_id,\n point_redemptions.redemption_option_id as redemption_option_id,\n p.customer_id\n from point_redemptions \n inner join purchases_redemptions on\n point_redemptions.id = purchases_redemptions.redemption_id\n inner join purchases p on\n p.id = purchases_redemptions.purchase_id\n\n union all\n\n select \n purchases.merchant_id,\n null as point_redemptions_id,\n purchases.id,\n null as redemption_option_id,\n purchases.customer_id\n\n from purchases\n left join purchases_redemptions pr \n on purchases.id = pr.purchase_id\n where \n pr.purchase_id is null \n and purchases.swell_discount_cost_cents > 0 \n\n), redemptions_with_no_purchases AS (\n\n select \n r.id,\n r.created_at,\n r.merchant_id,\n r.customer_id,\n r.redemption_option_id\n from point_redemptions r\n left join purchases_redemptions tied \n on r.id = tied.redemption_id\n where tied.redemption_id is null\n and r.at_checkout = false\n and r.visible = true \n \n ), purchases_with_no_redemptions AS (\n\n select \n p.id,\n p.created_at,\n p.merchant_id,\n p.customer_id\n from purchases p\n left join tied_redemption_to_purchase tied \n on p.id = tied.purchase_id\n where tied.purchase_id is null\n\n ), redemption_to_purchase_tied_by_date AS (\n select \n r.id as point_redemptions_id,\n r.created_at as redemption_created_at,\n p.id as purchase_id,\n p.created_at as purchase_created_at,\n r.merchant_id,\n p.customer_id,\n r.redemption_option_id,\n row_number() OVER(PARTITION BY r.id ORDER BY p.created_at) as rn_purchase,\n row_number() OVER(PARTITION BY p.id ORDER BY r.created_at) as rn_redemption\n from redemptions_with_no_purchases r\n inner join purchases_with_no_redemptions p on \n r.merchant_id = p.merchant_id\n and r.customer_id = p.customer_id\n and p.created_at between (r.created_at) and date_add(r.created_at, 1)\n \n ), redemption_to_purchase_tied_by_date_dist AS (\n select point_redemptions_id,\n purchase_id,\n purchase_created_at,\n merchant_id,\n customer_id,\n redemption_option_id\n from redemption_to_purchase_tied_by_date\n where rn_purchase = rn_redemption\n\n), all_redemption_to_purchase as(\n SELECT \n point_redemptions_id,\n purchase_id,\n merchant_id,\n customer_id,\n redemption_option_id,\n true as is_redemption_tied_to_purchase\n FROM\n tied_redemption_to_purchase\n\n union all\n\n SELECT \n point_redemptions_id,\n purchase_id,\n merchant_id,\n customer_id,\n redemption_option_id,\n false as is_redemption_tied_to_purchase\n FROM \n redemption_to_purchase_tied_by_date_dist\n\n)\n\nselect * from all_redemption_to_purchase", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__domain_useradmin_to_customer_id": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__domain_useradmin_to_customer_id", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.sql", "unique_id": "model.yoda.loyalty_stg__domain_useradmin_to_customer_id", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__domain_useradmin_to_customer_id", "loyalty_stg__domain_useradmin_to_customer_id"], "alias": "loyalty_stg__domain_useradmin_to_customer_id", "checksum": {"name": "sha256", "checksum": "406ce51c6caf0782788b444d79b61b2b416a5a8568954abece110cf6d82bee73"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "domain_userid", "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"domain_userid": {"name": "domain_userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "incremental", "unique_key": "domain_userid", "incremental_strategy": "merge"}, "created_at": 1700082677.424208, "relation_name": "dev_dkruh1.loyalty_stg__domain_useradmin_to_customer_id", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key='domain_userid',\n incremental_strategy = 'merge',\n )\n}}\n\n\n\nWITH pixel_events AS (\n\n SELECT \n domain_userid,\n customer_id,\n partition_date \n FROM \n {{ ref('loyalty_stg__normalized_pixel_events') }}\n \n{% if is_incremental() %}\n\n WHERE \n partition_date >= (SELECT MAX(partition_date) FROM {{ this }})\n AND\n (domain_userid NOT IN (SELECT domain_userid FROM {{ this }} WHERE customer_id <> 0))\n\n{% endif %}\n\n),\nmapped_domain_ua_customer_id AS (\n\n SELECT \n domain_userid,\n MAX(partition_date) AS partition_date, \n MAX(\n CASE \n WHEN customer_id IS NULL OR customer_id = 0 THEN 0\n ELSE customer_id\n END) AS customer_id\n FROM \n pixel_events\n GROUP BY \n domain_userid \n \n)\n\nSELECT \n domain_userid,\n partition_date,\n customer_id \nFROM \n mapped_domain_ua_customer_id", "language": "sql", "refs": [{"name": "loyalty_stg__normalized_pixel_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__normalized_pixel_events"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\n\n\n\nWITH pixel_events AS (\n\n SELECT \n domain_userid,\n customer_id,\n partition_date \n FROM \n dev_dkruh1.loyalty_stg__normalized_pixel_events\n \n\n\n),\nmapped_domain_ua_customer_id AS (\n\n SELECT \n domain_userid,\n MAX(partition_date) AS partition_date, \n MAX(\n CASE \n WHEN customer_id IS NULL OR customer_id = 0 THEN 0\n ELSE customer_id\n END) AS customer_id\n FROM \n pixel_events\n GROUP BY \n domain_userid \n \n)\n\nSELECT \n domain_userid,\n partition_date,\n customer_id \nFROM \n mapped_domain_ua_customer_id", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__enriched_customers": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__enriched_customers", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.sql", "unique_id": "model.yoda.loyalty_stg__enriched_customers", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__enriched_customers", "loyalty_stg__enriched_customers"], "alias": "loyalty_stg__enriched_customers", "checksum": {"name": "sha256", "checksum": "2b02e966f4c480333cea7c0bb2a44af1f0dddc56b11449a082f787989910240a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "Customers joined with group customers such that each customer record contains the additional attributes stored in group_customers table", "columns": {"customer_id": {"name": "customer_id", "description": "TODO: Update Column customer_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_customer_id": {"name": "group_customer_id", "description": "each customer is assigned to a group customer, customers can share group customer if they are in same group", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column merchant_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_number": {"name": "phone_number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_account_id": {"name": "store_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "TODO: Update Column group_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_name": {"name": "first_name", "description": "TODO: Update Column first_name Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Column last_name Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column name Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "coming from group customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_balance": {"name": "points_balance", "description": "coming from group customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "coming from group customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_by_customer_id": {"name": "referred_by_customer_id", "description": "TODO: Update Column referred_by_customer_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_purchase_at": {"name": "last_purchase_at", "description": "TODO: Update Column last_purchase_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column created_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_member": {"name": "is_member", "description": "wether the customer has opened an account with the store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "exclude_from_reports": {"name": "exclude_from_reports", "description": "coming from group customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "last_seen_at": {"name": "last_seen_at", "description": "coming from group customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082677.4493225, "relation_name": "dev_dkruh1.loyalty_stg__enriched_customers", "raw_code": "WITH loyalty_stg__customers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__customers') }}\n\n),loyalty_stg__group_customers AS (\n\n SELECT * FROM {{ ref('loyalty_stg__group_customers') }}\n\n), loyalty_stg__enriched_customers AS (\n\n SELECT \n loyalty_stg__customers.id as customer_id,\n loyalty_stg__group_customers.id as group_customer_id,\n loyalty_stg__customers.merchant_id,\n loyalty_stg__customers.phone_number,\n loyalty_stg__customers.store_account_id,\n loyalty_stg__group_customers.group_id,\n loyalty_stg__customers.first_name,\n loyalty_stg__customers.last_name,\n loyalty_stg__customers.name,\n loyalty_stg__group_customers.email,\n loyalty_stg__group_customers.points_balance,\n loyalty_stg__group_customers.points_earned,\n loyalty_stg__customers.referred_by_customer_id,\n CAST(loyalty_stg__customers.last_purchase_at as TIMESTAMP) as last_purchase_at,\n loyalty_stg__customers.created_at,\n loyalty_stg__customers.updated_at,\n CAST(loyalty_stg__customers.is_member as BOOLEAN) as is_member,\n CAST(loyalty_stg__group_customers.exclude_from_reports as BOOLEAN) as exclude_from_reports,\n CAST(loyalty_stg__group_customers.last_seen_at as TIMESTAMP) as last_seen_at\n FROM loyalty_stg__customers\n LEFT JOIN loyalty_stg__group_customers\n ON loyalty_stg__customers.group_customer_id = loyalty_stg__group_customers.id\n\n)\n\nSELECT * \nFROM loyalty_stg__enriched_customers", "language": "sql", "refs": [{"name": "loyalty_stg__customers", "package": null, "version": null}, {"name": "loyalty_stg__group_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__customers", "model.yoda.loyalty_stg__group_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.sql", "compiled": true, "compiled_code": "WITH loyalty_stg__customers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__customers\n\n),loyalty_stg__group_customers AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__group_customers\n\n), loyalty_stg__enriched_customers AS (\n\n SELECT \n loyalty_stg__customers.id as customer_id,\n loyalty_stg__group_customers.id as group_customer_id,\n loyalty_stg__customers.merchant_id,\n loyalty_stg__customers.phone_number,\n loyalty_stg__customers.store_account_id,\n loyalty_stg__group_customers.group_id,\n loyalty_stg__customers.first_name,\n loyalty_stg__customers.last_name,\n loyalty_stg__customers.name,\n loyalty_stg__group_customers.email,\n loyalty_stg__group_customers.points_balance,\n loyalty_stg__group_customers.points_earned,\n loyalty_stg__customers.referred_by_customer_id,\n CAST(loyalty_stg__customers.last_purchase_at as TIMESTAMP) as last_purchase_at,\n loyalty_stg__customers.created_at,\n loyalty_stg__customers.updated_at,\n CAST(loyalty_stg__customers.is_member as BOOLEAN) as is_member,\n CAST(loyalty_stg__group_customers.exclude_from_reports as BOOLEAN) as exclude_from_reports,\n CAST(loyalty_stg__group_customers.last_seen_at as TIMESTAMP) as last_seen_at\n FROM loyalty_stg__customers\n LEFT JOIN loyalty_stg__group_customers\n ON loyalty_stg__customers.group_customer_id = loyalty_stg__group_customers.id\n\n)\n\nSELECT * \nFROM loyalty_stg__enriched_customers", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__normalized_pixel_events": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__normalized_pixel_events", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.sql", "unique_id": "model.yoda.loyalty_stg__normalized_pixel_events", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__normalized_pixel_events", "loyalty_stg__normalized_pixel_events"], "alias": "loyalty_stg__normalized_pixel_events", "checksum": {"name": "sha256", "checksum": "c6024fe11117f3776aaee0104bb29ed83da360ae320710b953f52982a14a2a41"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"domain_userid": {"name": "domain_userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "se_value": {"name": "se_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_checkout": {"name": "is_checkout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "share_type": {"name": "share_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "kongs", "created_by": "tposen@yotpo.com", "alert_channels": ["kongs-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082677.7188206, "relation_name": "dev_dkruh1.loyalty_stg__normalized_pixel_events", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ ref('loyalty_stg__onsite_v3') }}\n\n), loyalty_pixel_events AS (\n\n SELECT \n DATE(partition_date) AS partition_date,\n domain_userid,\n se_value,\n collector_tstamp,\n page_url,\n se_action,\n se_category,\n se_property,\n se_label,\n get_json_object(context, '$.customer_id') AS customer_id,\n get_json_object(context, '$.is_mobile') AS is_mobile, \n get_json_object(context, '$.share_type') AS share_type\n FROM source\n WHERE se_category = 'referral-widget-page' or se_category = 'share-product-widget'\n),\n\nloyalty_manipulated_pixel_events AS (\n\n SELECT \n domain_userid,\n partition_date,\n se_value,\n date(collector_tstamp),\n page_url,\n se_action,\n se_category,\n se_property,\n se_label,\n CAST(customer_id AS bigint) as customer_id,\n CASE \n WHEN is_mobile = 'true' THEN 1\n ELSE 0\n END AS is_mobile,\n CASE WHEN page_url LIKE '%checkout%' OR page_url LIKE '%order%' \n THEN true\n ELSE false\n END AS is_checkout,\n CASE WHEN share_type LIKE '%whatapp%' \n THEN 'whatsapp'\n WHEN share_type LIKE '%messenger%' \n THEN 'messenger'\n WHEN share_type LIKE '%gmail%' \n OR share_type LIKE '%outlook%' \n OR share_type LIKE '%yahoo%' \n THEN 'personal_email'\n WHEN share_type LIKE '%shares%' \n THEN LEFT(share_type,LENGTH(share_type) - 7)\n WHEN share_type IS null\n THEN 'unknown'\n ELSE share_type\n END AS share_type\n FROM loyalty_pixel_events\n)\n\nSELECT \n * \nFROM \n loyalty_manipulated_pixel_events", "language": "sql", "refs": [{"name": "loyalty_stg__onsite_v3", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__onsite_v3"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM dev_dkruh1.loyalty_stg__onsite_v3\n\n), loyalty_pixel_events AS (\n\n SELECT \n DATE(partition_date) AS partition_date,\n domain_userid,\n se_value,\n collector_tstamp,\n page_url,\n se_action,\n se_category,\n se_property,\n se_label,\n get_json_object(context, '$.customer_id') AS customer_id,\n get_json_object(context, '$.is_mobile') AS is_mobile, \n get_json_object(context, '$.share_type') AS share_type\n FROM source\n WHERE se_category = 'referral-widget-page' or se_category = 'share-product-widget'\n),\n\nloyalty_manipulated_pixel_events AS (\n\n SELECT \n domain_userid,\n partition_date,\n se_value,\n date(collector_tstamp),\n page_url,\n se_action,\n se_category,\n se_property,\n se_label,\n CAST(customer_id AS bigint) as customer_id,\n CASE \n WHEN is_mobile = 'true' THEN 1\n ELSE 0\n END AS is_mobile,\n CASE WHEN page_url LIKE '%checkout%' OR page_url LIKE '%order%' \n THEN true\n ELSE false\n END AS is_checkout,\n CASE WHEN share_type LIKE '%whatapp%' \n THEN 'whatsapp'\n WHEN share_type LIKE '%messenger%' \n THEN 'messenger'\n WHEN share_type LIKE '%gmail%' \n OR share_type LIKE '%outlook%' \n OR share_type LIKE '%yahoo%' \n THEN 'personal_email'\n WHEN share_type LIKE '%shares%' \n THEN LEFT(share_type,LENGTH(share_type) - 7)\n WHEN share_type IS null\n THEN 'unknown'\n ELSE share_type\n END AS share_type\n FROM loyalty_pixel_events\n)\n\nSELECT \n * \nFROM \n loyalty_manipulated_pixel_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.loyalty_stg__point_transaction": {"database": null, "schema": "dev_dkruh1", "name": "loyalty_stg__point_transaction", "resource_type": "model", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.sql", "unique_id": "model.yoda.loyalty_stg__point_transaction", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__point_transaction", "loyalty_stg__point_transaction"], "alias": "loyalty_stg__point_transaction", "checksum": {"name": "sha256", "checksum": "b3556b3aa9403eb1c7741402c3e0347e9ec7294c3d37b067106b4aec3a83e2aa"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["loyalty", "loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "transaction_id", "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["created_date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["loyalty"], "description": "TODO: Update Table Description", "columns": {"transaction_id": {"name": "transaction_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_group_id": {"name": "merchant_group_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_group_id": {"name": "customer_group_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_transaction_amount": {"name": "points_transaction_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transaction_type": {"name": "transaction_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason_type": {"name": "reason_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason_description": {"name": "reason_description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_cursor": {"name": "page_cursor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_transaction_id": {"name": "original_transaction_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_transaction_at": {"name": "original_transaction_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "debug_data": {"name": "debug_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_transaction_type_reset": {"name": "is_transaction_type_reset", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_transaction_type_earning": {"name": "is_transaction_type_earning", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_transaction_type_balance_only": {"name": "is_transaction_type_balance_only", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_redeemed": {"name": "is_redeemed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_expired": {"name": "is_expired", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["loyalty"], "meta": {"model_ownership": {"group": "loyalty", "team": "meteors", "created_by": "sarie@yotpo.com", "alert_channels": ["meteors-alerts", "bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "materialized": "incremental", "unique_key": "transaction_id", "incremental_strategy": "merge", "partition_by": ["created_date"]}, "created_at": 1700082677.744752, "relation_name": "dev_dkruh1.loyalty_stg__point_transaction", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n unique_key='transaction_id',\n incremental_strategy = 'merge',\n partition_by = ['created_date']\n )\n}}\n\n-- Import --\n\nWITH import_points_transaction AS (\nSELECT * \nFROM {{ ref('loyalty_stg__points_transaction') }}\n{{incremental_condition(data_type='DATE',destination_condition_column='created_date',query_condition_column='created_at',subtract=3)}}\n), \n\npoint_transaction_res AS (\nSELECT\n\tid AS transaction_id,\n\tgroup_id AS merchant_group_id,\n\tgroup_customer_id AS customer_group_id,\n\tcaused_in_store_id AS app_key,\n\tamount AS points_transaction_amount,\n\ttransaction_type,\n\treason_type,\n\treason_description,\n\tpage_cursor,\n\toriginal_transaction_id,\n\toriginal_transaction_at,\n\tdebug_data,\n\tTIMESTAMP(created_at) AS created_at,\n\tDATE(created_at) AS created_date,\n\tSMALLINT(IF(LOWER(transaction_type) = 'reset',1,0)) AS is_transaction_type_reset,\n\tSMALLINT(IF(LOWER(transaction_type) = 'earning',1,0)) AS is_transaction_type_earning,\n\tSMALLINT(IF(LOWER(transaction_type) = 'balance_only',1,0)) AS is_transaction_type_balance_only,\n\tSMALLINT(IF(LOWER(transaction_type) = 'balance_only' \n\t\t\tAND(LOWER(reason_type) IN ('redemption','api adjustment') \n\t\t\t\tOR (LOWER(reason_type) = 'manual adjustment' AND LOWER(reason_description) = 'redeem points for a discount'))\n\t\t\t\t,1,0)) AS is_redeemed,\n\tSMALLINT(IF(LOWER(reason_type) IN ('points expiration','opt out')\n\t\tOR (LOWER(reason_type) = 'manual adjustment' AND LOWER(reason_description) = 'manually expire points'),1,0)) AS is_expired,\n\tCURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_points_transaction\n)\n\nSELECT * \nFROM point_transaction_res", "language": "sql", "refs": [{"name": "loyalty_stg__points_transaction", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty_stg__points_transaction"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_points_transaction AS (\nSELECT * \nFROM dev_dkruh1.loyalty_stg__points_transaction\nWHERE DATE(created_at) <= DATE_SUB(CURRENT_DATE,1)\n), \n\npoint_transaction_res AS (\nSELECT\n\tid AS transaction_id,\n\tgroup_id AS merchant_group_id,\n\tgroup_customer_id AS customer_group_id,\n\tcaused_in_store_id AS app_key,\n\tamount AS points_transaction_amount,\n\ttransaction_type,\n\treason_type,\n\treason_description,\n\tpage_cursor,\n\toriginal_transaction_id,\n\toriginal_transaction_at,\n\tdebug_data,\n\tTIMESTAMP(created_at) AS created_at,\n\tDATE(created_at) AS created_date,\n\tSMALLINT(IF(LOWER(transaction_type) = 'reset',1,0)) AS is_transaction_type_reset,\n\tSMALLINT(IF(LOWER(transaction_type) = 'earning',1,0)) AS is_transaction_type_earning,\n\tSMALLINT(IF(LOWER(transaction_type) = 'balance_only',1,0)) AS is_transaction_type_balance_only,\n\tSMALLINT(IF(LOWER(transaction_type) = 'balance_only' \n\t\t\tAND(LOWER(reason_type) IN ('redemption','api adjustment') \n\t\t\t\tOR (LOWER(reason_type) = 'manual adjustment' AND LOWER(reason_description) = 'redeem points for a discount'))\n\t\t\t\t,1,0)) AS is_redeemed,\n\tSMALLINT(IF(LOWER(reason_type) IN ('points expiration','opt out')\n\t\tOR (LOWER(reason_type) = 'manual adjustment' AND LOWER(reason_description) = 'manually expire points'),1,0)) AS is_expired,\n\tCURRENT_TIMESTAMP AS dwh_updated_at\nFROM import_points_transaction\n)\n\nSELECT * \nFROM point_transaction_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.north_bound__segment_profile": {"database": null, "schema": "dev_dkruh1", "name": "north_bound__segment_profile", "resource_type": "model", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.sql", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.sql", "unique_id": "model.yoda.north_bound__segment_profile", "fqn": ["yoda", "north_bound", "marts", "north_bound__segment_profile", "north_bound__segment_profile"], "alias": "north_bound__segment_profile", "checksum": {"name": "sha256", "checksum": "26ab2ee2f2122fe2351b1e36382b068a73f7a696e36ef4edf5a62bde1f23fd8e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["north_bound", "yoda_segment", "north_bound"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "cturkel@yotpo.com", "alert_channels": ["north-bound-weekly-alerts"]}, "integration_config": {"segment": {"trigger_on_done": true, "properties": {"write_key_hint": "communication-production"}}}, "primary-key": "userId", "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["north_bound", "yoda_segment"], "description": "north_bound__segment_profile", "columns": {"userId": {"name": "userId", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "bigcommerce_plan_name": {"name": "bigcommerce_plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "notification_email": {"name": "notification_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopifyplan": {"name": "shopifyplan", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopifystoreage": {"name": "shopifystoreage", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsbumpautoreload": {"name": "smsbumpautoreload", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userEmail": {"name": "userEmail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopifyorderscount": {"name": "shopifyorderscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smscampaignscount": {"name": "smscampaignscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "emailcampaignscount": {"name": "emailcampaignscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsbumpautomationscount": {"name": "smsbumpautomationscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsbumpflowscount": {"name": "smsbumpflowscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsbumpintegrationscount": {"name": "smsbumpintegrationscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smssubscriberscount": {"name": "smssubscriberscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "emailsubscriberscount": {"name": "emailsubscriberscount", "description": "Number of email subscribers, values are in buckets", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsbump_plan_name": {"name": "smsbump_plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsbumpplantype": {"name": "smsbumpplantype", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smscreditsamount": {"name": "smscreditsamount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "forms_count": {"name": "forms_count", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "popup_tool_enabled": {"name": "popup_tool_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "keywords_count": {"name": "keywords_count", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pages_count": {"name": "pages_count", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaigns_count": {"name": "campaigns_count", "description": "Number of campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaigns_count_last_thirty_days": {"name": "campaigns_count_last_thirty_days", "description": "Campaigns sent last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_campaigns_count": {"name": "email_campaigns_count", "description": "Number of email campaigns sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_campaigns_count_last_thirty_days": {"name": "email_campaigns_count_last_thirty_days", "description": "Number of email campaigns sent last thirty days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_email_campaign_sent_date": {"name": "first_email_campaign_sent_date", "description": "Date of first sent campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_email_message_sent_date": {"name": "first_email_message_sent_date", "description": "Date of first sent email message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_sms_campaign_sent_date": {"name": "first_sms_campaign_sent_date", "description": "Date of first sms campaign sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_sms_message_sent_date": {"name": "first_sms_message_sent_date", "description": "Date of first sms message sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "klaviyo_integration_enabled": {"name": "klaviyo_integration_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "last_email_campaign_sent_date": {"name": "last_email_campaign_sent_date", "description": "Date of last email campaign sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_email_message_sent_date": {"name": "last_email_message_sent_date", "description": "Date of last email message sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_sms_campaign_sent_date": {"name": "last_sms_campaign_sent_date", "description": "Date of last sms campaign sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_sms_message_sent_date": {"name": "last_sms_message_sent_date", "description": "Date of last sms message sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "total_email_messages_sent": {"name": "total_email_messages_sent", "description": "Number of email messages sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_campaigns_sent_count": {"name": "sms_campaigns_sent_count", "description": "Total campaigns sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_campaigns_sent_last_thirty_days": {"name": "sms_campaigns_sent_last_thirty_days", "description": "Total campaigns sent last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent_chat_messages": {"name": "sent_chat_messages", "description": "Has user sent chat messages", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "email_enabled": {"name": "email_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_enabled_flows_welcome": {"name": "is_enabled_flows_welcome", "description": "Is welcome flow enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_enabled_flows_abandoned_checkout": {"name": "is_enabled_flows_abandoned_checkout", "description": "Is abandoned checkout flow enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_enabled_flows_customer_winback": {"name": "is_enabled_flows_customer_winback", "description": "Is customer winback flow enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_enabled_automation_winback": {"name": "is_enabled_automation_winback", "description": "Is winback automation enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_enabled_automation_abandoned_checkout": {"name": "is_enabled_automation_abandoned_checkout", "description": "Is abandonend checkout automation enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_enabled_automation_welcome": {"name": "is_enabled_automation_welcome", "description": "Is welcome automation enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sms_credits_used": {"name": "sms_credits_used", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_credits_used": {"name": "email_credits_used", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_subscribers_count": {"name": "sms_subscribers_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_count_last_three_months": {"name": "orders_count_last_three_months", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_count_last_thirty_days": {"name": "orders_count_last_thirty_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_subscribers_count": {"name": "email_subscribers_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_intent_popup_last_choice": {"name": "email_intent_popup_last_choice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "email_intent_popup_first_accept_date": {"name": "email_intent_popup_first_accept_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "email_intent_popup_first_decline_date": {"name": "email_intent_popup_first_decline_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "smsbumpcstoolscount": {"name": "smsbumpcstoolscount", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_using_bigcommerce": {"name": "is_using_bigcommerce", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_using_shopify": {"name": "is_using_shopify", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "cturkel@yotpo.com", "alert_channels": ["north-bound-weekly-alerts"]}, "integration_config": {"segment": {"trigger_on_done": true, "properties": {"write_key_hint": "communication-production"}}}, "primary-key": "userId", "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["yoda_segment", "north_bound"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "cturkel@yotpo.com", "alert_channels": ["north-bound-weekly-alerts"]}, "integration_config": {"segment": {"trigger_on_done": true, "properties": {"write_key_hint": "communication-production"}}}, "primary-key": "userId", "cluster_profile": {"name": "large"}}}, "created_at": 1700082677.8585672, "relation_name": "dev_dkruh1.north_bound__segment_profile", "raw_code": "{{ dbt_data_applications.profile(\n keys=['userId'],\n sources=[\n { \n 'source': ref('communication_stg__measurements_bigcommerce_users'), \n 'fields': ['bigcommerce_plan_name'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__measurements_shopify_users'), \n 'fields': ['notification_email', 'shopifyplan', 'shopifystoreage', 'smsbumpautoreload', 'userEmail'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__shopify_orders'), \n 'fields': ['shopifyorderscount'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__sms_campaigns_count'), \n 'fields': ['smscampaignscount'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__email_campaigns_count'), \n 'fields': ['emailcampaignscount'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__automations_count'),\n 'fields': ['smsbumpautomationscount'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__flows_count'), \n 'fields': ['smsbumpflowscount'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__integrations_count'), \n 'fields': ['smsbumpintegrationscount'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__sms_subscribers_count'), \n 'fields': ['smssubscriberscount'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__email_subscribers_count'), \n 'fields': ['emailsubscriberscount'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__measurements_users'), \n 'fields': ['smsbump_plan_name', 'smsbumpplantype', 'smscreditsamount'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__cs_forms_count'), \n 'fields': ['forms_count', 'popup_tool_enabled'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__cs_keywords_count'), \n 'fields': ['keywords_count'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__cs_pages_count'), \n 'fields': ['pages_count'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__campaigns_sent_count'), \n 'fields': ['campaigns_count'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__campaigns_sent_last_thirty_days_count'), \n 'fields': ['campaigns_count_last_thirty_days'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__email_campaigns_sent_count'), \n 'fields': ['email_campaigns_count'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__email_campaigns_sent_last_thirty_days_count'), \n 'fields': ['email_campaigns_count_last_thirty_days'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__first_email_campaign_sent'), \n 'fields': ['first_email_campaign_sent_date'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__first_email_message_sent'), \n 'fields': ['first_email_message_sent_date'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__first_sms_campaign_sent'), \n 'fields': ['first_sms_campaign_sent_date'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__first_sms_message_sent'), \n 'fields': ['first_sms_message_sent_date'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__klaviyo_integration_enabled'), \n 'fields': ['klaviyo_integration_enabled'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__last_email_campaign_sent'), \n 'fields': ['last_email_campaign_sent_date'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__last_email_message_sent'), \n 'fields': ['last_email_message_sent_date'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__last_sms_campaign_sent'), \n 'fields': ['last_sms_campaign_sent_date'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__last_sms_message_sent'), \n 'fields': ['last_sms_message_sent_date'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__overall_emails_sent_from_campaigns'), \n 'fields': ['total_email_messages_sent'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__sms_campaigns_sent_count'), \n 'fields': ['sms_campaigns_sent_count'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__sms_campaigns_sent_last_thirty_days_count'), \n 'fields': ['sms_campaigns_sent_last_thirty_days'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__send_chat_message'), \n 'fields': ['sent_chat_messages'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__active_users_flags'), \n 'fields': ['email_enabled'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n {\n 'source': ref('communication_stg__flows_welcome_active'), \n 'fields': ['is_enabled_flows_welcome'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__flows_abandoned_checkout_active'), \n 'fields': ['is_enabled_flows_abandoned_checkout'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__flows_customer_winback_active'), \n 'fields': ['is_enabled_flows_customer_winback'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__automations_customer_winback_active'), \n 'fields': ['is_enabled_automation_winback'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__automations_abandoned_checkout_active'), \n 'fields': ['is_enabled_automation_abandoned_checkout'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__automations_welcome_active'), \n 'fields': ['is_enabled_automation_welcome'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__total_subscribers_sms_count'), \n 'fields': ['sms_subscribers_count'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__total_orders_avg_last_three_months'), \n 'fields': ['orders_count_last_three_months'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__total_orders_avg_last_thirty_days'), \n 'fields': ['orders_count_last_thirty_days'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__total_subscribers_email_count'), \n 'fields': ['email_subscribers_count'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__email_intent_popup_status'), \n 'fields': ['email_intent_popup_last_choice'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__email_intent_popup_first_accept_date'), \n 'fields': ['email_intent_popup_first_accept_date'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__email_intent_popup_first_decline_date'), \n 'fields': ['email_intent_popup_first_decline_date'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__total_revenue_all_channels_last_thirty_days'), \n 'fields': ['total_revenue_all_channels_last_thirty_days'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__total_revenue_all_channels_last_three_months'), \n 'fields': ['total_revenue_all_channels_last_three_months'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__total_revenue_all_channels_all_time'), \n 'fields': ['total_revenue_all_channels_all_time'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__total_revenue_sms_last_thirty_days'), \n 'fields': ['total_revenue_sms_last_thirty_days'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__total_revenue_sms_last_three_months'), \n 'fields': ['total_revenue_sms_last_three_months'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__total_revenue_email_last_thirty_days'), \n 'fields': ['total_revenue_email_last_thirty_days'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__total_revenue_email_last_three_months'), \n 'fields': ['total_revenue_email_last_three_months'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__email_usage_avg_last_three_months'), \n 'fields': ['email_credits_used_last_three_months_average'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n { \n 'source': ref('communication_stg__sms_usage_avg_last_three_months'), \n 'fields': ['sms_credits_used_last_three_months_average'],\n 'foreign_key_mappings': {'user_id': 'userId'}\n },\n ],\n custom_columns=[\n 'CASE\n WHEN IFNULL(forms_count, 0) + IFNULL(keywords_count, 0) + IFNULL(pages_count, 0) > 10 THEN \"10+\"\n WHEN IFNULL(forms_count, 0) + IFNULL(keywords_count, 0) + IFNULL(pages_count, 0) > 5 THEN \"6-10\"\n WHEN IFNULL(forms_count, 0) + IFNULL(keywords_count, 0) + IFNULL(pages_count, 0) > 1 THEN \"2-5\"\n WHEN IFNULL(forms_count, 0) + IFNULL(keywords_count, 0) + IFNULL(pages_count, 0) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smsbumpcstoolscount',\n 'IF(bigcommerce_plan_name IS NOT NULL, 1, 0) AS is_using_bigcommerce',\n 'IF(shopifyplan IS NOT NULL, 1, 0) AS is_using_shopify'\n ]\n\n) }}", "language": "sql", "refs": [{"name": "communication_stg__measurements_bigcommerce_users", "package": null, "version": null}, {"name": "communication_stg__measurements_shopify_users", "package": null, "version": null}, {"name": "communication_stg__shopify_orders", "package": null, "version": null}, {"name": "communication_stg__sms_campaigns_count", "package": null, "version": null}, {"name": "communication_stg__email_campaigns_count", "package": null, "version": null}, {"name": "communication_stg__automations_count", "package": null, "version": null}, {"name": "communication_stg__flows_count", "package": null, "version": null}, {"name": "communication_stg__integrations_count", "package": null, "version": null}, {"name": "communication_stg__sms_subscribers_count", "package": null, "version": null}, {"name": "communication_stg__email_subscribers_count", "package": null, "version": null}, {"name": "communication_stg__measurements_users", "package": null, "version": null}, {"name": "communication_stg__cs_forms_count", "package": null, "version": null}, {"name": "communication_stg__cs_keywords_count", "package": null, "version": null}, {"name": "communication_stg__cs_pages_count", "package": null, "version": null}, {"name": "communication_stg__campaigns_sent_count", "package": null, "version": null}, {"name": "communication_stg__campaigns_sent_last_thirty_days_count", "package": null, "version": null}, {"name": "communication_stg__email_campaigns_sent_count", "package": null, "version": null}, {"name": "communication_stg__email_campaigns_sent_last_thirty_days_count", "package": null, "version": null}, {"name": "communication_stg__first_email_campaign_sent", "package": null, "version": null}, {"name": "communication_stg__first_email_message_sent", "package": null, "version": null}, {"name": "communication_stg__first_sms_campaign_sent", "package": null, "version": null}, {"name": "communication_stg__first_sms_message_sent", "package": null, "version": null}, {"name": "communication_stg__klaviyo_integration_enabled", "package": null, "version": null}, {"name": "communication_stg__last_email_campaign_sent", "package": null, "version": null}, {"name": "communication_stg__last_email_message_sent", "package": null, "version": null}, {"name": "communication_stg__last_sms_campaign_sent", "package": null, "version": null}, {"name": "communication_stg__last_sms_message_sent", "package": null, "version": null}, {"name": "communication_stg__overall_emails_sent_from_campaigns", "package": null, "version": null}, {"name": "communication_stg__sms_campaigns_sent_count", "package": null, "version": null}, {"name": "communication_stg__sms_campaigns_sent_last_thirty_days_count", "package": null, "version": null}, {"name": "communication_stg__send_chat_message", "package": null, "version": null}, {"name": "communication_stg__active_users_flags", "package": null, "version": null}, {"name": "communication_stg__flows_welcome_active", "package": null, "version": null}, {"name": "communication_stg__flows_abandoned_checkout_active", "package": null, "version": null}, {"name": "communication_stg__flows_customer_winback_active", "package": null, "version": null}, {"name": "communication_stg__automations_customer_winback_active", "package": null, "version": null}, {"name": "communication_stg__automations_abandoned_checkout_active", "package": null, "version": null}, {"name": "communication_stg__automations_welcome_active", "package": null, "version": null}, {"name": "communication_stg__total_subscribers_sms_count", "package": null, "version": null}, {"name": "communication_stg__total_orders_avg_last_three_months", "package": null, "version": null}, {"name": "communication_stg__total_orders_avg_last_thirty_days", "package": null, "version": null}, {"name": "communication_stg__total_subscribers_email_count", "package": null, "version": null}, {"name": "communication_stg__email_intent_popup_status", "package": null, "version": null}, {"name": "communication_stg__email_intent_popup_first_accept_date", "package": null, "version": null}, {"name": "communication_stg__email_intent_popup_first_decline_date", "package": null, "version": null}, {"name": "communication_stg__total_revenue_all_channels_last_thirty_days", "package": null, "version": null}, {"name": "communication_stg__total_revenue_all_channels_last_three_months", "package": null, "version": null}, {"name": "communication_stg__total_revenue_all_channels_all_time", "package": null, "version": null}, {"name": "communication_stg__total_revenue_sms_last_thirty_days", "package": null, "version": null}, {"name": "communication_stg__total_revenue_sms_last_three_months", "package": null, "version": null}, {"name": "communication_stg__total_revenue_email_last_thirty_days", "package": null, "version": null}, {"name": "communication_stg__total_revenue_email_last_three_months", "package": null, "version": null}, {"name": "communication_stg__email_usage_avg_last_three_months", "package": null, "version": null}, {"name": "communication_stg__sms_usage_avg_last_three_months", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.profile", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.communication_stg__measurements_bigcommerce_users", "model.yoda.communication_stg__measurements_shopify_users", "model.yoda.communication_stg__shopify_orders", "model.yoda.communication_stg__sms_campaigns_count", "model.yoda.communication_stg__email_campaigns_count", "model.yoda.communication_stg__automations_count", "model.yoda.communication_stg__flows_count", "model.yoda.communication_stg__integrations_count", "model.yoda.communication_stg__sms_subscribers_count", "model.yoda.communication_stg__email_subscribers_count", "model.yoda.communication_stg__measurements_users", "model.yoda.communication_stg__cs_forms_count", "model.yoda.communication_stg__cs_keywords_count", "model.yoda.communication_stg__cs_pages_count", "model.yoda.communication_stg__campaigns_sent_count", "model.yoda.communication_stg__campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__email_campaigns_sent_count", "model.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__first_email_campaign_sent", "model.yoda.communication_stg__first_email_message_sent", "model.yoda.communication_stg__first_sms_campaign_sent", "model.yoda.communication_stg__first_sms_message_sent", "model.yoda.communication_stg__klaviyo_integration_enabled", "model.yoda.communication_stg__last_email_campaign_sent", "model.yoda.communication_stg__last_email_message_sent", "model.yoda.communication_stg__last_sms_campaign_sent", "model.yoda.communication_stg__last_sms_message_sent", "model.yoda.communication_stg__overall_emails_sent_from_campaigns", "model.yoda.communication_stg__sms_campaigns_sent_count", "model.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__send_chat_message", "model.yoda.communication_stg__active_users_flags", "model.yoda.communication_stg__flows_welcome_active", "model.yoda.communication_stg__flows_abandoned_checkout_active", "model.yoda.communication_stg__flows_customer_winback_active", "model.yoda.communication_stg__automations_customer_winback_active", "model.yoda.communication_stg__automations_abandoned_checkout_active", "model.yoda.communication_stg__automations_welcome_active", "model.yoda.communication_stg__total_subscribers_sms_count", "model.yoda.communication_stg__total_orders_avg_last_three_months", "model.yoda.communication_stg__total_orders_avg_last_thirty_days", "model.yoda.communication_stg__total_subscribers_email_count", "model.yoda.communication_stg__email_intent_popup_status", "model.yoda.communication_stg__email_intent_popup_first_accept_date", "model.yoda.communication_stg__email_intent_popup_first_decline_date", "model.yoda.communication_stg__total_revenue_all_channels_last_thirty_days", "model.yoda.communication_stg__total_revenue_all_channels_last_three_months", "model.yoda.communication_stg__total_revenue_all_channels_all_time", "model.yoda.communication_stg__total_revenue_sms_last_thirty_days", "model.yoda.communication_stg__total_revenue_sms_last_three_months", "model.yoda.communication_stg__total_revenue_email_last_thirty_days", "model.yoda.communication_stg__total_revenue_email_last_three_months", "model.yoda.communication_stg__email_usage_avg_last_three_months", "model.yoda.communication_stg__sms_usage_avg_last_three_months"]}, "compiled_path": "target/compiled/yoda/models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.sql", "compiled": true, "compiled_code": "WITH sources_union AS (\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__measurements_bigcommerce_users' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__measurements_bigcommerce_users\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__measurements_shopify_users' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__measurements_shopify_users\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__shopify_orders' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__shopify_orders\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__sms_campaigns_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__sms_campaigns_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__email_campaigns_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__email_campaigns_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__automations_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__automations_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__flows_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__flows_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__integrations_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__integrations_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__sms_subscribers_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__sms_subscribers_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__email_subscribers_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__email_subscribers_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__measurements_users' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__measurements_users\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__cs_forms_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__cs_forms_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__cs_keywords_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__cs_keywords_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__cs_pages_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__cs_pages_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__campaigns_sent_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__campaigns_sent_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__campaigns_sent_last_thirty_days_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__campaigns_sent_last_thirty_days_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__email_campaigns_sent_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__email_campaigns_sent_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__email_campaigns_sent_last_thirty_days_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__email_campaigns_sent_last_thirty_days_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__first_email_campaign_sent' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__first_email_campaign_sent\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__first_email_message_sent' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__first_email_message_sent\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__first_sms_campaign_sent' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__first_sms_campaign_sent\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__first_sms_message_sent' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__first_sms_message_sent\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__klaviyo_integration_enabled' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__klaviyo_integration_enabled\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__last_email_campaign_sent' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__last_email_campaign_sent\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__last_email_message_sent' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__last_email_message_sent\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__last_sms_campaign_sent' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__last_sms_campaign_sent\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__last_sms_message_sent' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__last_sms_message_sent\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__overall_emails_sent_from_campaigns' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__overall_emails_sent_from_campaigns\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__sms_campaigns_sent_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__sms_campaigns_sent_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__sms_campaigns_sent_last_thirty_days_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__sms_campaigns_sent_last_thirty_days_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__send_chat_message' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__send_chat_message\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__active_users_flags' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__active_users_flags\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__flows_welcome_active' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__flows_welcome_active\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__flows_abandoned_checkout_active' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__flows_abandoned_checkout_active\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__flows_customer_winback_active' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__flows_customer_winback_active\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__automations_customer_winback_active' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__automations_customer_winback_active\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__automations_abandoned_checkout_active' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__automations_abandoned_checkout_active\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__automations_welcome_active' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__automations_welcome_active\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__total_subscribers_sms_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__total_subscribers_sms_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__total_orders_avg_last_three_months' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__total_orders_avg_last_three_months\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__total_orders_avg_last_thirty_days' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__total_orders_avg_last_thirty_days\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__total_subscribers_email_count' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__total_subscribers_email_count\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__email_intent_popup_status' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__email_intent_popup_status\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__email_intent_popup_first_accept_date' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__email_intent_popup_first_accept_date\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__email_intent_popup_first_decline_date' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__email_intent_popup_first_decline_date\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__total_revenue_all_channels_last_thirty_days' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__total_revenue_all_channels_last_thirty_days\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__total_revenue_all_channels_last_three_months' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__total_revenue_all_channels_last_three_months\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__total_revenue_all_channels_all_time' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__total_revenue_all_channels_all_time\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__total_revenue_sms_last_thirty_days' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__total_revenue_sms_last_thirty_days\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__total_revenue_sms_last_three_months' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__total_revenue_sms_last_three_months\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__total_revenue_email_last_thirty_days' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__total_revenue_email_last_thirty_days\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__total_revenue_email_last_three_months' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__total_revenue_email_last_three_months\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__email_usage_avg_last_three_months' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__email_usage_avg_last_three_months\n )\n\n union all\n \n\n (\n select\n\n cast('dev_dkruh1.communication_stg__sms_usage_avg_last_three_months' as string) as _dbt_source_relation,\n \n\n from dev_dkruh1.communication_stg__sms_usage_avg_last_three_months\n )\n\n \n )\n , sources_union_grouped AS (\n SELECT sources_union.userId as userId\n , MAX(sources_union.bigcommerce_plan_name) as bigcommerce_plan_name\n , MAX(sources_union.notification_email) as notification_email\n , MAX(sources_union.shopifyplan) as shopifyplan\n , MAX(sources_union.shopifystoreage) as shopifystoreage\n , MAX(sources_union.smsbumpautoreload) as smsbumpautoreload\n , MAX(sources_union.userEmail) as userEmail\n , MAX(sources_union.shopifyorderscount) as shopifyorderscount\n , MAX(sources_union.smscampaignscount) as smscampaignscount\n , MAX(sources_union.emailcampaignscount) as emailcampaignscount\n , MAX(sources_union.smsbumpautomationscount) as smsbumpautomationscount\n , MAX(sources_union.smsbumpflowscount) as smsbumpflowscount\n , MAX(sources_union.smsbumpintegrationscount) as smsbumpintegrationscount\n , MAX(sources_union.smssubscriberscount) as smssubscriberscount\n , MAX(sources_union.emailsubscriberscount) as emailsubscriberscount\n , MAX(sources_union.smsbump_plan_name) as smsbump_plan_name\n , MAX(sources_union.smsbumpplantype) as smsbumpplantype\n , MAX(sources_union.smscreditsamount) as smscreditsamount\n , MAX(sources_union.forms_count) as forms_count\n , MAX(sources_union.popup_tool_enabled) as popup_tool_enabled\n , MAX(sources_union.keywords_count) as keywords_count\n , MAX(sources_union.pages_count) as pages_count\n , MAX(sources_union.campaigns_count) as campaigns_count\n , MAX(sources_union.campaigns_count_last_thirty_days) as campaigns_count_last_thirty_days\n , MAX(sources_union.email_campaigns_count) as email_campaigns_count\n , MAX(sources_union.email_campaigns_count_last_thirty_days) as email_campaigns_count_last_thirty_days\n , MAX(sources_union.first_email_campaign_sent_date) as first_email_campaign_sent_date\n , MAX(sources_union.first_email_message_sent_date) as first_email_message_sent_date\n , MAX(sources_union.first_sms_campaign_sent_date) as first_sms_campaign_sent_date\n , MAX(sources_union.first_sms_message_sent_date) as first_sms_message_sent_date\n , MAX(sources_union.klaviyo_integration_enabled) as klaviyo_integration_enabled\n , MAX(sources_union.last_email_campaign_sent_date) as last_email_campaign_sent_date\n , MAX(sources_union.last_email_message_sent_date) as last_email_message_sent_date\n , MAX(sources_union.last_sms_campaign_sent_date) as last_sms_campaign_sent_date\n , MAX(sources_union.last_sms_message_sent_date) as last_sms_message_sent_date\n , MAX(sources_union.total_email_messages_sent) as total_email_messages_sent\n , MAX(sources_union.sms_campaigns_sent_count) as sms_campaigns_sent_count\n , MAX(sources_union.sms_campaigns_sent_last_thirty_days) as sms_campaigns_sent_last_thirty_days\n , MAX(sources_union.sent_chat_messages) as sent_chat_messages\n , MAX(sources_union.email_enabled) as email_enabled\n , MAX(sources_union.is_enabled_flows_welcome) as is_enabled_flows_welcome\n , MAX(sources_union.is_enabled_flows_abandoned_checkout) as is_enabled_flows_abandoned_checkout\n , MAX(sources_union.is_enabled_flows_customer_winback) as is_enabled_flows_customer_winback\n , MAX(sources_union.is_enabled_automation_winback) as is_enabled_automation_winback\n , MAX(sources_union.is_enabled_automation_abandoned_checkout) as is_enabled_automation_abandoned_checkout\n , MAX(sources_union.is_enabled_automation_welcome) as is_enabled_automation_welcome\n , MAX(sources_union.sms_subscribers_count) as sms_subscribers_count\n , MAX(sources_union.orders_count_last_three_months) as orders_count_last_three_months\n , MAX(sources_union.orders_count_last_thirty_days) as orders_count_last_thirty_days\n , MAX(sources_union.email_subscribers_count) as email_subscribers_count\n , MAX(sources_union.email_intent_popup_last_choice) as email_intent_popup_last_choice\n , MAX(sources_union.email_intent_popup_first_accept_date) as email_intent_popup_first_accept_date\n , MAX(sources_union.email_intent_popup_first_decline_date) as email_intent_popup_first_decline_date\n , MAX(sources_union.total_revenue_all_channels_last_thirty_days) as total_revenue_all_channels_last_thirty_days\n , MAX(sources_union.total_revenue_all_channels_last_three_months) as total_revenue_all_channels_last_three_months\n , MAX(sources_union.total_revenue_all_channels_all_time) as total_revenue_all_channels_all_time\n , MAX(sources_union.total_revenue_sms_last_thirty_days) as total_revenue_sms_last_thirty_days\n , MAX(sources_union.total_revenue_sms_last_three_months) as total_revenue_sms_last_three_months\n , MAX(sources_union.total_revenue_email_last_thirty_days) as total_revenue_email_last_thirty_days\n , MAX(sources_union.total_revenue_email_last_three_months) as total_revenue_email_last_three_months\n , MAX(sources_union.email_credits_used_last_three_months_average) as email_credits_used_last_three_months_average\n , MAX(sources_union.sms_credits_used_last_three_months_average) as sms_credits_used_last_three_months_average\n \n FROM sources_union \n GROUP BY sources_union.userId)\n\n\n SELECT userId\n , bigcommerce_plan_name\n , notification_email\n , shopifyplan\n , shopifystoreage\n , smsbumpautoreload\n , userEmail\n , shopifyorderscount\n , smscampaignscount\n , emailcampaignscount\n , smsbumpautomationscount\n , smsbumpflowscount\n , smsbumpintegrationscount\n , smssubscriberscount\n , emailsubscriberscount\n , smsbump_plan_name\n , smsbumpplantype\n , smscreditsamount\n , forms_count\n , popup_tool_enabled\n , keywords_count\n , pages_count\n , campaigns_count\n , campaigns_count_last_thirty_days\n , email_campaigns_count\n , email_campaigns_count_last_thirty_days\n , first_email_campaign_sent_date\n , first_email_message_sent_date\n , first_sms_campaign_sent_date\n , first_sms_message_sent_date\n , klaviyo_integration_enabled\n , last_email_campaign_sent_date\n , last_email_message_sent_date\n , last_sms_campaign_sent_date\n , last_sms_message_sent_date\n , total_email_messages_sent\n , sms_campaigns_sent_count\n , sms_campaigns_sent_last_thirty_days\n , sent_chat_messages\n , email_enabled\n , is_enabled_flows_welcome\n , is_enabled_flows_abandoned_checkout\n , is_enabled_flows_customer_winback\n , is_enabled_automation_winback\n , is_enabled_automation_abandoned_checkout\n , is_enabled_automation_welcome\n , sms_subscribers_count\n , orders_count_last_three_months\n , orders_count_last_thirty_days\n , email_subscribers_count\n , email_intent_popup_last_choice\n , email_intent_popup_first_accept_date\n , email_intent_popup_first_decline_date\n , total_revenue_all_channels_last_thirty_days\n , total_revenue_all_channels_last_three_months\n , total_revenue_all_channels_all_time\n , total_revenue_sms_last_thirty_days\n , total_revenue_sms_last_three_months\n , total_revenue_email_last_thirty_days\n , total_revenue_email_last_three_months\n , email_credits_used_last_three_months_average\n , sms_credits_used_last_three_months_average\n , CASE\n WHEN IFNULL(forms_count, 0) + IFNULL(keywords_count, 0) + IFNULL(pages_count, 0) > 10 THEN \"10+\"\n WHEN IFNULL(forms_count, 0) + IFNULL(keywords_count, 0) + IFNULL(pages_count, 0) > 5 THEN \"6-10\"\n WHEN IFNULL(forms_count, 0) + IFNULL(keywords_count, 0) + IFNULL(pages_count, 0) > 1 THEN \"2-5\"\n WHEN IFNULL(forms_count, 0) + IFNULL(keywords_count, 0) + IFNULL(pages_count, 0) = 1 THEN \"1\"\n ELSE \"0\"\n END AS smsbumpcstoolscount\n , IF(bigcommerce_plan_name IS NOT NULL, 1, 0) AS is_using_bigcommerce\n , IF(shopifyplan IS NOT NULL, 1, 0) AS is_using_shopify\n \n FROM sources_union_grouped \n\n \n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__cdp_streaming_aggregated_events": {"database": null, "schema": "dev_dkruh1", "name": "platform__cdp_streaming_aggregated_events", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.sql", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.sql", "unique_id": "model.yoda.platform__cdp_streaming_aggregated_events", "fqn": ["yoda", "platform", "marts", "platform__cdp_streaming_aggregated_events", "platform__cdp_streaming_aggregated_events"], "alias": "platform__cdp_streaming_aggregated_events", "checksum": {"name": "sha256", "checksum": "31e3a6fc5f066fc6debf5304d119b472e79d3d3dd2a5c243467ae2c582bb96fc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "singas", "created_by": "dcohen@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": [{"sql": "\n \n \n \n \n", "transaction": true, "index": null}]}, "tags": ["platform"], "description": "Platform singas CDP streaming aggregated events table, used for singas business metrics and internal usage", "columns": {"timestamp": {"name": "timestamp", "description": "Aggregated event timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "date": {"name": "date", "description": "Aggregated event date in 01/01/1970 format", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "year": {"name": "year", "description": "Aggregated event year", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "Aggregated event month", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "Aggregated event day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "event_type": {"name": "event_type", "description": "Aggregated event type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "Aggregated event store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "Aggregated event product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mode": {"name": "mode", "description": "Aggregated event mode (batch/stream/ etc)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "topic_name": {"name": "topic_name", "description": "Aggregated event topic name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "singas", "created_by": "dcohen@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "incremental", "meta": {"model_ownership": {"group": "platform", "team": "singas", "created_by": "dcohen@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}, "pre-hook": ["\n \n \n \n \n"], "incremental_strategy": "append"}, "created_at": 1700082678.0871863, "relation_name": "dev_dkruh1.platform__cdp_streaming_aggregated_events", "raw_code": "{{ config(pre_hook=[msck_repair([source('platform__singas', 'cdp_streaming_events')])]) }}\n\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append'\n )\n}}\n\nWITH platform_stg__cdp_streaming_events AS (\n\n SELECT *\n FROM {{ ref('platform_stg__cdp_streaming_events') }}\n {{incremental_condition(data_type='DATE',destination_condition_column='date',query_condition_column='date')}}\n\n), platform__singas_cdp_streaming_aggregated_events AS (\n\n SELECT\n timestamp AS timestamp,\n DATE(datetime) AS date,\n YEAR(datetime) AS year,\n MONTH(datetime) AS month,\n DAY(datetime) AS day,\n get_json_object(value, '$.eventType') AS event_type,\n get_json_object(value, '$.properties.cdpProperties.storeId') AS store_id,\n CASE\n WHEN topic IN('cdp.events.orders', 'cdp.events.identify_customer', 'cdp.batch.events.identify_customer', 'cdp.events.checkouts')\n OR topic LIKE '%customer_dimensions%' THEN 'platform'\n WHEN topic = 'cdp.events.events_removal' THEN 'remove_event'\n WHEN topic = 'cdp.events.core.enrichments.geo_location_enrichment' THEN 'platform'\n WHEN topic LIKE '%sms.back_in_stock%' THEN 'sms'\n WHEN topic LIKE '%cdp.events%' AND CHARINDEX('_', topic) > 0 THEN SUBSTRING(topic, 12, CHARINDEX('_', topic) - 12)\n WHEN topic LIKE '%cdp.batch.events%' AND CHARINDEX('_', topic) > 0 THEN SUBSTRING(topic, 18, CHARINDEX('_', topic) - 18)\n WHEN topic LIKE '%cdp.batch.events%' THEN SUBSTRING(topic, 18)\n ELSE SUBSTRING(topic, 12)\n END AS product,\n mode AS mode,\n topic AS topic_name\n FROM \n platform_stg__cdp_streaming_events\n\n)\n\nSELECT * \nFROM platform__singas_cdp_streaming_aggregated_events", "language": "sql", "refs": [{"name": "platform_stg__cdp_streaming_events", "package": null, "version": null}], "sources": [["platform__singas", "cdp_streaming_events"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.msck_repair", "macro.dbt_data_applications.get_table_materialization", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__singas.cdp_streaming_events", "model.yoda.platform_stg__cdp_streaming_events"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.sql", "compiled": true, "compiled_code": "\n\n\n\nWITH platform_stg__cdp_streaming_events AS (\n\n SELECT *\n FROM dev_dkruh1.platform_stg__cdp_streaming_events\n WHERE DATE(date) <= DATE_SUB(CURRENT_DATE,1)\n\n), platform__singas_cdp_streaming_aggregated_events AS (\n\n SELECT\n timestamp AS timestamp,\n DATE(datetime) AS date,\n YEAR(datetime) AS year,\n MONTH(datetime) AS month,\n DAY(datetime) AS day,\n get_json_object(value, '$.eventType') AS event_type,\n get_json_object(value, '$.properties.cdpProperties.storeId') AS store_id,\n CASE\n WHEN topic IN('cdp.events.orders', 'cdp.events.identify_customer', 'cdp.batch.events.identify_customer', 'cdp.events.checkouts')\n OR topic LIKE '%customer_dimensions%' THEN 'platform'\n WHEN topic = 'cdp.events.events_removal' THEN 'remove_event'\n WHEN topic = 'cdp.events.core.enrichments.geo_location_enrichment' THEN 'platform'\n WHEN topic LIKE '%sms.back_in_stock%' THEN 'sms'\n WHEN topic LIKE '%cdp.events%' AND CHARINDEX('_', topic) > 0 THEN SUBSTRING(topic, 12, CHARINDEX('_', topic) - 12)\n WHEN topic LIKE '%cdp.batch.events%' AND CHARINDEX('_', topic) > 0 THEN SUBSTRING(topic, 18, CHARINDEX('_', topic) - 18)\n WHEN topic LIKE '%cdp.batch.events%' THEN SUBSTRING(topic, 18)\n ELSE SUBSTRING(topic, 12)\n END AS product,\n mode AS mode,\n topic AS topic_name\n FROM \n platform_stg__cdp_streaming_events\n\n)\n\nSELECT * \nFROM platform__singas_cdp_streaming_aggregated_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__customer_dimensions_metrics": {"database": null, "schema": "dev_dkruh1", "name": "platform__customer_dimensions_metrics", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.sql", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.sql", "unique_id": "model.yoda.platform__customer_dimensions_metrics", "fqn": ["yoda", "platform", "marts", "platform__customer_dimensions_metrics", "platform__customer_dimensions_metrics"], "alias": "platform__customer_dimensions_metrics", "checksum": {"name": "sha256", "checksum": "398392417ed9cdc904697410fd1763ed06f43ddca719e176e679c5d2a8e2b792"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Table holding the customer dimensions and metrics for shopper", "columns": {"app_key": {"name": "app_key", "description": "The unique identifier of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "The customer platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "The customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "The customer phone", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "returning_buyers": {"name": "returning_buyers", "description": "The dimension score (e.g. prospects, single surchase, repeat purchase, frequent shopper)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "engagement_with_marketing_material": {"name": "engagement_with_marketing_material", "description": "The dimension score (e.g. unsubscribed, non an sms user, ignores, engaging, highly engaged)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "brand_affection": {"name": "brand_affection", "description": "The brand affection category", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "loyalty_tier": {"name": "loyalty_tier", "description": "The loyalty tier name (taken the string value of the vipTierName field with trailing spaces removed)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "likely_to_purchase": {"name": "likely_to_purchase", "description": "The likely to buy dimension (e.g. Low, Medium, High)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "churn_risk": {"name": "churn_risk", "description": "The churn risk dimension (e.g. High, Medium, Low) - inversion of likely_to_purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "avg_order_value_7d": {"name": "avg_order_value_7d", "description": "The average order value in the last 7 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_7d_trend": {"name": "avg_order_value_7d_trend", "description": "The average order value in the period of 7 to 14 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_30d": {"name": "avg_order_value_30d", "description": "The average order value in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_30d_trend": {"name": "avg_order_value_30d_trend", "description": "The average order value in the period of 30 to 60 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_90d": {"name": "avg_order_value_90d", "description": "The average order value in the last 90 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_90d_trend": {"name": "avg_order_value_90d_trend", "description": "The average order value in the period of 90 to 180 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_365d": {"name": "avg_order_value_365d", "description": "The average order value in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_365d_trend": {"name": "avg_order_value_365d_trend", "description": "The average order value in the period of 365 to 730 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_7d": {"name": "avg_time_between_orders_7d", "description": "The average time between orders in seconds in the last 7 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_7d_trend": {"name": "avg_time_between_orders_7d_trend", "description": "The average time between orders in seconds in the period of 7 to 14 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_30d": {"name": "avg_time_between_orders_30d", "description": "The average time between orders in seconds in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_30d_trend": {"name": "avg_time_between_orders_30d_trend", "description": "The average time between orders in seconds in the period of 30 to 60 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_90d": {"name": "avg_time_between_orders_90d", "description": "The average time between orders in seconds in the last 90 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_90d_trend": {"name": "avg_time_between_orders_90d_trend", "description": "The average time between orders in seconds in the period of 90 to 180 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_365d": {"name": "avg_time_between_orders_365d", "description": "The average time between orders in seconds in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_365d_trend": {"name": "avg_time_between_orders_365d_trend", "description": "The average time between orders in seconds in the period of 365 to 730 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "num_orders_7d": {"name": "num_orders_7d", "description": "The number of orders in the last 7 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_7d_trend": {"name": "num_orders_7d_trend", "description": "The number of orders in the period of 7 to 14 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_30d": {"name": "num_orders_30d", "description": "The number of orders in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_30d_trend": {"name": "num_orders_30d_trend", "description": "The number of orders in the period of 30 to 60 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_90d": {"name": "num_orders_90d", "description": "The number of orders in the last 90 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_90d_trend": {"name": "num_orders_90d_trend", "description": "The number of orders in the period of 90 to 180 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_365d": {"name": "num_orders_365d", "description": "The number of orders in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_365d_trend": {"name": "num_orders_365d_trend", "description": "The number of orders in the period of 365 to 730 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_order_timestamp": {"name": "last_order_timestamp", "description": "The timestamp of the last order of the customer", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "The date of segmentation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082678.1235797, "relation_name": "dev_dkruh1.platform__customer_dimensions_metrics", "raw_code": "WITH returning_buyers AS (\n\n SELECT * FROM {{ ref('platform_stg__customer_dimensions_returning_buyers') }}\n\n), engagement_with_marketing_material AS (\n\n SELECT * FROM {{ ref('platform_stg__customer_dimensions_engagement_marketing_material') }}\n\n), brand_affection AS (\n\n SELECT * FROM {{ ref('platform_stg__customer_dimensions_brand_affection') }}\n\n), loyalty_program AS (\n\n SELECT * FROM {{ ref('platform_stg__customer_dimensions_loyalty_program') }}\n\n), business_metrics AS (\n\n SELECT * FROM {{ ref('platform_stg__customer_dimensions_business_metrics') }}\n\n), churn_prediction AS (\n\n SELECT * FROM {{ source('platform__data_science', 'churn_prediction') }}\n\n), customer_dataset AS (\n\n SELECT * FROM {{ ref('platform_stg__customer_dataset') }}\n\n), customer_dimension_metrics AS (\n SELECT\n cd.storeId as app_key,\n cd.profileId as customer_id,\n cd.properties.platform AS platform,\n cd.properties.email AS email,\n cd.properties.phone AS phone,\n NAMED_STRUCT('name', rb.returning_buyers, 'rank', rb.returning_buyers_rank) as returning_buyers,\n NAMED_STRUCT('name', emm.engagement_with_marketing_material, 'rank', emm.engagement_with_marketing_material_rank) as engagement_with_marketing_material,\n NAMED_STRUCT('name', ba.brand_affection, 'rank', ba.brand_affection_rank) as brand_affection,\n NAMED_STRUCT('name', lp.loyalty_tier, 'rank', lp.loyalty_rank) as loyalty_tier,\n bm.avg_order_value_7d,\n bm.avg_order_value_7d_trend,\n bm.avg_order_value_30d,\n bm.avg_order_value_30d_trend,\n bm.avg_order_value_90d,\n bm.avg_order_value_90d_trend,\n bm.avg_order_value_365d,\n bm.avg_order_value_365d_trend,\n bm.avg_time_between_orders_7d,\n bm.avg_time_between_orders_7d_trend,\n bm.avg_time_between_orders_30d,\n bm.avg_time_between_orders_30d_trend,\n bm.avg_time_between_orders_90d,\n bm.avg_time_between_orders_90d_trend,\n bm.avg_time_between_orders_365d,\n bm.avg_time_between_orders_365d_trend,\n bm.num_orders_7d,\n bm.num_orders_7d_trend,\n bm.num_orders_30d,\n bm.num_orders_30d_trend,\n bm.num_orders_90d,\n bm.num_orders_90d_trend,\n bm.num_orders_365d,\n bm.num_orders_365d_trend,\n bm.last_order_timestamp,\n CURRENT_DATE() - interval 1 day as updated_at\n FROM customer_dataset cd\n JOIN business_metrics bm ON cd.profileId = bm.customer_id\n JOIN engagement_with_marketing_material emm ON cd.profileId = emm.customer_id\n JOIN brand_affection ba ON cd.profileId = ba.customer_id\n JOIN loyalty_program lp ON cd.profileId = lp.customer_id\n JOIN returning_buyers rb ON cd.profileId = rb.customer_id\n\n)\n\nSELECT\n cdm.app_key,\n cdm.customer_id,\n cdm.platform,\n cdm.email,\n cdm.phone,\n cdm.returning_buyers,\n cdm.engagement_with_marketing_material,\n cdm.brand_affection,\n cdm.loyalty_tier,\n NAMED_STRUCT('name', cp.likely_to_purchase, 'rank', CAST(cp.likely_to_purchase_rank AS tinyint)) as likely_to_purchase,\n NAMED_STRUCT('name', cp.churn_risk, 'rank', CAST(cp.churn_risk_rank AS tinyint)) as churn_risk,\n cdm.avg_order_value_7d,\n cdm.avg_order_value_7d_trend,\n cdm.avg_order_value_30d,\n cdm.avg_order_value_30d_trend,\n cdm.avg_order_value_90d,\n cdm.avg_order_value_90d_trend,\n cdm.avg_order_value_365d,\n cdm.avg_order_value_365d_trend,\n cdm.avg_time_between_orders_7d,\n cdm.avg_time_between_orders_7d_trend,\n cdm.avg_time_between_orders_30d,\n cdm.avg_time_between_orders_30d_trend,\n cdm.avg_time_between_orders_90d,\n cdm.avg_time_between_orders_90d_trend,\n cdm.avg_time_between_orders_365d,\n cdm.avg_time_between_orders_365d_trend,\n cdm.num_orders_7d,\n cdm.num_orders_7d_trend,\n cdm.num_orders_30d,\n cdm.num_orders_30d_trend,\n cdm.num_orders_90d,\n cdm.num_orders_90d_trend,\n cdm.num_orders_365d,\n cdm.num_orders_365d_trend,\n cdm.last_order_timestamp,\n cdm.updated_at\nFROM customer_dimension_metrics cdm\nLEFT JOIN churn_prediction cp ON cdm.customer_id = cp.customer_id -- not all stores are eligible for churn prediction", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_returning_buyers", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_engagement_marketing_material", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_brand_affection", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_loyalty_program", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_business_metrics", "package": null, "version": null}, {"name": "platform_stg__customer_dataset", "package": null, "version": null}], "sources": [["platform__data_science", "churn_prediction"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__data_science.churn_prediction", "model.yoda.platform_stg__customer_dimensions_returning_buyers", "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material", "model.yoda.platform_stg__customer_dimensions_brand_affection", "model.yoda.platform_stg__customer_dimensions_loyalty_program", "model.yoda.platform_stg__customer_dimensions_business_metrics", "model.yoda.platform_stg__customer_dataset"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.sql", "compiled": true, "compiled_code": "WITH returning_buyers AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__customer_dimensions_returning_buyers\n\n), engagement_with_marketing_material AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__customer_dimensions_engagement_marketing_material\n\n), brand_affection AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__customer_dimensions_brand_affection\n\n), loyalty_program AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__customer_dimensions_loyalty_program\n\n), business_metrics AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__customer_dimensions_business_metrics\n\n), churn_prediction AS (\n\n SELECT * FROM data_science.churn_prediction\n\n), customer_dataset AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__customer_dataset\n\n), customer_dimension_metrics AS (\n SELECT\n cd.storeId as app_key,\n cd.profileId as customer_id,\n cd.properties.platform AS platform,\n cd.properties.email AS email,\n cd.properties.phone AS phone,\n NAMED_STRUCT('name', rb.returning_buyers, 'rank', rb.returning_buyers_rank) as returning_buyers,\n NAMED_STRUCT('name', emm.engagement_with_marketing_material, 'rank', emm.engagement_with_marketing_material_rank) as engagement_with_marketing_material,\n NAMED_STRUCT('name', ba.brand_affection, 'rank', ba.brand_affection_rank) as brand_affection,\n NAMED_STRUCT('name', lp.loyalty_tier, 'rank', lp.loyalty_rank) as loyalty_tier,\n bm.avg_order_value_7d,\n bm.avg_order_value_7d_trend,\n bm.avg_order_value_30d,\n bm.avg_order_value_30d_trend,\n bm.avg_order_value_90d,\n bm.avg_order_value_90d_trend,\n bm.avg_order_value_365d,\n bm.avg_order_value_365d_trend,\n bm.avg_time_between_orders_7d,\n bm.avg_time_between_orders_7d_trend,\n bm.avg_time_between_orders_30d,\n bm.avg_time_between_orders_30d_trend,\n bm.avg_time_between_orders_90d,\n bm.avg_time_between_orders_90d_trend,\n bm.avg_time_between_orders_365d,\n bm.avg_time_between_orders_365d_trend,\n bm.num_orders_7d,\n bm.num_orders_7d_trend,\n bm.num_orders_30d,\n bm.num_orders_30d_trend,\n bm.num_orders_90d,\n bm.num_orders_90d_trend,\n bm.num_orders_365d,\n bm.num_orders_365d_trend,\n bm.last_order_timestamp,\n CURRENT_DATE() - interval 1 day as updated_at\n FROM customer_dataset cd\n JOIN business_metrics bm ON cd.profileId = bm.customer_id\n JOIN engagement_with_marketing_material emm ON cd.profileId = emm.customer_id\n JOIN brand_affection ba ON cd.profileId = ba.customer_id\n JOIN loyalty_program lp ON cd.profileId = lp.customer_id\n JOIN returning_buyers rb ON cd.profileId = rb.customer_id\n\n)\n\nSELECT\n cdm.app_key,\n cdm.customer_id,\n cdm.platform,\n cdm.email,\n cdm.phone,\n cdm.returning_buyers,\n cdm.engagement_with_marketing_material,\n cdm.brand_affection,\n cdm.loyalty_tier,\n NAMED_STRUCT('name', cp.likely_to_purchase, 'rank', CAST(cp.likely_to_purchase_rank AS tinyint)) as likely_to_purchase,\n NAMED_STRUCT('name', cp.churn_risk, 'rank', CAST(cp.churn_risk_rank AS tinyint)) as churn_risk,\n cdm.avg_order_value_7d,\n cdm.avg_order_value_7d_trend,\n cdm.avg_order_value_30d,\n cdm.avg_order_value_30d_trend,\n cdm.avg_order_value_90d,\n cdm.avg_order_value_90d_trend,\n cdm.avg_order_value_365d,\n cdm.avg_order_value_365d_trend,\n cdm.avg_time_between_orders_7d,\n cdm.avg_time_between_orders_7d_trend,\n cdm.avg_time_between_orders_30d,\n cdm.avg_time_between_orders_30d_trend,\n cdm.avg_time_between_orders_90d,\n cdm.avg_time_between_orders_90d_trend,\n cdm.avg_time_between_orders_365d,\n cdm.avg_time_between_orders_365d_trend,\n cdm.num_orders_7d,\n cdm.num_orders_7d_trend,\n cdm.num_orders_30d,\n cdm.num_orders_30d_trend,\n cdm.num_orders_90d,\n cdm.num_orders_90d_trend,\n cdm.num_orders_365d,\n cdm.num_orders_365d_trend,\n cdm.last_order_timestamp,\n cdm.updated_at\nFROM customer_dimension_metrics cdm\nLEFT JOIN churn_prediction cp ON cdm.customer_id = cp.customer_id -- not all stores are eligible for churn prediction", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__customer_dimensions_metrics_analytics": {"database": null, "schema": "dev_dkruh1", "name": "platform__customer_dimensions_metrics_analytics", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.sql", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.sql", "unique_id": "model.yoda.platform__customer_dimensions_metrics_analytics", "fqn": ["yoda", "platform", "marts", "platform__customer_dimensions_metrics_analytics", "platform__customer_dimensions_metrics_analytics"], "alias": "platform__customer_dimensions_metrics_analytics", "checksum": {"name": "sha256", "checksum": "cfb4ec46e661792de044295d922ae5f079287713f71a8c8ad82beeddfd3123b5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Table holding the customer dimensions and metrics for shopper", "columns": {"app_key": {"name": "app_key", "description": "The unique identifier of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "The customer platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "The customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "The customer phone", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_order_timestamp": {"name": "last_order_timestamp", "description": "The timestamp of the last order of the customer", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "returning_buyers_rank": {"name": "returning_buyers_rank", "description": "The returning buyers rank", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}, "engagement_with_marketing_material_rank": {"name": "engagement_with_marketing_material_rank", "description": "The engagement with marketing material rank", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}, "brand_affection_rank": {"name": "brand_affection_rank", "description": "The brand affection rank", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}, "loyalty_tier_rank": {"name": "loyalty_tier_rank", "description": "The loyalty tier rank", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "likely_to_purchase_rank": {"name": "likely_to_purchase_rank", "description": "The likely to purchase rank", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}, "churn_risk_rank": {"name": "churn_risk_rank", "description": "The churn risk rank - inversion of likely_to_purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}, "updated_at": {"name": "updated_at", "description": "The date of segmentation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "The date of writing the record", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "incremental", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append"}, "created_at": 1700082678.1445765, "relation_name": "dev_dkruh1.platform__customer_dimensions_metrics_analytics", "raw_code": "{{ \n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append'\n )\n}}\n\nWITH \n{% if is_incremental() -%}\nversion_ranking AS (\n SELECT \n *,\n ROW_NUMBER() OVER (PARTITION BY app_key, customer_id ORDER BY updated_at DESC) AS version_rank\n FROM {{ this }}\n), latest_version AS (\n SELECT app_key, customer_id, platform, email, phone, last_order_timestamp, returning_buyers_rank, engagement_with_marketing_material_rank, brand_affection_rank, loyalty_tier_rank, likely_to_purchase_rank, churn_risk_rank, updated_at\n FROM version_ranking\n WHERE version_rank = 1\n), \n{%- endif %}\n\nincremental_calculation AS (\n SELECT \n source_table.app_key, source_table.customer_id, source_table.platform, source_table.email, source_table.phone, source_table.last_order_timestamp, source_table.returning_buyers.rank AS returning_buyers_rank, source_table.engagement_with_marketing_material.rank AS engagement_with_marketing_material_rank, source_table.brand_affection.rank AS brand_affection_rank, source_table.loyalty_tier.rank AS loyalty_tier_rank, source_table.likely_to_purchase.rank AS likely_to_purchase_rank, source_table.churn_risk.rank AS churn_risk_rank, source_table.updated_at,\n {%- if is_incremental() %}\n IF(source_table.updated_at > NVL(latest_version.updated_at,TIMESTAMP('1900-01-01'))\n AND (\n NVL(source_table.returning_buyers.rank,'~~') <> NVL(latest_version.returning_buyers_rank,'~~')\n OR\n NVL(source_table.engagement_with_marketing_material.rank,'~~') <> NVL(latest_version.engagement_with_marketing_material_rank,'~~')\n OR\n NVL(source_table.brand_affection.rank,'~~') <> NVL(latest_version.brand_affection_rank,'~~')\n OR\n NVL(source_table.loyalty_tier.rank,'~~') <> NVL(latest_version.loyalty_tier_rank,'~~')\n OR\n NVL(source_table.likely_to_purchase.rank,'~~') <> NVL(latest_version.likely_to_purchase_rank,'~~')\n ),1,0) AS is_new_update\n {%- else %}\n 1 AS is_new_update\n {%- endif %}\n FROM {{ ref('platform__customer_dimensions_metrics') }} AS source_table\n {%- if is_incremental() %}\n LEFT JOIN latest_version\n ON\n source_table.app_key = latest_version.app_key\n AND\n source_table.customer_id = latest_version.customer_id\n {%- endif %} \n)\n\nSELECT\n app_key, customer_id, platform, email, phone, last_order_timestamp, returning_buyers_rank, engagement_with_marketing_material_rank, brand_affection_rank, loyalty_tier_rank, likely_to_purchase_rank, churn_risk_rank, updated_at AS updated_at, CURRENT_TIMESTAMP AS dwh_updated_at\nFROM incremental_calculation\nWHERE is_new_update = 1", "language": "sql", "refs": [{"name": "platform__customer_dimensions_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__customer_dimensions_metrics"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.sql", "compiled": true, "compiled_code": "\n\nWITH \n\n\nincremental_calculation AS (\n SELECT \n source_table.app_key, source_table.customer_id, source_table.platform, source_table.email, source_table.phone, source_table.last_order_timestamp, source_table.returning_buyers.rank AS returning_buyers_rank, source_table.engagement_with_marketing_material.rank AS engagement_with_marketing_material_rank, source_table.brand_affection.rank AS brand_affection_rank, source_table.loyalty_tier.rank AS loyalty_tier_rank, source_table.likely_to_purchase.rank AS likely_to_purchase_rank, source_table.churn_risk.rank AS churn_risk_rank, source_table.updated_at,\n 1 AS is_new_update\n FROM dev_dkruh1.platform__customer_dimensions_metrics AS source_table \n)\n\nSELECT\n app_key, customer_id, platform, email, phone, last_order_timestamp, returning_buyers_rank, engagement_with_marketing_material_rank, brand_affection_rank, loyalty_tier_rank, likely_to_purchase_rank, churn_risk_rank, updated_at AS updated_at, CURRENT_TIMESTAMP AS dwh_updated_at\nFROM incremental_calculation\nWHERE is_new_update = 1", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__customer_dimensions_metrics_inc": {"database": null, "schema": "dev_dkruh1", "name": "platform__customer_dimensions_metrics_inc", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.sql", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.sql", "unique_id": "model.yoda.platform__customer_dimensions_metrics_inc", "fqn": ["yoda", "platform", "marts", "platform__customer_dimensions_metrics_inc", "platform__customer_dimensions_metrics_inc"], "alias": "platform__customer_dimensions_metrics_inc", "checksum": {"name": "sha256", "checksum": "88724dcbc08e5f533cca627fe11bbca9f9ab97b4216b10cf833396d263ad2a41"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_photon_with_intensive_memory_executors", "custom_overwrite": {"instance_family": "memory"}}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Table holding the customer dimensions and metrics for shopper", "columns": {"app_key": {"name": "app_key", "description": "The unique identifier of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The unique customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "The date of segmentation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "returning_buyers": {"name": "returning_buyers", "description": "The returning buyers dimension", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "brand_affection": {"name": "brand_affection", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "loyalty_tier": {"name": "loyalty_tier", "description": "The loyalty dimension", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "engagement_with_marketing_material": {"name": "engagement_with_marketing_material", "description": "The engagement with marketing material dimension", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "likely_to_purchase": {"name": "likely_to_purchase", "description": "The likely to purchse dimension", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "churn_risk": {"name": "churn_risk", "description": "The churn risk dimension", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "total_price": {"name": "total_price", "description": "The total amount spent by the customer on the given day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders": {"name": "avg_time_between_orders", "description": "The average time between orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "num_orders": {"name": "num_orders", "description": "The number of orders for a customer on the particular date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_photon_with_intensive_memory_executors", "custom_overwrite": {"instance_family": "memory"}}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "incremental", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_photon_with_intensive_memory_executors", "custom_overwrite": {"instance_family": "memory"}}}, "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082678.1640348, "relation_name": "dev_dkruh1.platform__customer_dimensions_metrics_inc", "raw_code": "{{ \n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=['date']\n )\n}}\n\nWITH returning_buyers AS (\n\n SELECT * FROM {{ ref('platform_stg__customer_dimensions_returning_buyers_inc') }}\n {{incremental_condition(data_type='DATE',destination_condition_column='date', min_lower_bound='2020-01-01', max_days_per_run=180)}}\n\n), brand_affection AS (\n\n SELECT * FROM {{ ref('platform_stg__customer_dimensions_brand_affection_inc') }}\n {{incremental_condition(data_type='DATE',destination_condition_column='date', min_lower_bound='2020-01-01', max_days_per_run=180)}}\n), engagement AS (\n\n SELECT * FROM {{ ref('platform_stg__customer_dimensions_engagement_marketing_material_inc') }}\n {{incremental_condition(data_type='DATE',destination_condition_column='date', min_lower_bound='2020-01-01', max_days_per_run=180)}}\n), loyalty AS (\n\n SELECT * FROM {{ ref('platform_stg__customer_dimensions_loyalty_program_inc') }}\n {{incremental_condition(data_type='DATE',destination_condition_column='date', min_lower_bound='2020-01-01', max_days_per_run=180)}}\n), churn_prediction AS (\n\n SELECT * FROM {{ source('platform__data_science', 'churn_prediction') }}\n), \n-- merging all events together\nall_events AS (\n SELECT\n app_key,\n customer_id,\n date,\n NAMED_STRUCT('name', returning_buyers, 'rank', returning_buyers_rank) as returning_buyers,\n NULL as brand_affection,\n NULL as engagement_with_marketing_material,\n NULL as loyalty_tier,\n total_price,\n avg_time_between_orders,\n num_orders\n FROM returning_buyers\n UNION ALL\n SELECT\n app_key,\n customer_id,\n date,\n NULL as returning_buyers,\n NAMED_STRUCT('name', brand_affection, 'rank', brand_affection_rank) as brand_affection,\n NULL as engagement_with_marketing_material,\n NULL as loyalty_tier,\n NULL as total_price,\n NULL as avg_time_between_orders,\n NULL as num_orders\n FROM brand_affection\n UNION ALL\n SELECT\n app_key,\n customer_id,\n date,\n NULL as returning_buyers,\n NULL as brand_affection,\n NAMED_STRUCT('name', engagement_with_marketing_material, 'rank', engagement_with_marketing_material_rank) as engagement_with_marketing_material,\n NULL as loyalty_tier,\n NULL as total_price,\n NULL as avg_time_between_orders,\n NULL as num_orders\n FROM engagement\n UNION ALL\n SELECT\n app_key,\n customer_id,\n date,\n NULL as returning_buyers,\n NULL as brand_affection,\n NULL as engagement_with_marketing_material,\n NAMED_STRUCT('name', loyalty_tier, 'rank', loyalty_rank) as loyalty_tier,\n NULL as total_price,\n NULL as avg_time_between_orders,\n NULL as num_orders\n FROM loyalty\n\n), \n-- using the max function to get the entry that is not null for each dimension/metric\ncustomer_dimension_metrics AS (\n SELECT\n customer_id,\n date,\n MAX(app_key) as app_key,\n MAX(returning_buyers) as returning_buyers,\n MAX(brand_affection) as brand_affection,\n MAX(engagement_with_marketing_material) as engagement_with_marketing_material,\n MAX(loyalty_tier) as loyalty_tier,\n MAX(total_price) as total_price,\n MAX(avg_time_between_orders) as avg_time_between_orders,\n MAX(num_orders) as num_orders\n FROM all_events\n GROUP BY customer_id, date\n), \n-- backfill the dimensions that are null in the extract\ncustomer_dimension_metric_lag_filled AS (\n SELECT\n app_key,\n customer_id,\n date,\n COALESCE(returning_buyers, LAG(returning_buyers) IGNORE NULLS OVER (PARTITION BY customer_id ORDER BY date)) as returning_buyers,\n COALESCE(brand_affection, LAG(brand_affection) IGNORE NULLS OVER (PARTITION BY customer_id ORDER BY date)) as brand_affection,\n COALESCE(loyalty_tier, LAG(loyalty_tier) IGNORE NULLS OVER (PARTITION BY loyalty_tier ORDER BY date)) as loyalty_tier,\n COALESCE(engagement_with_marketing_material, LAG(engagement_with_marketing_material) IGNORE NULLS OVER (PARTITION BY engagement_with_marketing_material ORDER BY date)) as engagement_with_marketing_material,\n total_price,\n avg_time_between_orders,\n num_orders\n FROM customer_dimension_metrics\n)\n-- if it is incremental use the existing table to backfill the ones that are still null\n{% if is_incremental() %}\n, \nrecent_values AS (\n SELECT\n cdmi.customer_id,\n cdmi.date as max_date,\n cdmi.returning_buyers as recent_returning_buyers,\n cdmi.brand_affection as recent_brand_affection,\n cdmi.engagement_with_marketing_material as engagement_with_marketing_material,\n cdmi.loyalty_tier as loyalty_tier\n FROM \n {{ this }} cdmi\n JOIN (\n SELECT customer_id, MAX(date) as max_date\n FROM {{ this }}\n GROUP BY customer_id\n ) max_dates \n ON cdmi.customer_id = max_dates.customer_id AND cdmi.date = max_dates.max_date\n), fully_filled_customer_dimension_metrics AS (\n SELECT\n cdmlf.app_key,\n cdmlf.customer_id,\n cdmlf.date,\n COALESCE(cdmlf.returning_buyers, rv.recent_returning_buyers) as returning_buyers,\n COALESCE(cdmlf.brand_affection, rv.recent_brand_affection) as brand_affection,\n COALESCE(cdmlf.loyalty_tier, rv.loyalty_tier) as loyalty_tier,\n COALESCE(cdmlf.engagement_with_marketing_material, rv.engagement_with_marketing_material) as engagement_with_marketing_material,\n cdmlf.total_price,\n cdmlf.avg_time_between_orders,\n cdmlf.num_orders\n FROM customer_dimension_metric_lag_filled cdmlf\n LEFT JOIN recent_values rv ON cdmlf.customer_id = rv.customer_id\n)\n{% endif %}\n\n-- in case there are still records with null for dimensions assign them to the default dimension\nSELECT\n cdm.app_key,\n cdm.customer_id,\n cdm.date,\n COALESCE(cdm.returning_buyers, NAMED_STRUCT('name', 'Prospects', 'rank', CAST(0 AS TINYINT))) as returning_buyers,\n COALESCE(cdm.brand_affection, NAMED_STRUCT('name', 'N/A', 'rank', CAST(2 AS TINYINT))) as brand_affection,\n COALESCE(cdm.loyalty_tier, NAMED_STRUCT('name', 'No tier', 'rank', CAST(-1 AS TINYINT))) as loyalty_tier,\n COALESCE(cdm.engagement_with_marketing_material, NAMED_STRUCT('name', 'Not an SMS User', 'rank', CAST(1 AS TINYINT))) as engagement_with_marketing_material,\n NAMED_STRUCT('name', COALESCE(cp.likely_to_purchase, 'Insufficient Data'), 'rank', COALESCE(cp.likely_to_purchase_rank, CAST(0 AS TINYINT))) as likely_to_purchase,\n NAMED_STRUCT('name', COALESCE(cp.churn_risk, 'Insufficient Data'), 'rank', COALESCE(cp.churn_risk_rank, CAST(0 AS TINYINT))) as churn_risk,\n cdm.total_price,\n cdm.avg_time_between_orders,\n cdm.num_orders\n{% if is_incremental() %}\nFROM fully_filled_customer_dimension_metrics cdm\n{% else %}\nFROM customer_dimension_metric_lag_filled cdm\n{% endif %}\nLEFT JOIN churn_prediction cp ON cdm.customer_id = cp.customer_id -- not all stores are eligible for churn prediction", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_returning_buyers_inc", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_brand_affection_inc", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_engagement_marketing_material_inc", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_loyalty_program_inc", "package": null, "version": null}], "sources": [["platform__data_science", "churn_prediction"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.incremental_condition", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__data_science.churn_prediction", "model.yoda.platform_stg__customer_dimensions_returning_buyers_inc", "model.yoda.platform_stg__customer_dimensions_brand_affection_inc", "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc", "model.yoda.platform_stg__customer_dimensions_loyalty_program_inc"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.sql", "compiled": true, "compiled_code": "\n\nWITH returning_buyers AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__customer_dimensions_returning_buyers_inc\n WHERE DATE(date) BETWEEN DATE('2020-01-01') AND DATE_ADD(DATE('2020-01-01'),179)\n\n), brand_affection AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__customer_dimensions_brand_affection_inc\n WHERE DATE(date) BETWEEN DATE('2020-01-01') AND DATE_ADD(DATE('2020-01-01'),179)\n), engagement AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__customer_dimensions_engagement_marketing_material_inc\n WHERE DATE(date) BETWEEN DATE('2020-01-01') AND DATE_ADD(DATE('2020-01-01'),179)\n), loyalty AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__customer_dimensions_loyalty_program_inc\n WHERE DATE(date) BETWEEN DATE('2020-01-01') AND DATE_ADD(DATE('2020-01-01'),179)\n), churn_prediction AS (\n\n SELECT * FROM data_science.churn_prediction\n), \n-- merging all events together\nall_events AS (\n SELECT\n app_key,\n customer_id,\n date,\n NAMED_STRUCT('name', returning_buyers, 'rank', returning_buyers_rank) as returning_buyers,\n NULL as brand_affection,\n NULL as engagement_with_marketing_material,\n NULL as loyalty_tier,\n total_price,\n avg_time_between_orders,\n num_orders\n FROM returning_buyers\n UNION ALL\n SELECT\n app_key,\n customer_id,\n date,\n NULL as returning_buyers,\n NAMED_STRUCT('name', brand_affection, 'rank', brand_affection_rank) as brand_affection,\n NULL as engagement_with_marketing_material,\n NULL as loyalty_tier,\n NULL as total_price,\n NULL as avg_time_between_orders,\n NULL as num_orders\n FROM brand_affection\n UNION ALL\n SELECT\n app_key,\n customer_id,\n date,\n NULL as returning_buyers,\n NULL as brand_affection,\n NAMED_STRUCT('name', engagement_with_marketing_material, 'rank', engagement_with_marketing_material_rank) as engagement_with_marketing_material,\n NULL as loyalty_tier,\n NULL as total_price,\n NULL as avg_time_between_orders,\n NULL as num_orders\n FROM engagement\n UNION ALL\n SELECT\n app_key,\n customer_id,\n date,\n NULL as returning_buyers,\n NULL as brand_affection,\n NULL as engagement_with_marketing_material,\n NAMED_STRUCT('name', loyalty_tier, 'rank', loyalty_rank) as loyalty_tier,\n NULL as total_price,\n NULL as avg_time_between_orders,\n NULL as num_orders\n FROM loyalty\n\n), \n-- using the max function to get the entry that is not null for each dimension/metric\ncustomer_dimension_metrics AS (\n SELECT\n customer_id,\n date,\n MAX(app_key) as app_key,\n MAX(returning_buyers) as returning_buyers,\n MAX(brand_affection) as brand_affection,\n MAX(engagement_with_marketing_material) as engagement_with_marketing_material,\n MAX(loyalty_tier) as loyalty_tier,\n MAX(total_price) as total_price,\n MAX(avg_time_between_orders) as avg_time_between_orders,\n MAX(num_orders) as num_orders\n FROM all_events\n GROUP BY customer_id, date\n), \n-- backfill the dimensions that are null in the extract\ncustomer_dimension_metric_lag_filled AS (\n SELECT\n app_key,\n customer_id,\n date,\n COALESCE(returning_buyers, LAG(returning_buyers) IGNORE NULLS OVER (PARTITION BY customer_id ORDER BY date)) as returning_buyers,\n COALESCE(brand_affection, LAG(brand_affection) IGNORE NULLS OVER (PARTITION BY customer_id ORDER BY date)) as brand_affection,\n COALESCE(loyalty_tier, LAG(loyalty_tier) IGNORE NULLS OVER (PARTITION BY loyalty_tier ORDER BY date)) as loyalty_tier,\n COALESCE(engagement_with_marketing_material, LAG(engagement_with_marketing_material) IGNORE NULLS OVER (PARTITION BY engagement_with_marketing_material ORDER BY date)) as engagement_with_marketing_material,\n total_price,\n avg_time_between_orders,\n num_orders\n FROM customer_dimension_metrics\n)\n-- if it is incremental use the existing table to backfill the ones that are still null\n\n\n-- in case there are still records with null for dimensions assign them to the default dimension\nSELECT\n cdm.app_key,\n cdm.customer_id,\n cdm.date,\n COALESCE(cdm.returning_buyers, NAMED_STRUCT('name', 'Prospects', 'rank', CAST(0 AS TINYINT))) as returning_buyers,\n COALESCE(cdm.brand_affection, NAMED_STRUCT('name', 'N/A', 'rank', CAST(2 AS TINYINT))) as brand_affection,\n COALESCE(cdm.loyalty_tier, NAMED_STRUCT('name', 'No tier', 'rank', CAST(-1 AS TINYINT))) as loyalty_tier,\n COALESCE(cdm.engagement_with_marketing_material, NAMED_STRUCT('name', 'Not an SMS User', 'rank', CAST(1 AS TINYINT))) as engagement_with_marketing_material,\n NAMED_STRUCT('name', COALESCE(cp.likely_to_purchase, 'Insufficient Data'), 'rank', COALESCE(cp.likely_to_purchase_rank, CAST(0 AS TINYINT))) as likely_to_purchase,\n NAMED_STRUCT('name', COALESCE(cp.churn_risk, 'Insufficient Data'), 'rank', COALESCE(cp.churn_risk_rank, CAST(0 AS TINYINT))) as churn_risk,\n cdm.total_price,\n cdm.avg_time_between_orders,\n cdm.num_orders\n\nFROM customer_dimension_metric_lag_filled cdm\n\nLEFT JOIN churn_prediction cp ON cdm.customer_id = cp.customer_id -- not all stores are eligible for churn prediction", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__customer_dimensions_metrics_inc_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__customer_dimensions_metrics_inc_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.sql", "unique_id": "model.yoda.platform__customer_dimensions_metrics_inc_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__customer_dimensions_metrics_inc_to_snowflake", "platform__customer_dimensions_metrics_inc_to_snowflake"], "alias": "platform__customer_dimensions_metrics_inc_to_snowflake", "checksum": {"name": "sha256", "checksum": "f5924eea0c3fba0eb74b17e8d4009ebc0338d1a98d57147ab7667ab76ccba273"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "customer_dimensions_metrics", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Append", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table %s cluster by (app_key, date);", "is_incremental": true, "incremental_date_column": "date"}}}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"app_key": {"name": "app_key", "description": "The unique identifier of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The unique customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "The date of segmentation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "returning_buyers": {"name": "returning_buyers", "description": "The returning buyers dimension", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_with_marketing_material": {"name": "engagement_with_marketing_material", "description": "The engagement with marketing material dimension", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "brand_affection": {"name": "brand_affection", "description": "The brand affection dimension", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_tier": {"name": "loyalty_tier", "description": "The loyalty tier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_rank": {"name": "loyalty_rank", "description": "The loyalty rank of the tier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "likely_to_purchase": {"name": "likely_to_purchase", "description": "The likely to purchse dimension", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price": {"name": "total_price", "description": "The total amount spent by the customer on the given day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders": {"name": "avg_time_between_orders", "description": "The average time between orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "num_orders": {"name": "num_orders", "description": "The number of orders for a customer on the particular date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "customer_dimensions_metrics", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Append", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table %s cluster by (app_key, date);", "is_incremental": true, "incremental_date_column": "date"}}}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "incremental", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "customer_dimensions_metrics", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Append", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table %s cluster by (app_key, date);", "is_incremental": true, "incremental_date_column": "date"}}}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082678.187816, "relation_name": "dev_dkruh1.platform__customer_dimensions_metrics_inc_to_snowflake", "raw_code": "{{ \n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=['date']\n )\n}}\n\n{% set two_years_ago = (modules.datetime.date.today() - modules.datetime.timedelta(days=730)).strftime('%Y-%m-%d') %}\n\nWITH export_candidate AS (\n\n\tSELECT * FROM {{ ref('platform__customer_dimensions_metrics_inc') }}\n\t-- we only need the records from the past 2 years on the first run, and only the new records on consecutive runs\n\t{{incremental_condition(data_type='DATE',destination_condition_column='date', min_lower_bound=two_years_ago)}}\n\tAND num_orders > 0\n\n), customer_dimensions_metrics_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(customer_id as string),\n\t\tcast(date as date),\n\t\tcast(returning_buyers.name as string) as returning_buyers,\n\t\tcast(engagement_with_marketing_material.name as string) as engagement_with_marketing_material,\n\t\tcast(brand_affection.name as string) as brand_affection,\n\t\tcast(loyalty_tier.name as string) as loyalty_tier,\n\t\tcast(loyalty_tier.rank as int) as loyalty_rank,\n\t\tcast(likely_to_purchase.name as string) as likely_to_purchase,\n\t\tcast(total_price as double),\n\t\tcast(avg_time_between_orders as double),\n\t\tcast(num_orders as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM customer_dimensions_metrics_to_snowflake", "language": "sql", "refs": [{"name": "platform__customer_dimensions_metrics_inc", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__customer_dimensions_metrics_inc"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.sql", "compiled": true, "compiled_code": "\n\n\n\nWITH export_candidate AS (\n\n\tSELECT * FROM dev_dkruh1.platform__customer_dimensions_metrics_inc\n\t-- we only need the records from the past 2 years on the first run, and only the new records on consecutive runs\n\tWHERE DATE(date) >= DATE('2021-11-15') AND DATE(date) <= DATE_SUB(CURRENT_DATE,1)\n\tAND num_orders > 0\n\n), customer_dimensions_metrics_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(customer_id as string),\n\t\tcast(date as date),\n\t\tcast(returning_buyers.name as string) as returning_buyers,\n\t\tcast(engagement_with_marketing_material.name as string) as engagement_with_marketing_material,\n\t\tcast(brand_affection.name as string) as brand_affection,\n\t\tcast(loyalty_tier.name as string) as loyalty_tier,\n\t\tcast(loyalty_tier.rank as int) as loyalty_rank,\n\t\tcast(likely_to_purchase.name as string) as likely_to_purchase,\n\t\tcast(total_price as double),\n\t\tcast(avg_time_between_orders as double),\n\t\tcast(num_orders as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM customer_dimensions_metrics_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__customer_dimensions_metrics_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__customer_dimensions_metrics_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.sql", "unique_id": "model.yoda.platform__customer_dimensions_metrics_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__customer_dimensions_metrics_to_snowflake", "platform__customer_dimensions_metrics_to_snowflake"], "alias": "platform__customer_dimensions_metrics_to_snowflake", "checksum": {"name": "sha256", "checksum": "c2e9e67a5a51739eb96530a29e44d40ef1931b4b8428e26c414527e09829caab"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "customer_dimensions_metrics", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table %s cluster by (app_key);", "is_incremental": false}}}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "Exported platform__customer_dimensions_metrics model in Snowflake", "columns": {"app_key": {"name": "app_key", "description": "The unique identifier of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "returning_buyers": {"name": "returning_buyers", "description": "The dimension score (e.g. prospects, single surchase, repeat purchase, frequent shopper)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_with_marketing_material": {"name": "engagement_with_marketing_material", "description": "The dimension score (e.g. unsubscribed, non an sms user, ignores, engaging, highly engaged)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "brand_affection": {"name": "brand_affection", "description": "The brand affection category", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_tier": {"name": "loyalty_tier", "description": "The loyalty tier name (taken the string value of the vipTierName field with trailing spaces removed)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_rank": {"name": "loyalty_rank", "description": "The loyalty tier rank (taken the int value of the vipTierRank field without transformation)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "likely_to_purchase": {"name": "likely_to_purchase", "description": "The likely to purchase dimension (e.g. High, Medium, Low)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avg_order_value_7d": {"name": "avg_order_value_7d", "description": "The average order value in the last 7 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_7d_trend": {"name": "avg_order_value_7d_trend", "description": "The average order value in the period of 7 to 14 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_30d": {"name": "avg_order_value_30d", "description": "The average order value in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_30d_trend": {"name": "avg_order_value_30d_trend", "description": "The average order value in the period of 30 to 60 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_90d": {"name": "avg_order_value_90d", "description": "The average order value in the last 90 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_90d_trend": {"name": "avg_order_value_90d_trend", "description": "The average time between orders in seconds in the last 90 to 180 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_365d": {"name": "avg_order_value_365d", "description": "The average order value in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_365d_trend": {"name": "avg_order_value_365d_trend", "description": "The average order value in the period of 365 to 730 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_7d": {"name": "avg_time_between_orders_7d", "description": "The average time between orders in seconds in the last 7 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_7d_trend": {"name": "avg_time_between_orders_7d_trend", "description": "The average time between orders in seconds in the period of 7 to 14 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_30d": {"name": "avg_time_between_orders_30d", "description": "The average time between orders in seconds in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_30d_trend": {"name": "avg_time_between_orders_30d_trend", "description": "The average time between orders in seconds in the period of 30 to 60 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_90d": {"name": "avg_time_between_orders_90d", "description": "The average time between orders in seconds in the last 90 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_90d_trend": {"name": "avg_time_between_orders_90d_trend", "description": "The average time between orders in seconds in the period of 90 to 180 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_365d": {"name": "avg_time_between_orders_365d", "description": "The average time between orders in seconds in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_365d_trend": {"name": "avg_time_between_orders_365d_trend", "description": "The average time between orders in seconds in the period of 365 to 730 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "num_orders_7d": {"name": "num_orders_7d", "description": "The number of orders in the last 7 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_7d_trend": {"name": "num_orders_7d_trend", "description": "The number of orders in the period of 7 to 14 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_30d": {"name": "num_orders_30d", "description": "The number of orders in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_30d_trend": {"name": "num_orders_30d_trend", "description": "The number of orders in the period of 30 to 60 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_90d": {"name": "num_orders_90d", "description": "The number of orders in the last 90 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_90d_trend": {"name": "num_orders_90d_trend", "description": "The number of orders in the period of 90 to 180 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_365d": {"name": "num_orders_365d", "description": "The number of orders in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_365d_trend": {"name": "num_orders_365d_trend", "description": "The number of orders in the period of 365 to 730 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "customer_dimensions_metrics", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table %s cluster by (app_key);", "is_incremental": false}}}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "customer_dimensions_metrics", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table %s cluster by (app_key);", "is_incremental": false}}}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082678.224114, "relation_name": "dev_dkruh1.platform__customer_dimensions_metrics_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__customer_dimensions_metrics') }}\n WHERE num_orders_365d > 0 OR num_orders_365d_trend > 0\n\n), customer_dimensions_metrics_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(customer_id as string),\n\t\tcast(returning_buyers.name as string) as returning_buyers,\n\t\tcast(engagement_with_marketing_material.name as string) as engagement_with_marketing_material,\n\t\tcast(brand_affection.name as string) as brand_affection,\n\t\tcast(loyalty_tier.name as string) as loyalty_tier,\n\t\tcast(loyalty_tier.rank as int) as loyalty_rank,\n\t\tcast(likely_to_purchase.name as string) as likely_to_purchase,\n\t\tcast(avg_order_value_7d as double),\n\t\tcast(avg_order_value_7d_trend as double),\n\t\tcast(avg_order_value_30d as double),\n\t\tcast(avg_order_value_30d_trend as double),\n\t\tcast(avg_order_value_90d as double),\n\t\tcast(avg_order_value_90d_trend as double),\n\t\tcast(avg_order_value_365d as double),\n\t\tcast(avg_order_value_365d_trend as double),\n\t\tcast(avg_time_between_orders_7d as double),\n\t\tcast(avg_time_between_orders_7d_trend as double),\n\t\tcast(avg_time_between_orders_30d as double),\n\t\tcast(avg_time_between_orders_30d_trend as double),\n\t\tcast(avg_time_between_orders_90d as double),\n\t\tcast(avg_time_between_orders_90d_trend as double),\n\t\tcast(avg_time_between_orders_365d as double),\n\t\tcast(avg_time_between_orders_365d_trend as double),\n\t\tcast(num_orders_7d as bigint),\n\t\tcast(num_orders_7d_trend as bigint),\n\t\tcast(num_orders_30d as bigint),\n\t\tcast(num_orders_30d_trend as bigint),\n\t\tcast(num_orders_90d as bigint),\n\t\tcast(num_orders_90d_trend as bigint),\n\t\tcast(num_orders_365d as bigint),\n\t\tcast(num_orders_365d_trend as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM customer_dimensions_metrics_to_snowflake", "language": "sql", "refs": [{"name": "platform__customer_dimensions_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__customer_dimensions_metrics"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__customer_dimensions_metrics\n WHERE num_orders_365d > 0 OR num_orders_365d_trend > 0\n\n), customer_dimensions_metrics_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(customer_id as string),\n\t\tcast(returning_buyers.name as string) as returning_buyers,\n\t\tcast(engagement_with_marketing_material.name as string) as engagement_with_marketing_material,\n\t\tcast(brand_affection.name as string) as brand_affection,\n\t\tcast(loyalty_tier.name as string) as loyalty_tier,\n\t\tcast(loyalty_tier.rank as int) as loyalty_rank,\n\t\tcast(likely_to_purchase.name as string) as likely_to_purchase,\n\t\tcast(avg_order_value_7d as double),\n\t\tcast(avg_order_value_7d_trend as double),\n\t\tcast(avg_order_value_30d as double),\n\t\tcast(avg_order_value_30d_trend as double),\n\t\tcast(avg_order_value_90d as double),\n\t\tcast(avg_order_value_90d_trend as double),\n\t\tcast(avg_order_value_365d as double),\n\t\tcast(avg_order_value_365d_trend as double),\n\t\tcast(avg_time_between_orders_7d as double),\n\t\tcast(avg_time_between_orders_7d_trend as double),\n\t\tcast(avg_time_between_orders_30d as double),\n\t\tcast(avg_time_between_orders_30d_trend as double),\n\t\tcast(avg_time_between_orders_90d as double),\n\t\tcast(avg_time_between_orders_90d_trend as double),\n\t\tcast(avg_time_between_orders_365d as double),\n\t\tcast(avg_time_between_orders_365d_trend as double),\n\t\tcast(num_orders_7d as bigint),\n\t\tcast(num_orders_7d_trend as bigint),\n\t\tcast(num_orders_30d as bigint),\n\t\tcast(num_orders_30d_trend as bigint),\n\t\tcast(num_orders_90d as bigint),\n\t\tcast(num_orders_90d_trend as bigint),\n\t\tcast(num_orders_365d as bigint),\n\t\tcast(num_orders_365d_trend as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM customer_dimensions_metrics_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__digest_email_track": {"database": null, "schema": "dev_dkruh1", "name": "platform__digest_email_track", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__digest_email_track/platform__digest_email_track.sql", "original_file_path": "models/platform/marts/platform__digest_email_track/platform__digest_email_track.sql", "unique_id": "model.yoda.platform__digest_email_track", "fqn": ["yoda", "platform", "marts", "platform__digest_email_track", "platform__digest_email_track"], "alias": "platform__digest_email_track", "checksum": {"name": "sha256", "checksum": "6fbe6dc0b42f508aeaafd4f5acf145d49c17dd9e04e5ca69f002fcc64a87c8c4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_track_segment"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"segment": {"trigger_on_done": false, "properties": {"write_key_hint": "yotpo-production", "event_name": "PlatformPlayEmailDigestTest"}}}, "primary-key": "id", "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_track_segment"], "description": "Platform play monthly email digest data", "columns": {"id": {"name": "id", "description": "User id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "User email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "Account app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_high_touch": {"name": "is_high_touch", "description": "Is high touch flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "reviews_product": {"name": "reviews_product", "description": "Has reviews product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyalty_product": {"name": "loyalty_product", "description": "Has loyalty product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "email_product": {"name": "email_product", "description": "Has email product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sms_product": {"name": "sms_product", "description": "Has sms product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "subscriptions_product": {"name": "subscriptions_product", "description": "Has subscriptions product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "repeating_customers_rate": {"name": "repeating_customers_rate", "description": "Repeating customers [returning + engaged] percentage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "repeating_customers_rate_trend": {"name": "repeating_customers_rate_trend", "description": "Repeating customers [returning + engaged] growth percentage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "repeating_customers_sales": {"name": "repeating_customers_sales", "description": "Sales percentage from repeating customers [returning + engaged]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "repeating_customers_sales_trend": {"name": "repeating_customers_sales_trend", "description": "Growth percentage sales from repeating customers [returning + engaged]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_attributed_revenue": {"name": "subscriptions_attributed_revenue", "description": "Revenue attributed to the Subscriptions product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_attributed_revenue_trend": {"name": "subscriptions_attributed_revenue_trend", "description": "Trend of the revenue attributed to the Subscriptions product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue": {"name": "loyalty_attributed_revenue", "description": "Revenue attributed to the Loyalty product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue_trend": {"name": "loyalty_attributed_revenue_trend", "description": "Trend of the revenue attributed to the Loyalty product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue": {"name": "email_attributed_revenue", "description": "Revenue attributed to the Email product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue_trend": {"name": "email_attributed_revenue_trend", "description": "Trend of the revenue attributed to the Email product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue": {"name": "sms_attributed_revenue", "description": "Revenue attributed to the SMS product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue_trend": {"name": "sms_attributed_revenue_trend", "description": "Trend of the revenue attributed to the Sms product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue": {"name": "reviews_attributed_revenue", "description": "Revenue attributed to the Reviews product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue_trend": {"name": "reviews_attributed_revenue_trend", "description": "Trend of the revenue attributed to the Reviews product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_customers_sales": {"name": "engaged_customers_sales", "description": "Revenue of customers in segment 'engaged'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_customers_sales_trend": {"name": "engaged_customers_sales_trend", "description": "Growth of revenue of customers in segment 'engaged'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_customers_count": {"name": "engaged_customers_count", "description": "Count of customers in segment 'engaged'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "engaged_customers_count_trend": {"name": "engaged_customers_count_trend", "description": "Gworth of count of customers in segment 'engaged'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_sales": {"name": "returning_customers_sales", "description": "Revenue from customers in segment 'returning'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_sales_trend": {"name": "returning_customers_sales_trend", "description": "Growth percentage of revenue from customers in segment 'returning'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_count": {"name": "returning_customers_count", "description": "Number of customers in segment 'returning'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_customers_count_trend": {"name": "returning_customers_count_trend", "description": "Growth of customers in segment 'returning", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_customers_sales": {"name": "new_customers_sales", "description": "Revenue of customers in segment 'new'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_customers_sales_trend": {"name": "new_customers_sales_trend", "description": "Growth of revenue of customers in segment 'new'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_customers_count": {"name": "new_customers_count", "description": "Count of customers in segment 'new'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_customers_count_trend": {"name": "new_customers_count_trend", "description": "Gworth of count of customers in segment 'new'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"segment": {"trigger_on_done": false, "properties": {"write_key_hint": "yotpo-production", "event_name": "PlatformPlayEmailDigestTest"}}}, "primary-key": "id", "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__digest_email_track/platform__digest_email_track.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_track_segment"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"segment": {"trigger_on_done": false, "properties": {"write_key_hint": "yotpo-production", "event_name": "PlatformPlayEmailDigestTest"}}}, "primary-key": "id", "cluster_profile": {"name": "large"}}}, "created_at": 1700082678.2624288, "relation_name": "dev_dkruh1.platform__digest_email_track", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH digest_result AS (\n\n SELECT * FROM {{ ref('platform_stg__digest') }}\n -- What we're saying here is that we want for the customer to have some revenue in order to send an event to segment.\n WHERE COALESCE(repeating_customers_rate,0) != 0\n OR COALESCE(repeating_customers_sales,0) != 0\n\n OR COALESCE(subscriptions_attributed_revenue,0) != 0\n OR COALESCE(loyalty_attributed_revenue,0) != 0\n OR COALESCE(email_attributed_revenue,0) != 0\n OR COALESCE(sms_attributed_revenue,0) != 0\n\n OR COALESCE(engaged_customers_sales,0) != 0\n OR COALESCE(returning_customers_sales,0) != 0\n OR COALESCE(new_customers_sales,0) != 0\n)\n\nSELECT * FROM digest_result", "language": "sql", "refs": [{"name": "platform_stg__digest", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__digest"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__digest_email_track/platform__digest_email_track.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH digest_result AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__digest\n -- What we're saying here is that we want for the customer to have some revenue in order to send an event to segment.\n WHERE COALESCE(repeating_customers_rate,0) != 0\n OR COALESCE(repeating_customers_sales,0) != 0\n\n OR COALESCE(subscriptions_attributed_revenue,0) != 0\n OR COALESCE(loyalty_attributed_revenue,0) != 0\n OR COALESCE(email_attributed_revenue,0) != 0\n OR COALESCE(sms_attributed_revenue,0) != 0\n\n OR COALESCE(engaged_customers_sales,0) != 0\n OR COALESCE(returning_customers_sales,0) != 0\n OR COALESCE(new_customers_sales,0) != 0\n)\n\nSELECT * FROM digest_result", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__dim_stores": {"database": null, "schema": "dev_dkruh1", "name": "platform__dim_stores", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.sql", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.sql", "unique_id": "model.yoda.platform__dim_stores", "fqn": ["yoda", "platform", "marts", "platform__dim_stores", "platform__dim_stores"], "alias": "platform__dim_stores", "checksum": {"name": "sha256", "checksum": "c07ef5665ad8d8037e8be82d80e7c35930e81d9fac2f33e20db5f44eb0f854fa"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "primary-key": "store_id", "foreign-keys": [{"foreign-key": "store_id", "ref-table": "platform_stg__stores_enrichment", "ref-key": "store_id", "ref-relationship": "one-to-one"}, {"foreign-key": "app_key", "ref-table": "loyalty__merchant", "ref-key": "app_key", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform__dim_stores", "columns": {"store_id": {"name": "store_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key": {"name": "app_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_test_store": {"name": "is_test_store", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_active_store": {"name": "is_active_store", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "store_created_at": {"name": "store_created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_name": {"name": "store_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_language": {"name": "store_language", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_name": {"name": "platform_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_blacklisted": {"name": "is_blacklisted", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_created_at": {"name": "merchant_created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "loyalty_company_name": {"name": "loyalty_company_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_currency": {"name": "loyalty_currency", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_platform": {"name": "loyalty_platform", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_is_completed_profile": {"name": "loyalty_is_completed_profile", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "loyalty_is_redemptions_enabled": {"name": "loyalty_is_redemptions_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "loyalty_plan_name": {"name": "loyalty_plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_contact_email": {"name": "loyalty_contact_email", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_is_test_account": {"name": "loyalty_is_test_account", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "loyalty_opt_in_strategy": {"name": "loyalty_opt_in_strategy", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "referral_opt_in_strategy": {"name": "referral_opt_in_strategy", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "loyalty_group_id": {"name": "loyalty_group_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_vip_type": {"name": "loyalty_vip_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_is_vip_enabled": {"name": "loyalty_is_vip_enabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "primary-key": "store_id", "foreign-keys": [{"foreign-key": "store_id", "ref-table": "platform_stg__stores_enrichment", "ref-key": "store_id", "ref-relationship": "one-to-one"}, {"foreign-key": "app_key", "ref-table": "loyalty__merchant", "ref-key": "app_key", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__dim_stores/platform__dim_stores.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "primary-key": "store_id", "foreign-keys": [{"foreign-key": "store_id", "ref-table": "platform_stg__stores_enrichment", "ref-key": "store_id", "ref-relationship": "one-to-one"}, {"foreign-key": "app_key", "ref-table": "loyalty__merchant", "ref-key": "app_key", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "large"}}}, "created_at": 1700082678.295719, "relation_name": "dev_dkruh1.platform__dim_stores", "raw_code": "WITH platform_stg__stores_enrichment AS (\n\n SELECT * FROM {{ ref('platform_stg__stores_enrichment') }}\n\n), loyalty__merchant AS (\n\n SELECT * FROM {{ ref('analytics___loyalty__merchant') }}\n\n), platform__dim_stores AS (\n\n SELECT platform_stg__stores_enrichment.store_id,\n platform_stg__stores_enrichment.organization_id,\n platform_stg__stores_enrichment.app_key,\n platform_stg__stores_enrichment.store_domain,\n COALESCE(platform_stg__stores_enrichment.is_test, 0) AS is_test_store,\n COALESCE(platform_stg__stores_enrichment.is_active, 0) AS is_active_store,\n platform_stg__stores_enrichment.store_created_at,\n platform_stg__stores_enrichment.store_name,\n platform_stg__stores_enrichment.store_language,\n platform_stg__stores_enrichment.platform_name,\n COALESCE(platform_stg__stores_enrichment.is_blacklisted, 0) AS is_blacklisted,\n loyalty__merchant.merchant_id,\n loyalty__merchant.merchant_created_at,\n loyalty__merchant.company_name AS loyalty_company_name,\n loyalty__merchant.currency AS loyalty_currency,\n loyalty__merchant.platform AS loyalty_platform,\n COALESCE(loyalty__merchant.is_completed_profile, 0) AS loyalty_is_completed_profile,\n COALESCE(loyalty__merchant.is_redemptions_enabled, 0) AS loyalty_is_redemptions_enabled,\n loyalty__merchant.plan_name AS loyalty_plan_name,\n loyalty__merchant.contact_email AS loyalty_contact_email,\n COALESCE(loyalty__merchant.is_test_account, 0) AS loyalty_is_test_account,\n loyalty__merchant.loyalty_opt_in_strategy,\n loyalty__merchant.referral_opt_in_strategy,\n loyalty__merchant.group_id AS loyalty_group_id,\n loyalty__merchant.vip_type AS loyalty_vip_type,\n COALESCE(loyalty__merchant.is_vip_enabled, 0) AS loyalty_is_vip_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM platform_stg__stores_enrichment\n LEFT JOIN loyalty__merchant\n ON loyalty__merchant.app_key = platform_stg__stores_enrichment.app_key\n\n)\n\nSELECT * FROM platform__dim_stores", "language": "sql", "refs": [{"name": "platform_stg__stores_enrichment", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__stores_enrichment", "model.yoda.analytics___loyalty__merchant"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__dim_stores/platform__dim_stores.sql", "compiled": true, "compiled_code": "WITH platform_stg__stores_enrichment AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__stores_enrichment\n\n), loyalty__merchant AS (\n\n SELECT * FROM dev_dkruh1.analytics___loyalty__merchant\n\n), platform__dim_stores AS (\n\n SELECT platform_stg__stores_enrichment.store_id,\n platform_stg__stores_enrichment.organization_id,\n platform_stg__stores_enrichment.app_key,\n platform_stg__stores_enrichment.store_domain,\n COALESCE(platform_stg__stores_enrichment.is_test, 0) AS is_test_store,\n COALESCE(platform_stg__stores_enrichment.is_active, 0) AS is_active_store,\n platform_stg__stores_enrichment.store_created_at,\n platform_stg__stores_enrichment.store_name,\n platform_stg__stores_enrichment.store_language,\n platform_stg__stores_enrichment.platform_name,\n COALESCE(platform_stg__stores_enrichment.is_blacklisted, 0) AS is_blacklisted,\n loyalty__merchant.merchant_id,\n loyalty__merchant.merchant_created_at,\n loyalty__merchant.company_name AS loyalty_company_name,\n loyalty__merchant.currency AS loyalty_currency,\n loyalty__merchant.platform AS loyalty_platform,\n COALESCE(loyalty__merchant.is_completed_profile, 0) AS loyalty_is_completed_profile,\n COALESCE(loyalty__merchant.is_redemptions_enabled, 0) AS loyalty_is_redemptions_enabled,\n loyalty__merchant.plan_name AS loyalty_plan_name,\n loyalty__merchant.contact_email AS loyalty_contact_email,\n COALESCE(loyalty__merchant.is_test_account, 0) AS loyalty_is_test_account,\n loyalty__merchant.loyalty_opt_in_strategy,\n loyalty__merchant.referral_opt_in_strategy,\n loyalty__merchant.group_id AS loyalty_group_id,\n loyalty__merchant.vip_type AS loyalty_vip_type,\n COALESCE(loyalty__merchant.is_vip_enabled, 0) AS loyalty_is_vip_enabled,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM platform_stg__stores_enrichment\n LEFT JOIN loyalty__merchant\n ON loyalty__merchant.app_key = platform_stg__stores_enrichment.app_key\n\n)\n\nSELECT * FROM platform__dim_stores", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__integrations_adoption": {"database": null, "schema": "dev_dkruh1", "name": "platform__integrations_adoption", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption/platform__integrations_adoption.sql", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.sql", "unique_id": "model.yoda.platform__integrations_adoption", "fqn": ["yoda", "platform", "marts", "platform__integrations_adoption", "platform__integrations_adoption"], "alias": "platform__integrations_adoption", "checksum": {"name": "sha256", "checksum": "e521d303af90ed17c394edc297efd0a56ded6bc96ab362fb58e2ea717a900c44"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Contains snapshot of the integrationscenter.store_applications for every day table with only the relevant columns", "columns": {"store_id": {"name": "store_id", "description": "TThe id of the store for which the row of information is", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "application_id": {"name": "application_id", "description": "The id of an application that is either connected or disconnected for a specific store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "application_name": {"name": "application_name", "description": "The name of the application corresponding to the application_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "The date at which the application was first installed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "disconnected_at": {"name": "disconnected_at", "description": "The date at which the application was disconnecter or NULL if it is still connected", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "The date at which the status of the connection of the application was changed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "snapshot_date": {"name": "snapshot_date", "description": "The date for which this row in the table is", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "incremental", "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append"}, "created_at": 1700082678.3130116, "relation_name": "dev_dkruh1.platform__integrations_adoption", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy='append',\n) }}\n\n\nWITH staging AS (\n\nSELECT\na.store_id,\na.application_id,\nb.application_name,\na.created_at,\na.disconnected_at,\na.updated_at,\ncurrent_date AS snapshot_date \nFROM {{ ref('platform_stg__ic_store_applications') }} a\nJOIN {{ ref('platform_stg__integrations_names') }} b\nON a.application_id = b.application_id\n)\n\nSELECT * FROM staging", "language": "sql", "refs": [{"name": "platform_stg__ic_store_applications", "package": null, "version": null}, {"name": "platform_stg__integrations_names", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__ic_store_applications", "model.yoda.platform_stg__integrations_names"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\n\nWITH staging AS (\n\nSELECT\na.store_id,\na.application_id,\nb.application_name,\na.created_at,\na.disconnected_at,\na.updated_at,\ncurrent_date AS snapshot_date \nFROM dev_dkruh1.platform_stg__ic_store_applications a\nJOIN dev_dkruh1.platform_stg__integrations_names b\nON a.application_id = b.application_id\n)\n\nSELECT * FROM staging", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__integrations_adoption_per_application": {"database": null, "schema": "dev_dkruh1", "name": "platform__integrations_adoption_per_application", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.sql", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.sql", "unique_id": "model.yoda.platform__integrations_adoption_per_application", "fqn": ["yoda", "platform", "marts", "platform__integrations_adoption_per_application", "platform__integrations_adoption_per_application"], "alias": "platform__integrations_adoption_per_application", "checksum": {"name": "sha256", "checksum": "c8b5675ea99ee141f982ddb36c734e5d10b00d037d89a6a25140e506a1809512"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Contains info for each week how many times each applications was installed, disconnected or reinstalled", "columns": {"application_id": {"name": "application_id", "description": "The id of the application", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "application_name": {"name": "application_name", "description": "The name of the application for the corresponding application_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_installs": {"name": "total_installs", "description": "The total amount of installation of an application for all stores for a specific timestamp", "meta": {"yoda_metric": {"type": "sum"}}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_disconnects": {"name": "total_disconnects", "description": "The total amount of disconnects of an application for all stores for a specific timestamp", "meta": {"yoda_metric": {"type": "sum"}}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "snapshot_date": {"name": "snapshot_date", "description": "The specific date when the snapshot was taken", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "incremental", "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append"}, "created_at": 1700082678.3586435, "relation_name": "dev_dkruh1.platform__integrations_adoption_per_application", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy='append',\n) }}\n\n\nWITH staging AS (\n\nSELECT\na.application_id,\nb.application_name,\nSUM(CASE WHEN disconnected_at IS NULL then 1 else 0 end) as total_installs,\nSUM(CASE WHEN disconnected_at IS NOT NULL then 1 else 0 end) as total_disconnects,\ncurrent_date AS snapshot_date \nFROM {{ ref('platform_stg__ic_store_applications') }} a\nJOIN {{ ref('platform_stg__integrations_names') }} b\nON a.application_id = b.application_id\nGROUP BY b.application_name, a.application_id\n\n)\n\nSELECT * FROM staging", "language": "sql", "refs": [{"name": "platform_stg__ic_store_applications", "package": null, "version": null}, {"name": "platform_stg__integrations_names", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__ic_store_applications", "model.yoda.platform_stg__integrations_names"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\n\nWITH staging AS (\n\nSELECT\na.application_id,\nb.application_name,\nSUM(CASE WHEN disconnected_at IS NULL then 1 else 0 end) as total_installs,\nSUM(CASE WHEN disconnected_at IS NOT NULL then 1 else 0 end) as total_disconnects,\ncurrent_date AS snapshot_date \nFROM dev_dkruh1.platform_stg__ic_store_applications a\nJOIN dev_dkruh1.platform_stg__integrations_names b\nON a.application_id = b.application_id\nGROUP BY b.application_name, a.application_id\n\n)\n\nSELECT * FROM staging", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__integrations_adoption_per_store": {"database": null, "schema": "dev_dkruh1", "name": "platform__integrations_adoption_per_store", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.sql", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.sql", "unique_id": "model.yoda.platform__integrations_adoption_per_store", "fqn": ["yoda", "platform", "marts", "platform__integrations_adoption_per_store", "platform__integrations_adoption_per_store"], "alias": "platform__integrations_adoption_per_store", "checksum": {"name": "sha256", "checksum": "84899e28ffca6e4e024f5d3ab6bdf9b17870d70051bec316bbe06178de32d378"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Contains info for each store how many installs, disconnectes and reinstalls it made per given week", "columns": {"store_id": {"name": "store_id", "description": "The specific store_id for which the statistic for a given week is", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_installs": {"name": "total_installs", "description": "The total amount of installed applications at a specific timestamp for a specific store", "meta": {"yoda_metric": {"type": "sum"}}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_disconnects": {"name": "total_disconnects", "description": "The total amount of disconnected applications at a specific timestamp for a specific store", "meta": {"yoda_metric": {"type": "sum"}}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "snapshot_date": {"name": "snapshot_date", "description": "The specific date when the snapshot was taken", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "incremental", "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append"}, "created_at": 1700082678.385605, "relation_name": "dev_dkruh1.platform__integrations_adoption_per_store", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy='append',\n) }}\n\n\nWITH staging AS (\n\nSELECT\nstore_id,\nSUM(CASE WHEN disconnected_at IS NULL then 1 else 0 end) as total_installs,\nSUM(CASE WHEN disconnected_at IS NOT NULL then 1 else 0 end) as total_disconnects,\ncurrent_date AS snapshot_date\nFROM {{ ref('platform_stg__ic_store_applications') }}\nGROUP BY store_id\n\n)\n\nSELECT * FROM staging", "language": "sql", "refs": [{"name": "platform_stg__ic_store_applications", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__ic_store_applications"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\n\nWITH staging AS (\n\nSELECT\nstore_id,\nSUM(CASE WHEN disconnected_at IS NULL then 1 else 0 end) as total_installs,\nSUM(CASE WHEN disconnected_at IS NOT NULL then 1 else 0 end) as total_disconnects,\ncurrent_date AS snapshot_date\nFROM dev_dkruh1.platform_stg__ic_store_applications\nGROUP BY store_id\n\n)\n\nSELECT * FROM staging", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__orders_with_product_lines_attribution": {"database": null, "schema": "dev_dkruh1", "name": "platform__orders_with_product_lines_attribution", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.sql", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.sql", "unique_id": "model.yoda.platform__orders_with_product_lines_attribution", "fqn": ["yoda", "platform", "marts", "platform__orders_with_product_lines_attribution", "platform__orders_with_product_lines_attribution"], "alias": "platform__orders_with_product_lines_attribution", "checksum": {"name": "sha256", "checksum": "845f913a4766aa736046abddb6de4ae1747f8fd17add8907df4325613ef7823a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Data of orders with the value attributed by each product line and the total value", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier in Yotpo platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptions_attributed_revenue_last_7_days": {"name": "subscriptions_attributed_revenue_last_7_days", "description": "Total revenue generated by subscription product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_attributed_revenue_trend_7_days": {"name": "subscriptions_attributed_revenue_trend_7_days", "description": "Total subscription revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue_last_7_days": {"name": "loyalty_attributed_revenue_last_7_days", "description": "Total revenue generated by loyalty product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue_trend_7_days": {"name": "loyalty_attributed_revenue_trend_7_days", "description": "Total loyalty revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue_last_7_days": {"name": "email_attributed_revenue_last_7_days", "description": "Total revenue generated by email product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue_trend_7_days": {"name": "email_attributed_revenue_trend_7_days", "description": "Total email revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue_last_7_days": {"name": "sms_attributed_revenue_last_7_days", "description": "Total revenue generated by SMS product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue_trend_7_days": {"name": "sms_attributed_revenue_trend_7_days", "description": "Total SMS revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue_last_7_days": {"name": "reviews_attributed_revenue_last_7_days", "description": "Total revenue generated by reviews product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue_trend_7_days": {"name": "reviews_attributed_revenue_trend_7_days", "description": "Total reviews revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_last_7_days": {"name": "total_revenue_last_7_days", "description": "Total revenue generated by all products for the given time range (Total revenue is calculated without including reviews currently)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_trend_7_days": {"name": "total_revenue_trend_7_days", "description": "Total revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_orders_last_7_days": {"name": "total_orders_last_7_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptions_attributed_revenue_last_30_days": {"name": "subscriptions_attributed_revenue_last_30_days", "description": "Total revenue generated by subscription product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_attributed_revenue_trend_30_days": {"name": "subscriptions_attributed_revenue_trend_30_days", "description": "Total subscription revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue_last_30_days": {"name": "loyalty_attributed_revenue_last_30_days", "description": "Total revenue generated by loyalty product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue_trend_30_days": {"name": "loyalty_attributed_revenue_trend_30_days", "description": "Total loyalty revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue_last_30_days": {"name": "email_attributed_revenue_last_30_days", "description": "Total revenue generated by email product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue_trend_30_days": {"name": "email_attributed_revenue_trend_30_days", "description": "Total email revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue_last_30_days": {"name": "sms_attributed_revenue_last_30_days", "description": "Total revenue generated by SMS product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue_trend_30_days": {"name": "sms_attributed_revenue_trend_30_days", "description": "Total SMS revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue_last_30_days": {"name": "reviews_attributed_revenue_last_30_days", "description": "Total revenue generated by reviews product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue_trend_30_days": {"name": "reviews_attributed_revenue_trend_30_days", "description": "Total reviews revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_last_30_days": {"name": "total_revenue_last_30_days", "description": "Total revenue generated by all products for the given time range (Total revenue is calculated without including reviews currently)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_trend_30_days": {"name": "total_revenue_trend_30_days", "description": "Total revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_orders_last_30_days": {"name": "total_orders_last_30_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptions_attributed_revenue_last_90_days": {"name": "subscriptions_attributed_revenue_last_90_days", "description": "Total revenue generated by subscription product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_attributed_revenue_trend_90_days": {"name": "subscriptions_attributed_revenue_trend_90_days", "description": "Total subscription revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue_last_90_days": {"name": "loyalty_attributed_revenue_last_90_days", "description": "Total revenue generated by loyalty product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue_trend_90_days": {"name": "loyalty_attributed_revenue_trend_90_days", "description": "Total loyalty revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue_last_90_days": {"name": "email_attributed_revenue_last_90_days", "description": "Total revenue generated by email product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue_trend_90_days": {"name": "email_attributed_revenue_trend_90_days", "description": "Total email revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue_last_90_days": {"name": "sms_attributed_revenue_last_90_days", "description": "Total revenue generated by SMS product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue_trend_90_days": {"name": "sms_attributed_revenue_trend_90_days", "description": "Total SMS revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue_last_90_days": {"name": "reviews_attributed_revenue_last_90_days", "description": "Total revenue generated by reviews product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue_trend_90_days": {"name": "reviews_attributed_revenue_trend_90_days", "description": "Total reviews revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_last_90_days": {"name": "total_revenue_last_90_days", "description": "Total revenue generated by all products for the given time range (Total revenue is calculated without including reviews currently)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_trend_90_days": {"name": "total_revenue_trend_90_days", "description": "Total revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_orders_last_90_days": {"name": "total_orders_last_90_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptions_attributed_revenue_last_365_days": {"name": "subscriptions_attributed_revenue_last_365_days", "description": "Total revenue generated by subscription product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_attributed_revenue_trend_365_days": {"name": "subscriptions_attributed_revenue_trend_365_days", "description": "Total subscription revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue_last_365_days": {"name": "loyalty_attributed_revenue_last_365_days", "description": "Total revenue generated by loyalty product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue_trend_365_days": {"name": "loyalty_attributed_revenue_trend_365_days", "description": "Total loyalty revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue_last_365_days": {"name": "email_attributed_revenue_last_365_days", "description": "Total revenue generated by email product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue_trend_365_days": {"name": "email_attributed_revenue_trend_365_days", "description": "Total email revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue_last_365_days": {"name": "sms_attributed_revenue_last_365_days", "description": "Total revenue generated by SMS product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue_trend_365_days": {"name": "sms_attributed_revenue_trend_365_days", "description": "Total SMS revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue_last_365_days": {"name": "reviews_attributed_revenue_last_365_days", "description": "Total revenue generated by reviews product for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue_trend_365_days": {"name": "reviews_attributed_revenue_trend_365_days", "description": "Total reviews revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_last_365_days": {"name": "total_revenue_last_365_days", "description": "Total revenue generated by all products for the given time range (Total revenue is calculated without including reviews currently)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_trend_365_days": {"name": "total_revenue_trend_365_days", "description": "Total revenue growth for the given time range", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_orders_last_365_days": {"name": "total_orders_last_365_days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082678.4418473, "relation_name": "dev_dkruh1.platform__orders_with_product_lines_attribution", "raw_code": "WITH product_and_total_revenue_daily AS (\n\n SELECT\n *\n FROM {{ ref('platform__orders_with_product_lines_attribution_daily') }}\n),\n {% set days_ranges = [7, 30, 90, 365] %}\n total_yotpo_and_products_revenue_per_ranges AS (\n SELECT\n app_key,\n {% for days_range in days_ranges %}\n -- Subscriptions attributed revenue for current and previous period\n SUM(CASE WHEN {{ order_date_from(days_range) }} THEN daily_subscriptions_attributed_revenue ELSE 0 END)\n AS subscriptions_attributed_revenue_last_{{ days_range }}_days,\n SUM(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} THEN daily_subscriptions_attributed_revenue ELSE 0 END)\n AS subscriptions_attributed_revenue_prev_{{ days_range }}_days,\n\n -- Loyalty attributed revenue for current and previous period\n SUM(CASE WHEN {{ order_date_from(days_range) }} THEN daily_loyalty_attributed_revenue ELSE 0 END)\n AS loyalty_attributed_revenue_last_{{ days_range }}_days,\n SUM(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} THEN daily_loyalty_attributed_revenue ELSE 0 END)\n AS loyalty_attributed_revenue_prev_{{ days_range }}_days,\n\n -- Email attributed revenue for current and previous period\n SUM(CASE WHEN {{ order_date_from(days_range) }} THEN daily_email_attributed_revenue ELSE 0 END)\n AS email_attributed_revenue_last_{{ days_range }}_days,\n SUM(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} THEN daily_email_attributed_revenue ELSE 0 END)\n AS email_attributed_revenue_prev_{{ days_range }}_days,\n\n -- SMS attributed revenue for current and previous period\n SUM(CASE WHEN {{ order_date_from(days_range) }} THEN daily_sms_attributed_revenue ELSE 0 END)\n AS sms_attributed_revenue_last_{{ days_range }}_days,\n SUM(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} THEN daily_sms_attributed_revenue ELSE 0 END)\n AS sms_attributed_revenue_prev_{{ days_range }}_days,\n\n -- Reviews attributed revenue for current and previous period\n SUM(CASE WHEN {{ order_date_from(days_range) }} THEN daily_reviews_attributed_revenue ELSE 0 END)\n AS reviews_attributed_revenue_last_{{ days_range }}_days,\n SUM(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} THEN daily_reviews_attributed_revenue ELSE 0 END)\n AS reviews_attributed_revenue_prev_{{ days_range }}_days,\n\n -- Total attributed revenue for current and previous period\n -- Total revenue is currently calculated without reviews\n SUM(CASE WHEN {{ order_date_from(days_range) }} THEN total_revenue ELSE 0 END)\n AS total_revenue_last_{{ days_range }}_days,\n SUM(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} THEN total_revenue ELSE 0 END)\n AS total_revenue_prev_{{ days_range }}_days,\n\n SUM (CASE WHEN {{ order_date_from(days_range) }} THEN\n daily_subscriptions_attributed_orders +\n daily_loyalty_attributed_orders +\n daily_email_attributed_orders +\n daily_sms_attributed_orders +\n daily_reviews_attributed_orders ELSE 0 END) AS total_orders_last_{{ days_range }}_days\n\n {% if not loop.last %},\n {% endif %}\n {% endfor %}\n FROM product_and_total_revenue_daily\n GROUP BY app_key\n), total_yotpo_and_products_revenue_and_trends AS (\n\n SELECT\n app_key,\n {% for days_range in days_ranges %}\n subscriptions_attributed_revenue_last_{{ days_range }}_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (subscriptions_attributed_revenue_last_{{ days_range }}_days - subscriptions_attributed_revenue_prev_{{ days_range }}_days) / subscriptions_attributed_revenue_prev_{{ days_range }}_days),\n 2), 0) AS subscriptions_attributed_revenue_trend_{{ days_range }}_days,\n\n loyalty_attributed_revenue_last_{{ days_range }}_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (loyalty_attributed_revenue_last_{{ days_range }}_days - loyalty_attributed_revenue_prev_{{ days_range }}_days) / loyalty_attributed_revenue_prev_{{ days_range }}_days),\n 2), 0) AS loyalty_attributed_revenue_trend_{{ days_range }}_days,\n\n email_attributed_revenue_last_{{ days_range }}_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (email_attributed_revenue_last_{{ days_range }}_days - email_attributed_revenue_prev_{{ days_range }}_days) / email_attributed_revenue_prev_{{ days_range }}_days),\n 2), 0) AS email_attributed_revenue_trend_{{ days_range }}_days,\n\n sms_attributed_revenue_last_{{ days_range }}_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (sms_attributed_revenue_last_{{ days_range }}_days - sms_attributed_revenue_prev_{{ days_range }}_days) / sms_attributed_revenue_prev_{{ days_range }}_days),\n 2), 0) AS sms_attributed_revenue_trend_{{ days_range }}_days,\n\n reviews_attributed_revenue_last_{{ days_range }}_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (reviews_attributed_revenue_last_{{ days_range }}_days - reviews_attributed_revenue_prev_{{ days_range }}_days) / reviews_attributed_revenue_prev_{{ days_range }}_days),\n 2), 0) AS reviews_attributed_revenue_trend_{{ days_range }}_days,\n\n total_revenue_last_{{ days_range }}_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (total_revenue_last_{{ days_range }}_days - total_revenue_prev_{{ days_range }}_days) / total_revenue_prev_{{ days_range }}_days),\n 2), 0) AS total_revenue_trend_{{ days_range }}_days,\n\n total_orders_last_{{ days_range }}_days\n {% if not loop.last %},\n {% endif %}\n {% endfor %}\n\n FROM total_yotpo_and_products_revenue_per_ranges\n)\n\n\nSELECT * FROM total_yotpo_and_products_revenue_and_trends", "language": "sql", "refs": [{"name": "platform__orders_with_product_lines_attribution_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.order_date_from", "macro.yoda.order_date_between", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__orders_with_product_lines_attribution_daily"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.sql", "compiled": true, "compiled_code": "WITH product_and_total_revenue_daily AS (\n\n SELECT\n *\n FROM dev_dkruh1.platform__orders_with_product_lines_attribution_daily\n),\n \n total_yotpo_and_products_revenue_per_ranges AS (\n SELECT\n app_key,\n \n -- Subscriptions attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_subscriptions_attributed_revenue ELSE 0 END)\n AS subscriptions_attributed_revenue_last_7_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n THEN daily_subscriptions_attributed_revenue ELSE 0 END)\n AS subscriptions_attributed_revenue_prev_7_days,\n\n -- Loyalty attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_loyalty_attributed_revenue ELSE 0 END)\n AS loyalty_attributed_revenue_last_7_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n THEN daily_loyalty_attributed_revenue ELSE 0 END)\n AS loyalty_attributed_revenue_prev_7_days,\n\n -- Email attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_email_attributed_revenue ELSE 0 END)\n AS email_attributed_revenue_last_7_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n THEN daily_email_attributed_revenue ELSE 0 END)\n AS email_attributed_revenue_prev_7_days,\n\n -- SMS attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_sms_attributed_revenue ELSE 0 END)\n AS sms_attributed_revenue_last_7_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n THEN daily_sms_attributed_revenue ELSE 0 END)\n AS sms_attributed_revenue_prev_7_days,\n\n -- Reviews attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_reviews_attributed_revenue ELSE 0 END)\n AS reviews_attributed_revenue_last_7_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n THEN daily_reviews_attributed_revenue ELSE 0 END)\n AS reviews_attributed_revenue_prev_7_days,\n\n -- Total attributed revenue for current and previous period\n -- Total revenue is currently calculated without reviews\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN total_revenue ELSE 0 END)\n AS total_revenue_last_7_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n THEN total_revenue ELSE 0 END)\n AS total_revenue_prev_7_days,\n\n SUM (CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN\n daily_subscriptions_attributed_orders +\n daily_loyalty_attributed_orders +\n daily_email_attributed_orders +\n daily_sms_attributed_orders +\n daily_reviews_attributed_orders ELSE 0 END) AS total_orders_last_7_days\n\n ,\n \n \n -- Subscriptions attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_subscriptions_attributed_revenue ELSE 0 END)\n AS subscriptions_attributed_revenue_last_30_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n THEN daily_subscriptions_attributed_revenue ELSE 0 END)\n AS subscriptions_attributed_revenue_prev_30_days,\n\n -- Loyalty attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_loyalty_attributed_revenue ELSE 0 END)\n AS loyalty_attributed_revenue_last_30_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n THEN daily_loyalty_attributed_revenue ELSE 0 END)\n AS loyalty_attributed_revenue_prev_30_days,\n\n -- Email attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_email_attributed_revenue ELSE 0 END)\n AS email_attributed_revenue_last_30_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n THEN daily_email_attributed_revenue ELSE 0 END)\n AS email_attributed_revenue_prev_30_days,\n\n -- SMS attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_sms_attributed_revenue ELSE 0 END)\n AS sms_attributed_revenue_last_30_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n THEN daily_sms_attributed_revenue ELSE 0 END)\n AS sms_attributed_revenue_prev_30_days,\n\n -- Reviews attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_reviews_attributed_revenue ELSE 0 END)\n AS reviews_attributed_revenue_last_30_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n THEN daily_reviews_attributed_revenue ELSE 0 END)\n AS reviews_attributed_revenue_prev_30_days,\n\n -- Total attributed revenue for current and previous period\n -- Total revenue is currently calculated without reviews\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN total_revenue ELSE 0 END)\n AS total_revenue_last_30_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n THEN total_revenue ELSE 0 END)\n AS total_revenue_prev_30_days,\n\n SUM (CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN\n daily_subscriptions_attributed_orders +\n daily_loyalty_attributed_orders +\n daily_email_attributed_orders +\n daily_sms_attributed_orders +\n daily_reviews_attributed_orders ELSE 0 END) AS total_orders_last_30_days\n\n ,\n \n \n -- Subscriptions attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_subscriptions_attributed_revenue ELSE 0 END)\n AS subscriptions_attributed_revenue_last_90_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n THEN daily_subscriptions_attributed_revenue ELSE 0 END)\n AS subscriptions_attributed_revenue_prev_90_days,\n\n -- Loyalty attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_loyalty_attributed_revenue ELSE 0 END)\n AS loyalty_attributed_revenue_last_90_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n THEN daily_loyalty_attributed_revenue ELSE 0 END)\n AS loyalty_attributed_revenue_prev_90_days,\n\n -- Email attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_email_attributed_revenue ELSE 0 END)\n AS email_attributed_revenue_last_90_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n THEN daily_email_attributed_revenue ELSE 0 END)\n AS email_attributed_revenue_prev_90_days,\n\n -- SMS attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_sms_attributed_revenue ELSE 0 END)\n AS sms_attributed_revenue_last_90_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n THEN daily_sms_attributed_revenue ELSE 0 END)\n AS sms_attributed_revenue_prev_90_days,\n\n -- Reviews attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_reviews_attributed_revenue ELSE 0 END)\n AS reviews_attributed_revenue_last_90_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n THEN daily_reviews_attributed_revenue ELSE 0 END)\n AS reviews_attributed_revenue_prev_90_days,\n\n -- Total attributed revenue for current and previous period\n -- Total revenue is currently calculated without reviews\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN total_revenue ELSE 0 END)\n AS total_revenue_last_90_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n THEN total_revenue ELSE 0 END)\n AS total_revenue_prev_90_days,\n\n SUM (CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN\n daily_subscriptions_attributed_orders +\n daily_loyalty_attributed_orders +\n daily_email_attributed_orders +\n daily_sms_attributed_orders +\n daily_reviews_attributed_orders ELSE 0 END) AS total_orders_last_90_days\n\n ,\n \n \n -- Subscriptions attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_subscriptions_attributed_revenue ELSE 0 END)\n AS subscriptions_attributed_revenue_last_365_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN daily_subscriptions_attributed_revenue ELSE 0 END)\n AS subscriptions_attributed_revenue_prev_365_days,\n\n -- Loyalty attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_loyalty_attributed_revenue ELSE 0 END)\n AS loyalty_attributed_revenue_last_365_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN daily_loyalty_attributed_revenue ELSE 0 END)\n AS loyalty_attributed_revenue_prev_365_days,\n\n -- Email attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_email_attributed_revenue ELSE 0 END)\n AS email_attributed_revenue_last_365_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN daily_email_attributed_revenue ELSE 0 END)\n AS email_attributed_revenue_prev_365_days,\n\n -- SMS attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_sms_attributed_revenue ELSE 0 END)\n AS sms_attributed_revenue_last_365_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN daily_sms_attributed_revenue ELSE 0 END)\n AS sms_attributed_revenue_prev_365_days,\n\n -- Reviews attributed revenue for current and previous period\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN daily_reviews_attributed_revenue ELSE 0 END)\n AS reviews_attributed_revenue_last_365_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN daily_reviews_attributed_revenue ELSE 0 END)\n AS reviews_attributed_revenue_prev_365_days,\n\n -- Total attributed revenue for current and previous period\n -- Total revenue is currently calculated without reviews\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN total_revenue ELSE 0 END)\n AS total_revenue_last_365_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN total_revenue ELSE 0 END)\n AS total_revenue_prev_365_days,\n\n SUM (CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN\n daily_subscriptions_attributed_orders +\n daily_loyalty_attributed_orders +\n daily_email_attributed_orders +\n daily_sms_attributed_orders +\n daily_reviews_attributed_orders ELSE 0 END) AS total_orders_last_365_days\n\n \n \n FROM product_and_total_revenue_daily\n GROUP BY app_key\n), total_yotpo_and_products_revenue_and_trends AS (\n\n SELECT\n app_key,\n \n subscriptions_attributed_revenue_last_7_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (subscriptions_attributed_revenue_last_7_days - subscriptions_attributed_revenue_prev_7_days) / subscriptions_attributed_revenue_prev_7_days),\n 2), 0) AS subscriptions_attributed_revenue_trend_7_days,\n\n loyalty_attributed_revenue_last_7_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (loyalty_attributed_revenue_last_7_days - loyalty_attributed_revenue_prev_7_days) / loyalty_attributed_revenue_prev_7_days),\n 2), 0) AS loyalty_attributed_revenue_trend_7_days,\n\n email_attributed_revenue_last_7_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (email_attributed_revenue_last_7_days - email_attributed_revenue_prev_7_days) / email_attributed_revenue_prev_7_days),\n 2), 0) AS email_attributed_revenue_trend_7_days,\n\n sms_attributed_revenue_last_7_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (sms_attributed_revenue_last_7_days - sms_attributed_revenue_prev_7_days) / sms_attributed_revenue_prev_7_days),\n 2), 0) AS sms_attributed_revenue_trend_7_days,\n\n reviews_attributed_revenue_last_7_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (reviews_attributed_revenue_last_7_days - reviews_attributed_revenue_prev_7_days) / reviews_attributed_revenue_prev_7_days),\n 2), 0) AS reviews_attributed_revenue_trend_7_days,\n\n total_revenue_last_7_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (total_revenue_last_7_days - total_revenue_prev_7_days) / total_revenue_prev_7_days),\n 2), 0) AS total_revenue_trend_7_days,\n\n total_orders_last_7_days\n ,\n \n \n subscriptions_attributed_revenue_last_30_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (subscriptions_attributed_revenue_last_30_days - subscriptions_attributed_revenue_prev_30_days) / subscriptions_attributed_revenue_prev_30_days),\n 2), 0) AS subscriptions_attributed_revenue_trend_30_days,\n\n loyalty_attributed_revenue_last_30_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (loyalty_attributed_revenue_last_30_days - loyalty_attributed_revenue_prev_30_days) / loyalty_attributed_revenue_prev_30_days),\n 2), 0) AS loyalty_attributed_revenue_trend_30_days,\n\n email_attributed_revenue_last_30_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (email_attributed_revenue_last_30_days - email_attributed_revenue_prev_30_days) / email_attributed_revenue_prev_30_days),\n 2), 0) AS email_attributed_revenue_trend_30_days,\n\n sms_attributed_revenue_last_30_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (sms_attributed_revenue_last_30_days - sms_attributed_revenue_prev_30_days) / sms_attributed_revenue_prev_30_days),\n 2), 0) AS sms_attributed_revenue_trend_30_days,\n\n reviews_attributed_revenue_last_30_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (reviews_attributed_revenue_last_30_days - reviews_attributed_revenue_prev_30_days) / reviews_attributed_revenue_prev_30_days),\n 2), 0) AS reviews_attributed_revenue_trend_30_days,\n\n total_revenue_last_30_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (total_revenue_last_30_days - total_revenue_prev_30_days) / total_revenue_prev_30_days),\n 2), 0) AS total_revenue_trend_30_days,\n\n total_orders_last_30_days\n ,\n \n \n subscriptions_attributed_revenue_last_90_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (subscriptions_attributed_revenue_last_90_days - subscriptions_attributed_revenue_prev_90_days) / subscriptions_attributed_revenue_prev_90_days),\n 2), 0) AS subscriptions_attributed_revenue_trend_90_days,\n\n loyalty_attributed_revenue_last_90_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (loyalty_attributed_revenue_last_90_days - loyalty_attributed_revenue_prev_90_days) / loyalty_attributed_revenue_prev_90_days),\n 2), 0) AS loyalty_attributed_revenue_trend_90_days,\n\n email_attributed_revenue_last_90_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (email_attributed_revenue_last_90_days - email_attributed_revenue_prev_90_days) / email_attributed_revenue_prev_90_days),\n 2), 0) AS email_attributed_revenue_trend_90_days,\n\n sms_attributed_revenue_last_90_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (sms_attributed_revenue_last_90_days - sms_attributed_revenue_prev_90_days) / sms_attributed_revenue_prev_90_days),\n 2), 0) AS sms_attributed_revenue_trend_90_days,\n\n reviews_attributed_revenue_last_90_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (reviews_attributed_revenue_last_90_days - reviews_attributed_revenue_prev_90_days) / reviews_attributed_revenue_prev_90_days),\n 2), 0) AS reviews_attributed_revenue_trend_90_days,\n\n total_revenue_last_90_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (total_revenue_last_90_days - total_revenue_prev_90_days) / total_revenue_prev_90_days),\n 2), 0) AS total_revenue_trend_90_days,\n\n total_orders_last_90_days\n ,\n \n \n subscriptions_attributed_revenue_last_365_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (subscriptions_attributed_revenue_last_365_days - subscriptions_attributed_revenue_prev_365_days) / subscriptions_attributed_revenue_prev_365_days),\n 2), 0) AS subscriptions_attributed_revenue_trend_365_days,\n\n loyalty_attributed_revenue_last_365_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (loyalty_attributed_revenue_last_365_days - loyalty_attributed_revenue_prev_365_days) / loyalty_attributed_revenue_prev_365_days),\n 2), 0) AS loyalty_attributed_revenue_trend_365_days,\n\n email_attributed_revenue_last_365_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (email_attributed_revenue_last_365_days - email_attributed_revenue_prev_365_days) / email_attributed_revenue_prev_365_days),\n 2), 0) AS email_attributed_revenue_trend_365_days,\n\n sms_attributed_revenue_last_365_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (sms_attributed_revenue_last_365_days - sms_attributed_revenue_prev_365_days) / sms_attributed_revenue_prev_365_days),\n 2), 0) AS sms_attributed_revenue_trend_365_days,\n\n reviews_attributed_revenue_last_365_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (reviews_attributed_revenue_last_365_days - reviews_attributed_revenue_prev_365_days) / reviews_attributed_revenue_prev_365_days),\n 2), 0) AS reviews_attributed_revenue_trend_365_days,\n\n total_revenue_last_365_days,\n -- We coalesce because division by zero returns null\n COALESCE(ROUND(\n (100 * (total_revenue_last_365_days - total_revenue_prev_365_days) / total_revenue_prev_365_days),\n 2), 0) AS total_revenue_trend_365_days,\n\n total_orders_last_365_days\n \n \n\n FROM total_yotpo_and_products_revenue_per_ranges\n)\n\n\nSELECT * FROM total_yotpo_and_products_revenue_and_trends", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__orders_with_product_lines_attribution_daily": {"database": null, "schema": "dev_dkruh1", "name": "platform__orders_with_product_lines_attribution_daily", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.sql", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.sql", "unique_id": "model.yoda.platform__orders_with_product_lines_attribution_daily", "fqn": ["yoda", "platform", "marts", "platform__orders_with_product_lines_attribution_daily", "platform__orders_with_product_lines_attribution_daily"], "alias": "platform__orders_with_product_lines_attribution_daily", "checksum": {"name": "sha256", "checksum": "50a88eb4f4742d218f869a0f99f20ceba52d78c42ab04403c111db8884b1d866"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Data of orders with the value attributed by each product line and the total value per each day", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier in Yotpo platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "Date for which the revenues were calculated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "daily_subscriptions_attributed_orders": {"name": "daily_subscriptions_attributed_orders", "description": "Total orders generated by subscriptions product for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daily_loyalty_attributed_orders": {"name": "daily_loyalty_attributed_orders", "description": "Total orders generated by loyalty product for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daily_email_attributed_orders": {"name": "daily_email_attributed_orders", "description": "Total orders generated by email product for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daily_sms_attributed_orders": {"name": "daily_sms_attributed_orders", "description": "Total orders generated by sms product for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daily_reviews_attributed_orders": {"name": "daily_reviews_attributed_orders", "description": "Total orders generated by reviews product for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_orders": {"name": "total_orders", "description": "Total orders generated by all product lines for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daily_subscriptions_attributed_revenue": {"name": "daily_subscriptions_attributed_revenue", "description": "Total revenue generated by subscriptions product for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "daily_loyalty_attributed_revenue": {"name": "daily_loyalty_attributed_revenue", "description": "Total revenue generated by loyalty product for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "daily_email_attributed_revenue": {"name": "daily_email_attributed_revenue", "description": "Total revenue generated by email product for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "daily_sms_attributed_revenue": {"name": "daily_sms_attributed_revenue", "description": "Total revenue generated by sms product for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "daily_reviews_attributed_revenue": {"name": "daily_reviews_attributed_revenue", "description": "Total revenue generated by reviews product for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue": {"name": "total_revenue", "description": "Total revenue generated by all product lines for each day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082678.462049, "relation_name": "dev_dkruh1.platform__orders_with_product_lines_attribution_daily", "raw_code": "{{ total_yotpo_and_products_revenue_daily() }}\n\nSELECT * FROM total_yotpo_and_products_revenue", "language": "sql", "refs": [{"name": "platform_stg__email_shopify_orders_to_shop_currency", "package": null, "version": null}, {"name": "platform_stg__sms_shopify_orders_to_shop_currency", "package": null, "version": null}, {"name": "loyalty__redeemed_purchases", "package": null, "version": null}, {"name": "subscriptions__subscriptions_attributed_orders", "package": null, "version": null}, {"name": "ugc__partial_reviewed_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.total_yotpo_and_products_revenue_daily", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__email_shopify_orders_to_shop_currency", "model.yoda.platform_stg__sms_shopify_orders_to_shop_currency", "model.yoda.loyalty__redeemed_purchases", "model.yoda.subscriptions__subscriptions_attributed_orders", "model.yoda.ugc__partial_reviewed_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.sql", "compiled": true, "compiled_code": "\n\nWITH email_attributed_orders AS (\n\n SELECT\n app_key,\n order_id AS external_order_id,\n total_price AS order_total,\n DATE(order_date) AS order_date\n FROM dev_dkruh1.platform_stg__email_shopify_orders_to_shop_currency\n WHERE app_key IS NOT NULL\n\n), sms_attributed_orders AS (\n\n SELECT\n app_key,\n order_id AS external_order_id,\n total_price AS order_total,\n DATE(order_date) AS order_date\n FROM dev_dkruh1.platform_stg__sms_shopify_orders_to_shop_currency\n WHERE app_key IS NOT NULL\n\n), loyalty_attributed_orders AS (\n\n SELECT DISTINCT\n external_order_id,\n app_key,\n order_total,\n order_date\n FROM dev_dkruh1.loyalty__redeemed_purchases\n\n), subscriptions_attributed_orders AS (\n\n SELECT\n app_key,\n external_order_id,\n order_total,\n order_date\n FROM dev_dkruh1.subscriptions__subscriptions_attributed_orders\n\n), reviews_attributed_orders AS (\n\n SELECT\n app_key,\n external_order_id,\n total_price as order_total,\n DATE(order_date) AS order_date\n FROM dev_dkruh1.ugc__partial_reviewed_orders\n\n), products_attributed_orders AS (\n\n SELECT\n COALESCE(subscriptions_attributed_orders.external_order_id,\n loyalty_attributed_orders.external_order_id,\n email_attributed_orders.external_order_id,\n sms_attributed_orders.external_order_id,\n reviews_attributed_orders.external_order_id) AS order_id,\n COALESCE(subscriptions_attributed_orders.order_date,\n loyalty_attributed_orders.order_date,\n email_attributed_orders.order_date,\n sms_attributed_orders.order_date,\n reviews_attributed_orders.order_date) AS order_date,\n COALESCE(subscriptions_attributed_orders.app_key,\n loyalty_attributed_orders.app_key,\n email_attributed_orders.app_key,\n sms_attributed_orders.app_key,\n reviews_attributed_orders.app_key) AS app_key,\n subscriptions_attributed_orders.order_total AS subscriptions_attributed_revenue,\n loyalty_attributed_orders.order_total AS loyalty_attributed_revenue,\n email_attributed_orders.order_total AS email_attributed_revenue,\n sms_attributed_orders.order_total AS sms_attributed_revenue,\n reviews_attributed_orders.order_total AS reviews_attributed_revenue\n FROM\n loyalty_attributed_orders\n FULL JOIN subscriptions_attributed_orders\n ON loyalty_attributed_orders.external_order_id = subscriptions_attributed_orders.external_order_id\n AND loyalty_attributed_orders.app_key = subscriptions_attributed_orders.app_key\n FULL JOIN email_attributed_orders\n ON COALESCE(loyalty_attributed_orders.external_order_id, subscriptions_attributed_orders.external_order_id) = email_attributed_orders.external_order_id\n AND COALESCE(loyalty_attributed_orders.app_key, subscriptions_attributed_orders.app_key) = email_attributed_orders.app_key\n FULL JOIN sms_attributed_orders\n ON COALESCE(loyalty_attributed_orders.external_order_id, subscriptions_attributed_orders.external_order_id, email_attributed_orders.external_order_id) = sms_attributed_orders.external_order_id\n AND COALESCE(loyalty_attributed_orders.app_key, subscriptions_attributed_orders.app_key, email_attributed_orders.app_key) = sms_attributed_orders.app_key\n FULL JOIN reviews_attributed_orders\n ON COALESCE(loyalty_attributed_orders.external_order_id, subscriptions_attributed_orders.external_order_id, email_attributed_orders.external_order_id, sms_attributed_orders.external_order_id) = reviews_attributed_orders.external_order_id\n AND COALESCE(loyalty_attributed_orders.app_key, subscriptions_attributed_orders.app_key, email_attributed_orders.app_key, sms_attributed_orders.app_key) = reviews_attributed_orders.app_key\n\n), total_yotpo_and_products_revenue AS (\n SELECT\n app_key,\n order_date,\n COUNT(IF(subscriptions_attributed_revenue > 0,order_id,0)) AS daily_subscriptions_attributed_orders,\n COUNT(IF(loyalty_attributed_revenue > 0,order_id,0)) AS daily_loyalty_attributed_orders,\n COUNT(IF(email_attributed_revenue > 0,order_id,0)) AS daily_email_attributed_orders,\n COUNT(IF(sms_attributed_revenue > 0,order_id,0)) AS daily_sms_attributed_orders,\n COUNT(IF(reviews_attributed_revenue > 0,order_id,0)) AS daily_reviews_attributed_orders,\n COUNT(IF(subscriptions_attributed_revenue > 0 OR loyalty_attributed_revenue > 0 OR email_attributed_revenue > 0 OR sms_attributed_revenue > 0,order_id,NULL)) AS total_orders,\n SUM(subscriptions_attributed_revenue) AS daily_subscriptions_attributed_revenue,\n SUM(loyalty_attributed_revenue) AS daily_loyalty_attributed_revenue,\n SUM(email_attributed_revenue) AS daily_email_attributed_revenue,\n SUM(sms_attributed_revenue) AS daily_sms_attributed_revenue,\n SUM(reviews_attributed_revenue) AS daily_reviews_attributed_revenue,\n SUM(GREATEST(subscriptions_attributed_revenue, loyalty_attributed_revenue, email_attributed_revenue, sms_attributed_revenue)) AS total_revenue -- Total revenue is currently calculated without reviews\n FROM products_attributed_orders\n GROUP BY app_key, order_date\n)\n\n\n\nSELECT * FROM total_yotpo_and_products_revenue", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__orders_with_product_lines_attribution_daily_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__orders_with_product_lines_attribution_daily_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily_to_snowflake/platform__orders_with_product_lines_attribution_daily_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily_to_snowflake/platform__orders_with_product_lines_attribution_daily_to_snowflake.sql", "unique_id": "model.yoda.platform__orders_with_product_lines_attribution_daily_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__orders_with_product_lines_attribution_daily_to_snowflake", "platform__orders_with_product_lines_attribution_daily_to_snowflake"], "alias": "platform__orders_with_product_lines_attribution_daily_to_snowflake", "checksum": {"name": "sha256", "checksum": "9a3e29113c11cb68fc11923c91afac3b17c1cfdcffb00e7035bf5892d2bd876b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "ORDERS_WITH_PRODUCT_LINES_ATTRIBUTION", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "Data of orders with the value attributed by each product line and the total value per each day", "columns": {}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "ORDERS_WITH_PRODUCT_LINES_ATTRIBUTION", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__orders_with_product_lines_attribution_daily_to_snowflake/platform__orders_with_product_lines_attribution_daily_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "ORDERS_WITH_PRODUCT_LINES_ATTRIBUTION", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082678.4767551, "relation_name": "dev_dkruh1.platform__orders_with_product_lines_attribution_daily_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__orders_with_product_lines_attribution_daily') }}\n\n), orders_with_product_lines_attribution_daily_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(order_date as date),\n\t\tcast(daily_subscriptions_attributed_revenue as double),\n\t\tcast(daily_loyalty_attributed_revenue as double),\n\t\tcast(daily_email_attributed_revenue as double),\n\t\tcast(daily_sms_attributed_revenue as double),\n\t\tcast(daily_reviews_attributed_revenue as double),\n\t\tcast(total_revenue as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM orders_with_product_lines_attribution_daily_to_snowflake", "language": "sql", "refs": [{"name": "platform__orders_with_product_lines_attribution_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__orders_with_product_lines_attribution_daily"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__orders_with_product_lines_attribution_daily_to_snowflake/platform__orders_with_product_lines_attribution_daily_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__orders_with_product_lines_attribution_daily\n\n), orders_with_product_lines_attribution_daily_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(order_date as date),\n\t\tcast(daily_subscriptions_attributed_revenue as double),\n\t\tcast(daily_loyalty_attributed_revenue as double),\n\t\tcast(daily_email_attributed_revenue as double),\n\t\tcast(daily_sms_attributed_revenue as double),\n\t\tcast(daily_reviews_attributed_revenue as double),\n\t\tcast(total_revenue as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM orders_with_product_lines_attribution_daily_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__orders_with_product_lines_attribution_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__orders_with_product_lines_attribution_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_to_snowflake/platform__orders_with_product_lines_attribution_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_to_snowflake/platform__orders_with_product_lines_attribution_to_snowflake.sql", "unique_id": "model.yoda.platform__orders_with_product_lines_attribution_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__orders_with_product_lines_attribution_to_snowflake", "platform__orders_with_product_lines_attribution_to_snowflake"], "alias": "platform__orders_with_product_lines_attribution_to_snowflake", "checksum": {"name": "sha256", "checksum": "417e712181b27bdc9448f3253c50fce1bc2b2b06ad744a5ddf6591d90ddb9615"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "orders_with_product_lines_attribution_fixed_dates", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "Data of orders with the value attributed by each product line and the total value", "columns": {}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "orders_with_product_lines_attribution_fixed_dates", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__orders_with_product_lines_attribution_to_snowflake/platform__orders_with_product_lines_attribution_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "orders_with_product_lines_attribution_fixed_dates", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082678.4899914, "relation_name": "dev_dkruh1.platform__orders_with_product_lines_attribution_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__orders_with_product_lines_attribution') }}\n\n), orders_with_product_lines_attribution_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(subscriptions_attributed_revenue_last_7_days as double),\n\t\tcast(subscriptions_attributed_revenue_trend_7_days as double),\n\t\tcast(loyalty_attributed_revenue_last_7_days as double),\n\t\tcast(loyalty_attributed_revenue_trend_7_days as double),\n\t\tcast(email_attributed_revenue_last_7_days as double),\n\t\tcast(email_attributed_revenue_trend_7_days as double),\n\t\tcast(sms_attributed_revenue_last_7_days as double),\n\t\tcast(sms_attributed_revenue_trend_7_days as double),\n\t\tcast(reviews_attributed_revenue_last_7_days as double),\n\t\tcast(reviews_attributed_revenue_trend_7_days as double),\n\t\tcast(total_revenue_last_7_days as double),\n\t\tcast(total_revenue_trend_7_days as double),\n\t\tcast(subscriptions_attributed_revenue_last_30_days as double),\n\t\tcast(subscriptions_attributed_revenue_trend_30_days as double),\n\t\tcast(loyalty_attributed_revenue_last_30_days as double),\n\t\tcast(loyalty_attributed_revenue_trend_30_days as double),\n\t\tcast(email_attributed_revenue_last_30_days as double),\n\t\tcast(email_attributed_revenue_trend_30_days as double),\n\t\tcast(sms_attributed_revenue_last_30_days as double),\n\t\tcast(sms_attributed_revenue_trend_30_days as double),\n\t\tcast(reviews_attributed_revenue_last_30_days as double),\n\t\tcast(reviews_attributed_revenue_trend_30_days as double),\n\t\tcast(total_revenue_last_30_days as double),\n\t\tcast(total_revenue_trend_30_days as double),\n\t\tcast(subscriptions_attributed_revenue_last_90_days as double),\n\t\tcast(subscriptions_attributed_revenue_trend_90_days as double),\n\t\tcast(loyalty_attributed_revenue_last_90_days as double),\n\t\tcast(loyalty_attributed_revenue_trend_90_days as double),\n\t\tcast(email_attributed_revenue_last_90_days as double),\n\t\tcast(email_attributed_revenue_trend_90_days as double),\n\t\tcast(sms_attributed_revenue_last_90_days as double),\n\t\tcast(sms_attributed_revenue_trend_90_days as double),\n\t\tcast(reviews_attributed_revenue_last_90_days as double),\n\t\tcast(reviews_attributed_revenue_trend_90_days as double),\n\t\tcast(total_revenue_last_90_days as double),\n\t\tcast(total_revenue_trend_90_days as double),\n\t\tcast(subscriptions_attributed_revenue_last_365_days as double),\n\t\tcast(subscriptions_attributed_revenue_trend_365_days as double),\n\t\tcast(loyalty_attributed_revenue_last_365_days as double),\n\t\tcast(loyalty_attributed_revenue_trend_365_days as double),\n\t\tcast(email_attributed_revenue_last_365_days as double),\n\t\tcast(email_attributed_revenue_trend_365_days as double),\n\t\tcast(sms_attributed_revenue_last_365_days as double),\n\t\tcast(sms_attributed_revenue_trend_365_days as double),\n\t\tcast(reviews_attributed_revenue_last_365_days as double),\n\t\tcast(reviews_attributed_revenue_trend_365_days as double),\n\t\tcast(total_revenue_last_365_days as double),\n\t\tcast(total_revenue_trend_365_days as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM orders_with_product_lines_attribution_to_snowflake", "language": "sql", "refs": [{"name": "platform__orders_with_product_lines_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__orders_with_product_lines_attribution"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__orders_with_product_lines_attribution_to_snowflake/platform__orders_with_product_lines_attribution_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__orders_with_product_lines_attribution\n\n), orders_with_product_lines_attribution_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(subscriptions_attributed_revenue_last_7_days as double),\n\t\tcast(subscriptions_attributed_revenue_trend_7_days as double),\n\t\tcast(loyalty_attributed_revenue_last_7_days as double),\n\t\tcast(loyalty_attributed_revenue_trend_7_days as double),\n\t\tcast(email_attributed_revenue_last_7_days as double),\n\t\tcast(email_attributed_revenue_trend_7_days as double),\n\t\tcast(sms_attributed_revenue_last_7_days as double),\n\t\tcast(sms_attributed_revenue_trend_7_days as double),\n\t\tcast(reviews_attributed_revenue_last_7_days as double),\n\t\tcast(reviews_attributed_revenue_trend_7_days as double),\n\t\tcast(total_revenue_last_7_days as double),\n\t\tcast(total_revenue_trend_7_days as double),\n\t\tcast(subscriptions_attributed_revenue_last_30_days as double),\n\t\tcast(subscriptions_attributed_revenue_trend_30_days as double),\n\t\tcast(loyalty_attributed_revenue_last_30_days as double),\n\t\tcast(loyalty_attributed_revenue_trend_30_days as double),\n\t\tcast(email_attributed_revenue_last_30_days as double),\n\t\tcast(email_attributed_revenue_trend_30_days as double),\n\t\tcast(sms_attributed_revenue_last_30_days as double),\n\t\tcast(sms_attributed_revenue_trend_30_days as double),\n\t\tcast(reviews_attributed_revenue_last_30_days as double),\n\t\tcast(reviews_attributed_revenue_trend_30_days as double),\n\t\tcast(total_revenue_last_30_days as double),\n\t\tcast(total_revenue_trend_30_days as double),\n\t\tcast(subscriptions_attributed_revenue_last_90_days as double),\n\t\tcast(subscriptions_attributed_revenue_trend_90_days as double),\n\t\tcast(loyalty_attributed_revenue_last_90_days as double),\n\t\tcast(loyalty_attributed_revenue_trend_90_days as double),\n\t\tcast(email_attributed_revenue_last_90_days as double),\n\t\tcast(email_attributed_revenue_trend_90_days as double),\n\t\tcast(sms_attributed_revenue_last_90_days as double),\n\t\tcast(sms_attributed_revenue_trend_90_days as double),\n\t\tcast(reviews_attributed_revenue_last_90_days as double),\n\t\tcast(reviews_attributed_revenue_trend_90_days as double),\n\t\tcast(total_revenue_last_90_days as double),\n\t\tcast(total_revenue_trend_90_days as double),\n\t\tcast(subscriptions_attributed_revenue_last_365_days as double),\n\t\tcast(subscriptions_attributed_revenue_trend_365_days as double),\n\t\tcast(loyalty_attributed_revenue_last_365_days as double),\n\t\tcast(loyalty_attributed_revenue_trend_365_days as double),\n\t\tcast(email_attributed_revenue_last_365_days as double),\n\t\tcast(email_attributed_revenue_trend_365_days as double),\n\t\tcast(sms_attributed_revenue_last_365_days as double),\n\t\tcast(sms_attributed_revenue_trend_365_days as double),\n\t\tcast(reviews_attributed_revenue_last_365_days as double),\n\t\tcast(reviews_attributed_revenue_trend_365_days as double),\n\t\tcast(total_revenue_last_365_days as double),\n\t\tcast(total_revenue_trend_365_days as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM orders_with_product_lines_attribution_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__owners_packages_organization_view": {"database": null, "schema": "dev_dkruh1", "name": "platform__owners_packages_organization_view", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.sql", "original_file_path": "models/platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.sql", "unique_id": "model.yoda.platform__owners_packages_organization_view", "fqn": ["yoda", "platform", "marts", "platform__owners_packages_organization_view", "platform__owners_packages_organization_view"], "alias": "platform__owners_packages_organization_view", "checksum": {"name": "sha256", "checksum": "805153225067ed2b57f9795a4298138ed9bf33004e89c998dbb1b8f8f44c5c4f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform__owners_packages_organization_view", "columns": {"organization_key": {"name": "organization_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_id": {"name": "package_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "started_at": {"name": "started_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082678.5039716, "relation_name": "dev_dkruh1.platform__owners_packages_organization_view", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view'),\n )\n}}\n\nWITH organizations AS (\n\n SELECT id, organization_key FROM {{ ref('platform_stg__organizations') }}\n\n), accounts AS (\n\n SELECT app_key, organization_id FROM {{ ref('platform_stg__accounts') }}\n\n), owners_packages AS (\n\n SELECT owner_id, owner_type, package_id, created_at, updated_at, started_at FROM {{ ref('platform_stg__owners_packages') }}\n\n), packages AS (\n\n SELECT id, category_id FROM {{ ref('platform_stg__packages') }}\n\n), owner_packages_app_organization AS (\n\n SELECT organizations.organization_key as organization_key, \n collect_set(owners_packages.package_id) as package_id,\n MIN(owners_packages.created_at) as created_at, \n MAX(owners_packages.updated_at) as updated_at, \n MIN(owners_packages.started_at) as started_at\n FROM owners_packages\n JOIN accounts\n ON accounts.app_key = owner_id \n JOIN organizations \n ON organizations.id = organization_id\n JOIN packages \n ON packages.id = owners_packages.package_id \n WHERE LOWER(owner_type) = 'store'\n GROUP BY organizations.organization_key, packages.category_id\n), owner_packages_organization AS (\n\n SELECT owner_id AS organization_key,\n CAST(ARRAY(package_id) AS ARRAY) AS package_id,\n created_at, \n updated_at, \n started_at\n FROM owners_packages\n WHERE LOWER(owner_type) = 'organization'\n), owner_packages_organization_view AS (\n\n SELECT organization_key, package_id, created_at, updated_at, started_at FROM owner_packages_app_organization\n UNION ALL\n SELECT organization_key, package_id, created_at, updated_at, started_at FROM owner_packages_organization\n)\n\nSELECT * FROM owner_packages_organization_view", "language": "sql", "refs": [{"name": "platform_stg__organizations", "package": null, "version": null}, {"name": "platform_stg__accounts", "package": null, "version": null}, {"name": "platform_stg__owners_packages", "package": null, "version": null}, {"name": "platform_stg__packages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__organizations", "model.yoda.platform_stg__accounts", "model.yoda.platform_stg__owners_packages", "model.yoda.platform_stg__packages"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.sql", "compiled": true, "compiled_code": "\n\nWITH organizations AS (\n\n SELECT id, organization_key FROM dev_dkruh1.platform_stg__organizations\n\n), accounts AS (\n\n SELECT app_key, organization_id FROM dev_dkruh1.platform_stg__accounts\n\n), owners_packages AS (\n\n SELECT owner_id, owner_type, package_id, created_at, updated_at, started_at FROM dev_dkruh1.platform_stg__owners_packages\n\n), packages AS (\n\n SELECT id, category_id FROM dev_dkruh1.platform_stg__packages\n\n), owner_packages_app_organization AS (\n\n SELECT organizations.organization_key as organization_key, \n collect_set(owners_packages.package_id) as package_id,\n MIN(owners_packages.created_at) as created_at, \n MAX(owners_packages.updated_at) as updated_at, \n MIN(owners_packages.started_at) as started_at\n FROM owners_packages\n JOIN accounts\n ON accounts.app_key = owner_id \n JOIN organizations \n ON organizations.id = organization_id\n JOIN packages \n ON packages.id = owners_packages.package_id \n WHERE LOWER(owner_type) = 'store'\n GROUP BY organizations.organization_key, packages.category_id\n), owner_packages_organization AS (\n\n SELECT owner_id AS organization_key,\n CAST(ARRAY(package_id) AS ARRAY) AS package_id,\n created_at, \n updated_at, \n started_at\n FROM owners_packages\n WHERE LOWER(owner_type) = 'organization'\n), owner_packages_organization_view AS (\n\n SELECT organization_key, package_id, created_at, updated_at, started_at FROM owner_packages_app_organization\n UNION ALL\n SELECT organization_key, package_id, created_at, updated_at, started_at FROM owner_packages_organization\n)\n\nSELECT * FROM owner_packages_organization_view", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__owners_packages_store_view": {"database": null, "schema": "dev_dkruh1", "name": "platform__owners_packages_store_view", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.sql", "original_file_path": "models/platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.sql", "unique_id": "model.yoda.platform__owners_packages_store_view", "fqn": ["yoda", "platform", "marts", "platform__owners_packages_store_view", "platform__owners_packages_store_view"], "alias": "platform__owners_packages_store_view", "checksum": {"name": "sha256", "checksum": "1a29c02da2e4cedac12b711c90f80797db423208fbf89686950c2167f81c7060"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform__owners_packages_store_view", "columns": {"store_id": {"name": "store_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_id": {"name": "package_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "started_at": {"name": "started_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082678.519435, "relation_name": "dev_dkruh1.platform__owners_packages_store_view", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view'),\n )\n}}\n\nWITH organizations AS (\n\n SELECT id, organization_key FROM {{ ref('platform_stg__organizations') }}\n\n), accounts AS (\n\n SELECT app_key, organization_id FROM {{ ref('platform_stg__accounts') }}\n\n), owners_packages AS (\n\n SELECT owner_id, owner_type, package_id, created_at, updated_at, started_at FROM {{ ref('platform_stg__owners_packages') }}\n\n), owner_packages_organization_app AS (\n\n SELECT accounts.app_key AS store_id, \n package_id, \n owners_packages.created_at, \n owners_packages.updated_at, \n owners_packages.started_at\n FROM owners_packages\n JOIN organizations \n ON organizations.organization_key = owner_id \n JOIN accounts\n ON accounts.organization_id = organizations.id \n WHERE LOWER(owner_type) = 'organization' AND app_key IS NOT NULL\n), owner_packages_app AS (\n\n SELECT owner_id AS store_id, package_id, created_at, updated_at, started_at\n FROM owners_packages\n WHERE LOWER(owner_type) = 'store'\n), owner_packages_store_view AS (\n\n SELECT store_id, package_id, created_at, updated_at, started_at FROM owner_packages_organization_app\n UNION ALL\n SELECT store_id, package_id, created_at, updated_at, started_at FROM owner_packages_app\n)\n\nSELECT * FROM owner_packages_store_view", "language": "sql", "refs": [{"name": "platform_stg__organizations", "package": null, "version": null}, {"name": "platform_stg__accounts", "package": null, "version": null}, {"name": "platform_stg__owners_packages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__organizations", "model.yoda.platform_stg__accounts", "model.yoda.platform_stg__owners_packages"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.sql", "compiled": true, "compiled_code": "\n\nWITH organizations AS (\n\n SELECT id, organization_key FROM dev_dkruh1.platform_stg__organizations\n\n), accounts AS (\n\n SELECT app_key, organization_id FROM dev_dkruh1.platform_stg__accounts\n\n), owners_packages AS (\n\n SELECT owner_id, owner_type, package_id, created_at, updated_at, started_at FROM dev_dkruh1.platform_stg__owners_packages\n\n), owner_packages_organization_app AS (\n\n SELECT accounts.app_key AS store_id, \n package_id, \n owners_packages.created_at, \n owners_packages.updated_at, \n owners_packages.started_at\n FROM owners_packages\n JOIN organizations \n ON organizations.organization_key = owner_id \n JOIN accounts\n ON accounts.organization_id = organizations.id \n WHERE LOWER(owner_type) = 'organization' AND app_key IS NOT NULL\n), owner_packages_app AS (\n\n SELECT owner_id AS store_id, package_id, created_at, updated_at, started_at\n FROM owners_packages\n WHERE LOWER(owner_type) = 'store'\n), owner_packages_store_view AS (\n\n SELECT store_id, package_id, created_at, updated_at, started_at FROM owner_packages_organization_app\n UNION ALL\n SELECT store_id, package_id, created_at, updated_at, started_at FROM owner_packages_app\n)\n\nSELECT * FROM owner_packages_store_view", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_average_order_value": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_average_order_value", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.sql", "unique_id": "model.yoda.platform__retention_metrics_average_order_value", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_average_order_value", "platform__retention_metrics_average_order_value"], "alias": "platform__retention_metrics_average_order_value", "checksum": {"name": "sha256", "checksum": "d7979caeb1d0beaf7ccec819a4c51f865480e5e19b33854046232778e29f60f3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Data for the \"Average per order\" metrics of the retention metrics dashboard", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier in Yotpo platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "The date for which the data is calculated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "total_engaged_customers_sales_value_by_date": {"name": "total_engaged_customers_sales_value_by_date", "description": "The total revenue made by engaged customers per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_returning_customers_sales_value_by_date": {"name": "total_returning_customers_sales_value_by_date", "description": "The total revenue made by new customers per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_new_customers_sales_value_by_date": {"name": "total_new_customers_sales_value_by_date", "description": "The total revenue made by new customers per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_customers_orders_count_by_date": {"name": "engaged_customers_orders_count_by_date", "description": "The number of orders made by engaged customers per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_customers_orders_count_by_date": {"name": "returning_customers_orders_count_by_date", "description": "The number of orders made by returning customers per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_customers_orders_count_by_date": {"name": "new_customers_orders_count_by_date", "description": "The number of orders made by new customers per date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082678.5366569, "relation_name": "dev_dkruh1.platform__retention_metrics_average_order_value", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH retention_metrics_orders AS (\n\n SELECT * FROM {{ ref('platform__retention_metrics_orders') }}\n\n), orders_per_customer_retention_segment AS (\n SELECT \n app_key,\n order_date,\n SUM(CASE \n WHEN segment = \"engaged\" THEN order_total\n ELSE 0\n END) AS total_engaged_customers_sales_value_by_date,\n SUM(CASE \n WHEN segment = \"returning\" THEN order_total\n ELSE 0\n END) AS total_returning_customers_sales_value_by_date,\n SUM(CASE \n WHEN segment = \"new\" THEN order_total\n ELSE 0\n END) AS total_new_customers_sales_value_by_date,\n COUNT(CASE \n WHEN segment = \"engaged\" THEN external_customer_id END)\n AS engaged_customers_orders_count_by_date,\n COUNT(CASE \n WHEN segment = \"returning\" THEN external_customer_id END)\n AS returning_customers_orders_count_by_date,\n COUNT(CASE \n WHEN segment = \"new\" THEN external_customer_id END)\n AS new_customers_orders_count_by_date\n FROM retention_metrics_orders\n GROUP BY order_date, app_key\n)\n\nSELECT * \nFROM orders_per_customer_retention_segment", "language": "sql", "refs": [{"name": "platform__retention_metrics_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH retention_metrics_orders AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_orders\n\n), orders_per_customer_retention_segment AS (\n SELECT \n app_key,\n order_date,\n SUM(CASE \n WHEN segment = \"engaged\" THEN order_total\n ELSE 0\n END) AS total_engaged_customers_sales_value_by_date,\n SUM(CASE \n WHEN segment = \"returning\" THEN order_total\n ELSE 0\n END) AS total_returning_customers_sales_value_by_date,\n SUM(CASE \n WHEN segment = \"new\" THEN order_total\n ELSE 0\n END) AS total_new_customers_sales_value_by_date,\n COUNT(CASE \n WHEN segment = \"engaged\" THEN external_customer_id END)\n AS engaged_customers_orders_count_by_date,\n COUNT(CASE \n WHEN segment = \"returning\" THEN external_customer_id END)\n AS returning_customers_orders_count_by_date,\n COUNT(CASE \n WHEN segment = \"new\" THEN external_customer_id END)\n AS new_customers_orders_count_by_date\n FROM retention_metrics_orders\n GROUP BY order_date, app_key\n)\n\nSELECT * \nFROM orders_per_customer_retention_segment", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_average_order_value_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_average_order_value_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.sql", "unique_id": "model.yoda.platform__retention_metrics_average_order_value_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_average_order_value_to_snowflake", "platform__retention_metrics_average_order_value_to_snowflake"], "alias": "platform__retention_metrics_average_order_value_to_snowflake", "checksum": {"name": "sha256", "checksum": "90f585245ae0bd1d6517fee55573db3cd7225c804a1970391d10178caf025fbb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_average_order_value_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table retention_metrics_average_order_value cluster by (app_key);", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "total_engaged_customers_sales_value_by_date": {"name": "total_engaged_customers_sales_value_by_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_returning_customers_sales_value_by_date": {"name": "total_returning_customers_sales_value_by_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_new_customers_sales_value_by_date": {"name": "total_new_customers_sales_value_by_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_customers_orders_count_by_date": {"name": "engaged_customers_orders_count_by_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_customers_orders_count_by_date": {"name": "returning_customers_orders_count_by_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_customers_orders_count_by_date": {"name": "new_customers_orders_count_by_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_average_order_value_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table retention_metrics_average_order_value cluster by (app_key);", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_average_order_value_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table retention_metrics_average_order_value cluster by (app_key);", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082678.5563514, "relation_name": "dev_dkruh1.platform__retention_metrics_average_order_value_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__retention_metrics_average_order_value') }}\n\n), retention_metrics_average_order_value_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(order_date as date),\n\t\tcast(total_engaged_customers_sales_value_by_date as double),\n\t\tcast(total_returning_customers_sales_value_by_date as double),\n\t\tcast(total_new_customers_sales_value_by_date as double),\n\t\tcast(engaged_customers_orders_count_by_date as bigint),\n\t\tcast(returning_customers_orders_count_by_date as bigint),\n\t\tcast(new_customers_orders_count_by_date as bigint)\n\n FROM export_candidate\n\tORDER BY app_key\n\n)\n\nSELECT * FROM retention_metrics_average_order_value_to_snowflake", "language": "sql", "refs": [{"name": "platform__retention_metrics_average_order_value", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_average_order_value"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_average_order_value\n\n), retention_metrics_average_order_value_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(order_date as date),\n\t\tcast(total_engaged_customers_sales_value_by_date as double),\n\t\tcast(total_returning_customers_sales_value_by_date as double),\n\t\tcast(total_new_customers_sales_value_by_date as double),\n\t\tcast(engaged_customers_orders_count_by_date as bigint),\n\t\tcast(returning_customers_orders_count_by_date as bigint),\n\t\tcast(new_customers_orders_count_by_date as bigint)\n\n FROM export_candidate\n\tORDER BY app_key\n\n)\n\nSELECT * FROM retention_metrics_average_order_value_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_bar_chart_total_sales": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_bar_chart_total_sales", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.sql", "unique_id": "model.yoda.platform__retention_metrics_bar_chart_total_sales", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_bar_chart_total_sales", "platform__retention_metrics_bar_chart_total_sales"], "alias": "platform__retention_metrics_bar_chart_total_sales", "checksum": {"name": "sha256", "checksum": "7c2d76175af33173fc87f563be1759ad86f4f071934fb9cc41b92198440517e9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Model that contains the total value of revenue for each merchant by segmentation tier for the last 12 months.\n\n It unites the values for the current month - which uses daily segmentation of users as a reference and values for the past 11 months which use the last date of each month as a reference for the segmentation of merchant's customers.", "columns": {"app_key": {"name": "app_key", "description": "The unique identifier for the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date_of_segmentation": {"name": "date_of_segmentation", "description": "Column that contains the value of the date used for the segmentation of the merchant's customers.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "total_sales_engaged_customers": {"name": "total_sales_engaged_customers", "description": "Total sales for the engaged customers of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_sales_new_customers": {"name": "total_sales_new_customers", "description": "Total sales for the new customers of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_sales_returning_customers": {"name": "total_sales_returning_customers", "description": "Total sales for the returning customers of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082678.5725906, "relation_name": "dev_dkruh1.platform__retention_metrics_bar_chart_total_sales", "raw_code": "WITH bar_chart_total_sales_current_month AS (\n SELECT\n app_key,\n date_of_segmentation,\n total_engaged_customers_sales_current_month as total_sales_engaged_customers,\n total_new_customers_sales_current_month as total_sales_new_customers,\n total_returning_customers_sales_current_month as total_sales_returning_customers\n FROM \n {{ ref('platform_stg__retention_metrics_bar_chart_total_sales_current_month') }}\n), bar_chart_total_sales_current_monthly AS (\n SELECT\n app_key,\n date_of_segmentation,\n total_engaged_customers_sales_for_date_of_segmentation as total_sales_engaged_customers,\n total_new_customers_sales_for_date_of_segmentation as total_sales_new_customers,\n total_returning_customers_sales_for_date_of_segmentation as total_sales_returning_customers\n FROM \n {{ ref('platform_stg__retention_metrics_bar_chart_total_sales_monthly') }}\n), bar_chart_total_sales_union AS (\n SELECT \n *\n FROM bar_chart_total_sales_current_month \n UNION ALL \n SELECT \n *\n FROM bar_chart_total_sales_current_monthly\n), bar_chart_total_sales AS (\n SELECT *\n FROM \n bar_chart_total_sales_union\n)\n\nSELECT * FROM bar_chart_total_sales", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_bar_chart_total_sales_current_month", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_bar_chart_total_sales_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month", "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.sql", "compiled": true, "compiled_code": "WITH bar_chart_total_sales_current_month AS (\n SELECT\n app_key,\n date_of_segmentation,\n total_engaged_customers_sales_current_month as total_sales_engaged_customers,\n total_new_customers_sales_current_month as total_sales_new_customers,\n total_returning_customers_sales_current_month as total_sales_returning_customers\n FROM \n dev_dkruh1.platform_stg__retention_metrics_bar_chart_total_sales_current_month\n), bar_chart_total_sales_current_monthly AS (\n SELECT\n app_key,\n date_of_segmentation,\n total_engaged_customers_sales_for_date_of_segmentation as total_sales_engaged_customers,\n total_new_customers_sales_for_date_of_segmentation as total_sales_new_customers,\n total_returning_customers_sales_for_date_of_segmentation as total_sales_returning_customers\n FROM \n dev_dkruh1.platform_stg__retention_metrics_bar_chart_total_sales_monthly\n), bar_chart_total_sales_union AS (\n SELECT \n *\n FROM bar_chart_total_sales_current_month \n UNION ALL \n SELECT \n *\n FROM bar_chart_total_sales_current_monthly\n), bar_chart_total_sales AS (\n SELECT *\n FROM \n bar_chart_total_sales_union\n)\n\nSELECT * FROM bar_chart_total_sales", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_bar_chart_total_sales_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_bar_chart_total_sales_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_bar_chart_total_sales_to_snowflake/platform__retention_metrics_bar_chart_total_sales_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_bar_chart_total_sales_to_snowflake/platform__retention_metrics_bar_chart_total_sales_to_snowflake.sql", "unique_id": "model.yoda.platform__retention_metrics_bar_chart_total_sales_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_bar_chart_total_sales_to_snowflake", "platform__retention_metrics_bar_chart_total_sales_to_snowflake"], "alias": "platform__retention_metrics_bar_chart_total_sales_to_snowflake", "checksum": {"name": "sha256", "checksum": "154f1d343e4a5674a77e6406ae7b29d676f6fff6e41f16d4a5be7f7ba66b915d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "RETENTION_METRICS_BAR_CHART_TOTAL_SALES_V2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "Model that contains the total value of revenue for each merchant by segmentation tier for the last 12 months.\n\n It unites the values for the current month - which uses daily segmentation of users as a reference and values for the past 11 months which use the last date of each month as a reference for the segmentation of merchant's customers.", "columns": {}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "RETENTION_METRICS_BAR_CHART_TOTAL_SALES_V2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_bar_chart_total_sales_to_snowflake/platform__retention_metrics_bar_chart_total_sales_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "RETENTION_METRICS_BAR_CHART_TOTAL_SALES_V2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082678.586476, "relation_name": "dev_dkruh1.platform__retention_metrics_bar_chart_total_sales_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__retention_metrics_bar_chart_total_sales') }}\n\n), retention_metrics_bar_chart_total_sales_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(date_of_segmentation as date),\n\t\tcast(total_sales_new_customers as double),\n\t\tcast(total_sales_engaged_customers as double),\n\t\tcast(total_sales_returning_customers as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_bar_chart_total_sales_to_snowflake", "language": "sql", "refs": [{"name": "platform__retention_metrics_bar_chart_total_sales", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_bar_chart_total_sales"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_bar_chart_total_sales_to_snowflake/platform__retention_metrics_bar_chart_total_sales_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_bar_chart_total_sales\n\n), retention_metrics_bar_chart_total_sales_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(date_of_segmentation as date),\n\t\tcast(total_sales_new_customers as double),\n\t\tcast(total_sales_engaged_customers as double),\n\t\tcast(total_sales_returning_customers as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_bar_chart_total_sales_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_customer_segment_ratio": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_customer_segment_ratio", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.sql", "unique_id": "model.yoda.platform__retention_metrics_customer_segment_ratio", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_customer_segment_ratio", "platform__retention_metrics_customer_segment_ratio"], "alias": "platform__retention_metrics_customer_segment_ratio", "checksum": {"name": "sha256", "checksum": "c3082228cd3252198a0b74ffaee6f100dc5f9a5a51d0c29121e3ea3d8809537b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "The distribution of unique customers across the different retention segments. Total are all the customers who purchased at least once in the last 12 months", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier in Yotpo", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "the trend for which the % were calculated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engaged_ratio": {"name": "engaged_ratio", "description": "% of customers that are considered engaged", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_ratio": {"name": "returning_ratio", "description": "% of customers that are considered returning", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_ratio": {"name": "new_ratio", "description": "% of customers that are considered new", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082678.600664, "relation_name": "dev_dkruh1.platform__retention_metrics_customer_segment_ratio", "raw_code": "WITH customer_segment_ratio_last_7 AS (\n\n {{ customer_ratio(7, 0, 'segment', 'Last_7_days') }}\n\n), customer_segment_ratio_last_30 AS (\n\n {{ customer_ratio(30, 0, 'segment', 'Last_30_days') }}\n\n), customer_segment_ratio_last_90 AS (\n\n {{ customer_ratio(90, 0, 'segment', 'Last_90_days') }}\n\n), customer_segment_ratio_last_365 AS (\n\n {{ customer_ratio(365, 0, 'segment', 'Last_365_days') }}\n\n), customer_segment_ratio_previous_7 AS (\n\n {{ customer_ratio(14, 7, 'segment_7_days_ago', 'Previous_7_days') }}\n\n), customer_segment_ratio_previous_30 AS (\n\n {{ customer_ratio(60, 30, 'segment_30_days_ago', 'Previous_30_days') }}\n\n), customer_segment_ratio_previous_90 AS (\n\n {{ customer_ratio(180, 90, 'segment_90_days_ago', 'Previous_90_days') }}\n\n), customer_segment_ratio_previous_365 AS (\n\n {{ customer_ratio(730, 365, 'segment_365_days_ago', 'Previous_365_days') }}\n\n)\n\nSELECT * FROM customer_segment_ratio_last_7\nUNION ALL\nSELECT * FROM customer_segment_ratio_last_30\nUNION ALL\nSELECT * FROM customer_segment_ratio_last_90\nUNION ALL\nSELECT * FROM customer_segment_ratio_last_365\nUNION ALL\nSELECT * FROM customer_segment_ratio_previous_7\nUNION ALL\nSELECT * FROM customer_segment_ratio_previous_30\nUNION ALL\nSELECT * FROM customer_segment_ratio_previous_90\nUNION ALL\nSELECT * FROM customer_segment_ratio_previous_365", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.customer_ratio", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.sql", "compiled": true, "compiled_code": "WITH customer_segment_ratio_last_7 AS (\n\n \n\n\nWITH filtered_orders AS (\n SELECT \n app_key, \n external_customer_id,\n FIRST(segment) as segment,\n FIRST(segment_7_days_ago) as segment_7_days_ago,\n FIRST(segment_30_days_ago) as segment_30_days_ago,\n FIRST(segment_90_days_ago) as segment_90_days_ago,\n FIRST(segment_365_days_ago) as segment_365_days_ago\n FROM \n dev_dkruh1.platform_stg__retention_metrics_trends_orders\n WHERE \n \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n\n GROUP BY \n app_key, \n external_customer_id\n\n), customer_ratio_Last_7_days AS (\n SELECT\n app_key,\n \"Last_7_days\" as trend,\n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'engaged' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as engaged_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'returning' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as returning_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'new' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as new_ratio\n \n \n FROM filtered_orders\n GROUP BY app_key\n)\n\nSELECT * FROM customer_ratio_Last_7_days\n\n\n\n), customer_segment_ratio_last_30 AS (\n\n \n\n\nWITH filtered_orders AS (\n SELECT \n app_key, \n external_customer_id,\n FIRST(segment) as segment,\n FIRST(segment_7_days_ago) as segment_7_days_ago,\n FIRST(segment_30_days_ago) as segment_30_days_ago,\n FIRST(segment_90_days_ago) as segment_90_days_ago,\n FIRST(segment_365_days_ago) as segment_365_days_ago\n FROM \n dev_dkruh1.platform_stg__retention_metrics_trends_orders\n WHERE \n \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n\n GROUP BY \n app_key, \n external_customer_id\n\n), customer_ratio_Last_30_days AS (\n SELECT\n app_key,\n \"Last_30_days\" as trend,\n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'engaged' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as engaged_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'returning' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as returning_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'new' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as new_ratio\n \n \n FROM filtered_orders\n GROUP BY app_key\n)\n\nSELECT * FROM customer_ratio_Last_30_days\n\n\n\n), customer_segment_ratio_last_90 AS (\n\n \n\n\nWITH filtered_orders AS (\n SELECT \n app_key, \n external_customer_id,\n FIRST(segment) as segment,\n FIRST(segment_7_days_ago) as segment_7_days_ago,\n FIRST(segment_30_days_ago) as segment_30_days_ago,\n FIRST(segment_90_days_ago) as segment_90_days_ago,\n FIRST(segment_365_days_ago) as segment_365_days_ago\n FROM \n dev_dkruh1.platform_stg__retention_metrics_trends_orders\n WHERE \n \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n\n GROUP BY \n app_key, \n external_customer_id\n\n), customer_ratio_Last_90_days AS (\n SELECT\n app_key,\n \"Last_90_days\" as trend,\n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'engaged' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as engaged_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'returning' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as returning_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'new' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as new_ratio\n \n \n FROM filtered_orders\n GROUP BY app_key\n)\n\nSELECT * FROM customer_ratio_Last_90_days\n\n\n\n), customer_segment_ratio_last_365 AS (\n\n \n\n\nWITH filtered_orders AS (\n SELECT \n app_key, \n external_customer_id,\n FIRST(segment) as segment,\n FIRST(segment_7_days_ago) as segment_7_days_ago,\n FIRST(segment_30_days_ago) as segment_30_days_ago,\n FIRST(segment_90_days_ago) as segment_90_days_ago,\n FIRST(segment_365_days_ago) as segment_365_days_ago\n FROM \n dev_dkruh1.platform_stg__retention_metrics_trends_orders\n WHERE \n \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n\n GROUP BY \n app_key, \n external_customer_id\n\n), customer_ratio_Last_365_days AS (\n SELECT\n app_key,\n \"Last_365_days\" as trend,\n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'engaged' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as engaged_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'returning' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as returning_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment = 'new' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment IS NOT NULL THEN 1 ELSE 0 END), 0) as new_ratio\n \n \n FROM filtered_orders\n GROUP BY app_key\n)\n\nSELECT * FROM customer_ratio_Last_365_days\n\n\n\n), customer_segment_ratio_previous_7 AS (\n\n \n\n\nWITH filtered_orders AS (\n SELECT \n app_key, \n external_customer_id,\n FIRST(segment) as segment,\n FIRST(segment_7_days_ago) as segment_7_days_ago,\n FIRST(segment_30_days_ago) as segment_30_days_ago,\n FIRST(segment_90_days_ago) as segment_90_days_ago,\n FIRST(segment_365_days_ago) as segment_365_days_ago\n FROM \n dev_dkruh1.platform_stg__retention_metrics_trends_orders\n WHERE \n \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n GROUP BY \n app_key, \n external_customer_id\n\n), customer_ratio_Previous_7_days AS (\n SELECT\n app_key,\n \"Previous_7_days\" as trend,\n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_7_days_ago = 'engaged' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_7_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as engaged_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_7_days_ago = 'returning' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_7_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as returning_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_7_days_ago = 'new' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_7_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as new_ratio\n \n \n FROM filtered_orders\n GROUP BY app_key\n)\n\nSELECT * FROM customer_ratio_Previous_7_days\n\n\n\n), customer_segment_ratio_previous_30 AS (\n\n \n\n\nWITH filtered_orders AS (\n SELECT \n app_key, \n external_customer_id,\n FIRST(segment) as segment,\n FIRST(segment_7_days_ago) as segment_7_days_ago,\n FIRST(segment_30_days_ago) as segment_30_days_ago,\n FIRST(segment_90_days_ago) as segment_90_days_ago,\n FIRST(segment_365_days_ago) as segment_365_days_ago\n FROM \n dev_dkruh1.platform_stg__retention_metrics_trends_orders\n WHERE \n \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n GROUP BY \n app_key, \n external_customer_id\n\n), customer_ratio_Previous_30_days AS (\n SELECT\n app_key,\n \"Previous_30_days\" as trend,\n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_30_days_ago = 'engaged' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_30_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as engaged_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_30_days_ago = 'returning' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_30_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as returning_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_30_days_ago = 'new' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_30_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as new_ratio\n \n \n FROM filtered_orders\n GROUP BY app_key\n)\n\nSELECT * FROM customer_ratio_Previous_30_days\n\n\n\n), customer_segment_ratio_previous_90 AS (\n\n \n\n\nWITH filtered_orders AS (\n SELECT \n app_key, \n external_customer_id,\n FIRST(segment) as segment,\n FIRST(segment_7_days_ago) as segment_7_days_ago,\n FIRST(segment_30_days_ago) as segment_30_days_ago,\n FIRST(segment_90_days_ago) as segment_90_days_ago,\n FIRST(segment_365_days_ago) as segment_365_days_ago\n FROM \n dev_dkruh1.platform_stg__retention_metrics_trends_orders\n WHERE \n \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n GROUP BY \n app_key, \n external_customer_id\n\n), customer_ratio_Previous_90_days AS (\n SELECT\n app_key,\n \"Previous_90_days\" as trend,\n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_90_days_ago = 'engaged' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_90_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as engaged_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_90_days_ago = 'returning' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_90_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as returning_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_90_days_ago = 'new' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_90_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as new_ratio\n \n \n FROM filtered_orders\n GROUP BY app_key\n)\n\nSELECT * FROM customer_ratio_Previous_90_days\n\n\n\n), customer_segment_ratio_previous_365 AS (\n\n \n\n\nWITH filtered_orders AS (\n SELECT \n app_key, \n external_customer_id,\n FIRST(segment) as segment,\n FIRST(segment_7_days_ago) as segment_7_days_ago,\n FIRST(segment_30_days_ago) as segment_30_days_ago,\n FIRST(segment_90_days_ago) as segment_90_days_ago,\n FIRST(segment_365_days_ago) as segment_365_days_ago\n FROM \n dev_dkruh1.platform_stg__retention_metrics_trends_orders\n WHERE \n \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n GROUP BY \n app_key, \n external_customer_id\n\n), customer_ratio_Previous_365_days AS (\n SELECT\n app_key,\n \"Previous_365_days\" as trend,\n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_365_days_ago = 'engaged' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_365_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as engaged_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_365_days_ago = 'returning' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_365_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as returning_ratio\n ,\n \n \n COALESCE(\n 100 *\n SUM(CASE WHEN segment_365_days_ago = 'new' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN segment_365_days_ago IS NOT NULL THEN 1 ELSE 0 END), 0) as new_ratio\n \n \n FROM filtered_orders\n GROUP BY app_key\n)\n\nSELECT * FROM customer_ratio_Previous_365_days\n\n\n\n)\n\nSELECT * FROM customer_segment_ratio_last_7\nUNION ALL\nSELECT * FROM customer_segment_ratio_last_30\nUNION ALL\nSELECT * FROM customer_segment_ratio_last_90\nUNION ALL\nSELECT * FROM customer_segment_ratio_last_365\nUNION ALL\nSELECT * FROM customer_segment_ratio_previous_7\nUNION ALL\nSELECT * FROM customer_segment_ratio_previous_30\nUNION ALL\nSELECT * FROM customer_segment_ratio_previous_90\nUNION ALL\nSELECT * FROM customer_segment_ratio_previous_365", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_customer_segment_ratio_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_customer_segment_ratio_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_customer_segment_ratio_to_snowflake/platform__retention_metrics_customer_segment_ratio_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_customer_segment_ratio_to_snowflake/platform__retention_metrics_customer_segment_ratio_to_snowflake.sql", "unique_id": "model.yoda.platform__retention_metrics_customer_segment_ratio_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_customer_segment_ratio_to_snowflake", "platform__retention_metrics_customer_segment_ratio_to_snowflake"], "alias": "platform__retention_metrics_customer_segment_ratio_to_snowflake", "checksum": {"name": "sha256", "checksum": "68bf234f87e1023e6b57e77e5cceb1dab7948a2c42046fb3a2c0fdd5681b5291"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_customer_segment_ratio_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "The distribution of unique customers across the different retention segments. Total are all the customers who purchased at least once in the last 12 months", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier in Yotpo", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "the trend for which the % were calculated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engaged_ratio": {"name": "engaged_ratio", "description": "% of customers that are considered engaged", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_ratio": {"name": "returning_ratio", "description": "% of customers that are considered returning", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_ratio": {"name": "new_ratio", "description": "% of customers that are considered new", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_customer_segment_ratio_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_customer_segment_ratio_to_snowflake/platform__retention_metrics_customer_segment_ratio_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_customer_segment_ratio_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082678.6362855, "relation_name": "dev_dkruh1.platform__retention_metrics_customer_segment_ratio_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__retention_metrics_customer_segment_ratio') }}\n\n), retention_metrics_customer_segment_ratio_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(trend as string),\n\t\tcast(engaged_ratio as double),\n\t\tcast(returning_ratio as double),\n\t\tcast(new_ratio as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_customer_segment_ratio_to_snowflake", "language": "sql", "refs": [{"name": "platform__retention_metrics_customer_segment_ratio", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_customer_segment_ratio"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_customer_segment_ratio_to_snowflake/platform__retention_metrics_customer_segment_ratio_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_customer_segment_ratio\n\n), retention_metrics_customer_segment_ratio_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(trend as string),\n\t\tcast(engaged_ratio as double),\n\t\tcast(returning_ratio as double),\n\t\tcast(new_ratio as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_customer_segment_ratio_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_orders": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_orders", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.sql", "unique_id": "model.yoda.platform__retention_metrics_orders", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_orders", "platform__retention_metrics_orders"], "alias": "platform__retention_metrics_orders", "checksum": {"name": "sha256", "checksum": "02e1f2dc1d6bce8555c2a80e1d9ad00d777f7824008db3e0c3113cd6147c6e3a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Raw data representing orders from the last 12 months with their respective segment", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier in the Yotpo platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "Order submission date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "external_customer_id": {"name": "external_customer_id", "description": "Order's customer's unique identifier in the platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_total": {"name": "order_total", "description": "Order total value. It is calculated by either taking the total_price or order_sum_account_currency values which are the order value in merchant currency for either shopify or non-shopify platforms. \nIf those fields are not present, then check if the order currency is the same as merchant currency and if so, then use order_sum_order_currency value which is the order value in order currency.\nIf the two currencies are not the same, then convert the order_sum_order_currency value to merchant currency.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "segment": {"name": "segment", "description": "Purchase's customer's segment according to behavior in past 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082678.6505332, "relation_name": "dev_dkruh1.platform__retention_metrics_orders", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH orders AS (\n\n SELECT * FROM {{ ref('platform_stg__retention_metrics_orders_in_merchant_currency') }}\n\n), customers_segments AS (\n\n SELECT app_key,\n external_customer_id,\n segment\n FROM {{ ref('platform_stg__retention_metrics_segmented_customers') }}\n WHERE segment IS NOT NULL\n\n), retention_metrics_orders_with_segments AS (\n\n select\n orders.app_key,\n orders.order_date,\n orders.external_customer_id,\n orders.total_price as order_total,\n customers_segments.segment\n FROM orders\n JOIN customers_segments ON \n (orders.external_customer_id = customers_segments.external_customer_id\n AND orders.app_key = customers_segments.app_key)\n\n)\n\nSELECT * FROM retention_metrics_orders_with_segments", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_orders_in_merchant_currency", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_segmented_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency", "model.yoda.platform_stg__retention_metrics_segmented_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_orders_in_merchant_currency\n\n), customers_segments AS (\n\n SELECT app_key,\n external_customer_id,\n segment\n FROM dev_dkruh1.platform_stg__retention_metrics_segmented_customers\n WHERE segment IS NOT NULL\n\n), retention_metrics_orders_with_segments AS (\n\n select\n orders.app_key,\n orders.order_date,\n orders.external_customer_id,\n orders.total_price as order_total,\n customers_segments.segment\n FROM orders\n JOIN customers_segments ON \n (orders.external_customer_id = customers_segments.external_customer_id\n AND orders.app_key = customers_segments.app_key)\n\n)\n\nSELECT * FROM retention_metrics_orders_with_segments", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_orders_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_orders_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.sql", "unique_id": "model.yoda.platform__retention_metrics_orders_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_orders_to_snowflake", "platform__retention_metrics_orders_to_snowflake"], "alias": "platform__retention_metrics_orders_to_snowflake", "checksum": {"name": "sha256", "checksum": "c4c7d94ce7857cc982f9705aae300e6b3bdd597c66c67f3b7645ad828c52d9aa"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_orders", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table retention_metrics_orders cluster by (app_key);", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "external_customer_id": {"name": "external_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_total": {"name": "order_total", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "segment": {"name": "segment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_orders", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table retention_metrics_orders cluster by (app_key);", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_orders", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "alter table retention_metrics_orders cluster by (app_key);", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082678.6732693, "relation_name": "dev_dkruh1.platform__retention_metrics_orders_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__retention_metrics_orders') }}\n\n), retention_metrics_orders_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(order_date as date),\n\t\tcast(external_customer_id as string),\n\t\tcast(order_total as double),\n\t\tcast(segment as string)\n\n FROM export_candidate\n ORDER BY app_key\n\n)\n\nSELECT * FROM retention_metrics_orders_to_snowflake", "language": "sql", "refs": [{"name": "platform__retention_metrics_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_orders\n\n), retention_metrics_orders_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(order_date as date),\n\t\tcast(external_customer_id as string),\n\t\tcast(order_total as double),\n\t\tcast(segment as string)\n\n FROM export_candidate\n ORDER BY app_key\n\n)\n\nSELECT * FROM retention_metrics_orders_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_returning_customers": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_returning_customers", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.sql", "unique_id": "model.yoda.platform__retention_metrics_returning_customers", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers", "platform__retention_metrics_returning_customers"], "alias": "platform__retention_metrics_returning_customers", "checksum": {"name": "sha256", "checksum": "6767de095a98c1fc28c10884914726677f7e28a211f72fef8879e9f18e574061"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Table, with precalculated count, percentage and trend of returning customers for a predefined timeframes.", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "returning_customers_count_last_7_days": {"name": "returning_customers_count_last_7_days", "description": "Total number of repeating customers for given time period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_customers_value_last_7_days": {"name": "returning_customers_value_last_7_days", "description": "The percent of returning customers for the last 7 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_trend_last_7_days": {"name": "returning_customers_trend_last_7_days", "description": "The trend for the last 7 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_value_last_7_days": {"name": "sales_rate_value_last_7_days", "description": "The rate of returning customers revenue versus all revenue for the last 7 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_trend_last_7_days": {"name": "sales_rate_trend_last_7_days", "description": "Percentage growth of the rate based on 7 days back", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_count_last_30_days": {"name": "returning_customers_count_last_30_days", "description": "Total number of repeating customers for given time period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_customers_value_last_30_days": {"name": "returning_customers_value_last_30_days", "description": "The percent of returning customers for the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_trend_last_30_days": {"name": "returning_customers_trend_last_30_days", "description": "The trend for the last 30 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_value_last_30_days": {"name": "sales_rate_value_last_30_days", "description": "The rate of returning customers revenue versus all revenue for the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_trend_last_30_days": {"name": "sales_rate_trend_last_30_days", "description": "Percentage growth of the rate based on 30 days back", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_count_last_90_days": {"name": "returning_customers_count_last_90_days", "description": "Total number of repeating customers for given time period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_customers_value_last_90_days": {"name": "returning_customers_value_last_90_days", "description": "The percent of returning customers for the last 90 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_trend_last_90_days": {"name": "returning_customers_trend_last_90_days", "description": "The trend for the last 90 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_value_last_90_days": {"name": "sales_rate_value_last_90_days", "description": "The rate of returning customers revenue versus all revenue for the last 90 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_trend_last_90_days": {"name": "sales_rate_trend_last_90_days", "description": "Percentage growth of the rate based on 90 days back", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_count_last_365_days": {"name": "returning_customers_count_last_365_days", "description": "Total number of repeating customers for given time period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_customers_value_last_365_days": {"name": "returning_customers_value_last_365_days", "description": "The percent of returning customers for the last 365 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_trend_last_365_days": {"name": "returning_customers_trend_last_365_days", "description": "The trend for the last 365 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_value_last_365_days": {"name": "sales_rate_value_last_365_days", "description": "The rate of returning customers revenue versus all revenue for the last 365 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_trend_last_365_days": {"name": "sales_rate_trend_last_365_days", "description": "Percentage growth of the rate based on 365 days back", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082678.699568, "relation_name": "dev_dkruh1.platform__retention_metrics_returning_customers", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{% set days_ranges = [7, 30, 90, 365] %}\nWITH orders AS (\n\n SELECT \n external_customer_id,\n app_key,\n order_date,\n total_price\n\n FROM {{ ref('platform_stg__retention_metrics_orders_in_merchant_currency') }}\n\n), customer_data_per_merchant AS (\n SELECT app_key, external_customer_id,\n\n\n {% for days_range in days_ranges %}\n\n -- For each day range we need to mark if customer is returning, if he has any orders in the given date range and his revenue\n CASE\n WHEN COUNT(CASE WHEN {{ order_date_from(days_range) }} THEN 1 END) > 0\n AND COUNT(CASE WHEN {{ order_date_from(365) }} THEN 1 END) > 1\n THEN 'true'\n ELSE 'false'\n END AS is_returning_last_{{ days_range }}_days,\n CASE\n WHEN COUNT(CASE WHEN {{ order_date_from(days_range) }} THEN 1 END) > 0\n THEN 'true'\n ELSE 'false'\n END AS is_customer_last_{{ days_range }}_days,\n SUM(\n CASE WHEN {{ order_date_from(days_range) }} THEN total_price ELSE 0 END\n ) AS revenue_last_{{ days_range }}_days,\n\n -- We need the same data for the trends calculations\n CASE\n WHEN COUNT(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} THEN 1 END) > 0\n THEN 'true'\n ELSE 'false'\n END AS is_customer_prev_{{ days_range }}_days,\n CASE\n WHEN COUNT(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} THEN 1 END) > 0\n AND COUNT(CASE WHEN {{ order_date_between(days_range + 365, days_range) }} THEN 1 END) > 1\n THEN 'true'\n ELSE 'false'\n END AS is_returning_prev_{{ days_range }}_days,\n SUM(\n CASE WHEN {{ order_date_between(days_range * 2, days_range) }} THEN total_price ELSE 0 END\n ) AS revenue_prev_{{ days_range }}_days\n\n {% if not loop.last %},\n {% endif %}\n\n {% endfor %}\n\n FROM orders\n GROUP BY app_key, external_customer_id\n\n), merchant_aggregated_customers_data AS (\n SELECT \n app_key,\n\n {% for days_range in days_ranges %}\n -- Calculate the number of returning and total customers.\n COUNT(CASE WHEN is_returning_last_{{ days_range }}_days = 'true' THEN 1 END)\n AS returning_customers_last_{{ days_range }}_days,\n COUNT(CASE WHEN is_customer_last_{{ days_range }}_days = 'true' THEN 1 END)\n AS number_of_customers_last_{{ days_range }}_days,\n\n -- Calculate the returning and total revenue.\n SUM(CASE WHEN is_returning_last_{{ days_range }}_days = 'true' THEN revenue_last_{{ days_range }}_days ELSE 0 END)\n AS returning_revenue_last_{{ days_range }}_days,\n SUM(revenue_last_{{ days_range }}_days) AS total_revenue_last_{{ days_range }}_days,\n\n -- Calculate the number of returning and total customers for previous period.\n COUNT(CASE WHEN is_returning_prev_{{ days_range }}_days ='true' THEN 1 END)\n AS returning_customers_prev_{{ days_range }}_days,\n COUNT(CASE WHEN is_customer_prev_{{ days_range }}_days = 'true' THEN 1 END)\n AS number_of_customers_prev_{{ days_range }}_days,\n\n -- Calculate the returning and total revenue for previous period.\n SUM(CASE WHEN is_returning_prev_{{ days_range }}_days = 'true' THEN revenue_prev_{{ days_range }}_days ELSE 0 END)\n AS returning_revenue_prev_{{ days_range }}_days,\n SUM(revenue_prev_{{ days_range }}_days) AS total_revenue_prev_{{ days_range }}_days\n\n {% if not loop.last %},\n {% endif %}\n\n {% endfor %}\n\n FROM customer_data_per_merchant\n GROUP BY app_key\n\n), merchant_with_calculated_metric AS (\n SELECT \n app_key,\n\n {% for days_range in days_ranges %}\n returning_customers_last_{{ days_range }}_days,\n\n ROUND((100 * returning_customers_last_{{ days_range }}_days / number_of_customers_last_{{ days_range }}_days), 1)\n AS percent_last_{{ days_range }}_days,\n ROUND((100 * returning_revenue_last_{{ days_range}}_days / total_revenue_last_{{ days_range }}_days), 1)\n AS sales_rate_last_{{ days_range }}_days,\n\n ROUND((100 * returning_customers_prev_{{ days_range }}_days / number_of_customers_prev_{{ days_range }}_days), 1)\n AS percent_prev_{{ days_range }}_days,\n ROUND((100 * returning_revenue_prev_{{ days_range }}_days / total_revenue_prev_{{ days_range }}_days), 1)\n AS sales_rate_prev_{{ days_range }}_days\n\n {% if not loop.last %},\n {% endif %}\n\n {% endfor %}\n\n FROM merchant_aggregated_customers_data\n\n), returning_customers AS (\n SELECT \n app_key,\n \n {% for days_range in days_ranges %}\n returning_customers_last_{{ days_range }}_days AS returning_customers_count_last_{{ days_range }}_days,\n\n COALESCE(percent_last_{{ days_range }}_days, 0) AS returning_customers_value_last_{{ days_range }}_days,\n ROUND((100 * (percent_last_{{ days_range }}_days - percent_prev_{{ days_range }}_days)/ percent_prev_{{ days_range }}_days), 1)\n AS returning_customers_trend_last_{{ days_range }}_days,\n\n COALESCE(sales_rate_last_{{ days_range }}_days, 0) AS sales_rate_value_last_{{ days_range }}_days,\n ROUND((100 * (sales_rate_last_{{ days_range }}_days - sales_rate_prev_{{ days_range }}_days)/ sales_rate_prev_{{ days_range }}_days), 1)\n AS sales_rate_trend_last_{{ days_range }}_days\n\n {% if not loop.last %},\n {% endif %}\n\n {% endfor %}\n\n FROM merchant_with_calculated_metric\n)\n\nSELECT * FROM returning_customers;", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_orders_in_merchant_currency", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.order_date_from", "macro.yoda.order_date_between", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\nWITH orders AS (\n\n SELECT \n external_customer_id,\n app_key,\n order_date,\n total_price\n\n FROM dev_dkruh1.platform_stg__retention_metrics_orders_in_merchant_currency\n\n), customer_data_per_merchant AS (\n SELECT app_key, external_customer_id,\n\n\n \n\n -- For each day range we need to mark if customer is returning, if he has any orders in the given date range and his revenue\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 0\n AND COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 1\n THEN 'true'\n ELSE 'false'\n END AS is_returning_last_7_days,\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 0\n THEN 'true'\n ELSE 'false'\n END AS is_customer_last_7_days,\n SUM(\n CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN total_price ELSE 0 END\n ) AS revenue_last_7_days,\n\n -- We need the same data for the trends calculations\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n THEN 1 END) > 0\n THEN 'true'\n ELSE 'false'\n END AS is_customer_prev_7_days,\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n THEN 1 END) > 0\n AND COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 372 day AND CURRENT_DATE() - interval 8 day)\n THEN 1 END) > 1\n THEN 'true'\n ELSE 'false'\n END AS is_returning_prev_7_days,\n SUM(\n CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n THEN total_price ELSE 0 END\n ) AS revenue_prev_7_days\n\n ,\n \n\n \n\n -- For each day range we need to mark if customer is returning, if he has any orders in the given date range and his revenue\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 0\n AND COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 1\n THEN 'true'\n ELSE 'false'\n END AS is_returning_last_30_days,\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 0\n THEN 'true'\n ELSE 'false'\n END AS is_customer_last_30_days,\n SUM(\n CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN total_price ELSE 0 END\n ) AS revenue_last_30_days,\n\n -- We need the same data for the trends calculations\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n THEN 1 END) > 0\n THEN 'true'\n ELSE 'false'\n END AS is_customer_prev_30_days,\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n THEN 1 END) > 0\n AND COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 395 day AND CURRENT_DATE() - interval 31 day)\n THEN 1 END) > 1\n THEN 'true'\n ELSE 'false'\n END AS is_returning_prev_30_days,\n SUM(\n CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n THEN total_price ELSE 0 END\n ) AS revenue_prev_30_days\n\n ,\n \n\n \n\n -- For each day range we need to mark if customer is returning, if he has any orders in the given date range and his revenue\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 0\n AND COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 1\n THEN 'true'\n ELSE 'false'\n END AS is_returning_last_90_days,\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 0\n THEN 'true'\n ELSE 'false'\n END AS is_customer_last_90_days,\n SUM(\n CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN total_price ELSE 0 END\n ) AS revenue_last_90_days,\n\n -- We need the same data for the trends calculations\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n THEN 1 END) > 0\n THEN 'true'\n ELSE 'false'\n END AS is_customer_prev_90_days,\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n THEN 1 END) > 0\n AND COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 455 day AND CURRENT_DATE() - interval 91 day)\n THEN 1 END) > 1\n THEN 'true'\n ELSE 'false'\n END AS is_returning_prev_90_days,\n SUM(\n CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n THEN total_price ELSE 0 END\n ) AS revenue_prev_90_days\n\n ,\n \n\n \n\n -- For each day range we need to mark if customer is returning, if he has any orders in the given date range and his revenue\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 0\n AND COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 1\n THEN 'true'\n ELSE 'false'\n END AS is_returning_last_365_days,\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN 1 END) > 0\n THEN 'true'\n ELSE 'false'\n END AS is_customer_last_365_days,\n SUM(\n CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN total_price ELSE 0 END\n ) AS revenue_last_365_days,\n\n -- We need the same data for the trends calculations\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN 1 END) > 0\n THEN 'true'\n ELSE 'false'\n END AS is_customer_prev_365_days,\n CASE\n WHEN COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN 1 END) > 0\n AND COUNT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN 1 END) > 1\n THEN 'true'\n ELSE 'false'\n END AS is_returning_prev_365_days,\n SUM(\n CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN total_price ELSE 0 END\n ) AS revenue_prev_365_days\n\n \n\n \n\n FROM orders\n GROUP BY app_key, external_customer_id\n\n), merchant_aggregated_customers_data AS (\n SELECT \n app_key,\n\n \n -- Calculate the number of returning and total customers.\n COUNT(CASE WHEN is_returning_last_7_days = 'true' THEN 1 END)\n AS returning_customers_last_7_days,\n COUNT(CASE WHEN is_customer_last_7_days = 'true' THEN 1 END)\n AS number_of_customers_last_7_days,\n\n -- Calculate the returning and total revenue.\n SUM(CASE WHEN is_returning_last_7_days = 'true' THEN revenue_last_7_days ELSE 0 END)\n AS returning_revenue_last_7_days,\n SUM(revenue_last_7_days) AS total_revenue_last_7_days,\n\n -- Calculate the number of returning and total customers for previous period.\n COUNT(CASE WHEN is_returning_prev_7_days ='true' THEN 1 END)\n AS returning_customers_prev_7_days,\n COUNT(CASE WHEN is_customer_prev_7_days = 'true' THEN 1 END)\n AS number_of_customers_prev_7_days,\n\n -- Calculate the returning and total revenue for previous period.\n SUM(CASE WHEN is_returning_prev_7_days = 'true' THEN revenue_prev_7_days ELSE 0 END)\n AS returning_revenue_prev_7_days,\n SUM(revenue_prev_7_days) AS total_revenue_prev_7_days\n\n ,\n \n\n \n -- Calculate the number of returning and total customers.\n COUNT(CASE WHEN is_returning_last_30_days = 'true' THEN 1 END)\n AS returning_customers_last_30_days,\n COUNT(CASE WHEN is_customer_last_30_days = 'true' THEN 1 END)\n AS number_of_customers_last_30_days,\n\n -- Calculate the returning and total revenue.\n SUM(CASE WHEN is_returning_last_30_days = 'true' THEN revenue_last_30_days ELSE 0 END)\n AS returning_revenue_last_30_days,\n SUM(revenue_last_30_days) AS total_revenue_last_30_days,\n\n -- Calculate the number of returning and total customers for previous period.\n COUNT(CASE WHEN is_returning_prev_30_days ='true' THEN 1 END)\n AS returning_customers_prev_30_days,\n COUNT(CASE WHEN is_customer_prev_30_days = 'true' THEN 1 END)\n AS number_of_customers_prev_30_days,\n\n -- Calculate the returning and total revenue for previous period.\n SUM(CASE WHEN is_returning_prev_30_days = 'true' THEN revenue_prev_30_days ELSE 0 END)\n AS returning_revenue_prev_30_days,\n SUM(revenue_prev_30_days) AS total_revenue_prev_30_days\n\n ,\n \n\n \n -- Calculate the number of returning and total customers.\n COUNT(CASE WHEN is_returning_last_90_days = 'true' THEN 1 END)\n AS returning_customers_last_90_days,\n COUNT(CASE WHEN is_customer_last_90_days = 'true' THEN 1 END)\n AS number_of_customers_last_90_days,\n\n -- Calculate the returning and total revenue.\n SUM(CASE WHEN is_returning_last_90_days = 'true' THEN revenue_last_90_days ELSE 0 END)\n AS returning_revenue_last_90_days,\n SUM(revenue_last_90_days) AS total_revenue_last_90_days,\n\n -- Calculate the number of returning and total customers for previous period.\n COUNT(CASE WHEN is_returning_prev_90_days ='true' THEN 1 END)\n AS returning_customers_prev_90_days,\n COUNT(CASE WHEN is_customer_prev_90_days = 'true' THEN 1 END)\n AS number_of_customers_prev_90_days,\n\n -- Calculate the returning and total revenue for previous period.\n SUM(CASE WHEN is_returning_prev_90_days = 'true' THEN revenue_prev_90_days ELSE 0 END)\n AS returning_revenue_prev_90_days,\n SUM(revenue_prev_90_days) AS total_revenue_prev_90_days\n\n ,\n \n\n \n -- Calculate the number of returning and total customers.\n COUNT(CASE WHEN is_returning_last_365_days = 'true' THEN 1 END)\n AS returning_customers_last_365_days,\n COUNT(CASE WHEN is_customer_last_365_days = 'true' THEN 1 END)\n AS number_of_customers_last_365_days,\n\n -- Calculate the returning and total revenue.\n SUM(CASE WHEN is_returning_last_365_days = 'true' THEN revenue_last_365_days ELSE 0 END)\n AS returning_revenue_last_365_days,\n SUM(revenue_last_365_days) AS total_revenue_last_365_days,\n\n -- Calculate the number of returning and total customers for previous period.\n COUNT(CASE WHEN is_returning_prev_365_days ='true' THEN 1 END)\n AS returning_customers_prev_365_days,\n COUNT(CASE WHEN is_customer_prev_365_days = 'true' THEN 1 END)\n AS number_of_customers_prev_365_days,\n\n -- Calculate the returning and total revenue for previous period.\n SUM(CASE WHEN is_returning_prev_365_days = 'true' THEN revenue_prev_365_days ELSE 0 END)\n AS returning_revenue_prev_365_days,\n SUM(revenue_prev_365_days) AS total_revenue_prev_365_days\n\n \n\n \n\n FROM customer_data_per_merchant\n GROUP BY app_key\n\n), merchant_with_calculated_metric AS (\n SELECT \n app_key,\n\n \n returning_customers_last_7_days,\n\n ROUND((100 * returning_customers_last_7_days / number_of_customers_last_7_days), 1)\n AS percent_last_7_days,\n ROUND((100 * returning_revenue_last_7_days / total_revenue_last_7_days), 1)\n AS sales_rate_last_7_days,\n\n ROUND((100 * returning_customers_prev_7_days / number_of_customers_prev_7_days), 1)\n AS percent_prev_7_days,\n ROUND((100 * returning_revenue_prev_7_days / total_revenue_prev_7_days), 1)\n AS sales_rate_prev_7_days\n\n ,\n \n\n \n returning_customers_last_30_days,\n\n ROUND((100 * returning_customers_last_30_days / number_of_customers_last_30_days), 1)\n AS percent_last_30_days,\n ROUND((100 * returning_revenue_last_30_days / total_revenue_last_30_days), 1)\n AS sales_rate_last_30_days,\n\n ROUND((100 * returning_customers_prev_30_days / number_of_customers_prev_30_days), 1)\n AS percent_prev_30_days,\n ROUND((100 * returning_revenue_prev_30_days / total_revenue_prev_30_days), 1)\n AS sales_rate_prev_30_days\n\n ,\n \n\n \n returning_customers_last_90_days,\n\n ROUND((100 * returning_customers_last_90_days / number_of_customers_last_90_days), 1)\n AS percent_last_90_days,\n ROUND((100 * returning_revenue_last_90_days / total_revenue_last_90_days), 1)\n AS sales_rate_last_90_days,\n\n ROUND((100 * returning_customers_prev_90_days / number_of_customers_prev_90_days), 1)\n AS percent_prev_90_days,\n ROUND((100 * returning_revenue_prev_90_days / total_revenue_prev_90_days), 1)\n AS sales_rate_prev_90_days\n\n ,\n \n\n \n returning_customers_last_365_days,\n\n ROUND((100 * returning_customers_last_365_days / number_of_customers_last_365_days), 1)\n AS percent_last_365_days,\n ROUND((100 * returning_revenue_last_365_days / total_revenue_last_365_days), 1)\n AS sales_rate_last_365_days,\n\n ROUND((100 * returning_customers_prev_365_days / number_of_customers_prev_365_days), 1)\n AS percent_prev_365_days,\n ROUND((100 * returning_revenue_prev_365_days / total_revenue_prev_365_days), 1)\n AS sales_rate_prev_365_days\n\n \n\n \n\n FROM merchant_aggregated_customers_data\n\n), returning_customers AS (\n SELECT \n app_key,\n \n \n returning_customers_last_7_days AS returning_customers_count_last_7_days,\n\n COALESCE(percent_last_7_days, 0) AS returning_customers_value_last_7_days,\n ROUND((100 * (percent_last_7_days - percent_prev_7_days)/ percent_prev_7_days), 1)\n AS returning_customers_trend_last_7_days,\n\n COALESCE(sales_rate_last_7_days, 0) AS sales_rate_value_last_7_days,\n ROUND((100 * (sales_rate_last_7_days - sales_rate_prev_7_days)/ sales_rate_prev_7_days), 1)\n AS sales_rate_trend_last_7_days\n\n ,\n \n\n \n returning_customers_last_30_days AS returning_customers_count_last_30_days,\n\n COALESCE(percent_last_30_days, 0) AS returning_customers_value_last_30_days,\n ROUND((100 * (percent_last_30_days - percent_prev_30_days)/ percent_prev_30_days), 1)\n AS returning_customers_trend_last_30_days,\n\n COALESCE(sales_rate_last_30_days, 0) AS sales_rate_value_last_30_days,\n ROUND((100 * (sales_rate_last_30_days - sales_rate_prev_30_days)/ sales_rate_prev_30_days), 1)\n AS sales_rate_trend_last_30_days\n\n ,\n \n\n \n returning_customers_last_90_days AS returning_customers_count_last_90_days,\n\n COALESCE(percent_last_90_days, 0) AS returning_customers_value_last_90_days,\n ROUND((100 * (percent_last_90_days - percent_prev_90_days)/ percent_prev_90_days), 1)\n AS returning_customers_trend_last_90_days,\n\n COALESCE(sales_rate_last_90_days, 0) AS sales_rate_value_last_90_days,\n ROUND((100 * (sales_rate_last_90_days - sales_rate_prev_90_days)/ sales_rate_prev_90_days), 1)\n AS sales_rate_trend_last_90_days\n\n ,\n \n\n \n returning_customers_last_365_days AS returning_customers_count_last_365_days,\n\n COALESCE(percent_last_365_days, 0) AS returning_customers_value_last_365_days,\n ROUND((100 * (percent_last_365_days - percent_prev_365_days)/ percent_prev_365_days), 1)\n AS returning_customers_trend_last_365_days,\n\n COALESCE(sales_rate_last_365_days, 0) AS sales_rate_value_last_365_days,\n ROUND((100 * (sales_rate_last_365_days - sales_rate_prev_365_days)/ sales_rate_prev_365_days), 1)\n AS sales_rate_trend_last_365_days\n\n \n\n \n\n FROM merchant_with_calculated_metric\n)\n\nSELECT * FROM returning_customers;", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_returning_customers_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_returning_customers_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers_to_snowflake/platform__retention_metrics_returning_customers_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers_to_snowflake/platform__retention_metrics_returning_customers_to_snowflake.sql", "unique_id": "model.yoda.platform__retention_metrics_returning_customers_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers_to_snowflake", "platform__retention_metrics_returning_customers_to_snowflake"], "alias": "platform__retention_metrics_returning_customers_to_snowflake", "checksum": {"name": "sha256", "checksum": "c0fec28e56680d29d5afb4493e343b3069dd55f0cffc73ff03f58b7ecbcf21cb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_returning_customers", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "Table, with precalculated count, percentage and trend of returning customers for a predefined timeframes.", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "returning_customers_value_last_7_days": {"name": "returning_customers_value_last_7_days", "description": "The percent of returning customers for the last 7 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_trend_last_7_days": {"name": "returning_customers_trend_last_7_days", "description": "The trend for the last 7 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_value_last_7_days": {"name": "sales_rate_value_last_7_days", "description": "The rate of returning customers revenue versus all revenue for the last 7 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_trend_last_7_days": {"name": "sales_rate_trend_last_7_days", "description": "Percentage growth of the rate based on 7 days back", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_value_last_30_days": {"name": "returning_customers_value_last_30_days", "description": "The percent of returning customers for the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_trend_last_30_days": {"name": "returning_customers_trend_last_30_days", "description": "The trend for the last 30 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_value_last_30_days": {"name": "sales_rate_value_last_30_days", "description": "The rate of returning customers revenue versus all revenue for the last 30 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_trend_last_30_days": {"name": "sales_rate_trend_last_30_days", "description": "Percentage growth of the rate based on 30 days back", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_value_last_90_days": {"name": "returning_customers_value_last_90_days", "description": "The percent of returning customers for the last 90 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_trend_last_90_days": {"name": "returning_customers_trend_last_90_days", "description": "The trend for the last 90 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_value_last_90_days": {"name": "sales_rate_value_last_90_days", "description": "The rate of returning customers revenue versus all revenue for the last 90 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_trend_last_90_days": {"name": "sales_rate_trend_last_90_days", "description": "Percentage growth of the rate based on 90 days back", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_value_last_365_days": {"name": "returning_customers_value_last_365_days", "description": "The percent of returning customers for the last 365 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_trend_last_365_days": {"name": "returning_customers_trend_last_365_days", "description": "The trend for the last 365 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_value_last_365_days": {"name": "sales_rate_value_last_365_days", "description": "The rate of returning customers revenue versus all revenue for the last 365 days.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_rate_trend_last_365_days": {"name": "sales_rate_trend_last_365_days", "description": "Percentage growth of the rate based on 365 days back", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_returning_customers", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_returning_customers_to_snowflake/platform__retention_metrics_returning_customers_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_returning_customers", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082678.8004024, "relation_name": "dev_dkruh1.platform__retention_metrics_returning_customers_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__retention_metrics_returning_customers') }}\n\n), retention_metrics_returning_customers_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(returning_customers_value_last_7_days as double),\n\t\tcast(returning_customers_trend_last_7_days as double),\n\t\tcast(sales_rate_value_last_7_days as double),\n\t\tcast(sales_rate_trend_last_7_days as double),\n\t\tcast(returning_customers_value_last_30_days as double),\n\t\tcast(returning_customers_trend_last_30_days as double),\n\t\tcast(sales_rate_value_last_30_days as double),\n\t\tcast(sales_rate_trend_last_30_days as double),\n\t\tcast(returning_customers_value_last_90_days as double),\n\t\tcast(returning_customers_trend_last_90_days as double),\n\t\tcast(sales_rate_value_last_90_days as double),\n\t\tcast(sales_rate_trend_last_90_days as double),\n\t\tcast(returning_customers_value_last_365_days as double),\n\t\tcast(returning_customers_trend_last_365_days as double),\n\t\tcast(sales_rate_value_last_365_days as double),\n\t\tcast(sales_rate_trend_last_365_days as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_returning_customers_to_snowflake", "language": "sql", "refs": [{"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_returning_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers_to_snowflake/platform__retention_metrics_returning_customers_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_returning_customers\n\n), retention_metrics_returning_customers_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(returning_customers_value_last_7_days as double),\n\t\tcast(returning_customers_trend_last_7_days as double),\n\t\tcast(sales_rate_value_last_7_days as double),\n\t\tcast(sales_rate_trend_last_7_days as double),\n\t\tcast(returning_customers_value_last_30_days as double),\n\t\tcast(returning_customers_trend_last_30_days as double),\n\t\tcast(sales_rate_value_last_30_days as double),\n\t\tcast(sales_rate_trend_last_30_days as double),\n\t\tcast(returning_customers_value_last_90_days as double),\n\t\tcast(returning_customers_trend_last_90_days as double),\n\t\tcast(sales_rate_value_last_90_days as double),\n\t\tcast(sales_rate_trend_last_90_days as double),\n\t\tcast(returning_customers_value_last_365_days as double),\n\t\tcast(returning_customers_trend_last_365_days as double),\n\t\tcast(sales_rate_value_last_365_days as double),\n\t\tcast(sales_rate_trend_last_365_days as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_returning_customers_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_total_revenue_trends_by_segments", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.sql", "unique_id": "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_total_revenue_trends_by_segments", "platform__retention_metrics_total_revenue_trends_by_segments"], "alias": "platform__retention_metrics_total_revenue_trends_by_segments", "checksum": {"name": "sha256", "checksum": "d6d6ccb257303a45c837e21f598a471064c096e6f4d7ee0ec978c5af6c761f6b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Model that contains the total revenue by each segment for the desired time-ranges(7,30,90,365 days ago)\n and the respective revenue values for the trends ranges (previous 7,30,90,365 days ago)", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "the trend for which the revenues were calculated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_revenue_engaged": {"name": "total_revenue_engaged", "description": "total revenue for engaged customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_returning": {"name": "total_revenue_returning", "description": "total revenue for returning customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_new": {"name": "total_revenue_new", "description": "total revenue for new customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082678.8176293, "relation_name": "dev_dkruh1.platform__retention_metrics_total_revenue_trends_by_segments", "raw_code": "WITH total_revenue_segments_last_7 AS (\n \n {{ total_revenue_segment(7, 0, 'segment', 'Last_7_days') }}\n\n), total_revenue_segments_last_30 AS (\n\n {{ total_revenue_segment(30, 0, 'segment', 'Last_30_days') }}\n\n), total_revenue_segments_last_90 AS (\n\n {{ total_revenue_segment(90, 0, 'segment', 'Last_90_days') }}\n\n), total_revenue_segments_last_365 AS (\n\n {{ total_revenue_segment(365, 0, 'segment', 'Last_365_days') }}\n\n), total_revenue_segments_previous_7 AS (\n\n {{ total_revenue_segment(14, 7, 'segment_7_days_ago', 'Previous_7_days') }}\n\n), total_revenue_segments_previous_30 AS (\n\n {{ total_revenue_segment(60, 30, 'segment_30_days_ago', 'Previous_30_days') }}\n\n), total_revenue_segments_previous_90 AS (\n\n {{ total_revenue_segment(180, 90, 'segment_90_days_ago', 'Previous_90_days') }}\n\n), total_revenue_segments_previous_365 AS (\n\n {{ total_revenue_segment(730, 365, 'segment_365_days_ago', 'Previous_365_days') }}\n\n) \n\nSELECT * FROM total_revenue_segments_last_7\nUNION ALL\nSELECT * FROM total_revenue_segments_last_30\nUNION ALL\nSELECT * FROM total_revenue_segments_last_90\nUNION ALL\nSELECT * FROM total_revenue_segments_last_365\nUNION ALL\nSELECT * FROM total_revenue_segments_previous_7\nUNION ALL\nSELECT * FROM total_revenue_segments_previous_30\nUNION ALL\nSELECT * FROM total_revenue_segments_previous_90\nUNION ALL\nSELECT * FROM total_revenue_segments_previous_365", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.total_revenue_segment", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.sql", "compiled": true, "compiled_code": "WITH total_revenue_segments_last_7 AS (\n \n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), total_revenue_segment_Last_7_days AS (\n SELECT app_key,\n \"Last_7_days\" as trend,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\")\n THEN order_total ELSE 0 END)) as total_revenue_engaged,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\")\n THEN order_total ELSE 0 END)) as total_revenue_returning,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\")\n THEN order_total ELSE 0 END)) as total_revenue_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n )\n\nSELECT * FROM total_revenue_segment_Last_7_days\n\n\n\n), total_revenue_segments_last_30 AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), total_revenue_segment_Last_30_days AS (\n SELECT app_key,\n \"Last_30_days\" as trend,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\")\n THEN order_total ELSE 0 END)) as total_revenue_engaged,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\")\n THEN order_total ELSE 0 END)) as total_revenue_returning,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\")\n THEN order_total ELSE 0 END)) as total_revenue_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n )\n\nSELECT * FROM total_revenue_segment_Last_30_days\n\n\n\n), total_revenue_segments_last_90 AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), total_revenue_segment_Last_90_days AS (\n SELECT app_key,\n \"Last_90_days\" as trend,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\")\n THEN order_total ELSE 0 END)) as total_revenue_engaged,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\")\n THEN order_total ELSE 0 END)) as total_revenue_returning,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\")\n THEN order_total ELSE 0 END)) as total_revenue_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n )\n\nSELECT * FROM total_revenue_segment_Last_90_days\n\n\n\n), total_revenue_segments_last_365 AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), total_revenue_segment_Last_365_days AS (\n SELECT app_key,\n \"Last_365_days\" as trend,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\")\n THEN order_total ELSE 0 END)) as total_revenue_engaged,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\")\n THEN order_total ELSE 0 END)) as total_revenue_returning,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\")\n THEN order_total ELSE 0 END)) as total_revenue_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n )\n\nSELECT * FROM total_revenue_segment_Last_365_days\n\n\n\n), total_revenue_segments_previous_7 AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), total_revenue_segment_Previous_7_days AS (\n SELECT app_key,\n \"Previous_7_days\" as trend,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)) as total_revenue_engaged,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"returning\")\n THEN order_total ELSE 0 END)) as total_revenue_returning,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"new\")\n THEN order_total ELSE 0 END)) as total_revenue_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n )\n\nSELECT * FROM total_revenue_segment_Previous_7_days\n\n\n\n), total_revenue_segments_previous_30 AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), total_revenue_segment_Previous_30_days AS (\n SELECT app_key,\n \"Previous_30_days\" as trend,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)) as total_revenue_engaged,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"returning\")\n THEN order_total ELSE 0 END)) as total_revenue_returning,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"new\")\n THEN order_total ELSE 0 END)) as total_revenue_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n )\n\nSELECT * FROM total_revenue_segment_Previous_30_days\n\n\n\n), total_revenue_segments_previous_90 AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), total_revenue_segment_Previous_90_days AS (\n SELECT app_key,\n \"Previous_90_days\" as trend,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)) as total_revenue_engaged,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"returning\")\n THEN order_total ELSE 0 END)) as total_revenue_returning,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"new\")\n THEN order_total ELSE 0 END)) as total_revenue_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n )\n\nSELECT * FROM total_revenue_segment_Previous_90_days\n\n\n\n), total_revenue_segments_previous_365 AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), total_revenue_segment_Previous_365_days AS (\n SELECT app_key,\n \"Previous_365_days\" as trend,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)) as total_revenue_engaged,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"returning\")\n THEN order_total ELSE 0 END)) as total_revenue_returning,\n (SUM(CASE WHEN\n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"new\")\n THEN order_total ELSE 0 END)) as total_revenue_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n )\n\nSELECT * FROM total_revenue_segment_Previous_365_days\n\n\n\n) \n\nSELECT * FROM total_revenue_segments_last_7\nUNION ALL\nSELECT * FROM total_revenue_segments_last_30\nUNION ALL\nSELECT * FROM total_revenue_segments_last_90\nUNION ALL\nSELECT * FROM total_revenue_segments_last_365\nUNION ALL\nSELECT * FROM total_revenue_segments_previous_7\nUNION ALL\nSELECT * FROM total_revenue_segments_previous_30\nUNION ALL\nSELECT * FROM total_revenue_segments_previous_90\nUNION ALL\nSELECT * FROM total_revenue_segments_previous_365", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake/platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake/platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake.sql", "unique_id": "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake", "platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake"], "alias": "platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake", "checksum": {"name": "sha256", "checksum": "dc2883c55e1f8a8f52fc08193785678e11cab28ed23e71e987f745fd51872ed3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_total_revenue_trends_by_segments_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "Model that contains the total revenue by each segment for the desired time-ranges(7,30,90,365 days ago)\n and the respective revenue values for the trends ranges (previous 7,30,90,365 days ago)", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "the trend for which the revenues were calculated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_revenue_engaged": {"name": "total_revenue_engaged", "description": "total revenue for engaged customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_returning": {"name": "total_revenue_returning", "description": "total revenue for returning customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_revenue_new": {"name": "total_revenue_new", "description": "total revenue for new customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_total_revenue_trends_by_segments_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake/platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_total_revenue_trends_by_segments_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082678.8915615, "relation_name": "dev_dkruh1.platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__retention_metrics_total_revenue_trends_by_segments') }}\n\n), retention_metrics_total_revenue_trends_by_segments_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(trend as string),\n\t\tcast(total_revenue_engaged as double),\n\t\tcast(total_revenue_returning as double),\n\t\tcast(total_revenue_new as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_total_revenue_trends_by_segments_to_snowflake", "language": "sql", "refs": [{"name": "platform__retention_metrics_total_revenue_trends_by_segments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake/platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_total_revenue_trends_by_segments\n\n), retention_metrics_total_revenue_trends_by_segments_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(trend as string),\n\t\tcast(total_revenue_engaged as double),\n\t\tcast(total_revenue_returning as double),\n\t\tcast(total_revenue_new as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_total_revenue_trends_by_segments_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_total_sales_and_customers": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_total_sales_and_customers", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.sql", "unique_id": "model.yoda.platform__retention_metrics_total_sales_and_customers", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_total_sales_and_customers", "platform__retention_metrics_total_sales_and_customers"], "alias": "platform__retention_metrics_total_sales_and_customers", "checksum": {"name": "sha256", "checksum": "0ae431c5e9864ba19bcecc4a6b977b0acfc952641d38bd6abb3c1ae853723023"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Table holding total revenue and total customers per merchant", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenue_new_last_7_days": {"name": "revenue_new_last_7_days", "description": "Merchant new revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_new_trend_7_days": {"name": "revenue_new_trend_7_days", "description": "Merchant new revenue growth percantage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_returning_last_7_days": {"name": "revenue_returning_last_7_days", "description": "Merchant returning revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_returning_trend_7_days": {"name": "revenue_returning_trend_7_days", "description": "Merchant returning revenue growth percantage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_engaged_last_7_days": {"name": "revenue_engaged_last_7_days", "description": "Merchant engaged revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_engaged_trend_7_days": {"name": "revenue_engaged_trend_7_days", "description": "Merchant engaged revenue growth percentage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_last_7_days": {"name": "revenue_last_7_days", "description": "Merchant total revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_trend_7_days": {"name": "revenue_trend_7_days", "description": "Merchant growth total revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_count_last_7_days": {"name": "new_count_last_7_days", "description": "New customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_count_trend_7_days": {"name": "new_count_trend_7_days", "description": "New customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_count_last_7_days": {"name": "returning_count_last_7_days", "description": "Returning customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_count_trend_7_days": {"name": "returning_count_trend_7_days", "description": "Returning customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_count_last_7_days": {"name": "engaged_count_last_7_days", "description": "Engaged customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "engaged_count_trend_7_days": {"name": "engaged_count_trend_7_days", "description": "Engaged customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "customers_count_last_7_days": {"name": "customers_count_last_7_days", "description": "Customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customers_trend_7_days": {"name": "customers_trend_7_days", "description": "Customers count growth per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_new_last_30_days": {"name": "revenue_new_last_30_days", "description": "Merchant new revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_new_trend_30_days": {"name": "revenue_new_trend_30_days", "description": "Merchant new revenue growth percantage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_returning_last_30_days": {"name": "revenue_returning_last_30_days", "description": "Merchant returning revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_returning_trend_30_days": {"name": "revenue_returning_trend_30_days", "description": "Merchant returning revenue growth percantage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_engaged_last_30_days": {"name": "revenue_engaged_last_30_days", "description": "Merchant engaged revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_engaged_trend_30_days": {"name": "revenue_engaged_trend_30_days", "description": "Merchant engaged revenue growth percentage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_last_30_days": {"name": "revenue_last_30_days", "description": "Merchant total revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_trend_30_days": {"name": "revenue_trend_30_days", "description": "Merchant growth total revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_count_last_30_days": {"name": "new_count_last_30_days", "description": "New customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_count_trend_30_days": {"name": "new_count_trend_30_days", "description": "New customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_count_last_30_days": {"name": "returning_count_last_30_days", "description": "Returning customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_count_trend_30_days": {"name": "returning_count_trend_30_days", "description": "Returning customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_count_last_30_days": {"name": "engaged_count_last_30_days", "description": "Engaged customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "engaged_count_trend_30_days": {"name": "engaged_count_trend_30_days", "description": "Engaged customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "customers_count_last_30_days": {"name": "customers_count_last_30_days", "description": "Customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customers_trend_30_days": {"name": "customers_trend_30_days", "description": "Customers count growth per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_new_last_90_days": {"name": "revenue_new_last_90_days", "description": "Merchant new revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_new_trend_90_days": {"name": "revenue_new_trend_90_days", "description": "Merchant new revenue growth percantage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_returning_last_90_days": {"name": "revenue_returning_last_90_days", "description": "Merchant returning revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_returning_trend_90_days": {"name": "revenue_returning_trend_90_days", "description": "Merchant returning revenue growth percantage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_engaged_last_90_days": {"name": "revenue_engaged_last_90_days", "description": "Merchant engaged revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_engaged_trend_90_days": {"name": "revenue_engaged_trend_90_days", "description": "Merchant engaged revenue growth percentage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_last_90_days": {"name": "revenue_last_90_days", "description": "Merchant total revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_trend_90_days": {"name": "revenue_trend_90_days", "description": "Merchant growth total revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_count_last_90_days": {"name": "new_count_last_90_days", "description": "New customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_count_trend_90_days": {"name": "new_count_trend_90_days", "description": "New customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_count_last_90_days": {"name": "returning_count_last_90_days", "description": "Returning customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_count_trend_90_days": {"name": "returning_count_trend_90_days", "description": "Returning customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_count_last_90_days": {"name": "engaged_count_last_90_days", "description": "Engaged customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "engaged_count_trend_90_days": {"name": "engaged_count_trend_90_days", "description": "Engaged customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "customers_count_last_90_days": {"name": "customers_count_last_90_days", "description": "Customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customers_trend_90_days": {"name": "customers_trend_90_days", "description": "Customers count growth per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_new_last_365_days": {"name": "revenue_new_last_365_days", "description": "Merchant new revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_new_trend_365_days": {"name": "revenue_new_trend_365_days", "description": "Merchant new revenue growth percantage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_returning_last_365_days": {"name": "revenue_returning_last_365_days", "description": "Merchant returning revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_returning_trend_365_days": {"name": "revenue_returning_trend_365_days", "description": "Merchant returning revenue growth percantage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_engaged_last_365_days": {"name": "revenue_engaged_last_365_days", "description": "Merchant engaged revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_engaged_trend_365_days": {"name": "revenue_engaged_trend_365_days", "description": "Merchant engaged revenue growth percentage for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_last_365_days": {"name": "revenue_last_365_days", "description": "Merchant total revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "revenue_trend_365_days": {"name": "revenue_trend_365_days", "description": "Merchant growth total revenue for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_count_last_365_days": {"name": "new_count_last_365_days", "description": "New customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_count_trend_365_days": {"name": "new_count_trend_365_days", "description": "New customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_count_last_365_days": {"name": "returning_count_last_365_days", "description": "Returning customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_count_trend_365_days": {"name": "returning_count_trend_365_days", "description": "Returning customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_count_last_365_days": {"name": "engaged_count_last_365_days", "description": "Engaged customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "engaged_count_trend_365_days": {"name": "engaged_count_trend_365_days", "description": "Engaged customers growth percantage per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "customers_count_last_365_days": {"name": "customers_count_last_365_days", "description": "Customers count per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customers_trend_365_days": {"name": "customers_trend_365_days", "description": "Customers count growth per merchant for the selected period", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082678.9762344, "relation_name": "dev_dkruh1.platform__retention_metrics_total_sales_and_customers", "raw_code": "{% set days_ranges = [7, 30, 90, 365] %}\n\nWITH orders AS (\n SELECT \n (CASE WHEN order_total IS NULL THEN 0 ELSE order_total END) AS total_price,\n external_customer_id,\n app_key,\n segment,\n segment_7_days_ago,\n segment_30_days_ago,\n segment_90_days_ago,\n segment_365_days_ago,\n DATE(order_date) as order_date\n FROM {{ ref('platform_stg__retention_metrics_trends_orders') }}\n), total_revenue_and_customers_per_merchant AS (\n SELECT\n app_key,\n {% for days_range in days_ranges %}\n -- Revenue by segments\n SUM(CASE WHEN {{ order_date_from(days_range) }} AND segment = 'new' THEN total_price ELSE 0 END) AS revenue_new_last_{{ days_range }}_days,\n SUM(CASE WHEN {{ order_date_from(days_range) }} AND segment = 'returning' THEN total_price ELSE 0 END) AS revenue_returning_last_{{ days_range }}_days,\n SUM(CASE WHEN {{ order_date_from(days_range) }} AND segment = 'engaged' THEN total_price ELSE 0 END) AS revenue_engaged_last_{{ days_range }}_days,\n -- Revenue by segments trends\n SUM(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} AND segment_{{ days_range }}_days_ago = 'new' THEN total_price ELSE 0 END)\n AS revenue_new_prev_{{ days_range }}_days,\n SUM(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} AND segment_{{ days_range }}_days_ago = 'returning' THEN total_price ELSE 0 END)\n AS revenue_returning_prev_{{ days_range }}_days,\n SUM(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} AND segment_{{ days_range }}_days_ago = 'engaged' THEN total_price ELSE 0 END)\n AS revenue_engaged_prev_{{ days_range }}_days,\n -- Total revenue\n SUM(CASE WHEN {{ order_date_from(days_range) }} THEN total_price ELSE 0 END) AS revenue_last_{{ days_range }}_days,\n -- Total revenue trends\n SUM(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} THEN total_price ELSE 0 END) AS revenue_prev_{{ days_range }}_days,\n -- Customers count by segments\n COUNT(DISTINCT(CASE WHEN {{ order_date_from(days_range) }} AND segment = 'new' THEN external_customer_id END)) AS new_count_last_{{ days_range }}_days,\n COUNT(DISTINCT(CASE WHEN {{ order_date_from(days_range) }} AND segment = 'returning' THEN external_customer_id END)) AS returning_count_last_{{ days_range }}_days,\n COUNT(DISTINCT(CASE WHEN {{ order_date_from(days_range) }} AND segment = 'engaged' THEN external_customer_id END)) AS engaged_count_last_{{ days_range }}_days,\n -- Customers count by segments trend\n COUNT(DISTINCT(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} AND segment_{{ days_range }}_days_ago = 'new' THEN external_customer_id END))\n AS new_count_prev_{{ days_range }}_days,\n COUNT(DISTINCT(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} AND segment_{{ days_range }}_days_ago = 'returning' THEN external_customer_id END))\n AS returning_count_prev_{{ days_range }}_days,\n COUNT(DISTINCT(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} AND segment_{{ days_range }}_days_ago = 'engaged' THEN external_customer_id END))\n AS engaged_count_prev_{{ days_range }}_days,\n -- Customers count\n COUNT(DISTINCT(CASE WHEN {{ order_date_from(days_range) }} THEN external_customer_id END)) AS customers_count_last_{{ days_range }}_days,\n -- Customers count trends\n COUNT(DISTINCT(CASE WHEN {{ order_date_between(days_range * 2, days_range) }} THEN external_customer_id END)) AS customers_count_prev_{{ days_range }}_days\n\n {% if not loop.last %},\n {% endif %}\n {% endfor %}\n FROM orders\n GROUP BY app_key\n), value_and_trend AS (\n SELECT \n app_key,\n {% for days_range in days_ranges %}\n -- Revenue by segments\n revenue_new_last_{{ days_range }}_days,\n revenue_returning_last_{{ days_range }}_days,\n revenue_engaged_last_{{ days_range }}_days,\n -- Revenue by segments trends\n -- We coalesce because division by zero returns null\n COALESCE(ROUND((100 * (revenue_new_last_{{ days_range }}_days - revenue_new_prev_{{ days_range }}_days) / revenue_new_prev_{{ days_range }}_days), 2), 0)\n AS revenue_new_trend_{{ days_range }}_days,\n COALESCE(ROUND((100 * (revenue_returning_last_{{ days_range }}_days - revenue_returning_prev_{{ days_range }}_days) / revenue_returning_prev_{{ days_range }}_days), 2), 0)\n AS revenue_returning_trend_{{ days_range }}_days,\n COALESCE(ROUND((100 * (revenue_engaged_last_{{ days_range }}_days - revenue_engaged_prev_{{ days_range }}_days) / revenue_engaged_prev_{{ days_range }}_days), 2), 0)\n AS revenue_engaged_trend_{{ days_range }}_days,\n\n -- Total revenue\n revenue_last_{{ days_range }}_days,\n -- Total revenue trends\n COALESCE(ROUND((100 * (revenue_last_{{ days_range }}_days - revenue_prev_{{ days_range }}_days) / revenue_prev_{{ days_range }}_days), 2), 0)\n AS revenue_trend_{{ days_range }}_days,\n\n -- Total customers count by segments\n new_count_last_{{ days_range }}_days,\n returning_count_last_{{ days_range }}_days,\n engaged_count_last_{{ days_range }}_days,\n -- Total customers count by segments trends\n COALESCE(ROUND((100 * (new_count_last_{{ days_range }}_days - new_count_prev_{{ days_range }}_days) / new_count_prev_{{ days_range }}_days), 2), 0)\n AS new_count_trend_{{ days_range }}_days,\n COALESCE(ROUND((100 * (returning_count_last_{{ days_range }}_days - returning_count_prev_{{ days_range }}_days) / returning_count_prev_{{ days_range }}_days), 2), 0)\n AS returning_count_trend_{{ days_range }}_days,\n COALESCE(ROUND((100 * (engaged_count_last_{{ days_range }}_days - engaged_count_prev_{{ days_range }}_days) / engaged_count_prev_{{ days_range }}_days), 2), 0)\n AS engaged_count_trend_{{ days_range }}_days,\n\n -- Total customers count\n customers_count_last_{{ days_range }}_days,\n -- Total customers count trends\n COALESCE(ROUND((100 * (customers_count_last_{{ days_range }}_days - customers_count_prev_{{ days_range }}_days) / customers_count_prev_{{ days_range }}_days), 2), 0)\n AS customers_trend_{{ days_range }}_days\n {% if not loop.last %},\n {% endif %}\n {% endfor %}\n FROM total_revenue_and_customers_per_merchant\n), final AS (\n -- Filter out the data for previous days ranges\n SELECT\n app_key,\n {% for days_range in days_ranges %}\n revenue_new_last_{{ days_range }}_days,\n revenue_new_trend_{{ days_range }}_days,\n revenue_returning_last_{{ days_range }}_days,\n revenue_returning_trend_{{ days_range }}_days,\n revenue_engaged_last_{{ days_range }}_days,\n revenue_engaged_trend_{{ days_range }}_days,\n revenue_last_{{ days_range }}_days,\n revenue_trend_{{ days_range }}_days,\n\n new_count_last_{{ days_range }}_days,\n new_count_trend_{{ days_range }}_days,\n returning_count_last_{{ days_range }}_days,\n returning_count_trend_{{ days_range }}_days,\n engaged_count_last_{{ days_range }}_days,\n engaged_count_trend_{{ days_range }}_days,\n customers_count_last_{{ days_range }}_days,\n customers_trend_{{ days_range }}_days\n {% if not loop.last %},\n {% endif %}\n {% endfor %}\n FROM value_and_trend\n)\nSELECT * FROM final;", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.order_date_from", "macro.yoda.order_date_between", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_trends_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.sql", "compiled": true, "compiled_code": "\n\nWITH orders AS (\n SELECT \n (CASE WHEN order_total IS NULL THEN 0 ELSE order_total END) AS total_price,\n external_customer_id,\n app_key,\n segment,\n segment_7_days_ago,\n segment_30_days_ago,\n segment_90_days_ago,\n segment_365_days_ago,\n DATE(order_date) as order_date\n FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n), total_revenue_and_customers_per_merchant AS (\n SELECT\n app_key,\n \n -- Revenue by segments\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'new' THEN total_price ELSE 0 END) AS revenue_new_last_7_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'returning' THEN total_price ELSE 0 END) AS revenue_returning_last_7_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'engaged' THEN total_price ELSE 0 END) AS revenue_engaged_last_7_days,\n -- Revenue by segments trends\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n AND segment_7_days_ago = 'new' THEN total_price ELSE 0 END)\n AS revenue_new_prev_7_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n AND segment_7_days_ago = 'returning' THEN total_price ELSE 0 END)\n AS revenue_returning_prev_7_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n AND segment_7_days_ago = 'engaged' THEN total_price ELSE 0 END)\n AS revenue_engaged_prev_7_days,\n -- Total revenue\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN total_price ELSE 0 END) AS revenue_last_7_days,\n -- Total revenue trends\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n THEN total_price ELSE 0 END) AS revenue_prev_7_days,\n -- Customers count by segments\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'new' THEN external_customer_id END)) AS new_count_last_7_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'returning' THEN external_customer_id END)) AS returning_count_last_7_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'engaged' THEN external_customer_id END)) AS engaged_count_last_7_days,\n -- Customers count by segments trend\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n AND segment_7_days_ago = 'new' THEN external_customer_id END))\n AS new_count_prev_7_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n AND segment_7_days_ago = 'returning' THEN external_customer_id END))\n AS returning_count_prev_7_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n AND segment_7_days_ago = 'engaged' THEN external_customer_id END))\n AS engaged_count_prev_7_days,\n -- Customers count\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n THEN external_customer_id END)) AS customers_count_last_7_days,\n -- Customers count trends\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n THEN external_customer_id END)) AS customers_count_prev_7_days\n\n ,\n \n \n -- Revenue by segments\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'new' THEN total_price ELSE 0 END) AS revenue_new_last_30_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'returning' THEN total_price ELSE 0 END) AS revenue_returning_last_30_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'engaged' THEN total_price ELSE 0 END) AS revenue_engaged_last_30_days,\n -- Revenue by segments trends\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n AND segment_30_days_ago = 'new' THEN total_price ELSE 0 END)\n AS revenue_new_prev_30_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n AND segment_30_days_ago = 'returning' THEN total_price ELSE 0 END)\n AS revenue_returning_prev_30_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n AND segment_30_days_ago = 'engaged' THEN total_price ELSE 0 END)\n AS revenue_engaged_prev_30_days,\n -- Total revenue\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN total_price ELSE 0 END) AS revenue_last_30_days,\n -- Total revenue trends\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n THEN total_price ELSE 0 END) AS revenue_prev_30_days,\n -- Customers count by segments\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'new' THEN external_customer_id END)) AS new_count_last_30_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'returning' THEN external_customer_id END)) AS returning_count_last_30_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'engaged' THEN external_customer_id END)) AS engaged_count_last_30_days,\n -- Customers count by segments trend\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n AND segment_30_days_ago = 'new' THEN external_customer_id END))\n AS new_count_prev_30_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n AND segment_30_days_ago = 'returning' THEN external_customer_id END))\n AS returning_count_prev_30_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n AND segment_30_days_ago = 'engaged' THEN external_customer_id END))\n AS engaged_count_prev_30_days,\n -- Customers count\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n THEN external_customer_id END)) AS customers_count_last_30_days,\n -- Customers count trends\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n THEN external_customer_id END)) AS customers_count_prev_30_days\n\n ,\n \n \n -- Revenue by segments\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'new' THEN total_price ELSE 0 END) AS revenue_new_last_90_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'returning' THEN total_price ELSE 0 END) AS revenue_returning_last_90_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'engaged' THEN total_price ELSE 0 END) AS revenue_engaged_last_90_days,\n -- Revenue by segments trends\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n AND segment_90_days_ago = 'new' THEN total_price ELSE 0 END)\n AS revenue_new_prev_90_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n AND segment_90_days_ago = 'returning' THEN total_price ELSE 0 END)\n AS revenue_returning_prev_90_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n AND segment_90_days_ago = 'engaged' THEN total_price ELSE 0 END)\n AS revenue_engaged_prev_90_days,\n -- Total revenue\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN total_price ELSE 0 END) AS revenue_last_90_days,\n -- Total revenue trends\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n THEN total_price ELSE 0 END) AS revenue_prev_90_days,\n -- Customers count by segments\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'new' THEN external_customer_id END)) AS new_count_last_90_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'returning' THEN external_customer_id END)) AS returning_count_last_90_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'engaged' THEN external_customer_id END)) AS engaged_count_last_90_days,\n -- Customers count by segments trend\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n AND segment_90_days_ago = 'new' THEN external_customer_id END))\n AS new_count_prev_90_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n AND segment_90_days_ago = 'returning' THEN external_customer_id END))\n AS returning_count_prev_90_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n AND segment_90_days_ago = 'engaged' THEN external_customer_id END))\n AS engaged_count_prev_90_days,\n -- Customers count\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n THEN external_customer_id END)) AS customers_count_last_90_days,\n -- Customers count trends\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n THEN external_customer_id END)) AS customers_count_prev_90_days\n\n ,\n \n \n -- Revenue by segments\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'new' THEN total_price ELSE 0 END) AS revenue_new_last_365_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'returning' THEN total_price ELSE 0 END) AS revenue_returning_last_365_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'engaged' THEN total_price ELSE 0 END) AS revenue_engaged_last_365_days,\n -- Revenue by segments trends\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n AND segment_365_days_ago = 'new' THEN total_price ELSE 0 END)\n AS revenue_new_prev_365_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n AND segment_365_days_ago = 'returning' THEN total_price ELSE 0 END)\n AS revenue_returning_prev_365_days,\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n AND segment_365_days_ago = 'engaged' THEN total_price ELSE 0 END)\n AS revenue_engaged_prev_365_days,\n -- Total revenue\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN total_price ELSE 0 END) AS revenue_last_365_days,\n -- Total revenue trends\n SUM(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN total_price ELSE 0 END) AS revenue_prev_365_days,\n -- Customers count by segments\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'new' THEN external_customer_id END)) AS new_count_last_365_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'returning' THEN external_customer_id END)) AS returning_count_last_365_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n AND segment = 'engaged' THEN external_customer_id END)) AS engaged_count_last_365_days,\n -- Customers count by segments trend\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n AND segment_365_days_ago = 'new' THEN external_customer_id END))\n AS new_count_prev_365_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n AND segment_365_days_ago = 'returning' THEN external_customer_id END))\n AS returning_count_prev_365_days,\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n AND segment_365_days_ago = 'engaged' THEN external_customer_id END))\n AS engaged_count_prev_365_days,\n -- Customers count\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n THEN external_customer_id END)) AS customers_count_last_365_days,\n -- Customers count trends\n COUNT(DISTINCT(CASE WHEN \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n THEN external_customer_id END)) AS customers_count_prev_365_days\n\n \n \n FROM orders\n GROUP BY app_key\n), value_and_trend AS (\n SELECT \n app_key,\n \n -- Revenue by segments\n revenue_new_last_7_days,\n revenue_returning_last_7_days,\n revenue_engaged_last_7_days,\n -- Revenue by segments trends\n -- We coalesce because division by zero returns null\n COALESCE(ROUND((100 * (revenue_new_last_7_days - revenue_new_prev_7_days) / revenue_new_prev_7_days), 2), 0)\n AS revenue_new_trend_7_days,\n COALESCE(ROUND((100 * (revenue_returning_last_7_days - revenue_returning_prev_7_days) / revenue_returning_prev_7_days), 2), 0)\n AS revenue_returning_trend_7_days,\n COALESCE(ROUND((100 * (revenue_engaged_last_7_days - revenue_engaged_prev_7_days) / revenue_engaged_prev_7_days), 2), 0)\n AS revenue_engaged_trend_7_days,\n\n -- Total revenue\n revenue_last_7_days,\n -- Total revenue trends\n COALESCE(ROUND((100 * (revenue_last_7_days - revenue_prev_7_days) / revenue_prev_7_days), 2), 0)\n AS revenue_trend_7_days,\n\n -- Total customers count by segments\n new_count_last_7_days,\n returning_count_last_7_days,\n engaged_count_last_7_days,\n -- Total customers count by segments trends\n COALESCE(ROUND((100 * (new_count_last_7_days - new_count_prev_7_days) / new_count_prev_7_days), 2), 0)\n AS new_count_trend_7_days,\n COALESCE(ROUND((100 * (returning_count_last_7_days - returning_count_prev_7_days) / returning_count_prev_7_days), 2), 0)\n AS returning_count_trend_7_days,\n COALESCE(ROUND((100 * (engaged_count_last_7_days - engaged_count_prev_7_days) / engaged_count_prev_7_days), 2), 0)\n AS engaged_count_trend_7_days,\n\n -- Total customers count\n customers_count_last_7_days,\n -- Total customers count trends\n COALESCE(ROUND((100 * (customers_count_last_7_days - customers_count_prev_7_days) / customers_count_prev_7_days), 2), 0)\n AS customers_trend_7_days\n ,\n \n \n -- Revenue by segments\n revenue_new_last_30_days,\n revenue_returning_last_30_days,\n revenue_engaged_last_30_days,\n -- Revenue by segments trends\n -- We coalesce because division by zero returns null\n COALESCE(ROUND((100 * (revenue_new_last_30_days - revenue_new_prev_30_days) / revenue_new_prev_30_days), 2), 0)\n AS revenue_new_trend_30_days,\n COALESCE(ROUND((100 * (revenue_returning_last_30_days - revenue_returning_prev_30_days) / revenue_returning_prev_30_days), 2), 0)\n AS revenue_returning_trend_30_days,\n COALESCE(ROUND((100 * (revenue_engaged_last_30_days - revenue_engaged_prev_30_days) / revenue_engaged_prev_30_days), 2), 0)\n AS revenue_engaged_trend_30_days,\n\n -- Total revenue\n revenue_last_30_days,\n -- Total revenue trends\n COALESCE(ROUND((100 * (revenue_last_30_days - revenue_prev_30_days) / revenue_prev_30_days), 2), 0)\n AS revenue_trend_30_days,\n\n -- Total customers count by segments\n new_count_last_30_days,\n returning_count_last_30_days,\n engaged_count_last_30_days,\n -- Total customers count by segments trends\n COALESCE(ROUND((100 * (new_count_last_30_days - new_count_prev_30_days) / new_count_prev_30_days), 2), 0)\n AS new_count_trend_30_days,\n COALESCE(ROUND((100 * (returning_count_last_30_days - returning_count_prev_30_days) / returning_count_prev_30_days), 2), 0)\n AS returning_count_trend_30_days,\n COALESCE(ROUND((100 * (engaged_count_last_30_days - engaged_count_prev_30_days) / engaged_count_prev_30_days), 2), 0)\n AS engaged_count_trend_30_days,\n\n -- Total customers count\n customers_count_last_30_days,\n -- Total customers count trends\n COALESCE(ROUND((100 * (customers_count_last_30_days - customers_count_prev_30_days) / customers_count_prev_30_days), 2), 0)\n AS customers_trend_30_days\n ,\n \n \n -- Revenue by segments\n revenue_new_last_90_days,\n revenue_returning_last_90_days,\n revenue_engaged_last_90_days,\n -- Revenue by segments trends\n -- We coalesce because division by zero returns null\n COALESCE(ROUND((100 * (revenue_new_last_90_days - revenue_new_prev_90_days) / revenue_new_prev_90_days), 2), 0)\n AS revenue_new_trend_90_days,\n COALESCE(ROUND((100 * (revenue_returning_last_90_days - revenue_returning_prev_90_days) / revenue_returning_prev_90_days), 2), 0)\n AS revenue_returning_trend_90_days,\n COALESCE(ROUND((100 * (revenue_engaged_last_90_days - revenue_engaged_prev_90_days) / revenue_engaged_prev_90_days), 2), 0)\n AS revenue_engaged_trend_90_days,\n\n -- Total revenue\n revenue_last_90_days,\n -- Total revenue trends\n COALESCE(ROUND((100 * (revenue_last_90_days - revenue_prev_90_days) / revenue_prev_90_days), 2), 0)\n AS revenue_trend_90_days,\n\n -- Total customers count by segments\n new_count_last_90_days,\n returning_count_last_90_days,\n engaged_count_last_90_days,\n -- Total customers count by segments trends\n COALESCE(ROUND((100 * (new_count_last_90_days - new_count_prev_90_days) / new_count_prev_90_days), 2), 0)\n AS new_count_trend_90_days,\n COALESCE(ROUND((100 * (returning_count_last_90_days - returning_count_prev_90_days) / returning_count_prev_90_days), 2), 0)\n AS returning_count_trend_90_days,\n COALESCE(ROUND((100 * (engaged_count_last_90_days - engaged_count_prev_90_days) / engaged_count_prev_90_days), 2), 0)\n AS engaged_count_trend_90_days,\n\n -- Total customers count\n customers_count_last_90_days,\n -- Total customers count trends\n COALESCE(ROUND((100 * (customers_count_last_90_days - customers_count_prev_90_days) / customers_count_prev_90_days), 2), 0)\n AS customers_trend_90_days\n ,\n \n \n -- Revenue by segments\n revenue_new_last_365_days,\n revenue_returning_last_365_days,\n revenue_engaged_last_365_days,\n -- Revenue by segments trends\n -- We coalesce because division by zero returns null\n COALESCE(ROUND((100 * (revenue_new_last_365_days - revenue_new_prev_365_days) / revenue_new_prev_365_days), 2), 0)\n AS revenue_new_trend_365_days,\n COALESCE(ROUND((100 * (revenue_returning_last_365_days - revenue_returning_prev_365_days) / revenue_returning_prev_365_days), 2), 0)\n AS revenue_returning_trend_365_days,\n COALESCE(ROUND((100 * (revenue_engaged_last_365_days - revenue_engaged_prev_365_days) / revenue_engaged_prev_365_days), 2), 0)\n AS revenue_engaged_trend_365_days,\n\n -- Total revenue\n revenue_last_365_days,\n -- Total revenue trends\n COALESCE(ROUND((100 * (revenue_last_365_days - revenue_prev_365_days) / revenue_prev_365_days), 2), 0)\n AS revenue_trend_365_days,\n\n -- Total customers count by segments\n new_count_last_365_days,\n returning_count_last_365_days,\n engaged_count_last_365_days,\n -- Total customers count by segments trends\n COALESCE(ROUND((100 * (new_count_last_365_days - new_count_prev_365_days) / new_count_prev_365_days), 2), 0)\n AS new_count_trend_365_days,\n COALESCE(ROUND((100 * (returning_count_last_365_days - returning_count_prev_365_days) / returning_count_prev_365_days), 2), 0)\n AS returning_count_trend_365_days,\n COALESCE(ROUND((100 * (engaged_count_last_365_days - engaged_count_prev_365_days) / engaged_count_prev_365_days), 2), 0)\n AS engaged_count_trend_365_days,\n\n -- Total customers count\n customers_count_last_365_days,\n -- Total customers count trends\n COALESCE(ROUND((100 * (customers_count_last_365_days - customers_count_prev_365_days) / customers_count_prev_365_days), 2), 0)\n AS customers_trend_365_days\n \n \n FROM total_revenue_and_customers_per_merchant\n), final AS (\n -- Filter out the data for previous days ranges\n SELECT\n app_key,\n \n revenue_new_last_7_days,\n revenue_new_trend_7_days,\n revenue_returning_last_7_days,\n revenue_returning_trend_7_days,\n revenue_engaged_last_7_days,\n revenue_engaged_trend_7_days,\n revenue_last_7_days,\n revenue_trend_7_days,\n\n new_count_last_7_days,\n new_count_trend_7_days,\n returning_count_last_7_days,\n returning_count_trend_7_days,\n engaged_count_last_7_days,\n engaged_count_trend_7_days,\n customers_count_last_7_days,\n customers_trend_7_days\n ,\n \n \n revenue_new_last_30_days,\n revenue_new_trend_30_days,\n revenue_returning_last_30_days,\n revenue_returning_trend_30_days,\n revenue_engaged_last_30_days,\n revenue_engaged_trend_30_days,\n revenue_last_30_days,\n revenue_trend_30_days,\n\n new_count_last_30_days,\n new_count_trend_30_days,\n returning_count_last_30_days,\n returning_count_trend_30_days,\n engaged_count_last_30_days,\n engaged_count_trend_30_days,\n customers_count_last_30_days,\n customers_trend_30_days\n ,\n \n \n revenue_new_last_90_days,\n revenue_new_trend_90_days,\n revenue_returning_last_90_days,\n revenue_returning_trend_90_days,\n revenue_engaged_last_90_days,\n revenue_engaged_trend_90_days,\n revenue_last_90_days,\n revenue_trend_90_days,\n\n new_count_last_90_days,\n new_count_trend_90_days,\n returning_count_last_90_days,\n returning_count_trend_90_days,\n engaged_count_last_90_days,\n engaged_count_trend_90_days,\n customers_count_last_90_days,\n customers_trend_90_days\n ,\n \n \n revenue_new_last_365_days,\n revenue_new_trend_365_days,\n revenue_returning_last_365_days,\n revenue_returning_trend_365_days,\n revenue_engaged_last_365_days,\n revenue_engaged_trend_365_days,\n revenue_last_365_days,\n revenue_trend_365_days,\n\n new_count_last_365_days,\n new_count_trend_365_days,\n returning_count_last_365_days,\n returning_count_trend_365_days,\n engaged_count_last_365_days,\n engaged_count_trend_365_days,\n customers_count_last_365_days,\n customers_trend_365_days\n \n \n FROM value_and_trend\n)\nSELECT * FROM final;", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_total_sales_and_customers_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_total_sales_and_customers_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers_to_snowflake/platform__retention_metrics_total_sales_and_customers_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers_to_snowflake/platform__retention_metrics_total_sales_and_customers_to_snowflake.sql", "unique_id": "model.yoda.platform__retention_metrics_total_sales_and_customers_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_total_sales_and_customers_to_snowflake", "platform__retention_metrics_total_sales_and_customers_to_snowflake"], "alias": "platform__retention_metrics_total_sales_and_customers_to_snowflake", "checksum": {"name": "sha256", "checksum": "d2915d618ea7b10a30ee06cd7883427849b907b8be98c2bb368b68fe6f3f15ac"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "RETENTION_METRICS_TOTAL_SALES_AND_CUSTOMERS", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "Table holding total revenue and total customers per merchant", "columns": {}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "RETENTION_METRICS_TOTAL_SALES_AND_CUSTOMERS", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_total_sales_and_customers_to_snowflake/platform__retention_metrics_total_sales_and_customers_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "RETENTION_METRICS_TOTAL_SALES_AND_CUSTOMERS", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large_with_intensive_memory"}}}, "created_at": 1700082678.9963334, "relation_name": "dev_dkruh1.platform__retention_metrics_total_sales_and_customers_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__retention_metrics_total_sales_and_customers') }}\n\n), retention_metrics_total_sales_and_customers_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(revenue_new_last_7_days as double),\n\t\tcast(revenue_returning_last_7_days as double),\n\t\tcast(revenue_engaged_last_7_days as double),\n\t\tcast(revenue_last_7_days as double),\n\t\tcast(revenue_trend_7_days as double),\n\t\tcast(new_count_last_7_days as bigint),\n\t\tcast(returning_count_last_7_days as bigint),\n\t\tcast(engaged_count_last_7_days as bigint),\n\t\tcast(customers_count_last_7_days as bigint),\n\t\tcast(customers_trend_7_days as double),\n\t\tcast(revenue_new_last_30_days as double),\n\t\tcast(revenue_returning_last_30_days as double),\n\t\tcast(revenue_engaged_last_30_days as double),\n\t\tcast(revenue_last_30_days as double),\n\t\tcast(revenue_trend_30_days as double),\n\t\tcast(new_count_last_30_days as bigint),\n\t\tcast(returning_count_last_30_days as bigint),\n\t\tcast(engaged_count_last_30_days as bigint),\n\t\tcast(customers_count_last_30_days as bigint),\n\t\tcast(customers_trend_30_days as double),\n\t\tcast(revenue_new_last_90_days as double),\n\t\tcast(revenue_returning_last_90_days as double),\n\t\tcast(revenue_engaged_last_90_days as double),\n\t\tcast(revenue_last_90_days as double),\n\t\tcast(revenue_trend_90_days as double),\n\t\tcast(new_count_last_90_days as bigint),\n\t\tcast(returning_count_last_90_days as bigint),\n\t\tcast(engaged_count_last_90_days as bigint),\n\t\tcast(customers_count_last_90_days as bigint),\n\t\tcast(customers_trend_90_days as double),\n\t\tcast(revenue_new_last_365_days as double),\n\t\tcast(revenue_returning_last_365_days as double),\n\t\tcast(revenue_engaged_last_365_days as double),\n\t\tcast(revenue_last_365_days as double),\n\t\tcast(revenue_trend_365_days as double),\n\t\tcast(new_count_last_365_days as bigint),\n\t\tcast(returning_count_last_365_days as bigint),\n\t\tcast(engaged_count_last_365_days as bigint),\n\t\tcast(customers_count_last_365_days as bigint),\n\t\tcast(customers_trend_365_days as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_total_sales_and_customers_to_snowflake", "language": "sql", "refs": [{"name": "platform__retention_metrics_total_sales_and_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_total_sales_and_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_total_sales_and_customers_to_snowflake/platform__retention_metrics_total_sales_and_customers_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_total_sales_and_customers\n\n), retention_metrics_total_sales_and_customers_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(revenue_new_last_7_days as double),\n\t\tcast(revenue_returning_last_7_days as double),\n\t\tcast(revenue_engaged_last_7_days as double),\n\t\tcast(revenue_last_7_days as double),\n\t\tcast(revenue_trend_7_days as double),\n\t\tcast(new_count_last_7_days as bigint),\n\t\tcast(returning_count_last_7_days as bigint),\n\t\tcast(engaged_count_last_7_days as bigint),\n\t\tcast(customers_count_last_7_days as bigint),\n\t\tcast(customers_trend_7_days as double),\n\t\tcast(revenue_new_last_30_days as double),\n\t\tcast(revenue_returning_last_30_days as double),\n\t\tcast(revenue_engaged_last_30_days as double),\n\t\tcast(revenue_last_30_days as double),\n\t\tcast(revenue_trend_30_days as double),\n\t\tcast(new_count_last_30_days as bigint),\n\t\tcast(returning_count_last_30_days as bigint),\n\t\tcast(engaged_count_last_30_days as bigint),\n\t\tcast(customers_count_last_30_days as bigint),\n\t\tcast(customers_trend_30_days as double),\n\t\tcast(revenue_new_last_90_days as double),\n\t\tcast(revenue_returning_last_90_days as double),\n\t\tcast(revenue_engaged_last_90_days as double),\n\t\tcast(revenue_last_90_days as double),\n\t\tcast(revenue_trend_90_days as double),\n\t\tcast(new_count_last_90_days as bigint),\n\t\tcast(returning_count_last_90_days as bigint),\n\t\tcast(engaged_count_last_90_days as bigint),\n\t\tcast(customers_count_last_90_days as bigint),\n\t\tcast(customers_trend_90_days as double),\n\t\tcast(revenue_new_last_365_days as double),\n\t\tcast(revenue_returning_last_365_days as double),\n\t\tcast(revenue_engaged_last_365_days as double),\n\t\tcast(revenue_last_365_days as double),\n\t\tcast(revenue_trend_365_days as double),\n\t\tcast(new_count_last_365_days as bigint),\n\t\tcast(returning_count_last_365_days as bigint),\n\t\tcast(engaged_count_last_365_days as bigint),\n\t\tcast(customers_count_last_365_days as bigint),\n\t\tcast(customers_trend_365_days as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_total_sales_and_customers_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_trends_average_order_value": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_trends_average_order_value", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.sql", "unique_id": "model.yoda.platform__retention_metrics_trends_average_order_value", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_trends_average_order_value", "platform__retention_metrics_trends_average_order_value"], "alias": "platform__retention_metrics_trends_average_order_value", "checksum": {"name": "sha256", "checksum": "eb3de33132b59a1e83d4d28c508c1f311ed2458ab9ac4d74d849a2fb7d4f5bf3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Data for the \"Average per order\" metrics trends of the retention metrics dashboard", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier in Yotpo platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "The trend: Last 7/30/90/365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "aov_for_engaged_customers": {"name": "aov_for_engaged_customers", "description": "AOV for engaged customers for a specified trend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "aov_for_returning_customers": {"name": "aov_for_returning_customers", "description": "AOV for returning customers for a specified trend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "aov_for_new_customers": {"name": "aov_for_new_customers", "description": "AOV for new customers for a specified trend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082679.013462, "relation_name": "dev_dkruh1.platform__retention_metrics_trends_average_order_value", "raw_code": "WITH avg_order_value_trends_current_segment AS (\n\n SELECT * FROM {{ ref('platform_stg__retention_metrics_current_segment_for_trend_average_order_value') }}\n\n), avg_order_value_trends_previous_segment AS (\n\n SELECT * FROM {{ ref('platform_stg__retention_metrics_previous_segment_for_trend_average_order_value') }}\n\n)\n \nSELECT * FROM avg_order_value_trends_current_segment\nUNION ALL\nSELECT * FROM avg_order_value_trends_previous_segment", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.sql", "compiled": true, "compiled_code": "WITH avg_order_value_trends_current_segment AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_current_segment_for_trend_average_order_value\n\n), avg_order_value_trends_previous_segment AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value\n\n)\n \nSELECT * FROM avg_order_value_trends_current_segment\nUNION ALL\nSELECT * FROM avg_order_value_trends_previous_segment", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_trends_average_order_value_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.sql", "unique_id": "model.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_trends_average_order_value_to_snowflake", "platform__retention_metrics_trends_average_order_value_to_snowflake"], "alias": "platform__retention_metrics_trends_average_order_value_to_snowflake", "checksum": {"name": "sha256", "checksum": "2b9452a97fc3e4df6c79d8db7780e312731e25a8e6d064c3e06ed9bd2c5cbe75"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_trends_average_order_value_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "aov_for_engaged_customers": {"name": "aov_for_engaged_customers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "aov_for_returning_customers": {"name": "aov_for_returning_customers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "aov_for_new_customers": {"name": "aov_for_new_customers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_trends_average_order_value_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_trends_average_order_value_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082679.0485258, "relation_name": "dev_dkruh1.platform__retention_metrics_trends_average_order_value_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__retention_metrics_trends_average_order_value') }}\n\n), retention_metrics_trends_average_order_value_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(trend as string),\n\t\tcast(aov_for_engaged_customers as double),\n\t\tcast(aov_for_returning_customers as double),\n\t\tcast(aov_for_new_customers as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_trends_average_order_value_to_snowflake", "language": "sql", "refs": [{"name": "platform__retention_metrics_trends_average_order_value", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_trends_average_order_value"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_trends_average_order_value\n\n), retention_metrics_trends_average_order_value_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(trend as string),\n\t\tcast(aov_for_engaged_customers as double),\n\t\tcast(aov_for_returning_customers as double),\n\t\tcast(aov_for_new_customers as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_trends_average_order_value_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_trends_average_sales_per_customer": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_trends_average_sales_per_customer", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.sql", "unique_id": "model.yoda.platform__retention_metrics_trends_average_sales_per_customer", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_trends_average_sales_per_customer", "platform__retention_metrics_trends_average_sales_per_customer"], "alias": "platform__retention_metrics_trends_average_sales_per_customer", "checksum": {"name": "sha256", "checksum": "26f2d37cb110c192d19fdab5ba8654d8145df606fe36117008307daac1ec4bff"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"app_key": {"name": "app_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avg_per_engaged_customer": {"name": "avg_per_engaged_customer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_per_returning_customer": {"name": "avg_per_returning_customer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_per_new_customer": {"name": "avg_per_new_customer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082679.0670216, "relation_name": "dev_dkruh1.platform__retention_metrics_trends_average_sales_per_customer", "raw_code": "WITH avg_sales_per_customer_trends_current_segment AS (\n\n SELECT * FROM {{ ref('platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer') }}\n\n), avg_sales_per_customer_trends_previous_segment AS (\n\n SELECT * FROM {{ ref('platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer') }}\n\n)\n\nSELECT * FROM avg_sales_per_customer_trends_current_segment\nUNION ALL\nSELECT * FROM avg_sales_per_customer_trends_previous_segment", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.sql", "compiled": true, "compiled_code": "WITH avg_sales_per_customer_trends_current_segment AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer\n\n), avg_sales_per_customer_trends_previous_segment AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer\n\n)\n\nSELECT * FROM avg_sales_per_customer_trends_current_segment\nUNION ALL\nSELECT * FROM avg_sales_per_customer_trends_previous_segment", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__retention_metrics_trends_average_sales_per_customer_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.sql", "unique_id": "model.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_trends_average_sales_per_customer_to_snowflake", "platform__retention_metrics_trends_average_sales_per_customer_to_snowflake"], "alias": "platform__retention_metrics_trends_average_sales_per_customer_to_snowflake", "checksum": {"name": "sha256", "checksum": "9fa9c696df85775132bbf6370bc75ab753540334f1e78afa2b5bb7afd19ddf26"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_trends_average_sales_per_customer_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avg_per_engaged_customer": {"name": "avg_per_engaged_customer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_per_returning_customer": {"name": "avg_per_returning_customer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_per_new_customer": {"name": "avg_per_new_customer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_trends_average_sales_per_customer_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "retention_metrics_trends_average_sales_per_customer_v2", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082679.0957975, "relation_name": "dev_dkruh1.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__retention_metrics_trends_average_sales_per_customer') }}\n\n), retention_metrics_trends_average_sales_per_customer_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(trend as string),\n\t\tcast(avg_per_engaged_customer as double),\n\t\tcast(avg_per_returning_customer as double),\n\t\tcast(avg_per_new_customer as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_trends_average_sales_per_customer_to_snowflake", "language": "sql", "refs": [{"name": "platform__retention_metrics_trends_average_sales_per_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_trends_average_sales_per_customer"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_trends_average_sales_per_customer\n\n), retention_metrics_trends_average_sales_per_customer_to_snowflake AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(trend as string),\n\t\tcast(avg_per_engaged_customer as double),\n\t\tcast(avg_per_returning_customer as double),\n\t\tcast(avg_per_new_customer as double)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM retention_metrics_trends_average_sales_per_customer_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__sms_store_verification": {"database": null, "schema": "dev_dkruh1", "name": "platform__sms_store_verification", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.sql", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.sql", "unique_id": "model.yoda.platform__sms_store_verification", "fqn": ["yoda", "platform", "marts", "platform__sms_store_verification", "platform__sms_store_verification"], "alias": "platform__sms_store_verification", "checksum": {"name": "sha256", "checksum": "92b8226108bcf5a0157efbbe8905633501021e66fa2c3cfde1517c9ad1264e56"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "ssheffer@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Aggregated SMS store verification process metrics", "columns": {"store_id": {"name": "store_id", "description": "The store ID (app key)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_count": {"name": "products_count", "description": "Number of store products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "products_avg_price": {"name": "products_avg_price", "description": "The average price of all the store products.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "products_price_stddev": {"name": "products_price_stddev", "description": "The standard deviation of the store procuts prices", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "products_createdat_stddev": {"name": "products_createdat_stddev", "description": "The standard deviation of the creation date of all the store products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yotpo_created_at": {"name": "yotpo_created_at", "description": "Account creation at Yotpo", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "yotpo_age": {"name": "yotpo_age", "description": "Number of days passed since creation at Yotpo", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "shopify_plan": {"name": "shopify_plan", "description": "Shopify internal plan name, i.e.: basic, frozen, shopify_plus", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "Shopify domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_plan_display_name": {"name": "shopify_plan_display_name", "description": "Shopify display plan name, i.e.: Shopify Plus, Basic Shopify, frozen", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_owner": {"name": "shop_owner", "description": "Shop owner name in Shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "password_enabled": {"name": "password_enabled", "description": "Is the store website is password protected", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "shopify_created_at": {"name": "shopify_created_at", "description": "Date the shopify store was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "shopify_minus_yotpo_created": {"name": "shopify_minus_yotpo_created", "description": "Days passed between store created in Shopify and store created in Yotpo", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "table_updated_date": {"name": "table_updated_date", "description": "Date updated this table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "orders_count": {"name": "orders_count", "description": "Number of orders the store had", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "orders_max_date_spread": {"name": "orders_max_date_spread", "description": "Days between first and last orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "customers_count": {"name": "customers_count", "description": "Number of customers the store has", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "yotpo_plan_name": {"name": "yotpo_plan_name", "description": "Yotpo SMS plan name, i.e.: Free, Powerhouse Plus 2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "HT for high touch / LT for low touch", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "labels": {"name": "labels", "description": "Number labels the store and the store products has, comma separated such as: sex, violence, drags etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "ssheffer@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "materialized": "table", "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "ssheffer@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082679.1241431, "relation_name": "dev_dkruh1.platform__sms_store_verification", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table','view')\n )\n}}\n\nWITH stores AS (\n\n SELECT\n app_key as store_id,\n created_date\n FROM {{ ref('analytics___sms_stg__sms_user') }}\n WHERE\n is_ban_exclude = false AND\n is_test = false AND\n created_date > DATE_SUB(CURRENT_DATE(), 180) AND\n is_onboarding_completed = true\n\n), shopify_users AS (\n\n SELECT\n user_id AS sms_user_id,\n plan,\n domain,\n GET_JSON_OBJECT(shop_data, '$.plan_display_name') AS shopify_plan_display_name,\n GET_JSON_OBJECT(shop_data, '$.shop_owner') AS shop_owner,\n GET_JSON_OBJECT(shop_data, '$.password_enabled') AS password_enabled,\n GET_JSON_OBJECT(shop_data, '$.created_at') AS created_at\n FROM {{ ref('communication_stg__shopify_users') }}\n WHERE\n created > DATE_SUB(CURRENT_DATE(), 180)\n\n), products_data AS (\n\n SELECT\n procuts_data.store_id,\n created_at,\n id,\n price\n FROM {{ ref('platform_stg__products') }} AS procuts_data\n INNER JOIN\n stores ON procuts_data.store_id = stores.store_id\n WHERE\n status = \"active\" AND\n created_at > DATE_SUB(CURRENT_DATE(), 180)\n\n), products_count AS (\n\n SELECT\n store_id,\n COUNT(id) AS products_count,\n AVG(price) AS avg_price,\n STDDEV(price) AS price_stddev,\n STDDEV(unix_timestamp(created_at)) AS createdat_stddev\n FROM\n products_data\n GROUP BY store_id\n\n), sms_store_metrics AS (\n\n SELECT\n app_key AS store_id,\n cumulative_customer_cnt,\n plan_name as yotpo_plan_name,\n plan_type_ht_lt,\n sms_user_id\n FROM {{ ref('analytics___sms__store_metrics') }}\n WHERE\n is_uninstall = false AND\n created_date > DATE_SUB(CURRENT_DATE(), 180)\n\n), orders AS (\n\n SELECT\n app_key AS store_id,\n SUM(orders_cnt) AS orders_count,\n DATEDIFF(MAX(date), MIN(date)) AS max_date_spread\n FROM {{ ref('analytics___platform__store_metrics_daily') }}\n WHERE\n date > DATE_SUB(CURRENT_DATE(), 180)\n GROUP BY store_id\n\n), labels AS (\n\n SELECT\n products_labels.store_id,\n CONCAT_WS(',', COLLECT_LIST(DISTINCT products_labels.predicted_label)) AS predicted_label,\n CONCAT_WS(',', COLLECT_LIST(DISTINCT similar_stores.category)) AS category\n FROM\n data_science.products_labels AS products_labels\n LEFT JOIN data_science.similar_stores AS similar_stores ON similar_stores.store_id = products_labels.store_id\n WHERE\n predicted_label_score > 0.7 AND\n (\n products_labels.predicted_label LIKE '%sex%' OR\n products_labels.predicted_label LIKE '%anal%' OR\n products_labels.predicted_label LIKE '%guns%' OR\n products_labels.predicted_label LIKE '%cigar%' OR\n products_labels.predicted_label LIKE '%masturbation%' OR\n predicted_label LIKE '%vape%' OR\n similar_stores.category = \"mature\" OR\n category = \"tobacco products\"\n )\n GROUP BY\n products_labels.store_id\n\n), platform__sms_store_verification AS (\n\n SELECT\n stores.store_id,\n stores.created_date AS yotpo_created_at,\n DATEDIFF(NOW(), stores.created_date) AS yotpo_age,\n shopify_users.plan AS shopify_plan,\n shopify_users.domain,\n shopify_users.shopify_plan_display_name AS shopify_plan_display_name,\n shopify_users.shop_owner,\n shopify_users.password_enabled,\n shopify_users.created_at AS shopify_created_at,\n DATEDIFF(stores.created_date, shopify_users.created_at) AS shopify_minus_yotpo_created,\n NOW() as table_updated_date,\n NVL(orders.orders_count, 0) AS orders_count,\n NVL(orders.max_date_spread, 0) AS orders_max_date_spread,\n sms_store_metrics.cumulative_customer_cnt AS customers_count,\n sms_store_metrics.yotpo_plan_name,\n sms_store_metrics.plan_type_ht_lt,\n NVL(products.products_count, 0) AS products_count,\n NVL(products.avg_price, 0) AS products_avg_price,\n NVL(products.price_stddev, 0) AS products_price_stddev,\n NVL(products.createdat_stddev, 0) AS products_createdat_stddev,\n CONCAT_WS(',', labels.predicted_label, labels.category) AS labels\n FROM\n stores\n INNER JOIN sms_store_metrics ON sms_store_metrics.store_id = stores.store_id\n INNER JOIN shopify_users ON shopify_users.sms_user_id = sms_store_metrics.sms_user_id\n LEFT JOIN orders ON orders.store_id = stores.store_id\n LEFT JOIN products_count as products ON products.store_id = stores.store_id\n LEFT JOIN labels ON labels.store_id = stores.store_id\n\n)\n\nSELECT * FROM platform__sms_store_verification", "language": "sql", "refs": [{"name": "analytics___sms_stg__sms_user", "package": null, "version": null}, {"name": "communication_stg__shopify_users", "package": null, "version": null}, {"name": "platform_stg__products", "package": null, "version": null}, {"name": "analytics___sms__store_metrics", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___sms_stg__sms_user", "model.yoda.communication_stg__shopify_users", "model.yoda.platform_stg__products", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___platform__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.sql", "compiled": true, "compiled_code": "\n\nWITH stores AS (\n\n SELECT\n app_key as store_id,\n created_date\n FROM dev_dkruh1.analytics___sms_stg__sms_user\n WHERE\n is_ban_exclude = false AND\n is_test = false AND\n created_date > DATE_SUB(CURRENT_DATE(), 180) AND\n is_onboarding_completed = true\n\n), shopify_users AS (\n\n SELECT\n user_id AS sms_user_id,\n plan,\n domain,\n GET_JSON_OBJECT(shop_data, '$.plan_display_name') AS shopify_plan_display_name,\n GET_JSON_OBJECT(shop_data, '$.shop_owner') AS shop_owner,\n GET_JSON_OBJECT(shop_data, '$.password_enabled') AS password_enabled,\n GET_JSON_OBJECT(shop_data, '$.created_at') AS created_at\n FROM dev_dkruh1.communication_stg__shopify_users\n WHERE\n created > DATE_SUB(CURRENT_DATE(), 180)\n\n), products_data AS (\n\n SELECT\n procuts_data.store_id,\n created_at,\n id,\n price\n FROM dev_dkruh1.platform_stg__products AS procuts_data\n INNER JOIN\n stores ON procuts_data.store_id = stores.store_id\n WHERE\n status = \"active\" AND\n created_at > DATE_SUB(CURRENT_DATE(), 180)\n\n), products_count AS (\n\n SELECT\n store_id,\n COUNT(id) AS products_count,\n AVG(price) AS avg_price,\n STDDEV(price) AS price_stddev,\n STDDEV(unix_timestamp(created_at)) AS createdat_stddev\n FROM\n products_data\n GROUP BY store_id\n\n), sms_store_metrics AS (\n\n SELECT\n app_key AS store_id,\n cumulative_customer_cnt,\n plan_name as yotpo_plan_name,\n plan_type_ht_lt,\n sms_user_id\n FROM dev_dkruh1.analytics___sms__store_metrics\n WHERE\n is_uninstall = false AND\n created_date > DATE_SUB(CURRENT_DATE(), 180)\n\n), orders AS (\n\n SELECT\n app_key AS store_id,\n SUM(orders_cnt) AS orders_count,\n DATEDIFF(MAX(date), MIN(date)) AS max_date_spread\n FROM dev_dkruh1.analytics___platform__store_metrics_daily\n WHERE\n date > DATE_SUB(CURRENT_DATE(), 180)\n GROUP BY store_id\n\n), labels AS (\n\n SELECT\n products_labels.store_id,\n CONCAT_WS(',', COLLECT_LIST(DISTINCT products_labels.predicted_label)) AS predicted_label,\n CONCAT_WS(',', COLLECT_LIST(DISTINCT similar_stores.category)) AS category\n FROM\n data_science.products_labels AS products_labels\n LEFT JOIN data_science.similar_stores AS similar_stores ON similar_stores.store_id = products_labels.store_id\n WHERE\n predicted_label_score > 0.7 AND\n (\n products_labels.predicted_label LIKE '%sex%' OR\n products_labels.predicted_label LIKE '%anal%' OR\n products_labels.predicted_label LIKE '%guns%' OR\n products_labels.predicted_label LIKE '%cigar%' OR\n products_labels.predicted_label LIKE '%masturbation%' OR\n predicted_label LIKE '%vape%' OR\n similar_stores.category = \"mature\" OR\n category = \"tobacco products\"\n )\n GROUP BY\n products_labels.store_id\n\n), platform__sms_store_verification AS (\n\n SELECT\n stores.store_id,\n stores.created_date AS yotpo_created_at,\n DATEDIFF(NOW(), stores.created_date) AS yotpo_age,\n shopify_users.plan AS shopify_plan,\n shopify_users.domain,\n shopify_users.shopify_plan_display_name AS shopify_plan_display_name,\n shopify_users.shop_owner,\n shopify_users.password_enabled,\n shopify_users.created_at AS shopify_created_at,\n DATEDIFF(stores.created_date, shopify_users.created_at) AS shopify_minus_yotpo_created,\n NOW() as table_updated_date,\n NVL(orders.orders_count, 0) AS orders_count,\n NVL(orders.max_date_spread, 0) AS orders_max_date_spread,\n sms_store_metrics.cumulative_customer_cnt AS customers_count,\n sms_store_metrics.yotpo_plan_name,\n sms_store_metrics.plan_type_ht_lt,\n NVL(products.products_count, 0) AS products_count,\n NVL(products.avg_price, 0) AS products_avg_price,\n NVL(products.price_stddev, 0) AS products_price_stddev,\n NVL(products.createdat_stddev, 0) AS products_createdat_stddev,\n CONCAT_WS(',', labels.predicted_label, labels.category) AS labels\n FROM\n stores\n INNER JOIN sms_store_metrics ON sms_store_metrics.store_id = stores.store_id\n INNER JOIN shopify_users ON shopify_users.sms_user_id = sms_store_metrics.sms_user_id\n LEFT JOIN orders ON orders.store_id = stores.store_id\n LEFT JOIN products_count as products ON products.store_id = stores.store_id\n LEFT JOIN labels ON labels.store_id = stores.store_id\n\n)\n\nSELECT * FROM platform__sms_store_verification", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__sms_store_verification_to_snowflake": {"database": null, "schema": "dev_dkruh1", "name": "platform__sms_store_verification_to_snowflake", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.sql", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.sql", "unique_id": "model.yoda.platform__sms_store_verification_to_snowflake", "fqn": ["yoda", "platform", "marts", "platform__sms_store_verification_to_snowflake", "platform__sms_store_verification_to_snowflake"], "alias": "platform__sms_store_verification_to_snowflake", "checksum": {"name": "sha256", "checksum": "a66084e1bf8d2409edd8afd708239660679dcb59f09423b43d9a248b2826555b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "yoda_snowflake"], "meta": {"model_ownership": {"group": "sms", "team": "kattos", "created_by": "ssheffer@yotpo.com", "alert_channels": ["kattos-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "sms_store_verification", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "yoda_snowflake"], "description": "Aggregated SMS store verification process metrics", "columns": {"store_id": {"name": "store_id", "description": "The store ID (app key)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_count": {"name": "products_count", "description": "Number of store products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "avg_price": {"name": "avg_price", "description": "The average price of all the store products.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_stddev": {"name": "price_stddev", "description": "The standard deviation of the store procuts prices", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "createdat_stddev": {"name": "createdat_stddev", "description": "The standard deviation of the creation date of all the store products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yotpo_created_at": {"name": "yotpo_created_at", "description": "Account creation at Yotpo", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "yotpo_age": {"name": "yotpo_age", "description": "Number of days passed since creation at Yotpo", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "shopify_plan": {"name": "shopify_plan", "description": "Shopify internal plan name, i.e.: basic, frozen, shopify_plus", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "Shopify domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_plan_display_name": {"name": "shopify_plan_display_name", "description": "Shopify display plan name, i.e.: Shopify Plus, Basic Shopify, frozen", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_owner": {"name": "shop_owner", "description": "Shop owner name in Shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "password_enabled": {"name": "password_enabled", "description": "Is the store website is password protected", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "shopify_created_at": {"name": "shopify_created_at", "description": "Date the shopify store was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "shopify_minus_yotpo_created": {"name": "shopify_minus_yotpo_created", "description": "Days passed between store created in Shopify and store created in Yotpo", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "table_updated_date": {"name": "table_updated_date", "description": "Date updated this table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "orders_count": {"name": "orders_count", "description": "Number of orders the store had", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "orders_max_date_spread": {"name": "orders_max_date_spread", "description": "Days between first and last orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "customers_count": {"name": "customers_count", "description": "Number of customers the store has", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "yotpo_plan_name": {"name": "yotpo_plan_name", "description": "Yotpo SMS plan name, i.e.: Free, Powerhouse Plus 2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type_ht_lt": {"name": "plan_type_ht_lt", "description": "HT for high touch / LT for low touch", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "labels": {"name": "labels", "description": "Number labels the store and the store products has, comma separated such as: sex, violence, drags etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "sms", "team": "kattos", "created_by": "ssheffer@yotpo.com", "alert_channels": ["kattos-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "sms_store_verification", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "sms", "team": "kattos", "created_by": "ssheffer@yotpo.com", "alert_channels": ["kattos-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "sms_store_verification", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082679.15419, "relation_name": "dev_dkruh1.platform__sms_store_verification_to_snowflake", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('platform__sms_store_verification') }}\n\n), platform__sms_store_verification_to_snowflake AS (\n\n SELECT \n\t\tcast(store_id as string),\n\t\tcast(products_count as bigint),\n\t\tcast(products_avg_price as double),\n\t\tcast(products_price_stddev as double),\n\t\tcast(products_createdat_stddev as double),\n\t\tcast(yotpo_created_at as date),\n\t\tcast(yotpo_age as int),\n\t\tcast(shopify_plan as string),\n\t\tcast(domain as string),\n\t\tcast(shopify_plan_display_name as string),\n\t\tcast(shop_owner as string),\n\t\tcast(password_enabled as boolean),\n\t\tcast(shopify_created_at as date),\n\t\tcast(shopify_minus_yotpo_created as int),\n\t\tcast(table_updated_date as date),\n\t\tcast(orders_count as int),\n\t\tcast(orders_max_date_spread as int),\n\t\tcast(customers_count as int),\n\t\tcast(yotpo_plan_name as string),\n\t\tcast(plan_type_ht_lt as string),\n\t\tcast(labels as string)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM platform__sms_store_verification_to_snowflake", "language": "sql", "refs": [{"name": "platform__sms_store_verification", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__sms_store_verification"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.platform__sms_store_verification\n\n), platform__sms_store_verification_to_snowflake AS (\n\n SELECT \n\t\tcast(store_id as string),\n\t\tcast(products_count as bigint),\n\t\tcast(products_avg_price as double),\n\t\tcast(products_price_stddev as double),\n\t\tcast(products_createdat_stddev as double),\n\t\tcast(yotpo_created_at as date),\n\t\tcast(yotpo_age as int),\n\t\tcast(shopify_plan as string),\n\t\tcast(domain as string),\n\t\tcast(shopify_plan_display_name as string),\n\t\tcast(shop_owner as string),\n\t\tcast(password_enabled as boolean),\n\t\tcast(shopify_created_at as date),\n\t\tcast(shopify_minus_yotpo_created as int),\n\t\tcast(table_updated_date as date),\n\t\tcast(orders_count as int),\n\t\tcast(orders_max_date_spread as int),\n\t\tcast(customers_count as int),\n\t\tcast(yotpo_plan_name as string),\n\t\tcast(plan_type_ht_lt as string),\n\t\tcast(labels as string)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM platform__sms_store_verification_to_snowflake", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform__synergies_kpi": {"database": null, "schema": "dev_dkruh1", "name": "platform__synergies_kpi", "resource_type": "model", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.sql", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.sql", "unique_id": "model.yoda.platform__synergies_kpi", "fqn": ["yoda", "platform", "marts", "platform__synergies_kpi", "platform__synergies_kpi"], "alias": "platform__synergies_kpi", "checksum": {"name": "sha256", "checksum": "d56edc62d84ea993a5f8869a1f5842e5ed23c4ab10067eb6a7b58fd745e5e83c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "synergies"], "description": "A table that includes a union of all the KPIs synergies tables.\ngranularity: synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, order_id", "columns": {"id": {"name": "id", "description": "synergy source record unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 1/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier - primary key 2/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer (shopper) email - primary key 3/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer (shopper) phone number - primary key 4/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "customer (shopper) external id - primary key 5/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_type": {"name": "source_type", "description": "source type: earning_rule, flow, etc. - primary key 6/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "source unique identifier, e.g: earning_rule_id - primary key 7/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "customer (shopper) action type: review, new_subscriber, etc. - primary key 8/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "action unique identifier, e.g: review_id - primary key 9/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_type": {"name": "action_attribute_type", "description": "action attribute type, e.g: rating", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "action attribute value, e.g: 5 (review rating)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order id - primary key 10/10", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source": {"name": "source", "description": "source model name, e.g: loyalty__review_earning_rule_loyalty", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "synergies"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082679.1762524, "relation_name": "dev_dkruh1.platform__synergies_kpi", "raw_code": "{{\n analytics_union(\n models=['loyalty__review_earning_rule_loyalty',\n 'loyalty__sms_earning_rule_loyalty',\n 'sms__social_proof_flows_sms_kpi',\n 'sms__social_proof_flows_email_kpi',\n 'sms__loyalty_sms_flows_sms_kpi',\n 'sms__loyalty_sms_flows_email_kpi',\n 'sms__loyalty_sms_campaigns_sms_reward_program_kpi',\n 'sms__loyalty_sms_campaigns_sms_kpi',\n 'sms__loyalty_sms_campaigns_email_reward_program_kpi',\n 'sms__loyalty_sms_campaigns_email_kpi',\n 'sms__reviews_sms_flows_sms_kpi',\n 'sms__reviews_sms_flows_email_kpi',\n 'sms__sms_double_points_campaign_kpi',\n 'subscriptions__synergy_kpi_one_click_campaign',\n 'subscriptions__synergy_kpi_redeemed_points',\n 'subscriptions__synergy_kpi_sms_payment_failure',\n 'email__email_campaign_click_to_redeem_kpi',\n 'email__email_campaign_reviews_block_kpi',\n 'email__email_campaign_reviews_stars_kpi',\n 'email__email_campaign_loyalty_kpi'],\n mandatory_columns=['id',\n 'synergy_id',\n 'app_key',\n 'customer_email',\n 'customer_phone_number',\n 'customer_external_id',\n 'source_type',\n 'source_id',\n 'action_type',\n 'action_id',\n 'action_attribute_type',\n 'action_attribute_value',\n 'order_id']\n )\n}}", "language": "sql", "refs": [{"name": "loyalty__review_earning_rule_loyalty", "package": null, "version": null}, {"name": "loyalty__sms_earning_rule_loyalty", "package": null, "version": null}, {"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}, {"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}, {"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}, {"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}, {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}, {"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}, {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}, {"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}, {"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}, {"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}, {"name": "sms__sms_double_points_campaign_kpi", "package": null, "version": null}, {"name": "subscriptions__synergy_kpi_one_click_campaign", "package": null, "version": null}, {"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}, {"name": "subscriptions__synergy_kpi_sms_payment_failure", "package": null, "version": null}, {"name": "email__email_campaign_click_to_redeem_kpi", "package": null, "version": null}, {"name": "email__email_campaign_reviews_block_kpi", "package": null, "version": null}, {"name": "email__email_campaign_reviews_stars_kpi", "package": null, "version": null}, {"name": "email__email_campaign_loyalty_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.analytics_union", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__review_earning_rule_loyalty", "model.yoda.loyalty__sms_earning_rule_loyalty", "model.yoda.sms__social_proof_flows_sms_kpi", "model.yoda.sms__social_proof_flows_email_kpi", "model.yoda.sms__loyalty_sms_flows_sms_kpi", "model.yoda.sms__loyalty_sms_flows_email_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_kpi", "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi", "model.yoda.sms__loyalty_sms_campaigns_email_kpi", "model.yoda.sms__reviews_sms_flows_sms_kpi", "model.yoda.sms__reviews_sms_flows_email_kpi", "model.yoda.sms__sms_double_points_campaign_kpi", "model.yoda.subscriptions__synergy_kpi_one_click_campaign", "model.yoda.subscriptions__synergy_kpi_redeemed_points", "model.yoda.subscriptions__synergy_kpi_sms_payment_failure", "model.yoda.email__email_campaign_click_to_redeem_kpi", "model.yoda.email__email_campaign_reviews_block_kpi", "model.yoda.email__email_campaign_reviews_stars_kpi", "model.yoda.email__email_campaign_loyalty_kpi"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.sql", "compiled": true, "compiled_code": "SELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'loyalty__review_earning_rule_loyalty' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.loyalty__review_earning_rule_loyalty\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'loyalty__sms_earning_rule_loyalty' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.loyalty__sms_earning_rule_loyalty\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'sms__social_proof_flows_sms_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms__social_proof_flows_sms_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'sms__social_proof_flows_email_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms__social_proof_flows_email_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'sms__loyalty_sms_flows_sms_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms__loyalty_sms_flows_sms_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'sms__loyalty_sms_flows_email_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms__loyalty_sms_flows_email_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'sms__loyalty_sms_campaigns_sms_reward_program_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'sms__loyalty_sms_campaigns_sms_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'sms__loyalty_sms_campaigns_email_reward_program_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'sms__loyalty_sms_campaigns_email_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'sms__reviews_sms_flows_sms_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms__reviews_sms_flows_sms_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'sms__reviews_sms_flows_email_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms__reviews_sms_flows_email_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'sms__sms_double_points_campaign_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms__sms_double_points_campaign_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'subscriptions__synergy_kpi_one_click_campaign' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.subscriptions__synergy_kpi_one_click_campaign\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'subscriptions__synergy_kpi_redeemed_points' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.subscriptions__synergy_kpi_redeemed_points\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'subscriptions__synergy_kpi_sms_payment_failure' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.subscriptions__synergy_kpi_sms_payment_failure\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'email__email_campaign_click_to_redeem_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.email__email_campaign_click_to_redeem_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'email__email_campaign_reviews_block_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.email__email_campaign_reviews_block_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'email__email_campaign_reviews_stars_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.email__email_campaign_reviews_stars_kpi\n \n UNION ALL\nSELECT id, synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_type, action_attribute_value, order_id, 'email__email_campaign_loyalty_kpi' AS source, CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.email__email_campaign_loyalty_kpi\n \n \n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__account_created": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__account_created", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.sql", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.sql", "unique_id": "model.yoda.platform_stg__account_created", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__account_created", "platform_stg__account_created"], "alias": "platform_stg__account_created", "checksum": {"name": "sha256", "checksum": "32bc2adf8458bb125303cfe724bb59a5fa2aa7e07ced47a03e4750db86a99dac"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_id": {"name": "account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productintent": {"name": "productintent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planintent": {"name": "planintent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billingproviders": {"name": "billingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "chargeid": {"name": "chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "packageextensions": {"name": "packageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isfirstaccount": {"name": "isfirstaccount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082681.3539712, "relation_name": "dev_dkruh1.platform_stg__account_created", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__segment', 'account_created') }}\n\n), platform_stg__account_created AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\taccountid,\n\t\taccount_id,\n\t\tadminname,\n\t\tappkey,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tplatform,\n\t\tproductintent,\n\t\trole,\n\t\tsignuputmcampaign,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tsignuputmmedium,\n\t\tphone,\n\t\tsignupmonthlyorderscount,\n\t\tplanintent,\n\t\tplanname,\n\t\tsignupcountry,\n\t\tsignupphone,\n\t\trrmonthlylimit,\n\t\tbillingproviders,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tisinvalidfacebooktoken,\n\t\tlastconversionordertime,\n\t\tisinvalidpinteresttoken,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tpendingrrs,\n\t\tpackageextensions,\n\t\tdaysinvalidpinteresttoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidtwittertokendate,\n\t\tisinvalidtwittertoken,\n\t\tadminusername,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\treviewspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tuseremail,\n\t\tplatformplan,\n\t\tstoreplatformdomain,\n\t\tsmspackage,\n\t\tloyaltypackage,\n\t\tvugcpackage,\n\t\tisfirstaccount\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__account_created", "language": "sql", "refs": [], "sources": [["platform__segment", "account_created"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__segment.account_created"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.account_created\n\n), platform_stg__account_created AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\taccountid,\n\t\taccount_id,\n\t\tadminname,\n\t\tappkey,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tplatform,\n\t\tproductintent,\n\t\trole,\n\t\tsignuputmcampaign,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tsignuputmmedium,\n\t\tphone,\n\t\tsignupmonthlyorderscount,\n\t\tplanintent,\n\t\tplanname,\n\t\tsignupcountry,\n\t\tsignupphone,\n\t\trrmonthlylimit,\n\t\tbillingproviders,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tisinvalidfacebooktoken,\n\t\tlastconversionordertime,\n\t\tisinvalidpinteresttoken,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tpendingrrs,\n\t\tpackageextensions,\n\t\tdaysinvalidpinteresttoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidtwittertokendate,\n\t\tisinvalidtwittertoken,\n\t\tadminusername,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\treviewspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tuseremail,\n\t\tplatformplan,\n\t\tstoreplatformdomain,\n\t\tsmspackage,\n\t\tloyaltypackage,\n\t\tvugcpackage,\n\t\tisfirstaccount\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__account_created", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__account_platforms": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__account_platforms", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.sql", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.sql", "unique_id": "model.yoda.platform_stg__account_platforms", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__account_platforms", "platform_stg__account_platforms"], "alias": "platform_stg__account_platforms", "checksum": {"name": "sha256", "checksum": "4d6d78af415ce3864104e0074b6d4719ea5b2d8c97d42615500a5c4fccdb7307"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Tables written by yotpo R&D and serve the platform", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_token": {"name": "shop_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_domain": {"name": "shop_domain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_type_id": {"name": "platform_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_user_name": {"name": "shop_user_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "valid_credentials": {"name": "valid_credentials", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "secondary_recurring_charge_id": {"name": "secondary_recurring_charge_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secondary_activated_charge_at": {"name": "secondary_activated_charge_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "secondary_cancelled_charge_at": {"name": "secondary_cancelled_charge_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "encrypted_data": {"name": "encrypted_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "failed_attempts": {"name": "failed_attempts", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_currency": {"name": "shop_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_shop_domain": {"name": "external_shop_domain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_account_id": {"name": "external_account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plugin_version": {"name": "plugin_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082681.3948317, "relation_name": "dev_dkruh1.platform_stg__account_platforms", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'account_platforms') }}\n\n), platform_stg__account_platforms AS (\n\n SELECT \n\t\tid,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taccount_id,\n\t\tshop_token,\n\t\tshop_domain,\n\t\tplan_name,\n\t\tplatform_type_id,\n\t\tdeleted,\n\t\tshop_user_name,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tvalid_credentials,\n\t\tsecondary_recurring_charge_id,\n\t\tsecondary_activated_charge_at,\n\t\tsecondary_cancelled_charge_at,\n\t\tencrypted_data,\n\t\tfailed_attempts,\n\t\tshop_currency,\n\t\texternal_shop_domain,\n\t\texternal_account_id,\n\t\tversion,\n\t\tplugin_version\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__account_platforms", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "account_platforms"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.account_platforms"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.account_platforms\n\n), platform_stg__account_platforms AS (\n\n SELECT \n\t\tid,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taccount_id,\n\t\tshop_token,\n\t\tshop_domain,\n\t\tplan_name,\n\t\tplatform_type_id,\n\t\tdeleted,\n\t\tshop_user_name,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tvalid_credentials,\n\t\tsecondary_recurring_charge_id,\n\t\tsecondary_activated_charge_at,\n\t\tsecondary_cancelled_charge_at,\n\t\tencrypted_data,\n\t\tfailed_attempts,\n\t\tshop_currency,\n\t\texternal_shop_domain,\n\t\texternal_account_id,\n\t\tversion,\n\t\tplugin_version\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__account_platforms", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__accounts": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__accounts", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.sql", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.sql", "unique_id": "model.yoda.platform_stg__accounts", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__accounts", "platform_stg__accounts"], "alias": "platform_stg__accounts", "checksum": {"name": "sha256", "checksum": "5c154817de51e284513d74fdb62fa27fcb6835a25d5a705dcd788050756c9273"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Yotpo stores account", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_subdomain": {"name": "minisite_subdomain", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_cname": {"name": "minisite_cname", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_website": {"name": "minisite_website", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_website_name": {"name": "minisite_website_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referal": {"name": "referal", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active": {"name": "is_active", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_auto_publish": {"name": "is_auto_publish", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "minisite_subdomain_active": {"name": "minisite_subdomain_active", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_type_id": {"name": "account_type_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "custom_design": {"name": "custom_design", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_login_popup": {"name": "auto_login_popup", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner_key": {"name": "partner_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "support_url": {"name": "support_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "callback_url": {"name": "callback_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secret": {"name": "secret", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_language": {"name": "customer_language", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bottom_line_installed": {"name": "bottom_line_installed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "install_step": {"name": "install_step", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_social_push": {"name": "auto_social_push", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_mails_sender_name": {"name": "customer_mails_sender_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "slug": {"name": "slug", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_me_account_name": {"name": "reviews_me_account_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_me_account_description": {"name": "reviews_me_account_description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_me_crawlable": {"name": "reviews_me_crawlable", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "coupons_expiration_date": {"name": "coupons_expiration_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "map_up_sell_title": {"name": "map_up_sell_title", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "custom_platform_name": {"name": "custom_platform_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_id": {"name": "category_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_test": {"name": "is_test", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082681.4417264, "relation_name": "dev_dkruh1.platform_stg__accounts", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'accounts') }}\n\n), platform_stg__accounts AS (\n\n SELECT \n\t\tid,\n\t\tapp_key,\n\t\tdomain,\n\t\tminisite_subdomain,\n\t\tminisite_cname,\n\t\tminisite_website,\n\t\tminisite_website_name,\n\t\treferal,\n\t\tactive AS is_active,\n\t\tauto_publish AS is_auto_publish,\n\t\tminisite_subdomain_active,\n\t\taccount_type_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tcustom_design,\n\t\tauto_login_popup,\n\t\tpartner_key,\n\t\tname,\n\t\turl,\n\t\tsupport_url,\n\t\tcallback_url,\n\t\tsecret,\n\t\tcustomer_language,\n\t\tbottom_line_installed,\n\t\tinstall_step,\n\t\tauto_social_push,\n\t\tcustomer_mails_sender_name,\n\t\tslug,\n\t\treviews_me_account_name,\n\t\treviews_me_account_description,\n\t\treviews_me_crawlable,\n\t\tcoupons_expiration_date,\n\t\tmap_up_sell_title,\n\t\tcustom_platform_name,\n\t\tcategory_id,\n\t\torganization_id,\n\t\tis_test\n FROM source \n\n)\n\nSELECT * \nFROM platform_stg__accounts", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "accounts"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.accounts"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM yotpoapiprod.accounts\n\n), platform_stg__accounts AS (\n\n SELECT \n\t\tid,\n\t\tapp_key,\n\t\tdomain,\n\t\tminisite_subdomain,\n\t\tminisite_cname,\n\t\tminisite_website,\n\t\tminisite_website_name,\n\t\treferal,\n\t\tactive AS is_active,\n\t\tauto_publish AS is_auto_publish,\n\t\tminisite_subdomain_active,\n\t\taccount_type_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tcustom_design,\n\t\tauto_login_popup,\n\t\tpartner_key,\n\t\tname,\n\t\turl,\n\t\tsupport_url,\n\t\tcallback_url,\n\t\tsecret,\n\t\tcustomer_language,\n\t\tbottom_line_installed,\n\t\tinstall_step,\n\t\tauto_social_push,\n\t\tcustomer_mails_sender_name,\n\t\tslug,\n\t\treviews_me_account_name,\n\t\treviews_me_account_description,\n\t\treviews_me_crawlable,\n\t\tcoupons_expiration_date,\n\t\tmap_up_sell_title,\n\t\tcustom_platform_name,\n\t\tcategory_id,\n\t\torganization_id,\n\t\tis_test\n FROM source \n\n)\n\nSELECT * \nFROM platform_stg__accounts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__activation_step": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__activation_step", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.sql", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.sql", "unique_id": "model.yoda.platform_stg__activation_step", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__activation_step", "platform_stg__activation_step"], "alias": "platform_stg__activation_step", "checksum": {"name": "sha256", "checksum": "884cbb050396b4ef03bdd2daf23d0e55092ced4597144e62b1cf1ef52c35f8af"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stepname": {"name": "stepname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stepnum": {"name": "stepnum", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isskipped": {"name": "isskipped", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofinstagramphotos": {"name": "numofinstagramphotos", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofmanualphotos": {"name": "numofmanualphotos", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofreviewsphotos": {"name": "numofreviewsphotos", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numoftotalphotos": {"name": "numoftotalphotos", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isbuttonupdated": {"name": "isbuttonupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isspacingupdated": {"name": "isspacingupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "layouttype": {"name": "layouttype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numofrowitems": {"name": "numofrowitems", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "objectposition": {"name": "objectposition", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iscodecopy": {"name": "iscodecopy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isscriptcopy": {"name": "isscriptcopy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "placementtype": {"name": "placementtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os20": {"name": "os20", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isdefaultupdated": {"name": "isdefaultupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isoptionsamountchanged": {"name": "isoptionsamountchanged", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "optionnum": {"name": "optionnum", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sfchatused": {"name": "sfchatused", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ismailpreviewed": {"name": "ismailpreviewed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issenderemailchanged": {"name": "issenderemailchanged", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issendernamechanged": {"name": "issendernamechanged", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "paymentfailedenabled": {"name": "paymentfailedenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptioncanceledenabled": {"name": "subscriptioncanceledenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionpurchasedenabled": {"name": "subscriptionpurchasedenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "iscolorupdated": {"name": "iscolorupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isfontadded": {"name": "isfontadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isfontupdated": {"name": "isfontupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isproductupdated": {"name": "isproductupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "noresultsareshown": {"name": "noresultsareshown", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ispreviewstore": {"name": "ispreviewstore", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widgetlayout": {"name": "widgetlayout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "selectedindustry": {"name": "selectedindustry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "selectedtemplate": {"name": "selectedtemplate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isautopublishenabled": {"name": "isautopublishenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isdesignupdated": {"name": "isdesignupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isbodyupdated": {"name": "isbodyupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isdomainupdated": {"name": "isdomainupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isenabledmap": {"name": "isenabledmap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isretroactivesend": {"name": "isretroactivesend", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issubjectupdated": {"name": "issubjectupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofdays": {"name": "numofdays", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "endscenario": {"name": "endscenario", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isabandonedcard": {"name": "isabandonedcard", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "iscustomerwinback": {"name": "iscustomerwinback", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ispostpurchaseupsell": {"name": "ispostpurchaseupsell", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isshopify2": {"name": "isshopify2", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auth0userid": {"name": "auth0userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isabandonedcart": {"name": "isabandonedcart", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isdiscountincluded": {"name": "isdiscountincluded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "iswidgetv3": {"name": "iswidgetv3", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ismultipleproducts": {"name": "ismultipleproducts", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issecondaryemailadded": {"name": "issecondaryemailadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storehasklaviyopopup": {"name": "storehasklaviyopopup", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailactivateenabledsms": {"name": "subscriptionsemailactivateenabledsms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailactivateenabled": {"name": "subscriptionsemailactivateenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailbillingfailedenabledsms": {"name": "subscriptionsemailbillingfailedenabledsms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailbillingfailedenabled": {"name": "subscriptionsemailbillingfailedenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailcancelledenabledsms": {"name": "subscriptionsemailcancelledenabledsms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailcancelledenabled": {"name": "subscriptionsemailcancelledenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailmanagementenabledsms": {"name": "subscriptionsemailmanagementenabledsms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailmanagementenabled": {"name": "subscriptionsemailmanagementenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailupcomingbillingenabledsms": {"name": "subscriptionsemailupcomingbillingenabledsms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailupcomingbillingenabled": {"name": "subscriptionsemailupcomingbillingenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "appstate": {"name": "appstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemptionreminder": {"name": "redemptionreminder", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "rewardreceived": {"name": "rewardreceived", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "programstrategy": {"name": "programstrategy", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rewardspackage": {"name": "rewardspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newfont": {"name": "newfont", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newcolor": {"name": "newcolor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboardingversion": {"name": "onboardingversion", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widgetversion": {"name": "widgetversion", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "templatetype": {"name": "templatetype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "islogoadded": {"name": "islogoadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isfromnameupdated": {"name": "isfromnameupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "arrnumofdays": {"name": "arrnumofdays", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isenabledarr": {"name": "isenabledarr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "retroactivesentnumofdays": {"name": "retroactivesentnumofdays", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "autoinstallavailable": {"name": "autoinstallavailable", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "installedplatformname": {"name": "installedplatformname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "addedstarrating": {"name": "addedstarrating", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isautoinstalled": {"name": "isautoinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ismainwidgetautoinstalledsuccessfully": {"name": "ismainwidgetautoinstalledsuccessfully", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isstarratingautoinstalledsuccessfully": {"name": "isstarratingautoinstalledsuccessfully", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sentemailinstructions": {"name": "sentemailinstructions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ispointsreminder": {"name": "ispointsreminder", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isproductreview": {"name": "isproductreview", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isredemptionreminder": {"name": "isredemptionreminder", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issubscriptionconfirmation": {"name": "issubscriptionconfirmation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issubscriptionrenewalreminder": {"name": "issubscriptionrenewalreminder", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "autoinstallmainwidgetavailable": {"name": "autoinstallmainwidgetavailable", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "autoinstallstarratingavailable": {"name": "autoinstallstarratingavailable", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082681.6096363, "relation_name": "dev_dkruh1.platform_stg__activation_step", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__segment', 'activation_step') }}\n\n), platform_stg__activation_step AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tbillingproviders,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tisinvalidfacebooktoken,\n\t\tisinvalidtwittertoken,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpath,\n\t\tpendingrrs,\n\t\tphone,\n\t\tplanname,\n\t\tplatform,\n\t\tproduct,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstatus,\n\t\tstepname,\n\t\tstepnum,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttitle,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\turl,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\tisinvalidpinteresttoken,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tlastconversionordertime,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tpackageextensions,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tisskipped,\n\t\tnumofinstagramphotos,\n\t\tnumofmanualphotos,\n\t\tnumofreviewsphotos,\n\t\tnumoftotalphotos,\n\t\tisbuttonupdated,\n\t\tisspacingupdated,\n\t\tlayouttype,\n\t\tnumofrowitems,\n\t\tobjectposition,\n\t\tiscodecopy,\n\t\tisscriptcopy,\n\t\tplacementtype,\n\t\tadminusername,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tvugcpackage,\n\t\tloyaltypackage,\n\t\tplatformplan,\n\t\tstoreplatformdomain,\n\t\tos20,\n\t\tisdefaultupdated,\n\t\tisoptionsamountchanged,\n\t\toptionnum,\n\t\tsfchatused,\n\t\tismailpreviewed,\n\t\tissenderemailchanged,\n\t\tissendernamechanged,\n\t\tpaymentfailedenabled,\n\t\tsubscriptioncanceledenabled,\n\t\tsubscriptionpurchasedenabled,\n\t\tiscolorupdated,\n\t\tisfontadded,\n\t\tisfontupdated,\n\t\tisproductupdated,\n\t\tnoresultsareshown,\n\t\tispreviewstore,\n\t\twidgetlayout,\n\t\tisinternaluser,\n\t\tselectedindustry,\n\t\tselectedtemplate,\n\t\tisautopublishenabled,\n\t\tisdesignupdated,\n\t\tisbodyupdated,\n\t\tisdomainupdated,\n\t\tisenabledmap,\n\t\tisretroactivesend,\n\t\tissubjectupdated,\n\t\tnumofdays,\n\t\tendscenario,\n\t\tuseremail,\n\t\towner,\n\t\tsource,\n\t\tisabandonedcard,\n\t\tiscustomerwinback,\n\t\tispostpurchaseupsell,\n\t\tisshopify2,\n\t\tauth0userid,\n\t\tisabandonedcart,\n\t\tisdiscountincluded,\n\t\tiswidgetv3,\n\t\tismultipleproducts,\n\t\tissecondaryemailadded,\n\t\tstorehasklaviyopopup,\n\t\tsubscriptionsemailactivateenabledsms,\n\t\tsubscriptionsemailactivateenabled,\n\t\tsubscriptionsemailbillingfailedenabledsms,\n\t\tsubscriptionsemailbillingfailedenabled,\n\t\tsubscriptionsemailcancelledenabledsms,\n\t\tsubscriptionsemailcancelledenabled,\n\t\tsubscriptionsemailmanagementenabledsms,\n\t\tsubscriptionsemailmanagementenabled,\n\t\tsubscriptionsemailupcomingbillingenabledsms,\n\t\tsubscriptionsemailupcomingbillingenabled,\n\t\tappstate,\n\t\tredemptionreminder,\n\t\trewardreceived,\n\t\tprogramstrategy,\n\t\trewardspackage,\n\t\tnewfont,\n\t\tnewcolor,\n\t\tonboardingversion,\n\t\twidgetversion,\n\t\ttemplatetype,\n\t\tislogoadded,\n\t\tisfromnameupdated,\n\t\tarrnumofdays,\n\t\tisenabledarr,\n\t\tretroactivesentnumofdays,\n\t\tautoinstallavailable,\n\t\tinstalledplatformname,\n\t\taddedstarrating,\n\t\tisautoinstalled,\n\t\tismainwidgetautoinstalledsuccessfully,\n\t\tisstarratingautoinstalledsuccessfully,\n\t\tsentemailinstructions,\n\t\tispointsreminder,\n\t\tisproductreview,\n\t\tisredemptionreminder,\n\t\tissubscriptionconfirmation,\n\t\tissubscriptionrenewalreminder,\n\t\tautoinstallmainwidgetavailable,\n\t\tautoinstallstarratingavailable\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__activation_step", "language": "sql", "refs": [], "sources": [["platform__segment", "activation_step"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__segment.activation_step"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.activation_step\n\n), platform_stg__activation_step AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tbillingproviders,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tisinvalidfacebooktoken,\n\t\tisinvalidtwittertoken,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpath,\n\t\tpendingrrs,\n\t\tphone,\n\t\tplanname,\n\t\tplatform,\n\t\tproduct,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstatus,\n\t\tstepname,\n\t\tstepnum,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttitle,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\turl,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\tisinvalidpinteresttoken,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tlastconversionordertime,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tpackageextensions,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tisskipped,\n\t\tnumofinstagramphotos,\n\t\tnumofmanualphotos,\n\t\tnumofreviewsphotos,\n\t\tnumoftotalphotos,\n\t\tisbuttonupdated,\n\t\tisspacingupdated,\n\t\tlayouttype,\n\t\tnumofrowitems,\n\t\tobjectposition,\n\t\tiscodecopy,\n\t\tisscriptcopy,\n\t\tplacementtype,\n\t\tadminusername,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tvugcpackage,\n\t\tloyaltypackage,\n\t\tplatformplan,\n\t\tstoreplatformdomain,\n\t\tos20,\n\t\tisdefaultupdated,\n\t\tisoptionsamountchanged,\n\t\toptionnum,\n\t\tsfchatused,\n\t\tismailpreviewed,\n\t\tissenderemailchanged,\n\t\tissendernamechanged,\n\t\tpaymentfailedenabled,\n\t\tsubscriptioncanceledenabled,\n\t\tsubscriptionpurchasedenabled,\n\t\tiscolorupdated,\n\t\tisfontadded,\n\t\tisfontupdated,\n\t\tisproductupdated,\n\t\tnoresultsareshown,\n\t\tispreviewstore,\n\t\twidgetlayout,\n\t\tisinternaluser,\n\t\tselectedindustry,\n\t\tselectedtemplate,\n\t\tisautopublishenabled,\n\t\tisdesignupdated,\n\t\tisbodyupdated,\n\t\tisdomainupdated,\n\t\tisenabledmap,\n\t\tisretroactivesend,\n\t\tissubjectupdated,\n\t\tnumofdays,\n\t\tendscenario,\n\t\tuseremail,\n\t\towner,\n\t\tsource,\n\t\tisabandonedcard,\n\t\tiscustomerwinback,\n\t\tispostpurchaseupsell,\n\t\tisshopify2,\n\t\tauth0userid,\n\t\tisabandonedcart,\n\t\tisdiscountincluded,\n\t\tiswidgetv3,\n\t\tismultipleproducts,\n\t\tissecondaryemailadded,\n\t\tstorehasklaviyopopup,\n\t\tsubscriptionsemailactivateenabledsms,\n\t\tsubscriptionsemailactivateenabled,\n\t\tsubscriptionsemailbillingfailedenabledsms,\n\t\tsubscriptionsemailbillingfailedenabled,\n\t\tsubscriptionsemailcancelledenabledsms,\n\t\tsubscriptionsemailcancelledenabled,\n\t\tsubscriptionsemailmanagementenabledsms,\n\t\tsubscriptionsemailmanagementenabled,\n\t\tsubscriptionsemailupcomingbillingenabledsms,\n\t\tsubscriptionsemailupcomingbillingenabled,\n\t\tappstate,\n\t\tredemptionreminder,\n\t\trewardreceived,\n\t\tprogramstrategy,\n\t\trewardspackage,\n\t\tnewfont,\n\t\tnewcolor,\n\t\tonboardingversion,\n\t\twidgetversion,\n\t\ttemplatetype,\n\t\tislogoadded,\n\t\tisfromnameupdated,\n\t\tarrnumofdays,\n\t\tisenabledarr,\n\t\tretroactivesentnumofdays,\n\t\tautoinstallavailable,\n\t\tinstalledplatformname,\n\t\taddedstarrating,\n\t\tisautoinstalled,\n\t\tismainwidgetautoinstalledsuccessfully,\n\t\tisstarratingautoinstalledsuccessfully,\n\t\tsentemailinstructions,\n\t\tispointsreminder,\n\t\tisproductreview,\n\t\tisredemptionreminder,\n\t\tissubscriptionconfirmation,\n\t\tissubscriptionrenewalreminder,\n\t\tautoinstallmainwidgetavailable,\n\t\tautoinstallstarratingavailable\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__activation_step", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__app_install_completed": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__app_install_completed", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.sql", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.sql", "unique_id": "model.yoda.platform_stg__app_install_completed", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__app_install_completed", "platform_stg__app_install_completed"], "alias": "platform_stg__app_install_completed", "checksum": {"name": "sha256", "checksum": "e02c879ab6252820d8da5bbd34b1c3ecb824b07bda6ee87277cc2d82dd9e7111"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isht": {"name": "isht", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actioncontext": {"name": "actioncontext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isadditionalaccount": {"name": "isadditionalaccount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isinternaluser": {"name": "isinternaluser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "productintent": {"name": "productintent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flowtype": {"name": "flowtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082681.6682718, "relation_name": "dev_dkruh1.platform_stg__app_install_completed", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__segment', 'app_install_completed') }}\n\n), platform_stg__app_install_completed AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tadminusername,\n\t\tappkey,\n\t\tisht,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyaltypackage,\n\t\torgid,\n\t\torgkey,\n\t\tplatform,\n\t\tproduct,\n\t\tsmsuserid,\n\t\tstoredomain,\n\t\tstoreid,\n\t\tuserid,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tvugcpackage,\n\t\tstoreplatformdomain,\n\t\tplatformplan,\n\t\tactioncontext,\n\t\tisadditionalaccount,\n\t\tisinternaluser,\n\t\tproductintent,\n\t\tcontext,\n\t\tuseremail,\n\t\tflowtype,\n\t\tpackagecategories,\n\t\tpackage\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__app_install_completed", "language": "sql", "refs": [], "sources": [["platform__segment", "app_install_completed"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__segment.app_install_completed"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.app_install_completed\n\n), platform_stg__app_install_completed AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tadminusername,\n\t\tappkey,\n\t\tisht,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyaltypackage,\n\t\torgid,\n\t\torgkey,\n\t\tplatform,\n\t\tproduct,\n\t\tsmsuserid,\n\t\tstoredomain,\n\t\tstoreid,\n\t\tuserid,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tvugcpackage,\n\t\tstoreplatformdomain,\n\t\tplatformplan,\n\t\tactioncontext,\n\t\tisadditionalaccount,\n\t\tisinternaluser,\n\t\tproductintent,\n\t\tcontext,\n\t\tuseremail,\n\t\tflowtype,\n\t\tpackagecategories,\n\t\tpackage\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__app_install_completed", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__app_uninstalled": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__app_uninstalled", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.sql", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.sql", "unique_id": "model.yoda.platform_stg__app_uninstalled", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__app_uninstalled", "platform_stg__app_uninstalled"], "alias": "platform_stg__app_uninstalled", "checksum": {"name": "sha256", "checksum": "aa0c9b3e6db7be813f5a460a714f3e8cf070d0ae8e090f99c20f28649f046c1c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isht": {"name": "isht", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isinternaluser": {"name": "isinternaluser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountappkey": {"name": "accountappkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appdevelopername": {"name": "appdevelopername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appid": {"name": "appid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appname": {"name": "appname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "planname": {"name": "planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082681.752251, "relation_name": "dev_dkruh1.platform_stg__app_uninstalled", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__segment', 'app_uninstalled') }}\n\n), platform_stg__app_uninstalled AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tadminusername,\n\t\tappkey,\n\t\tcategory,\n\t\tisht,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\tplatform,\n\t\tsmsuserid,\n\t\tstoredomain,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tuserid,\n\t\tplatformplan,\n\t\tproduct,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tloyaltypackage,\n\t\tvugcpackage,\n\t\tuseremail,\n\t\trrmonthlylimit,\n\t\taccountappkey,\n\t\taccountid,\n\t\tadminname,\n\t\tappdevelopername,\n\t\tappid,\n\t\tappname,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tlastconversionordertime,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpath,\n\t\tpendingrrs,\n\t\tplanname,\n\t\trole,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\ttitle,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\turl,\n\t\twebsite,\n\t\tyotpoip\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__app_uninstalled", "language": "sql", "refs": [], "sources": [["platform__segment", "app_uninstalled"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__segment.app_uninstalled"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.app_uninstalled\n\n), platform_stg__app_uninstalled AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tadminusername,\n\t\tappkey,\n\t\tcategory,\n\t\tisht,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\tplatform,\n\t\tsmsuserid,\n\t\tstoredomain,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tuserid,\n\t\tplatformplan,\n\t\tproduct,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tloyaltypackage,\n\t\tvugcpackage,\n\t\tuseremail,\n\t\trrmonthlylimit,\n\t\taccountappkey,\n\t\taccountid,\n\t\tadminname,\n\t\tappdevelopername,\n\t\tappid,\n\t\tappname,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tlastconversionordertime,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpath,\n\t\tpendingrrs,\n\t\tplanname,\n\t\trole,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\ttitle,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\turl,\n\t\twebsite,\n\t\tyotpoip\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__app_uninstalled", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__apps": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__apps", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__apps/platform_stg__apps.sql", "original_file_path": "models/platform/staging/base/platform_stg__apps/platform_stg__apps.sql", "unique_id": "model.yoda.platform_stg__apps", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__apps", "platform_stg__apps"], "alias": "platform_stg__apps", "checksum": {"name": "sha256", "checksum": "dc3d65d9dbb42ad0e2f1307c2af50c326f00ed2bec9daa9e9c4855cb4d14d743"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform_stg__apps", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "moderator_role_id": {"name": "moderator_role_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "disabled": {"name": "disabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__apps/platform_stg__apps.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082681.7786794, "relation_name": "dev_dkruh1.platform_stg__apps", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'apps') }}\n\n), platform_stg__apps AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\taccount_id,\n\t\tmoderator_role_id,\n\t\tdisabled\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__apps", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "apps"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.apps"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__apps/platform_stg__apps.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM yotpoapiprod.apps\n\n), platform_stg__apps AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\taccount_id,\n\t\tmoderator_role_id,\n\t\tdisabled\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__apps", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__attribute_sets": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__attribute_sets", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.sql", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.sql", "unique_id": "model.yoda.platform_stg__attribute_sets", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__attribute_sets", "platform_stg__attribute_sets"], "alias": "platform_stg__attribute_sets", "checksum": {"name": "sha256", "checksum": "89e2bf93cd3e9cd0ec757bb74261debf06109587f69e1c85df4e01c624f2d8fd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "attributable_type": {"name": "attributable_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attributable_id": {"name": "attributable_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mpn": {"name": "mpn", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "brand": {"name": "brand", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_sku": {"name": "external_sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082681.7994564, "relation_name": "dev_dkruh1.platform_stg__attribute_sets", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__products', 'attribute_sets') }}\n\n), platform_stg__attribute_sets AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tattributable_type,\n\t\tattributable_id,\n\t\tmpn,\n\t\tbrand,\n\t\tsku,\n\t\texternal_sku,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__attribute_sets", "language": "sql", "refs": [], "sources": [["platform__products", "attribute_sets"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__products.attribute_sets"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM products.attribute_sets\n\n), platform_stg__attribute_sets AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tattributable_type,\n\t\tattributable_id,\n\t\tmpn,\n\t\tbrand,\n\t\tsku,\n\t\texternal_sku,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__attribute_sets", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__b2b": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__b2b", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.sql", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.sql", "unique_id": "model.yoda.platform_stg__b2b", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__b2b", "platform_stg__b2b"], "alias": "platform_stg__b2b", "checksum": {"name": "sha256", "checksum": "daf371e1dfbeffd9fec65f3de6031151bf05152ee94e9075be67d025575c02cd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_first_time": {"name": "is_first_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "admin": {"name": "admin", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pagecategory": {"name": "pagecategory", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagetitle": {"name": "pagetitle", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uiversion": {"name": "uiversion", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctatype": {"name": "ctatype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "signupphone": {"name": "signupphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "errortext": {"name": "errortext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "failedreviews": {"name": "failedreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "importedreviews": {"name": "importedreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phasename": {"name": "phasename", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iscompleted": {"name": "iscompleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "tabname": {"name": "tabname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numoftasksdone": {"name": "numoftasksdone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dashboardmetricname": {"name": "dashboardmetricname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dashboardmetricvalue": {"name": "dashboardmetricvalue", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numberoftips": {"name": "numberoftips", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dashboardtipname": {"name": "dashboardtipname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth0userid": {"name": "auth0userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctacontext": {"name": "ctacontext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082681.8937788, "relation_name": "dev_dkruh1.platform_stg__b2b", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__segment', 'b2b') }}\n\n), platform_stg__b2b AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tcategory,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tis_first_time,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpath,\n\t\tphone,\n\t\tplatform,\n\t\trole,\n\t\tsignupmonthlyorderscount,\n\t\tsignuputmcampaign,\n\t\tstorecount,\n\t\ttitle,\n\t\ttraits_email,\n\t\ttraits_plan,\n\t\turl,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\tstoredomain,\n\t\ttraits_name,\n\t\trrmonthlylimit,\n\t\tadmin,\n\t\tpagecategory,\n\t\tpagetitle,\n\t\tplanname,\n\t\tsignupcountry,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tuiversion,\n\t\tctatype,\n\t\tpackageextensions,\n\t\tbillingproviders,\n\t\tsignupphone,\n\t\terrortext,\n\t\tisinvalidfacebooktoken,\n\t\tlastconversionordertime,\n\t\tpendingrrs,\n\t\tdaysinvalidfacebooktoken,\n\t\tdaysinvalidpinteresttoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidfacebooktokendate,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\tisinvalidtwittertokendate,\n\t\tisinvalidtwittertoken,\n\t\tfailedreviews,\n\t\timportedreviews,\n\t\tphasename,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tiscompleted,\n\t\ttabname,\n\t\tnumoftasksdone,\n\t\tdashboardmetricname,\n\t\tdashboardmetricvalue,\n\t\tnumberoftips,\n\t\tstatus,\n\t\tdashboardtipname,\n\t\tadminusername,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyaltypackage,\n\t\torgid,\n\t\torgkey,\n\t\tplatformplan,\n\t\treviewspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tvugcpackage,\n\t\tsmspackage,\n\t\tuseremail,\n\t\tauth0userid,\n\t\tctacontext\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__b2b", "language": "sql", "refs": [], "sources": [["platform__segment", "b2b"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__segment.b2b"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.b2b\n\n), platform_stg__b2b AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tcategory,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tis_first_time,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpath,\n\t\tphone,\n\t\tplatform,\n\t\trole,\n\t\tsignupmonthlyorderscount,\n\t\tsignuputmcampaign,\n\t\tstorecount,\n\t\ttitle,\n\t\ttraits_email,\n\t\ttraits_plan,\n\t\turl,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\tstoredomain,\n\t\ttraits_name,\n\t\trrmonthlylimit,\n\t\tadmin,\n\t\tpagecategory,\n\t\tpagetitle,\n\t\tplanname,\n\t\tsignupcountry,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tuiversion,\n\t\tctatype,\n\t\tpackageextensions,\n\t\tbillingproviders,\n\t\tsignupphone,\n\t\terrortext,\n\t\tisinvalidfacebooktoken,\n\t\tlastconversionordertime,\n\t\tpendingrrs,\n\t\tdaysinvalidfacebooktoken,\n\t\tdaysinvalidpinteresttoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidfacebooktokendate,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\tisinvalidtwittertokendate,\n\t\tisinvalidtwittertoken,\n\t\tfailedreviews,\n\t\timportedreviews,\n\t\tphasename,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tiscompleted,\n\t\ttabname,\n\t\tnumoftasksdone,\n\t\tdashboardmetricname,\n\t\tdashboardmetricvalue,\n\t\tnumberoftips,\n\t\tstatus,\n\t\tdashboardtipname,\n\t\tadminusername,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyaltypackage,\n\t\torgid,\n\t\torgkey,\n\t\tplatformplan,\n\t\treviewspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tvugcpackage,\n\t\tsmspackage,\n\t\tuseremail,\n\t\tauth0userid,\n\t\tctacontext\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__b2b", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__billing_audits": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__billing_audits", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.sql", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.sql", "unique_id": "model.yoda.platform_stg__billing_audits", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__billing_audits", "platform_stg__billing_audits"], "alias": "platform_stg__billing_audits", "checksum": {"name": "sha256", "checksum": "fd22b41dc4d88654c8aa0cf6c9d01d2705686ee5953224b63817b03731a3d09e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Audits to billing actions", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "upsolver_schema_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "audits_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts_ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "organization_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "category_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "action", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_provider_id": {"name": "subscription_provider_id", "description": "subscription_provider_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "date": {"name": "date", "description": "audits_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "source": {"name": "source", "description": "audits_source", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metadata": {"name": "metadata", "description": "audits_metadata", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082681.9248912, "relation_name": "dev_dkruh1.platform_stg__billing_audits", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'billing_audits') }}\n\n), platform_stg__billing_audits AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torganization_key,\n\t\tapp_key,\n\t\tcategory_name,\n\t\taction,\n\t\tsubscription_provider_id,\n\t\tdate,\n\t\tsource,\n\t\tmetadata\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__billing_audits", "language": "sql", "refs": [], "sources": [["platform__billing", "billing_audits"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.billing_audits"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.billing_audits\n\n), platform_stg__billing_audits AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torganization_key,\n\t\tapp_key,\n\t\tcategory_name,\n\t\taction,\n\t\tsubscription_provider_id,\n\t\tdate,\n\t\tsource,\n\t\tmetadata\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__billing_audits", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__categories": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__categories", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__categories/platform_stg__categories.sql", "original_file_path": "models/platform/staging/base/platform_stg__categories/platform_stg__categories.sql", "unique_id": "model.yoda.platform_stg__categories", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__categories", "platform_stg__categories"], "alias": "platform_stg__categories", "checksum": {"name": "sha256", "checksum": "2a884746d01b4c4ecdf620a785b781e8367aaa08cd201a1b7550fffab7d30c2f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "allow_multiple_packages": {"name": "allow_multiple_packages", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__categories/platform_stg__categories.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082681.9428403, "relation_name": "dev_dkruh1.platform_stg__categories", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__packages', 'categories') }}\n\n), platform_stg__categories AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tallow_multiple_packages\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__categories", "language": "sql", "refs": [], "sources": [["platform__packages", "categories"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__packages.categories"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__categories/platform_stg__categories.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM packages.categories\n\n), platform_stg__categories AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tallow_multiple_packages\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__categories", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__cdp_streaming_events": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__cdp_streaming_events", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.sql", "original_file_path": "models/platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.sql", "unique_id": "model.yoda.platform_stg__cdp_streaming_events", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__cdp_streaming_events", "platform_stg__cdp_streaming_events"], "alias": "platform_stg__cdp_streaming_events", "checksum": {"name": "sha256", "checksum": "7cb775e7954fc8ea7419d6cab4cda1b06d108791ac4b0fb67888eaa194a90771"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "singas", "created_by": "dcohen@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Platform singas CDP streaming events staging table", "columns": {"datetime": {"name": "datetime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "key": {"name": "key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mode": {"name": "mode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "topic": {"name": "topic", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "singas", "created_by": "dcohen@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "singas", "created_by": "dcohen@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082681.9595582, "relation_name": "dev_dkruh1.platform_stg__cdp_streaming_events", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__singas', 'cdp_streaming_events') }}\n\n), platform_stg__cdp_streaming_events AS (\n\n SELECT \n\t\tDATE(CAST(from_unixtime(timestamp / 1000) AS TIMESTAMP)) AS datetime,\n\t\t`timestamp`,\n\t\tkey,\n\t\tvalue,\n\t\tmode,\n\t\ttopic,\n\t\tdate\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__cdp_streaming_events", "language": "sql", "refs": [], "sources": [["platform__singas", "cdp_streaming_events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__singas.cdp_streaming_events"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM singas.cdp_streaming_events\n\n), platform_stg__cdp_streaming_events AS (\n\n SELECT \n\t\tDATE(CAST(from_unixtime(timestamp / 1000) AS TIMESTAMP)) AS datetime,\n\t\t`timestamp`,\n\t\tkey,\n\t\tvalue,\n\t\tmode,\n\t\ttopic,\n\t\tdate\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__cdp_streaming_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__currency_rates": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__currency_rates", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.sql", "original_file_path": "models/platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.sql", "unique_id": "model.yoda.platform_stg__currency_rates", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__currency_rates", "platform_stg__currency_rates"], "alias": "platform_stg__currency_rates", "checksum": {"name": "sha256", "checksum": "4f1a8c9b2e05207095fb783ff90ef8bfb23fbd7b995499ba70933918a4d11f80"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["contact-badgers"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform_stg__currency_rates", "columns": {"base": {"name": "base", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "day_of_currency_exchange": {"name": "day_of_currency_exchange", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["contact-badgers"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["contact-badgers"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082681.9755318, "relation_name": "dev_dkruh1.platform_stg__currency_rates", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('platform__default', 'currency_rates') }}\n\n), platform_stg__currency_rates AS (\n\n SELECT\n \t\tbase,\n \t\tday_of_currency_exchange,\n\t\tdate,\n\t\tcountry,\n\t\tcurrency\n\tFROM currency_rates\n\n)\n\nSELECT * \nFROM platform_stg__currency_rates", "language": "sql", "refs": [], "sources": [["platform__default", "currency_rates"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__default.currency_rates"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM default.currency_rates\n\n), platform_stg__currency_rates AS (\n\n SELECT\n \t\tbase,\n \t\tday_of_currency_exchange,\n\t\tdate,\n\t\tcountry,\n\t\tcurrency\n\tFROM currency_rates\n\n)\n\nSELECT * \nFROM platform_stg__currency_rates", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__custom_attributes": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__custom_attributes", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.sql", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.sql", "unique_id": "model.yoda.platform_stg__custom_attributes", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__custom_attributes", "platform_stg__custom_attributes"], "alias": "platform_stg__custom_attributes", "checksum": {"name": "sha256", "checksum": "048d9b732e59617c514a8a3c706967e64f87f759906041d4a0e68361c68d6b97"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"partitioning_time": {"name": "partitioning_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "attributable_id": {"name": "attributable_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "attributable_type": {"name": "attributable_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "boolean_value": {"name": "boolean_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "key": {"name": "key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "namespace": {"name": "namespace", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "string_value": {"name": "string_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "value_type": {"name": "value_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.004075, "relation_name": "dev_dkruh1.platform_stg__custom_attributes", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__products', 'custom_attributes') }}\n\n), platform_stg__custom_attributes AS (\n\n SELECT \n\t\tpartitioning_time,\n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tattributable_id,\n\t\tattributable_type,\n\t\tboolean_value,\n\t\tcreated_at,\n\t\tkey,\n\t\tnamespace,\n\t\tstring_value,\n\t\tupdated_at,\n\t\tvalue_type,\n\t\tts_ms\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__custom_attributes", "language": "sql", "refs": [], "sources": [["platform__products", "custom_attributes"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__products.custom_attributes"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM products.custom_attributes\n\n), platform_stg__custom_attributes AS (\n\n SELECT \n\t\tpartitioning_time,\n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tattributable_id,\n\t\tattributable_type,\n\t\tboolean_value,\n\t\tcreated_at,\n\t\tkey,\n\t\tnamespace,\n\t\tstring_value,\n\t\tupdated_at,\n\t\tvalue_type,\n\t\tts_ms\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__custom_attributes", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__customer_dataset": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__customer_dataset", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.sql", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.sql", "unique_id": "model.yoda.platform_stg__customer_dataset", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__customer_dataset", "platform_stg__customer_dataset"], "alias": "platform_stg__customer_dataset", "checksum": {"name": "sha256", "checksum": "39cd879a6cd4dd6e66b72fa550ce127d419f7c0ebf9c9f7d6bdce4d4f9838cf5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Shopper event data collected from product lines", "columns": {"profileId": {"name": "profileId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeId": {"name": "storeId", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lists": {"name": "lists", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "mergedWith": {"name": "mergedWith", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemProperties": {"name": "systemProperties", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct>>"}, "properties": {"name": "properties", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct,shipping:array>,birthdays:array,createdAt:timestamp,defaultCurrency:string,defaultLanguage:string,email:string,externalCreatedAt:timestamp,externalId:string,externalStatus:string,firstName:string,lastName:string,gender:string,phone:string,platform:string,platformCreatedAt:timestamp,platformCustomerId:string,platformId:string,platformName:string,platformStatus:string,referredByCustomer:boolean,status:string,... 9 more fields>"}, "orderUpdated": {"name": "orderUpdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array,billingAddress:struct>>>>"}, "smsSubscribed": {"name": "smsSubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>>>"}, "smsPartOfCampaign": {"name": "smsPartOfCampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>>>"}, "smsEngaged": {"name": "smsEngaged", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>>>"}, "smsUnsubscribed": {"name": "smsUnsubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>>>"}, "smsConverted": {"name": "smsConverted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>>>"}, "reviewCreated": {"name": "reviewCreated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array,content:string,reviewId:bigint,productId:bigint>>>>"}, "loyaltyCampaignStatusChanged": {"name": "loyaltyCampaignStatusChanged", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>>>>"}, "loyaltyPointsChanged": {"name": "loyaltyPointsChanged", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>>>"}, "loyaltyTierChanged": {"name": "loyaltyTierChanged", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>>>"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082682.028384, "relation_name": "dev_dkruh1.platform_stg__customer_dataset", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__data_science', 'customer_dataset_reduced') }}\n\n), platform_stg__customer_dataset AS (\n\n SELECT \n\t\tprofileId,\n\t\tstoreId,\n\t\tlists,\n\t\tmergedWith,\n\t\tsystemProperties,\n\t\tproperties,\n\t\tMAP_VALUES(orderUpdated) AS orderUpdated,\n\t\tMAP_VALUES(smsSubscribed) AS smsSubscribed,\n\t\tMAP_VALUES(smsPartOfCampaign) AS smsPartOfCampaign,\n\t\tMAP_VALUES(smsEngaged) AS smsEngaged,\n\t\tMAP_VALUES(smsUnsubscribed) AS smsUnsubscribed,\n\t\tMAP_VALUES(smsConverted) AS smsConverted,\n\t\tMAP_VALUES(reviewCreated) AS reviewCreated,\n\t\tMAP_VALUES(loyaltyCampaignStatusChanged) AS loyaltyCampaignStatusChanged,\n\t\tMAP_VALUES(loyaltyPointsChanged) AS loyaltyPointsChanged,\n\t\tMAP_VALUES(loyaltyTierChanged) AS loyaltyTierChanged\n FROM source\n\tWHERE mergedWith IS NULL\n\tAND SIZE(orderUpdated) > 0\n\n)\n\nSELECT * \nFROM platform_stg__customer_dataset", "language": "sql", "refs": [], "sources": [["platform__data_science", "customer_dataset_reduced"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__data_science.customer_dataset_reduced"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM data_science.customer_dataset_reduced\n\n), platform_stg__customer_dataset AS (\n\n SELECT \n\t\tprofileId,\n\t\tstoreId,\n\t\tlists,\n\t\tmergedWith,\n\t\tsystemProperties,\n\t\tproperties,\n\t\tMAP_VALUES(orderUpdated) AS orderUpdated,\n\t\tMAP_VALUES(smsSubscribed) AS smsSubscribed,\n\t\tMAP_VALUES(smsPartOfCampaign) AS smsPartOfCampaign,\n\t\tMAP_VALUES(smsEngaged) AS smsEngaged,\n\t\tMAP_VALUES(smsUnsubscribed) AS smsUnsubscribed,\n\t\tMAP_VALUES(smsConverted) AS smsConverted,\n\t\tMAP_VALUES(reviewCreated) AS reviewCreated,\n\t\tMAP_VALUES(loyaltyCampaignStatusChanged) AS loyaltyCampaignStatusChanged,\n\t\tMAP_VALUES(loyaltyPointsChanged) AS loyaltyPointsChanged,\n\t\tMAP_VALUES(loyaltyTierChanged) AS loyaltyTierChanged\n FROM source\n\tWHERE mergedWith IS NULL\n\tAND SIZE(orderUpdated) > 0\n\n)\n\nSELECT * \nFROM platform_stg__customer_dataset", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__customer_dataset_reduced": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__customer_dataset_reduced", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset_reduced/platform_stg__customer_dataset_reduced.sql", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset_reduced/platform_stg__customer_dataset_reduced.sql", "unique_id": "model.yoda.platform_stg__customer_dataset_reduced", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__customer_dataset_reduced", "platform_stg__customer_dataset_reduced"], "alias": "platform_stg__customer_dataset_reduced", "checksum": {"name": "sha256", "checksum": "ffc2a88894af0e2b0696377cabd018b8ac8840e42a7a3d4dc18175cf1c246b81"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__customer_dataset_reduced/platform_stg__customer_dataset_reduced.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082682.0394225, "relation_name": "dev_dkruh1.platform_stg__customer_dataset_reduced", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__data_science', 'customer_dataset_reduced') }}\n\n), platform_stg__customer_dataset AS (\n\n SELECT \n\t\tprofileId,\n\t\tstoreId,\n\t\tlists,\n\t\tmergedWith,\n\t\tsystemProperties,\n\t\tproperties,\n\t\tMAP_VALUES(orderUpdated) AS orderUpdated,\n\t\tMAP_VALUES(smsSubscribed) AS smsSubscribed,\n\t\tMAP_VALUES(smsPartOfCampaign) AS smsPartOfCampaign,\n\t\tMAP_VALUES(smsEngaged) AS smsEngaged,\n\t\tMAP_VALUES(smsUnsubscribed) AS smsUnsubscribed,\n\t\tMAP_VALUES(smsConverted) AS smsConverted,\n\t\tMAP_VALUES(reviewCreated) AS reviewCreated,\n\t\tMAP_VALUES(loyaltyCampaignStatusChanged) AS loyaltyCampaignStatusChanged,\n\t\tMAP_VALUES(loyaltyPointsChanged) AS loyaltyPointsChanged,\n\t\tMAP_VALUES(loyaltyTierChanged) AS loyaltyTierChanged\n FROM source\n\tWHERE mergedWith IS NULL\n\tAND SIZE(orderUpdated) > 0\n\t{% if target.name == 'dev' %}\n AND DATE(properties.updatedAt) >= DATE_SUB(CURRENT_DATE, 3)\n {% endif %}\n\n)\n\nSELECT * \nFROM platform_stg__customer_dataset", "language": "sql", "refs": [], "sources": [["platform__data_science", "customer_dataset_reduced"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__data_science.customer_dataset_reduced"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__customer_dataset_reduced/platform_stg__customer_dataset_reduced.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM data_science.customer_dataset_reduced\n\n), platform_stg__customer_dataset AS (\n\n SELECT \n\t\tprofileId,\n\t\tstoreId,\n\t\tlists,\n\t\tmergedWith,\n\t\tsystemProperties,\n\t\tproperties,\n\t\tMAP_VALUES(orderUpdated) AS orderUpdated,\n\t\tMAP_VALUES(smsSubscribed) AS smsSubscribed,\n\t\tMAP_VALUES(smsPartOfCampaign) AS smsPartOfCampaign,\n\t\tMAP_VALUES(smsEngaged) AS smsEngaged,\n\t\tMAP_VALUES(smsUnsubscribed) AS smsUnsubscribed,\n\t\tMAP_VALUES(smsConverted) AS smsConverted,\n\t\tMAP_VALUES(reviewCreated) AS reviewCreated,\n\t\tMAP_VALUES(loyaltyCampaignStatusChanged) AS loyaltyCampaignStatusChanged,\n\t\tMAP_VALUES(loyaltyPointsChanged) AS loyaltyPointsChanged,\n\t\tMAP_VALUES(loyaltyTierChanged) AS loyaltyTierChanged\n FROM source\n\tWHERE mergedWith IS NULL\n\tAND SIZE(orderUpdated) > 0\n\t\n AND DATE(properties.updatedAt) >= DATE_SUB(CURRENT_DATE, 3)\n \n\n)\n\nSELECT * \nFROM platform_stg__customer_dataset", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__dim_calendar": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__dim_calendar", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.sql", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.sql", "unique_id": "model.yoda.platform_stg__dim_calendar", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__dim_calendar", "platform_stg__dim_calendar"], "alias": "platform_stg__dim_calendar", "checksum": {"name": "sha256", "checksum": "d57c20e00acb95775ca2eb9ec33208c3201e0c98ff9190837ea25124dfa9a71d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "loyalty", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Contains all dates that any model can refer to", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "date": {"name": "date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "year": {"name": "year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "quarter": {"name": "quarter", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "week": {"name": "week", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day_name": {"name": "day_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month_name": {"name": "month_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "holiday_flag": {"name": "holiday_flag", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "weekend_flag": {"name": "weekend_flag", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "loyalty", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "loyalty", "team": "koalas", "created_by": "doron.kruh@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.0697975, "relation_name": "dev_dkruh1.platform_stg__dim_calendar", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__default', 'dim_calendar') }}\n\n), platform_stg__dim_calendar AS (\n\n SELECT \n\t\tid,\n\t\tdate,\n\t\tyear,\n\t\tmonth,\n\t\tday,\n\t\tquarter,\n\t\tweek,\n\t\tday_name,\n\t\tmonth_name,\n\t\tholiday_flag,\n\t\tweekend_flag\n FROM source\n\n)\n\nSELECT \n\tid,\n\tdate,\n\tyear,\n\tmonth,\n\tday,\n\tquarter,\n\tweek,\n\tday_name,\n\tmonth_name,\n\tholiday_flag,\n\tweekend_flag\nFROM platform_stg__dim_calendar", "language": "sql", "refs": [], "sources": [["platform__default", "dim_calendar"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__default.dim_calendar"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM default.dim_calendar\n\n), platform_stg__dim_calendar AS (\n\n SELECT \n\t\tid,\n\t\tdate,\n\t\tyear,\n\t\tmonth,\n\t\tday,\n\t\tquarter,\n\t\tweek,\n\t\tday_name,\n\t\tmonth_name,\n\t\tholiday_flag,\n\t\tweekend_flag\n FROM source\n\n)\n\nSELECT \n\tid,\n\tdate,\n\tyear,\n\tmonth,\n\tday,\n\tquarter,\n\tweek,\n\tday_name,\n\tmonth_name,\n\tholiday_flag,\n\tweekend_flag\nFROM platform_stg__dim_calendar", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__features": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__features", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.sql", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.sql", "unique_id": "model.yoda.platform_stg__features", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__features", "platform_stg__features"], "alias": "platform_stg__features", "checksum": {"name": "sha256", "checksum": "725efad4f315fb6ccf6a8dee27a32629ce6d18923c1638a67b23bbfd1b3d8607"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Tables written by yotpo R&D and serve the platform", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_type": {"name": "owner_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_user_enabled": {"name": "default_user_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new": {"name": "new", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "feature_key": {"name": "feature_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__features/platform_stg__features.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.0924904, "relation_name": "dev_dkruh1.platform_stg__features", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'features') }}\n\n), platform_stg__features AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tdescription,\n\t\towner_type,\n\t\tdefault_user_enabled,\n\t\tnew,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tfeature_key\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__features", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "features"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.features"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__features/platform_stg__features.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.features\n\n), platform_stg__features AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tdescription,\n\t\towner_type,\n\t\tdefault_user_enabled,\n\t\tnew,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tfeature_key\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__features", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__file_exported": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__file_exported", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.sql", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.sql", "unique_id": "model.yoda.platform_stg__file_exported", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__file_exported", "platform_stg__file_exported"], "alias": "platform_stg__file_exported", "checksum": {"name": "sha256", "checksum": "ea2f4bf7c91b8590a35f1e755603457a75767bf5b244b0e20a5c1528071e81ce"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "session_id": {"name": "session_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exportcontext": {"name": "exportcontext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exportgroup": {"name": "exportgroup", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fileurl": {"name": "fileurl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numofrows": {"name": "numofrows", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "totalrows": {"name": "totalrows", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "urldaystimeframe": {"name": "urldaystimeframe", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expirationperiodindays": {"name": "expirationperiodindays", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "exportformat": {"name": "exportformat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "failreason": {"name": "failreason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isempty": {"name": "isempty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isschedule": {"name": "isschedule", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reportname": {"name": "reportname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reporttype": {"name": "reporttype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyemail": {"name": "createdbyemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recipientemail": {"name": "recipientemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "frequency": {"name": "frequency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reporttimeframe": {"name": "reporttimeframe", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reportweekday": {"name": "reportweekday", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reportmonthday": {"name": "reportmonthday", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_duplicated_2": {"name": "is_duplicated_2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth0userid": {"name": "auth0userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dategranularity": {"name": "dategranularity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.1975338, "relation_name": "dev_dkruh1.platform_stg__file_exported", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__segment', 'file_exported') }}\n\n), platform_stg__file_exported AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tsession_id,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tappkey,\n\t\temail,\n\t\texportcontext,\n\t\texportgroup,\n\t\tfileurl,\n\t\tnumofrows,\n\t\tproduct,\n\t\tstate,\n\t\ttotalrows,\n\t\turldaystimeframe,\n\t\tuseremail,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tadminname,\n\t\tcreatedat,\n\t\tdaysinvalidfacebooktoken,\n\t\texpirationperiodindays,\n\t\tgroupid,\n\t\tisinvalidfacebooktokendate,\n\t\tisinvalidfacebooktoken,\n\t\tisinvalidtwittertoken,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpendingrrs,\n\t\tplanname,\n\t\tplatform,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tpackageextensions,\n\t\tlastconversionordertime,\n\t\tsignuputmsource,\n\t\tphone,\n\t\tsignupphone,\n\t\tsignuputmmedium,\n\t\tbillingproviders,\n\t\tsignupmonthlyorderscount,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\texportformat,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tfailreason,\n\t\tisempty,\n\t\tisschedule,\n\t\towner,\n\t\treportname,\n\t\treporttype,\n\t\tcreatedbyemail,\n\t\trecipientemail,\n\t\tfrequency,\n\t\treporttimeframe,\n\t\treportweekday,\n\t\treportmonthday,\n\t\tis_duplicated_2,\n\t\tadminusername,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyaltypackage,\n\t\torgid,\n\t\torgkey,\n\t\tpath,\n\t\tplatformplan,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\ttitle,\n\t\turl,\n\t\tvugcpackage,\n\t\tauth0userid,\n\t\tdategranularity\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__file_exported", "language": "sql", "refs": [], "sources": [["platform__segment", "file_exported"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__segment.file_exported"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.file_exported\n\n), platform_stg__file_exported AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tsession_id,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tappkey,\n\t\temail,\n\t\texportcontext,\n\t\texportgroup,\n\t\tfileurl,\n\t\tnumofrows,\n\t\tproduct,\n\t\tstate,\n\t\ttotalrows,\n\t\turldaystimeframe,\n\t\tuseremail,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tadminname,\n\t\tcreatedat,\n\t\tdaysinvalidfacebooktoken,\n\t\texpirationperiodindays,\n\t\tgroupid,\n\t\tisinvalidfacebooktokendate,\n\t\tisinvalidfacebooktoken,\n\t\tisinvalidtwittertoken,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpendingrrs,\n\t\tplanname,\n\t\tplatform,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tpackageextensions,\n\t\tlastconversionordertime,\n\t\tsignuputmsource,\n\t\tphone,\n\t\tsignupphone,\n\t\tsignuputmmedium,\n\t\tbillingproviders,\n\t\tsignupmonthlyorderscount,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\texportformat,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tfailreason,\n\t\tisempty,\n\t\tisschedule,\n\t\towner,\n\t\treportname,\n\t\treporttype,\n\t\tcreatedbyemail,\n\t\trecipientemail,\n\t\tfrequency,\n\t\treporttimeframe,\n\t\treportweekday,\n\t\treportmonthday,\n\t\tis_duplicated_2,\n\t\tadminusername,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyaltypackage,\n\t\torgid,\n\t\torgkey,\n\t\tpath,\n\t\tplatformplan,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\ttitle,\n\t\turl,\n\t\tvugcpackage,\n\t\tauth0userid,\n\t\tdategranularity\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__file_exported", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__fulfillments": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__fulfillments", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.sql", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.sql", "unique_id": "model.yoda.platform_stg__fulfillments", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__fulfillments", "platform_stg__fulfillments"], "alias": "platform_stg__fulfillments", "checksum": {"name": "sha256", "checksum": "5e7cbfa4e20725bafe8d7a58da931e71613528d560641550aafb597389479a39"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["contact-badgers"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform_stg__fulfillments", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_id": {"name": "external_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "fulfillment_at": {"name": "fulfillment_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "fulfillment_date": {"name": "fulfillment_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "fulfillment_status_type_id": {"name": "fulfillment_status_type_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shipment_status_type_id": {"name": "shipment_status_type_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tracking_company": {"name": "tracking_company", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tracking_url": {"name": "tracking_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tracking_number": {"name": "tracking_number", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["contact-badgers"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["contact-badgers"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082682.2184217, "relation_name": "dev_dkruh1.platform_stg__fulfillments", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('platform__orders', 'fulfillments') }}\n\n), platform_stg__fulfillments AS (\n\n SELECT \n\t\tid,\n\t\texternal_id,\n\t\torder_id,\n\t\tfulfillment_date AS fulfillment_at,\n\t\tDATE(fulfillment_date) AS fulfillment_date,\n\t\tfulfillment_status_type_id,\n\t\tshipment_status_type_id,\n\t\ttracking_company,\n\t\ttracking_url,\n\t\ttracking_number,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__fulfillments", "language": "sql", "refs": [], "sources": [["platform__orders", "fulfillments"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__orders.fulfillments"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM orders.fulfillments\n\n), platform_stg__fulfillments AS (\n\n SELECT \n\t\tid,\n\t\texternal_id,\n\t\torder_id,\n\t\tfulfillment_date AS fulfillment_at,\n\t\tDATE(fulfillment_date) AS fulfillment_date,\n\t\tfulfillment_status_type_id,\n\t\tshipment_status_type_id,\n\t\ttracking_company,\n\t\ttracking_url,\n\t\ttracking_number,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__fulfillments", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__groups": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__groups", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__groups/platform_stg__groups.sql", "original_file_path": "models/platform/staging/base/platform_stg__groups/platform_stg__groups.sql", "unique_id": "model.yoda.platform_stg__groups", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__groups", "platform_stg__groups"], "alias": "platform_stg__groups", "checksum": {"name": "sha256", "checksum": "06a33318a25cd48dac3cc3c0d1850636348fa5e3d4cf9d75f4a22b57392b1f3a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__groups/platform_stg__groups.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.2476356, "relation_name": "dev_dkruh1.platform_stg__groups", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__products', 'groups') }}\n\n), platform_stg__groups AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__groups", "language": "sql", "refs": [], "sources": [["platform__products", "groups"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__products.groups"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__groups/platform_stg__groups.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM products.groups\n\n), platform_stg__groups AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__groups", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__gtins": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__gtins", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.sql", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.sql", "unique_id": "model.yoda.platform_stg__gtins", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__gtins", "platform_stg__gtins"], "alias": "platform_stg__gtins", "checksum": {"name": "sha256", "checksum": "ad6f6931d653c859e8ff60fd6cdd4fd5bf9f17ae527401c822059d08d677907d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "gtinable_type": {"name": "gtinable_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gtinable_id": {"name": "gtinable_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "declared_type": {"name": "declared_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "detected_type": {"name": "detected_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.2666361, "relation_name": "dev_dkruh1.platform_stg__gtins", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__products', 'gtins') }}\n\n), platform_stg__gtins AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tgtinable_type,\n\t\tgtinable_id,\n\t\tdeclared_type,\n\t\tdetected_type,\n\t\tvalue,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__gtins", "language": "sql", "refs": [], "sources": [["platform__products", "gtins"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__products.gtins"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM products.gtins\n\n), platform_stg__gtins AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tgtinable_type,\n\t\tgtinable_id,\n\t\tdeclared_type,\n\t\tdetected_type,\n\t\tvalue,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__gtins", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__limit_reached": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__limit_reached", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.sql", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.sql", "unique_id": "model.yoda.platform_stg__limit_reached", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__limit_reached", "platform_stg__limit_reached"], "alias": "platform_stg__limit_reached", "checksum": {"name": "sha256", "checksum": "a881901f4329a6730e35249fc8fa7437c314d5630729ea399448e2b59c4d7503"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "actualcount": {"name": "actualcount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cap": {"name": "cap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gap": {"name": "gap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "limittype": {"name": "limittype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pctreached": {"name": "pctreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pendingrrs": {"name": "pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "chargeid": {"name": "chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "path": {"name": "path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "useremail": {"name": "useremail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isht": {"name": "isht", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "auth0userid": {"name": "auth0userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082682.3520427, "relation_name": "dev_dkruh1.platform_stg__limit_reached", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__segment', 'limit_reached') }}\n\n), row_ranking_for_event AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tactualcount,\n\t\tadminname,\n\t\tappkey,\n\t\tcap,\n\t\tcreatedat,\n\t\temail,\n\t\tgap,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tlastconversionordertime,\n\t\tlimittype,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpctreached,\n\t\tpendingrrs,\n\t\tphone,\n\t\tplanname,\n\t\tplatform,\n\t\tproduct,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tbillingproviders,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tsubscriptionstate,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidfacebooktoken,\n\t\tisinvalidtwittertokendate,\n\t\tisinvalidtwittertoken,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tpackageextensions,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\tpath,\n\t\ttitle,\n\t\turl,\n\t\tyotpoip,\n\t\tadminusername,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyaltypackage,\n\t\torgid,\n\t\torgkey,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tvugcpackage,\n\t\tisinternaluser,\n\t\tuseremail,\n\t\tplatformplan,\n\t\tisht,\n\t\tauth0userid,\n\t\tROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\n FROM source\n\n),\n\nplatform_stg__limit_reached AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tactualcount,\n\t\tadminname,\n\t\tappkey,\n\t\tcap,\n\t\tcreatedat,\n\t\temail,\n\t\tgap,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tlastconversionordertime,\n\t\tlimittype,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpctreached,\n\t\tpendingrrs,\n\t\tphone,\n\t\tplanname,\n\t\tplatform,\n\t\tproduct,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tbillingproviders,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tsubscriptionstate,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidfacebooktoken,\n\t\tisinvalidtwittertokendate,\n\t\tisinvalidtwittertoken,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tpackageextensions,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\tpath,\n\t\ttitle,\n\t\turl,\n\t\tyotpoip,\n\t\tadminusername,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyaltypackage,\n\t\torgid,\n\t\torgkey,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tvugcpackage,\n\t\tisinternaluser,\n\t\tuseremail,\n\t\tplatformplan,\n\t\tisht,\n\t\tauth0userid\n FROM row_ranking_for_event\n\tWHERE NOT (message_id IN ('4ef35218-c4d1-43ec-bd9d-024ad2e6bd8b',\n\t\t\t\t\t\t\t '7e773c0a-4e38-4a7e-8f15-fbf942c351a0',\n\t\t\t\t\t\t\t '8e008d10-5cc6-4bcb-8c17-e2dff02cc880',\n\t\t\t\t\t\t\t 'cc225b6a-5d48-404f-8590-0992402a0052',\n\t\t\t\t\t\t\t '495ad722-03fb-4c89-a3a6-748415d4640f') AND event_row_ranking > 1)\n)\n\nSELECT * \nFROM platform_stg__limit_reached", "language": "sql", "refs": [], "sources": [["platform__segment", "limit_reached"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__segment.limit_reached"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.limit_reached\n\n), row_ranking_for_event AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tactualcount,\n\t\tadminname,\n\t\tappkey,\n\t\tcap,\n\t\tcreatedat,\n\t\temail,\n\t\tgap,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tlastconversionordertime,\n\t\tlimittype,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpctreached,\n\t\tpendingrrs,\n\t\tphone,\n\t\tplanname,\n\t\tplatform,\n\t\tproduct,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tbillingproviders,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tsubscriptionstate,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidfacebooktoken,\n\t\tisinvalidtwittertokendate,\n\t\tisinvalidtwittertoken,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tpackageextensions,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\tpath,\n\t\ttitle,\n\t\turl,\n\t\tyotpoip,\n\t\tadminusername,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyaltypackage,\n\t\torgid,\n\t\torgkey,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tvugcpackage,\n\t\tisinternaluser,\n\t\tuseremail,\n\t\tplatformplan,\n\t\tisht,\n\t\tauth0userid,\n\t\tROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\n FROM source\n\n),\n\nplatform_stg__limit_reached AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tactualcount,\n\t\tadminname,\n\t\tappkey,\n\t\tcap,\n\t\tcreatedat,\n\t\temail,\n\t\tgap,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tlastconversionordertime,\n\t\tlimittype,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tpctreached,\n\t\tpendingrrs,\n\t\tphone,\n\t\tplanname,\n\t\tplatform,\n\t\tproduct,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tbillingproviders,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tsubscriptionstate,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidfacebooktoken,\n\t\tisinvalidtwittertokendate,\n\t\tisinvalidtwittertoken,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tpackageextensions,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\tpath,\n\t\ttitle,\n\t\turl,\n\t\tyotpoip,\n\t\tadminusername,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyaltypackage,\n\t\torgid,\n\t\torgkey,\n\t\treviewspackage,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tvugcpackage,\n\t\tisinternaluser,\n\t\tuseremail,\n\t\tplatformplan,\n\t\tisht,\n\t\tauth0userid\n FROM row_ranking_for_event\n\tWHERE NOT (message_id IN ('4ef35218-c4d1-43ec-bd9d-024ad2e6bd8b',\n\t\t\t\t\t\t\t '7e773c0a-4e38-4a7e-8f15-fbf942c351a0',\n\t\t\t\t\t\t\t '8e008d10-5cc6-4bcb-8c17-e2dff02cc880',\n\t\t\t\t\t\t\t 'cc225b6a-5d48-404f-8590-0992402a0052',\n\t\t\t\t\t\t\t '495ad722-03fb-4c89-a3a6-748415d4640f') AND event_row_ranking > 1)\n)\n\nSELECT * \nFROM platform_stg__limit_reached", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__onboarding": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__onboarding", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.sql", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.sql", "unique_id": "model.yoda.platform_stg__onboarding", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__onboarding", "platform_stg__onboarding"], "alias": "platform_stg__onboarding", "checksum": {"name": "sha256", "checksum": "a31a02927df75139d632956a0ec38e5e3243fd1048361d28e815c9006f5bb484"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_rrmonthlylimit": {"name": "analytics_data_rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_rrssentinbillingcycle": {"name": "analytics_data_rrssentinbillingcycle", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_accountid": {"name": "analytics_data_accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_adminname": {"name": "analytics_data_adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_appkey": {"name": "analytics_data_appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_billingprovider": {"name": "analytics_data_billingprovider", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_createdat": {"name": "analytics_data_createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_email": {"name": "analytics_data_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_groupid": {"name": "analytics_data_groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_intercomuserhash": {"name": "analytics_data_intercomuserhash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_isautopublishenabled": {"name": "analytics_data_isautopublishenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledcoupons": {"name": "analytics_data_isenabledcoupons", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledcustomreviews": {"name": "analytics_data_isenabledcustomreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledgsr": {"name": "analytics_data_isenabledgsr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledmap": {"name": "analytics_data_isenabledmap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledpla": {"name": "analytics_data_isenabledpla", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledpromotedproductsemail": {"name": "analytics_data_isenabledpromotedproductsemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledpromotedproductswidget": {"name": "analytics_data_isenabledpromotedproductswidget", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledqna": {"name": "analytics_data_isenabledqna", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledrichsnippets": {"name": "analytics_data_isenabledrichsnippets", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasbadge": {"name": "analytics_data_ishasbadge", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishascomments": {"name": "analytics_data_ishascomments", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasconverttositereview": {"name": "analytics_data_ishasconverttositereview", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishascoupons": {"name": "analytics_data_ishascoupons", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishascsseditor": {"name": "analytics_data_ishascsseditor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishascustomreviews": {"name": "analytics_data_ishascustomreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasdedicatedpage": {"name": "analytics_data_ishasdedicatedpage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasgsr": {"name": "analytics_data_ishasgsr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasnewmainwidgetlayout": {"name": "analytics_data_ishasnewmainwidgetlayout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishaspla": {"name": "analytics_data_ishaspla", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishaspromotedproductsemail": {"name": "analytics_data_ishaspromotedproductsemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishaspromotedproductswidget": {"name": "analytics_data_ishaspromotedproductswidget", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasqna": {"name": "analytics_data_ishasqna", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasreviewscarousel": {"name": "analytics_data_ishasreviewscarousel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasreviewstab": {"name": "analytics_data_ishasreviewstab", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasrichsnippets": {"name": "analytics_data_ishasrichsnippets", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassentmai": {"name": "analytics_data_ishassentmai", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassentmas": {"name": "analytics_data_ishassentmas", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassentmap": {"name": "analytics_data_ishassentmap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassentsitereminder": {"name": "analytics_data_ishassentsitereminder", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassenttpr": {"name": "analytics_data_ishassenttpr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassenttsr": {"name": "analytics_data_ishassenttsr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasshoppableinstagram": {"name": "analytics_data_ishasshoppableinstagram", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassocialpush": {"name": "analytics_data_ishassocialpush", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasstarrating": {"name": "analytics_data_ishasstarrating", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishastpr": {"name": "analytics_data_ishastpr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishastsr": {"name": "analytics_data_ishastsr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isinvalidfacebooktoken": {"name": "analytics_data_isinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_ismapcustomfieldsenabled": {"name": "analytics_data_ismapcustomfieldsenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isnewslettersubscribed": {"name": "analytics_data_isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isreceivesentimentnotification": {"name": "analytics_data_isreceivesentimentnotification", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isreviewswidgetinstalled": {"name": "analytics_data_isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_issystemnotificationssubscribed": {"name": "analytics_data_issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isuserscountlimitreached": {"name": "analytics_data_isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isusingpackagesservice": {"name": "analytics_data_isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_name": {"name": "analytics_data_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_packagecategories": {"name": "analytics_data_packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_package": {"name": "analytics_data_package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_planname": {"name": "analytics_data_planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_platform": {"name": "analytics_data_platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_role": {"name": "analytics_data_role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signupcountry": {"name": "analytics_data_signupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signuputmcampaign": {"name": "analytics_data_signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signuputmmedium": {"name": "analytics_data_signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signuputmsource": {"name": "analytics_data_signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_storecount": {"name": "analytics_data_storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_traits_email": {"name": "analytics_data_traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_traits_name": {"name": "analytics_data_traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_traits_plan": {"name": "analytics_data_traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_userid": {"name": "analytics_data_userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_website": {"name": "analytics_data_website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_yotpoip": {"name": "analytics_data_yotpoip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_yotpoproductscorev2": {"name": "analytics_data_yotpoproductscorev2", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "category": {"name": "category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phasename": {"name": "phasename", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phase": {"name": "phase", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_daysinvalidfacebooktoken": {"name": "analytics_data_daysinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_isinvalidfacebooktokendate": {"name": "analytics_data_isinvalidfacebooktokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signupmonthlyorderscount": {"name": "analytics_data_signupmonthlyorderscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_chargeid": {"name": "analytics_data_chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_chargeprice": {"name": "analytics_data_chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_nextchargedate": {"name": "analytics_data_nextchargedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_subscriptionstate": {"name": "analytics_data_subscriptionstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_chargifybalance": {"name": "analytics_data_chargifybalance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_chargifyrevenue": {"name": "analytics_data_chargifyrevenue", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_daysindunning": {"name": "analytics_data_daysindunning", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_daystorenewal": {"name": "analytics_data_daystorenewal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_isinvalidpinteresttoken": {"name": "analytics_data_isinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_isinvalidtwittertoken": {"name": "analytics_data_isinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_lastconversionordertime": {"name": "analytics_data_lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_paysvia": {"name": "analytics_data_paysvia", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_pixelversion": {"name": "analytics_data_pixelversion", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_recurringpaymentinterval": {"name": "analytics_data_recurringpaymentinterval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_renewaldate": {"name": "analytics_data_renewaldate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagecategory": {"name": "pagecategory", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_phone": {"name": "analytics_data_phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signupphone": {"name": "analytics_data_signupphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_daysinvalidpinteresttoken": {"name": "analytics_data_daysinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_isinvalidpinteresttokendate": {"name": "analytics_data_isinvalidpinteresttokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_packageextensions": {"name": "analytics_data_packageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_yotpoproductscore": {"name": "analytics_data_yotpoproductscore", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_pendingrrs": {"name": "analytics_data_pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_creditcardtype": {"name": "analytics_data_creditcardtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_nameoncreditcard": {"name": "analytics_data_nameoncreditcard", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_creditcardlast4digits": {"name": "analytics_data_creditcardlast4digits", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_daysinvalidtwittertoken": {"name": "analytics_data_daysinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_isinvalidtwittertokendate": {"name": "analytics_data_isinvalidtwittertokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_billingproviders": {"name": "analytics_data_billingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "traits_email": {"name": "traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value1": {"name": "value1", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "value2": {"name": "value2", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "value3": {"name": "value3", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "packageextensions": {"name": "packageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billingproviders": {"name": "billingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "ctatext": {"name": "ctatext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isautopublishenabled": {"name": "isautopublishenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isbodyupdated": {"name": "isbodyupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledmap": {"name": "isenabledmap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isprimarycolorupdated": {"name": "isprimarycolorupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ispullpastordersenabled": {"name": "ispullpastordersenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issignatureupdated": {"name": "issignatureupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isstarscolorupdated": {"name": "isstarscolorupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issubjectupdated": {"name": "issubjectupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "iswidgetfontupdated": {"name": "iswidgetfontupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numberorders": {"name": "numberorders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pendingrrs": {"name": "pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeid": {"name": "chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isreferralsselected": {"name": "isreferralsselected", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "accountselectedpoints": {"name": "accountselectedpoints", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "birthdayselectedpoints": {"name": "birthdayselectedpoints", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchaseselectedpoints": {"name": "purchaseselectedpoints", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customerpoints": {"name": "customerpoints", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "frienddiscount": {"name": "frienddiscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "iscustomertabclicked": {"name": "iscustomertabclicked", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isfriendtabclicked": {"name": "isfriendtabclicked", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "numofpoints": {"name": "numofpoints", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issecondarycolorupdated": {"name": "issecondarycolorupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "istabpositionupdated": {"name": "istabpositionupdated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_storedomain": {"name": "analytics_data_storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctaname": {"name": "ctaname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iscopycode": {"name": "iscopycode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issendcode": {"name": "issendcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os20": {"name": "os20", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082682.5525312, "relation_name": "dev_dkruh1.platform_stg__onboarding", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__segment', 'onboarding') }}\n\n), platform_stg__onboarding AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tanalytics_data_rrmonthlylimit,\n\t\tanalytics_data_rrssentinbillingcycle,\n\t\tanalytics_data_accountid,\n\t\tanalytics_data_adminname,\n\t\tanalytics_data_appkey,\n\t\tanalytics_data_billingprovider,\n\t\tanalytics_data_createdat,\n\t\tanalytics_data_email,\n\t\tanalytics_data_groupid,\n\t\tanalytics_data_intercomuserhash,\n\t\tanalytics_data_isautopublishenabled,\n\t\tanalytics_data_isenabledcoupons,\n\t\tanalytics_data_isenabledcustomreviews,\n\t\tanalytics_data_isenabledgsr,\n\t\tanalytics_data_isenabledmap,\n\t\tanalytics_data_isenabledpla,\n\t\tanalytics_data_isenabledpromotedproductsemail,\n\t\tanalytics_data_isenabledpromotedproductswidget,\n\t\tanalytics_data_isenabledqna,\n\t\tanalytics_data_isenabledrichsnippets,\n\t\tanalytics_data_ishasbadge,\n\t\tanalytics_data_ishascomments,\n\t\tanalytics_data_ishasconverttositereview,\n\t\tanalytics_data_ishascoupons,\n\t\tanalytics_data_ishascsseditor,\n\t\tanalytics_data_ishascustomreviews,\n\t\tanalytics_data_ishasdedicatedpage,\n\t\tanalytics_data_ishasgsr,\n\t\tanalytics_data_ishasnewmainwidgetlayout,\n\t\tanalytics_data_ishaspla,\n\t\tanalytics_data_ishaspromotedproductsemail,\n\t\tanalytics_data_ishaspromotedproductswidget,\n\t\tanalytics_data_ishasqna,\n\t\tanalytics_data_ishasreviewscarousel,\n\t\tanalytics_data_ishasreviewstab,\n\t\tanalytics_data_ishasrichsnippets,\n\t\tanalytics_data_ishassentmai,\n\t\tanalytics_data_ishassentmas,\n\t\tanalytics_data_ishassentmap,\n\t\tanalytics_data_ishassentsitereminder,\n\t\tanalytics_data_ishassenttpr,\n\t\tanalytics_data_ishassenttsr,\n\t\tanalytics_data_ishasshoppableinstagram,\n\t\tanalytics_data_ishassocialpush,\n\t\tanalytics_data_ishasstarrating,\n\t\tanalytics_data_ishastpr,\n\t\tanalytics_data_ishastsr,\n\t\tanalytics_data_isinvalidfacebooktoken,\n\t\tanalytics_data_ismapcustomfieldsenabled,\n\t\tanalytics_data_isnewslettersubscribed,\n\t\tanalytics_data_isreceivesentimentnotification,\n\t\tanalytics_data_isreviewswidgetinstalled,\n\t\tanalytics_data_issystemnotificationssubscribed,\n\t\tanalytics_data_isuserscountlimitreached,\n\t\tanalytics_data_isusingpackagesservice,\n\t\tanalytics_data_name,\n\t\tanalytics_data_packagecategories,\n\t\tanalytics_data_package,\n\t\tanalytics_data_planname,\n\t\tanalytics_data_platform,\n\t\tanalytics_data_role,\n\t\tanalytics_data_signupcountry,\n\t\tanalytics_data_signuputmcampaign,\n\t\tanalytics_data_signuputmmedium,\n\t\tanalytics_data_signuputmsource,\n\t\tanalytics_data_storecount,\n\t\tanalytics_data_traits_email,\n\t\tanalytics_data_traits_name,\n\t\tanalytics_data_traits_plan,\n\t\tanalytics_data_userid,\n\t\tanalytics_data_website,\n\t\tanalytics_data_yotpoip,\n\t\tanalytics_data_yotpoproductscorev2,\n\t\tcategory,\n\t\tpath,\n\t\tphasename,\n\t\tphase,\n\t\tstatus,\n\t\ttitle,\n\t\turl,\n\t\tanalytics_data_daysinvalidfacebooktoken,\n\t\tanalytics_data_isinvalidfacebooktokendate,\n\t\tanalytics_data_signupmonthlyorderscount,\n\t\tanalytics_data_chargeid,\n\t\tanalytics_data_chargeprice,\n\t\tanalytics_data_nextchargedate,\n\t\tanalytics_data_subscriptionstate,\n\t\tanalytics_data_chargifybalance,\n\t\tanalytics_data_chargifyrevenue,\n\t\tanalytics_data_daysindunning,\n\t\tanalytics_data_daystorenewal,\n\t\tanalytics_data_isinvalidpinteresttoken,\n\t\tanalytics_data_isinvalidtwittertoken,\n\t\tanalytics_data_lastconversionordertime,\n\t\tanalytics_data_paysvia,\n\t\tanalytics_data_pixelversion,\n\t\tanalytics_data_recurringpaymentinterval,\n\t\tanalytics_data_renewaldate,\n\t\tpagecategory,\n\t\tanalytics_data_phone,\n\t\tanalytics_data_signupphone,\n\t\tanalytics_data_daysinvalidpinteresttoken,\n\t\tanalytics_data_isinvalidpinteresttokendate,\n\t\tanalytics_data_packageextensions,\n\t\tanalytics_data_yotpoproductscore,\n\t\tanalytics_data_pendingrrs,\n\t\tanalytics_data_creditcardtype,\n\t\tanalytics_data_nameoncreditcard,\n\t\tanalytics_data_creditcardlast4digits,\n\t\tanalytics_data_daysinvalidtwittertoken,\n\t\tanalytics_data_isinvalidtwittertokendate,\n\t\tanalytics_data_billingproviders,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tplatform,\n\t\trole,\n\t\tstorecount,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\tvalue1,\n\t\tvalue2,\n\t\tvalue3,\n\t\tpackageextensions,\n\t\trrmonthlylimit,\n\t\tbillingproviders,\n\t\tctatext,\n\t\tisautopublishenabled,\n\t\tisbodyupdated,\n\t\tisenabledmap,\n\t\tisprimarycolorupdated,\n\t\tispullpastordersenabled,\n\t\tissignatureupdated,\n\t\tisstarscolorupdated,\n\t\tissubjectupdated,\n\t\tiswidgetfontupdated,\n\t\tlastconversionordertime,\n\t\tnumberorders,\n\t\tphone,\n\t\tplanname,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tsignupcountry,\n\t\tisinvalidfacebooktoken,\n\t\tpendingrrs,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tisinvalidtwittertoken,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tisreferralsselected,\n\t\taccountselectedpoints,\n\t\tbirthdayselectedpoints,\n\t\tpurchaseselectedpoints,\n\t\tcustomerpoints,\n\t\tfrienddiscount,\n\t\tiscustomertabclicked,\n\t\tisfriendtabclicked,\n\t\tnumofpoints,\n\t\tissecondarycolorupdated,\n\t\tistabpositionupdated,\n\t\tstoredomain,\n\t\tanalytics_data_storedomain,\n\t\tctaname,\n\t\tiscopycode,\n\t\tissendcode,\n\t\tadminusername,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\treviewspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tvugcpackage,\n\t\tloyaltypackage,\n\t\tsmspackage,\n\t\tplatformplan,\n\t\tstoreplatformdomain,\n\t\tos20\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__onboarding", "language": "sql", "refs": [], "sources": [["platform__segment", "onboarding"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__segment.onboarding"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.onboarding\n\n), platform_stg__onboarding AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tanalytics_data_rrmonthlylimit,\n\t\tanalytics_data_rrssentinbillingcycle,\n\t\tanalytics_data_accountid,\n\t\tanalytics_data_adminname,\n\t\tanalytics_data_appkey,\n\t\tanalytics_data_billingprovider,\n\t\tanalytics_data_createdat,\n\t\tanalytics_data_email,\n\t\tanalytics_data_groupid,\n\t\tanalytics_data_intercomuserhash,\n\t\tanalytics_data_isautopublishenabled,\n\t\tanalytics_data_isenabledcoupons,\n\t\tanalytics_data_isenabledcustomreviews,\n\t\tanalytics_data_isenabledgsr,\n\t\tanalytics_data_isenabledmap,\n\t\tanalytics_data_isenabledpla,\n\t\tanalytics_data_isenabledpromotedproductsemail,\n\t\tanalytics_data_isenabledpromotedproductswidget,\n\t\tanalytics_data_isenabledqna,\n\t\tanalytics_data_isenabledrichsnippets,\n\t\tanalytics_data_ishasbadge,\n\t\tanalytics_data_ishascomments,\n\t\tanalytics_data_ishasconverttositereview,\n\t\tanalytics_data_ishascoupons,\n\t\tanalytics_data_ishascsseditor,\n\t\tanalytics_data_ishascustomreviews,\n\t\tanalytics_data_ishasdedicatedpage,\n\t\tanalytics_data_ishasgsr,\n\t\tanalytics_data_ishasnewmainwidgetlayout,\n\t\tanalytics_data_ishaspla,\n\t\tanalytics_data_ishaspromotedproductsemail,\n\t\tanalytics_data_ishaspromotedproductswidget,\n\t\tanalytics_data_ishasqna,\n\t\tanalytics_data_ishasreviewscarousel,\n\t\tanalytics_data_ishasreviewstab,\n\t\tanalytics_data_ishasrichsnippets,\n\t\tanalytics_data_ishassentmai,\n\t\tanalytics_data_ishassentmas,\n\t\tanalytics_data_ishassentmap,\n\t\tanalytics_data_ishassentsitereminder,\n\t\tanalytics_data_ishassenttpr,\n\t\tanalytics_data_ishassenttsr,\n\t\tanalytics_data_ishasshoppableinstagram,\n\t\tanalytics_data_ishassocialpush,\n\t\tanalytics_data_ishasstarrating,\n\t\tanalytics_data_ishastpr,\n\t\tanalytics_data_ishastsr,\n\t\tanalytics_data_isinvalidfacebooktoken,\n\t\tanalytics_data_ismapcustomfieldsenabled,\n\t\tanalytics_data_isnewslettersubscribed,\n\t\tanalytics_data_isreceivesentimentnotification,\n\t\tanalytics_data_isreviewswidgetinstalled,\n\t\tanalytics_data_issystemnotificationssubscribed,\n\t\tanalytics_data_isuserscountlimitreached,\n\t\tanalytics_data_isusingpackagesservice,\n\t\tanalytics_data_name,\n\t\tanalytics_data_packagecategories,\n\t\tanalytics_data_package,\n\t\tanalytics_data_planname,\n\t\tanalytics_data_platform,\n\t\tanalytics_data_role,\n\t\tanalytics_data_signupcountry,\n\t\tanalytics_data_signuputmcampaign,\n\t\tanalytics_data_signuputmmedium,\n\t\tanalytics_data_signuputmsource,\n\t\tanalytics_data_storecount,\n\t\tanalytics_data_traits_email,\n\t\tanalytics_data_traits_name,\n\t\tanalytics_data_traits_plan,\n\t\tanalytics_data_userid,\n\t\tanalytics_data_website,\n\t\tanalytics_data_yotpoip,\n\t\tanalytics_data_yotpoproductscorev2,\n\t\tcategory,\n\t\tpath,\n\t\tphasename,\n\t\tphase,\n\t\tstatus,\n\t\ttitle,\n\t\turl,\n\t\tanalytics_data_daysinvalidfacebooktoken,\n\t\tanalytics_data_isinvalidfacebooktokendate,\n\t\tanalytics_data_signupmonthlyorderscount,\n\t\tanalytics_data_chargeid,\n\t\tanalytics_data_chargeprice,\n\t\tanalytics_data_nextchargedate,\n\t\tanalytics_data_subscriptionstate,\n\t\tanalytics_data_chargifybalance,\n\t\tanalytics_data_chargifyrevenue,\n\t\tanalytics_data_daysindunning,\n\t\tanalytics_data_daystorenewal,\n\t\tanalytics_data_isinvalidpinteresttoken,\n\t\tanalytics_data_isinvalidtwittertoken,\n\t\tanalytics_data_lastconversionordertime,\n\t\tanalytics_data_paysvia,\n\t\tanalytics_data_pixelversion,\n\t\tanalytics_data_recurringpaymentinterval,\n\t\tanalytics_data_renewaldate,\n\t\tpagecategory,\n\t\tanalytics_data_phone,\n\t\tanalytics_data_signupphone,\n\t\tanalytics_data_daysinvalidpinteresttoken,\n\t\tanalytics_data_isinvalidpinteresttokendate,\n\t\tanalytics_data_packageextensions,\n\t\tanalytics_data_yotpoproductscore,\n\t\tanalytics_data_pendingrrs,\n\t\tanalytics_data_creditcardtype,\n\t\tanalytics_data_nameoncreditcard,\n\t\tanalytics_data_creditcardlast4digits,\n\t\tanalytics_data_daysinvalidtwittertoken,\n\t\tanalytics_data_isinvalidtwittertokendate,\n\t\tanalytics_data_billingproviders,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tplatform,\n\t\trole,\n\t\tstorecount,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoip,\n\t\tvalue1,\n\t\tvalue2,\n\t\tvalue3,\n\t\tpackageextensions,\n\t\trrmonthlylimit,\n\t\tbillingproviders,\n\t\tctatext,\n\t\tisautopublishenabled,\n\t\tisbodyupdated,\n\t\tisenabledmap,\n\t\tisprimarycolorupdated,\n\t\tispullpastordersenabled,\n\t\tissignatureupdated,\n\t\tisstarscolorupdated,\n\t\tissubjectupdated,\n\t\tiswidgetfontupdated,\n\t\tlastconversionordertime,\n\t\tnumberorders,\n\t\tphone,\n\t\tplanname,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tsignupcountry,\n\t\tisinvalidfacebooktoken,\n\t\tpendingrrs,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tsubscriptionstate,\n\t\tisinvalidtwittertoken,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tisreferralsselected,\n\t\taccountselectedpoints,\n\t\tbirthdayselectedpoints,\n\t\tpurchaseselectedpoints,\n\t\tcustomerpoints,\n\t\tfrienddiscount,\n\t\tiscustomertabclicked,\n\t\tisfriendtabclicked,\n\t\tnumofpoints,\n\t\tissecondarycolorupdated,\n\t\tistabpositionupdated,\n\t\tstoredomain,\n\t\tanalytics_data_storedomain,\n\t\tctaname,\n\t\tiscopycode,\n\t\tissendcode,\n\t\tadminusername,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\treviewspackage,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tvugcpackage,\n\t\tloyaltypackage,\n\t\tsmspackage,\n\t\tplatformplan,\n\t\tstoreplatformdomain,\n\t\tos20\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__onboarding", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__onsite_v2": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__onsite_v2", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.sql", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.sql", "unique_id": "model.yoda.platform_stg__onsite_v2", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__onsite_v2", "platform_stg__onsite_v2"], "alias": "platform_stg__onsite_v2", "checksum": {"name": "sha256", "checksum": "03d91cad49f19c45ca3ca2c4802eefa338a227a6be61936d8729337bd9436716"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform_stg__onsite_v2", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hour": {"name": "hour", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "br_colordepth": {"name": "br_colordepth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_cookies": {"name": "br_cookies", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_family": {"name": "br_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_features_director": {"name": "br_features_director", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_flash": {"name": "br_features_flash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_gears": {"name": "br_features_gears", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_java": {"name": "br_features_java", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_pdf": {"name": "br_features_pdf", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_quicktime": {"name": "br_features_quicktime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_realplayer": {"name": "br_features_realplayer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_silverlight": {"name": "br_features_silverlight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_windowsmedia": {"name": "br_features_windowsmedia", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_lang": {"name": "br_lang", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_major": {"name": "br_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_minor": {"name": "br_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_viewheight": {"name": "br_viewheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_viewwidth": {"name": "br_viewwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_day": {"name": "collector_day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_epoch": {"name": "collector_epoch", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_month": {"name": "collector_month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_year": {"name": "collector_year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_family": {"name": "device_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_charset": {"name": "doc_charset", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_height": {"name": "doc_height", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "doc_width": {"name": "doc_width", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_sessionidx": {"name": "domain_sessionidx", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dvce_screenheight": {"name": "dvce_screenheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_screenwidth": {"name": "dvce_screenwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_tstamp": {"name": "dvce_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_id": {"name": "event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_vendor": {"name": "event_vendor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event": {"name": "event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_city": {"name": "geo_city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_country": {"name": "geo_country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_latitude": {"name": "geo_latitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_longitude": {"name": "geo_longitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_region": {"name": "geo_region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_zipcode": {"name": "geo_zipcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_campaign": {"name": "mkt_campaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_content": {"name": "mkt_content", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_medium": {"name": "mkt_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_source": {"name": "mkt_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_term": {"name": "mkt_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_family": {"name": "os_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_major": {"name": "os_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_minor": {"name": "os_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_timezone": {"name": "os_timezone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlfragment": {"name": "page_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlhost": {"name": "page_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlpath": {"name": "page_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlport": {"name": "page_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_urlquery": {"name": "page_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlscheme": {"name": "page_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pp_xoffset_max": {"name": "pp_xoffset_max", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_xoffset_min": {"name": "pp_xoffset_min", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_max": {"name": "pp_yoffset_max", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_min": {"name": "pp_yoffset_min", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_medium": {"name": "refr_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_source": {"name": "refr_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_term": {"name": "refr_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlfragment": {"name": "refr_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlhost": {"name": "refr_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlpath": {"name": "refr_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlport": {"name": "refr_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_urlquery": {"name": "refr_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlscheme": {"name": "refr_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_page_sku": {"name": "se_page_sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_testing_groups": {"name": "se_testing_groups", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_value": {"name": "se_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_currency": {"name": "tr_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_orderid": {"name": "tr_orderid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_total": {"name": "tr_total", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "txn_id": {"name": "txn_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_fingerprint": {"name": "user_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useragent": {"name": "useragent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_collector": {"name": "v_collector", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_etl": {"name": "v_etl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_tracker": {"name": "v_tracker", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "y_fingerprint": {"name": "y_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082682.6450279, "relation_name": "dev_dkruh1.platform_stg__onsite_v2", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__pixel', 'onsite_v2') }}\n\n), platform_stg__onsite_v2 AS (\n\n SELECT \n\t\tpartition_date,\n\t\thour,\n\t\tprocessing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__onsite_v2", "language": "sql", "refs": [], "sources": [["platform__pixel", "onsite_v2"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__pixel.onsite_v2"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM pixel.onsite_v2\n\n), platform_stg__onsite_v2 AS (\n\n SELECT \n\t\tpartition_date,\n\t\thour,\n\t\tprocessing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\tpp_xoffset_max,\n\t\tpp_xoffset_min,\n\t\tpp_yoffset_max,\n\t\tpp_yoffset_min,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_page_sku,\n\t\tse_property,\n\t\tse_testing_groups,\n\t\tse_value,\n\t\ttr_currency,\n\t\ttr_orderid,\n\t\ttr_total,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint,\n\t\tuser_id\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__onsite_v2", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__onsite_v3": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__onsite_v3", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.sql", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.sql", "unique_id": "model.yoda.platform_stg__onsite_v3", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__onsite_v3", "platform_stg__onsite_v3"], "alias": "platform_stg__onsite_v3", "checksum": {"name": "sha256", "checksum": "cdac44cd958c30ac7584fe34d962044b6aec75762666b276e1436a0094770002"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform_stg__onsite_v3", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hour": {"name": "hour", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "br_colordepth": {"name": "br_colordepth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_cookies": {"name": "br_cookies", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_family": {"name": "br_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_features_director": {"name": "br_features_director", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_flash": {"name": "br_features_flash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_gears": {"name": "br_features_gears", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_java": {"name": "br_features_java", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_pdf": {"name": "br_features_pdf", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_quicktime": {"name": "br_features_quicktime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_realplayer": {"name": "br_features_realplayer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_silverlight": {"name": "br_features_silverlight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_windowsmedia": {"name": "br_features_windowsmedia", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_lang": {"name": "br_lang", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_major": {"name": "br_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_minor": {"name": "br_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_viewheight": {"name": "br_viewheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_viewwidth": {"name": "br_viewwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_day": {"name": "collector_day", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_epoch": {"name": "collector_epoch", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_month": {"name": "collector_month", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_year": {"name": "collector_year", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_family": {"name": "device_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_charset": {"name": "doc_charset", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_height": {"name": "doc_height", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "doc_width": {"name": "doc_width", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_sessionidx": {"name": "domain_sessionidx", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dvce_screenheight": {"name": "dvce_screenheight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_screenwidth": {"name": "dvce_screenwidth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_tstamp": {"name": "dvce_tstamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_id": {"name": "event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_vendor": {"name": "event_vendor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event": {"name": "event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_city": {"name": "geo_city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_country": {"name": "geo_country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_latitude": {"name": "geo_latitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_longitude": {"name": "geo_longitude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_region": {"name": "geo_region", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_zipcode": {"name": "geo_zipcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_campaign": {"name": "mkt_campaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_content": {"name": "mkt_content", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_medium": {"name": "mkt_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_source": {"name": "mkt_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_term": {"name": "mkt_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_family": {"name": "os_family", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_major": {"name": "os_major", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_minor": {"name": "os_minor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_timezone": {"name": "os_timezone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlfragment": {"name": "page_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlhost": {"name": "page_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlpath": {"name": "page_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlport": {"name": "page_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_urlquery": {"name": "page_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlscheme": {"name": "page_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_medium": {"name": "refr_medium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_source": {"name": "refr_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_term": {"name": "refr_term", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlfragment": {"name": "refr_urlfragment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlhost": {"name": "refr_urlhost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlpath": {"name": "refr_urlpath", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlport": {"name": "refr_urlport", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_urlquery": {"name": "refr_urlquery", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlscheme": {"name": "refr_urlscheme", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_value": {"name": "se_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "txn_id": {"name": "txn_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_fingerprint": {"name": "user_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useragent": {"name": "useragent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_collector": {"name": "v_collector", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_etl": {"name": "v_etl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_tracker": {"name": "v_tracker", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "y_fingerprint": {"name": "y_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082682.7283986, "relation_name": "dev_dkruh1.platform_stg__onsite_v3", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__pixel', 'onsite_v3') }}\n\n), platform_stg__onsite_v3 AS (\n\n SELECT \n\t\tpartition_date,\n\t\thour,\n\t\tprocessing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_property,\n\t\tse_value,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__onsite_v3", "language": "sql", "refs": [], "sources": [["platform__pixel", "onsite_v3"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__pixel.onsite_v3"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM pixel.onsite_v3\n\n), platform_stg__onsite_v3 AS (\n\n SELECT \n\t\tpartition_date,\n\t\thour,\n\t\tprocessing_time,\n\t\tbr_colordepth,\n\t\tbr_cookies,\n\t\tbr_family,\n\t\tbr_features_director,\n\t\tbr_features_flash,\n\t\tbr_features_gears,\n\t\tbr_features_java,\n\t\tbr_features_pdf,\n\t\tbr_features_quicktime,\n\t\tbr_features_realplayer,\n\t\tbr_features_silverlight,\n\t\tbr_features_windowsmedia,\n\t\tbr_lang,\n\t\tbr_major,\n\t\tbr_minor,\n\t\tbr_viewheight,\n\t\tbr_viewwidth,\n\t\tcollector_day,\n\t\tcollector_epoch,\n\t\tcollector_month,\n\t\tcollector_tstamp,\n\t\tcollector_year,\n\t\tcontext,\n\t\tdevice_family,\n\t\tdoc_charset,\n\t\tdoc_height,\n\t\tdoc_width,\n\t\tdomain_sessionidx,\n\t\tdomain_userid,\n\t\tdvce_screenheight,\n\t\tdvce_screenwidth,\n\t\tdvce_tstamp,\n\t\tevent_id,\n\t\tevent_vendor,\n\t\tevent,\n\t\tgeo_city,\n\t\tgeo_country,\n\t\tgeo_latitude,\n\t\tgeo_longitude,\n\t\tgeo_region,\n\t\tgeo_zipcode,\n\t\tmkt_campaign,\n\t\tmkt_content,\n\t\tmkt_medium,\n\t\tmkt_source,\n\t\tmkt_term,\n\t\tos_family,\n\t\tos_major,\n\t\tos_minor,\n\t\tos_timezone,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_urlfragment,\n\t\tpage_urlhost,\n\t\tpage_urlpath,\n\t\tpage_urlport,\n\t\tpage_urlquery,\n\t\tpage_url,\n\t\tpage_urlscheme,\n\t\tplatform,\n\t\trefr_medium,\n\t\trefr_source,\n\t\trefr_term,\n\t\trefr_urlfragment,\n\t\trefr_urlhost,\n\t\trefr_urlpath,\n\t\trefr_urlport,\n\t\trefr_urlquery,\n\t\trefr_urlscheme,\n\t\tse_action,\n\t\tse_category,\n\t\tse_label,\n\t\tse_property,\n\t\tse_value,\n\t\ttxn_id,\n\t\tuser_fingerprint,\n\t\tuseragent,\n\t\tv_collector,\n\t\tv_etl,\n\t\tv_tracker,\n\t\ty_fingerprint\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__onsite_v3", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__order_lines": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__order_lines", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.sql", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.sql", "unique_id": "model.yoda.platform_stg__order_lines", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__order_lines", "platform_stg__order_lines"], "alias": "platform_stg__order_lines", "checksum": {"name": "sha256", "checksum": "a97bb8a2ab9cb39182caa16bea61fc15c8f47487ee5e9181b0ed73e86d31fcd8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_id": {"name": "order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_variant_id": {"name": "external_variant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cost": {"name": "cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "coupon_used": {"name": "coupon_used", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "quantity": {"name": "quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subtotal_price": {"name": "subtotal_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "custom_properties": {"name": "custom_properties", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "coupon_code": {"name": "coupon_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_id": {"name": "variant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082682.7620268, "relation_name": "dev_dkruh1.platform_stg__order_lines", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__orders', 'order_lines') }}\n\n), platform_stg__order_lines AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torder_id,\n\t\tproduct_id,\n\t\texternal_variant_id,\n\t\tcost,\n\t\tcoupon_used,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tquantity,\n\t\tsubtotal_price,\n\t\tcustom_properties,\n\t\tcoupon_code,\n\t\texternal_id,\n\t\tvariant_id\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__order_lines", "language": "sql", "refs": [], "sources": [["platform__orders", "order_lines"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__orders.order_lines"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM orders.order_lines\n\n), platform_stg__order_lines AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torder_id,\n\t\tproduct_id,\n\t\texternal_variant_id,\n\t\tcost,\n\t\tcoupon_used,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tquantity,\n\t\tsubtotal_price,\n\t\tcustom_properties,\n\t\tcoupon_code,\n\t\texternal_id,\n\t\tvariant_id\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__order_lines", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__orders": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__orders", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.sql", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.sql", "unique_id": "model.yoda.platform_stg__orders", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__orders", "platform_stg__orders"], "alias": "platform_stg__orders", "checksum": {"name": "sha256", "checksum": "de8bc6350b4f2b69d45d887eff140e3797178533dfc043099e2b4bd801a79f30"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Source Description", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "external_order_id": {"name": "external_order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_type": {"name": "platform_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_order_display_name": {"name": "external_order_display_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_update_date": {"name": "order_update_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_sum_order_currency": {"name": "order_sum_order_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_currency_iso": {"name": "order_currency_iso", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sum_account_currency": {"name": "order_sum_account_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_currency_iso": {"name": "account_currency_iso", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "billing_address_id": {"name": "billing_address_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shipping_address_id": {"name": "shipping_address_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_customer_id": {"name": "external_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_name": {"name": "first_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_number": {"name": "phone_number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price": {"name": "total_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "landing_site_url": {"name": "landing_site_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "checkout_token": {"name": "checkout_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_method": {"name": "payment_method", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_status_id": {"name": "payment_status_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "buyer_accepts_sms_marketing": {"name": "buyer_accepts_sms_marketing", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "buyer_accepts_email_marketing": {"name": "buyer_accepts_email_marketing", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "custom_properties": {"name": "custom_properties", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "buyer_accepts_marketing": {"name": "buyer_accepts_marketing", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_id": {"name": "external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__orders/platform_stg__orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "corgis", "created_by": "leon.lantsman@yotpo.com", "alert_channels": ["corgis-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082682.8079245, "relation_name": "dev_dkruh1.platform_stg__orders", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\nWITH source AS (\n\n SELECT * FROM {{ source('platform__orders', 'orders') }}\n\n), platform_stg__orders AS (\n\n SELECT\n id,\n processing_time,\n ts_ms,\n app_key,\n order_date,\n external_order_id,\n email,\n platform_type,\n external_order_display_name,\n order_update_date,\n order_sum_order_currency,\n order_currency_iso,\n order_sum_account_currency,\n account_currency_iso,\n created_at,\n updated_at,\n billing_address_id,\n shipping_address_id,\n external_customer_id,\n first_name,\n last_name,\n phone_number,\n total_price,\n landing_site_url,\n checkout_token,\n payment_method,\n payment_status_id,\n buyer_accepts_sms_marketing,\n buyer_accepts_email_marketing,\n custom_properties,\n source,\n buyer_accepts_marketing,\n external_id\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__orders", "language": "sql", "refs": [], "sources": [["platform__orders", "orders"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__orders.orders"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__orders/platform_stg__orders.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\nWITH source AS (\n\n SELECT * FROM orders.orders\n\n), platform_stg__orders AS (\n\n SELECT\n id,\n processing_time,\n ts_ms,\n app_key,\n order_date,\n external_order_id,\n email,\n platform_type,\n external_order_display_name,\n order_update_date,\n order_sum_order_currency,\n order_currency_iso,\n order_sum_account_currency,\n account_currency_iso,\n created_at,\n updated_at,\n billing_address_id,\n shipping_address_id,\n external_customer_id,\n first_name,\n last_name,\n phone_number,\n total_price,\n landing_site_url,\n checkout_token,\n payment_method,\n payment_status_id,\n buyer_accepts_sms_marketing,\n buyer_accepts_email_marketing,\n custom_properties,\n source,\n buyer_accepts_marketing,\n external_id\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__organizations": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__organizations", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__organizations/platform_stg__organizations.sql", "original_file_path": "models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.sql", "unique_id": "model.yoda.platform_stg__organizations", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__organizations", "platform_stg__organizations"], "alias": "platform_stg__organizations", "checksum": {"name": "sha256", "checksum": "9df827f3fc9e4ac1f4713e13213ac600c282678591f69d672e4559e27526fbbf"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Yotpo organization", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082682.835752, "relation_name": "dev_dkruh1.platform_stg__organizations", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'organizations') }}\n\n), platform_stg__organizations AS (\n\n SELECT \n\t\tid,\n\t\tcreated_at,\n\t\tname,\n\t\torganization_key,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__organizations", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "organizations"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.organizations"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM yotpoapiprod.organizations\n\n), platform_stg__organizations AS (\n\n SELECT \n\t\tid,\n\t\tcreated_at,\n\t\tname,\n\t\torganization_key,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__organizations", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__owner_feature_settings": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__owner_feature_settings", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.sql", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.sql", "unique_id": "model.yoda.platform_stg__owner_feature_settings", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__owner_feature_settings", "platform_stg__owner_feature_settings"], "alias": "platform_stg__owner_feature_settings", "checksum": {"name": "sha256", "checksum": "8e91b02a56ddd7f58059904f1cdf577b7121048d393ec115ff6da276a9802fe8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Tables written by yotpo R&D and serve the platform", "columns": {"id": {"name": "id", "description": "id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts_ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "owners_feature_id": {"name": "owners_feature_id", "description": "owners_feature_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "key": {"name": "key", "description": "key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "floating": {"name": "floating", "description": "feature_settings_floating", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "created_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "updated_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.8668945, "relation_name": "dev_dkruh1.platform_stg__owner_feature_settings", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'owner_feature_settings') }}\n\n), platform_stg__owner_feature_settings AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\towners_feature_id,\n\t\tkey,\n\t\tvalue,\n\t\tfloating,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__owner_feature_settings", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "owner_feature_settings"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.owner_feature_settings"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.owner_feature_settings\n\n), platform_stg__owner_feature_settings AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\towners_feature_id,\n\t\tkey,\n\t\tvalue,\n\t\tfloating,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__owner_feature_settings", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__owners_features": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__owners_features", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.sql", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.sql", "unique_id": "model.yoda.platform_stg__owners_features", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__owners_features", "platform_stg__owners_features"], "alias": "platform_stg__owners_features", "checksum": {"name": "sha256", "checksum": "db968adbced8a6bf9f86e61d8863560961f4becdb069938a3cc3585d67789276"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Tables written by yotpo R&D and serve the platform", "columns": {"id": {"name": "id", "description": "id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "created_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "disabled": {"name": "disabled", "description": "disabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_id": {"name": "feature_id", "description": "feature_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "floating": {"name": "floating", "description": "floating", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "owner id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_type": {"name": "owner_type", "description": "owner type: store/organization", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "updated ad", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_enabled": {"name": "user_enabled", "description": "enabled", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.8857565, "relation_name": "dev_dkruh1.platform_stg__owners_features", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'owners_features') }}\n\n), platform_stg__owners_features AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_at,\n\t\tdisabled,\n\t\tfeature_id,\n\t\tfloating,\n\t\towner_id,\n\t\towner_type,\n\t\tupdated_at,\n\t\tuser_enabled\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__owners_features", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "owners_features"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.owners_features"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.owners_features\n\n), platform_stg__owners_features AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_at,\n\t\tdisabled,\n\t\tfeature_id,\n\t\tfloating,\n\t\towner_id,\n\t\towner_type,\n\t\tupdated_at,\n\t\tuser_enabled\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__owners_features", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__owners_package_audits": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__owners_package_audits", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.sql", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.sql", "unique_id": "model.yoda.platform_stg__owners_package_audits", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__owners_package_audits", "platform_stg__owners_package_audits"], "alias": "platform_stg__owners_package_audits", "checksum": {"name": "sha256", "checksum": "8adbb8e18670cc4db8f872a9c30166b193f8445bfa60fa51bb135ef42d030539"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "upsolver_schema_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "owner_id": {"name": "owner_id", "description": "owner id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_type": {"name": "owner_type", "description": "owner type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_package_id": {"name": "from_package_id", "description": "package id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "to_package_id": {"name": "to_package_id", "description": "package id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action": {"name": "action", "description": "action", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason": {"name": "reason", "description": "reason", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "created at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.9066331, "relation_name": "dev_dkruh1.platform_stg__owners_package_audits", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__packages', 'owners_package_audits') }}\n\n), platform_stg__owners_package_audits AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\towner_id,\n\t\towner_type,\n\t\tfrom_package_id,\n\t\tto_package_id,\n\t\taction,\n\t\treason,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__owners_package_audits", "language": "sql", "refs": [], "sources": [["platform__packages", "owners_package_audits"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__packages.owners_package_audits"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM packages.owners_package_audits\n\n), platform_stg__owners_package_audits AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\towner_id,\n\t\towner_type,\n\t\tfrom_package_id,\n\t\tto_package_id,\n\t\taction,\n\t\treason,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__owners_package_audits", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__owners_packages": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__owners_packages", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.sql", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.sql", "unique_id": "model.yoda.platform_stg__owners_packages", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__owners_packages", "platform_stg__owners_packages"], "alias": "platform_stg__owners_packages", "checksum": {"name": "sha256", "checksum": "62c7916830385194f1d73b9af953649bc53e85a95a90f162b6caefcb9f81f509"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Display packages of organizations or stores", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_id": {"name": "package_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_type": {"name": "owner_type", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "started_at": {"name": "started_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.9238148, "relation_name": "dev_dkruh1.platform_stg__owners_packages", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('platform__packages', 'owners_packages') }}\n\n), platform_stg__owners_packages AS (\n\n SELECT \n\t\tid,\n\t\towner_id,\n\t\tpackage_id,\n\t\towner_type,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tstarted_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__owners_packages", "language": "sql", "refs": [], "sources": [["platform__packages", "owners_packages"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__packages.owners_packages"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM packages.owners_packages\n\n), platform_stg__owners_packages AS (\n\n SELECT \n\t\tid,\n\t\towner_id,\n\t\tpackage_id,\n\t\towner_type,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tstarted_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__owners_packages", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__owners_packages_history": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__owners_packages_history", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.sql", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.sql", "unique_id": "model.yoda.platform_stg__owners_packages_history", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__owners_packages_history", "platform_stg__owners_packages_history"], "alias": "platform_stg__owners_packages_history", "checksum": {"name": "sha256", "checksum": "8a4e8f59d5d97c41aad7be1196337f15865fca4092df872e0691e3dd8c486a30"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "upsolver_schema_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "history_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts_ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "owner_id": {"name": "owner_id", "description": "owner_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_id": {"name": "package_id", "description": "package_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_type": {"name": "owner_type", "description": "owner_type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "created_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "history_updated_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "started_at": {"name": "started_at", "description": "started_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "deleted_at": {"name": "deleted_at", "description": "deleted_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.9441736, "relation_name": "dev_dkruh1.platform_stg__owners_packages_history", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__packages', 'owners_packages_history') }}\n\n), platform_stg__owners_packages_history AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\towner_id,\n\t\tpackage_id,\n\t\towner_type,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tstarted_at,\n\t\tdeleted_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__owners_packages_history", "language": "sql", "refs": [], "sources": [["platform__packages", "owners_packages_history"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__packages.owners_packages_history"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM packages.owners_packages_history\n\n), platform_stg__owners_packages_history AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\towner_id,\n\t\tpackage_id,\n\t\towner_type,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tstarted_at,\n\t\tdeleted_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__owners_packages_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__package_feature_settings": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__package_feature_settings", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.sql", "original_file_path": "models/platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.sql", "unique_id": "model.yoda.platform_stg__package_feature_settings", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__package_feature_settings", "platform_stg__package_feature_settings"], "alias": "platform_stg__package_feature_settings", "checksum": {"name": "sha256", "checksum": "396e825872d53b30c2d68808ea63e203ddf1fc9c460d5cebf4ed825063719eb9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "upsolver_schema_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts_ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_feature_id": {"name": "package_feature_id", "description": "package_feature_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "key": {"name": "key", "description": "key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.9667332, "relation_name": "dev_dkruh1.platform_stg__package_feature_settings", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__packages', 'package_feature_settings') }}\n\n), platform_stg__package_feature_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpackage_feature_id,\n\t\tkey,\n\t\tvalue\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_feature_settings", "language": "sql", "refs": [], "sources": [["platform__packages", "package_feature_settings"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__packages.package_feature_settings"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM packages.package_feature_settings\n\n), platform_stg__package_feature_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpackage_feature_id,\n\t\tkey,\n\t\tvalue\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_feature_settings", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__package_features": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__package_features", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.sql", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.sql", "unique_id": "model.yoda.platform_stg__package_features", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__package_features", "platform_stg__package_features"], "alias": "platform_stg__package_features", "checksum": {"name": "sha256", "checksum": "66d106aa6e8d18bbe7ae173d097827293e1c08d1ded019e382d71329ba13e4e2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "upsolver_schema_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts_ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_id": {"name": "package_id", "description": "package_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_key": {"name": "feature_key", "description": "feature_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "promoted": {"name": "promoted", "description": "promoted", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "created_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "updated_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "feature_name": {"name": "feature_name", "description": "feature_name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082682.9845977, "relation_name": "dev_dkruh1.platform_stg__package_features", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__packages', 'package_features') }}\n\n), platform_stg__package_features AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpackage_id,\n\t\tfeature_key,\n\t\tpromoted,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tfeature_name\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_features", "language": "sql", "refs": [], "sources": [["platform__packages", "package_features"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__packages.package_features"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM packages.package_features\n\n), platform_stg__package_features AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpackage_id,\n\t\tfeature_key,\n\t\tpromoted,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tfeature_name\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_features", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__package_provider_settings": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__package_provider_settings", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.sql", "original_file_path": "models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.sql", "unique_id": "model.yoda.platform_stg__package_provider_settings", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__package_provider_settings", "platform_stg__package_provider_settings"], "alias": "platform_stg__package_provider_settings", "checksum": {"name": "sha256", "checksum": "f870ee6574d2b239e981de4e7c68f2573eb48de1e1dc1d6e9edafad9eb3a2ddf"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "package package_provider_settings table", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "upsolver_schema_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_name": {"name": "package_name", "description": "package name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provider_type_id": {"name": "provider_type_id", "description": "billing provider_type_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "setting_type": {"name": "setting_type", "description": "setting_type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.002493, "relation_name": "dev_dkruh1.platform_stg__package_provider_settings", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'package_provider_settings') }}\n\n), platform_stg__package_provider_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpackage_name,\n\t\tprovider_type_id,\n\t\tsetting_type,\n\t\tvalue\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_provider_settings", "language": "sql", "refs": [], "sources": [["platform__billing", "package_provider_settings"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.package_provider_settings"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.package_provider_settings\n\n), platform_stg__package_provider_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpackage_name,\n\t\tprovider_type_id,\n\t\tsetting_type,\n\t\tvalue\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_provider_settings", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__package_tag_types": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__package_tag_types", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.sql", "original_file_path": "models/platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.sql", "unique_id": "model.yoda.platform_stg__package_tag_types", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__package_tag_types", "platform_stg__package_tag_types"], "alias": "platform_stg__package_tag_types", "checksum": {"name": "sha256", "checksum": "dd321c1017793676d9ac80476e46bb6390f9518a1b43a60b0d483194d286cbaa"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tag_type": {"name": "tag_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.020755, "relation_name": "dev_dkruh1.platform_stg__package_tag_types", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__packages', 'package_tag_types') }}\n\n), platform_stg__package_tag_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\ttag_type,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_tag_types", "language": "sql", "refs": [], "sources": [["platform__packages", "package_tag_types"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__packages.package_tag_types"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM packages.package_tag_types\n\n), platform_stg__package_tag_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\ttag_type,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_tag_types", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__package_tags": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__package_tags", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.sql", "original_file_path": "models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.sql", "unique_id": "model.yoda.platform_stg__package_tags", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__package_tags", "platform_stg__package_tags"], "alias": "platform_stg__package_tags", "checksum": {"name": "sha256", "checksum": "69f5986b5a76690075ac9d96043c6080b315063445d2f0814178d30f86ab9e66"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_id": {"name": "package_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "package_tag_type_id": {"name": "package_tag_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.0377183, "relation_name": "dev_dkruh1.platform_stg__package_tags", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__packages', 'package_tags') }}\n\n), platform_stg__package_tags AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpackage_id,\n\t\tpackage_tag_type_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_tags", "language": "sql", "refs": [], "sources": [["platform__packages", "package_tags"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__packages.package_tags"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM packages.package_tags\n\n), platform_stg__package_tags AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpackage_id,\n\t\tpackage_tag_type_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_tags", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__package_usages_settings": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__package_usages_settings", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.sql", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.sql", "unique_id": "model.yoda.platform_stg__package_usages_settings", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__package_usages_settings", "platform_stg__package_usages_settings"], "alias": "platform_stg__package_usages_settings", "checksum": {"name": "sha256", "checksum": "bd3d0d78d6d6ba0fce4b9034f6142351218abe9309a4b23b4a8388bd34e66bdd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "provider_type_id": {"name": "provider_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "package_name": {"name": "package_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_name": {"name": "metric_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "per_unit_price": {"name": "per_unit_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "limit": {"name": "limit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "term_text": {"name": "term_text", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.0609837, "relation_name": "dev_dkruh1.platform_stg__package_usages_settings", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'package_usages_settings') }}\n\n), platform_stg__package_usages_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tprovider_type_id,\n\t\tpackage_name,\n\t\tmetric_name,\n\t\tper_unit_price,\n\t\tlimit,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tdescription,\n\t\tterm_text\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_usages_settings", "language": "sql", "refs": [], "sources": [["platform__billing", "package_usages_settings"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.package_usages_settings"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.package_usages_settings\n\n), platform_stg__package_usages_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tprovider_type_id,\n\t\tpackage_name,\n\t\tmetric_name,\n\t\tper_unit_price,\n\t\tlimit,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tdescription,\n\t\tterm_text\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__package_usages_settings", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__packages": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__packages", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__packages/platform_stg__packages.sql", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.sql", "unique_id": "model.yoda.platform_stg__packages", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__packages", "platform_stg__packages"], "alias": "platform_stg__packages", "checksum": {"name": "sha256", "checksum": "0f4213d458c6a38ee3da63e311586bdde90911644ad7a5f0b1170b82aa3424ec"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Yotpo packages", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_id": {"name": "category_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "display_name": {"name": "display_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "downgrade_package_id": {"name": "downgrade_package_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "package_key": {"name": "package_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_package_id": {"name": "old_package_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "category_priority": {"name": "category_priority", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__packages/platform_stg__packages.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082683.078909, "relation_name": "dev_dkruh1.platform_stg__packages", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('platform__packages', 'packages') }}\n\n), platform_stg__packages AS (\n\n SELECT \n\t\tid,\n\t\tname,\n\t\tcategory_id,\n\t\tdisplay_name,\n\t\tdescription,\n\t\tdowngrade_package_id,\n\t\tpackage_key,\n\t\told_package_id,\n\t\tcategory_priority\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__packages", "language": "sql", "refs": [], "sources": [["platform__packages", "packages"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__packages.packages"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__packages/platform_stg__packages.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM packages.packages\n\n), platform_stg__packages AS (\n\n SELECT \n\t\tid,\n\t\tname,\n\t\tcategory_id,\n\t\tdisplay_name,\n\t\tdescription,\n\t\tdowngrade_package_id,\n\t\tpackage_key,\n\t\told_package_id,\n\t\tcategory_priority\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__packages", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__plan_settings": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__plan_settings", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.sql", "original_file_path": "models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.sql", "unique_id": "model.yoda.platform_stg__plan_settings", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__plan_settings", "platform_stg__plan_settings"], "alias": "platform_stg__plan_settings", "checksum": {"name": "sha256", "checksum": "9800e72e0f8f74c4dca31dca6e3df93678b659529729831d09b725281cbd861c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "plan_name": {"name": "plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "setting_type": {"name": "setting_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.1093757, "relation_name": "dev_dkruh1.platform_stg__plan_settings", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'plan_settings') }}\n\n), platform_stg__plan_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tplan_name,\n\t\tsetting_type,\n\t\tvalue,\n\t\tcategory_name\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__plan_settings", "language": "sql", "refs": [], "sources": [["platform__billing", "plan_settings"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.plan_settings"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.plan_settings\n\n), platform_stg__plan_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tplan_name,\n\t\tsetting_type,\n\t\tvalue,\n\t\tcategory_name\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__plan_settings", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__platform_package_features": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__platform_package_features", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.sql", "original_file_path": "models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.sql", "unique_id": "model.yoda.platform_stg__platform_package_features", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__platform_package_features", "platform_stg__platform_package_features"], "alias": "platform_stg__platform_package_features", "checksum": {"name": "sha256", "checksum": "d0894d7dd45718f112960b93814d592fd7a24cb8eefb007fd1362384342d4cba"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "upsolver_schema_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts_ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "platform_name": {"name": "platform_name", "description": "name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_id": {"name": "package_id", "description": "package_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_key": {"name": "feature_key", "description": "key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "created_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "updated_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.1277654, "relation_name": "dev_dkruh1.platform_stg__platform_package_features", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__packages', 'platform_package_features') }}\n\n), platform_stg__platform_package_features AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tplatform_name,\n\t\tpackage_id,\n\t\tfeature_key,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__platform_package_features", "language": "sql", "refs": [], "sources": [["platform__packages", "platform_package_features"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__packages.platform_package_features"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM packages.platform_package_features\n\n), platform_stg__platform_package_features AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tplatform_name,\n\t\tpackage_id,\n\t\tfeature_key,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__platform_package_features", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__platform_types": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__platform_types", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.sql", "original_file_path": "models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.sql", "unique_id": "model.yoda.platform_stg__platform_types", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__platform_types", "platform_stg__platform_types"], "alias": "platform_stg__platform_types", "checksum": {"name": "sha256", "checksum": "8ca1ced2276e805fd0acde28dd9a084c4c36338240f13d35e681c38b7c2b865e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform_stg__platform_types", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_name": {"name": "platform_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_supports_pull_orders": {"name": "is_supports_pull_orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_supports_past_orders": {"name": "is_supports_past_orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082683.143359, "relation_name": "dev_dkruh1.platform_stg__platform_types", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'platform_types') }}\n\n), platform_stg__platform_types AS (\n\n SELECT id,\n name AS platform_name,\n description,\n supports_pull_orders AS is_supports_pull_orders,\n supports_past_orders AS is_supports_past_orders,\n TIMESTAMP(updated_at) updated_at\n FROM source\n\n)\n\nSELECT * FROM platform_stg__platform_types", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "platform_types"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.platform_types"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.platform_types\n\n), platform_stg__platform_types AS (\n\n SELECT id,\n name AS platform_name,\n description,\n supports_pull_orders AS is_supports_pull_orders,\n supports_past_orders AS is_supports_past_orders,\n TIMESTAMP(updated_at) updated_at\n FROM source\n\n)\n\nSELECT * FROM platform_stg__platform_types", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__popup_displayed": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__popup_displayed", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.sql", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.sql", "unique_id": "model.yoda.platform_stg__popup_displayed", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__popup_displayed", "platform_stg__popup_displayed"], "alias": "platform_stg__popup_displayed", "checksum": {"name": "sha256", "checksum": "3f90a8507d2cf8b83c1a1c77538be53c771f40e5b5b96a3670e45e57ba222295"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin": {"name": "admin", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctalocation": {"name": "ctalocation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gallerytype": {"name": "gallerytype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "popupcontext": {"name": "popupcontext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "popupname": {"name": "popupname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uiversion": {"name": "uiversion", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "pendingrrs": {"name": "pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "popuplocation": {"name": "popuplocation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "packageextensions": {"name": "packageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iserror": {"name": "iserror", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numoferrors": {"name": "numoferrors", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofformaterror": {"name": "numofformaterror", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofsizeerror": {"name": "numofsizeerror", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os20": {"name": "os20", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "producturl": {"name": "producturl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "btncontext": {"name": "btncontext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "btnlocation": {"name": "btnlocation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "btnname": {"name": "btnname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "btntext": {"name": "btntext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_name": {"name": "company_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "featurename": {"name": "featurename", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltyemail": {"name": "loyaltyemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pagecontext": {"name": "pagecontext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagename": {"name": "pagename", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagesubcontext": {"name": "pagesubcontext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tabname": {"name": "tabname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "thirty_day_order_volume": {"name": "thirty_day_order_volume", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "thirty_day_revenue_cents": {"name": "thirty_day_revenue_cents", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "traits_package": {"name": "traits_package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_platform": {"name": "traits_platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actioncontext": {"name": "actioncontext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actionlocation": {"name": "actionlocation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actiontype": {"name": "actiontype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctaname": {"name": "ctaname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctatext": {"name": "ctatext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctatype": {"name": "ctatype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "eventtype": {"name": "eventtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "layout": {"name": "layout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mobiletabposition": {"name": "mobiletabposition", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagecategory": {"name": "pagecategory", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tabposition": {"name": "tabposition", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaigntype": {"name": "campaigntype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isenabled": {"name": "isenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "istargeted": {"name": "istargeted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "count": {"name": "count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "field": {"name": "field", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reasons": {"name": "reasons", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "popupsubcontext": {"name": "popupsubcontext", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth0userid": {"name": "auth0userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numofformaterrors": {"name": "numofformaterrors", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofsizeerrors": {"name": "numofsizeerrors", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner": {"name": "owner", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "installedplatformname": {"name": "installedplatformname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082683.275406, "relation_name": "dev_dkruh1.platform_stg__popup_displayed", "raw_code": "WITH source AS (\n SELECT * FROM {{ source('platform__segment', 'popup_displayed') }} \n), \n\nrow_ranking_for_event AS (\nSELECT \n partition_date,\n upsolver_schema_version,\n processing_time,\n timestamp,\n message_id,\n user_id,\n anonymous_id,\n channel,\n library_name,\n locale,\n page_url,\n page_referrer,\n page_title,\n page_path,\n is_tablet,\n is_mobile,\n is_desktop,\n violated_event,\n event_name,\n rrmonthlylimit,\n accountid,\n adminname,\n admin,\n appkey,\n category,\n createdat,\n ctalocation,\n email,\n gallerytype,\n groupid,\n isinvalidfacebooktoken,\n isinvalidpinteresttoken,\n isnewslettersubscribed,\n isreviewswidgetinstalled,\n issystemnotificationssubscribed,\n isuserscountlimitreached,\n isusingpackagesservice,\n lastconversionordertime,\n name,\n packagecategories,\n package,\n path,\n phone,\n planname,\n platform,\n popupcontext,\n popupname,\n role,\n signupcountry,\n signupmonthlyorderscount,\n signupphone,\n signuputmcampaign,\n signuputmmedium,\n signuputmsource,\n storecount,\n storedomain,\n title,\n traits_email,\n traits_name,\n traits_plan,\n uiversion,\n url,\n userid,\n website,\n yotpoip,\n billingproviders,\n pendingrrs,\n popuplocation,\n daysinvalidtwittertoken,\n isinvalidtwittertokendate,\n isinvalidtwittertoken,\n packageextensions,\n daysinvalidfacebooktoken,\n isinvalidfacebooktokendate,\n chargeid,\n chargeprice,\n subscriptionstate,\n daysinvalidpinteresttoken,\n isinvalidpinteresttokendate,\n product,\n source,\n iserror,\n numoferrors,\n numofformaterror,\n numofsizeerror,\n adminusername,\n isloyalty,\n isreviews,\n issms,\n isvugc,\n loyaltymerchantid,\n orgid,\n orgkey,\n reviewspackage,\n smsuserid,\n storeid,\n vugcpackage,\n loyaltypackage,\n smspackage,\n storeplatformdomain,\n platformplan,\n os20,\n producturl,\n isinternaluser,\n btncontext,\n btnlocation,\n btnname,\n btntext,\n company_name,\n featurename,\n loyaltyemail,\n merchant_id,\n pagecontext,\n pagename,\n pagesubcontext,\n platform_plan,\n tabname,\n thirty_day_order_volume,\n thirty_day_revenue_cents,\n traits_package,\n traits_platform,\n actioncontext,\n actionlocation,\n actiontype,\n ctaname,\n ctatext,\n ctatype,\n eventtype,\n layout,\n mobiletabposition,\n pagecategory,\n tabposition,\n campaigntype,\n isenabled,\n istargeted,\n count,\n field,\n reasons,\n status,\n popupsubcontext,\n state,\n useremail,\n auth0userid,\n numofformaterrors,\n numofsizeerrors,\n owner,\n installedplatformname,\n IF(message_id IN ('ajs-ab7ad1b69e7f49794d1f65c5ee14fe08',\n 'ajs-7f57ceab198def2978d0b986a7ce3285',\n 'ajs-next-6816c3b51bbe4410860d305106b152e7',\n 'ajs-next-de5a85a5ebc86407596560832aadec6f',\n 'ajs-next-0d6a097289c3e7cb2599d4f50a2ac172',\n 'ajs-next-2ecf626f38c798f031153d8f7b78a8db',\n 'ajs-next-79fc398a87e2b956328eb3f507820010',\n 'ajs-next-7734a9bd15246a425c0a4ac56973f30c',\n 'ajs-next-b17140220765fd94f8d2bc3602cca8f0',\n 'ajs-next-69cf9c17adbcd04fcb929f03ed34dd21',\n 'ajs-8bc5cd1b2f538c8a61db522f16be418d',\n 'ajs-next-14cb195a956f8d3b2b4a7762a930eb67',\n 'ajs-c864b317b15709a4e3a99fae58adb686',\n 'ajs-next-18e40498e53e18e1da1524c31e0be291',\n 'ajs-722f3ad1bca2ed8775f969a2d07d9603',\n 'ajs-next-3d381c537a79ba4b96cec3ffeae30cbd',\n 'ajs-next-b5a6892e29cf56fe91644225c94ac9b1',\n 'ajs-next-27375078b89bcb494d35799120ad6578',\n 'ajs-next-179d23f0f5f8d4d97880e9127e6114e5',\n 'api-2CKXLvAiJqeKQCsjVunZdM6pnLS',\n 'ajs-next-f8a1532df9cf0454f9d42fd8ea07a110',\n 'ajs-next-9eae58337137c393b06ec314ef3ebf47',\n 'ajs-next-1f229471357f1bd9d5e2b3ddea376a36',\n 'ajs-next-9958e38052890751f7d9cc4458472d11',\n 'ajs-next-bd3c1e08b1b334fd959d423781a1c4af'),\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp),\n 1) AS event_row_ranking\nFROM source\n),\n\nplatform_stg__popup_displayed AS (\nSELECT \n partition_date,\n upsolver_schema_version,\n processing_time,\n timestamp,\n message_id,\n user_id,\n anonymous_id,\n channel,\n library_name,\n locale,\n page_url,\n page_referrer,\n page_title,\n page_path,\n is_tablet,\n is_mobile,\n is_desktop,\n violated_event,\n event_name,\n rrmonthlylimit,\n accountid,\n adminname,\n admin,\n appkey,\n category,\n createdat,\n ctalocation,\n email,\n gallerytype,\n groupid,\n isinvalidfacebooktoken,\n isinvalidpinteresttoken,\n isnewslettersubscribed,\n isreviewswidgetinstalled,\n issystemnotificationssubscribed,\n isuserscountlimitreached,\n isusingpackagesservice,\n lastconversionordertime,\n name,\n packagecategories,\n package,\n path,\n phone,\n planname,\n platform,\n popupcontext,\n popupname,\n role,\n signupcountry,\n signupmonthlyorderscount,\n signupphone,\n signuputmcampaign,\n signuputmmedium,\n signuputmsource,\n storecount,\n storedomain,\n title,\n traits_email,\n traits_name,\n traits_plan,\n uiversion,\n url,\n userid,\n website,\n yotpoip,\n billingproviders,\n pendingrrs,\n popuplocation,\n daysinvalidtwittertoken,\n isinvalidtwittertokendate,\n isinvalidtwittertoken,\n packageextensions,\n daysinvalidfacebooktoken,\n isinvalidfacebooktokendate,\n chargeid,\n chargeprice,\n subscriptionstate,\n daysinvalidpinteresttoken,\n isinvalidpinteresttokendate,\n product,\n source,\n iserror,\n numoferrors,\n numofformaterror,\n numofsizeerror,\n adminusername,\n isloyalty,\n isreviews,\n issms,\n isvugc,\n loyaltymerchantid,\n orgid,\n orgkey,\n reviewspackage,\n smsuserid,\n storeid,\n vugcpackage,\n loyaltypackage,\n smspackage,\n storeplatformdomain,\n platformplan,\n os20,\n producturl,\n isinternaluser,\n btncontext,\n btnlocation,\n btnname,\n btntext,\n company_name,\n featurename,\n loyaltyemail,\n merchant_id,\n pagecontext,\n pagename,\n pagesubcontext,\n platform_plan,\n tabname,\n thirty_day_order_volume,\n thirty_day_revenue_cents,\n traits_package,\n traits_platform,\n actioncontext,\n actionlocation,\n actiontype,\n ctaname,\n ctatext,\n ctatype,\n eventtype,\n layout,\n mobiletabposition,\n pagecategory,\n tabposition,\n campaigntype,\n isenabled,\n istargeted,\n count,\n field,\n reasons,\n status,\n popupsubcontext,\n state,\n useremail,\n auth0userid,\n numofformaterrors,\n numofsizeerrors,\n owner,\n installedplatformname\nFROM row_ranking_for_event\nWHERE event_row_ranking = 1\n)\n\nSELECT * \nFROM platform_stg__popup_displayed", "language": "sql", "refs": [], "sources": [["platform__segment", "popup_displayed"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__segment.popup_displayed"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.sql", "compiled": true, "compiled_code": "WITH source AS (\n SELECT * FROM segment.popup_displayed \n), \n\nrow_ranking_for_event AS (\nSELECT \n partition_date,\n upsolver_schema_version,\n processing_time,\n timestamp,\n message_id,\n user_id,\n anonymous_id,\n channel,\n library_name,\n locale,\n page_url,\n page_referrer,\n page_title,\n page_path,\n is_tablet,\n is_mobile,\n is_desktop,\n violated_event,\n event_name,\n rrmonthlylimit,\n accountid,\n adminname,\n admin,\n appkey,\n category,\n createdat,\n ctalocation,\n email,\n gallerytype,\n groupid,\n isinvalidfacebooktoken,\n isinvalidpinteresttoken,\n isnewslettersubscribed,\n isreviewswidgetinstalled,\n issystemnotificationssubscribed,\n isuserscountlimitreached,\n isusingpackagesservice,\n lastconversionordertime,\n name,\n packagecategories,\n package,\n path,\n phone,\n planname,\n platform,\n popupcontext,\n popupname,\n role,\n signupcountry,\n signupmonthlyorderscount,\n signupphone,\n signuputmcampaign,\n signuputmmedium,\n signuputmsource,\n storecount,\n storedomain,\n title,\n traits_email,\n traits_name,\n traits_plan,\n uiversion,\n url,\n userid,\n website,\n yotpoip,\n billingproviders,\n pendingrrs,\n popuplocation,\n daysinvalidtwittertoken,\n isinvalidtwittertokendate,\n isinvalidtwittertoken,\n packageextensions,\n daysinvalidfacebooktoken,\n isinvalidfacebooktokendate,\n chargeid,\n chargeprice,\n subscriptionstate,\n daysinvalidpinteresttoken,\n isinvalidpinteresttokendate,\n product,\n source,\n iserror,\n numoferrors,\n numofformaterror,\n numofsizeerror,\n adminusername,\n isloyalty,\n isreviews,\n issms,\n isvugc,\n loyaltymerchantid,\n orgid,\n orgkey,\n reviewspackage,\n smsuserid,\n storeid,\n vugcpackage,\n loyaltypackage,\n smspackage,\n storeplatformdomain,\n platformplan,\n os20,\n producturl,\n isinternaluser,\n btncontext,\n btnlocation,\n btnname,\n btntext,\n company_name,\n featurename,\n loyaltyemail,\n merchant_id,\n pagecontext,\n pagename,\n pagesubcontext,\n platform_plan,\n tabname,\n thirty_day_order_volume,\n thirty_day_revenue_cents,\n traits_package,\n traits_platform,\n actioncontext,\n actionlocation,\n actiontype,\n ctaname,\n ctatext,\n ctatype,\n eventtype,\n layout,\n mobiletabposition,\n pagecategory,\n tabposition,\n campaigntype,\n isenabled,\n istargeted,\n count,\n field,\n reasons,\n status,\n popupsubcontext,\n state,\n useremail,\n auth0userid,\n numofformaterrors,\n numofsizeerrors,\n owner,\n installedplatformname,\n IF(message_id IN ('ajs-ab7ad1b69e7f49794d1f65c5ee14fe08',\n 'ajs-7f57ceab198def2978d0b986a7ce3285',\n 'ajs-next-6816c3b51bbe4410860d305106b152e7',\n 'ajs-next-de5a85a5ebc86407596560832aadec6f',\n 'ajs-next-0d6a097289c3e7cb2599d4f50a2ac172',\n 'ajs-next-2ecf626f38c798f031153d8f7b78a8db',\n 'ajs-next-79fc398a87e2b956328eb3f507820010',\n 'ajs-next-7734a9bd15246a425c0a4ac56973f30c',\n 'ajs-next-b17140220765fd94f8d2bc3602cca8f0',\n 'ajs-next-69cf9c17adbcd04fcb929f03ed34dd21',\n 'ajs-8bc5cd1b2f538c8a61db522f16be418d',\n 'ajs-next-14cb195a956f8d3b2b4a7762a930eb67',\n 'ajs-c864b317b15709a4e3a99fae58adb686',\n 'ajs-next-18e40498e53e18e1da1524c31e0be291',\n 'ajs-722f3ad1bca2ed8775f969a2d07d9603',\n 'ajs-next-3d381c537a79ba4b96cec3ffeae30cbd',\n 'ajs-next-b5a6892e29cf56fe91644225c94ac9b1',\n 'ajs-next-27375078b89bcb494d35799120ad6578',\n 'ajs-next-179d23f0f5f8d4d97880e9127e6114e5',\n 'api-2CKXLvAiJqeKQCsjVunZdM6pnLS',\n 'ajs-next-f8a1532df9cf0454f9d42fd8ea07a110',\n 'ajs-next-9eae58337137c393b06ec314ef3ebf47',\n 'ajs-next-1f229471357f1bd9d5e2b3ddea376a36',\n 'ajs-next-9958e38052890751f7d9cc4458472d11',\n 'ajs-next-bd3c1e08b1b334fd959d423781a1c4af'),\n ROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp),\n 1) AS event_row_ranking\nFROM source\n),\n\nplatform_stg__popup_displayed AS (\nSELECT \n partition_date,\n upsolver_schema_version,\n processing_time,\n timestamp,\n message_id,\n user_id,\n anonymous_id,\n channel,\n library_name,\n locale,\n page_url,\n page_referrer,\n page_title,\n page_path,\n is_tablet,\n is_mobile,\n is_desktop,\n violated_event,\n event_name,\n rrmonthlylimit,\n accountid,\n adminname,\n admin,\n appkey,\n category,\n createdat,\n ctalocation,\n email,\n gallerytype,\n groupid,\n isinvalidfacebooktoken,\n isinvalidpinteresttoken,\n isnewslettersubscribed,\n isreviewswidgetinstalled,\n issystemnotificationssubscribed,\n isuserscountlimitreached,\n isusingpackagesservice,\n lastconversionordertime,\n name,\n packagecategories,\n package,\n path,\n phone,\n planname,\n platform,\n popupcontext,\n popupname,\n role,\n signupcountry,\n signupmonthlyorderscount,\n signupphone,\n signuputmcampaign,\n signuputmmedium,\n signuputmsource,\n storecount,\n storedomain,\n title,\n traits_email,\n traits_name,\n traits_plan,\n uiversion,\n url,\n userid,\n website,\n yotpoip,\n billingproviders,\n pendingrrs,\n popuplocation,\n daysinvalidtwittertoken,\n isinvalidtwittertokendate,\n isinvalidtwittertoken,\n packageextensions,\n daysinvalidfacebooktoken,\n isinvalidfacebooktokendate,\n chargeid,\n chargeprice,\n subscriptionstate,\n daysinvalidpinteresttoken,\n isinvalidpinteresttokendate,\n product,\n source,\n iserror,\n numoferrors,\n numofformaterror,\n numofsizeerror,\n adminusername,\n isloyalty,\n isreviews,\n issms,\n isvugc,\n loyaltymerchantid,\n orgid,\n orgkey,\n reviewspackage,\n smsuserid,\n storeid,\n vugcpackage,\n loyaltypackage,\n smspackage,\n storeplatformdomain,\n platformplan,\n os20,\n producturl,\n isinternaluser,\n btncontext,\n btnlocation,\n btnname,\n btntext,\n company_name,\n featurename,\n loyaltyemail,\n merchant_id,\n pagecontext,\n pagename,\n pagesubcontext,\n platform_plan,\n tabname,\n thirty_day_order_volume,\n thirty_day_revenue_cents,\n traits_package,\n traits_platform,\n actioncontext,\n actionlocation,\n actiontype,\n ctaname,\n ctatext,\n ctatype,\n eventtype,\n layout,\n mobiletabposition,\n pagecategory,\n tabposition,\n campaigntype,\n isenabled,\n istargeted,\n count,\n field,\n reasons,\n status,\n popupsubcontext,\n state,\n useremail,\n auth0userid,\n numofformaterrors,\n numofsizeerrors,\n owner,\n installedplatformname\nFROM row_ranking_for_event\nWHERE event_row_ranking = 1\n)\n\nSELECT * \nFROM platform_stg__popup_displayed", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__product_enabled": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__product_enabled", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.sql", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.sql", "unique_id": "model.yoda.platform_stg__product_enabled", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__product_enabled", "platform_stg__product_enabled"], "alias": "platform_stg__product_enabled", "checksum": {"name": "sha256", "checksum": "d90e773240e261d1cb246f9ce0253c4118bd7996bfe1d2e52dad549ae9cbbe41"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enablementlocation": {"name": "enablementlocation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enablementsource": {"name": "enablementsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isfirstproduct": {"name": "isfirstproduct", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackage": {"name": "newpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionstate": {"name": "subscriptionstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "packageextensions": {"name": "packageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrerproduct": {"name": "referrerproduct", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrercampaign": {"name": "referrercampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082683.366343, "relation_name": "dev_dkruh1.platform_stg__product_enabled", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__segment', 'product_enabled') }}\n\n), platform_stg__product_enabled AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tcreatedat,\n\t\temail,\n\t\tenablementlocation,\n\t\tenablementsource,\n\t\tgroupid,\n\t\tisfirstproduct,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tnewpackage,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tphone,\n\t\tplanname,\n\t\tplatform,\n\t\tproduct,\n\t\treviewspackage,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\tvugcpackage,\n\t\twebsite,\n\t\tsmspackage,\n\t\tbillingproviders,\n\t\tlastconversionordertime,\n\t\tpendingrrs,\n\t\tsubscriptionstate,\n\t\tisinvalidfacebooktoken,\n\t\tloyaltypackage,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tisinvalidtwittertoken,\n\t\tpackageextensions,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tchargeid,\n\t\tchargeprice,\n\t\treferrerproduct,\n\t\treferrercampaign,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\tadminusername,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tuseremail,\n\t\tplatformplan\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__product_enabled", "language": "sql", "refs": [], "sources": [["platform__segment", "product_enabled"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__segment.product_enabled"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.product_enabled\n\n), platform_stg__product_enabled AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tcreatedat,\n\t\temail,\n\t\tenablementlocation,\n\t\tenablementsource,\n\t\tgroupid,\n\t\tisfirstproduct,\n\t\tisnewslettersubscribed,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tnewpackage,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tphone,\n\t\tplanname,\n\t\tplatform,\n\t\tproduct,\n\t\treviewspackage,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\tstoredomain,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuserid,\n\t\tvugcpackage,\n\t\twebsite,\n\t\tsmspackage,\n\t\tbillingproviders,\n\t\tlastconversionordertime,\n\t\tpendingrrs,\n\t\tsubscriptionstate,\n\t\tisinvalidfacebooktoken,\n\t\tloyaltypackage,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tisinvalidtwittertoken,\n\t\tpackageextensions,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tchargeid,\n\t\tchargeprice,\n\t\treferrerproduct,\n\t\treferrercampaign,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tisinvalidpinteresttoken,\n\t\tadminusername,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tissms,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\torgid,\n\t\torgkey,\n\t\tsmsuserid,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\tuseremail,\n\t\tplatformplan\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__product_enabled", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__products": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__products", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.sql", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.sql", "unique_id": "model.yoda.platform_stg__products", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__products", "platform_stg__products"], "alias": "platform_stg__products", "checksum": {"name": "sha256", "checksum": "a26d40118ad24026442301bca70e7e36faa22ab2efb52543cfa69f89b8a2488c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform_stg__products", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_valid_url_format": {"name": "is_valid_url_format", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price": {"name": "price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "inventory_quantity": {"name": "inventory_quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_discontinued": {"name": "is_discontinued", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "handle": {"name": "handle", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "custom_properties": {"name": "custom_properties", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_created_at": {"name": "external_created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "external_updated_at": {"name": "external_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "compare_at_price": {"name": "compare_at_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sku": {"name": "sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__products/platform_stg__products.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.4021578, "relation_name": "dev_dkruh1.platform_stg__products", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__products', 'products') }}\n\n), platform_stg__products AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\texternal_id,\n\t\tname,\n\t\tdescription,\n\t\turl,\n\t\tis_valid_url_format,\n\t\tprice,\n\t\tcurrency,\n\t\tinventory_quantity,\n\t\tis_discontinued,\n\t\thandle,\n\t\tgroup_id,\n\t\tcustom_properties,\n\t\texternal_created_at,\n\t\texternal_updated_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tstatus,\n\t\tcompare_at_price,\n\t\tsku\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__products", "language": "sql", "refs": [], "sources": [["platform__products", "products"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__products.products"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__products/platform_stg__products.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM products.products\n\n), platform_stg__products AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\texternal_id,\n\t\tname,\n\t\tdescription,\n\t\turl,\n\t\tis_valid_url_format,\n\t\tprice,\n\t\tcurrency,\n\t\tinventory_quantity,\n\t\tis_discontinued,\n\t\thandle,\n\t\tgroup_id,\n\t\tcustom_properties,\n\t\texternal_created_at,\n\t\texternal_updated_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tstatus,\n\t\tcompare_at_price,\n\t\tsku\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__products", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__provider_types": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__provider_types", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.sql", "original_file_path": "models/platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.sql", "unique_id": "model.yoda.platform_stg__provider_types", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__provider_types", "platform_stg__provider_types"], "alias": "platform_stg__provider_types", "checksum": {"name": "sha256", "checksum": "4d1d20de4fc5356434d058faa4451aede2cedcf208fbce0542726eff63f61fad"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "billing provider type codes", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "schema_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts_ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.416921, "relation_name": "dev_dkruh1.platform_stg__provider_types", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'provider_types') }}\n\n), platform_stg__provider_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__provider_types", "language": "sql", "refs": [], "sources": [["platform__billing", "provider_types"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.provider_types"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.provider_types\n\n), platform_stg__provider_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__provider_types", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__sections": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__sections", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__sections/platform_stg__sections.sql", "original_file_path": "models/platform/staging/base/platform_stg__sections/platform_stg__sections.sql", "unique_id": "model.yoda.platform_stg__sections", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__sections", "platform_stg__sections"], "alias": "platform_stg__sections", "checksum": {"name": "sha256", "checksum": "3005f9e1c85e4259a1b28a41d2626c3eeb78e397e87792b2f033078330c77693"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "View of yotpo home screen widgets sections", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__sections/platform_stg__sections.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.4346852, "relation_name": "dev_dkruh1.platform_stg__sections", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__homescreen', 'sections') }}\n\n), platform_stg__sections AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__sections", "language": "sql", "refs": [], "sources": [["platform__homescreen", "sections"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__homescreen.sections"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__sections/platform_stg__sections.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM homescreen.sections\n\n), platform_stg__sections AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__sections", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__store_applications": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__store_applications", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.sql", "original_file_path": "models/platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.sql", "unique_id": "model.yoda.platform_stg__store_applications", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__store_applications", "platform_stg__store_applications"], "alias": "platform_stg__store_applications", "checksum": {"name": "sha256", "checksum": "ea783840608a16a9572c07b13364b34a499cd874ec052c9e79a3ae34013b784e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform_stg__store_applications", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "application_id": {"name": "application_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "disconnected_at": {"name": "disconnected_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.4515648, "relation_name": "dev_dkruh1.platform_stg__store_applications", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('platform__integrationscenter', 'store_applications') }}\n\n), platform_stg__store_applications AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\tapplication_id,\n\t\tdisconnected_at,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__store_applications", "language": "sql", "refs": [], "sources": [["platform__integrationscenter", "store_applications"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__integrationscenter.store_applications"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM integrationscenter.store_applications\n\n), platform_stg__store_applications AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\tapplication_id,\n\t\tdisconnected_at,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__store_applications", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__store_platforms": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__store_platforms", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.sql", "original_file_path": "models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.sql", "unique_id": "model.yoda.platform_stg__store_platforms", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__store_platforms", "platform_stg__store_platforms"], "alias": "platform_stg__store_platforms", "checksum": {"name": "sha256", "checksum": "bfd5d7d67eac58c35fa9f77a3cf414f31ed647298406836a476e628411875ca7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform_stg__store_platforms", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_type_id": {"name": "platform_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_blacklisted": {"name": "is_blacklisted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082683.466639, "relation_name": "dev_dkruh1.platform_stg__store_platforms", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'account_platforms') }}\n\n), platform_stg__store_platforms AS (\n\n SELECT id,\n account_id AS store_id,\n platform_type_id,\n CASE WHEN (shop_domain LIKE 'dev.%' OR\n shop_domain LIKE '%.dev' OR\n shop_domain LIKE 'staging%' OR\n shop_domain LIKE '%test@%' OR\n shop_domain LIKE '%test-%' OR\n shop_domain LIKE '%test.%' OR\n shop_domain LIKE '%dev-%' OR\n shop_domain LIKE '%teststore%' OR\n shop_domain LIKE '%sandbox.%' OR\n (shop_domain LIKE '%yotpo%' AND shop_domain NOT LIKE '%utm_source%'))\n THEN 1 ELSE 0 END AS is_blacklisted,\n updated_at\n FROM source\n\n)\n\nSELECT * FROM platform_stg__store_platforms", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "account_platforms"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.account_platforms"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.account_platforms\n\n), platform_stg__store_platforms AS (\n\n SELECT id,\n account_id AS store_id,\n platform_type_id,\n CASE WHEN (shop_domain LIKE 'dev.%' OR\n shop_domain LIKE '%.dev' OR\n shop_domain LIKE 'staging%' OR\n shop_domain LIKE '%test@%' OR\n shop_domain LIKE '%test-%' OR\n shop_domain LIKE '%test.%' OR\n shop_domain LIKE '%dev-%' OR\n shop_domain LIKE '%teststore%' OR\n shop_domain LIKE '%sandbox.%' OR\n (shop_domain LIKE '%yotpo%' AND shop_domain NOT LIKE '%utm_source%'))\n THEN 1 ELSE 0 END AS is_blacklisted,\n updated_at\n FROM source\n\n)\n\nSELECT * FROM platform_stg__store_platforms", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__stores": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__stores", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__stores/platform_stg__stores.sql", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.sql", "unique_id": "model.yoda.platform_stg__stores", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__stores", "platform_stg__stores"], "alias": "platform_stg__stores", "checksum": {"name": "sha256", "checksum": "e53a4fd40484e0b75f8bd5e3d23a82eb515dd02ec608dcda6eef32faa69ac2a4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform__platform_stg__stores", "columns": {"store_id": {"name": "store_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key": {"name": "app_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_test": {"name": "is_test", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_active": {"name": "is_active", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "store_created_at": {"name": "store_created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_name": {"name": "store_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_language": {"name": "store_language", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__stores/platform_stg__stores.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082683.498166, "relation_name": "dev_dkruh1.platform_stg__stores", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'accounts') }}\n\n), platform_stg__stores AS (\n\n SELECT id AS store_id,\n CAST(organization_id AS INTEGER) AS organization_id,\n app_key AS app_key,\n domain AS store_domain,\n is_test,\n CAST(active AS SMALLINT) AS is_active,\n created_at AS store_created_at,\n name AS store_name,\n customer_language AS store_language,\n updated_at\n FROM source\n\n)\n\nSELECT * FROM platform_stg__stores", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "accounts"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.accounts"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__stores/platform_stg__stores.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.accounts\n\n), platform_stg__stores AS (\n\n SELECT id AS store_id,\n CAST(organization_id AS INTEGER) AS organization_id,\n app_key AS app_key,\n domain AS store_domain,\n is_test,\n CAST(active AS SMALLINT) AS is_active,\n created_at AS store_created_at,\n name AS store_name,\n customer_language AS store_language,\n updated_at\n FROM source\n\n)\n\nSELECT * FROM platform_stg__stores", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__subscription_cycle_usages": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__subscription_cycle_usages", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.sql", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.sql", "unique_id": "model.yoda.platform_stg__subscription_cycle_usages", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__subscription_cycle_usages", "platform_stg__subscription_cycle_usages"], "alias": "platform_stg__subscription_cycle_usages", "checksum": {"name": "sha256", "checksum": "ce75f58abc90055dfe64a787677cec27137b874bc700e1bc38f236b1f179c7da"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "billing subscription cycle usages table", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "upsolver_schema_version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing_time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts_ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_provider_id": {"name": "subscription_provider_id", "description": "subscription_provider_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_cycle_date": {"name": "billing_cycle_date", "description": "billing_cycle_date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "usages_count": {"name": "usages_count", "description": "usages_count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overages_cap": {"name": "overages_cap", "description": "overages_cap", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "created_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "updated_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_usages_setting_id": {"name": "package_usages_setting_id", "description": "package_usages_setting_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "closed_at": {"name": "closed_at", "description": "closed_at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "carried_paid_usages": {"name": "carried_paid_usages", "description": "carried_paid_usage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.5446348, "relation_name": "dev_dkruh1.platform_stg__subscription_cycle_usages", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'subscription_cycle_usages') }}\n\n), platform_stg__subscription_cycle_usages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsubscription_provider_id,\n\t\tbilling_cycle_date,\n\t\tusages_count,\n\t\toverages_cap,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tpackage_usages_setting_id,\n\t\tclosed_at,\n\t\tcarried_paid_usages\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscription_cycle_usages", "language": "sql", "refs": [], "sources": [["platform__billing", "subscription_cycle_usages"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.subscription_cycle_usages"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.subscription_cycle_usages\n\n), platform_stg__subscription_cycle_usages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsubscription_provider_id,\n\t\tbilling_cycle_date,\n\t\tusages_count,\n\t\toverages_cap,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tpackage_usages_setting_id,\n\t\tclosed_at,\n\t\tcarried_paid_usages\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscription_cycle_usages", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__subscription_pending_usages": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__subscription_pending_usages", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.sql", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.sql", "unique_id": "model.yoda.platform_stg__subscription_pending_usages", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__subscription_pending_usages", "platform_stg__subscription_pending_usages"], "alias": "platform_stg__subscription_pending_usages", "checksum": {"name": "sha256", "checksum": "4cac5d3d927e2de074b502ff68bb437d185dcef0428ae758fbc367e6e5e19837"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "billing usges daily - pending records - subscription_pending_usages table", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "usages_count": {"name": "usages_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_provider_id": {"name": "subscription_provider_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "package_usages_setting_id": {"name": "package_usages_setting_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "process_started_at": {"name": "process_started_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "process_completed_at": {"name": "process_completed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "provider_charge_id": {"name": "provider_charge_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "uuid": {"name": "uuid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_usages": {"name": "free_usages", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "paid_usages": {"name": "paid_usages", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "exceeded_usages": {"name": "exceeded_usages", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "paid_amount": {"name": "paid_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.5680816, "relation_name": "dev_dkruh1.platform_stg__subscription_pending_usages", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'subscription_pending_usages') }}\n\n), platform_stg__subscription_pending_usages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tusages_count,\n\t\tsubscription_provider_id,\n\t\tpackage_usages_setting_id,\n\t\tprocess_started_at,\n\t\tprocess_completed_at,\n\t\tprovider_charge_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tuuid,\n\t\tfree_usages,\n\t\tpaid_usages,\n\t\texceeded_usages,\n\t\tpaid_amount\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscription_pending_usages", "language": "sql", "refs": [], "sources": [["platform__billing", "subscription_pending_usages"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.subscription_pending_usages"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.subscription_pending_usages\n\n), platform_stg__subscription_pending_usages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tusages_count,\n\t\tsubscription_provider_id,\n\t\tpackage_usages_setting_id,\n\t\tprocess_started_at,\n\t\tprocess_completed_at,\n\t\tprovider_charge_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tuuid,\n\t\tfree_usages,\n\t\tpaid_usages,\n\t\texceeded_usages,\n\t\tpaid_amount\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscription_pending_usages", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__subscription_providers": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__subscription_providers", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.sql", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.sql", "unique_id": "model.yoda.platform_stg__subscription_providers", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__subscription_providers", "platform_stg__subscription_providers"], "alias": "platform_stg__subscription_providers", "checksum": {"name": "sha256", "checksum": "2eb3bb52b8841ed1c15a6df0ea2c8644b58f88aef13999d5f9005810201cc1df"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Billing subscirption record for managed organization/stores per each category.", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provider_type_id": {"name": "provider_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "category_name": {"name": "category_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_status_id": {"name": "subscription_status_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_subscription_metadata": {"name": "external_subscription_metadata", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted_at": {"name": "deleted_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.589264, "relation_name": "dev_dkruh1.platform_stg__subscription_providers", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'subscription_providers') }}\n\n), platform_stg__subscription_providers AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torganization_key,\n\t\tprovider_type_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tcategory_name,\n\t\tsubscription_status_id,\n\t\texternal_subscription_metadata,\n\t\tdeleted_at,\n\t\tapp_key\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscription_providers", "language": "sql", "refs": [], "sources": [["platform__billing", "subscription_providers"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.subscription_providers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.subscription_providers\n\n), platform_stg__subscription_providers AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torganization_key,\n\t\tprovider_type_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tcategory_name,\n\t\tsubscription_status_id,\n\t\texternal_subscription_metadata,\n\t\tdeleted_at,\n\t\tapp_key\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscription_providers", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__subscription_statuses": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__subscription_statuses", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.sql", "original_file_path": "models/platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.sql", "unique_id": "model.yoda.platform_stg__subscription_statuses", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__subscription_statuses", "platform_stg__subscription_statuses"], "alias": "platform_stg__subscription_statuses", "checksum": {"name": "sha256", "checksum": "3d55e0ae8c36517958071fa2ec6dbc82c35333c375a292b123d9768007daa8c5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Billing statuses of subsciription providers", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.604053, "relation_name": "dev_dkruh1.platform_stg__subscription_statuses", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'subscription_statuses') }}\n\n), platform_stg__subscription_statuses AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstatus\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscription_statuses", "language": "sql", "refs": [], "sources": [["platform__billing", "subscription_statuses"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.subscription_statuses"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.subscription_statuses\n\n), platform_stg__subscription_statuses AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstatus\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscription_statuses", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__subscription_usages_settings": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__subscription_usages_settings", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.sql", "original_file_path": "models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.sql", "unique_id": "model.yoda.platform_stg__subscription_usages_settings", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__subscription_usages_settings", "platform_stg__subscription_usages_settings"], "alias": "platform_stg__subscription_usages_settings", "checksum": {"name": "sha256", "checksum": "b552fd94408a8cbb4ca291ab9cfc2ddde588bc3b58c86a4e75999ab0eb696bfd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Billign subscription usages settings table", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_provider_id": {"name": "subscription_provider_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overages_cap": {"name": "overages_cap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "metric_name": {"name": "metric_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.6217976, "relation_name": "dev_dkruh1.platform_stg__subscription_usages_settings", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'subscription_usages_settings') }}\n\n), platform_stg__subscription_usages_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsubscription_provider_id,\n\t\toverages_cap,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tmetric_name\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscription_usages_settings", "language": "sql", "refs": [], "sources": [["platform__billing", "subscription_usages_settings"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.subscription_usages_settings"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.subscription_usages_settings\n\n), platform_stg__subscription_usages_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsubscription_provider_id,\n\t\toverages_cap,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tmetric_name\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__subscription_usages_settings", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__synergies_crud": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__synergies_crud", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.sql", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.sql", "unique_id": "model.yoda.platform_stg__synergies_crud", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__synergies_crud", "platform_stg__synergies_crud"], "alias": "platform_stg__synergies_crud", "checksum": {"name": "sha256", "checksum": "1fe7b5dd67f0ca3c7b61d937b3f0c899c5c9f9102651cc6f80ae170c172c8870"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "View of product synergies enabled/disabled events", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "op": {"name": "op", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_id": {"name": "widget_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.64076, "relation_name": "dev_dkruh1.platform_stg__synergies_crud", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__homescreen', 'synergies_crud') }}\n\n), platform_stg__synergies_crud AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\top,\n\t\tts_ms,\n\t\tstore_id,\n\t\twidget_id,\n\t\tstatus,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tupsolver_schema_version\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__synergies_crud", "language": "sql", "refs": [], "sources": [["platform__homescreen", "synergies_crud"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__homescreen.synergies_crud"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM homescreen.synergies_crud\n\n), platform_stg__synergies_crud AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\top,\n\t\tts_ms,\n\t\tstore_id,\n\t\twidget_id,\n\t\tstatus,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tupsolver_schema_version\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__synergies_crud", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__timezone_country_mapping": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__timezone_country_mapping", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.sql", "original_file_path": "models/platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.sql", "unique_id": "model.yoda.platform_stg__timezone_country_mapping", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__timezone_country_mapping", "platform_stg__timezone_country_mapping"], "alias": "platform_stg__timezone_country_mapping", "checksum": {"name": "sha256", "checksum": "88749a4059147e5e5ae70d311c6021eb1d4371d8a93c6911442f77818ea091d9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "analytics"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "analytics"], "description": "platform_stg__timezone_country_mapping", "columns": {"timezone": {"name": "timezone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_code": {"name": "country_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_name": {"name": "country_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region_name": {"name": "region_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "analytics"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082683.6561146, "relation_name": "dev_dkruh1.platform_stg__timezone_country_mapping", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__static', 'timezone_country_mapping') }}\n\n), platform_stg__timezone_country_mapping AS (\n\n SELECT \n timezone,\n country_code,\n country_name,\n region_name,\n dwh_updated_at\n FROM source\n\n)\n\nSELECT\n timezone,\n country_code,\n country_name,\n region_name,\n dwh_updated_at\nFROM platform_stg__timezone_country_mapping", "language": "sql", "refs": [], "sources": [["platform__static", "timezone_country_mapping"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__static.timezone_country_mapping"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM static.timezone_country_mapping\n\n), platform_stg__timezone_country_mapping AS (\n\n SELECT \n timezone,\n country_code,\n country_name,\n region_name,\n dwh_updated_at\n FROM source\n\n)\n\nSELECT\n timezone,\n country_code,\n country_name,\n region_name,\n dwh_updated_at\nFROM platform_stg__timezone_country_mapping", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__uninstalled_yotpo": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__uninstalled_yotpo", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.sql", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.sql", "unique_id": "model.yoda.platform_stg__uninstalled_yotpo", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__uninstalled_yotpo", "platform_stg__uninstalled_yotpo"], "alias": "platform_stg__uninstalled_yotpo", "checksum": {"name": "sha256", "checksum": "c337d9e0fac1e263b0b67f7d91f4114c4afce6006c0f4c24dca855ad0518ce85"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rrssentinbillingcycle": {"name": "rrssentinbillingcycle", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingprovider": {"name": "billingprovider", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "intercomuserhash": {"name": "intercomuserhash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isautopublishenabled": {"name": "isautopublishenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledcoupons": {"name": "isenabledcoupons", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledcustomreviews": {"name": "isenabledcustomreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledgsr": {"name": "isenabledgsr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledmap": {"name": "isenabledmap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpla": {"name": "isenabledpla", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpromotedproductsemail": {"name": "isenabledpromotedproductsemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpromotedproductswidget": {"name": "isenabledpromotedproductswidget", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledqna": {"name": "isenabledqna", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledrichsnippets": {"name": "isenabledrichsnippets", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasbadge": {"name": "ishasbadge", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascomments": {"name": "ishascomments", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasconverttositereview": {"name": "ishasconverttositereview", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascoupons": {"name": "ishascoupons", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascsseditor": {"name": "ishascsseditor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascustomreviews": {"name": "ishascustomreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasdedicatedpage": {"name": "ishasdedicatedpage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasgsr": {"name": "ishasgsr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasnewmainwidgetlayout": {"name": "ishasnewmainwidgetlayout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspla": {"name": "ishaspla", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspromotedproductsemail": {"name": "ishaspromotedproductsemail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspromotedproductswidget": {"name": "ishaspromotedproductswidget", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasqna": {"name": "ishasqna", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasreviewscarousel": {"name": "ishasreviewscarousel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasreviewstab": {"name": "ishasreviewstab", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasrichsnippets": {"name": "ishasrichsnippets", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmai": {"name": "ishassentmai", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmas": {"name": "ishassentmas", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmap": {"name": "ishassentmap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentsitereminder": {"name": "ishassentsitereminder", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassenttpr": {"name": "ishassenttpr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassenttsr": {"name": "ishassenttsr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasshoppableinstagram": {"name": "ishasshoppableinstagram", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassocialpush": {"name": "ishassocialpush", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasstarrating": {"name": "ishasstarrating", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishastpr": {"name": "ishastpr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishastsr": {"name": "ishastsr", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ismapcustomfieldsenabled": {"name": "ismapcustomfieldsenabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreceivesentimentnotification": {"name": "isreceivesentimentnotification", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "traits_email": {"name": "traits_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uninstallsource": {"name": "uninstallsource", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoproductscorev2": {"name": "yotpoproductscorev2", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeid": {"name": "chargeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nextchargedate": {"name": "nextchargedate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pixelversion": {"name": "pixelversion", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargifybalance": {"name": "chargifybalance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargifyrevenue": {"name": "chargifyrevenue", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "creditcardlast4digits": {"name": "creditcardlast4digits", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creditcardtype": {"name": "creditcardtype", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysindunning": {"name": "daysindunning", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daystorenewal": {"name": "daystorenewal", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "nameoncreditcard": {"name": "nameoncreditcard", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paysvia": {"name": "paysvia", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurringpaymentinterval": {"name": "recurringpaymentinterval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "renewaldate": {"name": "renewaldate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoproductscore": {"name": "yotpoproductscore", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "pandas", "created_by": "pandas@yotpo.com", "alert_channels": ["pandas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082683.7698205, "relation_name": "dev_dkruh1.platform_stg__uninstalled_yotpo", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__segment', 'uninstalled_yotpo') }}\n\n), platform_stg__uninstalled_yotpo AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\trrssentinbillingcycle,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tbillingprovider,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tintercomuserhash,\n\t\tisautopublishenabled,\n\t\tisenabledcoupons,\n\t\tisenabledcustomreviews,\n\t\tisenabledgsr,\n\t\tisenabledmap,\n\t\tisenabledpla,\n\t\tisenabledpromotedproductsemail,\n\t\tisenabledpromotedproductswidget,\n\t\tisenabledqna,\n\t\tisenabledrichsnippets,\n\t\tishasbadge,\n\t\tishascomments,\n\t\tishasconverttositereview,\n\t\tishascoupons,\n\t\tishascsseditor,\n\t\tishascustomreviews,\n\t\tishasdedicatedpage,\n\t\tishasgsr,\n\t\tishasnewmainwidgetlayout,\n\t\tishaspla,\n\t\tishaspromotedproductsemail,\n\t\tishaspromotedproductswidget,\n\t\tishasqna,\n\t\tishasreviewscarousel,\n\t\tishasreviewstab,\n\t\tishasrichsnippets,\n\t\tishassentmai,\n\t\tishassentmas,\n\t\tishassentmap,\n\t\tishassentsitereminder,\n\t\tishassenttpr,\n\t\tishassenttsr,\n\t\tishasshoppableinstagram,\n\t\tishassocialpush,\n\t\tishasstarrating,\n\t\tishastpr,\n\t\tishastsr,\n\t\tismapcustomfieldsenabled,\n\t\tisnewslettersubscribed,\n\t\tisreceivesentimentnotification,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tphone,\n\t\tplanname,\n\t\tplatform,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuninstallsource,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoproductscorev2,\n\t\tisinvalidfacebooktoken,\n\t\tlastconversionordertime,\n\t\tpendingrrs,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tnextchargedate,\n\t\tsubscriptionstate,\n\t\tisinvalidtwittertoken,\n\t\tpixelversion,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tpackageextensions,\n\t\tchargifybalance,\n\t\tchargifyrevenue,\n\t\tcreditcardlast4digits,\n\t\tcreditcardtype,\n\t\tdaysindunning,\n\t\tdaystorenewal,\n\t\tnameoncreditcard,\n\t\tpaysvia,\n\t\trecurringpaymentinterval,\n\t\trenewaldate,\n\t\tyotpoproductscore,\n\t\tisinvalidpinteresttoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tbillingproviders,\n\t\tstoredomain\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__uninstalled_yotpo", "language": "sql", "refs": [], "sources": [["platform__segment", "uninstalled_yotpo"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__segment.uninstalled_yotpo"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.uninstalled_yotpo\n\n), platform_stg__uninstalled_yotpo AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\trrmonthlylimit,\n\t\trrssentinbillingcycle,\n\t\taccountid,\n\t\tadminname,\n\t\tappkey,\n\t\tbillingprovider,\n\t\tcreatedat,\n\t\temail,\n\t\tgroupid,\n\t\tintercomuserhash,\n\t\tisautopublishenabled,\n\t\tisenabledcoupons,\n\t\tisenabledcustomreviews,\n\t\tisenabledgsr,\n\t\tisenabledmap,\n\t\tisenabledpla,\n\t\tisenabledpromotedproductsemail,\n\t\tisenabledpromotedproductswidget,\n\t\tisenabledqna,\n\t\tisenabledrichsnippets,\n\t\tishasbadge,\n\t\tishascomments,\n\t\tishasconverttositereview,\n\t\tishascoupons,\n\t\tishascsseditor,\n\t\tishascustomreviews,\n\t\tishasdedicatedpage,\n\t\tishasgsr,\n\t\tishasnewmainwidgetlayout,\n\t\tishaspla,\n\t\tishaspromotedproductsemail,\n\t\tishaspromotedproductswidget,\n\t\tishasqna,\n\t\tishasreviewscarousel,\n\t\tishasreviewstab,\n\t\tishasrichsnippets,\n\t\tishassentmai,\n\t\tishassentmas,\n\t\tishassentmap,\n\t\tishassentsitereminder,\n\t\tishassenttpr,\n\t\tishassenttsr,\n\t\tishasshoppableinstagram,\n\t\tishassocialpush,\n\t\tishasstarrating,\n\t\tishastpr,\n\t\tishastsr,\n\t\tismapcustomfieldsenabled,\n\t\tisnewslettersubscribed,\n\t\tisreceivesentimentnotification,\n\t\tisreviewswidgetinstalled,\n\t\tissystemnotificationssubscribed,\n\t\tisuserscountlimitreached,\n\t\tisusingpackagesservice,\n\t\tname,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tphone,\n\t\tplanname,\n\t\tplatform,\n\t\trole,\n\t\tsignupcountry,\n\t\tsignupmonthlyorderscount,\n\t\tsignupphone,\n\t\tsignuputmcampaign,\n\t\tsignuputmmedium,\n\t\tsignuputmsource,\n\t\tstorecount,\n\t\ttraits_email,\n\t\ttraits_name,\n\t\ttraits_plan,\n\t\tuninstallsource,\n\t\tuserid,\n\t\twebsite,\n\t\tyotpoproductscorev2,\n\t\tisinvalidfacebooktoken,\n\t\tlastconversionordertime,\n\t\tpendingrrs,\n\t\tchargeid,\n\t\tchargeprice,\n\t\tnextchargedate,\n\t\tsubscriptionstate,\n\t\tisinvalidtwittertoken,\n\t\tpixelversion,\n\t\tdaysinvalidfacebooktoken,\n\t\tisinvalidfacebooktokendate,\n\t\tpackageextensions,\n\t\tchargifybalance,\n\t\tchargifyrevenue,\n\t\tcreditcardlast4digits,\n\t\tcreditcardtype,\n\t\tdaysindunning,\n\t\tdaystorenewal,\n\t\tnameoncreditcard,\n\t\tpaysvia,\n\t\trecurringpaymentinterval,\n\t\trenewaldate,\n\t\tyotpoproductscore,\n\t\tisinvalidpinteresttoken,\n\t\tdaysinvalidtwittertoken,\n\t\tisinvalidtwittertokendate,\n\t\tdaysinvalidpinteresttoken,\n\t\tisinvalidpinteresttokendate,\n\t\tbillingproviders,\n\t\tstoredomain\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__uninstalled_yotpo", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__usages": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__usages", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.sql", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.sql", "unique_id": "model.yoda.platform_stg__usages", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__usages", "platform_stg__usages"], "alias": "platform_stg__usages", "checksum": {"name": "sha256", "checksum": "04df326039868a233f12163dae516f632e92ce22b294e4b0aadd977cca54af83"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Billing usages that were added by product lines", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_name": {"name": "metric_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_name": {"name": "package_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "units": {"name": "units", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usage_external_id": {"name": "usage_external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "backfill": {"name": "backfill", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_pending_usage_id": {"name": "subscription_pending_usage_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__usages/platform_stg__usages.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.7994843, "relation_name": "dev_dkruh1.platform_stg__usages", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'usages') }}\n\n), platform_stg__usages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torganization_key,\n\t\tstore_id,\n\t\tcategory_name,\n\t\tmetric_name,\n\t\tpackage_name,\n\t\tunits,\n\t\tusage_external_id,\n\t\tbackfill,\n\t\tsubscription_pending_usage_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tdescription\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__usages", "language": "sql", "refs": [], "sources": [["platform__billing", "usages"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.usages"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__usages/platform_stg__usages.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.usages\n\n), platform_stg__usages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torganization_key,\n\t\tstore_id,\n\t\tcategory_name,\n\t\tmetric_name,\n\t\tpackage_name,\n\t\tunits,\n\t\tusage_external_id,\n\t\tbackfill,\n\t\tsubscription_pending_usage_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tdescription\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__usages", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__usages_history": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__usages_history", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.sql", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.sql", "unique_id": "model.yoda.platform_stg__usages_history", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__usages_history", "platform_stg__usages_history"], "alias": "platform_stg__usages_history", "checksum": {"name": "sha256", "checksum": "2d6c0faeec6a492b6645e5b6690ab447fed0b65031fa57a47039f012168bd9aa"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Billing all history of usages that were added to billing by product lines", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_name": {"name": "metric_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_name": {"name": "package_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "units": {"name": "units", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usage_external_id": {"name": "usage_external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "backfill": {"name": "backfill", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_pending_usage_id": {"name": "subscription_pending_usage_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.8245828, "relation_name": "dev_dkruh1.platform_stg__usages_history", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'usages_history') }}\n\n), platform_stg__usages_history AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torganization_key,\n\t\tstore_id,\n\t\tcategory_name,\n\t\tmetric_name,\n\t\tpackage_name,\n\t\tunits,\n\t\tusage_external_id,\n\t\tbackfill,\n\t\tsubscription_pending_usage_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tdescription,\n\t\tis_deleted\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__usages_history", "language": "sql", "refs": [], "sources": [["platform__billing", "usages_history"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.usages_history"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.usages_history\n\n), platform_stg__usages_history AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torganization_key,\n\t\tstore_id,\n\t\tcategory_name,\n\t\tmetric_name,\n\t\tpackage_name,\n\t\tunits,\n\t\tusage_external_id,\n\t\tbackfill,\n\t\tsubscription_pending_usage_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tdescription,\n\t\tis_deleted\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__usages_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__usages_tiers_settings": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__usages_tiers_settings", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.sql", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.sql", "unique_id": "model.yoda.platform_stg__usages_tiers_settings", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__usages_tiers_settings", "platform_stg__usages_tiers_settings"], "alias": "platform_stg__usages_tiers_settings", "checksum": {"name": "sha256", "checksum": "4de506bc103af94990f61824fa3300e3b139e37932e08d393c47b36bb0fae33c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Billing usages tiers settings", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_usages_setting_id": {"name": "package_usages_setting_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "min_limit": {"name": "min_limit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "max_limit": {"name": "max_limit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "per_unit_price": {"name": "per_unit_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "srozner@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.8430712, "relation_name": "dev_dkruh1.platform_stg__usages_tiers_settings", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__billing', 'usages_tiers_settings') }}\n\n), platform_stg__usages_tiers_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpackage_usages_setting_id,\n\t\tmin_limit,\n\t\tmax_limit,\n\t\tper_unit_price,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__usages_tiers_settings", "language": "sql", "refs": [], "sources": [["platform__billing", "usages_tiers_settings"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__billing.usages_tiers_settings"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM billing.usages_tiers_settings\n\n), platform_stg__usages_tiers_settings AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tpackage_usages_setting_id,\n\t\tmin_limit,\n\t\tmax_limit,\n\t\tper_unit_price,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__usages_tiers_settings", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__users_organizations": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__users_organizations", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.sql", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.sql", "unique_id": "model.yoda.platform_stg__users_organizations", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__users_organizations", "platform_stg__users_organizations"], "alias": "platform_stg__users_organizations", "checksum": {"name": "sha256", "checksum": "acb5eea46b26a46ecdf40b701384259f0b5bf9ab8effe2dd23f0fa1be815d5a3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Tables written by yotpo R&D and serve the platform", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "add_to_future_stores": {"name": "add_to_future_stores", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "default_role_id": {"name": "default_role_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted_from_organization": {"name": "deleted_from_organization", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "invites_counter": {"name": "invites_counter", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.8624392, "relation_name": "dev_dkruh1.platform_stg__users_organizations", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__yotpoapiprod', 'users_organizations') }}\n\n), platform_stg__users_organizations AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tadd_to_future_stores,\n\t\tcreated_at,\n\t\tdefault_role_id,\n\t\tdeleted_from_organization,\n\t\tinvites_counter,\n\t\torganization_id,\n\t\tupdated_at,\n\t\tuser_id\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__users_organizations", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "users_organizations"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__yotpoapiprod.users_organizations"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.users_organizations\n\n), platform_stg__users_organizations AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tadd_to_future_stores,\n\t\tcreated_at,\n\t\tdefault_role_id,\n\t\tdeleted_from_organization,\n\t\tinvites_counter,\n\t\torganization_id,\n\t\tupdated_at,\n\t\tuser_id\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__users_organizations", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__variants": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__variants", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.sql", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.sql", "unique_id": "model.yoda.platform_stg__variants", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__variants", "platform_stg__variants"], "alias": "platform_stg__variants", "checksum": {"name": "sha256", "checksum": "abc3ecc5396c82b3707399be3c49168590673c258dc88c3ab03b047c7e9bdb1e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform_stg__variants", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_id": {"name": "product_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_id": {"name": "external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_valid_url_format": {"name": "is_valid_url_format", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price": {"name": "price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "inventory_quantity": {"name": "inventory_quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_discontinued": {"name": "is_discontinued", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "custom_properties": {"name": "custom_properties", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_created_at": {"name": "external_created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "external_updated_at": {"name": "external_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "compare_at_price": {"name": "compare_at_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__variants/platform_stg__variants.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "omamiya@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.8895545, "relation_name": "dev_dkruh1.platform_stg__variants", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__products', 'variants') }}\n\n), platform_stg__variants AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tproduct_id,\n\t\texternal_id,\n\t\tsku,\n\t\tname,\n\t\tdescription,\n\t\turl,\n\t\tis_valid_url_format,\n\t\tprice,\n\t\tcurrency,\n\t\tinventory_quantity,\n\t\tis_discontinued,\n\t\tcustom_properties,\n\t\texternal_created_at,\n\t\texternal_updated_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tcompare_at_price\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__variants", "language": "sql", "refs": [], "sources": [["platform__products", "variants"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__products.variants"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__variants/platform_stg__variants.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM products.variants\n\n), platform_stg__variants AS (\n\n SELECT \n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tproduct_id,\n\t\texternal_id,\n\t\tsku,\n\t\tname,\n\t\tdescription,\n\t\turl,\n\t\tis_valid_url_format,\n\t\tprice,\n\t\tcurrency,\n\t\tinventory_quantity,\n\t\tis_discontinued,\n\t\tcustom_properties,\n\t\texternal_created_at,\n\t\texternal_updated_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tcompare_at_price\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__variants", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__widget_configurations": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__widget_configurations", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.sql", "original_file_path": "models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.sql", "unique_id": "model.yoda.platform_stg__widget_configurations", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__widget_configurations", "platform_stg__widget_configurations"], "alias": "platform_stg__widget_configurations", "checksum": {"name": "sha256", "checksum": "ffd8ebfd78fce10405cb3731d9fee87c6ef9f32bf41b9b5264174537dda30873"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "widget_id": {"name": "widget_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "configuration_key": {"name": "configuration_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.9070857, "relation_name": "dev_dkruh1.platform_stg__widget_configurations", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__homescreen', 'widget_configurations') }}\n\n), platform_stg__widget_configurations AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\twidget_id,\n\t\tconfiguration_key,\n\t\tvalue,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__widget_configurations", "language": "sql", "refs": [], "sources": [["platform__homescreen", "widget_configurations"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__homescreen.widget_configurations"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM homescreen.widget_configurations\n\n), platform_stg__widget_configurations AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\twidget_id,\n\t\tconfiguration_key,\n\t\tvalue,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__widget_configurations", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__widgets": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__widgets", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.sql", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.sql", "unique_id": "model.yoda.platform_stg__widgets", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__widgets", "platform_stg__widgets"], "alias": "platform_stg__widgets", "checksum": {"name": "sha256", "checksum": "44131e991dd6abf037f3722eb4cf611654dbdfc164d52505c78946f5d6b2ec17"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "View of yotpo home screen widgets", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_line_id": {"name": "product_line_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "section_id": {"name": "section_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_line_section_id": {"name": "product_line_section_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_key": {"name": "widget_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082683.9266167, "relation_name": "dev_dkruh1.platform_stg__widgets", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('platform__homescreen', 'widgets') }}\n\n), platform_stg__widgets AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tproduct_line_id,\n\t\tsection_id,\n\t\tproduct_line_section_id,\n\t\twidget_key,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__widgets", "language": "sql", "refs": [], "sources": [["platform__homescreen", "widgets"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__homescreen.widgets"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM homescreen.widgets\n\n), platform_stg__widgets AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tproduct_line_id,\n\t\tsection_id,\n\t\tproduct_line_section_id,\n\t\twidget_key,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM platform_stg__widgets", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__all_accounts": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__all_accounts", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.sql", "unique_id": "model.yoda.platform_stg__all_accounts", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__all_accounts", "platform_stg__all_accounts"], "alias": "platform_stg__all_accounts", "checksum": {"name": "sha256", "checksum": "dbf2559d4bea4bc2ac49f575e3c54ded5041603ecf1ba9c301a1a2497e021ed3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "", "columns": {"id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_subdomain": {"name": "minisite_subdomain", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_cname": {"name": "minisite_cname", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_website": {"name": "minisite_website", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_website_name": {"name": "minisite_website_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referal": {"name": "referal", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active": {"name": "is_active", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_auto_publish": {"name": "is_auto_publish", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "minisite_subdomain_active": {"name": "minisite_subdomain_active", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_type_id": {"name": "account_type_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "custom_design": {"name": "custom_design", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_login_popup": {"name": "auto_login_popup", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner_key": {"name": "partner_key", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "support_url": {"name": "support_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "callback_url": {"name": "callback_url", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secret": {"name": "secret", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_language": {"name": "customer_language", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bottom_line_installed": {"name": "bottom_line_installed", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "install_step": {"name": "install_step", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_social_push": {"name": "auto_social_push", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_mails_sender_name": {"name": "customer_mails_sender_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "slug": {"name": "slug", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_me_account_name": {"name": "reviews_me_account_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_me_account_description": {"name": "reviews_me_account_description", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_me_crawlable": {"name": "reviews_me_crawlable", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "coupons_expiration_date": {"name": "coupons_expiration_date", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "map_up_sell_title": {"name": "map_up_sell_title", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "custom_platform_name": {"name": "custom_platform_name", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_id": {"name": "category_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_test": {"name": "is_test", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082683.966523, "relation_name": "dev_dkruh1.platform_stg__all_accounts", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ ref('platform_stg__accounts') }}\n\n), platform_accounts AS (\n\n SELECT *\n FROM source\n\n)\n\nSELECT * \nFROM platform_accounts", "language": "sql", "refs": [{"name": "platform_stg__accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__accounts"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__accounts\n\n), platform_accounts AS (\n\n SELECT *\n FROM source\n\n)\n\nSELECT * \nFROM platform_accounts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__all_apps": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__all_apps", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.sql", "unique_id": "model.yoda.platform_stg__all_apps", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__all_apps", "platform_stg__all_apps"], "alias": "platform_stg__all_apps", "checksum": {"name": "sha256", "checksum": "59acc18d27846d2b6a594845d0e02321938ab6a829fbe1e16d4747c5f4ef1ac0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform_stg__all_apps", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "moderator_role_id": {"name": "moderator_role_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "disabled": {"name": "disabled", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "communication", "team": "rockets", "created_by": "ggeorgiev@yotpo.com", "alert_channels": ["communication-weekly-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082683.9852798, "relation_name": "dev_dkruh1.platform_stg__all_apps", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ ref('platform_stg__apps') }}\n\n), platform_apps AS (\n\n SELECT *\n FROM source\n\n)\n\nSELECT * \nFROM platform_apps", "language": "sql", "refs": [{"name": "platform_stg__apps", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__apps"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__apps\n\n), platform_apps AS (\n\n SELECT *\n FROM source\n\n)\n\nSELECT * \nFROM platform_apps", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__customer_dimensions_brand_affection": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__customer_dimensions_brand_affection", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.sql", "unique_id": "model.yoda.platform_stg__customer_dimensions_brand_affection", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_brand_affection", "platform_stg__customer_dimensions_brand_affection"], "alias": "platform_stg__customer_dimensions_brand_affection", "checksum": {"name": "sha256", "checksum": "8484f8e1554891f38ac409cc882d15d9c28f776aac6e0feb54d3580a45a606fe"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "The brand affection dimension of every customer", "columns": {"customer_id": {"name": "customer_id", "description": "The unique customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "brand_affection": {"name": "brand_affection", "description": "The brand affection category", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "brand_affection_rank": {"name": "brand_affection_rank", "description": "The brand affection rank from 0 to 4", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "materialized": "table"}, "created_at": 1700082683.9983773, "relation_name": "dev_dkruh1.platform_stg__customer_dimensions_brand_affection", "raw_code": "{{ config(materialized=dbt_data_applications.get_table_materialization('table', 'view')) }}\n\n{% set order_again_phrases = '(?i)(((\\\\b((order([a-zA-Z]+)?) (\\\\w+? \\\\w+?) (again|more))\\\\b))|(\\\\b((purchas([a-zA-Z]+)?) (\\\\w+? \\\\w+?) (again|more))\\\\b)|(\\\\b((buy([a-zA-Z]+)?) (\\w+? \\w+?) (again|more))\\\\b)|(\\\\b((always|keep) (\\\\w+? \\\\w+?) (order([a-zA-Z]+)?))))' %}\n{% set recommend_phrases = '(?i)(\\\\b(recommend([a-zA-Z]+)?)\\\\b)' %}\n{% set subscription_phrases = '(?i)(\\\\b(subscription([a-zA-Z]+)?)|(subscrib([a-zA-Z]+)?)\\\\b)' %}\n\n{% set advocate_regex_phrases = order_again_phrases + '|' + recommend_phrases + '|' + subscription_phrases %}\n{% set disappointed_regex_phrases = '(?i)(\\\\b(disappointed)\\\\b)' %}\n\nWITH customer_dataset AS (\n SELECT \n profileId, \n reviewCreated\n FROM {{ ref('platform_stg__customer_dataset') }}\n),\nreview_stats AS (\n SELECT\n profileId AS customer_id,\n AVG(review.properties.reviewCreatedProperties.sentiment) AS avg_review_sentiments,\n AVG(review.properties.reviewCreatedProperties.starRating) AS avg_review_star_ratings,\n AVG(CASE WHEN review.properties.reviewCreatedProperties.topics IS NOT NULL THEN SIZE(review.properties.reviewCreatedProperties.topics) END) AS avg_num_topics,\n AVG(LENGTH(review.properties.reviewCreatedProperties.content)) AS avg_content_length,\n COUNT(*) AS num_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.starRating >= 4 THEN 1 ELSE 0 END) AS num_positive_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.starRating < 4 THEN 1 ELSE 0 END) AS num_negative_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.content RLIKE '{{ advocate_regex_phrases }}' AND review.properties.reviewCreatedProperties.sentiment > 0.85 THEN 1 ELSE 0 END) AS advocate_indication,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.content RLIKE '{{ disappointed_regex_phrases }}' AND review.properties.reviewCreatedProperties.sentiment < 0.3 THEN 1 ELSE 0 END) AS disappointed_score,\n SUM(CASE WHEN SIZE(ARRAY_INTERSECT(review.properties.reviewCreatedProperties.topics, ARRAY('ordering', 'purchase', 'company', 'customer service', 'company') )) > 0 THEN 1 ELSE 0 END) AS advocate_topics_score\n FROM customer_dataset\n LATERAL VIEW EXPLODE(reviewCreated) AS review\n GROUP BY profileId\n),\nnormalized_stats AS (\n SELECT\n rs.*,\n avg_review_star_ratings / 5 AS normalized_review_star_ratings,\n avg_num_topics / percentile(avg_num_topics, 0.8) OVER () AS normalized_num_topics,\n avg_content_length / percentile(avg_content_length, 0.75) OVER () AS normalized_content_length,\n num_positive_reviews / percentile(num_reviews, 0.8) OVER () AS normalized_positive_reviews,\n num_negative_reviews / percentile(num_reviews, 0.8) OVER () AS normalized_negative_reviews,\n advocate_topics_score / percentile(advocate_topics_score, 0.98) OVER () AS normalized_advocate_topics_score\n FROM review_stats rs\n),\navg_brand_affection AS (\n\n SELECT\n ns.customer_id,\n ns.num_reviews,\n (\n COALESCE(ns.normalized_review_star_ratings, 0) +\n COALESCE(ns.normalized_positive_reviews, 0) +\n COALESCE(ns.normalized_negative_reviews, 0) +\n COALESCE(ns.avg_review_sentiments, 0) +\n COALESCE(ns.advocate_indication, 0) +\n COALESCE(ns.disappointed_score, 0) +\n COALESCE(ns.normalized_content_length, 0) +\n COALESCE(ns.normalized_num_topics, 0) +\n COALESCE(ns.num_reviews, 0) +\n COALESCE(ns.normalized_advocate_topics_score, 0)\n ) / (\n CASE WHEN ns.normalized_review_star_ratings IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_positive_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_negative_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.avg_review_sentiments IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.advocate_indication IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.disappointed_score IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_content_length IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_num_topics IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.num_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_advocate_topics_score IS NOT NULL THEN 1 ELSE 0 END\n ) AS brand_affection_score\n FROM normalized_stats ns\n),\nbrand_affection_groups AS (\n\n SELECT\n cd.profileId as customer_id,\n CASE\n WHEN SIZE(cd.reviewCreated) < 1 THEN 'N/A'\n WHEN aba.brand_affection_score >= 0.65 THEN 'Advocate'\n WHEN aba.brand_affection_score >= 0.35 THEN 'Likes'\n WHEN aba.brand_affection_score >= 0.2 THEN 'Disappointed'\n WHEN aba.brand_affection_score < 0.2 THEN 'Hater'\n END AS brand_affection\n FROM customer_dataset cd\n LEFT JOIN avg_brand_affection aba ON aba.customer_id = cd.profileId\n), brand_affection_ranked AS (\n SELECT\n customer_id,\n brand_affection,\n CAST(CASE\n WHEN brand_affection = 'N/A' THEN 2\n WHEN brand_affection = 'Advocate' THEN 4\n WHEN brand_affection = 'Likes' THEN 3\n WHEN brand_affection = 'Disappointed' THEN 1\n WHEN brand_affection = 'Hater' THEN 0\n END AS TINYINT) AS brand_affection_rank\n FROM brand_affection_groups\n)\n\nSELECT * FROM brand_affection_ranked", "language": "sql", "refs": [{"name": "platform_stg__customer_dataset", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__customer_dataset"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\n\n\n\nWITH customer_dataset AS (\n SELECT \n profileId, \n reviewCreated\n FROM dev_dkruh1.platform_stg__customer_dataset\n),\nreview_stats AS (\n SELECT\n profileId AS customer_id,\n AVG(review.properties.reviewCreatedProperties.sentiment) AS avg_review_sentiments,\n AVG(review.properties.reviewCreatedProperties.starRating) AS avg_review_star_ratings,\n AVG(CASE WHEN review.properties.reviewCreatedProperties.topics IS NOT NULL THEN SIZE(review.properties.reviewCreatedProperties.topics) END) AS avg_num_topics,\n AVG(LENGTH(review.properties.reviewCreatedProperties.content)) AS avg_content_length,\n COUNT(*) AS num_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.starRating >= 4 THEN 1 ELSE 0 END) AS num_positive_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.starRating < 4 THEN 1 ELSE 0 END) AS num_negative_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.content RLIKE '(?i)(((\\b((order([a-zA-Z]+)?) (\\w+? \\w+?) (again|more))\\b))|(\\b((purchas([a-zA-Z]+)?) (\\w+? \\w+?) (again|more))\\b)|(\\b((buy([a-zA-Z]+)?) (\\w+? \\w+?) (again|more))\\b)|(\\b((always|keep) (\\w+? \\w+?) (order([a-zA-Z]+)?))))|(?i)(\\b(recommend([a-zA-Z]+)?)\\b)|(?i)(\\b(subscription([a-zA-Z]+)?)|(subscrib([a-zA-Z]+)?)\\b)' AND review.properties.reviewCreatedProperties.sentiment > 0.85 THEN 1 ELSE 0 END) AS advocate_indication,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.content RLIKE '(?i)(\\b(disappointed)\\b)' AND review.properties.reviewCreatedProperties.sentiment < 0.3 THEN 1 ELSE 0 END) AS disappointed_score,\n SUM(CASE WHEN SIZE(ARRAY_INTERSECT(review.properties.reviewCreatedProperties.topics, ARRAY('ordering', 'purchase', 'company', 'customer service', 'company') )) > 0 THEN 1 ELSE 0 END) AS advocate_topics_score\n FROM customer_dataset\n LATERAL VIEW EXPLODE(reviewCreated) AS review\n GROUP BY profileId\n),\nnormalized_stats AS (\n SELECT\n rs.*,\n avg_review_star_ratings / 5 AS normalized_review_star_ratings,\n avg_num_topics / percentile(avg_num_topics, 0.8) OVER () AS normalized_num_topics,\n avg_content_length / percentile(avg_content_length, 0.75) OVER () AS normalized_content_length,\n num_positive_reviews / percentile(num_reviews, 0.8) OVER () AS normalized_positive_reviews,\n num_negative_reviews / percentile(num_reviews, 0.8) OVER () AS normalized_negative_reviews,\n advocate_topics_score / percentile(advocate_topics_score, 0.98) OVER () AS normalized_advocate_topics_score\n FROM review_stats rs\n),\navg_brand_affection AS (\n\n SELECT\n ns.customer_id,\n ns.num_reviews,\n (\n COALESCE(ns.normalized_review_star_ratings, 0) +\n COALESCE(ns.normalized_positive_reviews, 0) +\n COALESCE(ns.normalized_negative_reviews, 0) +\n COALESCE(ns.avg_review_sentiments, 0) +\n COALESCE(ns.advocate_indication, 0) +\n COALESCE(ns.disappointed_score, 0) +\n COALESCE(ns.normalized_content_length, 0) +\n COALESCE(ns.normalized_num_topics, 0) +\n COALESCE(ns.num_reviews, 0) +\n COALESCE(ns.normalized_advocate_topics_score, 0)\n ) / (\n CASE WHEN ns.normalized_review_star_ratings IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_positive_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_negative_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.avg_review_sentiments IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.advocate_indication IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.disappointed_score IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_content_length IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_num_topics IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.num_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_advocate_topics_score IS NOT NULL THEN 1 ELSE 0 END\n ) AS brand_affection_score\n FROM normalized_stats ns\n),\nbrand_affection_groups AS (\n\n SELECT\n cd.profileId as customer_id,\n CASE\n WHEN SIZE(cd.reviewCreated) < 1 THEN 'N/A'\n WHEN aba.brand_affection_score >= 0.65 THEN 'Advocate'\n WHEN aba.brand_affection_score >= 0.35 THEN 'Likes'\n WHEN aba.brand_affection_score >= 0.2 THEN 'Disappointed'\n WHEN aba.brand_affection_score < 0.2 THEN 'Hater'\n END AS brand_affection\n FROM customer_dataset cd\n LEFT JOIN avg_brand_affection aba ON aba.customer_id = cd.profileId\n), brand_affection_ranked AS (\n SELECT\n customer_id,\n brand_affection,\n CAST(CASE\n WHEN brand_affection = 'N/A' THEN 2\n WHEN brand_affection = 'Advocate' THEN 4\n WHEN brand_affection = 'Likes' THEN 3\n WHEN brand_affection = 'Disappointed' THEN 1\n WHEN brand_affection = 'Hater' THEN 0\n END AS TINYINT) AS brand_affection_rank\n FROM brand_affection_groups\n)\n\nSELECT * FROM brand_affection_ranked", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__customer_dimensions_brand_affection_inc": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__customer_dimensions_brand_affection_inc", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.sql", "unique_id": "model.yoda.platform_stg__customer_dimensions_brand_affection_inc", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_brand_affection_inc", "platform_stg__customer_dimensions_brand_affection_inc"], "alias": "platform_stg__customer_dimensions_brand_affection_inc", "checksum": {"name": "sha256", "checksum": "3f6963022677c1377bd8f7f11080d0c55037f97f611ea7c6472932183869dbce"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "The brand affection dimension of every customer", "columns": {"app_key": {"name": "app_key", "description": "The store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The unique customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "The date of segmentation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "brand_affection": {"name": "brand_affection", "description": "The brand affection category", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "brand_affection_rank": {"name": "brand_affection_rank", "description": "The brand affection rank from 0 to 4", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "materialized": "incremental", "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082684.054887, "relation_name": "dev_dkruh1.platform_stg__customer_dimensions_brand_affection_inc", "raw_code": "{{ \n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=['date'],\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE protected_platform.customer_dimensions_brand_affection_inc ZORDER BY customer_id;')\n )\n}}\n\n{% set order_again_phrases = '(?i)(((\\\\b((order([a-zA-Z]+)?) (\\\\w+? \\\\w+?) (again|more))\\\\b))|(\\\\b((purchas([a-zA-Z]+)?) (\\\\w+? \\\\w+?) (again|more))\\\\b)|(\\\\b((buy([a-zA-Z]+)?) (\\w+? \\w+?) (again|more))\\\\b)|(\\\\b((always|keep) (\\\\w+? \\\\w+?) (order([a-zA-Z]+)?))))' %}\n{% set recommend_phrases = '(?i)(\\\\b(recommend([a-zA-Z]+)?)\\\\b)' %}\n{% set subscription_phrases = '(?i)(\\\\b(subscription([a-zA-Z]+)?)|(subscrib([a-zA-Z]+)?)\\\\b)' %}\n\n{% set advocate_regex_phrases = order_again_phrases + '|' + recommend_phrases + '|' + subscription_phrases %}\n{% set disappointed_regex_phrases = '(?i)(\\\\b(disappointed)\\\\b)' %}\n\nWITH customer_dataset AS (\n SELECT \n storeId as app_key,\n profileId as customer_id, \n reviewCreated\n FROM {{ ref('platform_stg__customer_dataset_reduced') }}\n -- On the first run, take all records\n -- On consecutive runs, take only the records which haven't been processed yet before today\n {{incremental_condition(data_type='DATE',destination_condition_column='date', query_condition_column='properties.updatedAt')}}\n), reviews_events AS (\n SELECT \n app_key,\n customer_id, \n TIMESTAMP(review.timeStamp) AS timeStamp, \n review\n FROM customer_dataset \n LATERAL VIEW EXPLODE(reviewCreated) AS review\n), \n-- What 'OVER (PARTITION BY customer_id ORDER BY timeStamp)' does is it takes all the previous records before the current record and applies the window function (e.g. AVG, COUNT, SUM)\nreview_stats AS (\n SELECT\n app_key,\n customer_id,\n timeStamp,\n AVG(review.properties.reviewCreatedProperties.sentiment) over (PARTITION BY customer_id ORDER BY timeStamp) AS avg_review_sentiments,\n AVG(review.properties.reviewCreatedProperties.starRating) over (PARTITION BY customer_id ORDER BY timeStamp) AS avg_review_star_ratings,\n AVG(CASE WHEN review.properties.reviewCreatedProperties.topics IS NOT NULL THEN SIZE(review.properties.reviewCreatedProperties.topics) END) over (PARTITION BY customer_id ORDER BY timeStamp) AS avg_num_topics,\n AVG(LENGTH(review.properties.reviewCreatedProperties.content)) over (PARTITION BY customer_id ORDER BY timeStamp) AS avg_content_length,\n COUNT(*) over (PARTITION BY customer_id ORDER BY timeStamp) AS num_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.starRating >= 4 THEN 1 ELSE 0 END) over (PARTITION BY customer_id ORDER BY timeStamp) AS num_positive_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.starRating < 4 THEN 1 ELSE 0 END) over (PARTITION BY customer_id ORDER BY timeStamp) AS num_negative_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.content RLIKE '{{ advocate_regex_phrases }}' AND review.properties.reviewCreatedProperties.sentiment > 0.85 THEN 1 ELSE 0 END) over (PARTITION BY customer_id ORDER BY timeStamp) AS advocate_indication,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.content RLIKE '{{ disappointed_regex_phrases }}' AND review.properties.reviewCreatedProperties.sentiment < 0.3 THEN 1 ELSE 0 END) over (PARTITION BY customer_id ORDER BY timeStamp) AS disappointed_score,\n SUM(CASE WHEN SIZE(ARRAY_INTERSECT(review.properties.reviewCreatedProperties.topics, ARRAY('ordering', 'purchase', 'company', 'customer service', 'company') )) > 0 THEN 1 ELSE 0 END) over (PARTITION BY customer_id ORDER BY timeStamp) AS advocate_topics_score\n FROM reviews_events\n), review_stats_grouped_per_day AS (\n SELECT \n LAST(app_key) as app_key,\n LAST(customer_id) as customer_id,\n DATE(timeStamp) AS date,\n LAST(avg_review_sentiments) as avg_review_sentiments,\n LAST(avg_review_star_ratings) as avg_review_star_ratings,\n LAST(avg_num_topics) as avg_num_topics,\n LAST(avg_content_length) as avg_content_length,\n LAST(num_reviews) as num_reviews,\n LAST(num_positive_reviews) as num_positive_reviews,\n LAST(num_negative_reviews) as num_negative_reviews,\n LAST(advocate_indication) as advocate_indication,\n LAST(disappointed_score) as disappointed_score,\n LAST(advocate_topics_score) as advocate_topics_score\n FROM review_stats\n GROUP BY customer_id, DATE(timeStamp) \n), normalized_stats AS (\n SELECT\n rs.*,\n avg_review_star_ratings / 5 AS normalized_review_star_ratings,\n avg_num_topics / percentile(avg_num_topics, 0.8) OVER () AS normalized_num_topics,\n avg_content_length / percentile(avg_content_length, 0.75) OVER () AS normalized_content_length,\n num_positive_reviews / percentile(num_reviews, 0.8) OVER () AS normalized_positive_reviews,\n num_negative_reviews / percentile(num_reviews, 0.8) OVER () AS normalized_negative_reviews,\n advocate_topics_score / percentile(advocate_topics_score, 0.98) OVER () AS normalized_advocate_topics_score\n FROM review_stats_grouped_per_day rs\n), avg_brand_affection AS (\n\n SELECT\n ns.app_key,\n ns.customer_id,\n ns.date,\n ns.num_reviews,\n (\n COALESCE(ns.normalized_review_star_ratings, 0) +\n COALESCE(ns.normalized_positive_reviews, 0) +\n COALESCE(ns.normalized_negative_reviews, 0) +\n COALESCE(ns.avg_review_sentiments, 0) +\n COALESCE(ns.advocate_indication, 0) +\n COALESCE(ns.disappointed_score, 0) +\n COALESCE(ns.normalized_content_length, 0) +\n COALESCE(ns.normalized_num_topics, 0) +\n COALESCE(ns.num_reviews, 0) +\n COALESCE(ns.normalized_advocate_topics_score, 0)\n ) / (\n CASE WHEN ns.normalized_review_star_ratings IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_positive_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_negative_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.avg_review_sentiments IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.advocate_indication IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.disappointed_score IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_content_length IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_num_topics IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.num_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_advocate_topics_score IS NOT NULL THEN 1 ELSE 0 END\n ) AS brand_affection_score\n FROM normalized_stats ns\n),\nbrand_affection_groups AS (\n\n SELECT\n app_key,\n customer_id,\n date,\n CASE\n WHEN num_reviews < 1 THEN 'N/A'\n WHEN brand_affection_score >= 0.65 THEN 'Advocate'\n WHEN brand_affection_score >= 0.35 THEN 'Likes'\n WHEN brand_affection_score >= 0.2 THEN 'Disappointed'\n WHEN brand_affection_score < 0.2 THEN 'Hater'\n END AS brand_affection\n FROM avg_brand_affection aba\n), brand_affection_ranked AS (\n SELECT\n app_key,\n customer_id,\n date,\n brand_affection,\n CAST(CASE\n WHEN brand_affection = 'N/A' THEN 2\n WHEN brand_affection = 'Advocate' THEN 4\n WHEN brand_affection = 'Likes' THEN 3\n WHEN brand_affection = 'Disappointed' THEN 1\n WHEN brand_affection = 'Hater' THEN 0\n END AS TINYINT) AS brand_affection_rank\n FROM brand_affection_groups\n)\n\nSELECT * FROM brand_affection_ranked\n{{incremental_condition(data_type='DATE',destination_condition_column='date')}}", "language": "sql", "refs": [{"name": "platform_stg__customer_dataset_reduced", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__customer_dataset_reduced"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\n\n\n\nWITH customer_dataset AS (\n SELECT \n storeId as app_key,\n profileId as customer_id, \n reviewCreated\n FROM dev_dkruh1.platform_stg__customer_dataset_reduced\n -- On the first run, take all records\n -- On consecutive runs, take only the records which haven't been processed yet before today\n WHERE DATE(properties.updatedAt) <= DATE_SUB(CURRENT_DATE,1)\n), reviews_events AS (\n SELECT \n app_key,\n customer_id, \n TIMESTAMP(review.timeStamp) AS timeStamp, \n review\n FROM customer_dataset \n LATERAL VIEW EXPLODE(reviewCreated) AS review\n), \n-- What 'OVER (PARTITION BY customer_id ORDER BY timeStamp)' does is it takes all the previous records before the current record and applies the window function (e.g. AVG, COUNT, SUM)\nreview_stats AS (\n SELECT\n app_key,\n customer_id,\n timeStamp,\n AVG(review.properties.reviewCreatedProperties.sentiment) over (PARTITION BY customer_id ORDER BY timeStamp) AS avg_review_sentiments,\n AVG(review.properties.reviewCreatedProperties.starRating) over (PARTITION BY customer_id ORDER BY timeStamp) AS avg_review_star_ratings,\n AVG(CASE WHEN review.properties.reviewCreatedProperties.topics IS NOT NULL THEN SIZE(review.properties.reviewCreatedProperties.topics) END) over (PARTITION BY customer_id ORDER BY timeStamp) AS avg_num_topics,\n AVG(LENGTH(review.properties.reviewCreatedProperties.content)) over (PARTITION BY customer_id ORDER BY timeStamp) AS avg_content_length,\n COUNT(*) over (PARTITION BY customer_id ORDER BY timeStamp) AS num_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.starRating >= 4 THEN 1 ELSE 0 END) over (PARTITION BY customer_id ORDER BY timeStamp) AS num_positive_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.starRating < 4 THEN 1 ELSE 0 END) over (PARTITION BY customer_id ORDER BY timeStamp) AS num_negative_reviews,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.content RLIKE '(?i)(((\\b((order([a-zA-Z]+)?) (\\w+? \\w+?) (again|more))\\b))|(\\b((purchas([a-zA-Z]+)?) (\\w+? \\w+?) (again|more))\\b)|(\\b((buy([a-zA-Z]+)?) (\\w+? \\w+?) (again|more))\\b)|(\\b((always|keep) (\\w+? \\w+?) (order([a-zA-Z]+)?))))|(?i)(\\b(recommend([a-zA-Z]+)?)\\b)|(?i)(\\b(subscription([a-zA-Z]+)?)|(subscrib([a-zA-Z]+)?)\\b)' AND review.properties.reviewCreatedProperties.sentiment > 0.85 THEN 1 ELSE 0 END) over (PARTITION BY customer_id ORDER BY timeStamp) AS advocate_indication,\n SUM(CASE WHEN review.properties.reviewCreatedProperties.content RLIKE '(?i)(\\b(disappointed)\\b)' AND review.properties.reviewCreatedProperties.sentiment < 0.3 THEN 1 ELSE 0 END) over (PARTITION BY customer_id ORDER BY timeStamp) AS disappointed_score,\n SUM(CASE WHEN SIZE(ARRAY_INTERSECT(review.properties.reviewCreatedProperties.topics, ARRAY('ordering', 'purchase', 'company', 'customer service', 'company') )) > 0 THEN 1 ELSE 0 END) over (PARTITION BY customer_id ORDER BY timeStamp) AS advocate_topics_score\n FROM reviews_events\n), review_stats_grouped_per_day AS (\n SELECT \n LAST(app_key) as app_key,\n LAST(customer_id) as customer_id,\n DATE(timeStamp) AS date,\n LAST(avg_review_sentiments) as avg_review_sentiments,\n LAST(avg_review_star_ratings) as avg_review_star_ratings,\n LAST(avg_num_topics) as avg_num_topics,\n LAST(avg_content_length) as avg_content_length,\n LAST(num_reviews) as num_reviews,\n LAST(num_positive_reviews) as num_positive_reviews,\n LAST(num_negative_reviews) as num_negative_reviews,\n LAST(advocate_indication) as advocate_indication,\n LAST(disappointed_score) as disappointed_score,\n LAST(advocate_topics_score) as advocate_topics_score\n FROM review_stats\n GROUP BY customer_id, DATE(timeStamp) \n), normalized_stats AS (\n SELECT\n rs.*,\n avg_review_star_ratings / 5 AS normalized_review_star_ratings,\n avg_num_topics / percentile(avg_num_topics, 0.8) OVER () AS normalized_num_topics,\n avg_content_length / percentile(avg_content_length, 0.75) OVER () AS normalized_content_length,\n num_positive_reviews / percentile(num_reviews, 0.8) OVER () AS normalized_positive_reviews,\n num_negative_reviews / percentile(num_reviews, 0.8) OVER () AS normalized_negative_reviews,\n advocate_topics_score / percentile(advocate_topics_score, 0.98) OVER () AS normalized_advocate_topics_score\n FROM review_stats_grouped_per_day rs\n), avg_brand_affection AS (\n\n SELECT\n ns.app_key,\n ns.customer_id,\n ns.date,\n ns.num_reviews,\n (\n COALESCE(ns.normalized_review_star_ratings, 0) +\n COALESCE(ns.normalized_positive_reviews, 0) +\n COALESCE(ns.normalized_negative_reviews, 0) +\n COALESCE(ns.avg_review_sentiments, 0) +\n COALESCE(ns.advocate_indication, 0) +\n COALESCE(ns.disappointed_score, 0) +\n COALESCE(ns.normalized_content_length, 0) +\n COALESCE(ns.normalized_num_topics, 0) +\n COALESCE(ns.num_reviews, 0) +\n COALESCE(ns.normalized_advocate_topics_score, 0)\n ) / (\n CASE WHEN ns.normalized_review_star_ratings IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_positive_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_negative_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.avg_review_sentiments IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.advocate_indication IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.disappointed_score IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_content_length IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_num_topics IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.num_reviews IS NOT NULL THEN 1 ELSE 0 END +\n CASE WHEN ns.normalized_advocate_topics_score IS NOT NULL THEN 1 ELSE 0 END\n ) AS brand_affection_score\n FROM normalized_stats ns\n),\nbrand_affection_groups AS (\n\n SELECT\n app_key,\n customer_id,\n date,\n CASE\n WHEN num_reviews < 1 THEN 'N/A'\n WHEN brand_affection_score >= 0.65 THEN 'Advocate'\n WHEN brand_affection_score >= 0.35 THEN 'Likes'\n WHEN brand_affection_score >= 0.2 THEN 'Disappointed'\n WHEN brand_affection_score < 0.2 THEN 'Hater'\n END AS brand_affection\n FROM avg_brand_affection aba\n), brand_affection_ranked AS (\n SELECT\n app_key,\n customer_id,\n date,\n brand_affection,\n CAST(CASE\n WHEN brand_affection = 'N/A' THEN 2\n WHEN brand_affection = 'Advocate' THEN 4\n WHEN brand_affection = 'Likes' THEN 3\n WHEN brand_affection = 'Disappointed' THEN 1\n WHEN brand_affection = 'Hater' THEN 0\n END AS TINYINT) AS brand_affection_rank\n FROM brand_affection_groups\n)\n\nSELECT * FROM brand_affection_ranked\nWHERE DATE(date) <= DATE_SUB(CURRENT_DATE,1)", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__customer_dimensions_business_metrics": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__customer_dimensions_business_metrics", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.sql", "unique_id": "model.yoda.platform_stg__customer_dimensions_business_metrics", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_business_metrics", "platform_stg__customer_dimensions_business_metrics"], "alias": "platform_stg__customer_dimensions_business_metrics", "checksum": {"name": "sha256", "checksum": "7fd25dd927192eaf2bed93607a9481bfdef02d1cf6e02b77b39f6caf972285df"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "This table holds the business metrics for the customer dimensions snapshot table", "columns": {"app_key": {"name": "app_key", "description": "The store id of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avg_order_value_7d": {"name": "avg_order_value_7d", "description": "The average order value in the last 7 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_7d_trend": {"name": "avg_order_value_7d_trend", "description": "The average order value in the period of 7 to 14 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_30d": {"name": "avg_order_value_30d", "description": "The average order value in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_30d_trend": {"name": "avg_order_value_30d_trend", "description": "The average order value in the period of 30 to 60 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_90d": {"name": "avg_order_value_90d", "description": "The average order value in the last 90 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_90d_trend": {"name": "avg_order_value_90d_trend", "description": "The average time between orders in seconds in the last 90 to 180 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_365d": {"name": "avg_order_value_365d", "description": "The average order value in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_order_value_365d_trend": {"name": "avg_order_value_365d_trend", "description": "The average order value in the period of 365 to 730 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_7d": {"name": "avg_time_between_orders_7d", "description": "The average time between orders in seconds in the last 7 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_7d_trend": {"name": "avg_time_between_orders_7d_trend", "description": "The average time between orders in seconds in the period of 7 to 14 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_30d": {"name": "avg_time_between_orders_30d", "description": "The average time between orders in seconds in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_30d_trend": {"name": "avg_time_between_orders_30d_trend", "description": "The average time between orders in seconds in the period of 30 to 60 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_90d": {"name": "avg_time_between_orders_90d", "description": "The average time between orders in seconds in the last 90 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_90d_trend": {"name": "avg_time_between_orders_90d_trend", "description": "The average time between orders in seconds in the period of 90 to 180 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_365d": {"name": "avg_time_between_orders_365d", "description": "The average time between orders in seconds in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders_365d_trend": {"name": "avg_time_between_orders_365d_trend", "description": "The average time between orders in seconds in the period of 365 to 730 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "num_orders_7d": {"name": "num_orders_7d", "description": "The number of orders in the last 7 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_7d_trend": {"name": "num_orders_7d_trend", "description": "The number of orders in the period of 7 to 14 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_30d": {"name": "num_orders_30d", "description": "The number of orders in the last 30 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_30d_trend": {"name": "num_orders_30d_trend", "description": "The number of orders in the period of 30 to 60 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_90d": {"name": "num_orders_90d", "description": "The number of orders in the last 90 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_90d_trend": {"name": "num_orders_90d_trend", "description": "The number of orders in the period of 90 to 180 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_365d": {"name": "num_orders_365d", "description": "The number of orders in the last 365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "num_orders_365d_trend": {"name": "num_orders_365d_trend", "description": "The number of orders in the period of 365 to 730 days ago", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_order_timestamp": {"name": "last_order_timestamp", "description": "The timestamp of the last order of the customer", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "materialized": "table"}, "created_at": 1700082684.085532, "relation_name": "dev_dkruh1.platform_stg__customer_dimensions_business_metrics", "raw_code": "{{ config(materialized=dbt_data_applications.get_table_materialization('table', 'view')) }}\n{% set year_timeDiff = 60 * 60 * 24 * 365 %}\n\nWITH customer_dataset AS (\n SELECT profileId, storeId, orderUpdated\n FROM {{ ref('platform_stg__customer_dataset') }}\n), orders_exploded AS (\n SELECT\n profileId AS customer_id,\n storeId AS app_key,\n order.properties.orderProperties.effectiveOrderCreationDate,\n order.properties.orderProperties.totalPrice\n FROM customer_dataset\n LATERAL VIEW EXPLODE(orderUpdated) AS order\n), orders_exploded_with_timeframes AS (\n SELECT\n app_key,\n customer_id,\n totalPrice,\n TIMESTAMPDIFF(SECOND, LAG(effectiveOrderCreationDate) OVER (PARTITION BY app_key, customer_id ORDER BY effectiveOrderCreationDate), effectiveOrderCreationDate) AS timeDiff,\n DATEDIFF(CURRENT_DATE(), DATE(effectiveOrderCreationDate)) AS days_diff,\n TIMESTAMP(effectiveOrderCreationDate) AS effectiveOrderCreationDate\n FROM orders_exploded\n WHERE totalPrice > 0\n), business_metrics_reduced AS (\n SELECT\n app_key,\n customer_id,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 7 THEN totalPrice END) AS avg_order_value_7d,\n AVG(CASE WHEN days_diff > 7 AND days_diff <= 14 THEN totalPrice END) AS avg_order_value_7d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 30 THEN totalPrice END) AS avg_order_value_30d,\n AVG(CASE WHEN days_diff > 30 AND days_diff <= 60 THEN totalPrice END) AS avg_order_value_30d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 90 THEN totalPrice END) AS avg_order_value_90d,\n AVG(CASE WHEN days_diff > 90 AND days_diff <= 180 THEN totalPrice END) AS avg_order_value_90d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 365 THEN totalPrice END) AS avg_order_value_365d,\n AVG(CASE WHEN days_diff > 365 AND days_diff <= 730 THEN totalPrice END) AS avg_order_value_365d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 7 AND timeDiff <= {{year_timeDiff}} THEN timeDiff END) AS avg_time_between_orders_7d,\n AVG(CASE WHEN days_diff > 7 AND days_diff <= 14 AND timeDiff <= {{year_timeDiff}} THEN timeDiff END) AS avg_time_between_orders_7d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 30 AND timeDiff <= {{year_timeDiff}} THEN timeDiff END) AS avg_time_between_orders_30d,\n AVG(CASE WHEN days_diff > 30 AND days_diff <= 60 AND timeDiff <= {{year_timeDiff}} THEN timeDiff END) AS avg_time_between_orders_30d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 90 AND timeDiff <= {{year_timeDiff}} THEN timeDiff END) AS avg_time_between_orders_90d,\n AVG(CASE WHEN days_diff > 90 AND days_diff <= 180 AND timeDiff <= {{year_timeDiff}} THEN timeDiff END) AS avg_time_between_orders_90d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 365 AND timeDiff <= {{year_timeDiff}} THEN timeDiff END) AS avg_time_between_orders_365d,\n AVG(CASE WHEN days_diff > 365 AND days_diff <= 730 AND timeDiff <= {{year_timeDiff}} THEN timeDiff END) AS avg_time_between_orders_365d_trend,\n SUM(CASE WHEN days_diff > 0 AND days_diff <= 7 THEN 1 ELSE 0 END) AS num_orders_7d,\n SUM(CASE WHEN days_diff > 7 AND days_diff <= 14 THEN 1 ELSE 0 END) AS num_orders_7d_trend,\n SUM(CASE WHEN days_diff > 0 AND days_diff <= 30 THEN 1 ELSE 0 END) AS num_orders_30d,\n SUM(CASE WHEN days_diff > 30 AND days_diff <= 60 THEN 1 ELSE 0 END) AS num_orders_30d_trend,\n SUM(CASE WHEN days_diff > 0 AND days_diff <= 90 THEN 1 ELSE 0 END) AS num_orders_90d,\n SUM(CASE WHEN days_diff > 90 AND days_diff <= 180 THEN 1 ELSE 0 END) AS num_orders_90d_trend,\n SUM(CASE WHEN days_diff > 0 AND days_diff <= 365 THEN 1 ELSE 0 END) AS num_orders_365d,\n SUM(CASE WHEN days_diff > 365 AND days_diff <= 730 THEN 1 ELSE 0 END) AS num_orders_365d_trend,\n MAX(effectiveOrderCreationDate) AS last_order_timestamp\n FROM orders_exploded_with_timeframes\n GROUP BY app_key, customer_id\n), business_metrics AS (\n SELECT\n cd.storeId AS app_key,\n cd.profileId AS customer_id,\n bmr.avg_order_value_7d,\n bmr.avg_order_value_7d_trend,\n bmr.avg_order_value_30d,\n bmr.avg_order_value_30d_trend,\n bmr.avg_order_value_90d,\n bmr.avg_order_value_90d_trend,\n bmr.avg_order_value_365d,\n bmr.avg_order_value_365d_trend,\n bmr.avg_time_between_orders_7d,\n bmr.avg_time_between_orders_7d_trend,\n bmr.avg_time_between_orders_30d,\n bmr.avg_time_between_orders_30d_trend,\n bmr.avg_time_between_orders_90d,\n bmr.avg_time_between_orders_90d_trend,\n bmr.avg_time_between_orders_365d,\n bmr.avg_time_between_orders_365d_trend,\n bmr.num_orders_7d,\n bmr.num_orders_7d_trend,\n bmr.num_orders_30d,\n bmr.num_orders_30d_trend,\n bmr.num_orders_90d,\n bmr.num_orders_90d_trend,\n bmr.num_orders_365d,\n bmr.num_orders_365d_trend,\n bmr.last_order_timestamp\n FROM customer_dataset cd\n LEFT JOIN business_metrics_reduced bmr ON cd.profileId = bmr.customer_id\n)\n\nSELECT * FROM business_metrics", "language": "sql", "refs": [{"name": "platform_stg__customer_dataset", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__customer_dataset"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.sql", "compiled": true, "compiled_code": "\n\n\nWITH customer_dataset AS (\n SELECT profileId, storeId, orderUpdated\n FROM dev_dkruh1.platform_stg__customer_dataset\n), orders_exploded AS (\n SELECT\n profileId AS customer_id,\n storeId AS app_key,\n order.properties.orderProperties.effectiveOrderCreationDate,\n order.properties.orderProperties.totalPrice\n FROM customer_dataset\n LATERAL VIEW EXPLODE(orderUpdated) AS order\n), orders_exploded_with_timeframes AS (\n SELECT\n app_key,\n customer_id,\n totalPrice,\n TIMESTAMPDIFF(SECOND, LAG(effectiveOrderCreationDate) OVER (PARTITION BY app_key, customer_id ORDER BY effectiveOrderCreationDate), effectiveOrderCreationDate) AS timeDiff,\n DATEDIFF(CURRENT_DATE(), DATE(effectiveOrderCreationDate)) AS days_diff,\n TIMESTAMP(effectiveOrderCreationDate) AS effectiveOrderCreationDate\n FROM orders_exploded\n WHERE totalPrice > 0\n), business_metrics_reduced AS (\n SELECT\n app_key,\n customer_id,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 7 THEN totalPrice END) AS avg_order_value_7d,\n AVG(CASE WHEN days_diff > 7 AND days_diff <= 14 THEN totalPrice END) AS avg_order_value_7d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 30 THEN totalPrice END) AS avg_order_value_30d,\n AVG(CASE WHEN days_diff > 30 AND days_diff <= 60 THEN totalPrice END) AS avg_order_value_30d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 90 THEN totalPrice END) AS avg_order_value_90d,\n AVG(CASE WHEN days_diff > 90 AND days_diff <= 180 THEN totalPrice END) AS avg_order_value_90d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 365 THEN totalPrice END) AS avg_order_value_365d,\n AVG(CASE WHEN days_diff > 365 AND days_diff <= 730 THEN totalPrice END) AS avg_order_value_365d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 7 AND timeDiff <= 31536000 THEN timeDiff END) AS avg_time_between_orders_7d,\n AVG(CASE WHEN days_diff > 7 AND days_diff <= 14 AND timeDiff <= 31536000 THEN timeDiff END) AS avg_time_between_orders_7d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 30 AND timeDiff <= 31536000 THEN timeDiff END) AS avg_time_between_orders_30d,\n AVG(CASE WHEN days_diff > 30 AND days_diff <= 60 AND timeDiff <= 31536000 THEN timeDiff END) AS avg_time_between_orders_30d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 90 AND timeDiff <= 31536000 THEN timeDiff END) AS avg_time_between_orders_90d,\n AVG(CASE WHEN days_diff > 90 AND days_diff <= 180 AND timeDiff <= 31536000 THEN timeDiff END) AS avg_time_between_orders_90d_trend,\n AVG(CASE WHEN days_diff > 0 AND days_diff <= 365 AND timeDiff <= 31536000 THEN timeDiff END) AS avg_time_between_orders_365d,\n AVG(CASE WHEN days_diff > 365 AND days_diff <= 730 AND timeDiff <= 31536000 THEN timeDiff END) AS avg_time_between_orders_365d_trend,\n SUM(CASE WHEN days_diff > 0 AND days_diff <= 7 THEN 1 ELSE 0 END) AS num_orders_7d,\n SUM(CASE WHEN days_diff > 7 AND days_diff <= 14 THEN 1 ELSE 0 END) AS num_orders_7d_trend,\n SUM(CASE WHEN days_diff > 0 AND days_diff <= 30 THEN 1 ELSE 0 END) AS num_orders_30d,\n SUM(CASE WHEN days_diff > 30 AND days_diff <= 60 THEN 1 ELSE 0 END) AS num_orders_30d_trend,\n SUM(CASE WHEN days_diff > 0 AND days_diff <= 90 THEN 1 ELSE 0 END) AS num_orders_90d,\n SUM(CASE WHEN days_diff > 90 AND days_diff <= 180 THEN 1 ELSE 0 END) AS num_orders_90d_trend,\n SUM(CASE WHEN days_diff > 0 AND days_diff <= 365 THEN 1 ELSE 0 END) AS num_orders_365d,\n SUM(CASE WHEN days_diff > 365 AND days_diff <= 730 THEN 1 ELSE 0 END) AS num_orders_365d_trend,\n MAX(effectiveOrderCreationDate) AS last_order_timestamp\n FROM orders_exploded_with_timeframes\n GROUP BY app_key, customer_id\n), business_metrics AS (\n SELECT\n cd.storeId AS app_key,\n cd.profileId AS customer_id,\n bmr.avg_order_value_7d,\n bmr.avg_order_value_7d_trend,\n bmr.avg_order_value_30d,\n bmr.avg_order_value_30d_trend,\n bmr.avg_order_value_90d,\n bmr.avg_order_value_90d_trend,\n bmr.avg_order_value_365d,\n bmr.avg_order_value_365d_trend,\n bmr.avg_time_between_orders_7d,\n bmr.avg_time_between_orders_7d_trend,\n bmr.avg_time_between_orders_30d,\n bmr.avg_time_between_orders_30d_trend,\n bmr.avg_time_between_orders_90d,\n bmr.avg_time_between_orders_90d_trend,\n bmr.avg_time_between_orders_365d,\n bmr.avg_time_between_orders_365d_trend,\n bmr.num_orders_7d,\n bmr.num_orders_7d_trend,\n bmr.num_orders_30d,\n bmr.num_orders_30d_trend,\n bmr.num_orders_90d,\n bmr.num_orders_90d_trend,\n bmr.num_orders_365d,\n bmr.num_orders_365d_trend,\n bmr.last_order_timestamp\n FROM customer_dataset cd\n LEFT JOIN business_metrics_reduced bmr ON cd.profileId = bmr.customer_id\n)\n\nSELECT * FROM business_metrics", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__customer_dimensions_engagement_marketing_material", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.sql", "unique_id": "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_engagement_marketing_material", "platform_stg__customer_dimensions_engagement_marketing_material"], "alias": "platform_stg__customer_dimensions_engagement_marketing_material", "checksum": {"name": "sha256", "checksum": "7d026bc25fbaf5459faf4efe2c3cb2c618b743771dc3b5dd9e859cfde4668b98"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "This table holds the dimension score of a customer for the engagement marketing material dimension", "columns": {"customer_id": {"name": "customer_id", "description": "The customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_with_marketing_material": {"name": "engagement_with_marketing_material", "description": "The dimension score (e.g. unsubscribed, non an sms user, ignores, engaging, highly engaged)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_with_marketing_material_rank": {"name": "engagement_with_marketing_material_rank", "description": "The dimension rank from 0 to 5", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "materialized": "table"}, "created_at": 1700082684.0995376, "relation_name": "dev_dkruh1.platform_stg__customer_dimensions_engagement_marketing_material", "raw_code": "{{ config(materialized=dbt_data_applications.get_table_materialization('table', 'view')) }}\n\nWITH customer_dataset AS (\n\n SELECT \n profileId AS customer_id,\n smsSubscribed,\n smsUnsubscribed,\n properties.sms.acceptsMarketing AS acceptsSmsMarketing,\n smsPartOfCampaign,\n smsConverted\n FROM {{ ref('platform_stg__customer_dataset') }}\n\n), sms_subscribed_exploded AS (\n\n SELECT \n customer_id, \n subscribed.timeStamp AS last_subscribed \n FROM customer_dataset\n LATERAL VIEW EXPLODE(smsSubscribed) AS subscribed\n\n), sms_subscribed_grouped AS (\n \n SELECT \n customer_id, \n MAX(last_subscribed) AS last_subscribed \n FROM sms_subscribed_exploded \n GROUP BY customer_id\n\n), sms_unsubscribed_exploded AS (\n \n SELECT\n customer_id, \n unsubscribed.timeStamp AS last_unsubscribed \n FROM customer_dataset \n LATERAL VIEW EXPLODE(smsUnsubscribed) AS unsubscribed\n\n), sms_unsubscribed_grouped AS (\n \n SELECT \n customer_id, \n MAX(last_unsubscribed) AS last_unsubscribed \n FROM sms_unsubscribed_exploded \n GROUP BY customer_id\n \n), customer_subscriptions AS (\n\n SELECT * FROM sms_subscribed_grouped \n LEFT JOIN sms_unsubscribed_grouped\n USING (customer_id)\n\n), subscribed_customers AS (\n\n SELECT \n customer_id, \n (CASE WHEN last_subscribed IS NOT NULL AND last_unsubscribed IS NOT NULL AND UNIX_TIMESTAMP(last_unsubscribed) > UNIX_TIMESTAMP(last_subscribed) THEN true ELSE false END) AS sms_unsubscribed \n FROM customer_subscriptions\n\n), engaged_customers AS (\n\n SELECT\n customer_dataset.customer_id,\n (subscribed_customers.customer_id IS NOT NULL) AS subscribed_customer,\n customer_dataset.acceptsSmsMarketing,\n subscribed_customers.sms_unsubscribed,\n (CASE WHEN customer_dataset.acceptsSmsMarketing IS NOT NULL THEN customer_dataset.acceptsSmsMarketing ELSE subscribed_customers.sms_unsubscribed END) AS accepts_sms_marketing,\n (CASE WHEN smsPartOfCampaign IS NOT NULL THEN SIZE(smsPartOfCampaign) ELSE 0 END) AS num_campaigns,\n (CASE WHEN smsConverted IS NOT NULL AND smsPartOfCampaign IS NOT NULL THEN ROUND(SIZE(smsConverted) / SIZE(smsPartOfCampaign), 2) ELSE 0 END) AS prc_campaigns_with_conversion\n FROM customer_dataset\n LEFT JOIN subscribed_customers ON subscribed_customers.customer_id = customer_dataset.customer_id\n\n), engagement_marketing_material AS (\n\n SELECT \n customer_id,\n (CASE WHEN NOT subscribed_customer OR (engaged_customers.accepts_sms_marketing = FALSE AND engaged_customers.sms_unsubscribed = FALSE) THEN 'Not an SMS User'\n WHEN engaged_customers.accepts_sms_marketing = FALSE AND engaged_customers.sms_unsubscribed = TRUE THEN 'Unsubscribed'\n WHEN engaged_customers.accepts_sms_marketing = TRUE AND engaged_customers.num_campaigns < 5 THEN 'Newcomer'\n WHEN engaged_customers.accepts_sms_marketing = TRUE AND engaged_customers.prc_campaigns_with_conversion >= 0.15 THEN 'Highly Engaged'\n WHEN engaged_customers.accepts_sms_marketing = TRUE AND engaged_customers.prc_campaigns_with_conversion >= 0.05 THEN 'Engaging'\n WHEN engaged_customers.accepts_sms_marketing = TRUE AND engaged_customers.prc_campaigns_with_conversion >= 0.0 THEN 'Ignores' \n END) AS engagement_with_marketing_material\n FROM engaged_customers\n\n), engagement_marketing_material_ranked AS (\n SELECT\n customer_id,\n engagement_with_marketing_material,\n CAST(CASE WHEN engagement_with_marketing_material = 'Not an SMS User' THEN 1\n WHEN engagement_with_marketing_material = 'Unsubscribed' THEN 0\n WHEN engagement_with_marketing_material = 'Newcomer' THEN 2\n WHEN engagement_with_marketing_material = 'Engaging' THEN 5\n WHEN engagement_with_marketing_material = 'Highly Engaged' THEN 4\n WHEN engagement_with_marketing_material = 'Ignores' THEN 4 \n END AS TINYINT) AS engagement_with_marketing_material_rank\n FROM engagement_marketing_material\n)\n\nSELECT * \nFROM engagement_marketing_material_ranked", "language": "sql", "refs": [{"name": "platform_stg__customer_dataset", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__customer_dataset"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.sql", "compiled": true, "compiled_code": "\n\nWITH customer_dataset AS (\n\n SELECT \n profileId AS customer_id,\n smsSubscribed,\n smsUnsubscribed,\n properties.sms.acceptsMarketing AS acceptsSmsMarketing,\n smsPartOfCampaign,\n smsConverted\n FROM dev_dkruh1.platform_stg__customer_dataset\n\n), sms_subscribed_exploded AS (\n\n SELECT \n customer_id, \n subscribed.timeStamp AS last_subscribed \n FROM customer_dataset\n LATERAL VIEW EXPLODE(smsSubscribed) AS subscribed\n\n), sms_subscribed_grouped AS (\n \n SELECT \n customer_id, \n MAX(last_subscribed) AS last_subscribed \n FROM sms_subscribed_exploded \n GROUP BY customer_id\n\n), sms_unsubscribed_exploded AS (\n \n SELECT\n customer_id, \n unsubscribed.timeStamp AS last_unsubscribed \n FROM customer_dataset \n LATERAL VIEW EXPLODE(smsUnsubscribed) AS unsubscribed\n\n), sms_unsubscribed_grouped AS (\n \n SELECT \n customer_id, \n MAX(last_unsubscribed) AS last_unsubscribed \n FROM sms_unsubscribed_exploded \n GROUP BY customer_id\n \n), customer_subscriptions AS (\n\n SELECT * FROM sms_subscribed_grouped \n LEFT JOIN sms_unsubscribed_grouped\n USING (customer_id)\n\n), subscribed_customers AS (\n\n SELECT \n customer_id, \n (CASE WHEN last_subscribed IS NOT NULL AND last_unsubscribed IS NOT NULL AND UNIX_TIMESTAMP(last_unsubscribed) > UNIX_TIMESTAMP(last_subscribed) THEN true ELSE false END) AS sms_unsubscribed \n FROM customer_subscriptions\n\n), engaged_customers AS (\n\n SELECT\n customer_dataset.customer_id,\n (subscribed_customers.customer_id IS NOT NULL) AS subscribed_customer,\n customer_dataset.acceptsSmsMarketing,\n subscribed_customers.sms_unsubscribed,\n (CASE WHEN customer_dataset.acceptsSmsMarketing IS NOT NULL THEN customer_dataset.acceptsSmsMarketing ELSE subscribed_customers.sms_unsubscribed END) AS accepts_sms_marketing,\n (CASE WHEN smsPartOfCampaign IS NOT NULL THEN SIZE(smsPartOfCampaign) ELSE 0 END) AS num_campaigns,\n (CASE WHEN smsConverted IS NOT NULL AND smsPartOfCampaign IS NOT NULL THEN ROUND(SIZE(smsConverted) / SIZE(smsPartOfCampaign), 2) ELSE 0 END) AS prc_campaigns_with_conversion\n FROM customer_dataset\n LEFT JOIN subscribed_customers ON subscribed_customers.customer_id = customer_dataset.customer_id\n\n), engagement_marketing_material AS (\n\n SELECT \n customer_id,\n (CASE WHEN NOT subscribed_customer OR (engaged_customers.accepts_sms_marketing = FALSE AND engaged_customers.sms_unsubscribed = FALSE) THEN 'Not an SMS User'\n WHEN engaged_customers.accepts_sms_marketing = FALSE AND engaged_customers.sms_unsubscribed = TRUE THEN 'Unsubscribed'\n WHEN engaged_customers.accepts_sms_marketing = TRUE AND engaged_customers.num_campaigns < 5 THEN 'Newcomer'\n WHEN engaged_customers.accepts_sms_marketing = TRUE AND engaged_customers.prc_campaigns_with_conversion >= 0.15 THEN 'Highly Engaged'\n WHEN engaged_customers.accepts_sms_marketing = TRUE AND engaged_customers.prc_campaigns_with_conversion >= 0.05 THEN 'Engaging'\n WHEN engaged_customers.accepts_sms_marketing = TRUE AND engaged_customers.prc_campaigns_with_conversion >= 0.0 THEN 'Ignores' \n END) AS engagement_with_marketing_material\n FROM engaged_customers\n\n), engagement_marketing_material_ranked AS (\n SELECT\n customer_id,\n engagement_with_marketing_material,\n CAST(CASE WHEN engagement_with_marketing_material = 'Not an SMS User' THEN 1\n WHEN engagement_with_marketing_material = 'Unsubscribed' THEN 0\n WHEN engagement_with_marketing_material = 'Newcomer' THEN 2\n WHEN engagement_with_marketing_material = 'Engaging' THEN 5\n WHEN engagement_with_marketing_material = 'Highly Engaged' THEN 4\n WHEN engagement_with_marketing_material = 'Ignores' THEN 4 \n END AS TINYINT) AS engagement_with_marketing_material_rank\n FROM engagement_marketing_material\n)\n\nSELECT * \nFROM engagement_marketing_material_ranked", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__customer_dimensions_engagement_marketing_material_inc", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.sql", "unique_id": "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_engagement_marketing_material_inc", "platform_stg__customer_dimensions_engagement_marketing_material_inc"], "alias": "platform_stg__customer_dimensions_engagement_marketing_material_inc", "checksum": {"name": "sha256", "checksum": "2b94df3de062b50a3ec3c00d8774634c94b555c8f7672e1bad9f0e0956b848e1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "This table holds the dimension score of a customer for the engagement marketing material dimension for each date an event occured", "columns": {"app_key": {"name": "app_key", "description": "The store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The profile id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "The date of segmentation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "engagement_with_marketing_material": {"name": "engagement_with_marketing_material", "description": "The dimension score (e.g. unsubscribed, non an sms user, ignores, engaging, highly engaged)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_with_marketing_material_rank": {"name": "engagement_with_marketing_material_rank", "description": "The dimension rank from 0 to 5", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "materialized": "incremental", "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082684.1683717, "relation_name": "dev_dkruh1.platform_stg__customer_dimensions_engagement_marketing_material_inc", "raw_code": "{{ \n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=['date'],\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE protected_platform.customer_dimensions_engagement_marketing_material_inc ZORDER BY customer_id;')\n )\n}}\n\nWITH customer_dataset AS (\n\n SELECT \n storeId AS app_key,\n profileId AS customer_id,\n smsSubscribed,\n smsUnsubscribed,\n properties.sms.acceptsMarketing AS acceptsSmsMarketing,\n smsPartOfCampaign,\n smsConverted\n FROM {{ ref('platform_stg__customer_dataset_reduced') }}\n -- On the first run, take all records\n -- On consecutive runs, take only the records which haven't been processed yet before today\n {{incremental_condition(data_type='DATE',destination_condition_column='date', query_condition_column='properties.updatedAt')}}\n\n), sms_subscribed_exploded AS (\n SELECT \n app_key,\n customer_id, \n subscribed.timeStamp AS subscribed_date,\n acceptsSmsMarketing \n FROM customer_dataset\n LATERAL VIEW EXPLODE(smsSubscribed) AS subscribed\n), sms_unsubscribed_exploded AS (\n SELECT \n app_key,\n customer_id, \n unsubscribed.timeStamp AS unsubscribed_date,\n acceptsSmsMarketing \n FROM customer_dataset\n LATERAL VIEW EXPLODE(smsUnsubscribed) AS unsubscribed\n), sms_partofcampaign_exploded AS (\n SELECT \n app_key,\n customer_id, \n campaign.timeStamp AS campaign_date ,\n acceptsSmsMarketing \n FROM customer_dataset\n LATERAL VIEW EXPLODE(smsPartOfCampaign) AS campaign\n), sms_converted_exploded AS (\n SELECT \n app_key,\n customer_id, \n converted.timeStamp AS converted_date,\n acceptsSmsMarketing \n FROM customer_dataset\n LATERAL VIEW EXPLODE(smsConverted) AS converted\n), all_dates AS (\n SELECT \n app_key,\n customer_id, \n subscribed_date AS date,\n TRUE AS subscribed,\n NULL AS campaign_date,\n NULL AS converted_date,\n acceptsSmsMarketing \n FROM sms_subscribed_exploded\n UNION ALL\n SELECT \n app_key,\n customer_id, \n unsubscribed_date AS date,\n FALSE AS subscribed,\n NULL AS campaign_date,\n NULL AS converted_date,\n acceptsSmsMarketing \n FROM sms_unsubscribed_exploded\n UNION ALL\n SELECT \n app_key,\n customer_id, \n campaign_date AS date, \n NULL AS subscribed,\n campaign_date,\n NULL AS converted_date,\n acceptsSmsMarketing \n FROM sms_partofcampaign_exploded\n UNION ALL\n SELECT \n app_key,\n customer_id, \n converted_date AS date, \n NULL AS subscribed,\n NULL AS campaign_date,\n converted_date,\n acceptsSmsMarketing \n FROM sms_converted_exploded\n), \n-- What 'OVER (PARTITION BY customer_id ORDER BY date)' does is it takes all the previous records before the current record and applies the window functions COUNT and LAG (which takes the previous record)\nall_dates_stats AS (\n SELECT \n app_key,\n customer_id, \n date, \n COALESCE(subscribed, LAG(subscribed) IGNORE NULLS OVER (PARTITION BY customer_id ORDER BY date)) as subscribed,\n COUNT(campaign_date) OVER (PARTITION BY customer_id ORDER BY date) AS num_campaigns,\n COUNT(converted_date) OVER (PARTITION BY customer_id ORDER BY date) AS num_conversions,\n acceptsSmsMarketing \n FROM all_dates\n), grouped_by_date AS (\n SELECT\n LAST(app_key) as app_key,\n customer_id,\n DATE(date) as date,\n LAST(subscribed) as subscribed,\n LAST(num_campaigns) as num_campaigns,\n LAST(num_conversions) as num_conversions,\n LAST(acceptsSmsMarketing) as accepts_sms_marketing\n FROM all_dates_stats\n GROUP BY customer_id, DATE(date)\n), engagement AS (\n SELECT \n app_key,\n customer_id, \n date, \n CASE \n WHEN accepts_sms_marketing = FALSE AND subscribed = FALSE THEN 'Not an SMS User'\n WHEN accepts_sms_marketing = FALSE AND subscribed = TRUE THEN 'Unsubscribed'\n WHEN accepts_sms_marketing = TRUE AND num_campaigns < 5 THEN 'Newcomer'\n WHEN accepts_sms_marketing = TRUE AND num_conversions / num_campaigns >= 0.15 THEN 'Highly Engaged'\n WHEN accepts_sms_marketing = TRUE AND num_conversions / num_campaigns >= 0.05 THEN 'Engaging'\n WHEN accepts_sms_marketing = TRUE AND num_conversions / num_campaigns >= 0.0 THEN 'Ignores' \n END AS engagement_with_marketing_material\n FROM grouped_by_date\n), engagement_lagged AS (\n SELECT \n *,\n COALESCE(((LAG(engagement_with_marketing_material) OVER (\n PARTITION BY customer_id \n ORDER BY date ASC) ) = engagement_with_marketing_material), FALSE) as is_duplicate\n FROM engagement\n), engagement_filtered AS (\n SELECT app_key, customer_id, date, engagement_with_marketing_material\n FROM engagement_lagged\n WHERE NOT is_duplicate\n)\n\nSELECT *,\n CAST(CASE WHEN engagement_with_marketing_material = 'Not an SMS User' THEN 1\n WHEN engagement_with_marketing_material = 'Unsubscribed' THEN 0\n WHEN engagement_with_marketing_material = 'Newcomer' THEN 3\n WHEN engagement_with_marketing_material = 'Engaging' THEN 4\n WHEN engagement_with_marketing_material = 'Highly Engaged' THEN 5\n WHEN engagement_with_marketing_material = 'Ignores' THEN 2\n END AS TINYINT) AS engagement_with_marketing_material_rank\n\nFROM engagement_filtered\n{{incremental_condition(data_type='DATE',destination_condition_column='date')}}", "language": "sql", "refs": [{"name": "platform_stg__customer_dataset_reduced", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__customer_dataset_reduced"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.sql", "compiled": true, "compiled_code": "\n\nWITH customer_dataset AS (\n\n SELECT \n storeId AS app_key,\n profileId AS customer_id,\n smsSubscribed,\n smsUnsubscribed,\n properties.sms.acceptsMarketing AS acceptsSmsMarketing,\n smsPartOfCampaign,\n smsConverted\n FROM dev_dkruh1.platform_stg__customer_dataset_reduced\n -- On the first run, take all records\n -- On consecutive runs, take only the records which haven't been processed yet before today\n WHERE DATE(properties.updatedAt) <= DATE_SUB(CURRENT_DATE,1)\n\n), sms_subscribed_exploded AS (\n SELECT \n app_key,\n customer_id, \n subscribed.timeStamp AS subscribed_date,\n acceptsSmsMarketing \n FROM customer_dataset\n LATERAL VIEW EXPLODE(smsSubscribed) AS subscribed\n), sms_unsubscribed_exploded AS (\n SELECT \n app_key,\n customer_id, \n unsubscribed.timeStamp AS unsubscribed_date,\n acceptsSmsMarketing \n FROM customer_dataset\n LATERAL VIEW EXPLODE(smsUnsubscribed) AS unsubscribed\n), sms_partofcampaign_exploded AS (\n SELECT \n app_key,\n customer_id, \n campaign.timeStamp AS campaign_date ,\n acceptsSmsMarketing \n FROM customer_dataset\n LATERAL VIEW EXPLODE(smsPartOfCampaign) AS campaign\n), sms_converted_exploded AS (\n SELECT \n app_key,\n customer_id, \n converted.timeStamp AS converted_date,\n acceptsSmsMarketing \n FROM customer_dataset\n LATERAL VIEW EXPLODE(smsConverted) AS converted\n), all_dates AS (\n SELECT \n app_key,\n customer_id, \n subscribed_date AS date,\n TRUE AS subscribed,\n NULL AS campaign_date,\n NULL AS converted_date,\n acceptsSmsMarketing \n FROM sms_subscribed_exploded\n UNION ALL\n SELECT \n app_key,\n customer_id, \n unsubscribed_date AS date,\n FALSE AS subscribed,\n NULL AS campaign_date,\n NULL AS converted_date,\n acceptsSmsMarketing \n FROM sms_unsubscribed_exploded\n UNION ALL\n SELECT \n app_key,\n customer_id, \n campaign_date AS date, \n NULL AS subscribed,\n campaign_date,\n NULL AS converted_date,\n acceptsSmsMarketing \n FROM sms_partofcampaign_exploded\n UNION ALL\n SELECT \n app_key,\n customer_id, \n converted_date AS date, \n NULL AS subscribed,\n NULL AS campaign_date,\n converted_date,\n acceptsSmsMarketing \n FROM sms_converted_exploded\n), \n-- What 'OVER (PARTITION BY customer_id ORDER BY date)' does is it takes all the previous records before the current record and applies the window functions COUNT and LAG (which takes the previous record)\nall_dates_stats AS (\n SELECT \n app_key,\n customer_id, \n date, \n COALESCE(subscribed, LAG(subscribed) IGNORE NULLS OVER (PARTITION BY customer_id ORDER BY date)) as subscribed,\n COUNT(campaign_date) OVER (PARTITION BY customer_id ORDER BY date) AS num_campaigns,\n COUNT(converted_date) OVER (PARTITION BY customer_id ORDER BY date) AS num_conversions,\n acceptsSmsMarketing \n FROM all_dates\n), grouped_by_date AS (\n SELECT\n LAST(app_key) as app_key,\n customer_id,\n DATE(date) as date,\n LAST(subscribed) as subscribed,\n LAST(num_campaigns) as num_campaigns,\n LAST(num_conversions) as num_conversions,\n LAST(acceptsSmsMarketing) as accepts_sms_marketing\n FROM all_dates_stats\n GROUP BY customer_id, DATE(date)\n), engagement AS (\n SELECT \n app_key,\n customer_id, \n date, \n CASE \n WHEN accepts_sms_marketing = FALSE AND subscribed = FALSE THEN 'Not an SMS User'\n WHEN accepts_sms_marketing = FALSE AND subscribed = TRUE THEN 'Unsubscribed'\n WHEN accepts_sms_marketing = TRUE AND num_campaigns < 5 THEN 'Newcomer'\n WHEN accepts_sms_marketing = TRUE AND num_conversions / num_campaigns >= 0.15 THEN 'Highly Engaged'\n WHEN accepts_sms_marketing = TRUE AND num_conversions / num_campaigns >= 0.05 THEN 'Engaging'\n WHEN accepts_sms_marketing = TRUE AND num_conversions / num_campaigns >= 0.0 THEN 'Ignores' \n END AS engagement_with_marketing_material\n FROM grouped_by_date\n), engagement_lagged AS (\n SELECT \n *,\n COALESCE(((LAG(engagement_with_marketing_material) OVER (\n PARTITION BY customer_id \n ORDER BY date ASC) ) = engagement_with_marketing_material), FALSE) as is_duplicate\n FROM engagement\n), engagement_filtered AS (\n SELECT app_key, customer_id, date, engagement_with_marketing_material\n FROM engagement_lagged\n WHERE NOT is_duplicate\n)\n\nSELECT *,\n CAST(CASE WHEN engagement_with_marketing_material = 'Not an SMS User' THEN 1\n WHEN engagement_with_marketing_material = 'Unsubscribed' THEN 0\n WHEN engagement_with_marketing_material = 'Newcomer' THEN 3\n WHEN engagement_with_marketing_material = 'Engaging' THEN 4\n WHEN engagement_with_marketing_material = 'Highly Engaged' THEN 5\n WHEN engagement_with_marketing_material = 'Ignores' THEN 2\n END AS TINYINT) AS engagement_with_marketing_material_rank\n\nFROM engagement_filtered\nWHERE DATE(date) <= DATE_SUB(CURRENT_DATE,1)", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__customer_dimensions_loyalty_program": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__customer_dimensions_loyalty_program", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.sql", "unique_id": "model.yoda.platform_stg__customer_dimensions_loyalty_program", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_loyalty_program", "platform_stg__customer_dimensions_loyalty_program"], "alias": "platform_stg__customer_dimensions_loyalty_program", "checksum": {"name": "sha256", "checksum": "65cae7edd28b26df6db4b1120e978d992c69c73ee104e7b0e2c44a0f865846ca"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "This table holds the dimension score of a customer for the loyalty program dimension", "columns": {"customer_id": {"name": "customer_id", "description": "The customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_tier": {"name": "loyalty_tier", "description": "The loyalty tier name (taken the string value of the vipTierName field with trailing spaces removed)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_rank": {"name": "loyalty_rank", "description": "The loyalty tier rank (taken the int value of the vipTierRank field without transformation)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "materialized": "table"}, "created_at": 1700082684.4055424, "relation_name": "dev_dkruh1.platform_stg__customer_dimensions_loyalty_program", "raw_code": "{{ config(materialized=dbt_data_applications.get_table_materialization('table', 'view')) }}\n\nWITH customer_dataset AS (\n SELECT \n profileId,\n loyaltyTierChanged,\n properties\n FROM {{ ref('platform_stg__customer_dataset') }}\n), loyalty_tier_changed_exploded AS (\n SELECT\n profileId, \n loyalty_tier.timeStamp AS last_tier_changed,\n COALESCE(properties.loyalty.vipTierName, loyalty_tier.properties.loyaltyTierChangedEventProperties.vipTierName) AS vip_tier_name,\n COALESCE(CAST(properties.loyalty.vipTierRank AS int), loyalty_tier.properties.loyaltyTierChangedEventProperties.vipTierRank) AS vip_tier_rank\n FROM customer_dataset\n LATERAL VIEW EXPLODE(loyaltyTierChanged) AS loyalty_tier\n), loyalty_tier_changed_grouped AS (\n SELECT\n profileId,\n vip_tier_name,\n vip_tier_rank,\n ROW_NUMBER() OVER (PARTITION BY profileId ORDER BY last_tier_changed DESC) AS row_num\n FROM loyalty_tier_changed_exploded\n), loyalty_program_reduced (\n SELECT\n profileId,\n (CASE WHEN vip_tier_name IS NOT NULL THEN RTRIM(vip_tier_name) ELSE 'No tier' END) AS loyalty_tier,\n (CASE WHEN vip_tier_rank IS NOT NULL THEN vip_tier_rank ELSE -1 END) AS loyalty_rank\n FROM loyalty_tier_changed_grouped\n WHERE row_num = 1\n), loyalty_program (\n SELECT\n cd.profileId AS customer_id,\n COALESCE(lpr.loyalty_tier, 'No tier') AS loyalty_tier,\n COALESCE(lpr.loyalty_rank, -1) AS loyalty_rank\n FROM customer_dataset cd\n LEFT JOIN loyalty_program_reduced lpr ON cd.profileId = lpr.profileId\n)\n\nSELECT * \nFROM loyalty_program;", "language": "sql", "refs": [{"name": "platform_stg__customer_dataset", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__customer_dataset"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.sql", "compiled": true, "compiled_code": "\n\nWITH customer_dataset AS (\n SELECT \n profileId,\n loyaltyTierChanged,\n properties\n FROM dev_dkruh1.platform_stg__customer_dataset\n), loyalty_tier_changed_exploded AS (\n SELECT\n profileId, \n loyalty_tier.timeStamp AS last_tier_changed,\n COALESCE(properties.loyalty.vipTierName, loyalty_tier.properties.loyaltyTierChangedEventProperties.vipTierName) AS vip_tier_name,\n COALESCE(CAST(properties.loyalty.vipTierRank AS int), loyalty_tier.properties.loyaltyTierChangedEventProperties.vipTierRank) AS vip_tier_rank\n FROM customer_dataset\n LATERAL VIEW EXPLODE(loyaltyTierChanged) AS loyalty_tier\n), loyalty_tier_changed_grouped AS (\n SELECT\n profileId,\n vip_tier_name,\n vip_tier_rank,\n ROW_NUMBER() OVER (PARTITION BY profileId ORDER BY last_tier_changed DESC) AS row_num\n FROM loyalty_tier_changed_exploded\n), loyalty_program_reduced (\n SELECT\n profileId,\n (CASE WHEN vip_tier_name IS NOT NULL THEN RTRIM(vip_tier_name) ELSE 'No tier' END) AS loyalty_tier,\n (CASE WHEN vip_tier_rank IS NOT NULL THEN vip_tier_rank ELSE -1 END) AS loyalty_rank\n FROM loyalty_tier_changed_grouped\n WHERE row_num = 1\n), loyalty_program (\n SELECT\n cd.profileId AS customer_id,\n COALESCE(lpr.loyalty_tier, 'No tier') AS loyalty_tier,\n COALESCE(lpr.loyalty_rank, -1) AS loyalty_rank\n FROM customer_dataset cd\n LEFT JOIN loyalty_program_reduced lpr ON cd.profileId = lpr.profileId\n)\n\nSELECT * \nFROM loyalty_program;", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__customer_dimensions_loyalty_program_inc": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__customer_dimensions_loyalty_program_inc", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.sql", "unique_id": "model.yoda.platform_stg__customer_dimensions_loyalty_program_inc", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_loyalty_program_inc", "platform_stg__customer_dimensions_loyalty_program_inc"], "alias": "platform_stg__customer_dimensions_loyalty_program_inc", "checksum": {"name": "sha256", "checksum": "494408ae2991cb891aebd665526d2e56fb78945e40196396067e5387406a91f5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "This table holds the dimension score of a customer for the loyalty program dimension for every date there is a loyalty change", "columns": {"app_key": {"name": "app_key", "description": "The store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The profile id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "The date of segmentation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "loyalty_tier": {"name": "loyalty_tier", "description": "The loyalty tier name (taken the string value of the vipTierName field with trailing spaces removed)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_rank": {"name": "loyalty_rank", "description": "The loyalty tier rank (taken the int value of the vipTierRank field without transformation)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "materialized": "incremental", "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082684.433056, "relation_name": "dev_dkruh1.platform_stg__customer_dimensions_loyalty_program_inc", "raw_code": "{{ \n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=['date'],\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE protected_platform.customer_dimensions_loyalty_program_inc ZORDER BY customer_id;')\n )\n}}\n\n\nWITH customer_dataset AS (\n SELECT \n storeId as app_key,\n profileId as customer_id,\n loyaltyTierChanged\n FROM {{ ref('platform_stg__customer_dataset_reduced') }}\n {{incremental_condition(data_type='DATE',destination_condition_column='date', query_condition_column='properties.updatedAt')}}\n), loyalty_tier_changed_exploded AS (\n SELECT\n app_key,\n customer_id, \n loyalty_tier.timeStamp AS timeStamp,\n loyalty_tier.properties.loyaltyTierChangedEventProperties.vipTierName AS vip_tier_name,\n loyalty_tier.properties.loyaltyTierChangedEventProperties.vipTierRank AS vip_tier_rank\n FROM customer_dataset\n LATERAL VIEW EXPLODE(loyaltyTierChanged) AS loyalty_tier\n), loyalty_tier_changed_grouped AS (\n SELECT\n LAST(app_key) as app_key,\n customer_id,\n DATE(timeStamp) as date,\n LAST(vip_tier_name) as vip_tier_name,\n LAST(vip_tier_rank) as vip_tier_rank\n FROM loyalty_tier_changed_exploded\n GROUP BY customer_id, DATE(timeStamp)\n), loyalty_program (\n SELECT\n app_key,\n customer_id,\n date,\n CASE WHEN vip_tier_name IS NOT NULL THEN RTRIM(vip_tier_name) ELSE 'No tier' END AS loyalty_tier,\n CASE WHEN vip_tier_rank IS NOT NULL THEN vip_tier_rank ELSE -1 END AS loyalty_rank\n FROM loyalty_tier_changed_grouped\n)\n\nSELECT * \nFROM loyalty_program\n{{incremental_condition(data_type='DATE',destination_condition_column='date')}}", "language": "sql", "refs": [{"name": "platform_stg__customer_dataset_reduced", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__customer_dataset_reduced"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.sql", "compiled": true, "compiled_code": "\n\n\nWITH customer_dataset AS (\n SELECT \n storeId as app_key,\n profileId as customer_id,\n loyaltyTierChanged\n FROM dev_dkruh1.platform_stg__customer_dataset_reduced\n WHERE DATE(properties.updatedAt) <= DATE_SUB(CURRENT_DATE,1)\n), loyalty_tier_changed_exploded AS (\n SELECT\n app_key,\n customer_id, \n loyalty_tier.timeStamp AS timeStamp,\n loyalty_tier.properties.loyaltyTierChangedEventProperties.vipTierName AS vip_tier_name,\n loyalty_tier.properties.loyaltyTierChangedEventProperties.vipTierRank AS vip_tier_rank\n FROM customer_dataset\n LATERAL VIEW EXPLODE(loyaltyTierChanged) AS loyalty_tier\n), loyalty_tier_changed_grouped AS (\n SELECT\n LAST(app_key) as app_key,\n customer_id,\n DATE(timeStamp) as date,\n LAST(vip_tier_name) as vip_tier_name,\n LAST(vip_tier_rank) as vip_tier_rank\n FROM loyalty_tier_changed_exploded\n GROUP BY customer_id, DATE(timeStamp)\n), loyalty_program (\n SELECT\n app_key,\n customer_id,\n date,\n CASE WHEN vip_tier_name IS NOT NULL THEN RTRIM(vip_tier_name) ELSE 'No tier' END AS loyalty_tier,\n CASE WHEN vip_tier_rank IS NOT NULL THEN vip_tier_rank ELSE -1 END AS loyalty_rank\n FROM loyalty_tier_changed_grouped\n)\n\nSELECT * \nFROM loyalty_program\nWHERE DATE(date) <= DATE_SUB(CURRENT_DATE,1)", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__customer_dimensions_returning_buyers": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__customer_dimensions_returning_buyers", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.sql", "unique_id": "model.yoda.platform_stg__customer_dimensions_returning_buyers", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_returning_buyers", "platform_stg__customer_dimensions_returning_buyers"], "alias": "platform_stg__customer_dimensions_returning_buyers", "checksum": {"name": "sha256", "checksum": "cfd1c8aa9635b30e8fa072c2adc5f1340fc51ab751e52184c3e7088d9c9dcecd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "This table holds the dimension score of a customer for the returning buyes dimension", "columns": {"customer_id": {"name": "customer_id", "description": "The customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "returning_buyers": {"name": "returning_buyers", "description": "The dimension score (e.g. prospects, single surchase, repeat purchase, frequent shopper)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "returning_buyers_rank": {"name": "returning_buyers_rank", "description": "The dimension rank from 0 to 3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "materialized": "table"}, "created_at": 1700082684.4463804, "relation_name": "dev_dkruh1.platform_stg__customer_dimensions_returning_buyers", "raw_code": "{{ config(materialized=dbt_data_applications.get_table_materialization('table', 'view')) }}\n\nWITH customers_with_orders AS (\n \n SELECT \n customer_id, \n num_orders_365d AS num_orders \n FROM {{ ref('platform_stg__customer_dimensions_business_metrics') }}\n\n), returning_buyers_group AS (\n \n SELECT \n customer_id,\n (CASE\n WHEN customers_with_orders.num_orders >= 3 THEN 'Frequent Shopper'\n WHEN customers_with_orders.num_orders = 2 THEN 'Repeat Purchase'\n WHEN customers_with_orders.num_orders = 1 THEN 'Single Purchase'\n ELSE 'Prospects'\n END) AS returning_buyers\n FROM customers_with_orders\n), returning_buyers_ranked AS (\n SELECT\n customer_id,\n returning_buyers,\n CAST(\n CASE \n WHEN returning_buyers = 'Prospects' THEN 0\n WHEN returning_buyers = 'Single Purchase' THEN 1\n WHEN returning_buyers = 'Repeat Purchase' THEN 2\n WHEN returning_buyers = 'Frequent Shopper' THEN 3\n END AS TINYINT\n ) AS returning_buyers_rank\n FROM returning_buyers_group\n)\n\nSELECT * \nFROM returning_buyers_ranked;", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_business_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__customer_dimensions_business_metrics"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.sql", "compiled": true, "compiled_code": "\n\nWITH customers_with_orders AS (\n \n SELECT \n customer_id, \n num_orders_365d AS num_orders \n FROM dev_dkruh1.platform_stg__customer_dimensions_business_metrics\n\n), returning_buyers_group AS (\n \n SELECT \n customer_id,\n (CASE\n WHEN customers_with_orders.num_orders >= 3 THEN 'Frequent Shopper'\n WHEN customers_with_orders.num_orders = 2 THEN 'Repeat Purchase'\n WHEN customers_with_orders.num_orders = 1 THEN 'Single Purchase'\n ELSE 'Prospects'\n END) AS returning_buyers\n FROM customers_with_orders\n), returning_buyers_ranked AS (\n SELECT\n customer_id,\n returning_buyers,\n CAST(\n CASE \n WHEN returning_buyers = 'Prospects' THEN 0\n WHEN returning_buyers = 'Single Purchase' THEN 1\n WHEN returning_buyers = 'Repeat Purchase' THEN 2\n WHEN returning_buyers = 'Frequent Shopper' THEN 3\n END AS TINYINT\n ) AS returning_buyers_rank\n FROM returning_buyers_group\n)\n\nSELECT * \nFROM returning_buyers_ranked;", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__customer_dimensions_returning_buyers_inc": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__customer_dimensions_returning_buyers_inc", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.sql", "unique_id": "model.yoda.platform_stg__customer_dimensions_returning_buyers_inc", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_returning_buyers_inc", "platform_stg__customer_dimensions_returning_buyers_inc"], "alias": "platform_stg__customer_dimensions_returning_buyers_inc", "checksum": {"name": "sha256", "checksum": "a2c0fdcc69903b63bc54a6f858b87dd76a41006857ce3cca677d60d96666c050"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}, {"sql": "", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "This table holds the dimension score of a customer for the returning buyes dimension", "columns": {"app_key": {"name": "app_key", "description": "The store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "The date of segmentation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "num_orders": {"name": "num_orders", "description": "The number of orders on the given day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price": {"name": "total_price", "description": "The total amount spent on the given day", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_time_between_orders": {"name": "avg_time_between_orders", "description": "The average time between orders", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_buyers": {"name": "returning_buyers", "description": "The dimension score (e.g. prospects, single surchase, repeat purchase, frequent shopper)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "returning_buyers_rank": {"name": "returning_buyers_rank", "description": "The dimension rank from 0 to 3", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "tinyint"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": [""], "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "kaloyan.terziev@yotpo.com", "alert_channels": ["badgers-alerts-dev"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "materialized": "incremental", "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082684.5065217, "relation_name": "dev_dkruh1.platform_stg__customer_dimensions_returning_buyers_inc", "raw_code": "{{ \n config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=['date'],\n post_hook=dbt_data_applications.execute_only_on_production('OPTIMIZE protected_platform.customer_dimensions_returning_buyers_inc ZORDER BY customer_id;')\n )\n}}\n\n{% set two_years_ago = (modules.datetime.date.today() - modules.datetime.timedelta(days=730)).strftime('%Y-%m-%d') %}\n{% set three_years_ago = (modules.datetime.date.today() - modules.datetime.timedelta(days=1095)).strftime('%Y-%m-%d') %}\n{% set year_time_diff = 60 * 60 * 24 * 365 %}\n\nWITH customer_dataset AS (\n SELECT profileId, storeId, orderUpdated\n FROM {{ ref('platform_stg__customer_dataset_reduced') }}\n -- On the first run, take all records in the past three years, and only the records for dates that are not processed yet for consecutive runs\n -- On consecutive runs, take only the records which haven't been processed yet before today\n {{incremental_condition(data_type='DATE',destination_condition_column='date', query_condition_column='properties.updatedAt', min_lower_bound=three_years_ago)}}\n), orders_exploded AS (\n SELECT\n profileId AS customer_id,\n storeId AS app_key,\n order.properties.orderProperties.effectiveOrderCreationDate as date,\n order.properties.orderProperties.totalPrice as total_price\n FROM customer_dataset\n LATERAL VIEW EXPLODE(orderUpdated) AS order\n), \n-- What 'OVER (PARTITION BY customer_id ORDER BY date)' does is it takes all the previous records before the current record and applies the window function LAG which takes the previous record\norders_exploded_with_timeframes AS (\n SELECT\n app_key,\n customer_id,\n date,\n total_price,\n TIMESTAMPDIFF(SECOND, LAG(date) OVER (PARTITION BY customer_id ORDER BY date), date) AS time_diff\n FROM orders_exploded\n WHERE total_price > 0 AND date IS NOT NULL\n), business_metrics AS (\n SELECT\n FIRST(app_key) as app_key,\n customer_id,\n DATE(date) as date,\n COUNT(*) AS num_orders,\n SUM(total_price) as total_price,\n AVG(CASE WHEN time_diff <= {{year_time_diff}} THEN time_diff END) AS avg_time_between_orders\n FROM orders_exploded_with_timeframes\n GROUP BY customer_id, DATE(date)\n), customers_with_orders_in_past_year AS (\n SELECT\n FIRST(t1.app_key) as app_key,\n t1.customer_id,\n t1.date,\n FIRST(t1.num_orders) as num_orders,\n FIRST(t1.total_price) as total_price,\n FIRST(t1.avg_time_between_orders) as avg_time_between_orders,\n SUM(t2.num_orders) AS num_orders_last_365_days\n FROM\n business_metrics t1\n LEFT JOIN\n business_metrics t2\n ON\n t1.customer_id = t2.customer_id\n AND t2.date BETWEEN DATE_SUB(t1.date, 364) AND t1.date\n GROUP BY\n t1.customer_id, t1.date\n), returning_buyers_group AS (\n \n SELECT \n app_key,\n customer_id,\n date,\n num_orders,\n total_price,\n avg_time_between_orders,\n (CASE\n WHEN num_orders_last_365_days >= 3 THEN 'Frequent Shopper'\n WHEN num_orders_last_365_days = 2 THEN 'Repeat Purchase'\n WHEN num_orders_last_365_days = 1 THEN 'Single Purchase'\n ELSE 'Prospects'\n END) AS returning_buyers\n FROM customers_with_orders_in_past_year\n), returning_buyers_ranked AS (\n SELECT\n app_key,\n customer_id,\n date,\n num_orders,\n total_price,\n avg_time_between_orders,\n returning_buyers,\n CAST(\n CASE \n WHEN returning_buyers = 'Prospects' THEN 0\n WHEN returning_buyers = 'Single Purchase' THEN 1\n WHEN returning_buyers = 'Repeat Purchase' THEN 2\n WHEN returning_buyers = 'Frequent Shopper' THEN 3\n END AS TINYINT\n ) AS returning_buyers_rank\n FROM returning_buyers_group\n)\n\nSELECT * FROM returning_buyers_ranked\n{{incremental_condition(data_type='DATE',destination_condition_column='date', min_lower_bound=two_years_ago)}}", "language": "sql", "refs": [{"name": "platform_stg__customer_dataset_reduced", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.execute_only_on_production", "macro.yoda.incremental_condition", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__customer_dataset_reduced"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nWITH customer_dataset AS (\n SELECT profileId, storeId, orderUpdated\n FROM dev_dkruh1.platform_stg__customer_dataset_reduced\n -- On the first run, take all records in the past three years, and only the records for dates that are not processed yet for consecutive runs\n -- On consecutive runs, take only the records which haven't been processed yet before today\n WHERE DATE(properties.updatedAt) >= DATE('2020-11-15') AND DATE(properties.updatedAt) <= DATE_SUB(CURRENT_DATE,1)\n), orders_exploded AS (\n SELECT\n profileId AS customer_id,\n storeId AS app_key,\n order.properties.orderProperties.effectiveOrderCreationDate as date,\n order.properties.orderProperties.totalPrice as total_price\n FROM customer_dataset\n LATERAL VIEW EXPLODE(orderUpdated) AS order\n), \n-- What 'OVER (PARTITION BY customer_id ORDER BY date)' does is it takes all the previous records before the current record and applies the window function LAG which takes the previous record\norders_exploded_with_timeframes AS (\n SELECT\n app_key,\n customer_id,\n date,\n total_price,\n TIMESTAMPDIFF(SECOND, LAG(date) OVER (PARTITION BY customer_id ORDER BY date), date) AS time_diff\n FROM orders_exploded\n WHERE total_price > 0 AND date IS NOT NULL\n), business_metrics AS (\n SELECT\n FIRST(app_key) as app_key,\n customer_id,\n DATE(date) as date,\n COUNT(*) AS num_orders,\n SUM(total_price) as total_price,\n AVG(CASE WHEN time_diff <= 31536000 THEN time_diff END) AS avg_time_between_orders\n FROM orders_exploded_with_timeframes\n GROUP BY customer_id, DATE(date)\n), customers_with_orders_in_past_year AS (\n SELECT\n FIRST(t1.app_key) as app_key,\n t1.customer_id,\n t1.date,\n FIRST(t1.num_orders) as num_orders,\n FIRST(t1.total_price) as total_price,\n FIRST(t1.avg_time_between_orders) as avg_time_between_orders,\n SUM(t2.num_orders) AS num_orders_last_365_days\n FROM\n business_metrics t1\n LEFT JOIN\n business_metrics t2\n ON\n t1.customer_id = t2.customer_id\n AND t2.date BETWEEN DATE_SUB(t1.date, 364) AND t1.date\n GROUP BY\n t1.customer_id, t1.date\n), returning_buyers_group AS (\n \n SELECT \n app_key,\n customer_id,\n date,\n num_orders,\n total_price,\n avg_time_between_orders,\n (CASE\n WHEN num_orders_last_365_days >= 3 THEN 'Frequent Shopper'\n WHEN num_orders_last_365_days = 2 THEN 'Repeat Purchase'\n WHEN num_orders_last_365_days = 1 THEN 'Single Purchase'\n ELSE 'Prospects'\n END) AS returning_buyers\n FROM customers_with_orders_in_past_year\n), returning_buyers_ranked AS (\n SELECT\n app_key,\n customer_id,\n date,\n num_orders,\n total_price,\n avg_time_between_orders,\n returning_buyers,\n CAST(\n CASE \n WHEN returning_buyers = 'Prospects' THEN 0\n WHEN returning_buyers = 'Single Purchase' THEN 1\n WHEN returning_buyers = 'Repeat Purchase' THEN 2\n WHEN returning_buyers = 'Frequent Shopper' THEN 3\n END AS TINYINT\n ) AS returning_buyers_rank\n FROM returning_buyers_group\n)\n\nSELECT * FROM returning_buyers_ranked\nWHERE DATE(date) >= DATE('2021-11-15') AND DATE(date) <= DATE_SUB(CURRENT_DATE,1)", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__digest": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__digest", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.sql", "unique_id": "model.yoda.platform_stg__digest", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__digest", "platform_stg__digest"], "alias": "platform_stg__digest", "checksum": {"name": "sha256", "checksum": "7c99cd4352fa3aabbac3c289068e351a1e1ec2c47088ad3779d48fd985f42d69"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Platform play monthly email digest data", "columns": {"id": {"name": "id", "description": "User id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "User email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "Account app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_high_touch": {"name": "is_high_touch", "description": "Is high touch flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "reviews_product": {"name": "reviews_product", "description": "Has reviews product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyalty_product": {"name": "loyalty_product", "description": "Has loyalty product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "email_product": {"name": "email_product", "description": "Has email product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sms_product": {"name": "sms_product", "description": "Has sms product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "subscriptions_product": {"name": "subscriptions_product", "description": "Has subscriptions product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "shop_currency": {"name": "shop_currency", "description": "Shop currency of the merchant account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "repeating_customers_rate": {"name": "repeating_customers_rate", "description": "Repeating customers [returning + engaged] percentage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "repeating_customers_rate_trend": {"name": "repeating_customers_rate_trend", "description": "Repeating customers [returning + engaged] growth percentage", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "repeating_customers_sales": {"name": "repeating_customers_sales", "description": "Sales percentage from repeating customers [returning + engaged]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "repeating_customers_sales_trend": {"name": "repeating_customers_sales_trend", "description": "Growth percentage sales from repeating customers [returning + engaged]", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_attributed_revenue": {"name": "subscriptions_attributed_revenue", "description": "Revenue attributed to the Subscriptions product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_attributed_revenue_trend": {"name": "subscriptions_attributed_revenue_trend", "description": "Trend of the revenue attributed to the Subscriptions product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue": {"name": "loyalty_attributed_revenue", "description": "Revenue attributed to the Loyalty product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_attributed_revenue_trend": {"name": "loyalty_attributed_revenue_trend", "description": "Trend of the revenue attributed to the Loyalty product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue": {"name": "email_attributed_revenue", "description": "Revenue attributed to the Email product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "email_attributed_revenue_trend": {"name": "email_attributed_revenue_trend", "description": "Trend of the revenue attributed to the Email product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue": {"name": "sms_attributed_revenue", "description": "Revenue attributed to the SMS product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_attributed_revenue_trend": {"name": "sms_attributed_revenue_trend", "description": "Trend of the revenue attributed to the Sms product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue": {"name": "reviews_attributed_revenue", "description": "Revenue attributed to the Reviews product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_attributed_revenue_trend": {"name": "reviews_attributed_revenue_trend", "description": "Trend of the revenue attributed to the Reviews product", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_customers_sales": {"name": "engaged_customers_sales", "description": "Revenue of customers in segment 'engaged'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_customers_sales_trend": {"name": "engaged_customers_sales_trend", "description": "Growth of revenue of customers in segment 'engaged'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_customers_count": {"name": "engaged_customers_count", "description": "Count of customers in segment 'engaged'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "engaged_customers_count_trend": {"name": "engaged_customers_count_trend", "description": "Gworth of count of customers in segment 'engaged'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_sales": {"name": "returning_customers_sales", "description": "Revenue from customers in segment 'returning'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_sales_trend": {"name": "returning_customers_sales_trend", "description": "Growth percentage of revenue from customers in segment 'returning'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "returning_customers_count": {"name": "returning_customers_count", "description": "Number of customers in segment 'returning'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "returning_customers_count_trend": {"name": "returning_customers_count_trend", "description": "Growth of customers in segment 'returning", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_customers_sales": {"name": "new_customers_sales", "description": "Revenue of customers in segment 'new'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_customers_sales_trend": {"name": "new_customers_sales_trend", "description": "Growth of revenue of customers in segment 'new'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_customers_count": {"name": "new_customers_count", "description": "Count of customers in segment 'new'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_customers_count_trend": {"name": "new_customers_count_trend", "description": "Gworth of count of customers in segment 'new'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082684.545836, "relation_name": "dev_dkruh1.platform_stg__digest", "raw_code": "WITH digest_accounts AS (\n SELECT * FROM {{ ref('platform_stg__digest_accounts') }}\n),\nsales_and_customers AS (\n SELECT * FROM {{ ref('platform__retention_metrics_total_sales_and_customers') }}\n),\norders_with_attribution AS (\n SELECT * FROM {{ ref('platform__orders_with_product_lines_attribution') }}\n WHERE total_orders_last_30_days > 50\n),\nreturning_customers AS (\n SELECT * FROM {{ ref('platform__retention_metrics_returning_customers') }}\n),\nmerchant_shop_currency AS (\n SELECT * FROM {{ ref('platform_stg__merchant_shop_currency') }}\n),\ndigest_acounts_with_data (\n SELECT\n da.id,\n da.email,\n da.app_key,\n da.is_high_touch,\n da.reviews_product,\n da.loyalty_product,\n da.email_product,\n da.sms_product,\n da.subscriptions_product,\n msc.shop_currency,\n\n -- repeating customers metrics: rate, sales + growth percentage\n rcm.returning_customers_value_last_30_days as repeating_customers_rate,\n rcm.returning_customers_trend_last_30_days as repeating_customers_rate_trend,\n\n rcm.sales_rate_value_last_30_days as repeating_customers_sales,\n rcm.sales_rate_trend_last_30_days as repeating_customers_sales_trend,\n\n -- order sales by attribution + growth percentage\n owa.subscriptions_attributed_revenue_last_30_days AS subscriptions_attributed_revenue,\n owa.subscriptions_attributed_revenue_trend_30_days AS subscriptions_attributed_revenue_trend,\n\n owa.loyalty_attributed_revenue_last_30_days AS loyalty_attributed_revenue,\n owa.loyalty_attributed_revenue_trend_30_days AS loyalty_attributed_revenue_trend,\n\n owa.email_attributed_revenue_last_30_days AS email_attributed_revenue,\n owa.email_attributed_revenue_trend_30_days AS email_attributed_revenue_trend,\n\n owa.sms_attributed_revenue_last_30_days AS sms_attributed_revenue,\n owa.sms_attributed_revenue_trend_30_days AS sms_attributed_revenue_trend,\n\n owa.reviews_attributed_revenue_last_30_days AS reviews_attributed_revenue,\n owa.reviews_attributed_revenue_trend_30_days AS reviews_attributed_revenue_trend,\n\n -- order sales by customer segment\n sac.revenue_engaged_last_30_days AS engaged_customers_sales,\n sac.revenue_engaged_trend_30_days as engaged_customers_sales_trend,\n sac.engaged_count_last_30_days AS engaged_customers_count,\n sac.engaged_count_trend_30_days AS engaged_customers_count_trend,\n\n sac.revenue_returning_last_30_days AS returning_customers_sales,\n sac.revenue_returning_trend_30_days as returning_customers_sales_trend,\n sac.returning_count_last_30_days AS returning_customers_count,\n sac.returning_count_trend_30_days AS returning_customers_count_trend,\n\n sac.revenue_new_last_30_days AS new_customers_sales,\n sac.revenue_new_trend_30_days as new_customers_sales_trend,\n sac.new_count_last_30_days AS new_customers_count,\n sac.new_count_trend_30_days AS new_customers_count_trend\n\n FROM\n digest_accounts AS da\n -- first we do INNER JOIN as we want to filter out merchants who haven't got more than 50 orders\n -- as digest_accounts contains only shopify merchants, each other platform merchant will be filtered out from here on\n INNER JOIN\n orders_with_attribution AS owa ON owa.app_key=da.app_key\n -- Now want to gather as much data for the merchants as possible.\n LEFT JOIN\n returning_customers AS rcm ON rcm.app_key=da.app_key\n LEFT JOIN\n sales_and_customers AS sac ON sac.app_key=da.app_key\n LEFT JOIN\n merchant_shop_currency AS msc ON msc.app_key=da.app_key\n)\n\nSELECT * FROM digest_acounts_with_data", "language": "sql", "refs": [{"name": "platform_stg__digest_accounts", "package": null, "version": null}, {"name": "platform__retention_metrics_total_sales_and_customers", "package": null, "version": null}, {"name": "platform__orders_with_product_lines_attribution", "package": null, "version": null}, {"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}, {"name": "platform_stg__merchant_shop_currency", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__digest_accounts", "model.yoda.platform__retention_metrics_total_sales_and_customers", "model.yoda.platform__orders_with_product_lines_attribution", "model.yoda.platform__retention_metrics_returning_customers", "model.yoda.platform_stg__merchant_shop_currency"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.sql", "compiled": true, "compiled_code": "WITH digest_accounts AS (\n SELECT * FROM dev_dkruh1.platform_stg__digest_accounts\n),\nsales_and_customers AS (\n SELECT * FROM dev_dkruh1.platform__retention_metrics_total_sales_and_customers\n),\norders_with_attribution AS (\n SELECT * FROM dev_dkruh1.platform__orders_with_product_lines_attribution\n WHERE total_orders_last_30_days > 50\n),\nreturning_customers AS (\n SELECT * FROM dev_dkruh1.platform__retention_metrics_returning_customers\n),\nmerchant_shop_currency AS (\n SELECT * FROM dev_dkruh1.platform_stg__merchant_shop_currency\n),\ndigest_acounts_with_data (\n SELECT\n da.id,\n da.email,\n da.app_key,\n da.is_high_touch,\n da.reviews_product,\n da.loyalty_product,\n da.email_product,\n da.sms_product,\n da.subscriptions_product,\n msc.shop_currency,\n\n -- repeating customers metrics: rate, sales + growth percentage\n rcm.returning_customers_value_last_30_days as repeating_customers_rate,\n rcm.returning_customers_trend_last_30_days as repeating_customers_rate_trend,\n\n rcm.sales_rate_value_last_30_days as repeating_customers_sales,\n rcm.sales_rate_trend_last_30_days as repeating_customers_sales_trend,\n\n -- order sales by attribution + growth percentage\n owa.subscriptions_attributed_revenue_last_30_days AS subscriptions_attributed_revenue,\n owa.subscriptions_attributed_revenue_trend_30_days AS subscriptions_attributed_revenue_trend,\n\n owa.loyalty_attributed_revenue_last_30_days AS loyalty_attributed_revenue,\n owa.loyalty_attributed_revenue_trend_30_days AS loyalty_attributed_revenue_trend,\n\n owa.email_attributed_revenue_last_30_days AS email_attributed_revenue,\n owa.email_attributed_revenue_trend_30_days AS email_attributed_revenue_trend,\n\n owa.sms_attributed_revenue_last_30_days AS sms_attributed_revenue,\n owa.sms_attributed_revenue_trend_30_days AS sms_attributed_revenue_trend,\n\n owa.reviews_attributed_revenue_last_30_days AS reviews_attributed_revenue,\n owa.reviews_attributed_revenue_trend_30_days AS reviews_attributed_revenue_trend,\n\n -- order sales by customer segment\n sac.revenue_engaged_last_30_days AS engaged_customers_sales,\n sac.revenue_engaged_trend_30_days as engaged_customers_sales_trend,\n sac.engaged_count_last_30_days AS engaged_customers_count,\n sac.engaged_count_trend_30_days AS engaged_customers_count_trend,\n\n sac.revenue_returning_last_30_days AS returning_customers_sales,\n sac.revenue_returning_trend_30_days as returning_customers_sales_trend,\n sac.returning_count_last_30_days AS returning_customers_count,\n sac.returning_count_trend_30_days AS returning_customers_count_trend,\n\n sac.revenue_new_last_30_days AS new_customers_sales,\n sac.revenue_new_trend_30_days as new_customers_sales_trend,\n sac.new_count_last_30_days AS new_customers_count,\n sac.new_count_trend_30_days AS new_customers_count_trend\n\n FROM\n digest_accounts AS da\n -- first we do INNER JOIN as we want to filter out merchants who haven't got more than 50 orders\n -- as digest_accounts contains only shopify merchants, each other platform merchant will be filtered out from here on\n INNER JOIN\n orders_with_attribution AS owa ON owa.app_key=da.app_key\n -- Now want to gather as much data for the merchants as possible.\n LEFT JOIN\n returning_customers AS rcm ON rcm.app_key=da.app_key\n LEFT JOIN\n sales_and_customers AS sac ON sac.app_key=da.app_key\n LEFT JOIN\n merchant_shop_currency AS msc ON msc.app_key=da.app_key\n)\n\nSELECT * FROM digest_acounts_with_data", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__digest_accounts": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__digest_accounts", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.sql", "unique_id": "model.yoda.platform_stg__digest_accounts", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__digest_accounts", "platform_stg__digest_accounts"], "alias": "platform_stg__digest_accounts", "checksum": {"name": "sha256", "checksum": "cb30ace5b8769c3aa970b2023dc1f40ffc1d499245dee5e08859cd6f2558ffc3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Accounts for the platform email digest", "columns": {"id": {"name": "id", "description": "Target user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "Target user email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "Account app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_product": {"name": "reviews_product", "description": "Reviews product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyalty_product": {"name": "loyalty_product", "description": "Loyalty product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "email_product": {"name": "email_product", "description": "Email product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sms_product": {"name": "sms_product", "description": "Sms product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "subscriptions_product": {"name": "subscriptions_product", "description": "Subscriptions product flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_high_touch": {"name": "is_high_touch", "description": "High touch flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082684.5635686, "relation_name": "dev_dkruh1.platform_stg__digest_accounts", "raw_code": "/*\nin production table name will be without [domain]_stg__\n\nCategory id mappings:\n1 - Reviews\n3 - Loyalty & Rewards\n7 - Email Marketing\n8 - SMS\n9 - Subscriptions\n*/\nWITH users AS (\n SELECT * FROM {{ ref('ugc_stg__users') }}\n),\nusers_organizations AS (\n SELECT * FROM {{ ref('platform_stg__users_organizations') }}\n),\norganizations AS ( \n SELECT * FROM {{ ref('platform_stg__organizations') }}\n),\nowners_features AS ( \n SELECT * FROM {{ ref('analytics___platform_stg__owner_feature') }}\n),\nowners_packages AS (\n SELECT * FROM {{ ref('platform_stg__owners_packages') }}\n),\npackages AS ( \n SELECT * FROM {{ ref('platform_stg__packages') }}\n),\npackage_tags AS ( \n SELECT * FROM {{ ref('platform_stg__package_tags') }}\n),\npackage_tag_types AS ( \n SELECT * FROM {{ ref('platform_stg__package_tag_types') }}\n),\nshopify_merchants AS (\n SELECT * FROM {{ ref('platform_stg__merchant_platform_id') }}\n WHERE platform_type_id = 1 -- Shopify\n),\naccounts_shopify_merchants AS (\n SELECT sm.app_key, sm.organization_id\n FROM owners_features AS owf\n INNER JOIN shopify_merchants AS sm ON sm.account_id=owf.owner_id\n WHERE owf.owner_type='Account'\n),\naccounts_with_products AS (\n SELECT ac.app_key, p.category_id, ac.organization_id, ptt.tag_type\n FROM accounts_shopify_merchants AS ac\n INNER JOIN organizations AS org ON ac.organization_id = org.id\n INNER JOIN owners_packages AS op ON op.owner_id = org.organization_key\n INNER JOIN packages AS p ON p.id = op.package_id\n INNER JOIN package_tags AS pt ON pt.package_id = p.id\n INNER JOIN package_tag_types AS ptt ON pt.package_tag_type_id = ptt.id\n WHERE p.category_id IN (1, 3, 7, 8, 9)\n),\naccounts_with_products_groupped AS (\n SELECT\n app_key,\n organization_id,\n BOOL_OR(CASE WHEN category_id = 1 THEN true ELSE false END) AS reviews_product,\n BOOL_OR(CASE WHEN category_id = 3 THEN true ELSE false END) AS loyalty_product,\n BOOL_OR(CASE WHEN category_id = 7 THEN true ELSE false END) AS email_product,\n BOOL_OR(CASE WHEN category_id = 8 THEN true ELSE false END) AS sms_product,\n BOOL_OR(CASE WHEN category_id = 9 THEN true ELSE false END) AS subscriptions_product,\n BOOL_OR(CASE WHEN tag_type = 'annually' THEN true ELSE false END) AS is_high_touch\n FROM accounts_with_products\n GROUP BY app_key, organization_id\n),\n\ndigest_accounts AS (\n SELECT\n u.id,\n u.email,\n ac.app_key,\n ac.reviews_product,\n ac.loyalty_product,\n ac.email_product,\n ac.sms_product,\n ac.subscriptions_product,\n ac.is_high_touch\n FROM\n accounts_with_products_groupped AS ac\n LEFT JOIN\n users_organizations AS uo ON ac.organization_id=uo.organization_id\n LEFT JOIN\n users AS u ON uo.user_id=u.id\n WHERE u.active=true AND uo.deleted_from_organization=false AND uo.default_role_id=1\n)\n\nSELECT * FROM digest_accounts", "language": "sql", "refs": [{"name": "ugc_stg__users", "package": null, "version": null}, {"name": "platform_stg__users_organizations", "package": null, "version": null}, {"name": "platform_stg__organizations", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}, {"name": "platform_stg__owners_packages", "package": null, "version": null}, {"name": "platform_stg__packages", "package": null, "version": null}, {"name": "platform_stg__package_tags", "package": null, "version": null}, {"name": "platform_stg__package_tag_types", "package": null, "version": null}, {"name": "platform_stg__merchant_platform_id", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__users", "model.yoda.platform_stg__users_organizations", "model.yoda.platform_stg__organizations", "model.yoda.analytics___platform_stg__owner_feature", "model.yoda.platform_stg__owners_packages", "model.yoda.platform_stg__packages", "model.yoda.platform_stg__package_tags", "model.yoda.platform_stg__package_tag_types", "model.yoda.platform_stg__merchant_platform_id"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n\nCategory id mappings:\n1 - Reviews\n3 - Loyalty & Rewards\n7 - Email Marketing\n8 - SMS\n9 - Subscriptions\n*/\nWITH users AS (\n SELECT * FROM dev_dkruh1.ugc_stg__users\n),\nusers_organizations AS (\n SELECT * FROM dev_dkruh1.platform_stg__users_organizations\n),\norganizations AS ( \n SELECT * FROM dev_dkruh1.platform_stg__organizations\n),\nowners_features AS ( \n SELECT * FROM dev_dkruh1.analytics___platform_stg__owner_feature\n),\nowners_packages AS (\n SELECT * FROM dev_dkruh1.platform_stg__owners_packages\n),\npackages AS ( \n SELECT * FROM dev_dkruh1.platform_stg__packages\n),\npackage_tags AS ( \n SELECT * FROM dev_dkruh1.platform_stg__package_tags\n),\npackage_tag_types AS ( \n SELECT * FROM dev_dkruh1.platform_stg__package_tag_types\n),\nshopify_merchants AS (\n SELECT * FROM dev_dkruh1.platform_stg__merchant_platform_id\n WHERE platform_type_id = 1 -- Shopify\n),\naccounts_shopify_merchants AS (\n SELECT sm.app_key, sm.organization_id\n FROM owners_features AS owf\n INNER JOIN shopify_merchants AS sm ON sm.account_id=owf.owner_id\n WHERE owf.owner_type='Account'\n),\naccounts_with_products AS (\n SELECT ac.app_key, p.category_id, ac.organization_id, ptt.tag_type\n FROM accounts_shopify_merchants AS ac\n INNER JOIN organizations AS org ON ac.organization_id = org.id\n INNER JOIN owners_packages AS op ON op.owner_id = org.organization_key\n INNER JOIN packages AS p ON p.id = op.package_id\n INNER JOIN package_tags AS pt ON pt.package_id = p.id\n INNER JOIN package_tag_types AS ptt ON pt.package_tag_type_id = ptt.id\n WHERE p.category_id IN (1, 3, 7, 8, 9)\n),\naccounts_with_products_groupped AS (\n SELECT\n app_key,\n organization_id,\n BOOL_OR(CASE WHEN category_id = 1 THEN true ELSE false END) AS reviews_product,\n BOOL_OR(CASE WHEN category_id = 3 THEN true ELSE false END) AS loyalty_product,\n BOOL_OR(CASE WHEN category_id = 7 THEN true ELSE false END) AS email_product,\n BOOL_OR(CASE WHEN category_id = 8 THEN true ELSE false END) AS sms_product,\n BOOL_OR(CASE WHEN category_id = 9 THEN true ELSE false END) AS subscriptions_product,\n BOOL_OR(CASE WHEN tag_type = 'annually' THEN true ELSE false END) AS is_high_touch\n FROM accounts_with_products\n GROUP BY app_key, organization_id\n),\n\ndigest_accounts AS (\n SELECT\n u.id,\n u.email,\n ac.app_key,\n ac.reviews_product,\n ac.loyalty_product,\n ac.email_product,\n ac.sms_product,\n ac.subscriptions_product,\n ac.is_high_touch\n FROM\n accounts_with_products_groupped AS ac\n LEFT JOIN\n users_organizations AS uo ON ac.organization_id=uo.organization_id\n LEFT JOIN\n users AS u ON uo.user_id=u.id\n WHERE u.active=true AND uo.deleted_from_organization=false AND uo.default_role_id=1\n)\n\nSELECT * FROM digest_accounts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__email_shopify_orders_to_shop_currency": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__email_shopify_orders_to_shop_currency", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.sql", "unique_id": "model.yoda.platform_stg__email_shopify_orders_to_shop_currency", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__email_shopify_orders_to_shop_currency", "platform_stg__email_shopify_orders_to_shop_currency"], "alias": "platform_stg__email_shopify_orders_to_shop_currency", "checksum": {"name": "sha256", "checksum": "e7967edd7f91c8b4863c1d00cd680be03f0907912a09c1cd77ae570892b487d3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Contains email attributed orders with currency exchange done with current exchange rates for the date of the order.", "columns": {"app_key": {"name": "app_key", "description": "Unique identifier of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "External order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price": {"name": "total_price", "description": "Total order price in shop currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_date": {"name": "order_date", "description": "The date of the order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "shop_currency": {"name": "shop_currency", "description": "Column containing the shop currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082684.579263, "relation_name": "dev_dkruh1.platform_stg__email_shopify_orders_to_shop_currency", "raw_code": "-- We need shop_currency for merchants as currency exchange will be executed\nWITH merchant_with_shop_currency AS (\n SELECT app_key, shop_currency\n FROM {{ ref('platform_stg__merchant_shop_currency') }}\n),\n -- Get email attributed orders\n email_attributed_orders AS (\n SELECT \n app_key,\n order_id,\n total_price,\n DATE(order_date) AS order_date \n FROM {{ ref('communication__email_shopify_orders_analytics_profile') }}\n WHERE app_key IS NOT NULL\n),\n -- Join them with merchant_with_shop_currency to get shop_currency\n email_attributed_orders_shop_currency AS (\n SELECT\n app_key,\n order_id,\n total_price,\n order_date,\n shop_currency\n FROM email_attributed_orders\n LEFT JOIN merchant_with_shop_currency USING (app_key)\n),\n -- Get the information for currency exchange\n exchange_rates as (\n SELECT \n country as to_currency,\n DATE(date) as date_of_exchange_rate,\n currency as exchange_rate\n FROM {{ ref('platform_stg__currency_rates') }}\n),\n -- Join them with currency_rates to get total_price in shop_currency\n email_attributed_orders_in_shop_currency AS (\n SELECT\n app_key,\n order_id,\n -- currency is the name of the field containing the exchange rate\n CASE WHEN shop_currency in ('USD', 'US Dollars') THEN total_price ELSE total_price * exchange_rates.exchange_rate END AS total_price,\n order_date,\n shop_currency\n FROM email_attributed_orders_shop_currency\n LEFT JOIN exchange_rates on\n DATE(email_attributed_orders_shop_currency.order_date) = DATE(exchange_rates.date_of_exchange_rate) and\n email_attributed_orders_shop_currency.shop_currency = exchange_rates.to_currency\n), \n final as (\n SELECT * FROM email_attributed_orders_in_shop_currency\n)\n\nSELECT * FROM final", "language": "sql", "refs": [{"name": "platform_stg__merchant_shop_currency", "package": null, "version": null}, {"name": "communication__email_shopify_orders_analytics_profile", "package": null, "version": null}, {"name": "platform_stg__currency_rates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__merchant_shop_currency", "model.yoda.communication__email_shopify_orders_analytics_profile", "model.yoda.platform_stg__currency_rates"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.sql", "compiled": true, "compiled_code": "-- We need shop_currency for merchants as currency exchange will be executed\nWITH merchant_with_shop_currency AS (\n SELECT app_key, shop_currency\n FROM dev_dkruh1.platform_stg__merchant_shop_currency\n),\n -- Get email attributed orders\n email_attributed_orders AS (\n SELECT \n app_key,\n order_id,\n total_price,\n DATE(order_date) AS order_date \n FROM dev_dkruh1.communication__email_shopify_orders_analytics_profile\n WHERE app_key IS NOT NULL\n),\n -- Join them with merchant_with_shop_currency to get shop_currency\n email_attributed_orders_shop_currency AS (\n SELECT\n app_key,\n order_id,\n total_price,\n order_date,\n shop_currency\n FROM email_attributed_orders\n LEFT JOIN merchant_with_shop_currency USING (app_key)\n),\n -- Get the information for currency exchange\n exchange_rates as (\n SELECT \n country as to_currency,\n DATE(date) as date_of_exchange_rate,\n currency as exchange_rate\n FROM dev_dkruh1.platform_stg__currency_rates\n),\n -- Join them with currency_rates to get total_price in shop_currency\n email_attributed_orders_in_shop_currency AS (\n SELECT\n app_key,\n order_id,\n -- currency is the name of the field containing the exchange rate\n CASE WHEN shop_currency in ('USD', 'US Dollars') THEN total_price ELSE total_price * exchange_rates.exchange_rate END AS total_price,\n order_date,\n shop_currency\n FROM email_attributed_orders_shop_currency\n LEFT JOIN exchange_rates on\n DATE(email_attributed_orders_shop_currency.order_date) = DATE(exchange_rates.date_of_exchange_rate) and\n email_attributed_orders_shop_currency.shop_currency = exchange_rates.to_currency\n), \n final as (\n SELECT * FROM email_attributed_orders_in_shop_currency\n)\n\nSELECT * FROM final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__ic_store_applications": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__ic_store_applications", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.sql", "unique_id": "model.yoda.platform_stg__ic_store_applications", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__ic_store_applications", "platform_stg__ic_store_applications"], "alias": "platform_stg__ic_store_applications", "checksum": {"name": "sha256", "checksum": "f6a7dd120f898a90931b86e76f9689ec6eb28e948670733fdc28d44c1ed3600a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Table containing partial columns from the original store_applications table", "columns": {"store_id": {"name": "store_id", "description": "The store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "application_id": {"name": "application_id", "description": "The application id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "disconnected_at": {"name": "disconnected_at", "description": "The date when an application was disconnected. NULL if it is connected", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "The date where the application connection with the store was firstly created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "The latest date when a change in the application connection status was made", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082684.5934563, "relation_name": "dev_dkruh1.platform_stg__ic_store_applications", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('platform__integrationscenter', 'store_applications') }}\n\n), store_applications_mart_compatible AS (\n\n SELECT \n\t\tstore_id,\n\t\tapplication_id,\n\t\tdisconnected_at,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM store_applications_mart_compatible", "language": "sql", "refs": [], "sources": [["platform__integrationscenter", "store_applications"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__integrationscenter.store_applications"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM integrationscenter.store_applications\n\n), store_applications_mart_compatible AS (\n\n SELECT \n\t\tstore_id,\n\t\tapplication_id,\n\t\tdisconnected_at,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM store_applications_mart_compatible", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__integrations_names": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__integrations_names", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__integrations_names/platform_stg__integrations_names.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__integrations_names/platform_stg__integrations_names.sql", "unique_id": "model.yoda.platform_stg__integrations_names", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__integrations_names", "platform_stg__integrations_names"], "alias": "platform_stg__integrations_names", "checksum": {"name": "sha256", "checksum": "8f3285253af72950ae62193fa0c8e5da66fc019540e60de89cd4ef6e020e3941"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Table containing applications_id and corresponding name for each application", "columns": {"application_id": {"name": "application_id", "description": "An application id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "application_name": {"name": "application_name", "description": "The corresonding name for an application_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__integrations_names/platform_stg__integrations_names.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "orbits", "created_by": "orbits@yotpo.com", "alert_channels": ["orbits-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082684.6056514, "relation_name": "dev_dkruh1.platform_stg__integrations_names", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM {{ source('platform__integrationscenter', 'store_applications') }}\n\n), integrations_names_mart_compatible AS (\n\n SELECT DISTINCT application_id,\n CASE application_id\n WHEN 1 THEN 'Mailchimp'\n WHEN 2 THEN 'Klaviyo'\n WHEN 3 THEN 'Zendesk'\n WHEN 4 THEN 'Hubspot'\n ELSE 'External apps'\n END AS application_name\n FROM source\n\n)\n\nSELECT * \nFROM integrations_names_mart_compatible", "language": "sql", "refs": [], "sources": [["platform__integrationscenter", "store_applications"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.platform__integrationscenter.store_applications"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__integrations_names/platform_stg__integrations_names.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n\n SELECT * FROM integrationscenter.store_applications\n\n), integrations_names_mart_compatible AS (\n\n SELECT DISTINCT application_id,\n CASE application_id\n WHEN 1 THEN 'Mailchimp'\n WHEN 2 THEN 'Klaviyo'\n WHEN 3 THEN 'Zendesk'\n WHEN 4 THEN 'Hubspot'\n ELSE 'External apps'\n END AS application_name\n FROM source\n\n)\n\nSELECT * \nFROM integrations_names_mart_compatible", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__merchant_platform_id": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__merchant_platform_id", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__merchant_platform_id/platform_stg__merchant_platform_id.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__merchant_platform_id/platform_stg__merchant_platform_id.sql", "unique_id": "model.yoda.platform_stg__merchant_platform_id", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__merchant_platform_id", "platform_stg__merchant_platform_id"], "alias": "platform_stg__merchant_platform_id", "checksum": {"name": "sha256", "checksum": "824e25abb13c8d115ced8374bfa751d4aea15e56a67505556fbcd3d04c6e7fd7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Table contains mapping between merchant app_key and his platform_type_id", "columns": {"platform_type_id": {"name": "platform_type_id", "description": "The id of the platform.\n\n| id | platform_name |\n|-----|-------------------------|\n| 1 | shopify |\n| 2 | general |\n| 3 | bigcommerce |\n| 4 | three_d_cart |\n| 5 | magento |\n| 6 | volusion |\n| 7 | shoppingcartelite |\n| 8 | prestashop |\n| 9 | cscart |\n| 10 | opencart |\n| 11 | ebay |\n| 12 | woocommerce |\n| 13 | storenvy |\n| 14 | etsy |\n| 15 | one_and_one_my_web_site |\n| 16 | wix |\n| 17 | tictail |\n| 18 | eccube |\n| 19 | symphony |\n| 20 | commerce_guys |\n| 21 | go_daddy_commerce |\n| 22 | seoshop |\n| 23 | zepo |\n| 24 | wp_ecommerce |\n| 25 | generic_non_ecommerce |\n| 26 | shoplo |\n| 27 | americommerce |\n| 28 | miva |\n| 29 | pixafy |\n| 30 | ecwid |\n| 31 | magento2 |\n| 32 | volusion2 |\n| 33 | commerce_cloud |\n| 34 | hybris |\n| 35 | amazon |", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "Merchant's unique identifyer", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__merchant_platform_id/platform_stg__merchant_platform_id.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082684.620232, "relation_name": "dev_dkruh1.platform_stg__merchant_platform_id", "raw_code": "WITH account_platforms AS (\n\n SELECT platform_type_id, account_id FROM {{ ref('platform_stg__account_platforms') }}\n\n), accounts AS (\n SELECT id, app_key, organization_id FROM {{ ref('platform_stg__accounts') }}\n\n), app_key_and_platform_id AS (\n SELECT ap.platform_type_id, acc.app_key, acc.organization_id, ap.account_id\n FROM account_platforms ap\n JOIN accounts acc ON ap.account_id = acc.id\n), final AS (\n select * from app_key_and_platform_id\n)\n\nSELECT * FROM final", "language": "sql", "refs": [{"name": "platform_stg__account_platforms", "package": null, "version": null}, {"name": "platform_stg__accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__account_platforms", "model.yoda.platform_stg__accounts"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__merchant_platform_id/platform_stg__merchant_platform_id.sql", "compiled": true, "compiled_code": "WITH account_platforms AS (\n\n SELECT platform_type_id, account_id FROM dev_dkruh1.platform_stg__account_platforms\n\n), accounts AS (\n SELECT id, app_key, organization_id FROM dev_dkruh1.platform_stg__accounts\n\n), app_key_and_platform_id AS (\n SELECT ap.platform_type_id, acc.app_key, acc.organization_id, ap.account_id\n FROM account_platforms ap\n JOIN accounts acc ON ap.account_id = acc.id\n), final AS (\n select * from app_key_and_platform_id\n)\n\nSELECT * FROM final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__merchant_shop_currency": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__merchant_shop_currency", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__merchant_shop_currency/platform_stg__merchant_shop_currency.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__merchant_shop_currency/platform_stg__merchant_shop_currency.sql", "unique_id": "model.yoda.platform_stg__merchant_shop_currency", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__merchant_shop_currency", "platform_stg__merchant_shop_currency"], "alias": "platform_stg__merchant_shop_currency", "checksum": {"name": "sha256", "checksum": "617ea44d39b9197a2ac7a25550515f5975fb5468d484bf3f2d1cf6510efe106e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Table containing app_key and it's shop currency", "columns": {"shop_currency": {"name": "shop_currency", "description": "Currency of merchant's account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "Unique merchant identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__merchant_shop_currency/platform_stg__merchant_shop_currency.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082684.6324904, "relation_name": "dev_dkruh1.platform_stg__merchant_shop_currency", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n{% set default_currency = 'USD' %}\n\nWITH account_platforms AS (\n\n SELECT shop_currency, account_id FROM {{ ref('platform_stg__account_platforms') }}\n\n), accounts AS (\n SELECT id, app_key FROM {{ ref('platform_stg__accounts') }}\n\n), accounts_with_currency AS (\n SELECT COALESCE(shop_currency, '{{default_currency}}' ) AS shop_currency, app_key\n FROM account_platforms ap\n JOIN accounts acc ON ap.account_id = acc.id\n), final AS (\n select * from accounts_with_currency\n)\n\nSELECT * FROM final", "language": "sql", "refs": [{"name": "platform_stg__account_platforms", "package": null, "version": null}, {"name": "platform_stg__accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__account_platforms", "model.yoda.platform_stg__accounts"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__merchant_shop_currency/platform_stg__merchant_shop_currency.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\nWITH account_platforms AS (\n\n SELECT shop_currency, account_id FROM dev_dkruh1.platform_stg__account_platforms\n\n), accounts AS (\n SELECT id, app_key FROM dev_dkruh1.platform_stg__accounts\n\n), accounts_with_currency AS (\n SELECT COALESCE(shop_currency, 'USD' ) AS shop_currency, app_key\n FROM account_platforms ap\n JOIN accounts acc ON ap.account_id = acc.id\n), final AS (\n select * from accounts_with_currency\n)\n\nSELECT * FROM final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_bar_chart_total_sales_current_month", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_bar_chart_total_sales_current_month", "platform_stg__retention_metrics_bar_chart_total_sales_current_month"], "alias": "platform_stg__retention_metrics_bar_chart_total_sales_current_month", "checksum": {"name": "sha256", "checksum": "f255df9bb9dc5d7166127ce4480e7f605dde7104ac1d7f0361402ec91cfeb5d8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Model that contains the total value of revenue for each merchant by segmentation tier for the current month.", "columns": {"app_key": {"name": "app_key", "description": "The unique identifier for the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date_of_segmentation": {"name": "date_of_segmentation", "description": "Column that contains the value of the date used for the segmentation of the merchant's customers.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "total_engaged_customers_sales_current_month": {"name": "total_engaged_customers_sales_current_month", "description": "Total sales for the engaged customers of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_returning_customers_sales_current_month": {"name": "total_returning_customers_sales_current_month", "description": "Total sales for the returning customers of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_new_customers_sales_current_month": {"name": "total_new_customers_sales_current_month", "description": "Total sales for the new customers of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082684.6473188, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_bar_chart_total_sales_current_month", "raw_code": "WITH retention_metrics_orders AS (\n\n SELECT\n app_key,\n segment,\n order_total\n FROM {{ ref('platform__retention_metrics_orders') }}\n WHERE year(current_date()) = year(order_date)\n AND month(current_date()) = month(order_date)\n\n), total_sales_current_month AS (\n SELECT \n app_key,\n current_date() as date_of_segmentation,\n SUM(CASE \n WHEN segment = \"engaged\" THEN order_total\n ELSE 0\n END) AS total_engaged_customers_sales_current_month,\n SUM(CASE \n WHEN segment = \"returning\" THEN order_total\n ELSE 0\n END) AS total_returning_customers_sales_current_month,\n SUM(CASE \n WHEN segment = \"new\" THEN order_total\n ELSE 0\n END) AS total_new_customers_sales_current_month\n FROM retention_metrics_orders\n GROUP BY app_key\n)\n\nSELECT * \nFROM total_sales_current_month", "language": "sql", "refs": [{"name": "platform__retention_metrics_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.sql", "compiled": true, "compiled_code": "WITH retention_metrics_orders AS (\n\n SELECT\n app_key,\n segment,\n order_total\n FROM dev_dkruh1.platform__retention_metrics_orders\n WHERE year(current_date()) = year(order_date)\n AND month(current_date()) = month(order_date)\n\n), total_sales_current_month AS (\n SELECT \n app_key,\n current_date() as date_of_segmentation,\n SUM(CASE \n WHEN segment = \"engaged\" THEN order_total\n ELSE 0\n END) AS total_engaged_customers_sales_current_month,\n SUM(CASE \n WHEN segment = \"returning\" THEN order_total\n ELSE 0\n END) AS total_returning_customers_sales_current_month,\n SUM(CASE \n WHEN segment = \"new\" THEN order_total\n ELSE 0\n END) AS total_new_customers_sales_current_month\n FROM retention_metrics_orders\n GROUP BY app_key\n)\n\nSELECT * \nFROM total_sales_current_month", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_bar_chart_total_sales_monthly", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_bar_chart_total_sales_monthly", "platform_stg__retention_metrics_bar_chart_total_sales_monthly"], "alias": "platform_stg__retention_metrics_bar_chart_total_sales_monthly", "checksum": {"name": "sha256", "checksum": "99190e4b212d5b48a066c09ce3f83f36fb7ec85006bf95ee3d084de6ad2b31c2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Model that contains the total value of revenue for each merchant by segmentation tier for the last 11 months.", "columns": {"app_key": {"name": "app_key", "description": "The unique identifier for the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date_of_segmentation": {"name": "date_of_segmentation", "description": "Column that contains the value of the date used for the segmentation of the merchant's customers.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "total_engaged_customers_sales_for_date_of_segmentation": {"name": "total_engaged_customers_sales_for_date_of_segmentation", "description": "Total sales for the engaged customers of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_returning_customers_sales_for_date_of_segmentation": {"name": "total_returning_customers_sales_for_date_of_segmentation", "description": "Total sales for the returning customers of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_new_customers_sales_for_date_of_segmentation": {"name": "total_new_customers_sales_for_date_of_segmentation", "description": "Total sales for the new customers of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082684.6629999, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_bar_chart_total_sales_monthly", "raw_code": "WITH monthly_customer_segmentation AS (\n SELECT \n app_key,\n external_customer_id,\n date_of_segmentation,\n segment\n FROM {{ ref('platform_stg__retention_metrics_segmented_customers_monthly') }}\n), orders AS (\n SELECT \n app_key,\n external_customer_id,\n MONTH(order_date) as month_of_order,\n SUM(CASE WHEN order_total IS NULL THEN 0 ELSE order_total END) as sum_customer_orders_month\n\n FROM {{ ref('platform__retention_metrics_orders') }}\n\n -- We should always wrap order_date in DATE() in order to include orders from the end of the range\n WHERE DATE(order_date) BETWEEN\n -- First day of the month 11 months ago\n date_trunc('month', current_date() - INTERVAL '11' MONTH)\n -- Last day of the month before the current month\n AND last_day(current_date() - INTERVAL '1' MONTH)\n GROUP BY app_key, external_customer_id, MONTH(order_date)\n), total_sales_monthly AS (\n SELECT \n monthly_customer_segmentation.app_key,\n date_of_segmentation,\n SUM(CASE WHEN segment = 'engaged' THEN sum_customer_orders_month ELSE 0 END) AS total_engaged_customers_sales_for_date_of_segmentation,\n SUM(CASE WHEN segment = 'returning' THEN sum_customer_orders_month ELSE 0 END) AS total_returning_customers_sales_for_date_of_segmentation,\n SUM(CASE WHEN segment = 'new' THEN sum_customer_orders_month ELSE 0 END) AS total_new_customers_sales_for_date_of_segmentation\n FROM\n monthly_customer_segmentation\n JOIN orders \n ON\n monthly_customer_segmentation.app_key = orders.app_key\n AND monthly_customer_segmentation.external_customer_id = orders.external_customer_id\n AND MONTH(monthly_customer_segmentation.date_of_segmentation) = orders.month_of_order\n GROUP BY monthly_customer_segmentation.app_key, date_of_segmentation\n)\n\nSELECT * FROM total_sales_monthly", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_segmented_customers_monthly", "package": null, "version": null}, {"name": "platform__retention_metrics_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform__retention_metrics_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.sql", "compiled": true, "compiled_code": "WITH monthly_customer_segmentation AS (\n SELECT \n app_key,\n external_customer_id,\n date_of_segmentation,\n segment\n FROM dev_dkruh1.platform_stg__retention_metrics_segmented_customers_monthly\n), orders AS (\n SELECT \n app_key,\n external_customer_id,\n MONTH(order_date) as month_of_order,\n SUM(CASE WHEN order_total IS NULL THEN 0 ELSE order_total END) as sum_customer_orders_month\n\n FROM dev_dkruh1.platform__retention_metrics_orders\n\n -- We should always wrap order_date in DATE() in order to include orders from the end of the range\n WHERE DATE(order_date) BETWEEN\n -- First day of the month 11 months ago\n date_trunc('month', current_date() - INTERVAL '11' MONTH)\n -- Last day of the month before the current month\n AND last_day(current_date() - INTERVAL '1' MONTH)\n GROUP BY app_key, external_customer_id, MONTH(order_date)\n), total_sales_monthly AS (\n SELECT \n monthly_customer_segmentation.app_key,\n date_of_segmentation,\n SUM(CASE WHEN segment = 'engaged' THEN sum_customer_orders_month ELSE 0 END) AS total_engaged_customers_sales_for_date_of_segmentation,\n SUM(CASE WHEN segment = 'returning' THEN sum_customer_orders_month ELSE 0 END) AS total_returning_customers_sales_for_date_of_segmentation,\n SUM(CASE WHEN segment = 'new' THEN sum_customer_orders_month ELSE 0 END) AS total_new_customers_sales_for_date_of_segmentation\n FROM\n monthly_customer_segmentation\n JOIN orders \n ON\n monthly_customer_segmentation.app_key = orders.app_key\n AND monthly_customer_segmentation.external_customer_id = orders.external_customer_id\n AND MONTH(monthly_customer_segmentation.date_of_segmentation) = orders.month_of_order\n GROUP BY monthly_customer_segmentation.app_key, date_of_segmentation\n)\n\nSELECT * FROM total_sales_monthly", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "platform_stg__retention_metrics_current_segment_for_trend_average_order_value"], "alias": "platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "checksum": {"name": "sha256", "checksum": "c028d8e8c94c226cc7f31246f6cde43c31f31884acc41325c8a4ec34228f4d11"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "AOV for each segment for the last 7, 30, 90 and 365 days", "columns": {"app_key": {"name": "app_key", "description": "The merchant's identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "The trend: Last 7/30/9/365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "aov_for_engaged_customers": {"name": "aov_for_engaged_customers", "description": "AOV for engaged customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "aov_for_returning_customers": {"name": "aov_for_returning_customers", "description": "AOV for returning customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "aov_for_new_customers": {"name": "aov_for_new_customers", "description": "AOV for new customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082684.677661, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "raw_code": "WITH average_order_value_last_7_days AS (\n\n {{ avg_order_value_per_segment_in_date_range(7) }} \n\n), average_order_value_last_30_days AS (\n\n {{ avg_order_value_per_segment_in_date_range(30) }} \n\n), average_order_value_last_90_days AS (\n\n {{ avg_order_value_per_segment_in_date_range(90) }} \n\n), average_order_value_last_365_days AS (\n\n {{ avg_order_value_per_segment_in_date_range(365) }} \n\n) \n\n\nSELECT * FROM average_order_value_last_7_days\nUNION ALL\nSELECT * FROM average_order_value_last_30_days\nUNION ALL\nSELECT * FROM average_order_value_last_90_days\nUNION ALL\nSELECT * FROM average_order_value_last_365_days", "language": "sql", "refs": [{"name": "platform__retention_metrics_average_order_value", "package": null, "version": null}, {"name": "platform__retention_metrics_average_order_value", "package": null, "version": null}, {"name": "platform__retention_metrics_average_order_value", "package": null, "version": null}, {"name": "platform__retention_metrics_average_order_value", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.avg_order_value_per_segment_in_date_range", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform__retention_metrics_average_order_value", "model.yoda.platform__retention_metrics_average_order_value", "model.yoda.platform__retention_metrics_average_order_value", "model.yoda.platform__retention_metrics_average_order_value"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.sql", "compiled": true, "compiled_code": "WITH average_order_value_last_7_days AS (\n\n \n\nWITH average_order_value_per_app_key_and_date AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_average_order_value\n\n), average_order_value_in_date_range AS (\n\n SELECT\n app_key,\n \"Last_7_days\" AS trend,\n COALESCE(SUM(total_engaged_customers_sales_value_by_date) / SUM(engaged_customers_orders_count_by_date), 0) AS aov_for_engaged_customers,\n COALESCE(SUM(total_returning_customers_sales_value_by_date) / SUM(returning_customers_orders_count_by_date), 0) AS aov_for_returning_customers,\n COALESCE(SUM(total_new_customers_sales_value_by_date) / SUM(new_customers_orders_count_by_date), 0) AS aov_for_new_customers\n\n FROM average_order_value_per_app_key_and_date\n WHERE \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n\n GROUP BY app_key\n\n)\n\nSELECT * FROM average_order_value_in_date_range\n\n \n\n), average_order_value_last_30_days AS (\n\n \n\nWITH average_order_value_per_app_key_and_date AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_average_order_value\n\n), average_order_value_in_date_range AS (\n\n SELECT\n app_key,\n \"Last_30_days\" AS trend,\n COALESCE(SUM(total_engaged_customers_sales_value_by_date) / SUM(engaged_customers_orders_count_by_date), 0) AS aov_for_engaged_customers,\n COALESCE(SUM(total_returning_customers_sales_value_by_date) / SUM(returning_customers_orders_count_by_date), 0) AS aov_for_returning_customers,\n COALESCE(SUM(total_new_customers_sales_value_by_date) / SUM(new_customers_orders_count_by_date), 0) AS aov_for_new_customers\n\n FROM average_order_value_per_app_key_and_date\n WHERE \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n\n GROUP BY app_key\n\n)\n\nSELECT * FROM average_order_value_in_date_range\n\n \n\n), average_order_value_last_90_days AS (\n\n \n\nWITH average_order_value_per_app_key_and_date AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_average_order_value\n\n), average_order_value_in_date_range AS (\n\n SELECT\n app_key,\n \"Last_90_days\" AS trend,\n COALESCE(SUM(total_engaged_customers_sales_value_by_date) / SUM(engaged_customers_orders_count_by_date), 0) AS aov_for_engaged_customers,\n COALESCE(SUM(total_returning_customers_sales_value_by_date) / SUM(returning_customers_orders_count_by_date), 0) AS aov_for_returning_customers,\n COALESCE(SUM(total_new_customers_sales_value_by_date) / SUM(new_customers_orders_count_by_date), 0) AS aov_for_new_customers\n\n FROM average_order_value_per_app_key_and_date\n WHERE \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n\n GROUP BY app_key\n\n)\n\nSELECT * FROM average_order_value_in_date_range\n\n \n\n), average_order_value_last_365_days AS (\n\n \n\nWITH average_order_value_per_app_key_and_date AS (\n\n SELECT * FROM dev_dkruh1.platform__retention_metrics_average_order_value\n\n), average_order_value_in_date_range AS (\n\n SELECT\n app_key,\n \"Last_365_days\" AS trend,\n COALESCE(SUM(total_engaged_customers_sales_value_by_date) / SUM(engaged_customers_orders_count_by_date), 0) AS aov_for_engaged_customers,\n COALESCE(SUM(total_returning_customers_sales_value_by_date) / SUM(returning_customers_orders_count_by_date), 0) AS aov_for_returning_customers,\n COALESCE(SUM(total_new_customers_sales_value_by_date) / SUM(new_customers_orders_count_by_date), 0) AS aov_for_new_customers\n\n FROM average_order_value_per_app_key_and_date\n WHERE \n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n\n GROUP BY app_key\n\n)\n\nSELECT * FROM average_order_value_in_date_range\n\n \n\n) \n\n\nSELECT * FROM average_order_value_last_7_days\nUNION ALL\nSELECT * FROM average_order_value_last_30_days\nUNION ALL\nSELECT * FROM average_order_value_last_90_days\nUNION ALL\nSELECT * FROM average_order_value_last_365_days", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer"], "alias": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "checksum": {"name": "sha256", "checksum": "9efec2ff255f93f64e8aea724954dbfa02dd3b1462ba0bcfb49349205aa58d9d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Average sales per customer for each segment for the last 7, 30, 90 and 365 days", "columns": {"app_key": {"name": "app_key", "description": "The merchant's identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "The trend: Last 7/30/90/365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avg_per_engaged_customer": {"name": "avg_per_engaged_customer", "description": "Average sales per customer for engaged customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_per_returning_customer": {"name": "avg_per_returning_customer", "description": "Average sales per customer for returning customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_per_new_customer": {"name": "avg_per_new_customer", "description": "Average sales per customer for new customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082684.692337, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "raw_code": "WITH avg_per_customer_and_segment_last_7_days AS (\n\n {{ avg_per_customer_and_segment(7, 0, 'segment', 'Last_7_days') }} \n\n), avg_per_customer_and_segment_last_30_days AS (\n\n {{ avg_per_customer_and_segment(30, 0, 'segment', 'Last_30_days') }} \n\n), avg_per_customer_and_segment_last_90_days AS (\n\n {{ avg_per_customer_and_segment(90, 0, 'segment', 'Last_90_days') }} \n\n), avg_per_customer_and_segment_last_365_days AS (\n\n {{ avg_per_customer_and_segment(365, 0, 'segment', 'Last_365_days') }} \n\n) \n\n\nSELECT * FROM avg_per_customer_and_segment_last_7_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_last_30_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_last_90_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_last_365_days", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.avg_per_customer_and_segment", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.sql", "compiled": true, "compiled_code": "WITH avg_per_customer_and_segment_last_7_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_per_customer_Last_7_days AS (\n SELECT app_key,\n \"Last_7_days\" as trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\") \n THEN external_customer_id END))) AS avg_per_customer_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\") \n THEN external_customer_id END))) AS avg_per_customer_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 7 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\") \n THEN external_customer_id END))) AS avg_per_customer_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_per_customer_Last_7_days_non_null AS (\n\n SELECT app_key,\n trend,\n COALESCE(avg_per_customer_engaged, 0) AS avg_per_engaged_customer,\n COALESCE(avg_per_customer_returning, 0) AS avg_per_returning_customer,\n COALESCE(avg_per_customer_new, 0) AS avg_per_new_customer\n FROM avg_per_customer_Last_7_days\n\n )\n\n SELECT * FROM avg_per_customer_Last_7_days_non_null\n \n \n\n), avg_per_customer_and_segment_last_30_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_per_customer_Last_30_days AS (\n SELECT app_key,\n \"Last_30_days\" as trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\") \n THEN external_customer_id END))) AS avg_per_customer_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\") \n THEN external_customer_id END))) AS avg_per_customer_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 30 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\") \n THEN external_customer_id END))) AS avg_per_customer_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_per_customer_Last_30_days_non_null AS (\n\n SELECT app_key,\n trend,\n COALESCE(avg_per_customer_engaged, 0) AS avg_per_engaged_customer,\n COALESCE(avg_per_customer_returning, 0) AS avg_per_returning_customer,\n COALESCE(avg_per_customer_new, 0) AS avg_per_new_customer\n FROM avg_per_customer_Last_30_days\n\n )\n\n SELECT * FROM avg_per_customer_Last_30_days_non_null\n \n \n\n), avg_per_customer_and_segment_last_90_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_per_customer_Last_90_days AS (\n SELECT app_key,\n \"Last_90_days\" as trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\") \n THEN external_customer_id END))) AS avg_per_customer_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\") \n THEN external_customer_id END))) AS avg_per_customer_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 90 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\") \n THEN external_customer_id END))) AS avg_per_customer_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_per_customer_Last_90_days_non_null AS (\n\n SELECT app_key,\n trend,\n COALESCE(avg_per_customer_engaged, 0) AS avg_per_engaged_customer,\n COALESCE(avg_per_customer_returning, 0) AS avg_per_returning_customer,\n COALESCE(avg_per_customer_new, 0) AS avg_per_new_customer\n FROM avg_per_customer_Last_90_days\n\n )\n\n SELECT * FROM avg_per_customer_Last_90_days_non_null\n \n \n\n), avg_per_customer_and_segment_last_365_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_per_customer_Last_365_days AS (\n SELECT app_key,\n \"Last_365_days\" as trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"engaged\") \n THEN external_customer_id END))) AS avg_per_customer_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"returning\") \n THEN external_customer_id END))) AS avg_per_customer_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 365 day AND CURRENT_DATE() - interval 1 day)\n\n AND\n segment = \"new\") \n THEN external_customer_id END))) AS avg_per_customer_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_per_customer_Last_365_days_non_null AS (\n\n SELECT app_key,\n trend,\n COALESCE(avg_per_customer_engaged, 0) AS avg_per_engaged_customer,\n COALESCE(avg_per_customer_returning, 0) AS avg_per_returning_customer,\n COALESCE(avg_per_customer_new, 0) AS avg_per_new_customer\n FROM avg_per_customer_Last_365_days\n\n )\n\n SELECT * FROM avg_per_customer_Last_365_days_non_null\n \n \n\n) \n\n\nSELECT * FROM avg_per_customer_and_segment_last_7_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_last_30_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_last_90_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_last_365_days", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_mock_orders": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_mock_orders", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_mock_orders", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_mock_orders", "platform_stg__retention_metrics_mock_orders"], "alias": "platform_stg__retention_metrics_mock_orders", "checksum": {"name": "sha256", "checksum": "6700b8b4b6692c631ec22b37abf2f1c4af77bb8375139a66b788d2999b9125bd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Table with mock orders used to load instead of production orders in dev environment.", "columns": {"id": {"name": "id", "description": "Random uuid.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price": {"name": "total_price", "description": "Amount of order.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "Mock external customer id.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "Mock app key. Each test uses unique app key.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "Date used for specific test case.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082684.760868, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_mock_orders", "raw_code": "WITH mock_orders AS (\n\n {{ repeating_customers_test() }}\n UNION ALL \n {{ customer_segment_ratio_test() }}\n UNION ALL\n {{ average_sales_per_customer_test() }}\n UNION ALL \n {{ total_sales_per_customer_test() }}\n UNION ALL\n {{ barchart_current_month_test() }}\n UNION ALL\n {{ barchart_previous_month_test() }}\n UNION ALL\n {{ total_sales_and_total_customers_test() }}\n)\n\nSELECT * FROM mock_orders", "language": "sql", "refs": [], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.repeating_customers_test", "macro.yoda.customer_segment_ratio_test", "macro.yoda.average_sales_per_customer_test", "macro.yoda.total_sales_per_customer_test", "macro.yoda.barchart_current_month_test", "macro.yoda.barchart_previous_month_test", "macro.yoda.total_sales_and_total_customers_test", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": []}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.sql", "compiled": true, "compiled_code": "WITH mock_orders AS (\n\n \n -- Repeating customers \n -- Customer has to have two different orders in the last 7 days and in the past year to be considered repeating\n ----------------------------------------------------------------------------------------------------------------\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '123' AS external_customer_id,\n 'repeat_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '1' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '123' AS external_customer_id,\n 'repeat_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '89' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '1234' AS external_customer_id,\n 'repeat_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '3' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'repeat_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '6' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '321' AS external_customer_id,\n 'repeat_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '8' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '321' AS external_customer_id,\n 'repeat_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '9' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '4321' AS external_customer_id,\n 'repeat_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '10' DAY) AS order_date\n\n\n\n UNION ALL \n \n -- Customer segmentation ratio\n -- New\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '123' AS external_customer_id,\n 'customer_segment_ratio_app_key' AS app_key, DATE(current_date() - INTERVAL '1' DAY) AS order_date\n\n\n UNION ALL\n -- Returning\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '1234' AS external_customer_id,\n 'customer_segment_ratio_app_key' AS app_key, DATE(current_date() - INTERVAL '10' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '1234' AS external_customer_id,\n 'customer_segment_ratio_app_key' AS app_key, DATE(current_date() - INTERVAL '11' DAY) AS order_date\n\n\n -- Engaged\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'customer_segment_ratio_app_key' AS app_key, DATE(current_date() - INTERVAL '34' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'customer_segment_ratio_app_key' AS app_key, DATE(current_date() - INTERVAL '10' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'customer_segment_ratio_app_key' AS app_key, DATE(current_date() - INTERVAL '91' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'customer_segment_ratio_app_key' AS app_key, DATE(current_date() - INTERVAL '91' DAY) AS order_date\n\n \n\n UNION ALL\n \n -- Average Sales Per customer\n ----------------------------------------------------------------------------------------------------------------\n -- New\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '123' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '1' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '0' AS total_price, \n '321' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '1' DAY) AS order_date\n\n\n UNION ALL\n -- Returning\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '1234' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '10' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '200' AS total_price, \n '1234' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '11' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '300' AS total_price, \n '4321' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '11' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '400' AS total_price, \n '4321' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '11' DAY) AS order_date\n\n\n -- Engaged\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '34' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '10' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '91' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '91' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '34' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '10' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '91' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '91' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'average_sales_per_customer_app_key' AS app_key, DATE(current_date() - INTERVAL '370' DAY) AS order_date\n\n\n\n UNION ALL \n \n -- Total Sales\n ----------------------------------------------------------------------------------------------------------------\n -- New\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '123' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '1' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '0' AS total_price, \n '321' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '1' DAY) AS order_date\n\n\n UNION ALL\n -- Returning\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '1234' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '10' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '200' AS total_price, \n '1234' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '11' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '300' AS total_price, \n '4321' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '4' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '400' AS total_price, \n '4321' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '11' DAY) AS order_date\n\n\n -- Engaged\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '34' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '10' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '91' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '91' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '5' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '10' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '91' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '91' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'total_sales_app_key' AS app_key, DATE(current_date() - INTERVAL '370' DAY) AS order_date\n\n\n\n UNION ALL\n \n -- Barchart current month\n -- New\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '123' AS external_customer_id,\n 'bar_chart_current_month_app_key' AS app_key, DATE(current_date() - INTERVAL '29' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '50' AS total_price, \n '321' AS external_customer_id,\n 'bar_chart_current_month_app_key' AS app_key, DATE(current_date() - INTERVAL '28' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '200' AS total_price, \n '4321' AS external_customer_id,\n 'bar_chart_current_month_app_key' AS app_key, DATE(current_date() - INTERVAL '23' DAY) AS order_date\n\n\n UNION ALL\n -- Returning\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '1234' AS external_customer_id,\n 'bar_chart_current_month_app_key' AS app_key, DATE(current_date() - INTERVAL '22' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '1234' AS external_customer_id,\n 'bar_chart_current_month_app_key' AS app_key, DATE(current_date() - INTERVAL '11' DAY) AS order_date\n\n\n -- Engaged\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'bar_chart_current_month_app_key' AS app_key, DATE(current_date() - INTERVAL '10' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'bar_chart_current_month_app_key' AS app_key, DATE(current_date() - INTERVAL '3' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'bar_chart_current_month_app_key' AS app_key, DATE(current_date() - INTERVAL '2' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'bar_chart_current_month_app_key' AS app_key, DATE(current_date() - INTERVAL '6' DAY) AS order_date\n\n\n\n UNION ALL\n \n -- New customers\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '123' AS external_customer_id,\n 'bar_chart_previous_month_app_key' AS app_key, DATE(current_date() - INTERVAL '31' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '50' AS total_price, \n '321' AS external_customer_id,\n 'bar_chart_previous_month_app_key' AS app_key, DATE(current_date() - INTERVAL '31' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '200' AS total_price, \n '4321' AS external_customer_id,\n 'bar_chart_previous_month_app_key' AS app_key, DATE(current_date() - INTERVAL '31' DAY) AS order_date\n\n\n UNION ALL\n -- Returning customers\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '1234' AS external_customer_id,\n 'bar_chart_previous_month_app_key' AS app_key, DATE(current_date() - INTERVAL '31' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '1234' AS external_customer_id,\n 'bar_chart_previous_month_app_key' AS app_key, DATE(current_date() - INTERVAL '31' DAY) AS order_date\n\n\n -- Engaged customers\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'bar_chart_previous_month_app_key' AS app_key, DATE(current_date() - INTERVAL '31' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'bar_chart_previous_month_app_key' AS app_key, DATE(current_date() - INTERVAL '31' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'bar_chart_previous_month_app_key' AS app_key, DATE(current_date() - INTERVAL '31' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'bar_chart_previous_month_app_key' AS app_key, DATE(current_date() - INTERVAL '31' DAY) AS order_date\n\n\n\n UNION ALL\n \n -- Total Sales\n -- Last 7 Days\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '123' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '1' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '0' AS total_price, \n '321' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '1' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '1234' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '2' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '200' AS total_price, \n '1234' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '3' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '300' AS total_price, \n '4321' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '4' DAY) AS order_date\n\n\n -- Last 30 Days \n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '400' AS total_price, \n '4321' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '11' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '16' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '29' DAY) AS order_date\n\n\n -- Last 90 Days\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '89' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '100' AS total_price, \n '12345' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '89' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '65' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '43' DAY) AS order_date\n\n\n -- Last 365 Days\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '110' DAY) AS order_date\n\n\n UNION ALL\n \n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '1000' AS total_price, \n '54321' AS external_customer_id,\n 'total_sales_and_total_customers_app_key' AS app_key, DATE(current_date() - INTERVAL '130' DAY) AS order_date\n\n\n\n)\n\nSELECT * FROM mock_orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_orders": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_orders", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_orders", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_orders", "platform_stg__retention_metrics_orders"], "alias": "platform_stg__retention_metrics_orders", "checksum": {"name": "sha256", "checksum": "b9e1bf46c659d8f279a36684b0d020daa60d4ea45371dc4741e890ad15bfa8c6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partitioning": {"field": "order_date", "type": "hash", "partitions": 730}, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "TODO: Update Table Description", "columns": {"id": {"name": "id", "description": "The id of the order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "The merchant id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "The date when order was registered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email": {"name": "email", "description": "The email of the shopper", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "The unique shopper identifier, this is either the one provided by the merchant platform (if not null) or the email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_type": {"name": "platform_type", "description": "The merchant platform where order was registered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sum_order_currency": {"name": "order_sum_order_currency", "description": "The order value in order currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_currency_iso": {"name": "order_currency_iso", "description": "The currency of the order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sum_account_currency": {"name": "order_sum_account_currency", "description": "The order value in account currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_currency_iso": {"name": "account_currency_iso", "description": "The merchant currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price": {"name": "total_price", "description": "The total price of the order in merchant currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table", "partitioning": {"field": "order_date", "type": "hash", "partitions": 730}}, "created_at": 1700082684.7934308, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_orders", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partitioning = {\n \"field\": \"order_date\",\n \"type\": \"hash\",\n \"partitions\": 730\n }\n )\n}}\n\nWITH source AS (\n\n SELECT * FROM {{ ref('platform_stg__orders') }}\n WHERE order_date >= DATE_SUB(CURRENT_DATE(), 730)\n\n), retention_metrics_orders AS (\n\n SELECT \n id,\n app_key,\n DATE(order_date),\n email,\n COALESCE(external_customer_id, email) as external_customer_id,\n platform_type,\n order_sum_order_currency,\n order_currency_iso,\n order_sum_account_currency,\n account_currency_iso,\n total_price\n FROM source\n\n)\n\nSELECT * \nFROM retention_metrics_orders", "language": "sql", "refs": [{"name": "platform_stg__orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__orders"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\n\n\n\nWITH source AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__orders\n WHERE order_date >= DATE_SUB(CURRENT_DATE(), 730)\n\n), retention_metrics_orders AS (\n\n SELECT \n id,\n app_key,\n DATE(order_date),\n email,\n COALESCE(external_customer_id, email) as external_customer_id,\n platform_type,\n order_sum_order_currency,\n order_currency_iso,\n order_sum_account_currency,\n account_currency_iso,\n total_price\n FROM source\n\n)\n\nSELECT * \nFROM retention_metrics_orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_orders_in_merchant_currency", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_orders_in_merchant_currency", "platform_stg__retention_metrics_orders_in_merchant_currency"], "alias": "platform_stg__retention_metrics_orders_in_merchant_currency", "checksum": {"name": "sha256", "checksum": "26ad720e03e7929e6f65e92dc389205ed2ef12d99108a24307d6ec2dd0bf304f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Raw data representing orders", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier in the Yotpo platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "Order's customer's unique identifier in the platform (external_customer_id if present, otherwise the email of the shopper)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "Order submission date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "total_price": {"name": "total_price", "description": "Order total value. It is calculated by either taking the total_price or order_sum_account_currency values which are the order value in merchant currency for either shopify or non-shopify platforms. \nIf those fields are not present, then check if the order currency is the same as merchant currency and if so, then use order_sum_order_currency value which is the order value in order currency.\nIf the two currencies are not the same, then convert the order_sum_order_currency value to merchant currency.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "ivan.velchev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082684.8086529, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_orders_in_merchant_currency", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH merchant_with_shop_currency AS (\n\n SELECT \n app_key, \n shop_currency\n FROM {{ ref('platform_stg__merchant_shop_currency') }}\n\n), orders AS (\n\n SELECT \n total_price,\n order_sum_order_currency AS order_value_in_order_currency,\n order_sum_account_currency AS order_value_in_shop_currency,\n COALESCE(order_currency_iso, shop_currency) AS order_currency,\n external_customer_id,\n app_key,\n DATE(order_date) as order_date,\n shop_currency\n\n FROM {{ orders() }}\n LEFT JOIN merchant_with_shop_currency USING (app_key)\n\n), exchange_rates AS (\n\n SELECT \n country as target_currency,\n DATE(date) as date_of_exchange_rate,\n currency as exchange_rate\n FROM {{ ref('platform_stg__currency_rates') }}\n\n), orders_with_exchange_rate_in_shop_currency AS (\n\n SELECT \n app_key,\n external_customer_id,\n DATE(order_date) as order_date,\n total_price,\n order_value_in_order_currency,\n order_value_in_shop_currency,\n order_currency,\n shop_currency,\n exchange_rates.exchange_rate\n FROM orders\n LEFT JOIN exchange_rates ON DATE(orders.order_date) = DATE(exchange_rates.date_of_exchange_rate) AND\n orders.shop_currency = exchange_rates.target_currency\n\n), orders_in_shop_currency AS (\n\n SELECT\n app_key,\n external_customer_id,\n order_date,\n CASE\n WHEN total_price IS NOT NULL THEN total_price\n WHEN total_price IS NULL AND order_value_in_shop_currency IS NOT NULL THEN order_value_in_shop_currency\n WHEN total_price IS NULL AND order_value_in_shop_currency IS NULL AND order_value_in_order_currency IS NOT NULL\n AND order_currency IS NOT NULL AND order_currency = shop_currency THEN order_value_in_order_currency\n WHEN total_price IS NULL AND order_value_in_shop_currency IS NULL AND order_value_in_order_currency IS NOT NULL\n AND order_currency IS NOT NULL AND order_currency != shop_currency AND order_currency IN ('USD', 'US Dollars') \n THEN order_value_in_order_currency * orders_with_exchange_rate_in_shop_currency.exchange_rate\n WHEN total_price IS NULL AND order_value_in_shop_currency IS NULL AND order_value_in_order_currency IS NOT NULL\n AND order_currency IS NOT NULL AND order_currency != shop_currency AND order_currency NOT IN ('USD', 'US Dollars') THEN \n (order_value_in_order_currency / exchange_rates.exchange_rate) * orders_with_exchange_rate_in_shop_currency.exchange_rate\n ELSE 0\n END AS total_price\n FROM orders_with_exchange_rate_in_shop_currency\n JOIN exchange_rates\n ON DATE(orders_with_exchange_rate_in_shop_currency.order_date) = DATE(exchange_rates.date_of_exchange_rate) AND\n orders_with_exchange_rate_in_shop_currency.order_currency = exchange_rates.target_currency\n\n)\n\nSELECT * FROM orders_in_shop_currency", "language": "sql", "refs": [{"name": "platform_stg__merchant_shop_currency", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__currency_rates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.orders", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__merchant_shop_currency", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__currency_rates"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH merchant_with_shop_currency AS (\n\n SELECT \n app_key, \n shop_currency\n FROM dev_dkruh1.platform_stg__merchant_shop_currency\n\n), orders AS (\n\n SELECT \n total_price,\n order_sum_order_currency AS order_value_in_order_currency,\n order_sum_account_currency AS order_value_in_shop_currency,\n COALESCE(order_currency_iso, shop_currency) AS order_currency,\n external_customer_id,\n app_key,\n DATE(order_date) as order_date,\n shop_currency\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n LEFT JOIN merchant_with_shop_currency USING (app_key)\n\n), exchange_rates AS (\n\n SELECT \n country as target_currency,\n DATE(date) as date_of_exchange_rate,\n currency as exchange_rate\n FROM dev_dkruh1.platform_stg__currency_rates\n\n), orders_with_exchange_rate_in_shop_currency AS (\n\n SELECT \n app_key,\n external_customer_id,\n DATE(order_date) as order_date,\n total_price,\n order_value_in_order_currency,\n order_value_in_shop_currency,\n order_currency,\n shop_currency,\n exchange_rates.exchange_rate\n FROM orders\n LEFT JOIN exchange_rates ON DATE(orders.order_date) = DATE(exchange_rates.date_of_exchange_rate) AND\n orders.shop_currency = exchange_rates.target_currency\n\n), orders_in_shop_currency AS (\n\n SELECT\n app_key,\n external_customer_id,\n order_date,\n CASE\n WHEN total_price IS NOT NULL THEN total_price\n WHEN total_price IS NULL AND order_value_in_shop_currency IS NOT NULL THEN order_value_in_shop_currency\n WHEN total_price IS NULL AND order_value_in_shop_currency IS NULL AND order_value_in_order_currency IS NOT NULL\n AND order_currency IS NOT NULL AND order_currency = shop_currency THEN order_value_in_order_currency\n WHEN total_price IS NULL AND order_value_in_shop_currency IS NULL AND order_value_in_order_currency IS NOT NULL\n AND order_currency IS NOT NULL AND order_currency != shop_currency AND order_currency IN ('USD', 'US Dollars') \n THEN order_value_in_order_currency * orders_with_exchange_rate_in_shop_currency.exchange_rate\n WHEN total_price IS NULL AND order_value_in_shop_currency IS NULL AND order_value_in_order_currency IS NOT NULL\n AND order_currency IS NOT NULL AND order_currency != shop_currency AND order_currency NOT IN ('USD', 'US Dollars') THEN \n (order_value_in_order_currency / exchange_rates.exchange_rate) * orders_with_exchange_rate_in_shop_currency.exchange_rate\n ELSE 0\n END AS total_price\n FROM orders_with_exchange_rate_in_shop_currency\n JOIN exchange_rates\n ON DATE(orders_with_exchange_rate_in_shop_currency.order_date) = DATE(exchange_rates.date_of_exchange_rate) AND\n orders_with_exchange_rate_in_shop_currency.order_currency = exchange_rates.target_currency\n\n)\n\nSELECT * FROM orders_in_shop_currency", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"], "alias": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "checksum": {"name": "sha256", "checksum": "af5bad2b3995957403a5a549d0c0d764981a5c02cda3171537af2991c2f992b2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "AOV for each segment for the previous 7, 30, 90 and 365 days", "columns": {"app_key": {"name": "app_key", "description": "The merchant's identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "The trend: Previous 7/30/9/365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "aov_for_engaged_customers": {"name": "aov_for_engaged_customers", "description": "AOV for engaged customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "aov_for_returning_customers": {"name": "aov_for_returning_customers", "description": "AOV for returning customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "aov_for_new_customers": {"name": "aov_for_new_customers", "description": "AOV for new customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082684.8237906, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "raw_code": "WITH average_order_value_last_7_days AS (\n\n {{ trend_avg_order_value_per_segment(14, 7) }} \n\n), average_order_value_last_30_days AS (\n\n {{ trend_avg_order_value_per_segment(60, 30) }} \n\n), average_order_value_last_90_days AS (\n\n {{ trend_avg_order_value_per_segment(180, 90) }} \n\n), average_order_value_last_365_days AS (\n\n {{ trend_avg_order_value_per_segment(730, 365) }} \n\n) \n\n\nSELECT * FROM average_order_value_last_7_days\nUNION ALL\nSELECT * FROM average_order_value_last_30_days\nUNION ALL\nSELECT * FROM average_order_value_last_90_days\nUNION ALL\nSELECT * FROM average_order_value_last_365_days", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.trend_avg_order_value_per_segment", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.sql", "compiled": true, "compiled_code": "WITH average_order_value_last_7_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_order_value_last_7_days AS (\n SELECT app_key,\n \"Previous_7_days\" AS trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"engaged\") THEN external_customer_id END)) AS aov_for_customers_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"returning\") THEN external_customer_id END)) AS aov_for_customers_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"new\") THEN external_customer_id END)) AS aov_for_customers_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_order_value_last_7_days_non_null AS (\n \n SELECT \n app_key,\n trend,\n COALESCE(aov_for_customers_engaged, 0) AS aov_for_engaged_customers,\n COALESCE(aov_for_customers_returning, 0) AS aov_for_returning_customers,\n COALESCE(aov_for_customers_new, 0) AS aov_for_new_customers\n FROM avg_order_value_last_7_days\n \n )\n\n SELECT * FROM avg_order_value_last_7_days_non_null\n\n \n\n), average_order_value_last_30_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_order_value_last_30_days AS (\n SELECT app_key,\n \"Previous_30_days\" AS trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"engaged\") THEN external_customer_id END)) AS aov_for_customers_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"returning\") THEN external_customer_id END)) AS aov_for_customers_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"new\") THEN external_customer_id END)) AS aov_for_customers_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_order_value_last_30_days_non_null AS (\n \n SELECT \n app_key,\n trend,\n COALESCE(aov_for_customers_engaged, 0) AS aov_for_engaged_customers,\n COALESCE(aov_for_customers_returning, 0) AS aov_for_returning_customers,\n COALESCE(aov_for_customers_new, 0) AS aov_for_new_customers\n FROM avg_order_value_last_30_days\n \n )\n\n SELECT * FROM avg_order_value_last_30_days_non_null\n\n \n\n), average_order_value_last_90_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_order_value_last_90_days AS (\n SELECT app_key,\n \"Previous_90_days\" AS trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"engaged\") THEN external_customer_id END)) AS aov_for_customers_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"returning\") THEN external_customer_id END)) AS aov_for_customers_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"new\") THEN external_customer_id END)) AS aov_for_customers_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_order_value_last_90_days_non_null AS (\n \n SELECT \n app_key,\n trend,\n COALESCE(aov_for_customers_engaged, 0) AS aov_for_engaged_customers,\n COALESCE(aov_for_customers_returning, 0) AS aov_for_returning_customers,\n COALESCE(aov_for_customers_new, 0) AS aov_for_new_customers\n FROM avg_order_value_last_90_days\n \n )\n\n SELECT * FROM avg_order_value_last_90_days_non_null\n\n \n\n), average_order_value_last_365_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_order_value_last_365_days AS (\n SELECT app_key,\n \"Previous_365_days\" AS trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"engaged\") THEN external_customer_id END)) AS aov_for_customers_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"returning\") THEN external_customer_id END)) AS aov_for_customers_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"new\") THEN external_customer_id END)) AS aov_for_customers_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_order_value_last_365_days_non_null AS (\n \n SELECT \n app_key,\n trend,\n COALESCE(aov_for_customers_engaged, 0) AS aov_for_engaged_customers,\n COALESCE(aov_for_customers_returning, 0) AS aov_for_returning_customers,\n COALESCE(aov_for_customers_new, 0) AS aov_for_new_customers\n FROM avg_order_value_last_365_days\n \n )\n\n SELECT * FROM avg_order_value_last_365_days_non_null\n\n \n\n) \n\n\nSELECT * FROM average_order_value_last_7_days\nUNION ALL\nSELECT * FROM average_order_value_last_30_days\nUNION ALL\nSELECT * FROM average_order_value_last_90_days\nUNION ALL\nSELECT * FROM average_order_value_last_365_days", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"], "alias": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "checksum": {"name": "sha256", "checksum": "46f5f6c0e725b69eb60d2a4d279fcdf73a294a8ce5c82e47b095eb58c320ba85"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Average sales per customer for each segment for the previous 7, 30, 90 and 365 days", "columns": {"app_key": {"name": "app_key", "description": "The merchant's identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trend": {"name": "trend", "description": "The trend: Previous 7/30/90/365 days", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avg_per_engaged_customer": {"name": "avg_per_engaged_customer", "description": "Average sales per customer for engaged customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_per_returning_customer": {"name": "avg_per_returning_customer", "description": "Average sales per customer for returning customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "avg_per_new_customer": {"name": "avg_per_new_customer", "description": "Average sales per customer for new customers of each merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082684.862668, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "raw_code": "WITH avg_per_customer_and_segment_previous_7_days AS (\n\n {{ avg_per_customer_and_segment(14, 7, 'segment_7_days_ago', 'Previous_7_days') }} \n\n), avg_per_customer_and_segment_previous_30_days AS (\n\n {{ avg_per_customer_and_segment(60, 30, 'segment_30_days_ago', 'Previous_30_days') }} \n\n), avg_per_customer_and_segment_previous_90_days AS (\n\n {{ avg_per_customer_and_segment(180, 90, 'segment_90_days_ago', 'Previous_90_days') }} \n\n), avg_per_customer_and_segment_previous_365_days AS (\n\n {{ avg_per_customer_and_segment(730, 365, 'segment_365_days_ago', 'Previous_365_days') }} \n\n) \n\n\nSELECT * FROM avg_per_customer_and_segment_previous_7_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_previous_30_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_previous_90_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_previous_365_days", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.avg_per_customer_and_segment", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.sql", "compiled": true, "compiled_code": "WITH avg_per_customer_and_segment_previous_7_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_per_customer_Previous_7_days AS (\n SELECT app_key,\n \"Previous_7_days\" as trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"engaged\") \n THEN external_customer_id END))) AS avg_per_customer_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"returning\") \n THEN external_customer_id END))) AS avg_per_customer_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 14 day AND CURRENT_DATE() - interval 8 day)\n\n AND\n segment_7_days_ago = \"new\") \n THEN external_customer_id END))) AS avg_per_customer_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_per_customer_Previous_7_days_non_null AS (\n\n SELECT app_key,\n trend,\n COALESCE(avg_per_customer_engaged, 0) AS avg_per_engaged_customer,\n COALESCE(avg_per_customer_returning, 0) AS avg_per_returning_customer,\n COALESCE(avg_per_customer_new, 0) AS avg_per_new_customer\n FROM avg_per_customer_Previous_7_days\n\n )\n\n SELECT * FROM avg_per_customer_Previous_7_days_non_null\n \n \n\n), avg_per_customer_and_segment_previous_30_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_per_customer_Previous_30_days AS (\n SELECT app_key,\n \"Previous_30_days\" as trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"engaged\") \n THEN external_customer_id END))) AS avg_per_customer_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"returning\") \n THEN external_customer_id END))) AS avg_per_customer_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 60 day AND CURRENT_DATE() - interval 31 day)\n\n AND\n segment_30_days_ago = \"new\") \n THEN external_customer_id END))) AS avg_per_customer_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_per_customer_Previous_30_days_non_null AS (\n\n SELECT app_key,\n trend,\n COALESCE(avg_per_customer_engaged, 0) AS avg_per_engaged_customer,\n COALESCE(avg_per_customer_returning, 0) AS avg_per_returning_customer,\n COALESCE(avg_per_customer_new, 0) AS avg_per_new_customer\n FROM avg_per_customer_Previous_30_days\n\n )\n\n SELECT * FROM avg_per_customer_Previous_30_days_non_null\n \n \n\n), avg_per_customer_and_segment_previous_90_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_per_customer_Previous_90_days AS (\n SELECT app_key,\n \"Previous_90_days\" as trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"engaged\") \n THEN external_customer_id END))) AS avg_per_customer_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"returning\") \n THEN external_customer_id END))) AS avg_per_customer_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 180 day AND CURRENT_DATE() - interval 91 day)\n\n AND\n segment_90_days_ago = \"new\") \n THEN external_customer_id END))) AS avg_per_customer_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_per_customer_Previous_90_days_non_null AS (\n\n SELECT app_key,\n trend,\n COALESCE(avg_per_customer_engaged, 0) AS avg_per_engaged_customer,\n COALESCE(avg_per_customer_returning, 0) AS avg_per_returning_customer,\n COALESCE(avg_per_customer_new, 0) AS avg_per_new_customer\n FROM avg_per_customer_Previous_90_days\n\n )\n\n SELECT * FROM avg_per_customer_Previous_90_days_non_null\n \n \n\n), avg_per_customer_and_segment_previous_365_days AS (\n\n \n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_trends_orders\n\n ), avg_per_customer_Previous_365_days AS (\n SELECT app_key,\n \"Previous_365_days\" as trend,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"engaged\") \n THEN external_customer_id END))) AS avg_per_customer_engaged,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"returning\") \n THEN external_customer_id END))) AS avg_per_customer_returning,\n (SUM(CASE WHEN \n (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN (\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval 730 day AND CURRENT_DATE() - interval 366 day)\n\n AND\n segment_365_days_ago = \"new\") \n THEN external_customer_id END))) AS avg_per_customer_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_per_customer_Previous_365_days_non_null AS (\n\n SELECT app_key,\n trend,\n COALESCE(avg_per_customer_engaged, 0) AS avg_per_engaged_customer,\n COALESCE(avg_per_customer_returning, 0) AS avg_per_returning_customer,\n COALESCE(avg_per_customer_new, 0) AS avg_per_new_customer\n FROM avg_per_customer_Previous_365_days\n\n )\n\n SELECT * FROM avg_per_customer_Previous_365_days_non_null\n \n \n\n) \n\n\nSELECT * FROM avg_per_customer_and_segment_previous_7_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_previous_30_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_previous_90_days\nUNION ALL\nSELECT * FROM avg_per_customer_and_segment_previous_365_days", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_segmented_customers": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_segmented_customers", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_segmented_customers", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_segmented_customers", "platform_stg__retention_metrics_segmented_customers"], "alias": "platform_stg__retention_metrics_segmented_customers", "checksum": {"name": "sha256", "checksum": "378c924aa089d1dc61e8c998d6ca6e132e7d1ec12b398ab9b2e14df5ebb326b4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Customers segments for platform play retention metrics dashboard", "columns": {"app_key": {"name": "app_key", "description": "Merchant's unique identifier in Yotpo platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "Customers' unique identifier in the ecommerce platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "Customers segment, can only be in the highest that matches: Engaged - at least 4 orders in the past 12 months and one in the past month; Returning - more than 1 order in the past 12 months; New - one order in the past 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_7_days_ago": {"name": "segment_7_days_ago", "description": "Customer's segment based on the 7 days trend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_30_days_ago": {"name": "segment_30_days_ago", "description": "Customer's segment based on the 30 days trend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_90_days_ago": {"name": "segment_90_days_ago", "description": "Customer's segment based on the 90 days trend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_365_days_ago": {"name": "segment_365_days_ago", "description": "Customer's segment based on the 365 days trend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large"}}, "materialized": "table", "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}}, "created_at": 1700082684.9007435, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_segmented_customers", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partitioning = {\n \"field\": \"app_key\",\n \"type\": \"hash\",\n \"partitions\": 256\n }\n )\n}}\n\nWITH retention_metrics_segmented_customers_based_on_current_date AS (\n\n {{ segment_customers('current_date()') }}\n\n), retention_metrics_segmented_customers_7_days_ago AS (\n\n {{ segment_customers(\"current_date() - INTERVAL '7' DAY\") }}\n\n), retention_metrics_segmented_customers_30_days_ago AS (\n\n {{ segment_customers(\"current_date() - INTERVAL '30' DAY\") }}\n\n), retention_metrics_segmented_customers_90_days_ago AS (\n\n {{ segment_customers(\"current_date() - INTERVAL '90' DAY\") }}\n\n), retention_metrics_segmented_customers_365_days_ago AS (\n\n {{ segment_customers(\"current_date() - INTERVAL '1' YEAR\") }}\n\n), segment_customers_for_all_dates_of_segmentation AS (\n\n SELECT\n COALESCE(retention_metrics_segmented_customers_based_on_current_date.app_key, retention_metrics_segmented_customers_7_days_ago.app_key, retention_metrics_segmented_customers_30_days_ago.app_key, retention_metrics_segmented_customers_90_days_ago.app_key, retention_metrics_segmented_customers_365_days_ago.app_key) AS app_key,\n COALESCE(retention_metrics_segmented_customers_based_on_current_date.external_customer_id, retention_metrics_segmented_customers_7_days_ago.external_customer_id, retention_metrics_segmented_customers_30_days_ago.external_customer_id, retention_metrics_segmented_customers_90_days_ago.external_customer_id, retention_metrics_segmented_customers_365_days_ago.external_customer_id) AS external_customer_id,\n retention_metrics_segmented_customers_based_on_current_date.segment AS segment,\n retention_metrics_segmented_customers_7_days_ago.segment AS segment_7_days_ago,\n retention_metrics_segmented_customers_30_days_ago.segment AS segment_30_days_ago,\n retention_metrics_segmented_customers_90_days_ago.segment AS segment_90_days_ago,\n retention_metrics_segmented_customers_365_days_ago.segment AS segment_365_days_ago\n\nFROM retention_metrics_segmented_customers_based_on_current_date\n\nFULL JOIN retention_metrics_segmented_customers_7_days_ago\nON (retention_metrics_segmented_customers_based_on_current_date.app_key = retention_metrics_segmented_customers_7_days_ago.app_key\n AND retention_metrics_segmented_customers_based_on_current_date.external_customer_id = retention_metrics_segmented_customers_7_days_ago.external_customer_id)\n\nFULL JOIN retention_metrics_segmented_customers_30_days_ago\nON (COALESCE(retention_metrics_segmented_customers_based_on_current_date.app_key, retention_metrics_segmented_customers_7_days_ago.app_key) = retention_metrics_segmented_customers_30_days_ago.app_key\n AND COALESCE(retention_metrics_segmented_customers_based_on_current_date.external_customer_id, retention_metrics_segmented_customers_7_days_ago.external_customer_id) = retention_metrics_segmented_customers_30_days_ago.external_customer_id)\n\nFULL JOIN retention_metrics_segmented_customers_90_days_ago\nON (COALESCE(retention_metrics_segmented_customers_based_on_current_date.app_key, retention_metrics_segmented_customers_7_days_ago.app_key, retention_metrics_segmented_customers_30_days_ago.app_key) = retention_metrics_segmented_customers_90_days_ago.app_key\n AND COALESCE(retention_metrics_segmented_customers_based_on_current_date.external_customer_id, retention_metrics_segmented_customers_7_days_ago.external_customer_id, retention_metrics_segmented_customers_30_days_ago.external_customer_id) = retention_metrics_segmented_customers_90_days_ago.external_customer_id)\n\nFULL JOIN retention_metrics_segmented_customers_365_days_ago\nON (COALESCE(retention_metrics_segmented_customers_based_on_current_date.app_key, retention_metrics_segmented_customers_7_days_ago.app_key, retention_metrics_segmented_customers_30_days_ago.app_key, retention_metrics_segmented_customers_90_days_ago.app_key) = retention_metrics_segmented_customers_365_days_ago.app_key\n AND COALESCE(retention_metrics_segmented_customers_based_on_current_date.external_customer_id, retention_metrics_segmented_customers_7_days_ago.external_customer_id, retention_metrics_segmented_customers_30_days_ago.external_customer_id, retention_metrics_segmented_customers_90_days_ago.external_customer_id) = retention_metrics_segmented_customers_365_days_ago.external_customer_id)\n\n)\n\nSELECT * FROM segment_customers_for_all_dates_of_segmentation", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.segment_customers", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.sql", "compiled": true, "compiled_code": "\n\nWITH retention_metrics_segmented_customers_based_on_current_date AS (\n\n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(current_date()) - interval 365 day AND DATE(current_date()) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n current_date() AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n\n), retention_metrics_segmented_customers_7_days_ago AS (\n\n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(current_date() - INTERVAL '7' DAY) - interval 365 day AND DATE(current_date() - INTERVAL '7' DAY) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n current_date() - INTERVAL '7' DAY AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n\n), retention_metrics_segmented_customers_30_days_ago AS (\n\n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(current_date() - INTERVAL '30' DAY) - interval 365 day AND DATE(current_date() - INTERVAL '30' DAY) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n current_date() - INTERVAL '30' DAY AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n\n), retention_metrics_segmented_customers_90_days_ago AS (\n\n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(current_date() - INTERVAL '90' DAY) - interval 365 day AND DATE(current_date() - INTERVAL '90' DAY) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n current_date() - INTERVAL '90' DAY AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n\n), retention_metrics_segmented_customers_365_days_ago AS (\n\n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(current_date() - INTERVAL '1' YEAR) - interval 365 day AND DATE(current_date() - INTERVAL '1' YEAR) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n current_date() - INTERVAL '1' YEAR AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n\n), segment_customers_for_all_dates_of_segmentation AS (\n\n SELECT\n COALESCE(retention_metrics_segmented_customers_based_on_current_date.app_key, retention_metrics_segmented_customers_7_days_ago.app_key, retention_metrics_segmented_customers_30_days_ago.app_key, retention_metrics_segmented_customers_90_days_ago.app_key, retention_metrics_segmented_customers_365_days_ago.app_key) AS app_key,\n COALESCE(retention_metrics_segmented_customers_based_on_current_date.external_customer_id, retention_metrics_segmented_customers_7_days_ago.external_customer_id, retention_metrics_segmented_customers_30_days_ago.external_customer_id, retention_metrics_segmented_customers_90_days_ago.external_customer_id, retention_metrics_segmented_customers_365_days_ago.external_customer_id) AS external_customer_id,\n retention_metrics_segmented_customers_based_on_current_date.segment AS segment,\n retention_metrics_segmented_customers_7_days_ago.segment AS segment_7_days_ago,\n retention_metrics_segmented_customers_30_days_ago.segment AS segment_30_days_ago,\n retention_metrics_segmented_customers_90_days_ago.segment AS segment_90_days_ago,\n retention_metrics_segmented_customers_365_days_ago.segment AS segment_365_days_ago\n\nFROM retention_metrics_segmented_customers_based_on_current_date\n\nFULL JOIN retention_metrics_segmented_customers_7_days_ago\nON (retention_metrics_segmented_customers_based_on_current_date.app_key = retention_metrics_segmented_customers_7_days_ago.app_key\n AND retention_metrics_segmented_customers_based_on_current_date.external_customer_id = retention_metrics_segmented_customers_7_days_ago.external_customer_id)\n\nFULL JOIN retention_metrics_segmented_customers_30_days_ago\nON (COALESCE(retention_metrics_segmented_customers_based_on_current_date.app_key, retention_metrics_segmented_customers_7_days_ago.app_key) = retention_metrics_segmented_customers_30_days_ago.app_key\n AND COALESCE(retention_metrics_segmented_customers_based_on_current_date.external_customer_id, retention_metrics_segmented_customers_7_days_ago.external_customer_id) = retention_metrics_segmented_customers_30_days_ago.external_customer_id)\n\nFULL JOIN retention_metrics_segmented_customers_90_days_ago\nON (COALESCE(retention_metrics_segmented_customers_based_on_current_date.app_key, retention_metrics_segmented_customers_7_days_ago.app_key, retention_metrics_segmented_customers_30_days_ago.app_key) = retention_metrics_segmented_customers_90_days_ago.app_key\n AND COALESCE(retention_metrics_segmented_customers_based_on_current_date.external_customer_id, retention_metrics_segmented_customers_7_days_ago.external_customer_id, retention_metrics_segmented_customers_30_days_ago.external_customer_id) = retention_metrics_segmented_customers_90_days_ago.external_customer_id)\n\nFULL JOIN retention_metrics_segmented_customers_365_days_ago\nON (COALESCE(retention_metrics_segmented_customers_based_on_current_date.app_key, retention_metrics_segmented_customers_7_days_ago.app_key, retention_metrics_segmented_customers_30_days_ago.app_key, retention_metrics_segmented_customers_90_days_ago.app_key) = retention_metrics_segmented_customers_365_days_ago.app_key\n AND COALESCE(retention_metrics_segmented_customers_based_on_current_date.external_customer_id, retention_metrics_segmented_customers_7_days_ago.external_customer_id, retention_metrics_segmented_customers_30_days_ago.external_customer_id, retention_metrics_segmented_customers_90_days_ago.external_customer_id) = retention_metrics_segmented_customers_365_days_ago.external_customer_id)\n\n)\n\nSELECT * FROM segment_customers_for_all_dates_of_segmentation", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_segmented_customers_monthly", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_segmented_customers_monthly", "platform_stg__retention_metrics_segmented_customers_monthly"], "alias": "platform_stg__retention_metrics_segmented_customers_monthly", "checksum": {"name": "sha256", "checksum": "bfa3360acf4af4729b59590a0cfe051395ba10042582db42f82eac6b4ba44bd2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Model which segments merchant's customers based on the number and the dates of their orders.", "columns": {"date_of_segmentation": {"name": "date_of_segmentation", "description": "Date on which segmentation was done(Segmentation always goes back one year calculating the orders and dates of customers)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "The app_key which identifies an unique merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "The external_customer_id helps us identify an unique merchant's identifier for his customer", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "Customers segment, can only be in the highest that matches: Engaged - at least 4 orders in the past 12 months and one in the past month; Returning - more than 1 order in the past 12 months; New - one order in the past 12 months", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "large_with_intensive_memory"}}, "materialized": "table", "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}}, "created_at": 1700082684.9437318, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_segmented_customers_monthly", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partitioning = {\n \"field\": \"app_key\",\n \"type\": \"hash\",\n \"partitions\": 256\n }\n )\n}}\n\nWITH\n{% for month_back in range(1, 12) %}\n\nsegment_customers_based_on_month_back_{{month_back}} AS (\n \n {{ segment_customers(\"last_day(add_months(current_date(), -1 * \" ~ month_back ~ \"))\") }}\n)\n\n{% if not loop.last %},\n{% endif %}\n\n{% endfor %}\n\n{% for month_back in range(1, 12) %}\n\n SELECT * FROM segment_customers_based_on_month_back_{{month_back}}\n {% if not loop.last %}\n UNION ALL\n {% endif %}\n\n{% endfor %}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.yoda.segment_customers", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.sql", "compiled": true, "compiled_code": "\n\nWITH\n\n\nsegment_customers_based_on_month_back_1 AS (\n \n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(last_day(add_months(current_date(), -1 * 1))) - interval 365 day AND DATE(last_day(add_months(current_date(), -1 * 1))) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n last_day(add_months(current_date(), -1 * 1)) AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n)\n\n,\n\n\n\n\nsegment_customers_based_on_month_back_2 AS (\n \n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(last_day(add_months(current_date(), -1 * 2))) - interval 365 day AND DATE(last_day(add_months(current_date(), -1 * 2))) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n last_day(add_months(current_date(), -1 * 2)) AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n)\n\n,\n\n\n\n\nsegment_customers_based_on_month_back_3 AS (\n \n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(last_day(add_months(current_date(), -1 * 3))) - interval 365 day AND DATE(last_day(add_months(current_date(), -1 * 3))) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n last_day(add_months(current_date(), -1 * 3)) AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n)\n\n,\n\n\n\n\nsegment_customers_based_on_month_back_4 AS (\n \n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(last_day(add_months(current_date(), -1 * 4))) - interval 365 day AND DATE(last_day(add_months(current_date(), -1 * 4))) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n last_day(add_months(current_date(), -1 * 4)) AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n)\n\n,\n\n\n\n\nsegment_customers_based_on_month_back_5 AS (\n \n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(last_day(add_months(current_date(), -1 * 5))) - interval 365 day AND DATE(last_day(add_months(current_date(), -1 * 5))) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n last_day(add_months(current_date(), -1 * 5)) AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n)\n\n,\n\n\n\n\nsegment_customers_based_on_month_back_6 AS (\n \n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(last_day(add_months(current_date(), -1 * 6))) - interval 365 day AND DATE(last_day(add_months(current_date(), -1 * 6))) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n last_day(add_months(current_date(), -1 * 6)) AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n)\n\n,\n\n\n\n\nsegment_customers_based_on_month_back_7 AS (\n \n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(last_day(add_months(current_date(), -1 * 7))) - interval 365 day AND DATE(last_day(add_months(current_date(), -1 * 7))) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n last_day(add_months(current_date(), -1 * 7)) AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n)\n\n,\n\n\n\n\nsegment_customers_based_on_month_back_8 AS (\n \n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(last_day(add_months(current_date(), -1 * 8))) - interval 365 day AND DATE(last_day(add_months(current_date(), -1 * 8))) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n last_day(add_months(current_date(), -1 * 8)) AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n)\n\n,\n\n\n\n\nsegment_customers_based_on_month_back_9 AS (\n \n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(last_day(add_months(current_date(), -1 * 9))) - interval 365 day AND DATE(last_day(add_months(current_date(), -1 * 9))) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n last_day(add_months(current_date(), -1 * 9)) AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n)\n\n,\n\n\n\n\nsegment_customers_based_on_month_back_10 AS (\n \n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(last_day(add_months(current_date(), -1 * 10))) - interval 365 day AND DATE(last_day(add_months(current_date(), -1 * 10))) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n last_day(add_months(current_date(), -1 * 10)) AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n)\n\n,\n\n\n\n\nsegment_customers_based_on_month_back_11 AS (\n \n \n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM \n \n dev_dkruh1.platform_stg__retention_metrics_mock_orders\n \n\n WHERE \n (DATE(order_date) BETWEEN DATE(last_day(add_months(current_date(), -1 * 11))) - interval 365 day AND DATE(last_day(add_months(current_date(), -1 * 11))) - interval 1 day)\n\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n last_day(add_months(current_date(), -1 * 11)) AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n\n)\n\n\n\n\n\n\n\n SELECT * FROM segment_customers_based_on_month_back_1\n \n UNION ALL\n \n\n\n\n SELECT * FROM segment_customers_based_on_month_back_2\n \n UNION ALL\n \n\n\n\n SELECT * FROM segment_customers_based_on_month_back_3\n \n UNION ALL\n \n\n\n\n SELECT * FROM segment_customers_based_on_month_back_4\n \n UNION ALL\n \n\n\n\n SELECT * FROM segment_customers_based_on_month_back_5\n \n UNION ALL\n \n\n\n\n SELECT * FROM segment_customers_based_on_month_back_6\n \n UNION ALL\n \n\n\n\n SELECT * FROM segment_customers_based_on_month_back_7\n \n UNION ALL\n \n\n\n\n SELECT * FROM segment_customers_based_on_month_back_8\n \n UNION ALL\n \n\n\n\n SELECT * FROM segment_customers_based_on_month_back_9\n \n UNION ALL\n \n\n\n\n SELECT * FROM segment_customers_based_on_month_back_10\n \n UNION ALL\n \n\n\n\n SELECT * FROM segment_customers_based_on_month_back_11\n \n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__retention_metrics_trends_orders": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__retention_metrics_trends_orders", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.sql", "unique_id": "model.yoda.platform_stg__retention_metrics_trends_orders", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_trends_orders", "platform_stg__retention_metrics_trends_orders"], "alias": "platform_stg__retention_metrics_trends_orders", "checksum": {"name": "sha256", "checksum": "a2aa01d29fb2e718e4205e32e1e58f37d981c7d4f4f512be010ef90ca8840669"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Orders with segments for each trend", "columns": {"app_key": {"name": "app_key", "description": "Represents the order's merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "The date that the order was placed in", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "external_customer_id": {"name": "external_customer_id", "description": "Represents the customer who placed the order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_total": {"name": "order_total", "description": "The order's value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "segment": {"name": "segment", "description": "The segment of the customer who placed the order, based on today's segmentation", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_7_days_ago": {"name": "segment_7_days_ago", "description": "The segment of the customer who placed the order, based on the 7 days trend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_30_days_ago": {"name": "segment_30_days_ago", "description": "The segment of the customer who placed the order, based on the 30 days trend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_90_days_ago": {"name": "segment_90_days_ago", "description": "The segment of the customer who placed the order, based on the 90 days trend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_365_days_ago": {"name": "segment_365_days_ago", "description": "The segment of the customer who placed the order, based on the 365 days trend", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "dimo.georgiev@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "medium"}}, "materialized": "table", "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}}, "created_at": 1700082684.9654036, "relation_name": "dev_dkruh1.platform_stg__retention_metrics_trends_orders", "raw_code": "{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partitioning = {\n \"field\": \"app_key\",\n \"type\": \"hash\",\n \"partitions\": 256\n }\n )\n}}\n\nWITH orders AS (\n\n SELECT * FROM {{ ref('platform_stg__retention_metrics_orders_in_merchant_currency') }}\n\n), customers_segments AS (\n\n SELECT * FROM {{ ref('platform_stg__retention_metrics_segmented_customers') }}\n\n), retention_metrics_orders_with_segments AS (\n\n SELECT\n orders.app_key,\n orders.order_date,\n orders.external_customer_id,\n orders.total_price as order_total,\n customers_segments.segment,\n customers_segments.segment_7_days_ago,\n customers_segments.segment_30_days_ago,\n customers_segments.segment_90_days_ago,\n customers_segments.segment_365_days_ago\n FROM orders\n JOIN customers_segments ON\n (orders.external_customer_id = customers_segments.external_customer_id\n AND orders.app_key = customers_segments.app_key)\n \n)\n\nSELECT * FROM retention_metrics_orders_with_segments", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_orders_in_merchant_currency", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_segmented_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency", "model.yoda.platform_stg__retention_metrics_segmented_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.sql", "compiled": true, "compiled_code": "\n\nWITH orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_orders_in_merchant_currency\n\n), customers_segments AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__retention_metrics_segmented_customers\n\n), retention_metrics_orders_with_segments AS (\n\n SELECT\n orders.app_key,\n orders.order_date,\n orders.external_customer_id,\n orders.total_price as order_total,\n customers_segments.segment,\n customers_segments.segment_7_days_ago,\n customers_segments.segment_30_days_ago,\n customers_segments.segment_90_days_ago,\n customers_segments.segment_365_days_ago\n FROM orders\n JOIN customers_segments ON\n (orders.external_customer_id = customers_segments.external_customer_id\n AND orders.app_key = customers_segments.app_key)\n \n)\n\nSELECT * FROM retention_metrics_orders_with_segments", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__sms_shopify_orders_to_shop_currency": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__sms_shopify_orders_to_shop_currency", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.sql", "unique_id": "model.yoda.platform_stg__sms_shopify_orders_to_shop_currency", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__sms_shopify_orders_to_shop_currency", "platform_stg__sms_shopify_orders_to_shop_currency"], "alias": "platform_stg__sms_shopify_orders_to_shop_currency", "checksum": {"name": "sha256", "checksum": "839ca4cf6cd7890407c758e9a64f46718f6674df9dcb4c73e71b6ddbf5c0a9a0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "Contains sms attributed orders with currency exchange done with current exchange rates for the date of the order.", "columns": {"app_key": {"name": "app_key", "description": "Unique identifier of the merchant", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "External order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price": {"name": "total_price", "description": "Total order price in shop currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_date": {"name": "order_date", "description": "The date of the order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "shop_currency": {"name": "shop_currency", "description": "Column containing the shop currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "badgers", "created_by": "lachezar.malinkov@yotpo.com", "alert_channels": ["badgers-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082684.9809415, "relation_name": "dev_dkruh1.platform_stg__sms_shopify_orders_to_shop_currency", "raw_code": "-- We need shop_currency for merchants as currency exchange will be executed\nWITH merchant_with_shop_currency AS (\n SELECT app_key, shop_currency\n FROM {{ ref('platform_stg__merchant_shop_currency') }}\n),\n -- Get SMS attributed orders\n sms_attributed_orders AS (\n SELECT \n app_key,\n order_id,\n total_price,\n DATE(order_date) AS order_date \n FROM {{ ref('communication__sms_shopify_orders_analytics_profile') }}\n WHERE app_key IS NOT NULL\n),\n -- Join them with merchant_with_shop_currency to get shop_currency\n sms_attributed_orders_shop_currency AS (\n SELECT\n app_key,\n order_id,\n total_price,\n order_date,\n shop_currency\n FROM sms_attributed_orders\n LEFT JOIN merchant_with_shop_currency USING (app_key)\n),\n -- Get the information for currency exchange\n exchange_rates as (\n SELECT \n country as to_currency,\n DATE(date) as date_of_exchange_rate,\n currency as exchange_rate\n FROM {{ ref('platform_stg__currency_rates') }}\n),\n -- Join them with currency_rates to get total_price in shop_currency\n sms_attributed_orders_in_shop_currency AS (\n SELECT\n app_key,\n order_id,\n -- currency is the name of the field containing the exchange rate\n CASE WHEN shop_currency in ('USD', 'US Dollars') THEN total_price ELSE total_price * exchange_rates.exchange_rate END AS total_price,\n order_date,\n shop_currency\n FROM sms_attributed_orders_shop_currency\n LEFT JOIN exchange_rates on\n DATE(sms_attributed_orders_shop_currency.order_date) = DATE(exchange_rates.date_of_exchange_rate) and\n sms_attributed_orders_shop_currency.shop_currency = exchange_rates.to_currency\n), \n final as (\n SELECT * FROM sms_attributed_orders_in_shop_currency\n)\n\nSELECT * FROM final", "language": "sql", "refs": [{"name": "platform_stg__merchant_shop_currency", "package": null, "version": null}, {"name": "communication__sms_shopify_orders_analytics_profile", "package": null, "version": null}, {"name": "platform_stg__currency_rates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__merchant_shop_currency", "model.yoda.communication__sms_shopify_orders_analytics_profile", "model.yoda.platform_stg__currency_rates"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.sql", "compiled": true, "compiled_code": "-- We need shop_currency for merchants as currency exchange will be executed\nWITH merchant_with_shop_currency AS (\n SELECT app_key, shop_currency\n FROM dev_dkruh1.platform_stg__merchant_shop_currency\n),\n -- Get SMS attributed orders\n sms_attributed_orders AS (\n SELECT \n app_key,\n order_id,\n total_price,\n DATE(order_date) AS order_date \n FROM dev_dkruh1.communication__sms_shopify_orders_analytics_profile\n WHERE app_key IS NOT NULL\n),\n -- Join them with merchant_with_shop_currency to get shop_currency\n sms_attributed_orders_shop_currency AS (\n SELECT\n app_key,\n order_id,\n total_price,\n order_date,\n shop_currency\n FROM sms_attributed_orders\n LEFT JOIN merchant_with_shop_currency USING (app_key)\n),\n -- Get the information for currency exchange\n exchange_rates as (\n SELECT \n country as to_currency,\n DATE(date) as date_of_exchange_rate,\n currency as exchange_rate\n FROM dev_dkruh1.platform_stg__currency_rates\n),\n -- Join them with currency_rates to get total_price in shop_currency\n sms_attributed_orders_in_shop_currency AS (\n SELECT\n app_key,\n order_id,\n -- currency is the name of the field containing the exchange rate\n CASE WHEN shop_currency in ('USD', 'US Dollars') THEN total_price ELSE total_price * exchange_rates.exchange_rate END AS total_price,\n order_date,\n shop_currency\n FROM sms_attributed_orders_shop_currency\n LEFT JOIN exchange_rates on\n DATE(sms_attributed_orders_shop_currency.order_date) = DATE(exchange_rates.date_of_exchange_rate) and\n sms_attributed_orders_shop_currency.shop_currency = exchange_rates.to_currency\n), \n final as (\n SELECT * FROM sms_attributed_orders_in_shop_currency\n)\n\nSELECT * FROM final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__stores_enrichment": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__stores_enrichment", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.sql", "unique_id": "model.yoda.platform_stg__stores_enrichment", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__stores_enrichment", "platform_stg__stores_enrichment"], "alias": "platform_stg__stores_enrichment", "checksum": {"name": "sha256", "checksum": "1b135206c6b9351fe1ff2f880fa047e506cd749aaaae8bf9cc186e4c4e11b647"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "primary-key": "id", "foreign-keys": [{"foreign-key": "store_id", "ref-table": "platform_stg__stores", "ref-key": "store_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform"], "description": "platform__platform_stg__stores_enrichment", "columns": {"store_id": {"name": "store_id", "description": "TODO: Update Table Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "TODO: Update Column organization_id Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "app_key": {"name": "app_key", "description": "TODO: Update Column app_key Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "TODO: Update Column store_domain Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_test": {"name": "is_test", "description": "TODO: Update Column is_test Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_active": {"name": "is_active", "description": "TODO: Update Column is_active Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "store_created_at": {"name": "store_created_at", "description": "TODO: Update Column store_created_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_name": {"name": "store_name", "description": "TODO: Update Column store_name Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_language": {"name": "store_language", "description": "TODO: Update Column store_language Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_blacklisted": {"name": "is_blacklisted", "description": "TODO: Update Column is_blacklisted Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "platform_name": {"name": "platform_name", "description": "TODO: Update Column platform_name Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_supports_pull_orders": {"name": "is_supports_pull_orders", "description": "TODO: Update Column is_supports_pull_orders Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_supports_past_orders": {"name": "is_supports_past_orders", "description": "TODO: Update Column is_supports_past_orders Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column updated_at Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "primary-key": "id", "foreign-keys": [{"foreign-key": "store_id", "ref-table": "platform_stg__stores", "ref-key": "store_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform"], "meta": {"model_ownership": {"group": "platform", "team": "mochas", "created_by": "tplonzak@yotpo.com"}, "primary-key": "id", "foreign-keys": [{"foreign-key": "store_id", "ref-table": "platform_stg__stores", "ref-key": "store_id", "ref-relationship": "one-to-one"}], "cluster_profile": {"name": "medium"}}}, "created_at": 1700082685.0060046, "relation_name": "dev_dkruh1.platform_stg__stores_enrichment", "raw_code": "WITH platform_stg__stores AS (\n\n SELECT * FROM {{ ref('platform_stg__stores') }}\n\n), platform_stg__store_platforms AS (\n\n SELECT * FROM {{ ref('platform_stg__store_platforms') }}\n\n), platform_stg__platform_types AS (\n\n SELECT * FROM {{ ref('platform_stg__platform_types') }}\n\n), platform_stg__stores_enrichment AS (\n\n SELECT platform_stg__stores.store_id,\n platform_stg__stores.organization_id,\n platform_stg__stores.app_key,\n platform_stg__stores.store_domain,\n COALESCE(platform_stg__stores.is_test, 0) AS is_test,\n COALESCE(platform_stg__stores.is_active, 0) AS is_active,\n platform_stg__stores.store_created_at,\n platform_stg__stores.store_name,\n platform_stg__stores.store_language,\n platform_stg__store_platforms.is_blacklisted,\n platform_stg__platform_types.platform_name,\n COALESCE(platform_stg__platform_types.is_supports_pull_orders, 0) AS is_supports_pull_orders,\n COALESCE(platform_stg__platform_types.is_supports_past_orders, 0) AS is_supports_past_orders,\n GREATEST(platform_stg__stores.updated_at, platform_stg__store_platforms.updated_at, platform_stg__platform_types.updated_at) AS updated_at\n FROM platform_stg__stores\n LEFT JOIN platform_stg__store_platforms\n ON platform_stg__store_platforms.store_id = platform_stg__stores.store_id\n LEFT JOIN platform_stg__platform_types\n ON platform_stg__platform_types.id = platform_stg__store_platforms.platform_type_id\n\n)\n\nSELECT * FROM platform_stg__stores_enrichment", "language": "sql", "refs": [{"name": "platform_stg__stores", "package": null, "version": null}, {"name": "platform_stg__store_platforms", "package": null, "version": null}, {"name": "platform_stg__platform_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__stores", "model.yoda.platform_stg__store_platforms", "model.yoda.platform_stg__platform_types"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.sql", "compiled": true, "compiled_code": "WITH platform_stg__stores AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__stores\n\n), platform_stg__store_platforms AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__store_platforms\n\n), platform_stg__platform_types AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__platform_types\n\n), platform_stg__stores_enrichment AS (\n\n SELECT platform_stg__stores.store_id,\n platform_stg__stores.organization_id,\n platform_stg__stores.app_key,\n platform_stg__stores.store_domain,\n COALESCE(platform_stg__stores.is_test, 0) AS is_test,\n COALESCE(platform_stg__stores.is_active, 0) AS is_active,\n platform_stg__stores.store_created_at,\n platform_stg__stores.store_name,\n platform_stg__stores.store_language,\n platform_stg__store_platforms.is_blacklisted,\n platform_stg__platform_types.platform_name,\n COALESCE(platform_stg__platform_types.is_supports_pull_orders, 0) AS is_supports_pull_orders,\n COALESCE(platform_stg__platform_types.is_supports_past_orders, 0) AS is_supports_past_orders,\n GREATEST(platform_stg__stores.updated_at, platform_stg__store_platforms.updated_at, platform_stg__platform_types.updated_at) AS updated_at\n FROM platform_stg__stores\n LEFT JOIN platform_stg__store_platforms\n ON platform_stg__store_platforms.store_id = platform_stg__stores.store_id\n LEFT JOIN platform_stg__platform_types\n ON platform_stg__platform_types.id = platform_stg__store_platforms.platform_type_id\n\n)\n\nSELECT * FROM platform_stg__stores_enrichment", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__synergy_product_mapping": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__synergy_product_mapping", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.sql", "unique_id": "model.yoda.platform_stg__synergy_product_mapping", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__synergy_product_mapping", "platform_stg__synergy_product_mapping"], "alias": "platform_stg__synergy_product_mapping", "checksum": {"name": "sha256", "checksum": "f66ceb666940f95a6d292aeebd592ecd4898e185373c1937771793fec80bde33"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "synergies"], "description": "Static Hard-Coded mapping table of synergies and products | PK and granularity: synergy_id, product", "columns": {"synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "synergy_name": {"name": "synergy_name", "description": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_name": {"name": "product_name", "description": "product_name -- product name: reviews, loyalty, sms, email, subscriptions - primary key 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_action_product": {"name": "is_action_product", "description": "synergy action product indicator: 0/1", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082685.021017, "relation_name": "dev_dkruh1.platform_stg__synergy_product_mapping", "raw_code": "{{ config(materialized=dbt_data_applications.get_table_materialization('table', 'view')) }}\n\n-- static data --\n\nWITH static_synergy_product_mapping AS (\nSELECT\n synergy_id,\n synergy_name,\n source_products_array,\n action_product\nFROM VALUES\n(71, 'loyalty_subscription_discount_reward', ARRAY('subscriptions'), 'loyalty'),\n(72, 'email_editor_reviews_block', ARRAY('reviews'), 'email'),\n(73, 'email_editor_loyalty_block', ARRAY('email'), 'loyalty'),\n(77, 'sms_flows_swell_redemption_reminder', ARRAY('sms','email'), 'loyalty'),\n(78, 'sms_flows_swell_tier_earned', ARRAY('sms','email'), 'loyalty'),\n(79, 'sms_flows_swell_birthday', ARRAY('sms','email'), 'loyalty'),\n(80, 'sms_flows_swell_points_reminder', ARRAY('sms','email'), 'loyalty'),\n(81, 'sms_flows_cdp_optin_status_changed', ARRAY('sms','email'), 'loyalty'),\n(82, 'sms_flows_cdp_redemption_created', ARRAY('sms','email'), 'loyalty'),\n(95, 'sms_campaign_to_grow_product_subscribers', ARRAY('sms'), 'subscriptions'),\n(97, 'sms_campaigns_click_to_redeem', ARRAY('sms'), 'loyalty'),\n(98, 'subscriptions_management_url_notification_flow', ARRAY('sms'), 'subscriptions'),\n(99, 'subscription_upcoming_order_reminder_notification_flow', ARRAY('sms'), 'subscriptions'),\n(100, 'subscription_payment_failure_notification_flow', ARRAY('sms'), 'subscriptions'),\n(101, 'subscription_cancellation_notification_flow', ARRAY('sms'), 'subscriptions'),\n(102, 'subscription_confirmation_notification_flow', ARRAY('sms'), 'subscriptions'),\n(103, 'sms_campaigns_vip_tier', ARRAY('sms'), 'loyalty'),\n(105, 'subscriptions_management_over_sms', ARRAY('sms'), 'subscriptions'),\n(106, 'sign_up_for_sms_earning_rule_loyalty', ARRAY('loyalty'), 'sms'),\n(107, 'review_earning_rule_loyalty', ARRAY('loyalty'), 'reviews'),\n(108, 'sms_flows_yotpo_product_review', ARRAY('sms'), 'reviews'),\n(109, 'sms_flows_yotpo_site_review', ARRAY('sms'), 'reviews'),\n(110, 'sms_campaigns_free_shipping', ARRAY('sms'), 'loyalty'),\n(111, 'sms_campaigns_redemption_reminder', ARRAY('sms'), 'loyalty'),\n(112, 'sms_campaigns_reward_program', ARRAY('sms'), 'loyalty'),\n(117, 'image_review_earning_rule_loyalty', ARRAY('loyalty'), 'reviews'),\n(118, 'video_review_earning_rule_loyalty', ARRAY('loyalty'), 'reviews'),\n(134, 'email_editor_product_with_reviews_block', ARRAY('reviews'), 'email'),\n(137, 'sms_flows_abandoned_checkout_reviews_star_rating', ARRAY('reviews'), 'sms'),\n(142, 'sms_flows_custom_loyalty', ARRAY('sms','email'), 'loyalty'),\n(143, 'sms_email_campaigns_with_loyalty', ARRAY('sms'), 'loyalty')\nAS (synergy_id, synergy_name, source_products_array, action_product)\n),\n\n-- logic --\n\nsource_products_separation AS (\nSELECT\n synergy_id,\n synergy_name,\n EXPLODE(source_products_array) AS product_name,\n 0 AS is_action\nFROM static_synergy_product_mapping\n),\n\naction_product AS (\nSELECT\n synergy_id,\n synergy_name,\n action_product AS product_name,\n 1 AS is_action\nFROM static_synergy_product_mapping\n),\n\nunion_products AS (\nSELECT\n synergy_id,\n synergy_name,\n product_name,\n is_action\nFROM source_products_separation\nUNION ALL\nSELECT\n synergy_id,\n synergy_name,\n product_name,\n is_action\nFROM action_product\n),\n\nsynergy_product_mapping_res AS (\nSELECT\n synergy_id,\n synergy_name,\n product_name,\n SMALLINT(is_action) AS is_action_product,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM union_products\n)\n\n-- result --\n\nSELECT *\nFROM synergy_product_mapping_res", "language": "sql", "refs": [], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": []}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.sql", "compiled": true, "compiled_code": "\n\n-- static data --\n\nWITH static_synergy_product_mapping AS (\nSELECT\n synergy_id,\n synergy_name,\n source_products_array,\n action_product\nFROM VALUES\n(71, 'loyalty_subscription_discount_reward', ARRAY('subscriptions'), 'loyalty'),\n(72, 'email_editor_reviews_block', ARRAY('reviews'), 'email'),\n(73, 'email_editor_loyalty_block', ARRAY('email'), 'loyalty'),\n(77, 'sms_flows_swell_redemption_reminder', ARRAY('sms','email'), 'loyalty'),\n(78, 'sms_flows_swell_tier_earned', ARRAY('sms','email'), 'loyalty'),\n(79, 'sms_flows_swell_birthday', ARRAY('sms','email'), 'loyalty'),\n(80, 'sms_flows_swell_points_reminder', ARRAY('sms','email'), 'loyalty'),\n(81, 'sms_flows_cdp_optin_status_changed', ARRAY('sms','email'), 'loyalty'),\n(82, 'sms_flows_cdp_redemption_created', ARRAY('sms','email'), 'loyalty'),\n(95, 'sms_campaign_to_grow_product_subscribers', ARRAY('sms'), 'subscriptions'),\n(97, 'sms_campaigns_click_to_redeem', ARRAY('sms'), 'loyalty'),\n(98, 'subscriptions_management_url_notification_flow', ARRAY('sms'), 'subscriptions'),\n(99, 'subscription_upcoming_order_reminder_notification_flow', ARRAY('sms'), 'subscriptions'),\n(100, 'subscription_payment_failure_notification_flow', ARRAY('sms'), 'subscriptions'),\n(101, 'subscription_cancellation_notification_flow', ARRAY('sms'), 'subscriptions'),\n(102, 'subscription_confirmation_notification_flow', ARRAY('sms'), 'subscriptions'),\n(103, 'sms_campaigns_vip_tier', ARRAY('sms'), 'loyalty'),\n(105, 'subscriptions_management_over_sms', ARRAY('sms'), 'subscriptions'),\n(106, 'sign_up_for_sms_earning_rule_loyalty', ARRAY('loyalty'), 'sms'),\n(107, 'review_earning_rule_loyalty', ARRAY('loyalty'), 'reviews'),\n(108, 'sms_flows_yotpo_product_review', ARRAY('sms'), 'reviews'),\n(109, 'sms_flows_yotpo_site_review', ARRAY('sms'), 'reviews'),\n(110, 'sms_campaigns_free_shipping', ARRAY('sms'), 'loyalty'),\n(111, 'sms_campaigns_redemption_reminder', ARRAY('sms'), 'loyalty'),\n(112, 'sms_campaigns_reward_program', ARRAY('sms'), 'loyalty'),\n(117, 'image_review_earning_rule_loyalty', ARRAY('loyalty'), 'reviews'),\n(118, 'video_review_earning_rule_loyalty', ARRAY('loyalty'), 'reviews'),\n(134, 'email_editor_product_with_reviews_block', ARRAY('reviews'), 'email'),\n(137, 'sms_flows_abandoned_checkout_reviews_star_rating', ARRAY('reviews'), 'sms'),\n(142, 'sms_flows_custom_loyalty', ARRAY('sms','email'), 'loyalty'),\n(143, 'sms_email_campaigns_with_loyalty', ARRAY('sms'), 'loyalty')\nAS (synergy_id, synergy_name, source_products_array, action_product)\n),\n\n-- logic --\n\nsource_products_separation AS (\nSELECT\n synergy_id,\n synergy_name,\n EXPLODE(source_products_array) AS product_name,\n 0 AS is_action\nFROM static_synergy_product_mapping\n),\n\naction_product AS (\nSELECT\n synergy_id,\n synergy_name,\n action_product AS product_name,\n 1 AS is_action\nFROM static_synergy_product_mapping\n),\n\nunion_products AS (\nSELECT\n synergy_id,\n synergy_name,\n product_name,\n is_action\nFROM source_products_separation\nUNION ALL\nSELECT\n synergy_id,\n synergy_name,\n product_name,\n is_action\nFROM action_product\n),\n\nsynergy_product_mapping_res AS (\nSELECT\n synergy_id,\n synergy_name,\n product_name,\n SMALLINT(is_action) AS is_action_product,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM union_products\n)\n\n-- result --\n\nSELECT *\nFROM synergy_product_mapping_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.platform_stg__synergy_start_date_mapping": {"database": null, "schema": "dev_dkruh1", "name": "platform_stg__synergy_start_date_mapping", "resource_type": "model", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.sql", "unique_id": "model.yoda.platform_stg__synergy_start_date_mapping", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__synergy_start_date_mapping", "platform_stg__synergy_start_date_mapping"], "alias": "platform_stg__synergy_start_date_mapping", "checksum": {"name": "sha256", "checksum": "49b1f3d0351b642a311d81f6c7e399c5b47018b49c779eaf0f45b3e8186868a1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["platform", "platform", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["platform", "synergies"], "description": "Static Hard-Coded mapping table of synergies start date in order to skip incorrect data in a some synergies | PK and granularity: synergy_id", "columns": {"synergy_id": {"name": "synergy_id", "description": "synergy widget unique identifier - primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "synergy_name": {"name": "synergy_name", "description": "synergy widget name, e.g: sms_campaigns_vip_tier, image_review_earning_rule_loyalty", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date": {"name": "start_date", "description": "synergy start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["platform", "synergies"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "table"}, "created_at": 1700082685.0599651, "relation_name": "dev_dkruh1.platform_stg__synergy_start_date_mapping", "raw_code": "{{ config(materialized=dbt_data_applications.get_table_materialization('table', 'view')) }}\n\n-- static data --\n\nWITH static_synergy_start_date AS (\nSELECT\n synergy_id,\n synergy_name,\n start_date\nFROM VALUES\n(103, 'sms_campaigns_vip_tier', '2023-05-05'),\n(117, 'image_review_earning_rule_loyalty', '2023-05-09'),\n(118, 'video_review_earning_rule_loyalty', '2023-05-09')\nAS (synergy_id, synergy_name, start_date)\n),\n\n-- Logic --\n\nsynergy_start_date_mapping_res AS (\nSELECT\n synergy_id,\n synergy_name,\n DATE(start_date) AS start_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM static_synergy_start_date\n)\n\n-- Result --\n\nSELECT *\nFROM synergy_start_date_mapping_res", "language": "sql", "refs": [], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": []}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.sql", "compiled": true, "compiled_code": "\n\n-- static data --\n\nWITH static_synergy_start_date AS (\nSELECT\n synergy_id,\n synergy_name,\n start_date\nFROM VALUES\n(103, 'sms_campaigns_vip_tier', '2023-05-05'),\n(117, 'image_review_earning_rule_loyalty', '2023-05-09'),\n(118, 'video_review_earning_rule_loyalty', '2023-05-09')\nAS (synergy_id, synergy_name, start_date)\n),\n\n-- Logic --\n\nsynergy_start_date_mapping_res AS (\nSELECT\n synergy_id,\n synergy_name,\n DATE(start_date) AS start_date,\n CURRENT_TIMESTAMP AS dwh_updated_at\nFROM static_synergy_start_date\n)\n\n-- Result --\n\nSELECT *\nFROM synergy_start_date_mapping_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__api_calls_with_customer": {"database": null, "schema": "dev_dkruh1", "name": "sms__api_calls_with_customer", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.sql", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.sql", "unique_id": "model.yoda.sms__api_calls_with_customer", "fqn": ["yoda", "sms", "marts", "sms__api_calls_with_customer", "sms__api_calls_with_customer"], "alias": "sms__api_calls_with_customer", "checksum": {"name": "sha256", "checksum": "f20c2615e5339ce6395664daef9dba38a8bde95c45127c9481a66a0cd8dd8afd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "anikolov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "Api calls with external customer id", "columns": {"sms_id": {"name": "sms_id", "description": "SMS id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "User id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "Flow id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_number": {"name": "phone_number", "description": "Customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_created": {"name": "sms_created", "description": "Sms created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_external_id": {"name": "customer_external_id", "description": "Customer external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "App key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_trigger": {"name": "flow_trigger", "description": "Flow type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "anikolov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "anikolov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082685.2014372, "relation_name": "dev_dkruh1.sms__api_calls_with_customer", "raw_code": "WITH shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM {{ ref('sms_stg__customers') }}\n), api_calls AS (\n SELECT id, flow_id, user_id, campaign_id, `to`, created, modified\n FROM {{ ref('sms_stg__apicalls') }}\n WHERE event_id = 0 AND status = 'sent'\n),\n\nsourse AS (\n SELECT \n api_calls.id as sms_id, \n api_calls.user_id, \n api_calls.flow_id,\n api_calls.campaign_id,\n api_calls.to as phone_number,\n api_calls.created as sms_created,\n c.customer_id AS customer_external_id,\n u.yotpo_app_key as app_key,\n f.flow_trigger\n FROM api_calls\n INNER JOIN {{ ref('sms_stg__flows') }} f ON f.id = api_calls.flow_id\n INNER JOIN {{ ref('sms_stg__users') }} u ON u.id = api_calls.user_id\n LEFT JOIN shopify_customers AS c\n ON c.smsbump_user_id = api_calls.user_id AND c.phone_formatted = api_calls.`to`\n \n WHERE api_calls.flow_id is not null and c.customer_id IS NOT NULL\n GROUP BY api_calls.id, api_calls.user_id, api_calls.flow_id, api_calls.campaign_id, api_calls.to, api_calls.created, c.customer_id, u.yotpo_app_key, f.flow_trigger\n)\n\nSELECT * FROM sourse", "language": "sql", "refs": [{"name": "sms_stg__customers", "package": null, "version": null}, {"name": "sms_stg__apicalls", "package": null, "version": null}, {"name": "sms_stg__flows", "package": null, "version": null}, {"name": "sms_stg__users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__customers", "model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__flows", "model.yoda.sms_stg__users"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.sql", "compiled": true, "compiled_code": "WITH shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM dev_dkruh1.sms_stg__customers\n), api_calls AS (\n SELECT id, flow_id, user_id, campaign_id, `to`, created, modified\n FROM dev_dkruh1.sms_stg__apicalls\n WHERE event_id = 0 AND status = 'sent'\n),\n\nsourse AS (\n SELECT \n api_calls.id as sms_id, \n api_calls.user_id, \n api_calls.flow_id,\n api_calls.campaign_id,\n api_calls.to as phone_number,\n api_calls.created as sms_created,\n c.customer_id AS customer_external_id,\n u.yotpo_app_key as app_key,\n f.flow_trigger\n FROM api_calls\n INNER JOIN dev_dkruh1.sms_stg__flows f ON f.id = api_calls.flow_id\n INNER JOIN dev_dkruh1.sms_stg__users u ON u.id = api_calls.user_id\n LEFT JOIN shopify_customers AS c\n ON c.smsbump_user_id = api_calls.user_id AND c.phone_formatted = api_calls.`to`\n \n WHERE api_calls.flow_id is not null and c.customer_id IS NOT NULL\n GROUP BY api_calls.id, api_calls.user_id, api_calls.flow_id, api_calls.campaign_id, api_calls.to, api_calls.created, c.customer_id, u.yotpo_app_key, f.flow_trigger\n)\n\nSELECT * FROM sourse", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__daily_revenue": {"database": null, "schema": "dev_dkruh1", "name": "sms__daily_revenue", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.sql", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.sql", "unique_id": "model.yoda.sms__daily_revenue", "fqn": ["yoda", "sms", "marts", "sms__daily_revenue", "sms__daily_revenue"], "alias": "sms__daily_revenue", "checksum": {"name": "sha256", "checksum": "0922acbce788406febaaf94da50ddd4f33e9f0908216c212b0ab2f6991531c4c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "gambits", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["gambits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "incremental", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "Table that aggregtes SMS cost", "columns": {"date": {"name": "date", "description": "Aggregation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "platform": {"name": "platform", "description": "Platform attributed to the delivery", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_status": {"name": "message_status", "description": "SMS delivery status", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "by_flow": {"name": "by_flow", "description": "Total amount of SMS fired from flows", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "by_campaign": {"name": "by_campaign", "description": "Total amount of SMS fired from campaigns", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organic": {"name": "organic", "description": "Total amount of SMS fired organically", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price_billed": {"name": "total_price_billed", "description": "Total billing amount of SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,4)"}, "total_vendor_cost": {"name": "total_vendor_cost", "description": "Total vendor cost of SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(22,4)"}, "total_revenue": {"name": "total_revenue", "description": "Total revenuw of SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(23,4)"}, "total_sms_sent": {"name": "total_sms_sent", "description": "Total amount of SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "sms", "team": "gambits", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["gambits-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__daily_revenue/sms__daily_revenue.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "incremental", "meta": {"model_ownership": {"group": "sms", "team": "gambits", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["gambits-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082685.2278616, "relation_name": "dev_dkruh1.sms__daily_revenue", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view')\n )\n}}\n\nWITH apicalls_revenue AS(\n SELECT \n DATE(created) AS date, \n platform,\n CASE WHEN status is NULL THEN 'unknown' ELSE status END AS message_status,\n SUM(CASE WHEN flow_id <> 0 THEN 1 ELSE 0 END) as by_flow,\n SUM(CASE WHEN campaign_id <> 0 THEN 1 ELSE 0 END) as by_campaign, \n SUM(CASE WHEN campaign_id = 0 and flow_id <> 0 THEN 1 ELSE 0 END) as organic, \n SUM(CAST(price_billed AS DECIMAL(12,4))) as total_price_billed, \n SUM(CAST(price_vendor_cost AS DECIMAL(12,4))) AS total_vendor_cost, \n SUM(CAST(price_billed AS DECIMAL(12,4)) - CAST(price_vendor_cost AS DECIMAL(12,4))) as total_revenue,\n COUNT(*) AS total_sms_sent\n FROM \n {{ ref('sms_stg__apicalls') }}\n WHERE \n created < DATE(DATEADD(day, -1, current_date()))\n{% if is_incremental() %}\n AND \n created >= (SELECT date_add(MAX(date), 1) FROM {{ this }})\n{% endif %}\n GROUP BY 1, 2, 3\n)\n\nSELECT \n date, \n platform,\n message_status,\n by_flow,\n by_campaign, \n organic, \n total_price_billed, \n total_vendor_cost, \n total_revenue,\n total_sms_sent\nFROM apicalls_revenue", "language": "sql", "refs": [{"name": "sms_stg__apicalls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__apicalls"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__daily_revenue/sms__daily_revenue.sql", "compiled": true, "compiled_code": "\n\nWITH apicalls_revenue AS(\n SELECT \n DATE(created) AS date, \n platform,\n CASE WHEN status is NULL THEN 'unknown' ELSE status END AS message_status,\n SUM(CASE WHEN flow_id <> 0 THEN 1 ELSE 0 END) as by_flow,\n SUM(CASE WHEN campaign_id <> 0 THEN 1 ELSE 0 END) as by_campaign, \n SUM(CASE WHEN campaign_id = 0 and flow_id <> 0 THEN 1 ELSE 0 END) as organic, \n SUM(CAST(price_billed AS DECIMAL(12,4))) as total_price_billed, \n SUM(CAST(price_vendor_cost AS DECIMAL(12,4))) AS total_vendor_cost, \n SUM(CAST(price_billed AS DECIMAL(12,4)) - CAST(price_vendor_cost AS DECIMAL(12,4))) as total_revenue,\n COUNT(*) AS total_sms_sent\n FROM \n dev_dkruh1.sms_stg__apicalls\n WHERE \n created < DATE(DATEADD(day, -1, current_date()))\n\n GROUP BY 1, 2, 3\n)\n\nSELECT \n date, \n platform,\n message_status,\n by_flow,\n by_campaign, \n organic, \n total_price_billed, \n total_vendor_cost, \n total_revenue,\n total_sms_sent\nFROM apicalls_revenue", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__flows_links_clicks": {"database": null, "schema": "dev_dkruh1", "name": "sms__flows_links_clicks", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.sql", "original_file_path": "models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.sql", "unique_id": "model.yoda.sms__flows_links_clicks", "fqn": ["yoda", "sms", "marts", "sms__flows_links_clicks", "sms__flows_links_clicks"], "alias": "sms__flows_links_clicks", "checksum": {"name": "sha256", "checksum": "a15edca74ae992eef4aa8fd898cd5406d9275718fff9a80232b55a1c099807cc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "flows links clicks", "columns": {"sms_id": {"name": "sms_id", "description": "clicks id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number": {"name": "number", "description": "phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicks_count": {"name": "clicks_count", "description": "clicks count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "link": {"name": "link", "description": "link", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_trigger": {"name": "flow_trigger", "description": "flow trigger", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082685.2437937, "relation_name": "dev_dkruh1.sms__flows_links_clicks", "raw_code": "WITH clicks AS (\n SELECT id, number, clicks_count, processing_time, flow_id, link_id\n FROM {{ ref('sms_stg__flow_link_clicks') }}\n), links AS (\n SELECT id, link\n FROM {{ ref('sms_stg__flow_links') }}\n), source AS (\n SELECT\n clicks.id AS sms_id,\n clicks.number,\n clicks.clicks_count,\n clicks.processing_time,\n links.link,\n flows.flow_trigger\n FROM {{ ref('sms_stg__flows') }} AS flows\n INNER JOIN clicks ON flows.id = clicks.flow_id\n INNER JOIN links ON links.id = clicks.link_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__flow_link_clicks", "package": null, "version": null}, {"name": "sms_stg__flow_links", "package": null, "version": null}, {"name": "sms_stg__flows", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__flow_link_clicks", "model.yoda.sms_stg__flow_links", "model.yoda.sms_stg__flows"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.sql", "compiled": true, "compiled_code": "WITH clicks AS (\n SELECT id, number, clicks_count, processing_time, flow_id, link_id\n FROM dev_dkruh1.sms_stg__flow_link_clicks\n), links AS (\n SELECT id, link\n FROM dev_dkruh1.sms_stg__flow_links\n), source AS (\n SELECT\n clicks.id AS sms_id,\n clicks.number,\n clicks.clicks_count,\n clicks.processing_time,\n links.link,\n flows.flow_trigger\n FROM dev_dkruh1.sms_stg__flows AS flows\n INNER JOIN clicks ON flows.id = clicks.flow_id\n INNER JOIN links ON links.id = clicks.link_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__loyalty_sms_campaigns_email_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__loyalty_sms_campaigns_email_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.sql", "unique_id": "model.yoda.sms__loyalty_sms_campaigns_email_kpi", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "sms__loyalty_sms_campaigns_email_kpi"], "alias": "sms__loyalty_sms_campaigns_email_kpi", "checksum": {"name": "sha256", "checksum": "c17be577903a31a7c99f1b0adf88e63de306f079be84d1583a023eef97ddf2c0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "loyalty sms campaigns email kpi table", "columns": {"id": {"name": "id", "description": "uuid function", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs file", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "campaigns/email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "email reference id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "shopify order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "redemption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "redemption_id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "points value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082685.2738032, "relation_name": "dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi", "raw_code": "WITH sms_loyalty_campaigns AS (\n SELECT \n campaign_id,\n user_id,\n synergy_id,\n order_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_email,\n external_customer_id\n FROM {{ ref('sms_stg__sms_loyalty_campaigns_kpi') }}\n WHERE channel = 'email'\n), shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM {{ ref('sms_stg__customers') }}\n), emails AS (\n SELECT context_source_id, email_address, context_store_id, context_reference_id\n FROM {{ ref('email_stg__system_email_events') }}\n WHERE event_type = 'DELIVERED' AND context_source_name = 'communication_campaigns'\n), source AS (\n SELECT \n uuid() as id,\n FIRST(slc.synergy_id) AS synergy_id,\n 'campaign/email' AS source_type,\n emails.context_reference_id AS source_id,\n FIRST(slc.order_id) as order_id,\n FIRST(slc.action_type) AS action_type,\n FIRST(slc.action_id) AS action_id,\n FIRST(slc.action_attribute_type) AS action_attribute_type,\n FIRST(slc.action_attribute_value) AS action_attribute_value,\n FIRST(slc.app_key) AS app_key,\n FIRST(slc.customer_email) AS customer_email,\n FIRST(c.phone_formatted) AS customer_phone_number,\n FIRST(slc.external_customer_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_loyalty_campaigns AS slc\n INNER JOIN shopify_customers AS c\n ON slc.external_customer_id = c.customer_id AND c.smsbump_user_id = slc.user_id\n INNER JOIN emails\n ON emails.context_store_id = slc.app_key\n AND emails.context_source_id = slc.campaign_id\n AND emails.email_address = slc.customer_email\n GROUP BY emails.context_reference_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}, {"name": "email_stg__system_email_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi", "model.yoda.sms_stg__customers", "model.yoda.email_stg__system_email_events"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.sql", "compiled": true, "compiled_code": "WITH sms_loyalty_campaigns AS (\n SELECT \n campaign_id,\n user_id,\n synergy_id,\n order_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_email,\n external_customer_id\n FROM dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi\n WHERE channel = 'email'\n), shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM dev_dkruh1.sms_stg__customers\n), emails AS (\n SELECT context_source_id, email_address, context_store_id, context_reference_id\n FROM dev_dkruh1.email_stg__system_email_events\n WHERE event_type = 'DELIVERED' AND context_source_name = 'communication_campaigns'\n), source AS (\n SELECT \n uuid() as id,\n FIRST(slc.synergy_id) AS synergy_id,\n 'campaign/email' AS source_type,\n emails.context_reference_id AS source_id,\n FIRST(slc.order_id) as order_id,\n FIRST(slc.action_type) AS action_type,\n FIRST(slc.action_id) AS action_id,\n FIRST(slc.action_attribute_type) AS action_attribute_type,\n FIRST(slc.action_attribute_value) AS action_attribute_value,\n FIRST(slc.app_key) AS app_key,\n FIRST(slc.customer_email) AS customer_email,\n FIRST(c.phone_formatted) AS customer_phone_number,\n FIRST(slc.external_customer_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_loyalty_campaigns AS slc\n INNER JOIN shopify_customers AS c\n ON slc.external_customer_id = c.customer_id AND c.smsbump_user_id = slc.user_id\n INNER JOIN emails\n ON emails.context_store_id = slc.app_key\n AND emails.context_source_id = slc.campaign_id\n AND emails.email_address = slc.customer_email\n GROUP BY emails.context_reference_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.sql", "unique_id": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "sms__loyalty_sms_campaigns_email_reward_program_kpi"], "alias": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "checksum": {"name": "sha256", "checksum": "66aef042be3c7c3bd32b705b9214bfffba390a77363af45fdc0f0e310d0d79ad"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "loyalty sms campaigns email reward program kpi table", "columns": {"id": {"name": "id", "description": "uuid function", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs file", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "campaigns/email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "email reference id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "new member", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082685.38897, "relation_name": "dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi", "raw_code": "WITH loyalty_campaigns AS (\n SELECT user_id, store_id, campaign_id, synergy_id\n FROM {{ ref('sms_stg__sms_loyalty_campaigns') }}\n WHERE synergy_id = 112\n), shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM {{ ref('sms_stg__customers') }}\n), loyalty_opt_customers AS (\n SELECT \n app_key,\n LAST(opted_in_at) AS opted_in_at,\n customer_external_id,\n LAST(customer_email) AS customer_email\n FROM {{ ref('loyalty__opted_in_customers') }}\n GROUP BY customer_external_id, app_key\n), emails AS (\n SELECT context_source_id, email_address, context_store_id, context_reference_id, timestamp\n FROM {{ ref('email_stg__system_email_events') }}\n WHERE event_type = 'DELIVERED' AND context_source_name = 'communication_campaigns'\n), sms_emails_campaigns AS (\n SELECT\n lc.user_id AS user_id,\n lc.store_id AS store_id,\n lc.synergy_id AS synergy_id,\n emails.email_address AS customer_email,\n emails.context_reference_id AS source_id,\n emails.timestamp AS email_send\n FROM loyalty_campaigns AS lc\n INNER JOIN emails\n ON lc.store_id = emails.context_store_id\n AND lc.campaign_id = emails.context_source_id\n), sms_emails_campaigns_optin AS (\n SELECT\n sec.user_id AS user_id,\n loc.customer_email AS customer_email,\n sec.source_id AS source_id,\n loc.customer_external_id AS customer_external_id,\n loc.app_key AS app_key,\n sec.synergy_id AS synergy_id\n FROM sms_emails_campaigns AS sec\n INNER JOIN loyalty_opt_customers AS loc\n ON loc.customer_email = sec.customer_email\n AND loc.app_key = sec.store_id\n AND sec.email_send < loc.opted_in_at\n), source AS (\n SELECT\n uuid() AS id,\n seco.synergy_id AS synergy_id,\n 'campaign/email' AS source_type,\n seco.source_id AS source_id,\n BIGINT(NULL) AS order_id, \n 'new member' AS action_type, \n BIGINT(NULL) AS action_id, \n STRING(NULL) AS action_attribute_type, \n BIGINT(NULL) AS action_attribute_value,\n seco.app_key AS app_key,\n seco.customer_email AS customer_email,\n FIRST(c.phone_formatted) AS customer_phone_number,\n seco.customer_external_id AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_emails_campaigns_optin AS seco\n INNER JOIN shopify_customers AS c\n ON seco.user_id = c.smsbump_user_id AND seco.customer_external_id = c.customer_id\n GROUP BY seco.synergy_id, seco.app_key, seco.customer_email, seco.customer_external_id, seco.source_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}, {"name": "loyalty__opted_in_customers", "package": null, "version": null}, {"name": "email_stg__system_email_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns", "model.yoda.sms_stg__customers", "model.yoda.loyalty__opted_in_customers", "model.yoda.email_stg__system_email_events"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.sql", "compiled": true, "compiled_code": "WITH loyalty_campaigns AS (\n SELECT user_id, store_id, campaign_id, synergy_id\n FROM dev_dkruh1.sms_stg__sms_loyalty_campaigns\n WHERE synergy_id = 112\n), shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM dev_dkruh1.sms_stg__customers\n), loyalty_opt_customers AS (\n SELECT \n app_key,\n LAST(opted_in_at) AS opted_in_at,\n customer_external_id,\n LAST(customer_email) AS customer_email\n FROM dev_dkruh1.loyalty__opted_in_customers\n GROUP BY customer_external_id, app_key\n), emails AS (\n SELECT context_source_id, email_address, context_store_id, context_reference_id, timestamp\n FROM dev_dkruh1.email_stg__system_email_events\n WHERE event_type = 'DELIVERED' AND context_source_name = 'communication_campaigns'\n), sms_emails_campaigns AS (\n SELECT\n lc.user_id AS user_id,\n lc.store_id AS store_id,\n lc.synergy_id AS synergy_id,\n emails.email_address AS customer_email,\n emails.context_reference_id AS source_id,\n emails.timestamp AS email_send\n FROM loyalty_campaigns AS lc\n INNER JOIN emails\n ON lc.store_id = emails.context_store_id\n AND lc.campaign_id = emails.context_source_id\n), sms_emails_campaigns_optin AS (\n SELECT\n sec.user_id AS user_id,\n loc.customer_email AS customer_email,\n sec.source_id AS source_id,\n loc.customer_external_id AS customer_external_id,\n loc.app_key AS app_key,\n sec.synergy_id AS synergy_id\n FROM sms_emails_campaigns AS sec\n INNER JOIN loyalty_opt_customers AS loc\n ON loc.customer_email = sec.customer_email\n AND loc.app_key = sec.store_id\n AND sec.email_send < loc.opted_in_at\n), source AS (\n SELECT\n uuid() AS id,\n seco.synergy_id AS synergy_id,\n 'campaign/email' AS source_type,\n seco.source_id AS source_id,\n BIGINT(NULL) AS order_id, \n 'new member' AS action_type, \n BIGINT(NULL) AS action_id, \n STRING(NULL) AS action_attribute_type, \n BIGINT(NULL) AS action_attribute_value,\n seco.app_key AS app_key,\n seco.customer_email AS customer_email,\n FIRST(c.phone_formatted) AS customer_phone_number,\n seco.customer_external_id AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_emails_campaigns_optin AS seco\n INNER JOIN shopify_customers AS c\n ON seco.user_id = c.smsbump_user_id AND seco.customer_external_id = c.customer_id\n GROUP BY seco.synergy_id, seco.app_key, seco.customer_email, seco.customer_external_id, seco.source_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__loyalty_sms_campaigns_sms_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__loyalty_sms_campaigns_sms_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.sql", "unique_id": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "sms__loyalty_sms_campaigns_sms_kpi"], "alias": "sms__loyalty_sms_campaigns_sms_kpi", "checksum": {"name": "sha256", "checksum": "abc0016ae3054448287717ace0468d6f3f950a7aef798a2f64d80d9caf25471f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms loyalty for sms campaigns kpi", "columns": {"id": {"name": "id", "description": "uuid function", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "campaign/sms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "apicalls id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "redemption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "redemption id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "points value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082685.4877071, "relation_name": "dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi", "raw_code": "WITH sms_loyalty_campaigns AS (\n SELECT \n campaign_id,\n user_id,\n synergy_id,\n order_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_email,\n external_customer_id\n FROM {{ ref('sms_stg__sms_loyalty_campaigns_kpi') }}\n WHERE channel = 'sms'\n), shopify_orders AS (\n SELECT phone_formatted, phone, smsbump_user_id, order_id, customer_id\n FROM {{ ref('sms_stg__orders') }}\n), shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM {{ ref('sms_stg__customers') }}\n), sms AS (\n SELECT campaign_id, user_id, `to`, id AS source_id\n FROM {{ ref('sms_stg__apicalls') }}\n WHERE status = 'sent'\n), source AS (\n SELECT\n uuid() as id,\n slc.synergy_id AS synergy_id,\n 'campaign/sms' AS source_type,\n sms.source_id AS source_id,\n FIRST(slc.order_id) as order_id,\n slc.action_type AS action_type,\n slc.action_id AS action_id,\n FIRST(slc.action_attribute_type) AS action_attribute_type,\n FIRST(slc.action_attribute_value) AS action_attribute_value,\n slc.app_key AS app_key,\n slc.customer_email AS customer_email,\n sms.`to` AS customer_phone_number,\n slc.external_customer_id AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_loyalty_campaigns slc\n INNER JOIN shopify_orders AS o \n ON slc.order_id = o.order_id AND slc.user_id = o.smsbump_user_id\n INNER JOIN shopify_customers AS c\n ON o.customer_id = c.customer_id AND c.smsbump_user_id = slc.user_id\n INNER JOIN sms\n ON sms.campaign_id = slc.campaign_id AND sms.user_id = slc.user_id\n AND (sms.`to` = o.phone_formatted OR sms.`to` = c.phone_formatted)\n GROUP BY slc.synergy_id, slc.app_key, slc.customer_email, sms.`to`, slc.external_customer_id, sms.source_id, slc.action_type, slc.action_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}, {"name": "sms_stg__orders", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}, {"name": "sms_stg__apicalls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi", "model.yoda.sms_stg__orders", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__apicalls"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.sql", "compiled": true, "compiled_code": "WITH sms_loyalty_campaigns AS (\n SELECT \n campaign_id,\n user_id,\n synergy_id,\n order_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_email,\n external_customer_id\n FROM dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi\n WHERE channel = 'sms'\n), shopify_orders AS (\n SELECT phone_formatted, phone, smsbump_user_id, order_id, customer_id\n FROM dev_dkruh1.sms_stg__orders\n), shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM dev_dkruh1.sms_stg__customers\n), sms AS (\n SELECT campaign_id, user_id, `to`, id AS source_id\n FROM dev_dkruh1.sms_stg__apicalls\n WHERE status = 'sent'\n), source AS (\n SELECT\n uuid() as id,\n slc.synergy_id AS synergy_id,\n 'campaign/sms' AS source_type,\n sms.source_id AS source_id,\n FIRST(slc.order_id) as order_id,\n slc.action_type AS action_type,\n slc.action_id AS action_id,\n FIRST(slc.action_attribute_type) AS action_attribute_type,\n FIRST(slc.action_attribute_value) AS action_attribute_value,\n slc.app_key AS app_key,\n slc.customer_email AS customer_email,\n sms.`to` AS customer_phone_number,\n slc.external_customer_id AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_loyalty_campaigns slc\n INNER JOIN shopify_orders AS o \n ON slc.order_id = o.order_id AND slc.user_id = o.smsbump_user_id\n INNER JOIN shopify_customers AS c\n ON o.customer_id = c.customer_id AND c.smsbump_user_id = slc.user_id\n INNER JOIN sms\n ON sms.campaign_id = slc.campaign_id AND sms.user_id = slc.user_id\n AND (sms.`to` = o.phone_formatted OR sms.`to` = c.phone_formatted)\n GROUP BY slc.synergy_id, slc.app_key, slc.customer_email, sms.`to`, slc.external_customer_id, sms.source_id, slc.action_type, slc.action_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.sql", "unique_id": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "alias": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "checksum": {"name": "sha256", "checksum": "3ad3abace64ef7b0a10582365cbb303efb755043e5164696959ab2058bfc30ae"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms campaigns sms kpi table for reward program campaign", "columns": {"id": {"name": "id", "description": "uuid method", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs file", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "campaigns/sms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "apicalls id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "new member", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "null value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "null value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "null value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082685.6124938, "relation_name": "dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "raw_code": "WITH loyalty_campaigns AS (\n SELECT user_id, store_id, campaign_id, synergy_id\n FROM {{ ref('sms_stg__sms_loyalty_campaigns') }}\n WHERE synergy_id = 112\n), shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM {{ ref('sms_stg__customers') }}\n), sms AS (\n SELECT campaign_id, user_id, `to`, id AS source_id, created\n FROM {{ ref('sms_stg__apicalls') }}\n WHERE `status` = 'sent'\n), loyalty_opt_customers AS (\n SELECT \n app_key,\n LAST(opted_in_at) AS opted_in_at,\n customer_external_id,\n LAST(customer_email) AS customer_email\n FROM {{ ref('loyalty__opted_in_customers') }}\n GROUP BY customer_external_id, app_key\n), sms_campaign_messages AS (\n SELECT\n FIRST(slc.synergy_id) AS synergy_id,\n MAX(sms.created) AS sms_message_send,\n sms.source_id,\n FIRST(slc.store_id) AS store_id,\n FIRST(sms.`to`) AS customer_phone_number,\n FIRST(c.customer_id) AS customer_external_id\n FROM loyalty_campaigns slc\n INNER JOIN sms\n ON sms.campaign_id = slc.campaign_id AND sms.user_id = slc.user_id\n INNER JOIN shopify_customers AS c\n ON c.smsbump_user_id = slc.user_id AND c.phone_formatted = sms.`to`\n GROUP BY sms.source_id\n),\n\nsource (\n SELECT\n uuid() AS id,\n scm.synergy_id,\n 'campaign/sms' AS source_type,\n scm.source_id, \n BIGINT(NULL) AS order_id, \n 'new member' AS action_type, \n BIGINT(NULL) AS action_id, \n STRING(NULL) AS action_attribute_type, \n BIGINT(NULL) AS action_attribute_value,\n loc.app_key, \n loc.customer_email, \n scm.customer_phone_number,\n scm.customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_campaign_messages scm\n INNER JOIN loyalty_opt_customers AS loc \n ON loc.app_key = scm.store_id\n AND loc.customer_external_id = scm.customer_external_id\n AND scm.sms_message_send < loc.opted_in_at\n GROUP BY scm.synergy_id, loc.app_key, loc.customer_email, scm.customer_phone_number, scm.customer_external_id, scm.source_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}, {"name": "sms_stg__apicalls", "package": null, "version": null}, {"name": "loyalty__opted_in_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__apicalls", "model.yoda.loyalty__opted_in_customers"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.sql", "compiled": true, "compiled_code": "WITH loyalty_campaigns AS (\n SELECT user_id, store_id, campaign_id, synergy_id\n FROM dev_dkruh1.sms_stg__sms_loyalty_campaigns\n WHERE synergy_id = 112\n), shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM dev_dkruh1.sms_stg__customers\n), sms AS (\n SELECT campaign_id, user_id, `to`, id AS source_id, created\n FROM dev_dkruh1.sms_stg__apicalls\n WHERE `status` = 'sent'\n), loyalty_opt_customers AS (\n SELECT \n app_key,\n LAST(opted_in_at) AS opted_in_at,\n customer_external_id,\n LAST(customer_email) AS customer_email\n FROM dev_dkruh1.loyalty__opted_in_customers\n GROUP BY customer_external_id, app_key\n), sms_campaign_messages AS (\n SELECT\n FIRST(slc.synergy_id) AS synergy_id,\n MAX(sms.created) AS sms_message_send,\n sms.source_id,\n FIRST(slc.store_id) AS store_id,\n FIRST(sms.`to`) AS customer_phone_number,\n FIRST(c.customer_id) AS customer_external_id\n FROM loyalty_campaigns slc\n INNER JOIN sms\n ON sms.campaign_id = slc.campaign_id AND sms.user_id = slc.user_id\n INNER JOIN shopify_customers AS c\n ON c.smsbump_user_id = slc.user_id AND c.phone_formatted = sms.`to`\n GROUP BY sms.source_id\n),\n\nsource (\n SELECT\n uuid() AS id,\n scm.synergy_id,\n 'campaign/sms' AS source_type,\n scm.source_id, \n BIGINT(NULL) AS order_id, \n 'new member' AS action_type, \n BIGINT(NULL) AS action_id, \n STRING(NULL) AS action_attribute_type, \n BIGINT(NULL) AS action_attribute_value,\n loc.app_key, \n loc.customer_email, \n scm.customer_phone_number,\n scm.customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_campaign_messages scm\n INNER JOIN loyalty_opt_customers AS loc \n ON loc.app_key = scm.store_id\n AND loc.customer_external_id = scm.customer_external_id\n AND scm.sms_message_send < loc.opted_in_at\n GROUP BY scm.synergy_id, loc.app_key, loc.customer_email, scm.customer_phone_number, scm.customer_external_id, scm.source_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__loyalty_sms_flows_email_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__loyalty_sms_flows_email_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.sql", "unique_id": "model.yoda.sms__loyalty_sms_flows_email_kpi", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_email_kpi", "sms__loyalty_sms_flows_email_kpi"], "alias": "sms__loyalty_sms_flows_email_kpi", "checksum": {"name": "sha256", "checksum": "3cdd8b4a4f15f9d5d8aa631661e969eb861e4762c8bd8d4009e98586b8ec2887"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "loyalty sms flows email kpi table", "columns": {"id": {"name": "id", "description": "uuid function", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "flows/emmail", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "email reference id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "shopify order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "redemption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "redemption id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "points value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082685.7109804, "relation_name": "dev_dkruh1.sms__loyalty_sms_flows_email_kpi", "raw_code": "{% set order_create_deadline = '8' %}\n\nWITH sms_loyalty_flows_orders AS (\n SELECT \n order_created,\n flow_id,\n synergy_id,\n order_id,\n action_type, \n action_id, \n action_attribute_type, \n action_attribute_value,\n app_key,\n customer_email, \n customer_phone_number,\n customer_external_id \n FROM {{ ref('sms_stg__sms_loyalty_flows_kpi') }}\n), emails AS (\n SELECT context_reference_id, context_store_id, context_source_id, email_address, timestamp\n FROM {{ ref('email_stg__system_email_events') }}\n WHERE event_type = 'DELIVERED' AND context_source_name = 'communication_flows'\n), source AS (\n SELECT\n uuid() AS id,\n MAX(slfo.synergy_id) AS synergy_id,\n 'flow/email' AS source_type,\n see.context_reference_id AS source_id,\n FIRST(slfo.order_id) AS order_id,\n FIRST(slfo.action_type) AS action_type,\n FIRST(slfo.action_id) AS action_id,\n MAX(slfo.action_attribute_type) AS action_attribute_type,\n MAX(slfo.action_attribute_value) AS action_attribute_value,\n FIRST(slfo.app_key) AS app_key,\n FIRST(slfo.customer_email) AS customer_email,\n FIRST(slfo.customer_phone_number) AS customer_phone_number,\n FIRST(slfo.customer_external_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_loyalty_flows_orders AS slfo\n INNER JOIN emails AS see\n ON see.context_store_id = slfo.app_key\n AND see.context_source_id = slfo.flow_id\n AND see.email_address = slfo.customer_email\n AND DATEDIFF(slfo.order_created, see.timestamp) < {{order_create_deadline}} AND slfo.order_created > see.timestamp\n GROUP BY see.context_reference_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_flows_kpi", "package": null, "version": null}, {"name": "email_stg__system_email_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_loyalty_flows_kpi", "model.yoda.email_stg__system_email_events"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.sql", "compiled": true, "compiled_code": "\n\nWITH sms_loyalty_flows_orders AS (\n SELECT \n order_created,\n flow_id,\n synergy_id,\n order_id,\n action_type, \n action_id, \n action_attribute_type, \n action_attribute_value,\n app_key,\n customer_email, \n customer_phone_number,\n customer_external_id \n FROM dev_dkruh1.sms_stg__sms_loyalty_flows_kpi\n), emails AS (\n SELECT context_reference_id, context_store_id, context_source_id, email_address, timestamp\n FROM dev_dkruh1.email_stg__system_email_events\n WHERE event_type = 'DELIVERED' AND context_source_name = 'communication_flows'\n), source AS (\n SELECT\n uuid() AS id,\n MAX(slfo.synergy_id) AS synergy_id,\n 'flow/email' AS source_type,\n see.context_reference_id AS source_id,\n FIRST(slfo.order_id) AS order_id,\n FIRST(slfo.action_type) AS action_type,\n FIRST(slfo.action_id) AS action_id,\n MAX(slfo.action_attribute_type) AS action_attribute_type,\n MAX(slfo.action_attribute_value) AS action_attribute_value,\n FIRST(slfo.app_key) AS app_key,\n FIRST(slfo.customer_email) AS customer_email,\n FIRST(slfo.customer_phone_number) AS customer_phone_number,\n FIRST(slfo.customer_external_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_loyalty_flows_orders AS slfo\n INNER JOIN emails AS see\n ON see.context_store_id = slfo.app_key\n AND see.context_source_id = slfo.flow_id\n AND see.email_address = slfo.customer_email\n AND DATEDIFF(slfo.order_created, see.timestamp) < 8 AND slfo.order_created > see.timestamp\n GROUP BY see.context_reference_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__loyalty_sms_flows_sms_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__loyalty_sms_flows_sms_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.sql", "unique_id": "model.yoda.sms__loyalty_sms_flows_sms_kpi", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "sms__loyalty_sms_flows_sms_kpi"], "alias": "sms__loyalty_sms_flows_sms_kpi", "checksum": {"name": "sha256", "checksum": "95fcde03070ef9d522d5b980474b7aaaa4f24f2f196cff6654b4d2af32f08259"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "loyalty sms flows sms kpi table", "columns": {"id": {"name": "id", "description": "uuid function", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs file", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "flow/sms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "sms apicalls id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "redemption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "redemption id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "points value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082685.8028574, "relation_name": "dev_dkruh1.sms__loyalty_sms_flows_sms_kpi", "raw_code": "WITH sms_loyalty_flows_orders AS (\n SELECT \n order_created,\n flow_id,\n user_id,\n synergy_id,\n order_id,\n action_type, \n action_id, \n action_attribute_type, \n action_attribute_value,\n app_key,\n customer_email, \n customer_phone_number,\n customer_external_id \n FROM {{ ref('sms_stg__sms_loyalty_flows_kpi') }}\n), sms AS (\n SELECT id, user_id, flow_id, `to`, created\n FROM {{ ref('sms_stg__apicalls') }} \n WHERE status = 'sent'\n), source AS (\n SELECT\n uuid() AS id,\n MAX(slfo.synergy_id) AS synergy_id,\n 'flow/sms' AS source_type,\n a.id AS source_id,\n FIRST(slfo.order_id) AS order_id,\n slfo.action_type AS action_type,\n slfo.action_id AS action_id,\n MAX(slfo.action_attribute_type) AS action_attribute_type,\n MAX(slfo.action_attribute_value) AS action_attribute_value,\n slfo.app_key AS app_key,\n slfo.customer_email AS customer_email,\n slfo.customer_phone_number AS customer_phone_number,\n slfo.customer_external_id AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_loyalty_flows_orders AS slfo\n INNER JOIN sms AS a\n ON a.user_id = slfo.user_id\n AND a.flow_id = slfo.flow_id\n AND a.`to` = slfo.customer_phone_number\n AND slfo.order_created > a.created\n {# GROUP BY slfo.order_id #}\n GROUP BY a.id, slfo.app_key, slfo.customer_email, slfo.customer_phone_number, slfo.customer_external_id, slfo.action_type, slfo.action_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_flows_kpi", "package": null, "version": null}, {"name": "sms_stg__apicalls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_loyalty_flows_kpi", "model.yoda.sms_stg__apicalls"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.sql", "compiled": true, "compiled_code": "WITH sms_loyalty_flows_orders AS (\n SELECT \n order_created,\n flow_id,\n user_id,\n synergy_id,\n order_id,\n action_type, \n action_id, \n action_attribute_type, \n action_attribute_value,\n app_key,\n customer_email, \n customer_phone_number,\n customer_external_id \n FROM dev_dkruh1.sms_stg__sms_loyalty_flows_kpi\n), sms AS (\n SELECT id, user_id, flow_id, `to`, created\n FROM dev_dkruh1.sms_stg__apicalls \n WHERE status = 'sent'\n), source AS (\n SELECT\n uuid() AS id,\n MAX(slfo.synergy_id) AS synergy_id,\n 'flow/sms' AS source_type,\n a.id AS source_id,\n FIRST(slfo.order_id) AS order_id,\n slfo.action_type AS action_type,\n slfo.action_id AS action_id,\n MAX(slfo.action_attribute_type) AS action_attribute_type,\n MAX(slfo.action_attribute_value) AS action_attribute_value,\n slfo.app_key AS app_key,\n slfo.customer_email AS customer_email,\n slfo.customer_phone_number AS customer_phone_number,\n slfo.customer_external_id AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_loyalty_flows_orders AS slfo\n INNER JOIN sms AS a\n ON a.user_id = slfo.user_id\n AND a.flow_id = slfo.flow_id\n AND a.`to` = slfo.customer_phone_number\n AND slfo.order_created > a.created\n \n GROUP BY a.id, slfo.app_key, slfo.customer_email, slfo.customer_phone_number, slfo.customer_external_id, slfo.action_type, slfo.action_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__multipass_login_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__multipass_login_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.sql", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.sql", "unique_id": "model.yoda.sms__multipass_login_kpi", "fqn": ["yoda", "sms", "marts", "sms__multipass_login_kpi", "sms__multipass_login_kpi"], "alias": "sms__multipass_login_kpi", "checksum": {"name": "sha256", "checksum": "3c7b50cddc2f42c4363d75d68c6163a593622c93cbeafc5518b49322745c69c9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "anikolov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "Seamless Shopify login (for Loyalty)", "columns": {"id": {"name": "id", "description": "uuid", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "145", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "SMS campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "SMS message id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "login into store account / new member", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "App key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "Customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "Customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "Customer external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "anikolov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "anikolov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082685.8996286, "relation_name": "dev_dkruh1.sms__multipass_login_kpi", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{% set timediff_account_creation = 60 %}\n\nWITH\nshopify_orders AS (\n SELECT phone_formatted, phone, smsbump_user_id, order_id, customer_id\n FROM {{ ref('sms_stg__orders') }}\n where smsbump_user_id = 471815\n), \nshopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM {{ ref('sms_stg__customers') }}\n where smsbump_user_id = 471815\n), \nshopify_customer_addresses AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM {{ ref('sms_stg__customers_addresses') }}\n where smsbump_user_id = 471815\n),\napi_calls AS (\n SELECT api_calls.`campaign_id`, api_calls.`user_id`, api_calls.`to`, api_calls.`id`, api_calls.created as sms_message_send,\n CASE\n WHEN (c.customer_id) IS NOT NULL\n THEN (c.customer_id)\n WHEN (o.customer_id) IS NOT NULL\n THEN (o.customer_id)\n WHEN (ca.customer_id) IS NOT NULL\n THEN (ca.customer_id)\n END AS customer_external_id\n from {{ ref('sms_stg__apicalls') }} as api_calls\n inner join {{ ref('sms_stg__campaigns') }} as camp on api_calls.campaign_id = camp.id\n LEFT JOIN shopify_customers AS c\n ON c.smsbump_user_id = api_calls.user_id AND c.phone_formatted = api_calls.`to`\n LEFT JOIN shopify_orders AS o \n ON api_calls.user_id = o.smsbump_user_id AND o.phone_formatted = api_calls.`to` AND c.phone IS NULL\n LEFT JOIN shopify_customer_addresses AS ca\n ON api_calls.user_id = ca.smsbump_user_id AND ca.phone_formatted = api_calls.`to` AND c.phone IS NULL AND o.phone IS NULL\n \n where camp.message like \"%{MultiPassLoginUrl}%\" and api_calls.status = 'sent'\n and (c.customer_id IS NOT NULL OR o.customer_id IS NOT NULL OR ca.customer_id IS NOT NULL)\n and api_calls.user_id = 471815\n), \nusers AS (\n SELECT u.`yotpo_app_key`, u.`id`, api_calls.campaign_id, api_calls.to, api_calls.id as sms_id, api_calls.sms_message_send, api_calls.customer_external_id\n from {{ ref('sms_stg__users') }} u\n inner join api_calls on api_calls.user_id = u.id\n where `yotpo_app_key` is not null and `yotpo_app_key` != ''\n), \nloyalty_opt_customers AS (\n SELECT \n loyalty_opt_customers.app_key,\n LAST(opted_in_at) AS opted_in_at,\n loyalty_opt_customers.customer_external_id,\n LAST(customer_email) AS customer_email,\n FIRST(u.id) as user_id,\n FIRST(u.to) as to,\n FIRST(u.sms_message_send) as sms_message_send,\n FIRST(u.campaign_id) as campaign_id,\n FIRST(u.sms_id) as sms_id\n FROM {{ ref('loyalty__opted_in_customers') }} as loyalty_opt_customers\n inner join users u on loyalty_opt_customers.app_key = u.yotpo_app_key and u.customer_external_id = loyalty_opt_customers.customer_external_id\n where u.sms_message_send < opted_in_at\n GROUP BY loyalty_opt_customers.customer_external_id, loyalty_opt_customers.app_key\n),\n\nlink_clicks AS (\n SELECT\n cc.user_id,\n loyalty_opt_customers.customer_external_id,\n loyalty_opt_customers.sms_id,\n loyalty_opt_customers.to,\n loyalty_opt_customers.app_key,\n loyalty_opt_customers.customer_email\n FROM {{ ref('sms_stg__link_clicks') }} cc\n inner join loyalty_opt_customers on loyalty_opt_customers.user_id = cc.user_id \n and loyalty_opt_customers.to = cc.number\n where cc.clicks_count > 0 \n and loyalty_opt_customers.opted_in_at >= \"2023-07-21\"\n and loyalty_opt_customers.sms_message_send < cc.created\n and cc.created < loyalty_opt_customers.opted_in_at\n and datediff(MINUTE, timestamp(loyalty_opt_customers.opted_in_at), timestamp(cc.created)) <= {{timediff_account_creation}}\n and loyalty_opt_customers.campaign_id = cc.campaign_id\n),\n\n\nsource AS (\n SELECT uuid() AS id, \n 145 as synergy_id,\n 'sms_campaign' as source_type,\n link_clicks.sms_id as source_id,\n BIGINT(NULL) as order_id,\n 'new member' as action_type,\n BIGINT(NULL) as action_id,\n STRING(NULL) as action_attribute_type,\n BIGINT(NULL) as action_attribute_value,\n link_clicks.app_key as app_key,\n link_clicks.customer_email as customer_email,\n link_clicks.to as customer_phone_number,\n link_clicks.customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM link_clicks \n \n GROUP by link_clicks.to, link_clicks.sms_id, app_key, link_clicks.customer_email, link_clicks.customer_external_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__orders", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}, {"name": "sms_stg__customers_addresses", "package": null, "version": null}, {"name": "sms_stg__apicalls", "package": null, "version": null}, {"name": "sms_stg__campaigns", "package": null, "version": null}, {"name": "sms_stg__users", "package": null, "version": null}, {"name": "loyalty__opted_in_customers", "package": null, "version": null}, {"name": "sms_stg__link_clicks", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__orders", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__customers_addresses", "model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__users", "model.yoda.loyalty__opted_in_customers", "model.yoda.sms_stg__link_clicks"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\nWITH\nshopify_orders AS (\n SELECT phone_formatted, phone, smsbump_user_id, order_id, customer_id\n FROM dev_dkruh1.sms_stg__orders\n where smsbump_user_id = 471815\n), \nshopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM dev_dkruh1.sms_stg__customers\n where smsbump_user_id = 471815\n), \nshopify_customer_addresses AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id\n FROM dev_dkruh1.sms_stg__customers_addresses\n where smsbump_user_id = 471815\n),\napi_calls AS (\n SELECT api_calls.`campaign_id`, api_calls.`user_id`, api_calls.`to`, api_calls.`id`, api_calls.created as sms_message_send,\n CASE\n WHEN (c.customer_id) IS NOT NULL\n THEN (c.customer_id)\n WHEN (o.customer_id) IS NOT NULL\n THEN (o.customer_id)\n WHEN (ca.customer_id) IS NOT NULL\n THEN (ca.customer_id)\n END AS customer_external_id\n from dev_dkruh1.sms_stg__apicalls as api_calls\n inner join dev_dkruh1.sms_stg__campaigns as camp on api_calls.campaign_id = camp.id\n LEFT JOIN shopify_customers AS c\n ON c.smsbump_user_id = api_calls.user_id AND c.phone_formatted = api_calls.`to`\n LEFT JOIN shopify_orders AS o \n ON api_calls.user_id = o.smsbump_user_id AND o.phone_formatted = api_calls.`to` AND c.phone IS NULL\n LEFT JOIN shopify_customer_addresses AS ca\n ON api_calls.user_id = ca.smsbump_user_id AND ca.phone_formatted = api_calls.`to` AND c.phone IS NULL AND o.phone IS NULL\n \n where camp.message like \"%{MultiPassLoginUrl}%\" and api_calls.status = 'sent'\n and (c.customer_id IS NOT NULL OR o.customer_id IS NOT NULL OR ca.customer_id IS NOT NULL)\n and api_calls.user_id = 471815\n), \nusers AS (\n SELECT u.`yotpo_app_key`, u.`id`, api_calls.campaign_id, api_calls.to, api_calls.id as sms_id, api_calls.sms_message_send, api_calls.customer_external_id\n from dev_dkruh1.sms_stg__users u\n inner join api_calls on api_calls.user_id = u.id\n where `yotpo_app_key` is not null and `yotpo_app_key` != ''\n), \nloyalty_opt_customers AS (\n SELECT \n loyalty_opt_customers.app_key,\n LAST(opted_in_at) AS opted_in_at,\n loyalty_opt_customers.customer_external_id,\n LAST(customer_email) AS customer_email,\n FIRST(u.id) as user_id,\n FIRST(u.to) as to,\n FIRST(u.sms_message_send) as sms_message_send,\n FIRST(u.campaign_id) as campaign_id,\n FIRST(u.sms_id) as sms_id\n FROM dev_dkruh1.loyalty__opted_in_customers as loyalty_opt_customers\n inner join users u on loyalty_opt_customers.app_key = u.yotpo_app_key and u.customer_external_id = loyalty_opt_customers.customer_external_id\n where u.sms_message_send < opted_in_at\n GROUP BY loyalty_opt_customers.customer_external_id, loyalty_opt_customers.app_key\n),\n\nlink_clicks AS (\n SELECT\n cc.user_id,\n loyalty_opt_customers.customer_external_id,\n loyalty_opt_customers.sms_id,\n loyalty_opt_customers.to,\n loyalty_opt_customers.app_key,\n loyalty_opt_customers.customer_email\n FROM dev_dkruh1.sms_stg__link_clicks cc\n inner join loyalty_opt_customers on loyalty_opt_customers.user_id = cc.user_id \n and loyalty_opt_customers.to = cc.number\n where cc.clicks_count > 0 \n and loyalty_opt_customers.opted_in_at >= \"2023-07-21\"\n and loyalty_opt_customers.sms_message_send < cc.created\n and cc.created < loyalty_opt_customers.opted_in_at\n and datediff(MINUTE, timestamp(loyalty_opt_customers.opted_in_at), timestamp(cc.created)) <= 60\n and loyalty_opt_customers.campaign_id = cc.campaign_id\n),\n\n\nsource AS (\n SELECT uuid() AS id, \n 145 as synergy_id,\n 'sms_campaign' as source_type,\n link_clicks.sms_id as source_id,\n BIGINT(NULL) as order_id,\n 'new member' as action_type,\n BIGINT(NULL) as action_id,\n STRING(NULL) as action_attribute_type,\n BIGINT(NULL) as action_attribute_value,\n link_clicks.app_key as app_key,\n link_clicks.customer_email as customer_email,\n link_clicks.to as customer_phone_number,\n link_clicks.customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at \n FROM link_clicks \n \n GROUP by link_clicks.to, link_clicks.sms_id, app_key, link_clicks.customer_email, link_clicks.customer_external_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__reviews_sms_flows_email_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__reviews_sms_flows_email_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.sql", "unique_id": "model.yoda.sms__reviews_sms_flows_email_kpi", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "sms__reviews_sms_flows_email_kpi"], "alias": "sms__reviews_sms_flows_email_kpi", "checksum": {"name": "sha256", "checksum": "9ce9205076ca20985254b0e9bc1fa947048b871b95505931aa7b19f4025d5ea6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "reviews sms flows email kpi table", "columns": {"id": {"name": "id", "description": "uuid function", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google doc file", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "flow/email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "email reference id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "shopify order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "review id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "rating", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "rating score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082685.9217956, "relation_name": "dev_dkruh1.sms__reviews_sms_flows_email_kpi", "raw_code": "{% set order_create_deadline = '8' %}\n\nWITH sms_reviews_flows AS (\n SELECT\n synergy_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_phone_number,\n customer_email,\n customer_external_id,\n\n review_token,\n flow_id,\n queue_id,\n user_id\n FROM {{ ref('sms_stg__sms_reviews_flows_kpi') }}\n), emails AS (\n SELECT context_reference_id, context_store_id, context_source_id, email_address, timestamp\n FROM {{ ref('email_stg__system_email_events') }}\n), prepare_source AS (\n SELECT\n uuid() AS id,\n srf.review_token,\n FIRST(srf.synergy_id) AS synergy_id,\n 'flow/email' AS source_type,\n LAST(emails.context_reference_id) AS source_id,\n BIGINT(NULL) AS order_id,\n FIRST(srf.action_type) AS action_type,\n FIRST(srf.action_id) AS action_id,\n FIRST(srf.action_attribute_type) AS action_attribute_type,\n FIRST(srf.action_attribute_value) AS action_attribute_value,\n FIRST(srf.app_key) AS app_key,\n FIRST(srf.customer_email) AS customer_email,\n FIRST(srf.customer_phone_number) AS customer_phone_number,\n FIRST(srf.customer_external_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_reviews_flows AS srf\n INNER JOIN emails\n ON emails.context_store_id = srf.app_key\n AND emails.context_source_id = srf.flow_id\n AND emails.email_address = srf.customer_email\n GROUP BY srf.review_token\n), source AS (\n SELECT\n id,\n synergy_id,\n source_type,\n source_id,\n order_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_email,\n customer_phone_number,\n customer_external_id,\n dwh_updated_at\n FROM prepare_source\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__sms_reviews_flows_kpi", "package": null, "version": null}, {"name": "email_stg__system_email_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_reviews_flows_kpi", "model.yoda.email_stg__system_email_events"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.sql", "compiled": true, "compiled_code": "\n\nWITH sms_reviews_flows AS (\n SELECT\n synergy_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_phone_number,\n customer_email,\n customer_external_id,\n\n review_token,\n flow_id,\n queue_id,\n user_id\n FROM dev_dkruh1.sms_stg__sms_reviews_flows_kpi\n), emails AS (\n SELECT context_reference_id, context_store_id, context_source_id, email_address, timestamp\n FROM dev_dkruh1.email_stg__system_email_events\n), prepare_source AS (\n SELECT\n uuid() AS id,\n srf.review_token,\n FIRST(srf.synergy_id) AS synergy_id,\n 'flow/email' AS source_type,\n LAST(emails.context_reference_id) AS source_id,\n BIGINT(NULL) AS order_id,\n FIRST(srf.action_type) AS action_type,\n FIRST(srf.action_id) AS action_id,\n FIRST(srf.action_attribute_type) AS action_attribute_type,\n FIRST(srf.action_attribute_value) AS action_attribute_value,\n FIRST(srf.app_key) AS app_key,\n FIRST(srf.customer_email) AS customer_email,\n FIRST(srf.customer_phone_number) AS customer_phone_number,\n FIRST(srf.customer_external_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_reviews_flows AS srf\n INNER JOIN emails\n ON emails.context_store_id = srf.app_key\n AND emails.context_source_id = srf.flow_id\n AND emails.email_address = srf.customer_email\n GROUP BY srf.review_token\n), source AS (\n SELECT\n id,\n synergy_id,\n source_type,\n source_id,\n order_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_email,\n customer_phone_number,\n customer_external_id,\n dwh_updated_at\n FROM prepare_source\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__reviews_sms_flows_sms_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__reviews_sms_flows_sms_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.sql", "unique_id": "model.yoda.sms__reviews_sms_flows_sms_kpi", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "sms__reviews_sms_flows_sms_kpi"], "alias": "sms__reviews_sms_flows_sms_kpi", "checksum": {"name": "sha256", "checksum": "005ea81338f01f2af742578bce122ec430d6d34d31639e52513e21c5b09027bf"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "reviews sms flows sms kpi table", "columns": {"id": {"name": "id", "description": "uuid function", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google doc file", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "flow/sms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "apicalls id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "shopify order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "review id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "rating", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "rating score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082686.0261815, "relation_name": "dev_dkruh1.sms__reviews_sms_flows_sms_kpi", "raw_code": "WITH sms_reviews_flows AS (\n SELECT\n synergy_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_phone_number,\n customer_email,\n customer_external_id,\n\n review_token,\n flow_id,\n queue_id,\n user_id\n FROM {{ ref('sms_stg__sms_reviews_flows_kpi') }}\n), sms AS (\n SELECT queue_id, user_id, `to`, flow_id, created, id\n FROM {{ ref('sms_stg__apicalls') }}\n WHERE status = 'sent'\n), prepare_source AS (\n SELECT\n uuid() AS id,\n srf.review_token,\n FIRST(srf.synergy_id) AS synergy_id,\n 'flow/sms' AS source_type,\n FIRST(sms.id) AS source_id,\n BIGINT(NULL) AS order_id,\n FIRST(srf.action_type) AS action_type,\n FIRST(srf.action_id) AS action_id,\n FIRST(srf.action_attribute_type) AS action_attribute_type,\n FIRST(srf.action_attribute_value) AS action_attribute_value,\n FIRST(srf.app_key) AS app_key,\n FIRST(srf.customer_email) AS customer_email,\n FIRST(srf.customer_phone_number) AS customer_phone_number,\n FIRST(srf.customer_external_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_reviews_flows AS srf\n INNER JOIN sms\n ON sms.queue_id = srf.queue_id\n AND sms.user_id = srf.user_id\n AND sms.flow_id = srf.flow_id\n AND sms.`to` = srf.customer_phone_number\n GROUP BY srf.review_token\n), source AS (\n SELECT\n id,\n synergy_id,\n source_type,\n source_id,\n order_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_email,\n customer_phone_number,\n customer_external_id,\n dwh_updated_at\n FROM prepare_source\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__sms_reviews_flows_kpi", "package": null, "version": null}, {"name": "sms_stg__apicalls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_reviews_flows_kpi", "model.yoda.sms_stg__apicalls"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.sql", "compiled": true, "compiled_code": "WITH sms_reviews_flows AS (\n SELECT\n synergy_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_phone_number,\n customer_email,\n customer_external_id,\n\n review_token,\n flow_id,\n queue_id,\n user_id\n FROM dev_dkruh1.sms_stg__sms_reviews_flows_kpi\n), sms AS (\n SELECT queue_id, user_id, `to`, flow_id, created, id\n FROM dev_dkruh1.sms_stg__apicalls\n WHERE status = 'sent'\n), prepare_source AS (\n SELECT\n uuid() AS id,\n srf.review_token,\n FIRST(srf.synergy_id) AS synergy_id,\n 'flow/sms' AS source_type,\n FIRST(sms.id) AS source_id,\n BIGINT(NULL) AS order_id,\n FIRST(srf.action_type) AS action_type,\n FIRST(srf.action_id) AS action_id,\n FIRST(srf.action_attribute_type) AS action_attribute_type,\n FIRST(srf.action_attribute_value) AS action_attribute_value,\n FIRST(srf.app_key) AS app_key,\n FIRST(srf.customer_email) AS customer_email,\n FIRST(srf.customer_phone_number) AS customer_phone_number,\n FIRST(srf.customer_external_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM sms_reviews_flows AS srf\n INNER JOIN sms\n ON sms.queue_id = srf.queue_id\n AND sms.user_id = srf.user_id\n AND sms.flow_id = srf.flow_id\n AND sms.`to` = srf.customer_phone_number\n GROUP BY srf.review_token\n), source AS (\n SELECT\n id,\n synergy_id,\n source_type,\n source_id,\n order_id,\n action_type,\n action_id,\n action_attribute_type,\n action_attribute_value,\n app_key,\n customer_email,\n customer_phone_number,\n customer_external_id,\n dwh_updated_at\n FROM prepare_source\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__sms_double_points_campaign_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__sms_double_points_campaign_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.sql", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.sql", "unique_id": "model.yoda.sms__sms_double_points_campaign_kpi", "fqn": ["yoda", "sms", "marts", "sms__sms_double_points_campaign_kpi", "sms__sms_double_points_campaign_kpi"], "alias": "sms__sms_double_points_campaign_kpi", "checksum": {"name": "sha256", "checksum": "d83e782676c43b094032bb9c1783740648bb3bae92f9caf931151412915f4c32"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "mario.hristev@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "Double points campaign kpi table", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_type": {"name": "source_type", "description": "sms_campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "sms id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "synergy_id": {"name": "synergy_id", "description": "synergy id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "mario.hristev@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "mario.hristev@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082686.1259282, "relation_name": "dev_dkruh1.sms__sms_double_points_campaign_kpi", "raw_code": "WITH loyalty_campaigns AS (\n SELECT user_id, store_id, campaign_id, synergy_id\n FROM {{ ref('sms_stg__sms_loyalty_campaigns') }}\n WHERE synergy_id = 510\n), shopify_analytics_orders AS (\n SELECT customer_id, order_id, user_id, campaign_id\n FROM {{ ref('sms_stg__shopify_analytics_orders') }}\n WHERE campaign_id in (SELECT campaign_id from loyalty_campaigns)\n), shopify_campaign_orders AS (\n SELECT sco.order_id, sco.phone, sco.channel, sco.campaign_id, sco.user_id, sao.customer_id\n FROM {{ ref('sms_stg__shopify_campaign_orders') }} AS sco\n INNER JOIN shopify_analytics_orders sao ON sao.order_id = sco.order_id AND sao.campaign_id = sco.campaign_id\n), shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id, email\n FROM {{ ref('sms_stg__customers') }}\n WHERE customer_id in (SELECT customer_id from shopify_campaign_orders)\n), sms AS (\n SELECT a.id as sms_id, a.campaign_id, a.`to` as phone, a.user_id, sc.customer_id as customer_external_id, sc.email as email\n FROM {{ ref('sms_stg__apicalls') }} AS a\n JOIN shopify_customers as sc on sc.phone_formatted = a.`to` and a.user_id = sc.smsbump_user_id\n WHERE campaign_id in (SELECT campaign_id from shopify_analytics_orders) AND a.status = 'sent'\n), loyalty_campaign_orders AS (\n SELECT \n FIRST(lc.user_id) AS user_id, \n FIRST(lc.store_id) AS store_id, \n FIRST(lc.campaign_id) AS campaign_id, \n FIRST(lc.synergy_id) AS synergy_id,\n FIRST(sco.customer_id) AS customer_id,\n sco.order_id AS order_id,\n FIRST(sco.phone) AS phone,\n FIRST(sco.channel) AS channel\n FROM loyalty_campaigns lc\n INNER JOIN shopify_campaign_orders sco\n ON sco.campaign_id = lc.campaign_id\n AND sco.user_id = lc.user_id\n GROUP BY sco.order_id\n), source (\n SELECT\n uuid() AS id, \n 'sms_campaign' as source_type,\n sms.sms_id AS source_id,\n LAST(lco.order_id) AS order_id,\n STRING(NULL) AS action_type,\n BIGINT(NULL) AS action_id, \n STRING(NULL) AS action_attribute_type,\n BIGINT(NULL) AS action_attribute_value,\n LAST(lco.store_id) AS app_key,\n LAST(sms.email) as customer_email,\n LAST(sms.phone) as customer_phone_number,\n LAST(lco.customer_id) as customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at,\n LAST(lco.synergy_id) AS synergy_id\n FROM loyalty_campaign_orders AS lco\n INNER JOIN sms on sms.campaign_id = lco.campaign_id\n and sms.customer_external_id = lco.customer_id\n GROUP BY sms.sms_id\n)\n\n\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns", "package": null, "version": null}, {"name": "sms_stg__shopify_analytics_orders", "package": null, "version": null}, {"name": "sms_stg__shopify_campaign_orders", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}, {"name": "sms_stg__apicalls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__shopify_campaign_orders", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__apicalls"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.sql", "compiled": true, "compiled_code": "WITH loyalty_campaigns AS (\n SELECT user_id, store_id, campaign_id, synergy_id\n FROM dev_dkruh1.sms_stg__sms_loyalty_campaigns\n WHERE synergy_id = 510\n), shopify_analytics_orders AS (\n SELECT customer_id, order_id, user_id, campaign_id\n FROM dev_dkruh1.sms_stg__shopify_analytics_orders\n WHERE campaign_id in (SELECT campaign_id from loyalty_campaigns)\n), shopify_campaign_orders AS (\n SELECT sco.order_id, sco.phone, sco.channel, sco.campaign_id, sco.user_id, sao.customer_id\n FROM dev_dkruh1.sms_stg__shopify_campaign_orders AS sco\n INNER JOIN shopify_analytics_orders sao ON sao.order_id = sco.order_id AND sao.campaign_id = sco.campaign_id\n), shopify_customers AS (\n SELECT phone_formatted, phone, smsbump_user_id, customer_id, email\n FROM dev_dkruh1.sms_stg__customers\n WHERE customer_id in (SELECT customer_id from shopify_campaign_orders)\n), sms AS (\n SELECT a.id as sms_id, a.campaign_id, a.`to` as phone, a.user_id, sc.customer_id as customer_external_id, sc.email as email\n FROM dev_dkruh1.sms_stg__apicalls AS a\n JOIN shopify_customers as sc on sc.phone_formatted = a.`to` and a.user_id = sc.smsbump_user_id\n WHERE campaign_id in (SELECT campaign_id from shopify_analytics_orders) AND a.status = 'sent'\n), loyalty_campaign_orders AS (\n SELECT \n FIRST(lc.user_id) AS user_id, \n FIRST(lc.store_id) AS store_id, \n FIRST(lc.campaign_id) AS campaign_id, \n FIRST(lc.synergy_id) AS synergy_id,\n FIRST(sco.customer_id) AS customer_id,\n sco.order_id AS order_id,\n FIRST(sco.phone) AS phone,\n FIRST(sco.channel) AS channel\n FROM loyalty_campaigns lc\n INNER JOIN shopify_campaign_orders sco\n ON sco.campaign_id = lc.campaign_id\n AND sco.user_id = lc.user_id\n GROUP BY sco.order_id\n), source (\n SELECT\n uuid() AS id, \n 'sms_campaign' as source_type,\n sms.sms_id AS source_id,\n LAST(lco.order_id) AS order_id,\n STRING(NULL) AS action_type,\n BIGINT(NULL) AS action_id, \n STRING(NULL) AS action_attribute_type,\n BIGINT(NULL) AS action_attribute_value,\n LAST(lco.store_id) AS app_key,\n LAST(sms.email) as customer_email,\n LAST(sms.phone) as customer_phone_number,\n LAST(lco.customer_id) as customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at,\n LAST(lco.synergy_id) AS synergy_id\n FROM loyalty_campaign_orders AS lco\n INNER JOIN sms on sms.campaign_id = lco.campaign_id\n and sms.customer_external_id = lco.customer_id\n GROUP BY sms.sms_id\n)\n\n\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__snowflake_sms_flows_reviews": {"database": null, "schema": "dev_dkruh1", "name": "sms__snowflake_sms_flows_reviews", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.sql", "original_file_path": "models/sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.sql", "unique_id": "model.yoda.sms__snowflake_sms_flows_reviews", "fqn": ["yoda", "sms", "marts", "sms__snowflake_sms_flows_reviews", "sms__snowflake_sms_flows_reviews"], "alias": "sms__snowflake_sms_flows_reviews", "checksum": {"name": "sha256", "checksum": "a789344d43c22e28934865e06ee2213a89eba9b90855d3e8fab78a9a06f76860"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms", "yoda_snowflake"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "sms_flows_reviews", "database": "YOTPO", "schema": "DEV", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_id": {"name": "review_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_created": {"name": "review_created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_prepare": {"name": "message_prepare", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sms_source": {"name": "sms_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "sms_flows_reviews", "database": "YOTPO", "schema": "DEV", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "sms_flows_reviews", "database": "YOTPO", "schema": "DEV", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082686.1557302, "relation_name": "dev_dkruh1.sms__snowflake_sms_flows_reviews", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('sms_stg__sms_flows_reviews') }}\n\n), snowflake_sms_flows_reviews AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(flow_id as bigint),\n\t\tcast(review_id as bigint),\n\t\tcast(review_created as timestamp),\n\t\tcast(message_prepare as timestamp),\n\t\tcast(sms_source as string)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_sms_flows_reviews", "language": "sql", "refs": [{"name": "sms_stg__sms_flows_reviews", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_flows_reviews"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.sms_stg__sms_flows_reviews\n\n), snowflake_sms_flows_reviews AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(flow_id as bigint),\n\t\tcast(review_id as bigint),\n\t\tcast(review_created as timestamp),\n\t\tcast(message_prepare as timestamp),\n\t\tcast(sms_source as string)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_sms_flows_reviews", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__social_proof_flows_email_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__social_proof_flows_email_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.sql", "unique_id": "model.yoda.sms__social_proof_flows_email_kpi", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_email_kpi", "sms__social_proof_flows_email_kpi"], "alias": "sms__social_proof_flows_email_kpi", "checksum": {"name": "sha256", "checksum": "7da46c630c30c3353af16fdf52dcf9198e9f007eed3ad05c4753293c105b80d9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "abandoned checkout social proof star rating flows email kpi table", "columns": {"id": {"name": "id", "description": "uuid function", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs file", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "flow/email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "email reference id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "shopify order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082686.1786754, "relation_name": "dev_dkruh1.sms__social_proof_flows_email_kpi", "raw_code": "{% set order_create_deadline = '8' %}\n\nWITH emails AS (\n SELECT context_store_id, context_source_id, email_address, timestamp, context_reference_id\n FROM {{ ref('email_stg__system_email_events') }}\n WHERE event_type = 'DELIVERED'\n AND context_source_name = 'communication_flows'\n), source (\n SELECT \n uuid() AS id,\n FIRST(spfk.synergy_id) AS synergy_id,\n 'flow/email' AS source_type,\n emails.context_reference_id AS source_id,\n FIRST(spfk.order_id) AS order_id,\n STRING(NULL) AS action_type, \n BIGINT(NULL) AS action_id, \n STRING(NULL) AS action_attribute_type, \n BIGINT(NULL) AS action_attribute_value,\n FIRST(spfk.store_id) AS app_key,\n FIRST(spfk.customer_email) AS customer_email,\n FIRST(spfk.customer_phone_number) AS customer_phone_number,\n FIRST(spfk.customer_external_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM {{ ref('sms_stg__social_proof_flows_kpi') }} AS spfk\n INNER JOIN emails\n ON emails.context_store_id = spfk.store_id\n AND emails.context_source_id = spfk.flow_id\n AND emails.email_address = spfk.customer_email\n AND DATEDIFF(spfk.order_created, emails.timestamp) < {{order_create_deadline}} AND spfk.order_created > emails.timestamp\n GROUP BY emails.context_reference_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "email_stg__system_email_events", "package": null, "version": null}, {"name": "sms_stg__social_proof_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.email_stg__system_email_events", "model.yoda.sms_stg__social_proof_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.sql", "compiled": true, "compiled_code": "\n\nWITH emails AS (\n SELECT context_store_id, context_source_id, email_address, timestamp, context_reference_id\n FROM dev_dkruh1.email_stg__system_email_events\n WHERE event_type = 'DELIVERED'\n AND context_source_name = 'communication_flows'\n), source (\n SELECT \n uuid() AS id,\n FIRST(spfk.synergy_id) AS synergy_id,\n 'flow/email' AS source_type,\n emails.context_reference_id AS source_id,\n FIRST(spfk.order_id) AS order_id,\n STRING(NULL) AS action_type, \n BIGINT(NULL) AS action_id, \n STRING(NULL) AS action_attribute_type, \n BIGINT(NULL) AS action_attribute_value,\n FIRST(spfk.store_id) AS app_key,\n FIRST(spfk.customer_email) AS customer_email,\n FIRST(spfk.customer_phone_number) AS customer_phone_number,\n FIRST(spfk.customer_external_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms_stg__social_proof_flows_kpi AS spfk\n INNER JOIN emails\n ON emails.context_store_id = spfk.store_id\n AND emails.context_source_id = spfk.flow_id\n AND emails.email_address = spfk.customer_email\n AND DATEDIFF(spfk.order_created, emails.timestamp) < 8 AND spfk.order_created > emails.timestamp\n GROUP BY emails.context_reference_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms__social_proof_flows_sms_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms__social_proof_flows_sms_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.sql", "unique_id": "model.yoda.sms__social_proof_flows_sms_kpi", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "sms__social_proof_flows_sms_kpi"], "alias": "sms__social_proof_flows_sms_kpi", "checksum": {"name": "sha256", "checksum": "4c632bd5749a7e913182de882e6eaf69e53bf35a0bec009af3089af24b49a1af"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "abandoned checkout social proof star rating flows sms kpi table", "columns": {"id": {"name": "id", "description": "uuid function", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs file", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "flow/sms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "apicalls id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "shopify order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "current timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082686.2855651, "relation_name": "dev_dkruh1.sms__social_proof_flows_sms_kpi", "raw_code": "WITH sms AS (\n SELECT flow_id, user_id, `to`, created, id\n FROM {{ ref('sms_stg__apicalls') }}\n WHERE status = 'sent'\n), source AS (\n SELECT \n uuid() AS id,\n FIRST(spfk.synergy_id) AS synergy_id,\n 'flow/sms' AS source_type,\n sms.id AS source_id,\n FIRST(spfk.order_id) AS order_id,\n STRING(NULL) AS action_type, \n BIGINT(NULL) AS action_id, \n STRING(NULL) AS action_attribute_type, \n BIGINT(NULL) AS action_attribute_value,\n FIRST(spfk.store_id) AS app_key,\n FIRST(spfk.customer_email) AS customer_email,\n FIRST(spfk.customer_phone_number) AS customer_phone_number,\n FIRST(spfk.customer_external_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM {{ ref('sms_stg__social_proof_flows_kpi') }} AS spfk\n INNER JOIN sms\n ON spfk.flow_id = sms.flow_id\n AND spfk.user_id = sms.user_id\n AND spfk.customer_phone_number = sms.`to`\n AND spfk.order_created > sms.created\n GROUP BY sms.id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__apicalls", "package": null, "version": null}, {"name": "sms_stg__social_proof_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__social_proof_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.sql", "compiled": true, "compiled_code": "WITH sms AS (\n SELECT flow_id, user_id, `to`, created, id\n FROM dev_dkruh1.sms_stg__apicalls\n WHERE status = 'sent'\n), source AS (\n SELECT \n uuid() AS id,\n FIRST(spfk.synergy_id) AS synergy_id,\n 'flow/sms' AS source_type,\n sms.id AS source_id,\n FIRST(spfk.order_id) AS order_id,\n STRING(NULL) AS action_type, \n BIGINT(NULL) AS action_id, \n STRING(NULL) AS action_attribute_type, \n BIGINT(NULL) AS action_attribute_value,\n FIRST(spfk.store_id) AS app_key,\n FIRST(spfk.customer_email) AS customer_email,\n FIRST(spfk.customer_phone_number) AS customer_phone_number,\n FIRST(spfk.customer_external_id) AS customer_external_id,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM dev_dkruh1.sms_stg__social_proof_flows_kpi AS spfk\n INNER JOIN sms\n ON spfk.flow_id = sms.flow_id\n AND spfk.user_id = sms.user_id\n AND spfk.customer_phone_number = sms.`to`\n AND spfk.order_created > sms.created\n GROUP BY sms.id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__apicalls": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__apicalls", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.sql", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.sql", "unique_id": "model.yoda.sms_stg__apicalls", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__apicalls", "sms_stg__apicalls"], "alias": "sms_stg__apicalls", "checksum": {"name": "sha256", "checksum": "f4617533f2b57a55361120c897ea693edb854941650bbdcff48946928ab8cb02"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms_stg__apicalls", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "request_id": {"name": "request_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "queue_id": {"name": "queue_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_id": {"name": "app_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "apikey": {"name": "apikey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from": {"name": "from", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "to": {"name": "to", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "media": {"name": "media", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "spot_user_balance": {"name": "spot_user_balance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "vendor_name_used": {"name": "vendor_name_used", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price_billed": {"name": "price_billed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_vendor_cost": {"name": "price_vendor_cost", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "parts": {"name": "parts", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_currency": {"name": "price_currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "method": {"name": "method", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_id_int": {"name": "message_id_int", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_uuid": {"name": "message_uuid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip": {"name": "ip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip_forward": {"name": "ip_forward", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referer": {"name": "referer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sender_type": {"name": "sender_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_iso": {"name": "country_iso", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_notification_type": {"name": "message_notification_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.3834155, "relation_name": "dev_dkruh1.sms_stg__apicalls", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'apicalls') }}\n\n), sms_stg__apicalls AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\trequest_id,\n\t\tqueue_id,\n\t\tapp_id,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tapikey,\n\t\tfrom,\n\t\tto,\n\t\ttype,\n\t\tstatus,\n\t\tplatform,\n\t\tmedia,\n\t\tspot_user_balance,\n\t\tvendor_name_used,\n\t\tprice_billed,\n\t\tprice_vendor_cost,\n\t\tparts,\n\t\tprice_currency,\n\t\tmethod,\n\t\tmessage_id,\n\t\tmessage_id_int,\n\t\tmessage_uuid,\n\t\tip,\n\t\tip_forward,\n\t\treferer,\n\t\tmessage,\n\t\tsender_type,\n\t\tcountry_iso,\n\t\tmessage_notification_type,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__apicalls", "language": "sql", "refs": [], "sources": [["sms__sms", "apicalls"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.apicalls"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.apicalls\n\n), sms_stg__apicalls AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\trequest_id,\n\t\tqueue_id,\n\t\tapp_id,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tapikey,\n\t\tfrom,\n\t\tto,\n\t\ttype,\n\t\tstatus,\n\t\tplatform,\n\t\tmedia,\n\t\tspot_user_balance,\n\t\tvendor_name_used,\n\t\tprice_billed,\n\t\tprice_vendor_cost,\n\t\tparts,\n\t\tprice_currency,\n\t\tmethod,\n\t\tmessage_id,\n\t\tmessage_id_int,\n\t\tmessage_uuid,\n\t\tip,\n\t\tip_forward,\n\t\treferer,\n\t\tmessage,\n\t\tsender_type,\n\t\tcountry_iso,\n\t\tmessage_notification_type,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__apicalls", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__bigcommerce_users": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__bigcommerce_users", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.sql", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.sql", "unique_id": "model.yoda.sms_stg__bigcommerce_users", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__bigcommerce_users", "sms_stg__bigcommerce_users"], "alias": "sms_stg__bigcommerce_users", "checksum": {"name": "sha256", "checksum": "f35c09f2d51ab67f0932130e56a1f3dc59834edb1324225cab1364395a761af6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms_stg__bigcommerce_users", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store": {"name": "store", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_hash": {"name": "store_hash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "access_token": {"name": "access_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_data": {"name": "shop_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_data": {"name": "app_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_level": {"name": "plan_level", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_reload": {"name": "auto_reload", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_threshold": {"name": "auto_reload_threshold", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_amount": {"name": "auto_reload_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_cap": {"name": "auto_reload_cap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abandoned_checkouts_sent": {"name": "abandoned_checkouts_sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "connected": {"name": "connected", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_enabled": {"name": "sync_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes": {"name": "notes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pinned_navigation": {"name": "pinned_navigation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.4158483, "relation_name": "dev_dkruh1.sms_stg__bigcommerce_users", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'bigcommerce_users') }}\n\n), sms_stg__bigcommerce_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore,\n\t\tdomain,\n\t\tstore_hash,\n\t\taccess_token,\n\t\tshop_data,\n\t\tapp_data,\n\t\tuser_id,\n\t\tplan_name,\n\t\tplan_level,\n\t\tauto_reload,\n\t\tauto_reload_threshold,\n\t\tauto_reload_amount,\n\t\tauto_reload_cap,\n\t\tabandoned_checkouts_sent,\n\t\tconnected,\n\t\tsync_enabled,\n\t\tnotes,\n\t\tpinned_navigation,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__bigcommerce_users", "language": "sql", "refs": [], "sources": [["sms__sms", "bigcommerce_users"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.bigcommerce_users"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.bigcommerce_users\n\n), sms_stg__bigcommerce_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore,\n\t\tdomain,\n\t\tstore_hash,\n\t\taccess_token,\n\t\tshop_data,\n\t\tapp_data,\n\t\tuser_id,\n\t\tplan_name,\n\t\tplan_level,\n\t\tauto_reload,\n\t\tauto_reload_threshold,\n\t\tauto_reload_amount,\n\t\tauto_reload_cap,\n\t\tabandoned_checkouts_sent,\n\t\tconnected,\n\t\tsync_enabled,\n\t\tnotes,\n\t\tpinned_navigation,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__bigcommerce_users", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__campaign_lists": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__campaign_lists", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.sql", "original_file_path": "models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.sql", "unique_id": "model.yoda.sms_stg__campaign_lists", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__campaign_lists", "sms_stg__campaign_lists"], "alias": "sms_stg__campaign_lists", "checksum": {"name": "sha256", "checksum": "7d851800b114952b3d15938633624479b09d9efb81a04abe10e4ed10e55d444e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "list_id": {"name": "list_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "exclude": {"name": "exclude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "scheduled": {"name": "scheduled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.4407938, "relation_name": "dev_dkruh1.sms_stg__campaign_lists", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'campaign_lists') }}\n\n), sms_stg__campaign_lists AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tlist_id,\n\t\texclude,\n\t\tscheduled\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__campaign_lists", "language": "sql", "refs": [], "sources": [["sms__sms", "campaign_lists"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.campaign_lists"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.campaign_lists\n\n), sms_stg__campaign_lists AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tlist_id,\n\t\texclude,\n\t\tscheduled\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__campaign_lists", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__campaign_relations": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__campaign_relations", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.sql", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.sql", "unique_id": "model.yoda.sms_stg__campaign_relations", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__campaign_relations", "sms_stg__campaign_relations"], "alias": "sms_stg__campaign_relations", "checksum": {"name": "sha256", "checksum": "47bc5b785b2613ffecf1eabfe36218ce3355975841b054b450e96e8e3b22b72a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "resource_id": {"name": "resource_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "resource_type": {"name": "resource_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.4636552, "relation_name": "dev_dkruh1.sms_stg__campaign_relations", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'campaign_relations') }}\n\n), sms_stg__campaign_relations AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tresource_id,\n\t\tresource_type,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__campaign_relations", "language": "sql", "refs": [], "sources": [["sms__sms", "campaign_relations"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.campaign_relations"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.campaign_relations\n\n), sms_stg__campaign_relations AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tresource_id,\n\t\tresource_type,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__campaign_relations", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__campaigns": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__campaigns", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.sql", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.sql", "unique_id": "model.yoda.sms_stg__campaigns", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__campaigns", "sms_stg__campaigns"], "alias": "sms_stg__campaigns", "checksum": {"name": "sha256", "checksum": "32858889d3891c33d7d3177fd1cdb2fec403967ec25ac5a5006b4cf09167bfbb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "list_id": {"name": "list_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_sent": {"name": "total_sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent": {"name": "sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_testing_id": {"name": "ab_testing_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "scheduled": {"name": "scheduled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "approved": {"name": "approved", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_repopulated": {"name": "is_repopulated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "request": {"name": "request", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.5022035, "relation_name": "dev_dkruh1.sms_stg__campaigns", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'campaigns') }}\n\n), sms_stg__campaigns AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\ttitle,\n\t\tmessage,\n\t\tlist_id,\n\t\ttotal_sent,\n\t\tsent,\n\t\tab_testing_id,\n\t\tscheduled,\n\t\tapproved,\n\t\tis_repopulated,\n\t\tstatus,\n\t\tchannel,\n\t\tcreated,\n\t\tmodified,\n\t\trequest,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__campaigns", "language": "sql", "refs": [], "sources": [["sms__sms", "campaigns"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.campaigns\n\n), sms_stg__campaigns AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\ttitle,\n\t\tmessage,\n\t\tlist_id,\n\t\ttotal_sent,\n\t\tsent,\n\t\tab_testing_id,\n\t\tscheduled,\n\t\tapproved,\n\t\tis_repopulated,\n\t\tstatus,\n\t\tchannel,\n\t\tcreated,\n\t\tmodified,\n\t\trequest,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__campaigns", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__comm_analytics_data": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__comm_analytics_data", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.sql", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.sql", "unique_id": "model.yoda.sms_stg__comm_analytics_data", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__comm_analytics_data", "sms_stg__comm_analytics_data"], "alias": "sms_stg__comm_analytics_data", "checksum": {"name": "sha256", "checksum": "527bd0c594e016668987ebf39e7fac38cf0f2af69ae4e3274b15f148639de235"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_status": {"name": "source_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_type": {"name": "source_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_source_type": {"name": "sub_source_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_trigger": {"name": "source_trigger", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_message": {"name": "source_message", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_source_id": {"name": "sub_source_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_name": {"name": "source_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_flow_id": {"name": "converted_flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_execution_date": {"name": "source_execution_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "source_creation_date": {"name": "source_creation_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "aggregation_date": {"name": "aggregation_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "total_unsubscribed": {"name": "total_unsubscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_sent": {"name": "total_sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_count": {"name": "message_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_spent": {"name": "total_spent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_clicks": {"name": "total_clicks", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_orders": {"name": "total_orders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_revenue": {"name": "total_revenue", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_subscriptions": {"name": "total_subscriptions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "total_active_subscriptions": {"name": "total_active_subscriptions", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_delivered": {"name": "total_delivered", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_processed": {"name": "total_processed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_open": {"name": "total_open", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_deferred": {"name": "total_deferred", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_spam": {"name": "total_spam", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_failed": {"name": "total_failed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_skipped": {"name": "total_skipped", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_smart_sending": {"name": "total_smart_sending", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_restricted": {"name": "total_restricted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_suppressed": {"name": "total_suppressed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_bounce": {"name": "total_bounce", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_soft_bounce": {"name": "total_soft_bounce", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_hard_bounce": {"name": "total_hard_bounce", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_drop": {"name": "total_drop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transactional_messages": {"name": "transactional_messages", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketing_messages": {"name": "marketing_messages", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.5424304, "relation_name": "dev_dkruh1.sms_stg__comm_analytics_data", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__communication', 'comm_analytics_data') }}\n\n), sms_stg__comm_analytics_data AS (\n\n SELECT \n\t\tstore_id,\n\t\tchannel,\n\t\tsource_status,\n\t\tsource_type,\n\t\tsource_id,\n\t\tsub_source_type,\n\t\tsource_trigger,\n\t\tsource_message,\n\t\tsub_source_id,\n\t\tsource_name,\n\t\tconverted_flow_id,\n\t\tsource_execution_date,\n\t\tsource_creation_date,\n\t\taggregation_date,\n\t\ttotal_unsubscribed,\n\t\ttotal_sent,\n\t\tmessage_count,\n\t\ttotal_spent,\n\t\ttotal_clicks,\n\t\ttotal_orders,\n\t\ttotal_revenue,\n\t\ttotal_subscriptions,\n\t\ttotal_active_subscriptions,\n\t\ttotal_delivered,\n\t\ttotal_processed,\n\t\ttotal_open,\n\t\ttotal_deferred,\n\t\ttotal_spam,\n\t\ttotal_failed,\n\t\ttotal_skipped,\n\t\ttotal_smart_sending,\n\t\ttotal_restricted,\n\t\ttotal_suppressed,\n\t\ttotal_bounce,\n\t\ttotal_soft_bounce,\n\t\ttotal_hard_bounce,\n\t\ttotal_drop,\n\t\ttransactional_messages,\n\t\tmarketing_messages\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__comm_analytics_data", "language": "sql", "refs": [], "sources": [["sms__communication", "comm_analytics_data"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__communication.comm_analytics_data"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM communication.comm_analytics_data\n\n), sms_stg__comm_analytics_data AS (\n\n SELECT \n\t\tstore_id,\n\t\tchannel,\n\t\tsource_status,\n\t\tsource_type,\n\t\tsource_id,\n\t\tsub_source_type,\n\t\tsource_trigger,\n\t\tsource_message,\n\t\tsub_source_id,\n\t\tsource_name,\n\t\tconverted_flow_id,\n\t\tsource_execution_date,\n\t\tsource_creation_date,\n\t\taggregation_date,\n\t\ttotal_unsubscribed,\n\t\ttotal_sent,\n\t\tmessage_count,\n\t\ttotal_spent,\n\t\ttotal_clicks,\n\t\ttotal_orders,\n\t\ttotal_revenue,\n\t\ttotal_subscriptions,\n\t\ttotal_active_subscriptions,\n\t\ttotal_delivered,\n\t\ttotal_processed,\n\t\ttotal_open,\n\t\ttotal_deferred,\n\t\ttotal_spam,\n\t\ttotal_failed,\n\t\ttotal_skipped,\n\t\ttotal_smart_sending,\n\t\ttotal_restricted,\n\t\ttotal_suppressed,\n\t\ttotal_bounce,\n\t\ttotal_soft_bounce,\n\t\ttotal_hard_bounce,\n\t\ttotal_drop,\n\t\ttransactional_messages,\n\t\tmarketing_messages\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__comm_analytics_data", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__customers": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__customers", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.sql", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.sql", "unique_id": "model.yoda.sms_stg__customers", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__customers", "sms_stg__customers"], "alias": "sms_stg__customers", "checksum": {"name": "sha256", "checksum": "b23cfb528e794982b280f60b37b74f9ea4e14624b1dec9334761ce666e326f30"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "smsbump_user_id": {"name": "smsbump_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accepts_marketing": {"name": "accepts_marketing", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_name": {"name": "first_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_count": {"name": "orders_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "state": {"name": "state", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_spent": {"name": "total_spent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_order_id": {"name": "last_order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "verified_email": {"name": "verified_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_formatted": {"name": "phone_formatted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_order_name": {"name": "last_order_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_address": {"name": "default_address", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "timezone": {"name": "timezone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__customers/sms_stg__customers.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.57264, "relation_name": "dev_dkruh1.sms_stg__customers", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms_shopify', 'customers') }}\n\n), sms_stg__customers AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsmsbump_user_id,\n\t\tcustomer_id,\n\t\temail,\n\t\taccepts_marketing,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tfirst_name,\n\t\tlast_name,\n\t\torders_count,\n\t\tstate,\n\t\ttotal_spent,\n\t\tlast_order_id,\n\t\tverified_email,\n\t\tphone,\n\t\tphone_formatted,\n\t\tlast_order_name,\n\t\tdefault_address,\n\t\ttimezone,\n\t\tdeleted,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__customers", "language": "sql", "refs": [], "sources": [["sms__sms_shopify", "customers"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms_shopify.customers"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__customers/sms_stg__customers.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms_shopify.customers\n\n), sms_stg__customers AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsmsbump_user_id,\n\t\tcustomer_id,\n\t\temail,\n\t\taccepts_marketing,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tfirst_name,\n\t\tlast_name,\n\t\torders_count,\n\t\tstate,\n\t\ttotal_spent,\n\t\tlast_order_id,\n\t\tverified_email,\n\t\tphone,\n\t\tphone_formatted,\n\t\tlast_order_name,\n\t\tdefault_address,\n\t\ttimezone,\n\t\tdeleted,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__customers", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__customers_addresses": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__customers_addresses", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.sql", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.sql", "unique_id": "model.yoda.sms_stg__customers_addresses", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__customers_addresses", "sms_stg__customers_addresses"], "alias": "sms_stg__customers_addresses", "checksum": {"name": "sha256", "checksum": "78decb01bd5080f98fd2b300fc3acc5c5ff2756048ad588025fdbf5e2ea1d861"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "address1": {"name": "address1", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address2": {"name": "address2", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address_id": {"name": "address_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "city": {"name": "city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company": {"name": "company", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_code": {"name": "country_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_name": {"name": "country_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "default": {"name": "default", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_name": {"name": "first_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_formatted": {"name": "phone_formatted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "province": {"name": "province", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "province_code": {"name": "province_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsbump_customer_id": {"name": "smsbump_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smsbump_user_id": {"name": "smsbump_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "zip": {"name": "zip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.6032302, "relation_name": "dev_dkruh1.sms_stg__customers_addresses", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms_shopify', 'customers_addresses') }}\n\n), sms_stg__customers_addresses AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taddress1,\n\t\taddress2,\n\t\taddress_id,\n\t\tcity,\n\t\tcompany,\n\t\tcountry,\n\t\tcountry_code,\n\t\tcountry_name,\n\t\tcustomer_id,\n\t\tdefault,\n\t\tdeleted,\n\t\tfirst_name,\n\t\tlast_name,\n\t\tname,\n\t\tphone,\n\t\tphone_formatted,\n\t\tprovince,\n\t\tprovince_code,\n\t\tsmsbump_customer_id,\n\t\tsmsbump_user_id,\n\t\tzip\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__customers_addresses", "language": "sql", "refs": [], "sources": [["sms__sms_shopify", "customers_addresses"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms_shopify.customers_addresses"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms_shopify.customers_addresses\n\n), sms_stg__customers_addresses AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taddress1,\n\t\taddress2,\n\t\taddress_id,\n\t\tcity,\n\t\tcompany,\n\t\tcountry,\n\t\tcountry_code,\n\t\tcountry_name,\n\t\tcustomer_id,\n\t\tdefault,\n\t\tdeleted,\n\t\tfirst_name,\n\t\tlast_name,\n\t\tname,\n\t\tphone,\n\t\tphone_formatted,\n\t\tprovince,\n\t\tprovince_code,\n\t\tsmsbump_customer_id,\n\t\tsmsbump_user_id,\n\t\tzip\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__customers_addresses", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__default_predefined_messages": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__default_predefined_messages", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.sql", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.sql", "unique_id": "model.yoda.sms_stg__default_predefined_messages", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__default_predefined_messages", "sms_stg__default_predefined_messages"], "alias": "sms_stg__default_predefined_messages", "checksum": {"name": "sha256", "checksum": "e4d64d521a3b2c8de9158858abd0f2a724b08814014813674922ce7d27ed2b6f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trigger": {"name": "trigger", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_message": {"name": "default_message", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_category": {"name": "sub_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "active": {"name": "active", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.6255038, "relation_name": "dev_dkruh1.sms_stg__default_predefined_messages", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'default_predefined_messages') }}\n\n), sms_stg__default_predefined_messages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\ttype,\n\t\ttrigger,\n\t\tdefault_message,\n\t\tcategory,\n\t\tsub_category,\n\t\tactive,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__default_predefined_messages", "language": "sql", "refs": [], "sources": [["sms__sms", "default_predefined_messages"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.default_predefined_messages"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.default_predefined_messages\n\n), sms_stg__default_predefined_messages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\ttype,\n\t\ttrigger,\n\t\tdefault_message,\n\t\tcategory,\n\t\tsub_category,\n\t\tactive,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__default_predefined_messages", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__email_charges": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__email_charges", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.sql", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.sql", "unique_id": "model.yoda.sms_stg__email_charges", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__email_charges", "sms_stg__email_charges"], "alias": "sms_stg__email_charges", "checksum": {"name": "sha256", "checksum": "5357d74118035d1849adc717fad53268cbb0e87c971e951e169f13e6633790f1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price": {"name": "price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_emails": {"name": "total_emails", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_email_count": {"name": "campaign_email_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_email_count": {"name": "flow_email_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.6457398, "relation_name": "dev_dkruh1.sms_stg__email_charges", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'email_charges') }}\n\n), sms_stg__email_charges AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tprice,\n\t\tcurrency,\n\t\ttype,\n\t\ttotal_emails,\n\t\tcampaign_email_count,\n\t\tflow_email_count,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__email_charges", "language": "sql", "refs": [], "sources": [["sms__sms", "email_charges"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.email_charges"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.email_charges\n\n), sms_stg__email_charges AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tprice,\n\t\tcurrency,\n\t\ttype,\n\t\ttotal_emails,\n\t\tcampaign_email_count,\n\t\tflow_email_count,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__email_charges", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__email_to_sms_campaigns": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__email_to_sms_campaigns", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_to_sms_campaigns/sms_stg__email_to_sms_campaigns.sql", "original_file_path": "models/sms/staging/base/sms_stg__email_to_sms_campaigns/sms_stg__email_to_sms_campaigns.sql", "unique_id": "model.yoda.sms_stg__email_to_sms_campaigns", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__email_to_sms_campaigns", "sms_stg__email_to_sms_campaigns"], "alias": "sms_stg__email_to_sms_campaigns", "checksum": {"name": "sha256", "checksum": "d6fa95bc8af289318039c72bf68f724c10295dee36b1e74237ebe9193aaf42b9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sms_campaign_id": {"name": "sms_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_campaign_id": {"name": "email_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__email_to_sms_campaigns/sms_stg__email_to_sms_campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.663579, "relation_name": "dev_dkruh1.sms_stg__email_to_sms_campaigns", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'email_to_sms_campaigns') }}\n\n), sms_stg__email_to_sms_campaigns AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsms_campaign_id,\n\t\temail_campaign_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__email_to_sms_campaigns", "language": "sql", "refs": [], "sources": [["sms__sms", "email_to_sms_campaigns"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.email_to_sms_campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__email_to_sms_campaigns/sms_stg__email_to_sms_campaigns.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.email_to_sms_campaigns\n\n), sms_stg__email_to_sms_campaigns AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsms_campaign_id,\n\t\temail_campaign_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__email_to_sms_campaigns", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__events": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__events", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.sql", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.sql", "unique_id": "model.yoda.sms_stg__events", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__events", "sms_stg__events"], "alias": "sms_stg__events", "checksum": {"name": "sha256", "checksum": "05324a932d1bc9797a7ded7152984e887ff450362bfe77565954b1d30753a2f1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms_stg__events", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "webhook": {"name": "webhook", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "settings": {"name": "settings", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__events/sms_stg__events.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.6876693, "relation_name": "dev_dkruh1.sms_stg__events", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'events') }}\n\n), sms_stg__events AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tuser_id,\n\t\twebhook,\n\t\tsettings,\n\t\tplatform,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__events", "language": "sql", "refs": [], "sources": [["sms__sms", "events"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.events"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__events/sms_stg__events.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.events\n\n), sms_stg__events AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tuser_id,\n\t\twebhook,\n\t\tsettings,\n\t\tplatform,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__flow_link_clicks": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__flow_link_clicks", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.sql", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.sql", "unique_id": "model.yoda.sms_stg__flow_link_clicks", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__flow_link_clicks", "sms_stg__flow_link_clicks"], "alias": "sms_stg__flow_link_clicks", "checksum": {"name": "sha256", "checksum": "7397260146e3fc6fd44eef3ae04a7c19a435a13ada72be8ad281031e2753e097"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number": {"name": "number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicks_count": {"name": "clicks_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "link_id": {"name": "link_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ua": {"name": "ua", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.711707, "relation_name": "dev_dkruh1.sms_stg__flow_link_clicks", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'flow_link_clicks') }}\n\n), sms_stg__flow_link_clicks AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tnumber,\n\t\tclicks_count,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tlink_id,\n\t\tua,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__flow_link_clicks", "language": "sql", "refs": [], "sources": [["sms__sms", "flow_link_clicks"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.flow_link_clicks"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.flow_link_clicks\n\n), sms_stg__flow_link_clicks AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tnumber,\n\t\tclicks_count,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tlink_id,\n\t\tua,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__flow_link_clicks", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__flow_links": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__flow_links", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.sql", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.sql", "unique_id": "model.yoda.sms_stg__flow_links", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__flow_links", "sms_stg__flow_links"], "alias": "sms_stg__flow_links", "checksum": {"name": "sha256", "checksum": "b136335d59467a6af51f279aaafc017070324f6d46682ff7436a8db0bbff5449"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_entity_id": {"name": "ab_entity_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "clicks_count": {"name": "clicks_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "link": {"name": "link", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.732891, "relation_name": "dev_dkruh1.sms_stg__flow_links", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'flow_links') }}\n\n), sms_stg__flow_links AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tab_entity_id,\n\t\tclicks_count,\n\t\tlink,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__flow_links", "language": "sql", "refs": [], "sources": [["sms__sms", "flow_links"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.flow_links"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.flow_links\n\n), sms_stg__flow_links AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tab_entity_id,\n\t\tclicks_count,\n\t\tlink,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__flow_links", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__flows": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__flows", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.sql", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.sql", "unique_id": "model.yoda.sms_stg__flows", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__flows", "sms_stg__flows"], "alias": "sms_stg__flows", "checksum": {"name": "sha256", "checksum": "38fa56564edfdf07cfcff821261c870f7156f11fa84b39d5409b8512b963c18f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms_stg__flows", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_trigger": {"name": "flow_trigger", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_settings": {"name": "flow_settings", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "snapshot_id": {"name": "snapshot_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__flows/sms_stg__flows.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.7648003, "relation_name": "dev_dkruh1.sms_stg__flows", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'flows') }}\n\n), sms_stg__flows AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tuser_id,\n\t\tflow_trigger,\n\t\tflow_settings,\n\t\tplatform,\n\t\tstatus,\n\t\tsnapshot_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__flows", "language": "sql", "refs": [], "sources": [["sms__sms", "flows"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.flows"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__flows/sms_stg__flows.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.flows\n\n), sms_stg__flows AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tuser_id,\n\t\tflow_trigger,\n\t\tflow_settings,\n\t\tplatform,\n\t\tstatus,\n\t\tsnapshot_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__flows", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__forms": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__forms", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.sql", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.sql", "unique_id": "model.yoda.sms_stg__forms", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__forms", "sms_stg__forms"], "alias": "sms_stg__forms", "checksum": {"name": "sha256", "checksum": "cf7f9fe554b7a0f6d75a12a96b9dfc05bbc2f5ad8ca899064098cd6973bcdfa3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "settings": {"name": "settings", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dynamic_popup": {"name": "dynamic_popup", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_script_id": {"name": "platform_script_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__forms/sms_stg__forms.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.8104234, "relation_name": "dev_dkruh1.sms_stg__forms", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'forms') }}\n\n), sms_stg__forms AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tplatform,\n\t\ttype,\n\t\tname,\n\t\tsettings,\n\t\tdynamic_popup,\n\t\tstatus,\n\t\tplatform_script_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__forms", "language": "sql", "refs": [], "sources": [["sms__sms", "forms"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.forms"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__forms/sms_stg__forms.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.forms\n\n), sms_stg__forms AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tplatform,\n\t\ttype,\n\t\tname,\n\t\tsettings,\n\t\tdynamic_popup,\n\t\tstatus,\n\t\tplatform_script_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__forms", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__free_credits_logs": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__free_credits_logs", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.sql", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.sql", "unique_id": "model.yoda.sms_stg__free_credits_logs", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__free_credits_logs", "sms_stg__free_credits_logs"], "alias": "sms_stg__free_credits_logs", "checksum": {"name": "sha256", "checksum": "26661020fe91a0077623abe3acd2ebe34e0083d2549eb9c7956dc61cdb9b3039"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_name": {"name": "store_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082687.844849, "relation_name": "dev_dkruh1.sms_stg__free_credits_logs", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'free_credits_logs') }}\n\n), sms_stg__free_credits_logs AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tstore_name,\n\t\tsource,\n\t\tamount,\n\t\tcreated_at,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__free_credits_logs", "language": "sql", "refs": [], "sources": [["sms__sms", "free_credits_logs"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.free_credits_logs"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.free_credits_logs\n\n), sms_stg__free_credits_logs AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tstore_name,\n\t\tsource,\n\t\tamount,\n\t\tcreated_at,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__free_credits_logs", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__link_clicks": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__link_clicks", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.sql", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.sql", "unique_id": "model.yoda.sms_stg__link_clicks", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__link_clicks", "sms_stg__link_clicks"], "alias": "sms_stg__link_clicks", "checksum": {"name": "sha256", "checksum": "3688b0cbbdafec46886471704aa31c988d3da22e818dd6be93858fb45c379c93"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number": {"name": "number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicks_count": {"name": "clicks_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "link_id": {"name": "link_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ua": {"name": "ua", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.8925529, "relation_name": "dev_dkruh1.sms_stg__link_clicks", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'link_clicks') }}\n\n), sms_stg__link_clicks AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tnumber,\n\t\tclicks_count,\n\t\tcampaign_id,\n\t\tevent_id,\n\t\tlink_id,\n\t\tua,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__link_clicks", "language": "sql", "refs": [], "sources": [["sms__sms", "link_clicks"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.link_clicks"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.link_clicks\n\n), sms_stg__link_clicks AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tnumber,\n\t\tclicks_count,\n\t\tcampaign_id,\n\t\tevent_id,\n\t\tlink_id,\n\t\tua,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__link_clicks", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__lists": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__lists", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.sql", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.sql", "unique_id": "model.yoda.sms_stg__lists", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__lists", "sms_stg__lists"], "alias": "sms_stg__lists", "checksum": {"name": "sha256", "checksum": "1cfe9059928ab62de7000054a13c9347b2b46fd75d777a4e01662c53cea28d25"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "list_name": {"name": "list_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "count": {"name": "count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "segment_id": {"name": "segment_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_hidden": {"name": "is_hidden", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_email_list": {"name": "is_email_list", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__lists/sms_stg__lists.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.9131699, "relation_name": "dev_dkruh1.sms_stg__lists", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'lists') }}\n\n), sms_stg__lists AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tlist_name,\n\t\tcount,\n\t\tsegment_id,\n\t\tuser_id,\n\t\tis_hidden,\n\t\tis_email_list,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__lists", "language": "sql", "refs": [], "sources": [["sms__sms", "lists"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.lists"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__lists/sms_stg__lists.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.lists\n\n), sms_stg__lists AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tlist_name,\n\t\tcount,\n\t\tsegment_id,\n\t\tuser_id,\n\t\tis_hidden,\n\t\tis_email_list,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__lists", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__loyalty_flows_data": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__loyalty_flows_data", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.sql", "original_file_path": "models/sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.sql", "unique_id": "model.yoda.sms_stg__loyalty_flows_data", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__loyalty_flows_data", "sms_stg__loyalty_flows_data"], "alias": "sms_stg__loyalty_flows_data", "checksum": {"name": "sha256", "checksum": "5a1168491179d9bc86b84a4db48cd6b0793ebb780ea5118370480806fc1f4b4a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms_stg__loyalty_flows_data", "columns": {"id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shortcode": {"name": "shortcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "condition": {"name": "condition", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_trigger": {"name": "flow_trigger", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.928369, "relation_name": "dev_dkruh1.sms_stg__loyalty_flows_data", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'loyalty_flows_data') }}\n\n), sms_stg__loyalty_flows_data AS (\n\n SELECT \n\t\tid,\n\t\tuser_id,\n\t\tshortcode,\n\t\tcondition,\n\t\tflow_trigger\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__loyalty_flows_data", "language": "sql", "refs": [], "sources": [["sms__sms", "loyalty_flows_data"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.loyalty_flows_data"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.loyalty_flows_data\n\n), sms_stg__loyalty_flows_data AS (\n\n SELECT \n\t\tid,\n\t\tuser_id,\n\t\tshortcode,\n\t\tcondition,\n\t\tflow_trigger\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__loyalty_flows_data", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__orders": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__orders", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.sql", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.sql", "unique_id": "model.yoda.sms_stg__orders", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__orders", "sms_stg__orders"], "alias": "sms_stg__orders", "checksum": {"name": "sha256", "checksum": "a943205edec04e21eb5f8ff6714c0581ccae35f95ff62bf1e39b6e200ed293a6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "smsbump_user_id": {"name": "smsbump_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closed_at": {"name": "closed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "number": {"name": "number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "note": {"name": "note", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "token": {"name": "token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gateway": {"name": "gateway", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "test": {"name": "test", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price": {"name": "total_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subtotal_price": {"name": "subtotal_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_weight": {"name": "total_weight", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_tax": {"name": "total_tax", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxes_included": {"name": "taxes_included", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "financial_status": {"name": "financial_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "confirmed": {"name": "confirmed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_discounts": {"name": "total_discounts", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_line_items_price": {"name": "total_line_items_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cart_token": {"name": "cart_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "buyer_accepts_marketing": {"name": "buyer_accepts_marketing", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referring_site": {"name": "referring_site", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landing_site": {"name": "landing_site", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelled_at": {"name": "cancelled_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "cancel_reason": {"name": "cancel_reason", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price_usd": {"name": "total_price_usd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "checkout_token": {"name": "checkout_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reference": {"name": "reference", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "location_id": {"name": "location_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_identifier": {"name": "source_identifier", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_url": {"name": "source_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processed_at": {"name": "processed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "device_id": {"name": "device_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_formatted": {"name": "phone_formatted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_locale": {"name": "customer_locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "browser_ip": {"name": "browser_ip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landing_site_ref": {"name": "landing_site_ref", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_number": {"name": "order_number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_method": {"name": "processing_method", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "checkout_id": {"name": "checkout_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_name": {"name": "source_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fulfillment_status": {"name": "fulfillment_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_email": {"name": "contact_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_status_url": {"name": "order_status_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__orders/sms_stg__orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082687.9955604, "relation_name": "dev_dkruh1.sms_stg__orders", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms_shopify', 'orders') }}\n\n), sms_stg__orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsmsbump_user_id,\n\t\torder_id,\n\t\tcustomer_id,\n\t\temail,\n\t\tclosed_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tnumber,\n\t\tnote,\n\t\ttoken,\n\t\tgateway,\n\t\ttest,\n\t\ttotal_price,\n\t\tsubtotal_price,\n\t\ttotal_weight,\n\t\ttotal_tax,\n\t\ttaxes_included,\n\t\tcurrency,\n\t\tfinancial_status,\n\t\tconfirmed,\n\t\ttotal_discounts,\n\t\ttotal_line_items_price,\n\t\tcart_token,\n\t\tbuyer_accepts_marketing,\n\t\tname,\n\t\treferring_site,\n\t\tlanding_site,\n\t\tcancelled_at,\n\t\tcancel_reason,\n\t\ttotal_price_usd,\n\t\tcheckout_token,\n\t\treference,\n\t\tuser_id,\n\t\tlocation_id,\n\t\tsource_identifier,\n\t\tsource_url,\n\t\tprocessed_at,\n\t\tdevice_id,\n\t\tphone,\n\t\tphone_formatted,\n\t\tcustomer_locale,\n\t\tapp_id,\n\t\tbrowser_ip,\n\t\tlanding_site_ref,\n\t\torder_number,\n\t\tprocessing_method,\n\t\tcheckout_id,\n\t\tsource_name,\n\t\tfulfillment_status,\n\t\ttags,\n\t\tcontact_email,\n\t\torder_status_url,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__orders", "language": "sql", "refs": [], "sources": [["sms__sms_shopify", "orders"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms_shopify.orders"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__orders/sms_stg__orders.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms_shopify.orders\n\n), sms_stg__orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsmsbump_user_id,\n\t\torder_id,\n\t\tcustomer_id,\n\t\temail,\n\t\tclosed_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tnumber,\n\t\tnote,\n\t\ttoken,\n\t\tgateway,\n\t\ttest,\n\t\ttotal_price,\n\t\tsubtotal_price,\n\t\ttotal_weight,\n\t\ttotal_tax,\n\t\ttaxes_included,\n\t\tcurrency,\n\t\tfinancial_status,\n\t\tconfirmed,\n\t\ttotal_discounts,\n\t\ttotal_line_items_price,\n\t\tcart_token,\n\t\tbuyer_accepts_marketing,\n\t\tname,\n\t\treferring_site,\n\t\tlanding_site,\n\t\tcancelled_at,\n\t\tcancel_reason,\n\t\ttotal_price_usd,\n\t\tcheckout_token,\n\t\treference,\n\t\tuser_id,\n\t\tlocation_id,\n\t\tsource_identifier,\n\t\tsource_url,\n\t\tprocessed_at,\n\t\tdevice_id,\n\t\tphone,\n\t\tphone_formatted,\n\t\tcustomer_locale,\n\t\tapp_id,\n\t\tbrowser_ip,\n\t\tlanding_site_ref,\n\t\torder_number,\n\t\tprocessing_method,\n\t\tcheckout_id,\n\t\tsource_name,\n\t\tfulfillment_status,\n\t\ttags,\n\t\tcontact_email,\n\t\torder_status_url,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__packages": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__packages", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.sql", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.sql", "unique_id": "model.yoda.sms_stg__packages", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__packages", "sms_stg__packages"], "alias": "sms_stg__packages", "checksum": {"name": "sha256", "checksum": "5ea68427ccfcc85e95164358709321fe879e8a77a11e13b7edc891c7f8d4f546"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_key": {"name": "payment_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_key": {"name": "plan_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_title": {"name": "sub_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "period": {"name": "period", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price": {"name": "price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "bonus_credits": {"name": "bonus_credits", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "visible_app": {"name": "visible_app", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "visible_site": {"name": "visible_site", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__packages/sms_stg__packages.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082688.023152, "relation_name": "dev_dkruh1.sms_stg__packages", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'packages') }}\n\n), sms_stg__packages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tdisplay_name,\n\t\tpayment_key,\n\t\tplan_key,\n\t\tsub_title,\n\t\tdescription,\n\t\tplatform,\n\t\ttype,\n\t\tperiod,\n\t\tprice,\n\t\tbonus_credits,\n\t\tvisible_app,\n\t\tvisible_site,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__packages", "language": "sql", "refs": [], "sources": [["sms__sms", "packages"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.packages"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__packages/sms_stg__packages.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.packages\n\n), sms_stg__packages AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tdisplay_name,\n\t\tpayment_key,\n\t\tplan_key,\n\t\tsub_title,\n\t\tdescription,\n\t\tplatform,\n\t\ttype,\n\t\tperiod,\n\t\tprice,\n\t\tbonus_credits,\n\t\tvisible_app,\n\t\tvisible_site,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__packages", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__purchases": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__purchases", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.sql", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.sql", "unique_id": "model.yoda.sms_stg__purchases", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__purchases", "sms_stg__purchases"], "alias": "sms_stg__purchases", "checksum": {"name": "sha256", "checksum": "a4c7edc9bde5ebdbbd4dd544f52eb435a101b0608a481679cef6209650304493"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number": {"name": "number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason": {"name": "reason", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gateway": {"name": "gateway", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_paid": {"name": "amount_paid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_added": {"name": "amount_added", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "notes": {"name": "notes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchase_info": {"name": "purchase_info", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cart": {"name": "cart", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_code": {"name": "discount_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoice": {"name": "invoice", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ipnlog": {"name": "ipnlog", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_charge_response": {"name": "shopify_charge_response", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "affiliate_id": {"name": "affiliate_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vendor_id": {"name": "vendor_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "licenses": {"name": "licenses", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchased_on": {"name": "purchased_on", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_downloaded": {"name": "last_downloaded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "downloads_history": {"name": "downloads_history", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchased_from": {"name": "purchased_from", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reminders": {"name": "reminders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rating": {"name": "rating", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.0729177, "relation_name": "dev_dkruh1.sms_stg__purchases", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'purchases') }}\n\n), sms_stg__purchases AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\tnumber,\n\t\tstatus,\n\t\ttype,\n\t\treason,\n\t\tplatform,\n\t\tgateway,\n\t\tamount_paid,\n\t\tamount_added,\n\t\tnotes,\n\t\tpurchase_info,\n\t\tcart,\n\t\tdiscount_code,\n\t\tinvoice,\n\t\tipnlog,\n\t\tshopify_charge_response,\n\t\tuser_id,\n\t\taffiliate_id,\n\t\tvendor_id,\n\t\tproduct_id,\n\t\tproduct,\n\t\tlicenses,\n\t\tpurchased_on,\n\t\tlast_downloaded,\n\t\tdownloads_history,\n\t\tpurchased_from,\n\t\treminders,\n\t\trating,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__purchases", "language": "sql", "refs": [], "sources": [["sms__sms", "purchases"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.purchases"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.purchases\n\n), sms_stg__purchases AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\tnumber,\n\t\tstatus,\n\t\ttype,\n\t\treason,\n\t\tplatform,\n\t\tgateway,\n\t\tamount_paid,\n\t\tamount_added,\n\t\tnotes,\n\t\tpurchase_info,\n\t\tcart,\n\t\tdiscount_code,\n\t\tinvoice,\n\t\tipnlog,\n\t\tshopify_charge_response,\n\t\tuser_id,\n\t\taffiliate_id,\n\t\tvendor_id,\n\t\tproduct_id,\n\t\tproduct,\n\t\tlicenses,\n\t\tpurchased_on,\n\t\tlast_downloaded,\n\t\tdownloads_history,\n\t\tpurchased_from,\n\t\treminders,\n\t\trating,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__purchases", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__shopify_analytics_orders": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__shopify_analytics_orders", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_analytics_orders/sms_stg__shopify_analytics_orders.sql", "original_file_path": "models/sms/staging/base/sms_stg__shopify_analytics_orders/sms_stg__shopify_analytics_orders.sql", "unique_id": "model.yoda.sms_stg__shopify_analytics_orders", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__shopify_analytics_orders", "sms_stg__shopify_analytics_orders"], "alias": "sms_stg__shopify_analytics_orders", "checksum": {"name": "sha256", "checksum": "ab6f0ee4b4e46847cb4247404e264715b7a04f08d1741541e306e339b7456331"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_snapshot_id": {"name": "flow_snapshot_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_campaign_id": {"name": "ab_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "country_iso": {"name": "country_iso", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ref_campaign_id": {"name": "ref_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__shopify_analytics_orders/sms_stg__shopify_analytics_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.1026216, "relation_name": "dev_dkruh1.sms_stg__shopify_analytics_orders", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'shopify_analytics_orders') }}\n\n), sms_stg__shopify_analytics_orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcustomer_id,\n\t\torder_id,\n\t\tamount,\n\t\tcampaign_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tflow_snapshot_id,\n\t\tab_campaign_id,\n\t\tchannel,\n\t\tcreated,\n\t\tcountry_iso,\n\t\ttype,\n\t\tstore_id,\n\t\tref_campaign_id,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_analytics_orders", "language": "sql", "refs": [], "sources": [["sms__sms", "shopify_analytics_orders"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.shopify_analytics_orders"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__shopify_analytics_orders/sms_stg__shopify_analytics_orders.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.shopify_analytics_orders\n\n), sms_stg__shopify_analytics_orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcustomer_id,\n\t\torder_id,\n\t\tamount,\n\t\tcampaign_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tflow_snapshot_id,\n\t\tab_campaign_id,\n\t\tchannel,\n\t\tcreated,\n\t\tcountry_iso,\n\t\ttype,\n\t\tstore_id,\n\t\tref_campaign_id,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_analytics_orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__shopify_campaign_discount_codes": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__shopify_campaign_discount_codes", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.sql", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.sql", "unique_id": "model.yoda.sms_stg__shopify_campaign_discount_codes", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__shopify_campaign_discount_codes", "sms_stg__shopify_campaign_discount_codes"], "alias": "sms_stg__shopify_campaign_discount_codes", "checksum": {"name": "sha256", "checksum": "6c6066a82e0ec1ee607f4ecdc3945838925131a5fa1c8890297f4d230c212ed4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_campaign_id": {"name": "ab_campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_code": {"name": "discount_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_generated": {"name": "auto_generated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.1252482, "relation_name": "dev_dkruh1.sms_stg__shopify_campaign_discount_codes", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'shopify_campaign_discount_codes') }}\n\n), sms_stg__shopify_campaign_discount_codes AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tab_campaign_id,\n\t\tdiscount_code,\n\t\tauto_generated,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_campaign_discount_codes", "language": "sql", "refs": [], "sources": [["sms__sms", "shopify_campaign_discount_codes"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.shopify_campaign_discount_codes"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.shopify_campaign_discount_codes\n\n), sms_stg__shopify_campaign_discount_codes AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tab_campaign_id,\n\t\tdiscount_code,\n\t\tauto_generated,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_campaign_discount_codes", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__shopify_campaign_orders": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__shopify_campaign_orders", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.sql", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.sql", "unique_id": "model.yoda.sms_stg__shopify_campaign_orders", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__shopify_campaign_orders", "sms_stg__shopify_campaign_orders"], "alias": "sms_stg__shopify_campaign_orders", "checksum": {"name": "sha256", "checksum": "d07acca1ee95690211a050efdd052d63286d2d772d788a3bd9adb4ceec2baccd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_id": {"name": "order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_campaign_id": {"name": "ab_campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.1486309, "relation_name": "dev_dkruh1.sms_stg__shopify_campaign_orders", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'shopify_campaign_orders') }}\n\n), sms_stg__shopify_campaign_orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torder_id,\n\t\tphone,\n\t\tcampaign_id,\n\t\tab_campaign_id,\n\t\tuser_id,\n\t\tchannel,\n\t\tamount,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_campaign_orders", "language": "sql", "refs": [], "sources": [["sms__sms", "shopify_campaign_orders"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.shopify_campaign_orders"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.shopify_campaign_orders\n\n), sms_stg__shopify_campaign_orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torder_id,\n\t\tphone,\n\t\tcampaign_id,\n\t\tab_campaign_id,\n\t\tuser_id,\n\t\tchannel,\n\t\tamount,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_campaign_orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__shopify_flows_orders": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__shopify_flows_orders", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.sql", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.sql", "unique_id": "model.yoda.sms_stg__shopify_flows_orders", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__shopify_flows_orders", "sms_stg__shopify_flows_orders"], "alias": "sms_stg__shopify_flows_orders", "checksum": {"name": "sha256", "checksum": "bc0291aeed04c2c8eb04feb1cc21ea24c272d239999119c8dfa3be672387a739"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_snapshot_id": {"name": "flow_snapshot_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_entity_id": {"name": "ab_entity_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopify_customer_id": {"name": "shopify_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "recovered": {"name": "recovered", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "conversion_source": {"name": "conversion_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.1752062, "relation_name": "dev_dkruh1.sms_stg__shopify_flows_orders", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'shopify_flows_orders') }}\n\n), sms_stg__shopify_flows_orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tflow_snapshot_id,\n\t\tab_entity_id,\n\t\tshopify_customer_id,\n\t\tphone,\n\t\torder_id,\n\t\tamount,\n\t\trecovered,\n\t\tconversion_source,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_flows_orders", "language": "sql", "refs": [], "sources": [["sms__sms", "shopify_flows_orders"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.shopify_flows_orders"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.shopify_flows_orders\n\n), sms_stg__shopify_flows_orders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tflow_snapshot_id,\n\t\tab_entity_id,\n\t\tshopify_customer_id,\n\t\tphone,\n\t\torder_id,\n\t\tamount,\n\t\trecovered,\n\t\tconversion_source,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_flows_orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__shopify_segments": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__shopify_segments", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.sql", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.sql", "unique_id": "model.yoda.sms_stg__shopify_segments", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__shopify_segments", "sms_stg__shopify_segments"], "alias": "sms_stg__shopify_segments", "checksum": {"name": "sha256", "checksum": "c663aaa870281a6233e133ee453617c77dc0a6dfae1139489d447aa2179b1c62"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "segment_rules": {"name": "segment_rules", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_updated": {"name": "last_updated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "used_in_unomi": {"name": "used_in_unomi", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.1971908, "relation_name": "dev_dkruh1.sms_stg__shopify_segments", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'shopify_segments') }}\n\n), sms_stg__shopify_segments AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsegment_rules,\n\t\tuser_id,\n\t\tplatform,\n\t\tlast_updated,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tused_in_unomi\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_segments", "language": "sql", "refs": [], "sources": [["sms__sms", "shopify_segments"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.shopify_segments"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.shopify_segments\n\n), sms_stg__shopify_segments AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsegment_rules,\n\t\tuser_id,\n\t\tplatform,\n\t\tlast_updated,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified,\n\t\tused_in_unomi\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_segments", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__shopify_users": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__shopify_users", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.sql", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.sql", "unique_id": "model.yoda.sms_stg__shopify_users", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__shopify_users", "sms_stg__shopify_users"], "alias": "sms_stg__shopify_users", "checksum": {"name": "sha256", "checksum": "b2f0b3ae13c12f49cfc4a629a8ca50532ea4b1d99e579a314dcb19daceb1b1c6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms_stg__shopify_users", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store": {"name": "store", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "access_token": {"name": "access_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_data": {"name": "shop_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_data": {"name": "app_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan": {"name": "plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_store_id": {"name": "shopify_store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "associated_user": {"name": "associated_user", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_reload": {"name": "auto_reload", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_threshold": {"name": "auto_reload_threshold", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_amount": {"name": "auto_reload_amount", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_cap": {"name": "auto_reload_cap", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abandoned_checkouts_sent": {"name": "abandoned_checkouts_sent", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "connected": {"name": "connected", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_enabled": {"name": "sync_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "back_fill_completed": {"name": "back_fill_completed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes": {"name": "notes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pinned_navigation": {"name": "pinned_navigation", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "consent_webhook_enabled": {"name": "consent_webhook_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.2305255, "relation_name": "dev_dkruh1.sms_stg__shopify_users", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'shopify_users') }}\n\n), sms_stg__shopify_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore,\n\t\tdomain,\n\t\taccess_token,\n\t\tshop_data,\n\t\tapp_data,\n\t\tuser_id,\n\t\tplatform,\n\t\tplan,\n\t\tshopify_store_id,\n\t\tassociated_user,\n\t\tauto_reload,\n\t\tauto_reload_threshold,\n\t\tauto_reload_amount,\n\t\tauto_reload_cap,\n\t\tabandoned_checkouts_sent,\n\t\tconnected,\n\t\tsync_enabled,\n\t\tback_fill_completed,\n\t\tnotes,\n\t\tpinned_navigation,\n\t\tcreated,\n\t\tmodified,\n\t\tconsent_webhook_enabled,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_users", "language": "sql", "refs": [], "sources": [["sms__sms", "shopify_users"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.shopify_users"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.shopify_users\n\n), sms_stg__shopify_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore,\n\t\tdomain,\n\t\taccess_token,\n\t\tshop_data,\n\t\tapp_data,\n\t\tuser_id,\n\t\tplatform,\n\t\tplan,\n\t\tshopify_store_id,\n\t\tassociated_user,\n\t\tauto_reload,\n\t\tauto_reload_threshold,\n\t\tauto_reload_amount,\n\t\tauto_reload_cap,\n\t\tabandoned_checkouts_sent,\n\t\tconnected,\n\t\tsync_enabled,\n\t\tback_fill_completed,\n\t\tnotes,\n\t\tpinned_navigation,\n\t\tcreated,\n\t\tmodified,\n\t\tconsent_webhook_enabled,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__shopify_users", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__sms_campaign_created": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__sms_campaign_created", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.sql", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.sql", "unique_id": "model.yoda.sms_stg__sms_campaign_created", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__sms_campaign_created", "sms_stg__sms_campaign_created"], "alias": "sms_stg__sms_campaign_created", "checksum": {"name": "sha256", "checksum": "db19a5fa6a2b537c326899a88d45d6814bbf8eede2d1b6a3c0a22dab9c2f802b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms_stg__sms_campaign_created", "columns": {"partition_date": {"name": "partition_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "audiencesize": {"name": "audiencesize", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicktobuyadded": {"name": "clicktobuyadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "contentedited": {"name": "contentedited", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customname": {"name": "customname", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discountadded": {"name": "discountadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emojiadded": {"name": "emojiadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imageadded": {"name": "imageadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isabtesting": {"name": "isabtesting", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinternaluser": {"name": "isinternaluser", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isscheduled": {"name": "isscheduled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issmartsending": {"name": "issmartsending", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issms": {"name": "issms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "istimezonebased": {"name": "istimezonebased", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isvugc": {"name": "isvugc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalyshortcodeadded": {"name": "loyalyshortcodeadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgid": {"name": "orgid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewsshortcodeadded": {"name": "reviewsshortcodeadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smspackage": {"name": "smspackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "targetedaudience": {"name": "targetedaudience", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "texttobuyadded": {"name": "texttobuyadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyaltypackage": {"name": "loyaltypackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth0userid": {"name": "auth0userid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "abtestgroupsize": {"name": "abtestgroupsize", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "abtestperiod": {"name": "abtestperiod", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "abtestingnumberoftestgroups": {"name": "abtestingnumberoftestgroups", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "abwinningmetric": {"name": "abwinningmetric", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaignid": {"name": "campaignid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discountcodeadded": {"name": "discountcodeadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discounturladded": {"name": "discounturladded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discountvalueadded": {"name": "discountvalueadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "excludedaudience": {"name": "excludedaudience", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "firstnameadded": {"name": "firstnameadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "haslists": {"name": "haslists", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hasloyaltysegments": {"name": "hasloyaltysegments", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "haspredictivesegments": {"name": "haspredictivesegments", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hasreviewssegments": {"name": "hasreviewssegments", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastnameadded": {"name": "lastnameadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sitenameadded": {"name": "sitenameadded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "siteurladded": {"name": "siteurladded", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_activebuyers": {"name": "usedpredefinedsegments_activebuyers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_allemailsubscribers": {"name": "usedpredefinedsegments_allemailsubscribers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_churnrisk": {"name": "usedpredefinedsegments_churnrisk", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_emailconvertedsubscriberslast7days": {"name": "usedpredefinedsegments_emailconvertedsubscriberslast7days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_enagagedemailsubscirberslast30days": {"name": "usedpredefinedsegments_enagagedemailsubscirberslast30days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_haventpurchasetsincelastmonth": {"name": "usedpredefinedsegments_haventpurchasetsincelastmonth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_potentialbuyers": {"name": "usedpredefinedsegments_potentialbuyers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_purchasesbyemailsubscriberslast30days": {"name": "usedpredefinedsegments_purchasesbyemailsubscriberslast30days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_repeatbuyers": {"name": "usedpredefinedsegments_repeatbuyers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_smsconvertedsubscriberslast7days": {"name": "usedpredefinedsegments_smsconvertedsubscriberslast7days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_smsengagedsubscribers": {"name": "usedpredefinedsegments_smsengagedsubscribers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_softbouncedsubscriberslast7days": {"name": "usedpredefinedsegments_softbouncedsubscriberslast7days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_subscribersnotpurchased": {"name": "usedpredefinedsegments_subscribersnotpurchased", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_textmarketinglist": {"name": "usedpredefinedsegments_textmarketinglist", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_top1sendedrs": {"name": "usedpredefinedsegments_top1sendedrs", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_topsenders": {"name": "usedpredefinedsegments_topsenders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedtemplate": {"name": "usedtemplate", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usedpredefinedsegments_engagedemailsubscriberslast30days": {"name": "usedpredefinedsegments_engagedemailsubscriberslast30days", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_haventpurchasedsincelastmonth": {"name": "usedpredefinedsegments_haventpurchasedsincelastmonth", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_top1senders": {"name": "usedpredefinedsegments_top1senders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_top1spenders": {"name": "usedpredefinedsegments_top1spenders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_topspenders": {"name": "usedpredefinedsegments_topspenders", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isdatechanged": {"name": "isdatechanged", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "timechosen": {"name": "timechosen", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.3426895, "relation_name": "dev_dkruh1.sms_stg__sms_campaign_created", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__segment', 'sms_campaign_created') }}\n\n), row_ranking_for_event AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tadminusername,\n\t\tappkey,\n\t\taudiencesize,\n\t\tclicktobuyadded,\n\t\tcontentedited,\n\t\tcustomname,\n\t\tdiscountadded,\n\t\temojiadded,\n\t\timageadded,\n\t\tisabtesting,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tisscheduled,\n\t\tissmartsending,\n\t\tissms,\n\t\tistimezonebased,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyalyshortcodeadded,\n\t\torgid,\n\t\torgkey,\n\t\tpath,\n\t\tplatformplan,\n\t\tplatform,\n\t\tproduct,\n\t\treviewspackage,\n\t\treviewsshortcodeadded,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoredomain,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\ttargetedaudience,\n\t\ttexttobuyadded,\n\t\ttitle,\n\t\turl,\n\t\tuseremail,\n\t\tuserid,\n\t\tloyaltypackage,\n\t\tvugcpackage,\n\t\tauth0userid,\n\t\tabtestgroupsize,\n\t\tabtestperiod,\n\t\tabtestingnumberoftestgroups,\n\t\tabwinningmetric,\n\t\tcampaignid,\n\t\tdiscountcodeadded,\n\t\tdiscounturladded,\n\t\tdiscountvalueadded,\n\t\texcludedaudience,\n\t\tfirstnameadded,\n\t\thaslists,\n\t\thasloyaltysegments,\n\t\thaspredictivesegments,\n\t\thasreviewssegments,\n\t\tlastnameadded,\n\t\tsitenameadded,\n\t\tsiteurladded,\n\t\tusedpredefinedsegments_activebuyers,\n\t\tusedpredefinedsegments_allemailsubscribers,\n\t\tusedpredefinedsegments_churnrisk,\n\t\tusedpredefinedsegments_emailconvertedsubscriberslast7days,\n\t\tusedpredefinedsegments_enagagedemailsubscirberslast30days,\n\t\tusedpredefinedsegments_haventpurchasetsincelastmonth,\n\t\tusedpredefinedsegments_potentialbuyers,\n\t\tusedpredefinedsegments_purchasesbyemailsubscriberslast30days,\n\t\tusedpredefinedsegments_repeatbuyers,\n\t\tusedpredefinedsegments_smsconvertedsubscriberslast7days,\n\t\tusedpredefinedsegments_smsengagedsubscribers,\n\t\tusedpredefinedsegments_softbouncedsubscriberslast7days,\n\t\tusedpredefinedsegments_subscribersnotpurchased,\n\t\tusedpredefinedsegments_textmarketinglist,\n\t\tusedpredefinedsegments_top1sendedrs,\n\t\tusedpredefinedsegments_topsenders,\n\t\tusedtemplate,\n\t\tusedpredefinedsegments_engagedemailsubscriberslast30days,\n\t\tusedpredefinedsegments_haventpurchasedsincelastmonth,\n\t\tusedpredefinedsegments_top1senders,\n\t\tusedpredefinedsegments_top1spenders,\n\t\tusedpredefinedsegments_topspenders,\n\t\tisdatechanged,\n\t\ttimechosen,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\n FROM source\n),\n\nsms_stg__sms_campaign_created AS (\n\tSELECT * \n\tFROM row_ranking_for_event\n\tWHERE NOT (message_id IN ('ajs-next-ee3fdefd1d95f9318c5622f60fc98c8f',\n\t\t\t\t\t\t\t 'ajs-next-409cd801cb0e6463cdb0214c85ae6880',\n\t\t\t\t\t\t\t 'ajs-next-ab7f9bd95ba3ba8b52e3a2d203183794',\n\t\t\t\t\t\t\t 'ajs-5ef0866ca27ddb56acb51f01977a580d',\n\t\t\t\t\t\t\t 'ajs-4f94aac2c86da7305819dfcd67188271',\n\t\t\t\t\t\t\t 'ajs-a1ea4abdd3ffb0eeb224b70790480654',\n\t\t\t\t\t\t\t 'ajs-7ab04c10b83814245aaf55d82d06ddf4',\n\t\t\t\t\t\t\t 'ajs-4d6c768931c9d97578ed79abc0690e74',\n\t\t\t\t\t\t\t 'ajs-60e82aa63c67636ed7ccca4d3f9debce',\n\t\t\t\t\t\t\t 'ajs-39e9399d4c81aa7bcf1482b351d64761',\n\t\t\t\t\t\t\t 'ajs-fd085c32513f2b581b8146e700fa7900',\n\t\t\t\t\t\t\t 'ajs-270032cfea46b95400d4a762dcc3503c',\n\t\t\t\t\t\t\t 'ajs-94d3ed6bd3b630ac5f41ab0bf4feebb0',\n\t\t\t\t\t\t\t 'ajs-1cd6fa3a9db1e8d55d1db20836eaa43c',\n\t\t\t\t\t\t\t 'ajs-6c8ed2846a58cb5cac8613c4e309391f',\n\t\t\t\t\t\t\t 'ajs-f9d97ff202b718e899f858edb40ebb5a') AND event_row_ranking > 1)\n\t\n)\n\nSELECT \n\tpartition_date,\n\tupsolver_schema_version,\n\tprocessing_time,\n\ttimestamp,\n\tmessage_id,\n\tuser_id,\n\tanonymous_id,\n\tchannel,\n\tlibrary_name,\n\tlocale,\n\tpage_url,\n\tpage_referrer,\n\tpage_title,\n\tpage_path,\n\tis_tablet,\n\tis_mobile,\n\tis_desktop,\n\tviolated_event,\n\tevent_name,\n\tadminusername,\n\tappkey,\n\taudiencesize,\n\tclicktobuyadded,\n\tcontentedited,\n\tcustomname,\n\tdiscountadded,\n\temojiadded,\n\timageadded,\n\tisabtesting,\n\tisinternaluser,\n\tisloyalty,\n\tisreviews,\n\tisscheduled,\n\tissmartsending,\n\tissms,\n\tistimezonebased,\n\tisvugc,\n\tloyaltymerchantid,\n\tloyalyshortcodeadded,\n\torgid,\n\torgkey,\n\tpath,\n\tplatformplan,\n\tplatform,\n\tproduct,\n\treviewspackage,\n\treviewsshortcodeadded,\n\tsmspackage,\n\tsmsuserid,\n\tstoredomain,\n\tstoreid,\n\tstoreplatformdomain,\n\ttargetedaudience,\n\ttexttobuyadded,\n\ttitle,\n\turl,\n\tuseremail,\n\tuserid,\n\tloyaltypackage,\n\tvugcpackage,\n\tauth0userid,\n\tabtestgroupsize,\n\tabtestperiod,\n\tabtestingnumberoftestgroups,\n\tabwinningmetric,\n\tcampaignid,\n\tdiscountcodeadded,\n\tdiscounturladded,\n\tdiscountvalueadded,\n\texcludedaudience,\n\tfirstnameadded,\n\thaslists,\n\thasloyaltysegments,\n\thaspredictivesegments,\n\thasreviewssegments,\n\tlastnameadded,\n\tsitenameadded,\n\tsiteurladded,\n\tusedpredefinedsegments_activebuyers,\n\tusedpredefinedsegments_allemailsubscribers,\n\tusedpredefinedsegments_churnrisk,\n\tusedpredefinedsegments_emailconvertedsubscriberslast7days,\n\tusedpredefinedsegments_enagagedemailsubscirberslast30days,\n\tusedpredefinedsegments_haventpurchasetsincelastmonth,\n\tusedpredefinedsegments_potentialbuyers,\n\tusedpredefinedsegments_purchasesbyemailsubscriberslast30days,\n\tusedpredefinedsegments_repeatbuyers,\n\tusedpredefinedsegments_smsconvertedsubscriberslast7days,\n\tusedpredefinedsegments_smsengagedsubscribers,\n\tusedpredefinedsegments_softbouncedsubscriberslast7days,\n\tusedpredefinedsegments_subscribersnotpurchased,\n\tusedpredefinedsegments_textmarketinglist,\n\tusedpredefinedsegments_top1sendedrs,\n\tusedpredefinedsegments_topsenders,\n\tusedtemplate,\n\tusedpredefinedsegments_engagedemailsubscriberslast30days,\n\tusedpredefinedsegments_haventpurchasedsincelastmonth,\n\tusedpredefinedsegments_top1senders,\n\tusedpredefinedsegments_top1spenders,\n\tusedpredefinedsegments_topspenders,\n\tisdatechanged,\n\ttimechosen,\n\tpackagecategories,\n\tpackage\nFROM sms_stg__sms_campaign_created", "language": "sql", "refs": [], "sources": [["sms__segment", "sms_campaign_created"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__segment.sms_campaign_created"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM segment.sms_campaign_created\n\n), row_ranking_for_event AS (\n\n SELECT \n\t\tpartition_date,\n\t\tupsolver_schema_version,\n\t\tprocessing_time,\n\t\ttimestamp,\n\t\tmessage_id,\n\t\tuser_id,\n\t\tanonymous_id,\n\t\tchannel,\n\t\tlibrary_name,\n\t\tlocale,\n\t\tpage_url,\n\t\tpage_referrer,\n\t\tpage_title,\n\t\tpage_path,\n\t\tis_tablet,\n\t\tis_mobile,\n\t\tis_desktop,\n\t\tviolated_event,\n\t\tevent_name,\n\t\tadminusername,\n\t\tappkey,\n\t\taudiencesize,\n\t\tclicktobuyadded,\n\t\tcontentedited,\n\t\tcustomname,\n\t\tdiscountadded,\n\t\temojiadded,\n\t\timageadded,\n\t\tisabtesting,\n\t\tisinternaluser,\n\t\tisloyalty,\n\t\tisreviews,\n\t\tisscheduled,\n\t\tissmartsending,\n\t\tissms,\n\t\tistimezonebased,\n\t\tisvugc,\n\t\tloyaltymerchantid,\n\t\tloyalyshortcodeadded,\n\t\torgid,\n\t\torgkey,\n\t\tpath,\n\t\tplatformplan,\n\t\tplatform,\n\t\tproduct,\n\t\treviewspackage,\n\t\treviewsshortcodeadded,\n\t\tsmspackage,\n\t\tsmsuserid,\n\t\tstoredomain,\n\t\tstoreid,\n\t\tstoreplatformdomain,\n\t\ttargetedaudience,\n\t\ttexttobuyadded,\n\t\ttitle,\n\t\turl,\n\t\tuseremail,\n\t\tuserid,\n\t\tloyaltypackage,\n\t\tvugcpackage,\n\t\tauth0userid,\n\t\tabtestgroupsize,\n\t\tabtestperiod,\n\t\tabtestingnumberoftestgroups,\n\t\tabwinningmetric,\n\t\tcampaignid,\n\t\tdiscountcodeadded,\n\t\tdiscounturladded,\n\t\tdiscountvalueadded,\n\t\texcludedaudience,\n\t\tfirstnameadded,\n\t\thaslists,\n\t\thasloyaltysegments,\n\t\thaspredictivesegments,\n\t\thasreviewssegments,\n\t\tlastnameadded,\n\t\tsitenameadded,\n\t\tsiteurladded,\n\t\tusedpredefinedsegments_activebuyers,\n\t\tusedpredefinedsegments_allemailsubscribers,\n\t\tusedpredefinedsegments_churnrisk,\n\t\tusedpredefinedsegments_emailconvertedsubscriberslast7days,\n\t\tusedpredefinedsegments_enagagedemailsubscirberslast30days,\n\t\tusedpredefinedsegments_haventpurchasetsincelastmonth,\n\t\tusedpredefinedsegments_potentialbuyers,\n\t\tusedpredefinedsegments_purchasesbyemailsubscriberslast30days,\n\t\tusedpredefinedsegments_repeatbuyers,\n\t\tusedpredefinedsegments_smsconvertedsubscriberslast7days,\n\t\tusedpredefinedsegments_smsengagedsubscribers,\n\t\tusedpredefinedsegments_softbouncedsubscriberslast7days,\n\t\tusedpredefinedsegments_subscribersnotpurchased,\n\t\tusedpredefinedsegments_textmarketinglist,\n\t\tusedpredefinedsegments_top1sendedrs,\n\t\tusedpredefinedsegments_topsenders,\n\t\tusedtemplate,\n\t\tusedpredefinedsegments_engagedemailsubscriberslast30days,\n\t\tusedpredefinedsegments_haventpurchasedsincelastmonth,\n\t\tusedpredefinedsegments_top1senders,\n\t\tusedpredefinedsegments_top1spenders,\n\t\tusedpredefinedsegments_topspenders,\n\t\tisdatechanged,\n\t\ttimechosen,\n\t\tpackagecategories,\n\t\tpackage,\n\t\tROW_NUMBER() OVER (PARTITION BY message_id ORDER BY timestamp) AS event_row_ranking\n FROM source\n),\n\nsms_stg__sms_campaign_created AS (\n\tSELECT * \n\tFROM row_ranking_for_event\n\tWHERE NOT (message_id IN ('ajs-next-ee3fdefd1d95f9318c5622f60fc98c8f',\n\t\t\t\t\t\t\t 'ajs-next-409cd801cb0e6463cdb0214c85ae6880',\n\t\t\t\t\t\t\t 'ajs-next-ab7f9bd95ba3ba8b52e3a2d203183794',\n\t\t\t\t\t\t\t 'ajs-5ef0866ca27ddb56acb51f01977a580d',\n\t\t\t\t\t\t\t 'ajs-4f94aac2c86da7305819dfcd67188271',\n\t\t\t\t\t\t\t 'ajs-a1ea4abdd3ffb0eeb224b70790480654',\n\t\t\t\t\t\t\t 'ajs-7ab04c10b83814245aaf55d82d06ddf4',\n\t\t\t\t\t\t\t 'ajs-4d6c768931c9d97578ed79abc0690e74',\n\t\t\t\t\t\t\t 'ajs-60e82aa63c67636ed7ccca4d3f9debce',\n\t\t\t\t\t\t\t 'ajs-39e9399d4c81aa7bcf1482b351d64761',\n\t\t\t\t\t\t\t 'ajs-fd085c32513f2b581b8146e700fa7900',\n\t\t\t\t\t\t\t 'ajs-270032cfea46b95400d4a762dcc3503c',\n\t\t\t\t\t\t\t 'ajs-94d3ed6bd3b630ac5f41ab0bf4feebb0',\n\t\t\t\t\t\t\t 'ajs-1cd6fa3a9db1e8d55d1db20836eaa43c',\n\t\t\t\t\t\t\t 'ajs-6c8ed2846a58cb5cac8613c4e309391f',\n\t\t\t\t\t\t\t 'ajs-f9d97ff202b718e899f858edb40ebb5a') AND event_row_ranking > 1)\n\t\n)\n\nSELECT \n\tpartition_date,\n\tupsolver_schema_version,\n\tprocessing_time,\n\ttimestamp,\n\tmessage_id,\n\tuser_id,\n\tanonymous_id,\n\tchannel,\n\tlibrary_name,\n\tlocale,\n\tpage_url,\n\tpage_referrer,\n\tpage_title,\n\tpage_path,\n\tis_tablet,\n\tis_mobile,\n\tis_desktop,\n\tviolated_event,\n\tevent_name,\n\tadminusername,\n\tappkey,\n\taudiencesize,\n\tclicktobuyadded,\n\tcontentedited,\n\tcustomname,\n\tdiscountadded,\n\temojiadded,\n\timageadded,\n\tisabtesting,\n\tisinternaluser,\n\tisloyalty,\n\tisreviews,\n\tisscheduled,\n\tissmartsending,\n\tissms,\n\tistimezonebased,\n\tisvugc,\n\tloyaltymerchantid,\n\tloyalyshortcodeadded,\n\torgid,\n\torgkey,\n\tpath,\n\tplatformplan,\n\tplatform,\n\tproduct,\n\treviewspackage,\n\treviewsshortcodeadded,\n\tsmspackage,\n\tsmsuserid,\n\tstoredomain,\n\tstoreid,\n\tstoreplatformdomain,\n\ttargetedaudience,\n\ttexttobuyadded,\n\ttitle,\n\turl,\n\tuseremail,\n\tuserid,\n\tloyaltypackage,\n\tvugcpackage,\n\tauth0userid,\n\tabtestgroupsize,\n\tabtestperiod,\n\tabtestingnumberoftestgroups,\n\tabwinningmetric,\n\tcampaignid,\n\tdiscountcodeadded,\n\tdiscounturladded,\n\tdiscountvalueadded,\n\texcludedaudience,\n\tfirstnameadded,\n\thaslists,\n\thasloyaltysegments,\n\thaspredictivesegments,\n\thasreviewssegments,\n\tlastnameadded,\n\tsitenameadded,\n\tsiteurladded,\n\tusedpredefinedsegments_activebuyers,\n\tusedpredefinedsegments_allemailsubscribers,\n\tusedpredefinedsegments_churnrisk,\n\tusedpredefinedsegments_emailconvertedsubscriberslast7days,\n\tusedpredefinedsegments_enagagedemailsubscirberslast30days,\n\tusedpredefinedsegments_haventpurchasetsincelastmonth,\n\tusedpredefinedsegments_potentialbuyers,\n\tusedpredefinedsegments_purchasesbyemailsubscriberslast30days,\n\tusedpredefinedsegments_repeatbuyers,\n\tusedpredefinedsegments_smsconvertedsubscriberslast7days,\n\tusedpredefinedsegments_smsengagedsubscribers,\n\tusedpredefinedsegments_softbouncedsubscriberslast7days,\n\tusedpredefinedsegments_subscribersnotpurchased,\n\tusedpredefinedsegments_textmarketinglist,\n\tusedpredefinedsegments_top1sendedrs,\n\tusedpredefinedsegments_topsenders,\n\tusedtemplate,\n\tusedpredefinedsegments_engagedemailsubscriberslast30days,\n\tusedpredefinedsegments_haventpurchasedsincelastmonth,\n\tusedpredefinedsegments_top1senders,\n\tusedpredefinedsegments_top1spenders,\n\tusedpredefinedsegments_topspenders,\n\tisdatechanged,\n\ttimechosen,\n\tpackagecategories,\n\tpackage\nFROM sms_stg__sms_campaign_created", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__sms_loyalty_redemptions": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__sms_loyalty_redemptions", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.sql", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.sql", "unique_id": "model.yoda.sms_stg__sms_loyalty_redemptions", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__sms_loyalty_redemptions", "sms_stg__sms_loyalty_redemptions"], "alias": "sms_stg__sms_loyalty_redemptions", "checksum": {"name": "sha256", "checksum": "00f6fab049990fde01fb185394c276da01e6eeb3d91582ccd04cc9328bf92dba"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_id": {"name": "redemption_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_code": {"name": "discount_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.3717358, "relation_name": "dev_dkruh1.sms_stg__sms_loyalty_redemptions", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'sms_loyalty_redemptions') }}\n\n), sms_stg__sms_loyalty_redemptions AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tredemption_id,\n\t\tredemption_option_id,\n\t\tdiscount_code,\n\t\tcreated\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__sms_loyalty_redemptions", "language": "sql", "refs": [], "sources": [["sms__sms", "sms_loyalty_redemptions"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.sms_loyalty_redemptions"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.sms_loyalty_redemptions\n\n), sms_stg__sms_loyalty_redemptions AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tcampaign_id,\n\t\tflow_id,\n\t\tflow_step_id,\n\t\tredemption_id,\n\t\tredemption_option_id,\n\t\tdiscount_code,\n\t\tcreated\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__sms_loyalty_redemptions", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__track_flows_adoption": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__track_flows_adoption", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.sql", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.sql", "unique_id": "model.yoda.sms_stg__track_flows_adoption", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__track_flows_adoption", "sms_stg__track_flows_adoption"], "alias": "sms_stg__track_flows_adoption", "checksum": {"name": "sha256", "checksum": "30159427d2c80ed6a0d9121aecb548df4785b7d243fd8b0a16bfae5c0d9ccd4a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms_stg__track_flows_adoption", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_type": {"name": "flow_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_trigger": {"name": "flow_trigger", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "changes": {"name": "changes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.3960304, "relation_name": "dev_dkruh1.sms_stg__track_flows_adoption", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'track_flows_adoption') }}\n\n), sms_stg__track_flows_adoption AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tflow_id,\n\t\tflow_type,\n\t\tflow_trigger,\n\t\taction,\n\t\tchanges,\n\t\tcreated\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__track_flows_adoption", "language": "sql", "refs": [], "sources": [["sms__sms", "track_flows_adoption"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.track_flows_adoption"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.track_flows_adoption\n\n), sms_stg__track_flows_adoption AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tflow_id,\n\t\tflow_type,\n\t\tflow_trigger,\n\t\taction,\n\t\tchanges,\n\t\tcreated\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__track_flows_adoption", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__users": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__users", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.sql", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.sql", "unique_id": "model.yoda.sms_stg__users", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__users", "sms_stg__users"], "alias": "sms_stg__users", "checksum": {"name": "sha256", "checksum": "a15a70ff70abfe496ac129fadde59d1a7d126bbe07ae1f51bca336c55b8dda6d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms_stg__users", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "parent_id": {"name": "parent_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vendor_id": {"name": "vendor_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "support_level_id": {"name": "support_level_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "balance": {"name": "balance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "bonus_balance": {"name": "bonus_balance", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits": {"name": "credits", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "earnings": {"name": "earnings", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "points": {"name": "points", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "role": {"name": "role", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_id": {"name": "role_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner": {"name": "partner", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner_info": {"name": "partner_info", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_nexmo_price_multiply": {"name": "partner_nexmo_price_multiply", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "plan": {"name": "plan", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_price": {"name": "plan_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "package_id": {"name": "package_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yotpo_app_key": {"name": "yotpo_app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_app_secret": {"name": "yotpo_app_secret", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_organization_id": {"name": "yotpo_organization_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "payment_gateway": {"name": "payment_gateway", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provision_calls_count": {"name": "provision_calls_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_unique_id": {"name": "platform_unique_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_data": {"name": "discount_data", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_trial_until": {"name": "plan_trial_until", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "discounted_mms_price": {"name": "discounted_mms_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "affiliate_commission": {"name": "affiliate_commission", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amploa": {"name": "amploa", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_is_valid": {"name": "email_is_valid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "password": {"name": "password", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_passwords": {"name": "old_passwords", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tfa_enabled": {"name": "tfa_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "preferred_vendor": {"name": "preferred_vendor", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_type": {"name": "partner_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_route": {"name": "delivery_route", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hash": {"name": "hash", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_number": {"name": "phone_number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_subscription_list_id": {"name": "main_subscription_list_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "double_opt_in": {"name": "double_opt_in", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "double_opt_in_level": {"name": "double_opt_in_level", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timezone": {"name": "timezone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dnd": {"name": "dnd", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dnd_from": {"name": "dnd_from", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dnd_to": {"name": "dnd_to", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smart_sending_value": {"name": "smart_sending_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smart_sending_ignore_transac_email": {"name": "smart_sending_ignore_transac_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "strict_marketing_check": {"name": "strict_marketing_check", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_limit_enabled": {"name": "price_limit_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_limit": {"name": "price_limit", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "chat_enabled": {"name": "chat_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chat_settings": {"name": "chat_settings", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collect_checkout_subscribers": {"name": "collect_checkout_subscribers", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "country": {"name": "country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countries_limitation_mode": {"name": "countries_limitation_mode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countries_limitation_values": {"name": "countries_limitation_values", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "city": {"name": "city", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zipcode": {"name": "zipcode", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address": {"name": "address", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vat_number": {"name": "vat_number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paypal_email": {"name": "paypal_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "google_user_id": {"name": "google_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_id": {"name": "facebook_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_info": {"name": "facebook_info", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gplusurl": {"name": "gplusurl", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "picture": {"name": "picture", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cookie_related_users": {"name": "cookie_related_users", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "all_ip": {"name": "all_ip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_ip": {"name": "last_ip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_available": {"name": "last_available", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "total_logins": {"name": "total_logins", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_downloads": {"name": "total_downloads", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abuser_status": {"name": "abuser_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abuser_notes": {"name": "abuser_notes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_keywords_available_count": {"name": "free_keywords_available_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ban_exclude": {"name": "ban_exclude", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_test": {"name": "is_test", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscribed": {"name": "subscribed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscribed_to_forum": {"name": "subscribed_to_forum", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unsubscribe_reason": {"name": "unsubscribe_reason", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "notes": {"name": "notes", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upload_lists_enabled": {"name": "upload_lists_enabled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes_modified": {"name": "notes_modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "agreed_terms": {"name": "agreed_terms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signed_promo_id": {"name": "signed_promo_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signup_source": {"name": "signup_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_name": {"name": "contact_card_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_logo": {"name": "contact_card_logo", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_path": {"name": "contact_card_path", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_message": {"name": "contact_card_message", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "system_messages_payer": {"name": "system_messages_payer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "compliance_accepted_date": {"name": "compliance_accepted_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "affiliate_payout_pref": {"name": "affiliate_payout_pref", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "affiliate_payout_email": {"name": "affiliate_payout_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_payout": {"name": "last_payout", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "automatic_transliteration": {"name": "automatic_transliteration", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_local_number_for_subscription": {"name": "use_local_number_for_subscription", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "onboarding_completed": {"name": "onboarding_completed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "industry": {"name": "industry", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "language": {"name": "language", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "whitelisted": {"name": "whitelisted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shaft_status": {"name": "shaft_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__users/sms_stg__users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.4965887, "relation_name": "dev_dkruh1.sms_stg__users", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'users') }}\n\n), sms_stg__users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tparent_id,\n\t\tstore_id,\n\t\tvendor_id,\n\t\tsupport_level_id,\n\t\tbalance,\n\t\tbonus_balance,\n\t\tcredits,\n\t\tearnings,\n\t\tpoints,\n\t\trole,\n\t\trole_id,\n\t\tpartner,\n\t\tpartner_info,\n\t\tpartner_nexmo_price_multiply,\n\t\tplan,\n\t\tplan_price,\n\t\tpackage_id,\n\t\tyotpo_app_key,\n\t\tyotpo_app_secret,\n\t\tyotpo_organization_id,\n\t\tpayment_gateway,\n\t\tprovision_calls_count,\n\t\tplatform_unique_id,\n\t\tdiscount_data,\n\t\tplan_trial_until,\n\t\tdiscounted_mms_price,\n\t\taffiliate_commission,\n\t\tamploa,\n\t\temail,\n\t\temail_is_valid,\n\t\tpassword,\n\t\told_passwords,\n\t\ttfa_enabled,\n\t\tpreferred_vendor,\n\t\tpartner_type,\n\t\tdelivery_route,\n\t\thash,\n\t\tname,\n\t\tphone_number,\n\t\tplatform,\n\t\tmain_subscription_list_id,\n\t\tdouble_opt_in,\n\t\tdouble_opt_in_level,\n\t\ttimezone,\n\t\tdnd,\n\t\tdnd_from,\n\t\tdnd_to,\n\t\tsmart_sending_value,\n\t\tsmart_sending_ignore_transac_email,\n\t\tstrict_marketing_check,\n\t\tprice_limit_enabled,\n\t\tprice_limit,\n\t\tchat_enabled,\n\t\tchat_settings,\n\t\tcollect_checkout_subscribers,\n\t\tcountry,\n\t\tcountries_limitation_mode,\n\t\tcountries_limitation_values,\n\t\tstate,\n\t\tcity,\n\t\tzipcode,\n\t\taddress,\n\t\tvat_number,\n\t\tpaypal_email,\n\t\tgoogle_user_id,\n\t\tfacebook_id,\n\t\tfacebook_info,\n\t\tgplusurl,\n\t\tpicture,\n\t\tcookie_related_users,\n\t\tall_ip,\n\t\tlast_ip,\n\t\tlast_available,\n\t\ttotal_logins,\n\t\ttotal_downloads,\n\t\tabuser_status,\n\t\tabuser_notes,\n\t\tfree_keywords_available_count,\n\t\tban_exclude,\n\t\tis_test,\n\t\tsubscribed,\n\t\tsubscribed_to_forum,\n\t\tunsubscribe_reason,\n\t\tnotes,\n\t\tupload_lists_enabled,\n\t\tnotes_modified,\n\t\tagreed_terms,\n\t\tsigned_promo_id,\n\t\tsignup_source,\n\t\tcontact_card_name,\n\t\tcontact_card_logo,\n\t\tcontact_card_path,\n\t\tcontact_card_message,\n\t\tsystem_messages_payer,\n\t\tcompliance_accepted_date,\n\t\taffiliate_payout_pref,\n\t\taffiliate_payout_email,\n\t\tlast_payout,\n\t\tautomatic_transliteration,\n\t\tuse_local_number_for_subscription,\n\t\tonboarding_completed,\n\t\tindustry,\n\t\tlanguage,\n\t\tcreated,\n\t\tmodified,\n\t\twhitelisted,\n\t\tshaft_status,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__users", "language": "sql", "refs": [], "sources": [["sms__sms", "users"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.users"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__users/sms_stg__users.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.users\n\n), sms_stg__users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tparent_id,\n\t\tstore_id,\n\t\tvendor_id,\n\t\tsupport_level_id,\n\t\tbalance,\n\t\tbonus_balance,\n\t\tcredits,\n\t\tearnings,\n\t\tpoints,\n\t\trole,\n\t\trole_id,\n\t\tpartner,\n\t\tpartner_info,\n\t\tpartner_nexmo_price_multiply,\n\t\tplan,\n\t\tplan_price,\n\t\tpackage_id,\n\t\tyotpo_app_key,\n\t\tyotpo_app_secret,\n\t\tyotpo_organization_id,\n\t\tpayment_gateway,\n\t\tprovision_calls_count,\n\t\tplatform_unique_id,\n\t\tdiscount_data,\n\t\tplan_trial_until,\n\t\tdiscounted_mms_price,\n\t\taffiliate_commission,\n\t\tamploa,\n\t\temail,\n\t\temail_is_valid,\n\t\tpassword,\n\t\told_passwords,\n\t\ttfa_enabled,\n\t\tpreferred_vendor,\n\t\tpartner_type,\n\t\tdelivery_route,\n\t\thash,\n\t\tname,\n\t\tphone_number,\n\t\tplatform,\n\t\tmain_subscription_list_id,\n\t\tdouble_opt_in,\n\t\tdouble_opt_in_level,\n\t\ttimezone,\n\t\tdnd,\n\t\tdnd_from,\n\t\tdnd_to,\n\t\tsmart_sending_value,\n\t\tsmart_sending_ignore_transac_email,\n\t\tstrict_marketing_check,\n\t\tprice_limit_enabled,\n\t\tprice_limit,\n\t\tchat_enabled,\n\t\tchat_settings,\n\t\tcollect_checkout_subscribers,\n\t\tcountry,\n\t\tcountries_limitation_mode,\n\t\tcountries_limitation_values,\n\t\tstate,\n\t\tcity,\n\t\tzipcode,\n\t\taddress,\n\t\tvat_number,\n\t\tpaypal_email,\n\t\tgoogle_user_id,\n\t\tfacebook_id,\n\t\tfacebook_info,\n\t\tgplusurl,\n\t\tpicture,\n\t\tcookie_related_users,\n\t\tall_ip,\n\t\tlast_ip,\n\t\tlast_available,\n\t\ttotal_logins,\n\t\ttotal_downloads,\n\t\tabuser_status,\n\t\tabuser_notes,\n\t\tfree_keywords_available_count,\n\t\tban_exclude,\n\t\tis_test,\n\t\tsubscribed,\n\t\tsubscribed_to_forum,\n\t\tunsubscribe_reason,\n\t\tnotes,\n\t\tupload_lists_enabled,\n\t\tnotes_modified,\n\t\tagreed_terms,\n\t\tsigned_promo_id,\n\t\tsignup_source,\n\t\tcontact_card_name,\n\t\tcontact_card_logo,\n\t\tcontact_card_path,\n\t\tcontact_card_message,\n\t\tsystem_messages_payer,\n\t\tcompliance_accepted_date,\n\t\taffiliate_payout_pref,\n\t\taffiliate_payout_email,\n\t\tlast_payout,\n\t\tautomatic_transliteration,\n\t\tuse_local_number_for_subscription,\n\t\tonboarding_completed,\n\t\tindustry,\n\t\tlanguage,\n\t\tcreated,\n\t\tmodified,\n\t\twhitelisted,\n\t\tshaft_status,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__users", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__users_events_log": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__users_events_log", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.sql", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.sql", "unique_id": "model.yoda.sms_stg__users_events_log", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__users_events_log", "sms_stg__users_events_log"], "alias": "sms_stg__users_events_log", "checksum": {"name": "sha256", "checksum": "eb55dce645f19ee38e3f3e50a6a588f57e6fe3990a2a291163546accce33b537"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "platform": {"name": "platform", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_user_id": {"name": "platform_user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event": {"name": "event", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_type": {"name": "event_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_details": {"name": "event_details", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082688.5183833, "relation_name": "dev_dkruh1.sms_stg__users_events_log", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'users_events_log') }}\n\n), sms_stg__users_events_log AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tplatform,\n\t\tplatform_user_id,\n\t\tuser_id,\n\t\tevent,\n\t\tevent_type,\n\t\tevent_details,\n\t\tcreated,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__users_events_log", "language": "sql", "refs": [], "sources": [["sms__sms", "users_events_log"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.users_events_log"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.users_events_log\n\n), sms_stg__users_events_log AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tplatform,\n\t\tplatform_user_id,\n\t\tuser_id,\n\t\tevent,\n\t\tevent_type,\n\t\tevent_details,\n\t\tcreated,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__users_events_log", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__yotpo_organizations": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__yotpo_organizations", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.sql", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.sql", "unique_id": "model.yoda.sms_stg__yotpo_organizations", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__yotpo_organizations", "sms_stg__yotpo_organizations"], "alias": "sms_stg__yotpo_organizations", "checksum": {"name": "sha256", "checksum": "2dbea2f80fcf5481e838e8e0759cf3f34ad93dd1fa58fa2a1f31304742589106"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms_stg__yotpo_organizations", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_name": {"name": "organization_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ac_requests_id": {"name": "ac_requests_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "koalas@yotpo.com", "alert_channels": ["koalas-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.5456955, "relation_name": "dev_dkruh1.sms_stg__yotpo_organizations", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'yotpo_organizations') }}\n\n), sms_stg__yotpo_organizations AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torganization_key,\n\t\torganization_name,\n\t\tac_requests_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__yotpo_organizations", "language": "sql", "refs": [], "sources": [["sms__sms", "yotpo_organizations"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.yotpo_organizations"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.yotpo_organizations\n\n), sms_stg__yotpo_organizations AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\torganization_key,\n\t\torganization_name,\n\t\tac_requests_id,\n\t\tcreated,\n\t\tmodified,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__yotpo_organizations", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__yotpo_status_updates": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__yotpo_status_updates", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.sql", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.sql", "unique_id": "model.yoda.sms_stg__yotpo_status_updates", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__yotpo_status_updates", "sms_stg__yotpo_status_updates"], "alias": "sms_stg__yotpo_status_updates", "checksum": {"name": "sha256", "checksum": "dbf7903e9ec8f3260630e844059223de8499316bae2ced734774187efc59ab06"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "queue_id": {"name": "queue_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "from": {"name": "from", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "to": {"name": "to", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uuid": {"name": "uuid", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.5835974, "relation_name": "dev_dkruh1.sms_stg__yotpo_status_updates", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('sms__sms', 'yotpo_status_updates') }}\n\n), sms_stg__yotpo_status_updates AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tqueue_id,\n\t\tuser_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tfrom,\n\t\tto,\n\t\tuuid,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__yotpo_status_updates", "language": "sql", "refs": [], "sources": [["sms__sms", "yotpo_status_updates"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.sms__sms.yotpo_status_updates"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM sms.yotpo_status_updates\n\n), sms_stg__yotpo_status_updates AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tqueue_id,\n\t\tuser_id,\n\t\tevent_id,\n\t\tflow_id,\n\t\tfrom,\n\t\tto,\n\t\tuuid,\n\t\tstatus,\n\t\tcreated,\n\t\tmodified\n FROM source\n\n)\n\nSELECT * \nFROM sms_stg__yotpo_status_updates", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__email_sms_campaign_orders": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__email_sms_campaign_orders", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.sql", "unique_id": "model.yoda.sms_stg__email_sms_campaign_orders", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__email_sms_campaign_orders", "sms_stg__email_sms_campaign_orders"], "alias": "sms_stg__email_sms_campaign_orders", "checksum": {"name": "sha256", "checksum": "ce5fd36e1362f63b1a222ce8dd414b26a5c92acfe6df1ebc26175e107c36ecb7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "SMS and Emails campaigns with orders", "columns": {"sms_campaign_id": {"name": "sms_campaign_id", "description": "sms campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_campaign_id": {"name": "email_campaign_id", "description": "email campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopify_order_id": {"name": "shopify_order_id", "description": "shopify order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_created": {"name": "order_created", "description": "order created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "yotpo_app_key": {"name": "yotpo_app_key", "description": "Yotpo app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.6001039, "relation_name": "dev_dkruh1.sms_stg__email_sms_campaign_orders", "raw_code": "WITH users AS (\n SELECT id, yotpo_app_key\n FROM {{ ref('sms_stg__users') }}\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), campaigns AS (\n SELECT \n campaigns.id AS id, \n campaigns.user_id, \n users.yotpo_app_key\n FROM {{ ref('sms_stg__campaigns') }} AS campaigns\n INNER JOIN users ON users.id = campaigns.user_id\n), campaign_orders AS (\n SELECT \n orders.order_id, \n orders.created AS order_created,\n orders.customer_id,\n orders.campaign_id,\n campaigns.yotpo_app_key,\n campaigns.user_id\n FROM {{ ref('sms_stg__shopify_analytics_orders') }} AS orders\n INNER JOIN campaigns ON campaigns.id = orders.campaign_id AND campaigns.user_id = orders.user_id\n), shopify_customers AS (\n SELECT\n email,\n customer_id,\n smsbump_user_id\n FROM {{ ref('sms_stg__customers') }}\n), source AS (\n SELECT \n etsc.sms_campaign_id,\n etsc.email_campaign_id,\n campaign_orders.order_id as shopify_order_id,\n campaign_orders.order_created,\n campaign_orders.yotpo_app_key,\n campaign_orders.customer_id,\n shopify_customers.email\n FROM {{ ref('sms_stg__email_to_sms_campaigns') }} AS etsc\n INNER JOIN campaign_orders ON campaign_orders.campaign_id = etsc.sms_campaign_id\n INNER JOIN shopify_customers ON campaign_orders.customer_id = shopify_customers.customer_id AND campaign_orders.user_id = shopify_customers.smsbump_user_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__users", "package": null, "version": null}, {"name": "sms_stg__campaigns", "package": null, "version": null}, {"name": "sms_stg__shopify_analytics_orders", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}, {"name": "sms_stg__email_to_sms_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__users", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__email_to_sms_campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.sql", "compiled": true, "compiled_code": "WITH users AS (\n SELECT id, yotpo_app_key\n FROM dev_dkruh1.sms_stg__users\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), campaigns AS (\n SELECT \n campaigns.id AS id, \n campaigns.user_id, \n users.yotpo_app_key\n FROM dev_dkruh1.sms_stg__campaigns AS campaigns\n INNER JOIN users ON users.id = campaigns.user_id\n), campaign_orders AS (\n SELECT \n orders.order_id, \n orders.created AS order_created,\n orders.customer_id,\n orders.campaign_id,\n campaigns.yotpo_app_key,\n campaigns.user_id\n FROM dev_dkruh1.sms_stg__shopify_analytics_orders AS orders\n INNER JOIN campaigns ON campaigns.id = orders.campaign_id AND campaigns.user_id = orders.user_id\n), shopify_customers AS (\n SELECT\n email,\n customer_id,\n smsbump_user_id\n FROM dev_dkruh1.sms_stg__customers\n), source AS (\n SELECT \n etsc.sms_campaign_id,\n etsc.email_campaign_id,\n campaign_orders.order_id as shopify_order_id,\n campaign_orders.order_created,\n campaign_orders.yotpo_app_key,\n campaign_orders.customer_id,\n shopify_customers.email\n FROM dev_dkruh1.sms_stg__email_to_sms_campaigns AS etsc\n INNER JOIN campaign_orders ON campaign_orders.campaign_id = etsc.sms_campaign_id\n INNER JOIN shopify_customers ON campaign_orders.customer_id = shopify_customers.customer_id AND campaign_orders.user_id = shopify_customers.smsbump_user_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__one_click_campaigns_subscriptions": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__one_click_campaigns_subscriptions", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.sql", "unique_id": "model.yoda.sms_stg__one_click_campaigns_subscriptions", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__one_click_campaigns_subscriptions", "sms_stg__one_click_campaigns_subscriptions"], "alias": "sms_stg__one_click_campaigns_subscriptions", "checksum": {"name": "sha256", "checksum": "357930354b9d1acff68493176945213b212dd3fd15bd255a6f2f650caa1904c4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium_with_intensive_memory"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "one click campaigns subscriptions", "columns": {"customer_id": {"name": "customer_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "product id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicks_count": {"name": "clicks_count", "description": "link clicks count", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent_time": {"name": "sent_time", "description": "sent time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sms_id": {"name": "sms_id", "description": "link clicks id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_email": {"name": "customer_email", "description": "custoemr email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone": {"name": "customer_phone", "description": "customer phone", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium_with_intensive_memory"}}}, "created_at": 1700082688.6187022, "relation_name": "dev_dkruh1.sms_stg__one_click_campaigns_subscriptions", "raw_code": "WITH lists AS (\n SELECT * FROM {{ ref('sms_stg__lists') }}\n), shopify_segments AS (\n SELECT * FROM {{ ref('sms_stg__shopify_segments') }}\n), campaign_lists AS (\n SELECT * FROM {{ ref('sms_stg__campaign_lists') }}\n), campaigns AS (\n SELECT * FROM {{ ref('sms_stg__campaigns') }}\n), users AS (\n SELECT * FROM {{ ref('sms_stg__users') }} WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), api_calls AS (\n SELECT * FROM {{ ref('sms_stg__apicalls') }}\n), link_clicks AS (\n SELECT * FROM {{ ref('sms_stg__link_clicks') }}\n), shopify_customers AS (\n SELECT * FROM {{ ref('sms_stg__customers') }}\n), source AS (\n\n SELECT\n ssc.customer_id,\n REGEXP_EXTRACT(ss.segment_rules, '\"id\":\"([0-9]+)\"', 1) AS product_id,\n u.yotpo_app_key AS store_id,\n lc.clicks_count,\n ac.ts_ms AS sent_time,\n ac.id AS sms_id,\n ssc.email AS customer_email,\n ssc.phone_formatted AS customer_phone\n FROM lists AS l\n JOIN shopify_segments AS ss ON ss.id=l.segment_id\n JOIN campaign_lists AS cl ON cl.list_id=l.id\n JOIN campaigns AS c ON c.id=cl.campaign_id\n JOIN users AS u ON u.id = c.user_id\n JOIN api_calls ac ON ac.user_id = c.user_id AND ac.campaign_id=c.id AND ac.status='sent'\n LEFT JOIN link_clicks lc ON lc.campaign_id=c.id AND lc.number=ac.to\n JOIN shopify_customers AS ssc ON ssc.smsbump_user_id = c.user_id AND ssc.phone_formatted = ac.to\n WHERE\n l.list_name like 'Grow subscriptions to %'\n AND ssc.customer_id IS NOT NULL\n AND u.yotpo_app_key IS NOT NULL\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__lists", "package": null, "version": null}, {"name": "sms_stg__shopify_segments", "package": null, "version": null}, {"name": "sms_stg__campaign_lists", "package": null, "version": null}, {"name": "sms_stg__campaigns", "package": null, "version": null}, {"name": "sms_stg__users", "package": null, "version": null}, {"name": "sms_stg__apicalls", "package": null, "version": null}, {"name": "sms_stg__link_clicks", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__lists", "model.yoda.sms_stg__shopify_segments", "model.yoda.sms_stg__campaign_lists", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__users", "model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__link_clicks", "model.yoda.sms_stg__customers"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.sql", "compiled": true, "compiled_code": "WITH lists AS (\n SELECT * FROM dev_dkruh1.sms_stg__lists\n), shopify_segments AS (\n SELECT * FROM dev_dkruh1.sms_stg__shopify_segments\n), campaign_lists AS (\n SELECT * FROM dev_dkruh1.sms_stg__campaign_lists\n), campaigns AS (\n SELECT * FROM dev_dkruh1.sms_stg__campaigns\n), users AS (\n SELECT * FROM dev_dkruh1.sms_stg__users WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), api_calls AS (\n SELECT * FROM dev_dkruh1.sms_stg__apicalls\n), link_clicks AS (\n SELECT * FROM dev_dkruh1.sms_stg__link_clicks\n), shopify_customers AS (\n SELECT * FROM dev_dkruh1.sms_stg__customers\n), source AS (\n\n SELECT\n ssc.customer_id,\n REGEXP_EXTRACT(ss.segment_rules, '\"id\":\"([0-9]+)\"', 1) AS product_id,\n u.yotpo_app_key AS store_id,\n lc.clicks_count,\n ac.ts_ms AS sent_time,\n ac.id AS sms_id,\n ssc.email AS customer_email,\n ssc.phone_formatted AS customer_phone\n FROM lists AS l\n JOIN shopify_segments AS ss ON ss.id=l.segment_id\n JOIN campaign_lists AS cl ON cl.list_id=l.id\n JOIN campaigns AS c ON c.id=cl.campaign_id\n JOIN users AS u ON u.id = c.user_id\n JOIN api_calls ac ON ac.user_id = c.user_id AND ac.campaign_id=c.id AND ac.status='sent'\n LEFT JOIN link_clicks lc ON lc.campaign_id=c.id AND lc.number=ac.to\n JOIN shopify_customers AS ssc ON ssc.smsbump_user_id = c.user_id AND ssc.phone_formatted = ac.to\n WHERE\n l.list_name like 'Grow subscriptions to %'\n AND ssc.customer_id IS NOT NULL\n AND u.yotpo_app_key IS NOT NULL\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__sms_email_campaign_discount_codes": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__sms_email_campaign_discount_codes", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.sql", "unique_id": "model.yoda.sms_stg__sms_email_campaign_discount_codes", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_email_campaign_discount_codes", "sms_stg__sms_email_campaign_discount_codes"], "alias": "sms_stg__sms_email_campaign_discount_codes", "checksum": {"name": "sha256", "checksum": "e07aa8e7e5a678561f2d36ad44e2c32d2fb81e79650723edae51b640592e7e37"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "SMS Email campaign discount codes", "columns": {"yotpo_app_key": {"name": "yotpo_app_key", "description": "yotpo app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_campaign_id": {"name": "email_campaign_id", "description": "email campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_campaign_id": {"name": "sms_campaign_id", "description": "sms campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_campaign_id": {"name": "ab_campaign_id", "description": "ab campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_code": {"name": "discount_code", "description": "discount code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.6585476, "relation_name": "dev_dkruh1.sms_stg__sms_email_campaign_discount_codes", "raw_code": "WITH email_campaigns AS (\n SELECT\n sms_campaign_id,\n\t\temail_campaign_id\n FROM {{ ref('sms_stg__email_to_sms_campaigns') }}\n WHERE is_logical_deleted IS NULL OR is_logical_deleted = 0 OR is_logical_deleted = ''\n), users AS (\n SELECT\n id,\n yotpo_app_key\n FROM {{ ref('sms_stg__users') }}\n WHERE yotpo_app_key != '' AND yotpo_app_key IS NOT NULL\n), campaigns AS (\n SELECT \n ec.email_campaign_id,\n ec.sms_campaign_id,\n u.yotpo_app_key,\n u.id AS user_id\n FROM {{ ref('sms_stg__campaigns') }} AS c\n INNER JOIN email_campaigns AS ec ON ec.sms_campaign_id = c.id\n INNER JOIN users AS u ON c.user_id = u.id\n), source AS (\n SELECT \n c.yotpo_app_key,\n c.email_campaign_id,\n c.sms_campaign_id,\n scdc.ab_campaign_id,\n\t\tscdc.discount_code\n FROM {{ ref('sms_stg__shopify_campaign_discount_codes') }} AS scdc\n INNER JOIN campaigns AS c ON c.sms_campaign_id = scdc.campaign_id AND c.user_id = scdc.user_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__email_to_sms_campaigns", "package": null, "version": null}, {"name": "sms_stg__users", "package": null, "version": null}, {"name": "sms_stg__campaigns", "package": null, "version": null}, {"name": "sms_stg__shopify_campaign_discount_codes", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__email_to_sms_campaigns", "model.yoda.sms_stg__users", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__shopify_campaign_discount_codes"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.sql", "compiled": true, "compiled_code": "WITH email_campaigns AS (\n SELECT\n sms_campaign_id,\n\t\temail_campaign_id\n FROM dev_dkruh1.sms_stg__email_to_sms_campaigns\n WHERE is_logical_deleted IS NULL OR is_logical_deleted = 0 OR is_logical_deleted = ''\n), users AS (\n SELECT\n id,\n yotpo_app_key\n FROM dev_dkruh1.sms_stg__users\n WHERE yotpo_app_key != '' AND yotpo_app_key IS NOT NULL\n), campaigns AS (\n SELECT \n ec.email_campaign_id,\n ec.sms_campaign_id,\n u.yotpo_app_key,\n u.id AS user_id\n FROM dev_dkruh1.sms_stg__campaigns AS c\n INNER JOIN email_campaigns AS ec ON ec.sms_campaign_id = c.id\n INNER JOIN users AS u ON c.user_id = u.id\n), source AS (\n SELECT \n c.yotpo_app_key,\n c.email_campaign_id,\n c.sms_campaign_id,\n scdc.ab_campaign_id,\n\t\tscdc.discount_code\n FROM dev_dkruh1.sms_stg__shopify_campaign_discount_codes AS scdc\n INNER JOIN campaigns AS c ON c.sms_campaign_id = scdc.campaign_id AND c.user_id = scdc.user_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__sms_flows_reviews": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__sms_flows_reviews", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.sql", "unique_id": "model.yoda.sms_stg__sms_flows_reviews", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_flows_reviews", "sms_stg__sms_flows_reviews"], "alias": "sms_stg__sms_flows_reviews", "checksum": {"name": "sha256", "checksum": "d3767d96445d161dab5269391e7a3b1cdc1dcf4fc90433276b9b7568112a421d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms flows reviews", "columns": {"smsbump_user_id": {"name": "smsbump_user_id", "description": "SMSBump user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "Yotpo app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_id": {"name": "flow_id", "description": "flow id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_id": {"name": "review_id", "description": "review id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_created": {"name": "review_created", "description": "review created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_prepare": {"name": "message_prepare", "description": "message prepare date time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sms_source": {"name": "sms_source", "description": "SMS/Email/SMS collect review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "materialized": "incremental", "incremental_strategy": "append"}, "created_at": 1700082688.6755261, "relation_name": "dev_dkruh1.sms_stg__sms_flows_reviews", "raw_code": "{{\n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append'\n )\n}}\n\n\nWITH users AS (\n SELECT yotpo_app_key, id\n FROM {{ ref('sms_stg__users') }}\n WHERE \n yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n {% if is_incremental() -%}\n AND id > (SELECT MAX(smsbump_user_id) FROM {{ this }})\n {%- endif %}\n), review_request_tokens AS (\n SELECT \n token, review_id, review_source_type_id\n FROM {{ ref('ugc_stg__review_request_tokens') }}\n WHERE token IS NOT NULL AND review_source_type_id IN (18, 19, 25, 26, 30)\n), reviews AS (\n SELECT\n id, app_key, score, created_at\n FROM {{ ref('ugc_stg__reviews') }}\n {% if is_incremental() -%}\n WHERE id > (SELECT MAX(review_id) FROM {{ this }})\n {%- endif %}\n), reviews_with_tokens AS (\n SELECT\n rrt.token,\n rrt.review_id,\n rrt.review_source_type_id,\n r.app_key,\n r.created_at\n FROM review_request_tokens AS rrt\n LEFT JOIN reviews AS r \n ON rrt.review_id = r.id\n), sms_reviews_status_updates AS (\n SELECT \n LAST(u.id) AS smsbump_user_id,\n LAST(u.yotpo_app_key) AS app_key,\n LAST(ysu.flow_id) AS flow_id,\n ysu.uuid AS review_token,\n FIRST(ysu.queue_id) AS queue_id,\n FIRST(ysu.created) AS created,\n CASE \n WHEN FIRST(ysu.status) = 'pending' AND FIRST(queue_id) = 0 AND FIRST(flow_id) != 0\n THEN 'email'\n ELSE 'sms'\n END AS sms_source\n FROM {{ ref('sms_stg__yotpo_status_updates') }} AS ysu\n INNER JOIN users AS u ON u.id = ysu.user_id\n WHERE flow_id != 0\n GROUP BY uuid\n), source AS (\n SELECT\n srsu.smsbump_user_id,\n srsu.app_key,\n srsu.flow_id,\n rwt.review_id,\n rwt.created_at as review_created,\n srsu.created as message_prepare,\n CASE \n WHEN rwt.review_source_type_id = 30\n THEN 'sms_collect_review'\n ELSE srsu.sms_source\n END AS sms_source\n FROM sms_reviews_status_updates AS srsu\n INNER JOIN reviews_with_tokens AS rwt \n ON rwt.token = srsu.review_token\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__users", "package": null, "version": null}, {"name": "ugc_stg__review_request_tokens", "package": null, "version": null}, {"name": "ugc_stg__reviews", "package": null, "version": null}, {"name": "sms_stg__yotpo_status_updates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__users", "model.yoda.ugc_stg__review_request_tokens", "model.yoda.ugc_stg__reviews", "model.yoda.sms_stg__yotpo_status_updates"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.sql", "compiled": true, "compiled_code": "\n\n\nWITH users AS (\n SELECT yotpo_app_key, id\n FROM dev_dkruh1.sms_stg__users\n WHERE \n yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n \n), review_request_tokens AS (\n SELECT \n token, review_id, review_source_type_id\n FROM dev_dkruh1.ugc_stg__review_request_tokens\n WHERE token IS NOT NULL AND review_source_type_id IN (18, 19, 25, 26, 30)\n), reviews AS (\n SELECT\n id, app_key, score, created_at\n FROM dev_dkruh1.ugc_stg__reviews\n \n), reviews_with_tokens AS (\n SELECT\n rrt.token,\n rrt.review_id,\n rrt.review_source_type_id,\n r.app_key,\n r.created_at\n FROM review_request_tokens AS rrt\n LEFT JOIN reviews AS r \n ON rrt.review_id = r.id\n), sms_reviews_status_updates AS (\n SELECT \n LAST(u.id) AS smsbump_user_id,\n LAST(u.yotpo_app_key) AS app_key,\n LAST(ysu.flow_id) AS flow_id,\n ysu.uuid AS review_token,\n FIRST(ysu.queue_id) AS queue_id,\n FIRST(ysu.created) AS created,\n CASE \n WHEN FIRST(ysu.status) = 'pending' AND FIRST(queue_id) = 0 AND FIRST(flow_id) != 0\n THEN 'email'\n ELSE 'sms'\n END AS sms_source\n FROM dev_dkruh1.sms_stg__yotpo_status_updates AS ysu\n INNER JOIN users AS u ON u.id = ysu.user_id\n WHERE flow_id != 0\n GROUP BY uuid\n), source AS (\n SELECT\n srsu.smsbump_user_id,\n srsu.app_key,\n srsu.flow_id,\n rwt.review_id,\n rwt.created_at as review_created,\n srsu.created as message_prepare,\n CASE \n WHEN rwt.review_source_type_id = 30\n THEN 'sms_collect_review'\n ELSE srsu.sms_source\n END AS sms_source\n FROM sms_reviews_status_updates AS srsu\n INNER JOIN reviews_with_tokens AS rwt \n ON rwt.token = srsu.review_token\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__sms_loyalty_campaigns": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__sms_loyalty_campaigns", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.sql", "unique_id": "model.yoda.sms_stg__sms_loyalty_campaigns", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns", "sms_stg__sms_loyalty_campaigns"], "alias": "sms_stg__sms_loyalty_campaigns", "checksum": {"name": "sha256", "checksum": "8d61f6f908a6ac0cfd0447944762d01f0631d6b6f0fa33a94658625b7855d325"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms loyalty campaigns", "columns": {"user_id": {"name": "user_id", "description": "merchant user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.689426, "relation_name": "dev_dkruh1.sms_stg__sms_loyalty_campaigns", "raw_code": "WITH users AS (\n SELECT id, yotpo_app_key AS store_id\n FROM {{ ref('sms_stg__users') }}\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), default_predefined_messages AS (\n SELECT *\n FROM {{ ref('sms_stg__default_predefined_messages') }}\n where category = 'yotpo-loyalty'\n), source AS (\n SELECT \n cr.user_id, \n u.store_id, \n cr.campaign_id, \n CASE\n WHEN sub_category = 'reward-program'\n THEN 112\n WHEN sub_category = 'vip-tier'\n THEN 103\n WHEN sub_category = 'redemption-reminder'\n THEN 111\n WHEN sub_category = 'free-shipping'\n THEN 110\n WHEN sub_category = 'redeem-points'\n THEN 97\n WHEN sub_category = 'double-points'\n THEN 510\n END AS synergy_id \n FROM {{ ref('sms_stg__campaign_relations') }} cr\n INNER JOIN default_predefined_messages dpm \n ON dpm.id = cr.resource_id\n INNER JOIN users u \n ON u.id = cr.user_id\n WHERE cr.resource_type = 'DefaultPredefinedMessages'\n AND dpm.sub_category in (\n 'reward-program', 'vip-tier', 'redemption-reminder', 'free-shipping', 'redeem-points', 'double-points'\n )\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__users", "package": null, "version": null}, {"name": "sms_stg__default_predefined_messages", "package": null, "version": null}, {"name": "sms_stg__campaign_relations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__users", "model.yoda.sms_stg__default_predefined_messages", "model.yoda.sms_stg__campaign_relations"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.sql", "compiled": true, "compiled_code": "WITH users AS (\n SELECT id, yotpo_app_key AS store_id\n FROM dev_dkruh1.sms_stg__users\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), default_predefined_messages AS (\n SELECT *\n FROM dev_dkruh1.sms_stg__default_predefined_messages\n where category = 'yotpo-loyalty'\n), source AS (\n SELECT \n cr.user_id, \n u.store_id, \n cr.campaign_id, \n CASE\n WHEN sub_category = 'reward-program'\n THEN 112\n WHEN sub_category = 'vip-tier'\n THEN 103\n WHEN sub_category = 'redemption-reminder'\n THEN 111\n WHEN sub_category = 'free-shipping'\n THEN 110\n WHEN sub_category = 'redeem-points'\n THEN 97\n WHEN sub_category = 'double-points'\n THEN 510\n END AS synergy_id \n FROM dev_dkruh1.sms_stg__campaign_relations cr\n INNER JOIN default_predefined_messages dpm \n ON dpm.id = cr.resource_id\n INNER JOIN users u \n ON u.id = cr.user_id\n WHERE cr.resource_type = 'DefaultPredefinedMessages'\n AND dpm.sub_category in (\n 'reward-program', 'vip-tier', 'redemption-reminder', 'free-shipping', 'redeem-points', 'double-points'\n )\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__sms_loyalty_campaigns_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__sms_loyalty_campaigns_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.sql", "unique_id": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "sms_stg__sms_loyalty_campaigns_kpi"], "alias": "sms_stg__sms_loyalty_campaigns_kpi", "checksum": {"name": "sha256", "checksum": "6de44a3604b87669dc7417fc7119d96b879690927e742a73ea94c71fd5bbe348"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms loyalty campaigns kpi private table", "columns": {"synergy_id": {"name": "synergy_id", "description": "synergy id from google docs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "campaign_id": {"name": "campaign_id", "description": "campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "sms/email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "smsbump merchant id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "redemption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "redemption id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "points value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.7352011, "relation_name": "dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi", "raw_code": "WITH loyalty_campaigns_from_templates AS (\n SELECT user_id, store_id, campaign_id, synergy_id\n FROM {{ ref('sms_stg__sms_loyalty_campaigns') }}\n WHERE synergy_id != 112 \n AND synergy_id != 510\n), custom_loyalty_campaigns AS (\n SELECT user_id, store_id, campaign_id, synergy_id\n FROM {{ ref('sms_stg__sms_loyalty_custom_campaigns') }}\n), loyalty_campaigns AS (\n SELECT * FROM loyalty_campaigns_from_templates\n UNION\n SELECT * FROM custom_loyalty_campaigns\n), shopify_analytics_orders AS (\n SELECT customer_id, order_id, user_id, campaign_id\n FROM {{ ref('sms_stg__shopify_analytics_orders') }}\n), shopify_campaign_orders AS (\n SELECT sco.order_id, sco.phone, sco.channel, sco.campaign_id, sco.user_id\n FROM {{ ref('sms_stg__shopify_campaign_orders') }} AS sco\n INNER JOIN shopify_analytics_orders sao ON sao.order_id = sco.order_id AND sao.campaign_id = sco.campaign_id\n), loyalty_campaign_orders AS (\n SELECT \n FIRST(lc.user_id) AS user_id, \n FIRST(lc.store_id) AS store_id, \n FIRST(lc.campaign_id) AS campaign_id, \n FIRST(lc.synergy_id) AS synergy_id,\n sco.order_id AS order_id,\n FIRST(sco.phone) AS phone,\n FIRST(sco.channel) AS channel\n FROM loyalty_campaigns lc\n INNER JOIN shopify_campaign_orders sco\n ON sco.campaign_id = lc.campaign_id\n AND sco.user_id = lc.user_id\n GROUP BY sco.order_id\n), loyalty_redeemed_purchases AS (\n SELECT\n FIRST(app_key) AS app_key, \n FIRST(external_customer_id) AS external_customer_id, \n FIRST(customer_email) AS customer_email,\n FIRST(order_total) AS order_total, \n external_order_id, \n FIRST(redemption_id) AS redemption_id,\n FIRST(amount_deducted_points) AS amount_deducted_points\n FROM {{ ref('loyalty__redeemed_purchases') }}\n WHERE external_customer_id IS NOT NULL\n GROUP BY external_order_id\n), source (\n SELECT\n lco.synergy_id,\n lco.campaign_id,\n lco.order_id,\n lco.channel,\n lco.user_id,\n 'redemption' AS action_type,\n rp.redemption_id AS action_id, \n 'points' AS action_attribute_type,\n rp.amount_deducted_points AS action_attribute_value,\n rp.app_key,\n rp.customer_email, \n rp.external_customer_id\n FROM loyalty_redeemed_purchases AS rp\n INNER JOIN loyalty_campaign_orders AS lco \n ON rp.app_key = lco.store_id\n AND rp.external_order_id = lco.order_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns", "package": null, "version": null}, {"name": "sms_stg__sms_loyalty_custom_campaigns", "package": null, "version": null}, {"name": "sms_stg__shopify_analytics_orders", "package": null, "version": null}, {"name": "sms_stg__shopify_campaign_orders", "package": null, "version": null}, {"name": "loyalty__redeemed_purchases", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns", "model.yoda.sms_stg__sms_loyalty_custom_campaigns", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__shopify_campaign_orders", "model.yoda.loyalty__redeemed_purchases"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.sql", "compiled": true, "compiled_code": "WITH loyalty_campaigns_from_templates AS (\n SELECT user_id, store_id, campaign_id, synergy_id\n FROM dev_dkruh1.sms_stg__sms_loyalty_campaigns\n WHERE synergy_id != 112 \n AND synergy_id != 510\n), custom_loyalty_campaigns AS (\n SELECT user_id, store_id, campaign_id, synergy_id\n FROM dev_dkruh1.sms_stg__sms_loyalty_custom_campaigns\n), loyalty_campaigns AS (\n SELECT * FROM loyalty_campaigns_from_templates\n UNION\n SELECT * FROM custom_loyalty_campaigns\n), shopify_analytics_orders AS (\n SELECT customer_id, order_id, user_id, campaign_id\n FROM dev_dkruh1.sms_stg__shopify_analytics_orders\n), shopify_campaign_orders AS (\n SELECT sco.order_id, sco.phone, sco.channel, sco.campaign_id, sco.user_id\n FROM dev_dkruh1.sms_stg__shopify_campaign_orders AS sco\n INNER JOIN shopify_analytics_orders sao ON sao.order_id = sco.order_id AND sao.campaign_id = sco.campaign_id\n), loyalty_campaign_orders AS (\n SELECT \n FIRST(lc.user_id) AS user_id, \n FIRST(lc.store_id) AS store_id, \n FIRST(lc.campaign_id) AS campaign_id, \n FIRST(lc.synergy_id) AS synergy_id,\n sco.order_id AS order_id,\n FIRST(sco.phone) AS phone,\n FIRST(sco.channel) AS channel\n FROM loyalty_campaigns lc\n INNER JOIN shopify_campaign_orders sco\n ON sco.campaign_id = lc.campaign_id\n AND sco.user_id = lc.user_id\n GROUP BY sco.order_id\n), loyalty_redeemed_purchases AS (\n SELECT\n FIRST(app_key) AS app_key, \n FIRST(external_customer_id) AS external_customer_id, \n FIRST(customer_email) AS customer_email,\n FIRST(order_total) AS order_total, \n external_order_id, \n FIRST(redemption_id) AS redemption_id,\n FIRST(amount_deducted_points) AS amount_deducted_points\n FROM dev_dkruh1.loyalty__redeemed_purchases\n WHERE external_customer_id IS NOT NULL\n GROUP BY external_order_id\n), source (\n SELECT\n lco.synergy_id,\n lco.campaign_id,\n lco.order_id,\n lco.channel,\n lco.user_id,\n 'redemption' AS action_type,\n rp.redemption_id AS action_id, \n 'points' AS action_attribute_type,\n rp.amount_deducted_points AS action_attribute_value,\n rp.app_key,\n rp.customer_email, \n rp.external_customer_id\n FROM loyalty_redeemed_purchases AS rp\n INNER JOIN loyalty_campaign_orders AS lco \n ON rp.app_key = lco.store_id\n AND rp.external_order_id = lco.order_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__sms_loyalty_custom_campaigns": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__sms_loyalty_custom_campaigns", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.sql", "unique_id": "model.yoda.sms_stg__sms_loyalty_custom_campaigns", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_custom_campaigns", "sms_stg__sms_loyalty_custom_campaigns"], "alias": "sms_stg__sms_loyalty_custom_campaigns", "checksum": {"name": "sha256", "checksum": "eac64ab559849fb30f4703b496db61c986e7f1062314a37ba8b7c6c4078b6ac2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms custom campaigns with loyalty parts", "columns": {"campaign_id": {"name": "campaign_id", "description": "campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "SMSBump user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "merchant yotpo app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs file", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.84504, "relation_name": "dev_dkruh1.sms_stg__sms_loyalty_custom_campaigns", "raw_code": "WITH users AS (\n SELECT id, yotpo_app_key AS store_id\n FROM {{ ref('sms_stg__users') }}\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), loyalty_template_campaigns AS (\n SELECT campaign_id\n FROM {{ ref('sms_stg__sms_loyalty_campaigns') }}\n), campaign_lists AS (\n SELECT campaign_id, list_id\n FROM {{ ref('sms_stg__campaign_lists') }}\n), campaigns AS (\n SELECT id, user_id, list_id\n FROM {{ ref('sms_stg__campaigns') }}\n), lists AS (\n SELECT id, segment_id\n FROM {{ ref('sms_stg__lists') }}\n), shopify_segments AS (\n SELECT id, segment_rules\n FROM {{ ref('sms_stg__shopify_segments') }}\n), custom_loyalty_campaigns AS (\n SELECT\n campaigns.id AS campaign_id,\n FIRST(campaigns.user_id) AS user_id,\n FIRST(users.store_id) AS store_id\n FROM campaigns \n INNER JOIN users ON users.id = campaigns.user_id\n LEFT JOIN campaign_lists ON campaigns.id = campaign_lists.campaign_id \n INNER JOIN lists ON campaigns.list_id = lists.id OR campaign_lists.list_id = lists.id\n INNER JOIN shopify_segments ON shopify_segments.id = lists.segment_id\n WHERE shopify_segments.segment_rules like '%loyalty%' \n AND shopify_segments.segment_rules not like '%loyaltylion%'\n GROUP BY \n campaigns.id\n), source AS (\n SELECT\n campaign_id,\n user_id,\n store_id, \n 143 AS synergy_id\n FROM custom_loyalty_campaigns\n WHERE campaign_id NOT IN (SELECT campaign_id FROM loyalty_template_campaigns)\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__users", "package": null, "version": null}, {"name": "sms_stg__sms_loyalty_campaigns", "package": null, "version": null}, {"name": "sms_stg__campaign_lists", "package": null, "version": null}, {"name": "sms_stg__campaigns", "package": null, "version": null}, {"name": "sms_stg__lists", "package": null, "version": null}, {"name": "sms_stg__shopify_segments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__users", "model.yoda.sms_stg__sms_loyalty_campaigns", "model.yoda.sms_stg__campaign_lists", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__lists", "model.yoda.sms_stg__shopify_segments"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.sql", "compiled": true, "compiled_code": "WITH users AS (\n SELECT id, yotpo_app_key AS store_id\n FROM dev_dkruh1.sms_stg__users\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), loyalty_template_campaigns AS (\n SELECT campaign_id\n FROM dev_dkruh1.sms_stg__sms_loyalty_campaigns\n), campaign_lists AS (\n SELECT campaign_id, list_id\n FROM dev_dkruh1.sms_stg__campaign_lists\n), campaigns AS (\n SELECT id, user_id, list_id\n FROM dev_dkruh1.sms_stg__campaigns\n), lists AS (\n SELECT id, segment_id\n FROM dev_dkruh1.sms_stg__lists\n), shopify_segments AS (\n SELECT id, segment_rules\n FROM dev_dkruh1.sms_stg__shopify_segments\n), custom_loyalty_campaigns AS (\n SELECT\n campaigns.id AS campaign_id,\n FIRST(campaigns.user_id) AS user_id,\n FIRST(users.store_id) AS store_id\n FROM campaigns \n INNER JOIN users ON users.id = campaigns.user_id\n LEFT JOIN campaign_lists ON campaigns.id = campaign_lists.campaign_id \n INNER JOIN lists ON campaigns.list_id = lists.id OR campaign_lists.list_id = lists.id\n INNER JOIN shopify_segments ON shopify_segments.id = lists.segment_id\n WHERE shopify_segments.segment_rules like '%loyalty%' \n AND shopify_segments.segment_rules not like '%loyaltylion%'\n GROUP BY \n campaigns.id\n), source AS (\n SELECT\n campaign_id,\n user_id,\n store_id, \n 143 AS synergy_id\n FROM custom_loyalty_campaigns\n WHERE campaign_id NOT IN (SELECT campaign_id FROM loyalty_template_campaigns)\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__sms_loyalty_flows_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__sms_loyalty_flows_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.sql", "unique_id": "model.yoda.sms_stg__sms_loyalty_flows_kpi", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_flows_kpi", "sms_stg__sms_loyalty_flows_kpi"], "alias": "sms_stg__sms_loyalty_flows_kpi", "checksum": {"name": "sha256", "checksum": "bb350165a25e8ae0a1f055909c3e6c1e0dd26366cd8e6beb3ed7a9b53feabcb7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms loyalty flows kpi", "columns": {"order_created": {"name": "order_created", "description": "order created date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "flow_id": {"name": "flow_id", "description": "flow id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "SMSBump user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "redemption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "redemption id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "points value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082688.8941162, "relation_name": "dev_dkruh1.sms_stg__sms_loyalty_flows_kpi", "raw_code": "WITH users AS (\n SELECT id, yotpo_app_key\n FROM {{ ref('sms_stg__users') }}\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), shopify_analytics_orders AS (\n SELECT customer_id, order_id, user_id, flow_id\n FROM {{ ref('sms_stg__shopify_analytics_orders') }}\n), shopify_flows_orders AS (\n SELECT sfo.user_id, sfo.flow_id, sfo.order_id, sfo.phone, sfo.created, sfo.shopify_customer_id\n FROM {{ ref('sms_stg__shopify_flows_orders') }} AS sfo\n INNER JOIN shopify_analytics_orders AS sao ON sfo.order_id = sao.order_id AND sfo.flow_id = sao.flow_id\n), sms_flows_orders AS (\n SELECT\n FIRST(u.yotpo_app_key) AS store_id,\n FIRST(f.user_id) AS user_id,\n FIRST(f.id) AS flow_id,\n FIRST(sfo.phone) AS customer_phone_number,\n sfo.order_id AS order_id,\n FIRST(sfo.shopify_customer_id) AS customer_external_id,\n MAX(sfo.created) AS order_created,\n CASE\n WHEN FIRST(f.flow_trigger) = 'integrations/swell_redemption_reminder'\n THEN 77\n WHEN FIRST(f.flow_trigger) = 'integrations/swell_points_reminder'\n THEN 80\n WHEN FIRST(f.flow_trigger) = 'integrations/swell_tier_earned'\n THEN 78\n WHEN FIRST(f.flow_trigger) = 'integrations/swell_birthday'\n THEN 79\n WHEN FIRST(f.flow_trigger) = 'integrations/cdp_optin_status_changed'\n THEN 81\n WHEN FIRST(f.flow_trigger) = 'integrations/cdp_redemption_created'\n THEN 82\n WHEN FIRST(f.flow_trigger) = 'Synergy/PointsAboutToExpireReminder'\n THEN 163\n ELSE 142\n END AS synergy_id\n FROM {{ ref('sms_stg__flows') }} AS f\n INNER JOIN users AS u ON f.user_id = u.id \n INNER JOIN shopify_flows_orders AS sfo ON sfo.user_id = f.user_id AND sfo.flow_id = f.id\n WHERE f.flow_trigger IN (\n 'integrations/swell_tier_earned', 'integrations/swell_birthday', \n 'integrations/swell_redemption_reminder', 'integrations/swell_points_reminder', \n 'integrations/cdp_optin_status_changed', 'integrations/cdp_redemption_created', \n 'Synergy/PointsAboutToExpireReminder'\n ) OR (\n flow_trigger NOT IN (\n 'integrations/swell_tier_earned', 'integrations/swell_birthday', \n 'integrations/swell_redemption_reminder', 'integrations/swell_points_reminder', \n 'integrations/cdp_optin_status_changed', 'integrations/cdp_redemption_created', \n 'Synergy/PointsAboutToExpireReminder'\n ) AND (\n flow_settings LIKE '%\"field\":\"loyalty.%'\n OR flow_settings LIKE '%{Loyalty points balance}%'\n OR flow_settings LIKE '%{Loyalty points expiration}%'\n OR flow_settings LIKE '%{Loyalty credit balance}%'\n OR flow_settings LIKE '%{Loyalty tier name}%'\n OR flow_settings LIKE '%{Loyalty tier expiration}%'\n OR flow_settings LIKE '%{Loyalty points in tier}%'\n OR flow_settings LIKE '%{Loyalty amount spent in tier (USD)}%'\n OR flow_settings LIKE '%{Loyalty points needed to maintain tier}%'\n OR flow_settings LIKE '%{Loyalty amount needed to maintain tier (USD)}%'\n OR flow_settings LIKE '%{Loyalty points needed for next tier}%'\n OR flow_settings LIKE '%{Loyalty amount needed for next tier (USD)}%'\n OR flow_settings LIKE '%{RewardRedemptionURL}%'\n OR flow_settings LIKE '%{CostInPoints}%'\n OR flow_settings LIKE '%{RedeemableReward}%'\n )\n )\n GROUP BY sfo.order_id\n), loyalty_redeemed_purchases AS (\n SELECT\n FIRST(app_key) AS app_key, \n FIRST(external_customer_id) AS external_customer_id, \n FIRST(customer_email) AS customer_email,\n FIRST(order_total) AS order_total, \n external_order_id, \n FIRST(redemption_id) AS redemption_id,\n FIRST(amount_deducted_points) AS amount_deducted_points\n FROM {{ ref('loyalty__redeemed_purchases') }}\n GROUP BY external_order_id\n), source AS (\n SELECT\n sfo.order_created,\n sfo.flow_id,\n sfo.user_id,\n sfo.synergy_id,\n sfo.order_id,\n CASE\n WHEN sfo.synergy_id = 82\n THEN STRING(NULL)\n ELSE 'redemption'\n END AS action_type,\n CASE\n WHEN sfo.synergy_id = 82\n THEN BIGINT(NULL)\n ELSE rp.redemption_id\n END AS action_id, \n CASE\n WHEN sfo.synergy_id = 82\n THEN STRING(NULL)\n ELSE 'points'\n END AS action_attribute_type,\n CASE\n WHEN sfo.synergy_id = 82\n THEN BIGINT(NULL)\n ELSE rp.amount_deducted_points\n END AS action_attribute_value,\n rp.app_key,\n rp.customer_email, \n sfo.customer_phone_number,\n sfo.customer_external_id\n FROM sms_flows_orders AS sfo\n INNER JOIN loyalty_redeemed_purchases AS rp\n ON rp.app_key = sfo.store_id\n AND rp.external_order_id = sfo.order_id\n AND rp.external_customer_id = sfo.customer_external_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__users", "package": null, "version": null}, {"name": "sms_stg__shopify_analytics_orders", "package": null, "version": null}, {"name": "sms_stg__shopify_flows_orders", "package": null, "version": null}, {"name": "sms_stg__flows", "package": null, "version": null}, {"name": "loyalty__redeemed_purchases", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__users", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__shopify_flows_orders", "model.yoda.sms_stg__flows", "model.yoda.loyalty__redeemed_purchases"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.sql", "compiled": true, "compiled_code": "WITH users AS (\n SELECT id, yotpo_app_key\n FROM dev_dkruh1.sms_stg__users\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), shopify_analytics_orders AS (\n SELECT customer_id, order_id, user_id, flow_id\n FROM dev_dkruh1.sms_stg__shopify_analytics_orders\n), shopify_flows_orders AS (\n SELECT sfo.user_id, sfo.flow_id, sfo.order_id, sfo.phone, sfo.created, sfo.shopify_customer_id\n FROM dev_dkruh1.sms_stg__shopify_flows_orders AS sfo\n INNER JOIN shopify_analytics_orders AS sao ON sfo.order_id = sao.order_id AND sfo.flow_id = sao.flow_id\n), sms_flows_orders AS (\n SELECT\n FIRST(u.yotpo_app_key) AS store_id,\n FIRST(f.user_id) AS user_id,\n FIRST(f.id) AS flow_id,\n FIRST(sfo.phone) AS customer_phone_number,\n sfo.order_id AS order_id,\n FIRST(sfo.shopify_customer_id) AS customer_external_id,\n MAX(sfo.created) AS order_created,\n CASE\n WHEN FIRST(f.flow_trigger) = 'integrations/swell_redemption_reminder'\n THEN 77\n WHEN FIRST(f.flow_trigger) = 'integrations/swell_points_reminder'\n THEN 80\n WHEN FIRST(f.flow_trigger) = 'integrations/swell_tier_earned'\n THEN 78\n WHEN FIRST(f.flow_trigger) = 'integrations/swell_birthday'\n THEN 79\n WHEN FIRST(f.flow_trigger) = 'integrations/cdp_optin_status_changed'\n THEN 81\n WHEN FIRST(f.flow_trigger) = 'integrations/cdp_redemption_created'\n THEN 82\n WHEN FIRST(f.flow_trigger) = 'Synergy/PointsAboutToExpireReminder'\n THEN 163\n ELSE 142\n END AS synergy_id\n FROM dev_dkruh1.sms_stg__flows AS f\n INNER JOIN users AS u ON f.user_id = u.id \n INNER JOIN shopify_flows_orders AS sfo ON sfo.user_id = f.user_id AND sfo.flow_id = f.id\n WHERE f.flow_trigger IN (\n 'integrations/swell_tier_earned', 'integrations/swell_birthday', \n 'integrations/swell_redemption_reminder', 'integrations/swell_points_reminder', \n 'integrations/cdp_optin_status_changed', 'integrations/cdp_redemption_created', \n 'Synergy/PointsAboutToExpireReminder'\n ) OR (\n flow_trigger NOT IN (\n 'integrations/swell_tier_earned', 'integrations/swell_birthday', \n 'integrations/swell_redemption_reminder', 'integrations/swell_points_reminder', \n 'integrations/cdp_optin_status_changed', 'integrations/cdp_redemption_created', \n 'Synergy/PointsAboutToExpireReminder'\n ) AND (\n flow_settings LIKE '%\"field\":\"loyalty.%'\n OR flow_settings LIKE '%{Loyalty points balance}%'\n OR flow_settings LIKE '%{Loyalty points expiration}%'\n OR flow_settings LIKE '%{Loyalty credit balance}%'\n OR flow_settings LIKE '%{Loyalty tier name}%'\n OR flow_settings LIKE '%{Loyalty tier expiration}%'\n OR flow_settings LIKE '%{Loyalty points in tier}%'\n OR flow_settings LIKE '%{Loyalty amount spent in tier (USD)}%'\n OR flow_settings LIKE '%{Loyalty points needed to maintain tier}%'\n OR flow_settings LIKE '%{Loyalty amount needed to maintain tier (USD)}%'\n OR flow_settings LIKE '%{Loyalty points needed for next tier}%'\n OR flow_settings LIKE '%{Loyalty amount needed for next tier (USD)}%'\n OR flow_settings LIKE '%{RewardRedemptionURL}%'\n OR flow_settings LIKE '%{CostInPoints}%'\n OR flow_settings LIKE '%{RedeemableReward}%'\n )\n )\n GROUP BY sfo.order_id\n), loyalty_redeemed_purchases AS (\n SELECT\n FIRST(app_key) AS app_key, \n FIRST(external_customer_id) AS external_customer_id, \n FIRST(customer_email) AS customer_email,\n FIRST(order_total) AS order_total, \n external_order_id, \n FIRST(redemption_id) AS redemption_id,\n FIRST(amount_deducted_points) AS amount_deducted_points\n FROM dev_dkruh1.loyalty__redeemed_purchases\n GROUP BY external_order_id\n), source AS (\n SELECT\n sfo.order_created,\n sfo.flow_id,\n sfo.user_id,\n sfo.synergy_id,\n sfo.order_id,\n CASE\n WHEN sfo.synergy_id = 82\n THEN STRING(NULL)\n ELSE 'redemption'\n END AS action_type,\n CASE\n WHEN sfo.synergy_id = 82\n THEN BIGINT(NULL)\n ELSE rp.redemption_id\n END AS action_id, \n CASE\n WHEN sfo.synergy_id = 82\n THEN STRING(NULL)\n ELSE 'points'\n END AS action_attribute_type,\n CASE\n WHEN sfo.synergy_id = 82\n THEN BIGINT(NULL)\n ELSE rp.amount_deducted_points\n END AS action_attribute_value,\n rp.app_key,\n rp.customer_email, \n sfo.customer_phone_number,\n sfo.customer_external_id\n FROM sms_flows_orders AS sfo\n INNER JOIN loyalty_redeemed_purchases AS rp\n ON rp.app_key = sfo.store_id\n AND rp.external_order_id = sfo.order_id\n AND rp.external_customer_id = sfo.customer_external_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__sms_reviews_flows_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__sms_reviews_flows_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.sql", "unique_id": "model.yoda.sms_stg__sms_reviews_flows_kpi", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_reviews_flows_kpi", "sms_stg__sms_reviews_flows_kpi"], "alias": "sms_stg__sms_reviews_flows_kpi", "checksum": {"name": "sha256", "checksum": "c4d19b63f6469f92f70a64f20751964ec0f537629aa7b2ff8fd8e2baf958b4de"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "sms reviews flows kpi table", "columns": {"synergy_id": {"name": "synergy_id", "description": "synergy id from google doc file", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "action_type": {"name": "action_type", "description": "review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "review id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "rating", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "rating score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "flow id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "queue_id": {"name": "queue_id", "description": "queue id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_token": {"name": "review_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "smsbump user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082688.9701495, "relation_name": "dev_dkruh1.sms_stg__sms_reviews_flows_kpi", "raw_code": "WITH users AS (\n SELECT id, yotpo_app_key\n FROM {{ ref('sms_stg__users') }}\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), flows AS (\n SELECT \n f.id AS flow_id, \n f.user_id,\n u.yotpo_app_key,\n CASE\n WHEN flow_trigger = 'integrations/yotpo_site_review'\n THEN 109\n WHEN flow_trigger = 'integrations/yotpo_product_review'\n THEN 108\n END AS synergy_id\n FROM {{ ref('sms_stg__flows') }} AS f\n INNER JOIN users AS u ON u.id = f.user_id\n WHERE flow_trigger IN (\n 'integrations/yotpo_site_review', \n 'integrations/yotpo_product_review'\n )\n), status_updates AS (\n SELECT uuid, flow_id, user_id, `to`, queue_id\n FROM {{ ref('sms_stg__yotpo_status_updates') }}\n WHERE status = 'delivered'\n), review_request_tokens AS (\n SELECT review_id, token\n FROM {{ ref('ugc_stg__review_request_tokens') }}\n WHERE review_id IS NOT NULL\n), review_customers AS (\n SELECT id, email\n FROM {{ ref('ugc_stg__users') }}\n), shopify_customers AS (\n SELECT smsbump_user_id, customer_id, email\n FROM {{ ref('sms_stg__customers') }}\n), reviews AS (\n SELECT \n r.app_key AS app_key,\n rrt.review_id AS review_id,\n r.score AS review_score,\n rrt.token AS token,\n rc.email AS customer_email\n FROM {{ ref('ugc_stg__reviews') }} AS r\n INNER JOIN review_request_tokens AS rrt ON r.id = rrt.review_id\n LEFT JOIN review_customers AS rc ON r.user_id = rc.id\n), source AS (\n SELECT\n f.synergy_id,\n 'review' AS action_type,\n r.review_id AS action_id,\n 'rating' AS action_attribute_type,\n r.review_score AS action_attribute_value,\n f.yotpo_app_key AS app_key,\n su.`to` AS customer_phone_number,\n r.customer_email,\n c.customer_id AS customer_external_id,\n f.flow_id,\n su.queue_id,\n r.token AS review_token,\n f.user_id\n FROM flows AS f\n INNER JOIN status_updates AS su ON su.flow_id = f.flow_id AND su.user_id = f.user_id\n INNER JOIN reviews AS r ON su.uuid = r.token AND f.yotpo_app_key = r.app_key\n LEFT JOIN shopify_customers AS c ON su.user_id = c.smsbump_user_id AND r.customer_email = c.email\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__users", "package": null, "version": null}, {"name": "sms_stg__flows", "package": null, "version": null}, {"name": "sms_stg__yotpo_status_updates", "package": null, "version": null}, {"name": "ugc_stg__review_request_tokens", "package": null, "version": null}, {"name": "ugc_stg__users", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}, {"name": "ugc_stg__reviews", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__users", "model.yoda.sms_stg__flows", "model.yoda.sms_stg__yotpo_status_updates", "model.yoda.ugc_stg__review_request_tokens", "model.yoda.ugc_stg__users", "model.yoda.sms_stg__customers", "model.yoda.ugc_stg__reviews"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.sql", "compiled": true, "compiled_code": "WITH users AS (\n SELECT id, yotpo_app_key\n FROM dev_dkruh1.sms_stg__users\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), flows AS (\n SELECT \n f.id AS flow_id, \n f.user_id,\n u.yotpo_app_key,\n CASE\n WHEN flow_trigger = 'integrations/yotpo_site_review'\n THEN 109\n WHEN flow_trigger = 'integrations/yotpo_product_review'\n THEN 108\n END AS synergy_id\n FROM dev_dkruh1.sms_stg__flows AS f\n INNER JOIN users AS u ON u.id = f.user_id\n WHERE flow_trigger IN (\n 'integrations/yotpo_site_review', \n 'integrations/yotpo_product_review'\n )\n), status_updates AS (\n SELECT uuid, flow_id, user_id, `to`, queue_id\n FROM dev_dkruh1.sms_stg__yotpo_status_updates\n WHERE status = 'delivered'\n), review_request_tokens AS (\n SELECT review_id, token\n FROM dev_dkruh1.ugc_stg__review_request_tokens\n WHERE review_id IS NOT NULL\n), review_customers AS (\n SELECT id, email\n FROM dev_dkruh1.ugc_stg__users\n), shopify_customers AS (\n SELECT smsbump_user_id, customer_id, email\n FROM dev_dkruh1.sms_stg__customers\n), reviews AS (\n SELECT \n r.app_key AS app_key,\n rrt.review_id AS review_id,\n r.score AS review_score,\n rrt.token AS token,\n rc.email AS customer_email\n FROM dev_dkruh1.ugc_stg__reviews AS r\n INNER JOIN review_request_tokens AS rrt ON r.id = rrt.review_id\n LEFT JOIN review_customers AS rc ON r.user_id = rc.id\n), source AS (\n SELECT\n f.synergy_id,\n 'review' AS action_type,\n r.review_id AS action_id,\n 'rating' AS action_attribute_type,\n r.review_score AS action_attribute_value,\n f.yotpo_app_key AS app_key,\n su.`to` AS customer_phone_number,\n r.customer_email,\n c.customer_id AS customer_external_id,\n f.flow_id,\n su.queue_id,\n r.token AS review_token,\n f.user_id\n FROM flows AS f\n INNER JOIN status_updates AS su ON su.flow_id = f.flow_id AND su.user_id = f.user_id\n INNER JOIN reviews AS r ON su.uuid = r.token AND f.yotpo_app_key = r.app_key\n LEFT JOIN shopify_customers AS c ON su.user_id = c.smsbump_user_id AND r.customer_email = c.email\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__social_proof_flows_kpi": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__social_proof_flows_kpi", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.sql", "unique_id": "model.yoda.sms_stg__social_proof_flows_kpi", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__social_proof_flows_kpi", "sms_stg__social_proof_flows_kpi"], "alias": "sms_stg__social_proof_flows_kpi", "checksum": {"name": "sha256", "checksum": "4be95e83b7716e2b206a0f5ea5c7b8ddd8852a54cb900a8e9e7f211f2f7c1ce3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "abandoned checkout flows with social proof star rating shortcode", "columns": {"store_id": {"name": "store_id", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "smsbump user id (merchant)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "flow id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "shopify order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_external_id": {"name": "customer_external_id", "description": "shopify customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_created": {"name": "order_created", "description": "order created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "synergy_id": {"name": "synergy_id", "description": "synergy id from google docs file", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082689.041078, "relation_name": "dev_dkruh1.sms_stg__social_proof_flows_kpi", "raw_code": "WITH users AS (\n SELECT id, yotpo_app_key\n FROM {{ ref('sms_stg__users') }}\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), shopify_analytics_orders AS (\n SELECT customer_id, order_id, user_id, flow_id\n FROM {{ ref('sms_stg__shopify_analytics_orders') }}\n), shopify_flows_orders AS (\n SELECT sfo.phone, sfo.created, sfo.user_id, sfo.flow_id, sfo.order_id, sfo.shopify_customer_id\n FROM {{ ref('sms_stg__shopify_flows_orders') }} AS sfo\n INNER JOIN shopify_analytics_orders AS sao ON sfo.order_id = sao.order_id AND sfo.flow_id = sao.flow_id\n WHERE sfo.shopify_customer_id IS NOT NULL\n), customers AS (\n SELECT customer_id, smsbump_user_id, email\n FROM {{ ref('sms_stg__customers') }}\n), flows AS (\n SELECT id, user_id\n FROM {{ ref('sms_stg__flows') }}\n WHERE flow_trigger = 'checkouts/create' AND flow_settings LIKE '%{YotpoStarRating}%' AND user_id IS NOT NULL\n), source AS (\n SELECT\n u.yotpo_app_key AS store_id,\n f.user_id AS user_id,\n f.id AS flow_id,\n sfo.phone AS customer_phone_number,\n sfo.order_id AS order_id,\n sfo.shopify_customer_id AS customer_external_id,\n c.email AS customer_email,\n sfo.created AS order_created,\n 137 AS synergy_id\n FROM flows AS f\n INNER JOIN users AS u ON f.user_id = u.id\n INNER JOIN shopify_flows_orders AS sfo ON sfo.user_id = f.user_id AND sfo.flow_id = f.id\n INNER JOIN customers AS c ON sfo.shopify_customer_id = c.customer_id AND sfo.user_id = c.smsbump_user_id\n WHERE sfo.shopify_customer_id IS NOT NULL AND f.user_id IS NOT NULL\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__users", "package": null, "version": null}, {"name": "sms_stg__shopify_analytics_orders", "package": null, "version": null}, {"name": "sms_stg__shopify_flows_orders", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}, {"name": "sms_stg__flows", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__users", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__shopify_flows_orders", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__flows"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.sql", "compiled": true, "compiled_code": "WITH users AS (\n SELECT id, yotpo_app_key\n FROM dev_dkruh1.sms_stg__users\n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), shopify_analytics_orders AS (\n SELECT customer_id, order_id, user_id, flow_id\n FROM dev_dkruh1.sms_stg__shopify_analytics_orders\n), shopify_flows_orders AS (\n SELECT sfo.phone, sfo.created, sfo.user_id, sfo.flow_id, sfo.order_id, sfo.shopify_customer_id\n FROM dev_dkruh1.sms_stg__shopify_flows_orders AS sfo\n INNER JOIN shopify_analytics_orders AS sao ON sfo.order_id = sao.order_id AND sfo.flow_id = sao.flow_id\n WHERE sfo.shopify_customer_id IS NOT NULL\n), customers AS (\n SELECT customer_id, smsbump_user_id, email\n FROM dev_dkruh1.sms_stg__customers\n), flows AS (\n SELECT id, user_id\n FROM dev_dkruh1.sms_stg__flows\n WHERE flow_trigger = 'checkouts/create' AND flow_settings LIKE '%{YotpoStarRating}%' AND user_id IS NOT NULL\n), source AS (\n SELECT\n u.yotpo_app_key AS store_id,\n f.user_id AS user_id,\n f.id AS flow_id,\n sfo.phone AS customer_phone_number,\n sfo.order_id AS order_id,\n sfo.shopify_customer_id AS customer_external_id,\n c.email AS customer_email,\n sfo.created AS order_created,\n 137 AS synergy_id\n FROM flows AS f\n INNER JOIN users AS u ON f.user_id = u.id\n INNER JOIN shopify_flows_orders AS sfo ON sfo.user_id = f.user_id AND sfo.flow_id = f.id\n INNER JOIN customers AS c ON sfo.shopify_customer_id = c.customer_id AND sfo.user_id = c.smsbump_user_id\n WHERE sfo.shopify_customer_id IS NOT NULL AND f.user_id IS NOT NULL\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__subscription_segmentation_campaigns": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__subscription_segmentation_campaigns", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.sql", "unique_id": "model.yoda.sms_stg__subscription_segmentation_campaigns", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__subscription_segmentation_campaigns", "sms_stg__subscription_segmentation_campaigns"], "alias": "sms_stg__subscription_segmentation_campaigns", "checksum": {"name": "sha256", "checksum": "22de151cb81a3589a4134d9f524d9450df6d00c04d0afd53d48cdef762c3ce50"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "subscription segmentation campaigns", "columns": {"campaign_id": {"name": "campaign_id", "description": "campaign id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "merchant id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "campaign status", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.0930243, "relation_name": "dev_dkruh1.sms_stg__subscription_segmentation_campaigns", "raw_code": "WITH users AS (\n SELECT id, yotpo_app_key FROM {{ ref('sms_stg__users') }} \n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), segments AS (\n SELECT \n segments.id, \n segments.user_id,\n users.yotpo_app_key AS app_key\n FROM {{ ref('sms_stg__shopify_segments') }} AS segments\n INNER JOIN users ON users.id = segments.user_id\n WHERE\n segment_rules LIKE '%ys_likely_to_subscribe%' OR\n segment_rules LIKE '%ys_subscription%' OR\n segment_rules LIKE '%ys_without_subscription%'\n), lists AS (\n SELECT \n lists.id AS list_id,\n lists.is_email_list,\n segments.user_id,\n segments.id AS segment_id,\n segments.app_key\n FROM {{ ref('sms_stg__lists') }} AS lists\n INNER JOIN segments ON segments.id = lists.segment_id and segments.user_id = lists.user_id\n), source AS (\n SELECT \n campaigns.id as campaign_id,\n campaigns.user_id,\n campaigns.status,\n lists.app_key\n FROM {{ ref('sms_stg__campaigns') }} AS campaigns\n INNER JOIN {{ ref('sms_stg__campaign_lists') }} AS cl ON cl.campaign_id = campaigns.id AND cl.user_id = campaigns.user_id\n INNER JOIN lists ON lists.list_id = cl.list_id AND lists.user_id = campaigns.user_id\n WHERE campaigns.channel = 'sms'\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__users", "package": null, "version": null}, {"name": "sms_stg__shopify_segments", "package": null, "version": null}, {"name": "sms_stg__lists", "package": null, "version": null}, {"name": "sms_stg__campaigns", "package": null, "version": null}, {"name": "sms_stg__campaign_lists", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__users", "model.yoda.sms_stg__shopify_segments", "model.yoda.sms_stg__lists", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__campaign_lists"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.sql", "compiled": true, "compiled_code": "WITH users AS (\n SELECT id, yotpo_app_key FROM dev_dkruh1.sms_stg__users \n WHERE yotpo_app_key IS NOT NULL AND yotpo_app_key != ''\n), segments AS (\n SELECT \n segments.id, \n segments.user_id,\n users.yotpo_app_key AS app_key\n FROM dev_dkruh1.sms_stg__shopify_segments AS segments\n INNER JOIN users ON users.id = segments.user_id\n WHERE\n segment_rules LIKE '%ys_likely_to_subscribe%' OR\n segment_rules LIKE '%ys_subscription%' OR\n segment_rules LIKE '%ys_without_subscription%'\n), lists AS (\n SELECT \n lists.id AS list_id,\n lists.is_email_list,\n segments.user_id,\n segments.id AS segment_id,\n segments.app_key\n FROM dev_dkruh1.sms_stg__lists AS lists\n INNER JOIN segments ON segments.id = lists.segment_id and segments.user_id = lists.user_id\n), source AS (\n SELECT \n campaigns.id as campaign_id,\n campaigns.user_id,\n campaigns.status,\n lists.app_key\n FROM dev_dkruh1.sms_stg__campaigns AS campaigns\n INNER JOIN dev_dkruh1.sms_stg__campaign_lists AS cl ON cl.campaign_id = campaigns.id AND cl.user_id = campaigns.user_id\n INNER JOIN lists ON lists.list_id = cl.list_id AND lists.user_id = campaigns.user_id\n WHERE campaigns.channel = 'sms'\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__subscription_sms_campaigns": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__subscription_sms_campaigns", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.sql", "unique_id": "model.yoda.sms_stg__subscription_sms_campaigns", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__subscription_sms_campaigns", "sms_stg__subscription_sms_campaigns"], "alias": "sms_stg__subscription_sms_campaigns", "checksum": {"name": "sha256", "checksum": "9754f9b9998cb208a465459a1a3889168f3a0dc913faf04fc07d88b76a546d3c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "subscription segment used in campaigns", "columns": {"sms_id": {"name": "sms_id", "description": "sms id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_number": {"name": "phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "customer external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.1074457, "relation_name": "dev_dkruh1.sms_stg__subscription_sms_campaigns", "raw_code": "WITH sms AS (\n SELECT \n sms_id,\n campaign_id,\n user_id,\n phone_number,\n customer_external_id,\n app_key\n FROM {{ ref('sms__api_calls_with_customer') }}\n WHERE campaign_id IS NOT NULL\n), orders AS (\n SELECT \n\t\tuser_id,\n\t\tcustomer_id,\n\t\torder_id,\n\t\tcampaign_id,\n\t\tchannel,\n\t\tstore_id\n FROM {{ ref('sms_stg__shopify_analytics_orders') }}\n WHERE campaign_id IS NOT NULL\n), source AS (\n SELECT \n sms.sms_id,\n orders.order_id,\n sms.app_key,\n sms.phone_number,\n sms.customer_external_id\n FROM {{ ref('sms_stg__subscription_segmentation_campaigns') }} AS ssc\n INNER JOIN sms ON sms.campaign_id = ssc.campaign_id AND sms.user_id = ssc.user_id\n LEFT JOIN orders ON sms.user_id = orders.user_id AND sms.campaign_id = orders.campaign_id AND sms.customer_external_id = orders.customer_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms__api_calls_with_customer", "package": null, "version": null}, {"name": "sms_stg__shopify_analytics_orders", "package": null, "version": null}, {"name": "sms_stg__subscription_segmentation_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms__api_calls_with_customer", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__subscription_segmentation_campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.sql", "compiled": true, "compiled_code": "WITH sms AS (\n SELECT \n sms_id,\n campaign_id,\n user_id,\n phone_number,\n customer_external_id,\n app_key\n FROM dev_dkruh1.sms__api_calls_with_customer\n WHERE campaign_id IS NOT NULL\n), orders AS (\n SELECT \n\t\tuser_id,\n\t\tcustomer_id,\n\t\torder_id,\n\t\tcampaign_id,\n\t\tchannel,\n\t\tstore_id\n FROM dev_dkruh1.sms_stg__shopify_analytics_orders\n WHERE campaign_id IS NOT NULL\n), source AS (\n SELECT \n sms.sms_id,\n orders.order_id,\n sms.app_key,\n sms.phone_number,\n sms.customer_external_id\n FROM dev_dkruh1.sms_stg__subscription_segmentation_campaigns AS ssc\n INNER JOIN sms ON sms.campaign_id = ssc.campaign_id AND sms.user_id = ssc.user_id\n LEFT JOIN orders ON sms.user_id = orders.user_id AND sms.campaign_id = orders.campaign_id AND sms.customer_external_id = orders.customer_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__subscription_upsell_flow": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__subscription_upsell_flow", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.sql", "unique_id": "model.yoda.sms_stg__subscription_upsell_flow", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__subscription_upsell_flow", "sms_stg__subscription_upsell_flow"], "alias": "sms_stg__subscription_upsell_flow", "checksum": {"name": "sha256", "checksum": "e643f62f220a239f688e68eb49374bd19523fc54ef2accfc0f0778db2bea4c90"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "post purchase subscription upsell flow with sms and/or order", "columns": {"sms_id": {"name": "sms_id", "description": "sms api calls id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "merchant app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "customer external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_created": {"name": "sms_created", "description": "sms created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_created": {"name": "order_created", "description": "order created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.125063, "relation_name": "dev_dkruh1.sms_stg__subscription_upsell_flow", "raw_code": "{% set order_create_deadline = '8' %}\n\nWITH source AS (\n SELECT \n sms.sms_id AS sms_id,\n order.order_id AS order_id,\n sms.app_key AS app_key,\n sms.phone AS customer_phone_number,\n customers.email AS customer_email,\n sms.customer_external_id AS customer_external_id,\n sms.sms_created AS sms_created,\n order.created AS order_created\n FROM {{ ref('sms_stg__subscription_upsell_flow_sms') }} AS sms\n LEFT JOIN {{ ref('sms_stg__subscription_upsell_flow_orders') }} AS order \n ON sms.flow_id = order.flow_id AND sms.user_id = order.user_id \n AND sms.phone = order.phone AND sms.row_num = order.row_num\n AND sms.sms_created < order.created\n INNER JOIN {{ ref('sms_stg__customers') }} AS customers\n ON customers.customer_id = sms.customer_external_id AND customers.smsbump_user_id = sms.user_id\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__subscription_upsell_flow_sms", "package": null, "version": null}, {"name": "sms_stg__subscription_upsell_flow_orders", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__subscription_upsell_flow_sms", "model.yoda.sms_stg__subscription_upsell_flow_orders", "model.yoda.sms_stg__customers"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.sql", "compiled": true, "compiled_code": "\n\nWITH source AS (\n SELECT \n sms.sms_id AS sms_id,\n order.order_id AS order_id,\n sms.app_key AS app_key,\n sms.phone AS customer_phone_number,\n customers.email AS customer_email,\n sms.customer_external_id AS customer_external_id,\n sms.sms_created AS sms_created,\n order.created AS order_created\n FROM dev_dkruh1.sms_stg__subscription_upsell_flow_sms AS sms\n LEFT JOIN dev_dkruh1.sms_stg__subscription_upsell_flow_orders AS order \n ON sms.flow_id = order.flow_id AND sms.user_id = order.user_id \n AND sms.phone = order.phone AND sms.row_num = order.row_num\n AND sms.sms_created < order.created\n INNER JOIN dev_dkruh1.sms_stg__customers AS customers\n ON customers.customer_id = sms.customer_external_id AND customers.smsbump_user_id = sms.user_id\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__subscription_upsell_flow_orders": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__subscription_upsell_flow_orders", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.sql", "unique_id": "model.yoda.sms_stg__subscription_upsell_flow_orders", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__subscription_upsell_flow_orders", "sms_stg__subscription_upsell_flow_orders"], "alias": "sms_stg__subscription_upsell_flow_orders", "checksum": {"name": "sha256", "checksum": "061d39d167a354bba3fc760d3eb6742cd3aa16c13d8eab9304a72ba2c023757b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "upsell flow orders", "columns": {"user_id": {"name": "user_id", "description": "smsbump user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "flow id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "order created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "shopify_customer_id": {"name": "shopify_customer_id", "description": "customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "row_num": {"name": "row_num", "description": "row number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.1409705, "relation_name": "dev_dkruh1.sms_stg__subscription_upsell_flow_orders", "raw_code": "WITH flows AS (\n SELECT id, user_id\n FROM {{ ref('sms_stg__flows') }}\n WHERE flow_trigger = 'yotpo_subscriptions/post_purchase_upsell'\n), shopify_analytics_orders AS (\n SELECT customer_id, order_id, order.user_id, flow_id\n FROM {{ ref('sms_stg__shopify_analytics_orders') }} AS order\n INNER JOIN flows ON flows.id = order.flow_id AND flows.user_id = order.user_id\n), flows_orders AS (\n SELECT sfo.user_id, sfo.flow_id, sfo.order_id, sfo.phone, sfo.created, sfo.shopify_customer_id\n FROM {{ ref('sms_stg__shopify_flows_orders') }} AS sfo\n INNER JOIN shopify_analytics_orders AS sao ON sfo.order_id = sao.order_id AND sfo.flow_id = sao.flow_id\n), source AS (\n SELECT \n user_id,\n flow_id,\n order_id, \n phone,\n created,\n shopify_customer_id,\n ROW_NUMBER() OVER (\n PARTITION BY phone\n ORDER BY flow_id, created\n ) row_num\n FROM flows_orders\n ORDER BY flow_id, phone\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms_stg__flows", "package": null, "version": null}, {"name": "sms_stg__shopify_analytics_orders", "package": null, "version": null}, {"name": "sms_stg__shopify_flows_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__flows", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__shopify_flows_orders"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.sql", "compiled": true, "compiled_code": "WITH flows AS (\n SELECT id, user_id\n FROM dev_dkruh1.sms_stg__flows\n WHERE flow_trigger = 'yotpo_subscriptions/post_purchase_upsell'\n), shopify_analytics_orders AS (\n SELECT customer_id, order_id, order.user_id, flow_id\n FROM dev_dkruh1.sms_stg__shopify_analytics_orders AS order\n INNER JOIN flows ON flows.id = order.flow_id AND flows.user_id = order.user_id\n), flows_orders AS (\n SELECT sfo.user_id, sfo.flow_id, sfo.order_id, sfo.phone, sfo.created, sfo.shopify_customer_id\n FROM dev_dkruh1.sms_stg__shopify_flows_orders AS sfo\n INNER JOIN shopify_analytics_orders AS sao ON sfo.order_id = sao.order_id AND sfo.flow_id = sao.flow_id\n), source AS (\n SELECT \n user_id,\n flow_id,\n order_id, \n phone,\n created,\n shopify_customer_id,\n ROW_NUMBER() OVER (\n PARTITION BY phone\n ORDER BY flow_id, created\n ) row_num\n FROM flows_orders\n ORDER BY flow_id, phone\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.sms_stg__subscription_upsell_flow_sms": {"database": null, "schema": "dev_dkruh1", "name": "sms_stg__subscription_upsell_flow_sms", "resource_type": "model", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.sql", "unique_id": "model.yoda.sms_stg__subscription_upsell_flow_sms", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__subscription_upsell_flow_sms", "sms_stg__subscription_upsell_flow_sms"], "alias": "sms_stg__subscription_upsell_flow_sms", "checksum": {"name": "sha256", "checksum": "d7cc113b794dc2d286a4ce038409623e560fc34d910b0d78a38b72678b50dbee"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["sms", "sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["sms"], "description": "upsell flow sms", "columns": {"sms_id": {"name": "sms_id", "description": "sms id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "smsbump user id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "flow id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_created": {"name": "sms_created", "description": "sms created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_external_id": {"name": "customer_external_id", "description": "customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "row_num": {"name": "row_num", "description": "row number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["sms"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["bears-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.1588511, "relation_name": "dev_dkruh1.sms_stg__subscription_upsell_flow_sms", "raw_code": "WITH source AS (\n SELECT \n sms_id, \n user_id, \n flow_id,\n phone_number AS phone,\n sms_created,\n customer_external_id,\n app_key,\n ROW_NUMBER() OVER (\n PARTITION BY phone_number\n ORDER BY flow_id, sms_created\n ) row_num\n FROM {{ ref('sms__api_calls_with_customer') }}\n WHERE flow_trigger = 'yotpo_subscriptions/post_purchase_upsell'\n ORDER BY flow_id, phone_number\n)\n\nSELECT * FROM source", "language": "sql", "refs": [{"name": "sms__api_calls_with_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms__api_calls_with_customer"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.sql", "compiled": true, "compiled_code": "WITH source AS (\n SELECT \n sms_id, \n user_id, \n flow_id,\n phone_number AS phone,\n sms_created,\n customer_external_id,\n app_key,\n ROW_NUMBER() OVER (\n PARTITION BY phone_number\n ORDER BY flow_id, sms_created\n ) row_num\n FROM dev_dkruh1.sms__api_calls_with_customer\n WHERE flow_trigger = 'yotpo_subscriptions/post_purchase_upsell'\n ORDER BY flow_id, phone_number\n)\n\nSELECT * FROM source", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__customer_journey_event": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__customer_journey_event", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.sql", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.sql", "unique_id": "model.yoda.subscriptions__customer_journey_event", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__customer_journey_event", "subscriptions__customer_journey_event"], "alias": "subscriptions__customer_journey_event", "checksum": {"name": "sha256", "checksum": "ccbd40525d5565e97a013d97aa02e64b77cb893fea78ed4d3d5005b5ceace02b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "Customer journey events", "columns": {"id": {"name": "id", "description": "Table identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "The store identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The customer associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_domain": {"name": "source_domain", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "The object unique identifier on which the event occured (example: for subscription product line it's the subscription contract external id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "Record created at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "Record updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "event_type": {"name": "event_type", "description": "The event description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_origin": {"name": "event_origin", "description": "Where does the event took place (Customer Portal, Shopify, SMS reply, System, Yotpo Subscriptions)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_initiator": {"name": "event_initiator", "description": "The intiator of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_time": {"name": "event_time", "description": "The event creation time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "properties": {"name": "properties", "description": "Event raw additional data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.2576568, "relation_name": "dev_dkruh1.subscriptions__customer_journey_event", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH customer_journey_event AS (\n\n SELECT \n\t\tid,\n\t\tstore_id,\n\t\tcustomer_id,\n\t\tsource_domain,\n\t\tsource_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tevent_type,\n\t\tevent_origin,\n\t\tevent_initiator,\n\t\tevent_time,\n\t\tproperties\nFROM {{ ref('subscriptions_stg__customer_journey_event') }}\n\n)\n\nSELECT * FROM customer_journey_event", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH customer_journey_event AS (\n\n SELECT \n\t\tid,\n\t\tstore_id,\n\t\tcustomer_id,\n\t\tsource_domain,\n\t\tsource_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tevent_type,\n\t\tevent_origin,\n\t\tevent_initiator,\n\t\tevent_time,\n\t\tproperties\nFROM dev_dkruh1.subscriptions_stg__customer_journey_event\n\n)\n\nSELECT * FROM customer_journey_event", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__recurrent_event_rule": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__recurrent_event_rule", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.sql", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.sql", "unique_id": "model.yoda.subscriptions__recurrent_event_rule", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__recurrent_event_rule", "subscriptions__recurrent_event_rule"], "alias": "subscriptions__recurrent_event_rule", "checksum": {"name": "sha256", "checksum": "b8c9e10f95a89be23b7100cc345e333f04d4e97032ef1109ef5697d435c0a684"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "obj_id": {"name": "obj_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "obj_type": {"name": "obj_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "next_due_date": {"name": "next_due_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "plan_interval": {"name": "plan_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "interval_count": {"name": "interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_canceled": {"name": "is_canceled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082689.2793887, "relation_name": "dev_dkruh1.subscriptions__recurrent_event_rule", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH recurrent_event_rule AS (\n SELECT * FROM {{ ref('subscriptions_stg__recurrent_event_rule') }}\n ORDER BY id\n)\n\nSELECT * FROM recurrent_event_rule", "language": "sql", "refs": [{"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH recurrent_event_rule AS (\n SELECT * FROM dev_dkruh1.subscriptions_stg__recurrent_event_rule\n ORDER BY id\n)\n\nSELECT * FROM recurrent_event_rule", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_cancelation_intent_event": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_cancelation_intent_event", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.sql", "unique_id": "model.yoda.subscriptions__snowflake_cancelation_intent_event", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_cancelation_intent_event", "subscriptions__snowflake_cancelation_intent_event"], "alias": "subscriptions__snowflake_cancelation_intent_event", "checksum": {"name": "sha256", "checksum": "bf0c0a7899855261ac67a0c536b730cbb88249e61a389528b44e33544ee4521e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_cancelation_intent_event", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": ";", "post_actions": ";", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "event_origin": {"name": "event_origin", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelation_reason_option_id": {"name": "cancelation_reason_option_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_id": {"name": "subscription_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_id": {"name": "variant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comment": {"name": "comment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resolution": {"name": "resolution", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_cancelation_intent_event", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": ";", "post_actions": ";", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_cancelation_intent_event", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": ";", "post_actions": ";", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.3595724, "relation_name": "dev_dkruh1.subscriptions__snowflake_cancelation_intent_event", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__cancelation_intent_event') }}\n\n), snowflake_cancelation_intent_event AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(event_origin as string),\n\t\tcast(cancelation_reason_option_id as bigint),\n\t\tcast(subscription_id as string),\n\t\tcast(variant_id as string),\n\t\tcast(product_id as string),\n\t\tcast(customer_id as string),\n\t\tcast(comment as string),\n\t\tcast(resolution as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_cancelation_intent_event", "language": "sql", "refs": [{"name": "subscriptions_stg__cancelation_intent_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__cancelation_intent_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__cancelation_intent_event\n\n), snowflake_cancelation_intent_event AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(event_origin as string),\n\t\tcast(cancelation_reason_option_id as bigint),\n\t\tcast(subscription_id as string),\n\t\tcast(variant_id as string),\n\t\tcast(product_id as string),\n\t\tcast(customer_id as string),\n\t\tcast(comment as string),\n\t\tcast(resolution as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_cancelation_intent_event", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_cancelation_reason_option": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_cancelation_reason_option", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.sql", "unique_id": "model.yoda.subscriptions__snowflake_cancelation_reason_option", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_cancelation_reason_option", "subscriptions__snowflake_cancelation_reason_option"], "alias": "subscriptions__snowflake_cancelation_reason_option", "checksum": {"name": "sha256", "checksum": "876c6d4635243509d6adf808b8c2c0863e4bfc4147a028d59d8c11184a742062"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_cancelation_reason_option", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": ";", "post_actions": ";", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason_text": {"name": "reason_text", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active": {"name": "is_active", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_cancelation_reason_option", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": ";", "post_actions": ";", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_cancelation_reason_option", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": ";", "post_actions": ";", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.3802588, "relation_name": "dev_dkruh1.subscriptions__snowflake_cancelation_reason_option", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__cancelation_reason_option') }}\n\n), snowflake_cancelation_reason_option AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(store_id as string),\n\t\tcast(reason_text as string),\n\t\tcast(is_active as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_cancelation_reason_option", "language": "sql", "refs": [{"name": "subscriptions_stg__cancelation_reason_option", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__cancelation_reason_option"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__cancelation_reason_option\n\n), snowflake_cancelation_reason_option AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(store_id as string),\n\t\tcast(reason_text as string),\n\t\tcast(is_active as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_cancelation_reason_option", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_recurrent_event_rule": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_recurrent_event_rule", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.sql", "unique_id": "model.yoda.subscriptions__snowflake_recurrent_event_rule", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_recurrent_event_rule", "subscriptions__snowflake_recurrent_event_rule"], "alias": "subscriptions__snowflake_recurrent_event_rule", "checksum": {"name": "sha256", "checksum": "ed7b3b8b28b270e2b93080106656aaed7546a01fbba21ddebc17a6f1fe567fed"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_recurrent_event_rule", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_recurrent_event_rule cluster by (obj_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "obj_id": {"name": "obj_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "obj_type": {"name": "obj_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "next_due_date": {"name": "next_due_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "plan_interval": {"name": "plan_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "interval_count": {"name": "interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_canceled": {"name": "is_canceled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_recurrent_event_rule", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_recurrent_event_rule cluster by (obj_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_recurrent_event_rule", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_recurrent_event_rule cluster by (obj_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082689.405028, "relation_name": "dev_dkruh1.subscriptions__snowflake_recurrent_event_rule", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions__recurrent_event_rule') }}\n\n), snowflake_recurrent_event_rule AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(obj_id as bigint),\n\t\tcast(obj_type as bigint),\n\t\tcast(next_due_date as timestamp),\n\t\tcast(plan_interval as bigint),\n\t\tcast(interval_count as bigint),\n\t\tcast(is_canceled as boolean),\n\t\tcast(is_logical_deleted as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_recurrent_event_rule", "language": "sql", "refs": [{"name": "subscriptions__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__recurrent_event_rule\n\n), snowflake_recurrent_event_rule AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(obj_id as bigint),\n\t\tcast(obj_type as bigint),\n\t\tcast(next_due_date as timestamp),\n\t\tcast(plan_interval as bigint),\n\t\tcast(interval_count as bigint),\n\t\tcast(is_canceled as boolean),\n\t\tcast(is_logical_deleted as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_recurrent_event_rule", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_status": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_status", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.sql", "unique_id": "model.yoda.subscriptions__snowflake_status", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_status", "subscriptions__snowflake_status"], "alias": "subscriptions__snowflake_status", "checksum": {"name": "sha256", "checksum": "5cdb31f5f8284fe2f81c808a93f2f4a3de355e3c1b0c63a231eef73d3d9bd7b6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_status", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_status cluster by (num);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "num": {"name": "num", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "text": {"name": "text", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_status", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_status cluster by (num);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_status", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_status cluster by (num);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082689.4258134, "relation_name": "dev_dkruh1.subscriptions__snowflake_status", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions__status') }}\n\n), snowflake_status AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(num as bigint),\n\t\tcast(text as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(is_logical_deleted as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_status", "language": "sql", "refs": [{"name": "subscriptions__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__status\n\n), snowflake_status AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(num as bigint),\n\t\tcast(text as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(is_logical_deleted as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_status", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_subscription_contract": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_subscription_contract", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.sql", "unique_id": "model.yoda.subscriptions__snowflake_subscription_contract", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_subscription_contract", "subscriptions__snowflake_subscription_contract"], "alias": "subscriptions__snowflake_subscription_contract", "checksum": {"name": "sha256", "checksum": "21aebfdaa8759914bb677459a49160ce30c415fca953ab19606f890adeae30af"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_contract", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_contract cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval": {"name": "delivery_policy_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval_count": {"name": "delivery_policy_interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval": {"name": "billing_policy_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval_count": {"name": "billing_policy_interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_order_external_id": {"name": "original_order_external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_customer_id": {"name": "external_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status_last_updated_at": {"name": "status_last_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_contract", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_contract cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_contract", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_contract cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082689.4543684, "relation_name": "dev_dkruh1.subscriptions__snowflake_subscription_contract", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_contract') }}\n\n), snowflake_subscription_contract AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(store_id as string),\n\t\tcast(external_id as bigint),\n\t\tcast(status as bigint),\n\t\tcast(delivery_policy_interval as bigint),\n\t\tcast(delivery_policy_interval_count as bigint),\n\t\tcast(billing_policy_interval as bigint),\n\t\tcast(billing_policy_interval_count as bigint),\n\t\tcast(original_order_external_id as bigint),\n\t\tcast(external_customer_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(status_last_updated_at as timestamp),\n\t\tcast(is_logical_deleted as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_contract", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_contract\n\n), snowflake_subscription_contract AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(store_id as string),\n\t\tcast(external_id as bigint),\n\t\tcast(status as bigint),\n\t\tcast(delivery_policy_interval as bigint),\n\t\tcast(delivery_policy_interval_count as bigint),\n\t\tcast(billing_policy_interval as bigint),\n\t\tcast(billing_policy_interval_count as bigint),\n\t\tcast(original_order_external_id as bigint),\n\t\tcast(external_customer_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(status_last_updated_at as timestamp),\n\t\tcast(is_logical_deleted as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_contract", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_subscription_contract_line_policy": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_subscription_contract_line_policy", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.sql", "unique_id": "model.yoda.subscriptions__snowflake_subscription_contract_line_policy", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_subscription_contract_line_policy", "subscriptions__snowflake_subscription_contract_line_policy"], "alias": "subscriptions__snowflake_subscription_contract_line_policy", "checksum": {"name": "sha256", "checksum": "05ac1248815b981f4d054de1d406d44765aaf73dda0061fee5c5de188e67ac5f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_contract_line_policy", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscription_contract_line_policy cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"subscription_contract_id": {"name": "subscription_contract_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_external_id": {"name": "product_external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_title": {"name": "product_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_title": {"name": "variant_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_policy_interval": {"name": "delivery_policy_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval_count": {"name": "delivery_policy_interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "quantity": {"name": "quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "inventory_quantity": {"name": "inventory_quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_external_id": {"name": "variant_external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_contract_line_policy", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscription_contract_line_policy cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_contract_line_policy", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscription_contract_line_policy cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082689.4784615, "relation_name": "dev_dkruh1.subscriptions__snowflake_subscription_contract_line_policy", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_contract_line_policy') }}\n\n), snowflake_subscription_contract_line_policy AS (\n\n SELECT \n\t\tcast(subscription_contract_id as bigint),\n\t\tcast(subscription_contract_external_id as bigint),\n\t\tcast(product_external_id as string),\n\t\tcast(product_title as string),\n\t\tcast(variant_title as string),\n\t\tcast(sku as string),\n\t\tcast(delivery_policy_interval as bigint),\n\t\tcast(delivery_policy_interval_count as bigint),\n\t\tcast(quantity as bigint),\n\t\tcast(inventory_quantity as bigint),\n\t\tcast(store_id as string),\n\t\tcast(variant_external_id as string)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_contract_line_policy", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_line_policy", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__subscription_contract_line_policy"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_contract_line_policy\n\n), snowflake_subscription_contract_line_policy AS (\n\n SELECT \n\t\tcast(subscription_contract_id as bigint),\n\t\tcast(subscription_contract_external_id as bigint),\n\t\tcast(product_external_id as string),\n\t\tcast(product_title as string),\n\t\tcast(variant_title as string),\n\t\tcast(sku as string),\n\t\tcast(delivery_policy_interval as bigint),\n\t\tcast(delivery_policy_interval_count as bigint),\n\t\tcast(quantity as bigint),\n\t\tcast(inventory_quantity as bigint),\n\t\tcast(store_id as string),\n\t\tcast(variant_external_id as string)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_contract_line_policy", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_subscription_contract_order": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_subscription_contract_order", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.sql", "unique_id": "model.yoda.subscriptions__snowflake_subscription_contract_order", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_subscription_contract_order", "subscriptions__snowflake_subscription_contract_order"], "alias": "subscriptions__snowflake_subscription_contract_order", "checksum": {"name": "sha256", "checksum": "9329fd960ea27db78c8894f6992a4b607bb1d866cd458a8d91afb39ef953e6b7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_contract_order", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_contract_order cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_order_id": {"name": "external_order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_contract_order", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_contract_order cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_contract_order", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_contract_order cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082689.5009053, "relation_name": "dev_dkruh1.subscriptions__snowflake_subscription_contract_order", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_contract_order') }}\n\n), snowflake_subscription_contract_order AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(store_id as string),\n\t\tcast(external_subscription_contract_id as bigint),\n\t\tcast(external_order_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(is_logical_deleted as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_contract_order", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_contract_order\n\n), snowflake_subscription_contract_order AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(store_id as string),\n\t\tcast(external_subscription_contract_id as bigint),\n\t\tcast(external_order_id as bigint),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(is_logical_deleted as bigint)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_contract_order", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_subscription_contract_order_lines": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_subscription_contract_order_lines", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.sql", "unique_id": "model.yoda.subscriptions__snowflake_subscription_contract_order_lines", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_subscription_contract_order_lines", "subscriptions__snowflake_subscription_contract_order_lines"], "alias": "subscriptions__snowflake_subscription_contract_order_lines", "checksum": {"name": "sha256", "checksum": "379a77906ffe9848af5325b611f1d4a9f156710810c569f9c9259d6595015ecd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_contract_order_lines", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscription_contract_order_lines cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"external_order_id": {"name": "external_order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_external_id": {"name": "product_external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_external_id": {"name": "variant_external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_line_total": {"name": "order_line_total", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_date": {"name": "order_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_contract_order_lines", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscription_contract_order_lines cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_contract_order_lines", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscription_contract_order_lines cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.519942, "relation_name": "dev_dkruh1.subscriptions__snowflake_subscription_contract_order_lines", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_contract_order_lines') }}\n\n), snowflake_subscription_contract_order_lines AS (\n\n SELECT \n\t\tcast(external_order_id as bigint),\n cast(external_subscription_contract_id as bigint),\n\t\tcast(product_external_id as string),\n\t\tcast(variant_external_id as string),\n\t\tcast(store_id as string),\n\t\tcast(order_line_total as double),\n cast(order_date as date)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_contract_order_lines", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order_lines", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__subscription_contract_order_lines"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_contract_order_lines\n\n), snowflake_subscription_contract_order_lines AS (\n\n SELECT \n\t\tcast(external_order_id as bigint),\n cast(external_subscription_contract_id as bigint),\n\t\tcast(product_external_id as string),\n\t\tcast(variant_external_id as string),\n\t\tcast(store_id as string),\n\t\tcast(order_line_total as double),\n cast(order_date as date)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_contract_order_lines", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_subscription_contract_status_changes": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_subscription_contract_status_changes", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_status_changes/subscriptions__snowflake_subscription_contract_status_changes.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_status_changes/subscriptions__snowflake_subscription_contract_status_changes.sql", "unique_id": "model.yoda.subscriptions__snowflake_subscription_contract_status_changes", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_subscription_contract_status_changes", "subscriptions__snowflake_subscription_contract_status_changes"], "alias": "subscriptions__snowflake_subscription_contract_status_changes", "checksum": {"name": "sha256", "checksum": "e7d67443a6f3a6a654baaa60995a879b2d1e42831834a85c0ec7c9b2d9e3ba61"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_contract_status_changes", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_contract_status_changes", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_subscription_contract_status_changes/subscriptions__snowflake_subscription_contract_status_changes.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_contract_status_changes", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.5337398, "relation_name": "dev_dkruh1.subscriptions__snowflake_subscription_contract_status_changes", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_contract_status_changes') }}\n\n), snowflake_subscription_contract_status_changes AS (\n\n SELECT \n\t\tcast(store_id as string),\n\t\tcast(external_id as bigint),\n\t\tcast(status as bigint),\n\t\tcast(status_last_updated_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_contract_status_changes", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_status_changes", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__subscription_contract_status_changes"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_subscription_contract_status_changes/subscriptions__snowflake_subscription_contract_status_changes.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_contract_status_changes\n\n), snowflake_subscription_contract_status_changes AS (\n\n SELECT \n\t\tcast(store_id as string),\n\t\tcast(external_id as bigint),\n\t\tcast(status as bigint),\n\t\tcast(status_last_updated_at as timestamp),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp),\n\t\tcast(dwh_updated_at as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_contract_status_changes", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_subscription_line_action": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_subscription_line_action", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.sql", "unique_id": "model.yoda.subscriptions__snowflake_subscription_line_action", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_subscription_line_action", "subscriptions__snowflake_subscription_line_action"], "alias": "subscriptions__snowflake_subscription_line_action", "checksum": {"name": "sha256", "checksum": "fe676ace46cf1b2ba84ed00d028953413a059214c048459a585db438176ee5fd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_line_action", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_line_action cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_line_id": {"name": "external_line_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_variant_id": {"name": "external_variant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_status": {"name": "action_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price": {"name": "total_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_line_action", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_line_action cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_subscription_line_action", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_subscription_line_action cluster by (store_id);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.559411, "relation_name": "dev_dkruh1.subscriptions__snowflake_subscription_line_action", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__subscription_line_action') }}\n\n), snowflake_subscription_line_action AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(store_id as string),\n\t\tcast(external_subscription_contract_id as string),\n\t\tcast(external_line_id as string),\n\t\tcast(external_variant_id as string),\n\t\tcast(action_type as string),\n\t\tcast(action_status as string),\n\t\tcast(quantity as string),\n\t\tcast(total_price as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_line_action", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_line_action\n\n), snowflake_subscription_line_action AS (\n\n SELECT \n\t\tcast(upsolver_schema_version as int),\n\t\tcast(id as bigint),\n\t\tcast(processing_time as timestamp),\n\t\tcast(ts_ms as timestamp),\n\t\tcast(store_id as string),\n\t\tcast(external_subscription_contract_id as string),\n\t\tcast(external_line_id as string),\n\t\tcast(external_variant_id as string),\n\t\tcast(action_type as string),\n\t\tcast(action_status as string),\n\t\tcast(quantity as string),\n\t\tcast(total_price as string),\n\t\tcast(created_at as timestamp),\n\t\tcast(updated_at as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_line_action", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_subscription_merchant_migration_date": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_subscription_merchant_migration_date", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_merchant_migration_date/subscriptions__snowflake_subscription_merchant_migration_date.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_merchant_migration_date/subscriptions__snowflake_subscription_merchant_migration_date.sql", "unique_id": "model.yoda.subscriptions__snowflake_subscription_merchant_migration_date", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_subscription_merchant_migration_date", "subscriptions__snowflake_subscription_merchant_migration_date"], "alias": "subscriptions__snowflake_subscription_merchant_migration_date", "checksum": {"name": "sha256", "checksum": "242ea9298eb38c7e893362f1f236365c829f0084f526717080cd97d448bb2bd6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscription-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_merchant_migration_date", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "migration_date": {"name": "migration_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscription-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_merchant_migration_date", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_subscription_merchant_migration_date/subscriptions__snowflake_subscription_merchant_migration_date.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscription-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_merchant_migration_date", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": false, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.5746124, "relation_name": "dev_dkruh1.subscriptions__snowflake_subscription_merchant_migration_date", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_merchant_migration_date') }}\n\n), snowflake_subscription_merchant_migration_date AS (\n\n SELECT \n\t\tcast(store_id as string),\n\t\tcast(migration_date as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_merchant_migration_date", "language": "sql", "refs": [{"name": "subscriptions__subscription_merchant_migration_date", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__subscription_merchant_migration_date"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_subscription_merchant_migration_date/subscriptions__snowflake_subscription_merchant_migration_date.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_merchant_migration_date\n\n), snowflake_subscription_merchant_migration_date AS (\n\n SELECT \n\t\tcast(store_id as string),\n\t\tcast(migration_date as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_merchant_migration_date", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_subscription_total_orders": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_subscription_total_orders", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.sql", "unique_id": "model.yoda.subscriptions__snowflake_subscription_total_orders", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_subscription_total_orders", "subscriptions__snowflake_subscription_total_orders"], "alias": "subscriptions__snowflake_subscription_total_orders", "checksum": {"name": "sha256", "checksum": "3b0285c8e3ce08813166c41684a5eab7b217a72049082b8b51c2a3a5ce977303"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_total_orders", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_total_orders cluster by (app_key);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"external_order_id": {"name": "external_order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "total_price": {"name": "total_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_currency_iso": {"name": "order_currency_iso", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_currency_iso": {"name": "account_currency_iso", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_total_orders", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_total_orders cluster by (app_key);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscriptions_total_orders", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscriptions_total_orders cluster by (app_key);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082689.595249, "relation_name": "dev_dkruh1.subscriptions__snowflake_subscription_total_orders", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_total_orders') }}\n\n), snowflake_subscription_total_orders AS (\n\n SELECT \n\t\tcast(external_order_id as string),\n\t\tcast(external_id as string),\n\t\tcast(external_customer_id as string),\n\t\tcast(order_date as date),\n\t\tcast(total_price as double),\n\t\tcast(app_key as string),\n\t\tcast(order_currency_iso as string),\n\t\tcast(account_currency_iso as string)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_total_orders", "language": "sql", "refs": [{"name": "subscriptions__subscription_total_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__subscription_total_orders"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_total_orders\n\n), snowflake_subscription_total_orders AS (\n\n SELECT \n\t\tcast(external_order_id as string),\n\t\tcast(external_id as string),\n\t\tcast(external_customer_id as string),\n\t\tcast(order_date as date),\n\t\tcast(total_price as double),\n\t\tcast(app_key as string),\n\t\tcast(order_currency_iso as string),\n\t\tcast(account_currency_iso as string)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscription_total_orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__snowflake_subscriptions_accounts": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__snowflake_subscriptions_accounts", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.sql", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.sql", "unique_id": "model.yoda.subscriptions__snowflake_subscriptions_accounts", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__snowflake_subscriptions_accounts", "subscriptions__snowflake_subscriptions_accounts"], "alias": "subscriptions__snowflake_subscriptions_accounts", "checksum": {"name": "sha256", "checksum": "a47ec2c42d099dda7f7152915eb67808c17d4b3365c168225c36d99bf19734cb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions", "yoda_snowflake"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_accounts", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscription_accounts cluster by (app_key);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions", "yoda_snowflake"], "description": "TODO: Update Table Description", "columns": {"app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_test": {"name": "is_test", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_finised": {"name": "is_finised", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "finished_date": {"name": "finished_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_product_enabled_at": {"name": "first_product_enabled_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "uninstalled": {"name": "uninstalled", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "uninstalled_at": {"name": "uninstalled_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_accounts", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscription_accounts cluster by (app_key);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions", "yoda_snowflake"], "materialized": "view", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "integration_config": {"snowflake": {"trigger_on_done": false, "properties": {"table": "subscription_accounts", "database": "YOTPO", "schema": "PUBLIC", "role": "INGESTION", "use_staging_table": true, "mode": "Overwrite", "warehouse": "INGESTION", "pre_actions": "alter table subscription_accounts cluster by (app_key);", "post_actions": "", "is_incremental": false}}}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082689.6158426, "relation_name": "dev_dkruh1.subscriptions__snowflake_subscriptions_accounts", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view')\n )\n}}\n\nWITH export_candidate AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_accounts') }}\n\n), snowflake_subscriptions_accounts AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(domain as string),\n\t\tcast(url as string),\n\t\tcast(is_test as bigint),\n\t\tcast(is_finised as boolean),\n\t\tcast(finished_date as timestamp),\n\t\tcast(first_product_enabled_at as timestamp),\n\t\tcast(uninstalled as boolean),\n\t\tcast(uninstalled_at as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscriptions_accounts", "language": "sql", "refs": [{"name": "subscriptions__subscription_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__subscription_accounts"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH export_candidate AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_accounts\n\n), snowflake_subscriptions_accounts AS (\n\n SELECT \n\t\tcast(app_key as string),\n\t\tcast(domain as string),\n\t\tcast(url as string),\n\t\tcast(is_test as bigint),\n\t\tcast(is_finised as boolean),\n\t\tcast(finished_date as timestamp),\n\t\tcast(first_product_enabled_at as timestamp),\n\t\tcast(uninstalled as boolean),\n\t\tcast(uninstalled_at as timestamp)\n\n FROM export_candidate\n\n)\n\nSELECT * FROM snowflake_subscriptions_accounts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__status": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__status", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__status/subscriptions__status.sql", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.sql", "unique_id": "model.yoda.subscriptions__status", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__status", "subscriptions__status"], "alias": "subscriptions__status", "checksum": {"name": "sha256", "checksum": "024999910931d0e66e0131cf9cb25d963de2f895e18a8109dfc29758a5e05142"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "num": {"name": "num", "description": "The status id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "text": {"name": "text", "description": "The status description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__status/subscriptions__status.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082689.6340463, "relation_name": "dev_dkruh1.subscriptions__status", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH status AS (\n SELECT * FROM {{ ref('subscriptions_stg__status') }}\n ORDER BY num\n)\n\nSELECT * FROM status", "language": "sql", "refs": [{"name": "subscriptions_stg__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__status/subscriptions__status.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH status AS (\n SELECT * FROM dev_dkruh1.subscriptions_stg__status\n ORDER BY num\n)\n\nSELECT * FROM status", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__store_customers_exports": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__store_customers_exports", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.sql", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.sql", "unique_id": "model.yoda.subscriptions__store_customers_exports", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__store_customers_exports", "subscriptions__store_customers_exports"], "alias": "subscriptions__store_customers_exports", "checksum": {"name": "sha256", "checksum": "51deac072ee03d7d9909a0ea426d220a650f241a69fc43fe7d46962c31309080"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "bisons", "created_by": "iwo.hajduk@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "Data source of subscriptions customers data, taken from csv files produced by the app code\nExported to looker for live analytics scrapping purposes (by Yotpo clients)", "columns": {"BILLING_INTERVAL_FREQUENCY": {"name": "BILLING_INTERVAL_FREQUENCY", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "BILLING_INTERVAL_UNIT": {"name": "BILLING_INTERVAL_UNIT", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "CREATED_AT": {"name": "CREATED_AT", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "CURRENCY_CODE": {"name": "CURRENCY_CODE", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(3)"}, "CUSTOMER_EMAIL": {"name": "CUSTOMER_EMAIL", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "DELIVERY_PRICE": {"name": "DELIVERY_PRICE", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "EXPIRES_AFTER_NUM_BILLING_CYCLES": {"name": "EXPIRES_AFTER_NUM_BILLING_CYCLES", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "EXTERNAL_CUSTOMER_ID": {"name": "EXTERNAL_CUSTOMER_ID", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "EXTERNAL_PRODUCT_ID": {"name": "EXTERNAL_PRODUCT_ID", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "EXTERNAL_SUBSCRIPTION_ID": {"name": "EXTERNAL_SUBSCRIPTION_ID", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "EXTERNAL_VARIANT_ID": {"name": "EXTERNAL_VARIANT_ID", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "NEXT_BILLING_DATE": {"name": "NEXT_BILLING_DATE", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ORDER_INTERVAL_FREQUENCY": {"name": "ORDER_INTERVAL_FREQUENCY", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "ORDER_INTERVAL_UNIT": {"name": "ORDER_INTERVAL_UNIT", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "PRODUCT_TITLE": {"name": "PRODUCT_TITLE", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "QUANTITY": {"name": "QUANTITY", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "RECURRING_PRICE": {"name": "RECURRING_PRICE", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(10,2)"}, "SHIPPING_ADDRESS_ADDRESS1": {"name": "SHIPPING_ADDRESS_ADDRESS1", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_ADDRESS2": {"name": "SHIPPING_ADDRESS_ADDRESS2", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_CITY": {"name": "SHIPPING_ADDRESS_CITY", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_COUNTRY": {"name": "SHIPPING_ADDRESS_COUNTRY", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_FIRST_NAME": {"name": "SHIPPING_ADDRESS_FIRST_NAME", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_LAST_NAME": {"name": "SHIPPING_ADDRESS_LAST_NAME", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_PHONE": {"name": "SHIPPING_ADDRESS_PHONE", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_PROVINCE_CODE": {"name": "SHIPPING_ADDRESS_PROVINCE_CODE", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_ZIP": {"name": "SHIPPING_ADDRESS_ZIP", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SKU": {"name": "SKU", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "STATUS": {"name": "STATUS", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "TOTAL_RECURRING_ORDERS": {"name": "TOTAL_RECURRING_ORDERS", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "UPDATED_AT": {"name": "UPDATED_AT", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "VARIANT_TITLE": {"name": "VARIANT_TITLE", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "bisons", "created_by": "iwo.hajduk@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "incremental", "meta": {"model_ownership": {"group": "subscriptions", "team": "bisons", "created_by": "iwo.hajduk@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}, "incremental_strategy": "append"}, "created_at": 1700082689.7063599, "relation_name": "dev_dkruh1.subscriptions__store_customers_exports", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append'\n )\n}}\n\nWITH staging AS (\n SELECT\n BILLING_INTERVAL_FREQUENCY,\n\t BILLING_INTERVAL_UNIT,\n\t CREATED_AT,\n\t CURRENCY_CODE,\n\t CUSTOMER_EMAIL,\n\t DELIVERY_PRICE,\n\t EXPIRES_AFTER_NUM_BILLING_CYCLES,\n\t EXTERNAL_CUSTOMER_ID,\n\t EXTERNAL_PRODUCT_ID,\n\t EXTERNAL_SUBSCRIPTION_ID,\n\t EXTERNAL_VARIANT_ID,\n\t NEXT_BILLING_DATE,\n\t ORDER_INTERVAL_FREQUENCY,\n\t ORDER_INTERVAL_UNIT,\n\t PRODUCT_TITLE,\n\t QUANTITY,\n\t RECURRING_PRICE,\n\t SHIPPING_ADDRESS_ADDRESS1,\n\t SHIPPING_ADDRESS_ADDRESS2,\n\t SHIPPING_ADDRESS_CITY,\n\t SHIPPING_ADDRESS_COUNTRY,\n\t SHIPPING_ADDRESS_FIRST_NAME,\n\t SHIPPING_ADDRESS_LAST_NAME,\n\t SHIPPING_ADDRESS_PHONE,\n\t SHIPPING_ADDRESS_PROVINCE_CODE,\n\t SHIPPING_ADDRESS_ZIP,\n\t SKU,\n\t STATUS,\n\t TOTAL_RECURRING_ORDERS,\n\t UPDATED_AT,\n\t VARIANT_TITLE\n\tFROM {{ ref('subscriptions_stg__store_customers_exports') }}\n)\n\nSELECT\n BILLING_INTERVAL_FREQUENCY,\n\tBILLING_INTERVAL_UNIT,\n\tCREATED_AT,\n\tCURRENCY_CODE,\n\tCUSTOMER_EMAIL,\n\tDELIVERY_PRICE,\n\tEXPIRES_AFTER_NUM_BILLING_CYCLES,\n\tEXTERNAL_CUSTOMER_ID,\n\tEXTERNAL_PRODUCT_ID,\n\tEXTERNAL_SUBSCRIPTION_ID,\n\tEXTERNAL_VARIANT_ID,\n\tNEXT_BILLING_DATE,\n\tORDER_INTERVAL_FREQUENCY,\n\tORDER_INTERVAL_UNIT,\n\tPRODUCT_TITLE,\n\tQUANTITY,\n\tRECURRING_PRICE,\n\tSHIPPING_ADDRESS_ADDRESS1,\n\tSHIPPING_ADDRESS_ADDRESS2,\n\tSHIPPING_ADDRESS_CITY,\n\tSHIPPING_ADDRESS_COUNTRY,\n\tSHIPPING_ADDRESS_FIRST_NAME,\n\tSHIPPING_ADDRESS_LAST_NAME,\n\tSHIPPING_ADDRESS_PHONE,\n\tSHIPPING_ADDRESS_PROVINCE_CODE,\n\tSHIPPING_ADDRESS_ZIP,\n\tSKU,\n\tSTATUS,\n\tTOTAL_RECURRING_ORDERS,\n\tUPDATED_AT,\n\tVARIANT_TITLE\nFROM staging", "language": "sql", "refs": [{"name": "subscriptions_stg__store_customers_exports", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__store_customers_exports"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.sql", "compiled": true, "compiled_code": "\n\nWITH staging AS (\n SELECT\n BILLING_INTERVAL_FREQUENCY,\n\t BILLING_INTERVAL_UNIT,\n\t CREATED_AT,\n\t CURRENCY_CODE,\n\t CUSTOMER_EMAIL,\n\t DELIVERY_PRICE,\n\t EXPIRES_AFTER_NUM_BILLING_CYCLES,\n\t EXTERNAL_CUSTOMER_ID,\n\t EXTERNAL_PRODUCT_ID,\n\t EXTERNAL_SUBSCRIPTION_ID,\n\t EXTERNAL_VARIANT_ID,\n\t NEXT_BILLING_DATE,\n\t ORDER_INTERVAL_FREQUENCY,\n\t ORDER_INTERVAL_UNIT,\n\t PRODUCT_TITLE,\n\t QUANTITY,\n\t RECURRING_PRICE,\n\t SHIPPING_ADDRESS_ADDRESS1,\n\t SHIPPING_ADDRESS_ADDRESS2,\n\t SHIPPING_ADDRESS_CITY,\n\t SHIPPING_ADDRESS_COUNTRY,\n\t SHIPPING_ADDRESS_FIRST_NAME,\n\t SHIPPING_ADDRESS_LAST_NAME,\n\t SHIPPING_ADDRESS_PHONE,\n\t SHIPPING_ADDRESS_PROVINCE_CODE,\n\t SHIPPING_ADDRESS_ZIP,\n\t SKU,\n\t STATUS,\n\t TOTAL_RECURRING_ORDERS,\n\t UPDATED_AT,\n\t VARIANT_TITLE\n\tFROM dev_dkruh1.subscriptions_stg__store_customers_exports\n)\n\nSELECT\n BILLING_INTERVAL_FREQUENCY,\n\tBILLING_INTERVAL_UNIT,\n\tCREATED_AT,\n\tCURRENCY_CODE,\n\tCUSTOMER_EMAIL,\n\tDELIVERY_PRICE,\n\tEXPIRES_AFTER_NUM_BILLING_CYCLES,\n\tEXTERNAL_CUSTOMER_ID,\n\tEXTERNAL_PRODUCT_ID,\n\tEXTERNAL_SUBSCRIPTION_ID,\n\tEXTERNAL_VARIANT_ID,\n\tNEXT_BILLING_DATE,\n\tORDER_INTERVAL_FREQUENCY,\n\tORDER_INTERVAL_UNIT,\n\tPRODUCT_TITLE,\n\tQUANTITY,\n\tRECURRING_PRICE,\n\tSHIPPING_ADDRESS_ADDRESS1,\n\tSHIPPING_ADDRESS_ADDRESS2,\n\tSHIPPING_ADDRESS_CITY,\n\tSHIPPING_ADDRESS_COUNTRY,\n\tSHIPPING_ADDRESS_FIRST_NAME,\n\tSHIPPING_ADDRESS_LAST_NAME,\n\tSHIPPING_ADDRESS_PHONE,\n\tSHIPPING_ADDRESS_PROVINCE_CODE,\n\tSHIPPING_ADDRESS_ZIP,\n\tSKU,\n\tSTATUS,\n\tTOTAL_RECURRING_ORDERS,\n\tUPDATED_AT,\n\tVARIANT_TITLE\nFROM staging", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__subscription_accounts": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__subscription_accounts", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.sql", "unique_id": "model.yoda.subscriptions__subscription_accounts", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_accounts", "subscriptions__subscription_accounts"], "alias": "subscriptions__subscription_accounts", "checksum": {"name": "sha256", "checksum": "710d7bbe54dc3a082da6919084d705dedeb92dd405c63269187fc818b95866a9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "All accounts with subscription package", "columns": {"app_key": {"name": "app_key", "description": "the account store_id / app_key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "the account domain", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_test": {"name": "is_test", "description": "is it internal test account", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_finised": {"name": "is_finised", "description": "Whether the account finished the onboarding or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "finished_date": {"name": "finished_date", "description": "the date which the account finished the onboarding", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_product_enabled_at": {"name": "first_product_enabled_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "uninstalled": {"name": "uninstalled", "description": "whether the account uninstalled subscriptions app", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "uninstalled_at": {"name": "uninstalled_at", "description": "the date which the account uninstalled the subscriptions app", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082689.724539, "relation_name": "dev_dkruh1.subscriptions__subscription_accounts", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH accounts AS (\n\n SELECT * FROM {{ ref('platform_stg__accounts') }}\n\n),\nfeatures AS (\n\n SELECT * FROM {{ ref('platform_stg__features') }}\n\n),\nowners_features AS (\n\n SELECT * FROM {{ ref('platform_stg__owners_features') }}\n\n),\nowner_feature_settings AS (\n\n SELECT * FROM {{ ref('platform_stg__owner_feature_settings') }}\n\n),\nsubscription_accounts_is_launched AS (\n SELECT\n accounts.app_key,\n features.name,\n owner_feature_settings.key,\n owner_feature_settings.updated_at as finished_date,\n like(owner_feature_settings.value, '%true%') as is_finised\n FROM\n accounts\n INNER JOIN\n owners_features ON accounts.id = owners_features.owner_id AND owners_features.owner_type = 'Account'\n INNER JOIN\n features ON owners_features.feature_id = features.id\n LEFT JOIN\n owner_feature_settings ON owner_feature_settings.owners_feature_id = owners_features.id\n WHERE\n features.name = \"SubscriptionsOnboarding\"\n AND\n owners_features.disabled != true\n AND\n owners_features.user_enabled = true\n AND\n owner_feature_settings.key = 'is_finished'\n), subscriptions_accounts AS (\n SELECT\n accounts.app_key,\n accounts.domain,\n accounts.url,\n accounts.is_test,\n subscription_accounts_is_launched.is_finised,\n CASE\n WHEN subscription_accounts_is_launched.is_finised = true THEN subscription_accounts_is_launched.finished_date\n ELSE NULL\n END as finished_date,\n CAST(NULL as TIMESTAMP) as first_product_enabled_at,\n FALSE as uninstalled,\n CAST(NULL as TIMESTAMP) as uninstalled_at\n FROM\n accounts\n INNER JOIN\n owners_features ON accounts.id = owners_features.owner_id AND owners_features.owner_type = 'Account'\n INNER JOIN\n features ON owners_features.feature_id = features.id\n LEFT JOIN\n subscription_accounts_is_launched ON subscription_accounts_is_launched.app_key = accounts.app_key\n WHERE\n features.name = \"EchoV1\"\n AND\n owners_features.disabled != true\n AND\n owners_features.user_enabled = true\n ORDER BY accounts.app_key\n)\n\nSELECT * FROM subscriptions_accounts", "language": "sql", "refs": [{"name": "platform_stg__accounts", "package": null, "version": null}, {"name": "platform_stg__features", "package": null, "version": null}, {"name": "platform_stg__owners_features", "package": null, "version": null}, {"name": "platform_stg__owner_feature_settings", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__accounts", "model.yoda.platform_stg__features", "model.yoda.platform_stg__owners_features", "model.yoda.platform_stg__owner_feature_settings"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH accounts AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__accounts\n\n),\nfeatures AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__features\n\n),\nowners_features AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__owners_features\n\n),\nowner_feature_settings AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__owner_feature_settings\n\n),\nsubscription_accounts_is_launched AS (\n SELECT\n accounts.app_key,\n features.name,\n owner_feature_settings.key,\n owner_feature_settings.updated_at as finished_date,\n like(owner_feature_settings.value, '%true%') as is_finised\n FROM\n accounts\n INNER JOIN\n owners_features ON accounts.id = owners_features.owner_id AND owners_features.owner_type = 'Account'\n INNER JOIN\n features ON owners_features.feature_id = features.id\n LEFT JOIN\n owner_feature_settings ON owner_feature_settings.owners_feature_id = owners_features.id\n WHERE\n features.name = \"SubscriptionsOnboarding\"\n AND\n owners_features.disabled != true\n AND\n owners_features.user_enabled = true\n AND\n owner_feature_settings.key = 'is_finished'\n), subscriptions_accounts AS (\n SELECT\n accounts.app_key,\n accounts.domain,\n accounts.url,\n accounts.is_test,\n subscription_accounts_is_launched.is_finised,\n CASE\n WHEN subscription_accounts_is_launched.is_finised = true THEN subscription_accounts_is_launched.finished_date\n ELSE NULL\n END as finished_date,\n CAST(NULL as TIMESTAMP) as first_product_enabled_at,\n FALSE as uninstalled,\n CAST(NULL as TIMESTAMP) as uninstalled_at\n FROM\n accounts\n INNER JOIN\n owners_features ON accounts.id = owners_features.owner_id AND owners_features.owner_type = 'Account'\n INNER JOIN\n features ON owners_features.feature_id = features.id\n LEFT JOIN\n subscription_accounts_is_launched ON subscription_accounts_is_launched.app_key = accounts.app_key\n WHERE\n features.name = \"EchoV1\"\n AND\n owners_features.disabled != true\n AND\n owners_features.user_enabled = true\n ORDER BY accounts.app_key\n)\n\nSELECT * FROM subscriptions_accounts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__subscription_contract": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__subscription_contract", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.sql", "unique_id": "model.yoda.subscriptions__subscription_contract", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "subscriptions__subscription_contract"], "alias": "subscriptions__subscription_contract", "checksum": {"name": "sha256", "checksum": "28bdfae25a7a30119cc768834820239e8f113436ff83d47f2042b2baa6433d55"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "Subscription contract with basic metadata", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "the owner's store id of the subscription contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "the external id of the subscription contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "the status id of the subscription contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval": {"name": "delivery_policy_interval", "description": "the interval type of the delivery cycle", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval_count": {"name": "delivery_policy_interval_count", "description": "the interval count of the delivery cycle", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval": {"name": "billing_policy_interval", "description": "the interval type of the billing cycle", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval_count": {"name": "billing_policy_interval_count", "description": "the interval count of the billing cycle", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_order_external_id": {"name": "original_order_external_id", "description": "the external order id of the order that the subscription contract was created from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_customer_id": {"name": "external_customer_id", "description": "the external id of the shopper", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status_last_updated_at": {"name": "status_last_updated_at", "description": "the date of that the last status of the subscription contract was changed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082689.7669735, "relation_name": "dev_dkruh1.subscriptions__subscription_contract", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscription_contract AS (\n SELECT * FROM {{ ref('subscriptions_stg__subscription_contract') }}\n ORDER BY id\n)\n\nSELECT * FROM subscription_contract", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscription_contract AS (\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_contract\n ORDER BY id\n)\n\nSELECT * FROM subscription_contract", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__subscription_contract_line": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__subscription_contract_line", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.sql", "unique_id": "model.yoda.subscriptions__subscription_contract_line", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_line", "subscriptions__subscription_contract_line"], "alias": "subscriptions__subscription_contract_line", "checksum": {"name": "sha256", "checksum": "aaf58ad8df8165185cc45d8eb5baf6f02598a96983bdccf4889c573ed9e6e8ae"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "a product reference within a subscription", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint - unique - not_null"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp - not_null"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp - not_null"}, "subscription_contract_id": {"name": "subscription_contract_id", "description": "the internal subscription contract id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint - not_null"}, "product_external_id": {"name": "product_external_id", "description": "the product external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string - not_null"}, "variant_external_id": {"name": "variant_external_id", "description": "the variant external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string - not_null"}, "quantity": {"name": "quantity", "description": "the quantity of the product within a subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint - not_null"}, "price": {"name": "price", "description": "the current price of the product within a subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discounted_price": {"name": "discounted_price", "description": "the discounted price of the product within a subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency_code": {"name": "currency_code", "description": "the currency code related to the product price", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082689.864583, "relation_name": "dev_dkruh1.subscriptions__subscription_contract_line", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscriptions__subscription_contract_line AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__subscription_contract_line') }}\n ORDER BY id\n)\n\nSELECT * FROM subscriptions__subscription_contract_line", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_line"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscriptions__subscription_contract_line AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_contract_line\n ORDER BY id\n)\n\nSELECT * FROM subscriptions__subscription_contract_line", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__subscription_contract_line_policy": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__subscription_contract_line_policy", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.sql", "unique_id": "model.yoda.subscriptions__subscription_contract_line_policy", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_line_policy", "subscriptions__subscription_contract_line_policy"], "alias": "subscriptions__subscription_contract_line_policy", "checksum": {"name": "sha256", "checksum": "892bc56b599ff51373f0c72ba16641f4f2f1b4b5487e7a4a6fb93684cd669026"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "table to represent a product in a subscription", "columns": {"subscription_contract_id": {"name": "subscription_contract_id", "description": "the internal subscription contract id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_contract_external_id": {"name": "subscription_contract_external_id", "description": "the external subscription contract id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_external_id": {"name": "product_external_id", "description": "the product external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_title": {"name": "product_title", "description": "the product name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_title": {"name": "variant_title", "description": "the variant name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "the product sku", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_policy_interval": {"name": "delivery_policy_interval", "description": "the interval type of the delivery cycle", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval_count": {"name": "delivery_policy_interval_count", "description": "the interval count of the delivery cycle", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "quantity": {"name": "quantity", "description": "the quantity of the product within a single subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "inventory_quantity": {"name": "inventory_quantity", "description": "the product / variant inventory quantity", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "the owner's store id of the subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_external_id": {"name": "variant_external_id", "description": "the variant external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082689.8851662, "relation_name": "dev_dkruh1.subscriptions__subscription_contract_line_policy", "raw_code": "/*\nin productiON table name will be without [domain]_mart__\n*/\nWITH products AS (\n\n SELECT * FROM {{ ref('platform_stg__products') }}\n\n), variants AS (\n\n SELECT * FROM {{ ref('platform_stg__variants') }}\n\n), subscription_contract AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__subscription_contract') }}\n\n), subscription_contract_line AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__subscription_contract_line') }}\n\n), subscription_contract_line_policy AS (\n\n SELECT\n subscription_contract.id AS subscription_contract_id,\n subscription_contract.external_id as subscription_contract_external_id,\n subscription_contract_line.product_external_id,\n products.name AS product_title,\n variants.name AS variant_title,\n CASE WHEN variants.sku IS NULL THEN products.sku ELSE variants.sku END AS sku,\n subscription_contract.delivery_policy_interval,\n subscription_contract.delivery_policy_interval_count,\n subscription_contract_line.quantity,\n CASE WHEN variants.inventory_quantity IS NULL THEN products.inventory_quantity ELSE variants.inventory_quantity END AS inventory_quantity,\n subscription_contract.store_id,\n subscription_contract_line.variant_external_id\n FROM\n subscription_contract\n LEFT JOIN subscription_contract_line ON subscription_contract.id = subscription_contract_line.subscription_contract_id\n INNER JOIN products ON subscription_contract_line.product_external_id = products.external_id\n AND subscription_contract.store_id = products.store_id\n LEFT JOIN variants ON subscription_contract_line.variant_external_id = variants.external_id\n AND products.id = variants.product_id AND variants.is_discontinued IS false\n ORDER BY subscription_contract.store_id\n)\n\nSELECT * FROM subscription_contract_line_policy", "language": "sql", "refs": [{"name": "platform_stg__products", "package": null, "version": null}, {"name": "platform_stg__variants", "package": null, "version": null}, {"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}, {"name": "subscriptions_stg__subscription_contract_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__products", "model.yoda.platform_stg__variants", "model.yoda.subscriptions_stg__subscription_contract", "model.yoda.subscriptions_stg__subscription_contract_line"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.sql", "compiled": true, "compiled_code": "/*\nin productiON table name will be without [domain]_mart__\n*/\nWITH products AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__products\n\n), variants AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__variants\n\n), subscription_contract AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_contract\n\n), subscription_contract_line AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_contract_line\n\n), subscription_contract_line_policy AS (\n\n SELECT\n subscription_contract.id AS subscription_contract_id,\n subscription_contract.external_id as subscription_contract_external_id,\n subscription_contract_line.product_external_id,\n products.name AS product_title,\n variants.name AS variant_title,\n CASE WHEN variants.sku IS NULL THEN products.sku ELSE variants.sku END AS sku,\n subscription_contract.delivery_policy_interval,\n subscription_contract.delivery_policy_interval_count,\n subscription_contract_line.quantity,\n CASE WHEN variants.inventory_quantity IS NULL THEN products.inventory_quantity ELSE variants.inventory_quantity END AS inventory_quantity,\n subscription_contract.store_id,\n subscription_contract_line.variant_external_id\n FROM\n subscription_contract\n LEFT JOIN subscription_contract_line ON subscription_contract.id = subscription_contract_line.subscription_contract_id\n INNER JOIN products ON subscription_contract_line.product_external_id = products.external_id\n AND subscription_contract.store_id = products.store_id\n LEFT JOIN variants ON subscription_contract_line.variant_external_id = variants.external_id\n AND products.id = variants.product_id AND variants.is_discontinued IS false\n ORDER BY subscription_contract.store_id\n)\n\nSELECT * FROM subscription_contract_line_policy", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__subscription_contract_order": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__subscription_contract_order", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.sql", "unique_id": "model.yoda.subscriptions__subscription_contract_order", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order", "subscriptions__subscription_contract_order"], "alias": "subscriptions__subscription_contract_order", "checksum": {"name": "sha256", "checksum": "5ac9992135d934a5223152dd806f05668c5e85ef9f8bd942abd9cfc97a716485"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "orders of subscription contracts", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "the order's store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "the external subscription contract id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_order_id": {"name": "external_order_id", "description": "the external order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082689.9576838, "relation_name": "dev_dkruh1.subscriptions__subscription_contract_order", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscription_contract_order AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__subscription_contract_order') }}\n ORDER BY id\n)\n\nSELECT * FROM subscription_contract_order", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscription_contract_order AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_contract_order\n ORDER BY id\n)\n\nSELECT * FROM subscription_contract_order", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__subscription_contract_order_lines": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__subscription_contract_order_lines", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.sql", "unique_id": "model.yoda.subscriptions__subscription_contract_order_lines", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order_lines", "subscriptions__subscription_contract_order_lines"], "alias": "subscriptions__subscription_contract_order_lines", "checksum": {"name": "sha256", "checksum": "fcadb830dbc393c565beac551d7fec9d213c3475f4b8722a635c521cfb366779"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "A list of all order lines in subscription orders", "columns": {"external_order_id": {"name": "external_order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_external_id": {"name": "product_external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_external_id": {"name": "variant_external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_line_total": {"name": "order_line_total", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_date": {"name": "order_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082690.0228076, "relation_name": "dev_dkruh1.subscriptions__subscription_contract_order_lines", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscription_contract_order AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_contract_order') }}\n\n), orders AS (\n\n SELECT * FROM {{ ref('platform_stg__orders') }}\n\n), order_lines AS (\n\n SELECT * FROM {{ ref('platform_stg__order_lines') }}\n\n), products AS (\n\n SELECT * FROM {{ ref('platform_stg__products') }}\n\n), variants AS (\n\n SELECT * FROM {{ ref('platform_stg__variants') }}\n\n), subscription_contract_order_lines AS (\n\n SELECT \n subscription_contract_order.external_order_id,\n subscription_contract_order.external_subscription_contract_id,\n products.external_id AS product_external_id,\n variants.external_id AS variant_external_id,\n subscription_contract_order.store_id,\n order_lines.cost AS order_line_total,\n DATE(subscription_contract_order.created_at) as order_date\n FROM subscription_contract_order\n LEFT JOIN orders on subscription_contract_order.external_order_id = orders.external_id\n LEFT JOIN order_lines on orders.id = order_lines.order_id\n LEFT JOIN products on order_lines.product_id = products.id\n LEFT JOIN variants on order_lines.variant_id = variants.id\n WHERE products.external_id IS NOT NULL\n AND variants.external_id IS NOT NULL\n\n)\n\nSELECT * FROM subscription_contract_order_lines", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order", "package": null, "version": null}, {"name": "platform_stg__orders", "package": null, "version": null}, {"name": "platform_stg__order_lines", "package": null, "version": null}, {"name": "platform_stg__products", "package": null, "version": null}, {"name": "platform_stg__variants", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__subscription_contract_order", "model.yoda.platform_stg__orders", "model.yoda.platform_stg__order_lines", "model.yoda.platform_stg__products", "model.yoda.platform_stg__variants"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscription_contract_order AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_contract_order\n\n), orders AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__orders\n\n), order_lines AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__order_lines\n\n), products AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__products\n\n), variants AS (\n\n SELECT * FROM dev_dkruh1.platform_stg__variants\n\n), subscription_contract_order_lines AS (\n\n SELECT \n subscription_contract_order.external_order_id,\n subscription_contract_order.external_subscription_contract_id,\n products.external_id AS product_external_id,\n variants.external_id AS variant_external_id,\n subscription_contract_order.store_id,\n order_lines.cost AS order_line_total,\n DATE(subscription_contract_order.created_at) as order_date\n FROM subscription_contract_order\n LEFT JOIN orders on subscription_contract_order.external_order_id = orders.external_id\n LEFT JOIN order_lines on orders.id = order_lines.order_id\n LEFT JOIN products on order_lines.product_id = products.id\n LEFT JOIN variants on order_lines.variant_id = variants.id\n WHERE products.external_id IS NOT NULL\n AND variants.external_id IS NOT NULL\n\n)\n\nSELECT * FROM subscription_contract_order_lines", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__subscription_contract_status_changes": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__subscription_contract_status_changes", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.sql", "unique_id": "model.yoda.subscriptions__subscription_contract_status_changes", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_status_changes", "subscriptions__subscription_contract_status_changes"], "alias": "subscriptions__subscription_contract_status_changes", "checksum": {"name": "sha256", "checksum": "943afb1ca7822a4a7f0258aa29316f97201437b7d91333633913b2be23d11e32"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "This table is an incremental status timeline of subscription contracts", "columns": {"store_id": {"name": "store_id", "description": "Store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "Subscription external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "Subscription status (active,cancelled, etc.)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status_last_updated_at": {"name": "status_last_updated_at", "description": "Timestamp of the last status change for the subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "Creation timestamp of the subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "Update timestamp of the subcription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Last run timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "incremental", "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "incremental_strategy": "append"}, "created_at": 1700082690.083688, "relation_name": "dev_dkruh1.subscriptions__subscription_contract_status_changes", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append'\n)}}\n\nWITH subscription_contract AS (\n SELECT * FROM {{ ref('subscriptions_stg__subscription_contract') }}\n {% if is_incremental() %}\n WHERE status_last_updated_at > \n (\n SELECT MAX(dwh_updated_at) \n FROM {{ this }}\n )\n {% endif %}\n)\n\nSELECT store_id, external_id, status, status_last_updated_at, created_at, updated_at, CURRENT_TIMESTAMP() AS dwh_updated_at FROM subscription_contract", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\n\nWITH subscription_contract AS (\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_contract\n \n)\n\nSELECT store_id, external_id, status, status_last_updated_at, created_at, updated_at, CURRENT_TIMESTAMP() AS dwh_updated_at FROM subscription_contract", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__subscription_merchant_migration_date": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__subscription_merchant_migration_date", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.sql", "unique_id": "model.yoda.subscriptions__subscription_merchant_migration_date", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_merchant_migration_date", "subscriptions__subscription_merchant_migration_date"], "alias": "subscriptions__subscription_merchant_migration_date", "checksum": {"name": "sha256", "checksum": "54735ef11383f7eab60c653354e914f8c5354bd95c106509fafe2023f046e804"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "table containing the merchant's migration date to yotpo subs from other subs providers", "columns": {"store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "migration_date": {"name": "migration_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082690.0967886, "relation_name": "dev_dkruh1.subscriptions__subscription_merchant_migration_date", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscription_creation_request AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__subscription_creation_request') }}\n\n), subscritpion_merchant_migration_date AS (\n\n SELECT store_id, \n percentile_approx(created_at, 0.5) AS migration_date\n FROM subscription_creation_request\n GROUP BY store_id\n\n)\n\nSELECT * FROM subscritpion_merchant_migration_date", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_creation_request", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__subscription_creation_request"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscription_creation_request AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_creation_request\n\n), subscritpion_merchant_migration_date AS (\n\n SELECT store_id, \n percentile_approx(created_at, 0.5) AS migration_date\n FROM subscription_creation_request\n GROUP BY store_id\n\n)\n\nSELECT * FROM subscritpion_merchant_migration_date", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__subscription_total_orders": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__subscription_total_orders", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.sql", "unique_id": "model.yoda.subscriptions__subscription_total_orders", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_total_orders", "subscriptions__subscription_total_orders"], "alias": "subscriptions__subscription_total_orders", "checksum": {"name": "sha256", "checksum": "e35dc987a5c79bc33224d02c48231f66350b6a70975db879a34f5051891c453e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "All orders of accounts with subscriptions package", "columns": {"external_order_id": {"name": "external_order_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "total_price": {"name": "total_price", "description": "the total price of the order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_currency_iso": {"name": "order_currency_iso", "description": "the currency of the order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_currency_iso": {"name": "account_currency_iso", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082690.126424, "relation_name": "dev_dkruh1.subscriptions__subscription_total_orders", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH accounts AS (\n SELECT \n * \n FROM \n {{ ref('platform_stg__accounts') }}\n), \nfeatures AS (\n SELECT \n * \n FROM \n {{ ref('platform_stg__features') }}\n), \nowners_features AS (\n SELECT \n * \n FROM \n {{ ref(\n 'platform_stg__owners_features'\n ) }}\n), \norders AS (\n SELECT \n * \n FROM \n {{ ref('analytics___platform_stg__store_order') }}\n), \napp_keys_list AS (\n SELECT \n accounts.app_key \n FROM \n accounts \n INNER JOIN owners_features ON accounts.id = owners_features.owner_id \n AND owners_features.owner_type = 'Account' \n INNER JOIN features ON owners_features.feature_id = features.id \n WHERE \n features.name = \"EchoV1\" \n AND owners_features.disabled != true \n AND owners_features.user_enabled = true\n), \nsubscription_total_orders AS (\n SELECT \n external_order_id, \n external_id, \n external_customer_id, \n order_date, \n total_price, \n orders.app_key, \n order_amount_currency as order_currency_iso, \n order_account_amount_currency as account_currency_iso \n FROM \n orders \n INNER JOIN app_keys_list ON orders.app_key = app_keys_list.app_key\n ORDER BY order_date\n) \nSELECT \n * \nFROM \n subscription_total_orders", "language": "sql", "refs": [{"name": "platform_stg__accounts", "package": null, "version": null}, {"name": "platform_stg__features", "package": null, "version": null}, {"name": "platform_stg__owners_features", "package": null, "version": null}, {"name": "analytics___platform_stg__store_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__accounts", "model.yoda.platform_stg__features", "model.yoda.platform_stg__owners_features", "model.yoda.analytics___platform_stg__store_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH accounts AS (\n SELECT \n * \n FROM \n dev_dkruh1.platform_stg__accounts\n), \nfeatures AS (\n SELECT \n * \n FROM \n dev_dkruh1.platform_stg__features\n), \nowners_features AS (\n SELECT \n * \n FROM \n dev_dkruh1.platform_stg__owners_features\n), \norders AS (\n SELECT \n * \n FROM \n dev_dkruh1.analytics___platform_stg__store_order\n), \napp_keys_list AS (\n SELECT \n accounts.app_key \n FROM \n accounts \n INNER JOIN owners_features ON accounts.id = owners_features.owner_id \n AND owners_features.owner_type = 'Account' \n INNER JOIN features ON owners_features.feature_id = features.id \n WHERE \n features.name = \"EchoV1\" \n AND owners_features.disabled != true \n AND owners_features.user_enabled = true\n), \nsubscription_total_orders AS (\n SELECT \n external_order_id, \n external_id, \n external_customer_id, \n order_date, \n total_price, \n orders.app_key, \n order_amount_currency as order_currency_iso, \n order_account_amount_currency as account_currency_iso \n FROM \n orders \n INNER JOIN app_keys_list ON orders.app_key = app_keys_list.app_key\n ORDER BY order_date\n) \nSELECT \n * \nFROM \n subscription_total_orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__subscriptions_attributed_orders": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__subscriptions_attributed_orders", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.sql", "unique_id": "model.yoda.subscriptions__subscriptions_attributed_orders", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscriptions_attributed_orders", "subscriptions__subscriptions_attributed_orders"], "alias": "subscriptions__subscriptions_attributed_orders", "checksum": {"name": "sha256", "checksum": "3b892f4633200d5f3be5e5c5969d8cd8578bb026163c3d320d02e22246d0513b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "Subscription attributed orders for the retention dashbaord metrics", "columns": {"external_order_id": {"name": "external_order_id", "description": "the order's unique identifier in the ecommerce platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_customer_id": {"name": "external_customer_id", "description": "the order's customer's unique identifier in the ecommerce platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "the date of the purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "order_total": {"name": "order_total", "description": "the total value of the purchase", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "app_key": {"name": "app_key", "description": "merchant's unique identifier in the yotpo platform", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "{{ 'table' if target.name == 'prod' else 'view' }}", "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "large"}}}, "created_at": 1700082690.1742485, "relation_name": "dev_dkruh1.subscriptions__subscriptions_attributed_orders", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscription_orders AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_total_orders') }}\n\n), subscription_contract_orders AS (\n\n SELECT * FROM {{ ref('subscriptions__subscription_contract_order') }}\n\n), subscriptions_attributed_orders AS (\n\n SELECT \n subscription_orders.external_id as external_order_id,\n subscription_orders.external_customer_id,\n subscription_orders.order_date,\n subscription_orders.total_price as order_total,\n subscription_orders.app_key\n FROM subscription_contract_orders\n JOIN subscription_orders ON subscription_contract_orders.external_order_id = subscription_orders.external_id\n\n)\n\nSELECT * FROM subscriptions_attributed_orders", "language": "sql", "refs": [{"name": "subscriptions__subscription_total_orders", "package": null, "version": null}, {"name": "subscriptions__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions__subscription_total_orders", "model.yoda.subscriptions__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\nWITH subscription_orders AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_total_orders\n\n), subscription_contract_orders AS (\n\n SELECT * FROM dev_dkruh1.subscriptions__subscription_contract_order\n\n), subscriptions_attributed_orders AS (\n\n SELECT \n subscription_orders.external_id as external_order_id,\n subscription_orders.external_customer_id,\n subscription_orders.order_date,\n subscription_orders.total_price as order_total,\n subscription_orders.app_key\n FROM subscription_contract_orders\n JOIN subscription_orders ON subscription_contract_orders.external_order_id = subscription_orders.external_id\n\n)\n\nSELECT * FROM subscriptions_attributed_orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__synergy_kpi_one_click_campaign": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__synergy_kpi_one_click_campaign", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.sql", "unique_id": "model.yoda.subscriptions__synergy_kpi_one_click_campaign", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_one_click_campaign", "subscriptions__synergy_kpi_one_click_campaign"], "alias": "subscriptions__synergy_kpi_one_click_campaign", "checksum": {"name": "sha256", "checksum": "3d985f0bd417b9c8ef1efd151c2cb5bb9b2599c8a9ec8b0710f12b9b2287ee9b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "yshtilerman@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "Synergies attribution KPI table to measure the one click campaigns.", "columns": {"id": {"name": "id", "description": "Unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "'Subscription payment failure notification flow' ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "flow(sms)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "SMS message ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "ID of the created order, 0 if not exist", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "sms click", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "Whether customer clicked on the SMS link or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_type": {"name": "action_attribute_type", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "Merchant's store ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "Customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "Customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "Customer ID in Shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Row updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "yshtilerman@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "table", "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "yshtilerman@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082690.3192322, "relation_name": "dev_dkruh1.subscriptions__synergy_kpi_one_click_campaign", "raw_code": "/*\nin production table name will be without [domain]_mart__\nAssumptions:\n1) The condition to find the \"one click campaign\" is by name ~ \"Grow subscriptions to %\"\n*/\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\nWITH sms_data AS (\n SELECT DISTINCT * FROM {{ ref('sms_stg__one_click_campaigns_subscriptions') }}\n)\n, subs_data AS (\n SELECT * FROM {{ ref('subscriptions_stg__subscription_contract') }}\n)\n, synergy_kpi_one_click_campaign AS (\n\n SELECT\n uuid() AS id,\n 95 as synergy_id,\n 'campaign(sms)' as source_type,\n source.sms_id as source_id,\n sc.original_order_external_id as order_id,\n 'sms click' as action_type,\n (CASE\n WHEN ifnull(source.clicks_count,0) = 0 THEN \"false\"\n ELSE \"true\"\n END) as action_id,\n 'subscription' as action_attribute_type,\n sc.external_id as action_attribute_value,\n source.store_id as app_key,\n source.customer_email as customer_email,\n source.customer_phone as customer_phone_number,\n source.customer_id as customer_external_id,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM\n sms_data source\n LEFT JOIN subs_data sc ON sc.store_id = source.store_id\n AND sc.external_customer_id = source.customer_id\n AND sc.created_at > source.sent_time\n AND DATEDIFF(day, sc.created_at, source.sent_time) >= 0\n AND DATEDIFF(day, sc.created_at, source.sent_time) < 5\n GROUP BY synergy_id, source_type, source_id, order_id, action_type, action_id, action_attribute_type, action_attribute_value, app_key, customer_email, customer_phone_number, customer_external_id\n)\n\nSELECT * FROM synergy_kpi_one_click_campaign", "language": "sql", "refs": [{"name": "sms_stg__one_click_campaigns_subscriptions", "package": null, "version": null}, {"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__one_click_campaigns_subscriptions", "model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\nAssumptions:\n1) The condition to find the \"one click campaign\" is by name ~ \"Grow subscriptions to %\"\n*/\n\nWITH sms_data AS (\n SELECT DISTINCT * FROM dev_dkruh1.sms_stg__one_click_campaigns_subscriptions\n)\n, subs_data AS (\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_contract\n)\n, synergy_kpi_one_click_campaign AS (\n\n SELECT\n uuid() AS id,\n 95 as synergy_id,\n 'campaign(sms)' as source_type,\n source.sms_id as source_id,\n sc.original_order_external_id as order_id,\n 'sms click' as action_type,\n (CASE\n WHEN ifnull(source.clicks_count,0) = 0 THEN \"false\"\n ELSE \"true\"\n END) as action_id,\n 'subscription' as action_attribute_type,\n sc.external_id as action_attribute_value,\n source.store_id as app_key,\n source.customer_email as customer_email,\n source.customer_phone as customer_phone_number,\n source.customer_id as customer_external_id,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM\n sms_data source\n LEFT JOIN subs_data sc ON sc.store_id = source.store_id\n AND sc.external_customer_id = source.customer_id\n AND sc.created_at > source.sent_time\n AND DATEDIFF(day, sc.created_at, source.sent_time) >= 0\n AND DATEDIFF(day, sc.created_at, source.sent_time) < 5\n GROUP BY synergy_id, source_type, source_id, order_id, action_type, action_id, action_attribute_type, action_attribute_value, app_key, customer_email, customer_phone_number, customer_external_id\n)\n\nSELECT * FROM synergy_kpi_one_click_campaign", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__synergy_kpi_redeemed_points": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__synergy_kpi_redeemed_points", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.sql", "unique_id": "model.yoda.subscriptions__synergy_kpi_redeemed_points", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "subscriptions__synergy_kpi_redeemed_points"], "alias": "subscriptions__synergy_kpi_redeemed_points", "checksum": {"name": "sha256", "checksum": "ea3b2106941dc75f858d5a07ce772247398ff4164f1695208adad1ef4b5e995d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "stanislav.altgovzen@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium_with_intensive_memory"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "Synergies attribution KPI table to measure the redeemed points on subscription.", "columns": {"id": {"name": "id", "description": "Unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "'Subscription redeemed points flow' ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "Subscription ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "ID of the order the redemption was made for", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "Redemption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "Redeemed coupon ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "Points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "Number of redeemed points", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "Merchant's store ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "Customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "Customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "Customer ID in Shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Row updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "stanislav.altgovzen@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium_with_intensive_memory"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "table", "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "stanislav.altgovzen@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium_with_intensive_memory"}}}, "created_at": 1700082690.4163842, "relation_name": "dev_dkruh1.subscriptions__synergy_kpi_redeemed_points", "raw_code": "/*\nin production table name will be without [domain]_mart__\n\nAssumptions:\nAfter successfull billing attempt loyalty will get a web-hook where the \nredeemed subs coupon will be cross referenced with an order\n*/\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\nWITH loyalty_data AS (\n SELECT * FROM {{ ref('loyalty__redeemed_purchases_with_subs_redemption_option') }}\n)\n, billing_attemps AS (\n SELECT * FROM {{ ref('subscriptions_stg__billing_attempt_response') }}\n)\n, subscription_contract AS (\n SELECT * FROM {{ ref('subscriptions_stg__subscription_contract') }}\n)\n, enriched_customers AS (\n SELECT * FROM {{ ref('loyalty_stg__enriched_customers') }}\n)\n, synergy_kpi_redeemed_points AS (\n SELECT \n uuid() AS id,\n 71 as synergy_id,\n \"subscription\" as source_type,\n subscription_contract.external_id as source_id,\n loyalty_data.order_id, \n \"redemption\" as action_type,\n loyalty_data.point_redemption_id as action_id,\n \"points\" as action_attribute_type,\n SUM(loyalty_data.amount) as action_attribute_value,\n app_key, \n enriched_customers.email as customer_email,\n enriched_customers.phone_number as customer_phone_number,\n enriched_customers.customer_id as customer_external_id,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM loyalty_data\n JOIN billing_attemps on loyalty_data.order_id = billing_attemps.external_order_id\n JOIN subscription_contract on subscription_contract.external_id = billing_attemps.external_subscription_contract_id\n JOIN enriched_customers on enriched_customers.store_account_id = subscription_contract.external_customer_id\n GROUP BY synergy_id, source_type, source_id, loyalty_data.order_id, action_type, action_id, action_attribute_type, app_key, customer_email, customer_phone_number, customer_external_id\n)\n\nSELECT * FROM synergy_kpi_redeemed_points", "language": "sql", "refs": [{"name": "loyalty__redeemed_purchases_with_subs_redemption_option", "package": null, "version": null}, {"name": "subscriptions_stg__billing_attempt_response", "package": null, "version": null}, {"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}, {"name": "loyalty_stg__enriched_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option", "model.yoda.subscriptions_stg__billing_attempt_response", "model.yoda.subscriptions_stg__subscription_contract", "model.yoda.loyalty_stg__enriched_customers"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n\nAssumptions:\nAfter successfull billing attempt loyalty will get a web-hook where the \nredeemed subs coupon will be cross referenced with an order\n*/\n\nWITH loyalty_data AS (\n SELECT * FROM dev_dkruh1.loyalty__redeemed_purchases_with_subs_redemption_option\n)\n, billing_attemps AS (\n SELECT * FROM dev_dkruh1.subscriptions_stg__billing_attempt_response\n)\n, subscription_contract AS (\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_contract\n)\n, enriched_customers AS (\n SELECT * FROM dev_dkruh1.loyalty_stg__enriched_customers\n)\n, synergy_kpi_redeemed_points AS (\n SELECT \n uuid() AS id,\n 71 as synergy_id,\n \"subscription\" as source_type,\n subscription_contract.external_id as source_id,\n loyalty_data.order_id, \n \"redemption\" as action_type,\n loyalty_data.point_redemption_id as action_id,\n \"points\" as action_attribute_type,\n SUM(loyalty_data.amount) as action_attribute_value,\n app_key, \n enriched_customers.email as customer_email,\n enriched_customers.phone_number as customer_phone_number,\n enriched_customers.customer_id as customer_external_id,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM loyalty_data\n JOIN billing_attemps on loyalty_data.order_id = billing_attemps.external_order_id\n JOIN subscription_contract on subscription_contract.external_id = billing_attemps.external_subscription_contract_id\n JOIN enriched_customers on enriched_customers.store_account_id = subscription_contract.external_customer_id\n GROUP BY synergy_id, source_type, source_id, loyalty_data.order_id, action_type, action_id, action_attribute_type, app_key, customer_email, customer_phone_number, customer_external_id\n)\n\nSELECT * FROM synergy_kpi_redeemed_points", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__synergy_kpi_sms_payment_failure": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__synergy_kpi_sms_payment_failure", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.sql", "unique_id": "model.yoda.subscriptions__synergy_kpi_sms_payment_failure", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_sms_payment_failure", "subscriptions__synergy_kpi_sms_payment_failure"], "alias": "subscriptions__synergy_kpi_sms_payment_failure", "checksum": {"name": "sha256", "checksum": "cb57bb2214c2e652e34b0a531b63a19e8675a5b477d019ec82771b69dd5f90e3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "Synergies attribution KPI table to measure the connection between SMS payment failures clicks to the corresponding successful order creation.", "columns": {"id": {"name": "id", "description": "Unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "'Subscription payment failure notification flow' ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "flow(sms)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "SMS message ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "ID of the created order, 0 if not exist", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_type": {"name": "action_type", "description": "sms click", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "Whether customer clicked on the SMS link or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_type": {"name": "action_attribute_type", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "null", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "Merchant's store ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "Customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "Customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "Customer ID in Shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Row updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "table", "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082690.5636718, "relation_name": "dev_dkruh1.subscriptions__synergy_kpi_sms_payment_failure", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\n\nWITH staging AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__synergy_subs_payment_failure') }}\n\n), synergy_kpi_payment_failure AS (\n\n SELECT \n uuid() AS id,\n 100 as synergy_id,\n 'flow(sms)' as source_type,\n sms_id as source_id,\n order_id as order_id,\n 'sms click' as action_type,\n (CASE \n WHEN clicks_count = 0 THEN \"false\"\n ELSE \"true\"\n END) as action_id,\n STRING(NULL) as action_attribute_type,\n BIGINT(NULL) as action_attribute_value,\n app_key as app_key,\n email as customer_email,\n number as customer_phone_number,\n customer_id as customer_external_id,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM staging\n WHERE DATEDIFF(day, processing_time, NOW()) > 4\n\n)\n\nSELECT * FROM synergy_kpi_payment_failure", "language": "sql", "refs": [{"name": "subscriptions_stg__synergy_subs_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__synergy_subs_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\nWITH staging AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__synergy_subs_payment_failure\n\n), synergy_kpi_payment_failure AS (\n\n SELECT \n uuid() AS id,\n 100 as synergy_id,\n 'flow(sms)' as source_type,\n sms_id as source_id,\n order_id as order_id,\n 'sms click' as action_type,\n (CASE \n WHEN clicks_count = 0 THEN \"false\"\n ELSE \"true\"\n END) as action_id,\n STRING(NULL) as action_attribute_type,\n BIGINT(NULL) as action_attribute_value,\n app_key as app_key,\n email as customer_email,\n number as customer_phone_number,\n customer_id as customer_external_id,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM staging\n WHERE DATEDIFF(day, processing_time, NOW()) > 4\n\n)\n\nSELECT * FROM synergy_kpi_payment_failure", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions__synergy_kpi_sms_upsell": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions__synergy_kpi_sms_upsell", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.sql", "unique_id": "model.yoda.subscriptions__synergy_kpi_sms_upsell", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_sms_upsell", "subscriptions__synergy_kpi_sms_upsell"], "alias": "subscriptions__synergy_kpi_sms_upsell", "checksum": {"name": "sha256", "checksum": "8a7e1d4b65e20e44fe93024c4d7cf6ae0616cbd7651d3e660b4f5548a5e59567"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "Synergies attribution KPI table to measure the connection between upsell SMS messages to created orders and subscriptions", "columns": {"id": {"name": "id", "description": "Unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "'One-click SMS Campaign from Subscriptions (increase Subscriptions)' ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "source_type": {"name": "source_type", "description": "SMS campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "SMS message ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "ID of the created order, NULL if not exist", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "subscritption", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_id": {"name": "action_id", "description": "Subscription ID if present, NULL otherwise", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_attribute_type": {"name": "action_attribute_type", "description": "NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_attribute_value": {"name": "action_attribute_value", "description": "NULL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "Merchant's store ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_email": {"name": "customer_email", "description": "Customer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_phone_number": {"name": "customer_phone_number", "description": "Customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_external_id": {"name": "customer_external_id", "description": "Customer ID in Shopify", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "Row updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "materialized": "table", "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082690.6308255, "relation_name": "dev_dkruh1.subscriptions__synergy_kpi_sms_upsell", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n{{\n config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view')\n )\n}}\nWITH sms_data AS (\n SELECT * FROM {{ ref('sms_stg__subscription_upsell_flow') }}\n), subscription_orders AS (\n SELECT * FROM {{ ref('subscriptions_stg__subscription_contract_order') }}\n), synergy_kpi_sms_upsell AS (\n SELECT\n uuid() AS id,\n 149 as synergy_id,\n 'flow(sms)' as source_type,\n source.sms_id as source_id,\n source.order_id as order_id,\n 'subscription' as action_type,\n orders.external_subscription_contract_id as action_id,\n STRING(NULL) as action_attribute_type,\n BIGINT(NULL) as action_attribute_value,\n source.app_key as app_key,\n source.customer_email as customer_email,\n source.customer_phone_number as customer_phone_number,\n source.customer_external_id as customer_external_id,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM\n sms_data source\n LEFT JOIN subscription_orders orders ON orders.external_order_id = source.order_id\n GROUP BY synergy_id, source_type, source_id, order_id, action_type, action_id, action_attribute_type, \n action_attribute_value, app_key, customer_email, customer_phone_number, customer_external_id\n)\n\nSELECT * FROM synergy_kpi_sms_upsell", "language": "sql", "refs": [{"name": "sms_stg__subscription_upsell_flow", "package": null, "version": null}, {"name": "subscriptions_stg__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms_stg__subscription_upsell_flow", "model.yoda.subscriptions_stg__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\n\nWITH sms_data AS (\n SELECT * FROM dev_dkruh1.sms_stg__subscription_upsell_flow\n), subscription_orders AS (\n SELECT * FROM dev_dkruh1.subscriptions_stg__subscription_contract_order\n), synergy_kpi_sms_upsell AS (\n SELECT\n uuid() AS id,\n 149 as synergy_id,\n 'flow(sms)' as source_type,\n source.sms_id as source_id,\n source.order_id as order_id,\n 'subscription' as action_type,\n orders.external_subscription_contract_id as action_id,\n STRING(NULL) as action_attribute_type,\n BIGINT(NULL) as action_attribute_value,\n source.app_key as app_key,\n source.customer_email as customer_email,\n source.customer_phone_number as customer_phone_number,\n source.customer_external_id as customer_external_id,\n CURRENT_TIMESTAMP as dwh_updated_at\n FROM\n sms_data source\n LEFT JOIN subscription_orders orders ON orders.external_order_id = source.order_id\n GROUP BY synergy_id, source_type, source_id, order_id, action_type, action_id, action_attribute_type, \n action_attribute_value, app_key, customer_email, customer_phone_number, customer_external_id\n)\n\nSELECT * FROM synergy_kpi_sms_upsell", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__app_webhooks": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__app_webhooks", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.sql", "unique_id": "model.yoda.subscriptions_stg__app_webhooks", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__app_webhooks", "subscriptions_stg__app_webhooks"], "alias": "subscriptions_stg__app_webhooks", "checksum": {"name": "sha256", "checksum": "1d75640325923e26af57be8ccfc7a57bd8dfa53521704dfba220ff14dfeae8f8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_time": {"name": "message_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082691.0024753, "relation_name": "dev_dkruh1.subscriptions_stg__app_webhooks", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'app_webhooks') }}\n\n), subscriptions_stg__app_webhooks AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\taction,\n\t\tmessage_time,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__app_webhooks", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "app_webhooks"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.app_webhooks"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.app_webhooks\n\n), subscriptions_stg__app_webhooks AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\taction,\n\t\tmessage_time,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__app_webhooks", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__billing_attempt_response": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__billing_attempt_response", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.sql", "unique_id": "model.yoda.subscriptions_stg__billing_attempt_response", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__billing_attempt_response", "subscriptions_stg__billing_attempt_response"], "alias": "subscriptions_stg__billing_attempt_response", "checksum": {"name": "sha256", "checksum": "3d5d93daa7df8f193a5e65a62fec431aabbe60ed435b26cdafc9218b95a04ada"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "Shopify's billing attempt responses", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "Upsolver schema version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "Processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "Merchant's store ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "Response external ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_order_id": {"name": "external_order_id", "description": "External Shopify's order ID. In case of failure the value is 0", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "External Shopify's subscription contract ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "Billing attempt status: 12 - success, 13 - Failure", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "idempotency_key": {"name": "idempotency_key", "description": "Foreign Key for billing_attempt_request table", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ready": {"name": "ready", "description": "Ready", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "error_message": {"name": "error_message", "description": "Billing failure error message. NULL in case of success", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "Created At", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "Is logical deleted", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082691.0319746, "relation_name": "dev_dkruh1.subscriptions_stg__billing_attempt_response", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'billing_attempt_response') }}\n\n), subscriptions_stg__billing_attempt_response AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\texternal_id,\n\t\texternal_order_id,\n\t\texternal_subscription_contract_id,\n\t\tstatus,\n\t\tidempotency_key,\n\t\tready,\n\t\terror_message,\n\t\tcreated_at,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__billing_attempt_response", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "billing_attempt_response"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.billing_attempt_response"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.billing_attempt_response\n\n), subscriptions_stg__billing_attempt_response AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\texternal_id,\n\t\texternal_order_id,\n\t\texternal_subscription_contract_id,\n\t\tstatus,\n\t\tidempotency_key,\n\t\tready,\n\t\terror_message,\n\t\tcreated_at,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__billing_attempt_response", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__cancelation_intent_event": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__cancelation_intent_event", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.sql", "unique_id": "model.yoda.subscriptions_stg__cancelation_intent_event", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__cancelation_intent_event", "subscriptions_stg__cancelation_intent_event"], "alias": "subscriptions_stg__cancelation_intent_event", "checksum": {"name": "sha256", "checksum": "6488bbb88bd92af8ef03db4c93a8b0d45b1a7b41c61f79fe0b2c5e02d2d04294"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "event_origin": {"name": "event_origin", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelation_reason_option_id": {"name": "cancelation_reason_option_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_id": {"name": "subscription_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_id": {"name": "variant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comment": {"name": "comment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resolution": {"name": "resolution", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082691.0604577, "relation_name": "dev_dkruh1.subscriptions_stg__cancelation_intent_event", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions_retention', 'cancelation_intent_event') }}\n\n), subscriptions_stg__cancelation_intent_event AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tevent_origin,\n\t\tcancelation_reason_option_id,\n\t\tsubscription_id,\n\t\tvariant_id,\n\t\tproduct_id,\n\t\tcustomer_id,\n\t\tcomment,\n\t\tresolution,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__cancelation_intent_event", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions_retention", "cancelation_intent_event"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions_retention.cancelation_intent_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions_retention.cancelation_intent_event\n\n), subscriptions_stg__cancelation_intent_event AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tevent_origin,\n\t\tcancelation_reason_option_id,\n\t\tsubscription_id,\n\t\tvariant_id,\n\t\tproduct_id,\n\t\tcustomer_id,\n\t\tcomment,\n\t\tresolution,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__cancelation_intent_event", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__cancelation_reason_option": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__cancelation_reason_option", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.sql", "unique_id": "model.yoda.subscriptions_stg__cancelation_reason_option", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__cancelation_reason_option", "subscriptions_stg__cancelation_reason_option"], "alias": "subscriptions_stg__cancelation_reason_option", "checksum": {"name": "sha256", "checksum": "d2e5d79ec7031a148d8f681fb7ee10160e025a5c2f556d3dd84855d6967a1d8b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason_text": {"name": "reason_text", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active": {"name": "is_active", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "govadia@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082691.0839546, "relation_name": "dev_dkruh1.subscriptions_stg__cancelation_reason_option", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions_retention', 'cancelation_reason_option') }}\n\n), subscriptions_stg__cancelation_reason_option AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\treason_text,\n\t\tis_active,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__cancelation_reason_option", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions_retention", "cancelation_reason_option"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions_retention.cancelation_reason_option"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions_retention.cancelation_reason_option\n\n), subscriptions_stg__cancelation_reason_option AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\treason_text,\n\t\tis_active,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__cancelation_reason_option", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__customer_journey_event": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__customer_journey_event", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.sql", "unique_id": "model.yoda.subscriptions_stg__customer_journey_event", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "subscriptions_stg__customer_journey_event"], "alias": "subscriptions_stg__customer_journey_event", "checksum": {"name": "sha256", "checksum": "14f20dd3154e595b3c3791973a9bb87b0e194358754666f244815cd6f85b7755"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "emaymon@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "subscriptions customer journey events table", "columns": {"id": {"name": "id", "description": "Table identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "The store identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "The customer associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_domain": {"name": "source_domain", "description": "Product line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "The object unique identifier on which the event occured (example: for subscription product line it's the subscription contract external id)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "Record created at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "Record updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "event_type": {"name": "event_type", "description": "The event description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_origin": {"name": "event_origin", "description": "Where does the event took place (Customer Portal, Shopify, SMS reply, System, Yotpo Subscriptions)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_initiator": {"name": "event_initiator", "description": "The intiator of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_time": {"name": "event_time", "description": "The event creation time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "properties": {"name": "properties", "description": "Event raw additional data", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "emaymon@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "emaymon@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082691.1115324, "relation_name": "dev_dkruh1.subscriptions_stg__customer_journey_event", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__customer_journey', 'customer_journey_event') }}\n\n), subscriptions_stg__customer_journey_event AS (\n\n SELECT \n\t\tid,\n\t\tstore_id,\n\t\tcustomer_id,\n\t\tsource_domain,\n\t\tsource_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tevent_type,\n\t\tevent_origin,\n\t\tevent_initiator,\n\t\tevent_time,\n\t\tproperties\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__customer_journey_event", "language": "sql", "refs": [], "sources": [["subscriptions__customer_journey", "customer_journey_event"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__customer_journey.customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM customer_journey.customer_journey_event\n\n), subscriptions_stg__customer_journey_event AS (\n\n SELECT \n\t\tid,\n\t\tstore_id,\n\t\tcustomer_id,\n\t\tsource_domain,\n\t\tsource_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tevent_type,\n\t\tevent_origin,\n\t\tevent_initiator,\n\t\tevent_time,\n\t\tproperties\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__customer_journey_event", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__product": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__product", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.sql", "unique_id": "model.yoda.subscriptions_stg__product", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__product", "subscriptions_stg__product"], "alias": "subscriptions_stg__product", "checksum": {"name": "sha256", "checksum": "b0d0de37d94c62947333b3fd2c8596ab8fd69fd198e649aba642948808f287b1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "external_id": {"name": "external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082691.22366, "relation_name": "dev_dkruh1.subscriptions_stg__product", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'product') }}\n\n), subscriptions_stg__product AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\texternal_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__product", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "product"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.product"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.product\n\n), subscriptions_stg__product AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\texternal_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__product", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__recurrent_event_rule": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__recurrent_event_rule", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.sql", "unique_id": "model.yoda.subscriptions_stg__recurrent_event_rule", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__recurrent_event_rule", "subscriptions_stg__recurrent_event_rule"], "alias": "subscriptions_stg__recurrent_event_rule", "checksum": {"name": "sha256", "checksum": "957d63108526734c3a2942d2f42c368e5b3f392e15f1572a5d93572782806aef"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "subscriptions_stg__recurrent_event_rule", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "obj_id": {"name": "obj_id", "description": "the internal subscription contract id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "obj_type": {"name": "obj_type", "description": "the type of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "next_due_date": {"name": "next_due_date", "description": "the next date when the rule will be triggered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "plan_interval": {"name": "plan_interval", "description": "the interval type of the recurrent event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "interval_count": {"name": "interval_count", "description": "the interval count of the recurrent event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_canceled": {"name": "is_canceled", "description": "whether the rule is canceled or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082691.2512114, "relation_name": "dev_dkruh1.subscriptions_stg__recurrent_event_rule", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'recurrent_event_rule') }}\n\n), subscriptions_stg__recurrent_event_rule AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tobj_id,\n\t\tobj_type,\n\t\tnext_due_date,\n\t\tplan_interval,\n\t\tinterval_count,\n\t\tis_canceled,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__recurrent_event_rule", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "recurrent_event_rule"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.recurrent_event_rule\n\n), subscriptions_stg__recurrent_event_rule AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tobj_id,\n\t\tobj_type,\n\t\tnext_due_date,\n\t\tplan_interval,\n\t\tinterval_count,\n\t\tis_canceled,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__recurrent_event_rule", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__selling_plan": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__selling_plan", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.sql", "unique_id": "model.yoda.subscriptions_stg__selling_plan", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__selling_plan", "subscriptions_stg__selling_plan"], "alias": "subscriptions_stg__selling_plan", "checksum": {"name": "sha256", "checksum": "d1e0b7754d28d133ba8ac9607ce8a636dae36e7e9b6133dbe8beb5bb5ea30a83"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "selling_plan_group_id": {"name": "selling_plan_group_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pricing_policy_adjustment_type": {"name": "pricing_policy_adjustment_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_policy_value": {"name": "pricing_policy_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "recurring_pricing_policy_after_cycle": {"name": "recurring_pricing_policy_after_cycle", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082691.33492, "relation_name": "dev_dkruh1.subscriptions_stg__selling_plan", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'selling_plan') }}\n\n), subscriptions_stg__selling_plan AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tselling_plan_group_id,\n\t\tpricing_policy_adjustment_type,\n\t\tpricing_policy_value,\n\t\trecurring_pricing_policy_after_cycle,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tname\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__selling_plan", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "selling_plan"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.selling_plan"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.selling_plan\n\n), subscriptions_stg__selling_plan AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tselling_plan_group_id,\n\t\tpricing_policy_adjustment_type,\n\t\tpricing_policy_value,\n\t\trecurring_pricing_policy_after_cycle,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tname\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__selling_plan", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__selling_plan_group": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__selling_plan_group", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.sql", "unique_id": "model.yoda.subscriptions_stg__selling_plan_group", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__selling_plan_group", "subscriptions_stg__selling_plan_group"], "alias": "subscriptions_stg__selling_plan_group", "checksum": {"name": "sha256", "checksum": "3223fdcb12444087c1434c587842dc066f772ccae99934dc20c6bf6744d8fd77"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "external_id": {"name": "external_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "selling_plan_group_status": {"name": "selling_plan_group_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082691.352551, "relation_name": "dev_dkruh1.subscriptions_stg__selling_plan_group", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'selling_plan_group') }}\n\n), subscriptions_stg__selling_plan_group AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\texternal_id,\n\t\tstore_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tselling_plan_group_status\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__selling_plan_group", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "selling_plan_group"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.selling_plan_group"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.selling_plan_group\n\n), subscriptions_stg__selling_plan_group AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\texternal_id,\n\t\tstore_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tselling_plan_group_status\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__selling_plan_group", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__selling_plan_group_product": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__selling_plan_group_product", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.sql", "unique_id": "model.yoda.subscriptions_stg__selling_plan_group_product", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__selling_plan_group_product", "subscriptions_stg__selling_plan_group_product"], "alias": "subscriptions_stg__selling_plan_group_product", "checksum": {"name": "sha256", "checksum": "1a5d0f60e80ed9429db29b8b3e825d742e3622249099f0cbac92193be258ad81"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "selling_plan_group_id": {"name": "selling_plan_group_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082691.3694615, "relation_name": "dev_dkruh1.subscriptions_stg__selling_plan_group_product", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'selling_plan_group_product') }}\n\n), subscriptions_stg__selling_plan_group_product AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tselling_plan_group_id,\n\t\tproduct_id,\n\t\tcreated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__selling_plan_group_product", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "selling_plan_group_product"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.selling_plan_group_product"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.selling_plan_group_product\n\n), subscriptions_stg__selling_plan_group_product AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tselling_plan_group_id,\n\t\tproduct_id,\n\t\tcreated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__selling_plan_group_product", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__status": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__status", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.sql", "unique_id": "model.yoda.subscriptions_stg__status", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__status", "subscriptions_stg__status"], "alias": "subscriptions_stg__status", "checksum": {"name": "sha256", "checksum": "bb1d6f35af697bfc07c76c8dabc462a56c461b4539a4b8a66a410806798b9b81"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "subscriptions_stg__status", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "num": {"name": "num", "description": "The status id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "text": {"name": "text", "description": "The status description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082691.3873348, "relation_name": "dev_dkruh1.subscriptions_stg__status", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'status') }}\n\n), subscriptions_stg__status AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tnum,\n\t\ttext,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__status", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "status"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.status\n\n), subscriptions_stg__status AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tnum,\n\t\ttext,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__status", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__store_customers_exports": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__store_customers_exports", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__store_customers_exports/subscriptions_stg__store_customers_exports.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__store_customers_exports/subscriptions_stg__store_customers_exports.sql", "unique_id": "model.yoda.subscriptions_stg__store_customers_exports", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__store_customers_exports", "subscriptions_stg__store_customers_exports"], "alias": "subscriptions_stg__store_customers_exports", "checksum": {"name": "sha256", "checksum": "83864809e65787405c75fdfda0d4dcf17967760e73fa730d410349b003fa8845"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "bisons", "created_by": "iwo.hajduk@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "", "columns": {"BILLING_INTERVAL_FREQUENCY": {"name": "BILLING_INTERVAL_FREQUENCY", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "BILLING_INTERVAL_UNIT": {"name": "BILLING_INTERVAL_UNIT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "CANCELLED_AT": {"name": "CANCELLED_AT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "CREATED_AT": {"name": "CREATED_AT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "CURRENCY_CODE": {"name": "CURRENCY_CODE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(3)"}, "CUSTOMER_EMAIL": {"name": "CUSTOMER_EMAIL", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "DELIVERY_PRICE": {"name": "DELIVERY_PRICE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "EXPIRES_AFTER_NUM_BILLING_CYCLES": {"name": "EXPIRES_AFTER_NUM_BILLING_CYCLES", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "EXTERNAL_CUSTOMER_ID": {"name": "EXTERNAL_CUSTOMER_ID", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "EXTERNAL_PRODUCT_ID": {"name": "EXTERNAL_PRODUCT_ID", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "EXTERNAL_SUBSCRIPTION_ID": {"name": "EXTERNAL_SUBSCRIPTION_ID", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "EXTERNAL_VARIANT_ID": {"name": "EXTERNAL_VARIANT_ID", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "NEXT_BILLING_DATE": {"name": "NEXT_BILLING_DATE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ORDER_INTERVAL_FREQUENCY": {"name": "ORDER_INTERVAL_FREQUENCY", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "ORDER_INTERVAL_UNIT": {"name": "ORDER_INTERVAL_UNIT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "PRODUCT_TITLE": {"name": "PRODUCT_TITLE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "QUANTITY": {"name": "QUANTITY", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "RECURRING_PRICE": {"name": "RECURRING_PRICE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "SHIPPING_ADDRESS_ADDRESS1": {"name": "SHIPPING_ADDRESS_ADDRESS1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_ADDRESS2": {"name": "SHIPPING_ADDRESS_ADDRESS2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_CITY": {"name": "SHIPPING_ADDRESS_CITY", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_COUNTRY": {"name": "SHIPPING_ADDRESS_COUNTRY", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_FIRST_NAME": {"name": "SHIPPING_ADDRESS_FIRST_NAME", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_LAST_NAME": {"name": "SHIPPING_ADDRESS_LAST_NAME", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_PHONE": {"name": "SHIPPING_ADDRESS_PHONE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(20)"}, "SHIPPING_ADDRESS_PROVINCE_CODE": {"name": "SHIPPING_ADDRESS_PROVINCE_CODE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(10)"}, "SHIPPING_ADDRESS_ZIP": {"name": "SHIPPING_ADDRESS_ZIP", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(20)"}, "SKIPPED_PRODUCT": {"name": "SKIPPED_PRODUCT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SKU": {"name": "SKU", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "STATUS": {"name": "STATUS", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "TOTAL_RECURRING_ORDERS": {"name": "TOTAL_RECURRING_ORDERS", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "UPDATED_AT": {"name": "UPDATED_AT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "VARIANT_TITLE": {"name": "VARIANT_TITLE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "bisons", "created_by": "iwo.hajduk@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__store_customers_exports/subscriptions_stg__store_customers_exports.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "bisons", "created_by": "iwo.hajduk@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082691.4624867, "relation_name": "dev_dkruh1.subscriptions_stg__store_customers_exports", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'store_customers_exports') }}\n\n), subscriptions_stg__store_customers_exports AS (\n\n SELECT \n\t\tBILLING_INTERVAL_FREQUENCY,\n\t\tBILLING_INTERVAL_UNIT,\n\t\tCREATED_AT,\n\t\tCURRENCY_CODE,\n\t\tCUSTOMER_EMAIL,\n\t\tDELIVERY_PRICE,\n\t\tEXPIRES_AFTER_NUM_BILLING_CYCLES,\n\t\tEXTERNAL_CUSTOMER_ID,\n\t\tEXTERNAL_PRODUCT_ID,\n\t\tEXTERNAL_SUBSCRIPTION_ID,\n\t\tEXTERNAL_VARIANT_ID,\n\t\tNEXT_BILLING_DATE,\n\t\tORDER_INTERVAL_FREQUENCY,\n\t\tORDER_INTERVAL_UNIT,\n\t\tPRODUCT_TITLE,\n\t\tQUANTITY,\n\t\tRECURRING_PRICE,\n\t\tSHIPPING_ADDRESS_ADDRESS1,\n\t\tSHIPPING_ADDRESS_ADDRESS2,\n\t\tSHIPPING_ADDRESS_CITY,\n\t\tSHIPPING_ADDRESS_COUNTRY,\n\t\tSHIPPING_ADDRESS_FIRST_NAME,\n\t\tSHIPPING_ADDRESS_LAST_NAME,\n\t\tSHIPPING_ADDRESS_PHONE,\n\t\tSHIPPING_ADDRESS_PROVINCE_CODE,\n\t\tSHIPPING_ADDRESS_ZIP,\n\t\tSKU,\n\t\tSTATUS,\n\t\tTOTAL_RECURRING_ORDERS,\n\t\tUPDATED_AT,\n\t\tVARIANT_TITLE\n FROM source\n\tWHERE CREATED_AT > '2023-11-05T00:00:01Z'\n\tAND CREATED_AT < '2023-11-10T10:00:01Z' \n\tAND UPDATED_AT > '2023-11-05T00:00:01Z'\n AND UPDATED_AT < '2023-11-10T10:00:01Z' \n)\n\nSELECT\n\tBILLING_INTERVAL_FREQUENCY,\n\tBILLING_INTERVAL_UNIT,\n\tCREATED_AT,\n\tCURRENCY_CODE,\n\tCUSTOMER_EMAIL,\n\tDELIVERY_PRICE,\n\tEXPIRES_AFTER_NUM_BILLING_CYCLES,\n\tEXTERNAL_CUSTOMER_ID,\n\tEXTERNAL_PRODUCT_ID,\n\tEXTERNAL_SUBSCRIPTION_ID,\n\tEXTERNAL_VARIANT_ID,\n\tNEXT_BILLING_DATE,\n\tORDER_INTERVAL_FREQUENCY,\n\tORDER_INTERVAL_UNIT,\n\tPRODUCT_TITLE,\n\tQUANTITY,\n\tRECURRING_PRICE,\n\tSHIPPING_ADDRESS_ADDRESS1,\n\tSHIPPING_ADDRESS_ADDRESS2,\n\tSHIPPING_ADDRESS_CITY,\n\tSHIPPING_ADDRESS_COUNTRY,\n\tSHIPPING_ADDRESS_FIRST_NAME,\n\tSHIPPING_ADDRESS_LAST_NAME,\n\tSHIPPING_ADDRESS_PHONE,\n\tSHIPPING_ADDRESS_PROVINCE_CODE,\n\tSHIPPING_ADDRESS_ZIP,\n\tSKU,\n\tSTATUS,\n\tTOTAL_RECURRING_ORDERS,\n\tUPDATED_AT,\n\tVARIANT_TITLE\nFROM subscriptions_stg__store_customers_exports", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "store_customers_exports"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.store_customers_exports"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__store_customers_exports/subscriptions_stg__store_customers_exports.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.store_customers_exports\n\n), subscriptions_stg__store_customers_exports AS (\n\n SELECT \n\t\tBILLING_INTERVAL_FREQUENCY,\n\t\tBILLING_INTERVAL_UNIT,\n\t\tCREATED_AT,\n\t\tCURRENCY_CODE,\n\t\tCUSTOMER_EMAIL,\n\t\tDELIVERY_PRICE,\n\t\tEXPIRES_AFTER_NUM_BILLING_CYCLES,\n\t\tEXTERNAL_CUSTOMER_ID,\n\t\tEXTERNAL_PRODUCT_ID,\n\t\tEXTERNAL_SUBSCRIPTION_ID,\n\t\tEXTERNAL_VARIANT_ID,\n\t\tNEXT_BILLING_DATE,\n\t\tORDER_INTERVAL_FREQUENCY,\n\t\tORDER_INTERVAL_UNIT,\n\t\tPRODUCT_TITLE,\n\t\tQUANTITY,\n\t\tRECURRING_PRICE,\n\t\tSHIPPING_ADDRESS_ADDRESS1,\n\t\tSHIPPING_ADDRESS_ADDRESS2,\n\t\tSHIPPING_ADDRESS_CITY,\n\t\tSHIPPING_ADDRESS_COUNTRY,\n\t\tSHIPPING_ADDRESS_FIRST_NAME,\n\t\tSHIPPING_ADDRESS_LAST_NAME,\n\t\tSHIPPING_ADDRESS_PHONE,\n\t\tSHIPPING_ADDRESS_PROVINCE_CODE,\n\t\tSHIPPING_ADDRESS_ZIP,\n\t\tSKU,\n\t\tSTATUS,\n\t\tTOTAL_RECURRING_ORDERS,\n\t\tUPDATED_AT,\n\t\tVARIANT_TITLE\n FROM source\n\tWHERE CREATED_AT > '2023-11-05T00:00:01Z'\n\tAND CREATED_AT < '2023-11-10T10:00:01Z' \n\tAND UPDATED_AT > '2023-11-05T00:00:01Z'\n AND UPDATED_AT < '2023-11-10T10:00:01Z' \n)\n\nSELECT\n\tBILLING_INTERVAL_FREQUENCY,\n\tBILLING_INTERVAL_UNIT,\n\tCREATED_AT,\n\tCURRENCY_CODE,\n\tCUSTOMER_EMAIL,\n\tDELIVERY_PRICE,\n\tEXPIRES_AFTER_NUM_BILLING_CYCLES,\n\tEXTERNAL_CUSTOMER_ID,\n\tEXTERNAL_PRODUCT_ID,\n\tEXTERNAL_SUBSCRIPTION_ID,\n\tEXTERNAL_VARIANT_ID,\n\tNEXT_BILLING_DATE,\n\tORDER_INTERVAL_FREQUENCY,\n\tORDER_INTERVAL_UNIT,\n\tPRODUCT_TITLE,\n\tQUANTITY,\n\tRECURRING_PRICE,\n\tSHIPPING_ADDRESS_ADDRESS1,\n\tSHIPPING_ADDRESS_ADDRESS2,\n\tSHIPPING_ADDRESS_CITY,\n\tSHIPPING_ADDRESS_COUNTRY,\n\tSHIPPING_ADDRESS_FIRST_NAME,\n\tSHIPPING_ADDRESS_LAST_NAME,\n\tSHIPPING_ADDRESS_PHONE,\n\tSHIPPING_ADDRESS_PROVINCE_CODE,\n\tSHIPPING_ADDRESS_ZIP,\n\tSKU,\n\tSTATUS,\n\tTOTAL_RECURRING_ORDERS,\n\tUPDATED_AT,\n\tVARIANT_TITLE\nFROM subscriptions_stg__store_customers_exports", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__subscription_contract": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__subscription_contract", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.sql", "unique_id": "model.yoda.subscriptions_stg__subscription_contract", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "subscriptions_stg__subscription_contract"], "alias": "subscriptions_stg__subscription_contract", "checksum": {"name": "sha256", "checksum": "7f6fa4b1f537a53f6a201a87a5d9a25d128800f99ada2d3bbff8131d731cea15"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "subscriptions_stg__subscription_contract", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "the owner's store id of the subscription contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "the external id of the subscription contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "the status id of the subscription contract", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval": {"name": "delivery_policy_interval", "description": "the interval type of the delivery cycle", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval_count": {"name": "delivery_policy_interval_count", "description": "the interval count of the delivery cycle", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval": {"name": "billing_policy_interval", "description": "the interval type of the billing cycle", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval_count": {"name": "billing_policy_interval_count", "description": "the interval count of the billing cycle", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_order_external_id": {"name": "original_order_external_id", "description": "the external order id of the order that the subscription contract was created from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_customer_id": {"name": "external_customer_id", "description": "the external id of the shopper", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status_last_updated_at": {"name": "status_last_updated_at", "description": "the date of that the last status of the subscription contract was changed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082691.4870138, "relation_name": "dev_dkruh1.subscriptions_stg__subscription_contract", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'subscription_contract') }}\n\n), subscriptions_stg__subscription_contract AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\texternal_id,\n\t\tstatus,\n\t\tdelivery_policy_interval,\n\t\tdelivery_policy_interval_count,\n\t\tbilling_policy_interval,\n\t\tbilling_policy_interval_count,\n\t\toriginal_order_external_id,\n\t\texternal_customer_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tstatus_last_updated_at,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_contract", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "subscription_contract"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.subscription_contract\n\n), subscriptions_stg__subscription_contract AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\texternal_id,\n\t\tstatus,\n\t\tdelivery_policy_interval,\n\t\tdelivery_policy_interval_count,\n\t\tbilling_policy_interval,\n\t\tbilling_policy_interval_count,\n\t\toriginal_order_external_id,\n\t\texternal_customer_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tstatus_last_updated_at,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_contract", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__subscription_contract_line": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__subscription_contract_line", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.sql", "unique_id": "model.yoda.subscriptions_stg__subscription_contract_line", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_line", "subscriptions_stg__subscription_contract_line"], "alias": "subscriptions_stg__subscription_contract_line", "checksum": {"name": "sha256", "checksum": "b607c594b869ba2d7f8a145e005786dd6da42a9aa1decf889c54c3ba46f8d70b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "subscriptions_stg__subscription_contract_line", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_contract_id": {"name": "subscription_contract_id", "description": "the internal subscription contract id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_external_id": {"name": "product_external_id", "description": "the product external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_external_id": {"name": "variant_external_id", "description": "the variant external id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "the quantity of the product within a subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price": {"name": "price", "description": "the current price of the product within a subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discounted_price": {"name": "discounted_price", "description": "TODO: Update Column {col_name} Information\nthe discounted price of the product within a subscription", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency_code": {"name": "currency_code", "description": "currency code", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082691.5774708, "relation_name": "dev_dkruh1.subscriptions_stg__subscription_contract_line", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'subscription_contract_line') }}\n\n), subscriptions_stg__subscription_contract_line AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tsubscription_contract_id,\n\t\tproduct_external_id,\n\t\tvariant_external_id,\n\t\tquantity,\n\t\tprice,\n\t\tdiscounted_price,\n\t\tcurrency_code\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_contract_line", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "subscription_contract_line"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.subscription_contract_line"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.subscription_contract_line\n\n), subscriptions_stg__subscription_contract_line AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tsubscription_contract_id,\n\t\tproduct_external_id,\n\t\tvariant_external_id,\n\t\tquantity,\n\t\tprice,\n\t\tdiscounted_price,\n\t\tcurrency_code\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_contract_line", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__subscription_contract_order": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__subscription_contract_order", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.sql", "unique_id": "model.yoda.subscriptions_stg__subscription_contract_order", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_order", "subscriptions_stg__subscription_contract_order"], "alias": "subscriptions_stg__subscription_contract_order", "checksum": {"name": "sha256", "checksum": "013ee6fe4c9a6621b5bc232cd77f95a3f95919bf0831436c68d4f29d53193c04"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "subscriptions_stg__subscription_contract_order", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "the order's store id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "the external subscription contract id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_order_id": {"name": "external_order_id", "description": "the external order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082691.648466, "relation_name": "dev_dkruh1.subscriptions_stg__subscription_contract_order", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'subscription_contract_order') }}\n\n), subscriptions_stg__subscription_contract_order AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\texternal_subscription_contract_id,\n\t\texternal_order_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_contract_order", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "subscription_contract_order"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.subscription_contract_order\n\n), subscriptions_stg__subscription_contract_order AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\texternal_subscription_contract_id,\n\t\texternal_order_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tis_logical_deleted\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_contract_order", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__subscription_creation_request": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__subscription_creation_request", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.sql", "unique_id": "model.yoda.subscriptions_stg__subscription_creation_request", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_creation_request", "subscriptions_stg__subscription_creation_request"], "alias": "subscriptions_stg__subscription_creation_request", "checksum": {"name": "sha256", "checksum": "4b5fc4431b8482e8a982ea8dcb9611766a3ce128f9503d1da4ddcffdd4a316e2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "request_status": {"name": "request_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_id": {"name": "contract_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uploaded_file_id": {"name": "uploaded_file_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "line_number": {"name": "line_number", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "idempotency_key": {"name": "idempotency_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "next_billing_date": {"name": "next_billing_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency_code": {"name": "currency_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_status": {"name": "subscription_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "selling_plan_name": {"name": "selling_plan_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_price": {"name": "delivery_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delivery_interval": {"name": "delivery_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_interval_count": {"name": "delivery_interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_interval": {"name": "billing_interval", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_interval_count": {"name": "billing_interval_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shipping_code": {"name": "shipping_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_method_id": {"name": "payment_method_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_provider_payment_method_id": {"name": "payment_provider_payment_method_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_provider_customer_id": {"name": "payment_provider_customer_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_provider_type": {"name": "payment_provider_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "robins", "created_by": "omamiya@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082691.7274687, "relation_name": "dev_dkruh1.subscriptions_stg__subscription_creation_request", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'subscription_creation_request') }}\n\n), subscriptions_stg__subscription_creation_request AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_at,\n\t\trequest_status,\n\t\tstore_id,\n\t\tcontract_id,\n\t\tuploaded_file_id,\n\t\tline_number,\n\t\tidempotency_key,\n\t\tnext_billing_date,\n\t\tcurrency_code,\n\t\tsubscription_status,\n\t\tselling_plan_name,\n\t\tdelivery_price,\n\t\tdelivery_interval,\n\t\tdelivery_interval_count,\n\t\tbilling_interval,\n\t\tbilling_interval_count,\n\t\tshipping_code,\n\t\tpayment_method_id,\n\t\tpayment_provider_payment_method_id,\n\t\tpayment_provider_customer_id,\n\t\tpayment_provider_type,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_creation_request", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "subscription_creation_request"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.subscription_creation_request"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.subscription_creation_request\n\n), subscriptions_stg__subscription_creation_request AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_at,\n\t\trequest_status,\n\t\tstore_id,\n\t\tcontract_id,\n\t\tuploaded_file_id,\n\t\tline_number,\n\t\tidempotency_key,\n\t\tnext_billing_date,\n\t\tcurrency_code,\n\t\tsubscription_status,\n\t\tselling_plan_name,\n\t\tdelivery_price,\n\t\tdelivery_interval,\n\t\tdelivery_interval_count,\n\t\tbilling_interval,\n\t\tbilling_interval_count,\n\t\tshipping_code,\n\t\tpayment_method_id,\n\t\tpayment_provider_payment_method_id,\n\t\tpayment_provider_customer_id,\n\t\tpayment_provider_type,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_creation_request", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__subscription_line_action": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__subscription_line_action", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.sql", "unique_id": "model.yoda.subscriptions_stg__subscription_line_action", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "subscriptions_stg__subscription_line_action"], "alias": "subscriptions_stg__subscription_line_action", "checksum": {"name": "sha256", "checksum": "77eb1f3ed4c5fc84b9b44fc6d3cc6e6381c699ec2e4b881aa23e2eec86c1f296"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_line_id": {"name": "external_line_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_variant_id": {"name": "external_variant_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_status": {"name": "action_status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price": {"name": "total_price", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "tigons", "created_by": "tdeshalit@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_executor"}}}, "created_at": 1700082691.7509189, "relation_name": "dev_dkruh1.subscriptions_stg__subscription_line_action", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('subscriptions__subscriptions', 'subscription_line_action') }}\n\n), subscriptions_stg__subscription_line_action AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\texternal_subscription_contract_id,\n\t\texternal_line_id,\n\t\texternal_variant_id,\n\t\taction_type,\n\t\taction_status,\n\t\tquantity,\n\t\ttotal_price,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_line_action", "language": "sql", "refs": [], "sources": [["subscriptions__subscriptions", "subscription_line_action"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.subscriptions__subscriptions.subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM subscriptions.subscription_line_action\n\n), subscriptions_stg__subscription_line_action AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\texternal_subscription_contract_id,\n\t\texternal_line_id,\n\t\texternal_variant_id,\n\t\taction_type,\n\t\taction_status,\n\t\tquantity,\n\t\ttotal_price,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM subscriptions_stg__subscription_line_action", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__synergy_sms_payment_failure": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__synergy_sms_payment_failure", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.sql", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.sql", "unique_id": "model.yoda.subscriptions_stg__synergy_sms_payment_failure", "fqn": ["yoda", "subscriptions", "staging", "marts_compatible", "subscriptions_stg__synergy_sms_payment_failure", "subscriptions_stg__synergy_sms_payment_failure"], "alias": "subscriptions_stg__synergy_sms_payment_failure", "checksum": {"name": "sha256", "checksum": "b432914a307a9f9ca233f751de7f185cbff64857d49462f1450238a19bbefddd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "SMS query for getting relevant information for the 'Subscription payment failure notification flow' attributions KPI", "columns": {"sms_id": {"name": "sms_id", "description": "ID of the sent SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number": {"name": "number", "description": "Customer's phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicks_count": {"name": "clicks_count", "description": "How many times the customer clicked on the link in the SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "Time of the SMS sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "Merchant's store ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "Customer ID as extracted from the SMS link", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_id": {"name": "contract_id", "description": "Subscription' contract ID as extracted from the SMS link", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "Customer email as extracted from the SMS link", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082692.0738587, "relation_name": "dev_dkruh1.subscriptions_stg__synergy_sms_payment_failure", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n SELECT\n sms_id,\n number,\n clicks_count,\n processing_time,\n link,\n flow_trigger\n FROM {{ ref('sms__flows_links_clicks') }}\n\n), sms_payment_failure_flow AS (\n SELECT \n sms_id, \n number, \n clicks_count, \n processing_time,\n SUBSTRING_INDEX(SUBSTRING_INDEX(link, 'guid=', -1), '&', 1) as app_key,\n SUBSTRING_INDEX(SUBSTRING_INDEX(link, 'customer_id=', -1), '&', 1) as customer_id,\n SUBSTRING_INDEX(SUBSTRING_INDEX(link, 'contract_id=', -1), '&', 1) as contract_id,\n SUBSTRING_INDEX(SUBSTRING_INDEX(link, 'email=', -1), '&', 1) as email\n FROM source\n WHERE flow_trigger = 'yotpo_subscriptions/payment_problem'\n AND link like '%contract_id%'\n)\n\nSELECT * \nFROM sms_payment_failure_flow", "language": "sql", "refs": [{"name": "sms__flows_links_clicks", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.sms__flows_links_clicks"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH source AS (\n SELECT\n sms_id,\n number,\n clicks_count,\n processing_time,\n link,\n flow_trigger\n FROM dev_dkruh1.sms__flows_links_clicks\n\n), sms_payment_failure_flow AS (\n SELECT \n sms_id, \n number, \n clicks_count, \n processing_time,\n SUBSTRING_INDEX(SUBSTRING_INDEX(link, 'guid=', -1), '&', 1) as app_key,\n SUBSTRING_INDEX(SUBSTRING_INDEX(link, 'customer_id=', -1), '&', 1) as customer_id,\n SUBSTRING_INDEX(SUBSTRING_INDEX(link, 'contract_id=', -1), '&', 1) as contract_id,\n SUBSTRING_INDEX(SUBSTRING_INDEX(link, 'email=', -1), '&', 1) as email\n FROM source\n WHERE flow_trigger = 'yotpo_subscriptions/payment_problem'\n AND link like '%contract_id%'\n)\n\nSELECT * \nFROM sms_payment_failure_flow", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.subscriptions_stg__synergy_subs_payment_failure": {"database": null, "schema": "dev_dkruh1", "name": "subscriptions_stg__synergy_subs_payment_failure", "resource_type": "model", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.sql", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.sql", "unique_id": "model.yoda.subscriptions_stg__synergy_subs_payment_failure", "fqn": ["yoda", "subscriptions", "staging", "marts_compatible", "subscriptions_stg__synergy_subs_payment_failure", "subscriptions_stg__synergy_subs_payment_failure"], "alias": "subscriptions_stg__synergy_subs_payment_failure", "checksum": {"name": "sha256", "checksum": "8193016f474ed02644e0c1719ab5368ea034bebecacc69d6f2af31ccf05e0d42"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["subscriptions", "subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["subscriptions"], "description": "Subscription order for each SMS message of type 'payment failure'", "columns": {"sms_id": {"name": "sms_id", "description": "ID of the sent SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number": {"name": "number", "description": "Customer phone number", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicks_count": {"name": "clicks_count", "description": "How many times the customer clicked on the link in the SMS", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "Time of the SMS sent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "Merchant's store ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "Customer ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_id": {"name": "contract_id", "description": "Subscription' contract ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "Customer Email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "Order ID which occured at a specific time range after the SMS message was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["subscriptions"], "meta": {"model_ownership": {"group": "subscriptions", "team": "elks", "created_by": "nfarcas@yotpo.com", "alert_channels": ["subscriptions-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082692.1293879, "relation_name": "dev_dkruh1.subscriptions_stg__synergy_subs_payment_failure", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH sms_payment_failure AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__synergy_sms_payment_failure') }}\n\n), billing_attempt_response AS (\n\n SELECT * FROM {{ ref('subscriptions_stg__billing_attempt_response') }}\n\n), sms_payment_failure_flow AS (\n SELECT DISTINCT\n MAX(sms.sms_id) as sms_id,\n MAX(sms.number) as number,\n MAX(sms.clicks_count) as clicks_count, \n MAX(sms.processing_time) as processing_time,\n MAX(sms.app_key) as app_key,\n MAX(sms.customer_id) as customer_id, \n MAX(sms.contract_id) as contract_id,\n MAX(sms.email) as email,\n MAX(response.external_order_id) as order_id\n FROM sms_payment_failure AS sms\n INNER JOIN billing_attempt_response AS response \n ON response.external_subscription_contract_id = sms.contract_id\n WHERE DATEDIFF(day, response.created_at, sms.processing_time) <= 3\n AND DATEDIFF(day, response.created_at, sms.processing_time) > -5\n GROUP BY response.external_subscription_contract_id\n)\n\nSELECT * \nFROM sms_payment_failure_flow", "language": "sql", "refs": [{"name": "subscriptions_stg__synergy_sms_payment_failure", "package": null, "version": null}, {"name": "subscriptions_stg__billing_attempt_response", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure", "model.yoda.subscriptions_stg__billing_attempt_response"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH sms_payment_failure AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__synergy_sms_payment_failure\n\n), billing_attempt_response AS (\n\n SELECT * FROM dev_dkruh1.subscriptions_stg__billing_attempt_response\n\n), sms_payment_failure_flow AS (\n SELECT DISTINCT\n MAX(sms.sms_id) as sms_id,\n MAX(sms.number) as number,\n MAX(sms.clicks_count) as clicks_count, \n MAX(sms.processing_time) as processing_time,\n MAX(sms.app_key) as app_key,\n MAX(sms.customer_id) as customer_id, \n MAX(sms.contract_id) as contract_id,\n MAX(sms.email) as email,\n MAX(response.external_order_id) as order_id\n FROM sms_payment_failure AS sms\n INNER JOIN billing_attempt_response AS response \n ON response.external_subscription_contract_id = sms.contract_id\n WHERE DATEDIFF(day, response.created_at, sms.processing_time) <= 3\n AND DATEDIFF(day, response.created_at, sms.processing_time) > -5\n GROUP BY response.external_subscription_contract_id\n)\n\nSELECT * \nFROM sms_payment_failure_flow", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.support__review_request": {"database": null, "schema": "dev_dkruh1", "name": "support__review_request", "resource_type": "model", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.sql", "original_file_path": "models/support/marts/support__review_request/support__review_request.sql", "unique_id": "model.yoda.support__review_request", "fqn": ["yoda", "support", "marts", "support__review_request", "support__review_request"], "alias": "support__review_request", "checksum": {"name": "sha256", "checksum": "bec619dcee4e5c2c43457471da8a80fbeb8ef50ed1c5c435b45c072dad6ac0f6"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["support", "support"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["support"], "description": "view of review requests for support looker backoffice report | PK and granularity: channel_name | channel_message_id", "columns": {"channel_type": {"name": "channel_type", "description": "channel type: Email/SMS/Flow", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel_id": {"name": "channel_id", "description": "channel id: caller id of the channel - PK 2/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source": {"name": "source", "description": "source: review_request_email/review_request_sms/email_authentications - PK 1/2", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivered_at": {"name": "delivered_at", "description": "message delivered timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delivered_date": {"name": "delivered_date", "description": "message delivered date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "token": {"name": "token", "description": "token", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "yotpo account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "yotpo store unique identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_id": {"name": "organization_id", "description": "organization identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_name": {"name": "user_name", "description": "user name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_email": {"name": "user_email", "description": "email address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_request_type_id": {"name": "review_request_type_id", "description": "message type id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_name": {"name": "review_source_type_name", "description": "message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "form_type": {"name": "form_type", "description": "form type: in_mail_form/formless/media_queries", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "caller_type": {"name": "caller_type", "description": "caller type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "caller_id": {"name": "caller_id", "description": "caller id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_request_order_id": {"name": "review_request_order_id", "description": "order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_request_order_created_at": {"name": "review_request_order_created_at", "description": "order creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_request_order_number_of_products": {"name": "review_request_order_number_of_products", "description": "order number of products", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number_of_reviews": {"name": "number_of_reviews", "description": "number of reviews", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_review_created_at": {"name": "first_review_created_at", "description": "first review creation timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_reviewed": {"name": "is_reviewed", "description": "reviewed indicator", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "number_of_reviews_with_images": {"name": "number_of_reviews_with_images", "description": "number of reviews with image", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number_of_images": {"name": "number_of_images", "description": "number of images", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number_of_reviews_with_videos": {"name": "number_of_reviews_with_videos", "description": "number of reviews with video", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number_of_videos": {"name": "number_of_videos", "description": "number of videos", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_request_number_per_order": {"name": "review_request_number_per_order", "description": "message rank per order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "email_number_per_order": {"name": "email_number_per_order", "description": "email rank per order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "sms_number_per_order": {"name": "sms_number_per_order", "description": "sms rank per order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "num_of_days_from_order_to_review_request": {"name": "num_of_days_from_order_to_review_request", "description": "number of days from order to review request", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "num_of_days_from_review_request_to_review": {"name": "num_of_days_from_review_request_to_review", "description": "number of days from review request to review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "record's writing timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/support/marts/support__review_request/support__review_request.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["support"], "materialized": "view", "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082692.178959, "relation_name": "dev_dkruh1.support__review_request", "raw_code": "{{config(materialized = 'view')}}\n\n-- Import --\n\nWITH import_ugc_review_request AS (\nSELECT * FROM {{ ref('analytics___ugc__review_request') }}\n),\n\n-- Logic --\n\nsupport_review_request_res AS (\nSELECT\n channel_type,\n channel_message_id AS channel_id,\n channel_name AS source,\n delivered_at,\n delivered_date,\n token,\n account_id AS store_id,\n app_key,\n organization_id,\n user_name,\n email_address AS user_email,\n message_type_id AS review_request_type_id,\n message_type AS review_source_type_name,\n form_type,\n caller_type,\n caller_id,\n order_id AS review_request_order_id,\n order_created_at AS review_request_order_created_at,\n product_cnt AS review_request_order_number_of_products,\n review_cnt AS number_of_reviews,\n first_review_created_at,\n is_reviewed,\n review_with_image_cnt AS number_of_reviews_with_images,\n image_cnt AS number_of_images,\n review_with_video_cnt AS number_of_reviews_with_videos,\n video_cnt AS number_of_videos,\n message_rank_per_order AS review_request_number_per_order,\n email_rank_per_order AS email_number_per_order,\n sms_rank_per_order AS sms_number_per_order,\n from_order_to_review_request_day_cnt AS num_of_days_from_order_to_review_request,\n from_review_request_to_review_day_cnt AS num_of_days_from_review_request_to_review,\n dwh_updated_at\nFROM import_ugc_review_request\n)\n\n-- Result --\n\nSELECT *\nFROM support_review_request_res", "language": "sql", "refs": [{"name": "analytics___ugc__review_request", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.analytics___ugc__review_request"]}, "compiled_path": "target/compiled/yoda/models/support/marts/support__review_request/support__review_request.sql", "compiled": true, "compiled_code": "\n\n-- Import --\n\nWITH import_ugc_review_request AS (\nSELECT * FROM dev_dkruh1.analytics___ugc__review_request\n),\n\n-- Logic --\n\nsupport_review_request_res AS (\nSELECT\n channel_type,\n channel_message_id AS channel_id,\n channel_name AS source,\n delivered_at,\n delivered_date,\n token,\n account_id AS store_id,\n app_key,\n organization_id,\n user_name,\n email_address AS user_email,\n message_type_id AS review_request_type_id,\n message_type AS review_source_type_name,\n form_type,\n caller_type,\n caller_id,\n order_id AS review_request_order_id,\n order_created_at AS review_request_order_created_at,\n product_cnt AS review_request_order_number_of_products,\n review_cnt AS number_of_reviews,\n first_review_created_at,\n is_reviewed,\n review_with_image_cnt AS number_of_reviews_with_images,\n image_cnt AS number_of_images,\n review_with_video_cnt AS number_of_reviews_with_videos,\n video_cnt AS number_of_videos,\n message_rank_per_order AS review_request_number_per_order,\n email_rank_per_order AS email_number_per_order,\n sms_rank_per_order AS sms_number_per_order,\n from_order_to_review_request_day_cnt AS num_of_days_from_order_to_review_request,\n from_review_request_to_review_day_cnt AS num_of_days_from_review_request_to_review,\n dwh_updated_at\nFROM import_ugc_review_request\n)\n\n-- Result --\n\nSELECT *\nFROM support_review_request_res", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc__export_reviews": {"database": null, "schema": "dev_dkruh1", "name": "ugc__export_reviews", "resource_type": "model", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.sql", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.sql", "unique_id": "model.yoda.ugc__export_reviews", "fqn": ["yoda", "ugc", "marts", "ugc__export_reviews", "ugc__export_reviews"], "alias": "ugc__export_reviews", "checksum": {"name": "sha256", "checksum": "e878d4123dc512628375d6169262b227302d2d7740dbd38768768af73abf3435"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "This table is used in reviews app moderation view for exporting data to CSV.", "columns": {"app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_id": {"name": "review_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_creation_date": {"name": "review_creation_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_type": {"name": "review_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status_details": {"name": "status_details", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_source": {"name": "review_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_score": {"name": "review_score", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_title": {"name": "review_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_content": {"name": "review_content", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sentiment_score": {"name": "sentiment_score", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "profanity_flag": {"name": "profanity_flag", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "published_image_urls": {"name": "published_image_urls", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unpublished_image_urls": {"name": "unpublished_image_urls", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "published_video_urls": {"name": "published_video_urls", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unpublished_video_urls": {"name": "unpublished_video_urls", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comment_date": {"name": "comment_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "comment_content": {"name": "comment_content", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comment_public": {"name": "comment_public", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_tags": {"name": "review_tags", "description": "Concatenated list of tags of a review joined with ';'", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_tag_ids": {"name": "review_tag_ids", "description": "Array with tag ids of tags of given review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "votes_up": {"name": "votes_up", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "votes_down": {"name": "votes_down", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "External id of the order from orders table.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "pushed_to_social": {"name": "pushed_to_social", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewer_display_name": {"name": "reviewer_display_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewer_email": {"name": "reviewer_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_type": {"name": "user_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_code": {"name": "country_code", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_type": {"name": "device_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_title": {"name": "product_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_description": {"name": "product_description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_url": {"name": "product_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_image_url": {"name": "product_image_url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_handle": {"name": "product_handle", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_created_at": {"name": "product_created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_group_id": {"name": "product_group_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_category": {"name": "product_category", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_upc": {"name": "product_upc", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_sku": {"name": "product_sku", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_brand": {"name": "product_brand", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_mpn": {"name": "product_mpn", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_isbn": {"name": "product_isbn", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_internal_id": {"name": "product_internal_id", "description": "Yotpo internal id of product; not exposed in report", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "incentivized_flag": {"name": "incentivized_flag", "description": "Boolean flag indicating whether a review was incentivized", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/marts/ugc__export_reviews/ugc__export_reviews.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "materialized": "table", "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "large"}}, "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}}, "created_at": 1700082692.3233461, "relation_name": "dev_dkruh1.ugc__export_reviews", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partitioning = {\n \"field\": \"app_key\",\n \"type\": \"hash\",\n \"partitions\": 256\n }\n )\n}}\nWITH relevant_reviews_subjects AS (\n SELECT * \n FROM {{ref('ugc_stg__relevant_reviews_subject')}}\n),\nproducts AS (\n SELECT * \n FROM {{ref('platform_stg__products')}}\n),\nimages AS (\n SELECT * \n FROM {{ref('ugc_stg__images')}}\n WHERE LOWER(imageable_type) = 'review'\n),\nproducts_images AS (\n SELECT * \n FROM {{ref('ugc_stg__images')}}\n WHERE LOWER(imageable_type) = 'product'\n),\nvideos AS (\n SELECT * \n FROM {{ref('ugc_stg__videos')}}\n WHERE videoable_type = 'Review'\n),\nmongo_gallery AS (\n SELECT * \n FROM {{ref('ugc_stg__mongo_gallery_media')}}\n),\ncomments AS (\n SELECT * \n FROM {{ref('ugc_stg__comments')}}\n WHERE commentable_type = 'Review'\n),\nmoderation_audits AS (\n SELECT * \n FROM {{ref('ugc_stg__moderation_audits')}}\n WHERE action_type != 'changed tags'\n),\nvotes AS (\n SELECT * \n FROM {{ref('ugc_stg__votes')}}\n WHERE voteable_type = 'Review'\n),\ndirty_words AS (\n SELECT * \n FROM {{ref('ugc_stg__dirty_words')}}\n WHERE model_type = 'Review'\n),\nusers_tbl AS (\n SELECT * \n FROM {{ref('ugc_stg__users')}}\n),\nanonymous_users AS (\n SELECT * \n FROM {{ref('ugc_stg__anonymous_users')}}\n),\naccounts AS (\n SELECT * \n FROM {{ ref('platform_stg__accounts') }} \n),\nreview_order_line AS (\n SELECT * \n FROM {{ref('ugc_stg__review_order_line')}}\n),\norders AS (\n SELECT *\n FROM {{ref('platform_stg__orders')}}\n),\norder_lines AS (\n SELECT *\n FROM {{ref('platform_stg__order_lines')}}\n),\nreview_tags AS (\n SELECT *\n FROM {{ref('ugc_stg__review_tags')}}\n),\ntags_to_reviews AS (\n SELECT *\n FROM {{ref('ugc_stg__tags_to_reviews')}}\n),\nreview_metadata AS (\n SELECT *\n FROM {{ref('analytics___ugc_stg__review_metadata')}}\n),\nmetadata_type AS (\n SELECT *\n FROM {{ref('analytics___ugc_stg__metadata_type')}}\n),\ngtins AS (\n SELECT *\n FROM {{ref('platform_stg__gtins')}}\n),\ncustom_attributes AS (\n SELECT *\n FROM {{ref('platform_stg__custom_attributes')}}\n),\nattribute_sets AS (\n SELECT *\n FROM {{ref('platform_stg__attribute_sets')}}\n),\nreviews_incentivized AS (\n SELECT * \n FROM {{ref('ugc_stg__reviews_incentivized')}}\n),\n--------------------------------------\n-- Retrieving reviews related products\n--------------------------------------\nreviews_base AS (\n SELECT \n review_id,\n first(app_key) as app_key,\n first(review_type) as review_type,\n first(review_title) as review_title,\n first(review_content) as review_content,\n first(review_score) as review_score,\n first(review_source) as review_source,\n first(review_date) as review_creation_date,\n first(updated_at) as updated_at,\n first(sentiment_score) as sentiment_score,\n first(pushed_to_social) as pushed_to_social,\n first(user_type) as user_type,\n first(reviewer_display_name) as reviewer_display_name,\n first(status) as status,\n first(user_id) as user_id\n FROM relevant_reviews_subjects \n GROUP BY\n review_id\n),\nrelevant_products as (\n SELECT * \n FROM products\n WHERE\n ts_ms >= (SELECT MIN(updated_at) FROM relevant_reviews_subjects)\n),\nproducts_data AS (\n SELECT\n relevant_reviews_subjects.review_id,\n relevant_products.id as product_internal_id,\n relevant_products.name as product_title,\n relevant_products.description as product_description,\n relevant_products.handle as product_handle,\n relevant_products.external_id as product_id,\n relevant_products.created_at as product_created_at,\n relevant_products.group_id as product_group_id,\n relevant_products.sku as product_sku,\n relevant_products.url as product_url\n FROM\n relevant_reviews_subjects\n INNER JOIN relevant_products \n ON relevant_reviews_subjects.subject_id = relevant_products.id\n WHERE\n relevant_reviews_subjects.subject_entity_type = 'product'\n),\nproducts_site_data AS (\n SELECT\n relevant_reviews_subjects.review_id,\n first(accounts.id) as product_internal_id,\n first(accounts.name) as product_title,\n null as product_description,\n null as product_handle,\n 'yotpo_site_reviews' as product_id,\n null as product_created_at,\n null as product_group_id,\n null as product_sku,\n null as product_url\n FROM\n relevant_reviews_subjects\n INNER JOIN accounts \n ON relevant_reviews_subjects.subject_id = accounts.id\n AND\n relevant_reviews_subjects.subject_entity_type = 'site'\n GROUP BY \n relevant_reviews_subjects.review_id\n),\nproducts_images_data AS (\n SELECT\n yotpo_resource_id as product_id,\n id as image_id,\n imageable_id,\n if(array_contains(array('jpeg', 'png', 'jpg', 'gif'), lower(substring_index(image_file_name, '.', -1))),\n substring_index(image_file_name, '.', -1), '') as image_extention\n FROM\n products_images\n),\ngtins_data AS ( \n SELECT \n gtinable_id as product_internal_id,\n MAX(CASE WHEN declared_type = 'UPC' THEN value ELSE null END) AS upc,\n MAX(CASE WHEN declared_type = 'ISBN' THEN value ELSE null END) AS isbn,\n MAX(CASE WHEN declared_type = 'EAN' THEN value ELSE null END) AS ean\n FROM \n gtins\n WHERE \n gtinable_type = 'product'\n AND declared_type IN ('UPC', 'ISBN', 'EAN')\n GROUP BY \n gtinable_id\n),\ncustom_attributes_data AS ( \n SELECT \n attributable_id as product_internal_id,\n MAX(CASE WHEN key = 'category' THEN string_value ELSE null END) AS category\n FROM \n custom_attributes\n WHERE \n attributable_type = 'product'\n AND key IN ('category')\n GROUP BY \n attributable_id\n),\nall_products_prepare AS (\n SELECT \n products_data.review_id,\n first(products_data.product_internal_id) as product_internal_id,\n first(products_data.product_title) as product_title,\n first(products_data.product_description) as product_description,\n first(products_data.product_handle) as product_handle,\n first(products_data.product_id) as product_id,\n first(products_data.product_created_at) as product_created_at,\n first(products_data.product_group_id) as product_group_id,\n first(products_data.product_sku) as product_sku,\n first(products_data.product_url) as product_url,\n first(gtins_data.upc) as product_upc,\n first(gtins_data.isbn) as product_isbn,\n first(custom_attributes_data.category) as product_category,\n first(attribute_sets.brand) as product_brand,\n first(attribute_sets.mpn) as product_mpn,\n IF(first(products_images_data.image_extention) IS NOT NULL AND first(products_data.product_id) != 'yotpo_site_reviews' , CONCAT(\"https://cdn-yotpo-images-production.yotpo.com/Product/\", first(products_images_data.imageable_id), \"/\", first(products_images_data.image_id), \"/thumb.\", first(products_images_data.image_extention)), NULL) AS product_image_url\n FROM\n products_data\n LEFT JOIN \n gtins_data ON gtins_data.product_internal_id = products_data.product_internal_id\n LEFT JOIN\n custom_attributes_data on custom_attributes_data.product_internal_id = products_data.product_internal_id\n LEFT JOIN\n attribute_sets on attribute_sets.attributable_id=products_data.product_internal_id and attribute_sets.attributable_type = 'product'\n LEFT JOIN\n products_images_data on products_images_data.product_id = products_data.product_internal_id\n GROUP BY\n products_data.review_id\n),\nall_products AS (\n SELECT\n review_id,\n product_internal_id,\n product_title,\n product_description,\n product_handle,\n product_id,\n product_created_at,\n product_group_id,\n product_sku,\n product_url,\n product_image_url,\n product_category,\n product_upc,\n product_brand,\n product_mpn,\n product_isbn\n FROM\n all_products_prepare\n UNION ALL\n SELECT\n review_id,\n product_internal_id,\n product_title,\n product_description,\n product_handle,\n product_id,\n product_created_at,\n product_group_id,\n product_sku,\n product_url,\n null,\n null,\n null,\n null,\n null,\n null\n FROM\n products_site_data\n),\n--------------------------------------\n-- Retrieving reviews related images\n--------------------------------------\nreviews_images_data AS (\n SELECT\n reviews_base.review_id,\n reviews_base.updated_at,\n images.id as image_id,\n published,\n substring_index(\n substring_index(image_file_name, '.', -1),\n '_',\n 1\n ) AS image_extension\n FROM\n reviews_base\n LEFT JOIN images \n ON images.imageable_id = reviews_base.review_id\n),\nreviews_images_data_with_specific_extensions AS (\n SELECT\n review_id,\n updated_at,\n image_id,\n published,\n IF(\n array_contains(\n array('jpeg', 'png', 'jpg', 'gif'),\n lower(image_extension)\n ),\n image_extension,\n ''\n ) as image_extension\n FROM\n reviews_images_data\n),\nreviews_images_data_with_specific_extensions_and_urls AS (\n SELECT\n *,\n IF(\n image_extension != '',\n CONCAT(\n 'https://cdn-yotpo-images-production.yotpo.com/Review/',\n review_id,\n '/',\n image_id,\n '/original.',\n image_extension\n ),\n NULL\n ) AS review_original_image_url,\n IF(\n image_extension != '',\n CONCAT('https://cdn-yotpo-images-production.yotpo.com/Review/',review_id,'/',image_id,'/square.',image_extension),\n NULL\n ) AS review_square_image_url,\n IF(\n image_extension != '',\n CONCAT('https://cdn-yotpo-images-production.yotpo.com/Review/',review_id,'/',image_id,'/facebook.',image_extension),\n NULL\n ) as review_facebook_image_url\n FROM\n reviews_images_data_with_specific_extensions\n),\nreviews_images_data_with_specific_extensions_and_urls_and_publish_urls AS (\n SELECT\n review_id,\n updated_at,\n image_id,\n published,\n review_original_image_url,\n review_square_image_url,\n review_facebook_image_url,\n IF (published = 1, review_original_image_url, NULL) AS published_image_url,\n IF (published != 1, review_original_image_url, NULL) AS unpublished_image_url\n FROM\n reviews_images_data_with_specific_extensions_and_urls\n),\nreviews_with_aggregated_image_data AS (\n SELECT\n review_id,\n updated_at,\n COUNT(DISTINCT image_id) AS imagesCount,\n CONCAT_WS('; ', COLLECT_SET(published_image_url)) AS published_image_urls,\n CONCAT_WS('; ', COLLECT_SET(unpublished_image_url)) AS unpublished_image_urls\n FROM\n reviews_images_data_with_specific_extensions_and_urls_and_publish_urls\n GROUP BY\n review_id,\n updated_at\n),\n--------------------------------------\n-- Retrieving reviews related videos\n--------------------------------------\nreview_ids_with_videos AS (\n SELECT\n reviews_base.review_id,\n reviews_base.updated_at,\n videos.id as videoId,\n videos.published as published,\n entry_id as entryId,\n video_key as galleryMediaId,\n mongo_gallery.video.original_sized_thumbnail_url as originalSizedThumbnailUrl,\n mongo_gallery.video.thumbnail_url as thumbnailUrl,\n mongo_gallery.video.url as url,\n IF (\n videos.published = 1,\n mongo_gallery.video.url,\n NULL\n ) AS review_published_video_url,\n IF (\n videos.published != 1,\n mongo_gallery.video.url,\n NULL\n ) AS review_unpublished_video_url\n FROM\n reviews_base\n LEFT JOIN videos \n ON reviews_base.review_id = videos.videoable_id\n LEFT JOIN mongo_gallery\n ON videos.video_key = mongo_gallery._id\n),\nreviews_with_aggregated_videos_data AS (\n SELECT\n review_id,\n updated_at,\n CONCAT_WS('; ', COLLECT_SET(review_published_video_url)) AS published_video_urls,\n CONCAT_WS('; ', COLLECT_SET(review_unpublished_video_url)) AS unpublished_video_urls,\n COUNT(DISTINCT if(videoId IS NOT null, videoId, null)) AS videosCount\n FROM\n review_ids_with_videos\n GROUP BY\n review_id,\n updated_at\n),\n--------------------------------------\n-- Retrieving reviews related comments\n--------------------------------------\nreviews_comments AS (\n SELECT\n reviews_base.review_id,\n comments.id AS comment_id,\n comments.content AS comment_content,\n comments.public AS comment_public,\n comments.created_at AS comment_date\n FROM\n reviews_base\n LEFT JOIN comments \n ON reviews_base.review_id = comments.commentable_id\n),\n--------------------------------------\n-- Retrieving reviews related moderation audits\n--------------------------------------\nreviews_with_moderation_audits AS (\n SELECT\n relevant_reviews_subjects.review_id,\n IF(\n (last(action_type) = 'rejected' AND last(relevant_reviews_subjects.archived) = 1)\n OR \n (last(action_type) = 'escalated' AND last(relevant_reviews_subjects.escalated) = 1),\n last(reason),\n NULL\n ) AS status_details\n FROM\n relevant_reviews_subjects\n JOIN moderation_audits \n ON relevant_reviews_subjects.review_id = moderation_audits.review_id\n AND action_type IN ('rejected', 'escalated', 'unpublished', 'published', 'archived')\n GROUP BY\n relevant_reviews_subjects.review_id\n),\n--------------------------------------\n-- Retrieving reviews related votes\n--------------------------------------\nreviews_with_votes_prepare AS (\n SELECT\n reviews_base.review_id,\n SUM(IF(vote = 1, 1, 0)) AS votes_up,\n SUM(IF(vote = -1, 1, 0)) AS votes_down\n FROM\n reviews_base\n LEFT JOIN votes \n ON reviews_base.review_id = votes.voteable_id\n GROUP BY\n review_id\n),\n--------------------------------------\n-- Retrieving reviews dirty words\n--------------------------------------\nreviews_with_dirty_words AS (\n SELECT\n reviews_base.review_id,\n SUM(CASE WHEN dirty_words.id IS NULL THEN 0 ELSE 1 END) > 0 AS profanity_flag\n FROM reviews_base\n JOIN dirty_words \n ON dirty_words.model_id = reviews_base.review_id\n GROUP BY reviews_base.review_id\n),\n--------------------------------------\n-- Retrieving reviews user data\n--------------------------------------\nreviews_users AS (\n SELECT\n reviews_base.review_id,\n reviews_base.user_id,\n email AS reviewer_email\n FROM\n reviews_base\n JOIN users_tbl \n ON reviews_base.user_id = users_tbl.id\n WHERE\n reviews_base.user_type = 'User'\n),\nreviews_anonymous_users AS (\n SELECT\n reviews_base.review_id,\n reviews_base.user_id,\n email AS reviewer_email\n FROM\n reviews_base\n JOIN anonymous_users \n ON reviews_base.user_id = anonymous_users.id\n WHERE\n reviews_base.user_type = 'AnonymousUser'\n),\nreviews_all_users AS (\n SELECT\n review_id,\n user_id,\n reviewer_email\n FROM\n reviews_users\n UNION ALL\n SELECT\n review_id,\n user_id,\n reviewer_email\n FROM\n reviews_anonymous_users\n),\n--------------------------------------\n-- Retrieving reviews order data\n--------------------------------------\nreviews_with_order_data AS (\n SELECT\n review_order_line.review_id,\n orders.external_order_id as order_id,\n orders.order_date\n FROM review_order_line\n INNER JOIN order_lines ON review_order_line.order_line_id = order_lines.id\n INNER JOIN orders ON order_lines.order_id = orders.id\n),\n--------------------------------------\n-- Retrieving reviews metadata\n--------------------------------------\nreviews_with_tags AS (\n SELECT\n tags_to_reviews.review_id,\n array_distinct(collect_list(review_tag_id)) as review_tag_ids,\n CONCAT_WS(';', COLLECT_SET(review_tags.name)) as review_tags\n FROM tags_to_reviews\n INNER JOIN review_tags ON tags_to_reviews.review_tag_id = review_tags.id\n GROUP BY tags_to_reviews.review_id\n),\nreviews_with_metadata AS (\n SELECT * FROM (\n SELECT \n review_metadata.review_id,\n metadata_type.metadata_name as key,\n review_metadata.metadata_type_value as value\n FROM review_metadata\n INNER JOIN metadata_type ON review_metadata.metadata_type_id = metadata_type.metadata_type_id\n )\n PIVOT (\n MAX(value) FOR key in ('device_type', 'country_code')\n )\n),\n--------------------------------------\n-- Retrieving incentivized reviews information\n--------------------------------------\nreviews_with_incentivized_flag AS (\n SELECT\n reviews_base.review_id,\n CASE WHEN reviews_incentivized.reviews_incentivized_type_id IS NULL THEN false ELSE true END AS incentivized_flag\n FROM reviews_base\n JOIN reviews_incentivized\n ON reviews_incentivized.review_id = reviews_base.review_id\n)\n----------------------------------------------------------------------------\n------- creating report data based on reviews and all the above enrichments\n----------------------------------------------------------------------------\nSELECT\n reviews_base.app_key,\n reviews_base.review_id,\n reviews_base.review_creation_date,\n reviews_base.review_type,\n reviews_base.status,\n reviews_with_moderation_audits.status_details,\n reviews_base.review_source,\n reviews_base.review_score,\n reviews_base.review_title,\n reviews_base.review_content,\n reviews_base.sentiment_score,\n reviews_with_dirty_words.profanity_flag,\n reviews_with_aggregated_image_data.published_image_urls,\n reviews_with_aggregated_image_data.unpublished_image_urls,\n reviews_with_aggregated_videos_data.published_video_urls,\n reviews_with_aggregated_videos_data.unpublished_video_urls,\n reviews_comments.comment_date,\n reviews_comments.comment_content,\n reviews_comments.comment_public,\n reviews_with_tags.review_tags,\n reviews_with_tags.review_tag_ids,\n reviews_with_votes_prepare.votes_up,\n reviews_with_votes_prepare.votes_down,\n reviews_with_order_data.order_id,\n reviews_with_order_data.order_date,\n reviews_base.pushed_to_social,\n reviews_base.reviewer_display_name,\n reviews_all_users.reviewer_email,\n reviews_base.user_type,\n reviews_with_metadata.country_code,\n reviews_with_metadata.device_type,\n all_products.product_id,\n all_products.product_title,\n all_products.product_description,\n all_products.product_url,\n all_products.product_image_url,\n all_products.product_handle,\n all_products.product_created_at,\n all_products.product_group_id,\n all_products.product_category,\n all_products.product_upc,\n all_products.product_sku,\n all_products.product_brand,\n all_products.product_mpn,\n all_products.product_isbn,\n all_products.product_internal_id,\n reviews_with_incentivized_flag.incentivized_flag\nFROM\n reviews_base\n LEFT JOIN all_products ON all_products.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_aggregated_image_data ON reviews_with_aggregated_image_data.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_aggregated_videos_data ON reviews_with_aggregated_videos_data.review_id = reviews_base.review_id\n LEFT JOIN reviews_comments ON reviews_comments.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_moderation_audits ON reviews_with_moderation_audits.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_votes_prepare ON reviews_with_votes_prepare.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_dirty_words ON reviews_with_dirty_words.review_id = reviews_base.review_id\n LEFT JOIN reviews_all_users ON reviews_all_users.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_order_data ON reviews_with_order_data.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_tags ON reviews_with_tags.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_metadata ON reviews_with_metadata.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_incentivized_flag ON reviews_with_incentivized_flag.review_id = reviews_base.review_id", "language": "sql", "refs": [{"name": "ugc_stg__relevant_reviews_subject", "package": null, "version": null}, {"name": "platform_stg__products", "package": null, "version": null}, {"name": "ugc_stg__images", "package": null, "version": null}, {"name": "ugc_stg__images", "package": null, "version": null}, {"name": "ugc_stg__videos", "package": null, "version": null}, {"name": "ugc_stg__mongo_gallery_media", "package": null, "version": null}, {"name": "ugc_stg__comments", "package": null, "version": null}, {"name": "ugc_stg__moderation_audits", "package": null, "version": null}, {"name": "ugc_stg__votes", "package": null, "version": null}, {"name": "ugc_stg__dirty_words", "package": null, "version": null}, {"name": "ugc_stg__users", "package": null, "version": null}, {"name": "ugc_stg__anonymous_users", "package": null, "version": null}, {"name": "platform_stg__accounts", "package": null, "version": null}, {"name": "ugc_stg__review_order_line", "package": null, "version": null}, {"name": "platform_stg__orders", "package": null, "version": null}, {"name": "platform_stg__order_lines", "package": null, "version": null}, {"name": "ugc_stg__review_tags", "package": null, "version": null}, {"name": "ugc_stg__tags_to_reviews", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_metadata", "package": null, "version": null}, {"name": "analytics___ugc_stg__metadata_type", "package": null, "version": null}, {"name": "platform_stg__gtins", "package": null, "version": null}, {"name": "platform_stg__custom_attributes", "package": null, "version": null}, {"name": "platform_stg__attribute_sets", "package": null, "version": null}, {"name": "ugc_stg__reviews_incentivized", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.platform_stg__products", "model.yoda.ugc_stg__images", "model.yoda.ugc_stg__images", "model.yoda.ugc_stg__videos", "model.yoda.ugc_stg__mongo_gallery_media", "model.yoda.ugc_stg__comments", "model.yoda.ugc_stg__moderation_audits", "model.yoda.ugc_stg__votes", "model.yoda.ugc_stg__dirty_words", "model.yoda.ugc_stg__users", "model.yoda.ugc_stg__anonymous_users", "model.yoda.platform_stg__accounts", "model.yoda.ugc_stg__review_order_line", "model.yoda.platform_stg__orders", "model.yoda.platform_stg__order_lines", "model.yoda.ugc_stg__review_tags", "model.yoda.ugc_stg__tags_to_reviews", "model.yoda.analytics___ugc_stg__review_metadata", "model.yoda.analytics___ugc_stg__metadata_type", "model.yoda.platform_stg__gtins", "model.yoda.platform_stg__custom_attributes", "model.yoda.platform_stg__attribute_sets", "model.yoda.ugc_stg__reviews_incentivized"]}, "compiled_path": "target/compiled/yoda/models/ugc/marts/ugc__export_reviews/ugc__export_reviews.sql", "compiled": true, "compiled_code": "\nWITH relevant_reviews_subjects AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__relevant_reviews_subject\n),\nproducts AS (\n SELECT * \n FROM dev_dkruh1.platform_stg__products\n),\nimages AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__images\n WHERE LOWER(imageable_type) = 'review'\n),\nproducts_images AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__images\n WHERE LOWER(imageable_type) = 'product'\n),\nvideos AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__videos\n WHERE videoable_type = 'Review'\n),\nmongo_gallery AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__mongo_gallery_media\n),\ncomments AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__comments\n WHERE commentable_type = 'Review'\n),\nmoderation_audits AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__moderation_audits\n WHERE action_type != 'changed tags'\n),\nvotes AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__votes\n WHERE voteable_type = 'Review'\n),\ndirty_words AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__dirty_words\n WHERE model_type = 'Review'\n),\nusers_tbl AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__users\n),\nanonymous_users AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__anonymous_users\n),\naccounts AS (\n SELECT * \n FROM dev_dkruh1.platform_stg__accounts \n),\nreview_order_line AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__review_order_line\n),\norders AS (\n SELECT *\n FROM dev_dkruh1.platform_stg__orders\n),\norder_lines AS (\n SELECT *\n FROM dev_dkruh1.platform_stg__order_lines\n),\nreview_tags AS (\n SELECT *\n FROM dev_dkruh1.ugc_stg__review_tags\n),\ntags_to_reviews AS (\n SELECT *\n FROM dev_dkruh1.ugc_stg__tags_to_reviews\n),\nreview_metadata AS (\n SELECT *\n FROM dev_dkruh1.analytics___ugc_stg__review_metadata\n),\nmetadata_type AS (\n SELECT *\n FROM dev_dkruh1.analytics___ugc_stg__metadata_type\n),\ngtins AS (\n SELECT *\n FROM dev_dkruh1.platform_stg__gtins\n),\ncustom_attributes AS (\n SELECT *\n FROM dev_dkruh1.platform_stg__custom_attributes\n),\nattribute_sets AS (\n SELECT *\n FROM dev_dkruh1.platform_stg__attribute_sets\n),\nreviews_incentivized AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__reviews_incentivized\n),\n--------------------------------------\n-- Retrieving reviews related products\n--------------------------------------\nreviews_base AS (\n SELECT \n review_id,\n first(app_key) as app_key,\n first(review_type) as review_type,\n first(review_title) as review_title,\n first(review_content) as review_content,\n first(review_score) as review_score,\n first(review_source) as review_source,\n first(review_date) as review_creation_date,\n first(updated_at) as updated_at,\n first(sentiment_score) as sentiment_score,\n first(pushed_to_social) as pushed_to_social,\n first(user_type) as user_type,\n first(reviewer_display_name) as reviewer_display_name,\n first(status) as status,\n first(user_id) as user_id\n FROM relevant_reviews_subjects \n GROUP BY\n review_id\n),\nrelevant_products as (\n SELECT * \n FROM products\n WHERE\n ts_ms >= (SELECT MIN(updated_at) FROM relevant_reviews_subjects)\n),\nproducts_data AS (\n SELECT\n relevant_reviews_subjects.review_id,\n relevant_products.id as product_internal_id,\n relevant_products.name as product_title,\n relevant_products.description as product_description,\n relevant_products.handle as product_handle,\n relevant_products.external_id as product_id,\n relevant_products.created_at as product_created_at,\n relevant_products.group_id as product_group_id,\n relevant_products.sku as product_sku,\n relevant_products.url as product_url\n FROM\n relevant_reviews_subjects\n INNER JOIN relevant_products \n ON relevant_reviews_subjects.subject_id = relevant_products.id\n WHERE\n relevant_reviews_subjects.subject_entity_type = 'product'\n),\nproducts_site_data AS (\n SELECT\n relevant_reviews_subjects.review_id,\n first(accounts.id) as product_internal_id,\n first(accounts.name) as product_title,\n null as product_description,\n null as product_handle,\n 'yotpo_site_reviews' as product_id,\n null as product_created_at,\n null as product_group_id,\n null as product_sku,\n null as product_url\n FROM\n relevant_reviews_subjects\n INNER JOIN accounts \n ON relevant_reviews_subjects.subject_id = accounts.id\n AND\n relevant_reviews_subjects.subject_entity_type = 'site'\n GROUP BY \n relevant_reviews_subjects.review_id\n),\nproducts_images_data AS (\n SELECT\n yotpo_resource_id as product_id,\n id as image_id,\n imageable_id,\n if(array_contains(array('jpeg', 'png', 'jpg', 'gif'), lower(substring_index(image_file_name, '.', -1))),\n substring_index(image_file_name, '.', -1), '') as image_extention\n FROM\n products_images\n),\ngtins_data AS ( \n SELECT \n gtinable_id as product_internal_id,\n MAX(CASE WHEN declared_type = 'UPC' THEN value ELSE null END) AS upc,\n MAX(CASE WHEN declared_type = 'ISBN' THEN value ELSE null END) AS isbn,\n MAX(CASE WHEN declared_type = 'EAN' THEN value ELSE null END) AS ean\n FROM \n gtins\n WHERE \n gtinable_type = 'product'\n AND declared_type IN ('UPC', 'ISBN', 'EAN')\n GROUP BY \n gtinable_id\n),\ncustom_attributes_data AS ( \n SELECT \n attributable_id as product_internal_id,\n MAX(CASE WHEN key = 'category' THEN string_value ELSE null END) AS category\n FROM \n custom_attributes\n WHERE \n attributable_type = 'product'\n AND key IN ('category')\n GROUP BY \n attributable_id\n),\nall_products_prepare AS (\n SELECT \n products_data.review_id,\n first(products_data.product_internal_id) as product_internal_id,\n first(products_data.product_title) as product_title,\n first(products_data.product_description) as product_description,\n first(products_data.product_handle) as product_handle,\n first(products_data.product_id) as product_id,\n first(products_data.product_created_at) as product_created_at,\n first(products_data.product_group_id) as product_group_id,\n first(products_data.product_sku) as product_sku,\n first(products_data.product_url) as product_url,\n first(gtins_data.upc) as product_upc,\n first(gtins_data.isbn) as product_isbn,\n first(custom_attributes_data.category) as product_category,\n first(attribute_sets.brand) as product_brand,\n first(attribute_sets.mpn) as product_mpn,\n IF(first(products_images_data.image_extention) IS NOT NULL AND first(products_data.product_id) != 'yotpo_site_reviews' , CONCAT(\"https://cdn-yotpo-images-production.yotpo.com/Product/\", first(products_images_data.imageable_id), \"/\", first(products_images_data.image_id), \"/thumb.\", first(products_images_data.image_extention)), NULL) AS product_image_url\n FROM\n products_data\n LEFT JOIN \n gtins_data ON gtins_data.product_internal_id = products_data.product_internal_id\n LEFT JOIN\n custom_attributes_data on custom_attributes_data.product_internal_id = products_data.product_internal_id\n LEFT JOIN\n attribute_sets on attribute_sets.attributable_id=products_data.product_internal_id and attribute_sets.attributable_type = 'product'\n LEFT JOIN\n products_images_data on products_images_data.product_id = products_data.product_internal_id\n GROUP BY\n products_data.review_id\n),\nall_products AS (\n SELECT\n review_id,\n product_internal_id,\n product_title,\n product_description,\n product_handle,\n product_id,\n product_created_at,\n product_group_id,\n product_sku,\n product_url,\n product_image_url,\n product_category,\n product_upc,\n product_brand,\n product_mpn,\n product_isbn\n FROM\n all_products_prepare\n UNION ALL\n SELECT\n review_id,\n product_internal_id,\n product_title,\n product_description,\n product_handle,\n product_id,\n product_created_at,\n product_group_id,\n product_sku,\n product_url,\n null,\n null,\n null,\n null,\n null,\n null\n FROM\n products_site_data\n),\n--------------------------------------\n-- Retrieving reviews related images\n--------------------------------------\nreviews_images_data AS (\n SELECT\n reviews_base.review_id,\n reviews_base.updated_at,\n images.id as image_id,\n published,\n substring_index(\n substring_index(image_file_name, '.', -1),\n '_',\n 1\n ) AS image_extension\n FROM\n reviews_base\n LEFT JOIN images \n ON images.imageable_id = reviews_base.review_id\n),\nreviews_images_data_with_specific_extensions AS (\n SELECT\n review_id,\n updated_at,\n image_id,\n published,\n IF(\n array_contains(\n array('jpeg', 'png', 'jpg', 'gif'),\n lower(image_extension)\n ),\n image_extension,\n ''\n ) as image_extension\n FROM\n reviews_images_data\n),\nreviews_images_data_with_specific_extensions_and_urls AS (\n SELECT\n *,\n IF(\n image_extension != '',\n CONCAT(\n 'https://cdn-yotpo-images-production.yotpo.com/Review/',\n review_id,\n '/',\n image_id,\n '/original.',\n image_extension\n ),\n NULL\n ) AS review_original_image_url,\n IF(\n image_extension != '',\n CONCAT('https://cdn-yotpo-images-production.yotpo.com/Review/',review_id,'/',image_id,'/square.',image_extension),\n NULL\n ) AS review_square_image_url,\n IF(\n image_extension != '',\n CONCAT('https://cdn-yotpo-images-production.yotpo.com/Review/',review_id,'/',image_id,'/facebook.',image_extension),\n NULL\n ) as review_facebook_image_url\n FROM\n reviews_images_data_with_specific_extensions\n),\nreviews_images_data_with_specific_extensions_and_urls_and_publish_urls AS (\n SELECT\n review_id,\n updated_at,\n image_id,\n published,\n review_original_image_url,\n review_square_image_url,\n review_facebook_image_url,\n IF (published = 1, review_original_image_url, NULL) AS published_image_url,\n IF (published != 1, review_original_image_url, NULL) AS unpublished_image_url\n FROM\n reviews_images_data_with_specific_extensions_and_urls\n),\nreviews_with_aggregated_image_data AS (\n SELECT\n review_id,\n updated_at,\n COUNT(DISTINCT image_id) AS imagesCount,\n CONCAT_WS('; ', COLLECT_SET(published_image_url)) AS published_image_urls,\n CONCAT_WS('; ', COLLECT_SET(unpublished_image_url)) AS unpublished_image_urls\n FROM\n reviews_images_data_with_specific_extensions_and_urls_and_publish_urls\n GROUP BY\n review_id,\n updated_at\n),\n--------------------------------------\n-- Retrieving reviews related videos\n--------------------------------------\nreview_ids_with_videos AS (\n SELECT\n reviews_base.review_id,\n reviews_base.updated_at,\n videos.id as videoId,\n videos.published as published,\n entry_id as entryId,\n video_key as galleryMediaId,\n mongo_gallery.video.original_sized_thumbnail_url as originalSizedThumbnailUrl,\n mongo_gallery.video.thumbnail_url as thumbnailUrl,\n mongo_gallery.video.url as url,\n IF (\n videos.published = 1,\n mongo_gallery.video.url,\n NULL\n ) AS review_published_video_url,\n IF (\n videos.published != 1,\n mongo_gallery.video.url,\n NULL\n ) AS review_unpublished_video_url\n FROM\n reviews_base\n LEFT JOIN videos \n ON reviews_base.review_id = videos.videoable_id\n LEFT JOIN mongo_gallery\n ON videos.video_key = mongo_gallery._id\n),\nreviews_with_aggregated_videos_data AS (\n SELECT\n review_id,\n updated_at,\n CONCAT_WS('; ', COLLECT_SET(review_published_video_url)) AS published_video_urls,\n CONCAT_WS('; ', COLLECT_SET(review_unpublished_video_url)) AS unpublished_video_urls,\n COUNT(DISTINCT if(videoId IS NOT null, videoId, null)) AS videosCount\n FROM\n review_ids_with_videos\n GROUP BY\n review_id,\n updated_at\n),\n--------------------------------------\n-- Retrieving reviews related comments\n--------------------------------------\nreviews_comments AS (\n SELECT\n reviews_base.review_id,\n comments.id AS comment_id,\n comments.content AS comment_content,\n comments.public AS comment_public,\n comments.created_at AS comment_date\n FROM\n reviews_base\n LEFT JOIN comments \n ON reviews_base.review_id = comments.commentable_id\n),\n--------------------------------------\n-- Retrieving reviews related moderation audits\n--------------------------------------\nreviews_with_moderation_audits AS (\n SELECT\n relevant_reviews_subjects.review_id,\n IF(\n (last(action_type) = 'rejected' AND last(relevant_reviews_subjects.archived) = 1)\n OR \n (last(action_type) = 'escalated' AND last(relevant_reviews_subjects.escalated) = 1),\n last(reason),\n NULL\n ) AS status_details\n FROM\n relevant_reviews_subjects\n JOIN moderation_audits \n ON relevant_reviews_subjects.review_id = moderation_audits.review_id\n AND action_type IN ('rejected', 'escalated', 'unpublished', 'published', 'archived')\n GROUP BY\n relevant_reviews_subjects.review_id\n),\n--------------------------------------\n-- Retrieving reviews related votes\n--------------------------------------\nreviews_with_votes_prepare AS (\n SELECT\n reviews_base.review_id,\n SUM(IF(vote = 1, 1, 0)) AS votes_up,\n SUM(IF(vote = -1, 1, 0)) AS votes_down\n FROM\n reviews_base\n LEFT JOIN votes \n ON reviews_base.review_id = votes.voteable_id\n GROUP BY\n review_id\n),\n--------------------------------------\n-- Retrieving reviews dirty words\n--------------------------------------\nreviews_with_dirty_words AS (\n SELECT\n reviews_base.review_id,\n SUM(CASE WHEN dirty_words.id IS NULL THEN 0 ELSE 1 END) > 0 AS profanity_flag\n FROM reviews_base\n JOIN dirty_words \n ON dirty_words.model_id = reviews_base.review_id\n GROUP BY reviews_base.review_id\n),\n--------------------------------------\n-- Retrieving reviews user data\n--------------------------------------\nreviews_users AS (\n SELECT\n reviews_base.review_id,\n reviews_base.user_id,\n email AS reviewer_email\n FROM\n reviews_base\n JOIN users_tbl \n ON reviews_base.user_id = users_tbl.id\n WHERE\n reviews_base.user_type = 'User'\n),\nreviews_anonymous_users AS (\n SELECT\n reviews_base.review_id,\n reviews_base.user_id,\n email AS reviewer_email\n FROM\n reviews_base\n JOIN anonymous_users \n ON reviews_base.user_id = anonymous_users.id\n WHERE\n reviews_base.user_type = 'AnonymousUser'\n),\nreviews_all_users AS (\n SELECT\n review_id,\n user_id,\n reviewer_email\n FROM\n reviews_users\n UNION ALL\n SELECT\n review_id,\n user_id,\n reviewer_email\n FROM\n reviews_anonymous_users\n),\n--------------------------------------\n-- Retrieving reviews order data\n--------------------------------------\nreviews_with_order_data AS (\n SELECT\n review_order_line.review_id,\n orders.external_order_id as order_id,\n orders.order_date\n FROM review_order_line\n INNER JOIN order_lines ON review_order_line.order_line_id = order_lines.id\n INNER JOIN orders ON order_lines.order_id = orders.id\n),\n--------------------------------------\n-- Retrieving reviews metadata\n--------------------------------------\nreviews_with_tags AS (\n SELECT\n tags_to_reviews.review_id,\n array_distinct(collect_list(review_tag_id)) as review_tag_ids,\n CONCAT_WS(';', COLLECT_SET(review_tags.name)) as review_tags\n FROM tags_to_reviews\n INNER JOIN review_tags ON tags_to_reviews.review_tag_id = review_tags.id\n GROUP BY tags_to_reviews.review_id\n),\nreviews_with_metadata AS (\n SELECT * FROM (\n SELECT \n review_metadata.review_id,\n metadata_type.metadata_name as key,\n review_metadata.metadata_type_value as value\n FROM review_metadata\n INNER JOIN metadata_type ON review_metadata.metadata_type_id = metadata_type.metadata_type_id\n )\n PIVOT (\n MAX(value) FOR key in ('device_type', 'country_code')\n )\n),\n--------------------------------------\n-- Retrieving incentivized reviews information\n--------------------------------------\nreviews_with_incentivized_flag AS (\n SELECT\n reviews_base.review_id,\n CASE WHEN reviews_incentivized.reviews_incentivized_type_id IS NULL THEN false ELSE true END AS incentivized_flag\n FROM reviews_base\n JOIN reviews_incentivized\n ON reviews_incentivized.review_id = reviews_base.review_id\n)\n----------------------------------------------------------------------------\n------- creating report data based on reviews and all the above enrichments\n----------------------------------------------------------------------------\nSELECT\n reviews_base.app_key,\n reviews_base.review_id,\n reviews_base.review_creation_date,\n reviews_base.review_type,\n reviews_base.status,\n reviews_with_moderation_audits.status_details,\n reviews_base.review_source,\n reviews_base.review_score,\n reviews_base.review_title,\n reviews_base.review_content,\n reviews_base.sentiment_score,\n reviews_with_dirty_words.profanity_flag,\n reviews_with_aggregated_image_data.published_image_urls,\n reviews_with_aggregated_image_data.unpublished_image_urls,\n reviews_with_aggregated_videos_data.published_video_urls,\n reviews_with_aggregated_videos_data.unpublished_video_urls,\n reviews_comments.comment_date,\n reviews_comments.comment_content,\n reviews_comments.comment_public,\n reviews_with_tags.review_tags,\n reviews_with_tags.review_tag_ids,\n reviews_with_votes_prepare.votes_up,\n reviews_with_votes_prepare.votes_down,\n reviews_with_order_data.order_id,\n reviews_with_order_data.order_date,\n reviews_base.pushed_to_social,\n reviews_base.reviewer_display_name,\n reviews_all_users.reviewer_email,\n reviews_base.user_type,\n reviews_with_metadata.country_code,\n reviews_with_metadata.device_type,\n all_products.product_id,\n all_products.product_title,\n all_products.product_description,\n all_products.product_url,\n all_products.product_image_url,\n all_products.product_handle,\n all_products.product_created_at,\n all_products.product_group_id,\n all_products.product_category,\n all_products.product_upc,\n all_products.product_sku,\n all_products.product_brand,\n all_products.product_mpn,\n all_products.product_isbn,\n all_products.product_internal_id,\n reviews_with_incentivized_flag.incentivized_flag\nFROM\n reviews_base\n LEFT JOIN all_products ON all_products.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_aggregated_image_data ON reviews_with_aggregated_image_data.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_aggregated_videos_data ON reviews_with_aggregated_videos_data.review_id = reviews_base.review_id\n LEFT JOIN reviews_comments ON reviews_comments.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_moderation_audits ON reviews_with_moderation_audits.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_votes_prepare ON reviews_with_votes_prepare.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_dirty_words ON reviews_with_dirty_words.review_id = reviews_base.review_id\n LEFT JOIN reviews_all_users ON reviews_all_users.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_order_data ON reviews_with_order_data.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_tags ON reviews_with_tags.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_metadata ON reviews_with_metadata.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_incentivized_flag ON reviews_with_incentivized_flag.review_id = reviews_base.review_id", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc__partial_reviewed_orders": {"database": null, "schema": "dev_dkruh1", "name": "ugc__partial_reviewed_orders", "resource_type": "model", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.sql", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.sql", "unique_id": "model.yoda.ugc__partial_reviewed_orders", "fqn": ["yoda", "ugc", "marts", "ugc__partial_reviewed_orders", "ugc__partial_reviewed_orders"], "alias": "ugc__partial_reviewed_orders", "checksum": {"name": "sha256", "checksum": "bfe4eac03aa432f568c960b4a20c067b0b863626bc92bc6c67f8d95d0f8f9e93"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Table with all orders of users that have reviewed in particular shops.\nAn order from shop `S` by customer `C` is added to the table if the customer `C` has any review in the shop `S`.", "columns": {"id": {"name": "id", "description": "Id of the order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "App_key of the store", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_order_id": {"name": "external_order_id", "description": "External order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "Email of the customer", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sum_order_currency": {"name": "order_sum_order_currency", "description": "Order value in local currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_currency_iso": {"name": "order_currency_iso", "description": "The order local currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sum_account_currency": {"name": "order_sum_account_currency", "description": "Order value in account currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_currency_iso": {"name": "account_currency_iso", "description": "Account currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price": {"name": "total_price", "description": "Order total price", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_at": {"name": "created_at", "description": "Order creation date in Yotpo's DB", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_date": {"name": "order_date", "description": "Order creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_created_at": {"name": "review_created_at", "description": "Date of the latest review by the ordering user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}}, "created_at": 1700082692.3434854, "relation_name": "dev_dkruh1.ugc__partial_reviewed_orders", "raw_code": "/*\nin production table name will be without [domain]_mart__\n*/\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partitioning = {\n \"field\": \"app_key\",\n \"type\": \"hash\",\n \"partitions\": 256\n }\n )\n}}\nWITH all_orders AS (\n SELECT * FROM {{ ref('platform_stg__orders') }}\n),\n{% if is_incremental() %}\ncurrent_usrs_shops AS (\n SELECT\n app_key, email, MAX(review_created_at) as review_created_at\n FROM\n {{this}}\n GROUP BY app_key, email\n),\nonly_new_orders AS (\n SELECT\n *\n FROM\n all_orders\n WHERE created_at > (SELECT MAX(created_at) FROM {{this}})\n),\n{% endif %}\nrelevant_reviews AS (\n SELECT r.user_id, r.user_type, r.app_key, MAX(r.created_at) as created_at\n FROM {{ ref('ugc_stg__reviews') }} AS r\n {% if is_incremental() %}\n WHERE r.created_at > (SELECT MAX(review_created_at) FROM {{this}})\n {% endif %}\n GROUP BY r.user_id, r.user_type, r.app_key\n),\nall_users AS (\n SELECT id, email, 'User' as user_type\n FROM {{ ref('ugc_stg__users') }}\n UNION ALL\n SELECT id, email, 'AnonymousUser' as user_type\n FROM {{ ref('ugc_stg__anonymous_users') }}\n),\nusers_with_review AS (\n SELECT\n user.email, review.app_key, MAX(review.created_at) as review_created_at\n FROM\n relevant_reviews AS review\n INNER JOIN all_users AS user\n ON user.id=review.user_id AND user.user_type = review.user_type\n {% if is_incremental() %}\n WHERE NOT EXISTS (SELECT 1 FROM current_usrs_shops cus WHERE cus.app_key=review.app_key AND cus.email=user.email AND cus.review_created_at=review.created_at)\n {% endif %}\n GROUP BY user.email, review.app_key\n),\nfull_orders_by_reviewers AS (\n SELECT \n o.id,\n o.app_key,\n o.external_order_id,\n o.email,\n o.order_sum_order_currency,\n o.order_currency_iso,\n o.order_sum_account_currency,\n o.account_currency_iso,\n o.total_price,\n o.created_at,\n o.order_date,\n uwr.review_created_at\n FROM \n users_with_review AS uwr\n INNER JOIN \n all_orders AS o\n ON \n uwr.app_key=o.app_key AND uwr.email=o.email\n {% if is_incremental() %}\n WHERE NOT EXISTS (SELECT 1 FROM {{this}} WHERE id=o.id)\n {% endif %}\n),\n{% if is_incremental() %}\nonly_new_orders_from_existing_users AS (\n SELECT\n ord.*,\n cus.review_created_at\n FROM\n only_new_orders AS ord\n INNER JOIN\n current_usrs_shops AS cus\n ON\n cus.app_key=ord.app_key AND cus.email=ord.email\n WHERE NOT EXISTS (SELECT 1 FROM full_orders_by_reviewers fobr WHERE fobr.id=ord.id) \n),\n{% endif %}\nresult_orders AS (\n SELECT\n id,\n app_key,\n external_order_id,\n email,\n order_sum_order_currency,\n order_currency_iso,\n order_sum_account_currency,\n account_currency_iso,\n total_price,\n created_at,\n order_date,\n review_created_at\n FROM\n full_orders_by_reviewers\n {% if is_incremental() %}\n UNION ALL\n SELECT\n o.id,\n o.app_key,\n o.external_order_id,\n o.email,\n o.order_sum_order_currency,\n o.order_currency_iso,\n o.order_sum_account_currency,\n o.account_currency_iso,\n o.total_price,\n o.created_at,\n o.order_date,\n o.review_created_at\n FROM\n only_new_orders_from_existing_users AS o\n {% endif %}\n\n)\n\nSELECT * FROM result_orders", "language": "sql", "refs": [{"name": "platform_stg__orders", "package": null, "version": null}, {"name": "ugc_stg__reviews", "package": null, "version": null}, {"name": "ugc_stg__users", "package": null, "version": null}, {"name": "ugc_stg__anonymous_users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__orders", "model.yoda.ugc_stg__reviews", "model.yoda.ugc_stg__users", "model.yoda.ugc_stg__anonymous_users"]}, "compiled_path": "target/compiled/yoda/models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_mart__\n*/\n\nWITH all_orders AS (\n SELECT * FROM dev_dkruh1.platform_stg__orders\n),\n\nrelevant_reviews AS (\n SELECT r.user_id, r.user_type, r.app_key, MAX(r.created_at) as created_at\n FROM dev_dkruh1.ugc_stg__reviews AS r\n \n GROUP BY r.user_id, r.user_type, r.app_key\n),\nall_users AS (\n SELECT id, email, 'User' as user_type\n FROM dev_dkruh1.ugc_stg__users\n UNION ALL\n SELECT id, email, 'AnonymousUser' as user_type\n FROM dev_dkruh1.ugc_stg__anonymous_users\n),\nusers_with_review AS (\n SELECT\n user.email, review.app_key, MAX(review.created_at) as review_created_at\n FROM\n relevant_reviews AS review\n INNER JOIN all_users AS user\n ON user.id=review.user_id AND user.user_type = review.user_type\n \n GROUP BY user.email, review.app_key\n),\nfull_orders_by_reviewers AS (\n SELECT \n o.id,\n o.app_key,\n o.external_order_id,\n o.email,\n o.order_sum_order_currency,\n o.order_currency_iso,\n o.order_sum_account_currency,\n o.account_currency_iso,\n o.total_price,\n o.created_at,\n o.order_date,\n uwr.review_created_at\n FROM \n users_with_review AS uwr\n INNER JOIN \n all_orders AS o\n ON \n uwr.app_key=o.app_key AND uwr.email=o.email\n \n),\n\nresult_orders AS (\n SELECT\n id,\n app_key,\n external_order_id,\n email,\n order_sum_order_currency,\n order_currency_iso,\n order_sum_account_currency,\n account_currency_iso,\n total_price,\n created_at,\n order_date,\n review_created_at\n FROM\n full_orders_by_reviewers\n \n\n)\n\nSELECT * FROM result_orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc__reporting_crf": {"database": null, "schema": "dev_dkruh1", "name": "ugc__reporting_crf", "resource_type": "model", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_crf/ugc__reporting_crf.sql", "original_file_path": "models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.sql", "unique_id": "model.yoda.ugc__reporting_crf", "fqn": ["yoda", "ugc", "marts", "ugc__reporting_crf", "ugc__reporting_crf"], "alias": "ugc__reporting_crf", "checksum": {"name": "sha256", "checksum": "6dfba23352ea20b02ee63bc27058153440547f984bdec6f31788c47ba718a08f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "sync_all_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partitioning": {"field": "reviews_id", "type": "hash", "partitions": 512}, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Table containing custom review form questions and answers for each reporting relevant review containing them.", "columns": {"review_id": {"name": "review_id", "description": "Review identifier", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "App (store) id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "Last updated date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_date": {"name": "review_date", "description": "Review creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_score": {"name": "review_score", "description": "Review socre", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sentiment_score": {"name": "sentiment_score", "description": "Review sentiment socre", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "field_name": {"name": "field_name", "description": "Custom field name; custom question in the review form", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "field_value": {"name": "field_value", "description": "Custom field value; custom question answer in the review form", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "sync_all_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "materialized": "table", "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "large"}}, "partitioning": {"field": "reviews_id", "type": "hash", "partitions": 512}}, "created_at": 1700082692.3618345, "relation_name": "dev_dkruh1.ugc__reporting_crf", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partitioning = {\n \"field\": \"reviews_id\",\n \"type\": \"hash\",\n \"partitions\": 512\n },\n on_schema_change='sync_all_columns'\n)}}\n\nWITH relevant_reviews_subject AS (\n SELECT * \n FROM {{ref('ugc_stg__relevant_reviews_subject')}}\n{% if is_incremental() %}\n WHERE updated_at > ( SELECT MAX(updated_at) FROM {{ this }} ) \n{% endif %}\n),\nreview_contents AS (\n SELECT * \n FROM {{ ref('ugc_stg__review_contents') }}\n),\nreview_form_fields AS (\n SELECT * \n FROM {{ ref('ugc_stg__review_form_fields') }}\n),\nreview_form_field_types AS (\n SELECT * \n FROM {{ ref('ugc_stg__review_form_field_types') }}\n),\nreviews_base AS (\n SELECT \n review_id,\n first(app_key) as app_key,\n first(review_score) as review_score,\n first(review_date) as review_date,\n first(sentiment_score) as sentiment_score,\n first(updated_at) as updated_at \n FROM relevant_reviews_subject \n GROUP BY\n review_id\n),\nreporting_crf AS (\n SELECT \n reviews_base.review_id,\n reviews_base.app_key,\n reviews_base.updated_at,\n reviews_base.review_date,\n reviews_base.review_score,\n reviews_base.sentiment_score,\n CONCAT('cf_',review_forms.name, '__',review_form_fields.title) AS field_name,\n CASE\n WHEN review_contents.int_value is not null THEN review_contents.int_value\n WHEN review_contents.string_value is not null THEN review_contents.string_value\n ELSE review_contents.text_value\n END AS field_value\n FROM \n reviews_base\n JOIN review_contents AS review_contents ON reviews_base.review_id = review_contents.review_id\n JOIN review_form_fields ON review_contents.review_form_field_id =review_form_fields.id\n JOIN review_forms ON review_form_fields.review_form_id =review_forms.id\n)\n\nSELECT \n review_id,\n app_key,\n updated_at,\n review_date,\n review_score,\n sentiment_score,\n field_name,\n field_value\nFROM \n reporting_crf", "language": "sql", "refs": [{"name": "ugc_stg__relevant_reviews_subject", "package": null, "version": null}, {"name": "ugc_stg__review_contents", "package": null, "version": null}, {"name": "ugc_stg__review_form_fields", "package": null, "version": null}, {"name": "ugc_stg__review_form_field_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.ugc_stg__review_contents", "model.yoda.ugc_stg__review_form_fields", "model.yoda.ugc_stg__review_form_field_types"]}, "compiled_path": "target/compiled/yoda/models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.sql", "compiled": true, "compiled_code": "\n\nWITH relevant_reviews_subject AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__relevant_reviews_subject\n\n),\nreview_contents AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__review_contents\n),\nreview_form_fields AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__review_form_fields\n),\nreview_form_field_types AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__review_form_field_types\n),\nreviews_base AS (\n SELECT \n review_id,\n first(app_key) as app_key,\n first(review_score) as review_score,\n first(review_date) as review_date,\n first(sentiment_score) as sentiment_score,\n first(updated_at) as updated_at \n FROM relevant_reviews_subject \n GROUP BY\n review_id\n),\nreporting_crf AS (\n SELECT \n reviews_base.review_id,\n reviews_base.app_key,\n reviews_base.updated_at,\n reviews_base.review_date,\n reviews_base.review_score,\n reviews_base.sentiment_score,\n CONCAT('cf_',review_forms.name, '__',review_form_fields.title) AS field_name,\n CASE\n WHEN review_contents.int_value is not null THEN review_contents.int_value\n WHEN review_contents.string_value is not null THEN review_contents.string_value\n ELSE review_contents.text_value\n END AS field_value\n FROM \n reviews_base\n JOIN review_contents AS review_contents ON reviews_base.review_id = review_contents.review_id\n JOIN review_form_fields ON review_contents.review_form_field_id =review_form_fields.id\n JOIN review_forms ON review_form_fields.review_form_id =review_forms.id\n)\n\nSELECT \n review_id,\n app_key,\n updated_at,\n review_date,\n review_score,\n sentiment_score,\n field_name,\n field_value\nFROM \n reporting_crf", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc__reporting_reviews": {"database": null, "schema": "dev_dkruh1", "name": "ugc__reporting_reviews", "resource_type": "model", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.sql", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.sql", "unique_id": "model.yoda.ugc__reporting_reviews", "fqn": ["yoda", "ugc", "marts", "ugc__reporting_reviews", "ugc__reporting_reviews"], "alias": "ugc__reporting_reviews", "checksum": {"name": "sha256", "checksum": "0097845925f5899ba6c10a198d6ae7911e451a63a8dcbe47dbd470dae8a8dc27"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Table dedicated for reviews reports. Feature for premium customers available under analytics menu in review app; refreshed daily.", "columns": {"review_id": {"name": "review_id", "description": "Review id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "App (store) id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_type": {"name": "review_type", "description": "Review type (product/site)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_title": {"name": "review_title", "description": "Review title", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_content": {"name": "review_content", "description": "Review content", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_score": {"name": "review_score", "description": "Review score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source": {"name": "review_source", "description": "Review source - values: import; vendor_yotpo_widget; automatic_site_review_request_sms; widget_v2_dedicated_page; unknown; mail_after_invoice;mail_after_service; vendor_landing_page; site_review_after_product; reminder; automatic_product_review_request_sms; widget_v2; syndication;widget_v2_facebook_tab;targeted_product_review_request;testimonials_request;multiple_review_request;site_reminder;site_review_after_product_sms;multiple_review_request_sms;vendor;resend_reminder;anonymous_testimonials_request", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_creation_date": {"name": "review_creation_date", "description": "Review creation date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status": {"name": "status", "description": "Review status (published/unpublished)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sentiment_score": {"name": "sentiment_score", "description": "Review sentiment score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pushed_to_social": {"name": "pushed_to_social", "description": "Whether the review pushed to social media (FB / Twitter)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_type": {"name": "user_type", "description": "User type (User/AnonymousUser)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewer_display_name": {"name": "reviewer_display_name", "description": "Reviewer display name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewer_email": {"name": "reviewer_email", "description": "Reviewer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "votes_up": {"name": "votes_up", "description": "Reviews sum of votes up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "votes_down": {"name": "votes_down", "description": "Reviews sum of votes down", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "comment_content": {"name": "comment_content", "description": "Comment content", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comment_public": {"name": "comment_public", "description": "Comment public - boolean flag; 1 (true) if comment is publicly available", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "comment_date": {"name": "comment_date", "description": "Comment date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_title": {"name": "product_title", "description": "Title of the product containing the review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_description": {"name": "product_description", "description": "Description of the product containing the review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_handle": {"name": "product_handle", "description": "Product handle - autogenerated shopify id used to generate product url", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "Id of the product containing the review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_created_at": {"name": "product_created_at", "description": "Creation time of the product containing the review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_group_id": {"name": "product_group_id", "description": "Id of the product group of product containing the review; technical column used for joins", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_group_name": {"name": "product_group_name", "description": "Product group name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_internal_id": {"name": "product_internal_id", "description": "Yotpo internal id of product; not exposed in report; used for joins", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status_details": {"name": "status_details", "description": "Detailed reasony why review was not published", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "published_image_urls": {"name": "published_image_urls", "description": "Colon seperated published image urls", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unpublished_image_urls": {"name": "unpublished_image_urls", "description": "Colon seperated unpublished image urls", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "published_video_urls": {"name": "published_video_urls", "description": "Colon seperated published videos urls", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unpublished_video_urls": {"name": "unpublished_video_urls", "description": "Colon seperated unpublished videos urls", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "profanity_flag": {"name": "profanity_flag", "description": "Boolean flag whether a dirty word was written in the review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "incentivized_flag": {"name": "incentivized_flag", "description": "Boolean flag indicating whether a review was incentivized", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "review_form_id": {"name": "review_form_id", "description": "Review Form Id - review of the form used for CRF (custom review form)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "materialized": "table", "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "large"}}, "partitioning": {"field": "app_key", "type": "hash", "partitions": 256}}, "created_at": 1700082692.3994772, "relation_name": "dev_dkruh1.ugc__reporting_reviews", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('table', 'view'),\n partitioning = {\n \"field\": \"app_key\",\n \"type\": \"hash\",\n \"partitions\": 256\n }\n )\n}}\nWITH products AS (\n SELECT * \n FROM {{ref('platform_stg__products')}}\n),\nproducts_groups AS (\n SELECT * \n FROM {{ref('platform_stg__groups')}}\n),\nimages AS (\n SELECT * \n FROM {{ref('ugc_stg__images')}}\n WHERE LOWER(imageable_type) = 'review'\n),\nvideos AS (\n SELECT * \n FROM {{ref('ugc_stg__videos')}}\n WHERE videoable_type = 'Review'\n),\nmongo_gallery AS (\n SELECT * \n FROM {{ref('ugc_stg__mongo_gallery_media')}}\n),\ncomments AS (\n SELECT * \n FROM {{ref('ugc_stg__comments')}}\n WHERE commentable_type = 'Review'\n),\nmoderation_audits AS (\n SELECT * \n FROM {{ref('ugc_stg__moderation_audits')}}\n WHERE action_type != 'changed tags'\n),\nvotes AS (\n SELECT * \n FROM {{ref('ugc_stg__votes')}}\n WHERE voteable_type = 'Review'\n),\ndirty_words AS (\n SELECT * \n FROM {{ref('ugc_stg__dirty_words')}}\n WHERE model_type = 'Review'\n),\nusers_tbl AS (\n SELECT * \n FROM {{ref('ugc_stg__users')}}\n),\nanonymous_users AS (\n SELECT * \n FROM {{ref('ugc_stg__anonymous_users')}}\n),\nrelevant_reporting_reviews_accounts AS (\n SELECT * \n FROM {{ref('ugc_stg__relevant_reporting_reviews_accounts')}}\n),\nrelevant_reviews_subjects AS (\n SELECT * \n FROM {{ref('ugc_stg__relevant_reviews_subject')}}\n WHERE\n account_id IN (SELECT distinct account_id FROM relevant_reporting_reviews_accounts)\n AND review_date > date_trunc('YEAR', CURRENT_DATE - INTERVAL '1' YEAR)\n),\nreviews_incentivized AS (\n SELECT * \n FROM {{ref('ugc_stg__reviews_incentivized')}}\n),\n--------------------------------------\n-- Retrieving reviews related products\n--------------------------------------\nreviews_base AS (\n SELECT \n review_id,\n first(app_key) as app_key,\n first(review_type) as review_type,\n first(review_title) as review_title,\n first(review_content) as review_content,\n first(review_score) as review_score,\n first(review_source) as review_source,\n first(review_date) as review_creation_date,\n first(updated_at) as updated_at,\n first(sentiment_score) as sentiment_score,\n first(pushed_to_social) as pushed_to_social,\n first(user_type) as user_type,\n first(reviewer_display_name) as reviewer_display_name,\n first(status) as status,\n first(user_id) as user_id\n FROM relevant_reviews_subjects \n GROUP BY\n review_id\n),\nrelevant_products as (\n SELECT * \n FROM products\n WHERE\n store_id IN (SELECT DISTINCT app_key FROM relevant_reporting_reviews_accounts)\n AND ts_ms >= (SELECT MIN(updated_at) FROM relevant_reviews_subjects)\n),\nproducts_data AS (\n SELECT\n relevant_reviews_subjects.review_id,\n relevant_products.id as product_internal_id,\n relevant_products.name as product_title,\n relevant_products.description as product_description,\n relevant_products.handle as product_handle,\n relevant_products.external_id as product_id,\n relevant_products.created_at as product_created_at,\n relevant_products.group_id as product_group_id,\n products_groups.name as product_group_name\n FROM\n relevant_reviews_subjects\n INNER JOIN relevant_products \n ON relevant_reviews_subjects.subject_id = relevant_products.id\n LEFT JOIN products_groups \n ON products_groups.id = relevant_products.group_id\n WHERE\n relevant_reviews_subjects.subject_entity_type = 'product'\n),\nproducts_site_data AS (\n SELECT\n relevant_reviews_subjects.review_id,\n first(relevant_reporting_reviews_accounts.account_id) as product_internal_id,\n first(relevant_reporting_reviews_accounts.account_name) as product_title,\n null as product_description,\n null as product_handle,\n 'yotpo_site_reviews' as product_id,\n null as product_created_at,\n null as product_group_id,\n null as product_group_name\n FROM\n relevant_reviews_subjects\n INNER JOIN relevant_reporting_reviews_accounts \n ON relevant_reviews_subjects.subject_id = relevant_reporting_reviews_accounts.account_id\n WHERE\n relevant_reviews_subjects.subject_entity_type = 'site'\n GROUP BY \n relevant_reviews_subjects.review_id\n),\nall_products AS (\n SELECT\n review_id,\n product_internal_id,\n product_title,\n product_description,\n product_handle,\n product_id,\n product_created_at,\n product_group_id,\n product_group_name\n FROM\n products_data\n UNION ALL\n SELECT\n review_id,\n product_internal_id,\n product_title,\n product_description,\n product_handle,\n product_id,\n product_created_at,\n product_group_id,\n product_group_name\n FROM\n products_site_data\n),\n--------------------------------------\n-- Retrieving reviews related images\n--------------------------------------\nreviews_images_data AS (\n SELECT\n reviews_base.review_id,\n reviews_base.updated_at,\n images.id as image_id,\n published,\n substring_index(\n substring_index(image_file_name, '.', -1),\n '_',\n 1\n ) AS image_extension\n FROM\n reviews_base\n LEFT JOIN images \n ON images.imageable_id = reviews_base.review_id\n),\nreviews_images_data_with_specific_extensions AS (\n SELECT\n review_id,\n updated_at,\n image_id,\n published,\n IF(\n array_contains(\n array('jpeg', 'png', 'jpg', 'gif'),\n lower(image_extension)\n ),\n image_extension,\n ''\n ) as image_extension\n FROM\n reviews_images_data\n),\nreviews_images_data_with_specific_extensions_and_urls AS (\n SELECT\n *,\n IF(\n image_extension != '',\n CONCAT(\n 'https://cdn-yotpo-images-production.yotpo.com/Review/',\n review_id,\n '/',\n image_id,\n '/original.',\n image_extension\n ),\n NULL\n ) AS review_original_image_url,\n IF(\n image_extension != '',\n CONCAT('https://cdn-yotpo-images-production.yotpo.com/Review/',review_id,'/',image_id,'/square.',image_extension),\n NULL\n ) AS review_square_image_url,\n IF(\n image_extension != '',\n CONCAT('https://cdn-yotpo-images-production.yotpo.com/Review/',review_id,'/',image_id,'/facebook.',image_extension),\n NULL\n ) as review_facebook_image_url\n FROM\n reviews_images_data_with_specific_extensions\n),\nreviews_images_data_with_specific_extensions_and_urls_and_publish_urls AS (\n SELECT\n review_id,\n updated_at,\n image_id,\n published,\n review_original_image_url,\n review_square_image_url,\n review_facebook_image_url,\n IF (published = 1, review_original_image_url, NULL) AS published_image_url,\n IF (published != 1, review_original_image_url, NULL) AS unpublished_image_url\n FROM\n reviews_images_data_with_specific_extensions_and_urls\n),\nreviews_with_aggregated_image_data AS (\n SELECT\n review_id,\n updated_at,\n COUNT(DISTINCT image_id) AS imagesCount,\n CONCAT_WS('; ', COLLECT_SET(published_image_url)) AS published_image_urls,\n CONCAT_WS('; ', COLLECT_SET(unpublished_image_url)) AS unpublished_image_urls\n FROM\n reviews_images_data_with_specific_extensions_and_urls_and_publish_urls\n GROUP BY\n review_id,\n updated_at\n),\n--------------------------------------\n-- Retrieving reviews related videos\n--------------------------------------\nreview_ids_with_videos AS (\n SELECT\n reviews_base.review_id,\n reviews_base.updated_at,\n videos.id as videoId,\n videos.published as published,\n entry_id as entryId,\n video_key as galleryMediaId,\n mongo_gallery.video.original_sized_thumbnail_url as originalSizedThumbnailUrl,\n mongo_gallery.video.thumbnail_url as thumbnailUrl,\n mongo_gallery.video.url as url,\n IF (\n videos.published = 1,\n mongo_gallery.video.url,\n NULL\n ) AS review_published_video_url,\n IF (\n videos.published != 1,\n mongo_gallery.video.url,\n NULL\n ) AS review_unpublished_video_url\n FROM\n reviews_base\n LEFT JOIN videos \n ON reviews_base.review_id = videos.videoable_id\n LEFT JOIN mongo_gallery\n ON videos.video_key = mongo_gallery._id\n),\nreviews_with_aggregated_videos_data AS (\n SELECT\n review_id,\n updated_at,\n CONCAT_WS('; ', COLLECT_SET(review_published_video_url)) AS published_video_urls,\n CONCAT_WS('; ', COLLECT_SET(review_unpublished_video_url)) AS unpublished_video_urls,\n COUNT(DISTINCT if(videoId IS NOT null, videoId, null)) AS videosCount\n FROM\n review_ids_with_videos\n GROUP BY\n review_id,\n updated_at\n),\n--------------------------------------\n-- Retrieving reviews related comments\n--------------------------------------\nreviews_comments AS (\n SELECT\n reviews_base.review_id,\n comments.id AS comment_id,\n comments.content AS comment_content,\n comments.public AS comment_public,\n comments.created_at AS comment_date\n FROM\n reviews_base\n LEFT JOIN comments \n ON reviews_base.review_id = comments.commentable_id\n),\n--------------------------------------\n-- Retrieving reviews related moderation audits\n--------------------------------------\nreviews_with_moderation_audits AS (\n SELECT\n relevant_reviews_subjects.review_id,\n IF(\n (last(action_type) = 'rejected' AND last(relevant_reviews_subjects.archived) = 1)\n OR \n (last(action_type) = 'escalated' AND last(relevant_reviews_subjects.escalated) = 1),\n last(reason),\n NULL\n ) AS status_details\n FROM\n relevant_reviews_subjects\n JOIN moderation_audits \n ON relevant_reviews_subjects.review_id = moderation_audits.review_id\n AND action_type IN ('rejected', 'escalated', 'unpublished', 'published', 'archived')\n GROUP BY\n relevant_reviews_subjects.review_id\n),\n--------------------------------------\n-- Retrieving reviews related votes\n--------------------------------------\nreviews_with_votes_prepare AS (\n SELECT\n reviews_base.review_id,\n SUM(IF(vote = 1, 1, 0)) AS votes_up,\n SUM(IF(vote = -1, 1, 0)) AS votes_down\n FROM\n reviews_base\n LEFT JOIN votes \n ON reviews_base.review_id = votes.voteable_id\n GROUP BY\n review_id\n),\n--------------------------------------\n-- Retrieving reviews dirty words\n--------------------------------------\nreviews_with_dirty_words AS (\n SELECT\n reviews_base.review_id,\n SUM(CASE WHEN dirty_words.id IS NULL THEN 0 ELSE 1 END) > 0 AS profanity_flag\n FROM reviews_base\n JOIN dirty_words \n ON dirty_words.model_id = reviews_base.review_id\n GROUP BY reviews_base.review_id\n),\n--------------------------------------\n-- Retrieving reviews user data\n--------------------------------------\nreviews_users AS (\n SELECT\n reviews_base.review_id,\n reviews_base.user_id,\n email AS reviewer_email\n FROM\n reviews_base\n JOIN users_tbl \n ON reviews_base.user_id = users_tbl.id\n WHERE\n reviews_base.user_type = 'User'\n),\nreviews_anonymous_users AS (\n SELECT\n reviews_base.review_id,\n reviews_base.user_id,\n email AS reviewer_email\n FROM\n reviews_base\n JOIN anonymous_users \n ON reviews_base.user_id = anonymous_users.id\n WHERE\n reviews_base.user_type = 'AnonymousUser'\n),\nreviews_all_users AS (\n SELECT\n review_id,\n user_id,\n reviewer_email\n FROM\n reviews_users\n UNION ALL\n SELECT\n review_id,\n user_id,\n reviewer_email\n FROM\n reviews_anonymous_users\n),\n--------------------------------------\n-- Retrieving incentivized reviews information\n--------------------------------------\nreviews_with_incentivized_flag AS (\n SELECT\n reviews_base.review_id,\n CASE WHEN reviews_incentivized.reviews_incentivized_type_id IS NULL THEN false ELSE true END AS incentivized_flag\n FROM reviews_base\n JOIN reviews_incentivized\n ON reviews_incentivized.review_id = reviews_base.review_id\n),\n--------------------------------------\n-- Retrieving CRF review form for reviews information\n--------------------------------------\nreview_contents AS (\n SELECT * \n FROM {{ ref('ugc_stg__review_contents') }}\n),\nreview_form_fields AS (\n SELECT * \n FROM {{ ref('ugc_stg__review_form_fields') }}\n),\nreporting_crf_form AS (\n SELECT \n reviews_base.review_id, \n first(review_form_fields.review_form_id) as review_form_id\n FROM \n reviews_base\n JOIN review_contents ON reviews_base.review_id = review_contents.review_id\n JOIN review_form_fields ON review_contents.review_form_field_id = review_form_fields.id\n GROUP BY reviews_base.review_id\n)\n----------------------------------------------------------------------------\n------- creating report data based on reviews and all the above enrichments\n----------------------------------------------------------------------------\nSELECT\n reviews_base.review_id,\n reviews_base.app_key,\n reviews_base.review_type,\n reviews_base.review_title,\n reviews_base.review_content,\n reviews_base.review_score,\n reviews_base.review_source,\n reviews_base.review_creation_date,\n reviews_base.status,\n reviews_base.sentiment_score,\n reviews_base.pushed_to_social,\n reviews_base.user_type,\n reviews_base.reviewer_display_name,\n reviews_all_users.reviewer_email,\n reviews_with_votes_prepare.votes_up,\n reviews_with_votes_prepare.votes_down,\n reviews_comments.comment_content,\n reviews_comments.comment_public,\n reviews_comments.comment_date,\n all_products.product_title,\n all_products.product_description,\n all_products.product_handle,\n all_products.product_id,\n all_products.product_created_at,\n all_products.product_group_id,\n all_products.product_group_name,\n all_products.product_internal_id,\n reviews_with_moderation_audits.status_details,\n reviews_with_aggregated_image_data.published_image_urls,\n reviews_with_aggregated_image_data.unpublished_image_urls,\n reviews_with_aggregated_videos_data.published_video_urls,\n reviews_with_aggregated_videos_data.unpublished_video_urls,\n reviews_with_dirty_words.profanity_flag,\n reviews_with_incentivized_flag.incentivized_flag,\n reporting_crf_form.review_form_id\nFROM\n reviews_base\n LEFT JOIN all_products ON all_products.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_aggregated_image_data ON reviews_with_aggregated_image_data.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_aggregated_videos_data ON reviews_with_aggregated_videos_data.review_id = reviews_base.review_id\n LEFT JOIN reviews_comments ON reviews_comments.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_moderation_audits ON reviews_with_moderation_audits.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_votes_prepare ON reviews_with_votes_prepare.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_dirty_words ON reviews_with_dirty_words.review_id = reviews_base.review_id\n LEFT JOIN reviews_all_users ON reviews_all_users.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_incentivized_flag ON reviews_with_incentivized_flag.review_id = reviews_base.review_id\n LEFT JOIN reporting_crf_form ON reporting_crf_form.review_id = reviews_base.review_id", "language": "sql", "refs": [{"name": "platform_stg__products", "package": null, "version": null}, {"name": "platform_stg__groups", "package": null, "version": null}, {"name": "ugc_stg__images", "package": null, "version": null}, {"name": "ugc_stg__videos", "package": null, "version": null}, {"name": "ugc_stg__mongo_gallery_media", "package": null, "version": null}, {"name": "ugc_stg__comments", "package": null, "version": null}, {"name": "ugc_stg__moderation_audits", "package": null, "version": null}, {"name": "ugc_stg__votes", "package": null, "version": null}, {"name": "ugc_stg__dirty_words", "package": null, "version": null}, {"name": "ugc_stg__users", "package": null, "version": null}, {"name": "ugc_stg__anonymous_users", "package": null, "version": null}, {"name": "ugc_stg__relevant_reporting_reviews_accounts", "package": null, "version": null}, {"name": "ugc_stg__relevant_reviews_subject", "package": null, "version": null}, {"name": "ugc_stg__reviews_incentivized", "package": null, "version": null}, {"name": "ugc_stg__review_contents", "package": null, "version": null}, {"name": "ugc_stg__review_form_fields", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__products", "model.yoda.platform_stg__groups", "model.yoda.ugc_stg__images", "model.yoda.ugc_stg__videos", "model.yoda.ugc_stg__mongo_gallery_media", "model.yoda.ugc_stg__comments", "model.yoda.ugc_stg__moderation_audits", "model.yoda.ugc_stg__votes", "model.yoda.ugc_stg__dirty_words", "model.yoda.ugc_stg__users", "model.yoda.ugc_stg__anonymous_users", "model.yoda.ugc_stg__relevant_reporting_reviews_accounts", "model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.ugc_stg__reviews_incentivized", "model.yoda.ugc_stg__review_contents", "model.yoda.ugc_stg__review_form_fields"]}, "compiled_path": "target/compiled/yoda/models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.sql", "compiled": true, "compiled_code": "\nWITH products AS (\n SELECT * \n FROM dev_dkruh1.platform_stg__products\n),\nproducts_groups AS (\n SELECT * \n FROM dev_dkruh1.platform_stg__groups\n),\nimages AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__images\n WHERE LOWER(imageable_type) = 'review'\n),\nvideos AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__videos\n WHERE videoable_type = 'Review'\n),\nmongo_gallery AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__mongo_gallery_media\n),\ncomments AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__comments\n WHERE commentable_type = 'Review'\n),\nmoderation_audits AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__moderation_audits\n WHERE action_type != 'changed tags'\n),\nvotes AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__votes\n WHERE voteable_type = 'Review'\n),\ndirty_words AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__dirty_words\n WHERE model_type = 'Review'\n),\nusers_tbl AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__users\n),\nanonymous_users AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__anonymous_users\n),\nrelevant_reporting_reviews_accounts AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__relevant_reporting_reviews_accounts\n),\nrelevant_reviews_subjects AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__relevant_reviews_subject\n WHERE\n account_id IN (SELECT distinct account_id FROM relevant_reporting_reviews_accounts)\n AND review_date > date_trunc('YEAR', CURRENT_DATE - INTERVAL '1' YEAR)\n),\nreviews_incentivized AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__reviews_incentivized\n),\n--------------------------------------\n-- Retrieving reviews related products\n--------------------------------------\nreviews_base AS (\n SELECT \n review_id,\n first(app_key) as app_key,\n first(review_type) as review_type,\n first(review_title) as review_title,\n first(review_content) as review_content,\n first(review_score) as review_score,\n first(review_source) as review_source,\n first(review_date) as review_creation_date,\n first(updated_at) as updated_at,\n first(sentiment_score) as sentiment_score,\n first(pushed_to_social) as pushed_to_social,\n first(user_type) as user_type,\n first(reviewer_display_name) as reviewer_display_name,\n first(status) as status,\n first(user_id) as user_id\n FROM relevant_reviews_subjects \n GROUP BY\n review_id\n),\nrelevant_products as (\n SELECT * \n FROM products\n WHERE\n store_id IN (SELECT DISTINCT app_key FROM relevant_reporting_reviews_accounts)\n AND ts_ms >= (SELECT MIN(updated_at) FROM relevant_reviews_subjects)\n),\nproducts_data AS (\n SELECT\n relevant_reviews_subjects.review_id,\n relevant_products.id as product_internal_id,\n relevant_products.name as product_title,\n relevant_products.description as product_description,\n relevant_products.handle as product_handle,\n relevant_products.external_id as product_id,\n relevant_products.created_at as product_created_at,\n relevant_products.group_id as product_group_id,\n products_groups.name as product_group_name\n FROM\n relevant_reviews_subjects\n INNER JOIN relevant_products \n ON relevant_reviews_subjects.subject_id = relevant_products.id\n LEFT JOIN products_groups \n ON products_groups.id = relevant_products.group_id\n WHERE\n relevant_reviews_subjects.subject_entity_type = 'product'\n),\nproducts_site_data AS (\n SELECT\n relevant_reviews_subjects.review_id,\n first(relevant_reporting_reviews_accounts.account_id) as product_internal_id,\n first(relevant_reporting_reviews_accounts.account_name) as product_title,\n null as product_description,\n null as product_handle,\n 'yotpo_site_reviews' as product_id,\n null as product_created_at,\n null as product_group_id,\n null as product_group_name\n FROM\n relevant_reviews_subjects\n INNER JOIN relevant_reporting_reviews_accounts \n ON relevant_reviews_subjects.subject_id = relevant_reporting_reviews_accounts.account_id\n WHERE\n relevant_reviews_subjects.subject_entity_type = 'site'\n GROUP BY \n relevant_reviews_subjects.review_id\n),\nall_products AS (\n SELECT\n review_id,\n product_internal_id,\n product_title,\n product_description,\n product_handle,\n product_id,\n product_created_at,\n product_group_id,\n product_group_name\n FROM\n products_data\n UNION ALL\n SELECT\n review_id,\n product_internal_id,\n product_title,\n product_description,\n product_handle,\n product_id,\n product_created_at,\n product_group_id,\n product_group_name\n FROM\n products_site_data\n),\n--------------------------------------\n-- Retrieving reviews related images\n--------------------------------------\nreviews_images_data AS (\n SELECT\n reviews_base.review_id,\n reviews_base.updated_at,\n images.id as image_id,\n published,\n substring_index(\n substring_index(image_file_name, '.', -1),\n '_',\n 1\n ) AS image_extension\n FROM\n reviews_base\n LEFT JOIN images \n ON images.imageable_id = reviews_base.review_id\n),\nreviews_images_data_with_specific_extensions AS (\n SELECT\n review_id,\n updated_at,\n image_id,\n published,\n IF(\n array_contains(\n array('jpeg', 'png', 'jpg', 'gif'),\n lower(image_extension)\n ),\n image_extension,\n ''\n ) as image_extension\n FROM\n reviews_images_data\n),\nreviews_images_data_with_specific_extensions_and_urls AS (\n SELECT\n *,\n IF(\n image_extension != '',\n CONCAT(\n 'https://cdn-yotpo-images-production.yotpo.com/Review/',\n review_id,\n '/',\n image_id,\n '/original.',\n image_extension\n ),\n NULL\n ) AS review_original_image_url,\n IF(\n image_extension != '',\n CONCAT('https://cdn-yotpo-images-production.yotpo.com/Review/',review_id,'/',image_id,'/square.',image_extension),\n NULL\n ) AS review_square_image_url,\n IF(\n image_extension != '',\n CONCAT('https://cdn-yotpo-images-production.yotpo.com/Review/',review_id,'/',image_id,'/facebook.',image_extension),\n NULL\n ) as review_facebook_image_url\n FROM\n reviews_images_data_with_specific_extensions\n),\nreviews_images_data_with_specific_extensions_and_urls_and_publish_urls AS (\n SELECT\n review_id,\n updated_at,\n image_id,\n published,\n review_original_image_url,\n review_square_image_url,\n review_facebook_image_url,\n IF (published = 1, review_original_image_url, NULL) AS published_image_url,\n IF (published != 1, review_original_image_url, NULL) AS unpublished_image_url\n FROM\n reviews_images_data_with_specific_extensions_and_urls\n),\nreviews_with_aggregated_image_data AS (\n SELECT\n review_id,\n updated_at,\n COUNT(DISTINCT image_id) AS imagesCount,\n CONCAT_WS('; ', COLLECT_SET(published_image_url)) AS published_image_urls,\n CONCAT_WS('; ', COLLECT_SET(unpublished_image_url)) AS unpublished_image_urls\n FROM\n reviews_images_data_with_specific_extensions_and_urls_and_publish_urls\n GROUP BY\n review_id,\n updated_at\n),\n--------------------------------------\n-- Retrieving reviews related videos\n--------------------------------------\nreview_ids_with_videos AS (\n SELECT\n reviews_base.review_id,\n reviews_base.updated_at,\n videos.id as videoId,\n videos.published as published,\n entry_id as entryId,\n video_key as galleryMediaId,\n mongo_gallery.video.original_sized_thumbnail_url as originalSizedThumbnailUrl,\n mongo_gallery.video.thumbnail_url as thumbnailUrl,\n mongo_gallery.video.url as url,\n IF (\n videos.published = 1,\n mongo_gallery.video.url,\n NULL\n ) AS review_published_video_url,\n IF (\n videos.published != 1,\n mongo_gallery.video.url,\n NULL\n ) AS review_unpublished_video_url\n FROM\n reviews_base\n LEFT JOIN videos \n ON reviews_base.review_id = videos.videoable_id\n LEFT JOIN mongo_gallery\n ON videos.video_key = mongo_gallery._id\n),\nreviews_with_aggregated_videos_data AS (\n SELECT\n review_id,\n updated_at,\n CONCAT_WS('; ', COLLECT_SET(review_published_video_url)) AS published_video_urls,\n CONCAT_WS('; ', COLLECT_SET(review_unpublished_video_url)) AS unpublished_video_urls,\n COUNT(DISTINCT if(videoId IS NOT null, videoId, null)) AS videosCount\n FROM\n review_ids_with_videos\n GROUP BY\n review_id,\n updated_at\n),\n--------------------------------------\n-- Retrieving reviews related comments\n--------------------------------------\nreviews_comments AS (\n SELECT\n reviews_base.review_id,\n comments.id AS comment_id,\n comments.content AS comment_content,\n comments.public AS comment_public,\n comments.created_at AS comment_date\n FROM\n reviews_base\n LEFT JOIN comments \n ON reviews_base.review_id = comments.commentable_id\n),\n--------------------------------------\n-- Retrieving reviews related moderation audits\n--------------------------------------\nreviews_with_moderation_audits AS (\n SELECT\n relevant_reviews_subjects.review_id,\n IF(\n (last(action_type) = 'rejected' AND last(relevant_reviews_subjects.archived) = 1)\n OR \n (last(action_type) = 'escalated' AND last(relevant_reviews_subjects.escalated) = 1),\n last(reason),\n NULL\n ) AS status_details\n FROM\n relevant_reviews_subjects\n JOIN moderation_audits \n ON relevant_reviews_subjects.review_id = moderation_audits.review_id\n AND action_type IN ('rejected', 'escalated', 'unpublished', 'published', 'archived')\n GROUP BY\n relevant_reviews_subjects.review_id\n),\n--------------------------------------\n-- Retrieving reviews related votes\n--------------------------------------\nreviews_with_votes_prepare AS (\n SELECT\n reviews_base.review_id,\n SUM(IF(vote = 1, 1, 0)) AS votes_up,\n SUM(IF(vote = -1, 1, 0)) AS votes_down\n FROM\n reviews_base\n LEFT JOIN votes \n ON reviews_base.review_id = votes.voteable_id\n GROUP BY\n review_id\n),\n--------------------------------------\n-- Retrieving reviews dirty words\n--------------------------------------\nreviews_with_dirty_words AS (\n SELECT\n reviews_base.review_id,\n SUM(CASE WHEN dirty_words.id IS NULL THEN 0 ELSE 1 END) > 0 AS profanity_flag\n FROM reviews_base\n JOIN dirty_words \n ON dirty_words.model_id = reviews_base.review_id\n GROUP BY reviews_base.review_id\n),\n--------------------------------------\n-- Retrieving reviews user data\n--------------------------------------\nreviews_users AS (\n SELECT\n reviews_base.review_id,\n reviews_base.user_id,\n email AS reviewer_email\n FROM\n reviews_base\n JOIN users_tbl \n ON reviews_base.user_id = users_tbl.id\n WHERE\n reviews_base.user_type = 'User'\n),\nreviews_anonymous_users AS (\n SELECT\n reviews_base.review_id,\n reviews_base.user_id,\n email AS reviewer_email\n FROM\n reviews_base\n JOIN anonymous_users \n ON reviews_base.user_id = anonymous_users.id\n WHERE\n reviews_base.user_type = 'AnonymousUser'\n),\nreviews_all_users AS (\n SELECT\n review_id,\n user_id,\n reviewer_email\n FROM\n reviews_users\n UNION ALL\n SELECT\n review_id,\n user_id,\n reviewer_email\n FROM\n reviews_anonymous_users\n),\n--------------------------------------\n-- Retrieving incentivized reviews information\n--------------------------------------\nreviews_with_incentivized_flag AS (\n SELECT\n reviews_base.review_id,\n CASE WHEN reviews_incentivized.reviews_incentivized_type_id IS NULL THEN false ELSE true END AS incentivized_flag\n FROM reviews_base\n JOIN reviews_incentivized\n ON reviews_incentivized.review_id = reviews_base.review_id\n),\n--------------------------------------\n-- Retrieving CRF review form for reviews information\n--------------------------------------\nreview_contents AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__review_contents\n),\nreview_form_fields AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__review_form_fields\n),\nreporting_crf_form AS (\n SELECT \n reviews_base.review_id, \n first(review_form_fields.review_form_id) as review_form_id\n FROM \n reviews_base\n JOIN review_contents ON reviews_base.review_id = review_contents.review_id\n JOIN review_form_fields ON review_contents.review_form_field_id = review_form_fields.id\n GROUP BY reviews_base.review_id\n)\n----------------------------------------------------------------------------\n------- creating report data based on reviews and all the above enrichments\n----------------------------------------------------------------------------\nSELECT\n reviews_base.review_id,\n reviews_base.app_key,\n reviews_base.review_type,\n reviews_base.review_title,\n reviews_base.review_content,\n reviews_base.review_score,\n reviews_base.review_source,\n reviews_base.review_creation_date,\n reviews_base.status,\n reviews_base.sentiment_score,\n reviews_base.pushed_to_social,\n reviews_base.user_type,\n reviews_base.reviewer_display_name,\n reviews_all_users.reviewer_email,\n reviews_with_votes_prepare.votes_up,\n reviews_with_votes_prepare.votes_down,\n reviews_comments.comment_content,\n reviews_comments.comment_public,\n reviews_comments.comment_date,\n all_products.product_title,\n all_products.product_description,\n all_products.product_handle,\n all_products.product_id,\n all_products.product_created_at,\n all_products.product_group_id,\n all_products.product_group_name,\n all_products.product_internal_id,\n reviews_with_moderation_audits.status_details,\n reviews_with_aggregated_image_data.published_image_urls,\n reviews_with_aggregated_image_data.unpublished_image_urls,\n reviews_with_aggregated_videos_data.published_video_urls,\n reviews_with_aggregated_videos_data.unpublished_video_urls,\n reviews_with_dirty_words.profanity_flag,\n reviews_with_incentivized_flag.incentivized_flag,\n reporting_crf_form.review_form_id\nFROM\n reviews_base\n LEFT JOIN all_products ON all_products.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_aggregated_image_data ON reviews_with_aggregated_image_data.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_aggregated_videos_data ON reviews_with_aggregated_videos_data.review_id = reviews_base.review_id\n LEFT JOIN reviews_comments ON reviews_comments.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_moderation_audits ON reviews_with_moderation_audits.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_votes_prepare ON reviews_with_votes_prepare.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_dirty_words ON reviews_with_dirty_words.review_id = reviews_base.review_id\n LEFT JOIN reviews_all_users ON reviews_all_users.review_id = reviews_base.review_id\n LEFT JOIN reviews_with_incentivized_flag ON reviews_with_incentivized_flag.review_id = reviews_base.review_id\n LEFT JOIN reporting_crf_form ON reporting_crf_form.review_id = reviews_base.review_id", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc__shopper_experience_order_aggregation": {"database": null, "schema": "dev_dkruh1", "name": "ugc__shopper_experience_order_aggregation", "resource_type": "model", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.sql", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.sql", "unique_id": "model.yoda.ugc__shopper_experience_order_aggregation", "fqn": ["yoda", "ugc", "marts", "ugc__shopper_experience_order_aggregation", "ugc__shopper_experience_order_aggregation"], "alias": "ugc__shopper_experience_order_aggregation", "checksum": {"name": "sha256", "checksum": "98ca9af9ca09f846be465f090a1db71b5cc4f3948b38198f8687d7d95eddecc4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Pixel aggregated data for orders per currency", "columns": {"date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "App key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "Currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_sum_of_interacted_users": {"name": "orders_sum_of_interacted_users", "description": "Sum of the orders of interacted users per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_count_of_interacted_users": {"name": "orders_count_of_interacted_users", "description": "Total orders of interacted users per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "interacted_users_with_orders": {"name": "interacted_users_with_orders", "description": "Amount of interacted users that placed an order per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "interacted_users_without_orders": {"name": "interacted_users_without_orders", "description": "Amount of interacted users that did not place an order per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_sum_of_non_interacted_users": {"name": "orders_sum_of_non_interacted_users", "description": "Sum of the orders of non interacted users per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_count_of_non_interacted_users": {"name": "orders_count_of_non_interacted_users", "description": "Total orders of non interacted users per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "non_interacted_users_with_orders": {"name": "non_interacted_users_with_orders", "description": "Amount of non interacted users that placed an order per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "non_interacted_users_without_orders": {"name": "non_interacted_users_without_orders", "description": "Amount of non interacted users that did not place an order per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082692.4205585, "relation_name": "dev_dkruh1.ugc__shopper_experience_order_aggregation", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=[\"date\"]\n )\n}}\n\n{{ get_pixel_data(\n source_table=this, \n is_incremental=is_incremental(), \n with_widgets=False,\n source_table_date_column='date') }}\n\n, users_with_orders AS (\n SELECT \n joined.date AS date,\n joined.app_key AS app_key,\n joined.domain_user_id AS domain_user_id,\n o.currency AS currency,\n COALESCE(FIRST(joined.is_interacted_user), false) AS is_interacted_user,\n SUM(CASE WHEN tr_orderid IS NULL THEN 0 ELSE tr_total END) AS orders_sum,\n SUM(CASE WHEN tr_orderid IS NULL THEN 0 ELSE 1 END) AS orders_count,\n SUM(CASE WHEN joined.is_interacted_user THEN 1 ELSE 0 END) AS total_interacted_users \n FROM \n (\n SELECT * FROM v3_widgets\n UNION ALL\n SELECT * FROM v2_widgets\n ) AS joined\n LEFT JOIN orders o ON\n o.date = joined.date\n AND o.app_key = joined.app_key\n AND o.domain_user_id = joined.domain_user_id\n WHERE \n tr_orderid IS NOT NULL\n GROUP BY \n 1,2,3,4\n)\nSELECT \n DATE(date) as date,\n app_key,\n currency,\n SUM(CASE WHEN is_interacted_user = 1 THEN orders_sum ELSE 0 END) AS orders_sum_of_interacted_users,\n SUM(CASE WHEN is_interacted_user = 1 THEN orders_count ELSE 0 END) AS orders_count_of_interacted_users,\n SUM(CASE WHEN is_interacted_user = 1 AND orders_sum > 0 THEN 1 ELSE 0 END) AS interacted_users_with_orders,\n SUM(CASE WHEN is_interacted_user = 1 AND orders_sum = 0 THEN 1 ELSE 0 END) AS interacted_users_without_orders,\n SUM(CASE WHEN is_interacted_user = 0 THEN orders_sum ELSE 0 END) AS orders_sum_of_non_interacted_users,\n SUM(CASE WHEN is_interacted_user = 0 THEN orders_count ELSE 0 END) AS orders_count_of_non_interacted_users,\n SUM(CASE WHEN is_interacted_user = 0 AND orders_sum > 0 THEN 1 ELSE 0 END) AS non_interacted_users_with_orders,\n SUM(CASE WHEN is_interacted_user = 0 AND orders_sum = 0 THEN 1 ELSE 0 END) AS non_interacted_users_without_orders\nFROM \n users_with_orders\nGROUP BY\n 1,2,3", "language": "sql", "refs": [{"name": "infra__pixel_onsite_v3", "package": null, "version": null}, {"name": "infra__pixel_onsite_v2", "package": null, "version": null}, {"name": "infra__pixel_onsite_v2", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.yoda.get_pixel_data", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__pixel_onsite_v3", "model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v2"]}, "compiled_path": "target/compiled/yoda/models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.sql", "compiled": true, "compiled_code": "\n\n\n\nWITH \nv3_widgets AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n domain_userid AS domain_user_id,\n \n SUM(CASE WHEN se_action in ('shown', 'clicked_on') THEN 1 ELSE 0 END) > 0 as is_interacted_user\n FROM \n dev_dkruh1.infra__pixel_onsite_v3\n WHERE \n (\n (se_category in (\"questions-and-answers-widget\", \"reviews-main-widget\", \"reviews-seo-page\") AND se_action = \"shown\" AND se_label = \"app\")\n OR (se_category in(\"star-ratings-widget\",\"reviews-tab\",\"reviews-carousel-widget\", \"promoted-products-widget\") AND se_action = \"clicked_on\")\n OR (se_action = \"loaded\" AND se_label = \"widget\" AND se_category IN (\"promoted-products-widget\",\"reviews-seo-page\",\"reviews-carousel-widget\",\"reviews-main-widget\",\"questions-and-answers-widget\",\"star-ratings-widget\",\"reviews-tab\",\"\"))\n ) \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n domain_user_id\n \n\n),\nv2_widgets AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n domain_userid AS domain_user_id,\n \n SUM(CASE WHEN se_action in ('shown', 'clicked_on') THEN 1 ELSE 0 END) > 0 as is_interacted_user\n FROM \n dev_dkruh1.infra__pixel_onsite_v2\n WHERE \n (\n (se_category IN (\"reviews\",\"questions_widget\",\"pictures_widget\",\"reviews_dedicated_page\") AND se_action IN (\"loaded\", \"shown\"))\n OR (se_category IN (\"pictures_widget_popup\",\"carousel\", \"star_rating\",\"Reviews_Badge\",\"tab\",\"promoted_products\") AND se_action IN (\"loaded\", \"clicked_on\"))\n ) \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n domain_user_id\n \n),\norders AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n tr_orderid,\n MIN(domain_userid) AS domain_user_id,\n FIRST(tr_currency) as currency, \n AVG(tr_total) as tr_total\n FROM \n dev_dkruh1.infra__pixel_onsite_v2\n WHERE \n tr_orderid IS NOT NULL \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n tr_orderid\n)\n\n, users_with_orders AS (\n SELECT \n joined.date AS date,\n joined.app_key AS app_key,\n joined.domain_user_id AS domain_user_id,\n o.currency AS currency,\n COALESCE(FIRST(joined.is_interacted_user), false) AS is_interacted_user,\n SUM(CASE WHEN tr_orderid IS NULL THEN 0 ELSE tr_total END) AS orders_sum,\n SUM(CASE WHEN tr_orderid IS NULL THEN 0 ELSE 1 END) AS orders_count,\n SUM(CASE WHEN joined.is_interacted_user THEN 1 ELSE 0 END) AS total_interacted_users \n FROM \n (\n SELECT * FROM v3_widgets\n UNION ALL\n SELECT * FROM v2_widgets\n ) AS joined\n LEFT JOIN orders o ON\n o.date = joined.date\n AND o.app_key = joined.app_key\n AND o.domain_user_id = joined.domain_user_id\n WHERE \n tr_orderid IS NOT NULL\n GROUP BY \n 1,2,3,4\n)\nSELECT \n DATE(date) as date,\n app_key,\n currency,\n SUM(CASE WHEN is_interacted_user = 1 THEN orders_sum ELSE 0 END) AS orders_sum_of_interacted_users,\n SUM(CASE WHEN is_interacted_user = 1 THEN orders_count ELSE 0 END) AS orders_count_of_interacted_users,\n SUM(CASE WHEN is_interacted_user = 1 AND orders_sum > 0 THEN 1 ELSE 0 END) AS interacted_users_with_orders,\n SUM(CASE WHEN is_interacted_user = 1 AND orders_sum = 0 THEN 1 ELSE 0 END) AS interacted_users_without_orders,\n SUM(CASE WHEN is_interacted_user = 0 THEN orders_sum ELSE 0 END) AS orders_sum_of_non_interacted_users,\n SUM(CASE WHEN is_interacted_user = 0 THEN orders_count ELSE 0 END) AS orders_count_of_non_interacted_users,\n SUM(CASE WHEN is_interacted_user = 0 AND orders_sum > 0 THEN 1 ELSE 0 END) AS non_interacted_users_with_orders,\n SUM(CASE WHEN is_interacted_user = 0 AND orders_sum = 0 THEN 1 ELSE 0 END) AS non_interacted_users_without_orders\nFROM \n users_with_orders\nGROUP BY\n 1,2,3", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc__shopper_experience_store_aggregation": {"database": null, "schema": "dev_dkruh1", "name": "ugc__shopper_experience_store_aggregation", "resource_type": "model", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.sql", "original_file_path": "models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.sql", "unique_id": "model.yoda.ugc__shopper_experience_store_aggregation", "fqn": ["yoda", "ugc", "marts", "ugc__shopper_experience_store_aggregation", "ugc__shopper_experience_store_aggregation"], "alias": "ugc__shopper_experience_store_aggregation", "checksum": {"name": "sha256", "checksum": "2bbd70eae4217e2b1ea10e0852a70f18abfdd3d707d3ff321c4b2106719e3535"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Pixel aggregation data", "columns": {"date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "App key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_users": {"name": "total_users", "description": "Amount of all unique users", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "interacted_users": {"name": "interacted_users", "description": "Amount of unique users that interacted with at least one widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "non_interacted_users": {"name": "non_interacted_users", "description": "Amount of unique users that did not interact with any widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "interacted_users_with_orders": {"name": "interacted_users_with_orders", "description": "Amount of unique users that interacted with at least one widget and placed at least one order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "interacted_users_without_orders": {"name": "interacted_users_without_orders", "description": "Amount of unique users that interacted with at least one widget and did not place any order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "non_interacted_users_with_orders": {"name": "non_interacted_users_with_orders", "description": "Amount of unique users that did not interact with any widget and placed at least one order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "non_interacted_users_without_orders": {"name": "non_interacted_users_without_orders", "description": "Amount of unique users that did not interact with any widget and did not place any order", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082692.4383712, "relation_name": "dev_dkruh1.ugc__shopper_experience_store_aggregation", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=[\"date\"]\n )\n}}\n\n{{ get_pixel_data(\n source_table=this, \n is_incremental=is_incremental(), \n with_widgets=False,\n source_table_date_column='date') }}\n\n, users_with_orders AS (\n SELECT \n joined.date AS date,\n joined.app_key AS app_key,\n joined.domain_user_id AS domain_user_id,\n coalesce(FIRST(joined.is_interacted_user), false) AS is_interacted_user, \n SUM(CASE WHEN tr_orderid IS NULL THEN 0 ELSE tr_total END) AS orders_sum,\n SUM(CASE WHEN joined.is_interacted_user THEN 1 ELSE 0 END) AS total_interacted_users \n FROM \n (\n SELECT * FROM v3_widgets\n UNION ALL\n SELECT * FROM v2_widgets\n ) AS joined\n LEFT JOIN orders o ON\n o.date = joined.date\n AND o.app_key = joined.app_key\n AND o.domain_user_id = joined.domain_user_id\n GROUP BY \n 1,2,3\n)\nSELECT \n DATE(date) AS date,\n app_key,\n COUNT(*) as total_users,\n SUM(CASE WHEN is_interacted_user = 1 THEN 1 ELSE 0 END) AS interacted_users,\n SUM(CASE WHEN is_interacted_user = 0 THEN 1 ELSE 0 END) AS non_interacted_users,\n SUM(CASE WHEN is_interacted_user = 1 AND orders_sum > 0 THEN 1 ELSE 0 END) AS interacted_users_with_orders,\n SUM(CASE WHEN is_interacted_user = 1 AND orders_sum = 0 THEN 1 ELSE 0 END) AS interacted_users_without_orders,\n SUM(CASE WHEN is_interacted_user = 0 AND orders_sum > 0 THEN 1 ELSE 0 END) AS non_interacted_users_with_orders,\n SUM(CASE WHEN is_interacted_user = 0 AND orders_sum = 0 THEN 1 ELSE 0 END) AS non_interacted_users_without_orders\nFROM \n users_with_orders\nGROUP BY\n 1,2", "language": "sql", "refs": [{"name": "infra__pixel_onsite_v3", "package": null, "version": null}, {"name": "infra__pixel_onsite_v2", "package": null, "version": null}, {"name": "infra__pixel_onsite_v2", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.yoda.get_pixel_data", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__pixel_onsite_v3", "model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v2"]}, "compiled_path": "target/compiled/yoda/models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.sql", "compiled": true, "compiled_code": "\n\n\n\nWITH \nv3_widgets AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n domain_userid AS domain_user_id,\n \n SUM(CASE WHEN se_action in ('shown', 'clicked_on') THEN 1 ELSE 0 END) > 0 as is_interacted_user\n FROM \n dev_dkruh1.infra__pixel_onsite_v3\n WHERE \n (\n (se_category in (\"questions-and-answers-widget\", \"reviews-main-widget\", \"reviews-seo-page\") AND se_action = \"shown\" AND se_label = \"app\")\n OR (se_category in(\"star-ratings-widget\",\"reviews-tab\",\"reviews-carousel-widget\", \"promoted-products-widget\") AND se_action = \"clicked_on\")\n OR (se_action = \"loaded\" AND se_label = \"widget\" AND se_category IN (\"promoted-products-widget\",\"reviews-seo-page\",\"reviews-carousel-widget\",\"reviews-main-widget\",\"questions-and-answers-widget\",\"star-ratings-widget\",\"reviews-tab\",\"\"))\n ) \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n domain_user_id\n \n\n),\nv2_widgets AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n domain_userid AS domain_user_id,\n \n SUM(CASE WHEN se_action in ('shown', 'clicked_on') THEN 1 ELSE 0 END) > 0 as is_interacted_user\n FROM \n dev_dkruh1.infra__pixel_onsite_v2\n WHERE \n (\n (se_category IN (\"reviews\",\"questions_widget\",\"pictures_widget\",\"reviews_dedicated_page\") AND se_action IN (\"loaded\", \"shown\"))\n OR (se_category IN (\"pictures_widget_popup\",\"carousel\", \"star_rating\",\"Reviews_Badge\",\"tab\",\"promoted_products\") AND se_action IN (\"loaded\", \"clicked_on\"))\n ) \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n domain_user_id\n \n),\norders AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n tr_orderid,\n MIN(domain_userid) AS domain_user_id,\n FIRST(tr_currency) as currency, \n AVG(tr_total) as tr_total\n FROM \n dev_dkruh1.infra__pixel_onsite_v2\n WHERE \n tr_orderid IS NOT NULL \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n tr_orderid\n)\n\n, users_with_orders AS (\n SELECT \n joined.date AS date,\n joined.app_key AS app_key,\n joined.domain_user_id AS domain_user_id,\n coalesce(FIRST(joined.is_interacted_user), false) AS is_interacted_user, \n SUM(CASE WHEN tr_orderid IS NULL THEN 0 ELSE tr_total END) AS orders_sum,\n SUM(CASE WHEN joined.is_interacted_user THEN 1 ELSE 0 END) AS total_interacted_users \n FROM \n (\n SELECT * FROM v3_widgets\n UNION ALL\n SELECT * FROM v2_widgets\n ) AS joined\n LEFT JOIN orders o ON\n o.date = joined.date\n AND o.app_key = joined.app_key\n AND o.domain_user_id = joined.domain_user_id\n GROUP BY \n 1,2,3\n)\nSELECT \n DATE(date) AS date,\n app_key,\n COUNT(*) as total_users,\n SUM(CASE WHEN is_interacted_user = 1 THEN 1 ELSE 0 END) AS interacted_users,\n SUM(CASE WHEN is_interacted_user = 0 THEN 1 ELSE 0 END) AS non_interacted_users,\n SUM(CASE WHEN is_interacted_user = 1 AND orders_sum > 0 THEN 1 ELSE 0 END) AS interacted_users_with_orders,\n SUM(CASE WHEN is_interacted_user = 1 AND orders_sum = 0 THEN 1 ELSE 0 END) AS interacted_users_without_orders,\n SUM(CASE WHEN is_interacted_user = 0 AND orders_sum > 0 THEN 1 ELSE 0 END) AS non_interacted_users_with_orders,\n SUM(CASE WHEN is_interacted_user = 0 AND orders_sum = 0 THEN 1 ELSE 0 END) AS non_interacted_users_without_orders\nFROM \n users_with_orders\nGROUP BY\n 1,2", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc__shopper_experience_widget_engagement_aggregation": {"database": null, "schema": "dev_dkruh1", "name": "ugc__shopper_experience_widget_engagement_aggregation", "resource_type": "model", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.sql", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.sql", "unique_id": "model.yoda.ugc__shopper_experience_widget_engagement_aggregation", "fqn": ["yoda", "ugc", "marts", "ugc__shopper_experience_widget_engagement_aggregation", "ugc__shopper_experience_widget_engagement_aggregation"], "alias": "ugc__shopper_experience_widget_engagement_aggregation", "checksum": {"name": "sha256", "checksum": "913699456b5381eb6fc906fece84886d8f6e9b2b78716f768ade5e6ffbb5458c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Pixel aggregated data for widget engagmenet", "columns": {"date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "App key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget": {"name": "widget", "description": "Widget name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_interacted_users": {"name": "total_interacted_users", "description": "Amount of interacted users per widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_non_interacted_users": {"name": "total_non_interacted_users", "description": "Amount of non interacted users per widget", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082692.456015, "relation_name": "dev_dkruh1.ugc__shopper_experience_widget_engagement_aggregation", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=[\"date\"] \n )\n}}\n\n{{ get_pixel_data(\n source_table=this, \n is_incremental=is_incremental(), \n with_widgets=True,\n source_table_date_column='date') }}\n\n, users_with_widgets AS (\n SELECT \n DATE(joined.date) AS date,\n joined.app_key AS app_key,\n joined.se_category AS widget,\n SUM(CASE WHEN joined.is_interacted_user THEN 1 ELSE 0 END) AS total_interacted_users, \n SUM(CASE WHEN joined.is_interacted_user THEN 0 ELSE 1 END) AS total_non_interacted_users\n FROM \n (\n SELECT * FROM v3_widgets\n UNION ALL\n SELECT * FROM v2_widgets\n ) AS joined\n GROUP BY \n 1,2,3\n)\n\nSELECT \n *\nFROM \n users_with_widgets", "language": "sql", "refs": [{"name": "infra__pixel_onsite_v3", "package": null, "version": null}, {"name": "infra__pixel_onsite_v2", "package": null, "version": null}, {"name": "infra__pixel_onsite_v2", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.yoda.get_pixel_data", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__pixel_onsite_v3", "model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v2"]}, "compiled_path": "target/compiled/yoda/models/ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.sql", "compiled": true, "compiled_code": "\n\n\n\nWITH \nv3_widgets AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n domain_userid AS domain_user_id,\n \n se_category,\n \n SUM(CASE WHEN se_action in ('shown', 'clicked_on') THEN 1 ELSE 0 END) > 0 as is_interacted_user\n FROM \n dev_dkruh1.infra__pixel_onsite_v3\n WHERE \n (\n (se_category in (\"questions-and-answers-widget\", \"reviews-main-widget\", \"reviews-seo-page\") AND se_action = \"shown\" AND se_label = \"app\")\n OR (se_category in(\"star-ratings-widget\",\"reviews-tab\",\"reviews-carousel-widget\", \"promoted-products-widget\") AND se_action = \"clicked_on\")\n OR (se_action = \"loaded\" AND se_label = \"widget\" AND se_category IN (\"promoted-products-widget\",\"reviews-seo-page\",\"reviews-carousel-widget\",\"reviews-main-widget\",\"questions-and-answers-widget\",\"star-ratings-widget\",\"reviews-tab\",\"\"))\n ) \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n domain_user_id\n \n ,se_category\n \n\n),\nv2_widgets AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n domain_userid AS domain_user_id,\n \n se_category,\n \n SUM(CASE WHEN se_action in ('shown', 'clicked_on') THEN 1 ELSE 0 END) > 0 as is_interacted_user\n FROM \n dev_dkruh1.infra__pixel_onsite_v2\n WHERE \n (\n (se_category IN (\"reviews\",\"questions_widget\",\"pictures_widget\",\"reviews_dedicated_page\") AND se_action IN (\"loaded\", \"shown\"))\n OR (se_category IN (\"pictures_widget_popup\",\"carousel\", \"star_rating\",\"Reviews_Badge\",\"tab\",\"promoted_products\") AND se_action IN (\"loaded\", \"clicked_on\"))\n ) \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n domain_user_id\n \n ,se_category\n \n),\norders AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n tr_orderid,\n MIN(domain_userid) AS domain_user_id,\n FIRST(tr_currency) as currency, \n AVG(tr_total) as tr_total\n FROM \n dev_dkruh1.infra__pixel_onsite_v2\n WHERE \n tr_orderid IS NOT NULL \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n tr_orderid\n)\n\n, users_with_widgets AS (\n SELECT \n DATE(joined.date) AS date,\n joined.app_key AS app_key,\n joined.se_category AS widget,\n SUM(CASE WHEN joined.is_interacted_user THEN 1 ELSE 0 END) AS total_interacted_users, \n SUM(CASE WHEN joined.is_interacted_user THEN 0 ELSE 1 END) AS total_non_interacted_users\n FROM \n (\n SELECT * FROM v3_widgets\n UNION ALL\n SELECT * FROM v2_widgets\n ) AS joined\n GROUP BY \n 1,2,3\n)\n\nSELECT \n *\nFROM \n users_with_widgets", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc__shopper_experience_widget_order_aggregation": {"database": null, "schema": "dev_dkruh1", "name": "ugc__shopper_experience_widget_order_aggregation", "resource_type": "model", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.sql", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.sql", "unique_id": "model.yoda.ugc__shopper_experience_widget_order_aggregation", "fqn": ["yoda", "ugc", "marts", "ugc__shopper_experience_widget_order_aggregation", "ugc__shopper_experience_widget_order_aggregation"], "alias": "ugc__shopper_experience_widget_order_aggregation", "checksum": {"name": "sha256", "checksum": "a1d9962a640c4e3f52b161dfe704db2be8fd88a679b31224013b95d77f4ec210"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "materialized": "incremental", "incremental_strategy": "append", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "partition_by": ["date"], "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Pixel aggregated data for orders per widget per currency", "columns": {"date": {"name": "date", "description": "Date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "app_key": {"name": "app_key", "description": "App key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget": {"name": "widget", "description": "Widget name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "Currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_count": {"name": "orders_count", "description": "Amount of all orders per widget per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_sum_interacted_users": {"name": "orders_sum_interacted_users", "description": "Orders sum of interacted users per widget per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_count_of_interacted_users": {"name": "orders_count_of_interacted_users", "description": "Orders amount of interacted users per widget per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders_sum_non_interacted_users": {"name": "orders_sum_non_interacted_users", "description": "Orders sum of non interacted users per widget per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_count_of_non_interacted_users": {"name": "orders_count_of_non_interacted_users", "description": "Orders amount of non interacted users per widget per currency", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "materialized": "incremental", "meta": {"model_ownership": {"group": "ugc", "team": "bits", "created_by": "ckronengold@yotpo.com", "alert_channels": ["analytics-alerts"]}, "cluster_profile": {"name": "large"}}, "incremental_strategy": "append", "partition_by": ["date"]}, "created_at": 1700082692.4743655, "relation_name": "dev_dkruh1.ugc__shopper_experience_widget_order_aggregation", "raw_code": "{{ config(\n materialized=dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=[\"date\"] \n )\n}}\n\n{{ get_pixel_data(\n source_table=this, \n is_incremental=is_incremental(), \n with_widgets=True,\n source_table_date_column='date') }}\n\n, users_with_orders AS (\n SELECT \n DATE(joined.date) AS date,\n joined.app_key AS app_key,\n joined.se_category AS widget,\n o.currency,\n SUM(CASE WHEN tr_orderid IS NULL THEN 0 ELSE 1 END) AS orders_count,\n SUM(CASE WHEN joined.is_interacted_user AND tr_orderid IS NOT NULL THEN tr_total ELSE 0 END) AS orders_sum_interacted_users,\n SUM(CASE WHEN joined.is_interacted_user AND tr_orderid IS NOT NULL THEN 1 ELSE 0 END) AS orders_count_of_interacted_users, \n SUM(CASE WHEN joined.is_interacted_user=0 AND tr_orderid IS NOT NULL THEN tr_total ELSE 0 END) AS orders_sum_non_interacted_users,\n SUM(CASE WHEN joined.is_interacted_user=0 AND tr_orderid IS NOT NULL THEN 1 ELSE 0 END) AS orders_count_of_non_interacted_users\n FROM \n (\n SELECT * FROM v3_widgets\n UNION ALL\n SELECT * FROM v2_widgets\n ) AS joined\n LEFT JOIN orders o ON\n o.date = joined.date\n AND o.app_key = joined.app_key\n AND o.domain_user_id = joined.domain_user_id\n WHERE \n tr_orderid IS NOT NULL\n GROUP BY \n 1,2,3,4\n)\n\nSELECT \n *\nFROM \n users_with_orders", "language": "sql", "refs": [{"name": "infra__pixel_onsite_v3", "package": null, "version": null}, {"name": "infra__pixel_onsite_v2", "package": null, "version": null}, {"name": "infra__pixel_onsite_v2", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.yoda.get_pixel_data", "macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.infra__pixel_onsite_v3", "model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v2"]}, "compiled_path": "target/compiled/yoda/models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.sql", "compiled": true, "compiled_code": "\n\n\n\nWITH \nv3_widgets AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n domain_userid AS domain_user_id,\n \n se_category,\n \n SUM(CASE WHEN se_action in ('shown', 'clicked_on') THEN 1 ELSE 0 END) > 0 as is_interacted_user\n FROM \n dev_dkruh1.infra__pixel_onsite_v3\n WHERE \n (\n (se_category in (\"questions-and-answers-widget\", \"reviews-main-widget\", \"reviews-seo-page\") AND se_action = \"shown\" AND se_label = \"app\")\n OR (se_category in(\"star-ratings-widget\",\"reviews-tab\",\"reviews-carousel-widget\", \"promoted-products-widget\") AND se_action = \"clicked_on\")\n OR (se_action = \"loaded\" AND se_label = \"widget\" AND se_category IN (\"promoted-products-widget\",\"reviews-seo-page\",\"reviews-carousel-widget\",\"reviews-main-widget\",\"questions-and-answers-widget\",\"star-ratings-widget\",\"reviews-tab\",\"\"))\n ) \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n domain_user_id\n \n ,se_category\n \n\n),\nv2_widgets AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n domain_userid AS domain_user_id,\n \n se_category,\n \n SUM(CASE WHEN se_action in ('shown', 'clicked_on') THEN 1 ELSE 0 END) > 0 as is_interacted_user\n FROM \n dev_dkruh1.infra__pixel_onsite_v2\n WHERE \n (\n (se_category IN (\"reviews\",\"questions_widget\",\"pictures_widget\",\"reviews_dedicated_page\") AND se_action IN (\"loaded\", \"shown\"))\n OR (se_category IN (\"pictures_widget_popup\",\"carousel\", \"star_rating\",\"Reviews_Badge\",\"tab\",\"promoted_products\") AND se_action IN (\"loaded\", \"clicked_on\"))\n ) \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n domain_user_id\n \n ,se_category\n \n),\norders AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n tr_orderid,\n MIN(domain_userid) AS domain_user_id,\n FIRST(tr_currency) as currency, \n AVG(tr_total) as tr_total\n FROM \n dev_dkruh1.infra__pixel_onsite_v2\n WHERE \n tr_orderid IS NOT NULL \n AND useragent NOT REGEXP '(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp'\n\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n\n GROUP BY \n date,\n app_key,\n tr_orderid\n)\n\n, users_with_orders AS (\n SELECT \n DATE(joined.date) AS date,\n joined.app_key AS app_key,\n joined.se_category AS widget,\n o.currency,\n SUM(CASE WHEN tr_orderid IS NULL THEN 0 ELSE 1 END) AS orders_count,\n SUM(CASE WHEN joined.is_interacted_user AND tr_orderid IS NOT NULL THEN tr_total ELSE 0 END) AS orders_sum_interacted_users,\n SUM(CASE WHEN joined.is_interacted_user AND tr_orderid IS NOT NULL THEN 1 ELSE 0 END) AS orders_count_of_interacted_users, \n SUM(CASE WHEN joined.is_interacted_user=0 AND tr_orderid IS NOT NULL THEN tr_total ELSE 0 END) AS orders_sum_non_interacted_users,\n SUM(CASE WHEN joined.is_interacted_user=0 AND tr_orderid IS NOT NULL THEN 1 ELSE 0 END) AS orders_count_of_non_interacted_users\n FROM \n (\n SELECT * FROM v3_widgets\n UNION ALL\n SELECT * FROM v2_widgets\n ) AS joined\n LEFT JOIN orders o ON\n o.date = joined.date\n AND o.app_key = joined.app_key\n AND o.domain_user_id = joined.domain_user_id\n WHERE \n tr_orderid IS NOT NULL\n GROUP BY \n 1,2,3,4\n)\n\nSELECT \n *\nFROM \n users_with_orders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__anonymous_users": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__anonymous_users", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.sql", "unique_id": "model.yoda.ugc_stg__anonymous_users", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__anonymous_users", "ugc_stg__anonymous_users"], "alias": "ugc_stg__anonymous_users", "checksum": {"name": "sha256", "checksum": "c2d605aa0994cdfa7b1d6161ad30d6babb444a36d786b1e0efce5e4c19bf0f43"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "token": {"name": "token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082692.8942425, "relation_name": "dev_dkruh1.ugc_stg__anonymous_users", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'anonymous_users') }}\n\n), ugc_stg__anonymous_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\temail,\n\t\tdisplay_name,\n\t\ttoken,\n\t\tuser_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__anonymous_users", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "anonymous_users"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.anonymous_users"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.anonymous_users\n\n), ugc_stg__anonymous_users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\temail,\n\t\tdisplay_name,\n\t\ttoken,\n\t\tuser_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__anonymous_users", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__comments": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__comments", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.sql", "unique_id": "model.yoda.ugc_stg__comments", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__comments", "ugc_stg__comments"], "alias": "ugc_stg__comments", "checksum": {"name": "sha256", "checksum": "68e8362ec80018b72288a2658b88c7835da08d90ea8cca80d1828dbf9be7f718"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "commentable_id": {"name": "commentable_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "content": {"name": "content", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "commenter_display_name": {"name": "commenter_display_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "public": {"name": "public", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_comment_id": {"name": "source_comment_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "commentable_type": {"name": "commentable_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_type": {"name": "user_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "approved": {"name": "approved", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082692.9173005, "relation_name": "dev_dkruh1.ugc_stg__comments", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'comments') }}\n\n), ugc_stg__comments AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcommentable_id,\n\t\tcontent,\n\t\tcommenter_display_name,\n\t\tpublic,\n\t\tsource_comment_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tcommentable_type,\n\t\tuser_type,\n\t\tuser_id,\n\t\tapproved\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__comments", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "comments"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.comments"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.comments\n\n), ugc_stg__comments AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcommentable_id,\n\t\tcontent,\n\t\tcommenter_display_name,\n\t\tpublic,\n\t\tsource_comment_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tcommentable_type,\n\t\tuser_type,\n\t\tuser_id,\n\t\tapproved\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__comments", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__dirty_words": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__dirty_words", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.sql", "unique_id": "model.yoda.ugc_stg__dirty_words", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__dirty_words", "ugc_stg__dirty_words"], "alias": "ugc_stg__dirty_words", "checksum": {"name": "sha256", "checksum": "6743fedca25e3a2e0a84fca988a2381b2af6264fe31e916275deacd862cbce41"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "model_type": {"name": "model_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "model_id": {"name": "model_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "words": {"name": "words", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082692.9363925, "relation_name": "dev_dkruh1.ugc_stg__dirty_words", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'dirty_words') }}\n\n), ugc_stg__dirty_words AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tmodel_type,\n\t\tmodel_id,\n\t\twords,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__dirty_words", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "dirty_words"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.dirty_words"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.dirty_words\n\n), ugc_stg__dirty_words AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tmodel_type,\n\t\tmodel_id,\n\t\twords,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__dirty_words", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__email_authentications": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__email_authentications", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.sql", "unique_id": "model.yoda.ugc_stg__email_authentications", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__email_authentications", "ugc_stg__email_authentications"], "alias": "ugc_stg__email_authentications", "checksum": {"name": "sha256", "checksum": "8869e6e4aa939ddc975770ba29439f8c5f27942f4abf39ba6949d8e48e61e848"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"partitioning_time": {"name": "partitioning_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "caller_id": {"name": "caller_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_type": {"name": "caller_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "repliable_id": {"name": "repliable_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "repliable_type": {"name": "repliable_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "token": {"name": "token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "users_email_control_id": {"name": "users_email_control_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082692.9597056, "relation_name": "dev_dkruh1.ugc_stg__email_authentications", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'email_authentications') }}\n\n), ugc_stg__email_authentications AS (\n\n SELECT \n\t\tpartitioning_time,\n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tcaller_id,\n\t\tcaller_type,\n\t\tcreated_at,\n\t\trepliable_id,\n\t\trepliable_type,\n\t\ttoken,\n\t\tupdated_at,\n\t\tusers_email_control_id,\n\t\tts_ms\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__email_authentications", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "email_authentications"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.email_authentications"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.email_authentications\n\n), ugc_stg__email_authentications AS (\n\n SELECT \n\t\tpartitioning_time,\n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tcaller_id,\n\t\tcaller_type,\n\t\tcreated_at,\n\t\trepliable_id,\n\t\trepliable_type,\n\t\ttoken,\n\t\tupdated_at,\n\t\tusers_email_control_id,\n\t\tts_ms\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__email_authentications", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__email_types": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__email_types", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.sql", "unique_id": "model.yoda.ugc_stg__email_types", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__email_types", "ugc_stg__email_types"], "alias": "ugc_stg__email_types", "checksum": {"name": "sha256", "checksum": "db40561f3d1de69164b171bf894ad78c48e7d94a2b0083880c79113c0da30571"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "require_authentication": {"name": "require_authentication", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reply_type": {"name": "reply_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "b2c": {"name": "b2c", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "template": {"name": "template", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082692.9822674, "relation_name": "dev_dkruh1.ugc_stg__email_types", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'email_types') }}\n\n), ugc_stg__email_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\trequire_authentication,\n\t\treply_type,\n\t\tb2c,\n\t\ttemplate\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__email_types", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "email_types"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.email_types"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.email_types\n\n), ugc_stg__email_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\trequire_authentication,\n\t\treply_type,\n\t\tb2c,\n\t\ttemplate\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__email_types", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__images": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__images", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.sql", "unique_id": "model.yoda.ugc_stg__images", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__images", "ugc_stg__images"], "alias": "ugc_stg__images", "checksum": {"name": "sha256", "checksum": "a9f86dece4fe956f8158df844ce97cae3deee9077dead91b028f9461e68fea75"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "image_file_name": {"name": "image_file_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_content_type": {"name": "image_content_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_file_size": {"name": "image_file_size", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "image_updated_at": {"name": "image_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "image_width": {"name": "image_width", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "image_height": {"name": "image_height", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imageable_id": {"name": "imageable_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imageable_type": {"name": "imageable_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_resource_id": {"name": "yotpo_resource_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "kind": {"name": "kind", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_fingerprint": {"name": "image_fingerprint", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "published": {"name": "published", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__images/ugc_stg__images.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.008683, "relation_name": "dev_dkruh1.ugc_stg__images", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'images') }}\n\n), ugc_stg__images AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\timage_file_name,\n\t\timage_content_type,\n\t\timage_file_size,\n\t\timage_updated_at,\n\t\timage_width,\n\t\timage_height,\n\t\timageable_id,\n\t\timageable_type,\n\t\tyotpo_resource_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tkind,\n\t\timage_fingerprint,\n\t\turl,\n\t\tpublished\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__images", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "images"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.images"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__images/ugc_stg__images.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.images\n\n), ugc_stg__images AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\timage_file_name,\n\t\timage_content_type,\n\t\timage_file_size,\n\t\timage_updated_at,\n\t\timage_width,\n\t\timage_height,\n\t\timageable_id,\n\t\timageable_type,\n\t\tyotpo_resource_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tkind,\n\t\timage_fingerprint,\n\t\turl,\n\t\tpublished\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__images", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__metadata_types": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__metadata_types", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.sql", "unique_id": "model.yoda.ugc_stg__metadata_types", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__metadata_types", "ugc_stg__metadata_types"], "alias": "ugc_stg__metadata_types", "checksum": {"name": "sha256", "checksum": "1f3c0f5e1454f3f80a1ed57149182020dee6d216eceabbfd6c1b2c0ac3e40491"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "value": {"name": "value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.024897, "relation_name": "dev_dkruh1.ugc_stg__metadata_types", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__default', 'metadata_types') }}\n\n), ugc_stg__metadata_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tvalue,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__metadata_types", "language": "sql", "refs": [], "sources": [["ugc__default", "metadata_types"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__default.metadata_types"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM default.metadata_types\n\n), ugc_stg__metadata_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tvalue,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__metadata_types", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__moderation_audits": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__moderation_audits", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.sql", "unique_id": "model.yoda.ugc_stg__moderation_audits", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__moderation_audits", "ugc_stg__moderation_audits"], "alias": "ugc_stg__moderation_audits", "checksum": {"name": "sha256", "checksum": "725fa6d6032b42e6deb8725e915c7ff181672a356ff13e436f5900b5dd99096c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason": {"name": "reason", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.045777, "relation_name": "dev_dkruh1.ugc_stg__moderation_audits", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'moderation_audits') }}\n\n), ugc_stg__moderation_audits AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\temail,\n\t\tdisplay_name,\n\t\taction_type,\n\t\treason,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__moderation_audits", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "moderation_audits"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.moderation_audits"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.moderation_audits\n\n), ugc_stg__moderation_audits AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\temail,\n\t\tdisplay_name,\n\t\taction_type,\n\t\treason,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__moderation_audits", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__mongo_gallery_media": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__mongo_gallery_media", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.sql", "unique_id": "model.yoda.ugc_stg__mongo_gallery_media", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__mongo_gallery_media", "ugc_stg__mongo_gallery_media"], "alias": "ugc_stg__mongo_gallery_media", "checksum": {"name": "sha256", "checksum": "aef0de1424f7789f3beefc5a987308ed9ac7f5d225620bd7c46092029f57da4b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"_id": {"name": "_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "entry_id": {"name": "entry_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gallery_id": {"name": "gallery_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "media_id": {"name": "media_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "media_type": {"name": "media_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mention": {"name": "mention", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct<_id:string,business_id:string,comment_id:string,media_id:string>"}, "origin_gm_id": {"name": "origin_gm_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "permission_request": {"name": "permission_request", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct<_id:string,user_name:string,approval_hash_tag:string,type:string,request:struct<_id:string,status:string,processed_at:string>,thanks_reply:struct<_id:string,status:string,processed_at:string>>"}, "published_at": {"name": "published_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_syndication": {"name": "review_syndication", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "show_in_new": {"name": "show_in_new", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_account_app_key": {"name": "source_account_app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "starred": {"name": "starred", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syndicated_image_id": {"name": "syndicated_image_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tagged_products": {"name": "tagged_products", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "text": {"name": "text", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "thumbs_down": {"name": "thumbs_down", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "thumbs_up": {"name": "thumbs_up", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "video": {"name": "video", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct<_id:string,duration:string,entry_id:string,hosting_status:string,original_sized_thumbnail_url:string,thumbnail_url:string,url:string>"}, "vms_syndication": {"name": "vms_syndication", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.0752256, "relation_name": "dev_dkruh1.ugc_stg__mongo_gallery_media", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__default', 'mongo_gallery_media') }}\n\n), ugc_stg__mongo_gallery_media AS (\n\n SELECT \n\t\t_id,\n\t\tcreated_at,\n\t\tentry_id,\n\t\tgallery_id,\n\t\tmedia_id,\n\t\tmedia_type,\n\t\tmention,\n\t\torigin_gm_id,\n\t\tpermission_request,\n\t\tpublished_at,\n\t\treview_syndication,\n\t\tshow_in_new,\n\t\tsource_account_app_key,\n\t\tstarred,\n\t\tstatus,\n\t\tsyndicated_image_id,\n\t\ttagged_products,\n\t\ttext,\n\t\tthumbs_down,\n\t\tthumbs_up,\n\t\tupdated_at,\n\t\tvideo,\n\t\tvms_syndication\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__mongo_gallery_media", "language": "sql", "refs": [], "sources": [["ugc__default", "mongo_gallery_media"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__default.mongo_gallery_media"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM default.mongo_gallery_media\n\n), ugc_stg__mongo_gallery_media AS (\n\n SELECT \n\t\t_id,\n\t\tcreated_at,\n\t\tentry_id,\n\t\tgallery_id,\n\t\tmedia_id,\n\t\tmedia_type,\n\t\tmention,\n\t\torigin_gm_id,\n\t\tpermission_request,\n\t\tpublished_at,\n\t\treview_syndication,\n\t\tshow_in_new,\n\t\tsource_account_app_key,\n\t\tstarred,\n\t\tstatus,\n\t\tsyndicated_image_id,\n\t\ttagged_products,\n\t\ttext,\n\t\tthumbs_down,\n\t\tthumbs_up,\n\t\tupdated_at,\n\t\tvideo,\n\t\tvms_syndication\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__mongo_gallery_media", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__reminders": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__reminders", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.sql", "unique_id": "model.yoda.ugc_stg__reminders", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__reminders", "ugc_stg__reminders"], "alias": "ugc_stg__reminders", "checksum": {"name": "sha256", "checksum": "10f5cd090b6147d092d39024889f0df3cef2e020e4ec6d9f537fd4db63de55f3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "sazoulay@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "The reminders table containes information related to the different automatic review requests configurations.\n\nEach entry describes a reminder.\n\nLegacy customers may have more than 2 review requests.\n\nCustomers using the new \"postman\" review request feature will have 1 to 2 reminders per account.\n\n \n\nMain usage example:\n\nreminders_max_products = 3\n\ndays_from_purchase = 14\n\nreminders_mail_interval = 5\n\nAn order with 10 products:\n\n- will recive 3 emails.\n\n- First email after 14 days from purchase date\n\n- Second email, 5 days after the first and 19 days from purchase date\n\n- Third email, 5 days after the second and 24 days from purchase date", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "The reminders primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "The store assosiated account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_from_purchase": {"name": "days_from_purchase", "description": "The days after which the email should be delivered.\n\nContranry to the column name, the trigger for the email may be different and it could be the amount of days from when the order was delivered or fulfilled.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subject": {"name": "subject", "description": "The email subject line", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "body": {"name": "body", "description": "Seems to be an unused legacy column, currently created null for new customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "The date and time at which the reminder was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "The date and time at which the reminder was updated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "header": {"name": "header", "description": "Seems to be a legacy column - TBD.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bottom": {"name": "bottom", "description": "Used as the text at the lower part of the review request email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mail_interval": {"name": "mail_interval", "description": "The amount of days between emails for each product on the same order.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "max_products": {"name": "max_products", "description": "Maximum amount of products that will recive an email per order.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "didnt_get_product_link": {"name": "didnt_get_product_link", "description": "Seems to be an unused legacy column, currently created null for new customers", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enabled": {"name": "enabled", "description": "Is the email enabled and emails are sending or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_submission_type_id": {"name": "email_submission_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "formless_call_to_action": {"name": "formless_call_to_action", "description": "Seems to be a legacy column - TBD.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "sazoulay@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "sazoulay@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.1010647, "relation_name": "dev_dkruh1.ugc_stg__reminders", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'reminders') }}\n\n), ugc_stg__reminders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taccount_id,\n\t\tdays_from_purchase,\n\t\tsubject,\n\t\tbody,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\theader,\n\t\tbottom,\n\t\tmail_interval,\n\t\tmax_products,\n\t\tdidnt_get_product_link,\n\t\tenabled,\n\t\temail_submission_type_id,\n\t\tformless_call_to_action\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__reminders", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "reminders"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.reminders"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.reminders\n\n), ugc_stg__reminders AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taccount_id,\n\t\tdays_from_purchase,\n\t\tsubject,\n\t\tbody,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\theader,\n\t\tbottom,\n\t\tmail_interval,\n\t\tmax_products,\n\t\tdidnt_get_product_link,\n\t\tenabled,\n\t\temail_submission_type_id,\n\t\tformless_call_to_action\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__reminders", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__retailer": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__retailer", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.sql", "unique_id": "model.yoda.ugc_stg__retailer", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__retailer", "ugc_stg__retailer"], "alias": "ugc_stg__retailer", "checksum": {"name": "sha256", "checksum": "4862664b072783e12dcd853cc3c88d3f7e377d01d70cc0eee9504c02d3c803ab"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Retailer table", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "Upsolver schema version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "Id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "Processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts_ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "retailer_name": {"name": "retailer_name", "description": "Retailer name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "file_name_format": {"name": "file_name_format", "description": "File name format", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "Created at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "Updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.118182, "relation_name": "dev_dkruh1.ugc_stg__retailer", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__retailers_syndication', 'retailer') }}\n\n), ugc_stg__retailer AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tretailer_name,\n\t\tfile_name_format,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__retailer", "language": "sql", "refs": [], "sources": [["ugc__retailers_syndication", "retailer"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__retailers_syndication.retailer"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM retailers_syndication.retailer\n\n), ugc_stg__retailer AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tretailer_name,\n\t\tfile_name_format,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__retailer", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__review_contents": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__review_contents", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.sql", "unique_id": "model.yoda.ugc_stg__review_contents", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_contents", "ugc_stg__review_contents"], "alias": "ugc_stg__review_contents", "checksum": {"name": "sha256", "checksum": "8dfe1ad613382020eb6307a03a34b174db888a0a4d6ba6551a58b1f060e52e7c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_form_field_id": {"name": "review_form_field_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "int_value": {"name": "int_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "string_value": {"name": "string_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "text_value": {"name": "text_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.1384223, "relation_name": "dev_dkruh1.ugc_stg__review_contents", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'review_contents') }}\n\n), ugc_stg__review_contents AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\treview_form_field_id,\n\t\tint_value,\n\t\tstring_value,\n\t\ttext_value,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_contents", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "review_contents"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.review_contents"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.review_contents\n\n), ugc_stg__review_contents AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\treview_form_field_id,\n\t\tint_value,\n\t\tstring_value,\n\t\ttext_value,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_contents", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__review_form_field_types": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__review_form_field_types", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.sql", "unique_id": "model.yoda.ugc_stg__review_form_field_types", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_form_field_types", "ugc_stg__review_form_field_types"], "alias": "ugc_stg__review_form_field_types", "checksum": {"name": "sha256", "checksum": "fcea2d84c028a7427dd941ab20d1c73ea7c8e9910dc6d3f10a7074d1e886a7a4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.1557791, "relation_name": "dev_dkruh1.ugc_stg__review_form_field_types", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'review_form_field_types') }}\n\n), ugc_stg__review_form_field_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_form_field_types", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "review_form_field_types"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.review_form_field_types"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.review_form_field_types\n\n), ugc_stg__review_form_field_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_form_field_types", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__review_form_fields": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__review_form_fields", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.sql", "unique_id": "model.yoda.ugc_stg__review_form_fields", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_form_fields", "ugc_stg__review_form_fields"], "alias": "ugc_stg__review_form_fields", "checksum": {"name": "sha256", "checksum": "566e8c353057810e1a5e1cbd098b8a720afda47a72c1585f5d22e0403aaa5f9c"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "display_variant": {"name": "display_variant", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "guidelines": {"name": "guidelines", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mandatory": {"name": "mandatory", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "options": {"name": "options", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order": {"name": "order", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_form_field_type_id": {"name": "review_form_field_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_form_id": {"name": "review_form_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "slug": {"name": "slug", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_title": {"name": "sub_title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.1792724, "relation_name": "dev_dkruh1.ugc_stg__review_form_fields", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'review_form_fields') }}\n\n), ugc_stg__review_form_fields AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_at,\n\t\tdisplay_variant,\n\t\tguidelines,\n\t\tmandatory,\n\t\toptions,\n\t\torder,\n\t\treview_form_field_type_id,\n\t\treview_form_id,\n\t\tslug,\n\t\tsub_title,\n\t\ttitle,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_form_fields", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "review_form_fields"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.review_form_fields"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.review_form_fields\n\n), ugc_stg__review_form_fields AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tcreated_at,\n\t\tdisplay_variant,\n\t\tguidelines,\n\t\tmandatory,\n\t\toptions,\n\t\torder,\n\t\treview_form_field_type_id,\n\t\treview_form_id,\n\t\tslug,\n\t\tsub_title,\n\t\ttitle,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_form_fields", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__review_metadatas": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__review_metadatas", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.sql", "unique_id": "model.yoda.ugc_stg__review_metadatas", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_metadatas", "ugc_stg__review_metadatas"], "alias": "ugc_stg__review_metadatas", "checksum": {"name": "sha256", "checksum": "dfe2dd988e035073ad47618af7a31f61e8566dc5def951d637ec7b1c1a258491"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "metadata_type_id": {"name": "metadata_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "metadata_type_value": {"name": "metadata_type_value", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.198639, "relation_name": "dev_dkruh1.ugc_stg__review_metadatas", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'review_metadatas') }}\n\n), ugc_stg__review_metadatas AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\tmetadata_type_id,\n\t\tmetadata_type_value,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_metadatas", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "review_metadatas"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.review_metadatas"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.review_metadatas\n\n), ugc_stg__review_metadatas AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\tmetadata_type_id,\n\t\tmetadata_type_value,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_metadatas", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__review_order_line": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__review_order_line", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_order_line/ugc_stg__review_order_line.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_order_line/ugc_stg__review_order_line.sql", "unique_id": "model.yoda.ugc_stg__review_order_line", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_order_line", "ugc_stg__review_order_line"], "alias": "ugc_stg__review_order_line", "checksum": {"name": "sha256", "checksum": "49ce6b4fe18c9729d8449ef84ef64d77a317d8ddbf66bc28dd639e7464973dce"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_line_id": {"name": "order_line_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_app_variant_id": {"name": "product_app_variant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "medium"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__review_order_line/ugc_stg__review_order_line.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "medium"}}}, "created_at": 1700082693.2163875, "relation_name": "dev_dkruh1.ugc_stg__review_order_line", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'review_order_line') }}\n\n), ugc_stg__review_order_line AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\torder_line_id,\n\t\tproduct_app_variant_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_order_line", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "review_order_line"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.review_order_line"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_order_line/ugc_stg__review_order_line.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.review_order_line\n\n), ugc_stg__review_order_line AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\torder_line_id,\n\t\tproduct_app_variant_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_order_line", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__review_request_emails": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__review_request_emails", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.sql", "unique_id": "model.yoda.ugc_stg__review_request_emails", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_request_emails", "ugc_stg__review_request_emails"], "alias": "ugc_stg__review_request_emails", "checksum": {"name": "sha256", "checksum": "5f2a1cd4eea4cb2beab1e2eb7aa9829e22fdfca44762bd9d119b83fbcee8b07d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_request_token": {"name": "review_request_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_email": {"name": "user_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_type_id": {"name": "email_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_submission_type_id": {"name": "email_submission_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_id": {"name": "caller_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_type": {"name": "caller_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_app_id": {"name": "products_app_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered_at": {"name": "delivered_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "date_to_deliver": {"name": "date_to_deliver", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "creation_context": {"name": "creation_context", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.249252, "relation_name": "dev_dkruh1.ugc_stg__review_request_emails", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'review_request_emails') }}\n\n), ugc_stg__review_request_emails AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tapp_key,\n\t\treview_request_token,\n\t\tuser_name,\n\t\tuser_email,\n\t\temail_type_id,\n\t\temail_submission_type_id,\n\t\tcaller_id,\n\t\tcaller_type,\n\t\tproducts_app_id,\n\t\tdelivered_at,\n\t\tdate_to_deliver,\n\t\tcreation_context,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_request_emails", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "review_request_emails"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.review_request_emails"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.review_request_emails\n\n), ugc_stg__review_request_emails AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tapp_key,\n\t\treview_request_token,\n\t\tuser_name,\n\t\tuser_email,\n\t\temail_type_id,\n\t\temail_submission_type_id,\n\t\tcaller_id,\n\t\tcaller_type,\n\t\tproducts_app_id,\n\t\tdelivered_at,\n\t\tdate_to_deliver,\n\t\tcreation_context,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_request_emails", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__review_request_sms": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__review_request_sms", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.sql", "unique_id": "model.yoda.ugc_stg__review_request_sms", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_request_sms", "ugc_stg__review_request_sms"], "alias": "ugc_stg__review_request_sms", "checksum": {"name": "sha256", "checksum": "6ff383a69de726e9ab2943ff53c594d840d0c1c03e226f6c5b9b5de26c99b3ca"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_request_token": {"name": "review_request_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_email": {"name": "user_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_type_id": {"name": "sms_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_id": {"name": "caller_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_type": {"name": "caller_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivered_at": {"name": "delivered_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sms_status_type_id": {"name": "sms_status_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.2728028, "relation_name": "dev_dkruh1.ugc_stg__review_request_sms", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'review_request_sms') }}\n\n), ugc_stg__review_request_sms AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tapp_key,\n\t\treview_request_token,\n\t\tuser_name,\n\t\tuser_email,\n\t\tsms_type_id,\n\t\tcaller_id,\n\t\tcaller_type,\n\t\tdelivered_at,\n\t\tsms_status_type_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_request_sms", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "review_request_sms"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.review_request_sms"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.review_request_sms\n\n), ugc_stg__review_request_sms AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tapp_key,\n\t\treview_request_token,\n\t\tuser_name,\n\t\tuser_email,\n\t\tsms_type_id,\n\t\tcaller_id,\n\t\tcaller_type,\n\t\tdelivered_at,\n\t\tsms_status_type_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_request_sms", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__review_request_tokens": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__review_request_tokens", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.sql", "unique_id": "model.yoda.ugc_stg__review_request_tokens", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_request_tokens", "ugc_stg__review_request_tokens"], "alias": "ugc_stg__review_request_tokens", "checksum": {"name": "sha256", "checksum": "10850a11495229e0e4d05bd0033dce6d45113307bf46ce52c4c03beabd740da8"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["puffins_alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "token": {"name": "token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "caller_type": {"name": "caller_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "caller_id": {"name": "caller_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "repliable_type": {"name": "repliable_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "repliable_identifier": {"name": "repliable_identifier", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_id": {"name": "review_source_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_id": {"name": "review_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["puffins_alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "sms", "team": "bears", "created_by": "evgeni.velikov@yotpo.com", "alert_channels": ["puffins_alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.2945454, "relation_name": "dev_dkruh1.ugc_stg__review_request_tokens", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'review_request_tokens') }}\n\n), ugc_stg__review_request_tokens AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\ttoken,\n\t\tcaller_type,\n\t\tcaller_id,\n\t\trepliable_type,\n\t\trepliable_identifier,\n\t\treview_source_type_id,\n\t\treview_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_request_tokens", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "review_request_tokens"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.review_request_tokens"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.review_request_tokens\n\n), ugc_stg__review_request_tokens AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\ttoken,\n\t\tcaller_type,\n\t\tcaller_id,\n\t\trepliable_type,\n\t\trepliable_identifier,\n\t\treview_source_type_id,\n\t\treview_id,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_request_tokens", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__review_source_types": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__review_source_types", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.sql", "unique_id": "model.yoda.ugc_stg__review_source_types", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_source_types", "ugc_stg__review_source_types"], "alias": "ugc_stg__review_source_types", "checksum": {"name": "sha256", "checksum": "9eab333b99d1a3aebc80f28f06b67ae4b7183df47662178f4b376bb93dcd8cdb"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.310894, "relation_name": "dev_dkruh1.ugc_stg__review_source_types", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'review_source_types') }}\n\n), ugc_stg__review_source_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_source_types", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "review_source_types"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.review_source_types"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.review_source_types\n\n), ugc_stg__review_source_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_source_types", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__review_tags": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__review_tags", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_tags/ugc_stg__review_tags.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_tags/ugc_stg__review_tags.sql", "unique_id": "model.yoda.ugc_stg__review_tags", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_tags", "ugc_stg__review_tags"], "alias": "ugc_stg__review_tags", "checksum": {"name": "sha256", "checksum": "ca9f4ffd4bccaaeca309dd6400c398331c1ca7ac09b6e645bb7a5759ceb9e55a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__review_tags/ugc_stg__review_tags.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.327835, "relation_name": "dev_dkruh1.ugc_stg__review_tags", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'review_tags') }}\n\n), ugc_stg__review_tags AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taccount_id,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_tags", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "review_tags"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.review_tags"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_tags/ugc_stg__review_tags.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.review_tags\n\n), ugc_stg__review_tags AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taccount_id,\n\t\tname,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_tags", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__review_types": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__review_types", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.sql", "unique_id": "model.yoda.ugc_stg__review_types", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_types", "ugc_stg__review_types"], "alias": "ugc_stg__review_types", "checksum": {"name": "sha256", "checksum": "35e2c393b94ef6368d3583c06f3c4d8b4805b624109a0e673116ab1984624866"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.3457994, "relation_name": "dev_dkruh1.ugc_stg__review_types", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'review_types') }}\n\n), ugc_stg__review_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tdescription,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_types", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "review_types"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.review_types"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.review_types\n\n), ugc_stg__review_types AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tname,\n\t\tdescription,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__review_types", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__reviews": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__reviews", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.sql", "unique_id": "model.yoda.ugc_stg__reviews", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__reviews", "ugc_stg__reviews"], "alias": "ugc_stg__reviews", "checksum": {"name": "sha256", "checksum": "7df27d7fab6fbeccdf9fc938b21957058c3ee91d81a48ab5b42f6f3942a6f282"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "source_app_key": {"name": "source_app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewer_display_name": {"name": "reviewer_display_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "content": {"name": "content", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "score": {"name": "score", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted": {"name": "deleted", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "new": {"name": "new", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_type": {"name": "user_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "verified_buyer": {"name": "verified_buyer", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "archived": {"name": "archived", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_owner": {"name": "shop_owner", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "twitter_pushed": {"name": "twitter_pushed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "facebook_pushed": {"name": "facebook_pushed", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_id": {"name": "review_source_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "votes_up": {"name": "votes_up", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "votes_down": {"name": "votes_down", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_type_id": {"name": "review_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_review_id": {"name": "source_review_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sentiment": {"name": "sentiment", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "escalated": {"name": "escalated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.3781278, "relation_name": "dev_dkruh1.ugc_stg__reviews", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'reviews') }}\n\n), ugc_stg__reviews AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsource_app_key,\n\t\ttitle,\n\t\treviewer_display_name,\n\t\tcontent,\n\t\tuser_id,\n\t\tscore,\n\t\tdeleted,\n\t\tapp_key,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tnew,\n\t\tuser_type,\n\t\tverified_buyer,\n\t\tarchived,\n\t\tshop_owner,\n\t\ttwitter_pushed,\n\t\tfacebook_pushed,\n\t\treview_source_type_id,\n\t\tvotes_up,\n\t\tvotes_down,\n\t\treview_type_id,\n\t\tsource_review_id,\n\t\tsentiment,\n\t\tescalated\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__reviews", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "reviews"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.reviews"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.reviews\n\n), ugc_stg__reviews AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tsource_app_key,\n\t\ttitle,\n\t\treviewer_display_name,\n\t\tcontent,\n\t\tuser_id,\n\t\tscore,\n\t\tdeleted,\n\t\tapp_key,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tnew,\n\t\tuser_type,\n\t\tverified_buyer,\n\t\tarchived,\n\t\tshop_owner,\n\t\ttwitter_pushed,\n\t\tfacebook_pushed,\n\t\treview_source_type_id,\n\t\tvotes_up,\n\t\tvotes_down,\n\t\treview_type_id,\n\t\tsource_review_id,\n\t\tsentiment,\n\t\tescalated\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__reviews", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__reviews_incentivized": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__reviews_incentivized", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.sql", "unique_id": "model.yoda.ugc_stg__reviews_incentivized", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__reviews_incentivized", "ugc_stg__reviews_incentivized"], "alias": "ugc_stg__reviews_incentivized", "checksum": {"name": "sha256", "checksum": "afbfcbe7ba3a7f11d15d298926bc875f25557b2d217dfa5f7255dc492746c9a7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "karol.klosowski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "This table stores data about reviews that were incentivized.", "columns": {"id": {"name": "id", "description": "Incentivized reviews primary key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "The date and time at which the entry was processed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "Timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "Id of review for which the entry was created (Foreign key from reviews table)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reviews_incentivized_type_id": {"name": "reviews_incentivized_type_id", "description": "Id of incentivized review type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "The date and time at which the entry was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "The date and time at which the entry was updated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "karol.klosowski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "karol.klosowski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.3953564, "relation_name": "dev_dkruh1.ugc_stg__reviews_incentivized", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'reviews_incentivized') }}\n\n), ugc_stg__reviews_incentivized AS (\n\n SELECT \n id, \n processing_time,\n ts_ms,\n review_id,\n reviews_incentivized_type_id,\n created_at,\n updated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__reviews_incentivized", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "reviews_incentivized"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.reviews_incentivized"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.reviews_incentivized\n\n), ugc_stg__reviews_incentivized AS (\n\n SELECT \n id, \n processing_time,\n ts_ms,\n review_id,\n reviews_incentivized_type_id,\n created_at,\n updated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__reviews_incentivized", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__reviews_subjects": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__reviews_subjects", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.sql", "unique_id": "model.yoda.ugc_stg__reviews_subjects", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__reviews_subjects", "ugc_stg__reviews_subjects"], "alias": "ugc_stg__reviews_subjects", "checksum": {"name": "sha256", "checksum": "48ba867bc6ea70c2660c02cc7215e47714691cd6b9b1067fb2da2164d64af5ba"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_id": {"name": "account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subject_entity_type": {"name": "subject_entity_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subject_id": {"name": "subject_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deactivated": {"name": "deactivated", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.4145918, "relation_name": "dev_dkruh1.ugc_stg__reviews_subjects", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'reviews_subjects') }}\n\n), ugc_stg__reviews_subjects AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\taccount_id,\n\t\tsubject_entity_type,\n\t\tsubject_id,\n\t\tdeactivated,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__reviews_subjects", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "reviews_subjects"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.reviews_subjects"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.reviews_subjects\n\n), ugc_stg__reviews_subjects AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\taccount_id,\n\t\tsubject_entity_type,\n\t\tsubject_id,\n\t\tdeactivated,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__reviews_subjects", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__shares": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__shares", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.sql", "unique_id": "model.yoda.ugc_stg__shares", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__shares", "ugc_stg__shares"], "alias": "ugc_stg__shares", "checksum": {"name": "sha256", "checksum": "a588985f176ae46379c8aa4cb44cd03b76005a18d58eab835f3fb28e4f27fc58"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "post_id": {"name": "post_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_id": {"name": "image_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "social_network_id": {"name": "social_network_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "metric1": {"name": "metric1", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "metric2": {"name": "metric2", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "metric3": {"name": "metric3", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "social_push_type_id": {"name": "social_push_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "signature": {"name": "signature", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "data-group", "team": "koalas", "created_by": "moshe.derri@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.4365036, "relation_name": "dev_dkruh1.ugc_stg__shares", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__default', 'shares') }}\n\n), ugc_stg__shares AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\tpost_id,\n\t\timage_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tsocial_network_id,\n\t\tmetric1,\n\t\tmetric2,\n\t\tmetric3,\n\t\tsocial_push_type_id,\n\t\tsignature\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__shares", "language": "sql", "refs": [], "sources": [["ugc__default", "shares"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__default.shares"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM default.shares\n\n), ugc_stg__shares AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_id,\n\t\tpost_id,\n\t\timage_id,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tsocial_network_id,\n\t\tmetric1,\n\t\tmetric2,\n\t\tmetric3,\n\t\tsocial_push_type_id,\n\t\tsignature\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__shares", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__syndicated_accounts": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__syndicated_accounts", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.sql", "unique_id": "model.yoda.ugc_stg__syndicated_accounts", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__syndicated_accounts", "ugc_stg__syndicated_accounts"], "alias": "ugc_stg__syndicated_accounts", "checksum": {"name": "sha256", "checksum": "60ba39fc49b4acf82794f16eef7e304bd4eb5e148575feea43459c6e96068ab0"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Shopify Shop syndicated accounts", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "Upsolver schema version", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "Id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "Processing time", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "ts_ms", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "App key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "retailer_id": {"name": "retailer_id", "description": "Retailer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_uploaded_date": {"name": "last_uploaded_date", "description": "Last uploaded date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_full_feed_date": {"name": "last_full_feed_date", "description": "Last full feed date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_status": {"name": "account_status", "description": "Status", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integration_start_date": {"name": "integration_start_date", "description": "Integration start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "feed_ftp_upload_address": {"name": "feed_ftp_upload_address", "description": "Feed FTP upload address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "report_ftp_download_address": {"name": "report_ftp_download_address", "description": "Report FTP download address", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "Created at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "Updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_full_feed_start_date": {"name": "last_full_feed_start_date", "description": "Last full feed start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.462184, "relation_name": "dev_dkruh1.ugc_stg__syndicated_accounts", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__retailers_syndication', 'syndicated_accounts') }}\n\n), ugc_stg__syndicated_accounts AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\tretailer_id,\n\t\tlast_uploaded_date,\n\t\tlast_full_feed_date,\n\t\taccount_status,\n\t\tintegration_start_date,\n\t\tfeed_ftp_upload_address,\n\t\treport_ftp_download_address,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tlast_full_feed_start_date\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__syndicated_accounts", "language": "sql", "refs": [], "sources": [["ugc__retailers_syndication", "syndicated_accounts"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__retailers_syndication.syndicated_accounts"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM retailers_syndication.syndicated_accounts\n\n), ugc_stg__syndicated_accounts AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tstore_id,\n\t\tretailer_id,\n\t\tlast_uploaded_date,\n\t\tlast_full_feed_date,\n\t\taccount_status,\n\t\tintegration_start_date,\n\t\tfeed_ftp_upload_address,\n\t\treport_ftp_download_address,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tlast_full_feed_start_date\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__syndicated_accounts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__tags_to_reviews": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__tags_to_reviews", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__tags_to_reviews/ugc_stg__tags_to_reviews.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__tags_to_reviews/ugc_stg__tags_to_reviews.sql", "unique_id": "model.yoda.ugc_stg__tags_to_reviews", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__tags_to_reviews", "ugc_stg__tags_to_reviews"], "alias": "ugc_stg__tags_to_reviews", "checksum": {"name": "sha256", "checksum": "89a1205a73c1a6dc3bf42316bd0ff402a80a1be507b8d699c272961c160d2250"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_tag_id": {"name": "review_tag_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_id": {"name": "review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__tags_to_reviews/ugc_stg__tags_to_reviews.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "puffins", "created_by": "elad.herzog@yotpo.com", "alert_channels": ["puffins-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.4791398, "relation_name": "dev_dkruh1.ugc_stg__tags_to_reviews", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'tags_to_reviews') }}\n\n), ugc_stg__tags_to_reviews AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_tag_id,\n\t\treview_id,\n\t\tcreated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__tags_to_reviews", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "tags_to_reviews"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.tags_to_reviews"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__tags_to_reviews/ugc_stg__tags_to_reviews.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.tags_to_reviews\n\n), ugc_stg__tags_to_reviews AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\treview_tag_id,\n\t\treview_id,\n\t\tcreated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__tags_to_reviews", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__users": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__users", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.sql", "unique_id": "model.yoda.ugc_stg__users", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__users", "ugc_stg__users"], "alias": "ugc_stg__users", "checksum": {"name": "sha256", "checksum": "e80e6492a3267c2c223bb3facc04edda447710ee05c66094b100b96a8159e8f2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_name": {"name": "first_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bio": {"name": "bio", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "privilege_type_id": {"name": "privilege_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active": {"name": "active", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "slug": {"name": "slug", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "temp_email": {"name": "temp_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "featured_image_id": {"name": "featured_image_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "social_image": {"name": "social_image", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "social_score": {"name": "social_score", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yotpo_score": {"name": "yotpo_score", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "company": {"name": "company", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "position": {"name": "position", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "encrypted_password": {"name": "encrypted_password", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reset_password_token": {"name": "reset_password_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reset_password_sent_at": {"name": "reset_password_sent_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "remember_created_at": {"name": "remember_created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sign_in_count": {"name": "sign_in_count", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_sign_in_at": {"name": "current_sign_in_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_sign_in_at": {"name": "last_sign_in_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "current_sign_in_ip": {"name": "current_sign_in_ip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_sign_in_ip": {"name": "last_sign_in_ip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "confirmation_token": {"name": "confirmation_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "confirmed_at": {"name": "confirmed_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "confirmation_sent_at": {"name": "confirmation_sent_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "unconfirmed_email": {"name": "unconfirmed_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "failed_attempts": {"name": "failed_attempts", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unlock_token": {"name": "unlock_token", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locked_at": {"name": "locked_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "phone": {"name": "phone", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sign_up_ip": {"name": "sign_up_ip", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sign_up_country": {"name": "sign_up_country", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "masked_pii": {"name": "masked_pii", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "password_updated_at": {"name": "password_updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__users/ugc_stg__users.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.5230742, "relation_name": "dev_dkruh1.ugc_stg__users", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'users') }}\n\n), ugc_stg__users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tfirst_name,\n\t\tlast_name,\n\t\tdisplay_name,\n\t\temail,\n\t\tbio,\n\t\tprivilege_type_id,\n\t\tactive,\n\t\tslug,\n\t\ttemp_email,\n\t\tfeatured_image_id,\n\t\tsocial_image,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tsocial_score,\n\t\tyotpo_score,\n\t\tcompany,\n\t\tposition,\n\t\tencrypted_password,\n\t\treset_password_token,\n\t\treset_password_sent_at,\n\t\tremember_created_at,\n\t\tsign_in_count,\n\t\tcurrent_sign_in_at,\n\t\tlast_sign_in_at,\n\t\tcurrent_sign_in_ip,\n\t\tlast_sign_in_ip,\n\t\tconfirmation_token,\n\t\tconfirmed_at,\n\t\tconfirmation_sent_at,\n\t\tunconfirmed_email,\n\t\tfailed_attempts,\n\t\tunlock_token,\n\t\tlocked_at,\n\t\tphone,\n\t\tsign_up_ip,\n\t\tsign_up_country,\n\t\tmasked_pii,\n\t\tpassword_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__users", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "users"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.users"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__users/ugc_stg__users.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.users\n\n), ugc_stg__users AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tfirst_name,\n\t\tlast_name,\n\t\tdisplay_name,\n\t\temail,\n\t\tbio,\n\t\tprivilege_type_id,\n\t\tactive,\n\t\tslug,\n\t\ttemp_email,\n\t\tfeatured_image_id,\n\t\tsocial_image,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tsocial_score,\n\t\tyotpo_score,\n\t\tcompany,\n\t\tposition,\n\t\tencrypted_password,\n\t\treset_password_token,\n\t\treset_password_sent_at,\n\t\tremember_created_at,\n\t\tsign_in_count,\n\t\tcurrent_sign_in_at,\n\t\tlast_sign_in_at,\n\t\tcurrent_sign_in_ip,\n\t\tlast_sign_in_ip,\n\t\tconfirmation_token,\n\t\tconfirmed_at,\n\t\tconfirmation_sent_at,\n\t\tunconfirmed_email,\n\t\tfailed_attempts,\n\t\tunlock_token,\n\t\tlocked_at,\n\t\tphone,\n\t\tsign_up_ip,\n\t\tsign_up_country,\n\t\tmasked_pii,\n\t\tpassword_updated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__users", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__users_email_controls": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__users_email_controls", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.sql", "unique_id": "model.yoda.ugc_stg__users_email_controls", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__users_email_controls", "ugc_stg__users_email_controls"], "alias": "ugc_stg__users_email_controls", "checksum": {"name": "sha256", "checksum": "7413c66c814ebe551bfef5db7d1d89cbe16c95e7d990ca4ef3475aa292e6e1c5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_email": {"name": "user_email", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_type_id": {"name": "email_type_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "formless": {"name": "formless", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered_at": {"name": "delivered_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "date_to_deliver": {"name": "date_to_deliver", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "invalidated_at": {"name": "invalidated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "in_progress": {"name": "in_progress", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "bi", "team": "bi-dev", "created_by": "lior.shabi@yotpo.com", "alert_channels": ["bi-developer-default-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.5456185, "relation_name": "dev_dkruh1.ugc_stg__users_email_controls", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'users_email_controls') }}\n\n), ugc_stg__users_email_controls AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taccount_id,\n\t\tuser_email,\n\t\tuser_name,\n\t\temail_type_id,\n\t\tformless,\n\t\tdelivered_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tdate_to_deliver,\n\t\tinvalidated_at,\n\t\tin_progress\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__users_email_controls", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "users_email_controls"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.users_email_controls"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.users_email_controls\n\n), ugc_stg__users_email_controls AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\taccount_id,\n\t\tuser_email,\n\t\tuser_name,\n\t\temail_type_id,\n\t\tformless,\n\t\tdelivered_at,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tdate_to_deliver,\n\t\tinvalidated_at,\n\t\tin_progress\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__users_email_controls", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__videos": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__videos", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.sql", "unique_id": "model.yoda.ugc_stg__videos", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__videos", "ugc_stg__videos"], "alias": "ugc_stg__videos", "checksum": {"name": "sha256", "checksum": "3035774b2cf2502df5965244faada62136f9eb4c11b1452f54310909cfe5cdfe"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "videoable_id": {"name": "videoable_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "videoable_type": {"name": "videoable_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "video_key": {"name": "video_key", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "published": {"name": "published", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.5664845, "relation_name": "dev_dkruh1.ugc_stg__videos", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'videos') }}\n\n), ugc_stg__videos AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tvideoable_id,\n\t\tvideoable_type,\n\t\tvideo_key,\n\t\tpublished,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__videos", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "videos"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.videos"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.videos\n\n), ugc_stg__videos AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tvideoable_id,\n\t\tvideoable_type,\n\t\tvideo_key,\n\t\tpublished,\n\t\tcreated_at,\n\t\tupdated_at\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__videos", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__votes": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__votes", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.sql", "unique_id": "model.yoda.ugc_stg__votes", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__votes", "ugc_stg__votes"], "alias": "ugc_stg__votes", "checksum": {"name": "sha256", "checksum": "95acb09111e8829c7000a51158665ce9982e6bf6646f9a81402c97e05670df3e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "TODO: Update Table Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "voteable_id": {"name": "voteable_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vote": {"name": "vote", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "voteable_type": {"name": "voteable_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.5857213, "relation_name": "dev_dkruh1.ugc_stg__votes", "raw_code": "WITH source AS (\n\n SELECT * FROM {{ source('ugc__yotpoapiprod', 'votes') }}\n\n), ugc_stg__votes AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tvoteable_id,\n\t\tvote,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tvoteable_type\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__votes", "language": "sql", "refs": [], "sources": [["ugc__yotpoapiprod", "votes"]], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["source.yoda.ugc__yotpoapiprod.votes"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.sql", "compiled": true, "compiled_code": "WITH source AS (\n\n SELECT * FROM yotpoapiprod.votes\n\n), ugc_stg__votes AS (\n\n SELECT \n\t\tupsolver_schema_version,\n\t\tid,\n\t\tprocessing_time,\n\t\tts_ms,\n\t\tuser_id,\n\t\tvoteable_id,\n\t\tvote,\n\t\tcreated_at,\n\t\tupdated_at,\n\t\tvoteable_type\n FROM source\n\n)\n\nSELECT * \nFROM ugc_stg__votes", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__relevant_reporting_reviews_accounts": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__relevant_reporting_reviews_accounts", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.sql", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.sql", "unique_id": "model.yoda.ugc_stg__relevant_reporting_reviews_accounts", "fqn": ["yoda", "ugc", "staging", "marts_compatible", "ugc_stg__relevant_reporting_reviews_accounts", "ugc_stg__relevant_reporting_reviews_accounts"], "alias": "ugc_stg__relevant_reporting_reviews_accounts", "checksum": {"name": "sha256", "checksum": "ccce67a767bcb6a416c507586b9c88e133a68bda46063badec08e44b6c1464b4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Accounts that are applicable for reviews", "columns": {"app_key": {"name": "app_key", "description": "Account App (store) ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "Account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "Package name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_url": {"name": "account_url", "description": "Account URL", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "Account name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.602033, "relation_name": "dev_dkruh1.ugc_stg__relevant_reporting_reviews_accounts", "raw_code": "WITH packages AS (\n SELECT * \n FROM {{ ref('platform_stg__packages') }}\n),\nowners_packages AS (\n SELECT * \n FROM {{ ref('platform_stg__owners_packages') }}\n),\norganizations AS (\n SELECT * \n FROM {{ ref('platform_stg__organizations') }}\n),\naccounts AS (\n SELECT * \n FROM {{ ref('platform_stg__accounts') }} \n),\nrelevant_reporting_reviews_accounts AS (\n SELECT\n DISTINCT(app_key),\n accounts.id AS account_id,\n packages.name,\n accounts.url AS account_url,\n accounts.name AS account_name\n FROM\n packages\n INNER JOIN owners_packages \n ON owners_packages.package_id = packages.id\n INNER JOIN organizations \n ON owners_packages.owner_id = organizations.organization_key\n INNER JOIN accounts \n ON accounts.organization_id = organizations.id\n WHERE\n packages.id IN (\n 63,\n 64,\n 85,\n 86,\n 87,\n 88,\n 89,\n 90,\n 91,\n 92,\n 93,\n 105,\n 128,\n 129,\n 130,\n 131,\n 136,\n 137,\n 148,\n 149,\n 150\n )\n OR \n accounts.is_test=TRUE\n)\nSELECT\n app_key,\n account_id,\n name,\n account_url,\n account_name\nFROM \n relevant_reporting_reviews_accounts", "language": "sql", "refs": [{"name": "platform_stg__packages", "package": null, "version": null}, {"name": "platform_stg__owners_packages", "package": null, "version": null}, {"name": "platform_stg__organizations", "package": null, "version": null}, {"name": "platform_stg__accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.platform_stg__packages", "model.yoda.platform_stg__owners_packages", "model.yoda.platform_stg__organizations", "model.yoda.platform_stg__accounts"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.sql", "compiled": true, "compiled_code": "WITH packages AS (\n SELECT * \n FROM dev_dkruh1.platform_stg__packages\n),\nowners_packages AS (\n SELECT * \n FROM dev_dkruh1.platform_stg__owners_packages\n),\norganizations AS (\n SELECT * \n FROM dev_dkruh1.platform_stg__organizations\n),\naccounts AS (\n SELECT * \n FROM dev_dkruh1.platform_stg__accounts \n),\nrelevant_reporting_reviews_accounts AS (\n SELECT\n DISTINCT(app_key),\n accounts.id AS account_id,\n packages.name,\n accounts.url AS account_url,\n accounts.name AS account_name\n FROM\n packages\n INNER JOIN owners_packages \n ON owners_packages.package_id = packages.id\n INNER JOIN organizations \n ON owners_packages.owner_id = organizations.organization_key\n INNER JOIN accounts \n ON accounts.organization_id = organizations.id\n WHERE\n packages.id IN (\n 63,\n 64,\n 85,\n 86,\n 87,\n 88,\n 89,\n 90,\n 91,\n 92,\n 93,\n 105,\n 128,\n 129,\n 130,\n 131,\n 136,\n 137,\n 148,\n 149,\n 150\n )\n OR \n accounts.is_test=TRUE\n)\nSELECT\n app_key,\n account_id,\n name,\n account_url,\n account_name\nFROM \n relevant_reporting_reviews_accounts", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__relevant_reviews_subject": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__relevant_reviews_subject", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.sql", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.sql", "unique_id": "model.yoda.ugc_stg__relevant_reviews_subject", "fqn": ["yoda", "ugc", "staging", "marts_compatible", "ugc_stg__relevant_reviews_subject", "ugc_stg__relevant_reviews_subject"], "alias": "ugc_stg__relevant_reviews_subject", "checksum": {"name": "sha256", "checksum": "fdb1539bd40a1777319e2938d5888bd9b4a2e67c1fabfab10e3ebc72a4f350fd"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Relevant reviews for applicable accounts", "columns": {"review_id": {"name": "review_id", "description": "Review ID", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subject_id": {"name": "subject_id", "description": "Review subject (product/site/group) id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subject_entity_type": {"name": "subject_entity_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deactivated": {"name": "deactivated", "description": "Whether the review is deactivated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "Last update date of the review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "Review app key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_type": {"name": "review_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_source": {"name": "review_source", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_title": {"name": "review_title", "description": "Review title", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_content": {"name": "review_content", "description": "Review content", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_score": {"name": "review_score", "description": "Review score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_date": {"name": "review_date", "description": "Creation date of the review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "archived": {"name": "archived", "description": "Whether the review is archived", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "escalated": {"name": "escalated", "description": "Whether the review is escalated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sentiment_score": {"name": "sentiment_score", "description": "Review score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviewer_display_name": {"name": "reviewer_display_name", "description": "Review displat name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "Review status", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pushed_to_social": {"name": "pushed_to_social", "description": "Whether the review pushed to social media (FB / Twitter)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "User id submitting the review", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_type": {"name": "user_type", "description": "TODO: Update Column {col_name} Information", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "tjanik@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.6309576, "relation_name": "dev_dkruh1.ugc_stg__relevant_reviews_subject", "raw_code": "WITH reviews_subjects AS (\n SELECT * \n FROM {{ ref('ugc_stg__reviews_subjects') }}\n),\nreviews AS (\n SELECT * \n FROM {{ ref('ugc_stg__reviews') }}\n),\nreview_source_types AS (\n SELECT * \n FROM {{ ref('ugc_stg__review_source_types') }}\n),\nreview_types AS (\n SELECT * \n FROM {{ ref('ugc_stg__review_types') }}\n),\nrelevant_reviews_subjects AS (\n SELECT\n reviews_subjects.review_id,\n reviews_subjects.subject_id,\n reviews_subjects.subject_entity_type,\n reviews_subjects.deactivated,\n reviews_subjects.updated_at,\n reviews_subjects.account_id,\n reviews.app_key,\n review_types.name AS review_type,\n review_source_types.name AS review_source,\n reviews.title AS review_title,\n reviews.content AS review_content,\n reviews.score AS review_score,\n reviews.created_at AS review_date,\n reviews.archived,\n reviews.escalated,\n reviews.sentiment AS sentiment_score,\n reviews.reviewer_display_name,\n CASE\n WHEN reviews.deleted = 0 THEN 'Published'\n WHEN reviews.archived = 1 THEN 'Rejected'\n WHEN reviews.escalated = 1 THEN 'Escalated'\n ELSE 'Pending'\n END AS status,\n CASE\n WHEN reviews.facebook_pushed > 0\n THEN IF(\n reviews.twitter_pushed > 0,\n 'Facebook, Twitter',\n 'Facebook'\n )\n ELSE IF(reviews.twitter_pushed > 0, 'Twitter', NULL)\n END AS pushed_to_social,\n reviews.user_id,\n reviews.user_type\n FROM\n reviews_subjects\n LEFT JOIN reviews \n ON reviews.id = reviews_subjects.review_id\n LEFT JOIN review_source_types \n ON review_source_types.id = reviews.review_source_type_id\n LEFT JOIN review_types \n ON review_types.id = reviews.review_type_id\n WHERE\n deactivated = false\n AND subject_entity_type IN ('product','site')\n)\n\nSELECT * \nFROM relevant_reviews_subjects", "language": "sql", "refs": [{"name": "ugc_stg__reviews_subjects", "package": null, "version": null}, {"name": "ugc_stg__reviews", "package": null, "version": null}, {"name": "ugc_stg__review_source_types", "package": null, "version": null}, {"name": "ugc_stg__review_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__reviews_subjects", "model.yoda.ugc_stg__reviews", "model.yoda.ugc_stg__review_source_types", "model.yoda.ugc_stg__review_types"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.sql", "compiled": true, "compiled_code": "WITH reviews_subjects AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__reviews_subjects\n),\nreviews AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__reviews\n),\nreview_source_types AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__review_source_types\n),\nreview_types AS (\n SELECT * \n FROM dev_dkruh1.ugc_stg__review_types\n),\nrelevant_reviews_subjects AS (\n SELECT\n reviews_subjects.review_id,\n reviews_subjects.subject_id,\n reviews_subjects.subject_entity_type,\n reviews_subjects.deactivated,\n reviews_subjects.updated_at,\n reviews_subjects.account_id,\n reviews.app_key,\n review_types.name AS review_type,\n review_source_types.name AS review_source,\n reviews.title AS review_title,\n reviews.content AS review_content,\n reviews.score AS review_score,\n reviews.created_at AS review_date,\n reviews.archived,\n reviews.escalated,\n reviews.sentiment AS sentiment_score,\n reviews.reviewer_display_name,\n CASE\n WHEN reviews.deleted = 0 THEN 'Published'\n WHEN reviews.archived = 1 THEN 'Rejected'\n WHEN reviews.escalated = 1 THEN 'Escalated'\n ELSE 'Pending'\n END AS status,\n CASE\n WHEN reviews.facebook_pushed > 0\n THEN IF(\n reviews.twitter_pushed > 0,\n 'Facebook, Twitter',\n 'Facebook'\n )\n ELSE IF(reviews.twitter_pushed > 0, 'Twitter', NULL)\n END AS pushed_to_social,\n reviews.user_id,\n reviews.user_type\n FROM\n reviews_subjects\n LEFT JOIN reviews \n ON reviews.id = reviews_subjects.review_id\n LEFT JOIN review_source_types \n ON review_source_types.id = reviews.review_source_type_id\n LEFT JOIN review_types \n ON review_types.id = reviews.review_type_id\n WHERE\n deactivated = false\n AND subject_entity_type IN ('product','site')\n)\n\nSELECT * \nFROM relevant_reviews_subjects", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.yoda.ugc_stg__shopify_shop_reviews_backfill": {"database": null, "schema": "dev_dkruh1", "name": "ugc_stg__shopify_shop_reviews_backfill", "resource_type": "model", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.sql", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.sql", "unique_id": "model.yoda.ugc_stg__shopify_shop_reviews_backfill", "fqn": ["yoda", "ugc", "staging", "marts_compatible", "ugc_stg__shopify_shop_reviews_backfill", "ugc_stg__shopify_shop_reviews_backfill"], "alias": "ugc_stg__shopify_shop_reviews_backfill", "checksum": {"name": "sha256", "checksum": "020b8a2680568ea00d9003afbaf07bead316b6b6d0a99dc134dd7d9834544db2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["ugc", "ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "append_new_columns", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": true, "file_format": "delta", "source": null, "staging": null, "post-hook": [{"sql": "{{ dbt_data_applications.recreate_cicd_views() }}", "transaction": true, "index": null}], "pre-hook": []}, "tags": ["ugc"], "description": "Table containing all backfill reviews to be syndicated into Shopify Shop", "columns": {"store_id": {"name": "store_id", "description": "App key", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_id": {"name": "review_id", "description": "Review id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "content": {"name": "content", "description": "Review content", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "Review title", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "score": {"name": "score", "description": "Review score", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "published": {"name": "published", "description": "Review published flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "reviewer_display_name": {"name": "reviewer_display_name", "description": "Review author display name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "Review type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "Review source", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "User id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_type": {"name": "user_type", "description": "User type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "verified_buyer": {"name": "verified_buyer", "description": "Review verified buyer flag", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "updated_at": {"name": "updated_at", "description": "Review updated at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "Review created at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "published_at": {"name": "published_at", "description": "Review publish date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "internal_product_id": {"name": "internal_product_id", "description": "Yotpo product id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reviewer_email": {"name": "reviewer_email", "description": "Reviewer email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_line_id": {"name": "order_line_id", "description": "Order line id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_customer_id": {"name": "external_customer_id", "description": "External customer id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_order_id": {"name": "external_order_id", "description": "External order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_variant_id": {"name": "external_variant_id", "description": "External variant id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_product_id": {"name": "external_product_id", "description": "External product id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "destroyed": {"name": "destroyed", "description": "If the review was destroyed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "merchant_reply": {"name": "merchant_reply", "description": "Merchant comment content", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_replied_at": {"name": "merchant_replied_at", "description": "Merchant comment created at", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.yml", "build_path": null, "deferred": false, "unrendered_config": {"on_schema_change": "append_new_columns", "quote_columns": true, "file_format": "delta", "post-hook": "{{ dbt_data_applications.recreate_cicd_views() }}", "source": null, "staging": null, "tags": ["ugc"], "meta": {"model_ownership": {"group": "ugc", "team": "mocks", "created_by": "nikodem.wisniewski@yotpo.com", "alert_channels": ["mocks-alerts"]}, "cluster_profile": {"name": "small_driver"}}}, "created_at": 1700082693.6625204, "relation_name": "dev_dkruh1.ugc_stg__shopify_shop_reviews_backfill", "raw_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH syndication_retailers AS (\n SELECT id, retailer_name\n FROM {{ ref('ugc_stg__retailer') }}\n), syndicated_accounts AS (\n SELECT store_id, retailer_id, account_status, last_full_feed_start_date\n FROM {{ ref('ugc_stg__syndicated_accounts') }} AS sa\n), selected_accounts (\n SELECT store_id\n FROM syndicated_accounts\n LEFT JOIN syndication_retailers ON syndication_retailers.id=syndicated_accounts.retailer_id\n WHERE \n syndicated_accounts.account_status='opted_in_send_content' \n AND syndicated_accounts.last_full_feed_start_date IS NULL\n AND syndication_retailers.retailer_name='shopify'\n),\nreviews AS (\n SELECT id, app_key, title, content, score, deleted,\n reviewer_display_name, user_id, user_type, verified_buyer,\n updated_at, created_at, review_source_type_id, review_type_id\n FROM {{ ref('ugc_stg__reviews') }}\n),\nreviews_subjects AS (\n SELECT id, subject_entity_type, subject_id, review_id, deactivated\n FROM {{ ref('ugc_stg__reviews_subjects') }}\n),\nreview_types AS (\n SELECT id, name\n FROM {{ ref('ugc_stg__review_types') }}\n),\nreview_source_types AS (\n SELECT id, name\n FROM {{ ref('ugc_stg__review_source_types') }}\n),\nreview_order_line AS (\n SELECT id, order_line_id, review_id\n FROM {{ref('ugc_stg__review_order_line')}}\n),\norders AS (\n SELECT id, external_customer_id, external_order_id, external_id\n FROM {{ref('platform_stg__orders')}}\n),\norder_lines AS (\n SELECT id, order_id, product_id, external_variant_id\n FROM {{ref('platform_stg__order_lines')}}\n),\nproducts AS (\n SELECT id, external_id, store_id, is_discontinued FROM {{ ref('platform_stg__products') }}\n),\nvariants AS (\n SELECT id, external_id, product_id, is_discontinued FROM {{ ref('platform_stg__variants') }}\n),\nreviews_published AS (\n SELECT review_id, max(created_at) as published_at\n FROM {{ref('ugc_stg__moderation_audits')}}\n WHERE action_type = 'published'\n GROUP BY review_id\n),\ncomments AS (\n SELECT commentable_id, content, created_at FROM {{ ref('ugc_stg__comments') }} WHERE commentable_type = 'Review'\n),\nreviews_to_backfill AS (\n SELECT \n selected_accounts.store_id AS store_id,\n reviews.id AS review_id,\n reviews.content AS content,\n reviews.title AS title,\n cast(reviews.score as int) AS score,\n IF(reviews.deleted = 1, false, true) as published,\n reviews.reviewer_display_name AS reviewer_display_name,\n review_types.name AS type,\n review_source_types.name AS source,\n reviews.user_id as user_id,\n reviews.user_type as user_type,\n IF(reviews.verified_buyer = 1, false, true) as verified_buyer,\n unix_timestamp(reviews.updated_at)*1000 as updated_at,\n unix_timestamp(reviews.created_at)*1000 as created_at,\n unix_timestamp(reviews_published.published_at)*1000 as published_at,\n order_lines.product_id as internal_product_id,\n CAST(NULL AS STRING) AS reviewer_email,\n order_lines.id as order_line_id,\n orders.external_customer_id AS external_customer_id,\n IF(orders.external_id IS NOT NULL, orders.external_id, orders.external_order_id) AS external_order_id,\n variants.external_id AS external_variant_id,\n products.external_id as external_product_id,\n false as destroyed,\n comments.content AS merchant_reply,\n comments.created_at AS merchant_replied_at\n FROM selected_accounts\n INNER JOIN reviews ON selected_accounts.store_id = reviews.app_key\n LEFT JOIN review_source_types ON reviews.review_source_type_id=review_source_types.id\n LEFT JOIN reviews_published ON reviews_published.review_id = reviews.id\n INNER JOIN reviews_subjects ON reviews_subjects.review_id = reviews.id\n LEFT JOIN review_types ON reviews.review_type_id=review_types.id\n LEFT JOIN review_order_line ON review_order_line.review_id = reviews.id\n LEFT JOIN order_lines ON order_lines.id = review_order_line.order_line_id\n LEFT JOIN orders ON orders.id = order_lines.order_id\n LEFT JOIN products ON products.id = reviews_subjects.subject_id AND products.is_discontinued = 0\n LEFT JOIN variants ON order_lines.external_variant_id IS NOT NULL AND products.id = variants.product_id AND order_lines.external_variant_id = variants.external_id AND variants.is_discontinued = 0\n LEFT JOIN comments ON comments.commentable_id = reviews.id\n WHERE\n review_source_types.name != 'shopify_shop_app'\n AND reviews_subjects.subject_entity_type = 'product'\n AND review_types.name != 'site_review'\n AND reviews_subjects.deactivated = 0\n)\n\nSELECT * FROM reviews_to_backfill", "language": "sql", "refs": [{"name": "ugc_stg__retailer", "package": null, "version": null}, {"name": "ugc_stg__syndicated_accounts", "package": null, "version": null}, {"name": "ugc_stg__reviews", "package": null, "version": null}, {"name": "ugc_stg__reviews_subjects", "package": null, "version": null}, {"name": "ugc_stg__review_types", "package": null, "version": null}, {"name": "ugc_stg__review_source_types", "package": null, "version": null}, {"name": "ugc_stg__review_order_line", "package": null, "version": null}, {"name": "platform_stg__orders", "package": null, "version": null}, {"name": "platform_stg__order_lines", "package": null, "version": null}, {"name": "platform_stg__products", "package": null, "version": null}, {"name": "platform_stg__variants", "package": null, "version": null}, {"name": "ugc_stg__moderation_audits", "package": null, "version": null}, {"name": "ugc_stg__comments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_data_applications.recreate_cicd_views"], "nodes": ["model.yoda.ugc_stg__retailer", "model.yoda.ugc_stg__syndicated_accounts", "model.yoda.ugc_stg__reviews", "model.yoda.ugc_stg__reviews_subjects", "model.yoda.ugc_stg__review_types", "model.yoda.ugc_stg__review_source_types", "model.yoda.ugc_stg__review_order_line", "model.yoda.platform_stg__orders", "model.yoda.platform_stg__order_lines", "model.yoda.platform_stg__products", "model.yoda.platform_stg__variants", "model.yoda.ugc_stg__moderation_audits", "model.yoda.ugc_stg__comments"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.sql", "compiled": true, "compiled_code": "/*\nin production table name will be without [domain]_stg__\n*/\nWITH syndication_retailers AS (\n SELECT id, retailer_name\n FROM dev_dkruh1.ugc_stg__retailer\n), syndicated_accounts AS (\n SELECT store_id, retailer_id, account_status, last_full_feed_start_date\n FROM dev_dkruh1.ugc_stg__syndicated_accounts AS sa\n), selected_accounts (\n SELECT store_id\n FROM syndicated_accounts\n LEFT JOIN syndication_retailers ON syndication_retailers.id=syndicated_accounts.retailer_id\n WHERE \n syndicated_accounts.account_status='opted_in_send_content' \n AND syndicated_accounts.last_full_feed_start_date IS NULL\n AND syndication_retailers.retailer_name='shopify'\n),\nreviews AS (\n SELECT id, app_key, title, content, score, deleted,\n reviewer_display_name, user_id, user_type, verified_buyer,\n updated_at, created_at, review_source_type_id, review_type_id\n FROM dev_dkruh1.ugc_stg__reviews\n),\nreviews_subjects AS (\n SELECT id, subject_entity_type, subject_id, review_id, deactivated\n FROM dev_dkruh1.ugc_stg__reviews_subjects\n),\nreview_types AS (\n SELECT id, name\n FROM dev_dkruh1.ugc_stg__review_types\n),\nreview_source_types AS (\n SELECT id, name\n FROM dev_dkruh1.ugc_stg__review_source_types\n),\nreview_order_line AS (\n SELECT id, order_line_id, review_id\n FROM dev_dkruh1.ugc_stg__review_order_line\n),\norders AS (\n SELECT id, external_customer_id, external_order_id, external_id\n FROM dev_dkruh1.platform_stg__orders\n),\norder_lines AS (\n SELECT id, order_id, product_id, external_variant_id\n FROM dev_dkruh1.platform_stg__order_lines\n),\nproducts AS (\n SELECT id, external_id, store_id, is_discontinued FROM dev_dkruh1.platform_stg__products\n),\nvariants AS (\n SELECT id, external_id, product_id, is_discontinued FROM dev_dkruh1.platform_stg__variants\n),\nreviews_published AS (\n SELECT review_id, max(created_at) as published_at\n FROM dev_dkruh1.ugc_stg__moderation_audits\n WHERE action_type = 'published'\n GROUP BY review_id\n),\ncomments AS (\n SELECT commentable_id, content, created_at FROM dev_dkruh1.ugc_stg__comments WHERE commentable_type = 'Review'\n),\nreviews_to_backfill AS (\n SELECT \n selected_accounts.store_id AS store_id,\n reviews.id AS review_id,\n reviews.content AS content,\n reviews.title AS title,\n cast(reviews.score as int) AS score,\n IF(reviews.deleted = 1, false, true) as published,\n reviews.reviewer_display_name AS reviewer_display_name,\n review_types.name AS type,\n review_source_types.name AS source,\n reviews.user_id as user_id,\n reviews.user_type as user_type,\n IF(reviews.verified_buyer = 1, false, true) as verified_buyer,\n unix_timestamp(reviews.updated_at)*1000 as updated_at,\n unix_timestamp(reviews.created_at)*1000 as created_at,\n unix_timestamp(reviews_published.published_at)*1000 as published_at,\n order_lines.product_id as internal_product_id,\n CAST(NULL AS STRING) AS reviewer_email,\n order_lines.id as order_line_id,\n orders.external_customer_id AS external_customer_id,\n IF(orders.external_id IS NOT NULL, orders.external_id, orders.external_order_id) AS external_order_id,\n variants.external_id AS external_variant_id,\n products.external_id as external_product_id,\n false as destroyed,\n comments.content AS merchant_reply,\n comments.created_at AS merchant_replied_at\n FROM selected_accounts\n INNER JOIN reviews ON selected_accounts.store_id = reviews.app_key\n LEFT JOIN review_source_types ON reviews.review_source_type_id=review_source_types.id\n LEFT JOIN reviews_published ON reviews_published.review_id = reviews.id\n INNER JOIN reviews_subjects ON reviews_subjects.review_id = reviews.id\n LEFT JOIN review_types ON reviews.review_type_id=review_types.id\n LEFT JOIN review_order_line ON review_order_line.review_id = reviews.id\n LEFT JOIN order_lines ON order_lines.id = review_order_line.order_line_id\n LEFT JOIN orders ON orders.id = order_lines.order_id\n LEFT JOIN products ON products.id = reviews_subjects.subject_id AND products.is_discontinued = 0\n LEFT JOIN variants ON order_lines.external_variant_id IS NOT NULL AND products.id = variants.product_id AND order_lines.external_variant_id = variants.external_id AND variants.is_discontinued = 0\n LEFT JOIN comments ON comments.commentable_id = reviews.id\n WHERE\n review_source_types.name != 'shopify_shop_app'\n AND reviews_subjects.subject_entity_type = 'product'\n AND review_types.name != 'site_review'\n AND reviews_subjects.deactivated = 0\n)\n\nSELECT * FROM reviews_to_backfill", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "seed.yoda.unit_test__expected__infra_stg__budget__infra_stg__budget": {"database": null, "schema": "dev_dkruh1", "name": "unit_test__expected__infra_stg__budget__infra_stg__budget", "resource_type": "seed", "package_name": "yoda", "path": "infra_stg__budget/infra/staging/base/infra_stg__budget/unit_test__expected__infra_stg__budget__infra_stg__budget.csv", "original_file_path": "unit_test_mocks/infra_stg__budget/infra/staging/base/infra_stg__budget/unit_test__expected__infra_stg__budget__infra_stg__budget.csv", "unique_id": "seed.yoda.unit_test__expected__infra_stg__budget__infra_stg__budget", "fqn": ["yoda", "infra_stg__budget", "infra", "staging", "base", "infra_stg__budget", "unit_test__expected__infra_stg__budget__infra_stg__budget"], "alias": "unit_test__expected__infra_stg__budget__infra_stg__budget", "checksum": {"name": "sha256", "checksum": "a74a43ec751c0f2b9e4d50b33d4c0a87c0374cd46ad2f466f69812aa337a7e5f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["unit_test"], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"product_line": "string", "updated_at": "timestamp", "daily": "double"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": null, "file_format": "delta", "post-hook": [], "pre-hook": []}, "tags": ["unit_test"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://unit_test_mocks/infra_stg__budget/infra/staging/base/infra_stg__budget/unit_test__expected__infra_stg__budget__infra_stg__budget.yml", "build_path": null, "deferred": false, "unrendered_config": {"file_format": "delta", "column_types": {"product_line": "string", "updated_at": "timestamp", "daily": "double"}, "tags": ["unit_test"]}, "created_at": 1700082635.6042895, "relation_name": "dev_dkruh1.unit_test__expected__infra_stg__budget__infra_stg__budget", "raw_code": "", "root_path": "/dbt", "depends_on": {"macros": []}}, "seed.yoda.unit_test__source__infra_stg__budget__infra__costpo_budget": {"database": null, "schema": "dev_dkruh1", "name": "unit_test__source__infra_stg__budget__infra__costpo_budget", "resource_type": "seed", "package_name": "yoda", "path": "infra_stg__budget/models/infra/source/unit_test__source__infra_stg__budget__infra__costpo_budget.csv", "original_file_path": "unit_test_mocks/infra_stg__budget/models/infra/source/unit_test__source__infra_stg__budget__infra__costpo_budget.csv", "unique_id": "seed.yoda.unit_test__source__infra_stg__budget__infra__costpo_budget", "fqn": ["yoda", "infra_stg__budget", "models", "infra", "source", "unit_test__source__infra_stg__budget__infra__costpo_budget"], "alias": "unit_test__source__infra_stg__budget__infra__costpo_budget", "checksum": {"name": "sha256", "checksum": "a74a43ec751c0f2b9e4d50b33d4c0a87c0374cd46ad2f466f69812aa337a7e5f"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": ["unit_test"], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"product_line": "string", "updated_at": "timestamp", "daily": "double"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": null, "file_format": "delta", "post-hook": [], "pre-hook": []}, "tags": ["unit_test"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://unit_test_mocks/infra_stg__budget/models/infra/source/unit_test__source__infra_stg__budget__infra__costpo_budget.yml", "build_path": null, "deferred": false, "unrendered_config": {"file_format": "delta", "column_types": {"product_line": "string", "updated_at": "timestamp", "daily": "double"}, "tags": ["unit_test"]}, "created_at": 1700082635.6087267, "relation_name": "dev_dkruh1.unit_test__source__infra_stg__budget__infra__costpo_budget", "raw_code": "", "root_path": "/dbt", "depends_on": {"macros": []}}, "test.yoda.not_null_analytics___cs__account_acv_metrics_daily_date.4418194b48": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___cs__account_acv_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___cs__account_acv_metrics_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___cs__account_acv_metrics_daily_date.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___cs__account_acv_metrics_daily_date.4418194b48", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__account_acv_metrics_daily", "not_null_analytics___cs__account_acv_metrics_daily_date"], "alias": "not_null_analytics___cs__account_acv_metrics_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082635.7557538, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___cs__account_acv_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__account_acv_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.yml/not_null_analytics___cs__account_acv_metrics_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___cs__account_acv_metrics_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___cs__account_acv_metrics_daily", "attached_node": "model.yoda.analytics___cs__account_acv_metrics_daily"}, "test.yoda.not_null_analytics___cs__account_acv_metrics_daily_account_id.b03e4a2cc0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___cs__account_acv_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___cs__account_acv_metrics_daily_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___cs__account_acv_metrics_daily_account_id.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___cs__account_acv_metrics_daily_account_id.b03e4a2cc0", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__account_acv_metrics_daily", "not_null_analytics___cs__account_acv_metrics_daily_account_id"], "alias": "not_null_analytics___cs__account_acv_metrics_daily_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082635.7697594, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___cs__account_acv_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__account_acv_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.yml/not_null_analytics___cs__account_acv_metrics_daily_account_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___cs__account_acv_metrics_daily where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___cs__account_acv_metrics_daily", "attached_node": "model.yoda.analytics___cs__account_acv_metrics_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__account_acv_metrics_daily_date__account_id.27d3d3f140": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "account_id"], "model": "{{ get_where_subquery(ref('analytics___cs__account_acv_metrics_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___cs__account_acv_metrics_daily_date__account_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_fd6d63a891d41e5eee557a88d49d6511.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__account_acv_metrics_daily_date__account_id.27d3d3f140", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__account_acv_metrics_daily", "dbt_utils_unique_combination_of_columns_analytics___cs__account_acv_metrics_daily_date__account_id"], "alias": "dbt_utils_unique_combination_o_fd6d63a891d41e5eee557a88d49d6511", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_fd6d63a891d41e5eee557a88d49d6511", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_fd6d63a891d41e5eee557a88d49d6511"}, "created_at": 1700082635.7755077, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_fd6d63a891d41e5eee557a88d49d6511\") }}", "language": "sql", "refs": [{"name": "analytics___cs__account_acv_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__account_acv_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.yml/dbt_utils_unique_combination_o_fd6d63a891d41e5eee557a88d49d6511.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, account_id\n from dev_dkruh1.analytics___cs__account_acv_metrics_daily\n group by date, account_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___cs__account_acv_metrics_daily", "attached_node": "model.yoda.analytics___cs__account_acv_metrics_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__account_acv_metrics_daily_1.1575f6ea7b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___cs__account_acv_metrics_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__account_acv_metrics_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d8cbb20a0781e1b98bc629087012e347.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__account_acv_metrics_daily_1.1575f6ea7b", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__account_acv_metrics_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__account_acv_metrics_daily_1"], "alias": "dbt_expectations_expect_table__d8cbb20a0781e1b98bc629087012e347", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d8cbb20a0781e1b98bc629087012e347", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d8cbb20a0781e1b98bc629087012e347"}, "created_at": 1700082635.7877367, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d8cbb20a0781e1b98bc629087012e347\") }}", "language": "sql", "refs": [{"name": "analytics___cs__account_acv_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__account_acv_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.yml/dbt_expectations_expect_table__d8cbb20a0781e1b98bc629087012e347.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___cs__account_acv_metrics_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___cs__account_acv_metrics_daily", "attached_node": "model.yoda.analytics___cs__account_acv_metrics_daily"}, "test.yoda.unique_analytics___cs__onboarding_project_onboarding_project_id.3f0437a01a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "onboarding_project_id", "model": "{{ get_where_subquery(ref('analytics___cs__onboarding_project')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___cs__onboarding_project_onboarding_project_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___cs__onboarding_project_onboarding_project_id.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.yml", "unique_id": "test.yoda.unique_analytics___cs__onboarding_project_onboarding_project_id.3f0437a01a", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__onboarding_project", "unique_analytics___cs__onboarding_project_onboarding_project_id"], "alias": "unique_analytics___cs__onboarding_project_onboarding_project_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082635.8677278, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___cs__onboarding_project", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__onboarding_project"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.yml/unique_analytics___cs__onboarding_project_onboarding_project_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select onboarding_project_id from dev_dkruh1.analytics___cs__onboarding_project where onboarding_project_id is not null group by onboarding_project_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "onboarding_project_id", "file_key_name": "models.analytics___cs__onboarding_project", "attached_node": "model.yoda.analytics___cs__onboarding_project"}, "test.yoda.not_null_analytics___cs__onboarding_project_onboarding_project_id.7df9c17a97": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "onboarding_project_id", "model": "{{ get_where_subquery(ref('analytics___cs__onboarding_project')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___cs__onboarding_project_onboarding_project_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___cs__onboa_9eda2604c9aabf5ea372ce3c47f1d812.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.yml", "unique_id": "test.yoda.not_null_analytics___cs__onboarding_project_onboarding_project_id.7df9c17a97", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__onboarding_project", "not_null_analytics___cs__onboarding_project_onboarding_project_id"], "alias": "not_null_analytics___cs__onboa_9eda2604c9aabf5ea372ce3c47f1d812", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___cs__onboa_9eda2604c9aabf5ea372ce3c47f1d812", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___cs__onboa_9eda2604c9aabf5ea372ce3c47f1d812"}, "created_at": 1700082635.8774288, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___cs__onboa_9eda2604c9aabf5ea372ce3c47f1d812\") }}", "language": "sql", "refs": [{"name": "analytics___cs__onboarding_project", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__onboarding_project"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.yml/not_null_analytics___cs__onboa_9eda2604c9aabf5ea372ce3c47f1d812.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___cs__onboarding_project where onboarding_project_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "onboarding_project_id", "file_key_name": "models.analytics___cs__onboarding_project", "attached_node": "model.yoda.analytics___cs__onboarding_project"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__onboarding_project_1.54ace170ff": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___cs__onboarding_project')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__onboarding_project_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c23c91f0bf5cd420a1c234985d460423.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__onboarding_project_1.54ace170ff", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__onboarding_project", "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__onboarding_project_1"], "alias": "dbt_expectations_expect_table__c23c91f0bf5cd420a1c234985d460423", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c23c91f0bf5cd420a1c234985d460423", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c23c91f0bf5cd420a1c234985d460423"}, "created_at": 1700082635.8836215, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c23c91f0bf5cd420a1c234985d460423\") }}", "language": "sql", "refs": [{"name": "analytics___cs__onboarding_project", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__onboarding_project"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.yml/dbt_expectations_expect_table__c23c91f0bf5cd420a1c234985d460423.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___cs__onboarding_project\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___cs__onboarding_project", "attached_node": "model.yoda.analytics___cs__onboarding_project"}, "test.yoda.not_null_analytics___cs__opportunity_main_product_change_opportunity_id.bf245743a5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_main_product_change')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___cs__opportunity_main_product_change_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___cs__oppor_af2abe2ffebc494b49c6ad629afbc87e.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.yml", "unique_id": "test.yoda.not_null_analytics___cs__opportunity_main_product_change_opportunity_id.bf245743a5", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_main_product_change", "not_null_analytics___cs__opportunity_main_product_change_opportunity_id"], "alias": "not_null_analytics___cs__oppor_af2abe2ffebc494b49c6ad629afbc87e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___cs__oppor_af2abe2ffebc494b49c6ad629afbc87e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___cs__oppor_af2abe2ffebc494b49c6ad629afbc87e"}, "created_at": 1700082635.9174743, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___cs__oppor_af2abe2ffebc494b49c6ad629afbc87e\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_main_product_change", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_main_product_change"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.yml/not_null_analytics___cs__oppor_af2abe2ffebc494b49c6ad629afbc87e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___cs__opportunity_main_product_change where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___cs__opportunity_main_product_change", "attached_node": "model.yoda.analytics___cs__opportunity_main_product_change"}, "test.yoda.unique_analytics___cs__opportunity_main_product_change_opportunity_id.6109ea8548": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_main_product_change')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___cs__opportunity_main_product_change_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___cs__opportu_b7a32e9a3f45a620f2853caa47f15746.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.yml", "unique_id": "test.yoda.unique_analytics___cs__opportunity_main_product_change_opportunity_id.6109ea8548", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_main_product_change", "unique_analytics___cs__opportunity_main_product_change_opportunity_id"], "alias": "unique_analytics___cs__opportu_b7a32e9a3f45a620f2853caa47f15746", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___cs__opportu_b7a32e9a3f45a620f2853caa47f15746", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___cs__opportu_b7a32e9a3f45a620f2853caa47f15746"}, "created_at": 1700082635.923281, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___cs__opportu_b7a32e9a3f45a620f2853caa47f15746\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_main_product_change", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_main_product_change"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.yml/unique_analytics___cs__opportu_b7a32e9a3f45a620f2853caa47f15746.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select opportunity_id from dev_dkruh1.analytics___cs__opportunity_main_product_change where opportunity_id is not null group by opportunity_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___cs__opportunity_main_product_change", "attached_node": "model.yoda.analytics___cs__opportunity_main_product_change"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_main_product_change_1.19583c415e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_main_product_change')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_main_product_change_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f9f4d560bd9d6a746a44576244f70bdd.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_main_product_change_1.19583c415e", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_main_product_change", "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_main_product_change_1"], "alias": "dbt_expectations_expect_table__f9f4d560bd9d6a746a44576244f70bdd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f9f4d560bd9d6a746a44576244f70bdd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f9f4d560bd9d6a746a44576244f70bdd"}, "created_at": 1700082635.9294007, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f9f4d560bd9d6a746a44576244f70bdd\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_main_product_change", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_main_product_change"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.yml/dbt_expectations_expect_table__f9f4d560bd9d6a746a44576244f70bdd.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___cs__opportunity_main_product_change\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___cs__opportunity_main_product_change", "attached_node": "model.yoda.analytics___cs__opportunity_main_product_change"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_product_opportunity_id__product_line.f783737ef2": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["opportunity_id", "product_line"], "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_product')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_product_opportunity_id__product_line", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_dd77b39cf9c3afc76a0237d1e45dbaa8.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_product_opportunity_id__product_line.f783737ef2", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_product", "dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_product_opportunity_id__product_line"], "alias": "dbt_utils_unique_combination_o_dd77b39cf9c3afc76a0237d1e45dbaa8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_dd77b39cf9c3afc76a0237d1e45dbaa8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_dd77b39cf9c3afc76a0237d1e45dbaa8"}, "created_at": 1700082636.0423725, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_dd77b39cf9c3afc76a0237d1e45dbaa8\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.yml/dbt_utils_unique_combination_o_dd77b39cf9c3afc76a0237d1e45dbaa8.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n opportunity_id, product_line\n from dev_dkruh1.analytics___cs__opportunity_product\n group by opportunity_id, product_line\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___cs__opportunity_product", "attached_node": "model.yoda.analytics___cs__opportunity_product"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_product_1.e4c0f3565c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_product')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_product_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__711836e2723da96648c2878482826189.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_product_1.e4c0f3565c", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_product", "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_product_1"], "alias": "dbt_expectations_expect_table__711836e2723da96648c2878482826189", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__711836e2723da96648c2878482826189", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__711836e2723da96648c2878482826189"}, "created_at": 1700082636.049392, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__711836e2723da96648c2878482826189\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.yml/dbt_expectations_expect_table__711836e2723da96648c2878482826189.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___cs__opportunity_product\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___cs__opportunity_product", "attached_node": "model.yoda.analytics___cs__opportunity_product"}, "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_opportunity_id.c634459685": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_won_product_start_date')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___cs__opportunity_won_product_start_date_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___cs__oppor_7f1cbd3d4af7e57544f83481dd649b08.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml", "unique_id": "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_opportunity_id.c634459685", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_product_start_date", "not_null_analytics___cs__opportunity_won_product_start_date_opportunity_id"], "alias": "not_null_analytics___cs__oppor_7f1cbd3d4af7e57544f83481dd649b08", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___cs__oppor_7f1cbd3d4af7e57544f83481dd649b08", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___cs__oppor_7f1cbd3d4af7e57544f83481dd649b08"}, "created_at": 1700082636.0954397, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___cs__oppor_7f1cbd3d4af7e57544f83481dd649b08\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_product_start_date", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_won_product_start_date"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml/not_null_analytics___cs__oppor_7f1cbd3d4af7e57544f83481dd649b08.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___cs__opportunity_won_product_start_date where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___cs__opportunity_won_product_start_date", "attached_node": "model.yoda.analytics___cs__opportunity_won_product_start_date"}, "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_product_family_group.917fdcaa6e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family_group", "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_won_product_start_date')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___cs__opportunity_won_product_start_date_product_family_group", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___cs__oppor_8661899acd13b24f6934072f667bb5ab.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml", "unique_id": "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_product_family_group.917fdcaa6e", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_product_start_date", "not_null_analytics___cs__opportunity_won_product_start_date_product_family_group"], "alias": "not_null_analytics___cs__oppor_8661899acd13b24f6934072f667bb5ab", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___cs__oppor_8661899acd13b24f6934072f667bb5ab", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___cs__oppor_8661899acd13b24f6934072f667bb5ab"}, "created_at": 1700082636.1020837, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___cs__oppor_8661899acd13b24f6934072f667bb5ab\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_product_start_date", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_won_product_start_date"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml/not_null_analytics___cs__oppor_8661899acd13b24f6934072f667bb5ab.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___cs__opportunity_won_product_start_date where product_family_group is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family_group", "file_key_name": "models.analytics___cs__opportunity_won_product_start_date", "attached_node": "model.yoda.analytics___cs__opportunity_won_product_start_date"}, "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_line_item_start_date.f470b927df": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "line_item_start_date", "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_won_product_start_date')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___cs__opportunity_won_product_start_date_line_item_start_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___cs__oppor_f591ee78cedcc8481ca60e6f0ca57cec.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml", "unique_id": "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_line_item_start_date.f470b927df", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_product_start_date", "not_null_analytics___cs__opportunity_won_product_start_date_line_item_start_date"], "alias": "not_null_analytics___cs__oppor_f591ee78cedcc8481ca60e6f0ca57cec", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___cs__oppor_f591ee78cedcc8481ca60e6f0ca57cec", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___cs__oppor_f591ee78cedcc8481ca60e6f0ca57cec"}, "created_at": 1700082636.1078494, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___cs__oppor_f591ee78cedcc8481ca60e6f0ca57cec\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_product_start_date", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_won_product_start_date"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml/not_null_analytics___cs__oppor_f591ee78cedcc8481ca60e6f0ca57cec.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___cs__opportunity_won_product_start_date where line_item_start_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "line_item_start_date", "file_key_name": "models.analytics___cs__opportunity_won_product_start_date", "attached_node": "model.yoda.analytics___cs__opportunity_won_product_start_date"}, "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_line_item_end_date.82eb1f0b82": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "line_item_end_date", "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_won_product_start_date')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___cs__opportunity_won_product_start_date_line_item_end_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___cs__oppor_fc32d89ced6cb347f261a9f1e02280ee.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml", "unique_id": "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_line_item_end_date.82eb1f0b82", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_product_start_date", "not_null_analytics___cs__opportunity_won_product_start_date_line_item_end_date"], "alias": "not_null_analytics___cs__oppor_fc32d89ced6cb347f261a9f1e02280ee", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___cs__oppor_fc32d89ced6cb347f261a9f1e02280ee", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___cs__oppor_fc32d89ced6cb347f261a9f1e02280ee"}, "created_at": 1700082636.113809, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___cs__oppor_fc32d89ced6cb347f261a9f1e02280ee\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_product_start_date", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_won_product_start_date"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml/not_null_analytics___cs__oppor_fc32d89ced6cb347f261a9f1e02280ee.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___cs__opportunity_won_product_start_date where line_item_end_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "line_item_end_date", "file_key_name": "models.analytics___cs__opportunity_won_product_start_date", "attached_node": "model.yoda.analytics___cs__opportunity_won_product_start_date"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_product_start_date_1.6a0464d835": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_won_product_start_date')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_product_start_date_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__99e8da583984aadfe6bf493fc296891d.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_product_start_date_1.6a0464d835", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_product_start_date", "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_product_start_date_1"], "alias": "dbt_expectations_expect_table__99e8da583984aadfe6bf493fc296891d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__99e8da583984aadfe6bf493fc296891d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__99e8da583984aadfe6bf493fc296891d"}, "created_at": 1700082636.1197104, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__99e8da583984aadfe6bf493fc296891d\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_product_start_date", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_won_product_start_date"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml/dbt_expectations_expect_table__99e8da583984aadfe6bf493fc296891d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___cs__opportunity_won_product_start_date\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___cs__opportunity_won_product_start_date", "attached_node": "model.yoda.analytics___cs__opportunity_won_product_start_date"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_product_start_date_opportunity_id__product_family_group__line_item_start_date__line_item_end_date.ec93d15186": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["opportunity_id", "product_family_group", "line_item_start_date", "line_item_end_date"], "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_won_product_start_date')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_product_start_date_opportunity_id__product_family_group__line_item_start_date__line_item_end_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_9a179ad438e29fb65e9f78c644393d75.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_product_start_date_opportunity_id__product_family_group__line_item_start_date__line_item_end_date.ec93d15186", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_product_start_date", "dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_product_start_date_opportunity_id__product_family_group__line_item_start_date__line_item_end_date"], "alias": "dbt_utils_unique_combination_o_9a179ad438e29fb65e9f78c644393d75", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_9a179ad438e29fb65e9f78c644393d75", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_9a179ad438e29fb65e9f78c644393d75"}, "created_at": 1700082636.1260097, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_9a179ad438e29fb65e9f78c644393d75\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_product_start_date", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_won_product_start_date"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.yml/dbt_utils_unique_combination_o_9a179ad438e29fb65e9f78c644393d75.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n opportunity_id, product_family_group, line_item_start_date, line_item_end_date\n from dev_dkruh1.analytics___cs__opportunity_won_product_start_date\n group by opportunity_id, product_family_group, line_item_start_date, line_item_end_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___cs__opportunity_won_product_start_date", "attached_node": "model.yoda.analytics___cs__opportunity_won_product_start_date"}, "test.yoda.not_null_analytics___cs__opportunity_won_sale_daily_date.1f35b11114": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_won_sale_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___cs__opportunity_won_sale_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___cs__opportunity_won_sale_daily_date.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.yml", "unique_id": "test.yoda.not_null_analytics___cs__opportunity_won_sale_daily_date.1f35b11114", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_sale_daily", "not_null_analytics___cs__opportunity_won_sale_daily_date"], "alias": "not_null_analytics___cs__opportunity_won_sale_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082636.1681328, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_sale_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_won_sale_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.yml/not_null_analytics___cs__opportunity_won_sale_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___cs__opportunity_won_sale_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___cs__opportunity_won_sale_daily", "attached_node": "model.yoda.analytics___cs__opportunity_won_sale_daily"}, "test.yoda.not_null_analytics___cs__opportunity_won_sale_daily_opportunity_id.b408beca9e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_won_sale_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___cs__opportunity_won_sale_daily_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___cs__oppor_d230aca5d547c6c130dd22d8e3d9ba34.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.yml", "unique_id": "test.yoda.not_null_analytics___cs__opportunity_won_sale_daily_opportunity_id.b408beca9e", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_sale_daily", "not_null_analytics___cs__opportunity_won_sale_daily_opportunity_id"], "alias": "not_null_analytics___cs__oppor_d230aca5d547c6c130dd22d8e3d9ba34", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___cs__oppor_d230aca5d547c6c130dd22d8e3d9ba34", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___cs__oppor_d230aca5d547c6c130dd22d8e3d9ba34"}, "created_at": 1700082636.1736817, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___cs__oppor_d230aca5d547c6c130dd22d8e3d9ba34\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_sale_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_won_sale_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.yml/not_null_analytics___cs__oppor_d230aca5d547c6c130dd22d8e3d9ba34.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___cs__opportunity_won_sale_daily where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___cs__opportunity_won_sale_daily", "attached_node": "model.yoda.analytics___cs__opportunity_won_sale_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_sale_daily_date__opportunity_id__contract_start_date__end_date.7ed338abc0": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "opportunity_id", "contract_start_date", "end_date"], "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_won_sale_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_sale_daily_date__opportunity_id__contract_start_date__end_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_cbffc71d12d239be388d5c09bc590ae9.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_sale_daily_date__opportunity_id__contract_start_date__end_date.7ed338abc0", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_sale_daily", "dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_sale_daily_date__opportunity_id__contract_start_date__end_date"], "alias": "dbt_utils_unique_combination_o_cbffc71d12d239be388d5c09bc590ae9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_cbffc71d12d239be388d5c09bc590ae9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_cbffc71d12d239be388d5c09bc590ae9"}, "created_at": 1700082636.1797032, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_cbffc71d12d239be388d5c09bc590ae9\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_sale_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_won_sale_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.yml/dbt_utils_unique_combination_o_cbffc71d12d239be388d5c09bc590ae9.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, opportunity_id, contract_start_date, end_date\n from dev_dkruh1.analytics___cs__opportunity_won_sale_daily\n group by date, opportunity_id, contract_start_date, end_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___cs__opportunity_won_sale_daily", "attached_node": "model.yoda.analytics___cs__opportunity_won_sale_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_sale_daily_1.bb22e97a98": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___cs__opportunity_won_sale_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_sale_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__eed5be400591cfeb047dd7cd249c1dac.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_sale_daily_1.bb22e97a98", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__opportunity_won_sale_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_sale_daily_1"], "alias": "dbt_expectations_expect_table__eed5be400591cfeb047dd7cd249c1dac", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__eed5be400591cfeb047dd7cd249c1dac", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__eed5be400591cfeb047dd7cd249c1dac"}, "created_at": 1700082636.1872752, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__eed5be400591cfeb047dd7cd249c1dac\") }}", "language": "sql", "refs": [{"name": "analytics___cs__opportunity_won_sale_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__opportunity_won_sale_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.yml/dbt_expectations_expect_table__eed5be400591cfeb047dd7cd249c1dac.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___cs__opportunity_won_sale_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___cs__opportunity_won_sale_daily", "attached_node": "model.yoda.analytics___cs__opportunity_won_sale_daily"}, "test.yoda.not_null_analytics___cs__organization_first_ht_opportunity_organization_key.a242d85366": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___cs__organization_first_ht_opportunity')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___cs__organization_first_ht_opportunity_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___cs__organ_5296c2de25e748508fd558678a9d4b0f.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.yml", "unique_id": "test.yoda.not_null_analytics___cs__organization_first_ht_opportunity_organization_key.a242d85366", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__organization_first_ht_opportunity", "not_null_analytics___cs__organization_first_ht_opportunity_organization_key"], "alias": "not_null_analytics___cs__organ_5296c2de25e748508fd558678a9d4b0f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___cs__organ_5296c2de25e748508fd558678a9d4b0f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___cs__organ_5296c2de25e748508fd558678a9d4b0f"}, "created_at": 1700082636.212371, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___cs__organ_5296c2de25e748508fd558678a9d4b0f\") }}", "language": "sql", "refs": [{"name": "analytics___cs__organization_first_ht_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__organization_first_ht_opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.yml/not_null_analytics___cs__organ_5296c2de25e748508fd558678a9d4b0f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___cs__organization_first_ht_opportunity where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___cs__organization_first_ht_opportunity", "attached_node": "model.yoda.analytics___cs__organization_first_ht_opportunity"}, "test.yoda.unique_analytics___cs__organization_first_ht_opportunity_organization_key.5b1b9bcc4f": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___cs__organization_first_ht_opportunity')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___cs__organization_first_ht_opportunity_organization_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___cs__organiz_ee50f6273c7139055ac586e19553d3c6.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.yml", "unique_id": "test.yoda.unique_analytics___cs__organization_first_ht_opportunity_organization_key.5b1b9bcc4f", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__organization_first_ht_opportunity", "unique_analytics___cs__organization_first_ht_opportunity_organization_key"], "alias": "unique_analytics___cs__organiz_ee50f6273c7139055ac586e19553d3c6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___cs__organiz_ee50f6273c7139055ac586e19553d3c6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___cs__organiz_ee50f6273c7139055ac586e19553d3c6"}, "created_at": 1700082636.218498, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___cs__organiz_ee50f6273c7139055ac586e19553d3c6\") }}", "language": "sql", "refs": [{"name": "analytics___cs__organization_first_ht_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__organization_first_ht_opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.yml/unique_analytics___cs__organiz_ee50f6273c7139055ac586e19553d3c6.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_key from dev_dkruh1.analytics___cs__organization_first_ht_opportunity where organization_key is not null group by organization_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___cs__organization_first_ht_opportunity", "attached_node": "model.yoda.analytics___cs__organization_first_ht_opportunity"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__organization_first_ht_opportunity_1.c8c84488ad": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___cs__organization_first_ht_opportunity')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__organization_first_ht_opportunity_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bc49f93a536bc40b618e137e06a3372e.sql", "original_file_path": "models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__organization_first_ht_opportunity_1.c8c84488ad", "fqn": ["yoda", "analytics", "cs", "marts", "analytics___cs__organization_first_ht_opportunity", "dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__organization_first_ht_opportunity_1"], "alias": "dbt_expectations_expect_table__bc49f93a536bc40b618e137e06a3372e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bc49f93a536bc40b618e137e06a3372e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bc49f93a536bc40b618e137e06a3372e"}, "created_at": 1700082636.2246552, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bc49f93a536bc40b618e137e06a3372e\") }}", "language": "sql", "refs": [{"name": "analytics___cs__organization_first_ht_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___cs__organization_first_ht_opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.yml/dbt_expectations_expect_table__bc49f93a536bc40b618e137e06a3372e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___cs__organization_first_ht_opportunity\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___cs__organization_first_ht_opportunity", "attached_node": "model.yoda.analytics___cs__organization_first_ht_opportunity"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___delivery__organization_customer_care_over_time_organization_key__product_family_group__from_date__to_date.6e756fa959": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["organization_key", "product_family_group", "from_date", "to_date"], "model": "{{ get_where_subquery(ref('analytics___delivery__organization_customer_care_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___delivery__organization_customer_care_over_time_organization_key__product_family_group__from_date__to_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_29a30fb9c0657a869d199d9a880595be.sql", "original_file_path": "models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___delivery__organization_customer_care_over_time_organization_key__product_family_group__from_date__to_date.6e756fa959", "fqn": ["yoda", "analytics", "delivery", "marts", "analytics___delivery__organization_customer_care_over_time", "dbt_utils_unique_combination_of_columns_analytics___delivery__organization_customer_care_over_time_organization_key__product_family_group__from_date__to_date"], "alias": "dbt_utils_unique_combination_o_29a30fb9c0657a869d199d9a880595be", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_29a30fb9c0657a869d199d9a880595be", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_29a30fb9c0657a869d199d9a880595be"}, "created_at": 1700082636.2539039, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_29a30fb9c0657a869d199d9a880595be\") }}", "language": "sql", "refs": [{"name": "analytics___delivery__organization_customer_care_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___delivery__organization_customer_care_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.yml/dbt_utils_unique_combination_o_29a30fb9c0657a869d199d9a880595be.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n organization_key, product_family_group, from_date, to_date\n from dev_dkruh1.analytics___delivery__organization_customer_care_over_time\n group by organization_key, product_family_group, from_date, to_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___delivery__organization_customer_care_over_time", "attached_node": "model.yoda.analytics___delivery__organization_customer_care_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___delivery__organization_customer_care_over_time_1.4b2077c8c8": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___delivery__organization_customer_care_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___delivery__organization_customer_care_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5947ca659f6b1d58ffa882ee8eb9645c.sql", "original_file_path": "models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___delivery__organization_customer_care_over_time_1.4b2077c8c8", "fqn": ["yoda", "analytics", "delivery", "marts", "analytics___delivery__organization_customer_care_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___delivery__organization_customer_care_over_time_1"], "alias": "dbt_expectations_expect_table__5947ca659f6b1d58ffa882ee8eb9645c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5947ca659f6b1d58ffa882ee8eb9645c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5947ca659f6b1d58ffa882ee8eb9645c"}, "created_at": 1700082636.2617466, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5947ca659f6b1d58ffa882ee8eb9645c\") }}", "language": "sql", "refs": [{"name": "analytics___delivery__organization_customer_care_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___delivery__organization_customer_care_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.yml/dbt_expectations_expect_table__5947ca659f6b1d58ffa882ee8eb9645c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___delivery__organization_customer_care_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___delivery__organization_customer_care_over_time", "attached_node": "model.yoda.analytics___delivery__organization_customer_care_over_time"}, "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_month.3c1dc7be62": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___finance__communication_organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___778290b295fe0a1e2ee97cab321fb810.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_month.3c1dc7be62", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_organization_product_usage_revenue_monthly", "not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_month"], "alias": "not_null_analytics___finance___778290b295fe0a1e2ee97cab321fb810", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___778290b295fe0a1e2ee97cab321fb810", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___778290b295fe0a1e2ee97cab321fb810"}, "created_at": 1700082636.3850486, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___778290b295fe0a1e2ee97cab321fb810\") }}", "language": "sql", "refs": [{"name": "analytics___finance__communication_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___778290b295fe0a1e2ee97cab321fb810.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__communication_organization_product_usage_revenue_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___finance__communication_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_organization_key.b821d88829": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__communication_organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___d9d280c188f15af08ae84fcfca1efd53.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_organization_key.b821d88829", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_organization_product_usage_revenue_monthly", "not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_organization_key"], "alias": "not_null_analytics___finance___d9d280c188f15af08ae84fcfca1efd53", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___d9d280c188f15af08ae84fcfca1efd53", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___d9d280c188f15af08ae84fcfca1efd53"}, "created_at": 1700082636.3906956, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___d9d280c188f15af08ae84fcfca1efd53\") }}", "language": "sql", "refs": [{"name": "analytics___finance__communication_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___d9d280c188f15af08ae84fcfca1efd53.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__communication_organization_product_usage_revenue_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__communication_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_product_family.e4cb8e7b2f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__communication_organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___9904a0b4a8e5c6d59bf3940c954b8e39.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_product_family.e4cb8e7b2f", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_organization_product_usage_revenue_monthly", "not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_product_family"], "alias": "not_null_analytics___finance___9904a0b4a8e5c6d59bf3940c954b8e39", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___9904a0b4a8e5c6d59bf3940c954b8e39", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___9904a0b4a8e5c6d59bf3940c954b8e39"}, "created_at": 1700082636.3970022, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___9904a0b4a8e5c6d59bf3940c954b8e39\") }}", "language": "sql", "refs": [{"name": "analytics___finance__communication_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___9904a0b4a8e5c6d59bf3940c954b8e39.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__communication_organization_product_usage_revenue_monthly where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__communication_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_organization_product_usage_revenue_monthly_1.ef44731c0c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__communication_organization_product_usage_revenue_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_organization_product_usage_revenue_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__edd3732d305533243fe78e6c51503444.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_organization_product_usage_revenue_monthly_1.ef44731c0c", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_organization_product_usage_revenue_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_organization_product_usage_revenue_monthly_1"], "alias": "dbt_expectations_expect_table__edd3732d305533243fe78e6c51503444", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__edd3732d305533243fe78e6c51503444", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__edd3732d305533243fe78e6c51503444"}, "created_at": 1700082636.4032261, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__edd3732d305533243fe78e6c51503444\") }}", "language": "sql", "refs": [{"name": "analytics___finance__communication_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.yml/dbt_expectations_expect_table__edd3732d305533243fe78e6c51503444.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__communication_organization_product_usage_revenue_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__communication_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__communication_organization_product_usage_revenue_monthly_month__organization_key__product_family.bf6ff694be": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "organization_key", "product_family"], "model": "{{ get_where_subquery(ref('analytics___finance__communication_organization_product_usage_revenue_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__communication_organization_product_usage_revenue_monthly_month__organization_key__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_a367ebe186dc99fed7d46eda86f10764.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__communication_organization_product_usage_revenue_monthly_month__organization_key__product_family.bf6ff694be", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_organization_product_usage_revenue_monthly", "dbt_utils_unique_combination_of_columns_analytics___finance__communication_organization_product_usage_revenue_monthly_month__organization_key__product_family"], "alias": "dbt_utils_unique_combination_o_a367ebe186dc99fed7d46eda86f10764", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a367ebe186dc99fed7d46eda86f10764", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a367ebe186dc99fed7d46eda86f10764"}, "created_at": 1700082636.4096847, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a367ebe186dc99fed7d46eda86f10764\") }}", "language": "sql", "refs": [{"name": "analytics___finance__communication_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.yml/dbt_utils_unique_combination_o_a367ebe186dc99fed7d46eda86f10764.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, organization_key, product_family\n from dev_dkruh1.analytics___finance__communication_organization_product_usage_revenue_monthly\n group by month, organization_key, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__communication_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_month.026d89a0b3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___finance__communication_store_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__communication_store_product_usage_revenue_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___33a17508fc3128c977eba6f74e57dea8.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_month.026d89a0b3", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_store_product_usage_revenue_monthly", "not_null_analytics___finance__communication_store_product_usage_revenue_monthly_month"], "alias": "not_null_analytics___finance___33a17508fc3128c977eba6f74e57dea8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___33a17508fc3128c977eba6f74e57dea8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___33a17508fc3128c977eba6f74e57dea8"}, "created_at": 1700082636.44144, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___33a17508fc3128c977eba6f74e57dea8\") }}", "language": "sql", "refs": [{"name": "analytics___finance__communication_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml/not_null_analytics___finance___33a17508fc3128c977eba6f74e57dea8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__communication_store_product_usage_revenue_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___finance__communication_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_sms_user_id.b62a4c7ec3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___finance__communication_store_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__communication_store_product_usage_revenue_monthly_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___9179c6877d17240a5cd992382535bdc1.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_sms_user_id.b62a4c7ec3", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_store_product_usage_revenue_monthly", "not_null_analytics___finance__communication_store_product_usage_revenue_monthly_sms_user_id"], "alias": "not_null_analytics___finance___9179c6877d17240a5cd992382535bdc1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___9179c6877d17240a5cd992382535bdc1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___9179c6877d17240a5cd992382535bdc1"}, "created_at": 1700082636.4474232, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___9179c6877d17240a5cd992382535bdc1\") }}", "language": "sql", "refs": [{"name": "analytics___finance__communication_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml/not_null_analytics___finance___9179c6877d17240a5cd992382535bdc1.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__communication_store_product_usage_revenue_monthly where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___finance__communication_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_app_key.16e9ab87df": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___finance__communication_store_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__communication_store_product_usage_revenue_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___8950f45b911b71b18429bf40d30815b7.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_app_key.16e9ab87df", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_store_product_usage_revenue_monthly", "not_null_analytics___finance__communication_store_product_usage_revenue_monthly_app_key"], "alias": "not_null_analytics___finance___8950f45b911b71b18429bf40d30815b7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___8950f45b911b71b18429bf40d30815b7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___8950f45b911b71b18429bf40d30815b7"}, "created_at": 1700082636.453404, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___8950f45b911b71b18429bf40d30815b7\") }}", "language": "sql", "refs": [{"name": "analytics___finance__communication_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml/not_null_analytics___finance___8950f45b911b71b18429bf40d30815b7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__communication_store_product_usage_revenue_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___finance__communication_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_product_family.ad87a063ce": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__communication_store_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__communication_store_product_usage_revenue_monthly_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___03110fcbeb091511d35d474598659cef.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_product_family.ad87a063ce", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_store_product_usage_revenue_monthly", "not_null_analytics___finance__communication_store_product_usage_revenue_monthly_product_family"], "alias": "not_null_analytics___finance___03110fcbeb091511d35d474598659cef", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___03110fcbeb091511d35d474598659cef", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___03110fcbeb091511d35d474598659cef"}, "created_at": 1700082636.4591277, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___03110fcbeb091511d35d474598659cef\") }}", "language": "sql", "refs": [{"name": "analytics___finance__communication_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml/not_null_analytics___finance___03110fcbeb091511d35d474598659cef.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__communication_store_product_usage_revenue_monthly where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__communication_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_store_product_usage_revenue_monthly_1.5c5f0e646d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__communication_store_product_usage_revenue_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_store_product_usage_revenue_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e3de744970f06dcda07bc300e4f4d02a.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_store_product_usage_revenue_monthly_1.5c5f0e646d", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_store_product_usage_revenue_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_store_product_usage_revenue_monthly_1"], "alias": "dbt_expectations_expect_table__e3de744970f06dcda07bc300e4f4d02a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e3de744970f06dcda07bc300e4f4d02a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e3de744970f06dcda07bc300e4f4d02a"}, "created_at": 1700082636.4657989, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e3de744970f06dcda07bc300e4f4d02a\") }}", "language": "sql", "refs": [{"name": "analytics___finance__communication_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml/dbt_expectations_expect_table__e3de744970f06dcda07bc300e4f4d02a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__communication_store_product_usage_revenue_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__communication_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__communication_store_product_usage_revenue_monthly_month__app_key__product_family.0717d818de": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "app_key", "product_family"], "model": "{{ get_where_subquery(ref('analytics___finance__communication_store_product_usage_revenue_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__communication_store_product_usage_revenue_monthly_month__app_key__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_f1d50645ff52e219e104074d2ca25569.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__communication_store_product_usage_revenue_monthly_month__app_key__product_family.0717d818de", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__communication_store_product_usage_revenue_monthly", "dbt_utils_unique_combination_of_columns_analytics___finance__communication_store_product_usage_revenue_monthly_month__app_key__product_family"], "alias": "dbt_utils_unique_combination_o_f1d50645ff52e219e104074d2ca25569", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_f1d50645ff52e219e104074d2ca25569", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_f1d50645ff52e219e104074d2ca25569"}, "created_at": 1700082636.4726183, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_f1d50645ff52e219e104074d2ca25569\") }}", "language": "sql", "refs": [{"name": "analytics___finance__communication_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.yml/dbt_utils_unique_combination_o_f1d50645ff52e219e104074d2ca25569.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, app_key, product_family\n from dev_dkruh1.analytics___finance__communication_store_product_usage_revenue_monthly\n group by month, app_key, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__communication_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id.3955d66371": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_mom_mrr_cycle_dashboard')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___b80c9e377c872acf51c9b7786fd3c294.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id.3955d66371", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_mom_mrr_cycle_dashboard", "not_null_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id"], "alias": "not_null_analytics___finance___b80c9e377c872acf51c9b7786fd3c294", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___b80c9e377c872acf51c9b7786fd3c294", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___b80c9e377c872acf51c9b7786fd3c294"}, "created_at": 1700082636.5858319, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___b80c9e377c872acf51c9b7786fd3c294\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.yml/not_null_analytics___finance___b80c9e377c872acf51c9b7786fd3c294.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_mom_mrr_cycle_dashboard where organization_product_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "attached_node": "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard"}, "test.yoda.unique_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id.a8a37c5afd": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_mom_mrr_cycle_dashboard')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__or_e5674cc0f7125022013bfc338806ec3d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.yml", "unique_id": "test.yoda.unique_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id.a8a37c5afd", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_mom_mrr_cycle_dashboard", "unique_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id"], "alias": "unique_analytics___finance__or_e5674cc0f7125022013bfc338806ec3d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__or_e5674cc0f7125022013bfc338806ec3d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__or_e5674cc0f7125022013bfc338806ec3d"}, "created_at": 1700082636.5917642, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__or_e5674cc0f7125022013bfc338806ec3d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.yml/unique_analytics___finance__or_e5674cc0f7125022013bfc338806ec3d.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_product_month_id from dev_dkruh1.analytics___finance__organization_product_mom_mrr_cycle_dashboard where organization_product_month_id is not null group by organization_product_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "attached_node": "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_mom_mrr_cycle_dashboard_1.5aa4cbdaf5": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_mom_mrr_cycle_dashboard')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_mom_mrr_cycle_dashboard_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2e0181e050f86ae24e0e5410a505f1b0.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_mom_mrr_cycle_dashboard_1.5aa4cbdaf5", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_mom_mrr_cycle_dashboard", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_mom_mrr_cycle_dashboard_1"], "alias": "dbt_expectations_expect_table__2e0181e050f86ae24e0e5410a505f1b0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2e0181e050f86ae24e0e5410a505f1b0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2e0181e050f86ae24e0e5410a505f1b0"}, "created_at": 1700082636.5979908, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2e0181e050f86ae24e0e5410a505f1b0\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.yml/dbt_expectations_expect_table__2e0181e050f86ae24e0e5410a505f1b0.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__organization_product_mom_mrr_cycle_dashboard\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "attached_node": "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard"}, "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id.364e05bcfb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_recurring_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___da12dd0d4415c6aa631c0e9d8d665931.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id.364e05bcfb", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_recurring_revenue_monthly", "not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id"], "alias": "not_null_analytics___finance___da12dd0d4415c6aa631c0e9d8d665931", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___da12dd0d4415c6aa631c0e9d8d665931", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___da12dd0d4415c6aa631c0e9d8d665931"}, "created_at": 1700082636.6550589, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___da12dd0d4415c6aa631c0e9d8d665931\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_recurring_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml/not_null_analytics___finance___da12dd0d4415c6aa631c0e9d8d665931.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_recurring_revenue_monthly where organization_product_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_recurring_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"}, "test.yoda.unique_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id.a36c1e86d3": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_recurring_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__or_88cb31d13fb2d75fbf5d48098f0314bd.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml", "unique_id": "test.yoda.unique_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id.a36c1e86d3", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_recurring_revenue_monthly", "unique_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id"], "alias": "unique_analytics___finance__or_88cb31d13fb2d75fbf5d48098f0314bd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__or_88cb31d13fb2d75fbf5d48098f0314bd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__or_88cb31d13fb2d75fbf5d48098f0314bd"}, "created_at": 1700082636.660889, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__or_88cb31d13fb2d75fbf5d48098f0314bd\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_recurring_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml/unique_analytics___finance__or_88cb31d13fb2d75fbf5d48098f0314bd.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_product_month_id from dev_dkruh1.analytics___finance__organization_product_recurring_revenue_monthly where organization_product_month_id is not null group by organization_product_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_recurring_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_month.a5c93714fe": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_recurring_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_recurring_revenue_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___097191ab417207261787719b17d6af90.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_month.a5c93714fe", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_recurring_revenue_monthly", "not_null_analytics___finance__organization_product_recurring_revenue_monthly_month"], "alias": "not_null_analytics___finance___097191ab417207261787719b17d6af90", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___097191ab417207261787719b17d6af90", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___097191ab417207261787719b17d6af90"}, "created_at": 1700082636.666803, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___097191ab417207261787719b17d6af90\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_recurring_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml/not_null_analytics___finance___097191ab417207261787719b17d6af90.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_recurring_revenue_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___finance__organization_product_recurring_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_key.089d95d683": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_recurring_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___2e6b9e939b10e38abab67cccd536a359.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_key.089d95d683", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_recurring_revenue_monthly", "not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_key"], "alias": "not_null_analytics___finance___2e6b9e939b10e38abab67cccd536a359", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___2e6b9e939b10e38abab67cccd536a359", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___2e6b9e939b10e38abab67cccd536a359"}, "created_at": 1700082636.6725767, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___2e6b9e939b10e38abab67cccd536a359\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_recurring_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml/not_null_analytics___finance___2e6b9e939b10e38abab67cccd536a359.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_recurring_revenue_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__organization_product_recurring_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_product_family_group.7c090fccf2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family_group", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_recurring_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_recurring_revenue_monthly_product_family_group", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___a3d29c4852a7037696d94791ac6d45de.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_product_family_group.7c090fccf2", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_recurring_revenue_monthly", "not_null_analytics___finance__organization_product_recurring_revenue_monthly_product_family_group"], "alias": "not_null_analytics___finance___a3d29c4852a7037696d94791ac6d45de", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___a3d29c4852a7037696d94791ac6d45de", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___a3d29c4852a7037696d94791ac6d45de"}, "created_at": 1700082636.6790025, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___a3d29c4852a7037696d94791ac6d45de\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_recurring_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml/not_null_analytics___finance___a3d29c4852a7037696d94791ac6d45de.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_recurring_revenue_monthly where product_family_group is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family_group", "file_key_name": "models.analytics___finance__organization_product_recurring_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_recurring_revenue_monthly_1.477f2143f7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_recurring_revenue_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_recurring_revenue_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__b893e347d373bd48da9583d0f91d591a.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_recurring_revenue_monthly_1.477f2143f7", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_recurring_revenue_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_recurring_revenue_monthly_1"], "alias": "dbt_expectations_expect_table__b893e347d373bd48da9583d0f91d591a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__b893e347d373bd48da9583d0f91d591a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__b893e347d373bd48da9583d0f91d591a"}, "created_at": 1700082636.6850185, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__b893e347d373bd48da9583d0f91d591a\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_recurring_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.yml/dbt_expectations_expect_table__b893e347d373bd48da9583d0f91d591a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__organization_product_recurring_revenue_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__organization_product_recurring_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id.0b36519ed9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_revenue_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___9de79c4165d8bf9e03966fdfbe44d81d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id.0b36519ed9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_metrics_monthly", "not_null_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id"], "alias": "not_null_analytics___finance___9de79c4165d8bf9e03966fdfbe44d81d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___9de79c4165d8bf9e03966fdfbe44d81d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___9de79c4165d8bf9e03966fdfbe44d81d"}, "created_at": 1700082636.8833864, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___9de79c4165d8bf9e03966fdfbe44d81d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.yml/not_null_analytics___finance___9de79c4165d8bf9e03966fdfbe44d81d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_revenue_metrics_monthly where organization_product_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_revenue_metrics_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly"}, "test.yoda.unique_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id.7db5b6e5c0": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_revenue_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__or_2cca8cecd8303dca10a94ff7753eeb3a.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.yml", "unique_id": "test.yoda.unique_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id.7db5b6e5c0", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_metrics_monthly", "unique_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id"], "alias": "unique_analytics___finance__or_2cca8cecd8303dca10a94ff7753eeb3a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__or_2cca8cecd8303dca10a94ff7753eeb3a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__or_2cca8cecd8303dca10a94ff7753eeb3a"}, "created_at": 1700082636.889048, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__or_2cca8cecd8303dca10a94ff7753eeb3a\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.yml/unique_analytics___finance__or_2cca8cecd8303dca10a94ff7753eeb3a.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_product_month_id from dev_dkruh1.analytics___finance__organization_product_revenue_metrics_monthly where organization_product_month_id is not null group by organization_product_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_revenue_metrics_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_metrics_monthly_1.2f90d7ab3e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_revenue_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__cdce9e59da6948ddf0b3e398c395c84b.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_metrics_monthly_1.2f90d7ab3e", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__cdce9e59da6948ddf0b3e398c395c84b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__cdce9e59da6948ddf0b3e398c395c84b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__cdce9e59da6948ddf0b3e398c395c84b"}, "created_at": 1700082636.8952434, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__cdce9e59da6948ddf0b3e398c395c84b\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.yml/dbt_expectations_expect_table__cdce9e59da6948ddf0b3e398c395c84b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__organization_product_revenue_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__organization_product_revenue_metrics_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly"}, "test.yoda.not_null_analytics___finance__organization_product_revenue_monthly_organization_product_month_id.47fb0d3e4e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_revenue_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___eb925f93f09b84528c51da3d91ff6e98.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_revenue_monthly_organization_product_month_id.47fb0d3e4e", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_monthly", "not_null_analytics___finance__organization_product_revenue_monthly_organization_product_month_id"], "alias": "not_null_analytics___finance___eb925f93f09b84528c51da3d91ff6e98", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___eb925f93f09b84528c51da3d91ff6e98", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___eb925f93f09b84528c51da3d91ff6e98"}, "created_at": 1700082636.994259, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___eb925f93f09b84528c51da3d91ff6e98\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.yml/not_null_analytics___finance___eb925f93f09b84528c51da3d91ff6e98.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_revenue_monthly where organization_product_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_revenue_monthly"}, "test.yoda.unique_analytics___finance__organization_product_revenue_monthly_organization_product_month_id.0799950b53": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__organization_product_revenue_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__or_196b7a67f3f5c982f6413b74b7d49dc6.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.yml", "unique_id": "test.yoda.unique_analytics___finance__organization_product_revenue_monthly_organization_product_month_id.0799950b53", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_monthly", "unique_analytics___finance__organization_product_revenue_monthly_organization_product_month_id"], "alias": "unique_analytics___finance__or_196b7a67f3f5c982f6413b74b7d49dc6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__or_196b7a67f3f5c982f6413b74b7d49dc6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__or_196b7a67f3f5c982f6413b74b7d49dc6"}, "created_at": 1700082637.0000694, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__or_196b7a67f3f5c982f6413b74b7d49dc6\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.yml/unique_analytics___finance__or_196b7a67f3f5c982f6413b74b7d49dc6.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_product_month_id from dev_dkruh1.analytics___finance__organization_product_revenue_monthly where organization_product_month_id is not null group by organization_product_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_revenue_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_1.72354ad49e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_revenue_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__aa712c471612c1ae6299a6017eeef3b9.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_1.72354ad49e", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_1"], "alias": "dbt_expectations_expect_table__aa712c471612c1ae6299a6017eeef3b9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__aa712c471612c1ae6299a6017eeef3b9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__aa712c471612c1ae6299a6017eeef3b9"}, "created_at": 1700082637.0061414, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__aa712c471612c1ae6299a6017eeef3b9\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.yml/dbt_expectations_expect_table__aa712c471612c1ae6299a6017eeef3b9.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__organization_product_revenue_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__organization_product_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id.bff94348d9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_revenue_monthly_lean')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___06d6e99710b3b7a5e97bd3b130531f8d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id.bff94348d9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_monthly_lean", "not_null_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id"], "alias": "not_null_analytics___finance___06d6e99710b3b7a5e97bd3b130531f8d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___06d6e99710b3b7a5e97bd3b130531f8d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___06d6e99710b3b7a5e97bd3b130531f8d"}, "created_at": 1700082637.0496402, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___06d6e99710b3b7a5e97bd3b130531f8d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_monthly_lean", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_monthly_lean"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.yml/not_null_analytics___finance___06d6e99710b3b7a5e97bd3b130531f8d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_revenue_monthly_lean where organization_product_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_revenue_monthly_lean", "attached_node": "model.yoda.analytics___finance__organization_product_revenue_monthly_lean"}, "test.yoda.unique_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id.42b9dc9bbc": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_revenue_monthly_lean')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__or_628c5b10e798cf3a0c81465434c5e924.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.yml", "unique_id": "test.yoda.unique_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id.42b9dc9bbc", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_monthly_lean", "unique_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id"], "alias": "unique_analytics___finance__or_628c5b10e798cf3a0c81465434c5e924", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__or_628c5b10e798cf3a0c81465434c5e924", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__or_628c5b10e798cf3a0c81465434c5e924"}, "created_at": 1700082637.0553815, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__or_628c5b10e798cf3a0c81465434c5e924\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_monthly_lean", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_monthly_lean"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.yml/unique_analytics___finance__or_628c5b10e798cf3a0c81465434c5e924.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_product_month_id from dev_dkruh1.analytics___finance__organization_product_revenue_monthly_lean where organization_product_month_id is not null group by organization_product_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_revenue_monthly_lean", "attached_node": "model.yoda.analytics___finance__organization_product_revenue_monthly_lean"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_lean_1.71eab128e6": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_revenue_monthly_lean')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_lean_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f19df4ccab30e170130ce54e52d143a9.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_lean_1.71eab128e6", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_revenue_monthly_lean", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_lean_1"], "alias": "dbt_expectations_expect_table__f19df4ccab30e170130ce54e52d143a9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f19df4ccab30e170130ce54e52d143a9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f19df4ccab30e170130ce54e52d143a9"}, "created_at": 1700082637.0614395, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f19df4ccab30e170130ce54e52d143a9\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_revenue_monthly_lean", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_revenue_monthly_lean"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.yml/dbt_expectations_expect_table__f19df4ccab30e170130ce54e52d143a9.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__organization_product_revenue_monthly_lean\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__organization_product_revenue_monthly_lean", "attached_node": "model.yoda.analytics___finance__organization_product_revenue_monthly_lean"}, "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id.a45878ce5f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___578938e78f007d5704e3ea29c402872a.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id.a45878ce5f", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_usage_revenue_monthly", "not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id"], "alias": "not_null_analytics___finance___578938e78f007d5704e3ea29c402872a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___578938e78f007d5704e3ea29c402872a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___578938e78f007d5704e3ea29c402872a"}, "created_at": 1700082637.11328, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___578938e78f007d5704e3ea29c402872a\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___578938e78f007d5704e3ea29c402872a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_usage_revenue_monthly where organization_product_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_usage_revenue_monthly"}, "test.yoda.unique_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id.aede364eeb": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__or_1b13a24d5acb204d5cb883720c52915c.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.unique_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id.aede364eeb", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_usage_revenue_monthly", "unique_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id"], "alias": "unique_analytics___finance__or_1b13a24d5acb204d5cb883720c52915c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__or_1b13a24d5acb204d5cb883720c52915c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__or_1b13a24d5acb204d5cb883720c52915c"}, "created_at": 1700082637.1188543, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__or_1b13a24d5acb204d5cb883720c52915c\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml/unique_analytics___finance__or_1b13a24d5acb204d5cb883720c52915c.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_product_month_id from dev_dkruh1.analytics___finance__organization_product_usage_revenue_monthly where organization_product_month_id is not null group by organization_product_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_revenue_month.8e0a1f5400": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "revenue_month", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_usage_revenue_monthly_revenue_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___a923cc70db8f30bc04de9fdf8d8b7a0a.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_revenue_month.8e0a1f5400", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_usage_revenue_monthly", "not_null_analytics___finance__organization_product_usage_revenue_monthly_revenue_month"], "alias": "not_null_analytics___finance___a923cc70db8f30bc04de9fdf8d8b7a0a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___a923cc70db8f30bc04de9fdf8d8b7a0a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___a923cc70db8f30bc04de9fdf8d8b7a0a"}, "created_at": 1700082637.124702, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___a923cc70db8f30bc04de9fdf8d8b7a0a\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___a923cc70db8f30bc04de9fdf8d8b7a0a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_usage_revenue_monthly where revenue_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "revenue_month", "file_key_name": "models.analytics___finance__organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_key.1017b28eef": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___f6218f830a2b714781d0f7a0a892db2d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_key.1017b28eef", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_usage_revenue_monthly", "not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_key"], "alias": "not_null_analytics___finance___f6218f830a2b714781d0f7a0a892db2d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___f6218f830a2b714781d0f7a0a892db2d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___f6218f830a2b714781d0f7a0a892db2d"}, "created_at": 1700082637.1304865, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___f6218f830a2b714781d0f7a0a892db2d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___f6218f830a2b714781d0f7a0a892db2d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_usage_revenue_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_product_family.e052e97e91": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_product_usage_revenue_monthly_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___6e278a4f03edad2a5fbd86527e2cd591.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_product_family.e052e97e91", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_usage_revenue_monthly", "not_null_analytics___finance__organization_product_usage_revenue_monthly_product_family"], "alias": "not_null_analytics___finance___6e278a4f03edad2a5fbd86527e2cd591", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___6e278a4f03edad2a5fbd86527e2cd591", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___6e278a4f03edad2a5fbd86527e2cd591"}, "created_at": 1700082637.1362765, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___6e278a4f03edad2a5fbd86527e2cd591\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___6e278a4f03edad2a5fbd86527e2cd591.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_product_usage_revenue_monthly where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_usage_revenue_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_usage_revenue_monthly_1.2ab4f244bd": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__organization_product_usage_revenue_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_usage_revenue_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__956f2c0016a5489f171792aa52f9d59e.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_usage_revenue_monthly_1.2ab4f244bd", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_product_usage_revenue_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_usage_revenue_monthly_1"], "alias": "dbt_expectations_expect_table__956f2c0016a5489f171792aa52f9d59e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__956f2c0016a5489f171792aa52f9d59e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__956f2c0016a5489f171792aa52f9d59e"}, "created_at": 1700082637.1418626, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__956f2c0016a5489f171792aa52f9d59e\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.yml/dbt_expectations_expect_table__956f2c0016a5489f171792aa52f9d59e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__organization_product_usage_revenue_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_revenue_monthly_organization_month_id.25dd95a770": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_revenue_monthly_organization_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___795616575934666b539751f8a15c3fdf.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_revenue_monthly_organization_month_id.25dd95a770", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_revenue_monthly", "not_null_analytics___finance__organization_revenue_monthly_organization_month_id"], "alias": "not_null_analytics___finance___795616575934666b539751f8a15c3fdf", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___795616575934666b539751f8a15c3fdf", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___795616575934666b539751f8a15c3fdf"}, "created_at": 1700082637.2188249, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___795616575934666b539751f8a15c3fdf\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.yml/not_null_analytics___finance___795616575934666b539751f8a15c3fdf.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_revenue_monthly where organization_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_month_id", "file_key_name": "models.analytics___finance__organization_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_revenue_monthly"}, "test.yoda.unique_analytics___finance__organization_revenue_monthly_organization_month_id.abf005df45": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__organization_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__organization_revenue_monthly_organization_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__or_f38c3fe6e89958e45c046ce9bdf1b1dc.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.yml", "unique_id": "test.yoda.unique_analytics___finance__organization_revenue_monthly_organization_month_id.abf005df45", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_revenue_monthly", "unique_analytics___finance__organization_revenue_monthly_organization_month_id"], "alias": "unique_analytics___finance__or_f38c3fe6e89958e45c046ce9bdf1b1dc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__or_f38c3fe6e89958e45c046ce9bdf1b1dc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__or_f38c3fe6e89958e45c046ce9bdf1b1dc"}, "created_at": 1700082637.2246213, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__or_f38c3fe6e89958e45c046ce9bdf1b1dc\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.yml/unique_analytics___finance__or_f38c3fe6e89958e45c046ce9bdf1b1dc.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_month_id from dev_dkruh1.analytics___finance__organization_revenue_monthly where organization_month_id is not null group by organization_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_month_id", "file_key_name": "models.analytics___finance__organization_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_revenue_monthly_month.b3e06b2960": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___finance__organization_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_revenue_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___42acb4bbf628ab3a07a3a1e0208c7c98.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_revenue_monthly_month.b3e06b2960", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_revenue_monthly", "not_null_analytics___finance__organization_revenue_monthly_month"], "alias": "not_null_analytics___finance___42acb4bbf628ab3a07a3a1e0208c7c98", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___42acb4bbf628ab3a07a3a1e0208c7c98", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___42acb4bbf628ab3a07a3a1e0208c7c98"}, "created_at": 1700082637.2320566, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___42acb4bbf628ab3a07a3a1e0208c7c98\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.yml/not_null_analytics___finance___42acb4bbf628ab3a07a3a1e0208c7c98.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_revenue_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___finance__organization_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_revenue_monthly"}, "test.yoda.not_null_analytics___finance__organization_revenue_monthly_organization_key.711b3b75ec": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__organization_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__organization_revenue_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___c3345f3b3e0ed52f956816fb16ca51b5.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__organization_revenue_monthly_organization_key.711b3b75ec", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_revenue_monthly", "not_null_analytics___finance__organization_revenue_monthly_organization_key"], "alias": "not_null_analytics___finance___c3345f3b3e0ed52f956816fb16ca51b5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___c3345f3b3e0ed52f956816fb16ca51b5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___c3345f3b3e0ed52f956816fb16ca51b5"}, "created_at": 1700082637.2381008, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___c3345f3b3e0ed52f956816fb16ca51b5\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.yml/not_null_analytics___finance___c3345f3b3e0ed52f956816fb16ca51b5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__organization_revenue_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__organization_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_revenue_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_revenue_monthly_1.02e1d386c2": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__organization_revenue_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_revenue_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__be3be7f577babae51ca207e914b99c83.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_revenue_monthly_1.02e1d386c2", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__organization_revenue_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_revenue_monthly_1"], "alias": "dbt_expectations_expect_table__be3be7f577babae51ca207e914b99c83", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__be3be7f577babae51ca207e914b99c83", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__be3be7f577babae51ca207e914b99c83"}, "created_at": 1700082637.244035, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__be3be7f577babae51ca207e914b99c83\") }}", "language": "sql", "refs": [{"name": "analytics___finance__organization_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__organization_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.yml/dbt_expectations_expect_table__be3be7f577babae51ca207e914b99c83.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__organization_revenue_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__organization_revenue_monthly", "attached_node": "model.yoda.analytics___finance__organization_revenue_monthly"}, "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_account_id.e257d1cdf9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___finance__rate_plan_mrr_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__rate_plan_mrr_details_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance__rate_plan_mrr_details_account_id.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml", "unique_id": "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_account_id.e257d1cdf9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__rate_plan_mrr_details", "not_null_analytics___finance__rate_plan_mrr_details_account_id"], "alias": "not_null_analytics___finance__rate_plan_mrr_details_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082637.2989383, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance__rate_plan_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__rate_plan_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml/not_null_analytics___finance__rate_plan_mrr_details_account_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__rate_plan_mrr_details where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___finance__rate_plan_mrr_details", "attached_node": "model.yoda.analytics___finance__rate_plan_mrr_details"}, "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_subscription_id.d7506102fa": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_id", "model": "{{ get_where_subquery(ref('analytics___finance__rate_plan_mrr_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__rate_plan_mrr_details_subscription_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___1f49bf89170b75d1289e899db85d771b.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml", "unique_id": "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_subscription_id.d7506102fa", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__rate_plan_mrr_details", "not_null_analytics___finance__rate_plan_mrr_details_subscription_id"], "alias": "not_null_analytics___finance___1f49bf89170b75d1289e899db85d771b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___1f49bf89170b75d1289e899db85d771b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___1f49bf89170b75d1289e899db85d771b"}, "created_at": 1700082637.3063607, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___1f49bf89170b75d1289e899db85d771b\") }}", "language": "sql", "refs": [{"name": "analytics___finance__rate_plan_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__rate_plan_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml/not_null_analytics___finance___1f49bf89170b75d1289e899db85d771b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__rate_plan_mrr_details where subscription_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_id", "file_key_name": "models.analytics___finance__rate_plan_mrr_details", "attached_node": "model.yoda.analytics___finance__rate_plan_mrr_details"}, "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_product_id.ac6a2d9bbd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_id", "model": "{{ get_where_subquery(ref('analytics___finance__rate_plan_mrr_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__rate_plan_mrr_details_product_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance__rate_plan_mrr_details_product_id.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml", "unique_id": "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_product_id.ac6a2d9bbd", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__rate_plan_mrr_details", "not_null_analytics___finance__rate_plan_mrr_details_product_id"], "alias": "not_null_analytics___finance__rate_plan_mrr_details_product_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082637.3145082, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance__rate_plan_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__rate_plan_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml/not_null_analytics___finance__rate_plan_mrr_details_product_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__rate_plan_mrr_details where product_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_id", "file_key_name": "models.analytics___finance__rate_plan_mrr_details", "attached_node": "model.yoda.analytics___finance__rate_plan_mrr_details"}, "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_rateplan_id.57f6621ea3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "rateplan_id", "model": "{{ get_where_subquery(ref('analytics___finance__rate_plan_mrr_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__rate_plan_mrr_details_rateplan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance__rate_plan_mrr_details_rateplan_id.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml", "unique_id": "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_rateplan_id.57f6621ea3", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__rate_plan_mrr_details", "not_null_analytics___finance__rate_plan_mrr_details_rateplan_id"], "alias": "not_null_analytics___finance__rate_plan_mrr_details_rateplan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082637.3215451, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance__rate_plan_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__rate_plan_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml/not_null_analytics___finance__rate_plan_mrr_details_rateplan_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__rate_plan_mrr_details where rateplan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "rateplan_id", "file_key_name": "models.analytics___finance__rate_plan_mrr_details", "attached_node": "model.yoda.analytics___finance__rate_plan_mrr_details"}, "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_product_rateplan_id.500d089fdf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_rateplan_id", "model": "{{ get_where_subquery(ref('analytics___finance__rate_plan_mrr_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__rate_plan_mrr_details_product_rateplan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___8629742917e82ed55dafbf6052d22f12.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml", "unique_id": "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_product_rateplan_id.500d089fdf", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__rate_plan_mrr_details", "not_null_analytics___finance__rate_plan_mrr_details_product_rateplan_id"], "alias": "not_null_analytics___finance___8629742917e82ed55dafbf6052d22f12", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___8629742917e82ed55dafbf6052d22f12", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___8629742917e82ed55dafbf6052d22f12"}, "created_at": 1700082637.327712, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___8629742917e82ed55dafbf6052d22f12\") }}", "language": "sql", "refs": [{"name": "analytics___finance__rate_plan_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__rate_plan_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml/not_null_analytics___finance___8629742917e82ed55dafbf6052d22f12.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__rate_plan_mrr_details where product_rateplan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_rateplan_id", "file_key_name": "models.analytics___finance__rate_plan_mrr_details", "attached_node": "model.yoda.analytics___finance__rate_plan_mrr_details"}, "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_mrr_in_usd.bc18c7651c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "mrr_in_usd", "model": "{{ get_where_subquery(ref('analytics___finance__rate_plan_mrr_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__rate_plan_mrr_details_mrr_in_usd", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance__rate_plan_mrr_details_mrr_in_usd.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml", "unique_id": "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_mrr_in_usd.bc18c7651c", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__rate_plan_mrr_details", "not_null_analytics___finance__rate_plan_mrr_details_mrr_in_usd"], "alias": "not_null_analytics___finance__rate_plan_mrr_details_mrr_in_usd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082637.3336031, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance__rate_plan_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__rate_plan_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml/not_null_analytics___finance__rate_plan_mrr_details_mrr_in_usd.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__rate_plan_mrr_details where mrr_in_usd is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "mrr_in_usd", "file_key_name": "models.analytics___finance__rate_plan_mrr_details", "attached_node": "model.yoda.analytics___finance__rate_plan_mrr_details"}, "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_termed_to_date.2bd8b5b772": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "termed_to_date", "model": "{{ get_where_subquery(ref('analytics___finance__rate_plan_mrr_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__rate_plan_mrr_details_termed_to_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___4a88045186ce089af1bfb924b2709696.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml", "unique_id": "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_termed_to_date.2bd8b5b772", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__rate_plan_mrr_details", "not_null_analytics___finance__rate_plan_mrr_details_termed_to_date"], "alias": "not_null_analytics___finance___4a88045186ce089af1bfb924b2709696", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___4a88045186ce089af1bfb924b2709696", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___4a88045186ce089af1bfb924b2709696"}, "created_at": 1700082637.339067, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___4a88045186ce089af1bfb924b2709696\") }}", "language": "sql", "refs": [{"name": "analytics___finance__rate_plan_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__rate_plan_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml/not_null_analytics___finance___4a88045186ce089af1bfb924b2709696.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__rate_plan_mrr_details where termed_to_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "termed_to_date", "file_key_name": "models.analytics___finance__rate_plan_mrr_details", "attached_node": "model.yoda.analytics___finance__rate_plan_mrr_details"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__rate_plan_mrr_details_1.799c41c71e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__rate_plan_mrr_details')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__rate_plan_mrr_details_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f46df6bf816af6f739f274c2e0bf42fd.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__rate_plan_mrr_details_1.799c41c71e", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__rate_plan_mrr_details", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__rate_plan_mrr_details_1"], "alias": "dbt_expectations_expect_table__f46df6bf816af6f739f274c2e0bf42fd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f46df6bf816af6f739f274c2e0bf42fd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f46df6bf816af6f739f274c2e0bf42fd"}, "created_at": 1700082637.3446867, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f46df6bf816af6f739f274c2e0bf42fd\") }}", "language": "sql", "refs": [{"name": "analytics___finance__rate_plan_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__rate_plan_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml/dbt_expectations_expect_table__f46df6bf816af6f739f274c2e0bf42fd.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__rate_plan_mrr_details\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__rate_plan_mrr_details", "attached_node": "model.yoda.analytics___finance__rate_plan_mrr_details"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__rate_plan_mrr_details_subscription_name__version__product_id__rateplan_id__effective_start_date.5b4f9162c2": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["subscription_name", "version", "product_id", "rateplan_id", "effective_start_date"], "model": "{{ get_where_subquery(ref('analytics___finance__rate_plan_mrr_details')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__rate_plan_mrr_details_subscription_name__version__product_id__rateplan_id__effective_start_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_8258af8703e735873a87d0a2d20bb5f9.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__rate_plan_mrr_details_subscription_name__version__product_id__rateplan_id__effective_start_date.5b4f9162c2", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__rate_plan_mrr_details", "dbt_utils_unique_combination_of_columns_analytics___finance__rate_plan_mrr_details_subscription_name__version__product_id__rateplan_id__effective_start_date"], "alias": "dbt_utils_unique_combination_o_8258af8703e735873a87d0a2d20bb5f9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_8258af8703e735873a87d0a2d20bb5f9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_8258af8703e735873a87d0a2d20bb5f9"}, "created_at": 1700082637.351037, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_8258af8703e735873a87d0a2d20bb5f9\") }}", "language": "sql", "refs": [{"name": "analytics___finance__rate_plan_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__rate_plan_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.yml/dbt_utils_unique_combination_o_8258af8703e735873a87d0a2d20bb5f9.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n subscription_name, version, product_id, rateplan_id, effective_start_date\n from dev_dkruh1.analytics___finance__rate_plan_mrr_details\n group by subscription_name, version, product_id, rateplan_id, effective_start_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__rate_plan_mrr_details", "attached_node": "model.yoda.analytics___finance__rate_plan_mrr_details"}, "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id.89c326b2fe": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___99dafc3520ad63879751f22e06f8c4bb.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id.89c326b2fe", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "not_null_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id"], "alias": "not_null_analytics___finance___99dafc3520ad63879751f22e06f8c4bb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___99dafc3520ad63879751f22e06f8c4bb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___99dafc3520ad63879751f22e06f8c4bb"}, "created_at": 1700082637.3853865, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___99dafc3520ad63879751f22e06f8c4bb\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/not_null_analytics___finance___99dafc3520ad63879751f22e06f8c4bb.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_field_name.9a5d537a78": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "field_name", "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__sf_opportunity_free_month_over_time_field_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___0b086970bc904ea522ce7d2f1f45541d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_field_name.9a5d537a78", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "not_null_analytics___finance__sf_opportunity_free_month_over_time_field_name"], "alias": "not_null_analytics___finance___0b086970bc904ea522ce7d2f1f45541d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___0b086970bc904ea522ce7d2f1f45541d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___0b086970bc904ea522ce7d2f1f45541d"}, "created_at": 1700082637.3922088, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___0b086970bc904ea522ce7d2f1f45541d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/not_null_analytics___finance___0b086970bc904ea522ce7d2f1f45541d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time where field_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "field_name", "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_from_date.5e660ce021": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_date", "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__sf_opportunity_free_month_over_time_from_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___95e10ac9744bd0b0408b1e80c11f284c.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_from_date.5e660ce021", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "not_null_analytics___finance__sf_opportunity_free_month_over_time_from_date"], "alias": "not_null_analytics___finance___95e10ac9744bd0b0408b1e80c11f284c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___95e10ac9744bd0b0408b1e80c11f284c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___95e10ac9744bd0b0408b1e80c11f284c"}, "created_at": 1700082637.3985436, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___95e10ac9744bd0b0408b1e80c11f284c\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/not_null_analytics___finance___95e10ac9744bd0b0408b1e80c11f284c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time where from_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_date", "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_to_date.529ba21ca1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "to_date", "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__sf_opportunity_free_month_over_time_to_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___e651113ea6f98aeb430c9e7c209095e0.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_to_date.529ba21ca1", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "not_null_analytics___finance__sf_opportunity_free_month_over_time_to_date"], "alias": "not_null_analytics___finance___e651113ea6f98aeb430c9e7c209095e0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___e651113ea6f98aeb430c9e7c209095e0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___e651113ea6f98aeb430c9e7c209095e0"}, "created_at": 1700082637.4046452, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___e651113ea6f98aeb430c9e7c209095e0\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/not_null_analytics___finance___e651113ea6f98aeb430c9e7c209095e0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time where to_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "to_date", "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_from_month.bfa7f02d98": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_month", "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__sf_opportunity_free_month_over_time_from_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___e3313e096e5d6b200a6393fc688760d9.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_from_month.bfa7f02d98", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "not_null_analytics___finance__sf_opportunity_free_month_over_time_from_month"], "alias": "not_null_analytics___finance___e3313e096e5d6b200a6393fc688760d9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___e3313e096e5d6b200a6393fc688760d9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___e3313e096e5d6b200a6393fc688760d9"}, "created_at": 1700082637.4104683, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___e3313e096e5d6b200a6393fc688760d9\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/not_null_analytics___finance___e3313e096e5d6b200a6393fc688760d9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time where from_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_month", "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_to_month.f3cd50d029": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "to_month", "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__sf_opportunity_free_month_over_time_to_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___f6f65099e457f1d4d3b4ffb275a01c21.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_to_month.f3cd50d029", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "not_null_analytics___finance__sf_opportunity_free_month_over_time_to_month"], "alias": "not_null_analytics___finance___f6f65099e457f1d4d3b4ffb275a01c21", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___f6f65099e457f1d4d3b4ffb275a01c21", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___f6f65099e457f1d4d3b4ffb275a01c21"}, "created_at": 1700082637.41657, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___f6f65099e457f1d4d3b4ffb275a01c21\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/not_null_analytics___finance___f6f65099e457f1d4d3b4ffb275a01c21.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time where to_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "to_month", "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_field_value.97fa59eab2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "field_value", "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__sf_opportunity_free_month_over_time_field_value", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___ddaaf38c21520a30ccdbb129b42ee02b.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_field_value.97fa59eab2", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "not_null_analytics___finance__sf_opportunity_free_month_over_time_field_value"], "alias": "not_null_analytics___finance___ddaaf38c21520a30ccdbb129b42ee02b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___ddaaf38c21520a30ccdbb129b42ee02b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___ddaaf38c21520a30ccdbb129b42ee02b"}, "created_at": 1700082637.4219477, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___ddaaf38c21520a30ccdbb129b42ee02b\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/not_null_analytics___finance___ddaaf38c21520a30ccdbb129b42ee02b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time where field_value is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "field_value", "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_csm_free_months.2d375c8372": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_csm_free_months", "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__sf_opportunity_free_month_over_time_is_csm_free_months", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___554397a8e41dd6948efc400f558616e9.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_csm_free_months.2d375c8372", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "not_null_analytics___finance__sf_opportunity_free_month_over_time_is_csm_free_months"], "alias": "not_null_analytics___finance___554397a8e41dd6948efc400f558616e9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___554397a8e41dd6948efc400f558616e9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___554397a8e41dd6948efc400f558616e9"}, "created_at": 1700082637.4278293, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___554397a8e41dd6948efc400f558616e9\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/not_null_analytics___finance___554397a8e41dd6948efc400f558616e9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time where is_csm_free_months is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_csm_free_months", "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sales_free_months.c364397548": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_sales_free_months", "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sales_free_months", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___582851a52df89c5a2bacee2c33b58f99.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sales_free_months.c364397548", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sales_free_months"], "alias": "not_null_analytics___finance___582851a52df89c5a2bacee2c33b58f99", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___582851a52df89c5a2bacee2c33b58f99", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___582851a52df89c5a2bacee2c33b58f99"}, "created_at": 1700082637.4335988, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___582851a52df89c5a2bacee2c33b58f99\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/not_null_analytics___finance___582851a52df89c5a2bacee2c33b58f99.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time where is_sales_free_months is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_sales_free_months", "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sf_event.f107b697c7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_sf_event", "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sf_event", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___9293513f81587ba9d22550c395515a49.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sf_event.f107b697c7", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sf_event"], "alias": "not_null_analytics___finance___9293513f81587ba9d22550c395515a49", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___9293513f81587ba9d22550c395515a49", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___9293513f81587ba9d22550c395515a49"}, "created_at": 1700082637.4390109, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___9293513f81587ba9d22550c395515a49\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/not_null_analytics___finance___9293513f81587ba9d22550c395515a49.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time where is_sf_event is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_sf_event", "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__sf_opportunity_free_month_over_time_1.801fada325": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__sf_opportunity_free_month_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0dbf073d47241b253130bed15c2b0038.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__sf_opportunity_free_month_over_time_1.801fada325", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__sf_opportunity_free_month_over_time_1"], "alias": "dbt_expectations_expect_table__0dbf073d47241b253130bed15c2b0038", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0dbf073d47241b253130bed15c2b0038", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0dbf073d47241b253130bed15c2b0038"}, "created_at": 1700082637.4448543, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0dbf073d47241b253130bed15c2b0038\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/dbt_expectations_expect_table__0dbf073d47241b253130bed15c2b0038.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id__field_name__from_date.9f53a5d6dd": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["opportunity_id", "field_name", "from_date"], "model": "{{ get_where_subquery(ref('analytics___finance__sf_opportunity_free_month_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id__field_name__from_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_157c3ba4a8211b4f961f4a320607b027.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id__field_name__from_date.9f53a5d6dd", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__sf_opportunity_free_month_over_time", "dbt_utils_unique_combination_of_columns_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id__field_name__from_date"], "alias": "dbt_utils_unique_combination_o_157c3ba4a8211b4f961f4a320607b027", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_157c3ba4a8211b4f961f4a320607b027", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_157c3ba4a8211b4f961f4a320607b027"}, "created_at": 1700082637.4510174, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_157c3ba4a8211b4f961f4a320607b027\") }}", "language": "sql", "refs": [{"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.yml/dbt_utils_unique_combination_o_157c3ba4a8211b4f961f4a320607b027.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n opportunity_id, field_name, from_date\n from dev_dkruh1.analytics___finance__sf_opportunity_free_month_over_time\n group by opportunity_id, field_name, from_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__sf_opportunity_free_month_over_time", "attached_node": "model.yoda.analytics___finance__sf_opportunity_free_month_over_time"}, "test.yoda.not_null_analytics___finance__shopify_billing_event_shopify_shop_id.355bde23f8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_event_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___16a531fe18572a31551bc5b1c1a47808.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_event_shopify_shop_id.355bde23f8", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_event", "not_null_analytics___finance__shopify_billing_event_shopify_shop_id"], "alias": "not_null_analytics___finance___16a531fe18572a31551bc5b1c1a47808", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___16a531fe18572a31551bc5b1c1a47808", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___16a531fe18572a31551bc5b1c1a47808"}, "created_at": 1700082637.4896116, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___16a531fe18572a31551bc5b1c1a47808\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml/not_null_analytics___finance___16a531fe18572a31551bc5b1c1a47808.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_event where shopify_shop_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_billing_event", "attached_node": "model.yoda.analytics___finance__shopify_billing_event"}, "test.yoda.not_null_analytics___finance__shopify_billing_event_charge_id.c4b26f57e1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "charge_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_event_charge_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance__shopify_billing_event_charge_id.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_event_charge_id.c4b26f57e1", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_event", "not_null_analytics___finance__shopify_billing_event_charge_id"], "alias": "not_null_analytics___finance__shopify_billing_event_charge_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082637.4953606, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml/not_null_analytics___finance__shopify_billing_event_charge_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_event where charge_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "charge_id", "file_key_name": "models.analytics___finance__shopify_billing_event", "attached_node": "model.yoda.analytics___finance__shopify_billing_event"}, "test.yoda.not_null_analytics___finance__shopify_billing_event_is_none_app_key.4cdf1fa1bc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_none_app_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_event_is_none_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___9e372392ae061f089f89f4eff8cc98c1.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_event_is_none_app_key.4cdf1fa1bc", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_event", "not_null_analytics___finance__shopify_billing_event_is_none_app_key"], "alias": "not_null_analytics___finance___9e372392ae061f089f89f4eff8cc98c1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___9e372392ae061f089f89f4eff8cc98c1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___9e372392ae061f089f89f4eff8cc98c1"}, "created_at": 1700082637.50172, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___9e372392ae061f089f89f4eff8cc98c1\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml/not_null_analytics___finance___9e372392ae061f089f89f4eff8cc98c1.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_event where is_none_app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_none_app_key", "file_key_name": "models.analytics___finance__shopify_billing_event", "attached_node": "model.yoda.analytics___finance__shopify_billing_event"}, "test.yoda.not_null_analytics___finance__shopify_billing_event_is_single_app_key.e76ac6b65b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_single_app_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_event_is_single_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___415f57bbe18cd46ba6347965568c866f.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_event_is_single_app_key.e76ac6b65b", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_event", "not_null_analytics___finance__shopify_billing_event_is_single_app_key"], "alias": "not_null_analytics___finance___415f57bbe18cd46ba6347965568c866f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___415f57bbe18cd46ba6347965568c866f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___415f57bbe18cd46ba6347965568c866f"}, "created_at": 1700082637.5083482, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___415f57bbe18cd46ba6347965568c866f\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml/not_null_analytics___finance___415f57bbe18cd46ba6347965568c866f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_event where is_single_app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_single_app_key", "file_key_name": "models.analytics___finance__shopify_billing_event", "attached_node": "model.yoda.analytics___finance__shopify_billing_event"}, "test.yoda.not_null_analytics___finance__shopify_billing_event_is_multiple_app_key.4bc8faa3c9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_multiple_app_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_event_is_multiple_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___0ceb4054900f2e011cccab0928a1aed2.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_event_is_multiple_app_key.4bc8faa3c9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_event", "not_null_analytics___finance__shopify_billing_event_is_multiple_app_key"], "alias": "not_null_analytics___finance___0ceb4054900f2e011cccab0928a1aed2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___0ceb4054900f2e011cccab0928a1aed2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___0ceb4054900f2e011cccab0928a1aed2"}, "created_at": 1700082637.5162091, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___0ceb4054900f2e011cccab0928a1aed2\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml/not_null_analytics___finance___0ceb4054900f2e011cccab0928a1aed2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_event where is_multiple_app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_multiple_app_key", "file_key_name": "models.analytics___finance__shopify_billing_event", "attached_node": "model.yoda.analytics___finance__shopify_billing_event"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_event_1.14c9c11acc": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_event')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_event_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__fe453fadf8db683aa8d2309d883c1511.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_event_1.14c9c11acc", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_event", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_event_1"], "alias": "dbt_expectations_expect_table__fe453fadf8db683aa8d2309d883c1511", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__fe453fadf8db683aa8d2309d883c1511", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__fe453fadf8db683aa8d2309d883c1511"}, "created_at": 1700082637.522937, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__fe453fadf8db683aa8d2309d883c1511\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml/dbt_expectations_expect_table__fe453fadf8db683aa8d2309d883c1511.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_event\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_event", "attached_node": "model.yoda.analytics___finance__shopify_billing_event"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_event_shopify_shop_id__charge_id__event_type__product_family__created_at.14a07667e5": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["shopify_shop_id", "charge_id", "event_type", "product_family", "created_at"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_event')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_event_shopify_shop_id__charge_id__event_type__product_family__created_at", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_930bb52174a3ec5ddcee3c5b39c18025.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_event_shopify_shop_id__charge_id__event_type__product_family__created_at.14a07667e5", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_event", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_event_shopify_shop_id__charge_id__event_type__product_family__created_at"], "alias": "dbt_utils_unique_combination_o_930bb52174a3ec5ddcee3c5b39c18025", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_930bb52174a3ec5ddcee3c5b39c18025", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_930bb52174a3ec5ddcee3c5b39c18025"}, "created_at": 1700082637.5303729, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_930bb52174a3ec5ddcee3c5b39c18025\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.yml/dbt_utils_unique_combination_o_930bb52174a3ec5ddcee3c5b39c18025.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n shopify_shop_id, charge_id, event_type, product_family, created_at\n from dev_dkruh1.analytics___finance__shopify_billing_event\n group by shopify_shop_id, charge_id, event_type, product_family, created_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_event", "attached_node": "model.yoda.analytics___finance__shopify_billing_event"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date.80a4a112b5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "mrr_date", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___7d91f24900b07b67340dd6dd1ee7955b.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date.80a4a112b5", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_daily", "not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date"], "alias": "not_null_analytics___finance___7d91f24900b07b67340dd6dd1ee7955b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___7d91f24900b07b67340dd6dd1ee7955b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___7d91f24900b07b67340dd6dd1ee7955b"}, "created_at": 1700082637.5762699, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___7d91f24900b07b67340dd6dd1ee7955b\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.yml/not_null_analytics___finance___7d91f24900b07b67340dd6dd1ee7955b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_daily where mrr_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "mrr_date", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_product_family.cfe1a729d6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___9d9ba9f13fd5b6b6b0c5409d4d1c7f3c.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_product_family.cfe1a729d6", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_daily", "not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_product_family"], "alias": "not_null_analytics___finance___9d9ba9f13fd5b6b6b0c5409d4d1c7f3c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___9d9ba9f13fd5b6b6b0c5409d4d1c7f3c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___9d9ba9f13fd5b6b6b0c5409d4d1c7f3c"}, "created_at": 1700082637.5818634, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___9d9ba9f13fd5b6b6b0c5409d4d1c7f3c\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.yml/not_null_analytics___finance___9d9ba9f13fd5b6b6b0c5409d4d1c7f3c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_daily where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_organization_key.0b8560a10d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___e5edadb104e0793a92a2211a5b4353b9.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_organization_key.0b8560a10d", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_daily", "not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_organization_key"], "alias": "not_null_analytics___finance___e5edadb104e0793a92a2211a5b4353b9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___e5edadb104e0793a92a2211a5b4353b9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___e5edadb104e0793a92a2211a5b4353b9"}, "created_at": 1700082637.5875957, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___e5edadb104e0793a92a2211a5b4353b9\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.yml/not_null_analytics___finance___e5edadb104e0793a92a2211a5b4353b9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_daily where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_daily_1.9437b53b81": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__51fc7d0d93330e4c1e355e502751f072.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_daily_1.9437b53b81", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_daily_1"], "alias": "dbt_expectations_expect_table__51fc7d0d93330e4c1e355e502751f072", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__51fc7d0d93330e4c1e355e502751f072", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__51fc7d0d93330e4c1e355e502751f072"}, "created_at": 1700082637.5933237, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__51fc7d0d93330e4c1e355e502751f072\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.yml/dbt_expectations_expect_table__51fc7d0d93330e4c1e355e502751f072.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date__product_family__organization_key.4c317f1b28": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["mrr_date", "product_family", "organization_key"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date__product_family__organization_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_91c230b9a3b1d999361c13b247c84291.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date__product_family__organization_key.4c317f1b28", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_daily", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date__product_family__organization_key"], "alias": "dbt_utils_unique_combination_o_91c230b9a3b1d999361c13b247c84291", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_91c230b9a3b1d999361c13b247c84291", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_91c230b9a3b1d999361c13b247c84291"}, "created_at": 1700082637.5993683, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_91c230b9a3b1d999361c13b247c84291\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.yml/dbt_utils_unique_combination_o_91c230b9a3b1d999361c13b247c84291.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n mrr_date, product_family, organization_key\n from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_daily\n group by mrr_date, product_family, organization_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month.ab0f4e4b9f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "mrr_month", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___9a2a0dc6889d006fa9fbbc58fb4dece3.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month.ab0f4e4b9f", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_monthly", "not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month"], "alias": "not_null_analytics___finance___9a2a0dc6889d006fa9fbbc58fb4dece3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___9a2a0dc6889d006fa9fbbc58fb4dece3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___9a2a0dc6889d006fa9fbbc58fb4dece3"}, "created_at": 1700082637.6462371, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___9a2a0dc6889d006fa9fbbc58fb4dece3\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml/not_null_analytics___finance___9a2a0dc6889d006fa9fbbc58fb4dece3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_monthly where mrr_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "mrr_month", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_product_family.68bec4958a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___abd128359a877f69c2e9fdd0ed5fbca0.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_product_family.68bec4958a", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_monthly", "not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_product_family"], "alias": "not_null_analytics___finance___abd128359a877f69c2e9fdd0ed5fbca0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___abd128359a877f69c2e9fdd0ed5fbca0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___abd128359a877f69c2e9fdd0ed5fbca0"}, "created_at": 1700082637.6519806, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___abd128359a877f69c2e9fdd0ed5fbca0\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml/not_null_analytics___finance___abd128359a877f69c2e9fdd0ed5fbca0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_monthly where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_key.22b48d6062": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___1ab4e3d07c8f1766d1f08456ea46c926.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_key.22b48d6062", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_monthly", "not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_key"], "alias": "not_null_analytics___finance___1ab4e3d07c8f1766d1f08456ea46c926", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___1ab4e3d07c8f1766d1f08456ea46c926", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___1ab4e3d07c8f1766d1f08456ea46c926"}, "created_at": 1700082637.6579068, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___1ab4e3d07c8f1766d1f08456ea46c926\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml/not_null_analytics___finance___1ab4e3d07c8f1766d1f08456ea46c926.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id.7580b2f8c9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___49816200c411b0bd5f00eb0bbbd34024.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id.7580b2f8c9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_monthly", "not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id"], "alias": "not_null_analytics___finance___49816200c411b0bd5f00eb0bbbd34024", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___49816200c411b0bd5f00eb0bbbd34024", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___49816200c411b0bd5f00eb0bbbd34024"}, "created_at": 1700082637.6632924, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___49816200c411b0bd5f00eb0bbbd34024\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml/not_null_analytics___finance___49816200c411b0bd5f00eb0bbbd34024.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_monthly where organization_product_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"}, "test.yoda.unique_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id.bf3b8cb805": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__sh_872995d4b4d2aaf9439f43cd7738d70a.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.unique_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id.bf3b8cb805", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_monthly", "unique_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id"], "alias": "unique_analytics___finance__sh_872995d4b4d2aaf9439f43cd7738d70a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__sh_872995d4b4d2aaf9439f43cd7738d70a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__sh_872995d4b4d2aaf9439f43cd7738d70a"}, "created_at": 1700082637.6691487, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__sh_872995d4b4d2aaf9439f43cd7738d70a\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml/unique_analytics___finance__sh_872995d4b4d2aaf9439f43cd7738d70a.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_product_month_id from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_monthly where organization_product_month_id is not null group by organization_product_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_monthly_1.760695542b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d9ca1207a2c6f3ebc5b6d8f84983e20a.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_monthly_1.760695542b", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_monthly_1"], "alias": "dbt_expectations_expect_table__d9ca1207a2c6f3ebc5b6d8f84983e20a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d9ca1207a2c6f3ebc5b6d8f84983e20a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d9ca1207a2c6f3ebc5b6d8f84983e20a"}, "created_at": 1700082637.6750104, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d9ca1207a2c6f3ebc5b6d8f84983e20a\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml/dbt_expectations_expect_table__d9ca1207a2c6f3ebc5b6d8f84983e20a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month__product_family__organization_key.c7d76a868e": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["mrr_month", "product_family", "organization_key"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_mrr_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month__product_family__organization_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_481bf826d50ad1d6ec97612b7e6248f9.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month__product_family__organization_key.c7d76a868e", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_mrr_monthly", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month__product_family__organization_key"], "alias": "dbt_utils_unique_combination_o_481bf826d50ad1d6ec97612b7e6248f9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_481bf826d50ad1d6ec97612b7e6248f9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_481bf826d50ad1d6ec97612b7e6248f9"}, "created_at": 1700082637.681188, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_481bf826d50ad1d6ec97612b7e6248f9\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.yml/dbt_utils_unique_combination_o_481bf826d50ad1d6ec97612b7e6248f9.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n mrr_month, product_family, organization_key\n from dev_dkruh1.analytics___finance__shopify_billing_organization_product_mrr_monthly\n group by mrr_month, product_family, organization_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_date.e65bccf920": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___57e48e5e374af86904f861826d89e0c6.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_date.e65bccf920", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_date"], "alias": "not_null_analytics___finance___57e48e5e374af86904f861826d89e0c6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___57e48e5e374af86904f861826d89e0c6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___57e48e5e374af86904f861826d89e0c6"}, "created_at": 1700082637.7037349, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___57e48e5e374af86904f861826d89e0c6\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml/not_null_analytics___finance___57e48e5e374af86904f861826d89e0c6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key.5058e9a060": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___ebaef287dae0f091f8f3e68f733da6c8.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key.5058e9a060", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key"], "alias": "not_null_analytics___finance___ebaef287dae0f091f8f3e68f733da6c8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___ebaef287dae0f091f8f3e68f733da6c8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___ebaef287dae0f091f8f3e68f733da6c8"}, "created_at": 1700082637.7092416, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___ebaef287dae0f091f8f3e68f733da6c8\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml/not_null_analytics___finance___ebaef287dae0f091f8f3e68f733da6c8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_daily where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_product_family.f578430442": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___84359eb3d30be66bc93c177b2d20b37c.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_product_family.f578430442", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_product_family"], "alias": "not_null_analytics___finance___84359eb3d30be66bc93c177b2d20b37c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___84359eb3d30be66bc93c177b2d20b37c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___84359eb3d30be66bc93c177b2d20b37c"}, "created_at": 1700082637.7150266, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___84359eb3d30be66bc93c177b2d20b37c\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml/not_null_analytics___finance___84359eb3d30be66bc93c177b2d20b37c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_daily where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_revenue_in_usd.fceedf0ceb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "revenue_in_usd", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_revenue_in_usd", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___133e840e0df57c88b6c0e953b06b3b9d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_revenue_in_usd.fceedf0ceb", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_revenue_in_usd"], "alias": "not_null_analytics___finance___133e840e0df57c88b6c0e953b06b3b9d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___133e840e0df57c88b6c0e953b06b3b9d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___133e840e0df57c88b6c0e953b06b3b9d"}, "created_at": 1700082637.7210567, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___133e840e0df57c88b6c0e953b06b3b9d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml/not_null_analytics___finance___133e840e0df57c88b6c0e953b06b3b9d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_daily where revenue_in_usd is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "revenue_in_usd", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_1.982337dfc4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c7fe604a8271ee6a23ed290b594f93d6.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_1.982337dfc4", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_1"], "alias": "dbt_expectations_expect_table__c7fe604a8271ee6a23ed290b594f93d6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c7fe604a8271ee6a23ed290b594f93d6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c7fe604a8271ee6a23ed290b594f93d6"}, "created_at": 1700082637.7268631, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c7fe604a8271ee6a23ed290b594f93d6\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml/dbt_expectations_expect_table__c7fe604a8271ee6a23ed290b594f93d6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key__date__product_family.aa222c42f3": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["organization_key", "date", "product_family"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key__date__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_65c960bfd5815f4772a25dec38acb365.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key__date__product_family.aa222c42f3", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key__date__product_family"], "alias": "dbt_utils_unique_combination_o_65c960bfd5815f4772a25dec38acb365", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_65c960bfd5815f4772a25dec38acb365", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_65c960bfd5815f4772a25dec38acb365"}, "created_at": 1700082637.7334194, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_65c960bfd5815f4772a25dec38acb365\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.yml/dbt_utils_unique_combination_o_65c960bfd5815f4772a25dec38acb365.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n organization_key, date, product_family\n from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_daily\n group by organization_key, date, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_month.f84eced8d0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___c69065c5cc7c84c56e345b1e84e40c04.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_month.f84eced8d0", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_month"], "alias": "not_null_analytics___finance___c69065c5cc7c84c56e345b1e84e40c04", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___c69065c5cc7c84c56e345b1e84e40c04", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___c69065c5cc7c84c56e345b1e84e40c04"}, "created_at": 1700082637.7601833, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___c69065c5cc7c84c56e345b1e84e40c04\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___c69065c5cc7c84c56e345b1e84e40c04.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key.583fc74b41": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___54468b8a619f47add714aee9057b440b.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key.583fc74b41", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key"], "alias": "not_null_analytics___finance___54468b8a619f47add714aee9057b440b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___54468b8a619f47add714aee9057b440b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___54468b8a619f47add714aee9057b440b"}, "created_at": 1700082637.7671037, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___54468b8a619f47add714aee9057b440b\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___54468b8a619f47add714aee9057b440b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_product_family.4b9d031a1e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___4f5a102cb693b215f350679e7ec1caab.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_product_family.4b9d031a1e", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_product_family"], "alias": "not_null_analytics___finance___4f5a102cb693b215f350679e7ec1caab", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___4f5a102cb693b215f350679e7ec1caab", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___4f5a102cb693b215f350679e7ec1caab"}, "created_at": 1700082637.7731297, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___4f5a102cb693b215f350679e7ec1caab\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___4f5a102cb693b215f350679e7ec1caab.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_revenue_in_usd.8d031b5afd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "revenue_in_usd", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_revenue_in_usd", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___8d0400277351d9184ae73f3d1c3c1bef.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_revenue_in_usd.8d031b5afd", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_revenue_in_usd"], "alias": "not_null_analytics___finance___8d0400277351d9184ae73f3d1c3c1bef", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___8d0400277351d9184ae73f3d1c3c1bef", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___8d0400277351d9184ae73f3d1c3c1bef"}, "created_at": 1700082637.7786295, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___8d0400277351d9184ae73f3d1c3c1bef\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___8d0400277351d9184ae73f3d1c3c1bef.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly where revenue_in_usd is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "revenue_in_usd", "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_1.55d563e882": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e26202c939df24de6ccfb420b50d6eb2.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_1.55d563e882", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_1"], "alias": "dbt_expectations_expect_table__e26202c939df24de6ccfb420b50d6eb2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e26202c939df24de6ccfb420b50d6eb2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e26202c939df24de6ccfb420b50d6eb2"}, "created_at": 1700082637.7842638, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e26202c939df24de6ccfb420b50d6eb2\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml/dbt_expectations_expect_table__e26202c939df24de6ccfb420b50d6eb2.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key__month__product_family.63a60622bd": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["organization_key", "month", "product_family"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_organization_product_usage_revenue_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key__month__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_7dac7d50b68a6d9497ea373dbb156aca.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key__month__product_family.63a60622bd", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key__month__product_family"], "alias": "dbt_utils_unique_combination_o_7dac7d50b68a6d9497ea373dbb156aca", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_7dac7d50b68a6d9497ea373dbb156aca", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_7dac7d50b68a6d9497ea373dbb156aca"}, "created_at": 1700082637.7903275, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_7dac7d50b68a6d9497ea373dbb156aca\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.yml/dbt_utils_unique_combination_o_7dac7d50b68a6d9497ea373dbb156aca.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n organization_key, month, product_family\n from dev_dkruh1.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly\n group by organization_key, month, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_app_key.e46adc341d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_mapping_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___4a242219d354a62fb1bbe86121d7c331.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_app_key.e46adc341d", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_mapping", "not_null_analytics___finance__shopify_billing_store_mapping_app_key"], "alias": "not_null_analytics___finance___4a242219d354a62fb1bbe86121d7c331", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___4a242219d354a62fb1bbe86121d7c331", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___4a242219d354a62fb1bbe86121d7c331"}, "created_at": 1700082637.8121686, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___4a242219d354a62fb1bbe86121d7c331\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml/not_null_analytics___finance___4a242219d354a62fb1bbe86121d7c331.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_mapping where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___finance__shopify_billing_store_mapping", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_mapping"}, "test.yoda.unique_analytics___finance__shopify_billing_store_mapping_app_key.5a1ab13472": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__shopify_billing_store_mapping_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__sh_36ce9dd980b01e6ae186ba2c35093e1d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml", "unique_id": "test.yoda.unique_analytics___finance__shopify_billing_store_mapping_app_key.5a1ab13472", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_mapping", "unique_analytics___finance__shopify_billing_store_mapping_app_key"], "alias": "unique_analytics___finance__sh_36ce9dd980b01e6ae186ba2c35093e1d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__sh_36ce9dd980b01e6ae186ba2c35093e1d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__sh_36ce9dd980b01e6ae186ba2c35093e1d"}, "created_at": 1700082637.8181367, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__sh_36ce9dd980b01e6ae186ba2c35093e1d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml/unique_analytics___finance__sh_36ce9dd980b01e6ae186ba2c35093e1d.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___finance__shopify_billing_store_mapping where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___finance__shopify_billing_store_mapping", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_mapping"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_organization_key.924d08a96d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_mapping_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___6e7fc03b559838a1e7c7d55b3a3cbfd7.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_organization_key.924d08a96d", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_mapping", "not_null_analytics___finance__shopify_billing_store_mapping_organization_key"], "alias": "not_null_analytics___finance___6e7fc03b559838a1e7c7d55b3a3cbfd7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___6e7fc03b559838a1e7c7d55b3a3cbfd7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___6e7fc03b559838a1e7c7d55b3a3cbfd7"}, "created_at": 1700082637.8239856, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___6e7fc03b559838a1e7c7d55b3a3cbfd7\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml/not_null_analytics___finance___6e7fc03b559838a1e7c7d55b3a3cbfd7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_mapping where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__shopify_billing_store_mapping", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_mapping"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_shopify_shop_id.d92072b862": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_mapping_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___a387d426f6f1eeafdb49254b620fc124.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_shopify_shop_id.d92072b862", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_mapping", "not_null_analytics___finance__shopify_billing_store_mapping_shopify_shop_id"], "alias": "not_null_analytics___finance___a387d426f6f1eeafdb49254b620fc124", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___a387d426f6f1eeafdb49254b620fc124", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___a387d426f6f1eeafdb49254b620fc124"}, "created_at": 1700082637.830172, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___a387d426f6f1eeafdb49254b620fc124\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml/not_null_analytics___finance___a387d426f6f1eeafdb49254b620fc124.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_mapping where shopify_shop_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_billing_store_mapping", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_mapping"}, "test.yoda.unique_analytics___finance__shopify_billing_store_mapping_shopify_shop_id.7e95308156": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__shopify_billing_store_mapping_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__sh_8cf480f19a36d4abeabdee77eff6405c.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml", "unique_id": "test.yoda.unique_analytics___finance__shopify_billing_store_mapping_shopify_shop_id.7e95308156", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_mapping", "unique_analytics___finance__shopify_billing_store_mapping_shopify_shop_id"], "alias": "unique_analytics___finance__sh_8cf480f19a36d4abeabdee77eff6405c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__sh_8cf480f19a36d4abeabdee77eff6405c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__sh_8cf480f19a36d4abeabdee77eff6405c"}, "created_at": 1700082637.8360584, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__sh_8cf480f19a36d4abeabdee77eff6405c\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml/unique_analytics___finance__sh_8cf480f19a36d4abeabdee77eff6405c.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select shopify_shop_id from dev_dkruh1.analytics___finance__shopify_billing_store_mapping where shopify_shop_id is not null group by shopify_shop_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_billing_store_mapping", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_mapping"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_mapping_1.fda37bd0a7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__51cb51eea950f50d837d308ec11cb2c2.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_mapping_1.fda37bd0a7", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_mapping", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_mapping_1"], "alias": "dbt_expectations_expect_table__51cb51eea950f50d837d308ec11cb2c2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__51cb51eea950f50d837d308ec11cb2c2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__51cb51eea950f50d837d308ec11cb2c2"}, "created_at": 1700082637.8431363, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__51cb51eea950f50d837d308ec11cb2c2\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.yml/dbt_expectations_expect_table__51cb51eea950f50d837d308ec11cb2c2.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_store_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_mapping", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_mapping"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id.a4dd5ea379": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_deactivated_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___0b2e1e29544fd7cf8f471f0f97cfce77.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id.a4dd5ea379", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_deactivated_over_time", "not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id"], "alias": "not_null_analytics___finance___0b2e1e29544fd7cf8f471f0f97cfce77", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___0b2e1e29544fd7cf8f471f0f97cfce77", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___0b2e1e29544fd7cf8f471f0f97cfce77"}, "created_at": 1700082637.8659017, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___0b2e1e29544fd7cf8f471f0f97cfce77\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml/not_null_analytics___finance___0b2e1e29544fd7cf8f471f0f97cfce77.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_deactivated_over_time where shopify_shop_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_billing_store_product_deactivated_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_product_family.98753fc505": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_deactivated_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___8d58b7d8a40a2500c0a04e996eb24aa4.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_product_family.98753fc505", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_deactivated_over_time", "not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_product_family"], "alias": "not_null_analytics___finance___8d58b7d8a40a2500c0a04e996eb24aa4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___8d58b7d8a40a2500c0a04e996eb24aa4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___8d58b7d8a40a2500c0a04e996eb24aa4"}, "created_at": 1700082637.8713942, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___8d58b7d8a40a2500c0a04e996eb24aa4\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml/not_null_analytics___finance___8d58b7d8a40a2500c0a04e996eb24aa4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_deactivated_over_time where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__shopify_billing_store_product_deactivated_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_at.cdf62f89f6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "deactivated_at", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_deactivated_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___de28910a58d122facb9d482fe4f3da8c.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_at.cdf62f89f6", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_deactivated_over_time", "not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_at"], "alias": "not_null_analytics___finance___de28910a58d122facb9d482fe4f3da8c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___de28910a58d122facb9d482fe4f3da8c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___de28910a58d122facb9d482fe4f3da8c"}, "created_at": 1700082637.8777864, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___de28910a58d122facb9d482fe4f3da8c\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml/not_null_analytics___finance___de28910a58d122facb9d482fe4f3da8c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_deactivated_over_time where deactivated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "deactivated_at", "file_key_name": "models.analytics___finance__shopify_billing_store_product_deactivated_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_date.793b14fe6a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "deactivated_date", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_deactivated_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___f78b3b2dbab02dfec5ee8bd25cbdba91.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_date.793b14fe6a", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_deactivated_over_time", "not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_date"], "alias": "not_null_analytics___finance___f78b3b2dbab02dfec5ee8bd25cbdba91", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___f78b3b2dbab02dfec5ee8bd25cbdba91", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___f78b3b2dbab02dfec5ee8bd25cbdba91"}, "created_at": 1700082637.883946, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___f78b3b2dbab02dfec5ee8bd25cbdba91\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml/not_null_analytics___finance___f78b3b2dbab02dfec5ee8bd25cbdba91.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_deactivated_over_time where deactivated_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "deactivated_date", "file_key_name": "models.analytics___finance__shopify_billing_store_product_deactivated_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_deactivated_over_time_1.0851439894": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_deactivated_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_deactivated_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ef81398f2ebb9537de6e35c62f6f22dc.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_deactivated_over_time_1.0851439894", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_deactivated_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_deactivated_over_time_1"], "alias": "dbt_expectations_expect_table__ef81398f2ebb9537de6e35c62f6f22dc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ef81398f2ebb9537de6e35c62f6f22dc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ef81398f2ebb9537de6e35c62f6f22dc"}, "created_at": 1700082637.8893595, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ef81398f2ebb9537de6e35c62f6f22dc\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml/dbt_expectations_expect_table__ef81398f2ebb9537de6e35c62f6f22dc.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_deactivated_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_deactivated_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id__product_family__deactivated_at.cab4546bb9": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["shopify_shop_id", "product_family", "deactivated_at"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_deactivated_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id__product_family__deactivated_at", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_4881bed1bdeba32d757e68d376053260.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id__product_family__deactivated_at.cab4546bb9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_deactivated_over_time", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id__product_family__deactivated_at"], "alias": "dbt_utils_unique_combination_o_4881bed1bdeba32d757e68d376053260", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_4881bed1bdeba32d757e68d376053260", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_4881bed1bdeba32d757e68d376053260"}, "created_at": 1700082637.8962452, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_4881bed1bdeba32d757e68d376053260\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.yml/dbt_utils_unique_combination_o_4881bed1bdeba32d757e68d376053260.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n shopify_shop_id, product_family, deactivated_at\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_deactivated_over_time\n group by shopify_shop_id, product_family, deactivated_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_deactivated_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date.65c7ac4438": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "mrr_date", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___908c05d57950daa90c9c5c718f14abbc.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date.65c7ac4438", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_daily", "not_null_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date"], "alias": "not_null_analytics___finance___908c05d57950daa90c9c5c718f14abbc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___908c05d57950daa90c9c5c718f14abbc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___908c05d57950daa90c9c5c718f14abbc"}, "created_at": 1700082637.9391108, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___908c05d57950daa90c9c5c718f14abbc\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.yml/not_null_analytics___finance___908c05d57950daa90c9c5c718f14abbc.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_daily where mrr_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "mrr_date", "file_key_name": "models.analytics___finance__shopify_billing_store_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_product_family.a5a4e09a24": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_mrr_daily_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___713346a8efc43ac40453559a4f956f61.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_product_family.a5a4e09a24", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_daily", "not_null_analytics___finance__shopify_billing_store_product_mrr_daily_product_family"], "alias": "not_null_analytics___finance___713346a8efc43ac40453559a4f956f61", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___713346a8efc43ac40453559a4f956f61", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___713346a8efc43ac40453559a4f956f61"}, "created_at": 1700082637.944875, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___713346a8efc43ac40453559a4f956f61\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.yml/not_null_analytics___finance___713346a8efc43ac40453559a4f956f61.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_daily where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__shopify_billing_store_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_shopify_shop_id.e09fcdf7df": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_mrr_daily_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___0e5bccfa521f25d4df9336a3b6d9ecc6.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_shopify_shop_id.e09fcdf7df", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_daily", "not_null_analytics___finance__shopify_billing_store_product_mrr_daily_shopify_shop_id"], "alias": "not_null_analytics___finance___0e5bccfa521f25d4df9336a3b6d9ecc6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___0e5bccfa521f25d4df9336a3b6d9ecc6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___0e5bccfa521f25d4df9336a3b6d9ecc6"}, "created_at": 1700082637.9508529, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___0e5bccfa521f25d4df9336a3b6d9ecc6\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.yml/not_null_analytics___finance___0e5bccfa521f25d4df9336a3b6d9ecc6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_daily where shopify_shop_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_billing_store_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_daily_1.05fd7f6636": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_mrr_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e6bbab244df0a2727eecca706fb2ff95.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_daily_1.05fd7f6636", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_daily_1"], "alias": "dbt_expectations_expect_table__e6bbab244df0a2727eecca706fb2ff95", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e6bbab244df0a2727eecca706fb2ff95", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e6bbab244df0a2727eecca706fb2ff95"}, "created_at": 1700082637.9576166, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e6bbab244df0a2727eecca706fb2ff95\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.yml/dbt_expectations_expect_table__e6bbab244df0a2727eecca706fb2ff95.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date__product_family__shopify_shop_id.3b8d5e706f": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["mrr_date", "product_family", "shopify_shop_id"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_mrr_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date__product_family__shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_dc165c45f263882a2b9adf6890d398a5.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date__product_family__shopify_shop_id.3b8d5e706f", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_daily", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date__product_family__shopify_shop_id"], "alias": "dbt_utils_unique_combination_o_dc165c45f263882a2b9adf6890d398a5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_dc165c45f263882a2b9adf6890d398a5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_dc165c45f263882a2b9adf6890d398a5"}, "created_at": 1700082637.9643846, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_dc165c45f263882a2b9adf6890d398a5\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.yml/dbt_utils_unique_combination_o_dc165c45f263882a2b9adf6890d398a5.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n mrr_date, product_family, shopify_shop_id\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_daily\n group by mrr_date, product_family, shopify_shop_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month.212843bfa9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "mrr_month", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___1e9d11abee93a9cae2d396611ebfc73b.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month.212843bfa9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_monthly", "not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month"], "alias": "not_null_analytics___finance___1e9d11abee93a9cae2d396611ebfc73b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___1e9d11abee93a9cae2d396611ebfc73b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___1e9d11abee93a9cae2d396611ebfc73b"}, "created_at": 1700082638.0167263, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___1e9d11abee93a9cae2d396611ebfc73b\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.yml/not_null_analytics___finance___1e9d11abee93a9cae2d396611ebfc73b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_monthly where mrr_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "mrr_month", "file_key_name": "models.analytics___finance__shopify_billing_store_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_product_family.87c5fce17f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___de9dc18dfeaf521d878536b162506b05.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_product_family.87c5fce17f", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_monthly", "not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_product_family"], "alias": "not_null_analytics___finance___de9dc18dfeaf521d878536b162506b05", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___de9dc18dfeaf521d878536b162506b05", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___de9dc18dfeaf521d878536b162506b05"}, "created_at": 1700082638.0223784, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___de9dc18dfeaf521d878536b162506b05\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.yml/not_null_analytics___finance___de9dc18dfeaf521d878536b162506b05.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_monthly where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__shopify_billing_store_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_shopify_shop_id.28e7252926": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___fdd1da9a72a4cf05b9bf3e4742c5bbb7.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_shopify_shop_id.28e7252926", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_monthly", "not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_shopify_shop_id"], "alias": "not_null_analytics___finance___fdd1da9a72a4cf05b9bf3e4742c5bbb7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___fdd1da9a72a4cf05b9bf3e4742c5bbb7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___fdd1da9a72a4cf05b9bf3e4742c5bbb7"}, "created_at": 1700082638.0289822, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___fdd1da9a72a4cf05b9bf3e4742c5bbb7\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.yml/not_null_analytics___finance___fdd1da9a72a4cf05b9bf3e4742c5bbb7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_monthly where shopify_shop_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_billing_store_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_monthly_1.fc96fb0eb4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_mrr_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2f0ccd8f952ab2e5b40a255b6f2c7704.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_monthly_1.fc96fb0eb4", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_monthly_1"], "alias": "dbt_expectations_expect_table__2f0ccd8f952ab2e5b40a255b6f2c7704", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2f0ccd8f952ab2e5b40a255b6f2c7704", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2f0ccd8f952ab2e5b40a255b6f2c7704"}, "created_at": 1700082638.034854, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2f0ccd8f952ab2e5b40a255b6f2c7704\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.yml/dbt_expectations_expect_table__2f0ccd8f952ab2e5b40a255b6f2c7704.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month__product_family__shopify_shop_id.3fe2ba6d7a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["mrr_month", "product_family", "shopify_shop_id"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_mrr_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month__product_family__shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_77bacfe18f5b09d6a1c5cdd9ccfa3eec.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month__product_family__shopify_shop_id.3fe2ba6d7a", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_mrr_monthly", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month__product_family__shopify_shop_id"], "alias": "dbt_utils_unique_combination_o_77bacfe18f5b09d6a1c5cdd9ccfa3eec", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_77bacfe18f5b09d6a1c5cdd9ccfa3eec", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_77bacfe18f5b09d6a1c5cdd9ccfa3eec"}, "created_at": 1700082638.0410235, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_77bacfe18f5b09d6a1c5cdd9ccfa3eec\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.yml/dbt_utils_unique_combination_o_77bacfe18f5b09d6a1c5cdd9ccfa3eec.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n mrr_month, product_family, shopify_shop_id\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_mrr_monthly\n group by mrr_month, product_family, shopify_shop_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id.9fc3c5bab0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_uninstalled_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___3d8bd47d99c65b9951045a49ea41eb75.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id.9fc3c5bab0", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id"], "alias": "not_null_analytics___finance___3d8bd47d99c65b9951045a49ea41eb75", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___3d8bd47d99c65b9951045a49ea41eb75", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___3d8bd47d99c65b9951045a49ea41eb75"}, "created_at": 1700082638.0657108, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___3d8bd47d99c65b9951045a49ea41eb75\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml/not_null_analytics___finance___3d8bd47d99c65b9951045a49ea41eb75.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_uninstalled_over_time where shopify_shop_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_product_family.a2b27d0007": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_uninstalled_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___d5ea0438f6c4ab089e0ebd9133b8d9c5.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_product_family.a2b27d0007", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_product_family"], "alias": "not_null_analytics___finance___d5ea0438f6c4ab089e0ebd9133b8d9c5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___d5ea0438f6c4ab089e0ebd9133b8d9c5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___d5ea0438f6c4ab089e0ebd9133b8d9c5"}, "created_at": 1700082638.071206, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___d5ea0438f6c4ab089e0ebd9133b8d9c5\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml/not_null_analytics___finance___d5ea0438f6c4ab089e0ebd9133b8d9c5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_uninstalled_over_time where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_at.6c4680e529": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "uninstalled_at", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_uninstalled_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___ee97b361edb220e054f22b00e54ee963.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_at.6c4680e529", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_at"], "alias": "not_null_analytics___finance___ee97b361edb220e054f22b00e54ee963", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___ee97b361edb220e054f22b00e54ee963", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___ee97b361edb220e054f22b00e54ee963"}, "created_at": 1700082638.0770433, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___ee97b361edb220e054f22b00e54ee963\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml/not_null_analytics___finance___ee97b361edb220e054f22b00e54ee963.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_uninstalled_over_time where uninstalled_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "uninstalled_at", "file_key_name": "models.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_date.a853981d04": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "uninstalled_date", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_uninstalled_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___bb96fe6f7205b04547abb74be3cf5faa.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_date.a853981d04", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_date"], "alias": "not_null_analytics___finance___bb96fe6f7205b04547abb74be3cf5faa", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___bb96fe6f7205b04547abb74be3cf5faa", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___bb96fe6f7205b04547abb74be3cf5faa"}, "created_at": 1700082638.0830514, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___bb96fe6f7205b04547abb74be3cf5faa\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml/not_null_analytics___finance___bb96fe6f7205b04547abb74be3cf5faa.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_uninstalled_over_time where uninstalled_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "uninstalled_date", "file_key_name": "models.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_uninstalled_over_time_1.0bc44b77a9": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_uninstalled_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_uninstalled_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5dd8e1074744e40fee9e9da4a26d4b56.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_uninstalled_over_time_1.0bc44b77a9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_uninstalled_over_time_1"], "alias": "dbt_expectations_expect_table__5dd8e1074744e40fee9e9da4a26d4b56", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5dd8e1074744e40fee9e9da4a26d4b56", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5dd8e1074744e40fee9e9da4a26d4b56"}, "created_at": 1700082638.0885222, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5dd8e1074744e40fee9e9da4a26d4b56\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml/dbt_expectations_expect_table__5dd8e1074744e40fee9e9da4a26d4b56.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_uninstalled_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id__product_family__uninstalled_at.6872d194cb": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["shopify_shop_id", "product_family", "uninstalled_at"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_uninstalled_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id__product_family__uninstalled_at", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_11c5b3a2c81dbb84535496d27b81e443.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id__product_family__uninstalled_at.6872d194cb", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id__product_family__uninstalled_at"], "alias": "dbt_utils_unique_combination_o_11c5b3a2c81dbb84535496d27b81e443", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_11c5b3a2c81dbb84535496d27b81e443", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_11c5b3a2c81dbb84535496d27b81e443"}, "created_at": 1700082638.0947182, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_11c5b3a2c81dbb84535496d27b81e443\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.yml/dbt_utils_unique_combination_o_11c5b3a2c81dbb84535496d27b81e443.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n shopify_shop_id, product_family, uninstalled_at\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_uninstalled_over_time\n group by shopify_shop_id, product_family, uninstalled_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_charge_id.e81293333a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "charge_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_charge_charge_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___fc13abb16194c076e11173fc09bb3290.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_charge_id.e81293333a", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_charge", "not_null_analytics___finance__shopify_billing_store_product_usage_charge_charge_id"], "alias": "not_null_analytics___finance___fc13abb16194c076e11173fc09bb3290", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___fc13abb16194c076e11173fc09bb3290", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___fc13abb16194c076e11173fc09bb3290"}, "created_at": 1700082638.1273422, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___fc13abb16194c076e11173fc09bb3290\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml/not_null_analytics___finance___fc13abb16194c076e11173fc09bb3290.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge where charge_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "charge_id", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_charge", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id.80e688b65f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___469dc73257172ddb3af179ee7cb8bbad.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id.80e688b65f", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_charge", "not_null_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id"], "alias": "not_null_analytics___finance___469dc73257172ddb3af179ee7cb8bbad", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___469dc73257172ddb3af179ee7cb8bbad", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___469dc73257172ddb3af179ee7cb8bbad"}, "created_at": 1700082638.1333153, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___469dc73257172ddb3af179ee7cb8bbad\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml/not_null_analytics___finance___469dc73257172ddb3af179ee7cb8bbad.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge where shopify_shop_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_charge", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_product_family.a620b88ace": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_charge_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___b88438f425ca9932260c07b7b3e71a60.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_product_family.a620b88ace", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_charge", "not_null_analytics___finance__shopify_billing_store_product_usage_charge_product_family"], "alias": "not_null_analytics___finance___b88438f425ca9932260c07b7b3e71a60", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___b88438f425ca9932260c07b7b3e71a60", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___b88438f425ca9932260c07b7b3e71a60"}, "created_at": 1700082638.1388752, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___b88438f425ca9932260c07b7b3e71a60\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml/not_null_analytics___finance___b88438f425ca9932260c07b7b3e71a60.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_charge", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_date.6c3494a44d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_charge_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___d0f64e4628ce56af43f626212cbd9964.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_date.6c3494a44d", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_charge", "not_null_analytics___finance__shopify_billing_store_product_usage_charge_date"], "alias": "not_null_analytics___finance___d0f64e4628ce56af43f626212cbd9964", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___d0f64e4628ce56af43f626212cbd9964", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___d0f64e4628ce56af43f626212cbd9964"}, "created_at": 1700082638.1449783, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___d0f64e4628ce56af43f626212cbd9964\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml/not_null_analytics___finance___d0f64e4628ce56af43f626212cbd9964.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_charge", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_revenue_in_usd.9a1ec3e7a9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "revenue_in_usd", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_charge_revenue_in_usd", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___1e1f9d56b8b094d2fba43490d88b2a0f.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_revenue_in_usd.9a1ec3e7a9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_charge", "not_null_analytics___finance__shopify_billing_store_product_usage_charge_revenue_in_usd"], "alias": "not_null_analytics___finance___1e1f9d56b8b094d2fba43490d88b2a0f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___1e1f9d56b8b094d2fba43490d88b2a0f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___1e1f9d56b8b094d2fba43490d88b2a0f"}, "created_at": 1700082638.1508389, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___1e1f9d56b8b094d2fba43490d88b2a0f\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml/not_null_analytics___finance___1e1f9d56b8b094d2fba43490d88b2a0f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge where revenue_in_usd is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "revenue_in_usd", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_charge", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_charge_1.5e505ed523": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_charge')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_charge_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5d3a92d547ce07911500c9d2da7738eb.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_charge_1.5e505ed523", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_charge", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_charge_1"], "alias": "dbt_expectations_expect_table__5d3a92d547ce07911500c9d2da7738eb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5d3a92d547ce07911500c9d2da7738eb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5d3a92d547ce07911500c9d2da7738eb"}, "created_at": 1700082638.1566937, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5d3a92d547ce07911500c9d2da7738eb\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml/dbt_expectations_expect_table__5d3a92d547ce07911500c9d2da7738eb.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_charge", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id__charge_id.424f41cfad": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["shopify_shop_id", "charge_id"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_charge')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id__charge_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_5b798fd5de045326f8e67f449e068d35.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id__charge_id.424f41cfad", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_charge", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id__charge_id"], "alias": "dbt_utils_unique_combination_o_5b798fd5de045326f8e67f449e068d35", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_5b798fd5de045326f8e67f449e068d35", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_5b798fd5de045326f8e67f449e068d35"}, "created_at": 1700082638.1627016, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_5b798fd5de045326f8e67f449e068d35\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.yml/dbt_utils_unique_combination_o_5b798fd5de045326f8e67f449e068d35.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n shopify_shop_id, charge_id\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_charge\n group by shopify_shop_id, charge_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_charge", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_date.6f5c8dfb76": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___9d8dd22d76aea0266995716577942ebe.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_date.6f5c8dfb76", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_date"], "alias": "not_null_analytics___finance___9d8dd22d76aea0266995716577942ebe", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___9d8dd22d76aea0266995716577942ebe", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___9d8dd22d76aea0266995716577942ebe"}, "created_at": 1700082638.193484, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___9d8dd22d76aea0266995716577942ebe\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml/not_null_analytics___finance___9d8dd22d76aea0266995716577942ebe.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id.150d8c5558": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___e2aad692062de5e345710b9def8787e2.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id.150d8c5558", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id"], "alias": "not_null_analytics___finance___e2aad692062de5e345710b9def8787e2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___e2aad692062de5e345710b9def8787e2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___e2aad692062de5e345710b9def8787e2"}, "created_at": 1700082638.2024744, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___e2aad692062de5e345710b9def8787e2\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml/not_null_analytics___finance___e2aad692062de5e345710b9def8787e2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_daily where shopify_shop_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_product_family.37d7c0675b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___fdb3c16b5a2afa4473915c8ed7b6bcfb.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_product_family.37d7c0675b", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_product_family"], "alias": "not_null_analytics___finance___fdb3c16b5a2afa4473915c8ed7b6bcfb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___fdb3c16b5a2afa4473915c8ed7b6bcfb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___fdb3c16b5a2afa4473915c8ed7b6bcfb"}, "created_at": 1700082638.2118044, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___fdb3c16b5a2afa4473915c8ed7b6bcfb\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml/not_null_analytics___finance___fdb3c16b5a2afa4473915c8ed7b6bcfb.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_daily where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_revenue_in_usd.5473d6c6a4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "revenue_in_usd", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_revenue_in_usd", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___6a2b505c98bccd205f3009e0fe785691.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_revenue_in_usd.5473d6c6a4", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_revenue_in_usd"], "alias": "not_null_analytics___finance___6a2b505c98bccd205f3009e0fe785691", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___6a2b505c98bccd205f3009e0fe785691", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___6a2b505c98bccd205f3009e0fe785691"}, "created_at": 1700082638.224518, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___6a2b505c98bccd205f3009e0fe785691\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml/not_null_analytics___finance___6a2b505c98bccd205f3009e0fe785691.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_daily where revenue_in_usd is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "revenue_in_usd", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_daily_1.6e178a42f2": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__fdc7d13c0f4a10cdfd027ed60b038589.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_daily_1.6e178a42f2", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_daily_1"], "alias": "dbt_expectations_expect_table__fdc7d13c0f4a10cdfd027ed60b038589", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__fdc7d13c0f4a10cdfd027ed60b038589", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__fdc7d13c0f4a10cdfd027ed60b038589"}, "created_at": 1700082638.2320802, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__fdc7d13c0f4a10cdfd027ed60b038589\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml/dbt_expectations_expect_table__fdc7d13c0f4a10cdfd027ed60b038589.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id__date__product_family.00b1e023a3": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["shopify_shop_id", "date", "product_family"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id__date__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_2ebc7a03ab9ebbe0a626076a87655e12.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id__date__product_family.00b1e023a3", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id__date__product_family"], "alias": "dbt_utils_unique_combination_o_2ebc7a03ab9ebbe0a626076a87655e12", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_2ebc7a03ab9ebbe0a626076a87655e12", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_2ebc7a03ab9ebbe0a626076a87655e12"}, "created_at": 1700082638.2440765, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_2ebc7a03ab9ebbe0a626076a87655e12\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.yml/dbt_utils_unique_combination_o_2ebc7a03ab9ebbe0a626076a87655e12.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n shopify_shop_id, date, product_family\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_daily\n group by shopify_shop_id, date, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_month.6c21979a25": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___10bf94af4af98d3ac5a8d0caa90347d0.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_month.6c21979a25", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_month"], "alias": "not_null_analytics___finance___10bf94af4af98d3ac5a8d0caa90347d0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___10bf94af4af98d3ac5a8d0caa90347d0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___10bf94af4af98d3ac5a8d0caa90347d0"}, "created_at": 1700082638.2829561, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___10bf94af4af98d3ac5a8d0caa90347d0\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml/not_null_analytics___finance___10bf94af4af98d3ac5a8d0caa90347d0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id.d35b15b24b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___25ef70cbe17bcf45a6489573e367894d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id.d35b15b24b", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id"], "alias": "not_null_analytics___finance___25ef70cbe17bcf45a6489573e367894d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___25ef70cbe17bcf45a6489573e367894d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___25ef70cbe17bcf45a6489573e367894d"}, "created_at": 1700082638.2886376, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___25ef70cbe17bcf45a6489573e367894d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml/not_null_analytics___finance___25ef70cbe17bcf45a6489573e367894d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_monthly where shopify_shop_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_product_family.5839116aa9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___7ecb515d14e8b52d027eab6622cdbc37.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_product_family.5839116aa9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_product_family"], "alias": "not_null_analytics___finance___7ecb515d14e8b52d027eab6622cdbc37", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___7ecb515d14e8b52d027eab6622cdbc37", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___7ecb515d14e8b52d027eab6622cdbc37"}, "created_at": 1700082638.2944517, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___7ecb515d14e8b52d027eab6622cdbc37\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml/not_null_analytics___finance___7ecb515d14e8b52d027eab6622cdbc37.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_monthly where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_revenue_in_usd.fd40f220be": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "revenue_in_usd", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_revenue_in_usd", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___dc66030a2376489bf4b583365eed2b1d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_revenue_in_usd.fd40f220be", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_revenue_in_usd"], "alias": "not_null_analytics___finance___dc66030a2376489bf4b583365eed2b1d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___dc66030a2376489bf4b583365eed2b1d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___dc66030a2376489bf4b583365eed2b1d"}, "created_at": 1700082638.3013427, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___dc66030a2376489bf4b583365eed2b1d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml/not_null_analytics___finance___dc66030a2376489bf4b583365eed2b1d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_monthly where revenue_in_usd is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "revenue_in_usd", "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_1.ede3eb3b2d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6ad12aa6f8dde36ba49cd38e1bd3f651.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_1.ede3eb3b2d", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_1"], "alias": "dbt_expectations_expect_table__6ad12aa6f8dde36ba49cd38e1bd3f651", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6ad12aa6f8dde36ba49cd38e1bd3f651", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6ad12aa6f8dde36ba49cd38e1bd3f651"}, "created_at": 1700082638.3077798, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6ad12aa6f8dde36ba49cd38e1bd3f651\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml/dbt_expectations_expect_table__6ad12aa6f8dde36ba49cd38e1bd3f651.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id__month__product_family.ef6166cce5": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["shopify_shop_id", "month", "product_family"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_store_product_usage_revenue_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id__month__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_42f53eeb3c4567a466d260a0a654330b.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id__month__product_family.ef6166cce5", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id__month__product_family"], "alias": "dbt_utils_unique_combination_o_42f53eeb3c4567a466d260a0a654330b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_42f53eeb3c4567a466d260a0a654330b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_42f53eeb3c4567a466d260a0a654330b"}, "created_at": 1700082638.3137307, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_42f53eeb3c4567a466d260a0a654330b\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.yml/dbt_utils_unique_combination_o_42f53eeb3c4567a466d260a0a654330b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n shopify_shop_id, month, product_family\n from dev_dkruh1.analytics___finance__shopify_billing_store_product_usage_revenue_monthly\n group by shopify_shop_id, month, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_subscription_mrr_over_time_1.8d6adb1920": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_subscription_mrr_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_subscription_mrr_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__410b51d6e16b64a65319a246c5aae2c1.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_subscription_mrr_over_time_1.8d6adb1920", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_subscription_mrr_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_subscription_mrr_over_time_1"], "alias": "dbt_expectations_expect_table__410b51d6e16b64a65319a246c5aae2c1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__410b51d6e16b64a65319a246c5aae2c1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__410b51d6e16b64a65319a246c5aae2c1"}, "created_at": 1700082638.3483956, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__410b51d6e16b64a65319a246c5aae2c1\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.yml/dbt_expectations_expect_table__410b51d6e16b64a65319a246c5aae2c1.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_billing_subscription_mrr_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_subscription_mrr_over_time_shopify_shop_id__charge_id__event_category__event_action__product_family__from_time.cb5d27880a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["shopify_shop_id", "charge_id", "event_category", "event_action", "product_family", "from_time"], "model": "{{ get_where_subquery(ref('analytics___finance__shopify_billing_subscription_mrr_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_subscription_mrr_over_time_shopify_shop_id__charge_id__event_category__event_action__product_family__from_time", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_506cfb14e4046b5a15d6c75cfa7b7fe4.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_subscription_mrr_over_time_shopify_shop_id__charge_id__event_category__event_action__product_family__from_time.cb5d27880a", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_billing_subscription_mrr_over_time", "dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_subscription_mrr_over_time_shopify_shop_id__charge_id__event_category__event_action__product_family__from_time"], "alias": "dbt_utils_unique_combination_o_506cfb14e4046b5a15d6c75cfa7b7fe4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_506cfb14e4046b5a15d6c75cfa7b7fe4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_506cfb14e4046b5a15d6c75cfa7b7fe4"}, "created_at": 1700082638.354392, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_506cfb14e4046b5a15d6c75cfa7b7fe4\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_billing_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.yml/dbt_utils_unique_combination_o_506cfb14e4046b5a15d6c75cfa7b7fe4.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n shopify_shop_id, charge_id, event_category, event_action, product_family, from_time\n from dev_dkruh1.analytics___finance__shopify_billing_subscription_mrr_over_time\n group by shopify_shop_id, charge_id, event_category, event_action, product_family, from_time\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_billing_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time"}, "test.yoda.not_null_analytics___finance__shopify_store_mapping_shopify_shop_id.bd2ce1037f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_store_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_store_mapping_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___3ce189f7dc00f5264292f526e01a0b18.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_store_mapping_shopify_shop_id.bd2ce1037f", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_store_mapping", "not_null_analytics___finance__shopify_store_mapping_shopify_shop_id"], "alias": "not_null_analytics___finance___3ce189f7dc00f5264292f526e01a0b18", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___3ce189f7dc00f5264292f526e01a0b18", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___3ce189f7dc00f5264292f526e01a0b18"}, "created_at": 1700082638.391037, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___3ce189f7dc00f5264292f526e01a0b18\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_store_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_store_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.yml/not_null_analytics___finance___3ce189f7dc00f5264292f526e01a0b18.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_store_mapping where shopify_shop_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_store_mapping", "attached_node": "model.yoda.analytics___finance__shopify_store_mapping"}, "test.yoda.unique_analytics___finance__shopify_store_mapping_shopify_shop_id.69a26f816b": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "shopify_shop_id", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_store_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__shopify_store_mapping_shopify_shop_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__sh_a77600108c19b83037c116844eec8617.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.yml", "unique_id": "test.yoda.unique_analytics___finance__shopify_store_mapping_shopify_shop_id.69a26f816b", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_store_mapping", "unique_analytics___finance__shopify_store_mapping_shopify_shop_id"], "alias": "unique_analytics___finance__sh_a77600108c19b83037c116844eec8617", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__sh_a77600108c19b83037c116844eec8617", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__sh_a77600108c19b83037c116844eec8617"}, "created_at": 1700082638.3977625, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__sh_a77600108c19b83037c116844eec8617\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_store_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_store_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.yml/unique_analytics___finance__sh_a77600108c19b83037c116844eec8617.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select shopify_shop_id from dev_dkruh1.analytics___finance__shopify_store_mapping where shopify_shop_id is not null group by shopify_shop_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_shop_id", "file_key_name": "models.analytics___finance__shopify_store_mapping", "attached_node": "model.yoda.analytics___finance__shopify_store_mapping"}, "test.yoda.not_null_analytics___finance__shopify_store_mapping_is_single_app_key.d65d95efba": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_single_app_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_store_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_store_mapping_is_single_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___562f1249e36bdc79419a4f40ac416e7b.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_store_mapping_is_single_app_key.d65d95efba", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_store_mapping", "not_null_analytics___finance__shopify_store_mapping_is_single_app_key"], "alias": "not_null_analytics___finance___562f1249e36bdc79419a4f40ac416e7b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___562f1249e36bdc79419a4f40ac416e7b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___562f1249e36bdc79419a4f40ac416e7b"}, "created_at": 1700082638.4043844, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___562f1249e36bdc79419a4f40ac416e7b\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_store_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_store_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.yml/not_null_analytics___finance___562f1249e36bdc79419a4f40ac416e7b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_store_mapping where is_single_app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_single_app_key", "file_key_name": "models.analytics___finance__shopify_store_mapping", "attached_node": "model.yoda.analytics___finance__shopify_store_mapping"}, "test.yoda.not_null_analytics___finance__shopify_store_mapping_is_multiple_app_key.eab434a117": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_multiple_app_key", "model": "{{ get_where_subquery(ref('analytics___finance__shopify_store_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__shopify_store_mapping_is_multiple_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___3a8bf5e81a3c9bd473ec9e43601aa981.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.yml", "unique_id": "test.yoda.not_null_analytics___finance__shopify_store_mapping_is_multiple_app_key.eab434a117", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_store_mapping", "not_null_analytics___finance__shopify_store_mapping_is_multiple_app_key"], "alias": "not_null_analytics___finance___3a8bf5e81a3c9bd473ec9e43601aa981", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___3a8bf5e81a3c9bd473ec9e43601aa981", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___3a8bf5e81a3c9bd473ec9e43601aa981"}, "created_at": 1700082638.4112506, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___3a8bf5e81a3c9bd473ec9e43601aa981\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_store_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_store_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.yml/not_null_analytics___finance___3a8bf5e81a3c9bd473ec9e43601aa981.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__shopify_store_mapping where is_multiple_app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_multiple_app_key", "file_key_name": "models.analytics___finance__shopify_store_mapping", "attached_node": "model.yoda.analytics___finance__shopify_store_mapping"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_store_mapping_1.2b664f5779": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__shopify_store_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_store_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c299fabb06562c71623225a018f1847e.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_store_mapping_1.2b664f5779", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__shopify_store_mapping", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_store_mapping_1"], "alias": "dbt_expectations_expect_table__c299fabb06562c71623225a018f1847e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c299fabb06562c71623225a018f1847e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c299fabb06562c71623225a018f1847e"}, "created_at": 1700082638.4187205, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c299fabb06562c71623225a018f1847e\") }}", "language": "sql", "refs": [{"name": "analytics___finance__shopify_store_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__shopify_store_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.yml/dbt_expectations_expect_table__c299fabb06562c71623225a018f1847e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__shopify_store_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__shopify_store_mapping", "attached_node": "model.yoda.analytics___finance__shopify_store_mapping"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_account_1.d6a6bfb851": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_account')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_account_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__1b28eb1d03598e4096c241487b50bc65.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_account_1.d6a6bfb851", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_account", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_account_1"], "alias": "dbt_expectations_expect_table__1b28eb1d03598e4096c241487b50bc65", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__1b28eb1d03598e4096c241487b50bc65", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__1b28eb1d03598e4096c241487b50bc65"}, "created_at": 1700082638.469356, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__1b28eb1d03598e4096c241487b50bc65\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.yml/dbt_expectations_expect_table__1b28eb1d03598e4096c241487b50bc65.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_account\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_account", "attached_node": "model.yoda.analytics___finance__zuora_account"}, "test.yoda.unique_analytics___finance__zuora_invoice_invoice_id.4a2d31e824": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "invoice_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_invoice')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__zuora_invoice_invoice_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__zuora_invoice_invoice_id.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.yml", "unique_id": "test.yoda.unique_analytics___finance__zuora_invoice_invoice_id.4a2d31e824", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_invoice", "unique_analytics___finance__zuora_invoice_invoice_id"], "alias": "unique_analytics___finance__zuora_invoice_invoice_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082638.5049832, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.yml/unique_analytics___finance__zuora_invoice_invoice_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select invoice_id from dev_dkruh1.analytics___finance__zuora_invoice where invoice_id is not null group by invoice_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_id", "file_key_name": "models.analytics___finance__zuora_invoice", "attached_node": "model.yoda.analytics___finance__zuora_invoice"}, "test.yoda.not_null_analytics___finance__zuora_invoice_invoice_id.7d3f682520": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "invoice_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_invoice')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_invoice_invoice_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance__zuora_invoice_invoice_id.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_invoice_invoice_id.7d3f682520", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_invoice", "not_null_analytics___finance__zuora_invoice_invoice_id"], "alias": "not_null_analytics___finance__zuora_invoice_invoice_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082638.5103064, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.yml/not_null_analytics___finance__zuora_invoice_invoice_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_invoice where invoice_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_id", "file_key_name": "models.analytics___finance__zuora_invoice", "attached_node": "model.yoda.analytics___finance__zuora_invoice"}, "test.yoda.unique_analytics___finance__zuora_invoice_invoice_number.749c6fd322": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "invoice_number", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_invoice')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__zuora_invoice_invoice_number", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__zuora_invoice_invoice_number.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.yml", "unique_id": "test.yoda.unique_analytics___finance__zuora_invoice_invoice_number.749c6fd322", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_invoice", "unique_analytics___finance__zuora_invoice_invoice_number"], "alias": "unique_analytics___finance__zuora_invoice_invoice_number", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082638.515147, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.yml/unique_analytics___finance__zuora_invoice_invoice_number.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select invoice_number from dev_dkruh1.analytics___finance__zuora_invoice where invoice_number is not null group by invoice_number having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_number", "file_key_name": "models.analytics___finance__zuora_invoice", "attached_node": "model.yoda.analytics___finance__zuora_invoice"}, "test.yoda.not_null_analytics___finance__zuora_invoice_invoice_number.e5c0b4eb1e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "invoice_number", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_invoice')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_invoice_invoice_number", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance__zuora_invoice_invoice_number.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_invoice_invoice_number.e5c0b4eb1e", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_invoice", "not_null_analytics___finance__zuora_invoice_invoice_number"], "alias": "not_null_analytics___finance__zuora_invoice_invoice_number", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082638.5203319, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.yml/not_null_analytics___finance__zuora_invoice_invoice_number.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_invoice where invoice_number is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_number", "file_key_name": "models.analytics___finance__zuora_invoice", "attached_node": "model.yoda.analytics___finance__zuora_invoice"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_1.77faa035ea": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_invoice')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__16b9105c1b650b0460715e88779dceef.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_1.77faa035ea", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_invoice", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_1"], "alias": "dbt_expectations_expect_table__16b9105c1b650b0460715e88779dceef", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__16b9105c1b650b0460715e88779dceef", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__16b9105c1b650b0460715e88779dceef"}, "created_at": 1700082638.5263035, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__16b9105c1b650b0460715e88779dceef\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.yml/dbt_expectations_expect_table__16b9105c1b650b0460715e88779dceef.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_invoice\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_invoice", "attached_node": "model.yoda.analytics___finance__zuora_invoice"}, "test.yoda.unique_analytics___finance__zuora_invoice_item_invoice_item_id.bab2a249bc": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "invoice_item_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_invoice_item')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__zuora_invoice_item_invoice_item_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__zuora_invoice_item_invoice_item_id.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.yml", "unique_id": "test.yoda.unique_analytics___finance__zuora_invoice_item_invoice_item_id.bab2a249bc", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_invoice_item", "unique_analytics___finance__zuora_invoice_item_invoice_item_id"], "alias": "unique_analytics___finance__zuora_invoice_item_invoice_item_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082638.5620415, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_invoice_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_invoice_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.yml/unique_analytics___finance__zuora_invoice_item_invoice_item_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select invoice_item_id from dev_dkruh1.analytics___finance__zuora_invoice_item where invoice_item_id is not null group by invoice_item_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_item_id", "file_key_name": "models.analytics___finance__zuora_invoice_item", "attached_node": "model.yoda.analytics___finance__zuora_invoice_item"}, "test.yoda.not_null_analytics___finance__zuora_invoice_item_invoice_item_id.9f5069fe37": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "invoice_item_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_invoice_item')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_invoice_item_invoice_item_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___ae40f5580f5b57cc9e2146fd1c644fac.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_invoice_item_invoice_item_id.9f5069fe37", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_invoice_item", "not_null_analytics___finance__zuora_invoice_item_invoice_item_id"], "alias": "not_null_analytics___finance___ae40f5580f5b57cc9e2146fd1c644fac", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___ae40f5580f5b57cc9e2146fd1c644fac", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___ae40f5580f5b57cc9e2146fd1c644fac"}, "created_at": 1700082638.570098, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___ae40f5580f5b57cc9e2146fd1c644fac\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_invoice_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_invoice_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.yml/not_null_analytics___finance___ae40f5580f5b57cc9e2146fd1c644fac.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_invoice_item where invoice_item_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_item_id", "file_key_name": "models.analytics___finance__zuora_invoice_item", "attached_node": "model.yoda.analytics___finance__zuora_invoice_item"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_item_1.3dda76729d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_invoice_item')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_item_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__35fa5930312a2beb5cbeeac6279ace7d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_item_1.3dda76729d", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_invoice_item", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_item_1"], "alias": "dbt_expectations_expect_table__35fa5930312a2beb5cbeeac6279ace7d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__35fa5930312a2beb5cbeeac6279ace7d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__35fa5930312a2beb5cbeeac6279ace7d"}, "created_at": 1700082638.5781336, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__35fa5930312a2beb5cbeeac6279ace7d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_invoice_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_invoice_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.yml/dbt_expectations_expect_table__35fa5930312a2beb5cbeeac6279ace7d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_invoice_item\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_invoice_item", "attached_node": "model.yoda.analytics___finance__zuora_invoice_item"}, "test.yoda.unique_analytics___finance__zuora_order_mrr_details_order_mrr_id.d19fb7789d": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_mrr_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_order_mrr_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__zuora_order_mrr_details_order_mrr_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__zu_eee3e9c123e1fb75dbc556847806f06a.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.yml", "unique_id": "test.yoda.unique_analytics___finance__zuora_order_mrr_details_order_mrr_id.d19fb7789d", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_order_mrr_details", "unique_analytics___finance__zuora_order_mrr_details_order_mrr_id"], "alias": "unique_analytics___finance__zu_eee3e9c123e1fb75dbc556847806f06a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__zu_eee3e9c123e1fb75dbc556847806f06a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__zu_eee3e9c123e1fb75dbc556847806f06a"}, "created_at": 1700082638.6151965, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__zu_eee3e9c123e1fb75dbc556847806f06a\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_order_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_order_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.yml/unique_analytics___finance__zu_eee3e9c123e1fb75dbc556847806f06a.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_mrr_id from dev_dkruh1.analytics___finance__zuora_order_mrr_details where order_mrr_id is not null group by order_mrr_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_mrr_id", "file_key_name": "models.analytics___finance__zuora_order_mrr_details", "attached_node": "model.yoda.analytics___finance__zuora_order_mrr_details"}, "test.yoda.not_null_analytics___finance__zuora_order_mrr_details_order_mrr_id.8d58fc0e52": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_mrr_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_order_mrr_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_order_mrr_details_order_mrr_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___41396ce4083f2854e74efa81a898b462.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_order_mrr_details_order_mrr_id.8d58fc0e52", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_order_mrr_details", "not_null_analytics___finance__zuora_order_mrr_details_order_mrr_id"], "alias": "not_null_analytics___finance___41396ce4083f2854e74efa81a898b462", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___41396ce4083f2854e74efa81a898b462", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___41396ce4083f2854e74efa81a898b462"}, "created_at": 1700082638.621741, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___41396ce4083f2854e74efa81a898b462\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_order_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_order_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.yml/not_null_analytics___finance___41396ce4083f2854e74efa81a898b462.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_order_mrr_details where order_mrr_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_mrr_id", "file_key_name": "models.analytics___finance__zuora_order_mrr_details", "attached_node": "model.yoda.analytics___finance__zuora_order_mrr_details"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_order_mrr_details_1.19db9b2900": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_order_mrr_details')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_order_mrr_details_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5563fb297b38c238276e69fe7c0948d4.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_order_mrr_details_1.19db9b2900", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_order_mrr_details", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_order_mrr_details_1"], "alias": "dbt_expectations_expect_table__5563fb297b38c238276e69fe7c0948d4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5563fb297b38c238276e69fe7c0948d4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5563fb297b38c238276e69fe7c0948d4"}, "created_at": 1700082638.628251, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5563fb297b38c238276e69fe7c0948d4\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_order_mrr_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_order_mrr_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.yml/dbt_expectations_expect_table__5563fb297b38c238276e69fe7c0948d4.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_order_mrr_details\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_order_mrr_details", "attached_node": "model.yoda.analytics___finance__zuora_order_mrr_details"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_plan_rank_daily_1.84ed5d3e4a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_plan_rank_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_plan_rank_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__99e7729e71ca709582fb2829b7bd8631.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_plan_rank_daily_1.84ed5d3e4a", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_plan_rank_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_plan_rank_daily_1"], "alias": "dbt_expectations_expect_table__99e7729e71ca709582fb2829b7bd8631", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__99e7729e71ca709582fb2829b7bd8631", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__99e7729e71ca709582fb2829b7bd8631"}, "created_at": 1700082638.661757, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__99e7729e71ca709582fb2829b7bd8631\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_plan_rank_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_plan_rank_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.yml/dbt_expectations_expect_table__99e7729e71ca709582fb2829b7bd8631.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_organization_plan_rank_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_plan_rank_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_plan_rank_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_plan_rank_daily_date__organization_key__product_family__is_core_plan__plan_rank.c1756e927e": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "organization_key", "product_family", "is_core_plan", "plan_rank"], "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_plan_rank_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_plan_rank_daily_date__organization_key__product_family__is_core_plan__plan_rank", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_c2d0a74a4d29d88fd62176f1f95ccd34.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_plan_rank_daily_date__organization_key__product_family__is_core_plan__plan_rank.c1756e927e", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_plan_rank_daily", "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_plan_rank_daily_date__organization_key__product_family__is_core_plan__plan_rank"], "alias": "dbt_utils_unique_combination_o_c2d0a74a4d29d88fd62176f1f95ccd34", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c2d0a74a4d29d88fd62176f1f95ccd34", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c2d0a74a4d29d88fd62176f1f95ccd34"}, "created_at": 1700082638.6682255, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c2d0a74a4d29d88fd62176f1f95ccd34\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_plan_rank_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_plan_rank_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.yml/dbt_utils_unique_combination_o_c2d0a74a4d29d88fd62176f1f95ccd34.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, organization_key, product_family, is_core_plan, plan_rank\n from dev_dkruh1.analytics___finance__zuora_organization_plan_rank_daily\n group by date, organization_key, product_family, is_core_plan, plan_rank\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_plan_rank_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_plan_rank_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id.4cbb818989": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_group_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___4893919fad1383797f3373386f948aaf.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id.4cbb818989", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_group_mrr_monthly", "not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id"], "alias": "not_null_analytics___finance___4893919fad1383797f3373386f948aaf", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___4893919fad1383797f3373386f948aaf", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___4893919fad1383797f3373386f948aaf"}, "created_at": 1700082638.7402825, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___4893919fad1383797f3373386f948aaf\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_group_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml/not_null_analytics___finance___4893919fad1383797f3373386f948aaf.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_group_mrr_monthly where organization_product_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__zuora_organization_product_group_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"}, "test.yoda.unique_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id.66f9a5e39a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_group_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__zu_613785c13b992c397ce3cd73fe8dd842.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml", "unique_id": "test.yoda.unique_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id.66f9a5e39a", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_group_mrr_monthly", "unique_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id"], "alias": "unique_analytics___finance__zu_613785c13b992c397ce3cd73fe8dd842", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__zu_613785c13b992c397ce3cd73fe8dd842", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__zu_613785c13b992c397ce3cd73fe8dd842"}, "created_at": 1700082638.7481472, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__zu_613785c13b992c397ce3cd73fe8dd842\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_group_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml/unique_analytics___finance__zu_613785c13b992c397ce3cd73fe8dd842.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_product_month_id from dev_dkruh1.analytics___finance__zuora_organization_product_group_mrr_monthly where organization_product_month_id is not null group by organization_product_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___finance__zuora_organization_product_group_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_month.5774e450d3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_group_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___813dcf19a232e2fc40af44826369dd67.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_month.5774e450d3", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_group_mrr_monthly", "not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_month"], "alias": "not_null_analytics___finance___813dcf19a232e2fc40af44826369dd67", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___813dcf19a232e2fc40af44826369dd67", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___813dcf19a232e2fc40af44826369dd67"}, "created_at": 1700082638.7560244, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___813dcf19a232e2fc40af44826369dd67\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_group_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml/not_null_analytics___finance___813dcf19a232e2fc40af44826369dd67.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_group_mrr_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___finance__zuora_organization_product_group_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_key.0056de1a3b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_group_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___c509e0a639d53315936a504f37ce6d7c.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_key.0056de1a3b", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_group_mrr_monthly", "not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_key"], "alias": "not_null_analytics___finance___c509e0a639d53315936a504f37ce6d7c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___c509e0a639d53315936a504f37ce6d7c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___c509e0a639d53315936a504f37ce6d7c"}, "created_at": 1700082638.7624643, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___c509e0a639d53315936a504f37ce6d7c\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_group_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml/not_null_analytics___finance___c509e0a639d53315936a504f37ce6d7c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_group_mrr_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__zuora_organization_product_group_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_group.42833e7703": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family_group", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_group_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_group", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___26d395a17124a449e8bb25587be133bb.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_group.42833e7703", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_group_mrr_monthly", "not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_group"], "alias": "not_null_analytics___finance___26d395a17124a449e8bb25587be133bb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___26d395a17124a449e8bb25587be133bb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___26d395a17124a449e8bb25587be133bb"}, "created_at": 1700082638.7686415, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___26d395a17124a449e8bb25587be133bb\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_group_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml/not_null_analytics___finance___26d395a17124a449e8bb25587be133bb.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_group_mrr_monthly where product_family_group is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family_group", "file_key_name": "models.analytics___finance__zuora_organization_product_group_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_group_mrr_monthly_1.cc6934cfca": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_group_mrr_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_group_mrr_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6fec90d7116aada56cbd9b0f666df3e8.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_group_mrr_monthly_1.cc6934cfca", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_group_mrr_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_group_mrr_monthly_1"], "alias": "dbt_expectations_expect_table__6fec90d7116aada56cbd9b0f666df3e8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6fec90d7116aada56cbd9b0f666df3e8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6fec90d7116aada56cbd9b0f666df3e8"}, "created_at": 1700082638.7751207, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6fec90d7116aada56cbd9b0f666df3e8\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_group_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.yml/dbt_expectations_expect_table__6fec90d7116aada56cbd9b0f666df3e8.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_organization_product_group_mrr_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_product_group_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_date.dd206d41fe": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_mrr_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___a0454015f51e6e85ace145521c9244d1.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_date.dd206d41fe", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_daily", "not_null_analytics___finance__zuora_organization_product_mrr_daily_date"], "alias": "not_null_analytics___finance___a0454015f51e6e85ace145521c9244d1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___a0454015f51e6e85ace145521c9244d1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___a0454015f51e6e85ace145521c9244d1"}, "created_at": 1700082638.8143938, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___a0454015f51e6e85ace145521c9244d1\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml/not_null_analytics___finance___a0454015f51e6e85ace145521c9244d1.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_organization_key.df2381b395": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_mrr_daily_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___7d092ef2e5ae2b212c9f128c5985c1b5.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_organization_key.df2381b395", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_daily", "not_null_analytics___finance__zuora_organization_product_mrr_daily_organization_key"], "alias": "not_null_analytics___finance___7d092ef2e5ae2b212c9f128c5985c1b5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___7d092ef2e5ae2b212c9f128c5985c1b5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___7d092ef2e5ae2b212c9f128c5985c1b5"}, "created_at": 1700082638.8200138, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___7d092ef2e5ae2b212c9f128c5985c1b5\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml/not_null_analytics___finance___7d092ef2e5ae2b212c9f128c5985c1b5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_daily where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_product_family.26c4e497ab": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_mrr_daily_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___77364b447236cc009c2924756543e2d8.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_product_family.26c4e497ab", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_daily", "not_null_analytics___finance__zuora_organization_product_mrr_daily_product_family"], "alias": "not_null_analytics___finance___77364b447236cc009c2924756543e2d8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___77364b447236cc009c2924756543e2d8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___77364b447236cc009c2924756543e2d8"}, "created_at": 1700082638.8262222, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___77364b447236cc009c2924756543e2d8\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml/not_null_analytics___finance___77364b447236cc009c2924756543e2d8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_daily where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_main_plan_name.63bd73d114": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "main_plan_name", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_mrr_daily_main_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___612704b01972ce2b3cd66f6088aa14d0.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_main_plan_name.63bd73d114", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_daily", "not_null_analytics___finance__zuora_organization_product_mrr_daily_main_plan_name"], "alias": "not_null_analytics___finance___612704b01972ce2b3cd66f6088aa14d0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___612704b01972ce2b3cd66f6088aa14d0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___612704b01972ce2b3cd66f6088aa14d0"}, "created_at": 1700082638.8313398, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___612704b01972ce2b3cd66f6088aa14d0\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml/not_null_analytics___finance___612704b01972ce2b3cd66f6088aa14d0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_daily where main_plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "main_plan_name", "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_is_self_service.6b7df5683c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_self_service", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_mrr_daily_is_self_service", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___bba2efa6cd50916033bc79ef24b0751d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_is_self_service.6b7df5683c", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_daily", "not_null_analytics___finance__zuora_organization_product_mrr_daily_is_self_service"], "alias": "not_null_analytics___finance___bba2efa6cd50916033bc79ef24b0751d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___bba2efa6cd50916033bc79ef24b0751d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___bba2efa6cd50916033bc79ef24b0751d"}, "created_at": 1700082638.836671, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___bba2efa6cd50916033bc79ef24b0751d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml/not_null_analytics___finance___bba2efa6cd50916033bc79ef24b0751d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_daily where is_self_service is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_self_service", "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_is_annual_billing.6f279f4e03": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_annual_billing", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_mrr_daily_is_annual_billing", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___7929ca045da01940b95aebf53d13035d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_is_annual_billing.6f279f4e03", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_daily", "not_null_analytics___finance__zuora_organization_product_mrr_daily_is_annual_billing"], "alias": "not_null_analytics___finance___7929ca045da01940b95aebf53d13035d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___7929ca045da01940b95aebf53d13035d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___7929ca045da01940b95aebf53d13035d"}, "created_at": 1700082638.8419557, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___7929ca045da01940b95aebf53d13035d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml/not_null_analytics___finance___7929ca045da01940b95aebf53d13035d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_daily where is_annual_billing is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_annual_billing", "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_original_mrr_in_usd.d32e6c745d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "original_mrr_in_usd", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_mrr_daily_original_mrr_in_usd", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___5205c0b65a79c7f6daa72bb5577a735a.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_original_mrr_in_usd.d32e6c745d", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_daily", "not_null_analytics___finance__zuora_organization_product_mrr_daily_original_mrr_in_usd"], "alias": "not_null_analytics___finance___5205c0b65a79c7f6daa72bb5577a735a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___5205c0b65a79c7f6daa72bb5577a735a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___5205c0b65a79c7f6daa72bb5577a735a"}, "created_at": 1700082638.8473864, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___5205c0b65a79c7f6daa72bb5577a735a\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml/not_null_analytics___finance___5205c0b65a79c7f6daa72bb5577a735a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_daily where original_mrr_in_usd is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "original_mrr_in_usd", "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_effective_mrr_in_usd.d974e9d937": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "effective_mrr_in_usd", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_mrr_daily_effective_mrr_in_usd", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___2b1742264576066f766c28305494951e.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_effective_mrr_in_usd.d974e9d937", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_daily", "not_null_analytics___finance__zuora_organization_product_mrr_daily_effective_mrr_in_usd"], "alias": "not_null_analytics___finance___2b1742264576066f766c28305494951e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___2b1742264576066f766c28305494951e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___2b1742264576066f766c28305494951e"}, "created_at": 1700082638.852467, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___2b1742264576066f766c28305494951e\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml/not_null_analytics___finance___2b1742264576066f766c28305494951e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_daily where effective_mrr_in_usd is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "effective_mrr_in_usd", "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_daily_1.95defc894a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__692e3f7ca5e92e11c3e4266330db1aa9.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_daily_1.95defc894a", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_daily_1"], "alias": "dbt_expectations_expect_table__692e3f7ca5e92e11c3e4266330db1aa9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__692e3f7ca5e92e11c3e4266330db1aa9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__692e3f7ca5e92e11c3e4266330db1aa9"}, "created_at": 1700082638.8580506, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__692e3f7ca5e92e11c3e4266330db1aa9\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml/dbt_expectations_expect_table__692e3f7ca5e92e11c3e4266330db1aa9.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_daily_date__organization_key__product_family.6e113a0400": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "organization_key", "product_family"], "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_daily_date__organization_key__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_c57163cb713d67421556273dd4cffc6f.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_daily_date__organization_key__product_family.6e113a0400", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_daily", "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_daily_date__organization_key__product_family"], "alias": "dbt_utils_unique_combination_o_c57163cb713d67421556273dd4cffc6f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c57163cb713d67421556273dd4cffc6f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c57163cb713d67421556273dd4cffc6f"}, "created_at": 1700082638.863841, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c57163cb713d67421556273dd4cffc6f\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.yml/dbt_utils_unique_combination_o_c57163cb713d67421556273dd4cffc6f.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, organization_key, product_family\n from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_daily\n group by date, organization_key, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_month.8cc17141cb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_mrr_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___fd93e9c16bdd3288a9cd0af32391764d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_month.8cc17141cb", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_monthly", "not_null_analytics___finance__zuora_organization_product_mrr_monthly_month"], "alias": "not_null_analytics___finance___fd93e9c16bdd3288a9cd0af32391764d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___fd93e9c16bdd3288a9cd0af32391764d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___fd93e9c16bdd3288a9cd0af32391764d"}, "created_at": 1700082638.9303756, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___fd93e9c16bdd3288a9cd0af32391764d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.yml/not_null_analytics___finance___fd93e9c16bdd3288a9cd0af32391764d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_organization_key.850681ba82": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_mrr_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___504592086b5b141b929e8278d9beed77.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_organization_key.850681ba82", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_monthly", "not_null_analytics___finance__zuora_organization_product_mrr_monthly_organization_key"], "alias": "not_null_analytics___finance___504592086b5b141b929e8278d9beed77", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___504592086b5b141b929e8278d9beed77", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___504592086b5b141b929e8278d9beed77"}, "created_at": 1700082638.9359434, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___504592086b5b141b929e8278d9beed77\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.yml/not_null_analytics___finance___504592086b5b141b929e8278d9beed77.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_product_family.a5f0067ddf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_mrr_monthly_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___d6ff23c6eee0cf1b0785ff63ff103e54.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_product_family.a5f0067ddf", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_monthly", "not_null_analytics___finance__zuora_organization_product_mrr_monthly_product_family"], "alias": "not_null_analytics___finance___d6ff23c6eee0cf1b0785ff63ff103e54", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___d6ff23c6eee0cf1b0785ff63ff103e54", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___d6ff23c6eee0cf1b0785ff63ff103e54"}, "created_at": 1700082638.9413483, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___d6ff23c6eee0cf1b0785ff63ff103e54\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.yml/not_null_analytics___finance___d6ff23c6eee0cf1b0785ff63ff103e54.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_monthly where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_monthly_1.bf82b2f0cb": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a5c0b9fd2233a59c1fbe8dfd1a4d8bd0.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_monthly_1.bf82b2f0cb", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_monthly_1"], "alias": "dbt_expectations_expect_table__a5c0b9fd2233a59c1fbe8dfd1a4d8bd0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a5c0b9fd2233a59c1fbe8dfd1a4d8bd0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a5c0b9fd2233a59c1fbe8dfd1a4d8bd0"}, "created_at": 1700082638.9469972, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a5c0b9fd2233a59c1fbe8dfd1a4d8bd0\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.yml/dbt_expectations_expect_table__a5c0b9fd2233a59c1fbe8dfd1a4d8bd0.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_monthly_month__organization_key__product_family.717427adc4": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "organization_key", "product_family"], "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_mrr_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_monthly_month__organization_key__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_cc3e3532a7952d5a1dfe2fe8f45d36ce.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_monthly_month__organization_key__product_family.717427adc4", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_mrr_monthly", "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_monthly_month__organization_key__product_family"], "alias": "dbt_utils_unique_combination_o_cc3e3532a7952d5a1dfe2fe8f45d36ce", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_cc3e3532a7952d5a1dfe2fe8f45d36ce", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_cc3e3532a7952d5a1dfe2fe8f45d36ce"}, "created_at": 1700082638.9531918, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_cc3e3532a7952d5a1dfe2fe8f45d36ce\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.yml/dbt_utils_unique_combination_o_cc3e3532a7952d5a1dfe2fe8f45d36ce.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, organization_key, product_family\n from dev_dkruh1.analytics___finance__zuora_organization_product_mrr_monthly\n group by month, organization_key, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_product_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_invoice_number.8835a3cc46": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "invoice_number", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_charge_invoice_number", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___428a027065b9d2fccaaf1f9261af394f.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_invoice_number.8835a3cc46", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_charge", "not_null_analytics___finance__zuora_organization_product_usage_charge_invoice_number"], "alias": "not_null_analytics___finance___428a027065b9d2fccaaf1f9261af394f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___428a027065b9d2fccaaf1f9261af394f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___428a027065b9d2fccaaf1f9261af394f"}, "created_at": 1700082638.9772134, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___428a027065b9d2fccaaf1f9261af394f\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml/not_null_analytics___finance___428a027065b9d2fccaaf1f9261af394f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_charge where invoice_number is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_number", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_charge", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_charge"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_product_family.affec2c1f0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_charge_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___51c19f15c5d37dba5f7f3cf14e1dbaa8.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_product_family.affec2c1f0", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_charge", "not_null_analytics___finance__zuora_organization_product_usage_charge_product_family"], "alias": "not_null_analytics___finance___51c19f15c5d37dba5f7f3cf14e1dbaa8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___51c19f15c5d37dba5f7f3cf14e1dbaa8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___51c19f15c5d37dba5f7f3cf14e1dbaa8"}, "created_at": 1700082638.9828846, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___51c19f15c5d37dba5f7f3cf14e1dbaa8\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml/not_null_analytics___finance___51c19f15c5d37dba5f7f3cf14e1dbaa8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_charge where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_charge", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_charge"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_organization_key.7caa0f4783": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_charge_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___af79643ae1ee4aefa7dc0acdf392c7e1.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_organization_key.7caa0f4783", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_charge", "not_null_analytics___finance__zuora_organization_product_usage_charge_organization_key"], "alias": "not_null_analytics___finance___af79643ae1ee4aefa7dc0acdf392c7e1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___af79643ae1ee4aefa7dc0acdf392c7e1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___af79643ae1ee4aefa7dc0acdf392c7e1"}, "created_at": 1700082638.9887958, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___af79643ae1ee4aefa7dc0acdf392c7e1\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml/not_null_analytics___finance___af79643ae1ee4aefa7dc0acdf392c7e1.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_charge where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_charge", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_charge"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_date.6d42e97561": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_charge_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___90d6181e17d40ec8340b85d1a26f75bd.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_date.6d42e97561", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_charge", "not_null_analytics___finance__zuora_organization_product_usage_charge_date"], "alias": "not_null_analytics___finance___90d6181e17d40ec8340b85d1a26f75bd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___90d6181e17d40ec8340b85d1a26f75bd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___90d6181e17d40ec8340b85d1a26f75bd"}, "created_at": 1700082638.994186, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___90d6181e17d40ec8340b85d1a26f75bd\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml/not_null_analytics___finance___90d6181e17d40ec8340b85d1a26f75bd.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_charge where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_charge", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_charge"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_charge_amount_in_usd.095a7296e2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "charge_amount_in_usd", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_charge_charge_amount_in_usd", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___40e0553f2e79dbf9b6d3d68dd8b32512.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_charge_amount_in_usd.095a7296e2", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_charge", "not_null_analytics___finance__zuora_organization_product_usage_charge_charge_amount_in_usd"], "alias": "not_null_analytics___finance___40e0553f2e79dbf9b6d3d68dd8b32512", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___40e0553f2e79dbf9b6d3d68dd8b32512", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___40e0553f2e79dbf9b6d3d68dd8b32512"}, "created_at": 1700082638.999684, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___40e0553f2e79dbf9b6d3d68dd8b32512\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml/not_null_analytics___finance___40e0553f2e79dbf9b6d3d68dd8b32512.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_charge where charge_amount_in_usd is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "charge_amount_in_usd", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_charge", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_charge"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_charge_1.8c1d714744": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_charge')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_charge_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__47b77b4bb6cf2ae9fa970348c6693f37.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_charge_1.8c1d714744", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_charge", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_charge_1"], "alias": "dbt_expectations_expect_table__47b77b4bb6cf2ae9fa970348c6693f37", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__47b77b4bb6cf2ae9fa970348c6693f37", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__47b77b4bb6cf2ae9fa970348c6693f37"}, "created_at": 1700082639.0060139, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__47b77b4bb6cf2ae9fa970348c6693f37\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml/dbt_expectations_expect_table__47b77b4bb6cf2ae9fa970348c6693f37.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_organization_product_usage_charge\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_product_usage_charge", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_charge"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_charge_invoice_number__product_family.1ed5e6a046": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["invoice_number", "product_family"], "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_charge')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_charge_invoice_number__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_ee5a5efda24b5a3446c1fbad1490387b.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_charge_invoice_number__product_family.1ed5e6a046", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_charge", "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_charge_invoice_number__product_family"], "alias": "dbt_utils_unique_combination_o_ee5a5efda24b5a3446c1fbad1490387b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ee5a5efda24b5a3446c1fbad1490387b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ee5a5efda24b5a3446c1fbad1490387b"}, "created_at": 1700082639.0142152, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ee5a5efda24b5a3446c1fbad1490387b\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.yml/dbt_utils_unique_combination_o_ee5a5efda24b5a3446c1fbad1490387b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n invoice_number, product_family\n from dev_dkruh1.analytics___finance__zuora_organization_product_usage_charge\n group by invoice_number, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_product_usage_charge", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_charge"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_date.4fbdfebfdd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___cc0ded19e57314ab42fe911ae34b7958.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_date.4fbdfebfdd", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_daily", "not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_date"], "alias": "not_null_analytics___finance___cc0ded19e57314ab42fe911ae34b7958", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___cc0ded19e57314ab42fe911ae34b7958", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___cc0ded19e57314ab42fe911ae34b7958"}, "created_at": 1700082639.0391374, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___cc0ded19e57314ab42fe911ae34b7958\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml/not_null_analytics___finance___cc0ded19e57314ab42fe911ae34b7958.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_organization_key.f81812a892": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___d8622367ecc5916b1187d4b0c0c8b4ab.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_organization_key.f81812a892", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_daily", "not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_organization_key"], "alias": "not_null_analytics___finance___d8622367ecc5916b1187d4b0c0c8b4ab", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___d8622367ecc5916b1187d4b0c0c8b4ab", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___d8622367ecc5916b1187d4b0c0c8b4ab"}, "created_at": 1700082639.044672, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___d8622367ecc5916b1187d4b0c0c8b4ab\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml/not_null_analytics___finance___d8622367ecc5916b1187d4b0c0c8b4ab.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_daily where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_product_family.72785aeb22": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___b8ada55e9bf39ad6157016ffad82b02e.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_product_family.72785aeb22", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_daily", "not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_product_family"], "alias": "not_null_analytics___finance___b8ada55e9bf39ad6157016ffad82b02e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___b8ada55e9bf39ad6157016ffad82b02e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___b8ada55e9bf39ad6157016ffad82b02e"}, "created_at": 1700082639.0505357, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___b8ada55e9bf39ad6157016ffad82b02e\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml/not_null_analytics___finance___b8ada55e9bf39ad6157016ffad82b02e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_daily where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_charge_amount_in_usd.bc2675dae2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "charge_amount_in_usd", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_charge_amount_in_usd", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___41df0d0e0e642beea5007426fefcaf60.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_charge_amount_in_usd.bc2675dae2", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_daily", "not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_charge_amount_in_usd"], "alias": "not_null_analytics___finance___41df0d0e0e642beea5007426fefcaf60", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___41df0d0e0e642beea5007426fefcaf60", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___41df0d0e0e642beea5007426fefcaf60"}, "created_at": 1700082639.0586421, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___41df0d0e0e642beea5007426fefcaf60\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml/not_null_analytics___finance___41df0d0e0e642beea5007426fefcaf60.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_daily where charge_amount_in_usd is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "charge_amount_in_usd", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_daily_1.d1fa023f1c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2c31c1886cd91e7d4415b2d60ec61e51.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_daily_1.d1fa023f1c", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_daily_1"], "alias": "dbt_expectations_expect_table__2c31c1886cd91e7d4415b2d60ec61e51", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2c31c1886cd91e7d4415b2d60ec61e51", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2c31c1886cd91e7d4415b2d60ec61e51"}, "created_at": 1700082639.0657158, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2c31c1886cd91e7d4415b2d60ec61e51\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml/dbt_expectations_expect_table__2c31c1886cd91e7d4415b2d60ec61e51.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_daily_date__organization_key__product_family.8102f75a64": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "organization_key", "product_family"], "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_daily_date__organization_key__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_e04b5f0a3a4bd151b4d14b3452e24d37.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_daily_date__organization_key__product_family.8102f75a64", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_daily", "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_daily_date__organization_key__product_family"], "alias": "dbt_utils_unique_combination_o_e04b5f0a3a4bd151b4d14b3452e24d37", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_e04b5f0a3a4bd151b4d14b3452e24d37", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_e04b5f0a3a4bd151b4d14b3452e24d37"}, "created_at": 1700082639.0720499, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_e04b5f0a3a4bd151b4d14b3452e24d37\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.yml/dbt_utils_unique_combination_o_e04b5f0a3a4bd151b4d14b3452e24d37.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, organization_key, product_family\n from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_daily\n group by date, organization_key, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_daily", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_month.d4aa6a6008": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___bab509a1e143332c454f25debdaafd43.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_month.d4aa6a6008", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_monthly", "not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_month"], "alias": "not_null_analytics___finance___bab509a1e143332c454f25debdaafd43", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___bab509a1e143332c454f25debdaafd43", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___bab509a1e143332c454f25debdaafd43"}, "created_at": 1700082639.0953088, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___bab509a1e143332c454f25debdaafd43\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___bab509a1e143332c454f25debdaafd43.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_organization_key.331127cc07": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___ccd1de605d012b5aeaaf48d9d5975b7e.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_organization_key.331127cc07", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_monthly", "not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_organization_key"], "alias": "not_null_analytics___finance___ccd1de605d012b5aeaaf48d9d5975b7e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___ccd1de605d012b5aeaaf48d9d5975b7e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___ccd1de605d012b5aeaaf48d9d5975b7e"}, "created_at": 1700082639.1011105, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___ccd1de605d012b5aeaaf48d9d5975b7e\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___ccd1de605d012b5aeaaf48d9d5975b7e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_product_family.4ec26fbdeb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___6e360085b84406f9bc7c10d916e444e5.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_product_family.4ec26fbdeb", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_monthly", "not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_product_family"], "alias": "not_null_analytics___finance___6e360085b84406f9bc7c10d916e444e5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___6e360085b84406f9bc7c10d916e444e5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___6e360085b84406f9bc7c10d916e444e5"}, "created_at": 1700082639.106942, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___6e360085b84406f9bc7c10d916e444e5\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___6e360085b84406f9bc7c10d916e444e5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_monthly where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"}, "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_charge_amount_in_usd.c10db1799f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "charge_amount_in_usd", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_charge_amount_in_usd", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___21d5063e676fe076fe693fe363d0a424.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_charge_amount_in_usd.c10db1799f", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_monthly", "not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_charge_amount_in_usd"], "alias": "not_null_analytics___finance___21d5063e676fe076fe693fe363d0a424", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___21d5063e676fe076fe693fe363d0a424", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___21d5063e676fe076fe693fe363d0a424"}, "created_at": 1700082639.1135433, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___21d5063e676fe076fe693fe363d0a424\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml/not_null_analytics___finance___21d5063e676fe076fe693fe363d0a424.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_monthly where charge_amount_in_usd is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "charge_amount_in_usd", "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_monthly_1.44bcf8b756": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c87e2d1f6864fa5815e1870a9f6f4d29.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_monthly_1.44bcf8b756", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_monthly_1"], "alias": "dbt_expectations_expect_table__c87e2d1f6864fa5815e1870a9f6f4d29", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c87e2d1f6864fa5815e1870a9f6f4d29", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c87e2d1f6864fa5815e1870a9f6f4d29"}, "created_at": 1700082639.1187751, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c87e2d1f6864fa5815e1870a9f6f4d29\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml/dbt_expectations_expect_table__c87e2d1f6864fa5815e1870a9f6f4d29.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_monthly_month__organization_key__product_family.d3fa852547": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "organization_key", "product_family"], "model": "{{ get_where_subquery(ref('analytics___finance__zuora_organization_product_usage_revenue_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_monthly_month__organization_key__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_159851c213526cbb633a9817aae121cc.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_monthly_month__organization_key__product_family.d3fa852547", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_organization_product_usage_revenue_monthly", "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_monthly_month__organization_key__product_family"], "alias": "dbt_utils_unique_combination_o_159851c213526cbb633a9817aae121cc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_159851c213526cbb633a9817aae121cc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_159851c213526cbb633a9817aae121cc"}, "created_at": 1700082639.1245728, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_159851c213526cbb633a9817aae121cc\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.yml/dbt_utils_unique_combination_o_159851c213526cbb633a9817aae121cc.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, organization_key, product_family\n from dev_dkruh1.analytics___finance__zuora_organization_product_usage_revenue_monthly\n group by month, organization_key, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_organization_product_usage_revenue_monthly", "attached_node": "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"}, "test.yoda.unique_analytics___finance__zuora_parent_organization_organization_key.3f1e389552": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_parent_organization')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__zuora_parent_organization_organization_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__zu_8c41965206fd1859fdf6872b526ed195.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.yml", "unique_id": "test.yoda.unique_analytics___finance__zuora_parent_organization_organization_key.3f1e389552", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_parent_organization", "unique_analytics___finance__zuora_parent_organization_organization_key"], "alias": "unique_analytics___finance__zu_8c41965206fd1859fdf6872b526ed195", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__zu_8c41965206fd1859fdf6872b526ed195", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__zu_8c41965206fd1859fdf6872b526ed195"}, "created_at": 1700082639.1480217, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__zu_8c41965206fd1859fdf6872b526ed195\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_parent_organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_parent_organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.yml/unique_analytics___finance__zu_8c41965206fd1859fdf6872b526ed195.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_key from dev_dkruh1.analytics___finance__zuora_parent_organization where organization_key is not null group by organization_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__zuora_parent_organization", "attached_node": "model.yoda.analytics___finance__zuora_parent_organization"}, "test.yoda.not_null_analytics___finance__zuora_parent_organization_organization_key.c453b0d5f7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_parent_organization')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_parent_organization_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___4e71c8e3aaa116d766ff0bee96cf713a.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_parent_organization_organization_key.c453b0d5f7", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_parent_organization", "not_null_analytics___finance__zuora_parent_organization_organization_key"], "alias": "not_null_analytics___finance___4e71c8e3aaa116d766ff0bee96cf713a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___4e71c8e3aaa116d766ff0bee96cf713a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___4e71c8e3aaa116d766ff0bee96cf713a"}, "created_at": 1700082639.1535685, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___4e71c8e3aaa116d766ff0bee96cf713a\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_parent_organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_parent_organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.yml/not_null_analytics___finance___4e71c8e3aaa116d766ff0bee96cf713a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_parent_organization where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__zuora_parent_organization", "attached_node": "model.yoda.analytics___finance__zuora_parent_organization"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_parent_organization_1.1a67048426": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_parent_organization')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_parent_organization_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__70ca70e0c22accc6800557140ce849ea.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_parent_organization_1.1a67048426", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_parent_organization", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_parent_organization_1"], "alias": "dbt_expectations_expect_table__70ca70e0c22accc6800557140ce849ea", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__70ca70e0c22accc6800557140ce849ea", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__70ca70e0c22accc6800557140ce849ea"}, "created_at": 1700082639.1589704, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__70ca70e0c22accc6800557140ce849ea\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_parent_organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_parent_organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.yml/dbt_expectations_expect_table__70ca70e0c22accc6800557140ce849ea.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_parent_organization\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_parent_organization", "attached_node": "model.yoda.analytics___finance__zuora_parent_organization"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_product_1.87c20e8458": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_product')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_product_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7b56178c60c347a68f883449c7433699.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_product_1.87c20e8458", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_product", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_product_1"], "alias": "dbt_expectations_expect_table__7b56178c60c347a68f883449c7433699", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7b56178c60c347a68f883449c7433699", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7b56178c60c347a68f883449c7433699"}, "created_at": 1700082639.1841452, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7b56178c60c347a68f883449c7433699\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.yml/dbt_expectations_expect_table__7b56178c60c347a68f883449c7433699.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_product\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_product", "attached_node": "model.yoda.analytics___finance__zuora_product"}, "test.yoda.unique_analytics___finance__zuora_rateplan_charge_rateplan_charge_id.79f2e88568": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "rateplan_charge_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_rateplan_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance__zuora_rateplan_charge_rateplan_charge_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance__zu_612ec3e4c0767bc5d8e4f2d221e11a55.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.yml", "unique_id": "test.yoda.unique_analytics___finance__zuora_rateplan_charge_rateplan_charge_id.79f2e88568", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_rateplan_charge", "unique_analytics___finance__zuora_rateplan_charge_rateplan_charge_id"], "alias": "unique_analytics___finance__zu_612ec3e4c0767bc5d8e4f2d221e11a55", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance__zu_612ec3e4c0767bc5d8e4f2d221e11a55", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance__zu_612ec3e4c0767bc5d8e4f2d221e11a55"}, "created_at": 1700082639.2241054, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance__zu_612ec3e4c0767bc5d8e4f2d221e11a55\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.yml/unique_analytics___finance__zu_612ec3e4c0767bc5d8e4f2d221e11a55.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select rateplan_charge_id from dev_dkruh1.analytics___finance__zuora_rateplan_charge where rateplan_charge_id is not null group by rateplan_charge_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "rateplan_charge_id", "file_key_name": "models.analytics___finance__zuora_rateplan_charge", "attached_node": "model.yoda.analytics___finance__zuora_rateplan_charge"}, "test.yoda.not_null_analytics___finance__zuora_rateplan_charge_rateplan_charge_id.59142df7a4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "rateplan_charge_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_rateplan_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_rateplan_charge_rateplan_charge_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___ef1627a023a534c23d1a557f82667339.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_rateplan_charge_rateplan_charge_id.59142df7a4", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_rateplan_charge", "not_null_analytics___finance__zuora_rateplan_charge_rateplan_charge_id"], "alias": "not_null_analytics___finance___ef1627a023a534c23d1a557f82667339", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___ef1627a023a534c23d1a557f82667339", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___ef1627a023a534c23d1a557f82667339"}, "created_at": 1700082639.2311654, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___ef1627a023a534c23d1a557f82667339\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.yml/not_null_analytics___finance___ef1627a023a534c23d1a557f82667339.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_rateplan_charge where rateplan_charge_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "rateplan_charge_id", "file_key_name": "models.analytics___finance__zuora_rateplan_charge", "attached_node": "model.yoda.analytics___finance__zuora_rateplan_charge"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_rateplan_charge_1.b4c5b9b6f7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_rateplan_charge')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_rateplan_charge_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e1e2c0a4ab35227ad5d15e8d80ed35c2.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_rateplan_charge_1.b4c5b9b6f7", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_rateplan_charge", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_rateplan_charge_1"], "alias": "dbt_expectations_expect_table__e1e2c0a4ab35227ad5d15e8d80ed35c2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e1e2c0a4ab35227ad5d15e8d80ed35c2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e1e2c0a4ab35227ad5d15e8d80ed35c2"}, "created_at": 1700082639.236767, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e1e2c0a4ab35227ad5d15e8d80ed35c2\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.yml/dbt_expectations_expect_table__e1e2c0a4ab35227ad5d15e8d80ed35c2.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_rateplan_charge\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_rateplan_charge", "attached_node": "model.yoda.analytics___finance__zuora_rateplan_charge"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_1.86ae8c4469": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__69ddb7f79efdfc64b9feddee56d4cd17.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_1.86ae8c4469", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_1"], "alias": "dbt_expectations_expect_table__69ddb7f79efdfc64b9feddee56d4cd17", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__69ddb7f79efdfc64b9feddee56d4cd17", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__69ddb7f79efdfc64b9feddee56d4cd17"}, "created_at": 1700082639.2770023, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__69ddb7f79efdfc64b9feddee56d4cd17\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.yml/dbt_expectations_expect_table__69ddb7f79efdfc64b9feddee56d4cd17.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_subscription\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_subscription", "attached_node": "model.yoda.analytics___finance__zuora_subscription"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_date.0a9a5a82a8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance__zuora_subscription_mrr_daily_date.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_date.0a9a5a82a8", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "not_null_analytics___finance__zuora_subscription_mrr_daily_date"], "alias": "not_null_analytics___finance__zuora_subscription_mrr_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082639.3256214, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml/not_null_analytics___finance__zuora_subscription_mrr_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_subscription_id.f00d617682": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_daily_subscription_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___f413dc1077c4999a085347d672bf72c3.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_subscription_id.f00d617682", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "not_null_analytics___finance__zuora_subscription_mrr_daily_subscription_id"], "alias": "not_null_analytics___finance___f413dc1077c4999a085347d672bf72c3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___f413dc1077c4999a085347d672bf72c3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___f413dc1077c4999a085347d672bf72c3"}, "created_at": 1700082639.3314364, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___f413dc1077c4999a085347d672bf72c3\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml/not_null_analytics___finance___f413dc1077c4999a085347d672bf72c3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily where subscription_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_id", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_product_id.94153512f8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_daily_product_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___1cea219114a8ee9f7874eaf4467963e5.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_product_id.94153512f8", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "not_null_analytics___finance__zuora_subscription_mrr_daily_product_id"], "alias": "not_null_analytics___finance___1cea219114a8ee9f7874eaf4467963e5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___1cea219114a8ee9f7874eaf4467963e5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___1cea219114a8ee9f7874eaf4467963e5"}, "created_at": 1700082639.3367925, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___1cea219114a8ee9f7874eaf4467963e5\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml/not_null_analytics___finance___1cea219114a8ee9f7874eaf4467963e5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily where product_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_id", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_effective_mrr.639f26f005": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "effective_mrr", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_daily_effective_mrr", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___4a31bd9bb934e95a51ced2559e0867ad.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_effective_mrr.639f26f005", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "not_null_analytics___finance__zuora_subscription_mrr_daily_effective_mrr"], "alias": "not_null_analytics___finance___4a31bd9bb934e95a51ced2559e0867ad", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___4a31bd9bb934e95a51ced2559e0867ad", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___4a31bd9bb934e95a51ced2559e0867ad"}, "created_at": 1700082639.3423495, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___4a31bd9bb934e95a51ced2559e0867ad\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml/not_null_analytics___finance___4a31bd9bb934e95a51ced2559e0867ad.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily where effective_mrr is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "effective_mrr", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_free_month_mrr_impact.59303b1b08": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "free_month_mrr_impact", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_daily_free_month_mrr_impact", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___ba1edf8f8e9de1c9bb00a9ee5c4943cf.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_free_month_mrr_impact.59303b1b08", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "not_null_analytics___finance__zuora_subscription_mrr_daily_free_month_mrr_impact"], "alias": "not_null_analytics___finance___ba1edf8f8e9de1c9bb00a9ee5c4943cf", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___ba1edf8f8e9de1c9bb00a9ee5c4943cf", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___ba1edf8f8e9de1c9bb00a9ee5c4943cf"}, "created_at": 1700082639.3479016, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___ba1edf8f8e9de1c9bb00a9ee5c4943cf\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml/not_null_analytics___finance___ba1edf8f8e9de1c9bb00a9ee5c4943cf.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily where free_month_mrr_impact is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "free_month_mrr_impact", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_sales_free_month_mrr_impact.dc17f47db9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sales_free_month_mrr_impact", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_daily_sales_free_month_mrr_impact", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___471b4f05bee8bafb35710c76316cb243.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_sales_free_month_mrr_impact.dc17f47db9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "not_null_analytics___finance__zuora_subscription_mrr_daily_sales_free_month_mrr_impact"], "alias": "not_null_analytics___finance___471b4f05bee8bafb35710c76316cb243", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___471b4f05bee8bafb35710c76316cb243", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___471b4f05bee8bafb35710c76316cb243"}, "created_at": 1700082639.353242, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___471b4f05bee8bafb35710c76316cb243\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml/not_null_analytics___finance___471b4f05bee8bafb35710c76316cb243.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily where sales_free_month_mrr_impact is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sales_free_month_mrr_impact", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_csm_free_month_mrr_impact.596f52759a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "csm_free_month_mrr_impact", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_daily_csm_free_month_mrr_impact", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___562299e319dfbf91240a733d5e4769a6.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_csm_free_month_mrr_impact.596f52759a", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "not_null_analytics___finance__zuora_subscription_mrr_daily_csm_free_month_mrr_impact"], "alias": "not_null_analytics___finance___562299e319dfbf91240a733d5e4769a6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___562299e319dfbf91240a733d5e4769a6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___562299e319dfbf91240a733d5e4769a6"}, "created_at": 1700082639.358889, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___562299e319dfbf91240a733d5e4769a6\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml/not_null_analytics___finance___562299e319dfbf91240a733d5e4769a6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily where csm_free_month_mrr_impact is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "csm_free_month_mrr_impact", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_main_plan_name.682c024eec": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "main_plan_name", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_daily_main_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___d014f89297f1be7d740dbd9ea27cb8e8.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_main_plan_name.682c024eec", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "not_null_analytics___finance__zuora_subscription_mrr_daily_main_plan_name"], "alias": "not_null_analytics___finance___d014f89297f1be7d740dbd9ea27cb8e8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___d014f89297f1be7d740dbd9ea27cb8e8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___d014f89297f1be7d740dbd9ea27cb8e8"}, "created_at": 1700082639.3653252, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___d014f89297f1be7d740dbd9ea27cb8e8\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml/not_null_analytics___finance___d014f89297f1be7d740dbd9ea27cb8e8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily where main_plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "main_plan_name", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_is_main_plan_self_service.eb41f40585": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_main_plan_self_service", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_daily_is_main_plan_self_service", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___41954f920bd4e4f05c6c4053b9a6dfa0.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_is_main_plan_self_service.eb41f40585", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "not_null_analytics___finance__zuora_subscription_mrr_daily_is_main_plan_self_service"], "alias": "not_null_analytics___finance___41954f920bd4e4f05c6c4053b9a6dfa0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___41954f920bd4e4f05c6c4053b9a6dfa0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___41954f920bd4e4f05c6c4053b9a6dfa0"}, "created_at": 1700082639.3708813, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___41954f920bd4e4f05c6c4053b9a6dfa0\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml/not_null_analytics___finance___41954f920bd4e4f05c6c4053b9a6dfa0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily where is_main_plan_self_service is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_main_plan_self_service", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_daily_1.1bc0ae99c9": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__fe118a4d3a136111d851ae2ccd387899.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_daily_1.1bc0ae99c9", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_daily_1"], "alias": "dbt_expectations_expect_table__fe118a4d3a136111d851ae2ccd387899", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__fe118a4d3a136111d851ae2ccd387899", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__fe118a4d3a136111d851ae2ccd387899"}, "created_at": 1700082639.376151, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__fe118a4d3a136111d851ae2ccd387899\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml/dbt_expectations_expect_table__fe118a4d3a136111d851ae2ccd387899.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_subscription_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_daily_date__subscription_id__product_id.b30b14e644": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "subscription_id", "product_id"], "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_daily_date__subscription_id__product_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_88d0aac296c1f47412bbb2c41cd62697.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_daily_date__subscription_id__product_id.b30b14e644", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_daily", "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_daily_date__subscription_id__product_id"], "alias": "dbt_utils_unique_combination_o_88d0aac296c1f47412bbb2c41cd62697", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_88d0aac296c1f47412bbb2c41cd62697", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_88d0aac296c1f47412bbb2c41cd62697"}, "created_at": 1700082639.3822029, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_88d0aac296c1f47412bbb2c41cd62697\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.yml/dbt_utils_unique_combination_o_88d0aac296c1f47412bbb2c41cd62697.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, subscription_id, product_id\n from dev_dkruh1.analytics___finance__zuora_subscription_mrr_daily\n group by date, subscription_id, product_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_subscription_mrr_daily", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_daily"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_month.71fe49dc9b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___cf11df02e278a680f9de484436a2833d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_month.71fe49dc9b", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_monthly", "not_null_analytics___finance__zuora_subscription_mrr_monthly_month"], "alias": "not_null_analytics___finance___cf11df02e278a680f9de484436a2833d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___cf11df02e278a680f9de484436a2833d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___cf11df02e278a680f9de484436a2833d"}, "created_at": 1700082639.4631536, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___cf11df02e278a680f9de484436a2833d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.yml/not_null_analytics___finance___cf11df02e278a680f9de484436a2833d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_monthly"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_subscription_id.f2bbc77ad1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_monthly_subscription_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___197ad211ff1415c8b112c62a7fdb8480.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_subscription_id.f2bbc77ad1", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_monthly", "not_null_analytics___finance__zuora_subscription_mrr_monthly_subscription_id"], "alias": "not_null_analytics___finance___197ad211ff1415c8b112c62a7fdb8480", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___197ad211ff1415c8b112c62a7fdb8480", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___197ad211ff1415c8b112c62a7fdb8480"}, "created_at": 1700082639.4685543, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___197ad211ff1415c8b112c62a7fdb8480\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.yml/not_null_analytics___finance___197ad211ff1415c8b112c62a7fdb8480.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_monthly where subscription_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_id", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_monthly"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_product_id.2048dae403": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_monthly_product_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___ce77d6b9440b961d181643e5393d3f10.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_product_id.2048dae403", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_monthly", "not_null_analytics___finance__zuora_subscription_mrr_monthly_product_id"], "alias": "not_null_analytics___finance___ce77d6b9440b961d181643e5393d3f10", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___ce77d6b9440b961d181643e5393d3f10", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___ce77d6b9440b961d181643e5393d3f10"}, "created_at": 1700082639.4741387, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___ce77d6b9440b961d181643e5393d3f10\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.yml/not_null_analytics___finance___ce77d6b9440b961d181643e5393d3f10.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_monthly where product_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_id", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_monthly_1.5a085110c7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__111baa1813caf9d5c91989fe835fd91a.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_monthly_1.5a085110c7", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_monthly_1"], "alias": "dbt_expectations_expect_table__111baa1813caf9d5c91989fe835fd91a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__111baa1813caf9d5c91989fe835fd91a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__111baa1813caf9d5c91989fe835fd91a"}, "created_at": 1700082639.4802845, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__111baa1813caf9d5c91989fe835fd91a\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.yml/dbt_expectations_expect_table__111baa1813caf9d5c91989fe835fd91a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_subscription_mrr_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_subscription_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_monthly_month__subscription_id__product_id.e0f4250103": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "subscription_id", "product_id"], "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_monthly_month__subscription_id__product_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_8dc5ecb9bf494ffd8da281e3de361696.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_monthly_month__subscription_id__product_id.e0f4250103", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_monthly", "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_monthly_month__subscription_id__product_id"], "alias": "dbt_utils_unique_combination_o_8dc5ecb9bf494ffd8da281e3de361696", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_8dc5ecb9bf494ffd8da281e3de361696", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_8dc5ecb9bf494ffd8da281e3de361696"}, "created_at": 1700082639.4866164, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_8dc5ecb9bf494ffd8da281e3de361696\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.yml/dbt_utils_unique_combination_o_8dc5ecb9bf494ffd8da281e3de361696.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, subscription_id, product_id\n from dev_dkruh1.analytics___finance__zuora_subscription_mrr_monthly\n group by month, subscription_id, product_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_subscription_mrr_monthly", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_monthly"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_account_id.02b85d3d19": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_over_time_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___aa6e94246ca8836f3d2a883a594ec400.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_account_id.02b85d3d19", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "not_null_analytics___finance__zuora_subscription_mrr_over_time_account_id"], "alias": "not_null_analytics___finance___aa6e94246ca8836f3d2a883a594ec400", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___aa6e94246ca8836f3d2a883a594ec400", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___aa6e94246ca8836f3d2a883a594ec400"}, "created_at": 1700082639.5304859, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___aa6e94246ca8836f3d2a883a594ec400\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml/not_null_analytics___finance___aa6e94246ca8836f3d2a883a594ec400.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_organization_key.5b1c15d584": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_over_time_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___9697ee0a75d2f4bdf7f0fc8c9b626ffe.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_organization_key.5b1c15d584", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "not_null_analytics___finance__zuora_subscription_mrr_over_time_organization_key"], "alias": "not_null_analytics___finance___9697ee0a75d2f4bdf7f0fc8c9b626ffe", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___9697ee0a75d2f4bdf7f0fc8c9b626ffe", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___9697ee0a75d2f4bdf7f0fc8c9b626ffe"}, "created_at": 1700082639.536049, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___9697ee0a75d2f4bdf7f0fc8c9b626ffe\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml/not_null_analytics___finance___9697ee0a75d2f4bdf7f0fc8c9b626ffe.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_subscription_name.7cbbdea5ad": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_name", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_over_time_subscription_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___97a80a5dd7fac924bf0b6efc7db71340.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_subscription_name.7cbbdea5ad", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "not_null_analytics___finance__zuora_subscription_mrr_over_time_subscription_name"], "alias": "not_null_analytics___finance___97a80a5dd7fac924bf0b6efc7db71340", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___97a80a5dd7fac924bf0b6efc7db71340", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___97a80a5dd7fac924bf0b6efc7db71340"}, "created_at": 1700082639.5413885, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___97a80a5dd7fac924bf0b6efc7db71340\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml/not_null_analytics___finance___97a80a5dd7fac924bf0b6efc7db71340.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time where subscription_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_name", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_plan_name.720ed4a12d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_over_time_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___bcde42f46e11ca0a731116fbe5a8c9a4.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_plan_name.720ed4a12d", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "not_null_analytics___finance__zuora_subscription_mrr_over_time_plan_name"], "alias": "not_null_analytics___finance___bcde42f46e11ca0a731116fbe5a8c9a4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___bcde42f46e11ca0a731116fbe5a8c9a4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___bcde42f46e11ca0a731116fbe5a8c9a4"}, "created_at": 1700082639.5473318, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___bcde42f46e11ca0a731116fbe5a8c9a4\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml/not_null_analytics___finance___bcde42f46e11ca0a731116fbe5a8c9a4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time where plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_product_family.d81c469f76": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_over_time_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___70594d7413dc777866df040c828a1121.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_product_family.d81c469f76", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "not_null_analytics___finance__zuora_subscription_mrr_over_time_product_family"], "alias": "not_null_analytics___finance___70594d7413dc777866df040c828a1121", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___70594d7413dc777866df040c828a1121", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___70594d7413dc777866df040c828a1121"}, "created_at": 1700082639.5531204, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___70594d7413dc777866df040c828a1121\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml/not_null_analytics___finance___70594d7413dc777866df040c828a1121.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_from_date.8720ccc234": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_date", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_over_time_from_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___b5c8bb7556290fb08d612a25a8f12873.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_from_date.8720ccc234", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "not_null_analytics___finance__zuora_subscription_mrr_over_time_from_date"], "alias": "not_null_analytics___finance___b5c8bb7556290fb08d612a25a8f12873", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___b5c8bb7556290fb08d612a25a8f12873", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___b5c8bb7556290fb08d612a25a8f12873"}, "created_at": 1700082639.5586705, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___b5c8bb7556290fb08d612a25a8f12873\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml/not_null_analytics___finance___b5c8bb7556290fb08d612a25a8f12873.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time where from_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_date", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_to_date.004ad41083": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "to_date", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_over_time_to_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___6ef551230eb2a8059adc95f43b3b3467.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_to_date.004ad41083", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "not_null_analytics___finance__zuora_subscription_mrr_over_time_to_date"], "alias": "not_null_analytics___finance___6ef551230eb2a8059adc95f43b3b3467", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___6ef551230eb2a8059adc95f43b3b3467", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___6ef551230eb2a8059adc95f43b3b3467"}, "created_at": 1700082639.5643325, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___6ef551230eb2a8059adc95f43b3b3467\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml/not_null_analytics___finance___6ef551230eb2a8059adc95f43b3b3467.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time where to_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "to_date", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_is_self_service.f6cadb6bc4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_self_service", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_over_time_is_self_service", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___24eaeb7a09062d4768dba8839f41c109.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_is_self_service.f6cadb6bc4", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "not_null_analytics___finance__zuora_subscription_mrr_over_time_is_self_service"], "alias": "not_null_analytics___finance___24eaeb7a09062d4768dba8839f41c109", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___24eaeb7a09062d4768dba8839f41c109", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___24eaeb7a09062d4768dba8839f41c109"}, "created_at": 1700082639.569924, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___24eaeb7a09062d4768dba8839f41c109\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml/not_null_analytics___finance___24eaeb7a09062d4768dba8839f41c109.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time where is_self_service is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_self_service", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time"}, "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_is_annual_billing.b413810428": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_annual_billing", "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance__zuora_subscription_mrr_over_time_is_annual_billing", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance___9cfa8b82461a32d131d96e0107f226ab.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "unique_id": "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_is_annual_billing.b413810428", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "not_null_analytics___finance__zuora_subscription_mrr_over_time_is_annual_billing"], "alias": "not_null_analytics___finance___9cfa8b82461a32d131d96e0107f226ab", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance___9cfa8b82461a32d131d96e0107f226ab", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance___9cfa8b82461a32d131d96e0107f226ab"}, "created_at": 1700082639.575194, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance___9cfa8b82461a32d131d96e0107f226ab\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml/not_null_analytics___finance___9cfa8b82461a32d131d96e0107f226ab.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time where is_annual_billing is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_annual_billing", "file_key_name": "models.analytics___finance__zuora_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_over_time_1.9fa4a4390b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__20f4a3b858f0e69a47848a911359936d.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_over_time_1.9fa4a4390b", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_over_time_1"], "alias": "dbt_expectations_expect_table__20f4a3b858f0e69a47848a911359936d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__20f4a3b858f0e69a47848a911359936d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__20f4a3b858f0e69a47848a911359936d"}, "created_at": 1700082639.5816703, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__20f4a3b858f0e69a47848a911359936d\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml/dbt_expectations_expect_table__20f4a3b858f0e69a47848a911359936d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_over_time_subscription_name__product_id__from_date__to_date.0ac5274855": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["subscription_name", "product_id", "from_date", "to_date"], "model": "{{ get_where_subquery(ref('analytics___finance__zuora_subscription_mrr_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_over_time_subscription_name__product_id__from_date__to_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_a178169a17bbb44ea27b66bb0cef1cfb.sql", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_over_time_subscription_name__product_id__from_date__to_date.0ac5274855", "fqn": ["yoda", "analytics", "finance", "marts", "analytics___finance__zuora_subscription_mrr_over_time", "dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_over_time_subscription_name__product_id__from_date__to_date"], "alias": "dbt_utils_unique_combination_o_a178169a17bbb44ea27b66bb0cef1cfb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a178169a17bbb44ea27b66bb0cef1cfb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a178169a17bbb44ea27b66bb0cef1cfb"}, "created_at": 1700082639.5875702, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a178169a17bbb44ea27b66bb0cef1cfb\") }}", "language": "sql", "refs": [{"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.yml/dbt_utils_unique_combination_o_a178169a17bbb44ea27b66bb0cef1cfb.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n subscription_name, product_id, from_date, to_date\n from dev_dkruh1.analytics___finance__zuora_subscription_mrr_over_time\n group by subscription_name, product_id, from_date, to_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance__zuora_subscription_mrr_over_time", "attached_node": "model.yoda.analytics___finance__zuora_subscription_mrr_over_time"}, "test.yoda.not_null_analytics___finance_stg__order_deleted.661ba0afad": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "deleted", "model": "{{ get_where_subquery(ref('analytics___finance_stg__order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__order_deleted", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_stg__order_deleted.sql", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__order_deleted.661ba0afad", "fqn": ["yoda", "analytics", "finance", "staging", "base", "analytics___finance_stg__order", "not_null_analytics___finance_stg__order_deleted"], "alias": "not_null_analytics___finance_stg__order_deleted", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082640.2821589, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__order"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.yml/not_null_analytics___finance_stg__order_deleted.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__order where deleted is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "deleted", "file_key_name": "models.analytics___finance_stg__order", "attached_node": "model.yoda.analytics___finance_stg__order"}, "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_shop_id.20f441d8b1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shop_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__shopify_billing_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__shopify_billing_event_shop_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_stg__shopify_billing_event_shop_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_shop_id.20f441d8b1", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__shopify_billing_event", "not_null_analytics___finance_stg__shopify_billing_event_shop_id"], "alias": "not_null_analytics___finance_stg__shopify_billing_event_shop_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082640.9868648, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml/not_null_analytics___finance_stg__shopify_billing_event_shop_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__shopify_billing_event where shop_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shop_id", "file_key_name": "models.analytics___finance_stg__shopify_billing_event", "attached_node": "model.yoda.analytics___finance_stg__shopify_billing_event"}, "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_charge_id.f5d526b8d9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "charge_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__shopify_billing_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__shopify_billing_event_charge_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_s_6172cc70804e966585a0e15fa7b495de.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_charge_id.f5d526b8d9", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__shopify_billing_event", "not_null_analytics___finance_stg__shopify_billing_event_charge_id"], "alias": "not_null_analytics___finance_s_6172cc70804e966585a0e15fa7b495de", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance_s_6172cc70804e966585a0e15fa7b495de", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance_s_6172cc70804e966585a0e15fa7b495de"}, "created_at": 1700082640.9940095, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance_s_6172cc70804e966585a0e15fa7b495de\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml/not_null_analytics___finance_s_6172cc70804e966585a0e15fa7b495de.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__shopify_billing_event where charge_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "charge_id", "file_key_name": "models.analytics___finance_stg__shopify_billing_event", "attached_node": "model.yoda.analytics___finance_stg__shopify_billing_event"}, "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_event_category.89f1dfa8ec": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_category", "model": "{{ get_where_subquery(ref('analytics___finance_stg__shopify_billing_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__shopify_billing_event_event_category", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_s_78ae2bacc103a3f8fa4a728200dafb95.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_event_category.89f1dfa8ec", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__shopify_billing_event", "not_null_analytics___finance_stg__shopify_billing_event_event_category"], "alias": "not_null_analytics___finance_s_78ae2bacc103a3f8fa4a728200dafb95", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance_s_78ae2bacc103a3f8fa4a728200dafb95", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance_s_78ae2bacc103a3f8fa4a728200dafb95"}, "created_at": 1700082640.9994628, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance_s_78ae2bacc103a3f8fa4a728200dafb95\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml/not_null_analytics___finance_s_78ae2bacc103a3f8fa4a728200dafb95.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__shopify_billing_event where event_category is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_category", "file_key_name": "models.analytics___finance_stg__shopify_billing_event", "attached_node": "model.yoda.analytics___finance_stg__shopify_billing_event"}, "test.yoda.accepted_values_analytics___finance_stg__shopify_billing_event_event_category__USAGE_CHARGE__SUBSCRIPTION_CHARGE__ONE_TIME_CHARGE__RELATIONSHIP__CREDIT.6158d995df": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["USAGE_CHARGE", "SUBSCRIPTION_CHARGE", "ONE_TIME_CHARGE", "RELATIONSHIP", "CREDIT"], "column_name": "event_category", "model": "{{ get_where_subquery(ref('analytics___finance_stg__shopify_billing_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___finance_stg__shopify_billing_event_event_category__USAGE_CHARGE__SUBSCRIPTION_CHARGE__ONE_TIME_CHARGE__RELATIONSHIP__CREDIT", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___fi_ab4cce1a7ccdd1f95d741c8e1849d9b1.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml", "unique_id": "test.yoda.accepted_values_analytics___finance_stg__shopify_billing_event_event_category__USAGE_CHARGE__SUBSCRIPTION_CHARGE__ONE_TIME_CHARGE__RELATIONSHIP__CREDIT.6158d995df", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__shopify_billing_event", "accepted_values_analytics___finance_stg__shopify_billing_event_event_category__USAGE_CHARGE__SUBSCRIPTION_CHARGE__ONE_TIME_CHARGE__RELATIONSHIP__CREDIT"], "alias": "accepted_values_analytics___fi_ab4cce1a7ccdd1f95d741c8e1849d9b1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___fi_ab4cce1a7ccdd1f95d741c8e1849d9b1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___fi_ab4cce1a7ccdd1f95d741c8e1849d9b1"}, "created_at": 1700082641.0107343, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___fi_ab4cce1a7ccdd1f95d741c8e1849d9b1\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml/accepted_values_analytics___fi_ab4cce1a7ccdd1f95d741c8e1849d9b1.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n event_category as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___finance_stg__shopify_billing_event\n group by event_category\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'USAGE_CHARGE','SUBSCRIPTION_CHARGE','ONE_TIME_CHARGE','RELATIONSHIP','CREDIT'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_category", "file_key_name": "models.analytics___finance_stg__shopify_billing_event", "attached_node": "model.yoda.analytics___finance_stg__shopify_billing_event"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__shopify_billing_event_1.0498648224": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance_stg__shopify_billing_event')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__shopify_billing_event_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e9b71109c4926f5eb6b58322d8fc1d28.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__shopify_billing_event_1.0498648224", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__shopify_billing_event", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__shopify_billing_event_1"], "alias": "dbt_expectations_expect_table__e9b71109c4926f5eb6b58322d8fc1d28", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e9b71109c4926f5eb6b58322d8fc1d28", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e9b71109c4926f5eb6b58322d8fc1d28"}, "created_at": 1700082641.026415, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e9b71109c4926f5eb6b58322d8fc1d28\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml/dbt_expectations_expect_table__e9b71109c4926f5eb6b58322d8fc1d28.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance_stg__shopify_billing_event\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance_stg__shopify_billing_event", "attached_node": "model.yoda.analytics___finance_stg__shopify_billing_event"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance_stg__shopify_billing_event_shop_id__charge_id__event_type__product_family__created_at.8b8cd3e1ec": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["shop_id", "charge_id", "event_type", "product_family", "created_at"], "model": "{{ get_where_subquery(ref('analytics___finance_stg__shopify_billing_event')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___finance_stg__shopify_billing_event_shop_id__charge_id__event_type__product_family__created_at", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_77e9208b2f3c0cde8fde26e7f72c3652.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance_stg__shopify_billing_event_shop_id__charge_id__event_type__product_family__created_at.8b8cd3e1ec", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__shopify_billing_event", "dbt_utils_unique_combination_of_columns_analytics___finance_stg__shopify_billing_event_shop_id__charge_id__event_type__product_family__created_at"], "alias": "dbt_utils_unique_combination_o_77e9208b2f3c0cde8fde26e7f72c3652", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_77e9208b2f3c0cde8fde26e7f72c3652", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_77e9208b2f3c0cde8fde26e7f72c3652"}, "created_at": 1700082641.032724, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_77e9208b2f3c0cde8fde26e7f72c3652\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__shopify_billing_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__shopify_billing_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.yml/dbt_utils_unique_combination_o_77e9208b2f3c0cde8fde26e7f72c3652.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n shop_id, charge_id, event_type, product_family, created_at\n from dev_dkruh1.analytics___finance_stg__shopify_billing_event\n group by shop_id, charge_id, event_type, product_family, created_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance_stg__shopify_billing_event", "attached_node": "model.yoda.analytics___finance_stg__shopify_billing_event"}, "test.yoda.unique_analytics___finance_stg__zuora_account_account_id.74086a400e": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_account_account_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg__zuora_account_account_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_account_account_id.74086a400e", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_account", "unique_analytics___finance_stg__zuora_account_account_id"], "alias": "unique_analytics___finance_stg__zuora_account_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.0711813, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.yml/unique_analytics___finance_stg__zuora_account_account_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select account_id from dev_dkruh1.analytics___finance_stg__zuora_account where account_id is not null group by account_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___finance_stg__zuora_account", "attached_node": "model.yoda.analytics___finance_stg__zuora_account"}, "test.yoda.not_null_analytics___finance_stg__zuora_account_account_id.b8514ccbca": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_account_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_stg__zuora_account_account_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_account_account_id.b8514ccbca", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_account", "not_null_analytics___finance_stg__zuora_account_account_id"], "alias": "not_null_analytics___finance_stg__zuora_account_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.0768957, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.yml/not_null_analytics___finance_stg__zuora_account_account_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_account where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___finance_stg__zuora_account", "attached_node": "model.yoda.analytics___finance_stg__zuora_account"}, "test.yoda.accepted_values_analytics___finance_stg__zuora_account_account_status__Active__Canceled.1aa0c6e016": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["Active", "Canceled"], "column_name": "account_status", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___finance_stg__zuora_account_account_status__Active__Canceled", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___fi_56d673b6039b5efba5f58f23fd29c693.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.yml", "unique_id": "test.yoda.accepted_values_analytics___finance_stg__zuora_account_account_status__Active__Canceled.1aa0c6e016", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_account", "accepted_values_analytics___finance_stg__zuora_account_account_status__Active__Canceled"], "alias": "accepted_values_analytics___fi_56d673b6039b5efba5f58f23fd29c693", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___fi_56d673b6039b5efba5f58f23fd29c693", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___fi_56d673b6039b5efba5f58f23fd29c693"}, "created_at": 1700082641.0827384, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___fi_56d673b6039b5efba5f58f23fd29c693\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.yml/accepted_values_analytics___fi_56d673b6039b5efba5f58f23fd29c693.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n account_status as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___finance_stg__zuora_account\n group by account_status\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'Active','Canceled'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_status", "file_key_name": "models.analytics___finance_stg__zuora_account", "attached_node": "model.yoda.analytics___finance_stg__zuora_account"}, "test.yoda.not_null_analytics___finance_stg__zuora_account_yotpo_legal_entity.e323f6effe": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "yotpo_legal_entity", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_account_yotpo_legal_entity", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_s_283f792642a0fea33ecdffd294fb5a1d.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_account_yotpo_legal_entity.e323f6effe", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_account", "not_null_analytics___finance_stg__zuora_account_yotpo_legal_entity"], "alias": "not_null_analytics___finance_s_283f792642a0fea33ecdffd294fb5a1d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance_s_283f792642a0fea33ecdffd294fb5a1d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance_s_283f792642a0fea33ecdffd294fb5a1d"}, "created_at": 1700082641.0889153, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance_s_283f792642a0fea33ecdffd294fb5a1d\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.yml/not_null_analytics___finance_s_283f792642a0fea33ecdffd294fb5a1d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_account where yotpo_legal_entity is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "yotpo_legal_entity", "file_key_name": "models.analytics___finance_stg__zuora_account", "attached_node": "model.yoda.analytics___finance_stg__zuora_account"}, "test.yoda.not_null_analytics___finance_stg__zuora_account_payment_terms.b99de5f937": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "payment_terms", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_account_payment_terms", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_stg__zuora_account_payment_terms.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_account_payment_terms.b99de5f937", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_account", "not_null_analytics___finance_stg__zuora_account_payment_terms"], "alias": "not_null_analytics___finance_stg__zuora_account_payment_terms", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.0946207, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.yml/not_null_analytics___finance_stg__zuora_account_payment_terms.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_account where payment_terms is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "payment_terms", "file_key_name": "models.analytics___finance_stg__zuora_account", "attached_node": "model.yoda.analytics___finance_stg__zuora_account"}, "test.yoda.unique_analytics___finance_stg__zuora_contact_contact_id.ad234de390": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "contact_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_contact')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_contact_contact_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg__zuora_contact_contact_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_contact_contact_id.ad234de390", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_contact", "unique_analytics___finance_stg__zuora_contact_contact_id"], "alias": "unique_analytics___finance_stg__zuora_contact_contact_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.1318822, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_contact"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.yml/unique_analytics___finance_stg__zuora_contact_contact_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select contact_id from dev_dkruh1.analytics___finance_stg__zuora_contact where contact_id is not null group by contact_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "contact_id", "file_key_name": "models.analytics___finance_stg__zuora_contact", "attached_node": "model.yoda.analytics___finance_stg__zuora_contact"}, "test.yoda.not_null_analytics___finance_stg__zuora_contact_contact_id.fa6c7bf40a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "contact_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_contact')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_contact_contact_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_stg__zuora_contact_contact_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_contact_contact_id.fa6c7bf40a", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_contact", "not_null_analytics___finance_stg__zuora_contact_contact_id"], "alias": "not_null_analytics___finance_stg__zuora_contact_contact_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.1371312, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_contact"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.yml/not_null_analytics___finance_stg__zuora_contact_contact_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_contact where contact_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "contact_id", "file_key_name": "models.analytics___finance_stg__zuora_contact", "attached_node": "model.yoda.analytics___finance_stg__zuora_contact"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_contact_1.b4fd878d84": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_contact')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_contact_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8e994b5f92f76606f807269aba0774ca.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_contact_1.b4fd878d84", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_contact", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_contact_1"], "alias": "dbt_expectations_expect_table__8e994b5f92f76606f807269aba0774ca", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8e994b5f92f76606f807269aba0774ca", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8e994b5f92f76606f807269aba0774ca"}, "created_at": 1700082641.1425428, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8e994b5f92f76606f807269aba0774ca\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_contact"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.yml/dbt_expectations_expect_table__8e994b5f92f76606f807269aba0774ca.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance_stg__zuora_contact\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance_stg__zuora_contact", "attached_node": "model.yoda.analytics___finance_stg__zuora_contact"}, "test.yoda.unique_analytics___finance_stg__zuora_invoice_invoice_id.af69e576b7": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "invoice_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_invoice')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_invoice_invoice_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg__zuora_invoice_invoice_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_invoice_invoice_id.af69e576b7", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_invoice", "unique_analytics___finance_stg__zuora_invoice_invoice_id"], "alias": "unique_analytics___finance_stg__zuora_invoice_invoice_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.1756217, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.yml/unique_analytics___finance_stg__zuora_invoice_invoice_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select invoice_id from dev_dkruh1.analytics___finance_stg__zuora_invoice where invoice_id is not null group by invoice_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_id", "file_key_name": "models.analytics___finance_stg__zuora_invoice", "attached_node": "model.yoda.analytics___finance_stg__zuora_invoice"}, "test.yoda.not_null_analytics___finance_stg__zuora_invoice_invoice_id.fa486ec045": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "invoice_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_invoice')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_invoice_invoice_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_stg__zuora_invoice_invoice_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_invoice_invoice_id.fa486ec045", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_invoice", "not_null_analytics___finance_stg__zuora_invoice_invoice_id"], "alias": "not_null_analytics___finance_stg__zuora_invoice_invoice_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.1822972, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.yml/not_null_analytics___finance_stg__zuora_invoice_invoice_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_invoice where invoice_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_id", "file_key_name": "models.analytics___finance_stg__zuora_invoice", "attached_node": "model.yoda.analytics___finance_stg__zuora_invoice"}, "test.yoda.unique_analytics___finance_stg__zuora_invoice_invoice_number.a8d4d18316": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "invoice_number", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_invoice')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_invoice_invoice_number", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg__zuora_invoice_invoice_number.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_invoice_invoice_number.a8d4d18316", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_invoice", "unique_analytics___finance_stg__zuora_invoice_invoice_number"], "alias": "unique_analytics___finance_stg__zuora_invoice_invoice_number", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.187729, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.yml/unique_analytics___finance_stg__zuora_invoice_invoice_number.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select invoice_number from dev_dkruh1.analytics___finance_stg__zuora_invoice where invoice_number is not null group by invoice_number having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_number", "file_key_name": "models.analytics___finance_stg__zuora_invoice", "attached_node": "model.yoda.analytics___finance_stg__zuora_invoice"}, "test.yoda.not_null_analytics___finance_stg__zuora_invoice_invoice_number.d0b22978c8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "invoice_number", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_invoice')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_invoice_invoice_number", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_stg__zuora_invoice_invoice_number.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_invoice_invoice_number.d0b22978c8", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_invoice", "not_null_analytics___finance_stg__zuora_invoice_invoice_number"], "alias": "not_null_analytics___finance_stg__zuora_invoice_invoice_number", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.1932065, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.yml/not_null_analytics___finance_stg__zuora_invoice_invoice_number.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_invoice where invoice_number is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_number", "file_key_name": "models.analytics___finance_stg__zuora_invoice", "attached_node": "model.yoda.analytics___finance_stg__zuora_invoice"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_1.48f72abb55": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_invoice')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__9163e3b2442e23117cc1886570cf6d3b.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_1.48f72abb55", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_invoice", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_1"], "alias": "dbt_expectations_expect_table__9163e3b2442e23117cc1886570cf6d3b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__9163e3b2442e23117cc1886570cf6d3b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__9163e3b2442e23117cc1886570cf6d3b"}, "created_at": 1700082641.198618, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__9163e3b2442e23117cc1886570cf6d3b\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_invoice", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_invoice"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.yml/dbt_expectations_expect_table__9163e3b2442e23117cc1886570cf6d3b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance_stg__zuora_invoice\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance_stg__zuora_invoice", "attached_node": "model.yoda.analytics___finance_stg__zuora_invoice"}, "test.yoda.unique_analytics___finance_stg__zuora_invoice_item_invoice_item_id.4bb1dce193": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "invoice_item_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_invoice_item')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_invoice_item_invoice_item_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg_da6e3c591a6a8f0c695ac58dbe3fa7f9.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_invoice_item_invoice_item_id.4bb1dce193", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_invoice_item", "unique_analytics___finance_stg__zuora_invoice_item_invoice_item_id"], "alias": "unique_analytics___finance_stg_da6e3c591a6a8f0c695ac58dbe3fa7f9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance_stg_da6e3c591a6a8f0c695ac58dbe3fa7f9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance_stg_da6e3c591a6a8f0c695ac58dbe3fa7f9"}, "created_at": 1700082641.2308862, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance_stg_da6e3c591a6a8f0c695ac58dbe3fa7f9\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_invoice_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_invoice_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.yml/unique_analytics___finance_stg_da6e3c591a6a8f0c695ac58dbe3fa7f9.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select invoice_item_id from dev_dkruh1.analytics___finance_stg__zuora_invoice_item where invoice_item_id is not null group by invoice_item_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_item_id", "file_key_name": "models.analytics___finance_stg__zuora_invoice_item", "attached_node": "model.yoda.analytics___finance_stg__zuora_invoice_item"}, "test.yoda.not_null_analytics___finance_stg__zuora_invoice_item_invoice_item_id.efddab42e8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "invoice_item_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_invoice_item')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_invoice_item_invoice_item_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_s_e90ec0decdf786a41117c10104a2a0da.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_invoice_item_invoice_item_id.efddab42e8", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_invoice_item", "not_null_analytics___finance_stg__zuora_invoice_item_invoice_item_id"], "alias": "not_null_analytics___finance_s_e90ec0decdf786a41117c10104a2a0da", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance_s_e90ec0decdf786a41117c10104a2a0da", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance_s_e90ec0decdf786a41117c10104a2a0da"}, "created_at": 1700082641.2392476, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance_s_e90ec0decdf786a41117c10104a2a0da\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_invoice_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_invoice_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.yml/not_null_analytics___finance_s_e90ec0decdf786a41117c10104a2a0da.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_invoice_item where invoice_item_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "invoice_item_id", "file_key_name": "models.analytics___finance_stg__zuora_invoice_item", "attached_node": "model.yoda.analytics___finance_stg__zuora_invoice_item"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_item_1.0aa25db95d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_invoice_item')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_item_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7f6e148fa254efa3ccd02777217c4f4a.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_item_1.0aa25db95d", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_invoice_item", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_item_1"], "alias": "dbt_expectations_expect_table__7f6e148fa254efa3ccd02777217c4f4a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7f6e148fa254efa3ccd02777217c4f4a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7f6e148fa254efa3ccd02777217c4f4a"}, "created_at": 1700082641.2455266, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7f6e148fa254efa3ccd02777217c4f4a\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_invoice_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_invoice_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.yml/dbt_expectations_expect_table__7f6e148fa254efa3ccd02777217c4f4a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance_stg__zuora_invoice_item\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance_stg__zuora_invoice_item", "attached_node": "model.yoda.analytics___finance_stg__zuora_invoice_item"}, "test.yoda.unique_analytics___finance_stg__zuora_order_order_id.d60a00781c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_order_order_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg__zuora_order_order_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_order_order_id.d60a00781c", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_order", "unique_analytics___finance_stg__zuora_order_order_id"], "alias": "unique_analytics___finance_stg__zuora_order_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.273254, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.yml/unique_analytics___finance_stg__zuora_order_order_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_id from dev_dkruh1.analytics___finance_stg__zuora_order where order_id is not null group by order_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.analytics___finance_stg__zuora_order", "attached_node": "model.yoda.analytics___finance_stg__zuora_order"}, "test.yoda.not_null_analytics___finance_stg__zuora_order_order_id.21f0f9efb1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_order_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_stg__zuora_order_order_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_order_order_id.21f0f9efb1", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_order", "not_null_analytics___finance_stg__zuora_order_order_id"], "alias": "not_null_analytics___finance_stg__zuora_order_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.2787085, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.yml/not_null_analytics___finance_stg__zuora_order_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_order where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.analytics___finance_stg__zuora_order", "attached_node": "model.yoda.analytics___finance_stg__zuora_order"}, "test.yoda.unique_analytics___finance_stg__zuora_order_action_order_action_id.95c330a09f": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_action_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_order_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_order_action_order_action_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg_cda47029504fe7cde654ae7652dff2a6.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_order_action_order_action_id.95c330a09f", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_order_action", "unique_analytics___finance_stg__zuora_order_action_order_action_id"], "alias": "unique_analytics___finance_stg_cda47029504fe7cde654ae7652dff2a6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance_stg_cda47029504fe7cde654ae7652dff2a6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance_stg_cda47029504fe7cde654ae7652dff2a6"}, "created_at": 1700082641.3007512, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance_stg_cda47029504fe7cde654ae7652dff2a6\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_order_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_order_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.yml/unique_analytics___finance_stg_cda47029504fe7cde654ae7652dff2a6.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_action_id from dev_dkruh1.analytics___finance_stg__zuora_order_action where order_action_id is not null group by order_action_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_action_id", "file_key_name": "models.analytics___finance_stg__zuora_order_action", "attached_node": "model.yoda.analytics___finance_stg__zuora_order_action"}, "test.yoda.not_null_analytics___finance_stg__zuora_order_action_order_action_id.5eade19f0b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_action_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_order_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_order_action_order_action_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_s_36325296bdd1b9edbd453a3c3197540f.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_order_action_order_action_id.5eade19f0b", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_order_action", "not_null_analytics___finance_stg__zuora_order_action_order_action_id"], "alias": "not_null_analytics___finance_s_36325296bdd1b9edbd453a3c3197540f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance_s_36325296bdd1b9edbd453a3c3197540f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance_s_36325296bdd1b9edbd453a3c3197540f"}, "created_at": 1700082641.3078997, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance_s_36325296bdd1b9edbd453a3c3197540f\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_order_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_order_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.yml/not_null_analytics___finance_s_36325296bdd1b9edbd453a3c3197540f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_order_action where order_action_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_action_id", "file_key_name": "models.analytics___finance_stg__zuora_order_action", "attached_node": "model.yoda.analytics___finance_stg__zuora_order_action"}, "test.yoda.unique_analytics___finance_stg__zuora_order_mrr_order_mrr_id.e6f1cb1b9d": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_mrr_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_order_mrr')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_order_mrr_order_mrr_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg__zuora_order_mrr_order_mrr_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_order_mrr_order_mrr_id.e6f1cb1b9d", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_order_mrr", "unique_analytics___finance_stg__zuora_order_mrr_order_mrr_id"], "alias": "unique_analytics___finance_stg__zuora_order_mrr_order_mrr_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.3376558, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_order_mrr", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_order_mrr"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.yml/unique_analytics___finance_stg__zuora_order_mrr_order_mrr_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_mrr_id from dev_dkruh1.analytics___finance_stg__zuora_order_mrr where order_mrr_id is not null group by order_mrr_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_mrr_id", "file_key_name": "models.analytics___finance_stg__zuora_order_mrr", "attached_node": "model.yoda.analytics___finance_stg__zuora_order_mrr"}, "test.yoda.not_null_analytics___finance_stg__zuora_order_mrr_order_mrr_id.da423c9870": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_mrr_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_order_mrr')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_order_mrr_order_mrr_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_stg__zuora_order_mrr_order_mrr_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_order_mrr_order_mrr_id.da423c9870", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_order_mrr", "not_null_analytics___finance_stg__zuora_order_mrr_order_mrr_id"], "alias": "not_null_analytics___finance_stg__zuora_order_mrr_order_mrr_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.343357, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_order_mrr", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_order_mrr"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.yml/not_null_analytics___finance_stg__zuora_order_mrr_order_mrr_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_order_mrr where order_mrr_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_mrr_id", "file_key_name": "models.analytics___finance_stg__zuora_order_mrr", "attached_node": "model.yoda.analytics___finance_stg__zuora_order_mrr"}, "test.yoda.unique_analytics___finance_stg__zuora_product_product_id.9ede4941cc": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "product_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_product_product_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg__zuora_product_product_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_product_product_id.9ede4941cc", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_product", "unique_analytics___finance_stg__zuora_product_product_id"], "alias": "unique_analytics___finance_stg__zuora_product_product_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.3684483, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.yml/unique_analytics___finance_stg__zuora_product_product_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select product_id from dev_dkruh1.analytics___finance_stg__zuora_product where product_id is not null group by product_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_id", "file_key_name": "models.analytics___finance_stg__zuora_product", "attached_node": "model.yoda.analytics___finance_stg__zuora_product"}, "test.yoda.not_null_analytics___finance_stg__zuora_product_product_id.b512767e93": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_product_product_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_stg__zuora_product_product_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_product_product_id.b512767e93", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_product", "not_null_analytics___finance_stg__zuora_product_product_id"], "alias": "not_null_analytics___finance_stg__zuora_product_product_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.3736372, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.yml/not_null_analytics___finance_stg__zuora_product_product_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_product where product_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_id", "file_key_name": "models.analytics___finance_stg__zuora_product", "attached_node": "model.yoda.analytics___finance_stg__zuora_product"}, "test.yoda.unique_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id.e0702601de": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "product_rateplan_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_product_rateplan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg_7ffa2e437b3f39aa28cf549f1b44e0f7.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id.e0702601de", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_product_rateplan", "unique_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id"], "alias": "unique_analytics___finance_stg_7ffa2e437b3f39aa28cf549f1b44e0f7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance_stg_7ffa2e437b3f39aa28cf549f1b44e0f7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance_stg_7ffa2e437b3f39aa28cf549f1b44e0f7"}, "created_at": 1700082641.3951316, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance_stg_7ffa2e437b3f39aa28cf549f1b44e0f7\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_product_rateplan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_product_rateplan"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.yml/unique_analytics___finance_stg_7ffa2e437b3f39aa28cf549f1b44e0f7.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select product_rateplan_id from dev_dkruh1.analytics___finance_stg__zuora_product_rateplan where product_rateplan_id is not null group by product_rateplan_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_rateplan_id", "file_key_name": "models.analytics___finance_stg__zuora_product_rateplan", "attached_node": "model.yoda.analytics___finance_stg__zuora_product_rateplan"}, "test.yoda.not_null_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id.de6faab685": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_rateplan_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_product_rateplan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_s_4c9050ca78b5f33a241c4abf280dae01.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id.de6faab685", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_product_rateplan", "not_null_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id"], "alias": "not_null_analytics___finance_s_4c9050ca78b5f33a241c4abf280dae01", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance_s_4c9050ca78b5f33a241c4abf280dae01", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance_s_4c9050ca78b5f33a241c4abf280dae01"}, "created_at": 1700082641.400707, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance_s_4c9050ca78b5f33a241c4abf280dae01\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_product_rateplan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_product_rateplan"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.yml/not_null_analytics___finance_s_4c9050ca78b5f33a241c4abf280dae01.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_product_rateplan where product_rateplan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_rateplan_id", "file_key_name": "models.analytics___finance_stg__zuora_product_rateplan", "attached_node": "model.yoda.analytics___finance_stg__zuora_product_rateplan"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_1.e053e3685d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_product_rateplan')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d6ac9945fae659298fabc6d754192f9e.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_1.e053e3685d", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_product_rateplan", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_1"], "alias": "dbt_expectations_expect_table__d6ac9945fae659298fabc6d754192f9e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d6ac9945fae659298fabc6d754192f9e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d6ac9945fae659298fabc6d754192f9e"}, "created_at": 1700082641.4067187, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d6ac9945fae659298fabc6d754192f9e\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_product_rateplan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_product_rateplan"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.yml/dbt_expectations_expect_table__d6ac9945fae659298fabc6d754192f9e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance_stg__zuora_product_rateplan\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance_stg__zuora_product_rateplan", "attached_node": "model.yoda.analytics___finance_stg__zuora_product_rateplan"}, "test.yoda.unique_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id.e3c779bfac": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "product_rateplan_charge_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_product_rateplan_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg_8de83bac98fc0c2dcd2bfc266613bc6f.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id.e3c779bfac", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_product_rateplan_charge", "unique_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id"], "alias": "unique_analytics___finance_stg_8de83bac98fc0c2dcd2bfc266613bc6f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance_stg_8de83bac98fc0c2dcd2bfc266613bc6f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance_stg_8de83bac98fc0c2dcd2bfc266613bc6f"}, "created_at": 1700082641.4338074, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance_stg_8de83bac98fc0c2dcd2bfc266613bc6f\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_product_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_product_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.yml/unique_analytics___finance_stg_8de83bac98fc0c2dcd2bfc266613bc6f.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select product_rateplan_charge_id from dev_dkruh1.analytics___finance_stg__zuora_product_rateplan_charge where product_rateplan_charge_id is not null group by product_rateplan_charge_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_rateplan_charge_id", "file_key_name": "models.analytics___finance_stg__zuora_product_rateplan_charge", "attached_node": "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge"}, "test.yoda.not_null_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id.fa146f268c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_rateplan_charge_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_product_rateplan_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_s_1f40dfe72d459da65d51a19249ec94a1.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id.fa146f268c", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_product_rateplan_charge", "not_null_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id"], "alias": "not_null_analytics___finance_s_1f40dfe72d459da65d51a19249ec94a1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance_s_1f40dfe72d459da65d51a19249ec94a1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance_s_1f40dfe72d459da65d51a19249ec94a1"}, "created_at": 1700082641.439705, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance_s_1f40dfe72d459da65d51a19249ec94a1\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_product_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_product_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.yml/not_null_analytics___finance_s_1f40dfe72d459da65d51a19249ec94a1.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_product_rateplan_charge where product_rateplan_charge_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_rateplan_charge_id", "file_key_name": "models.analytics___finance_stg__zuora_product_rateplan_charge", "attached_node": "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_charge_1.9166ad1b55": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_product_rateplan_charge')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_charge_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5d8eed6aab07c24c90d8849c58803fba.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_charge_1.9166ad1b55", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_product_rateplan_charge", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_charge_1"], "alias": "dbt_expectations_expect_table__5d8eed6aab07c24c90d8849c58803fba", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5d8eed6aab07c24c90d8849c58803fba", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5d8eed6aab07c24c90d8849c58803fba"}, "created_at": 1700082641.4450917, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5d8eed6aab07c24c90d8849c58803fba\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_product_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_product_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.yml/dbt_expectations_expect_table__5d8eed6aab07c24c90d8849c58803fba.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance_stg__zuora_product_rateplan_charge\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance_stg__zuora_product_rateplan_charge", "attached_node": "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge"}, "test.yoda.unique_analytics___finance_stg__zuora_rateplan_rateplan_id.90cc0ea3f6": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "rateplan_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_rateplan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_rateplan_rateplan_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg__zuora_rateplan_rateplan_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_rateplan_rateplan_id.90cc0ea3f6", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan", "unique_analytics___finance_stg__zuora_rateplan_rateplan_id"], "alias": "unique_analytics___finance_stg__zuora_rateplan_rateplan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.471541, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.yml/unique_analytics___finance_stg__zuora_rateplan_rateplan_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select rateplan_id from dev_dkruh1.analytics___finance_stg__zuora_rateplan where rateplan_id is not null group by rateplan_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "rateplan_id", "file_key_name": "models.analytics___finance_stg__zuora_rateplan", "attached_node": "model.yoda.analytics___finance_stg__zuora_rateplan"}, "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_rateplan_id.4fafd2bd68": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "rateplan_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_rateplan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_rateplan_rateplan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_stg__zuora_rateplan_rateplan_id.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_rateplan_id.4fafd2bd68", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan", "not_null_analytics___finance_stg__zuora_rateplan_rateplan_id"], "alias": "not_null_analytics___finance_stg__zuora_rateplan_rateplan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.4771218, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.yml/not_null_analytics___finance_stg__zuora_rateplan_rateplan_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_rateplan where rateplan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "rateplan_id", "file_key_name": "models.analytics___finance_stg__zuora_rateplan", "attached_node": "model.yoda.analytics___finance_stg__zuora_rateplan"}, "test.yoda.unique_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id.c7aec7be38": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "rateplan_charge_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_rateplan_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg_76f8e1882002acbde4f55effb7109e36.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id.c7aec7be38", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan_charge", "unique_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id"], "alias": "unique_analytics___finance_stg_76f8e1882002acbde4f55effb7109e36", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance_stg_76f8e1882002acbde4f55effb7109e36", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance_stg_76f8e1882002acbde4f55effb7109e36"}, "created_at": 1700082641.5182984, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance_stg_76f8e1882002acbde4f55effb7109e36\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml/unique_analytics___finance_stg_76f8e1882002acbde4f55effb7109e36.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select rateplan_charge_id from dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge where rateplan_charge_id is not null group by rateplan_charge_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "rateplan_charge_id", "file_key_name": "models.analytics___finance_stg__zuora_rateplan_charge", "attached_node": "model.yoda.analytics___finance_stg__zuora_rateplan_charge"}, "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id.b9e1778fcb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "rateplan_charge_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_rateplan_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_s_2df2a4cdee130418490b98ed730f1347.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id.b9e1778fcb", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan_charge", "not_null_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id"], "alias": "not_null_analytics___finance_s_2df2a4cdee130418490b98ed730f1347", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance_s_2df2a4cdee130418490b98ed730f1347", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance_s_2df2a4cdee130418490b98ed730f1347"}, "created_at": 1700082641.524064, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance_s_2df2a4cdee130418490b98ed730f1347\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml/not_null_analytics___finance_s_2df2a4cdee130418490b98ed730f1347.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge where rateplan_charge_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "rateplan_charge_id", "file_key_name": "models.analytics___finance_stg__zuora_rateplan_charge", "attached_node": "model.yoda.analytics___finance_stg__zuora_rateplan_charge"}, "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_charge_model.a0921edb56": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "charge_model", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_rateplan_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_rateplan_charge_charge_model", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_s_afa2e21961852ac8c96eb26076c50e07.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_charge_model.a0921edb56", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan_charge", "not_null_analytics___finance_stg__zuora_rateplan_charge_charge_model"], "alias": "not_null_analytics___finance_s_afa2e21961852ac8c96eb26076c50e07", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance_s_afa2e21961852ac8c96eb26076c50e07", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance_s_afa2e21961852ac8c96eb26076c50e07"}, "created_at": 1700082641.5295484, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance_s_afa2e21961852ac8c96eb26076c50e07\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml/not_null_analytics___finance_s_afa2e21961852ac8c96eb26076c50e07.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge where charge_model is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "charge_model", "file_key_name": "models.analytics___finance_stg__zuora_rateplan_charge", "attached_node": "model.yoda.analytics___finance_stg__zuora_rateplan_charge"}, "test.yoda.accepted_values_analytics___finance_stg__zuora_rateplan_charge_charge_model__Overage_Pricing__Per_Unit_Pricing__Discount_Percentage__Flat_Fee_Pricing__Tiered_Pricing.2354526248": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["Overage Pricing", "Per Unit Pricing", "Discount-Percentage", "Flat Fee Pricing", "Tiered Pricing"], "column_name": "charge_model", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_rateplan_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___finance_stg__zuora_rateplan_charge_charge_model__Overage_Pricing__Per_Unit_Pricing__Discount_Percentage__Flat_Fee_Pricing__Tiered_Pricing", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___fi_3e7d4fb738488e9a78f282ea6ecba4f1.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml", "unique_id": "test.yoda.accepted_values_analytics___finance_stg__zuora_rateplan_charge_charge_model__Overage_Pricing__Per_Unit_Pricing__Discount_Percentage__Flat_Fee_Pricing__Tiered_Pricing.2354526248", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan_charge", "accepted_values_analytics___finance_stg__zuora_rateplan_charge_charge_model__Overage_Pricing__Per_Unit_Pricing__Discount_Percentage__Flat_Fee_Pricing__Tiered_Pricing"], "alias": "accepted_values_analytics___fi_3e7d4fb738488e9a78f282ea6ecba4f1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___fi_3e7d4fb738488e9a78f282ea6ecba4f1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___fi_3e7d4fb738488e9a78f282ea6ecba4f1"}, "created_at": 1700082641.5352302, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___fi_3e7d4fb738488e9a78f282ea6ecba4f1\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml/accepted_values_analytics___fi_3e7d4fb738488e9a78f282ea6ecba4f1.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n charge_model as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge\n group by charge_model\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'Overage Pricing','Per Unit Pricing','Discount-Percentage','Flat Fee Pricing','Tiered Pricing'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "charge_model", "file_key_name": "models.analytics___finance_stg__zuora_rateplan_charge", "attached_node": "model.yoda.analytics___finance_stg__zuora_rateplan_charge"}, "test.yoda.accepted_values_analytics___finance_stg__zuora_rateplan_charge_billing_period__Annual__Eighteen_Months__Month__Semi_Annual__Quarter__None.172bea7771": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["Annual", "Eighteen Months", "Month", "Semi-Annual", "Quarter", null], "column_name": "billing_period", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_rateplan_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___finance_stg__zuora_rateplan_charge_billing_period__Annual__Eighteen_Months__Month__Semi_Annual__Quarter__None", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___fi_fbc77edd4c8d4e9909110804eda55f6a.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml", "unique_id": "test.yoda.accepted_values_analytics___finance_stg__zuora_rateplan_charge_billing_period__Annual__Eighteen_Months__Month__Semi_Annual__Quarter__None.172bea7771", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan_charge", "accepted_values_analytics___finance_stg__zuora_rateplan_charge_billing_period__Annual__Eighteen_Months__Month__Semi_Annual__Quarter__None"], "alias": "accepted_values_analytics___fi_fbc77edd4c8d4e9909110804eda55f6a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___fi_fbc77edd4c8d4e9909110804eda55f6a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___fi_fbc77edd4c8d4e9909110804eda55f6a"}, "created_at": 1700082641.543215, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___fi_fbc77edd4c8d4e9909110804eda55f6a\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml/accepted_values_analytics___fi_fbc77edd4c8d4e9909110804eda55f6a.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n billing_period as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge\n group by billing_period\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'Annual','Eighteen Months','Month','Semi-Annual','Quarter','None'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "billing_period", "file_key_name": "models.analytics___finance_stg__zuora_rateplan_charge", "attached_node": "model.yoda.analytics___finance_stg__zuora_rateplan_charge"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_1.0807747d55": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_rateplan_charge')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__255921d5eee3412c217abc9103879a76.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_1.0807747d55", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan_charge", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_1"], "alias": "dbt_expectations_expect_table__255921d5eee3412c217abc9103879a76", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__255921d5eee3412c217abc9103879a76", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__255921d5eee3412c217abc9103879a76"}, "created_at": 1700082641.5509405, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__255921d5eee3412c217abc9103879a76\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.yml/dbt_expectations_expect_table__255921d5eee3412c217abc9103879a76.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance_stg__zuora_rateplan_charge", "attached_node": "model.yoda.analytics___finance_stg__zuora_rateplan_charge"}, "test.yoda.unique_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id.d19630351a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "rateplan_charge_tier_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_rateplan_charge_tier')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg_c4e13d6bcd24f61bdbc41b4dfc280d2a.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id.d19630351a", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan_charge_tier", "unique_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id"], "alias": "unique_analytics___finance_stg_c4e13d6bcd24f61bdbc41b4dfc280d2a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance_stg_c4e13d6bcd24f61bdbc41b4dfc280d2a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance_stg_c4e13d6bcd24f61bdbc41b4dfc280d2a"}, "created_at": 1700082641.5803695, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance_stg_c4e13d6bcd24f61bdbc41b4dfc280d2a\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan_charge_tier", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.yml/unique_analytics___finance_stg_c4e13d6bcd24f61bdbc41b4dfc280d2a.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select rateplan_charge_tier_id from dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge_tier where rateplan_charge_tier_id is not null group by rateplan_charge_tier_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "rateplan_charge_tier_id", "file_key_name": "models.analytics___finance_stg__zuora_rateplan_charge_tier", "attached_node": "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"}, "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id.0d1fcbfddb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "rateplan_charge_tier_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_rateplan_charge_tier')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_s_bfe90b021ffc39444216ff485ce5baf8.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id.0d1fcbfddb", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan_charge_tier", "not_null_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id"], "alias": "not_null_analytics___finance_s_bfe90b021ffc39444216ff485ce5baf8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance_s_bfe90b021ffc39444216ff485ce5baf8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance_s_bfe90b021ffc39444216ff485ce5baf8"}, "created_at": 1700082641.5859847, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance_s_bfe90b021ffc39444216ff485ce5baf8\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan_charge_tier", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.yml/not_null_analytics___finance_s_bfe90b021ffc39444216ff485ce5baf8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge_tier where rateplan_charge_tier_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "rateplan_charge_tier_id", "file_key_name": "models.analytics___finance_stg__zuora_rateplan_charge_tier", "attached_node": "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_tier_1.d5bc2f0a76": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_rateplan_charge_tier')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_tier_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bd94852242635bb18a76d8b0a6a2c1c0.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_tier_1.d5bc2f0a76", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_rateplan_charge_tier", "dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_tier_1"], "alias": "dbt_expectations_expect_table__bd94852242635bb18a76d8b0a6a2c1c0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bd94852242635bb18a76d8b0a6a2c1c0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bd94852242635bb18a76d8b0a6a2c1c0"}, "created_at": 1700082641.5919247, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bd94852242635bb18a76d8b0a6a2c1c0\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_rateplan_charge_tier", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.yml/dbt_expectations_expect_table__bd94852242635bb18a76d8b0a6a2c1c0.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___finance_stg__zuora_rateplan_charge_tier\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___finance_stg__zuora_rateplan_charge_tier", "attached_node": "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"}, "test.yoda.unique_analytics___finance_stg__zuora_subscription_subscription_id.8f02b21c73": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "subscription_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_subscription')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___finance_stg__zuora_subscription_subscription_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___finance_stg_f5bce43b794ff6d22a178a4be5cac1a4.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.yml", "unique_id": "test.yoda.unique_analytics___finance_stg__zuora_subscription_subscription_id.8f02b21c73", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_subscription", "unique_analytics___finance_stg__zuora_subscription_subscription_id"], "alias": "unique_analytics___finance_stg_f5bce43b794ff6d22a178a4be5cac1a4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___finance_stg_f5bce43b794ff6d22a178a4be5cac1a4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___finance_stg_f5bce43b794ff6d22a178a4be5cac1a4"}, "created_at": 1700082641.631887, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___finance_stg_f5bce43b794ff6d22a178a4be5cac1a4\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_subscription", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_subscription"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.yml/unique_analytics___finance_stg_f5bce43b794ff6d22a178a4be5cac1a4.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select subscription_id from dev_dkruh1.analytics___finance_stg__zuora_subscription where subscription_id is not null group by subscription_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_id", "file_key_name": "models.analytics___finance_stg__zuora_subscription", "attached_node": "model.yoda.analytics___finance_stg__zuora_subscription"}, "test.yoda.not_null_analytics___finance_stg__zuora_subscription_subscription_id.9ae0f2c105": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_id", "model": "{{ get_where_subquery(ref('analytics___finance_stg__zuora_subscription')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___finance_stg__zuora_subscription_subscription_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___finance_s_2fab933ce62e78cff0cf7777e1adb39f.sql", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.yml", "unique_id": "test.yoda.not_null_analytics___finance_stg__zuora_subscription_subscription_id.9ae0f2c105", "fqn": ["yoda", "analytics", "finance", "staging", "marts_compatible", "analytics___finance_stg__zuora_subscription", "not_null_analytics___finance_stg__zuora_subscription_subscription_id"], "alias": "not_null_analytics___finance_s_2fab933ce62e78cff0cf7777e1adb39f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___finance_s_2fab933ce62e78cff0cf7777e1adb39f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___finance_s_2fab933ce62e78cff0cf7777e1adb39f"}, "created_at": 1700082641.6378098, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___finance_s_2fab933ce62e78cff0cf7777e1adb39f\") }}", "language": "sql", "refs": [{"name": "analytics___finance_stg__zuora_subscription", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___finance_stg__zuora_subscription"]}, "compiled_path": "target/compiled/yoda/models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.yml/not_null_analytics___finance_s_2fab933ce62e78cff0cf7777e1adb39f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___finance_stg__zuora_subscription where subscription_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_id", "file_key_name": "models.analytics___finance_stg__zuora_subscription", "attached_node": "model.yoda.analytics___finance_stg__zuora_subscription"}, "test.yoda.unique_analytics___gtm__acv_goal_daily_goal_id.9410b2f154": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "goal_id", "model": "{{ get_where_subquery(ref('analytics___gtm__acv_goal_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___gtm__acv_goal_daily_goal_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___gtm__acv_goal_daily_goal_id.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.yml", "unique_id": "test.yoda.unique_analytics___gtm__acv_goal_daily_goal_id.9410b2f154", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__acv_goal_daily", "unique_analytics___gtm__acv_goal_daily_goal_id"], "alias": "unique_analytics___gtm__acv_goal_daily_goal_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.6902657, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___gtm__acv_goal_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__acv_goal_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.yml/unique_analytics___gtm__acv_goal_daily_goal_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select goal_id from dev_dkruh1.analytics___gtm__acv_goal_daily where goal_id is not null group by goal_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "goal_id", "file_key_name": "models.analytics___gtm__acv_goal_daily", "attached_node": "model.yoda.analytics___gtm__acv_goal_daily"}, "test.yoda.not_null_analytics___gtm__acv_goal_daily_goal_id.e78dc00b51": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "goal_id", "model": "{{ get_where_subquery(ref('analytics___gtm__acv_goal_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___gtm__acv_goal_daily_goal_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___gtm__acv_goal_daily_goal_id.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.yml", "unique_id": "test.yoda.not_null_analytics___gtm__acv_goal_daily_goal_id.e78dc00b51", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__acv_goal_daily", "not_null_analytics___gtm__acv_goal_daily_goal_id"], "alias": "not_null_analytics___gtm__acv_goal_daily_goal_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.6955392, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___gtm__acv_goal_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__acv_goal_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.yml/not_null_analytics___gtm__acv_goal_daily_goal_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___gtm__acv_goal_daily where goal_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "goal_id", "file_key_name": "models.analytics___gtm__acv_goal_daily", "attached_node": "model.yoda.analytics___gtm__acv_goal_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__acv_goal_daily_1.654d6fffed": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm__acv_goal_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__acv_goal_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__394b631063a95ca88164139265f6631d.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__acv_goal_daily_1.654d6fffed", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__acv_goal_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__acv_goal_daily_1"], "alias": "dbt_expectations_expect_table__394b631063a95ca88164139265f6631d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__394b631063a95ca88164139265f6631d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__394b631063a95ca88164139265f6631d"}, "created_at": 1700082641.7021232, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__394b631063a95ca88164139265f6631d\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__acv_goal_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__acv_goal_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.yml/dbt_expectations_expect_table__394b631063a95ca88164139265f6631d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm__acv_goal_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm__acv_goal_daily", "attached_node": "model.yoda.analytics___gtm__acv_goal_daily"}, "test.yoda.unique_analytics___gtm__crossell_opportunity_attribution_opportunity_id.40fe8a331a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___gtm__crossell_opportunity_attribution')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___gtm__crossell_opportunity_attribution_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___gtm__crosse_90c729dbcb65e585ebdad273f6bdea2c.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.yml", "unique_id": "test.yoda.unique_analytics___gtm__crossell_opportunity_attribution_opportunity_id.40fe8a331a", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__crossell_opportunity_attribution", "unique_analytics___gtm__crossell_opportunity_attribution_opportunity_id"], "alias": "unique_analytics___gtm__crosse_90c729dbcb65e585ebdad273f6bdea2c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___gtm__crosse_90c729dbcb65e585ebdad273f6bdea2c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___gtm__crosse_90c729dbcb65e585ebdad273f6bdea2c"}, "created_at": 1700082641.720609, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___gtm__crosse_90c729dbcb65e585ebdad273f6bdea2c\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__crossell_opportunity_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__crossell_opportunity_attribution"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.yml/unique_analytics___gtm__crosse_90c729dbcb65e585ebdad273f6bdea2c.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select opportunity_id from dev_dkruh1.analytics___gtm__crossell_opportunity_attribution where opportunity_id is not null group by opportunity_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___gtm__crossell_opportunity_attribution", "attached_node": "model.yoda.analytics___gtm__crossell_opportunity_attribution"}, "test.yoda.not_null_analytics___gtm__crossell_opportunity_attribution_opportunity_id.c168a5b81a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___gtm__crossell_opportunity_attribution')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___gtm__crossell_opportunity_attribution_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___gtm__cros_b3ed59917acf5b941293ffcac6c8e6ab.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.yml", "unique_id": "test.yoda.not_null_analytics___gtm__crossell_opportunity_attribution_opportunity_id.c168a5b81a", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__crossell_opportunity_attribution", "not_null_analytics___gtm__crossell_opportunity_attribution_opportunity_id"], "alias": "not_null_analytics___gtm__cros_b3ed59917acf5b941293ffcac6c8e6ab", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___gtm__cros_b3ed59917acf5b941293ffcac6c8e6ab", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___gtm__cros_b3ed59917acf5b941293ffcac6c8e6ab"}, "created_at": 1700082641.7264566, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___gtm__cros_b3ed59917acf5b941293ffcac6c8e6ab\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__crossell_opportunity_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__crossell_opportunity_attribution"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.yml/not_null_analytics___gtm__cros_b3ed59917acf5b941293ffcac6c8e6ab.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___gtm__crossell_opportunity_attribution where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___gtm__crossell_opportunity_attribution", "attached_node": "model.yoda.analytics___gtm__crossell_opportunity_attribution"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__crossell_opportunity_attribution_1.183d178d52": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm__crossell_opportunity_attribution')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__crossell_opportunity_attribution_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a4aab8337779afbb0e8f3aa17015b158.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__crossell_opportunity_attribution_1.183d178d52", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__crossell_opportunity_attribution", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__crossell_opportunity_attribution_1"], "alias": "dbt_expectations_expect_table__a4aab8337779afbb0e8f3aa17015b158", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a4aab8337779afbb0e8f3aa17015b158", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a4aab8337779afbb0e8f3aa17015b158"}, "created_at": 1700082641.7321289, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a4aab8337779afbb0e8f3aa17015b158\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__crossell_opportunity_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__crossell_opportunity_attribution"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.yml/dbt_expectations_expect_table__a4aab8337779afbb0e8f3aa17015b158.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm__crossell_opportunity_attribution\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm__crossell_opportunity_attribution", "attached_node": "model.yoda.analytics___gtm__crossell_opportunity_attribution"}, "test.yoda.not_null_analytics___gtm__new_sale_opportunity_attribution_opportunity_id.01ced5985e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___gtm__new_sale_opportunity_attribution')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___gtm__new_sale_opportunity_attribution_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___gtm__new__a9258bb75fa643eeb1805fdac618f9d9.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.yml", "unique_id": "test.yoda.not_null_analytics___gtm__new_sale_opportunity_attribution_opportunity_id.01ced5985e", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__new_sale_opportunity_attribution", "not_null_analytics___gtm__new_sale_opportunity_attribution_opportunity_id"], "alias": "not_null_analytics___gtm__new__a9258bb75fa643eeb1805fdac618f9d9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___gtm__new__a9258bb75fa643eeb1805fdac618f9d9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___gtm__new__a9258bb75fa643eeb1805fdac618f9d9"}, "created_at": 1700082641.76284, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___gtm__new__a9258bb75fa643eeb1805fdac618f9d9\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__new_sale_opportunity_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.yml/not_null_analytics___gtm__new__a9258bb75fa643eeb1805fdac618f9d9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___gtm__new_sale_opportunity_attribution where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___gtm__new_sale_opportunity_attribution", "attached_node": "model.yoda.analytics___gtm__new_sale_opportunity_attribution"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_1.5bc8f0b388": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm__new_sale_opportunity_attribution')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__9a32b08a7740abd0df769dd5b47de959.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_1.5bc8f0b388", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__new_sale_opportunity_attribution", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_1"], "alias": "dbt_expectations_expect_table__9a32b08a7740abd0df769dd5b47de959", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__9a32b08a7740abd0df769dd5b47de959", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__9a32b08a7740abd0df769dd5b47de959"}, "created_at": 1700082641.7687974, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__9a32b08a7740abd0df769dd5b47de959\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__new_sale_opportunity_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.yml/dbt_expectations_expect_table__9a32b08a7740abd0df769dd5b47de959.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm__new_sale_opportunity_attribution\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm__new_sale_opportunity_attribution", "attached_node": "model.yoda.analytics___gtm__new_sale_opportunity_attribution"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_opportunity_id__action_name__action_time.7c1ffde6a7": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["opportunity_id", "action_name", "action_time"], "model": "{{ get_where_subquery(ref('analytics___gtm__new_sale_opportunity_attribution')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_opportunity_id__action_name__action_time", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_fbde7752303edd9a674b89c1be680d00.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_opportunity_id__action_name__action_time.7c1ffde6a7", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__new_sale_opportunity_attribution", "dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_opportunity_id__action_name__action_time"], "alias": "dbt_utils_unique_combination_o_fbde7752303edd9a674b89c1be680d00", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_fbde7752303edd9a674b89c1be680d00", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_fbde7752303edd9a674b89c1be680d00"}, "created_at": 1700082641.7752378, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_fbde7752303edd9a674b89c1be680d00\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__new_sale_opportunity_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.yml/dbt_utils_unique_combination_o_fbde7752303edd9a674b89c1be680d00.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n opportunity_id, action_name, action_time\n from dev_dkruh1.analytics___gtm__new_sale_opportunity_attribution\n group by opportunity_id, action_name, action_time\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm__new_sale_opportunity_attribution", "attached_node": "model.yoda.analytics___gtm__new_sale_opportunity_attribution"}, "test.yoda.not_null_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id.db68dc0718": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___gtm__new_sale_opportunity_attribution_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___gtm__new__e20d8eced621d710bdd3aec9a1a953a2.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.yml", "unique_id": "test.yoda.not_null_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id.db68dc0718", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__new_sale_opportunity_attribution_action", "not_null_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id"], "alias": "not_null_analytics___gtm__new__e20d8eced621d710bdd3aec9a1a953a2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___gtm__new__e20d8eced621d710bdd3aec9a1a953a2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___gtm__new__e20d8eced621d710bdd3aec9a1a953a2"}, "created_at": 1700082641.8035343, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___gtm__new__e20d8eced621d710bdd3aec9a1a953a2\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__new_sale_opportunity_attribution_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.yml/not_null_analytics___gtm__new__e20d8eced621d710bdd3aec9a1a953a2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___gtm__new_sale_opportunity_attribution_action where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___gtm__new_sale_opportunity_attribution_action", "attached_node": "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_action_1.79f8329006": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm__new_sale_opportunity_attribution_action')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_action_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ded45e7012b2813bf79f7796aef67ac0.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_action_1.79f8329006", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__new_sale_opportunity_attribution_action", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_action_1"], "alias": "dbt_expectations_expect_table__ded45e7012b2813bf79f7796aef67ac0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ded45e7012b2813bf79f7796aef67ac0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ded45e7012b2813bf79f7796aef67ac0"}, "created_at": 1700082641.8095064, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ded45e7012b2813bf79f7796aef67ac0\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__new_sale_opportunity_attribution_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.yml/dbt_expectations_expect_table__ded45e7012b2813bf79f7796aef67ac0.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm__new_sale_opportunity_attribution_action\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm__new_sale_opportunity_attribution_action", "attached_node": "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id__action_name__action_time.7faae1e6b4": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["opportunity_id", "action_name", "action_time"], "model": "{{ get_where_subquery(ref('analytics___gtm__new_sale_opportunity_attribution_action')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id__action_name__action_time", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_1ef85d2d27e0b6e721a289d919d30e07.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id__action_name__action_time.7faae1e6b4", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__new_sale_opportunity_attribution_action", "dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id__action_name__action_time"], "alias": "dbt_utils_unique_combination_o_1ef85d2d27e0b6e721a289d919d30e07", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_1ef85d2d27e0b6e721a289d919d30e07", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_1ef85d2d27e0b6e721a289d919d30e07"}, "created_at": 1700082641.8161669, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_1ef85d2d27e0b6e721a289d919d30e07\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__new_sale_opportunity_attribution_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.yml/dbt_utils_unique_combination_o_1ef85d2d27e0b6e721a289d919d30e07.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n opportunity_id, action_name, action_time\n from dev_dkruh1.analytics___gtm__new_sale_opportunity_attribution_action\n group by opportunity_id, action_name, action_time\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm__new_sale_opportunity_attribution_action", "attached_node": "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"}, "test.yoda.unique_analytics___gtm__opportunity_attribution_opportunity_id.cacc74925a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___gtm__opportunity_attribution')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___gtm__opportunity_attribution_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___gtm__opportunity_attribution_opportunity_id.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.yml", "unique_id": "test.yoda.unique_analytics___gtm__opportunity_attribution_opportunity_id.cacc74925a", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__opportunity_attribution", "unique_analytics___gtm__opportunity_attribution_opportunity_id"], "alias": "unique_analytics___gtm__opportunity_attribution_opportunity_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.8370492, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___gtm__opportunity_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__opportunity_attribution"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.yml/unique_analytics___gtm__opportunity_attribution_opportunity_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select opportunity_id from dev_dkruh1.analytics___gtm__opportunity_attribution where opportunity_id is not null group by opportunity_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___gtm__opportunity_attribution", "attached_node": "model.yoda.analytics___gtm__opportunity_attribution"}, "test.yoda.not_null_analytics___gtm__opportunity_attribution_opportunity_id.a6aeee0f9e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___gtm__opportunity_attribution')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___gtm__opportunity_attribution_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___gtm__oppo_eadc1d634777306b56c12cf084486234.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.yml", "unique_id": "test.yoda.not_null_analytics___gtm__opportunity_attribution_opportunity_id.a6aeee0f9e", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__opportunity_attribution", "not_null_analytics___gtm__opportunity_attribution_opportunity_id"], "alias": "not_null_analytics___gtm__oppo_eadc1d634777306b56c12cf084486234", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___gtm__oppo_eadc1d634777306b56c12cf084486234", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___gtm__oppo_eadc1d634777306b56c12cf084486234"}, "created_at": 1700082641.8424883, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___gtm__oppo_eadc1d634777306b56c12cf084486234\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__opportunity_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__opportunity_attribution"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.yml/not_null_analytics___gtm__oppo_eadc1d634777306b56c12cf084486234.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___gtm__opportunity_attribution where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___gtm__opportunity_attribution", "attached_node": "model.yoda.analytics___gtm__opportunity_attribution"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_attribution_1.d339eb76c5": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm__opportunity_attribution')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_attribution_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a778056086397621ff4d7c686fdca05c.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_attribution_1.d339eb76c5", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__opportunity_attribution", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_attribution_1"], "alias": "dbt_expectations_expect_table__a778056086397621ff4d7c686fdca05c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a778056086397621ff4d7c686fdca05c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a778056086397621ff4d7c686fdca05c"}, "created_at": 1700082641.847841, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a778056086397621ff4d7c686fdca05c\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__opportunity_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__opportunity_attribution"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.yml/dbt_expectations_expect_table__a778056086397621ff4d7c686fdca05c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm__opportunity_attribution\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm__opportunity_attribution", "attached_node": "model.yoda.analytics___gtm__opportunity_attribution"}, "test.yoda.unique_analytics___gtm__opportunity_goal_opportunity_goal_id.b115ad6ef5": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "opportunity_goal_id", "model": "{{ get_where_subquery(ref('analytics___gtm__opportunity_goal')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___gtm__opportunity_goal_opportunity_goal_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___gtm__opportunity_goal_opportunity_goal_id.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.yml", "unique_id": "test.yoda.unique_analytics___gtm__opportunity_goal_opportunity_goal_id.b115ad6ef5", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__opportunity_goal", "unique_analytics___gtm__opportunity_goal_opportunity_goal_id"], "alias": "unique_analytics___gtm__opportunity_goal_opportunity_goal_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.8921647, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___gtm__opportunity_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__opportunity_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.yml/unique_analytics___gtm__opportunity_goal_opportunity_goal_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select opportunity_goal_id from dev_dkruh1.analytics___gtm__opportunity_goal where opportunity_goal_id is not null group by opportunity_goal_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_goal_id", "file_key_name": "models.analytics___gtm__opportunity_goal", "attached_node": "model.yoda.analytics___gtm__opportunity_goal"}, "test.yoda.not_null_analytics___gtm__opportunity_goal_opportunity_goal_id.899650c727": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_goal_id", "model": "{{ get_where_subquery(ref('analytics___gtm__opportunity_goal')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___gtm__opportunity_goal_opportunity_goal_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___gtm__opportunity_goal_opportunity_goal_id.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.yml", "unique_id": "test.yoda.not_null_analytics___gtm__opportunity_goal_opportunity_goal_id.899650c727", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__opportunity_goal", "not_null_analytics___gtm__opportunity_goal_opportunity_goal_id"], "alias": "not_null_analytics___gtm__opportunity_goal_opportunity_goal_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.8972611, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___gtm__opportunity_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__opportunity_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.yml/not_null_analytics___gtm__opportunity_goal_opportunity_goal_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___gtm__opportunity_goal where opportunity_goal_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_goal_id", "file_key_name": "models.analytics___gtm__opportunity_goal", "attached_node": "model.yoda.analytics___gtm__opportunity_goal"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_goal_1.81e56d3c53": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm__opportunity_goal')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_goal_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c69f9dd6462682bf15ba2184d29817d5.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_goal_1.81e56d3c53", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__opportunity_goal", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_goal_1"], "alias": "dbt_expectations_expect_table__c69f9dd6462682bf15ba2184d29817d5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c69f9dd6462682bf15ba2184d29817d5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c69f9dd6462682bf15ba2184d29817d5"}, "created_at": 1700082641.9033813, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c69f9dd6462682bf15ba2184d29817d5\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__opportunity_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__opportunity_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.yml/dbt_expectations_expect_table__c69f9dd6462682bf15ba2184d29817d5.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm__opportunity_goal\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm__opportunity_goal", "attached_node": "model.yoda.analytics___gtm__opportunity_goal"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opporunity_dg_funnel_1.0bbb908a88": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm__opporunity_dg_funnel')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opporunity_dg_funnel_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__1a871847d288ac246ad8c3119a4b3dc7.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opporunity_dg_funnel_1.0bbb908a88", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__opporunity_dg_funnel", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opporunity_dg_funnel_1"], "alias": "dbt_expectations_expect_table__1a871847d288ac246ad8c3119a4b3dc7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__1a871847d288ac246ad8c3119a4b3dc7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__1a871847d288ac246ad8c3119a4b3dc7"}, "created_at": 1700082641.935186, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__1a871847d288ac246ad8c3119a4b3dc7\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__opporunity_dg_funnel", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__opporunity_dg_funnel"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.yml/dbt_expectations_expect_table__1a871847d288ac246ad8c3119a4b3dc7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm__opporunity_dg_funnel\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm__opporunity_dg_funnel", "attached_node": "model.yoda.analytics___gtm__opporunity_dg_funnel"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__opporunity_dg_funnel_opportunity_id__first_stage_id__product_family_group__attribution_channel.9360208eb9": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["opportunity_id", "first_stage_id", "product_family_group", "attribution_channel"], "model": "{{ get_where_subquery(ref('analytics___gtm__opporunity_dg_funnel')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___gtm__opporunity_dg_funnel_opportunity_id__first_stage_id__product_family_group__attribution_channel", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_75b0ac967986cd9ce321e6e717b1da05.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__opporunity_dg_funnel_opportunity_id__first_stage_id__product_family_group__attribution_channel.9360208eb9", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__opporunity_dg_funnel", "dbt_utils_unique_combination_of_columns_analytics___gtm__opporunity_dg_funnel_opportunity_id__first_stage_id__product_family_group__attribution_channel"], "alias": "dbt_utils_unique_combination_o_75b0ac967986cd9ce321e6e717b1da05", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_75b0ac967986cd9ce321e6e717b1da05", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_75b0ac967986cd9ce321e6e717b1da05"}, "created_at": 1700082641.941165, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_75b0ac967986cd9ce321e6e717b1da05\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__opporunity_dg_funnel", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__opporunity_dg_funnel"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.yml/dbt_utils_unique_combination_o_75b0ac967986cd9ce321e6e717b1da05.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n opportunity_id, first_stage_id, product_family_group, attribution_channel\n from dev_dkruh1.analytics___gtm__opporunity_dg_funnel\n group by opportunity_id, first_stage_id, product_family_group, attribution_channel\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm__opporunity_dg_funnel", "attached_node": "model.yoda.analytics___gtm__opporunity_dg_funnel"}, "test.yoda.unique_analytics___gtm__sal_goal_daily_goal_id.b949913273": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "goal_id", "model": "{{ get_where_subquery(ref('analytics___gtm__sal_goal_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___gtm__sal_goal_daily_goal_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___gtm__sal_goal_daily_goal_id.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.yml", "unique_id": "test.yoda.unique_analytics___gtm__sal_goal_daily_goal_id.b949913273", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__sal_goal_daily", "unique_analytics___gtm__sal_goal_daily_goal_id"], "alias": "unique_analytics___gtm__sal_goal_daily_goal_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082641.974251, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___gtm__sal_goal_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__sal_goal_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.yml/unique_analytics___gtm__sal_goal_daily_goal_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select goal_id from dev_dkruh1.analytics___gtm__sal_goal_daily where goal_id is not null group by goal_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "goal_id", "file_key_name": "models.analytics___gtm__sal_goal_daily", "attached_node": "model.yoda.analytics___gtm__sal_goal_daily"}, "test.yoda.not_null_analytics___gtm__sal_goal_daily_goal_id.5b28f870f4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "goal_id", "model": "{{ get_where_subquery(ref('analytics___gtm__sal_goal_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___gtm__sal_goal_daily_goal_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___gtm__sal_goal_daily_goal_id.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.yml", "unique_id": "test.yoda.not_null_analytics___gtm__sal_goal_daily_goal_id.5b28f870f4", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__sal_goal_daily", "not_null_analytics___gtm__sal_goal_daily_goal_id"], "alias": "not_null_analytics___gtm__sal_goal_daily_goal_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082641.9799576, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___gtm__sal_goal_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__sal_goal_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.yml/not_null_analytics___gtm__sal_goal_daily_goal_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___gtm__sal_goal_daily where goal_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "goal_id", "file_key_name": "models.analytics___gtm__sal_goal_daily", "attached_node": "model.yoda.analytics___gtm__sal_goal_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__sal_goal_daily_1.e70cc10029": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm__sal_goal_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__sal_goal_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__69a189d7eae7e20710304b24807b1f1b.sql", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__sal_goal_daily_1.e70cc10029", "fqn": ["yoda", "analytics", "gtm", "marts", "analytics___gtm__sal_goal_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__sal_goal_daily_1"], "alias": "dbt_expectations_expect_table__69a189d7eae7e20710304b24807b1f1b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__69a189d7eae7e20710304b24807b1f1b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__69a189d7eae7e20710304b24807b1f1b"}, "created_at": 1700082641.985667, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__69a189d7eae7e20710304b24807b1f1b\") }}", "language": "sql", "refs": [{"name": "analytics___gtm__sal_goal_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm__sal_goal_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.yml/dbt_expectations_expect_table__69a189d7eae7e20710304b24807b1f1b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm__sal_goal_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm__sal_goal_daily", "attached_node": "model.yoda.analytics___gtm__sal_goal_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_acv_goals_1.50f5dd15f1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm_stg__stg_nerd_acv_goals')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_acv_goals_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f44b967af6e6f60b154e43bc20c9520a.sql", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_acv_goals_1.50f5dd15f1", "fqn": ["yoda", "analytics", "gtm", "staging", "base", "analytics___gtm_stg__stg_nerd_acv_goals", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_acv_goals_1"], "alias": "dbt_expectations_expect_table__f44b967af6e6f60b154e43bc20c9520a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f44b967af6e6f60b154e43bc20c9520a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f44b967af6e6f60b154e43bc20c9520a"}, "created_at": 1700082642.0312402, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f44b967af6e6f60b154e43bc20c9520a\") }}", "language": "sql", "refs": [{"name": "analytics___gtm_stg__stg_nerd_acv_goals", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm_stg__stg_nerd_acv_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.yml/dbt_expectations_expect_table__f44b967af6e6f60b154e43bc20c9520a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm_stg__stg_nerd_acv_goals\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm_stg__stg_nerd_acv_goals", "attached_node": "model.yoda.analytics___gtm_stg__stg_nerd_acv_goals"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_sal_goals_1.8f2d9dda30": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm_stg__stg_nerd_sal_goals')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_sal_goals_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__fde08718ece95ca3ed000d973d29362b.sql", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_sal_goals_1.8f2d9dda30", "fqn": ["yoda", "analytics", "gtm", "staging", "base", "analytics___gtm_stg__stg_nerd_sal_goals", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_sal_goals_1"], "alias": "dbt_expectations_expect_table__fde08718ece95ca3ed000d973d29362b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__fde08718ece95ca3ed000d973d29362b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__fde08718ece95ca3ed000d973d29362b"}, "created_at": 1700082642.0540597, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__fde08718ece95ca3ed000d973d29362b\") }}", "language": "sql", "refs": [{"name": "analytics___gtm_stg__stg_nerd_sal_goals", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm_stg__stg_nerd_sal_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.yml/dbt_expectations_expect_table__fde08718ece95ca3ed000d973d29362b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm_stg__stg_nerd_sal_goals\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm_stg__stg_nerd_sal_goals", "attached_node": "model.yoda.analytics___gtm_stg__stg_nerd_sal_goals"}, "test.yoda.unique_analytics___gtm_stg__acv_goal_acv_goal_id.6915bc2185": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "acv_goal_id", "model": "{{ get_where_subquery(ref('analytics___gtm_stg__acv_goal')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___gtm_stg__acv_goal_acv_goal_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___gtm_stg__acv_goal_acv_goal_id.sql", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.yml", "unique_id": "test.yoda.unique_analytics___gtm_stg__acv_goal_acv_goal_id.6915bc2185", "fqn": ["yoda", "analytics", "gtm", "staging", "marts_compatible", "analytics___gtm_stg__acv_goal", "unique_analytics___gtm_stg__acv_goal_acv_goal_id"], "alias": "unique_analytics___gtm_stg__acv_goal_acv_goal_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082642.080436, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___gtm_stg__acv_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm_stg__acv_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.yml/unique_analytics___gtm_stg__acv_goal_acv_goal_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select acv_goal_id from dev_dkruh1.analytics___gtm_stg__acv_goal where acv_goal_id is not null group by acv_goal_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "acv_goal_id", "file_key_name": "models.analytics___gtm_stg__acv_goal", "attached_node": "model.yoda.analytics___gtm_stg__acv_goal"}, "test.yoda.not_null_analytics___gtm_stg__acv_goal_acv_goal_id.87b0998597": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "acv_goal_id", "model": "{{ get_where_subquery(ref('analytics___gtm_stg__acv_goal')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___gtm_stg__acv_goal_acv_goal_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___gtm_stg__acv_goal_acv_goal_id.sql", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.yml", "unique_id": "test.yoda.not_null_analytics___gtm_stg__acv_goal_acv_goal_id.87b0998597", "fqn": ["yoda", "analytics", "gtm", "staging", "marts_compatible", "analytics___gtm_stg__acv_goal", "not_null_analytics___gtm_stg__acv_goal_acv_goal_id"], "alias": "not_null_analytics___gtm_stg__acv_goal_acv_goal_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.0855045, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___gtm_stg__acv_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm_stg__acv_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.yml/not_null_analytics___gtm_stg__acv_goal_acv_goal_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___gtm_stg__acv_goal where acv_goal_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "acv_goal_id", "file_key_name": "models.analytics___gtm_stg__acv_goal", "attached_node": "model.yoda.analytics___gtm_stg__acv_goal"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__acv_goal_1.64623d27e6": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm_stg__acv_goal')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__acv_goal_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6a6d8dc8e69aff7a5023816f1aecaea4.sql", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__acv_goal_1.64623d27e6", "fqn": ["yoda", "analytics", "gtm", "staging", "marts_compatible", "analytics___gtm_stg__acv_goal", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__acv_goal_1"], "alias": "dbt_expectations_expect_table__6a6d8dc8e69aff7a5023816f1aecaea4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6a6d8dc8e69aff7a5023816f1aecaea4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6a6d8dc8e69aff7a5023816f1aecaea4"}, "created_at": 1700082642.0909317, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6a6d8dc8e69aff7a5023816f1aecaea4\") }}", "language": "sql", "refs": [{"name": "analytics___gtm_stg__acv_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm_stg__acv_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.yml/dbt_expectations_expect_table__6a6d8dc8e69aff7a5023816f1aecaea4.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm_stg__acv_goal\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm_stg__acv_goal", "attached_node": "model.yoda.analytics___gtm_stg__acv_goal"}, "test.yoda.unique_analytics___gtm_stg__sal_goal_sal_goal_id.d38ebcece5": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "sal_goal_id", "model": "{{ get_where_subquery(ref('analytics___gtm_stg__sal_goal')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___gtm_stg__sal_goal_sal_goal_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___gtm_stg__sal_goal_sal_goal_id.sql", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.yml", "unique_id": "test.yoda.unique_analytics___gtm_stg__sal_goal_sal_goal_id.d38ebcece5", "fqn": ["yoda", "analytics", "gtm", "staging", "marts_compatible", "analytics___new_revenue_stg__sal_goal", "unique_analytics___gtm_stg__sal_goal_sal_goal_id"], "alias": "unique_analytics___gtm_stg__sal_goal_sal_goal_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082642.114999, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___gtm_stg__sal_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm_stg__sal_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.yml/unique_analytics___gtm_stg__sal_goal_sal_goal_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select sal_goal_id from dev_dkruh1.analytics___gtm_stg__sal_goal where sal_goal_id is not null group by sal_goal_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sal_goal_id", "file_key_name": "models.analytics___gtm_stg__sal_goal", "attached_node": "model.yoda.analytics___gtm_stg__sal_goal"}, "test.yoda.not_null_analytics___gtm_stg__sal_goal_sal_goal_id.14ecb5ebf6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sal_goal_id", "model": "{{ get_where_subquery(ref('analytics___gtm_stg__sal_goal')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___gtm_stg__sal_goal_sal_goal_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___gtm_stg__sal_goal_sal_goal_id.sql", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.yml", "unique_id": "test.yoda.not_null_analytics___gtm_stg__sal_goal_sal_goal_id.14ecb5ebf6", "fqn": ["yoda", "analytics", "gtm", "staging", "marts_compatible", "analytics___new_revenue_stg__sal_goal", "not_null_analytics___gtm_stg__sal_goal_sal_goal_id"], "alias": "not_null_analytics___gtm_stg__sal_goal_sal_goal_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.1202042, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___gtm_stg__sal_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm_stg__sal_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.yml/not_null_analytics___gtm_stg__sal_goal_sal_goal_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___gtm_stg__sal_goal where sal_goal_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sal_goal_id", "file_key_name": "models.analytics___gtm_stg__sal_goal", "attached_node": "model.yoda.analytics___gtm_stg__sal_goal"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__sal_goal_1.aef318a37a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___gtm_stg__sal_goal')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__sal_goal_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__9508dc3b7927e57da533702e311d63ed.sql", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__sal_goal_1.aef318a37a", "fqn": ["yoda", "analytics", "gtm", "staging", "marts_compatible", "analytics___new_revenue_stg__sal_goal", "dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__sal_goal_1"], "alias": "dbt_expectations_expect_table__9508dc3b7927e57da533702e311d63ed", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__9508dc3b7927e57da533702e311d63ed", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__9508dc3b7927e57da533702e311d63ed"}, "created_at": 1700082642.1256082, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__9508dc3b7927e57da533702e311d63ed\") }}", "language": "sql", "refs": [{"name": "analytics___gtm_stg__sal_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___gtm_stg__sal_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.yml/dbt_expectations_expect_table__9508dc3b7927e57da533702e311d63ed.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___gtm_stg__sal_goal\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___gtm_stg__sal_goal", "attached_node": "model.yoda.analytics___gtm_stg__sal_goal"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__daily_merchant_merchant_id__date.a9d88b814a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_id", "date"], "model": "{{ get_where_subquery(ref('analytics___loyalty__daily_merchant')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__daily_merchant_merchant_id__date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_3fce2819adb46accc450d2e7b8eecdfb.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__daily_merchant_merchant_id__date.a9d88b814a", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__daily_merchant", "dbt_utils_unique_combination_of_columns_analytics___loyalty__daily_merchant_merchant_id__date"], "alias": "dbt_utils_unique_combination_o_3fce2819adb46accc450d2e7b8eecdfb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_3fce2819adb46accc450d2e7b8eecdfb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_3fce2819adb46accc450d2e7b8eecdfb"}, "created_at": 1700082642.1970465, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_3fce2819adb46accc450d2e7b8eecdfb\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__daily_merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__daily_merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.yml/dbt_utils_unique_combination_o_3fce2819adb46accc450d2e7b8eecdfb.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_id, date\n from dev_dkruh1.analytics___loyalty__daily_merchant\n group by merchant_id, date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__daily_merchant", "attached_node": "model.yoda.analytics___loyalty__daily_merchant"}, "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_date.eed0931582": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___loyalty__earning_rule_activation_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__earning_rule_activation_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___913daa768e90fee9d6959263434888f7.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_date.eed0931582", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__earning_rule_activation_daily", "not_null_analytics___loyalty__earning_rule_activation_daily_date"], "alias": "not_null_analytics___loyalty___913daa768e90fee9d6959263434888f7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___913daa768e90fee9d6959263434888f7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___913daa768e90fee9d6959263434888f7"}, "created_at": 1700082642.2212255, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___913daa768e90fee9d6959263434888f7\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__earning_rule_activation_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__earning_rule_activation_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.yml/not_null_analytics___loyalty___913daa768e90fee9d6959263434888f7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__earning_rule_activation_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___loyalty__earning_rule_activation_daily", "attached_node": "model.yoda.analytics___loyalty__earning_rule_activation_daily"}, "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_earning_rule_id.99ec561ad9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "earning_rule_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__earning_rule_activation_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__earning_rule_activation_daily_earning_rule_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___341b61e6b8fb5eab57ede0eb084e1d67.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_earning_rule_id.99ec561ad9", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__earning_rule_activation_daily", "not_null_analytics___loyalty__earning_rule_activation_daily_earning_rule_id"], "alias": "not_null_analytics___loyalty___341b61e6b8fb5eab57ede0eb084e1d67", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___341b61e6b8fb5eab57ede0eb084e1d67", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___341b61e6b8fb5eab57ede0eb084e1d67"}, "created_at": 1700082642.2269542, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___341b61e6b8fb5eab57ede0eb084e1d67\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__earning_rule_activation_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__earning_rule_activation_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.yml/not_null_analytics___loyalty___341b61e6b8fb5eab57ede0eb084e1d67.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__earning_rule_activation_daily where earning_rule_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "earning_rule_id", "file_key_name": "models.analytics___loyalty__earning_rule_activation_daily", "attached_node": "model.yoda.analytics___loyalty__earning_rule_activation_daily"}, "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_is_active.b98e9fc3ea": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_active", "model": "{{ get_where_subquery(ref('analytics___loyalty__earning_rule_activation_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__earning_rule_activation_daily_is_active", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___e24354f62a1537a9558294dfe1fddbf6.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_is_active.b98e9fc3ea", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__earning_rule_activation_daily", "not_null_analytics___loyalty__earning_rule_activation_daily_is_active"], "alias": "not_null_analytics___loyalty___e24354f62a1537a9558294dfe1fddbf6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___e24354f62a1537a9558294dfe1fddbf6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___e24354f62a1537a9558294dfe1fddbf6"}, "created_at": 1700082642.23227, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___e24354f62a1537a9558294dfe1fddbf6\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__earning_rule_activation_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__earning_rule_activation_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.yml/not_null_analytics___loyalty___e24354f62a1537a9558294dfe1fddbf6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__earning_rule_activation_daily where is_active is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_active", "file_key_name": "models.analytics___loyalty__earning_rule_activation_daily", "attached_node": "model.yoda.analytics___loyalty__earning_rule_activation_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__earning_rule_activation_daily_1.84ddeefdea": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__earning_rule_activation_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__earning_rule_activation_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0fe960348253a19517a6b699402d7b6a.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__earning_rule_activation_daily_1.84ddeefdea", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__earning_rule_activation_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__earning_rule_activation_daily_1"], "alias": "dbt_expectations_expect_table__0fe960348253a19517a6b699402d7b6a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0fe960348253a19517a6b699402d7b6a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0fe960348253a19517a6b699402d7b6a"}, "created_at": 1700082642.2383955, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0fe960348253a19517a6b699402d7b6a\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__earning_rule_activation_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__earning_rule_activation_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.yml/dbt_expectations_expect_table__0fe960348253a19517a6b699402d7b6a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__earning_rule_activation_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__earning_rule_activation_daily", "attached_node": "model.yoda.analytics___loyalty__earning_rule_activation_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__earning_rule_activation_daily_earning_rule_id__date.95c46309c3": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["earning_rule_id", "date"], "model": "{{ get_where_subquery(ref('analytics___loyalty__earning_rule_activation_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__earning_rule_activation_daily_earning_rule_id__date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_755085730310e717e7f62fd07e206c42.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__earning_rule_activation_daily_earning_rule_id__date.95c46309c3", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__earning_rule_activation_daily", "dbt_utils_unique_combination_of_columns_analytics___loyalty__earning_rule_activation_daily_earning_rule_id__date"], "alias": "dbt_utils_unique_combination_o_755085730310e717e7f62fd07e206c42", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_755085730310e717e7f62fd07e206c42", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_755085730310e717e7f62fd07e206c42"}, "created_at": 1700082642.2443633, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_755085730310e717e7f62fd07e206c42\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__earning_rule_activation_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__earning_rule_activation_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.yml/dbt_utils_unique_combination_o_755085730310e717e7f62fd07e206c42.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n earning_rule_id, date\n from dev_dkruh1.analytics___loyalty__earning_rule_activation_daily\n group by earning_rule_id, date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__earning_rule_activation_daily", "attached_node": "model.yoda.analytics___loyalty__earning_rule_activation_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_customers_vip_tiers_stats_1.b1984b1fea": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__ht_customers_vip_tiers_stats')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_customers_vip_tiers_stats_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__88647e7efeeaa2d5f7719ba04d2380ba.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_customers_vip_tiers_stats_1.b1984b1fea", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__ht_customers_vip_tiers_stats", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_customers_vip_tiers_stats_1"], "alias": "dbt_expectations_expect_table__88647e7efeeaa2d5f7719ba04d2380ba", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__88647e7efeeaa2d5f7719ba04d2380ba", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__88647e7efeeaa2d5f7719ba04d2380ba"}, "created_at": 1700082642.2708755, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__88647e7efeeaa2d5f7719ba04d2380ba\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__ht_customers_vip_tiers_stats", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.yml/dbt_expectations_expect_table__88647e7efeeaa2d5f7719ba04d2380ba.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__ht_customers_vip_tiers_stats\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__ht_customers_vip_tiers_stats", "attached_node": "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__ht_ss_retention_cohort_merchant_id__month__closing_plan_name_in_month.964b284f0a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_id", "month", "closing_plan_name_in_month"], "model": "{{ get_where_subquery(ref('analytics___loyalty__ht_ss_retention_cohort')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__ht_ss_retention_cohort_merchant_id__month__closing_plan_name_in_month", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_34209a993acbcd2102c495913e38e863.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__ht_ss_retention_cohort_merchant_id__month__closing_plan_name_in_month.964b284f0a", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__ht_ss_retention_cohort", "dbt_utils_unique_combination_of_columns_analytics___loyalty__ht_ss_retention_cohort_merchant_id__month__closing_plan_name_in_month"], "alias": "dbt_utils_unique_combination_o_34209a993acbcd2102c495913e38e863", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_34209a993acbcd2102c495913e38e863", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_34209a993acbcd2102c495913e38e863"}, "created_at": 1700082642.294814, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_34209a993acbcd2102c495913e38e863\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__ht_ss_retention_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__ht_ss_retention_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.yml/dbt_utils_unique_combination_o_34209a993acbcd2102c495913e38e863.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_id, month, closing_plan_name_in_month\n from dev_dkruh1.analytics___loyalty__ht_ss_retention_cohort\n group by merchant_id, month, closing_plan_name_in_month\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__ht_ss_retention_cohort", "attached_node": "model.yoda.analytics___loyalty__ht_ss_retention_cohort"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_ss_retention_cohort_1.dd0693fc71": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__ht_ss_retention_cohort')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_ss_retention_cohort_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__dabb8101e3f95b8a8d4f37c7efda2a9a.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_ss_retention_cohort_1.dd0693fc71", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__ht_ss_retention_cohort", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_ss_retention_cohort_1"], "alias": "dbt_expectations_expect_table__dabb8101e3f95b8a8d4f37c7efda2a9a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__dabb8101e3f95b8a8d4f37c7efda2a9a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__dabb8101e3f95b8a8d4f37c7efda2a9a"}, "created_at": 1700082642.3016336, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__dabb8101e3f95b8a8d4f37c7efda2a9a\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__ht_ss_retention_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__ht_ss_retention_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.yml/dbt_expectations_expect_table__dabb8101e3f95b8a8d4f37c7efda2a9a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__ht_ss_retention_cohort\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__ht_ss_retention_cohort", "attached_node": "model.yoda.analytics___loyalty__ht_ss_retention_cohort"}, "test.yoda.unique_analytics___loyalty__merchant_merchant_id.6aca172b89": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty__merchant_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty__merchant_merchant_id.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.yml", "unique_id": "test.yoda.unique_analytics___loyalty__merchant_merchant_id.6aca172b89", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant", "unique_analytics___loyalty__merchant_merchant_id"], "alias": "unique_analytics___loyalty__merchant_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082642.3660753, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.yml/unique_analytics___loyalty__merchant_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select merchant_id from dev_dkruh1.analytics___loyalty__merchant where merchant_id is not null group by merchant_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty__merchant", "attached_node": "model.yoda.analytics___loyalty__merchant"}, "test.yoda.not_null_analytics___loyalty__merchant_merchant_id.5dc0ecbed1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty__merchant_merchant_id.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_merchant_id.5dc0ecbed1", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant", "not_null_analytics___loyalty__merchant_merchant_id"], "alias": "not_null_analytics___loyalty__merchant_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.3712926, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.yml/not_null_analytics___loyalty__merchant_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty__merchant", "attached_node": "model.yoda.analytics___loyalty__merchant"}, "test.yoda.unique_analytics___loyalty__merchant_app_key.13e19a4d5a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty__merchant_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty__merchant_app_key.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.yml", "unique_id": "test.yoda.unique_analytics___loyalty__merchant_app_key.13e19a4d5a", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant", "unique_analytics___loyalty__merchant_app_key"], "alias": "unique_analytics___loyalty__merchant_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082642.3766677, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.yml/unique_analytics___loyalty__merchant_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___loyalty__merchant where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___loyalty__merchant", "attached_node": "model.yoda.analytics___loyalty__merchant"}, "test.yoda.not_null_analytics___loyalty__merchant_app_key.f4a09494c5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty__merchant_app_key.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_app_key.f4a09494c5", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant", "not_null_analytics___loyalty__merchant_app_key"], "alias": "not_null_analytics___loyalty__merchant_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.3820012, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.yml/not_null_analytics___loyalty__merchant_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___loyalty__merchant", "attached_node": "model.yoda.analytics___loyalty__merchant"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_1.5cc4bc28dc": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8b97b556a1f0ea0c25bb0bcd01b77c58.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_1.5cc4bc28dc", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_1"], "alias": "dbt_expectations_expect_table__8b97b556a1f0ea0c25bb0bcd01b77c58", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8b97b556a1f0ea0c25bb0bcd01b77c58", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8b97b556a1f0ea0c25bb0bcd01b77c58"}, "created_at": 1700082642.3869975, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8b97b556a1f0ea0c25bb0bcd01b77c58\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.yml/dbt_expectations_expect_table__8b97b556a1f0ea0c25bb0bcd01b77c58.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__merchant\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant", "attached_node": "model.yoda.analytics___loyalty__merchant"}, "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_date.031752251c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_activeness_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty__merchant_activeness_daily_date.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_date.031752251c", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_activeness_daily", "not_null_analytics___loyalty__merchant_activeness_daily_date"], "alias": "not_null_analytics___loyalty__merchant_activeness_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.4089015, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.yml/not_null_analytics___loyalty__merchant_activeness_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_activeness_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___loyalty__merchant_activeness_daily", "attached_node": "model.yoda.analytics___loyalty__merchant_activeness_daily"}, "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_merchant_id.32921abf4a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_activeness_daily_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___f3c0f51f669abd4604c3a0b45a3650fb.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_merchant_id.32921abf4a", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_activeness_daily", "not_null_analytics___loyalty__merchant_activeness_daily_merchant_id"], "alias": "not_null_analytics___loyalty___f3c0f51f669abd4604c3a0b45a3650fb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___f3c0f51f669abd4604c3a0b45a3650fb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___f3c0f51f669abd4604c3a0b45a3650fb"}, "created_at": 1700082642.4148848, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___f3c0f51f669abd4604c3a0b45a3650fb\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.yml/not_null_analytics___loyalty___f3c0f51f669abd4604c3a0b45a3650fb.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_activeness_daily where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty__merchant_activeness_daily", "attached_node": "model.yoda.analytics___loyalty__merchant_activeness_daily"}, "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_app_key.f97a434059": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_activeness_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty__merchant_activeness_daily_app_key.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_app_key.f97a434059", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_activeness_daily", "not_null_analytics___loyalty__merchant_activeness_daily_app_key"], "alias": "not_null_analytics___loyalty__merchant_activeness_daily_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.420834, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.yml/not_null_analytics___loyalty__merchant_activeness_daily_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_activeness_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___loyalty__merchant_activeness_daily", "attached_node": "model.yoda.analytics___loyalty__merchant_activeness_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_activeness_daily_date__merchant_id__app_key.e6677194db": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "merchant_id", "app_key"], "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_activeness_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_activeness_daily_date__merchant_id__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_9a82f86b133f3c5f35aee9e736d204bf.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_activeness_daily_date__merchant_id__app_key.e6677194db", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_activeness_daily", "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_activeness_daily_date__merchant_id__app_key"], "alias": "dbt_utils_unique_combination_o_9a82f86b133f3c5f35aee9e736d204bf", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_9a82f86b133f3c5f35aee9e736d204bf", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_9a82f86b133f3c5f35aee9e736d204bf"}, "created_at": 1700082642.425896, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_9a82f86b133f3c5f35aee9e736d204bf\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.yml/dbt_utils_unique_combination_o_9a82f86b133f3c5f35aee9e736d204bf.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, merchant_id, app_key\n from dev_dkruh1.analytics___loyalty__merchant_activeness_daily\n group by date, merchant_id, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_activeness_daily", "attached_node": "model.yoda.analytics___loyalty__merchant_activeness_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_activeness_daily_1.b6d3fd218c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_activeness_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_activeness_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f6793c2f6343370c053d030f1ed9af9e.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_activeness_daily_1.b6d3fd218c", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_activeness_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_activeness_daily_1"], "alias": "dbt_expectations_expect_table__f6793c2f6343370c053d030f1ed9af9e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f6793c2f6343370c053d030f1ed9af9e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f6793c2f6343370c053d030f1ed9af9e"}, "created_at": 1700082642.4327369, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f6793c2f6343370c053d030f1ed9af9e\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.yml/dbt_expectations_expect_table__f6793c2f6343370c053d030f1ed9af9e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__merchant_activeness_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_activeness_daily", "attached_node": "model.yoda.analytics___loyalty__merchant_activeness_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_metrics_daily_merchant_id__date.ad08299fa2": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_id", "date"], "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_metrics_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_metrics_daily_merchant_id__date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_550852a53fe4c1e218d3be2f776320b6.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_metrics_daily_merchant_id__date.ad08299fa2", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_metrics_daily", "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_metrics_daily_merchant_id__date"], "alias": "dbt_utils_unique_combination_o_550852a53fe4c1e218d3be2f776320b6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_550852a53fe4c1e218d3be2f776320b6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_550852a53fe4c1e218d3be2f776320b6"}, "created_at": 1700082642.4588547, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_550852a53fe4c1e218d3be2f776320b6\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.yml/dbt_utils_unique_combination_o_550852a53fe4c1e218d3be2f776320b6.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_id, date\n from dev_dkruh1.analytics___loyalty__merchant_metrics_daily\n group by merchant_id, date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_metrics_daily", "attached_node": "model.yoda.analytics___loyalty__merchant_metrics_daily"}, "test.yoda.not_null_analytics___loyalty__merchant_monthly_element_activation_month.a9a9a39eef": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_monthly_element_activation')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_monthly_element_activation_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___d42e3d5a77f6a8dec7b7b3a469f6e0ae.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_monthly_element_activation_month.a9a9a39eef", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_monthly_element_activation", "not_null_analytics___loyalty__merchant_monthly_element_activation_month"], "alias": "not_null_analytics___loyalty___d42e3d5a77f6a8dec7b7b3a469f6e0ae", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___d42e3d5a77f6a8dec7b7b3a469f6e0ae", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___d42e3d5a77f6a8dec7b7b3a469f6e0ae"}, "created_at": 1700082642.490306, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___d42e3d5a77f6a8dec7b7b3a469f6e0ae\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_monthly_element_activation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_monthly_element_activation"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.yml/not_null_analytics___loyalty___d42e3d5a77f6a8dec7b7b3a469f6e0ae.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_monthly_element_activation where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___loyalty__merchant_monthly_element_activation", "attached_node": "model.yoda.analytics___loyalty__merchant_monthly_element_activation"}, "test.yoda.not_null_analytics___loyalty__merchant_monthly_element_activation_merchant_id.05167d806a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_monthly_element_activation')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_monthly_element_activation_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___d7ffa83a214ea271812a2a2e8eb09616.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_monthly_element_activation_merchant_id.05167d806a", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_monthly_element_activation", "not_null_analytics___loyalty__merchant_monthly_element_activation_merchant_id"], "alias": "not_null_analytics___loyalty___d7ffa83a214ea271812a2a2e8eb09616", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___d7ffa83a214ea271812a2a2e8eb09616", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___d7ffa83a214ea271812a2a2e8eb09616"}, "created_at": 1700082642.4966152, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___d7ffa83a214ea271812a2a2e8eb09616\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_monthly_element_activation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_monthly_element_activation"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.yml/not_null_analytics___loyalty___d7ffa83a214ea271812a2a2e8eb09616.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_monthly_element_activation where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty__merchant_monthly_element_activation", "attached_node": "model.yoda.analytics___loyalty__merchant_monthly_element_activation"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_monthly_element_activation_1.6ae24b632d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_monthly_element_activation')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_monthly_element_activation_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d772e56ea2145c8df282a0259e2fae05.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_monthly_element_activation_1.6ae24b632d", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_monthly_element_activation", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_monthly_element_activation_1"], "alias": "dbt_expectations_expect_table__d772e56ea2145c8df282a0259e2fae05", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d772e56ea2145c8df282a0259e2fae05", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d772e56ea2145c8df282a0259e2fae05"}, "created_at": 1700082642.5025628, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d772e56ea2145c8df282a0259e2fae05\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_monthly_element_activation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_monthly_element_activation"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.yml/dbt_expectations_expect_table__d772e56ea2145c8df282a0259e2fae05.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__merchant_monthly_element_activation\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_monthly_element_activation", "attached_node": "model.yoda.analytics___loyalty__merchant_monthly_element_activation"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_monthly_element_activation_merchant_id__month__redemption_source.9b23889c3d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_id", "month", "redemption_source"], "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_monthly_element_activation')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_monthly_element_activation_merchant_id__month__redemption_source", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_4cbae98223003418b2eeceefa8188e19.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_monthly_element_activation_merchant_id__month__redemption_source.9b23889c3d", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_monthly_element_activation", "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_monthly_element_activation_merchant_id__month__redemption_source"], "alias": "dbt_utils_unique_combination_o_4cbae98223003418b2eeceefa8188e19", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_4cbae98223003418b2eeceefa8188e19", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_4cbae98223003418b2eeceefa8188e19"}, "created_at": 1700082642.5088978, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_4cbae98223003418b2eeceefa8188e19\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_monthly_element_activation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_monthly_element_activation"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.yml/dbt_utils_unique_combination_o_4cbae98223003418b2eeceefa8188e19.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_id, month, redemption_source\n from dev_dkruh1.analytics___loyalty__merchant_monthly_element_activation\n group by merchant_id, month, redemption_source\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_monthly_element_activation", "attached_node": "model.yoda.analytics___loyalty__merchant_monthly_element_activation"}, "test.yoda.not_null_analytics___loyalty__merchant_plan_daily_date.176dbdaa87": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_plan_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty__merchant_plan_daily_date.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_plan_daily_date.176dbdaa87", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_daily", "not_null_analytics___loyalty__merchant_plan_daily_date"], "alias": "not_null_analytics___loyalty__merchant_plan_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.5572164, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.yml/not_null_analytics___loyalty__merchant_plan_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_plan_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___loyalty__merchant_plan_daily", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_daily"}, "test.yoda.not_null_analytics___loyalty__merchant_plan_daily_merchant_id.4689cfe27e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_plan_daily_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty__merchant_plan_daily_merchant_id.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_plan_daily_merchant_id.4689cfe27e", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_daily", "not_null_analytics___loyalty__merchant_plan_daily_merchant_id"], "alias": "not_null_analytics___loyalty__merchant_plan_daily_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.5641642, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.yml/not_null_analytics___loyalty__merchant_plan_daily_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_plan_daily where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty__merchant_plan_daily", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_daily_merchant_id__date.910e095295": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_id", "date"], "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_daily_merchant_id__date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_0afeeaa4aa3db599c6661a3bd2985756.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_daily_merchant_id__date.910e095295", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_daily", "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_daily_merchant_id__date"], "alias": "dbt_utils_unique_combination_o_0afeeaa4aa3db599c6661a3bd2985756", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_0afeeaa4aa3db599c6661a3bd2985756", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_0afeeaa4aa3db599c6661a3bd2985756"}, "created_at": 1700082642.5703206, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_0afeeaa4aa3db599c6661a3bd2985756\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.yml/dbt_utils_unique_combination_o_0afeeaa4aa3db599c6661a3bd2985756.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_id, date\n from dev_dkruh1.analytics___loyalty__merchant_plan_daily\n group by merchant_id, date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_daily", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_daily_1.6645c73023": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a17474dd8c4413625a7599e5078f8339.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_daily_1.6645c73023", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_daily_1"], "alias": "dbt_expectations_expect_table__a17474dd8c4413625a7599e5078f8339", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a17474dd8c4413625a7599e5078f8339", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a17474dd8c4413625a7599e5078f8339"}, "created_at": 1700082642.5782208, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a17474dd8c4413625a7599e5078f8339\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.yml/dbt_expectations_expect_table__a17474dd8c4413625a7599e5078f8339.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__merchant_plan_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_daily", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_daily"}, "test.yoda.not_null_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id.0ddab5de7a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___f364b6817f2209925f5c2735cb0ad6ac.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id.0ddab5de7a", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "not_null_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id"], "alias": "not_null_analytics___loyalty___f364b6817f2209925f5c2735cb0ad6ac", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___f364b6817f2209925f5c2735cb0ad6ac", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___f364b6817f2209925f5c2735cb0ad6ac"}, "created_at": 1700082642.6107976, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___f364b6817f2209925f5c2735cb0ad6ac\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.yml/not_null_analytics___loyalty___f364b6817f2209925f5c2735cb0ad6ac.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id__month__closing_plan_name_in_month.b4d278a957": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_id", "month", "closing_plan_name_in_month"], "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id__month__closing_plan_name_in_month", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_28d7248cf68437d77b2dca73babf8ac1.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id__month__closing_plan_name_in_month.b4d278a957", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id__month__closing_plan_name_in_month"], "alias": "dbt_utils_unique_combination_o_28d7248cf68437d77b2dca73babf8ac1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_28d7248cf68437d77b2dca73babf8ac1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_28d7248cf68437d77b2dca73babf8ac1"}, "created_at": 1700082642.617009, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_28d7248cf68437d77b2dca73babf8ac1\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.yml/dbt_utils_unique_combination_o_28d7248cf68437d77b2dca73babf8ac1.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_id, month, closing_plan_name_in_month\n from dev_dkruh1.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly\n group by merchant_id, month, closing_plan_name_in_month\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_1.f21d5798b2": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__713b016a74e460cb0f5688e806e122ed.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_1.f21d5798b2", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_1"], "alias": "dbt_expectations_expect_table__713b016a74e460cb0f5688e806e122ed", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__713b016a74e460cb0f5688e806e122ed", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__713b016a74e460cb0f5688e806e122ed"}, "created_at": 1700082642.6245782, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__713b016a74e460cb0f5688e806e122ed\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.yml/dbt_expectations_expect_table__713b016a74e460cb0f5688e806e122ed.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly"}, "test.yoda.not_null_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id.0de7bae5e7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_metrics_cohort')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___69f50f977d111daa87f0a99b954d3ee7.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id.0de7bae5e7", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_metrics_cohort", "not_null_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id"], "alias": "not_null_analytics___loyalty___69f50f977d111daa87f0a99b954d3ee7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___69f50f977d111daa87f0a99b954d3ee7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___69f50f977d111daa87f0a99b954d3ee7"}, "created_at": 1700082642.6606297, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___69f50f977d111daa87f0a99b954d3ee7\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_metrics_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.yml/not_null_analytics___loyalty___69f50f977d111daa87f0a99b954d3ee7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_plan_metrics_cohort where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty__merchant_plan_metrics_cohort", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"}, "test.yoda.not_null_analytics___loyalty__merchant_plan_metrics_cohort_plan_name.80a712c76b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_metrics_cohort')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_plan_metrics_cohort_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___0b8865c3aa2817a923443e28f8a964e2.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_plan_metrics_cohort_plan_name.80a712c76b", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_metrics_cohort", "not_null_analytics___loyalty__merchant_plan_metrics_cohort_plan_name"], "alias": "not_null_analytics___loyalty___0b8865c3aa2817a923443e28f8a964e2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___0b8865c3aa2817a923443e28f8a964e2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___0b8865c3aa2817a923443e28f8a964e2"}, "created_at": 1700082642.6665254, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___0b8865c3aa2817a923443e28f8a964e2\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_metrics_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.yml/not_null_analytics___loyalty___0b8865c3aa2817a923443e28f8a964e2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_plan_metrics_cohort where plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___loyalty__merchant_plan_metrics_cohort", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_metrics_cohort_1.0cd56bd5e4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_metrics_cohort')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_metrics_cohort_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8391c8d1760e3fba63110c03087960d2.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_metrics_cohort_1.0cd56bd5e4", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_metrics_cohort", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_metrics_cohort_1"], "alias": "dbt_expectations_expect_table__8391c8d1760e3fba63110c03087960d2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8391c8d1760e3fba63110c03087960d2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8391c8d1760e3fba63110c03087960d2"}, "created_at": 1700082642.67235, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8391c8d1760e3fba63110c03087960d2\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_metrics_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.yml/dbt_expectations_expect_table__8391c8d1760e3fba63110c03087960d2.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__merchant_plan_metrics_cohort\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_metrics_cohort", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id__plan_name.32ba8dcd0e": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_id", "plan_name"], "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_metrics_cohort')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id__plan_name", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_64eb386b5b6067935bbde24d57b95178.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id__plan_name.32ba8dcd0e", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_metrics_cohort", "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id__plan_name"], "alias": "dbt_utils_unique_combination_o_64eb386b5b6067935bbde24d57b95178", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_64eb386b5b6067935bbde24d57b95178", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_64eb386b5b6067935bbde24d57b95178"}, "created_at": 1700082642.6796448, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_64eb386b5b6067935bbde24d57b95178\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_metrics_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.yml/dbt_utils_unique_combination_o_64eb386b5b6067935bbde24d57b95178.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_id, plan_name\n from dev_dkruh1.analytics___loyalty__merchant_plan_metrics_cohort\n group by merchant_id, plan_name\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_metrics_cohort", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"}, "test.yoda.not_null_analytics___loyalty__merchant_plan_monthly_month.405e74f036": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_plan_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty__merchant_plan_monthly_month.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_plan_monthly_month.405e74f036", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_monthly", "not_null_analytics___loyalty__merchant_plan_monthly_month"], "alias": "not_null_analytics___loyalty__merchant_plan_monthly_month", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.7235897, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.yml/not_null_analytics___loyalty__merchant_plan_monthly_month.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_plan_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___loyalty__merchant_plan_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_monthly"}, "test.yoda.not_null_analytics___loyalty__merchant_plan_monthly_merchant_id.d4a95f2f42": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_plan_monthly_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty__merchant_plan_monthly_merchant_id.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_plan_monthly_merchant_id.d4a95f2f42", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_monthly", "not_null_analytics___loyalty__merchant_plan_monthly_merchant_id"], "alias": "not_null_analytics___loyalty__merchant_plan_monthly_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.7291093, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.yml/not_null_analytics___loyalty__merchant_plan_monthly_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_plan_monthly where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty__merchant_plan_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_monthly_merchant_id__month.384704e014": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_id", "month"], "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_monthly_merchant_id__month", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_f21971bdc23eb463a989a9d96158ff7d.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_monthly_merchant_id__month.384704e014", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_monthly", "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_monthly_merchant_id__month"], "alias": "dbt_utils_unique_combination_o_f21971bdc23eb463a989a9d96158ff7d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_f21971bdc23eb463a989a9d96158ff7d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_f21971bdc23eb463a989a9d96158ff7d"}, "created_at": 1700082642.7343135, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_f21971bdc23eb463a989a9d96158ff7d\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.yml/dbt_utils_unique_combination_o_f21971bdc23eb463a989a9d96158ff7d.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_id, month\n from dev_dkruh1.analytics___loyalty__merchant_plan_monthly\n group by merchant_id, month\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_monthly_1.febd544ad4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__dfb84efb2deaa76f2c8ecbd5a95d13e3.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_monthly_1.febd544ad4", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_monthly_1"], "alias": "dbt_expectations_expect_table__dfb84efb2deaa76f2c8ecbd5a95d13e3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__dfb84efb2deaa76f2c8ecbd5a95d13e3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__dfb84efb2deaa76f2c8ecbd5a95d13e3"}, "created_at": 1700082642.7422776, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__dfb84efb2deaa76f2c8ecbd5a95d13e3\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.yml/dbt_expectations_expect_table__dfb84efb2deaa76f2c8ecbd5a95d13e3.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__merchant_plan_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_monthly"}, "test.yoda.not_null_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name.1f55d9d268": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_retention_cohort_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___dc2dafddddd3bbba70c8394be38dcb8c.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name.1f55d9d268", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_retention_cohort_monthly", "not_null_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name"], "alias": "not_null_analytics___loyalty___dc2dafddddd3bbba70c8394be38dcb8c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___dc2dafddddd3bbba70c8394be38dcb8c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___dc2dafddddd3bbba70c8394be38dcb8c"}, "created_at": 1700082642.7683275, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___dc2dafddddd3bbba70c8394be38dcb8c\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.yml/not_null_analytics___loyalty___dc2dafddddd3bbba70c8394be38dcb8c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_plan_retention_cohort_monthly where plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___loyalty__merchant_plan_retention_cohort_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_retention_cohort_monthly_1.8e614976e5": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_retention_cohort_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_retention_cohort_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a11b2bc41db17dd0160059bcff2dca28.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_retention_cohort_monthly_1.8e614976e5", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_retention_cohort_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_retention_cohort_monthly_1"], "alias": "dbt_expectations_expect_table__a11b2bc41db17dd0160059bcff2dca28", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a11b2bc41db17dd0160059bcff2dca28", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a11b2bc41db17dd0160059bcff2dca28"}, "created_at": 1700082642.7742555, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a11b2bc41db17dd0160059bcff2dca28\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.yml/dbt_expectations_expect_table__a11b2bc41db17dd0160059bcff2dca28.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__merchant_plan_retention_cohort_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_retention_cohort_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name__month__merchant_id.a6b68aa897": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["plan_name", "month", "merchant_id"], "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_retention_cohort_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name__month__merchant_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_d51b2bad1145be5959d4be309fba5a71.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name__month__merchant_id.a6b68aa897", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_retention_cohort_monthly", "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name__month__merchant_id"], "alias": "dbt_utils_unique_combination_o_d51b2bad1145be5959d4be309fba5a71", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_d51b2bad1145be5959d4be309fba5a71", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_d51b2bad1145be5959d4be309fba5a71"}, "created_at": 1700082642.7811222, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_d51b2bad1145be5959d4be309fba5a71\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.yml/dbt_utils_unique_combination_o_d51b2bad1145be5959d4be309fba5a71.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n plan_name, month, merchant_id\n from dev_dkruh1.analytics___loyalty__merchant_plan_retention_cohort_monthly\n group by plan_name, month, merchant_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_retention_cohort_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly"}, "test.yoda.not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id.33677a28c7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_value_cohort_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___a584c641a33ff6c5b795d47de201b6e4.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id.33677a28c7", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_value_cohort_monthly", "not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id"], "alias": "not_null_analytics___loyalty___a584c641a33ff6c5b795d47de201b6e4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___a584c641a33ff6c5b795d47de201b6e4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___a584c641a33ff6c5b795d47de201b6e4"}, "created_at": 1700082642.825085, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___a584c641a33ff6c5b795d47de201b6e4\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_value_cohort_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.yml/not_null_analytics___loyalty___a584c641a33ff6c5b795d47de201b6e4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_plan_value_cohort_monthly where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty__merchant_plan_value_cohort_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"}, "test.yoda.not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_plan_name.afbdee353c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_value_cohort_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___c26a6757ac44fa53ec5542aeee19b291.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_plan_name.afbdee353c", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_value_cohort_monthly", "not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_plan_name"], "alias": "not_null_analytics___loyalty___c26a6757ac44fa53ec5542aeee19b291", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___c26a6757ac44fa53ec5542aeee19b291", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___c26a6757ac44fa53ec5542aeee19b291"}, "created_at": 1700082642.8309495, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___c26a6757ac44fa53ec5542aeee19b291\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_value_cohort_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.yml/not_null_analytics___loyalty___c26a6757ac44fa53ec5542aeee19b291.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__merchant_plan_value_cohort_monthly where plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___loyalty__merchant_plan_value_cohort_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id__month__plan_name.8c163c6b8d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_id", "month", "plan_name"], "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_value_cohort_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id__month__plan_name", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_047443ab4a8937b279eb1a6b76d9cc4b.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id__month__plan_name.8c163c6b8d", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_value_cohort_monthly", "dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id__month__plan_name"], "alias": "dbt_utils_unique_combination_o_047443ab4a8937b279eb1a6b76d9cc4b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_047443ab4a8937b279eb1a6b76d9cc4b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_047443ab4a8937b279eb1a6b76d9cc4b"}, "created_at": 1700082642.8369858, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_047443ab4a8937b279eb1a6b76d9cc4b\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_value_cohort_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.yml/dbt_utils_unique_combination_o_047443ab4a8937b279eb1a6b76d9cc4b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_id, month, plan_name\n from dev_dkruh1.analytics___loyalty__merchant_plan_value_cohort_monthly\n group by merchant_id, month, plan_name\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_value_cohort_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_value_cohort_monthly_1.a9b253fd71": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__merchant_plan_value_cohort_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_value_cohort_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f635128427b15a715c082f62f8cb87f5.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_value_cohort_monthly_1.a9b253fd71", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__merchant_plan_value_cohort_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_value_cohort_monthly_1"], "alias": "dbt_expectations_expect_table__f635128427b15a715c082f62f8cb87f5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f635128427b15a715c082f62f8cb87f5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f635128427b15a715c082f62f8cb87f5"}, "created_at": 1700082642.8441238, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f635128427b15a715c082f62f8cb87f5\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__merchant_plan_value_cohort_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.yml/dbt_expectations_expect_table__f635128427b15a715c082f62f8cb87f5.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__merchant_plan_value_cohort_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__merchant_plan_value_cohort_monthly", "attached_node": "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"}, "test.yoda.not_null_analytics___loyalty__organization_metrics_monthly_month.0e1b1f6483": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___loyalty__organization_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__organization_metrics_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___52a5c8febf3b2fa1f781ee566cb12027.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__organization_metrics_monthly_month.0e1b1f6483", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__organization_metrics_monthly", "not_null_analytics___loyalty__organization_metrics_monthly_month"], "alias": "not_null_analytics___loyalty___52a5c8febf3b2fa1f781ee566cb12027", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___52a5c8febf3b2fa1f781ee566cb12027", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___52a5c8febf3b2fa1f781ee566cb12027"}, "created_at": 1700082642.8653927, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___52a5c8febf3b2fa1f781ee566cb12027\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.yml/not_null_analytics___loyalty___52a5c8febf3b2fa1f781ee566cb12027.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__organization_metrics_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___loyalty__organization_metrics_monthly", "attached_node": "model.yoda.analytics___loyalty__organization_metrics_monthly"}, "test.yoda.not_null_analytics___loyalty__organization_metrics_monthly_organization_key.810a30761f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___loyalty__organization_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__organization_metrics_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___2dceb348405a82859e81a2711937b9c7.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__organization_metrics_monthly_organization_key.810a30761f", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__organization_metrics_monthly", "not_null_analytics___loyalty__organization_metrics_monthly_organization_key"], "alias": "not_null_analytics___loyalty___2dceb348405a82859e81a2711937b9c7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___2dceb348405a82859e81a2711937b9c7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___2dceb348405a82859e81a2711937b9c7"}, "created_at": 1700082642.8715384, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___2dceb348405a82859e81a2711937b9c7\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.yml/not_null_analytics___loyalty___2dceb348405a82859e81a2711937b9c7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__organization_metrics_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___loyalty__organization_metrics_monthly", "attached_node": "model.yoda.analytics___loyalty__organization_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__organization_metrics_monthly_organization_key__month.8c4d999668": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["organization_key", "month"], "model": "{{ get_where_subquery(ref('analytics___loyalty__organization_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__organization_metrics_monthly_organization_key__month", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_b6c16640bd8fc2a27d0c10159754bbd7.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__organization_metrics_monthly_organization_key__month.8c4d999668", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__organization_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___loyalty__organization_metrics_monthly_organization_key__month"], "alias": "dbt_utils_unique_combination_o_b6c16640bd8fc2a27d0c10159754bbd7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_b6c16640bd8fc2a27d0c10159754bbd7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_b6c16640bd8fc2a27d0c10159754bbd7"}, "created_at": 1700082642.8769886, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_b6c16640bd8fc2a27d0c10159754bbd7\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.yml/dbt_utils_unique_combination_o_b6c16640bd8fc2a27d0c10159754bbd7.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n organization_key, month\n from dev_dkruh1.analytics___loyalty__organization_metrics_monthly\n group by organization_key, month\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__organization_metrics_monthly", "attached_node": "model.yoda.analytics___loyalty__organization_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__organization_metrics_monthly_1.288dc7faac": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__organization_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__organization_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3a3d6e9ef0676753ada012c8250c3b8e.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__organization_metrics_monthly_1.288dc7faac", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__organization_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__organization_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__3a3d6e9ef0676753ada012c8250c3b8e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3a3d6e9ef0676753ada012c8250c3b8e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3a3d6e9ef0676753ada012c8250c3b8e"}, "created_at": 1700082642.8861725, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3a3d6e9ef0676753ada012c8250c3b8e\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.yml/dbt_expectations_expect_table__3a3d6e9ef0676753ada012c8250c3b8e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__organization_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__organization_metrics_monthly", "attached_node": "model.yoda.analytics___loyalty__organization_metrics_monthly"}, "test.yoda.not_null_analytics___loyalty__plan_metrics_daily_date.65fd4e6c00": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___loyalty__plan_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__plan_metrics_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty__plan_metrics_daily_date.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__plan_metrics_daily_date.65fd4e6c00", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__plan_metrics_daily", "not_null_analytics___loyalty__plan_metrics_daily_date"], "alias": "not_null_analytics___loyalty__plan_metrics_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.9167027, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__plan_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__plan_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.yml/not_null_analytics___loyalty__plan_metrics_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__plan_metrics_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___loyalty__plan_metrics_daily", "attached_node": "model.yoda.analytics___loyalty__plan_metrics_daily"}, "test.yoda.not_null_analytics___loyalty__plan_metrics_daily_plan_name.0be963a660": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___loyalty__plan_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__plan_metrics_daily_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty__plan_metrics_daily_plan_name.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__plan_metrics_daily_plan_name.0be963a660", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__plan_metrics_daily", "not_null_analytics___loyalty__plan_metrics_daily_plan_name"], "alias": "not_null_analytics___loyalty__plan_metrics_daily_plan_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.9225, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__plan_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__plan_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.yml/not_null_analytics___loyalty__plan_metrics_daily_plan_name.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__plan_metrics_daily where plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___loyalty__plan_metrics_daily", "attached_node": "model.yoda.analytics___loyalty__plan_metrics_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_daily_1.13a87e3ad1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__plan_metrics_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4a3d23f2c1ed24e70a9d1e4a17a3148e.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_daily_1.13a87e3ad1", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__plan_metrics_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_daily_1"], "alias": "dbt_expectations_expect_table__4a3d23f2c1ed24e70a9d1e4a17a3148e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4a3d23f2c1ed24e70a9d1e4a17a3148e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4a3d23f2c1ed24e70a9d1e4a17a3148e"}, "created_at": 1700082642.9281034, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4a3d23f2c1ed24e70a9d1e4a17a3148e\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__plan_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__plan_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.yml/dbt_expectations_expect_table__4a3d23f2c1ed24e70a9d1e4a17a3148e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__plan_metrics_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__plan_metrics_daily", "attached_node": "model.yoda.analytics___loyalty__plan_metrics_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_daily_date__did_upgrade_first_day__plan_name__plan_prior_to_change__changes__platform__first_plan_ever__is_ht_ss.7aa15dd6bd": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "did_upgrade_first_day", "plan_name", "plan_prior_to_change", "changes", "platform", "first_plan_ever", "is_ht_ss"], "model": "{{ get_where_subquery(ref('analytics___loyalty__plan_metrics_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_daily_date__did_upgrade_first_day__plan_name__plan_prior_to_change__changes__platform__first_plan_ever__is_ht_ss", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_1d0134e7a7e85262c13844375ea29912.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_daily_date__did_upgrade_first_day__plan_name__plan_prior_to_change__changes__platform__first_plan_ever__is_ht_ss.7aa15dd6bd", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__plan_metrics_daily", "dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_daily_date__did_upgrade_first_day__plan_name__plan_prior_to_change__changes__platform__first_plan_ever__is_ht_ss"], "alias": "dbt_utils_unique_combination_o_1d0134e7a7e85262c13844375ea29912", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_1d0134e7a7e85262c13844375ea29912", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_1d0134e7a7e85262c13844375ea29912"}, "created_at": 1700082642.9342973, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_1d0134e7a7e85262c13844375ea29912\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__plan_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__plan_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.yml/dbt_utils_unique_combination_o_1d0134e7a7e85262c13844375ea29912.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, did_upgrade_first_day, plan_name, plan_prior_to_change, changes, platform, first_plan_ever, is_ht_ss\n from dev_dkruh1.analytics___loyalty__plan_metrics_daily\n group by date, did_upgrade_first_day, plan_name, plan_prior_to_change, changes, platform, first_plan_ever, is_ht_ss\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__plan_metrics_daily", "attached_node": "model.yoda.analytics___loyalty__plan_metrics_daily"}, "test.yoda.not_null_analytics___loyalty__plan_metrics_monthly_month.b6e5e44a1f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___loyalty__plan_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__plan_metrics_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty__plan_metrics_monthly_month.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__plan_metrics_monthly_month.b6e5e44a1f", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__plan_metrics_monthly", "not_null_analytics___loyalty__plan_metrics_monthly_month"], "alias": "not_null_analytics___loyalty__plan_metrics_monthly_month", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082642.9734092, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty__plan_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__plan_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.yml/not_null_analytics___loyalty__plan_metrics_monthly_month.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__plan_metrics_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___loyalty__plan_metrics_monthly", "attached_node": "model.yoda.analytics___loyalty__plan_metrics_monthly"}, "test.yoda.not_null_analytics___loyalty__plan_metrics_monthly_opening_plan_id_in_month.23d6d6c34e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opening_plan_id_in_month", "model": "{{ get_where_subquery(ref('analytics___loyalty__plan_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__plan_metrics_monthly_opening_plan_id_in_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___005087f96b24238bdc3bdb2294015da2.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__plan_metrics_monthly_opening_plan_id_in_month.23d6d6c34e", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__plan_metrics_monthly", "not_null_analytics___loyalty__plan_metrics_monthly_opening_plan_id_in_month"], "alias": "not_null_analytics___loyalty___005087f96b24238bdc3bdb2294015da2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___005087f96b24238bdc3bdb2294015da2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___005087f96b24238bdc3bdb2294015da2"}, "created_at": 1700082642.9787645, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___005087f96b24238bdc3bdb2294015da2\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__plan_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__plan_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.yml/not_null_analytics___loyalty___005087f96b24238bdc3bdb2294015da2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__plan_metrics_monthly where opening_plan_id_in_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opening_plan_id_in_month", "file_key_name": "models.analytics___loyalty__plan_metrics_monthly", "attached_node": "model.yoda.analytics___loyalty__plan_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_monthly_1.3b0ceb962e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__plan_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__dbfa51c173a82e079a4f7ce4ab71092c.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_monthly_1.3b0ceb962e", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__plan_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__dbfa51c173a82e079a4f7ce4ab71092c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__dbfa51c173a82e079a4f7ce4ab71092c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__dbfa51c173a82e079a4f7ce4ab71092c"}, "created_at": 1700082642.984573, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__dbfa51c173a82e079a4f7ce4ab71092c\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__plan_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__plan_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.yml/dbt_expectations_expect_table__dbfa51c173a82e079a4f7ce4ab71092c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__plan_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__plan_metrics_monthly", "attached_node": "model.yoda.analytics___loyalty__plan_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_monthly_month__did_upgrade_first_day_in_month__closing_plan_name_in_month__opening_plan_name_in_month__closing_plan_id_in_month__opening_plan_id_in_month__plan_changes__platform__is_ht_ss.88aa8d2f4b": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "did_upgrade_first_day_in_month", "closing_plan_name_in_month", "opening_plan_name_in_month", "closing_plan_id_in_month", "opening_plan_id_in_month", "plan_changes", "platform", "is_ht_ss"], "model": "{{ get_where_subquery(ref('analytics___loyalty__plan_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_monthly_month__did_upgrade_first_day_in_month__closing_plan_name_in_month__opening_plan_name_in_month__closing_plan_id_in_month__opening_plan_id_in_month__plan_changes__platform__is_ht_ss", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_922a7144de33cf3b0522482dd1464af6.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_monthly_month__did_upgrade_first_day_in_month__closing_plan_name_in_month__opening_plan_name_in_month__closing_plan_id_in_month__opening_plan_id_in_month__plan_changes__platform__is_ht_ss.88aa8d2f4b", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__plan_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_monthly_month__did_upgrade_first_day_in_month__closing_plan_name_in_month__opening_plan_name_in_month__closing_plan_id_in_month__opening_plan_id_in_month__plan_changes__platform__is_ht_ss"], "alias": "dbt_utils_unique_combination_o_922a7144de33cf3b0522482dd1464af6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_922a7144de33cf3b0522482dd1464af6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_922a7144de33cf3b0522482dd1464af6"}, "created_at": 1700082642.9911797, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_922a7144de33cf3b0522482dd1464af6\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__plan_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__plan_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.yml/dbt_utils_unique_combination_o_922a7144de33cf3b0522482dd1464af6.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, did_upgrade_first_day_in_month, closing_plan_name_in_month, opening_plan_name_in_month, closing_plan_id_in_month, opening_plan_id_in_month, plan_changes, platform, is_ht_ss\n from dev_dkruh1.analytics___loyalty__plan_metrics_monthly\n group by month, did_upgrade_first_day_in_month, closing_plan_name_in_month, opening_plan_name_in_month, closing_plan_id_in_month, opening_plan_id_in_month, plan_changes, platform, is_ht_ss\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__plan_metrics_monthly", "attached_node": "model.yoda.analytics___loyalty__plan_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__point_expiration_policy_settings_over_time_1.102e032ee9": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__point_expiration_policy_settings_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__point_expiration_policy_settings_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5a54a8d5adf8c69b989b853f09a18db8.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__point_expiration_policy_settings_over_time_1.102e032ee9", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__point_expiration_policy_settings_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__point_expiration_policy_settings_over_time_1"], "alias": "dbt_expectations_expect_table__5a54a8d5adf8c69b989b853f09a18db8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5a54a8d5adf8c69b989b853f09a18db8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5a54a8d5adf8c69b989b853f09a18db8"}, "created_at": 1700082643.0211275, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5a54a8d5adf8c69b989b853f09a18db8\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__point_expiration_policy_settings_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.yml/dbt_expectations_expect_table__5a54a8d5adf8c69b989b853f09a18db8.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__point_expiration_policy_settings_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__point_expiration_policy_settings_over_time", "attached_node": "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__point_expiration_policy_settings_over_time_merchant_id__from_date.6873ddf781": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_id", "from_date"], "model": "{{ get_where_subquery(ref('analytics___loyalty__point_expiration_policy_settings_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__point_expiration_policy_settings_over_time_merchant_id__from_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_89a6703c52b925f59bce760f1c89d776.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__point_expiration_policy_settings_over_time_merchant_id__from_date.6873ddf781", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__point_expiration_policy_settings_over_time", "dbt_utils_unique_combination_of_columns_analytics___loyalty__point_expiration_policy_settings_over_time_merchant_id__from_date"], "alias": "dbt_utils_unique_combination_o_89a6703c52b925f59bce760f1c89d776", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_89a6703c52b925f59bce760f1c89d776", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_89a6703c52b925f59bce760f1c89d776"}, "created_at": 1700082643.0273569, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_89a6703c52b925f59bce760f1c89d776\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__point_expiration_policy_settings_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.yml/dbt_utils_unique_combination_o_89a6703c52b925f59bce760f1c89d776.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_id, from_date\n from dev_dkruh1.analytics___loyalty__point_expiration_policy_settings_over_time\n group by merchant_id, from_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__point_expiration_policy_settings_over_time", "attached_node": "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time"}, "test.yoda.not_null_analytics___loyalty__redemption_details_redemption_option_id.e2bb331bd3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "redemption_option_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__redemption_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__redemption_details_redemption_option_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___fcddf1f7273b7ba7cf293de23e139a5c.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__redemption_details_redemption_option_id.e2bb331bd3", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__redemption_details", "not_null_analytics___loyalty__redemption_details_redemption_option_id"], "alias": "not_null_analytics___loyalty___fcddf1f7273b7ba7cf293de23e139a5c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___fcddf1f7273b7ba7cf293de23e139a5c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___fcddf1f7273b7ba7cf293de23e139a5c"}, "created_at": 1700082643.0665534, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___fcddf1f7273b7ba7cf293de23e139a5c\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__redemption_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__redemption_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.yml/not_null_analytics___loyalty___fcddf1f7273b7ba7cf293de23e139a5c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__redemption_details where redemption_option_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "redemption_option_id", "file_key_name": "models.analytics___loyalty__redemption_details", "attached_node": "model.yoda.analytics___loyalty__redemption_details"}, "test.yoda.not_null_analytics___loyalty__redemption_details_point_redemption_id.e14549b0e0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "point_redemption_id", "model": "{{ get_where_subquery(ref('analytics___loyalty__redemption_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty__redemption_details_point_redemption_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty___9936c9af5a75b6718472dd6432052012.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.yml", "unique_id": "test.yoda.not_null_analytics___loyalty__redemption_details_point_redemption_id.e14549b0e0", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__redemption_details", "not_null_analytics___loyalty__redemption_details_point_redemption_id"], "alias": "not_null_analytics___loyalty___9936c9af5a75b6718472dd6432052012", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty___9936c9af5a75b6718472dd6432052012", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty___9936c9af5a75b6718472dd6432052012"}, "created_at": 1700082643.0721276, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty___9936c9af5a75b6718472dd6432052012\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__redemption_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__redemption_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.yml/not_null_analytics___loyalty___9936c9af5a75b6718472dd6432052012.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty__redemption_details where point_redemption_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "point_redemption_id", "file_key_name": "models.analytics___loyalty__redemption_details", "attached_node": "model.yoda.analytics___loyalty__redemption_details"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__redemption_details_redemption_option_id__point_redemption_id.3abfe4b96b": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["redemption_option_id", "point_redemption_id"], "model": "{{ get_where_subquery(ref('analytics___loyalty__redemption_details')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty__redemption_details_redemption_option_id__point_redemption_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_7e7bd97bf14c62bf799fa29b5373c347.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__redemption_details_redemption_option_id__point_redemption_id.3abfe4b96b", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__redemption_details", "dbt_utils_unique_combination_of_columns_analytics___loyalty__redemption_details_redemption_option_id__point_redemption_id"], "alias": "dbt_utils_unique_combination_o_7e7bd97bf14c62bf799fa29b5373c347", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_7e7bd97bf14c62bf799fa29b5373c347", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_7e7bd97bf14c62bf799fa29b5373c347"}, "created_at": 1700082643.0782275, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_7e7bd97bf14c62bf799fa29b5373c347\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__redemption_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__redemption_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.yml/dbt_utils_unique_combination_o_7e7bd97bf14c62bf799fa29b5373c347.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n redemption_option_id, point_redemption_id\n from dev_dkruh1.analytics___loyalty__redemption_details\n group by redemption_option_id, point_redemption_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__redemption_details", "attached_node": "model.yoda.analytics___loyalty__redemption_details"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__redemption_details_1.e5d3b536f8": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty__redemption_details')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__redemption_details_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d1e32b0719a38680707a69a97e1c7c37.sql", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__redemption_details_1.e5d3b536f8", "fqn": ["yoda", "analytics", "loyalty", "marts", "analytics___loyalty__redemption_details", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__redemption_details_1"], "alias": "dbt_expectations_expect_table__d1e32b0719a38680707a69a97e1c7c37", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d1e32b0719a38680707a69a97e1c7c37", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d1e32b0719a38680707a69a97e1c7c37"}, "created_at": 1700082643.0850093, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d1e32b0719a38680707a69a97e1c7c37\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty__redemption_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty__redemption_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.yml/dbt_expectations_expect_table__d1e32b0719a38680707a69a97e1c7c37.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty__redemption_details\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty__redemption_details", "attached_node": "model.yoda.analytics___loyalty__redemption_details"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_1.fe738f9e2f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__earning_rule')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__03d69224b2cfb49a36b7f94e3dac3118.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_1.fe738f9e2f", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__earning_rule", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_1"], "alias": "dbt_expectations_expect_table__03d69224b2cfb49a36b7f94e3dac3118", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__03d69224b2cfb49a36b7f94e3dac3118", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__03d69224b2cfb49a36b7f94e3dac3118"}, "created_at": 1700082643.1218736, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__03d69224b2cfb49a36b7f94e3dac3118\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__earning_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__earning_rule"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.yml/dbt_expectations_expect_table__03d69224b2cfb49a36b7f94e3dac3118.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__earning_rule\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__earning_rule", "attached_node": "model.yoda.analytics___loyalty_stg__earning_rule"}, "test.yoda.unique_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id.a213594f77": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "earning_rule_activation_history_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__earning_rule_activation_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg_d29a4c45b6430e62874ec1b9de6bc544.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id.a213594f77", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__earning_rule_activation_history", "unique_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id"], "alias": "unique_analytics___loyalty_stg_d29a4c45b6430e62874ec1b9de6bc544", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___loyalty_stg_d29a4c45b6430e62874ec1b9de6bc544", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___loyalty_stg_d29a4c45b6430e62874ec1b9de6bc544"}, "created_at": 1700082643.1440256, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___loyalty_stg_d29a4c45b6430e62874ec1b9de6bc544\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__earning_rule_activation_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__earning_rule_activation_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.yml/unique_analytics___loyalty_stg_d29a4c45b6430e62874ec1b9de6bc544.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select earning_rule_activation_history_id from dev_dkruh1.analytics___loyalty_stg__earning_rule_activation_history where earning_rule_activation_history_id is not null group by earning_rule_activation_history_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "earning_rule_activation_history_id", "file_key_name": "models.analytics___loyalty_stg__earning_rule_activation_history", "attached_node": "model.yoda.analytics___loyalty_stg__earning_rule_activation_history"}, "test.yoda.not_null_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id.4a13d15529": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "earning_rule_activation_history_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__earning_rule_activation_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_s_2e182e265d5cb4388ec52be876662f66.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id.4a13d15529", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__earning_rule_activation_history", "not_null_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id"], "alias": "not_null_analytics___loyalty_s_2e182e265d5cb4388ec52be876662f66", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty_s_2e182e265d5cb4388ec52be876662f66", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty_s_2e182e265d5cb4388ec52be876662f66"}, "created_at": 1700082643.1509578, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty_s_2e182e265d5cb4388ec52be876662f66\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__earning_rule_activation_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__earning_rule_activation_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.yml/not_null_analytics___loyalty_s_2e182e265d5cb4388ec52be876662f66.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__earning_rule_activation_history where earning_rule_activation_history_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "earning_rule_activation_history_id", "file_key_name": "models.analytics___loyalty_stg__earning_rule_activation_history", "attached_node": "model.yoda.analytics___loyalty_stg__earning_rule_activation_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_activation_history_1.547fa3e6f0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__earning_rule_activation_history')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_activation_history_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5ee539c79bbed28004b3f9b41d08840e.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_activation_history_1.547fa3e6f0", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__earning_rule_activation_history", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_activation_history_1"], "alias": "dbt_expectations_expect_table__5ee539c79bbed28004b3f9b41d08840e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5ee539c79bbed28004b3f9b41d08840e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5ee539c79bbed28004b3f9b41d08840e"}, "created_at": 1700082643.1571403, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5ee539c79bbed28004b3f9b41d08840e\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__earning_rule_activation_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__earning_rule_activation_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.yml/dbt_expectations_expect_table__5ee539c79bbed28004b3f9b41d08840e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__earning_rule_activation_history\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__earning_rule_activation_history", "attached_node": "model.yoda.analytics___loyalty_stg__earning_rule_activation_history"}, "test.yoda.unique_analytics___loyalty_stg__loyalty_account_app_key.6790b9b328": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__loyalty_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__loyalty_account_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg__loyalty_account_app_key.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__loyalty_account_app_key.6790b9b328", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_account", "unique_analytics___loyalty_stg__loyalty_account_app_key"], "alias": "unique_analytics___loyalty_stg__loyalty_account_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082643.1776602, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__loyalty_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__loyalty_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.yml/unique_analytics___loyalty_stg__loyalty_account_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___loyalty_stg__loyalty_account where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___loyalty_stg__loyalty_account", "attached_node": "model.yoda.analytics___loyalty_stg__loyalty_account"}, "test.yoda.not_null_analytics___loyalty_stg__loyalty_account_app_key.2017eceb76": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__loyalty_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__loyalty_account_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_stg__loyalty_account_app_key.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__loyalty_account_app_key.2017eceb76", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_account", "not_null_analytics___loyalty_stg__loyalty_account_app_key"], "alias": "not_null_analytics___loyalty_stg__loyalty_account_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082643.183101, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__loyalty_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__loyalty_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.yml/not_null_analytics___loyalty_stg__loyalty_account_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__loyalty_account where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___loyalty_stg__loyalty_account", "attached_node": "model.yoda.analytics___loyalty_stg__loyalty_account"}, "test.yoda.unique_analytics___loyalty_stg__loyalty_account_merchant_id.4f7bd57481": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__loyalty_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__loyalty_account_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg__loyalty_account_merchant_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__loyalty_account_merchant_id.4f7bd57481", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_account", "unique_analytics___loyalty_stg__loyalty_account_merchant_id"], "alias": "unique_analytics___loyalty_stg__loyalty_account_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082643.188242, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__loyalty_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__loyalty_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.yml/unique_analytics___loyalty_stg__loyalty_account_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select merchant_id from dev_dkruh1.analytics___loyalty_stg__loyalty_account where merchant_id is not null group by merchant_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty_stg__loyalty_account", "attached_node": "model.yoda.analytics___loyalty_stg__loyalty_account"}, "test.yoda.not_null_analytics___loyalty_stg__loyalty_account_merchant_id.bf429bd432": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__loyalty_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__loyalty_account_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_stg__loyalty_account_merchant_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__loyalty_account_merchant_id.bf429bd432", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_account", "not_null_analytics___loyalty_stg__loyalty_account_merchant_id"], "alias": "not_null_analytics___loyalty_stg__loyalty_account_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082643.1937284, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__loyalty_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__loyalty_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.yml/not_null_analytics___loyalty_stg__loyalty_account_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__loyalty_account where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty_stg__loyalty_account", "attached_node": "model.yoda.analytics___loyalty_stg__loyalty_account"}, "test.yoda.unique_analytics___loyalty_stg__loyalty_plan_plan_id.d1f8c825e4": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__loyalty_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__loyalty_plan_plan_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg__loyalty_plan_plan_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__loyalty_plan_plan_id.d1f8c825e4", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_plan", "unique_analytics___loyalty_stg__loyalty_plan_plan_id"], "alias": "unique_analytics___loyalty_stg__loyalty_plan_plan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082643.2159574, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__loyalty_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__loyalty_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.yml/unique_analytics___loyalty_stg__loyalty_plan_plan_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select plan_id from dev_dkruh1.analytics___loyalty_stg__loyalty_plan where plan_id is not null group by plan_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___loyalty_stg__loyalty_plan", "attached_node": "model.yoda.analytics___loyalty_stg__loyalty_plan"}, "test.yoda.not_null_analytics___loyalty_stg__loyalty_plan_plan_id.4557ee26db": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__loyalty_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__loyalty_plan_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_stg__loyalty_plan_plan_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__loyalty_plan_plan_id.4557ee26db", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_plan", "not_null_analytics___loyalty_stg__loyalty_plan_plan_id"], "alias": "not_null_analytics___loyalty_stg__loyalty_plan_plan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082643.2214372, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__loyalty_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__loyalty_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.yml/not_null_analytics___loyalty_stg__loyalty_plan_plan_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__loyalty_plan where plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___loyalty_stg__loyalty_plan", "attached_node": "model.yoda.analytics___loyalty_stg__loyalty_plan"}, "test.yoda.unique_analytics___loyalty_stg__loyalty_plan_plan_name.33743011e6": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__loyalty_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__loyalty_plan_plan_name", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg__loyalty_plan_plan_name.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__loyalty_plan_plan_name.33743011e6", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_plan", "unique_analytics___loyalty_stg__loyalty_plan_plan_name"], "alias": "unique_analytics___loyalty_stg__loyalty_plan_plan_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082643.2269957, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__loyalty_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__loyalty_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.yml/unique_analytics___loyalty_stg__loyalty_plan_plan_name.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select plan_name from dev_dkruh1.analytics___loyalty_stg__loyalty_plan where plan_name is not null group by plan_name having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___loyalty_stg__loyalty_plan", "attached_node": "model.yoda.analytics___loyalty_stg__loyalty_plan"}, "test.yoda.not_null_analytics___loyalty_stg__loyalty_plan_plan_name.2a78efbd09": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__loyalty_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__loyalty_plan_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_stg__loyalty_plan_plan_name.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__loyalty_plan_plan_name.2a78efbd09", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_plan", "not_null_analytics___loyalty_stg__loyalty_plan_plan_name"], "alias": "not_null_analytics___loyalty_stg__loyalty_plan_plan_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082643.2323694, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__loyalty_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__loyalty_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.yml/not_null_analytics___loyalty_stg__loyalty_plan_plan_name.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__loyalty_plan where plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___loyalty_stg__loyalty_plan", "attached_node": "model.yoda.analytics___loyalty_stg__loyalty_plan"}, "test.yoda.unique_analytics___loyalty_stg__loyalty_subscription_subscription_id.39fea8d031": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "subscription_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__loyalty_subscription')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__loyalty_subscription_subscription_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg_9a09e911461dae57d857e8dad0785815.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__loyalty_subscription_subscription_id.39fea8d031", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_subscription", "unique_analytics___loyalty_stg__loyalty_subscription_subscription_id"], "alias": "unique_analytics___loyalty_stg_9a09e911461dae57d857e8dad0785815", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___loyalty_stg_9a09e911461dae57d857e8dad0785815", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___loyalty_stg_9a09e911461dae57d857e8dad0785815"}, "created_at": 1700082643.263354, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___loyalty_stg_9a09e911461dae57d857e8dad0785815\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__loyalty_subscription", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__loyalty_subscription"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.yml/unique_analytics___loyalty_stg_9a09e911461dae57d857e8dad0785815.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select subscription_id from dev_dkruh1.analytics___loyalty_stg__loyalty_subscription where subscription_id is not null group by subscription_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_id", "file_key_name": "models.analytics___loyalty_stg__loyalty_subscription", "attached_node": "model.yoda.analytics___loyalty_stg__loyalty_subscription"}, "test.yoda.not_null_analytics___loyalty_stg__loyalty_subscription_subscription_id.8bac1650ea": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__loyalty_subscription')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__loyalty_subscription_subscription_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_s_66564927dc75e035d4815929fdcb4a64.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__loyalty_subscription_subscription_id.8bac1650ea", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__loyalty_subscription", "not_null_analytics___loyalty_stg__loyalty_subscription_subscription_id"], "alias": "not_null_analytics___loyalty_s_66564927dc75e035d4815929fdcb4a64", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty_s_66564927dc75e035d4815929fdcb4a64", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty_s_66564927dc75e035d4815929fdcb4a64"}, "created_at": 1700082643.269417, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty_s_66564927dc75e035d4815929fdcb4a64\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__loyalty_subscription", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__loyalty_subscription"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.yml/not_null_analytics___loyalty_s_66564927dc75e035d4815929fdcb4a64.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__loyalty_subscription where subscription_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_id", "file_key_name": "models.analytics___loyalty_stg__loyalty_subscription", "attached_node": "model.yoda.analytics___loyalty_stg__loyalty_subscription"}, "test.yoda.unique_analytics___loyalty_stg__merchant_merchant_id.ca6c6e422c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__merchant')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__merchant_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg__merchant_merchant_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__merchant_merchant_id.ca6c6e422c", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__merchant", "unique_analytics___loyalty_stg__merchant_merchant_id"], "alias": "unique_analytics___loyalty_stg__merchant_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082643.3314285, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.yml/unique_analytics___loyalty_stg__merchant_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select merchant_id from dev_dkruh1.analytics___loyalty_stg__merchant where merchant_id is not null group by merchant_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty_stg__merchant", "attached_node": "model.yoda.analytics___loyalty_stg__merchant"}, "test.yoda.not_null_analytics___loyalty_stg__merchant_merchant_id.847c98c38a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__merchant')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__merchant_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_stg__merchant_merchant_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__merchant_merchant_id.847c98c38a", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__merchant", "not_null_analytics___loyalty_stg__merchant_merchant_id"], "alias": "not_null_analytics___loyalty_stg__merchant_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082643.3368917, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__merchant", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__merchant"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.yml/not_null_analytics___loyalty_stg__merchant_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__merchant where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty_stg__merchant", "attached_node": "model.yoda.analytics___loyalty_stg__merchant"}, "test.yoda.not_null_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id.d0e9261f3f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__merchant_segment_event_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_s_983578ab517c281b14dc7e850b38475c.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id.d0e9261f3f", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__merchant_segment_event_over_time", "not_null_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id"], "alias": "not_null_analytics___loyalty_s_983578ab517c281b14dc7e850b38475c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty_s_983578ab517c281b14dc7e850b38475c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty_s_983578ab517c281b14dc7e850b38475c"}, "created_at": 1700082643.3575318, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty_s_983578ab517c281b14dc7e850b38475c\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__merchant_segment_event_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.yml/not_null_analytics___loyalty_s_983578ab517c281b14dc7e850b38475c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__merchant_segment_event_over_time where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty_stg__merchant_segment_event_over_time", "attached_node": "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"}, "test.yoda.not_null_analytics___loyalty_stg__merchant_segment_event_over_time_event_type.bac00dd15b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_type", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__merchant_segment_event_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__merchant_segment_event_over_time_event_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_s_b7eae4556610ce404003c7f6aa355a85.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__merchant_segment_event_over_time_event_type.bac00dd15b", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__merchant_segment_event_over_time", "not_null_analytics___loyalty_stg__merchant_segment_event_over_time_event_type"], "alias": "not_null_analytics___loyalty_s_b7eae4556610ce404003c7f6aa355a85", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty_s_b7eae4556610ce404003c7f6aa355a85", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty_s_b7eae4556610ce404003c7f6aa355a85"}, "created_at": 1700082643.3636734, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty_s_b7eae4556610ce404003c7f6aa355a85\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__merchant_segment_event_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.yml/not_null_analytics___loyalty_s_b7eae4556610ce404003c7f6aa355a85.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__merchant_segment_event_over_time where event_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_type", "file_key_name": "models.analytics___loyalty_stg__merchant_segment_event_over_time", "attached_node": "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id__event_type__from_time.2920e6e030": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_id", "event_type", "from_time"], "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__merchant_segment_event_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id__event_type__from_time", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_c605aee13d90f8ebad3aaca1b9e459de.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id__event_type__from_time.2920e6e030", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__merchant_segment_event_over_time", "dbt_utils_unique_combination_of_columns_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id__event_type__from_time"], "alias": "dbt_utils_unique_combination_o_c605aee13d90f8ebad3aaca1b9e459de", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c605aee13d90f8ebad3aaca1b9e459de", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c605aee13d90f8ebad3aaca1b9e459de"}, "created_at": 1700082643.3693154, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c605aee13d90f8ebad3aaca1b9e459de\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__merchant_segment_event_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.yml/dbt_utils_unique_combination_o_c605aee13d90f8ebad3aaca1b9e459de.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_id, event_type, from_time\n from dev_dkruh1.analytics___loyalty_stg__merchant_segment_event_over_time\n group by merchant_id, event_type, from_time\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__merchant_segment_event_over_time", "attached_node": "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__merchant_segment_event_over_time_1.39c77c7047": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__merchant_segment_event_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__merchant_segment_event_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7ffe15e35230f11107c89b487c394683.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__merchant_segment_event_over_time_1.39c77c7047", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__merchant_segment_event_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__merchant_segment_event_over_time_1"], "alias": "dbt_expectations_expect_table__7ffe15e35230f11107c89b487c394683", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7ffe15e35230f11107c89b487c394683", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7ffe15e35230f11107c89b487c394683"}, "created_at": 1700082643.3764653, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7ffe15e35230f11107c89b487c394683\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__merchant_segment_event_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.yml/dbt_expectations_expect_table__7ffe15e35230f11107c89b487c394683.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__merchant_segment_event_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__merchant_segment_event_over_time", "attached_node": "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"}, "test.yoda.unique_analytics___loyalty_stg__perk_perk_id.f463a4e555": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "perk_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__perk')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__perk_perk_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg__perk_perk_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__perk_perk_id.f463a4e555", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__perk", "unique_analytics___loyalty_stg__perk_perk_id"], "alias": "unique_analytics___loyalty_stg__perk_perk_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082643.4008677, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__perk", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__perk"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.yml/unique_analytics___loyalty_stg__perk_perk_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select perk_id from dev_dkruh1.analytics___loyalty_stg__perk where perk_id is not null group by perk_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "perk_id", "file_key_name": "models.analytics___loyalty_stg__perk", "attached_node": "model.yoda.analytics___loyalty_stg__perk"}, "test.yoda.not_null_analytics___loyalty_stg__perk_perk_id.b775b7c303": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "perk_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__perk')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__perk_perk_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_stg__perk_perk_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__perk_perk_id.b775b7c303", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__perk", "not_null_analytics___loyalty_stg__perk_perk_id"], "alias": "not_null_analytics___loyalty_stg__perk_perk_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082643.4070988, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__perk", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__perk"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.yml/not_null_analytics___loyalty_stg__perk_perk_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__perk where perk_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "perk_id", "file_key_name": "models.analytics___loyalty_stg__perk", "attached_node": "model.yoda.analytics___loyalty_stg__perk"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__perk_1.e6f19d425a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__perk')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__perk_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5e2f097c9f6d8cde50ebc2d15363a3dc.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__perk_1.e6f19d425a", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__perk", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__perk_1"], "alias": "dbt_expectations_expect_table__5e2f097c9f6d8cde50ebc2d15363a3dc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5e2f097c9f6d8cde50ebc2d15363a3dc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5e2f097c9f6d8cde50ebc2d15363a3dc"}, "created_at": 1700082643.413435, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5e2f097c9f6d8cde50ebc2d15363a3dc\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__perk", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__perk"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.yml/dbt_expectations_expect_table__5e2f097c9f6d8cde50ebc2d15363a3dc.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__perk\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__perk", "attached_node": "model.yoda.analytics___loyalty_stg__perk"}, "test.yoda.unique_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id.d90f76110c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "merchant_group_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__point_expiration_policy_settings')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg_8f909feaa08018d45c9e9efbdc787e7f.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id.d90f76110c", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__point_expiration_policy_settings", "unique_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id"], "alias": "unique_analytics___loyalty_stg_8f909feaa08018d45c9e9efbdc787e7f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___loyalty_stg_8f909feaa08018d45c9e9efbdc787e7f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___loyalty_stg_8f909feaa08018d45c9e9efbdc787e7f"}, "created_at": 1700082643.4341996, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___loyalty_stg_8f909feaa08018d45c9e9efbdc787e7f\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__point_expiration_policy_settings", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.yml/unique_analytics___loyalty_stg_8f909feaa08018d45c9e9efbdc787e7f.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select merchant_group_id from dev_dkruh1.analytics___loyalty_stg__point_expiration_policy_settings where merchant_group_id is not null group by merchant_group_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_group_id", "file_key_name": "models.analytics___loyalty_stg__point_expiration_policy_settings", "attached_node": "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"}, "test.yoda.not_null_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id.ab21c772b0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_group_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__point_expiration_policy_settings')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_s_d18cec554452cf4528a21454b3025f03.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id.ab21c772b0", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__point_expiration_policy_settings", "not_null_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id"], "alias": "not_null_analytics___loyalty_s_d18cec554452cf4528a21454b3025f03", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty_s_d18cec554452cf4528a21454b3025f03", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty_s_d18cec554452cf4528a21454b3025f03"}, "created_at": 1700082643.4399655, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty_s_d18cec554452cf4528a21454b3025f03\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__point_expiration_policy_settings", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.yml/not_null_analytics___loyalty_s_d18cec554452cf4528a21454b3025f03.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__point_expiration_policy_settings where merchant_group_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_group_id", "file_key_name": "models.analytics___loyalty_stg__point_expiration_policy_settings", "attached_node": "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_1.a080f988c6": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__point_expiration_policy_settings')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6bc9730747fb7dd4d3d7ae6ab6c3d8da.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_1.a080f988c6", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__point_expiration_policy_settings", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_1"], "alias": "dbt_expectations_expect_table__6bc9730747fb7dd4d3d7ae6ab6c3d8da", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6bc9730747fb7dd4d3d7ae6ab6c3d8da", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6bc9730747fb7dd4d3d7ae6ab6c3d8da"}, "created_at": 1700082643.4456468, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6bc9730747fb7dd4d3d7ae6ab6c3d8da\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__point_expiration_policy_settings", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.yml/dbt_expectations_expect_table__6bc9730747fb7dd4d3d7ae6ab6c3d8da.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__point_expiration_policy_settings\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__point_expiration_policy_settings", "attached_node": "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_snapshot_1.ddff4a7995": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__point_expiration_policy_settings_snapshot')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_snapshot_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__33c5cb23a4477e759fcc1d921c02cd4e.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_snapshot_1.ddff4a7995", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_snapshot_1"], "alias": "dbt_expectations_expect_table__33c5cb23a4477e759fcc1d921c02cd4e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__33c5cb23a4477e759fcc1d921c02cd4e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__33c5cb23a4477e759fcc1d921c02cd4e"}, "created_at": 1700082643.4678738, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__33c5cb23a4477e759fcc1d921c02cd4e\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.yml/dbt_expectations_expect_table__33c5cb23a4477e759fcc1d921c02cd4e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__point_expiration_policy_settings_snapshot\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "attached_node": "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot"}, "test.yoda.unique_analytics___loyalty_stg__point_redemption_point_redemption_id.bdf901ad55": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "point_redemption_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__point_redemption')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__point_redemption_point_redemption_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg_84536ae215d6e0af779a2dcdbb3d3195.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__point_redemption_point_redemption_id.bdf901ad55", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__point_redemption", "unique_analytics___loyalty_stg__point_redemption_point_redemption_id"], "alias": "unique_analytics___loyalty_stg_84536ae215d6e0af779a2dcdbb3d3195", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___loyalty_stg_84536ae215d6e0af779a2dcdbb3d3195", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___loyalty_stg_84536ae215d6e0af779a2dcdbb3d3195"}, "created_at": 1700082643.5040305, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___loyalty_stg_84536ae215d6e0af779a2dcdbb3d3195\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__point_redemption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__point_redemption"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.yml/unique_analytics___loyalty_stg_84536ae215d6e0af779a2dcdbb3d3195.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select point_redemption_id from dev_dkruh1.analytics___loyalty_stg__point_redemption where point_redemption_id is not null group by point_redemption_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "point_redemption_id", "file_key_name": "models.analytics___loyalty_stg__point_redemption", "attached_node": "model.yoda.analytics___loyalty_stg__point_redemption"}, "test.yoda.not_null_analytics___loyalty_stg__point_redemption_point_redemption_id.eda763cdab": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "point_redemption_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__point_redemption')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__point_redemption_point_redemption_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_s_35bf631487bae48dd83ba7b91d079622.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__point_redemption_point_redemption_id.eda763cdab", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__point_redemption", "not_null_analytics___loyalty_stg__point_redemption_point_redemption_id"], "alias": "not_null_analytics___loyalty_s_35bf631487bae48dd83ba7b91d079622", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty_s_35bf631487bae48dd83ba7b91d079622", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty_s_35bf631487bae48dd83ba7b91d079622"}, "created_at": 1700082643.5101547, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty_s_35bf631487bae48dd83ba7b91d079622\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__point_redemption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__point_redemption"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.yml/not_null_analytics___loyalty_s_35bf631487bae48dd83ba7b91d079622.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__point_redemption where point_redemption_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "point_redemption_id", "file_key_name": "models.analytics___loyalty_stg__point_redemption", "attached_node": "model.yoda.analytics___loyalty_stg__point_redemption"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_redemption_1.2614f85a39": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__point_redemption')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_redemption_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5453b797d158d7420640cd774dcf6cad.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_redemption_1.2614f85a39", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__point_redemption", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_redemption_1"], "alias": "dbt_expectations_expect_table__5453b797d158d7420640cd774dcf6cad", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5453b797d158d7420640cd774dcf6cad", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5453b797d158d7420640cd774dcf6cad"}, "created_at": 1700082643.5164957, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5453b797d158d7420640cd774dcf6cad\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__point_redemption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__point_redemption"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.yml/dbt_expectations_expect_table__5453b797d158d7420640cd774dcf6cad.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__point_redemption\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__point_redemption", "attached_node": "model.yoda.analytics___loyalty_stg__point_redemption"}, "test.yoda.unique_analytics___loyalty_stg__processor_id.2a5131e45e": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__processor')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__processor_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg__processor_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__processor_id.2a5131e45e", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__processor", "unique_analytics___loyalty_stg__processor_id"], "alias": "unique_analytics___loyalty_stg__processor_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082643.536334, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__processor", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__processor"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.yml/unique_analytics___loyalty_stg__processor_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.analytics___loyalty_stg__processor where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.analytics___loyalty_stg__processor", "attached_node": "model.yoda.analytics___loyalty_stg__processor"}, "test.yoda.not_null_analytics___loyalty_stg__processor_id.06047cae7c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__processor')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__processor_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_stg__processor_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__processor_id.06047cae7c", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__processor", "not_null_analytics___loyalty_stg__processor_id"], "alias": "not_null_analytics___loyalty_stg__processor_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082643.541801, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__processor", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__processor"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.yml/not_null_analytics___loyalty_stg__processor_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__processor where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.analytics___loyalty_stg__processor", "attached_node": "model.yoda.analytics___loyalty_stg__processor"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__processor_1.dd1d185365": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__processor')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__processor_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__182eb32f7032910335e88b6d266e3f6e.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__processor_1.dd1d185365", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__processor", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__processor_1"], "alias": "dbt_expectations_expect_table__182eb32f7032910335e88b6d266e3f6e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__182eb32f7032910335e88b6d266e3f6e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__182eb32f7032910335e88b6d266e3f6e"}, "created_at": 1700082643.5471714, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__182eb32f7032910335e88b6d266e3f6e\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__processor", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__processor"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.yml/dbt_expectations_expect_table__182eb32f7032910335e88b6d266e3f6e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__processor\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__processor", "attached_node": "model.yoda.analytics___loyalty_stg__processor"}, "test.yoda.unique_analytics___loyalty_stg__purchase_purchase_id.a3f9c98703": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "purchase_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__purchase')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__purchase_purchase_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg__purchase_purchase_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__purchase_purchase_id.a3f9c98703", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__purchase", "unique_analytics___loyalty_stg__purchase_purchase_id"], "alias": "unique_analytics___loyalty_stg__purchase_purchase_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082643.5862129, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__purchase", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__purchase"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.yml/unique_analytics___loyalty_stg__purchase_purchase_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select purchase_id from dev_dkruh1.analytics___loyalty_stg__purchase where purchase_id is not null group by purchase_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "purchase_id", "file_key_name": "models.analytics___loyalty_stg__purchase", "attached_node": "model.yoda.analytics___loyalty_stg__purchase"}, "test.yoda.not_null_analytics___loyalty_stg__purchase_purchase_id.6a5041e1a8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "purchase_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__purchase')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__purchase_purchase_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_stg__purchase_purchase_id.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__purchase_purchase_id.6a5041e1a8", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__purchase", "not_null_analytics___loyalty_stg__purchase_purchase_id"], "alias": "not_null_analytics___loyalty_stg__purchase_purchase_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082643.5918493, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__purchase", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__purchase"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.yml/not_null_analytics___loyalty_stg__purchase_purchase_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__purchase where purchase_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "purchase_id", "file_key_name": "models.analytics___loyalty_stg__purchase", "attached_node": "model.yoda.analytics___loyalty_stg__purchase"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_1.0fd220304c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__purchase')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6cd82d04a2a547882090a602781c7f0a.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_1.0fd220304c", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__purchase", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_1"], "alias": "dbt_expectations_expect_table__6cd82d04a2a547882090a602781c7f0a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6cd82d04a2a547882090a602781c7f0a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6cd82d04a2a547882090a602781c7f0a"}, "created_at": 1700082643.597186, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6cd82d04a2a547882090a602781c7f0a\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__purchase", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__purchase"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.yml/dbt_expectations_expect_table__6cd82d04a2a547882090a602781c7f0a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__purchase\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__purchase", "attached_node": "model.yoda.analytics___loyalty_stg__purchase"}, "test.yoda.unique_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id.85fb8827ce": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "purchase_redemption_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__purchase_redemption')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg_0518c91efaeba7a653c25353599c749b.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id.85fb8827ce", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__purchase_redemption", "unique_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id"], "alias": "unique_analytics___loyalty_stg_0518c91efaeba7a653c25353599c749b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___loyalty_stg_0518c91efaeba7a653c25353599c749b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___loyalty_stg_0518c91efaeba7a653c25353599c749b"}, "created_at": 1700082643.6183686, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___loyalty_stg_0518c91efaeba7a653c25353599c749b\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__purchase_redemption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__purchase_redemption"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.yml/unique_analytics___loyalty_stg_0518c91efaeba7a653c25353599c749b.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select purchase_redemption_id from dev_dkruh1.analytics___loyalty_stg__purchase_redemption where purchase_redemption_id is not null group by purchase_redemption_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "purchase_redemption_id", "file_key_name": "models.analytics___loyalty_stg__purchase_redemption", "attached_node": "model.yoda.analytics___loyalty_stg__purchase_redemption"}, "test.yoda.not_null_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id.1afcaefa0e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "purchase_redemption_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__purchase_redemption')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_s_853cd15fcecda30c36e1336a9eb5d4a0.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id.1afcaefa0e", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__purchase_redemption", "not_null_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id"], "alias": "not_null_analytics___loyalty_s_853cd15fcecda30c36e1336a9eb5d4a0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty_s_853cd15fcecda30c36e1336a9eb5d4a0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty_s_853cd15fcecda30c36e1336a9eb5d4a0"}, "created_at": 1700082643.6242175, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty_s_853cd15fcecda30c36e1336a9eb5d4a0\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__purchase_redemption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__purchase_redemption"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.yml/not_null_analytics___loyalty_s_853cd15fcecda30c36e1336a9eb5d4a0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__purchase_redemption where purchase_redemption_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "purchase_redemption_id", "file_key_name": "models.analytics___loyalty_stg__purchase_redemption", "attached_node": "model.yoda.analytics___loyalty_stg__purchase_redemption"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_redemption_1.68e2b4e211": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__purchase_redemption')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_redemption_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e012fbb27720d42593fd67c7753a4e3f.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_redemption_1.68e2b4e211", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__purchase_redemption", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_redemption_1"], "alias": "dbt_expectations_expect_table__e012fbb27720d42593fd67c7753a4e3f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e012fbb27720d42593fd67c7753a4e3f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e012fbb27720d42593fd67c7753a4e3f"}, "created_at": 1700082643.6297, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e012fbb27720d42593fd67c7753a4e3f\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__purchase_redemption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__purchase_redemption"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.yml/dbt_expectations_expect_table__e012fbb27720d42593fd67c7753a4e3f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__purchase_redemption\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__purchase_redemption", "attached_node": "model.yoda.analytics___loyalty_stg__purchase_redemption"}, "test.yoda.unique_analytics___loyalty_stg__redemption_code_redemption_code_id.292d44be3e": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "redemption_code_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__redemption_code')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__redemption_code_redemption_code_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg_bfde67efc35fb1299874b9a72a48fd63.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__redemption_code_redemption_code_id.292d44be3e", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__redemption_code", "unique_analytics___loyalty_stg__redemption_code_redemption_code_id"], "alias": "unique_analytics___loyalty_stg_bfde67efc35fb1299874b9a72a48fd63", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___loyalty_stg_bfde67efc35fb1299874b9a72a48fd63", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___loyalty_stg_bfde67efc35fb1299874b9a72a48fd63"}, "created_at": 1700082643.6547253, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___loyalty_stg_bfde67efc35fb1299874b9a72a48fd63\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__redemption_code", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__redemption_code"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.yml/unique_analytics___loyalty_stg_bfde67efc35fb1299874b9a72a48fd63.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select redemption_code_id from dev_dkruh1.analytics___loyalty_stg__redemption_code where redemption_code_id is not null group by redemption_code_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "redemption_code_id", "file_key_name": "models.analytics___loyalty_stg__redemption_code", "attached_node": "model.yoda.analytics___loyalty_stg__redemption_code"}, "test.yoda.not_null_analytics___loyalty_stg__redemption_code_redemption_code_id.784dc02c70": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "redemption_code_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__redemption_code')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__redemption_code_redemption_code_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_s_a83d2bf2d1b7eb39fced09abb82f40bd.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__redemption_code_redemption_code_id.784dc02c70", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__redemption_code", "not_null_analytics___loyalty_stg__redemption_code_redemption_code_id"], "alias": "not_null_analytics___loyalty_s_a83d2bf2d1b7eb39fced09abb82f40bd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty_s_a83d2bf2d1b7eb39fced09abb82f40bd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty_s_a83d2bf2d1b7eb39fced09abb82f40bd"}, "created_at": 1700082643.6606226, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty_s_a83d2bf2d1b7eb39fced09abb82f40bd\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__redemption_code", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__redemption_code"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.yml/not_null_analytics___loyalty_s_a83d2bf2d1b7eb39fced09abb82f40bd.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__redemption_code where redemption_code_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "redemption_code_id", "file_key_name": "models.analytics___loyalty_stg__redemption_code", "attached_node": "model.yoda.analytics___loyalty_stg__redemption_code"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_code_1.327480d2f8": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__redemption_code')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_code_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__b0122e42af1fb0af6f971d235d99c942.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_code_1.327480d2f8", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__redemption_code", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_code_1"], "alias": "dbt_expectations_expect_table__b0122e42af1fb0af6f971d235d99c942", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__b0122e42af1fb0af6f971d235d99c942", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__b0122e42af1fb0af6f971d235d99c942"}, "created_at": 1700082643.6665928, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__b0122e42af1fb0af6f971d235d99c942\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__redemption_code", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__redemption_code"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.yml/dbt_expectations_expect_table__b0122e42af1fb0af6f971d235d99c942.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__redemption_code\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__redemption_code", "attached_node": "model.yoda.analytics___loyalty_stg__redemption_code"}, "test.yoda.unique_analytics___loyalty_stg__redemption_option_redemption_option_id.99fa9f3731": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "redemption_option_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__redemption_option')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___loyalty_stg__redemption_option_redemption_option_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___loyalty_stg_9ddbb7f8f6b0b6559149560961354a6a.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.yml", "unique_id": "test.yoda.unique_analytics___loyalty_stg__redemption_option_redemption_option_id.99fa9f3731", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__redemption_option", "unique_analytics___loyalty_stg__redemption_option_redemption_option_id"], "alias": "unique_analytics___loyalty_stg_9ddbb7f8f6b0b6559149560961354a6a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___loyalty_stg_9ddbb7f8f6b0b6559149560961354a6a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___loyalty_stg_9ddbb7f8f6b0b6559149560961354a6a"}, "created_at": 1700082643.6960487, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___loyalty_stg_9ddbb7f8f6b0b6559149560961354a6a\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__redemption_option", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__redemption_option"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.yml/unique_analytics___loyalty_stg_9ddbb7f8f6b0b6559149560961354a6a.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select redemption_option_id from dev_dkruh1.analytics___loyalty_stg__redemption_option where redemption_option_id is not null group by redemption_option_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "redemption_option_id", "file_key_name": "models.analytics___loyalty_stg__redemption_option", "attached_node": "model.yoda.analytics___loyalty_stg__redemption_option"}, "test.yoda.not_null_analytics___loyalty_stg__redemption_option_redemption_option_id.536a6add67": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "redemption_option_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__redemption_option')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__redemption_option_redemption_option_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_s_4e9f9754e0f95ec1b08b7eb300fa5384.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__redemption_option_redemption_option_id.536a6add67", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__redemption_option", "not_null_analytics___loyalty_stg__redemption_option_redemption_option_id"], "alias": "not_null_analytics___loyalty_s_4e9f9754e0f95ec1b08b7eb300fa5384", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty_s_4e9f9754e0f95ec1b08b7eb300fa5384", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty_s_4e9f9754e0f95ec1b08b7eb300fa5384"}, "created_at": 1700082643.7017207, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty_s_4e9f9754e0f95ec1b08b7eb300fa5384\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__redemption_option", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__redemption_option"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.yml/not_null_analytics___loyalty_s_4e9f9754e0f95ec1b08b7eb300fa5384.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__redemption_option where redemption_option_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "redemption_option_id", "file_key_name": "models.analytics___loyalty_stg__redemption_option", "attached_node": "model.yoda.analytics___loyalty_stg__redemption_option"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_option_1.20a44f86f9": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__redemption_option')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_option_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__72113c219de9701da4ea5d287c0546e7.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_option_1.20a44f86f9", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__redemption_option", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_option_1"], "alias": "dbt_expectations_expect_table__72113c219de9701da4ea5d287c0546e7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__72113c219de9701da4ea5d287c0546e7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__72113c219de9701da4ea5d287c0546e7"}, "created_at": 1700082643.7077756, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__72113c219de9701da4ea5d287c0546e7\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__redemption_option", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__redemption_option"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.yml/dbt_expectations_expect_table__72113c219de9701da4ea5d287c0546e7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__redemption_option\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__redemption_option", "attached_node": "model.yoda.analytics___loyalty_stg__redemption_option"}, "test.yoda.not_null_analytics___loyalty_stg__segment_install_event_details_merchant_id.2a789cce2b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__segment_install_event_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___loyalty_stg__segment_install_event_details_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___loyalty_s_fcf928b5c9c59855ceb835ade06dac9d.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.yml", "unique_id": "test.yoda.not_null_analytics___loyalty_stg__segment_install_event_details_merchant_id.2a789cce2b", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__segment_install_event_details", "not_null_analytics___loyalty_stg__segment_install_event_details_merchant_id"], "alias": "not_null_analytics___loyalty_s_fcf928b5c9c59855ceb835ade06dac9d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___loyalty_s_fcf928b5c9c59855ceb835ade06dac9d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___loyalty_s_fcf928b5c9c59855ceb835ade06dac9d"}, "created_at": 1700082643.7317588, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___loyalty_s_fcf928b5c9c59855ceb835ade06dac9d\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__segment_install_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__segment_install_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.yml/not_null_analytics___loyalty_s_fcf928b5c9c59855ceb835ade06dac9d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___loyalty_stg__segment_install_event_details where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.analytics___loyalty_stg__segment_install_event_details", "attached_node": "model.yoda.analytics___loyalty_stg__segment_install_event_details"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__segment_install_event_details_1.80a7943263": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___loyalty_stg__segment_install_event_details')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__segment_install_event_details_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0a1e3b760e4853c993028cbe23d02472.sql", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__segment_install_event_details_1.80a7943263", "fqn": ["yoda", "analytics", "loyalty", "staging", "marts_compatible", "analytics___loyalty_stg__segment_install_event_details", "dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__segment_install_event_details_1"], "alias": "dbt_expectations_expect_table__0a1e3b760e4853c993028cbe23d02472", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0a1e3b760e4853c993028cbe23d02472", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0a1e3b760e4853c993028cbe23d02472"}, "created_at": 1700082643.7373881, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0a1e3b760e4853c993028cbe23d02472\") }}", "language": "sql", "refs": [{"name": "analytics___loyalty_stg__segment_install_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___loyalty_stg__segment_install_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.yml/dbt_expectations_expect_table__0a1e3b760e4853c993028cbe23d02472.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___loyalty_stg__segment_install_event_details\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___loyalty_stg__segment_install_event_details", "attached_node": "model.yoda.analytics___loyalty_stg__segment_install_event_details"}, "test.yoda.unique_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id.4b1fd4bf08": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "mql_opportunity_goal_id", "model": "{{ get_where_subquery(ref('analytics___marketing__mql_opportunity_goal')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___marketing___20481ed9efd1f9e7d16a86e599cb08bc.sql", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.yml", "unique_id": "test.yoda.unique_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id.4b1fd4bf08", "fqn": ["yoda", "analytics", "marketing", "marts", "analytics___marketing__mql_opportunity", "unique_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id"], "alias": "unique_analytics___marketing___20481ed9efd1f9e7d16a86e599cb08bc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___marketing___20481ed9efd1f9e7d16a86e599cb08bc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___marketing___20481ed9efd1f9e7d16a86e599cb08bc"}, "created_at": 1700082643.8689349, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___marketing___20481ed9efd1f9e7d16a86e599cb08bc\") }}", "language": "sql", "refs": [{"name": "analytics___marketing__mql_opportunity_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___marketing__mql_opportunity_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.yml/unique_analytics___marketing___20481ed9efd1f9e7d16a86e599cb08bc.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select mql_opportunity_goal_id from dev_dkruh1.analytics___marketing__mql_opportunity_goal where mql_opportunity_goal_id is not null group by mql_opportunity_goal_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "mql_opportunity_goal_id", "file_key_name": "models.analytics___marketing__mql_opportunity_goal", "attached_node": "model.yoda.analytics___marketing__mql_opportunity_goal"}, "test.yoda.not_null_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id.6ec7e2763c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "mql_opportunity_goal_id", "model": "{{ get_where_subquery(ref('analytics___marketing__mql_opportunity_goal')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___marketing_27cf532c68fa60c49a4585ac6c193160.sql", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.yml", "unique_id": "test.yoda.not_null_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id.6ec7e2763c", "fqn": ["yoda", "analytics", "marketing", "marts", "analytics___marketing__mql_opportunity", "not_null_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id"], "alias": "not_null_analytics___marketing_27cf532c68fa60c49a4585ac6c193160", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___marketing_27cf532c68fa60c49a4585ac6c193160", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___marketing_27cf532c68fa60c49a4585ac6c193160"}, "created_at": 1700082643.8747103, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___marketing_27cf532c68fa60c49a4585ac6c193160\") }}", "language": "sql", "refs": [{"name": "analytics___marketing__mql_opportunity_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___marketing__mql_opportunity_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.yml/not_null_analytics___marketing_27cf532c68fa60c49a4585ac6c193160.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___marketing__mql_opportunity_goal where mql_opportunity_goal_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "mql_opportunity_goal_id", "file_key_name": "models.analytics___marketing__mql_opportunity_goal", "attached_node": "model.yoda.analytics___marketing__mql_opportunity_goal"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___marketing__mql_opportunity_goal_1.0bba559cdd": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___marketing__mql_opportunity_goal')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___marketing__mql_opportunity_goal_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__9f277300c47dce1349e95c423adc004b.sql", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___marketing__mql_opportunity_goal_1.0bba559cdd", "fqn": ["yoda", "analytics", "marketing", "marts", "analytics___marketing__mql_opportunity", "dbt_expectations_expect_table_row_count_to_be_between_analytics___marketing__mql_opportunity_goal_1"], "alias": "dbt_expectations_expect_table__9f277300c47dce1349e95c423adc004b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__9f277300c47dce1349e95c423adc004b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__9f277300c47dce1349e95c423adc004b"}, "created_at": 1700082643.8804002, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__9f277300c47dce1349e95c423adc004b\") }}", "language": "sql", "refs": [{"name": "analytics___marketing__mql_opportunity_goal", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___marketing__mql_opportunity_goal"]}, "compiled_path": "target/compiled/yoda/models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.yml/dbt_expectations_expect_table__9f277300c47dce1349e95c423adc004b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___marketing__mql_opportunity_goal\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___marketing__mql_opportunity_goal", "attached_node": "model.yoda.analytics___marketing__mql_opportunity_goal"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_1.1479e82305": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___new_revenue__deal_product')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2d09bdaa08560424dfde2187aa75dfe4.sql", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_1.1479e82305", "fqn": ["yoda", "analytics", "new_revenue", "marts", "analytics___new_revenue__deal_product", "dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_1"], "alias": "dbt_expectations_expect_table__2d09bdaa08560424dfde2187aa75dfe4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2d09bdaa08560424dfde2187aa75dfe4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2d09bdaa08560424dfde2187aa75dfe4"}, "created_at": 1700082643.953371, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2d09bdaa08560424dfde2187aa75dfe4\") }}", "language": "sql", "refs": [{"name": "analytics___new_revenue__deal_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___new_revenue__deal_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.yml/dbt_expectations_expect_table__2d09bdaa08560424dfde2187aa75dfe4.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___new_revenue__deal_product\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___new_revenue__deal_product", "attached_node": "model.yoda.analytics___new_revenue__deal_product"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_opportunity_id__product.785696bc18": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["opportunity_id", "product"], "model": "{{ get_where_subquery(ref('analytics___new_revenue__deal_product')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_opportunity_id__product", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_c09d013fbe539ba85f606134f41e4eff.sql", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_opportunity_id__product.785696bc18", "fqn": ["yoda", "analytics", "new_revenue", "marts", "analytics___new_revenue__deal_product", "dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_opportunity_id__product"], "alias": "dbt_utils_unique_combination_o_c09d013fbe539ba85f606134f41e4eff", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c09d013fbe539ba85f606134f41e4eff", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c09d013fbe539ba85f606134f41e4eff"}, "created_at": 1700082643.9604871, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c09d013fbe539ba85f606134f41e4eff\") }}", "language": "sql", "refs": [{"name": "analytics___new_revenue__deal_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___new_revenue__deal_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.yml/dbt_utils_unique_combination_o_c09d013fbe539ba85f606134f41e4eff.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n opportunity_id, product\n from dev_dkruh1.analytics___new_revenue__deal_product\n group by opportunity_id, product\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___new_revenue__deal_product", "attached_node": "model.yoda.analytics___new_revenue__deal_product"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_scd_1.a3a194526d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___new_revenue__deal_product_scd')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_scd_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__31bb2b5bc9938476cc0b154d90c34c66.sql", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_scd_1.a3a194526d", "fqn": ["yoda", "analytics", "new_revenue", "marts", "analytics___new_revenue__deal_product_scd", "dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_scd_1"], "alias": "dbt_expectations_expect_table__31bb2b5bc9938476cc0b154d90c34c66", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__31bb2b5bc9938476cc0b154d90c34c66", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__31bb2b5bc9938476cc0b154d90c34c66"}, "created_at": 1700082643.988787, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__31bb2b5bc9938476cc0b154d90c34c66\") }}", "language": "sql", "refs": [{"name": "analytics___new_revenue__deal_product_scd", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___new_revenue__deal_product_scd"]}, "compiled_path": "target/compiled/yoda/models/analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.yml/dbt_expectations_expect_table__31bb2b5bc9938476cc0b154d90c34c66.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___new_revenue__deal_product_scd\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___new_revenue__deal_product_scd", "attached_node": "model.yoda.analytics___new_revenue__deal_product_scd"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_scd_opportunity_id__product__updated_at.0173d26576": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["opportunity_id", "product", "updated_at"], "model": "{{ get_where_subquery(ref('analytics___new_revenue__deal_product_scd')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_scd_opportunity_id__product__updated_at", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_d2d7ab21d27dc1101c49058ee18ea6f5.sql", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_scd_opportunity_id__product__updated_at.0173d26576", "fqn": ["yoda", "analytics", "new_revenue", "marts", "analytics___new_revenue__deal_product_scd", "dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_scd_opportunity_id__product__updated_at"], "alias": "dbt_utils_unique_combination_o_d2d7ab21d27dc1101c49058ee18ea6f5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_d2d7ab21d27dc1101c49058ee18ea6f5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_d2d7ab21d27dc1101c49058ee18ea6f5"}, "created_at": 1700082643.9950862, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_d2d7ab21d27dc1101c49058ee18ea6f5\") }}", "language": "sql", "refs": [{"name": "analytics___new_revenue__deal_product_scd", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___new_revenue__deal_product_scd"]}, "compiled_path": "target/compiled/yoda/models/analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.yml/dbt_utils_unique_combination_o_d2d7ab21d27dc1101c49058ee18ea6f5.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n opportunity_id, product, updated_at\n from dev_dkruh1.analytics___new_revenue__deal_product_scd\n group by opportunity_id, product, updated_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___new_revenue__deal_product_scd", "attached_node": "model.yoda.analytics___new_revenue__deal_product_scd"}, "test.yoda.unique_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id.e7d772063a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "operational_performance_daily_id", "model": "{{ get_where_subquery(ref('analytics___new_revenue__operational_performance_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___new_revenue_4230fd7fd0e14e3262ca51bc9ae4e171.sql", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.yml", "unique_id": "test.yoda.unique_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id.e7d772063a", "fqn": ["yoda", "analytics", "new_revenue", "marts", "analytics___new_revenue__operational_performance_daily", "unique_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id"], "alias": "unique_analytics___new_revenue_4230fd7fd0e14e3262ca51bc9ae4e171", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___new_revenue_4230fd7fd0e14e3262ca51bc9ae4e171", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___new_revenue_4230fd7fd0e14e3262ca51bc9ae4e171"}, "created_at": 1700082644.0283012, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___new_revenue_4230fd7fd0e14e3262ca51bc9ae4e171\") }}", "language": "sql", "refs": [{"name": "analytics___new_revenue__operational_performance_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___new_revenue__operational_performance_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.yml/unique_analytics___new_revenue_4230fd7fd0e14e3262ca51bc9ae4e171.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select operational_performance_daily_id from dev_dkruh1.analytics___new_revenue__operational_performance_daily where operational_performance_daily_id is not null group by operational_performance_daily_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "operational_performance_daily_id", "file_key_name": "models.analytics___new_revenue__operational_performance_daily", "attached_node": "model.yoda.analytics___new_revenue__operational_performance_daily"}, "test.yoda.not_null_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id.a81fac273e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "operational_performance_daily_id", "model": "{{ get_where_subquery(ref('analytics___new_revenue__operational_performance_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___new_reven_86a2339d3fc73f9a9f2759e21ef8b269.sql", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.yml", "unique_id": "test.yoda.not_null_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id.a81fac273e", "fqn": ["yoda", "analytics", "new_revenue", "marts", "analytics___new_revenue__operational_performance_daily", "not_null_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id"], "alias": "not_null_analytics___new_reven_86a2339d3fc73f9a9f2759e21ef8b269", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___new_reven_86a2339d3fc73f9a9f2759e21ef8b269", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___new_reven_86a2339d3fc73f9a9f2759e21ef8b269"}, "created_at": 1700082644.0339706, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___new_reven_86a2339d3fc73f9a9f2759e21ef8b269\") }}", "language": "sql", "refs": [{"name": "analytics___new_revenue__operational_performance_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___new_revenue__operational_performance_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.yml/not_null_analytics___new_reven_86a2339d3fc73f9a9f2759e21ef8b269.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___new_revenue__operational_performance_daily where operational_performance_daily_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "operational_performance_daily_id", "file_key_name": "models.analytics___new_revenue__operational_performance_daily", "attached_node": "model.yoda.analytics___new_revenue__operational_performance_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__operational_performance_daily_1.97d5464f2e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___new_revenue__operational_performance_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__operational_performance_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2f54bbf3447aee3f65733252446e3a4a.sql", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__operational_performance_daily_1.97d5464f2e", "fqn": ["yoda", "analytics", "new_revenue", "marts", "analytics___new_revenue__operational_performance_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__operational_performance_daily_1"], "alias": "dbt_expectations_expect_table__2f54bbf3447aee3f65733252446e3a4a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2f54bbf3447aee3f65733252446e3a4a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2f54bbf3447aee3f65733252446e3a4a"}, "created_at": 1700082644.0403128, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2f54bbf3447aee3f65733252446e3a4a\") }}", "language": "sql", "refs": [{"name": "analytics___new_revenue__operational_performance_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___new_revenue__operational_performance_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.yml/dbt_expectations_expect_table__2f54bbf3447aee3f65733252446e3a4a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___new_revenue__operational_performance_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___new_revenue__operational_performance_daily", "attached_node": "model.yoda.analytics___new_revenue__operational_performance_daily"}, "test.yoda.not_null_analytics___partners__manager_performance_monthly_partner_manager_id.58d231c1f8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "partner_manager_id", "model": "{{ get_where_subquery(ref('analytics___partners__manager_performance_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___partners__manager_performance_monthly_partner_manager_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___partners__6070c198c00f9df7353feaa81c7134b9.sql", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.yml", "unique_id": "test.yoda.not_null_analytics___partners__manager_performance_monthly_partner_manager_id.58d231c1f8", "fqn": ["yoda", "analytics", "partners", "marts", "analytics___partners__manager_performance_monthly", "not_null_analytics___partners__manager_performance_monthly_partner_manager_id"], "alias": "not_null_analytics___partners__6070c198c00f9df7353feaa81c7134b9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___partners__6070c198c00f9df7353feaa81c7134b9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___partners__6070c198c00f9df7353feaa81c7134b9"}, "created_at": 1700082644.085044, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___partners__6070c198c00f9df7353feaa81c7134b9\") }}", "language": "sql", "refs": [{"name": "analytics___partners__manager_performance_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___partners__manager_performance_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.yml/not_null_analytics___partners__6070c198c00f9df7353feaa81c7134b9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___partners__manager_performance_monthly where partner_manager_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "partner_manager_id", "file_key_name": "models.analytics___partners__manager_performance_monthly", "attached_node": "model.yoda.analytics___partners__manager_performance_monthly"}, "test.yoda.not_null_analytics___partners__manager_performance_monthly_month.48d5c27d55": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___partners__manager_performance_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___partners__manager_performance_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___partners__001c2ad2c913bceb43c8b7c9ac2a94c9.sql", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.yml", "unique_id": "test.yoda.not_null_analytics___partners__manager_performance_monthly_month.48d5c27d55", "fqn": ["yoda", "analytics", "partners", "marts", "analytics___partners__manager_performance_monthly", "not_null_analytics___partners__manager_performance_monthly_month"], "alias": "not_null_analytics___partners__001c2ad2c913bceb43c8b7c9ac2a94c9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___partners__001c2ad2c913bceb43c8b7c9ac2a94c9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___partners__001c2ad2c913bceb43c8b7c9ac2a94c9"}, "created_at": 1700082644.0908003, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___partners__001c2ad2c913bceb43c8b7c9ac2a94c9\") }}", "language": "sql", "refs": [{"name": "analytics___partners__manager_performance_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___partners__manager_performance_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.yml/not_null_analytics___partners__001c2ad2c913bceb43c8b7c9ac2a94c9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___partners__manager_performance_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___partners__manager_performance_monthly", "attached_node": "model.yoda.analytics___partners__manager_performance_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___partners__manager_performance_monthly_1.c471df63c7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___partners__manager_performance_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___partners__manager_performance_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0219d5ea852b8317903f72f2a59f1264.sql", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___partners__manager_performance_monthly_1.c471df63c7", "fqn": ["yoda", "analytics", "partners", "marts", "analytics___partners__manager_performance_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___partners__manager_performance_monthly_1"], "alias": "dbt_expectations_expect_table__0219d5ea852b8317903f72f2a59f1264", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0219d5ea852b8317903f72f2a59f1264", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0219d5ea852b8317903f72f2a59f1264"}, "created_at": 1700082644.0966296, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0219d5ea852b8317903f72f2a59f1264\") }}", "language": "sql", "refs": [{"name": "analytics___partners__manager_performance_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___partners__manager_performance_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.yml/dbt_expectations_expect_table__0219d5ea852b8317903f72f2a59f1264.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___partners__manager_performance_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___partners__manager_performance_monthly", "attached_node": "model.yoda.analytics___partners__manager_performance_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners__manager_performance_monthly_month__partner_manager_id.855d7a116e": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "partner_manager_id"], "model": "{{ get_where_subquery(ref('analytics___partners__manager_performance_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___partners__manager_performance_monthly_month__partner_manager_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_b4a7c1318ec88b813606fdf912641f3a.sql", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners__manager_performance_monthly_month__partner_manager_id.855d7a116e", "fqn": ["yoda", "analytics", "partners", "marts", "analytics___partners__manager_performance_monthly", "dbt_utils_unique_combination_of_columns_analytics___partners__manager_performance_monthly_month__partner_manager_id"], "alias": "dbt_utils_unique_combination_o_b4a7c1318ec88b813606fdf912641f3a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_b4a7c1318ec88b813606fdf912641f3a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_b4a7c1318ec88b813606fdf912641f3a"}, "created_at": 1700082644.102855, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_b4a7c1318ec88b813606fdf912641f3a\") }}", "language": "sql", "refs": [{"name": "analytics___partners__manager_performance_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___partners__manager_performance_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.yml/dbt_utils_unique_combination_o_b4a7c1318ec88b813606fdf912641f3a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, partner_manager_id\n from dev_dkruh1.analytics___partners__manager_performance_monthly\n group by month, partner_manager_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___partners__manager_performance_monthly", "attached_node": "model.yoda.analytics___partners__manager_performance_monthly"}, "test.yoda.not_null_analytics___partners__partner_engagement_opportunity_partner_engagement_id.83c54fcf6c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "partner_engagement_id", "model": "{{ get_where_subquery(ref('analytics___partners__partner_engagement_opportunity')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___partners__partner_engagement_opportunity_partner_engagement_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___partners__7d62d750802cc827a6363459bb19b662.sql", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.yml", "unique_id": "test.yoda.not_null_analytics___partners__partner_engagement_opportunity_partner_engagement_id.83c54fcf6c", "fqn": ["yoda", "analytics", "partners", "marts", "analytics___partners__partner_engagement_opportunity", "not_null_analytics___partners__partner_engagement_opportunity_partner_engagement_id"], "alias": "not_null_analytics___partners__7d62d750802cc827a6363459bb19b662", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___partners__7d62d750802cc827a6363459bb19b662", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___partners__7d62d750802cc827a6363459bb19b662"}, "created_at": 1700082644.1979141, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___partners__7d62d750802cc827a6363459bb19b662\") }}", "language": "sql", "refs": [{"name": "analytics___partners__partner_engagement_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___partners__partner_engagement_opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.yml/not_null_analytics___partners__7d62d750802cc827a6363459bb19b662.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___partners__partner_engagement_opportunity where partner_engagement_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "partner_engagement_id", "file_key_name": "models.analytics___partners__partner_engagement_opportunity", "attached_node": "model.yoda.analytics___partners__partner_engagement_opportunity"}, "test.yoda.unique_analytics___partners__partner_engagement_opportunity_opportunity_id.3cac8dbc58": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___partners__partner_engagement_opportunity')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___partners__partner_engagement_opportunity_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___partners__p_a5b3bdaee41b2c7014848a0d58d64770.sql", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.yml", "unique_id": "test.yoda.unique_analytics___partners__partner_engagement_opportunity_opportunity_id.3cac8dbc58", "fqn": ["yoda", "analytics", "partners", "marts", "analytics___partners__partner_engagement_opportunity", "unique_analytics___partners__partner_engagement_opportunity_opportunity_id"], "alias": "unique_analytics___partners__p_a5b3bdaee41b2c7014848a0d58d64770", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___partners__p_a5b3bdaee41b2c7014848a0d58d64770", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___partners__p_a5b3bdaee41b2c7014848a0d58d64770"}, "created_at": 1700082644.2037508, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___partners__p_a5b3bdaee41b2c7014848a0d58d64770\") }}", "language": "sql", "refs": [{"name": "analytics___partners__partner_engagement_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___partners__partner_engagement_opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.yml/unique_analytics___partners__p_a5b3bdaee41b2c7014848a0d58d64770.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select opportunity_id from dev_dkruh1.analytics___partners__partner_engagement_opportunity where opportunity_id is not null group by opportunity_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___partners__partner_engagement_opportunity", "attached_node": "model.yoda.analytics___partners__partner_engagement_opportunity"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners__partner_engagement_opportunity_partner_engagement_id__opportunity_id.98d8b40d49": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["partner_engagement_id", "opportunity_id"], "model": "{{ get_where_subquery(ref('analytics___partners__partner_engagement_opportunity')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___partners__partner_engagement_opportunity_partner_engagement_id__opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_78f8df42c761f81f79e34ab90d8ff55a.sql", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners__partner_engagement_opportunity_partner_engagement_id__opportunity_id.98d8b40d49", "fqn": ["yoda", "analytics", "partners", "marts", "analytics___partners__partner_engagement_opportunity", "dbt_utils_unique_combination_of_columns_analytics___partners__partner_engagement_opportunity_partner_engagement_id__opportunity_id"], "alias": "dbt_utils_unique_combination_o_78f8df42c761f81f79e34ab90d8ff55a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_78f8df42c761f81f79e34ab90d8ff55a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_78f8df42c761f81f79e34ab90d8ff55a"}, "created_at": 1700082644.20989, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_78f8df42c761f81f79e34ab90d8ff55a\") }}", "language": "sql", "refs": [{"name": "analytics___partners__partner_engagement_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___partners__partner_engagement_opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.yml/dbt_utils_unique_combination_o_78f8df42c761f81f79e34ab90d8ff55a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n partner_engagement_id, opportunity_id\n from dev_dkruh1.analytics___partners__partner_engagement_opportunity\n group by partner_engagement_id, opportunity_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___partners__partner_engagement_opportunity", "attached_node": "model.yoda.analytics___partners__partner_engagement_opportunity"}, "test.yoda.not_null_analytics___partners_stg__manager_goals_quarter.72b1ffc8ce": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "quarter", "model": "{{ get_where_subquery(ref('analytics___partners_stg__manager_goals')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___partners_stg__manager_goals_quarter", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___partners_stg__manager_goals_quarter.sql", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.yml", "unique_id": "test.yoda.not_null_analytics___partners_stg__manager_goals_quarter.72b1ffc8ce", "fqn": ["yoda", "analytics", "partners", "staging", "marts_compatible", "analytics___partners_stg__manager_goals", "not_null_analytics___partners_stg__manager_goals_quarter"], "alias": "not_null_analytics___partners_stg__manager_goals_quarter", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082644.2599845, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___partners_stg__manager_goals", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___partners_stg__manager_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.yml/not_null_analytics___partners_stg__manager_goals_quarter.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___partners_stg__manager_goals where quarter is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "quarter", "file_key_name": "models.analytics___partners_stg__manager_goals", "attached_node": "model.yoda.analytics___partners_stg__manager_goals"}, "test.yoda.not_null_analytics___partners_stg__manager_goals_partner_manager_id.ada4b04843": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "partner_manager_id", "model": "{{ get_where_subquery(ref('analytics___partners_stg__manager_goals')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___partners_stg__manager_goals_partner_manager_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___partners__055d3fac5318d215b2804a6917545002.sql", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.yml", "unique_id": "test.yoda.not_null_analytics___partners_stg__manager_goals_partner_manager_id.ada4b04843", "fqn": ["yoda", "analytics", "partners", "staging", "marts_compatible", "analytics___partners_stg__manager_goals", "not_null_analytics___partners_stg__manager_goals_partner_manager_id"], "alias": "not_null_analytics___partners__055d3fac5318d215b2804a6917545002", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___partners__055d3fac5318d215b2804a6917545002", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___partners__055d3fac5318d215b2804a6917545002"}, "created_at": 1700082644.265589, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___partners__055d3fac5318d215b2804a6917545002\") }}", "language": "sql", "refs": [{"name": "analytics___partners_stg__manager_goals", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___partners_stg__manager_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.yml/not_null_analytics___partners__055d3fac5318d215b2804a6917545002.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___partners_stg__manager_goals where partner_manager_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "partner_manager_id", "file_key_name": "models.analytics___partners_stg__manager_goals", "attached_node": "model.yoda.analytics___partners_stg__manager_goals"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___partners_stg__manager_goals_1.fec6f7aad4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___partners_stg__manager_goals')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___partners_stg__manager_goals_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8d909d40ac6f5b0f212ada7929e70d97.sql", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___partners_stg__manager_goals_1.fec6f7aad4", "fqn": ["yoda", "analytics", "partners", "staging", "marts_compatible", "analytics___partners_stg__manager_goals", "dbt_expectations_expect_table_row_count_to_be_between_analytics___partners_stg__manager_goals_1"], "alias": "dbt_expectations_expect_table__8d909d40ac6f5b0f212ada7929e70d97", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8d909d40ac6f5b0f212ada7929e70d97", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8d909d40ac6f5b0f212ada7929e70d97"}, "created_at": 1700082644.2713716, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8d909d40ac6f5b0f212ada7929e70d97\") }}", "language": "sql", "refs": [{"name": "analytics___partners_stg__manager_goals", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___partners_stg__manager_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.yml/dbt_expectations_expect_table__8d909d40ac6f5b0f212ada7929e70d97.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___partners_stg__manager_goals\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___partners_stg__manager_goals", "attached_node": "model.yoda.analytics___partners_stg__manager_goals"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners_stg__manager_goals_quarter__partner_manager_id.c8819a2f2d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["quarter", "partner_manager_id"], "model": "{{ get_where_subquery(ref('analytics___partners_stg__manager_goals')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___partners_stg__manager_goals_quarter__partner_manager_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_e26c92a6034f206efa6bc4cfb58bd710.sql", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners_stg__manager_goals_quarter__partner_manager_id.c8819a2f2d", "fqn": ["yoda", "analytics", "partners", "staging", "marts_compatible", "analytics___partners_stg__manager_goals", "dbt_utils_unique_combination_of_columns_analytics___partners_stg__manager_goals_quarter__partner_manager_id"], "alias": "dbt_utils_unique_combination_o_e26c92a6034f206efa6bc4cfb58bd710", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_e26c92a6034f206efa6bc4cfb58bd710", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_e26c92a6034f206efa6bc4cfb58bd710"}, "created_at": 1700082644.2774436, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_e26c92a6034f206efa6bc4cfb58bd710\") }}", "language": "sql", "refs": [{"name": "analytics___partners_stg__manager_goals", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___partners_stg__manager_goals"]}, "compiled_path": "target/compiled/yoda/models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.yml/dbt_utils_unique_combination_o_e26c92a6034f206efa6bc4cfb58bd710.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n quarter, partner_manager_id\n from dev_dkruh1.analytics___partners_stg__manager_goals\n group by quarter, partner_manager_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___partners_stg__manager_goals", "attached_node": "model.yoda.analytics___partners_stg__manager_goals"}, "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_organization_key.faf0a5ad8a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__opportunity_ht_ss_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__opportunity_ht_ss_over_time_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__6809de997d2bb253e4dc1a91007b7dd7.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml", "unique_id": "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_organization_key.faf0a5ad8a", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__opportunity_ht_ss_over_time", "not_null_analytics___platform__opportunity_ht_ss_over_time_organization_key"], "alias": "not_null_analytics___platform__6809de997d2bb253e4dc1a91007b7dd7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__6809de997d2bb253e4dc1a91007b7dd7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__6809de997d2bb253e4dc1a91007b7dd7"}, "created_at": 1700082644.467644, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__6809de997d2bb253e4dc1a91007b7dd7\") }}", "language": "sql", "refs": [{"name": "analytics___platform__opportunity_ht_ss_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml/not_null_analytics___platform__6809de997d2bb253e4dc1a91007b7dd7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__opportunity_ht_ss_over_time where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__opportunity_ht_ss_over_time", "attached_node": "model.yoda.analytics___platform__opportunity_ht_ss_over_time"}, "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_id.aa29fe5044": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___platform__opportunity_ht_ss_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__3c3acac19ea906bdb06f606d215b2f0a.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml", "unique_id": "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_id.aa29fe5044", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__opportunity_ht_ss_over_time", "not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_id"], "alias": "not_null_analytics___platform__3c3acac19ea906bdb06f606d215b2f0a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__3c3acac19ea906bdb06f606d215b2f0a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__3c3acac19ea906bdb06f606d215b2f0a"}, "created_at": 1700082644.4732778, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__3c3acac19ea906bdb06f606d215b2f0a\") }}", "language": "sql", "refs": [{"name": "analytics___platform__opportunity_ht_ss_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml/not_null_analytics___platform__3c3acac19ea906bdb06f606d215b2f0a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__opportunity_ht_ss_over_time where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___platform__opportunity_ht_ss_over_time", "attached_node": "model.yoda.analytics___platform__opportunity_ht_ss_over_time"}, "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_product_family.b9a163115c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___platform__opportunity_ht_ss_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__opportunity_ht_ss_over_time_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__6a6a95eae4bc1a9fb7019c2dd286f77b.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml", "unique_id": "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_product_family.b9a163115c", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__opportunity_ht_ss_over_time", "not_null_analytics___platform__opportunity_ht_ss_over_time_product_family"], "alias": "not_null_analytics___platform__6a6a95eae4bc1a9fb7019c2dd286f77b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__6a6a95eae4bc1a9fb7019c2dd286f77b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__6a6a95eae4bc1a9fb7019c2dd286f77b"}, "created_at": 1700082644.4793205, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__6a6a95eae4bc1a9fb7019c2dd286f77b\") }}", "language": "sql", "refs": [{"name": "analytics___platform__opportunity_ht_ss_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml/not_null_analytics___platform__6a6a95eae4bc1a9fb7019c2dd286f77b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__opportunity_ht_ss_over_time where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___platform__opportunity_ht_ss_over_time", "attached_node": "model.yoda.analytics___platform__opportunity_ht_ss_over_time"}, "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_start_date.2d43fffb8b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_ht_ss_start_date", "model": "{{ get_where_subquery(ref('analytics___platform__opportunity_ht_ss_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_start_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__bec28f3e71a67c4fed51bbca7934f0e2.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml", "unique_id": "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_start_date.2d43fffb8b", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__opportunity_ht_ss_over_time", "not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_start_date"], "alias": "not_null_analytics___platform__bec28f3e71a67c4fed51bbca7934f0e2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__bec28f3e71a67c4fed51bbca7934f0e2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__bec28f3e71a67c4fed51bbca7934f0e2"}, "created_at": 1700082644.4850614, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__bec28f3e71a67c4fed51bbca7934f0e2\") }}", "language": "sql", "refs": [{"name": "analytics___platform__opportunity_ht_ss_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml/not_null_analytics___platform__bec28f3e71a67c4fed51bbca7934f0e2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__opportunity_ht_ss_over_time where opportunity_ht_ss_start_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_ht_ss_start_date", "file_key_name": "models.analytics___platform__opportunity_ht_ss_over_time", "attached_node": "model.yoda.analytics___platform__opportunity_ht_ss_over_time"}, "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_end_date.2393f6deaa": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_ht_ss_end_date", "model": "{{ get_where_subquery(ref('analytics___platform__opportunity_ht_ss_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_end_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__d122dc261253665f5b4b2a1efdca73ac.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml", "unique_id": "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_end_date.2393f6deaa", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__opportunity_ht_ss_over_time", "not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_end_date"], "alias": "not_null_analytics___platform__d122dc261253665f5b4b2a1efdca73ac", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__d122dc261253665f5b4b2a1efdca73ac", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__d122dc261253665f5b4b2a1efdca73ac"}, "created_at": 1700082644.490846, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__d122dc261253665f5b4b2a1efdca73ac\") }}", "language": "sql", "refs": [{"name": "analytics___platform__opportunity_ht_ss_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml/not_null_analytics___platform__d122dc261253665f5b4b2a1efdca73ac.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__opportunity_ht_ss_over_time where opportunity_ht_ss_end_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_ht_ss_end_date", "file_key_name": "models.analytics___platform__opportunity_ht_ss_over_time", "attached_node": "model.yoda.analytics___platform__opportunity_ht_ss_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__opportunity_ht_ss_over_time_1.eb89e6175a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__opportunity_ht_ss_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__opportunity_ht_ss_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6c4d51cd2626b541b218b8ebb058c720.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__opportunity_ht_ss_over_time_1.eb89e6175a", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__opportunity_ht_ss_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__opportunity_ht_ss_over_time_1"], "alias": "dbt_expectations_expect_table__6c4d51cd2626b541b218b8ebb058c720", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6c4d51cd2626b541b218b8ebb058c720", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6c4d51cd2626b541b218b8ebb058c720"}, "created_at": 1700082644.4967668, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6c4d51cd2626b541b218b8ebb058c720\") }}", "language": "sql", "refs": [{"name": "analytics___platform__opportunity_ht_ss_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml/dbt_expectations_expect_table__6c4d51cd2626b541b218b8ebb058c720.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__opportunity_ht_ss_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__opportunity_ht_ss_over_time", "attached_node": "model.yoda.analytics___platform__opportunity_ht_ss_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__opportunity_ht_ss_over_time_opportunity_id__product_family.b786361f05": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["opportunity_id", "product_family"], "model": "{{ get_where_subquery(ref('analytics___platform__opportunity_ht_ss_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__opportunity_ht_ss_over_time_opportunity_id__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_ae9dbe0c89060cb5d9a4257def8e2e4b.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__opportunity_ht_ss_over_time_opportunity_id__product_family.b786361f05", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__opportunity_ht_ss_over_time", "dbt_utils_unique_combination_of_columns_analytics___platform__opportunity_ht_ss_over_time_opportunity_id__product_family"], "alias": "dbt_utils_unique_combination_o_ae9dbe0c89060cb5d9a4257def8e2e4b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ae9dbe0c89060cb5d9a4257def8e2e4b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ae9dbe0c89060cb5d9a4257def8e2e4b"}, "created_at": 1700082644.5030413, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ae9dbe0c89060cb5d9a4257def8e2e4b\") }}", "language": "sql", "refs": [{"name": "analytics___platform__opportunity_ht_ss_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.yml/dbt_utils_unique_combination_o_ae9dbe0c89060cb5d9a4257def8e2e4b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n opportunity_id, product_family\n from dev_dkruh1.analytics___platform__opportunity_ht_ss_over_time\n group by opportunity_id, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__opportunity_ht_ss_over_time", "attached_node": "model.yoda.analytics___platform__opportunity_ht_ss_over_time"}, "test.yoda.unique_analytics___platform__order_metrics_order_id.53c8358938": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('analytics___platform__order_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__order_metrics_order_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__order_metrics_order_id.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.yml", "unique_id": "test.yoda.unique_analytics___platform__order_metrics_order_id.53c8358938", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__order_metrics", "unique_analytics___platform__order_metrics_order_id"], "alias": "unique_analytics___platform__order_metrics_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082644.561294, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__order_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__order_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.yml/unique_analytics___platform__order_metrics_order_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_id from dev_dkruh1.analytics___platform__order_metrics where order_id is not null group by order_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.analytics___platform__order_metrics", "attached_node": "model.yoda.analytics___platform__order_metrics"}, "test.yoda.not_null_analytics___platform__order_metrics_order_id.1920d1b13f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('analytics___platform__order_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__order_metrics_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__order_metrics_order_id.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.yml", "unique_id": "test.yoda.not_null_analytics___platform__order_metrics_order_id.1920d1b13f", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__order_metrics", "not_null_analytics___platform__order_metrics_order_id"], "alias": "not_null_analytics___platform__order_metrics_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082644.5669596, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__order_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__order_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.yml/not_null_analytics___platform__order_metrics_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__order_metrics where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.analytics___platform__order_metrics", "attached_node": "model.yoda.analytics___platform__order_metrics"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__order_metrics_1.2b3572d58c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__order_metrics')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__order_metrics_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4eb7ee4eeb6d46ca350902b17053e973.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__order_metrics_1.2b3572d58c", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__order_metrics", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__order_metrics_1"], "alias": "dbt_expectations_expect_table__4eb7ee4eeb6d46ca350902b17053e973", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4eb7ee4eeb6d46ca350902b17053e973", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4eb7ee4eeb6d46ca350902b17053e973"}, "created_at": 1700082644.5722523, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4eb7ee4eeb6d46ca350902b17053e973\") }}", "language": "sql", "refs": [{"name": "analytics___platform__order_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__order_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.yml/dbt_expectations_expect_table__4eb7ee4eeb6d46ca350902b17053e973.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__order_metrics\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__order_metrics", "attached_node": "model.yoda.analytics___platform__order_metrics"}, "test.yoda.unique_analytics___platform__organization_organization_id.4e186060ee": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_id", "model": "{{ get_where_subquery(ref('analytics___platform__organization')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__organization_organization_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__organization_organization_id.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.yml", "unique_id": "test.yoda.unique_analytics___platform__organization_organization_id.4e186060ee", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization", "unique_analytics___platform__organization_organization_id"], "alias": "unique_analytics___platform__organization_organization_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082644.6033103, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.yml/unique_analytics___platform__organization_organization_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_id from dev_dkruh1.analytics___platform__organization where organization_id is not null group by organization_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_id", "file_key_name": "models.analytics___platform__organization", "attached_node": "model.yoda.analytics___platform__organization"}, "test.yoda.not_null_analytics___platform__organization_organization_id.f5c97c76e1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_id", "model": "{{ get_where_subquery(ref('analytics___platform__organization')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_organization_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__organization_organization_id.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_organization_id.f5c97c76e1", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization", "not_null_analytics___platform__organization_organization_id"], "alias": "not_null_analytics___platform__organization_organization_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082644.6092372, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.yml/not_null_analytics___platform__organization_organization_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization where organization_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_id", "file_key_name": "models.analytics___platform__organization", "attached_node": "model.yoda.analytics___platform__organization"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_1.8787bbdc2f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__62bf02de85d5fa7ec727ad2c7fd0ef15.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_1.8787bbdc2f", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_1"], "alias": "dbt_expectations_expect_table__62bf02de85d5fa7ec727ad2c7fd0ef15", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__62bf02de85d5fa7ec727ad2c7fd0ef15", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__62bf02de85d5fa7ec727ad2c7fd0ef15"}, "created_at": 1700082644.6158066, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__62bf02de85d5fa7ec727ad2c7fd0ef15\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.yml/dbt_expectations_expect_table__62bf02de85d5fa7ec727ad2c7fd0ef15.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization", "attached_node": "model.yoda.analytics___platform__organization"}, "test.yoda.not_null_analytics___platform__organization_country_organization_key.559f0069a2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_country')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_country_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__394a1e93ed4efaf223b1af6073eb011f.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_country_organization_key.559f0069a2", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_country", "not_null_analytics___platform__organization_country_organization_key"], "alias": "not_null_analytics___platform__394a1e93ed4efaf223b1af6073eb011f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__394a1e93ed4efaf223b1af6073eb011f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__394a1e93ed4efaf223b1af6073eb011f"}, "created_at": 1700082644.647819, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__394a1e93ed4efaf223b1af6073eb011f\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_country", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_country"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.yml/not_null_analytics___platform__394a1e93ed4efaf223b1af6073eb011f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_country where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_country", "attached_node": "model.yoda.analytics___platform__organization_country"}, "test.yoda.unique_analytics___platform__organization_country_organization_key.c32db45485": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_country')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__organization_country_organization_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__o_2f20112350664527ebac6b66f66a5391.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.yml", "unique_id": "test.yoda.unique_analytics___platform__organization_country_organization_key.c32db45485", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_country", "unique_analytics___platform__organization_country_organization_key"], "alias": "unique_analytics___platform__o_2f20112350664527ebac6b66f66a5391", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__o_2f20112350664527ebac6b66f66a5391", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__o_2f20112350664527ebac6b66f66a5391"}, "created_at": 1700082644.6542692, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__o_2f20112350664527ebac6b66f66a5391\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_country", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_country"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.yml/unique_analytics___platform__o_2f20112350664527ebac6b66f66a5391.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_key from dev_dkruh1.analytics___platform__organization_country where organization_key is not null group by organization_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_country", "attached_node": "model.yoda.analytics___platform__organization_country"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_country_1.b1ffea7fde": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_country')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_country_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__44599e7cffdcec1cb09f69310319fbad.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_country_1.b1ffea7fde", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_country", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_country_1"], "alias": "dbt_expectations_expect_table__44599e7cffdcec1cb09f69310319fbad", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__44599e7cffdcec1cb09f69310319fbad", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__44599e7cffdcec1cb09f69310319fbad"}, "created_at": 1700082644.664429, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__44599e7cffdcec1cb09f69310319fbad\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_country", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_country"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.yml/dbt_expectations_expect_table__44599e7cffdcec1cb09f69310319fbad.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_country\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_country", "attached_node": "model.yoda.analytics___platform__organization_country"}, "test.yoda.unique_analytics___platform__organization_industry_organization_key.685805ff4b": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_industry')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__organization_industry_organization_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__o_d7f302fdd86cc744d2cf7c678c58dda6.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.yml", "unique_id": "test.yoda.unique_analytics___platform__organization_industry_organization_key.685805ff4b", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_industry", "unique_analytics___platform__organization_industry_organization_key"], "alias": "unique_analytics___platform__o_d7f302fdd86cc744d2cf7c678c58dda6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__o_d7f302fdd86cc744d2cf7c678c58dda6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__o_d7f302fdd86cc744d2cf7c678c58dda6"}, "created_at": 1700082644.6874275, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__o_d7f302fdd86cc744d2cf7c678c58dda6\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_industry", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_industry"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.yml/unique_analytics___platform__o_d7f302fdd86cc744d2cf7c678c58dda6.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_key from dev_dkruh1.analytics___platform__organization_industry where organization_key is not null group by organization_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_industry", "attached_node": "model.yoda.analytics___platform__organization_industry"}, "test.yoda.not_null_analytics___platform__organization_industry_organization_key.44d7f30894": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_industry')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_industry_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__3132bcd47f92e72c9942cce8715ba08d.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_industry_organization_key.44d7f30894", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_industry", "not_null_analytics___platform__organization_industry_organization_key"], "alias": "not_null_analytics___platform__3132bcd47f92e72c9942cce8715ba08d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__3132bcd47f92e72c9942cce8715ba08d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__3132bcd47f92e72c9942cce8715ba08d"}, "created_at": 1700082644.693731, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__3132bcd47f92e72c9942cce8715ba08d\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_industry", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_industry"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.yml/not_null_analytics___platform__3132bcd47f92e72c9942cce8715ba08d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_industry where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_industry", "attached_node": "model.yoda.analytics___platform__organization_industry"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_industry_1.83a20a2990": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_industry')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_industry_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a00fd377815314191ee83c346ce60ca6.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_industry_1.83a20a2990", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_industry", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_industry_1"], "alias": "dbt_expectations_expect_table__a00fd377815314191ee83c346ce60ca6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a00fd377815314191ee83c346ce60ca6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a00fd377815314191ee83c346ce60ca6"}, "created_at": 1700082644.6993284, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a00fd377815314191ee83c346ce60ca6\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_industry", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_industry"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.yml/dbt_expectations_expect_table__a00fd377815314191ee83c346ce60ca6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_industry\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_industry", "attached_node": "model.yoda.analytics___platform__organization_industry"}, "test.yoda.not_null_analytics___platform__organization_metrics_monthly_month.fcb07517f6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___platform__organization_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_metrics_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__344535852a46155f817c1a260ffb2fc4.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_metrics_monthly_month.fcb07517f6", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_metrics_monthly", "not_null_analytics___platform__organization_metrics_monthly_month"], "alias": "not_null_analytics___platform__344535852a46155f817c1a260ffb2fc4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__344535852a46155f817c1a260ffb2fc4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__344535852a46155f817c1a260ffb2fc4"}, "created_at": 1700082644.7318013, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__344535852a46155f817c1a260ffb2fc4\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.yml/not_null_analytics___platform__344535852a46155f817c1a260ffb2fc4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_metrics_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___platform__organization_metrics_monthly", "attached_node": "model.yoda.analytics___platform__organization_metrics_monthly"}, "test.yoda.not_null_analytics___platform__organization_metrics_monthly_organization_key.d9e5fa109f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_metrics_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__2ad01a7783b1e39d4a008d4c07121fa4.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_metrics_monthly_organization_key.d9e5fa109f", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_metrics_monthly", "not_null_analytics___platform__organization_metrics_monthly_organization_key"], "alias": "not_null_analytics___platform__2ad01a7783b1e39d4a008d4c07121fa4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__2ad01a7783b1e39d4a008d4c07121fa4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__2ad01a7783b1e39d4a008d4c07121fa4"}, "created_at": 1700082644.737655, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__2ad01a7783b1e39d4a008d4c07121fa4\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.yml/not_null_analytics___platform__2ad01a7783b1e39d4a008d4c07121fa4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_metrics_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_metrics_monthly", "attached_node": "model.yoda.analytics___platform__organization_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_metrics_monthly_1.150d021652": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7b5257a5a6cd407a97f7bfeb6d064fac.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_metrics_monthly_1.150d021652", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__7b5257a5a6cd407a97f7bfeb6d064fac", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7b5257a5a6cd407a97f7bfeb6d064fac", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7b5257a5a6cd407a97f7bfeb6d064fac"}, "created_at": 1700082644.7484348, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7b5257a5a6cd407a97f7bfeb6d064fac\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.yml/dbt_expectations_expect_table__7b5257a5a6cd407a97f7bfeb6d064fac.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_metrics_monthly", "attached_node": "model.yoda.analytics___platform__organization_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_metrics_monthly_organization_key__month.1e8306f6b3": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["organization_key", "month"], "model": "{{ get_where_subquery(ref('analytics___platform__organization_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__organization_metrics_monthly_organization_key__month", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_dc9559d4380dd70168846a6d4f40f758.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_metrics_monthly_organization_key__month.1e8306f6b3", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___platform__organization_metrics_monthly_organization_key__month"], "alias": "dbt_utils_unique_combination_o_dc9559d4380dd70168846a6d4f40f758", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_dc9559d4380dd70168846a6d4f40f758", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_dc9559d4380dd70168846a6d4f40f758"}, "created_at": 1700082644.7562773, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_dc9559d4380dd70168846a6d4f40f758\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.yml/dbt_utils_unique_combination_o_dc9559d4380dd70168846a6d4f40f758.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n organization_key, month\n from dev_dkruh1.analytics___platform__organization_metrics_monthly\n group by organization_key, month\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_metrics_monthly", "attached_node": "model.yoda.analytics___platform__organization_metrics_monthly"}, "test.yoda.not_null_analytics___platform__organization_name_organization_id.f7dc4f9432": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_id", "model": "{{ get_where_subquery(ref('analytics___platform__organization_name')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_name_organization_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__f6b4ab9b42da9630ac618dd9d5540b68.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_name_organization_id.f7dc4f9432", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_name", "not_null_analytics___platform__organization_name_organization_id"], "alias": "not_null_analytics___platform__f6b4ab9b42da9630ac618dd9d5540b68", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__f6b4ab9b42da9630ac618dd9d5540b68", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__f6b4ab9b42da9630ac618dd9d5540b68"}, "created_at": 1700082644.7767923, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__f6b4ab9b42da9630ac618dd9d5540b68\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_name", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_name"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.yml/not_null_analytics___platform__f6b4ab9b42da9630ac618dd9d5540b68.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_name where organization_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_id", "file_key_name": "models.analytics___platform__organization_name", "attached_node": "model.yoda.analytics___platform__organization_name"}, "test.yoda.not_null_analytics___platform__organization_name_organization_key.be89c5f1d9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_name')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_name_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__daa762295be9c0fdfbc69553dd67cd7b.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_name_organization_key.be89c5f1d9", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_name", "not_null_analytics___platform__organization_name_organization_key"], "alias": "not_null_analytics___platform__daa762295be9c0fdfbc69553dd67cd7b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__daa762295be9c0fdfbc69553dd67cd7b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__daa762295be9c0fdfbc69553dd67cd7b"}, "created_at": 1700082644.7830513, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__daa762295be9c0fdfbc69553dd67cd7b\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_name", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_name"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.yml/not_null_analytics___platform__daa762295be9c0fdfbc69553dd67cd7b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_name where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_name", "attached_node": "model.yoda.analytics___platform__organization_name"}, "test.yoda.unique_analytics___platform__organization_name_organization_key.bc3a87fde5": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_name')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__organization_name_organization_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__organization_name_organization_key.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.yml", "unique_id": "test.yoda.unique_analytics___platform__organization_name_organization_key.bc3a87fde5", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_name", "unique_analytics___platform__organization_name_organization_key"], "alias": "unique_analytics___platform__organization_name_organization_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082644.7887328, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_name", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_name"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.yml/unique_analytics___platform__organization_name_organization_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_key from dev_dkruh1.analytics___platform__organization_name where organization_key is not null group by organization_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_name", "attached_node": "model.yoda.analytics___platform__organization_name"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_name_1.f6cd1c104e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_name')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_name_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__b44837f6c5b8bee2c07174afe5e7468f.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_name_1.f6cd1c104e", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_name", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_name_1"], "alias": "dbt_expectations_expect_table__b44837f6c5b8bee2c07174afe5e7468f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__b44837f6c5b8bee2c07174afe5e7468f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__b44837f6c5b8bee2c07174afe5e7468f"}, "created_at": 1700082644.793969, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__b44837f6c5b8bee2c07174afe5e7468f\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_name", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_name"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.yml/dbt_expectations_expect_table__b44837f6c5b8bee2c07174afe5e7468f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_name\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_name", "attached_node": "model.yoda.analytics___platform__organization_name"}, "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_month.a3cd2f8902": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___platform__organization_opportunity_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_opportunity_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__7a979826f5a73b4374f6ccc64ffaf174.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_month.a3cd2f8902", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_opportunity_monthly", "not_null_analytics___platform__organization_opportunity_monthly_month"], "alias": "not_null_analytics___platform__7a979826f5a73b4374f6ccc64ffaf174", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__7a979826f5a73b4374f6ccc64ffaf174", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__7a979826f5a73b4374f6ccc64ffaf174"}, "created_at": 1700082644.8196492, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__7a979826f5a73b4374f6ccc64ffaf174\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_opportunity_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_opportunity_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.yml/not_null_analytics___platform__7a979826f5a73b4374f6ccc64ffaf174.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_opportunity_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___platform__organization_opportunity_monthly", "attached_node": "model.yoda.analytics___platform__organization_opportunity_monthly"}, "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_organization_key.1124e5483d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_opportunity_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_opportunity_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__16925d269cce940495446721f35b2064.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_organization_key.1124e5483d", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_opportunity_monthly", "not_null_analytics___platform__organization_opportunity_monthly_organization_key"], "alias": "not_null_analytics___platform__16925d269cce940495446721f35b2064", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__16925d269cce940495446721f35b2064", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__16925d269cce940495446721f35b2064"}, "created_at": 1700082644.8250506, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__16925d269cce940495446721f35b2064\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_opportunity_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_opportunity_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.yml/not_null_analytics___platform__16925d269cce940495446721f35b2064.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_opportunity_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_opportunity_monthly", "attached_node": "model.yoda.analytics___platform__organization_opportunity_monthly"}, "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_opportunity_id.f1fed9b1fe": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___platform__organization_opportunity_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_opportunity_monthly_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__26ce58a17d748ed8d67184f4e4ad444b.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_opportunity_id.f1fed9b1fe", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_opportunity_monthly", "not_null_analytics___platform__organization_opportunity_monthly_opportunity_id"], "alias": "not_null_analytics___platform__26ce58a17d748ed8d67184f4e4ad444b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__26ce58a17d748ed8d67184f4e4ad444b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__26ce58a17d748ed8d67184f4e4ad444b"}, "created_at": 1700082644.8308296, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__26ce58a17d748ed8d67184f4e4ad444b\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_opportunity_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_opportunity_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.yml/not_null_analytics___platform__26ce58a17d748ed8d67184f4e4ad444b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_opportunity_monthly where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___platform__organization_opportunity_monthly", "attached_node": "model.yoda.analytics___platform__organization_opportunity_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_opportunity_monthly_1.4d8deb1a15": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_opportunity_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_opportunity_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__751d79aaaa715b06d1e6c73e9378d9ee.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_opportunity_monthly_1.4d8deb1a15", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_opportunity_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_opportunity_monthly_1"], "alias": "dbt_expectations_expect_table__751d79aaaa715b06d1e6c73e9378d9ee", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__751d79aaaa715b06d1e6c73e9378d9ee", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__751d79aaaa715b06d1e6c73e9378d9ee"}, "created_at": 1700082644.83763, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__751d79aaaa715b06d1e6c73e9378d9ee\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_opportunity_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_opportunity_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.yml/dbt_expectations_expect_table__751d79aaaa715b06d1e6c73e9378d9ee.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_opportunity_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_opportunity_monthly", "attached_node": "model.yoda.analytics___platform__organization_opportunity_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_opportunity_monthly_month__opportunity_id.c2f15a4e54": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "opportunity_id"], "model": "{{ get_where_subquery(ref('analytics___platform__organization_opportunity_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__organization_opportunity_monthly_month__opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_aa54283464988b3fa409fc3b49a36cd8.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_opportunity_monthly_month__opportunity_id.c2f15a4e54", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_opportunity_monthly", "dbt_utils_unique_combination_of_columns_analytics___platform__organization_opportunity_monthly_month__opportunity_id"], "alias": "dbt_utils_unique_combination_o_aa54283464988b3fa409fc3b49a36cd8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_aa54283464988b3fa409fc3b49a36cd8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_aa54283464988b3fa409fc3b49a36cd8"}, "created_at": 1700082644.8444016, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_aa54283464988b3fa409fc3b49a36cd8\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_opportunity_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_opportunity_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.yml/dbt_utils_unique_combination_o_aa54283464988b3fa409fc3b49a36cd8.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, opportunity_id\n from dev_dkruh1.analytics___platform__organization_opportunity_monthly\n group by month, opportunity_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_opportunity_monthly", "attached_node": "model.yoda.analytics___platform__organization_opportunity_monthly"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_date.81ce5af337": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__organization_plan_daily_date.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_date.81ce5af337", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_date"], "alias": "not_null_analytics___platform__organization_plan_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082644.8791795, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__organization_plan_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_organization_key.ca6b2acd78": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__f0eb8ad46b752348f8fab87ee9485397.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_organization_key.ca6b2acd78", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_organization_key"], "alias": "not_null_analytics___platform__f0eb8ad46b752348f8fab87ee9485397", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__f0eb8ad46b752348f8fab87ee9485397", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__f0eb8ad46b752348f8fab87ee9485397"}, "created_at": 1700082644.8849766, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__f0eb8ad46b752348f8fab87ee9485397\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__f0eb8ad46b752348f8fab87ee9485397.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_product_family.974f9664f8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__8ed27a43332dcc495c0fdca397ea5692.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_product_family.974f9664f8", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_product_family"], "alias": "not_null_analytics___platform__8ed27a43332dcc495c0fdca397ea5692", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__8ed27a43332dcc495c0fdca397ea5692", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__8ed27a43332dcc495c0fdca397ea5692"}, "created_at": 1700082644.8909836, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__8ed27a43332dcc495c0fdca397ea5692\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__8ed27a43332dcc495c0fdca397ea5692.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_plan_name.5f3a79eac3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__51b03aa9abab3ea4d9564ce96c205a34.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_plan_name.5f3a79eac3", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_plan_name"], "alias": "not_null_analytics___platform__51b03aa9abab3ea4d9564ce96c205a34", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__51b03aa9abab3ea4d9564ce96c205a34", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__51b03aa9abab3ea4d9564ce96c205a34"}, "created_at": 1700082644.89687, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__51b03aa9abab3ea4d9564ce96c205a34\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__51b03aa9abab3ea4d9564ce96c205a34.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_is_self_service.b6e5e96cd9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_self_service", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_is_self_service", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__bac07c4e67c02741c1bf9cf6319364c5.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_is_self_service.b6e5e96cd9", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_is_self_service"], "alias": "not_null_analytics___platform__bac07c4e67c02741c1bf9cf6319364c5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__bac07c4e67c02741c1bf9cf6319364c5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__bac07c4e67c02741c1bf9cf6319364c5"}, "created_at": 1700082644.902572, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__bac07c4e67c02741c1bf9cf6319364c5\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__bac07c4e67c02741c1bf9cf6319364c5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where is_self_service is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_self_service", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_is_free.e1bb945993": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_free", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_is_free", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__organization_plan_daily_is_free.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_is_free.e1bb945993", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_is_free"], "alias": "not_null_analytics___platform__organization_plan_daily_is_free", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082644.909254, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__organization_plan_daily_is_free.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where is_free is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_free", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_is_full_service.0347d3eb98": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_full_service", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_is_full_service", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__231565a434d11e9eb20c0b4d97855466.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_is_full_service.0347d3eb98", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_is_full_service"], "alias": "not_null_analytics___platform__231565a434d11e9eb20c0b4d97855466", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__231565a434d11e9eb20c0b4d97855466", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__231565a434d11e9eb20c0b4d97855466"}, "created_at": 1700082644.9152658, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__231565a434d11e9eb20c0b4d97855466\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__231565a434d11e9eb20c0b4d97855466.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where is_full_service is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_full_service", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_is_reviews.2ea32ee795": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_reviews", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_is_reviews", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__30a0fb3ee7d3ba71dace13fc109b5e03.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_is_reviews.2ea32ee795", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_is_reviews"], "alias": "not_null_analytics___platform__30a0fb3ee7d3ba71dace13fc109b5e03", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__30a0fb3ee7d3ba71dace13fc109b5e03", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__30a0fb3ee7d3ba71dace13fc109b5e03"}, "created_at": 1700082644.9218214, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__30a0fb3ee7d3ba71dace13fc109b5e03\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__30a0fb3ee7d3ba71dace13fc109b5e03.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where is_reviews is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_reviews", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_is_loyalty.90c454b511": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_loyalty", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_is_loyalty", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__a268de47406de6c54752f4638c9aa127.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_is_loyalty.90c454b511", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_is_loyalty"], "alias": "not_null_analytics___platform__a268de47406de6c54752f4638c9aa127", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__a268de47406de6c54752f4638c9aa127", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__a268de47406de6c54752f4638c9aa127"}, "created_at": 1700082644.9272807, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__a268de47406de6c54752f4638c9aa127\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__a268de47406de6c54752f4638c9aa127.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where is_loyalty is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_loyalty", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_is_vms.97f0766216": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_vms", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_is_vms", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__organization_plan_daily_is_vms.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_is_vms.97f0766216", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_is_vms"], "alias": "not_null_analytics___platform__organization_plan_daily_is_vms", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082644.932953, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__organization_plan_daily_is_vms.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where is_vms is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_vms", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_is_subscriptions.a70f44e9e7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_subscriptions", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_is_subscriptions", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__e2bab93bf25f36b6dd3f3f6dddd967af.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_is_subscriptions.a70f44e9e7", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_is_subscriptions"], "alias": "not_null_analytics___platform__e2bab93bf25f36b6dd3f3f6dddd967af", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__e2bab93bf25f36b6dd3f3f6dddd967af", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__e2bab93bf25f36b6dd3f3f6dddd967af"}, "created_at": 1700082644.937931, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__e2bab93bf25f36b6dd3f3f6dddd967af\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__e2bab93bf25f36b6dd3f3f6dddd967af.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where is_subscriptions is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_subscriptions", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_is_sms.af85f74da7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_sms", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_is_sms", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__organization_plan_daily_is_sms.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_is_sms.af85f74da7", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_is_sms"], "alias": "not_null_analytics___platform__organization_plan_daily_is_sms", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082644.9436145, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__organization_plan_daily_is_sms.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where is_sms is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_sms", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_is_email.99562b090f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_email", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_is_email", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__organization_plan_daily_is_email.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_is_email.99562b090f", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_is_email"], "alias": "not_null_analytics___platform__organization_plan_daily_is_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082644.949481, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__organization_plan_daily_is_email.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where is_email is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_email", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_plan_name_array.8587f40152": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_name_array", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_plan_name_array", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__7fa8f8587402a7be8762df06c9524bb1.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_plan_name_array.8587f40152", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_plan_name_array"], "alias": "not_null_analytics___platform__7fa8f8587402a7be8762df06c9524bb1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__7fa8f8587402a7be8762df06c9524bb1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__7fa8f8587402a7be8762df06c9524bb1"}, "created_at": 1700082644.9588275, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__7fa8f8587402a7be8762df06c9524bb1\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__7fa8f8587402a7be8762df06c9524bb1.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where plan_name_array is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name_array", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_daily_app_key_array.5ebe8f8d4a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key_array", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_daily_app_key_array", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__d6c5e9983812cb08464fa6e1bb2f44bb.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_daily_app_key_array.5ebe8f8d4a", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "not_null_analytics___platform__organization_plan_daily_app_key_array"], "alias": "not_null_analytics___platform__d6c5e9983812cb08464fa6e1bb2f44bb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__d6c5e9983812cb08464fa6e1bb2f44bb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__d6c5e9983812cb08464fa6e1bb2f44bb"}, "created_at": 1700082644.9688342, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__d6c5e9983812cb08464fa6e1bb2f44bb\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/not_null_analytics___platform__d6c5e9983812cb08464fa6e1bb2f44bb.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_daily where app_key_array is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key_array", "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_daily_1.d3512b01c3": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__390e947cb58e8583fb5bc46251ecd67a.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_daily_1.d3512b01c3", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_daily_1"], "alias": "dbt_expectations_expect_table__390e947cb58e8583fb5bc46251ecd67a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__390e947cb58e8583fb5bc46251ecd67a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__390e947cb58e8583fb5bc46251ecd67a"}, "created_at": 1700082644.9750953, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__390e947cb58e8583fb5bc46251ecd67a\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/dbt_expectations_expect_table__390e947cb58e8583fb5bc46251ecd67a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_plan_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_daily_date__organization_key__product_family.297910b017": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "organization_key", "product_family"], "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_daily_date__organization_key__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_45c14bf6f411728735e3400e4b305f75.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_daily_date__organization_key__product_family.297910b017", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_daily", "dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_daily_date__organization_key__product_family"], "alias": "dbt_utils_unique_combination_o_45c14bf6f411728735e3400e4b305f75", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_45c14bf6f411728735e3400e4b305f75", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_45c14bf6f411728735e3400e4b305f75"}, "created_at": 1700082644.981204, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_45c14bf6f411728735e3400e4b305f75\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.yml/dbt_utils_unique_combination_o_45c14bf6f411728735e3400e4b305f75.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, organization_key, product_family\n from dev_dkruh1.analytics___platform__organization_plan_daily\n group by date, organization_key, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_plan_daily", "attached_node": "model.yoda.analytics___platform__organization_plan_daily"}, "test.yoda.not_null_analytics___platform__organization_plan_monthly_month.3aa88f6e20": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__organization_plan_monthly_month.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_monthly_month.3aa88f6e20", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_monthly", "not_null_analytics___platform__organization_plan_monthly_month"], "alias": "not_null_analytics___platform__organization_plan_monthly_month", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082645.0250287, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml/not_null_analytics___platform__organization_plan_monthly_month.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___platform__organization_plan_monthly", "attached_node": "model.yoda.analytics___platform__organization_plan_monthly"}, "test.yoda.not_null_analytics___platform__organization_plan_monthly_organization_key.4dae6c489c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__fb26eac315a5bdbaf819a4ef6d1156ae.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_monthly_organization_key.4dae6c489c", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_monthly", "not_null_analytics___platform__organization_plan_monthly_organization_key"], "alias": "not_null_analytics___platform__fb26eac315a5bdbaf819a4ef6d1156ae", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__fb26eac315a5bdbaf819a4ef6d1156ae", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__fb26eac315a5bdbaf819a4ef6d1156ae"}, "created_at": 1700082645.030646, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__fb26eac315a5bdbaf819a4ef6d1156ae\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml/not_null_analytics___platform__fb26eac315a5bdbaf819a4ef6d1156ae.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_plan_monthly", "attached_node": "model.yoda.analytics___platform__organization_plan_monthly"}, "test.yoda.not_null_analytics___platform__organization_plan_monthly_product_family.f53bc2be74": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_monthly_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__5e849a6bb5308d2cd539f3cdccb62501.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_monthly_product_family.f53bc2be74", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_monthly", "not_null_analytics___platform__organization_plan_monthly_product_family"], "alias": "not_null_analytics___platform__5e849a6bb5308d2cd539f3cdccb62501", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__5e849a6bb5308d2cd539f3cdccb62501", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__5e849a6bb5308d2cd539f3cdccb62501"}, "created_at": 1700082645.0370326, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__5e849a6bb5308d2cd539f3cdccb62501\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml/not_null_analytics___platform__5e849a6bb5308d2cd539f3cdccb62501.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_monthly where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___platform__organization_plan_monthly", "attached_node": "model.yoda.analytics___platform__organization_plan_monthly"}, "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_reviews.0cd536820b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_reviews", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_monthly_is_reviews", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__2ed50a6264a9c84598f8236b728b04aa.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_reviews.0cd536820b", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_monthly", "not_null_analytics___platform__organization_plan_monthly_is_reviews"], "alias": "not_null_analytics___platform__2ed50a6264a9c84598f8236b728b04aa", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__2ed50a6264a9c84598f8236b728b04aa", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__2ed50a6264a9c84598f8236b728b04aa"}, "created_at": 1700082645.0420947, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__2ed50a6264a9c84598f8236b728b04aa\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml/not_null_analytics___platform__2ed50a6264a9c84598f8236b728b04aa.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_monthly where is_reviews is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_reviews", "file_key_name": "models.analytics___platform__organization_plan_monthly", "attached_node": "model.yoda.analytics___platform__organization_plan_monthly"}, "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_loyalty.f6172edfa4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_loyalty", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_monthly_is_loyalty", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__06a73a103cd2d580ad658bcd4e5d7a6c.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_loyalty.f6172edfa4", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_monthly", "not_null_analytics___platform__organization_plan_monthly_is_loyalty"], "alias": "not_null_analytics___platform__06a73a103cd2d580ad658bcd4e5d7a6c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__06a73a103cd2d580ad658bcd4e5d7a6c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__06a73a103cd2d580ad658bcd4e5d7a6c"}, "created_at": 1700082645.0479176, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__06a73a103cd2d580ad658bcd4e5d7a6c\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml/not_null_analytics___platform__06a73a103cd2d580ad658bcd4e5d7a6c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_monthly where is_loyalty is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_loyalty", "file_key_name": "models.analytics___platform__organization_plan_monthly", "attached_node": "model.yoda.analytics___platform__organization_plan_monthly"}, "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_vms.d01483b5e8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_vms", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_monthly_is_vms", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__organization_plan_monthly_is_vms.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_vms.d01483b5e8", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_monthly", "not_null_analytics___platform__organization_plan_monthly_is_vms"], "alias": "not_null_analytics___platform__organization_plan_monthly_is_vms", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082645.0542133, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml/not_null_analytics___platform__organization_plan_monthly_is_vms.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_monthly where is_vms is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_vms", "file_key_name": "models.analytics___platform__organization_plan_monthly", "attached_node": "model.yoda.analytics___platform__organization_plan_monthly"}, "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_subscriptions.892529494d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_subscriptions", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_monthly_is_subscriptions", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__9c0f273d4164aef677139c43b29ac0e3.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_subscriptions.892529494d", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_monthly", "not_null_analytics___platform__organization_plan_monthly_is_subscriptions"], "alias": "not_null_analytics___platform__9c0f273d4164aef677139c43b29ac0e3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__9c0f273d4164aef677139c43b29ac0e3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__9c0f273d4164aef677139c43b29ac0e3"}, "created_at": 1700082645.0598369, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__9c0f273d4164aef677139c43b29ac0e3\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml/not_null_analytics___platform__9c0f273d4164aef677139c43b29ac0e3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_monthly where is_subscriptions is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_subscriptions", "file_key_name": "models.analytics___platform__organization_plan_monthly", "attached_node": "model.yoda.analytics___platform__organization_plan_monthly"}, "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_email.0ead36374d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_email", "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_plan_monthly_is_email", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__dde5327f509f13905da1e4070392e8fc.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_email.0ead36374d", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_monthly", "not_null_analytics___platform__organization_plan_monthly_is_email"], "alias": "not_null_analytics___platform__dde5327f509f13905da1e4070392e8fc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__dde5327f509f13905da1e4070392e8fc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__dde5327f509f13905da1e4070392e8fc"}, "created_at": 1700082645.065319, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__dde5327f509f13905da1e4070392e8fc\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml/not_null_analytics___platform__dde5327f509f13905da1e4070392e8fc.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_plan_monthly where is_email is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_email", "file_key_name": "models.analytics___platform__organization_plan_monthly", "attached_node": "model.yoda.analytics___platform__organization_plan_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_monthly_1.baa716b666": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5bd02ce0ff8e334ee1006481daae6305.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_monthly_1.baa716b666", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_monthly_1"], "alias": "dbt_expectations_expect_table__5bd02ce0ff8e334ee1006481daae6305", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5bd02ce0ff8e334ee1006481daae6305", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5bd02ce0ff8e334ee1006481daae6305"}, "created_at": 1700082645.0711498, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5bd02ce0ff8e334ee1006481daae6305\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml/dbt_expectations_expect_table__5bd02ce0ff8e334ee1006481daae6305.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_plan_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_plan_monthly", "attached_node": "model.yoda.analytics___platform__organization_plan_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_monthly_month__organization_key__product_family.b7cf54fb07": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "organization_key", "product_family"], "model": "{{ get_where_subquery(ref('analytics___platform__organization_plan_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_monthly_month__organization_key__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_94e05185353e01eb0a68985c0af03d0e.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_monthly_month__organization_key__product_family.b7cf54fb07", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_plan_monthly", "dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_monthly_month__organization_key__product_family"], "alias": "dbt_utils_unique_combination_o_94e05185353e01eb0a68985c0af03d0e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_94e05185353e01eb0a68985c0af03d0e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_94e05185353e01eb0a68985c0af03d0e"}, "created_at": 1700082645.0770411, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_94e05185353e01eb0a68985c0af03d0e\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.yml/dbt_utils_unique_combination_o_94e05185353e01eb0a68985c0af03d0e.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, organization_key, product_family\n from dev_dkruh1.analytics___platform__organization_plan_monthly\n group by month, organization_key, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_plan_monthly", "attached_node": "model.yoda.analytics___platform__organization_plan_monthly"}, "test.yoda.unique_analytics___platform__organization_platform_organization_key.35a769f9bc": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_platform')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__organization_platform_organization_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__o_beaea7d96eea372bcb39d934dc7f6d26.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.yml", "unique_id": "test.yoda.unique_analytics___platform__organization_platform_organization_key.35a769f9bc", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_platform", "unique_analytics___platform__organization_platform_organization_key"], "alias": "unique_analytics___platform__o_beaea7d96eea372bcb39d934dc7f6d26", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__o_beaea7d96eea372bcb39d934dc7f6d26", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__o_beaea7d96eea372bcb39d934dc7f6d26"}, "created_at": 1700082645.0973194, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__o_beaea7d96eea372bcb39d934dc7f6d26\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_platform", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_platform"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.yml/unique_analytics___platform__o_beaea7d96eea372bcb39d934dc7f6d26.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_key from dev_dkruh1.analytics___platform__organization_platform where organization_key is not null group by organization_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_platform", "attached_node": "model.yoda.analytics___platform__organization_platform"}, "test.yoda.not_null_analytics___platform__organization_platform_organization_key.d4f349d341": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_platform')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_platform_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__8da56a6898f68b33abee53833654bd97.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_platform_organization_key.d4f349d341", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_platform", "not_null_analytics___platform__organization_platform_organization_key"], "alias": "not_null_analytics___platform__8da56a6898f68b33abee53833654bd97", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__8da56a6898f68b33abee53833654bd97", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__8da56a6898f68b33abee53833654bd97"}, "created_at": 1700082645.1028075, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__8da56a6898f68b33abee53833654bd97\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_platform", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_platform"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.yml/not_null_analytics___platform__8da56a6898f68b33abee53833654bd97.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_platform where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_platform", "attached_node": "model.yoda.analytics___platform__organization_platform"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_platform_1.eeb92e7163": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_platform')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_platform_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__655a173be6f69d4e4e7a6131e142de24.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_platform_1.eeb92e7163", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_platform", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_platform_1"], "alias": "dbt_expectations_expect_table__655a173be6f69d4e4e7a6131e142de24", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__655a173be6f69d4e4e7a6131e142de24", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__655a173be6f69d4e4e7a6131e142de24"}, "created_at": 1700082645.1081424, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__655a173be6f69d4e4e7a6131e142de24\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_platform", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_platform"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.yml/dbt_expectations_expect_table__655a173be6f69d4e4e7a6131e142de24.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_platform\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_platform", "attached_node": "model.yoda.analytics___platform__organization_platform"}, "test.yoda.unique_analytics___platform__organization_product_activeness_monthly_organization_product_month_id.09c2920902": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_activeness_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__organization_product_activeness_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__o_f464695599c84313bb412bd68802382e.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.yml", "unique_id": "test.yoda.unique_analytics___platform__organization_product_activeness_monthly_organization_product_month_id.09c2920902", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_activeness_monthly", "unique_analytics___platform__organization_product_activeness_monthly_organization_product_month_id"], "alias": "unique_analytics___platform__o_f464695599c84313bb412bd68802382e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__o_f464695599c84313bb412bd68802382e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__o_f464695599c84313bb412bd68802382e"}, "created_at": 1700082645.1323376, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__o_f464695599c84313bb412bd68802382e\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.yml/unique_analytics___platform__o_f464695599c84313bb412bd68802382e.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_product_month_id from dev_dkruh1.analytics___platform__organization_product_activeness_monthly where organization_product_month_id is not null group by organization_product_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___platform__organization_product_activeness_monthly", "attached_node": "model.yoda.analytics___platform__organization_product_activeness_monthly"}, "test.yoda.not_null_analytics___platform__organization_product_activeness_monthly_organization_product_month_id.72b432382b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_activeness_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_product_activeness_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__358d5a5dabcd1f672fb882db9ec782a2.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_product_activeness_monthly_organization_product_month_id.72b432382b", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_activeness_monthly", "not_null_analytics___platform__organization_product_activeness_monthly_organization_product_month_id"], "alias": "not_null_analytics___platform__358d5a5dabcd1f672fb882db9ec782a2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__358d5a5dabcd1f672fb882db9ec782a2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__358d5a5dabcd1f672fb882db9ec782a2"}, "created_at": 1700082645.1377769, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__358d5a5dabcd1f672fb882db9ec782a2\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.yml/not_null_analytics___platform__358d5a5dabcd1f672fb882db9ec782a2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_product_activeness_monthly where organization_product_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___platform__organization_product_activeness_monthly", "attached_node": "model.yoda.analytics___platform__organization_product_activeness_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_activeness_monthly_1.4aaca9ad3e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_activeness_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_activeness_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f83d9caebfaa084ef89b0bbd35d01465.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_activeness_monthly_1.4aaca9ad3e", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_activeness_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_activeness_monthly_1"], "alias": "dbt_expectations_expect_table__f83d9caebfaa084ef89b0bbd35d01465", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f83d9caebfaa084ef89b0bbd35d01465", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f83d9caebfaa084ef89b0bbd35d01465"}, "created_at": 1700082645.1428735, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f83d9caebfaa084ef89b0bbd35d01465\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.yml/dbt_expectations_expect_table__f83d9caebfaa084ef89b0bbd35d01465.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_product_activeness_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_product_activeness_monthly", "attached_node": "model.yoda.analytics___platform__organization_product_activeness_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_metrics_monthly_organization_key__metric_month.ebe548179e": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["organization_key", "metric_month"], "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_metrics_monthly_organization_key__metric_month", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_0927cd3f0914665d9601b273dd7e1164.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_metrics_monthly_organization_key__metric_month.ebe548179e", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_metrics_monthly_organization_key__metric_month"], "alias": "dbt_utils_unique_combination_o_0927cd3f0914665d9601b273dd7e1164", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_0927cd3f0914665d9601b273dd7e1164", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_0927cd3f0914665d9601b273dd7e1164"}, "created_at": 1700082645.1636217, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_0927cd3f0914665d9601b273dd7e1164\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.yml/dbt_utils_unique_combination_o_0927cd3f0914665d9601b273dd7e1164.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n organization_key, metric_month\n from dev_dkruh1.analytics___platform__organization_product_metrics_monthly\n group by organization_key, metric_month\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_product_metrics_monthly", "attached_node": "model.yoda.analytics___platform__organization_product_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_1.6d7839a364": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__07d180e6bc2ee1ef5153bf5a0c964ac6.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_1.6d7839a364", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__07d180e6bc2ee1ef5153bf5a0c964ac6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__07d180e6bc2ee1ef5153bf5a0c964ac6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__07d180e6bc2ee1ef5153bf5a0c964ac6"}, "created_at": 1700082645.1712034, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__07d180e6bc2ee1ef5153bf5a0c964ac6\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.yml/dbt_expectations_expect_table__07d180e6bc2ee1ef5153bf5a0c964ac6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_product_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_product_metrics_monthly", "attached_node": "model.yoda.analytics___platform__organization_product_metrics_monthly"}, "test.yoda.unique_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c.d6cb8f2a20": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "External_ID__c", "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_metrics_monthly_unpivot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__o_fe2e3cef698128237a315d1e32760aec.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.yml", "unique_id": "test.yoda.unique_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c.d6cb8f2a20", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_metrics_monthly_unpivot", "unique_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c"], "alias": "unique_analytics___platform__o_fe2e3cef698128237a315d1e32760aec", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__o_fe2e3cef698128237a315d1e32760aec", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__o_fe2e3cef698128237a315d1e32760aec"}, "created_at": 1700082645.1976192, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__o_fe2e3cef698128237a315d1e32760aec\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_metrics_monthly_unpivot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.yml/unique_analytics___platform__o_fe2e3cef698128237a315d1e32760aec.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select External_ID__c from dev_dkruh1.analytics___platform__organization_product_metrics_monthly_unpivot where External_ID__c is not null group by External_ID__c having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "External_ID__c", "file_key_name": "models.analytics___platform__organization_product_metrics_monthly_unpivot", "attached_node": "model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot"}, "test.yoda.not_null_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c.5f3d9028b0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "External_ID__c", "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_metrics_monthly_unpivot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__0b3c4122cf338f010d552ca83a6f946e.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c.5f3d9028b0", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_metrics_monthly_unpivot", "not_null_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c"], "alias": "not_null_analytics___platform__0b3c4122cf338f010d552ca83a6f946e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__0b3c4122cf338f010d552ca83a6f946e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__0b3c4122cf338f010d552ca83a6f946e"}, "created_at": 1700082645.2062364, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__0b3c4122cf338f010d552ca83a6f946e\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_metrics_monthly_unpivot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.yml/not_null_analytics___platform__0b3c4122cf338f010d552ca83a6f946e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_product_metrics_monthly_unpivot where External_ID__c is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "External_ID__c", "file_key_name": "models.analytics___platform__organization_product_metrics_monthly_unpivot", "attached_node": "model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_unpivot_1.9bf85b96c2": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_metrics_monthly_unpivot')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_unpivot_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__b6e11c97bf389ea66e20c7c603839284.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_unpivot_1.9bf85b96c2", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_metrics_monthly_unpivot", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_unpivot_1"], "alias": "dbt_expectations_expect_table__b6e11c97bf389ea66e20c7c603839284", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__b6e11c97bf389ea66e20c7c603839284", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__b6e11c97bf389ea66e20c7c603839284"}, "created_at": 1700082645.2136219, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__b6e11c97bf389ea66e20c7c603839284\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_metrics_monthly_unpivot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.yml/dbt_expectations_expect_table__b6e11c97bf389ea66e20c7c603839284.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_product_metrics_monthly_unpivot\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_product_metrics_monthly_unpivot", "attached_node": "model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot"}, "test.yoda.not_null_analytics___platform__organization_product_segment_daily_date.f8ffdaabe5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_segment_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_product_segment_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__a1fa4fc2d7330995a5a731cf77987d15.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_product_segment_daily_date.f8ffdaabe5", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_daily", "not_null_analytics___platform__organization_product_segment_daily_date"], "alias": "not_null_analytics___platform__a1fa4fc2d7330995a5a731cf77987d15", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__a1fa4fc2d7330995a5a731cf77987d15", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__a1fa4fc2d7330995a5a731cf77987d15"}, "created_at": 1700082645.2441115, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__a1fa4fc2d7330995a5a731cf77987d15\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.yml/not_null_analytics___platform__a1fa4fc2d7330995a5a731cf77987d15.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_product_segment_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___platform__organization_product_segment_daily", "attached_node": "model.yoda.analytics___platform__organization_product_segment_daily"}, "test.yoda.not_null_analytics___platform__organization_product_segment_daily_organization_key.1358b9f30b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_segment_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_product_segment_daily_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__a4efe27fa7e2c7f6ca7bd9b079a8b5b6.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_product_segment_daily_organization_key.1358b9f30b", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_daily", "not_null_analytics___platform__organization_product_segment_daily_organization_key"], "alias": "not_null_analytics___platform__a4efe27fa7e2c7f6ca7bd9b079a8b5b6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__a4efe27fa7e2c7f6ca7bd9b079a8b5b6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__a4efe27fa7e2c7f6ca7bd9b079a8b5b6"}, "created_at": 1700082645.2497568, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__a4efe27fa7e2c7f6ca7bd9b079a8b5b6\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.yml/not_null_analytics___platform__a4efe27fa7e2c7f6ca7bd9b079a8b5b6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_product_segment_daily where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_product_segment_daily", "attached_node": "model.yoda.analytics___platform__organization_product_segment_daily"}, "test.yoda.not_null_analytics___platform__organization_product_segment_daily_product_family.cdea0b033c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_segment_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_product_segment_daily_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__0ffa137dd4430e5da651e164cfa84e2a.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_product_segment_daily_product_family.cdea0b033c", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_daily", "not_null_analytics___platform__organization_product_segment_daily_product_family"], "alias": "not_null_analytics___platform__0ffa137dd4430e5da651e164cfa84e2a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__0ffa137dd4430e5da651e164cfa84e2a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__0ffa137dd4430e5da651e164cfa84e2a"}, "created_at": 1700082645.2564654, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__0ffa137dd4430e5da651e164cfa84e2a\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.yml/not_null_analytics___platform__0ffa137dd4430e5da651e164cfa84e2a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_product_segment_daily where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___platform__organization_product_segment_daily", "attached_node": "model.yoda.analytics___platform__organization_product_segment_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_daily_1.57f3987c9e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_segment_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__349936d192271492908cd52c17bfb648.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_daily_1.57f3987c9e", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_daily_1"], "alias": "dbt_expectations_expect_table__349936d192271492908cd52c17bfb648", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__349936d192271492908cd52c17bfb648", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__349936d192271492908cd52c17bfb648"}, "created_at": 1700082645.2632365, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__349936d192271492908cd52c17bfb648\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.yml/dbt_expectations_expect_table__349936d192271492908cd52c17bfb648.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_product_segment_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_product_segment_daily", "attached_node": "model.yoda.analytics___platform__organization_product_segment_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_segment_daily_date__organization_key__product_family.ef5e4fda4d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "organization_key", "product_family"], "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_segment_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_segment_daily_date__organization_key__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_f4b8ab62e351064a28ac31da6222b269.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_segment_daily_date__organization_key__product_family.ef5e4fda4d", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_daily", "dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_segment_daily_date__organization_key__product_family"], "alias": "dbt_utils_unique_combination_o_f4b8ab62e351064a28ac31da6222b269", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_f4b8ab62e351064a28ac31da6222b269", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_f4b8ab62e351064a28ac31da6222b269"}, "created_at": 1700082645.2696495, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_f4b8ab62e351064a28ac31da6222b269\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.yml/dbt_utils_unique_combination_o_f4b8ab62e351064a28ac31da6222b269.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, organization_key, product_family\n from dev_dkruh1.analytics___platform__organization_product_segment_daily\n group by date, organization_key, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_product_segment_daily", "attached_node": "model.yoda.analytics___platform__organization_product_segment_daily"}, "test.yoda.unique_analytics___platform__organization_product_segment_monthly_organization_product_month_id.eae7c2fc23": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_segment_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__organization_product_segment_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__o_cac7ff2fc5b4dae87ee4377ffe9ca582.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.yml", "unique_id": "test.yoda.unique_analytics___platform__organization_product_segment_monthly_organization_product_month_id.eae7c2fc23", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_monthly", "unique_analytics___platform__organization_product_segment_monthly_organization_product_month_id"], "alias": "unique_analytics___platform__o_cac7ff2fc5b4dae87ee4377ffe9ca582", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__o_cac7ff2fc5b4dae87ee4377ffe9ca582", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__o_cac7ff2fc5b4dae87ee4377ffe9ca582"}, "created_at": 1700082645.457067, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__o_cac7ff2fc5b4dae87ee4377ffe9ca582\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.yml/unique_analytics___platform__o_cac7ff2fc5b4dae87ee4377ffe9ca582.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_product_month_id from dev_dkruh1.analytics___platform__organization_product_segment_monthly where organization_product_month_id is not null group by organization_product_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___platform__organization_product_segment_monthly", "attached_node": "model.yoda.analytics___platform__organization_product_segment_monthly"}, "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_organization_product_month_id.57c2687fe2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_product_month_id", "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_segment_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_product_segment_monthly_organization_product_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__70353c53831473d807cc2c0fc21e003f.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_organization_product_month_id.57c2687fe2", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_monthly", "not_null_analytics___platform__organization_product_segment_monthly_organization_product_month_id"], "alias": "not_null_analytics___platform__70353c53831473d807cc2c0fc21e003f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__70353c53831473d807cc2c0fc21e003f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__70353c53831473d807cc2c0fc21e003f"}, "created_at": 1700082645.4640255, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__70353c53831473d807cc2c0fc21e003f\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.yml/not_null_analytics___platform__70353c53831473d807cc2c0fc21e003f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_product_segment_monthly where organization_product_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_product_month_id", "file_key_name": "models.analytics___platform__organization_product_segment_monthly", "attached_node": "model.yoda.analytics___platform__organization_product_segment_monthly"}, "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_month.4fe831a3bc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_segment_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_product_segment_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__3d3001fa801898632290dd68ad9b4da3.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_month.4fe831a3bc", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_monthly", "not_null_analytics___platform__organization_product_segment_monthly_month"], "alias": "not_null_analytics___platform__3d3001fa801898632290dd68ad9b4da3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__3d3001fa801898632290dd68ad9b4da3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__3d3001fa801898632290dd68ad9b4da3"}, "created_at": 1700082645.470553, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__3d3001fa801898632290dd68ad9b4da3\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.yml/not_null_analytics___platform__3d3001fa801898632290dd68ad9b4da3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_product_segment_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___platform__organization_product_segment_monthly", "attached_node": "model.yoda.analytics___platform__organization_product_segment_monthly"}, "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_organization_key.c96b0a5319": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_segment_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_product_segment_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__568507a673beb2f75820ce435407fec0.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_organization_key.c96b0a5319", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_monthly", "not_null_analytics___platform__organization_product_segment_monthly_organization_key"], "alias": "not_null_analytics___platform__568507a673beb2f75820ce435407fec0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__568507a673beb2f75820ce435407fec0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__568507a673beb2f75820ce435407fec0"}, "created_at": 1700082645.4765246, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__568507a673beb2f75820ce435407fec0\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.yml/not_null_analytics___platform__568507a673beb2f75820ce435407fec0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_product_segment_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_product_segment_monthly", "attached_node": "model.yoda.analytics___platform__organization_product_segment_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_monthly_1.e949b933b1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_product_segment_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e90274e9911ad4635acd09750782f790.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_monthly_1.e949b933b1", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_product_segment_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_monthly_1"], "alias": "dbt_expectations_expect_table__e90274e9911ad4635acd09750782f790", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e90274e9911ad4635acd09750782f790", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e90274e9911ad4635acd09750782f790"}, "created_at": 1700082645.4822001, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e90274e9911ad4635acd09750782f790\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_product_segment_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_product_segment_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.yml/dbt_expectations_expect_table__e90274e9911ad4635acd09750782f790.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_product_segment_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_product_segment_monthly", "attached_node": "model.yoda.analytics___platform__organization_product_segment_monthly"}, "test.yoda.not_null_analytics___platform__organization_segment_monthly_organization_month_id.c5f722e165": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_month_id", "model": "{{ get_where_subquery(ref('analytics___platform__organization_segment_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_segment_monthly_organization_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__54bac7b8dade6d8fe5781cb83d24ac50.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_segment_monthly_organization_month_id.c5f722e165", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_segment_monthly", "not_null_analytics___platform__organization_segment_monthly_organization_month_id"], "alias": "not_null_analytics___platform__54bac7b8dade6d8fe5781cb83d24ac50", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__54bac7b8dade6d8fe5781cb83d24ac50", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__54bac7b8dade6d8fe5781cb83d24ac50"}, "created_at": 1700082645.533648, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__54bac7b8dade6d8fe5781cb83d24ac50\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_segment_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_segment_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.yml/not_null_analytics___platform__54bac7b8dade6d8fe5781cb83d24ac50.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_segment_monthly where organization_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_month_id", "file_key_name": "models.analytics___platform__organization_segment_monthly", "attached_node": "model.yoda.analytics___platform__organization_segment_monthly"}, "test.yoda.unique_analytics___platform__organization_segment_monthly_organization_month_id.2001427bc3": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_month_id", "model": "{{ get_where_subquery(ref('analytics___platform__organization_segment_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__organization_segment_monthly_organization_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__o_a3d81e57ff232edd230a0a6faf1ff52c.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.yml", "unique_id": "test.yoda.unique_analytics___platform__organization_segment_monthly_organization_month_id.2001427bc3", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_segment_monthly", "unique_analytics___platform__organization_segment_monthly_organization_month_id"], "alias": "unique_analytics___platform__o_a3d81e57ff232edd230a0a6faf1ff52c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__o_a3d81e57ff232edd230a0a6faf1ff52c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__o_a3d81e57ff232edd230a0a6faf1ff52c"}, "created_at": 1700082645.5398111, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__o_a3d81e57ff232edd230a0a6faf1ff52c\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_segment_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_segment_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.yml/unique_analytics___platform__o_a3d81e57ff232edd230a0a6faf1ff52c.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_month_id from dev_dkruh1.analytics___platform__organization_segment_monthly where organization_month_id is not null group by organization_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_month_id", "file_key_name": "models.analytics___platform__organization_segment_monthly", "attached_node": "model.yoda.analytics___platform__organization_segment_monthly"}, "test.yoda.not_null_analytics___platform__organization_segment_monthly_month.e976964b96": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___platform__organization_segment_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_segment_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__769e04bee090bb1ce80be7ab0f4367e3.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_segment_monthly_month.e976964b96", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_segment_monthly", "not_null_analytics___platform__organization_segment_monthly_month"], "alias": "not_null_analytics___platform__769e04bee090bb1ce80be7ab0f4367e3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__769e04bee090bb1ce80be7ab0f4367e3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__769e04bee090bb1ce80be7ab0f4367e3"}, "created_at": 1700082645.5462005, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__769e04bee090bb1ce80be7ab0f4367e3\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_segment_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_segment_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.yml/not_null_analytics___platform__769e04bee090bb1ce80be7ab0f4367e3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_segment_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___platform__organization_segment_monthly", "attached_node": "model.yoda.analytics___platform__organization_segment_monthly"}, "test.yoda.not_null_analytics___platform__organization_segment_monthly_organization_key.bf95891731": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform__organization_segment_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__organization_segment_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__d26b64b90309b705c8928224436f1ac3.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__organization_segment_monthly_organization_key.bf95891731", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_segment_monthly", "not_null_analytics___platform__organization_segment_monthly_organization_key"], "alias": "not_null_analytics___platform__d26b64b90309b705c8928224436f1ac3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__d26b64b90309b705c8928224436f1ac3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__d26b64b90309b705c8928224436f1ac3"}, "created_at": 1700082645.5520995, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__d26b64b90309b705c8928224436f1ac3\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_segment_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_segment_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.yml/not_null_analytics___platform__d26b64b90309b705c8928224436f1ac3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__organization_segment_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform__organization_segment_monthly", "attached_node": "model.yoda.analytics___platform__organization_segment_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_segment_monthly_1.4b62230dd7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__organization_segment_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_segment_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__89c071cf02a2c544cd55aa9f4894dff0.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_segment_monthly_1.4b62230dd7", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__organization_segment_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_segment_monthly_1"], "alias": "dbt_expectations_expect_table__89c071cf02a2c544cd55aa9f4894dff0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__89c071cf02a2c544cd55aa9f4894dff0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__89c071cf02a2c544cd55aa9f4894dff0"}, "created_at": 1700082645.5588253, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__89c071cf02a2c544cd55aa9f4894dff0\") }}", "language": "sql", "refs": [{"name": "analytics___platform__organization_segment_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__organization_segment_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.yml/dbt_expectations_expect_table__89c071cf02a2c544cd55aa9f4894dff0.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__organization_segment_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__organization_segment_monthly", "attached_node": "model.yoda.analytics___platform__organization_segment_monthly"}, "test.yoda.not_null_analytics___platform__owner_plan_event_owner_plan_event_id.01019086db": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_plan_event_id", "model": "{{ get_where_subquery(ref('analytics___platform__owner_plan_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__owner_plan_event_owner_plan_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__c6239e8b4f77a520ddc7510db5c5dcbb.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.yml", "unique_id": "test.yoda.not_null_analytics___platform__owner_plan_event_owner_plan_event_id.01019086db", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__owner_plan_event", "not_null_analytics___platform__owner_plan_event_owner_plan_event_id"], "alias": "not_null_analytics___platform__c6239e8b4f77a520ddc7510db5c5dcbb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__c6239e8b4f77a520ddc7510db5c5dcbb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__c6239e8b4f77a520ddc7510db5c5dcbb"}, "created_at": 1700082645.5915565, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__c6239e8b4f77a520ddc7510db5c5dcbb\") }}", "language": "sql", "refs": [{"name": "analytics___platform__owner_plan_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__owner_plan_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.yml/not_null_analytics___platform__c6239e8b4f77a520ddc7510db5c5dcbb.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__owner_plan_event where owner_plan_event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_plan_event_id", "file_key_name": "models.analytics___platform__owner_plan_event", "attached_node": "model.yoda.analytics___platform__owner_plan_event"}, "test.yoda.unique_analytics___platform__owner_plan_event_owner_plan_event_id.de5b2a3535": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "owner_plan_event_id", "model": "{{ get_where_subquery(ref('analytics___platform__owner_plan_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__owner_plan_event_owner_plan_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__o_9285a0d07d464e5ebe566d311159500d.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.yml", "unique_id": "test.yoda.unique_analytics___platform__owner_plan_event_owner_plan_event_id.de5b2a3535", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__owner_plan_event", "unique_analytics___platform__owner_plan_event_owner_plan_event_id"], "alias": "unique_analytics___platform__o_9285a0d07d464e5ebe566d311159500d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__o_9285a0d07d464e5ebe566d311159500d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__o_9285a0d07d464e5ebe566d311159500d"}, "created_at": 1700082645.5987504, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__o_9285a0d07d464e5ebe566d311159500d\") }}", "language": "sql", "refs": [{"name": "analytics___platform__owner_plan_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__owner_plan_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.yml/unique_analytics___platform__o_9285a0d07d464e5ebe566d311159500d.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select owner_plan_event_id from dev_dkruh1.analytics___platform__owner_plan_event where owner_plan_event_id is not null group by owner_plan_event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_plan_event_id", "file_key_name": "models.analytics___platform__owner_plan_event", "attached_node": "model.yoda.analytics___platform__owner_plan_event"}, "test.yoda.unique_analytics___platform__plan_plan_id.847d92374f": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___platform__plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__plan_plan_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__plan_plan_id.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.yml", "unique_id": "test.yoda.unique_analytics___platform__plan_plan_id.847d92374f", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__plan", "unique_analytics___platform__plan_plan_id"], "alias": "unique_analytics___platform__plan_plan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082645.6449125, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.yml/unique_analytics___platform__plan_plan_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select plan_id from dev_dkruh1.analytics___platform__plan where plan_id is not null group by plan_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___platform__plan", "attached_node": "model.yoda.analytics___platform__plan"}, "test.yoda.not_null_analytics___platform__plan_plan_id.371ae557dc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___platform__plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__plan_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__plan_plan_id.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.yml", "unique_id": "test.yoda.not_null_analytics___platform__plan_plan_id.371ae557dc", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__plan", "not_null_analytics___platform__plan_plan_id"], "alias": "not_null_analytics___platform__plan_plan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082645.650299, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.yml/not_null_analytics___platform__plan_plan_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__plan where plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___platform__plan", "attached_node": "model.yoda.analytics___platform__plan"}, "test.yoda.unique_analytics___platform__plan_plan_name.1954801371": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___platform__plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__plan_plan_name", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__plan_plan_name.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.yml", "unique_id": "test.yoda.unique_analytics___platform__plan_plan_name.1954801371", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__plan", "unique_analytics___platform__plan_plan_name"], "alias": "unique_analytics___platform__plan_plan_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082645.65663, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.yml/unique_analytics___platform__plan_plan_name.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select plan_name from dev_dkruh1.analytics___platform__plan where plan_name is not null group by plan_name having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___platform__plan", "attached_node": "model.yoda.analytics___platform__plan"}, "test.yoda.not_null_analytics___platform__plan_plan_name.8a9e42247d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___platform__plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__plan_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__plan_plan_name.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.yml", "unique_id": "test.yoda.not_null_analytics___platform__plan_plan_name.8a9e42247d", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__plan", "not_null_analytics___platform__plan_plan_name"], "alias": "not_null_analytics___platform__plan_plan_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082645.6627522, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.yml/not_null_analytics___platform__plan_plan_name.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__plan where plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___platform__plan", "attached_node": "model.yoda.analytics___platform__plan"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__plan_136.151f2294d9": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 136, "model": "{{ get_where_subquery(ref('analytics___platform__plan')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__plan_136", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bf6834253fbf6e2a56a5591de7710687.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__plan_136.151f2294d9", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__plan", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__plan_136"], "alias": "dbt_expectations_expect_table__bf6834253fbf6e2a56a5591de7710687", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bf6834253fbf6e2a56a5591de7710687", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bf6834253fbf6e2a56a5591de7710687"}, "created_at": 1700082645.668239, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bf6834253fbf6e2a56a5591de7710687\") }}", "language": "sql", "refs": [{"name": "analytics___platform__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.yml/dbt_expectations_expect_table__bf6834253fbf6e2a56a5591de7710687.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 136\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__plan\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__plan", "attached_node": "model.yoda.analytics___platform__plan"}, "test.yoda.not_null_analytics___platform__platform_store_plan_over_time_app_key.177425f8b0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__platform_store_plan_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__platform_store_plan_over_time_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__6299fe1a648bd1b0bcf2ece9a34f605a.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.yml", "unique_id": "test.yoda.not_null_analytics___platform__platform_store_plan_over_time_app_key.177425f8b0", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__platform_store_plan_over_time", "not_null_analytics___platform__platform_store_plan_over_time_app_key"], "alias": "not_null_analytics___platform__6299fe1a648bd1b0bcf2ece9a34f605a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__6299fe1a648bd1b0bcf2ece9a34f605a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__6299fe1a648bd1b0bcf2ece9a34f605a"}, "created_at": 1700082645.6975782, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__6299fe1a648bd1b0bcf2ece9a34f605a\") }}", "language": "sql", "refs": [{"name": "analytics___platform__platform_store_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__platform_store_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.yml/not_null_analytics___platform__6299fe1a648bd1b0bcf2ece9a34f605a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__platform_store_plan_over_time where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__platform_store_plan_over_time", "attached_node": "model.yoda.analytics___platform__platform_store_plan_over_time"}, "test.yoda.not_null_analytics___platform__platform_store_plan_over_time_plan_id.ad833f89ad": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___platform__platform_store_plan_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__platform_store_plan_over_time_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__b50f60d2df241b6a5ffd8a175e68ee31.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.yml", "unique_id": "test.yoda.not_null_analytics___platform__platform_store_plan_over_time_plan_id.ad833f89ad", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__platform_store_plan_over_time", "not_null_analytics___platform__platform_store_plan_over_time_plan_id"], "alias": "not_null_analytics___platform__b50f60d2df241b6a5ffd8a175e68ee31", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__b50f60d2df241b6a5ffd8a175e68ee31", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__b50f60d2df241b6a5ffd8a175e68ee31"}, "created_at": 1700082645.70354, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__b50f60d2df241b6a5ffd8a175e68ee31\") }}", "language": "sql", "refs": [{"name": "analytics___platform__platform_store_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__platform_store_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.yml/not_null_analytics___platform__b50f60d2df241b6a5ffd8a175e68ee31.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__platform_store_plan_over_time where plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___platform__platform_store_plan_over_time", "attached_node": "model.yoda.analytics___platform__platform_store_plan_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__platform_store_plan_over_time_1.23464fb1d5": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__platform_store_plan_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__platform_store_plan_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__cf2ded515ee5b723efe093577c9be05b.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__platform_store_plan_over_time_1.23464fb1d5", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__platform_store_plan_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__platform_store_plan_over_time_1"], "alias": "dbt_expectations_expect_table__cf2ded515ee5b723efe093577c9be05b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__cf2ded515ee5b723efe093577c9be05b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__cf2ded515ee5b723efe093577c9be05b"}, "created_at": 1700082645.7096627, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__cf2ded515ee5b723efe093577c9be05b\") }}", "language": "sql", "refs": [{"name": "analytics___platform__platform_store_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__platform_store_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.yml/dbt_expectations_expect_table__cf2ded515ee5b723efe093577c9be05b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__platform_store_plan_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__platform_store_plan_over_time", "attached_node": "model.yoda.analytics___platform__platform_store_plan_over_time"}, "test.yoda.unique_analytics___platform__product_metrics_snapshot_monthly_External_ID__c.a9e63d25dc": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "External_ID__c", "model": "{{ get_where_subquery(ref('analytics___platform__product_metrics_snapshot_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__product_metrics_snapshot_monthly_External_ID__c", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__p_da2088abd9abf74c9efd15f754af86e0.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.yml", "unique_id": "test.yoda.unique_analytics___platform__product_metrics_snapshot_monthly_External_ID__c.a9e63d25dc", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__product_metrics_snapshot_monthly", "unique_analytics___platform__product_metrics_snapshot_monthly_External_ID__c"], "alias": "unique_analytics___platform__p_da2088abd9abf74c9efd15f754af86e0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__p_da2088abd9abf74c9efd15f754af86e0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__p_da2088abd9abf74c9efd15f754af86e0"}, "created_at": 1700082645.737158, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__p_da2088abd9abf74c9efd15f754af86e0\") }}", "language": "sql", "refs": [{"name": "analytics___platform__product_metrics_snapshot_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__product_metrics_snapshot_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.yml/unique_analytics___platform__p_da2088abd9abf74c9efd15f754af86e0.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select External_ID__c from dev_dkruh1.analytics___platform__product_metrics_snapshot_monthly where External_ID__c is not null group by External_ID__c having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "External_ID__c", "file_key_name": "models.analytics___platform__product_metrics_snapshot_monthly", "attached_node": "model.yoda.analytics___platform__product_metrics_snapshot_monthly"}, "test.yoda.not_null_analytics___platform__product_metrics_snapshot_monthly_External_ID__c.585116ff41": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "External_ID__c", "model": "{{ get_where_subquery(ref('analytics___platform__product_metrics_snapshot_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__product_metrics_snapshot_monthly_External_ID__c", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__280240bca77bd84d6153957d3acc43ac.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__product_metrics_snapshot_monthly_External_ID__c.585116ff41", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__product_metrics_snapshot_monthly", "not_null_analytics___platform__product_metrics_snapshot_monthly_External_ID__c"], "alias": "not_null_analytics___platform__280240bca77bd84d6153957d3acc43ac", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__280240bca77bd84d6153957d3acc43ac", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__280240bca77bd84d6153957d3acc43ac"}, "created_at": 1700082645.7462451, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__280240bca77bd84d6153957d3acc43ac\") }}", "language": "sql", "refs": [{"name": "analytics___platform__product_metrics_snapshot_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__product_metrics_snapshot_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.yml/not_null_analytics___platform__280240bca77bd84d6153957d3acc43ac.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__product_metrics_snapshot_monthly where External_ID__c is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "External_ID__c", "file_key_name": "models.analytics___platform__product_metrics_snapshot_monthly", "attached_node": "model.yoda.analytics___platform__product_metrics_snapshot_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__product_metrics_snapshot_monthly_1.5eed07b015": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__product_metrics_snapshot_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__product_metrics_snapshot_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__68064219be1007cdb7792429c382cb4c.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__product_metrics_snapshot_monthly_1.5eed07b015", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__product_metrics_snapshot_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__product_metrics_snapshot_monthly_1"], "alias": "dbt_expectations_expect_table__68064219be1007cdb7792429c382cb4c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__68064219be1007cdb7792429c382cb4c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__68064219be1007cdb7792429c382cb4c"}, "created_at": 1700082645.753092, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__68064219be1007cdb7792429c382cb4c\") }}", "language": "sql", "refs": [{"name": "analytics___platform__product_metrics_snapshot_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__product_metrics_snapshot_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.yml/dbt_expectations_expect_table__68064219be1007cdb7792429c382cb4c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__product_metrics_snapshot_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__product_metrics_snapshot_monthly", "attached_node": "model.yoda.analytics___platform__product_metrics_snapshot_monthly"}, "test.yoda.unique_analytics___platform__question_details_question_id.81f0b8baca": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "question_id", "model": "{{ get_where_subquery(ref('analytics___platform__question_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__question_details_question_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__question_details_question_id.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.yml", "unique_id": "test.yoda.unique_analytics___platform__question_details_question_id.81f0b8baca", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__question_details", "unique_analytics___platform__question_details_question_id"], "alias": "unique_analytics___platform__question_details_question_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082645.7794857, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__question_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__question_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.yml/unique_analytics___platform__question_details_question_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select question_id from dev_dkruh1.analytics___platform__question_details where question_id is not null group by question_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "question_id", "file_key_name": "models.analytics___platform__question_details", "attached_node": "model.yoda.analytics___platform__question_details"}, "test.yoda.not_null_analytics___platform__question_details_question_id.7eeb34c756": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "question_id", "model": "{{ get_where_subquery(ref('analytics___platform__question_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__question_details_question_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__question_details_question_id.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.yml", "unique_id": "test.yoda.not_null_analytics___platform__question_details_question_id.7eeb34c756", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__question_details", "not_null_analytics___platform__question_details_question_id"], "alias": "not_null_analytics___platform__question_details_question_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082645.7850568, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__question_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__question_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.yml/not_null_analytics___platform__question_details_question_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__question_details where question_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "question_id", "file_key_name": "models.analytics___platform__question_details", "attached_node": "model.yoda.analytics___platform__question_details"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__question_details_1.a6b18f602a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__question_details')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__question_details_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__879b95b02f0fdd7ebcb579cfbe392a9a.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__question_details_1.a6b18f602a", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__question_details", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__question_details_1"], "alias": "dbt_expectations_expect_table__879b95b02f0fdd7ebcb579cfbe392a9a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__879b95b02f0fdd7ebcb579cfbe392a9a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__879b95b02f0fdd7ebcb579cfbe392a9a"}, "created_at": 1700082645.790353, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__879b95b02f0fdd7ebcb579cfbe392a9a\") }}", "language": "sql", "refs": [{"name": "analytics___platform__question_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__question_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.yml/dbt_expectations_expect_table__879b95b02f0fdd7ebcb579cfbe392a9a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__question_details\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__question_details", "attached_node": "model.yoda.analytics___platform__question_details"}, "test.yoda.unique_analytics___platform__store_store_id.0426a49173": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('analytics___platform__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__store_store_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__store_store_id.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.yml", "unique_id": "test.yoda.unique_analytics___platform__store_store_id.0426a49173", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store", "unique_analytics___platform__store_store_id"], "alias": "unique_analytics___platform__store_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082645.8257399, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.yml/unique_analytics___platform__store_store_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select store_id from dev_dkruh1.analytics___platform__store where store_id is not null group by store_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.analytics___platform__store", "attached_node": "model.yoda.analytics___platform__store"}, "test.yoda.not_null_analytics___platform__store_store_id.ecc8e3c660": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('analytics___platform__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_store_id.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_store_id.ecc8e3c660", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store", "not_null_analytics___platform__store_store_id"], "alias": "not_null_analytics___platform__store_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082645.8312685, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.yml/not_null_analytics___platform__store_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.analytics___platform__store", "attached_node": "model.yoda.analytics___platform__store"}, "test.yoda.unique_analytics___platform__store_app_key.b5ba5fcea0": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__store_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__store_app_key.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.yml", "unique_id": "test.yoda.unique_analytics___platform__store_app_key.b5ba5fcea0", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store", "unique_analytics___platform__store_app_key"], "alias": "unique_analytics___platform__store_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082645.8368742, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.yml/unique_analytics___platform__store_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___platform__store where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store", "attached_node": "model.yoda.analytics___platform__store"}, "test.yoda.not_null_analytics___platform__store_app_key.d695626fbb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_app_key.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_app_key.d695626fbb", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store", "not_null_analytics___platform__store_app_key"], "alias": "not_null_analytics___platform__store_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082645.8428433, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.yml/not_null_analytics___platform__store_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store", "attached_node": "model.yoda.analytics___platform__store"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_1.38d9ed28fd": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f49ac2c9ce850da6790cdab0fdb76e1f.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_1.38d9ed28fd", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_1"], "alias": "dbt_expectations_expect_table__f49ac2c9ce850da6790cdab0fdb76e1f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f49ac2c9ce850da6790cdab0fdb76e1f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f49ac2c9ce850da6790cdab0fdb76e1f"}, "created_at": 1700082645.8488064, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f49ac2c9ce850da6790cdab0fdb76e1f\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.yml/dbt_expectations_expect_table__f49ac2c9ce850da6790cdab0fdb76e1f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store", "attached_node": "model.yoda.analytics___platform__store"}, "test.yoda.not_null_analytics___platform__store_activeness_daily_activeness_date.6e962034a9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activeness_date", "model": "{{ get_where_subquery(ref('analytics___platform__store_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_activeness_daily_activeness_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__9aeedec0420bbbadcd9f90605913c610.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_activeness_daily_activeness_date.6e962034a9", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_activeness_daily", "not_null_analytics___platform__store_activeness_daily_activeness_date"], "alias": "not_null_analytics___platform__9aeedec0420bbbadcd9f90605913c610", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__9aeedec0420bbbadcd9f90605913c610", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__9aeedec0420bbbadcd9f90605913c610"}, "created_at": 1700082645.8775432, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__9aeedec0420bbbadcd9f90605913c610\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.yml/not_null_analytics___platform__9aeedec0420bbbadcd9f90605913c610.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_activeness_daily where activeness_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "activeness_date", "file_key_name": "models.analytics___platform__store_activeness_daily", "attached_node": "model.yoda.analytics___platform__store_activeness_daily"}, "test.yoda.not_null_analytics___platform__store_activeness_daily_app_key.1dd234b604": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_activeness_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_activeness_daily_app_key.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_activeness_daily_app_key.1dd234b604", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_activeness_daily", "not_null_analytics___platform__store_activeness_daily_app_key"], "alias": "not_null_analytics___platform__store_activeness_daily_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082645.883389, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.yml/not_null_analytics___platform__store_activeness_daily_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_activeness_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store_activeness_daily", "attached_node": "model.yoda.analytics___platform__store_activeness_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_activeness_daily_1.6a3c8092ee": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_activeness_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_activeness_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2a687bc0e1998cf386d4ad6fab90decd.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_activeness_daily_1.6a3c8092ee", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_activeness_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_activeness_daily_1"], "alias": "dbt_expectations_expect_table__2a687bc0e1998cf386d4ad6fab90decd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2a687bc0e1998cf386d4ad6fab90decd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2a687bc0e1998cf386d4ad6fab90decd"}, "created_at": 1700082645.8891711, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2a687bc0e1998cf386d4ad6fab90decd\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.yml/dbt_expectations_expect_table__2a687bc0e1998cf386d4ad6fab90decd.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_activeness_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_activeness_daily", "attached_node": "model.yoda.analytics___platform__store_activeness_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_activeness_daily_activeness_date__app_key.1e53577791": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["activeness_date", "app_key"], "model": "{{ get_where_subquery(ref('analytics___platform__store_activeness_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_activeness_daily_activeness_date__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_9a494cfac86987580448b287c224d35c.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_activeness_daily_activeness_date__app_key.1e53577791", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_activeness_daily", "dbt_utils_unique_combination_of_columns_analytics___platform__store_activeness_daily_activeness_date__app_key"], "alias": "dbt_utils_unique_combination_o_9a494cfac86987580448b287c224d35c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_9a494cfac86987580448b287c224d35c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_9a494cfac86987580448b287c224d35c"}, "created_at": 1700082645.8958735, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_9a494cfac86987580448b287c224d35c\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.yml/dbt_utils_unique_combination_o_9a494cfac86987580448b287c224d35c.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n activeness_date, app_key\n from dev_dkruh1.analytics___platform__store_activeness_daily\n group by activeness_date, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_activeness_daily", "attached_node": "model.yoda.analytics___platform__store_activeness_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_dynamic_date_explode_from_creation_1.5dcbc7417f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_dynamic_date_explode_from_creation')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_dynamic_date_explode_from_creation_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f6a70deb49d9df8df4f84abea7e055bf.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_dynamic_date_explode_from_creation_1.5dcbc7417f", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_dynamic_date_explode_from_creation", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_dynamic_date_explode_from_creation_1"], "alias": "dbt_expectations_expect_table__f6a70deb49d9df8df4f84abea7e055bf", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f6a70deb49d9df8df4f84abea7e055bf", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f6a70deb49d9df8df4f84abea7e055bf"}, "created_at": 1700082645.918619, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f6a70deb49d9df8df4f84abea7e055bf\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_dynamic_date_explode_from_creation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_dynamic_date_explode_from_creation"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.yml/dbt_expectations_expect_table__f6a70deb49d9df8df4f84abea7e055bf.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_dynamic_date_explode_from_creation\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_dynamic_date_explode_from_creation", "attached_node": "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_dynamic_date_explode_from_creation_app_key__date.57c6fdfe71": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "date"], "model": "{{ get_where_subquery(ref('analytics___platform__store_dynamic_date_explode_from_creation')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_dynamic_date_explode_from_creation_app_key__date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_920d5172ffd35bc305f16fad253c8d47.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_dynamic_date_explode_from_creation_app_key__date.57c6fdfe71", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_dynamic_date_explode_from_creation", "dbt_utils_unique_combination_of_columns_analytics___platform__store_dynamic_date_explode_from_creation_app_key__date"], "alias": "dbt_utils_unique_combination_o_920d5172ffd35bc305f16fad253c8d47", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_920d5172ffd35bc305f16fad253c8d47", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_920d5172ffd35bc305f16fad253c8d47"}, "created_at": 1700082645.9252665, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_920d5172ffd35bc305f16fad253c8d47\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_dynamic_date_explode_from_creation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_dynamic_date_explode_from_creation"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.yml/dbt_utils_unique_combination_o_920d5172ffd35bc305f16fad253c8d47.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, date\n from dev_dkruh1.analytics___platform__store_dynamic_date_explode_from_creation\n group by app_key, date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_dynamic_date_explode_from_creation", "attached_node": "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation"}, "test.yoda.not_null_analytics___platform__store_metrics_daily_date.b36227f573": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___platform__store_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_metrics_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_metrics_daily_date.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_metrics_daily_date.b36227f573", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_metrics_daily", "not_null_analytics___platform__store_metrics_daily_date"], "alias": "not_null_analytics___platform__store_metrics_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082645.961872, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.yml/not_null_analytics___platform__store_metrics_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_metrics_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___platform__store_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_metrics_daily_app_key.afe4bc534c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_metrics_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_metrics_daily_app_key.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_metrics_daily_app_key.afe4bc534c", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_metrics_daily", "not_null_analytics___platform__store_metrics_daily_app_key"], "alias": "not_null_analytics___platform__store_metrics_daily_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082645.9683177, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.yml/not_null_analytics___platform__store_metrics_daily_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_metrics_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_metrics_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_daily_1.ed2941830e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_metrics_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__aafe701f14dd8ae270992115408116b9.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_daily_1.ed2941830e", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_metrics_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_daily_1"], "alias": "dbt_expectations_expect_table__aafe701f14dd8ae270992115408116b9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__aafe701f14dd8ae270992115408116b9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__aafe701f14dd8ae270992115408116b9"}, "created_at": 1700082645.974196, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__aafe701f14dd8ae270992115408116b9\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.yml/dbt_expectations_expect_table__aafe701f14dd8ae270992115408116b9.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_metrics_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_metrics_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_daily_app_key__date.c8c9425fd7": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "date"], "model": "{{ get_where_subquery(ref('analytics___platform__store_metrics_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_daily_app_key__date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_5e7d663a38d754529edb08fb5747d849.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_daily_app_key__date.c8c9425fd7", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_metrics_daily", "dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_daily_app_key__date"], "alias": "dbt_utils_unique_combination_o_5e7d663a38d754529edb08fb5747d849", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_5e7d663a38d754529edb08fb5747d849", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_5e7d663a38d754529edb08fb5747d849"}, "created_at": 1700082645.980585, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_5e7d663a38d754529edb08fb5747d849\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.yml/dbt_utils_unique_combination_o_5e7d663a38d754529edb08fb5747d849.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, date\n from dev_dkruh1.analytics___platform__store_metrics_daily\n group by app_key, date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_metrics_monthly_month.a277f9834d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___platform__store_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_metrics_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_metrics_monthly_month.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_metrics_monthly_month.a277f9834d", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_metrics_monthly", "not_null_analytics___platform__store_metrics_monthly_month"], "alias": "not_null_analytics___platform__store_metrics_monthly_month", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.0277274, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.yml/not_null_analytics___platform__store_metrics_monthly_month.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_metrics_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___platform__store_metrics_monthly", "attached_node": "model.yoda.analytics___platform__store_metrics_monthly"}, "test.yoda.not_null_analytics___platform__store_metrics_monthly_app_key.df1b910fe3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_metrics_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_metrics_monthly_app_key.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_metrics_monthly_app_key.df1b910fe3", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_metrics_monthly", "not_null_analytics___platform__store_metrics_monthly_app_key"], "alias": "not_null_analytics___platform__store_metrics_monthly_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.0333319, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.yml/not_null_analytics___platform__store_metrics_monthly_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_metrics_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store_metrics_monthly", "attached_node": "model.yoda.analytics___platform__store_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_monthly_1.6d126cab16": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__eaee39ddb80cbab6f3d46dbb239bcbba.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_monthly_1.6d126cab16", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__eaee39ddb80cbab6f3d46dbb239bcbba", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__eaee39ddb80cbab6f3d46dbb239bcbba", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__eaee39ddb80cbab6f3d46dbb239bcbba"}, "created_at": 1700082646.0391335, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__eaee39ddb80cbab6f3d46dbb239bcbba\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.yml/dbt_expectations_expect_table__eaee39ddb80cbab6f3d46dbb239bcbba.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_metrics_monthly", "attached_node": "model.yoda.analytics___platform__store_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_monthly_app_key__month.62e6c6c869": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "month"], "model": "{{ get_where_subquery(ref('analytics___platform__store_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_monthly_app_key__month", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_ce0b2656310352ce80507ee701f38280.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_monthly_app_key__month.62e6c6c869", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_monthly_app_key__month"], "alias": "dbt_utils_unique_combination_o_ce0b2656310352ce80507ee701f38280", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ce0b2656310352ce80507ee701f38280", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ce0b2656310352ce80507ee701f38280"}, "created_at": 1700082646.0454109, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ce0b2656310352ce80507ee701f38280\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.yml/dbt_utils_unique_combination_o_ce0b2656310352ce80507ee701f38280.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, month\n from dev_dkruh1.analytics___platform__store_metrics_monthly\n group by app_key, month\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_metrics_monthly", "attached_node": "model.yoda.analytics___platform__store_metrics_monthly"}, "test.yoda.not_null_analytics___platform__store_order_daily_app_key.ae84f8cb42": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store_order_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_order_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_order_daily_app_key.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_order_daily_app_key.ae84f8cb42", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_order_daily", "not_null_analytics___platform__store_order_daily_app_key"], "alias": "not_null_analytics___platform__store_order_daily_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.0722454, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_order_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_order_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.yml/not_null_analytics___platform__store_order_daily_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_order_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store_order_daily", "attached_node": "model.yoda.analytics___platform__store_order_daily"}, "test.yoda.not_null_analytics___platform__store_order_daily_order_date.58413ae3f9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_date", "model": "{{ get_where_subquery(ref('analytics___platform__store_order_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_order_daily_order_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_order_daily_order_date.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_order_daily_order_date.58413ae3f9", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_order_daily", "not_null_analytics___platform__store_order_daily_order_date"], "alias": "not_null_analytics___platform__store_order_daily_order_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.0778115, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_order_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_order_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.yml/not_null_analytics___platform__store_order_daily_order_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_order_daily where order_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_date", "file_key_name": "models.analytics___platform__store_order_daily", "attached_node": "model.yoda.analytics___platform__store_order_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_order_daily_1.5d34dd0e73": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_order_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_order_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__dbe54a95c3d8f4a6e5262eaf6ca6faee.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_order_daily_1.5d34dd0e73", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_order_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_order_daily_1"], "alias": "dbt_expectations_expect_table__dbe54a95c3d8f4a6e5262eaf6ca6faee", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__dbe54a95c3d8f4a6e5262eaf6ca6faee", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__dbe54a95c3d8f4a6e5262eaf6ca6faee"}, "created_at": 1700082646.0850556, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__dbe54a95c3d8f4a6e5262eaf6ca6faee\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_order_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_order_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.yml/dbt_expectations_expect_table__dbe54a95c3d8f4a6e5262eaf6ca6faee.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_order_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_order_daily", "attached_node": "model.yoda.analytics___platform__store_order_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_order_daily_app_key__order_date.9e299c0e3f": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "order_date"], "model": "{{ get_where_subquery(ref('analytics___platform__store_order_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_order_daily_app_key__order_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_592a0c92c32d1cd3f6e7288b019cc6ed.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_order_daily_app_key__order_date.9e299c0e3f", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_order_daily", "dbt_utils_unique_combination_of_columns_analytics___platform__store_order_daily_app_key__order_date"], "alias": "dbt_utils_unique_combination_o_592a0c92c32d1cd3f6e7288b019cc6ed", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_592a0c92c32d1cd3f6e7288b019cc6ed", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_592a0c92c32d1cd3f6e7288b019cc6ed"}, "created_at": 1700082646.0913868, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_592a0c92c32d1cd3f6e7288b019cc6ed\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_order_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_order_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.yml/dbt_utils_unique_combination_o_592a0c92c32d1cd3f6e7288b019cc6ed.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, order_date\n from dev_dkruh1.analytics___platform__store_order_daily\n group by app_key, order_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_order_daily", "attached_node": "model.yoda.analytics___platform__store_order_daily"}, "test.yoda.unique_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id.1546e1b398": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "pixel_metrics_id", "model": "{{ get_where_subquery(ref('analytics___platform__store_pixel_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__s_8568a0301623842ecb0df8758a124eab.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml", "unique_id": "test.yoda.unique_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id.1546e1b398", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_pixel_metrics_daily", "unique_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id"], "alias": "unique_analytics___platform__s_8568a0301623842ecb0df8758a124eab", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__s_8568a0301623842ecb0df8758a124eab", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__s_8568a0301623842ecb0df8758a124eab"}, "created_at": 1700082646.1191556, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__s_8568a0301623842ecb0df8758a124eab\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_pixel_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml/unique_analytics___platform__s_8568a0301623842ecb0df8758a124eab.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select pixel_metrics_id from dev_dkruh1.analytics___platform__store_pixel_metrics_daily where pixel_metrics_id is not null group by pixel_metrics_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "pixel_metrics_id", "file_key_name": "models.analytics___platform__store_pixel_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_pixel_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id.36a24ed399": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "pixel_metrics_id", "model": "{{ get_where_subquery(ref('analytics___platform__store_pixel_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__0d6aa72b9e0b1d7e9367dcac8a6a614c.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id.36a24ed399", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_pixel_metrics_daily", "not_null_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id"], "alias": "not_null_analytics___platform__0d6aa72b9e0b1d7e9367dcac8a6a614c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__0d6aa72b9e0b1d7e9367dcac8a6a614c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__0d6aa72b9e0b1d7e9367dcac8a6a614c"}, "created_at": 1700082646.125042, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__0d6aa72b9e0b1d7e9367dcac8a6a614c\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_pixel_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml/not_null_analytics___platform__0d6aa72b9e0b1d7e9367dcac8a6a614c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_pixel_metrics_daily where pixel_metrics_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "pixel_metrics_id", "file_key_name": "models.analytics___platform__store_pixel_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_pixel_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_product_name.923005d0f4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_name", "model": "{{ get_where_subquery(ref('analytics___platform__store_pixel_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_pixel_metrics_daily_product_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__d12c5ed2878cf4c54a8a8cdda803f590.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_product_name.923005d0f4", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_pixel_metrics_daily", "not_null_analytics___platform__store_pixel_metrics_daily_product_name"], "alias": "not_null_analytics___platform__d12c5ed2878cf4c54a8a8cdda803f590", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__d12c5ed2878cf4c54a8a8cdda803f590", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__d12c5ed2878cf4c54a8a8cdda803f590"}, "created_at": 1700082646.1311936, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__d12c5ed2878cf4c54a8a8cdda803f590\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_pixel_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml/not_null_analytics___platform__d12c5ed2878cf4c54a8a8cdda803f590.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_pixel_metrics_daily where product_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_name", "file_key_name": "models.analytics___platform__store_pixel_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_pixel_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_date.3ff71c11db": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___platform__store_pixel_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_pixel_metrics_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_pixel_metrics_daily_date.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_date.3ff71c11db", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_pixel_metrics_daily", "not_null_analytics___platform__store_pixel_metrics_daily_date"], "alias": "not_null_analytics___platform__store_pixel_metrics_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.137207, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_pixel_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml/not_null_analytics___platform__store_pixel_metrics_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_pixel_metrics_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___platform__store_pixel_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_pixel_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_widget_version_type.dd3a6bb618": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "widget_version_type", "model": "{{ get_where_subquery(ref('analytics___platform__store_pixel_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_pixel_metrics_daily_widget_version_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__7d95fb7371f53c6edac3d7e3f1503d31.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_widget_version_type.dd3a6bb618", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_pixel_metrics_daily", "not_null_analytics___platform__store_pixel_metrics_daily_widget_version_type"], "alias": "not_null_analytics___platform__7d95fb7371f53c6edac3d7e3f1503d31", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__7d95fb7371f53c6edac3d7e3f1503d31", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__7d95fb7371f53c6edac3d7e3f1503d31"}, "created_at": 1700082646.142849, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__7d95fb7371f53c6edac3d7e3f1503d31\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_pixel_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml/not_null_analytics___platform__7d95fb7371f53c6edac3d7e3f1503d31.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_pixel_metrics_daily where widget_version_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_version_type", "file_key_name": "models.analytics___platform__store_pixel_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_pixel_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_action.7a5f3e7fa2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action", "model": "{{ get_where_subquery(ref('analytics___platform__store_pixel_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_pixel_metrics_daily_action", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_pixel_metrics_daily_action.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_action.7a5f3e7fa2", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_pixel_metrics_daily", "not_null_analytics___platform__store_pixel_metrics_daily_action"], "alias": "not_null_analytics___platform__store_pixel_metrics_daily_action", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.1483545, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_pixel_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml/not_null_analytics___platform__store_pixel_metrics_daily_action.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_pixel_metrics_daily where action is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action", "file_key_name": "models.analytics___platform__store_pixel_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_pixel_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_widget_element.32dd729a77": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "widget_element", "model": "{{ get_where_subquery(ref('analytics___platform__store_pixel_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_pixel_metrics_daily_widget_element", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__70262318ee8b368a512caa3ab488f5ff.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_widget_element.32dd729a77", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_pixel_metrics_daily", "not_null_analytics___platform__store_pixel_metrics_daily_widget_element"], "alias": "not_null_analytics___platform__70262318ee8b368a512caa3ab488f5ff", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__70262318ee8b368a512caa3ab488f5ff", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__70262318ee8b368a512caa3ab488f5ff"}, "created_at": 1700082646.154643, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__70262318ee8b368a512caa3ab488f5ff\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_pixel_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml/not_null_analytics___platform__70262318ee8b368a512caa3ab488f5ff.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_pixel_metrics_daily where widget_element is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_element", "file_key_name": "models.analytics___platform__store_pixel_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_pixel_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_metric.25c0621826": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "metric", "model": "{{ get_where_subquery(ref('analytics___platform__store_pixel_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_pixel_metrics_daily_metric", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_pixel_metrics_daily_metric.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_metric.25c0621826", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_pixel_metrics_daily", "not_null_analytics___platform__store_pixel_metrics_daily_metric"], "alias": "not_null_analytics___platform__store_pixel_metrics_daily_metric", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.1628013, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_pixel_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.yml/not_null_analytics___platform__store_pixel_metrics_daily_metric.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_pixel_metrics_daily where metric is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metric", "file_key_name": "models.analytics___platform__store_pixel_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_pixel_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_plan_daily_date.e6e44353da": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___platform__store_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_plan_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_plan_daily_date.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_plan_daily_date.e6e44353da", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_plan_daily", "not_null_analytics___platform__store_plan_daily_date"], "alias": "not_null_analytics___platform__store_plan_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.1974165, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml/not_null_analytics___platform__store_plan_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_plan_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___platform__store_plan_daily", "attached_node": "model.yoda.analytics___platform__store_plan_daily"}, "test.yoda.not_null_analytics___platform__store_plan_daily_app_key.28cc4bbaa2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_plan_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_plan_daily_app_key.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_plan_daily_app_key.28cc4bbaa2", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_plan_daily", "not_null_analytics___platform__store_plan_daily_app_key"], "alias": "not_null_analytics___platform__store_plan_daily_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.2039275, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml/not_null_analytics___platform__store_plan_daily_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_plan_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store_plan_daily", "attached_node": "model.yoda.analytics___platform__store_plan_daily"}, "test.yoda.not_null_analytics___platform__store_plan_daily_product_family.56de4b757b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_family", "model": "{{ get_where_subquery(ref('analytics___platform__store_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_plan_daily_product_family", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_plan_daily_product_family.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_plan_daily_product_family.56de4b757b", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_plan_daily", "not_null_analytics___platform__store_plan_daily_product_family"], "alias": "not_null_analytics___platform__store_plan_daily_product_family", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.2108169, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml/not_null_analytics___platform__store_plan_daily_product_family.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_plan_daily where product_family is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_family", "file_key_name": "models.analytics___platform__store_plan_daily", "attached_node": "model.yoda.analytics___platform__store_plan_daily"}, "test.yoda.not_null_analytics___platform__store_plan_daily_plan_id.ff727864a1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___platform__store_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_plan_daily_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_plan_daily_plan_id.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_plan_daily_plan_id.ff727864a1", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_plan_daily", "not_null_analytics___platform__store_plan_daily_plan_id"], "alias": "not_null_analytics___platform__store_plan_daily_plan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.2164063, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml/not_null_analytics___platform__store_plan_daily_plan_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_plan_daily where plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___platform__store_plan_daily", "attached_node": "model.yoda.analytics___platform__store_plan_daily"}, "test.yoda.not_null_analytics___platform__store_plan_daily_plan_name.fa04377d11": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___platform__store_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_plan_daily_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__store_plan_daily_plan_name.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_plan_daily_plan_name.fa04377d11", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_plan_daily", "not_null_analytics___platform__store_plan_daily_plan_name"], "alias": "not_null_analytics___platform__store_plan_daily_plan_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082646.2225103, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml/not_null_analytics___platform__store_plan_daily_plan_name.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_plan_daily where plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___platform__store_plan_daily", "attached_node": "model.yoda.analytics___platform__store_plan_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_plan_daily_1.66ddbd73c2": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_plan_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_plan_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4d44856d9fe59a75c2213487742281d1.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_plan_daily_1.66ddbd73c2", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_plan_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_plan_daily_1"], "alias": "dbt_expectations_expect_table__4d44856d9fe59a75c2213487742281d1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4d44856d9fe59a75c2213487742281d1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4d44856d9fe59a75c2213487742281d1"}, "created_at": 1700082646.2286408, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4d44856d9fe59a75c2213487742281d1\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml/dbt_expectations_expect_table__4d44856d9fe59a75c2213487742281d1.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_plan_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_plan_daily", "attached_node": "model.yoda.analytics___platform__store_plan_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_plan_daily_date__app_key__product_family.f5230bd448": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "app_key", "product_family"], "model": "{{ get_where_subquery(ref('analytics___platform__store_plan_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_plan_daily_date__app_key__product_family", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_de7ca9909a3fdaf896d8b7e835bcc4c9.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_plan_daily_date__app_key__product_family.f5230bd448", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_plan_daily", "dbt_utils_unique_combination_of_columns_analytics___platform__store_plan_daily_date__app_key__product_family"], "alias": "dbt_utils_unique_combination_o_de7ca9909a3fdaf896d8b7e835bcc4c9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_de7ca9909a3fdaf896d8b7e835bcc4c9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_de7ca9909a3fdaf896d8b7e835bcc4c9"}, "created_at": 1700082646.2360575, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_de7ca9909a3fdaf896d8b7e835bcc4c9\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.yml/dbt_utils_unique_combination_o_de7ca9909a3fdaf896d8b7e835bcc4c9.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, app_key, product_family\n from dev_dkruh1.analytics___platform__store_plan_daily\n group by date, app_key, product_family\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_plan_daily", "attached_node": "model.yoda.analytics___platform__store_plan_daily"}, "test.yoda.unique_analytics___platform__store_platform_account_account_platform_id.9361df1781": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "account_platform_id", "model": "{{ get_where_subquery(ref('analytics___platform__store_platform_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__store_platform_account_account_platform_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__s_aa354c75425d82a130075497ef61009b.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.yml", "unique_id": "test.yoda.unique_analytics___platform__store_platform_account_account_platform_id.9361df1781", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_platform_account", "unique_analytics___platform__store_platform_account_account_platform_id"], "alias": "unique_analytics___platform__s_aa354c75425d82a130075497ef61009b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__s_aa354c75425d82a130075497ef61009b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__s_aa354c75425d82a130075497ef61009b"}, "created_at": 1700082646.2648706, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__s_aa354c75425d82a130075497ef61009b\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_platform_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_platform_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.yml/unique_analytics___platform__s_aa354c75425d82a130075497ef61009b.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select account_platform_id from dev_dkruh1.analytics___platform__store_platform_account where account_platform_id is not null group by account_platform_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_platform_id", "file_key_name": "models.analytics___platform__store_platform_account", "attached_node": "model.yoda.analytics___platform__store_platform_account"}, "test.yoda.not_null_analytics___platform__store_platform_account_account_platform_id.de81df4132": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_platform_id", "model": "{{ get_where_subquery(ref('analytics___platform__store_platform_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_platform_account_account_platform_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__f29e9dd0032673059aea99381caa36e6.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_platform_account_account_platform_id.de81df4132", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_platform_account", "not_null_analytics___platform__store_platform_account_account_platform_id"], "alias": "not_null_analytics___platform__f29e9dd0032673059aea99381caa36e6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__f29e9dd0032673059aea99381caa36e6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__f29e9dd0032673059aea99381caa36e6"}, "created_at": 1700082646.2709885, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__f29e9dd0032673059aea99381caa36e6\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_platform_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_platform_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.yml/not_null_analytics___platform__f29e9dd0032673059aea99381caa36e6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_platform_account where account_platform_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_platform_id", "file_key_name": "models.analytics___platform__store_platform_account", "attached_node": "model.yoda.analytics___platform__store_platform_account"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_platform_account_1.34775c1634": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_platform_account')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_platform_account_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f2c428dc97bef1eb9c037cbbc98e7335.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_platform_account_1.34775c1634", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_platform_account", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_platform_account_1"], "alias": "dbt_expectations_expect_table__f2c428dc97bef1eb9c037cbbc98e7335", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f2c428dc97bef1eb9c037cbbc98e7335", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f2c428dc97bef1eb9c037cbbc98e7335"}, "created_at": 1700082646.2769148, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f2c428dc97bef1eb9c037cbbc98e7335\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_platform_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_platform_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.yml/dbt_expectations_expect_table__f2c428dc97bef1eb9c037cbbc98e7335.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_platform_account\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_platform_account", "attached_node": "model.yoda.analytics___platform__store_platform_account"}, "test.yoda.not_null_analytics___platform__store_product_activeness_monthly_activeness_month.432728e5db": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activeness_month", "model": "{{ get_where_subquery(ref('analytics___platform__store_product_activeness_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_product_activeness_monthly_activeness_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__1a4c7304207d34f198b583e367ea7ad9.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_product_activeness_monthly_activeness_month.432728e5db", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_activeness_monthly", "not_null_analytics___platform__store_product_activeness_monthly_activeness_month"], "alias": "not_null_analytics___platform__1a4c7304207d34f198b583e367ea7ad9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__1a4c7304207d34f198b583e367ea7ad9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__1a4c7304207d34f198b583e367ea7ad9"}, "created_at": 1700082646.303111, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__1a4c7304207d34f198b583e367ea7ad9\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.yml/not_null_analytics___platform__1a4c7304207d34f198b583e367ea7ad9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_product_activeness_monthly where activeness_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "activeness_month", "file_key_name": "models.analytics___platform__store_product_activeness_monthly", "attached_node": "model.yoda.analytics___platform__store_product_activeness_monthly"}, "test.yoda.not_null_analytics___platform__store_product_activeness_monthly_app_key.4f4d910d51": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store_product_activeness_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_product_activeness_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__385703d6643673f7d8149d410d31652f.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_product_activeness_monthly_app_key.4f4d910d51", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_activeness_monthly", "not_null_analytics___platform__store_product_activeness_monthly_app_key"], "alias": "not_null_analytics___platform__385703d6643673f7d8149d410d31652f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__385703d6643673f7d8149d410d31652f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__385703d6643673f7d8149d410d31652f"}, "created_at": 1700082646.3090804, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__385703d6643673f7d8149d410d31652f\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.yml/not_null_analytics___platform__385703d6643673f7d8149d410d31652f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_product_activeness_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store_product_activeness_monthly", "attached_node": "model.yoda.analytics___platform__store_product_activeness_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_activeness_monthly_1.d62572b5eb": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_product_activeness_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_activeness_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__64e2482c764acbcd47ba7c3aa2bc4003.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_activeness_monthly_1.d62572b5eb", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_activeness_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_activeness_monthly_1"], "alias": "dbt_expectations_expect_table__64e2482c764acbcd47ba7c3aa2bc4003", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__64e2482c764acbcd47ba7c3aa2bc4003", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__64e2482c764acbcd47ba7c3aa2bc4003"}, "created_at": 1700082646.3162854, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__64e2482c764acbcd47ba7c3aa2bc4003\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.yml/dbt_expectations_expect_table__64e2482c764acbcd47ba7c3aa2bc4003.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_product_activeness_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_product_activeness_monthly", "attached_node": "model.yoda.analytics___platform__store_product_activeness_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_activeness_monthly_activeness_month__app_key.8b2b7a930f": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["activeness_month", "app_key"], "model": "{{ get_where_subquery(ref('analytics___platform__store_product_activeness_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_product_activeness_monthly_activeness_month__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_de4cd762c5631ee44cc50772c84eb08a.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_activeness_monthly_activeness_month__app_key.8b2b7a930f", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_activeness_monthly", "dbt_utils_unique_combination_of_columns_analytics___platform__store_product_activeness_monthly_activeness_month__app_key"], "alias": "dbt_utils_unique_combination_o_de4cd762c5631ee44cc50772c84eb08a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_de4cd762c5631ee44cc50772c84eb08a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_de4cd762c5631ee44cc50772c84eb08a"}, "created_at": 1700082646.3229578, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_de4cd762c5631ee44cc50772c84eb08a\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.yml/dbt_utils_unique_combination_o_de4cd762c5631ee44cc50772c84eb08a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n activeness_month, app_key\n from dev_dkruh1.analytics___platform__store_product_activeness_monthly\n group by activeness_month, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_product_activeness_monthly", "attached_node": "model.yoda.analytics___platform__store_product_activeness_monthly"}, "test.yoda.not_null_analytics___platform__store_product_metrics_daily_metric_date.1b0f986097": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "metric_date", "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_product_metrics_daily_metric_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__64daf0f3fb15530a351c49d6e8465a99.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_product_metrics_daily_metric_date.1b0f986097", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily", "not_null_analytics___platform__store_product_metrics_daily_metric_date"], "alias": "not_null_analytics___platform__64daf0f3fb15530a351c49d6e8465a99", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__64daf0f3fb15530a351c49d6e8465a99", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__64daf0f3fb15530a351c49d6e8465a99"}, "created_at": 1700082646.3815107, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__64daf0f3fb15530a351c49d6e8465a99\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.yml/not_null_analytics___platform__64daf0f3fb15530a351c49d6e8465a99.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_product_metrics_daily where metric_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metric_date", "file_key_name": "models.analytics___platform__store_product_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_product_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_product_metrics_daily_app_key.5872dd8972": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_product_metrics_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__cdb2ab3f0c33ff8a4c6c9c304053b5ef.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_product_metrics_daily_app_key.5872dd8972", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily", "not_null_analytics___platform__store_product_metrics_daily_app_key"], "alias": "not_null_analytics___platform__cdb2ab3f0c33ff8a4c6c9c304053b5ef", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__cdb2ab3f0c33ff8a4c6c9c304053b5ef", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__cdb2ab3f0c33ff8a4c6c9c304053b5ef"}, "created_at": 1700082646.3872826, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__cdb2ab3f0c33ff8a4c6c9c304053b5ef\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.yml/not_null_analytics___platform__cdb2ab3f0c33ff8a4c6c9c304053b5ef.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_product_metrics_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store_product_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_product_metrics_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_1.3111a6892d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__353b65966f5d67341e31de4e79ca744a.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_1.3111a6892d", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_1"], "alias": "dbt_expectations_expect_table__353b65966f5d67341e31de4e79ca744a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__353b65966f5d67341e31de4e79ca744a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__353b65966f5d67341e31de4e79ca744a"}, "created_at": 1700082646.39324, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__353b65966f5d67341e31de4e79ca744a\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.yml/dbt_expectations_expect_table__353b65966f5d67341e31de4e79ca744a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_product_metrics_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_product_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_product_metrics_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_app_key__metric_date.ab21790649": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "metric_date"], "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_app_key__metric_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_b69d118544f7e82f4ce2591e75f5f0b0.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_app_key__metric_date.ab21790649", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily", "dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_app_key__metric_date"], "alias": "dbt_utils_unique_combination_o_b69d118544f7e82f4ce2591e75f5f0b0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_b69d118544f7e82f4ce2591e75f5f0b0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_b69d118544f7e82f4ce2591e75f5f0b0"}, "created_at": 1700082646.3996959, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_b69d118544f7e82f4ce2591e75f5f0b0\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.yml/dbt_utils_unique_combination_o_b69d118544f7e82f4ce2591e75f5f0b0.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, metric_date\n from dev_dkruh1.analytics___platform__store_product_metrics_daily\n group by app_key, metric_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_product_metrics_daily", "attached_node": "model.yoda.analytics___platform__store_product_metrics_daily"}, "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_app_key.2332f17093": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_product_metrics_daily_snapshot_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__aededfde000b534ba0a205982128bb16.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_app_key.2332f17093", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily_snapshot", "not_null_analytics___platform__store_product_metrics_daily_snapshot_app_key"], "alias": "not_null_analytics___platform__aededfde000b534ba0a205982128bb16", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__aededfde000b534ba0a205982128bb16", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__aededfde000b534ba0a205982128bb16"}, "created_at": 1700082646.4470077, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__aededfde000b534ba0a205982128bb16\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.yml/not_null_analytics___platform__aededfde000b534ba0a205982128bb16.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_product_metrics_daily_snapshot where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store_product_metrics_daily_snapshot", "attached_node": "model.yoda.analytics___platform__store_product_metrics_daily_snapshot"}, "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_date.0312941480": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "metric_date", "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__a6cb31d0f2db28e46ca3732c0a4a3109.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_date.0312941480", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily_snapshot", "not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_date"], "alias": "not_null_analytics___platform__a6cb31d0f2db28e46ca3732c0a4a3109", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__a6cb31d0f2db28e46ca3732c0a4a3109", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__a6cb31d0f2db28e46ca3732c0a4a3109"}, "created_at": 1700082646.4535158, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__a6cb31d0f2db28e46ca3732c0a4a3109\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.yml/not_null_analytics___platform__a6cb31d0f2db28e46ca3732c0a4a3109.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_product_metrics_daily_snapshot where metric_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metric_date", "file_key_name": "models.analytics___platform__store_product_metrics_daily_snapshot", "attached_node": "model.yoda.analytics___platform__store_product_metrics_daily_snapshot"}, "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_name.652628c554": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "metric_name", "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__a849ef3200b188a3f3d9983298706d4f.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_name.652628c554", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily_snapshot", "not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_name"], "alias": "not_null_analytics___platform__a849ef3200b188a3f3d9983298706d4f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__a849ef3200b188a3f3d9983298706d4f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__a849ef3200b188a3f3d9983298706d4f"}, "created_at": 1700082646.460874, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__a849ef3200b188a3f3d9983298706d4f\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.yml/not_null_analytics___platform__a849ef3200b188a3f3d9983298706d4f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_product_metrics_daily_snapshot where metric_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metric_name", "file_key_name": "models.analytics___platform__store_product_metrics_daily_snapshot", "attached_node": "model.yoda.analytics___platform__store_product_metrics_daily_snapshot"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_snapshot_1.84ce47c37c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_daily_snapshot')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_snapshot_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c5dde0a267d67242c4704c4cbf9fd96d.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_snapshot_1.84ce47c37c", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily_snapshot", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_snapshot_1"], "alias": "dbt_expectations_expect_table__c5dde0a267d67242c4704c4cbf9fd96d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c5dde0a267d67242c4704c4cbf9fd96d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c5dde0a267d67242c4704c4cbf9fd96d"}, "created_at": 1700082646.4684007, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c5dde0a267d67242c4704c4cbf9fd96d\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.yml/dbt_expectations_expect_table__c5dde0a267d67242c4704c4cbf9fd96d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_product_metrics_daily_snapshot\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_product_metrics_daily_snapshot", "attached_node": "model.yoda.analytics___platform__store_product_metrics_daily_snapshot"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_snapshot_app_key__metric_date__metric_name.4bc8ad9135": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "metric_date", "metric_name"], "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_daily_snapshot')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_snapshot_app_key__metric_date__metric_name", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_b81cd8e3e3a010693562e2c0febca6a1.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_snapshot_app_key__metric_date__metric_name.4bc8ad9135", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_daily_snapshot", "dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_snapshot_app_key__metric_date__metric_name"], "alias": "dbt_utils_unique_combination_o_b81cd8e3e3a010693562e2c0febca6a1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_b81cd8e3e3a010693562e2c0febca6a1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_b81cd8e3e3a010693562e2c0febca6a1"}, "created_at": 1700082646.4750226, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_b81cd8e3e3a010693562e2c0febca6a1\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.yml/dbt_utils_unique_combination_o_b81cd8e3e3a010693562e2c0febca6a1.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, metric_date, metric_name\n from dev_dkruh1.analytics___platform__store_product_metrics_daily_snapshot\n group by app_key, metric_date, metric_name\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_product_metrics_daily_snapshot", "attached_node": "model.yoda.analytics___platform__store_product_metrics_daily_snapshot"}, "test.yoda.unique_analytics___platform__store_product_metrics_lifetime_app_key.b98da12197": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_lifetime')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform__store_product_metrics_lifetime_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform__s_505175fe167dbcae4b22b8fcf0c100bd.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.yml", "unique_id": "test.yoda.unique_analytics___platform__store_product_metrics_lifetime_app_key.b98da12197", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_lifetime", "unique_analytics___platform__store_product_metrics_lifetime_app_key"], "alias": "unique_analytics___platform__s_505175fe167dbcae4b22b8fcf0c100bd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform__s_505175fe167dbcae4b22b8fcf0c100bd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform__s_505175fe167dbcae4b22b8fcf0c100bd"}, "created_at": 1700082646.5137706, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform__s_505175fe167dbcae4b22b8fcf0c100bd\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_lifetime", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_lifetime"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.yml/unique_analytics___platform__s_505175fe167dbcae4b22b8fcf0c100bd.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___platform__store_product_metrics_lifetime where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store_product_metrics_lifetime", "attached_node": "model.yoda.analytics___platform__store_product_metrics_lifetime"}, "test.yoda.not_null_analytics___platform__store_product_metrics_lifetime_app_key.270e3294d8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_lifetime')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform__store_product_metrics_lifetime_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__1a6c284f07ed761466a87cd6d9d32e53.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.yml", "unique_id": "test.yoda.not_null_analytics___platform__store_product_metrics_lifetime_app_key.270e3294d8", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_lifetime", "not_null_analytics___platform__store_product_metrics_lifetime_app_key"], "alias": "not_null_analytics___platform__1a6c284f07ed761466a87cd6d9d32e53", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__1a6c284f07ed761466a87cd6d9d32e53", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__1a6c284f07ed761466a87cd6d9d32e53"}, "created_at": 1700082646.5206447, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__1a6c284f07ed761466a87cd6d9d32e53\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_lifetime", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_lifetime"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.yml/not_null_analytics___platform__1a6c284f07ed761466a87cd6d9d32e53.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform__store_product_metrics_lifetime where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform__store_product_metrics_lifetime", "attached_node": "model.yoda.analytics___platform__store_product_metrics_lifetime"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_1.9958f0ba87": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_lifetime')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__fd8025076fe88e3d483b360c0bf5cf68.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_1.9958f0ba87", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_lifetime", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_1"], "alias": "dbt_expectations_expect_table__fd8025076fe88e3d483b360c0bf5cf68", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__fd8025076fe88e3d483b360c0bf5cf68", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__fd8025076fe88e3d483b360c0bf5cf68"}, "created_at": 1700082646.5264199, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__fd8025076fe88e3d483b360c0bf5cf68\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_lifetime", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_lifetime"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.yml/dbt_expectations_expect_table__fd8025076fe88e3d483b360c0bf5cf68.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_product_metrics_lifetime\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_product_metrics_lifetime", "attached_node": "model.yoda.analytics___platform__store_product_metrics_lifetime"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_scd_1.fb1a85c913": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_lifetime_scd')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_scd_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__13368672c5d2b3ffbd3776189320747f.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_scd_1.fb1a85c913", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_lifetime_scd", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_scd_1"], "alias": "dbt_expectations_expect_table__13368672c5d2b3ffbd3776189320747f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__13368672c5d2b3ffbd3776189320747f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__13368672c5d2b3ffbd3776189320747f"}, "created_at": 1700082646.5505536, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__13368672c5d2b3ffbd3776189320747f\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_lifetime_scd", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_lifetime_scd"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.yml/dbt_expectations_expect_table__13368672c5d2b3ffbd3776189320747f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_product_metrics_lifetime_scd\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_product_metrics_lifetime_scd", "attached_node": "model.yoda.analytics___platform__store_product_metrics_lifetime_scd"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_scd_app_key__products__updated_at__metric_name.c3adce83db": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "products", "updated_at", "metric_name"], "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_lifetime_scd')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_scd_app_key__products__updated_at__metric_name", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_cf6e5b9c2e5370a654272d0eeb6d9992.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_scd_app_key__products__updated_at__metric_name.c3adce83db", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_lifetime_scd", "dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_scd_app_key__products__updated_at__metric_name"], "alias": "dbt_utils_unique_combination_o_cf6e5b9c2e5370a654272d0eeb6d9992", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_cf6e5b9c2e5370a654272d0eeb6d9992", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_cf6e5b9c2e5370a654272d0eeb6d9992"}, "created_at": 1700082646.557194, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_cf6e5b9c2e5370a654272d0eeb6d9992\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_lifetime_scd", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_lifetime_scd"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.yml/dbt_utils_unique_combination_o_cf6e5b9c2e5370a654272d0eeb6d9992.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, products, updated_at, metric_name\n from dev_dkruh1.analytics___platform__store_product_metrics_lifetime_scd\n group by app_key, products, updated_at, metric_name\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_product_metrics_lifetime_scd", "attached_node": "model.yoda.analytics___platform__store_product_metrics_lifetime_scd"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_unpivot_1.5beceee7bc": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_lifetime_unpivot')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_unpivot_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6575e692f8428995cde3c3cbe46da484.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_unpivot_1.5beceee7bc", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_lifetime_unpivot", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_unpivot_1"], "alias": "dbt_expectations_expect_table__6575e692f8428995cde3c3cbe46da484", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6575e692f8428995cde3c3cbe46da484", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6575e692f8428995cde3c3cbe46da484"}, "created_at": 1700082646.5830812, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6575e692f8428995cde3c3cbe46da484\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_lifetime_unpivot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.yml/dbt_expectations_expect_table__6575e692f8428995cde3c3cbe46da484.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_product_metrics_lifetime_unpivot\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_product_metrics_lifetime_unpivot", "attached_node": "model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_unpivot_app_key__products__metric_name.f041026f4a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "products", "metric_name"], "model": "{{ get_where_subquery(ref('analytics___platform__store_product_metrics_lifetime_unpivot')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_unpivot_app_key__products__metric_name", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_c61e57ed466ba65bdead61869afa8fc2.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_unpivot_app_key__products__metric_name.f041026f4a", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_product_metrics_lifetime_unpivot", "dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_unpivot_app_key__products__metric_name"], "alias": "dbt_utils_unique_combination_o_c61e57ed466ba65bdead61869afa8fc2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c61e57ed466ba65bdead61869afa8fc2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c61e57ed466ba65bdead61869afa8fc2"}, "created_at": 1700082646.589413, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c61e57ed466ba65bdead61869afa8fc2\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_product_metrics_lifetime_unpivot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.yml/dbt_utils_unique_combination_o_c61e57ed466ba65bdead61869afa8fc2.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, products, metric_name\n from dev_dkruh1.analytics___platform__store_product_metrics_lifetime_unpivot\n group by app_key, products, metric_name\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_product_metrics_lifetime_unpivot", "attached_node": "model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_snapshot_daily_1.bae3cb5d42": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform__store_snapshot_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_snapshot_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__069dc57d3cece3ec02493d0c23df91fd.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_snapshot_daily_1.bae3cb5d42", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_snapshot_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_snapshot_daily_1"], "alias": "dbt_expectations_expect_table__069dc57d3cece3ec02493d0c23df91fd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__069dc57d3cece3ec02493d0c23df91fd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__069dc57d3cece3ec02493d0c23df91fd"}, "created_at": 1700082646.672686, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__069dc57d3cece3ec02493d0c23df91fd\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_snapshot_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_snapshot_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.yml/dbt_expectations_expect_table__069dc57d3cece3ec02493d0c23df91fd.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform__store_snapshot_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_snapshot_daily", "attached_node": "model.yoda.analytics___platform__store_snapshot_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_snapshot_daily_date__app_key.40f26252c5": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "app_key"], "model": "{{ get_where_subquery(ref('analytics___platform__store_snapshot_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform__store_snapshot_daily_date__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_a31b070ad74b780366b0ab83f47b678d.sql", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_snapshot_daily_date__app_key.40f26252c5", "fqn": ["yoda", "analytics", "platform", "marts", "analytics___platform__store_snapshot_daily", "dbt_utils_unique_combination_of_columns_analytics___platform__store_snapshot_daily_date__app_key"], "alias": "dbt_utils_unique_combination_o_a31b070ad74b780366b0ab83f47b678d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a31b070ad74b780366b0ab83f47b678d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a31b070ad74b780366b0ab83f47b678d"}, "created_at": 1700082646.6792371, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a31b070ad74b780366b0ab83f47b678d\") }}", "language": "sql", "refs": [{"name": "analytics___platform__store_snapshot_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform__store_snapshot_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.yml/dbt_utils_unique_combination_o_a31b070ad74b780366b0ab83f47b678d.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, app_key\n from dev_dkruh1.analytics___platform__store_snapshot_daily\n group by date, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform__store_snapshot_daily", "attached_node": "model.yoda.analytics___platform__store_snapshot_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__phone_code_country_mapping_1.f151f3acb8": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__phone_code_country_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__phone_code_country_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__259f94248e9e87b8bbdc4d632f6a03fe.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__phone_code_country_mapping_1.f151f3acb8", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__phone_code_country_mapping", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__phone_code_country_mapping_1"], "alias": "dbt_expectations_expect_table__259f94248e9e87b8bbdc4d632f6a03fe", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__259f94248e9e87b8bbdc4d632f6a03fe", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__259f94248e9e87b8bbdc4d632f6a03fe"}, "created_at": 1700082646.8526237, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__259f94248e9e87b8bbdc4d632f6a03fe\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__phone_code_country_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__phone_code_country_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.yml/dbt_expectations_expect_table__259f94248e9e87b8bbdc4d632f6a03fe.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__phone_code_country_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__phone_code_country_mapping", "attached_node": "model.yoda.analytics___platform_stg__phone_code_country_mapping"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_action_mapping_1.59d86af992": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__pixel_action_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_action_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c6740db482bbc1b8ccb26a5434261476.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_action_mapping_1.59d86af992", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__pixel_action_mapping", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_action_mapping_1"], "alias": "dbt_expectations_expect_table__c6740db482bbc1b8ccb26a5434261476", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c6740db482bbc1b8ccb26a5434261476", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c6740db482bbc1b8ccb26a5434261476"}, "created_at": 1700082646.872809, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c6740db482bbc1b8ccb26a5434261476\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__pixel_action_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__pixel_action_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.yml/dbt_expectations_expect_table__c6740db482bbc1b8ccb26a5434261476.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__pixel_action_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__pixel_action_mapping", "attached_node": "model.yoda.analytics___platform_stg__pixel_action_mapping"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_category_mapping_1.bba04362f0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__pixel_category_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_category_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f3cf95f1b114841dc505ef5c22bea5c8.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_category_mapping_1.bba04362f0", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__pixel_category_mapping", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_category_mapping_1"], "alias": "dbt_expectations_expect_table__f3cf95f1b114841dc505ef5c22bea5c8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f3cf95f1b114841dc505ef5c22bea5c8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f3cf95f1b114841dc505ef5c22bea5c8"}, "created_at": 1700082646.8961165, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f3cf95f1b114841dc505ef5c22bea5c8\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__pixel_category_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__pixel_category_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.yml/dbt_expectations_expect_table__f3cf95f1b114841dc505ef5c22bea5c8.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__pixel_category_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__pixel_category_mapping", "attached_node": "model.yoda.analytics___platform_stg__pixel_category_mapping"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_duration_mapping_1.84d5d8fd5b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__pixel_duration_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_duration_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__74ef56cc327841b1e1a5f7b4c0c3c531.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_duration_mapping_1.84d5d8fd5b", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__pixel_duration_mapping", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_duration_mapping_1"], "alias": "dbt_expectations_expect_table__74ef56cc327841b1e1a5f7b4c0c3c531", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__74ef56cc327841b1e1a5f7b4c0c3c531", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__74ef56cc327841b1e1a5f7b4c0c3c531"}, "created_at": 1700082646.9217243, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__74ef56cc327841b1e1a5f7b4c0c3c531\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__pixel_duration_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__pixel_duration_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.yml/dbt_expectations_expect_table__74ef56cc327841b1e1a5f7b4c0c3c531.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__pixel_duration_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__pixel_duration_mapping", "attached_node": "model.yoda.analytics___platform_stg__pixel_duration_mapping"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_os_family_mobile_mapping_1.c2fad38ca0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__pixel_os_family_mobile_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_os_family_mobile_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__72c0d24199dc06b0efd0a022820f7e60.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_os_family_mobile_mapping_1.c2fad38ca0", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__pixel_os_family_mobile_mapping", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_os_family_mobile_mapping_1"], "alias": "dbt_expectations_expect_table__72c0d24199dc06b0efd0a022820f7e60", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__72c0d24199dc06b0efd0a022820f7e60", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__72c0d24199dc06b0efd0a022820f7e60"}, "created_at": 1700082646.9423501, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__72c0d24199dc06b0efd0a022820f7e60\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__pixel_os_family_mobile_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.yml/dbt_expectations_expect_table__72c0d24199dc06b0efd0a022820f7e60.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__pixel_os_family_mobile_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__pixel_os_family_mobile_mapping", "attached_node": "model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping"}, "test.yoda.unique_analytics___platform_stg__product_plan_name_rank_plan_name.7680ba0de2": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___platform_stg__product_plan_name_rank')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__product_plan_name_rank_plan_name", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_st_4381923ca04908a94d79feef6f990c4b.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__product_plan_name_rank_plan_name.7680ba0de2", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__product_plan_name_rank", "unique_analytics___platform_stg__product_plan_name_rank_plan_name"], "alias": "unique_analytics___platform_st_4381923ca04908a94d79feef6f990c4b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform_st_4381923ca04908a94d79feef6f990c4b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform_st_4381923ca04908a94d79feef6f990c4b"}, "created_at": 1700082646.967281, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform_st_4381923ca04908a94d79feef6f990c4b\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__product_plan_name_rank", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__product_plan_name_rank"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.yml/unique_analytics___platform_st_4381923ca04908a94d79feef6f990c4b.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select plan_name from dev_dkruh1.analytics___platform_stg__product_plan_name_rank where plan_name is not null group by plan_name having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___platform_stg__product_plan_name_rank", "attached_node": "model.yoda.analytics___platform_stg__product_plan_name_rank"}, "test.yoda.not_null_analytics___platform_stg__product_plan_name_rank_plan_name.5ecb99c159": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_name", "model": "{{ get_where_subquery(ref('analytics___platform_stg__product_plan_name_rank')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__product_plan_name_rank_plan_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__922368331ba4162f9cc737a6c45bc1b4.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__product_plan_name_rank_plan_name.5ecb99c159", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__product_plan_name_rank", "not_null_analytics___platform_stg__product_plan_name_rank_plan_name"], "alias": "not_null_analytics___platform__922368331ba4162f9cc737a6c45bc1b4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__922368331ba4162f9cc737a6c45bc1b4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__922368331ba4162f9cc737a6c45bc1b4"}, "created_at": 1700082646.9736254, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__922368331ba4162f9cc737a6c45bc1b4\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__product_plan_name_rank", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__product_plan_name_rank"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.yml/not_null_analytics___platform__922368331ba4162f9cc737a6c45bc1b4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__product_plan_name_rank where plan_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_name", "file_key_name": "models.analytics___platform_stg__product_plan_name_rank", "attached_node": "model.yoda.analytics___platform_stg__product_plan_name_rank"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__questions_1.3425e858e7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__questions')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__questions_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a82fd13eee70b88550406bcc590544dc.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__questions_1.3425e858e7", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__questions", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__questions_1"], "alias": "dbt_expectations_expect_table__a82fd13eee70b88550406bcc590544dc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a82fd13eee70b88550406bcc590544dc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a82fd13eee70b88550406bcc590544dc"}, "created_at": 1700082647.0044742, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a82fd13eee70b88550406bcc590544dc\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__questions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__questions"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.yml/dbt_expectations_expect_table__a82fd13eee70b88550406bcc590544dc.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__questions\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__questions", "attached_node": "model.yoda.analytics___platform_stg__questions"}, "test.yoda.not_null_analytics___platform_stg__saas_organization_daily_history_organization_key.52d8c8ee50": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___platform_stg__saas_organization_daily_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__saas_organization_daily_history_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__3a7a66d3e677cf77d7ccb6e0ebca1741.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__saas_organization_daily_history_organization_key.52d8c8ee50", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__saas_organization_daily_history", "not_null_analytics___platform_stg__saas_organization_daily_history_organization_key"], "alias": "not_null_analytics___platform__3a7a66d3e677cf77d7ccb6e0ebca1741", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__3a7a66d3e677cf77d7ccb6e0ebca1741", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__3a7a66d3e677cf77d7ccb6e0ebca1741"}, "created_at": 1700082647.0339413, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__3a7a66d3e677cf77d7ccb6e0ebca1741\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__saas_organization_daily_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__saas_organization_daily_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.yml/not_null_analytics___platform__3a7a66d3e677cf77d7ccb6e0ebca1741.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__saas_organization_daily_history where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___platform_stg__saas_organization_daily_history", "attached_node": "model.yoda.analytics___platform_stg__saas_organization_daily_history"}, "test.yoda.not_null_analytics___platform_stg__saas_organization_daily_history_dwh_updated_at.55993a8322": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('analytics___platform_stg__saas_organization_daily_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__saas_organization_daily_history_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__debbad62e2ac4e1344ba58f4e9496dd7.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__saas_organization_daily_history_dwh_updated_at.55993a8322", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__saas_organization_daily_history", "not_null_analytics___platform_stg__saas_organization_daily_history_dwh_updated_at"], "alias": "not_null_analytics___platform__debbad62e2ac4e1344ba58f4e9496dd7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__debbad62e2ac4e1344ba58f4e9496dd7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__debbad62e2ac4e1344ba58f4e9496dd7"}, "created_at": 1700082647.0399845, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__debbad62e2ac4e1344ba58f4e9496dd7\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__saas_organization_daily_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__saas_organization_daily_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.yml/not_null_analytics___platform__debbad62e2ac4e1344ba58f4e9496dd7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__saas_organization_daily_history where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.analytics___platform_stg__saas_organization_daily_history", "attached_node": "model.yoda.analytics___platform_stg__saas_organization_daily_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_organization_daily_history_1.213f53c393": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__saas_organization_daily_history')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_organization_daily_history_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6396fc6c7383be7ac4ec855c8039f002.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_organization_daily_history_1.213f53c393", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__saas_organization_daily_history", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_organization_daily_history_1"], "alias": "dbt_expectations_expect_table__6396fc6c7383be7ac4ec855c8039f002", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6396fc6c7383be7ac4ec855c8039f002", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6396fc6c7383be7ac4ec855c8039f002"}, "created_at": 1700082647.0460727, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6396fc6c7383be7ac4ec855c8039f002\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__saas_organization_daily_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__saas_organization_daily_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.yml/dbt_expectations_expect_table__6396fc6c7383be7ac4ec855c8039f002.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__saas_organization_daily_history\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__saas_organization_daily_history", "attached_node": "model.yoda.analytics___platform_stg__saas_organization_daily_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_store_plan_history_1.cbd7f29455": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__saas_store_plan_history')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_store_plan_history_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__31835a1057ec7a8c3e06616a2a398686.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_store_plan_history_1.cbd7f29455", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__saas_store_plan_history", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_store_plan_history_1"], "alias": "dbt_expectations_expect_table__31835a1057ec7a8c3e06616a2a398686", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__31835a1057ec7a8c3e06616a2a398686", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__31835a1057ec7a8c3e06616a2a398686"}, "created_at": 1700082647.0754745, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__31835a1057ec7a8c3e06616a2a398686\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__saas_store_plan_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__saas_store_plan_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.yml/dbt_expectations_expect_table__31835a1057ec7a8c3e06616a2a398686.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__saas_store_plan_history\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__saas_store_plan_history", "attached_node": "model.yoda.analytics___platform_stg__saas_store_plan_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__shopify_billing_charge_plan_mapping_1.80ef31745b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__shopify_billing_charge_plan_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__shopify_billing_charge_plan_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__224de09c56f8b4bc2547867addcaf200.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__shopify_billing_charge_plan_mapping_1.80ef31745b", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__shopify_billing_charge_plan_mapping", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__shopify_billing_charge_plan_mapping_1"], "alias": "dbt_expectations_expect_table__224de09c56f8b4bc2547867addcaf200", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__224de09c56f8b4bc2547867addcaf200", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__224de09c56f8b4bc2547867addcaf200"}, "created_at": 1700082647.1037543, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__224de09c56f8b4bc2547867addcaf200\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.yml/dbt_expectations_expect_table__224de09c56f8b4bc2547867addcaf200.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__shopify_billing_charge_plan_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__shopify_billing_charge_plan_mapping", "attached_node": "model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__shopify_billing_charge_plan_mapping_product_family__charge_name.eac779bf7e": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["product_family", "charge_name"], "model": "{{ get_where_subquery(ref('analytics___platform_stg__shopify_billing_charge_plan_mapping')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform_stg__shopify_billing_charge_plan_mapping_product_family__charge_name", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_75ad2359f1bf69ddc27e1ef69817bcb6.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__shopify_billing_charge_plan_mapping_product_family__charge_name.eac779bf7e", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__shopify_billing_charge_plan_mapping", "dbt_utils_unique_combination_of_columns_analytics___platform_stg__shopify_billing_charge_plan_mapping_product_family__charge_name"], "alias": "dbt_utils_unique_combination_o_75ad2359f1bf69ddc27e1ef69817bcb6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_75ad2359f1bf69ddc27e1ef69817bcb6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_75ad2359f1bf69ddc27e1ef69817bcb6"}, "created_at": 1700082647.1107063, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_75ad2359f1bf69ddc27e1ef69817bcb6\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.yml/dbt_utils_unique_combination_o_75ad2359f1bf69ddc27e1ef69817bcb6.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n product_family, charge_name\n from dev_dkruh1.analytics___platform_stg__shopify_billing_charge_plan_mapping\n group by product_family, charge_name\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__shopify_billing_charge_plan_mapping", "attached_node": "model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_stores_1.40cafa6cc1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__similar_stores')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_stores_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__52745d8b9547dfd4f50108bef942c743.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_stores_1.40cafa6cc1", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__similar_stores", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_stores_1"], "alias": "dbt_expectations_expect_table__52745d8b9547dfd4f50108bef942c743", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__52745d8b9547dfd4f50108bef942c743", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__52745d8b9547dfd4f50108bef942c743"}, "created_at": 1700082647.1362517, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__52745d8b9547dfd4f50108bef942c743\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__similar_stores", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__similar_stores"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.yml/dbt_expectations_expect_table__52745d8b9547dfd4f50108bef942c743.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__similar_stores\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__similar_stores", "attached_node": "model.yoda.analytics___platform_stg__similar_stores"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__sms_loyalty_synergy_mapping_1.bf37e06b40": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__sms_loyalty_synergy_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__sms_loyalty_synergy_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c9644591d974ce354e8c2ab9faefbcbb.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__sms_loyalty_synergy_mapping_1.bf37e06b40", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__sms_loyalty_synergy_mapping", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__sms_loyalty_synergy_mapping_1"], "alias": "dbt_expectations_expect_table__c9644591d974ce354e8c2ab9faefbcbb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c9644591d974ce354e8c2ab9faefbcbb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c9644591d974ce354e8c2ab9faefbcbb"}, "created_at": 1700082647.1590528, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c9644591d974ce354e8c2ab9faefbcbb\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__sms_loyalty_synergy_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.yml/dbt_expectations_expect_table__c9644591d974ce354e8c2ab9faefbcbb.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__sms_loyalty_synergy_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__sms_loyalty_synergy_mapping", "attached_node": "model.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping"}, "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_from_time.30a7fac925": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_time", "model": "{{ get_where_subquery(ref('analytics___platform_stg__subscriptions_contract_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__subscriptions_contract_history_from_time", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__d702c0ce64170e7b66b5a505f88fa17a.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_from_time.30a7fac925", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__subscriptions_contract_history", "not_null_analytics___platform_stg__subscriptions_contract_history_from_time"], "alias": "not_null_analytics___platform__d702c0ce64170e7b66b5a505f88fa17a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__d702c0ce64170e7b66b5a505f88fa17a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__d702c0ce64170e7b66b5a505f88fa17a"}, "created_at": 1700082647.18807, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__d702c0ce64170e7b66b5a505f88fa17a\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__subscriptions_contract_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml/not_null_analytics___platform__d702c0ce64170e7b66b5a505f88fa17a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__subscriptions_contract_history where from_time is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_time", "file_key_name": "models.analytics___platform_stg__subscriptions_contract_history", "attached_node": "model.yoda.analytics___platform_stg__subscriptions_contract_history"}, "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_app_key.c19e552c55": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform_stg__subscriptions_contract_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__subscriptions_contract_history_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__5f9be386b2f124d36c25d50f2f93a7af.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_app_key.c19e552c55", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__subscriptions_contract_history", "not_null_analytics___platform_stg__subscriptions_contract_history_app_key"], "alias": "not_null_analytics___platform__5f9be386b2f124d36c25d50f2f93a7af", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__5f9be386b2f124d36c25d50f2f93a7af", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__5f9be386b2f124d36c25d50f2f93a7af"}, "created_at": 1700082647.1959653, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__5f9be386b2f124d36c25d50f2f93a7af\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__subscriptions_contract_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml/not_null_analytics___platform__5f9be386b2f124d36c25d50f2f93a7af.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__subscriptions_contract_history where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform_stg__subscriptions_contract_history", "attached_node": "model.yoda.analytics___platform_stg__subscriptions_contract_history"}, "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_contract_id.8f04be378b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "contract_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__subscriptions_contract_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__subscriptions_contract_history_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__e5c715a54dd3a6ee397ef76ab91aac15.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_contract_id.8f04be378b", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__subscriptions_contract_history", "not_null_analytics___platform_stg__subscriptions_contract_history_contract_id"], "alias": "not_null_analytics___platform__e5c715a54dd3a6ee397ef76ab91aac15", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__e5c715a54dd3a6ee397ef76ab91aac15", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__e5c715a54dd3a6ee397ef76ab91aac15"}, "created_at": 1700082647.2024786, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__e5c715a54dd3a6ee397ef76ab91aac15\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__subscriptions_contract_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml/not_null_analytics___platform__e5c715a54dd3a6ee397ef76ab91aac15.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__subscriptions_contract_history where contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "contract_id", "file_key_name": "models.analytics___platform_stg__subscriptions_contract_history", "attached_node": "model.yoda.analytics___platform_stg__subscriptions_contract_history"}, "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_status_id.ba2c0f080e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "status_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__subscriptions_contract_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__subscriptions_contract_history_status_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__1cb097b9f80fbe3b917e82916d1d2dc7.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_status_id.ba2c0f080e", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__subscriptions_contract_history", "not_null_analytics___platform_stg__subscriptions_contract_history_status_id"], "alias": "not_null_analytics___platform__1cb097b9f80fbe3b917e82916d1d2dc7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__1cb097b9f80fbe3b917e82916d1d2dc7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__1cb097b9f80fbe3b917e82916d1d2dc7"}, "created_at": 1700082647.2086833, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__1cb097b9f80fbe3b917e82916d1d2dc7\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__subscriptions_contract_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml/not_null_analytics___platform__1cb097b9f80fbe3b917e82916d1d2dc7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__subscriptions_contract_history where status_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "status_id", "file_key_name": "models.analytics___platform_stg__subscriptions_contract_history", "attached_node": "model.yoda.analytics___platform_stg__subscriptions_contract_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_contract_history_1.2ae291f521": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__subscriptions_contract_history')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_contract_history_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2b517230a48a02af70204e1162be4c96.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_contract_history_1.2ae291f521", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__subscriptions_contract_history", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_contract_history_1"], "alias": "dbt_expectations_expect_table__2b517230a48a02af70204e1162be4c96", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2b517230a48a02af70204e1162be4c96", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2b517230a48a02af70204e1162be4c96"}, "created_at": 1700082647.2152202, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2b517230a48a02af70204e1162be4c96\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__subscriptions_contract_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml/dbt_expectations_expect_table__2b517230a48a02af70204e1162be4c96.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__subscriptions_contract_history\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__subscriptions_contract_history", "attached_node": "model.yoda.analytics___platform_stg__subscriptions_contract_history"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_contract_history_app_key__from_time__contract_id__status_id.704750ae8d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "from_time", "contract_id", "status_id"], "model": "{{ get_where_subquery(ref('analytics___platform_stg__subscriptions_contract_history')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_contract_history_app_key__from_time__contract_id__status_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_ae1f27e28e91401f2f5ed906ca909276.sql", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_contract_history_app_key__from_time__contract_id__status_id.704750ae8d", "fqn": ["yoda", "analytics", "platform", "staging", "base", "analytics___platform_stg__subscriptions_contract_history", "dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_contract_history_app_key__from_time__contract_id__status_id"], "alias": "dbt_utils_unique_combination_o_ae1f27e28e91401f2f5ed906ca909276", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ae1f27e28e91401f2f5ed906ca909276", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ae1f27e28e91401f2f5ed906ca909276"}, "created_at": 1700082647.2220895, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ae1f27e28e91401f2f5ed906ca909276\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__subscriptions_contract_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.yml/dbt_utils_unique_combination_o_ae1f27e28e91401f2f5ed906ca909276.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, from_time, contract_id, status_id\n from dev_dkruh1.analytics___platform_stg__subscriptions_contract_history\n group by app_key, from_time, contract_id, status_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__subscriptions_contract_history", "attached_node": "model.yoda.analytics___platform_stg__subscriptions_contract_history"}, "test.yoda.unique_analytics___platform_stg__account_account_id.bf0cffee73": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__account_account_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__account_account_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__account_account_id.bf0cffee73", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__account", "unique_analytics___platform_stg__account_account_id"], "alias": "unique_analytics___platform_stg__account_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082647.2504282, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.yml/unique_analytics___platform_stg__account_account_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select account_id from dev_dkruh1.analytics___platform_stg__account where account_id is not null group by account_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___platform_stg__account", "attached_node": "model.yoda.analytics___platform_stg__account"}, "test.yoda.not_null_analytics___platform_stg__account_account_id.9bc768ec65": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__account_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__account_account_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__account_account_id.9bc768ec65", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__account", "not_null_analytics___platform_stg__account_account_id"], "alias": "not_null_analytics___platform_stg__account_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082647.256507, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.yml/not_null_analytics___platform_stg__account_account_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__account where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___platform_stg__account", "attached_node": "model.yoda.analytics___platform_stg__account"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_1.4b2484911a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__account')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6fafe33487ffbf790a3567d9cb6efc32.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_1.4b2484911a", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__account", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_1"], "alias": "dbt_expectations_expect_table__6fafe33487ffbf790a3567d9cb6efc32", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6fafe33487ffbf790a3567d9cb6efc32", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6fafe33487ffbf790a3567d9cb6efc32"}, "created_at": 1700082647.2631102, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6fafe33487ffbf790a3567d9cb6efc32\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.yml/dbt_expectations_expect_table__6fafe33487ffbf790a3567d9cb6efc32.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__account\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__account", "attached_node": "model.yoda.analytics___platform_stg__account"}, "test.yoda.unique_analytics___platform_stg__account_platform_account_platform_id.c290b8cfd5": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "account_platform_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__account_platform')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__account_platform_account_platform_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_st_a1d8db024463bd28ed98a239f407c444.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__account_platform_account_platform_id.c290b8cfd5", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__account_platform", "unique_analytics___platform_stg__account_platform_account_platform_id"], "alias": "unique_analytics___platform_st_a1d8db024463bd28ed98a239f407c444", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform_st_a1d8db024463bd28ed98a239f407c444", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform_st_a1d8db024463bd28ed98a239f407c444"}, "created_at": 1700082647.290896, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform_st_a1d8db024463bd28ed98a239f407c444\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__account_platform", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__account_platform"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.yml/unique_analytics___platform_st_a1d8db024463bd28ed98a239f407c444.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select account_platform_id from dev_dkruh1.analytics___platform_stg__account_platform where account_platform_id is not null group by account_platform_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_platform_id", "file_key_name": "models.analytics___platform_stg__account_platform", "attached_node": "model.yoda.analytics___platform_stg__account_platform"}, "test.yoda.not_null_analytics___platform_stg__account_platform_account_platform_id.b7b5c49fb5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_platform_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__account_platform')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__account_platform_account_platform_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__423336a100d5c671742a52f2ada5cb83.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__account_platform_account_platform_id.b7b5c49fb5", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__account_platform", "not_null_analytics___platform_stg__account_platform_account_platform_id"], "alias": "not_null_analytics___platform__423336a100d5c671742a52f2ada5cb83", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__423336a100d5c671742a52f2ada5cb83", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__423336a100d5c671742a52f2ada5cb83"}, "created_at": 1700082647.297068, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__423336a100d5c671742a52f2ada5cb83\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__account_platform", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__account_platform"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.yml/not_null_analytics___platform__423336a100d5c671742a52f2ada5cb83.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__account_platform where account_platform_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_platform_id", "file_key_name": "models.analytics___platform_stg__account_platform", "attached_node": "model.yoda.analytics___platform_stg__account_platform"}, "test.yoda.not_null_analytics___platform_stg__account_platform_account_id.6b520f86d6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__account_platform')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__account_platform_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__account_platform_account_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__account_platform_account_id.6b520f86d6", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__account_platform", "not_null_analytics___platform_stg__account_platform_account_id"], "alias": "not_null_analytics___platform_stg__account_platform_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082647.3031745, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__account_platform", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__account_platform"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.yml/not_null_analytics___platform_stg__account_platform_account_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__account_platform where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___platform_stg__account_platform", "attached_node": "model.yoda.analytics___platform_stg__account_platform"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_platform_1.1627b7d5ba": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__account_platform')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_platform_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e2630d4f6fc8936c2fdabd9a1fb0c4d7.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_platform_1.1627b7d5ba", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__account_platform", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_platform_1"], "alias": "dbt_expectations_expect_table__e2630d4f6fc8936c2fdabd9a1fb0c4d7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e2630d4f6fc8936c2fdabd9a1fb0c4d7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e2630d4f6fc8936c2fdabd9a1fb0c4d7"}, "created_at": 1700082647.3101676, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e2630d4f6fc8936c2fdabd9a1fb0c4d7\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__account_platform", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__account_platform"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.yml/dbt_expectations_expect_table__e2630d4f6fc8936c2fdabd9a1fb0c4d7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__account_platform\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__account_platform", "attached_node": "model.yoda.analytics___platform_stg__account_platform"}, "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_currency_exchange_date.0d396a63dc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "currency_exchange_date", "model": "{{ get_where_subquery(ref('analytics___platform_stg__currency_exchange_rate')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__currency_exchange_rate_currency_exchange_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__ed9ab5b7c5514e7c824d5f035bab8870.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_currency_exchange_date.0d396a63dc", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__currency_exchange_rate", "not_null_analytics___platform_stg__currency_exchange_rate_currency_exchange_date"], "alias": "not_null_analytics___platform__ed9ab5b7c5514e7c824d5f035bab8870", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__ed9ab5b7c5514e7c824d5f035bab8870", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__ed9ab5b7c5514e7c824d5f035bab8870"}, "created_at": 1700082647.3473039, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__ed9ab5b7c5514e7c824d5f035bab8870\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__currency_exchange_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__currency_exchange_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.yml/not_null_analytics___platform__ed9ab5b7c5514e7c824d5f035bab8870.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__currency_exchange_rate where currency_exchange_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "currency_exchange_date", "file_key_name": "models.analytics___platform_stg__currency_exchange_rate", "attached_node": "model.yoda.analytics___platform_stg__currency_exchange_rate"}, "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_from_currency_symbol.8296ad7a59": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_currency_symbol", "model": "{{ get_where_subquery(ref('analytics___platform_stg__currency_exchange_rate')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__currency_exchange_rate_from_currency_symbol", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__a1f1dbb046951c1462b49c6eae02fb77.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_from_currency_symbol.8296ad7a59", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__currency_exchange_rate", "not_null_analytics___platform_stg__currency_exchange_rate_from_currency_symbol"], "alias": "not_null_analytics___platform__a1f1dbb046951c1462b49c6eae02fb77", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__a1f1dbb046951c1462b49c6eae02fb77", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__a1f1dbb046951c1462b49c6eae02fb77"}, "created_at": 1700082647.3543737, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__a1f1dbb046951c1462b49c6eae02fb77\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__currency_exchange_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__currency_exchange_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.yml/not_null_analytics___platform__a1f1dbb046951c1462b49c6eae02fb77.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__currency_exchange_rate where from_currency_symbol is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_currency_symbol", "file_key_name": "models.analytics___platform_stg__currency_exchange_rate", "attached_node": "model.yoda.analytics___platform_stg__currency_exchange_rate"}, "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_to_currency_symbol.4b70904cc9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "to_currency_symbol", "model": "{{ get_where_subquery(ref('analytics___platform_stg__currency_exchange_rate')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__currency_exchange_rate_to_currency_symbol", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__a0287b8cded75651264bc7be12641d00.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_to_currency_symbol.4b70904cc9", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__currency_exchange_rate", "not_null_analytics___platform_stg__currency_exchange_rate_to_currency_symbol"], "alias": "not_null_analytics___platform__a0287b8cded75651264bc7be12641d00", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__a0287b8cded75651264bc7be12641d00", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__a0287b8cded75651264bc7be12641d00"}, "created_at": 1700082647.3607483, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__a0287b8cded75651264bc7be12641d00\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__currency_exchange_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__currency_exchange_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.yml/not_null_analytics___platform__a0287b8cded75651264bc7be12641d00.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__currency_exchange_rate where to_currency_symbol is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "to_currency_symbol", "file_key_name": "models.analytics___platform_stg__currency_exchange_rate", "attached_node": "model.yoda.analytics___platform_stg__currency_exchange_rate"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__currency_exchange_rate_1.92ad112887": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__currency_exchange_rate')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__currency_exchange_rate_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__9e08b32261e5a98c20291dd6943300db.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__currency_exchange_rate_1.92ad112887", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__currency_exchange_rate", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__currency_exchange_rate_1"], "alias": "dbt_expectations_expect_table__9e08b32261e5a98c20291dd6943300db", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__9e08b32261e5a98c20291dd6943300db", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__9e08b32261e5a98c20291dd6943300db"}, "created_at": 1700082647.3677921, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__9e08b32261e5a98c20291dd6943300db\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__currency_exchange_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__currency_exchange_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.yml/dbt_expectations_expect_table__9e08b32261e5a98c20291dd6943300db.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__currency_exchange_rate\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__currency_exchange_rate", "attached_node": "model.yoda.analytics___platform_stg__currency_exchange_rate"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__currency_exchange_rate_currency_exchange_date__from_currency_symbol__to_currency_symbol.f4f0825820": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["currency_exchange_date", "from_currency_symbol", "to_currency_symbol"], "model": "{{ get_where_subquery(ref('analytics___platform_stg__currency_exchange_rate')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform_stg__currency_exchange_rate_currency_exchange_date__from_currency_symbol__to_currency_symbol", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_224966f35253cc0bf8d718901bc4f7e7.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__currency_exchange_rate_currency_exchange_date__from_currency_symbol__to_currency_symbol.f4f0825820", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__currency_exchange_rate", "dbt_utils_unique_combination_of_columns_analytics___platform_stg__currency_exchange_rate_currency_exchange_date__from_currency_symbol__to_currency_symbol"], "alias": "dbt_utils_unique_combination_o_224966f35253cc0bf8d718901bc4f7e7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_224966f35253cc0bf8d718901bc4f7e7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_224966f35253cc0bf8d718901bc4f7e7"}, "created_at": 1700082647.374307, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_224966f35253cc0bf8d718901bc4f7e7\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__currency_exchange_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__currency_exchange_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.yml/dbt_utils_unique_combination_o_224966f35253cc0bf8d718901bc4f7e7.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n currency_exchange_date, from_currency_symbol, to_currency_symbol\n from dev_dkruh1.analytics___platform_stg__currency_exchange_rate\n group by currency_exchange_date, from_currency_symbol, to_currency_symbol\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__currency_exchange_rate", "attached_node": "model.yoda.analytics___platform_stg__currency_exchange_rate"}, "test.yoda.unique_analytics___platform_stg__feature_feature_id.ec45ab27b6": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "feature_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__feature_feature_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__feature_feature_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__feature_feature_id.ec45ab27b6", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__feature", "unique_analytics___platform_stg__feature_feature_id"], "alias": "unique_analytics___platform_stg__feature_feature_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082647.401598, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.yml/unique_analytics___platform_stg__feature_feature_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select feature_id from dev_dkruh1.analytics___platform_stg__feature where feature_id is not null group by feature_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "feature_id", "file_key_name": "models.analytics___platform_stg__feature", "attached_node": "model.yoda.analytics___platform_stg__feature"}, "test.yoda.not_null_analytics___platform_stg__feature_feature_id.c412179c7f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "feature_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__feature_feature_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__feature_feature_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__feature_feature_id.c412179c7f", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__feature", "not_null_analytics___platform_stg__feature_feature_id"], "alias": "not_null_analytics___platform_stg__feature_feature_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082647.4073424, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.yml/not_null_analytics___platform_stg__feature_feature_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__feature where feature_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "feature_id", "file_key_name": "models.analytics___platform_stg__feature", "attached_node": "model.yoda.analytics___platform_stg__feature"}, "test.yoda.accepted_values_analytics___platform_stg__feature_is_default_user_enabled__0__1.ee28dedafe": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_default_user_enabled", "model": "{{ get_where_subquery(ref('analytics___platform_stg__feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__feature_is_default_user_enabled__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_b88ef03889144a4d6b3dffaaea28b2e6.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__feature_is_default_user_enabled__0__1.ee28dedafe", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__feature", "accepted_values_analytics___platform_stg__feature_is_default_user_enabled__0__1"], "alias": "accepted_values_analytics___pl_b88ef03889144a4d6b3dffaaea28b2e6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_b88ef03889144a4d6b3dffaaea28b2e6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_b88ef03889144a4d6b3dffaaea28b2e6"}, "created_at": 1700082647.4135852, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_b88ef03889144a4d6b3dffaaea28b2e6\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.yml/accepted_values_analytics___pl_b88ef03889144a4d6b3dffaaea28b2e6.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_default_user_enabled as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__feature\n group by is_default_user_enabled\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_default_user_enabled", "file_key_name": "models.analytics___platform_stg__feature", "attached_node": "model.yoda.analytics___platform_stg__feature"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__feature_1.45b956b766": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__feature')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__feature_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8ed07911ed34cb9056fb10f43f5043ce.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__feature_1.45b956b766", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__feature", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__feature_1"], "alias": "dbt_expectations_expect_table__8ed07911ed34cb9056fb10f43f5043ce", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8ed07911ed34cb9056fb10f43f5043ce", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8ed07911ed34cb9056fb10f43f5043ce"}, "created_at": 1700082647.419977, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8ed07911ed34cb9056fb10f43f5043ce\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.yml/dbt_expectations_expect_table__8ed07911ed34cb9056fb10f43f5043ce.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__feature\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__feature", "attached_node": "model.yoda.analytics___platform_stg__feature"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__fulfillment_1.b2e05b1f61": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__fulfillment')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__fulfillment_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7969b70ac6c870d2c3ce5cd885a40e40.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__fulfillment_1.b2e05b1f61", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__fulfillment", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__fulfillment_1"], "alias": "dbt_expectations_expect_table__7969b70ac6c870d2c3ce5cd885a40e40", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7969b70ac6c870d2c3ce5cd885a40e40", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7969b70ac6c870d2c3ce5cd885a40e40"}, "created_at": 1700082647.4480164, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7969b70ac6c870d2c3ce5cd885a40e40\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__fulfillment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__fulfillment"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.yml/dbt_expectations_expect_table__7969b70ac6c870d2c3ce5cd885a40e40.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__fulfillment\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__fulfillment", "attached_node": "model.yoda.analytics___platform_stg__fulfillment"}, "test.yoda.unique_analytics___platform_stg__home_screen_section_section_id.981f1edfe1": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "section_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__home_screen_section')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__home_screen_section_section_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__home_screen_section_section_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__home_screen_section_section_id.981f1edfe1", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__home_screen_section", "unique_analytics___platform_stg__home_screen_section_section_id"], "alias": "unique_analytics___platform_stg__home_screen_section_section_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082647.472365, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__home_screen_section", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__home_screen_section"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.yml/unique_analytics___platform_stg__home_screen_section_section_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select section_id from dev_dkruh1.analytics___platform_stg__home_screen_section where section_id is not null group by section_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "section_id", "file_key_name": "models.analytics___platform_stg__home_screen_section", "attached_node": "model.yoda.analytics___platform_stg__home_screen_section"}, "test.yoda.not_null_analytics___platform_stg__home_screen_section_section_id.c6b5335156": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "section_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__home_screen_section')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__home_screen_section_section_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__11a8d49884eff01fcfdf0b5d99994c63.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__home_screen_section_section_id.c6b5335156", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__home_screen_section", "not_null_analytics___platform_stg__home_screen_section_section_id"], "alias": "not_null_analytics___platform__11a8d49884eff01fcfdf0b5d99994c63", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__11a8d49884eff01fcfdf0b5d99994c63", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__11a8d49884eff01fcfdf0b5d99994c63"}, "created_at": 1700082647.4783173, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__11a8d49884eff01fcfdf0b5d99994c63\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__home_screen_section", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__home_screen_section"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.yml/not_null_analytics___platform__11a8d49884eff01fcfdf0b5d99994c63.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__home_screen_section where section_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "section_id", "file_key_name": "models.analytics___platform_stg__home_screen_section", "attached_node": "model.yoda.analytics___platform_stg__home_screen_section"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_section_1.24494367ea": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__home_screen_section')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_section_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__b4703cfec2c2a42c50727a5ae65cb851.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_section_1.24494367ea", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__home_screen_section", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_section_1"], "alias": "dbt_expectations_expect_table__b4703cfec2c2a42c50727a5ae65cb851", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__b4703cfec2c2a42c50727a5ae65cb851", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__b4703cfec2c2a42c50727a5ae65cb851"}, "created_at": 1700082647.4842591, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__b4703cfec2c2a42c50727a5ae65cb851\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__home_screen_section", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__home_screen_section"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.yml/dbt_expectations_expect_table__b4703cfec2c2a42c50727a5ae65cb851.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__home_screen_section\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__home_screen_section", "attached_node": "model.yoda.analytics___platform_stg__home_screen_section"}, "test.yoda.unique_analytics___platform_stg__home_screen_widget_widget_id.c774dd74ef": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "widget_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__home_screen_widget')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__home_screen_widget_widget_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__home_screen_widget_widget_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__home_screen_widget_widget_id.c774dd74ef", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__home_screen_widget", "unique_analytics___platform_stg__home_screen_widget_widget_id"], "alias": "unique_analytics___platform_stg__home_screen_widget_widget_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082647.508384, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__home_screen_widget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__home_screen_widget"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.yml/unique_analytics___platform_stg__home_screen_widget_widget_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select widget_id from dev_dkruh1.analytics___platform_stg__home_screen_widget where widget_id is not null group by widget_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_id", "file_key_name": "models.analytics___platform_stg__home_screen_widget", "attached_node": "model.yoda.analytics___platform_stg__home_screen_widget"}, "test.yoda.not_null_analytics___platform_stg__home_screen_widget_widget_id.36729b0509": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "widget_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__home_screen_widget')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__home_screen_widget_widget_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__home_screen_widget_widget_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__home_screen_widget_widget_id.36729b0509", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__home_screen_widget", "not_null_analytics___platform_stg__home_screen_widget_widget_id"], "alias": "not_null_analytics___platform_stg__home_screen_widget_widget_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082647.5142057, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__home_screen_widget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__home_screen_widget"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.yml/not_null_analytics___platform_stg__home_screen_widget_widget_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__home_screen_widget where widget_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_id", "file_key_name": "models.analytics___platform_stg__home_screen_widget", "attached_node": "model.yoda.analytics___platform_stg__home_screen_widget"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_widget_1.a36d89f91d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__home_screen_widget')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_widget_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a38478a3819779a92b50c957bc83e157.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_widget_1.a36d89f91d", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__home_screen_widget", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_widget_1"], "alias": "dbt_expectations_expect_table__a38478a3819779a92b50c957bc83e157", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a38478a3819779a92b50c957bc83e157", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a38478a3819779a92b50c957bc83e157"}, "created_at": 1700082647.5202875, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a38478a3819779a92b50c957bc83e157\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__home_screen_widget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__home_screen_widget"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.yml/dbt_expectations_expect_table__a38478a3819779a92b50c957bc83e157.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__home_screen_widget\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__home_screen_widget", "attached_node": "model.yoda.analytics___platform_stg__home_screen_widget"}, "test.yoda.not_null_analytics___platform_stg__loyalty_pixel_widget_v_three_date.1bbd9480fe": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___platform_stg__loyalty_pixel_widget_v_three')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__loyalty_pixel_widget_v_three_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__572eccb979e76bcede75ba87d9d81232.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__loyalty_pixel_widget_v_three_date.1bbd9480fe", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__loyalty_pixel_widget_v_three", "not_null_analytics___platform_stg__loyalty_pixel_widget_v_three_date"], "alias": "not_null_analytics___platform__572eccb979e76bcede75ba87d9d81232", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__572eccb979e76bcede75ba87d9d81232", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__572eccb979e76bcede75ba87d9d81232"}, "created_at": 1700082647.5499735, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__572eccb979e76bcede75ba87d9d81232\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__loyalty_pixel_widget_v_three", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.yml/not_null_analytics___platform__572eccb979e76bcede75ba87d9d81232.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__loyalty_pixel_widget_v_three where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___platform_stg__loyalty_pixel_widget_v_three", "attached_node": "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three"}, "test.yoda.not_null_analytics___platform_stg__loyalty_pixel_widget_v_two_date.8544c6a31f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___platform_stg__loyalty_pixel_widget_v_two')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__loyalty_pixel_widget_v_two_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__7fb21201909644bfc5b42e1fb39bafda.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__loyalty_pixel_widget_v_two_date.8544c6a31f", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__loyalty_pixel_widget_v_two", "not_null_analytics___platform_stg__loyalty_pixel_widget_v_two_date"], "alias": "not_null_analytics___platform__7fb21201909644bfc5b42e1fb39bafda", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__7fb21201909644bfc5b42e1fb39bafda", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__7fb21201909644bfc5b42e1fb39bafda"}, "created_at": 1700082647.5793364, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__7fb21201909644bfc5b42e1fb39bafda\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__loyalty_pixel_widget_v_two", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.yml/not_null_analytics___platform__7fb21201909644bfc5b42e1fb39bafda.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__loyalty_pixel_widget_v_two where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___platform_stg__loyalty_pixel_widget_v_two", "attached_node": "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two"}, "test.yoda.unique_analytics___platform_stg__order_line_order_line_id.a4c39747a3": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_line_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__order_line')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__order_line_order_line_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__order_line_order_line_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__order_line_order_line_id.a4c39747a3", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__order_line", "unique_analytics___platform_stg__order_line_order_line_id"], "alias": "unique_analytics___platform_stg__order_line_order_line_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082647.6056437, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__order_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__order_line"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.yml/unique_analytics___platform_stg__order_line_order_line_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_line_id from dev_dkruh1.analytics___platform_stg__order_line where order_line_id is not null group by order_line_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_line_id", "file_key_name": "models.analytics___platform_stg__order_line", "attached_node": "model.yoda.analytics___platform_stg__order_line"}, "test.yoda.not_null_analytics___platform_stg__order_line_order_line_id.7c7a5630b9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_line_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__order_line')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__order_line_order_line_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__order_line_order_line_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__order_line_order_line_id.7c7a5630b9", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__order_line", "not_null_analytics___platform_stg__order_line_order_line_id"], "alias": "not_null_analytics___platform_stg__order_line_order_line_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082647.6116202, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__order_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__order_line"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.yml/not_null_analytics___platform_stg__order_line_order_line_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__order_line where order_line_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_line_id", "file_key_name": "models.analytics___platform_stg__order_line", "attached_node": "model.yoda.analytics___platform_stg__order_line"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__order_line_1.091595705b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__order_line')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__order_line_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c6d56ab837dbc6b7a16a09625048e849.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__order_line_1.091595705b", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__order_line", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__order_line_1"], "alias": "dbt_expectations_expect_table__c6d56ab837dbc6b7a16a09625048e849", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c6d56ab837dbc6b7a16a09625048e849", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c6d56ab837dbc6b7a16a09625048e849"}, "created_at": 1700082647.6177735, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c6d56ab837dbc6b7a16a09625048e849\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__order_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__order_line"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.yml/dbt_expectations_expect_table__c6d56ab837dbc6b7a16a09625048e849.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__order_line\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__order_line", "attached_node": "model.yoda.analytics___platform_stg__order_line"}, "test.yoda.unique_analytics___platform_stg__organization_organization_id.7b6bc51554": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__organization')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__organization_organization_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__organization_organization_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__organization_organization_id.7b6bc51554", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__organization", "unique_analytics___platform_stg__organization_organization_id"], "alias": "unique_analytics___platform_stg__organization_organization_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082647.6401565, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.yml/unique_analytics___platform_stg__organization_organization_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_id from dev_dkruh1.analytics___platform_stg__organization where organization_id is not null group by organization_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_id", "file_key_name": "models.analytics___platform_stg__organization", "attached_node": "model.yoda.analytics___platform_stg__organization"}, "test.yoda.not_null_analytics___platform_stg__organization_organization_id.2100e04b4f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__organization')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__organization_organization_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__organization_organization_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__organization_organization_id.2100e04b4f", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__organization", "not_null_analytics___platform_stg__organization_organization_id"], "alias": "not_null_analytics___platform_stg__organization_organization_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082647.6459284, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.yml/not_null_analytics___platform_stg__organization_organization_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__organization where organization_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_id", "file_key_name": "models.analytics___platform_stg__organization", "attached_node": "model.yoda.analytics___platform_stg__organization"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__organization_1.d0e2952f5d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__organization')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__organization_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6b59430561131967d638c93d80835359.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__organization_1.d0e2952f5d", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__organization", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__organization_1"], "alias": "dbt_expectations_expect_table__6b59430561131967d638c93d80835359", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6b59430561131967d638c93d80835359", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6b59430561131967d638c93d80835359"}, "created_at": 1700082647.6513383, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6b59430561131967d638c93d80835359\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.yml/dbt_expectations_expect_table__6b59430561131967d638c93d80835359.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__organization\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__organization", "attached_node": "model.yoda.analytics___platform_stg__organization"}, "test.yoda.unique_analytics___platform_stg__owner_feature_owner_feature_id.587b1de338": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "owner_feature_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__owner_feature_owner_feature_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__owner_feature_owner_feature_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__owner_feature_owner_feature_id.587b1de338", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "unique_analytics___platform_stg__owner_feature_owner_feature_id"], "alias": "unique_analytics___platform_stg__owner_feature_owner_feature_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082647.683048, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml/unique_analytics___platform_stg__owner_feature_owner_feature_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select owner_feature_id from dev_dkruh1.analytics___platform_stg__owner_feature where owner_feature_id is not null group by owner_feature_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_feature_id", "file_key_name": "models.analytics___platform_stg__owner_feature", "attached_node": "model.yoda.analytics___platform_stg__owner_feature"}, "test.yoda.not_null_analytics___platform_stg__owner_feature_owner_feature_id.4aaf610028": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_feature_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_feature_owner_feature_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__b3f55f88f245ace5e2845a4304ea9227.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_feature_owner_feature_id.4aaf610028", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "not_null_analytics___platform_stg__owner_feature_owner_feature_id"], "alias": "not_null_analytics___platform__b3f55f88f245ace5e2845a4304ea9227", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__b3f55f88f245ace5e2845a4304ea9227", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__b3f55f88f245ace5e2845a4304ea9227"}, "created_at": 1700082647.6887317, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__b3f55f88f245ace5e2845a4304ea9227\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml/not_null_analytics___platform__b3f55f88f245ace5e2845a4304ea9227.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_feature where owner_feature_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_feature_id", "file_key_name": "models.analytics___platform_stg__owner_feature", "attached_node": "model.yoda.analytics___platform_stg__owner_feature"}, "test.yoda.not_null_analytics___platform_stg__owner_feature_owner_type.8f38255e97": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_type", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_feature_owner_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__owner_feature_owner_type.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_feature_owner_type.8f38255e97", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "not_null_analytics___platform_stg__owner_feature_owner_type"], "alias": "not_null_analytics___platform_stg__owner_feature_owner_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082647.6947436, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml/not_null_analytics___platform_stg__owner_feature_owner_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_feature where owner_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_type", "file_key_name": "models.analytics___platform_stg__owner_feature", "attached_node": "model.yoda.analytics___platform_stg__owner_feature"}, "test.yoda.accepted_values_analytics___platform_stg__owner_feature_owner_type__Organization__User__Account.d683ac5172": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["Organization", "User", "Account"], "column_name": "owner_type", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_feature_owner_type__Organization__User__Account", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_83e66fa3acb01b449f5909d312f72564.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_feature_owner_type__Organization__User__Account.d683ac5172", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "accepted_values_analytics___platform_stg__owner_feature_owner_type__Organization__User__Account"], "alias": "accepted_values_analytics___pl_83e66fa3acb01b449f5909d312f72564", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_83e66fa3acb01b449f5909d312f72564", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_83e66fa3acb01b449f5909d312f72564"}, "created_at": 1700082647.7006528, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_83e66fa3acb01b449f5909d312f72564\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml/accepted_values_analytics___pl_83e66fa3acb01b449f5909d312f72564.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n owner_type as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_feature\n group by owner_type\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'Organization','User','Account'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_type", "file_key_name": "models.analytics___platform_stg__owner_feature", "attached_node": "model.yoda.analytics___platform_stg__owner_feature"}, "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_disabled__0__1.9903df57ab": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_disabled", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_feature_is_disabled__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_bc6b4c7dd83914d7e35780e6207f2747.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_disabled__0__1.9903df57ab", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "accepted_values_analytics___platform_stg__owner_feature_is_disabled__0__1"], "alias": "accepted_values_analytics___pl_bc6b4c7dd83914d7e35780e6207f2747", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_bc6b4c7dd83914d7e35780e6207f2747", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_bc6b4c7dd83914d7e35780e6207f2747"}, "created_at": 1700082647.7083766, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_bc6b4c7dd83914d7e35780e6207f2747\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml/accepted_values_analytics___pl_bc6b4c7dd83914d7e35780e6207f2747.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_disabled as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_feature\n group by is_disabled\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_disabled", "file_key_name": "models.analytics___platform_stg__owner_feature", "attached_node": "model.yoda.analytics___platform_stg__owner_feature"}, "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_user_enabled__0__1.4c98ff44f4": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_user_enabled", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_feature_is_user_enabled__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_b8d5bf96826308db4861f7c65ae57ccc.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_user_enabled__0__1.4c98ff44f4", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "accepted_values_analytics___platform_stg__owner_feature_is_user_enabled__0__1"], "alias": "accepted_values_analytics___pl_b8d5bf96826308db4861f7c65ae57ccc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_b8d5bf96826308db4861f7c65ae57ccc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_b8d5bf96826308db4861f7c65ae57ccc"}, "created_at": 1700082647.714949, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_b8d5bf96826308db4861f7c65ae57ccc\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml/accepted_values_analytics___pl_b8d5bf96826308db4861f7c65ae57ccc.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_user_enabled as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_feature\n group by is_user_enabled\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_user_enabled", "file_key_name": "models.analytics___platform_stg__owner_feature", "attached_node": "model.yoda.analytics___platform_stg__owner_feature"}, "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_floating__0__1.bc7d6927c5": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_floating", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_feature_is_floating__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_d150a6fd61bcb360fc7d90f66ab2d318.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_floating__0__1.bc7d6927c5", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "accepted_values_analytics___platform_stg__owner_feature_is_floating__0__1"], "alias": "accepted_values_analytics___pl_d150a6fd61bcb360fc7d90f66ab2d318", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_d150a6fd61bcb360fc7d90f66ab2d318", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_d150a6fd61bcb360fc7d90f66ab2d318"}, "created_at": 1700082647.721744, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_d150a6fd61bcb360fc7d90f66ab2d318\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml/accepted_values_analytics___pl_d150a6fd61bcb360fc7d90f66ab2d318.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_floating as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_feature\n group by is_floating\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_floating", "file_key_name": "models.analytics___platform_stg__owner_feature", "attached_node": "model.yoda.analytics___platform_stg__owner_feature"}, "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_organization_owner__0__1.588123fb4f": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_organization_owner", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_feature_is_organization_owner__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_6b386bb4bcf5308bdfef453f0fe4b077.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_organization_owner__0__1.588123fb4f", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "accepted_values_analytics___platform_stg__owner_feature_is_organization_owner__0__1"], "alias": "accepted_values_analytics___pl_6b386bb4bcf5308bdfef453f0fe4b077", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_6b386bb4bcf5308bdfef453f0fe4b077", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_6b386bb4bcf5308bdfef453f0fe4b077"}, "created_at": 1700082647.7304637, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_6b386bb4bcf5308bdfef453f0fe4b077\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml/accepted_values_analytics___pl_6b386bb4bcf5308bdfef453f0fe4b077.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_organization_owner as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_feature\n group by is_organization_owner\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_organization_owner", "file_key_name": "models.analytics___platform_stg__owner_feature", "attached_node": "model.yoda.analytics___platform_stg__owner_feature"}, "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_user_owner__0__1.3c74cd865b": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_user_owner", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_feature_is_user_owner__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_620c07a9f9841b63ce9a78ac9e892179.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_user_owner__0__1.3c74cd865b", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "accepted_values_analytics___platform_stg__owner_feature_is_user_owner__0__1"], "alias": "accepted_values_analytics___pl_620c07a9f9841b63ce9a78ac9e892179", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_620c07a9f9841b63ce9a78ac9e892179", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_620c07a9f9841b63ce9a78ac9e892179"}, "created_at": 1700082647.7382317, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_620c07a9f9841b63ce9a78ac9e892179\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml/accepted_values_analytics___pl_620c07a9f9841b63ce9a78ac9e892179.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_user_owner as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_feature\n group by is_user_owner\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_user_owner", "file_key_name": "models.analytics___platform_stg__owner_feature", "attached_node": "model.yoda.analytics___platform_stg__owner_feature"}, "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_store_owner__0__1.51b95a4089": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_store_owner", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_feature_is_store_owner__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_58eff0dcdd37bec4cb0924ac510587da.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_store_owner__0__1.51b95a4089", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "accepted_values_analytics___platform_stg__owner_feature_is_store_owner__0__1"], "alias": "accepted_values_analytics___pl_58eff0dcdd37bec4cb0924ac510587da", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_58eff0dcdd37bec4cb0924ac510587da", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_58eff0dcdd37bec4cb0924ac510587da"}, "created_at": 1700082647.747634, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_58eff0dcdd37bec4cb0924ac510587da\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml/accepted_values_analytics___pl_58eff0dcdd37bec4cb0924ac510587da.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_store_owner as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_feature\n group by is_store_owner\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_store_owner", "file_key_name": "models.analytics___platform_stg__owner_feature", "attached_node": "model.yoda.analytics___platform_stg__owner_feature"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_1.071e4e24d1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ffdd8b7b2115a2d0544793c3667b218d.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_1.071e4e24d1", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_1"], "alias": "dbt_expectations_expect_table__ffdd8b7b2115a2d0544793c3667b218d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ffdd8b7b2115a2d0544793c3667b218d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ffdd8b7b2115a2d0544793c3667b218d"}, "created_at": 1700082647.7560394, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ffdd8b7b2115a2d0544793c3667b218d\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.yml/dbt_expectations_expect_table__ffdd8b7b2115a2d0544793c3667b218d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__owner_feature\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__owner_feature", "attached_node": "model.yoda.analytics___platform_stg__owner_feature"}, "test.yoda.not_null_analytics___platform_stg__owner_feature_setting_owner_feature_id.a3bb30e58a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_feature_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature_setting')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_feature_setting_owner_feature_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__23298783a23a9d4f9e6df534549b7679.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_feature_setting_owner_feature_id.a3bb30e58a", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature_setting", "not_null_analytics___platform_stg__owner_feature_setting_owner_feature_id"], "alias": "not_null_analytics___platform__23298783a23a9d4f9e6df534549b7679", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__23298783a23a9d4f9e6df534549b7679", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__23298783a23a9d4f9e6df534549b7679"}, "created_at": 1700082647.7846382, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__23298783a23a9d4f9e6df534549b7679\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature_setting", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature_setting"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.yml/not_null_analytics___platform__23298783a23a9d4f9e6df534549b7679.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_feature_setting where owner_feature_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_feature_id", "file_key_name": "models.analytics___platform_stg__owner_feature_setting", "attached_node": "model.yoda.analytics___platform_stg__owner_feature_setting"}, "test.yoda.accepted_values_analytics___platform_stg__owner_feature_setting_is_floating__0__1.e60b90bad0": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_floating", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature_setting')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_feature_setting_is_floating__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_a9d258fb8d6d822a1c657181451ad716.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_feature_setting_is_floating__0__1.e60b90bad0", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature_setting", "accepted_values_analytics___platform_stg__owner_feature_setting_is_floating__0__1"], "alias": "accepted_values_analytics___pl_a9d258fb8d6d822a1c657181451ad716", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_a9d258fb8d6d822a1c657181451ad716", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_a9d258fb8d6d822a1c657181451ad716"}, "created_at": 1700082647.7911375, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_a9d258fb8d6d822a1c657181451ad716\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature_setting", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature_setting"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.yml/accepted_values_analytics___pl_a9d258fb8d6d822a1c657181451ad716.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_floating as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_feature_setting\n group by is_floating\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_floating", "file_key_name": "models.analytics___platform_stg__owner_feature_setting", "attached_node": "model.yoda.analytics___platform_stg__owner_feature_setting"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_setting_1.eb178ab17e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_feature_setting')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_setting_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3e72e267a1ab589f123a4c37182cdc01.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_setting_1.eb178ab17e", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_feature_setting", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_setting_1"], "alias": "dbt_expectations_expect_table__3e72e267a1ab589f123a4c37182cdc01", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3e72e267a1ab589f123a4c37182cdc01", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3e72e267a1ab589f123a4c37182cdc01"}, "created_at": 1700082647.7986693, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3e72e267a1ab589f123a4c37182cdc01\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_feature_setting", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_feature_setting"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.yml/dbt_expectations_expect_table__3e72e267a1ab589f123a4c37182cdc01.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__owner_feature_setting\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__owner_feature_setting", "attached_node": "model.yoda.analytics___platform_stg__owner_feature_setting"}, "test.yoda.unique_analytics___platform_stg__owner_plan_owner_plan_id.c3b5f11b5c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "owner_plan_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__owner_plan_owner_plan_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__owner_plan_owner_plan_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__owner_plan_owner_plan_id.c3b5f11b5c", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan", "unique_analytics___platform_stg__owner_plan_owner_plan_id"], "alias": "unique_analytics___platform_stg__owner_plan_owner_plan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082647.8278499, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml/unique_analytics___platform_stg__owner_plan_owner_plan_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select owner_plan_id from dev_dkruh1.analytics___platform_stg__owner_plan where owner_plan_id is not null group by owner_plan_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_plan_id", "file_key_name": "models.analytics___platform_stg__owner_plan", "attached_node": "model.yoda.analytics___platform_stg__owner_plan"}, "test.yoda.not_null_analytics___platform_stg__owner_plan_owner_plan_id.c86be5da5f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_plan_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_plan_owner_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__owner_plan_owner_plan_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_plan_owner_plan_id.c86be5da5f", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan", "not_null_analytics___platform_stg__owner_plan_owner_plan_id"], "alias": "not_null_analytics___platform_stg__owner_plan_owner_plan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082647.8370008, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml/not_null_analytics___platform_stg__owner_plan_owner_plan_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_plan where owner_plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_plan_id", "file_key_name": "models.analytics___platform_stg__owner_plan", "attached_node": "model.yoda.analytics___platform_stg__owner_plan"}, "test.yoda.not_null_analytics___platform_stg__owner_plan_owner_id.88599e48d0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_plan_owner_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__owner_plan_owner_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_plan_owner_id.88599e48d0", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan", "not_null_analytics___platform_stg__owner_plan_owner_id"], "alias": "not_null_analytics___platform_stg__owner_plan_owner_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082647.8437138, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml/not_null_analytics___platform_stg__owner_plan_owner_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_plan where owner_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_id", "file_key_name": "models.analytics___platform_stg__owner_plan", "attached_node": "model.yoda.analytics___platform_stg__owner_plan"}, "test.yoda.not_null_analytics___platform_stg__owner_plan_plan_id.a2f84269da": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_plan_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__owner_plan_plan_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_plan_plan_id.a2f84269da", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan", "not_null_analytics___platform_stg__owner_plan_plan_id"], "alias": "not_null_analytics___platform_stg__owner_plan_plan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082647.8506837, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml/not_null_analytics___platform_stg__owner_plan_plan_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_plan where plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___platform_stg__owner_plan", "attached_node": "model.yoda.analytics___platform_stg__owner_plan"}, "test.yoda.not_null_analytics___platform_stg__owner_plan_updated_at.ebf8832afc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_plan_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__owner_plan_updated_at.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_plan_updated_at.ebf8832afc", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan", "not_null_analytics___platform_stg__owner_plan_updated_at"], "alias": "not_null_analytics___platform_stg__owner_plan_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082647.8586423, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml/not_null_analytics___platform_stg__owner_plan_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_plan where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.analytics___platform_stg__owner_plan", "attached_node": "model.yoda.analytics___platform_stg__owner_plan"}, "test.yoda.accepted_values_analytics___platform_stg__owner_plan_is_organization_owner__0__1.0c9fe28cce": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_organization_owner", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_plan_is_organization_owner__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_bb9bc034ae3d7999004436e1514020f4.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_plan_is_organization_owner__0__1.0c9fe28cce", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan", "accepted_values_analytics___platform_stg__owner_plan_is_organization_owner__0__1"], "alias": "accepted_values_analytics___pl_bb9bc034ae3d7999004436e1514020f4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_bb9bc034ae3d7999004436e1514020f4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_bb9bc034ae3d7999004436e1514020f4"}, "created_at": 1700082647.8687522, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_bb9bc034ae3d7999004436e1514020f4\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml/accepted_values_analytics___pl_bb9bc034ae3d7999004436e1514020f4.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_organization_owner as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_plan\n group by is_organization_owner\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_organization_owner", "file_key_name": "models.analytics___platform_stg__owner_plan", "attached_node": "model.yoda.analytics___platform_stg__owner_plan"}, "test.yoda.accepted_values_analytics___platform_stg__owner_plan_is_store_owner__0__1.bdc41c1bc5": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_store_owner", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_plan_is_store_owner__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_62ecf30b3520f992cc1a394d867dd76f.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_plan_is_store_owner__0__1.bdc41c1bc5", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan", "accepted_values_analytics___platform_stg__owner_plan_is_store_owner__0__1"], "alias": "accepted_values_analytics___pl_62ecf30b3520f992cc1a394d867dd76f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_62ecf30b3520f992cc1a394d867dd76f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_62ecf30b3520f992cc1a394d867dd76f"}, "created_at": 1700082647.8761852, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_62ecf30b3520f992cc1a394d867dd76f\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml/accepted_values_analytics___pl_62ecf30b3520f992cc1a394d867dd76f.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_store_owner as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_plan\n group by is_store_owner\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_store_owner", "file_key_name": "models.analytics___platform_stg__owner_plan", "attached_node": "model.yoda.analytics___platform_stg__owner_plan"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_1.0de01ea6a4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f85cd40ccfb4b84cdfd59ef0ceabcf04.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_1.0de01ea6a4", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_1"], "alias": "dbt_expectations_expect_table__f85cd40ccfb4b84cdfd59ef0ceabcf04", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f85cd40ccfb4b84cdfd59ef0ceabcf04", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f85cd40ccfb4b84cdfd59ef0ceabcf04"}, "created_at": 1700082647.8839753, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f85cd40ccfb4b84cdfd59ef0ceabcf04\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.yml/dbt_expectations_expect_table__f85cd40ccfb4b84cdfd59ef0ceabcf04.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__owner_plan\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__owner_plan", "attached_node": "model.yoda.analytics___platform_stg__owner_plan"}, "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_owner_plan_id.9af3cb58e1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_plan_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_event_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_plan_event_details_owner_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__7ec8bbd58107699827f1a68463b4e026.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_owner_plan_id.9af3cb58e1", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_event_details", "not_null_analytics___platform_stg__owner_plan_event_details_owner_plan_id"], "alias": "not_null_analytics___platform__7ec8bbd58107699827f1a68463b4e026", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__7ec8bbd58107699827f1a68463b4e026", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__7ec8bbd58107699827f1a68463b4e026"}, "created_at": 1700082647.9171014, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__7ec8bbd58107699827f1a68463b4e026\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml/not_null_analytics___platform__7ec8bbd58107699827f1a68463b4e026.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_plan_event_details where owner_plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_plan_id", "file_key_name": "models.analytics___platform_stg__owner_plan_event_details", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_event_details"}, "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_owner_id.fafd22bead": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_event_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_plan_event_details_owner_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__70136156c6b964389637c1ec2da7328c.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_owner_id.fafd22bead", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_event_details", "not_null_analytics___platform_stg__owner_plan_event_details_owner_id"], "alias": "not_null_analytics___platform__70136156c6b964389637c1ec2da7328c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__70136156c6b964389637c1ec2da7328c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__70136156c6b964389637c1ec2da7328c"}, "created_at": 1700082647.9251974, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__70136156c6b964389637c1ec2da7328c\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml/not_null_analytics___platform__70136156c6b964389637c1ec2da7328c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_plan_event_details where owner_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_id", "file_key_name": "models.analytics___platform_stg__owner_plan_event_details", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_event_details"}, "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_plan_id.75d74c453e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_event_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_plan_event_details_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__2065c28600313ee7ffae57496650162c.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_plan_id.75d74c453e", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_event_details", "not_null_analytics___platform_stg__owner_plan_event_details_plan_id"], "alias": "not_null_analytics___platform__2065c28600313ee7ffae57496650162c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__2065c28600313ee7ffae57496650162c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__2065c28600313ee7ffae57496650162c"}, "created_at": 1700082647.9344785, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__2065c28600313ee7ffae57496650162c\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml/not_null_analytics___platform__2065c28600313ee7ffae57496650162c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_plan_event_details where plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___platform_stg__owner_plan_event_details", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_event_details"}, "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_category_id.d494305ee7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "category_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_event_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_plan_event_details_category_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__1251faa9a5e16ca30ac94d7663c1618c.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_category_id.d494305ee7", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_event_details", "not_null_analytics___platform_stg__owner_plan_event_details_category_id"], "alias": "not_null_analytics___platform__1251faa9a5e16ca30ac94d7663c1618c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__1251faa9a5e16ca30ac94d7663c1618c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__1251faa9a5e16ca30ac94d7663c1618c"}, "created_at": 1700082647.9420733, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__1251faa9a5e16ca30ac94d7663c1618c\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml/not_null_analytics___platform__1251faa9a5e16ca30ac94d7663c1618c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_plan_event_details where category_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "category_id", "file_key_name": "models.analytics___platform_stg__owner_plan_event_details", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_event_details"}, "test.yoda.accepted_values_analytics___platform_stg__owner_plan_event_details_is_organization_owner__0__1.5e2a6959c0": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_organization_owner", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_event_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_plan_event_details_is_organization_owner__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_c0fd8215357c5cd176f3347732ecf6d0.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_plan_event_details_is_organization_owner__0__1.5e2a6959c0", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_event_details", "accepted_values_analytics___platform_stg__owner_plan_event_details_is_organization_owner__0__1"], "alias": "accepted_values_analytics___pl_c0fd8215357c5cd176f3347732ecf6d0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_c0fd8215357c5cd176f3347732ecf6d0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_c0fd8215357c5cd176f3347732ecf6d0"}, "created_at": 1700082647.952922, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_c0fd8215357c5cd176f3347732ecf6d0\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml/accepted_values_analytics___pl_c0fd8215357c5cd176f3347732ecf6d0.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_organization_owner as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_plan_event_details\n group by is_organization_owner\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_organization_owner", "file_key_name": "models.analytics___platform_stg__owner_plan_event_details", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_event_details"}, "test.yoda.accepted_values_analytics___platform_stg__owner_plan_event_details_is_store_owner__0__1.179a1acd0c": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_store_owner", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_event_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___platform_stg__owner_plan_event_details_is_store_owner__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___pl_dc468f48aa5a887f250d0180fb702758.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml", "unique_id": "test.yoda.accepted_values_analytics___platform_stg__owner_plan_event_details_is_store_owner__0__1.179a1acd0c", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_event_details", "accepted_values_analytics___platform_stg__owner_plan_event_details_is_store_owner__0__1"], "alias": "accepted_values_analytics___pl_dc468f48aa5a887f250d0180fb702758", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___pl_dc468f48aa5a887f250d0180fb702758", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___pl_dc468f48aa5a887f250d0180fb702758"}, "created_at": 1700082647.9650714, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___pl_dc468f48aa5a887f250d0180fb702758\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml/accepted_values_analytics___pl_dc468f48aa5a887f250d0180fb702758.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_store_owner as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___platform_stg__owner_plan_event_details\n group by is_store_owner\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_store_owner", "file_key_name": "models.analytics___platform_stg__owner_plan_event_details", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_event_details"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_event_details_1.00ff23adb4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_event_details')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_event_details_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2d9c9d9e301fbb641378d7dc28c89848.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_event_details_1.00ff23adb4", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_event_details", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_event_details_1"], "alias": "dbt_expectations_expect_table__2d9c9d9e301fbb641378d7dc28c89848", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2d9c9d9e301fbb641378d7dc28c89848", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2d9c9d9e301fbb641378d7dc28c89848"}, "created_at": 1700082647.9726784, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2d9c9d9e301fbb641378d7dc28c89848\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml/dbt_expectations_expect_table__2d9c9d9e301fbb641378d7dc28c89848.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__owner_plan_event_details\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__owner_plan_event_details", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_event_details"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__owner_plan_event_details_owner_id__plan_id__plan_event_created_at__is_organization_owner.02a5c95dfa": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["owner_id", "plan_id", "plan_event_created_at", "is_organization_owner"], "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_event_details')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform_stg__owner_plan_event_details_owner_id__plan_id__plan_event_created_at__is_organization_owner", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_345dd8c4235e223daaeb650572d5a74b.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__owner_plan_event_details_owner_id__plan_id__plan_event_created_at__is_organization_owner.02a5c95dfa", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_event_details", "dbt_utils_unique_combination_of_columns_analytics___platform_stg__owner_plan_event_details_owner_id__plan_id__plan_event_created_at__is_organization_owner"], "alias": "dbt_utils_unique_combination_o_345dd8c4235e223daaeb650572d5a74b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_345dd8c4235e223daaeb650572d5a74b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_345dd8c4235e223daaeb650572d5a74b"}, "created_at": 1700082647.979622, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_345dd8c4235e223daaeb650572d5a74b\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.yml/dbt_utils_unique_combination_o_345dd8c4235e223daaeb650572d5a74b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n owner_id, plan_id, plan_event_created_at, is_organization_owner\n from dev_dkruh1.analytics___platform_stg__owner_plan_event_details\n group by owner_id, plan_id, plan_event_created_at, is_organization_owner\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__owner_plan_event_details", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_event_details"}, "test.yoda.unique_analytics___platform_stg__owner_plan_history_owner_plan_id.bd9ed790ab": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "owner_plan_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__owner_plan_history_owner_plan_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_st_51cdbdc7433a2ae224f9bdb813471745.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__owner_plan_history_owner_plan_id.bd9ed790ab", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_history", "unique_analytics___platform_stg__owner_plan_history_owner_plan_id"], "alias": "unique_analytics___platform_st_51cdbdc7433a2ae224f9bdb813471745", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform_st_51cdbdc7433a2ae224f9bdb813471745", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform_st_51cdbdc7433a2ae224f9bdb813471745"}, "created_at": 1700082648.0087984, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform_st_51cdbdc7433a2ae224f9bdb813471745\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.yml/unique_analytics___platform_st_51cdbdc7433a2ae224f9bdb813471745.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select owner_plan_id from dev_dkruh1.analytics___platform_stg__owner_plan_history where owner_plan_id is not null group by owner_plan_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_plan_id", "file_key_name": "models.analytics___platform_stg__owner_plan_history", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_history"}, "test.yoda.not_null_analytics___platform_stg__owner_plan_history_owner_plan_id.7d7adade79": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_plan_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_plan_history_owner_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__c06df08483fd72b7c3e4696401fc845d.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_plan_history_owner_plan_id.7d7adade79", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_history", "not_null_analytics___platform_stg__owner_plan_history_owner_plan_id"], "alias": "not_null_analytics___platform__c06df08483fd72b7c3e4696401fc845d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__c06df08483fd72b7c3e4696401fc845d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__c06df08483fd72b7c3e4696401fc845d"}, "created_at": 1700082648.0153604, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__c06df08483fd72b7c3e4696401fc845d\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.yml/not_null_analytics___platform__c06df08483fd72b7c3e4696401fc845d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_plan_history where owner_plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_plan_id", "file_key_name": "models.analytics___platform_stg__owner_plan_history", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_history"}, "test.yoda.not_null_analytics___platform_stg__owner_plan_history_owner_id.d49061c6b6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_plan_history_owner_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__owner_plan_history_owner_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_plan_history_owner_id.d49061c6b6", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_history", "not_null_analytics___platform_stg__owner_plan_history_owner_id"], "alias": "not_null_analytics___platform_stg__owner_plan_history_owner_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082648.0218792, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.yml/not_null_analytics___platform_stg__owner_plan_history_owner_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_plan_history where owner_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_id", "file_key_name": "models.analytics___platform_stg__owner_plan_history", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_history_1.be59960d3a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_history')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_history_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0504bb5328b350061940df963a3cf5db.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_history_1.be59960d3a", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_history", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_history_1"], "alias": "dbt_expectations_expect_table__0504bb5328b350061940df963a3cf5db", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0504bb5328b350061940df963a3cf5db", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0504bb5328b350061940df963a3cf5db"}, "created_at": 1700082648.027692, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0504bb5328b350061940df963a3cf5db\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.yml/dbt_expectations_expect_table__0504bb5328b350061940df963a3cf5db.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__owner_plan_history\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__owner_plan_history", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_history"}, "test.yoda.not_null_analytics___platform_stg__owner_plan_snapshot_owner_plan_id.94f131116a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_plan_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__owner_plan_snapshot_owner_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__899ae5a1f0805359b3ae6a344500a04c.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__owner_plan_snapshot_owner_plan_id.94f131116a", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_snapshot", "not_null_analytics___platform_stg__owner_plan_snapshot_owner_plan_id"], "alias": "not_null_analytics___platform__899ae5a1f0805359b3ae6a344500a04c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__899ae5a1f0805359b3ae6a344500a04c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__899ae5a1f0805359b3ae6a344500a04c"}, "created_at": 1700082648.0541923, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__899ae5a1f0805359b3ae6a344500a04c\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.yml/not_null_analytics___platform__899ae5a1f0805359b3ae6a344500a04c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__owner_plan_snapshot where owner_plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_plan_id", "file_key_name": "models.analytics___platform_stg__owner_plan_snapshot", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_snapshot"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_snapshot_1.682aa911c8": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__owner_plan_snapshot')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_snapshot_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e573297f0edb2ef0e272da3d77440563.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_snapshot_1.682aa911c8", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__owner_plan_snapshot", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_snapshot_1"], "alias": "dbt_expectations_expect_table__e573297f0edb2ef0e272da3d77440563", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e573297f0edb2ef0e272da3d77440563", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e573297f0edb2ef0e272da3d77440563"}, "created_at": 1700082648.0607371, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e573297f0edb2ef0e272da3d77440563\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__owner_plan_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.yml/dbt_expectations_expect_table__e573297f0edb2ef0e272da3d77440563.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__owner_plan_snapshot\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__owner_plan_snapshot", "attached_node": "model.yoda.analytics___platform_stg__owner_plan_snapshot"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_1.66dd98c5b1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__plan')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c9d0e11297f102871109958f740ea777.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_1.66dd98c5b1", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_1"], "alias": "dbt_expectations_expect_table__c9d0e11297f102871109958f740ea777", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c9d0e11297f102871109958f740ea777", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c9d0e11297f102871109958f740ea777"}, "created_at": 1700082648.0839152, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c9d0e11297f102871109958f740ea777\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.yml/dbt_expectations_expect_table__c9d0e11297f102871109958f740ea777.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__plan\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__plan", "attached_node": "model.yoda.analytics___platform_stg__plan"}, "test.yoda.unique_analytics___platform_stg__plan_category_category_id.c6d7e9443a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "category_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__plan_category')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__plan_category_category_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__plan_category_category_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__plan_category_category_id.c6d7e9443a", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan_category", "unique_analytics___platform_stg__plan_category_category_id"], "alias": "unique_analytics___platform_stg__plan_category_category_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082648.1052835, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__plan_category", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__plan_category"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.yml/unique_analytics___platform_stg__plan_category_category_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select category_id from dev_dkruh1.analytics___platform_stg__plan_category where category_id is not null group by category_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "category_id", "file_key_name": "models.analytics___platform_stg__plan_category", "attached_node": "model.yoda.analytics___platform_stg__plan_category"}, "test.yoda.not_null_analytics___platform_stg__plan_category_category_id.b6dc2b7233": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "category_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__plan_category')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__plan_category_category_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__plan_category_category_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__plan_category_category_id.b6dc2b7233", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan_category", "not_null_analytics___platform_stg__plan_category_category_id"], "alias": "not_null_analytics___platform_stg__plan_category_category_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082648.1119583, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__plan_category", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__plan_category"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.yml/not_null_analytics___platform_stg__plan_category_category_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__plan_category where category_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "category_id", "file_key_name": "models.analytics___platform_stg__plan_category", "attached_node": "model.yoda.analytics___platform_stg__plan_category"}, "test.yoda.not_null_analytics___platform_stg__plan_category_category_name.b797e1ead5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "category_name", "model": "{{ get_where_subquery(ref('analytics___platform_stg__plan_category')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__plan_category_category_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__plan_category_category_name.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__plan_category_category_name.b797e1ead5", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan_category", "not_null_analytics___platform_stg__plan_category_category_name"], "alias": "not_null_analytics___platform_stg__plan_category_category_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082648.1177652, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__plan_category", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__plan_category"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.yml/not_null_analytics___platform_stg__plan_category_category_name.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__plan_category where category_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "category_name", "file_key_name": "models.analytics___platform_stg__plan_category", "attached_node": "model.yoda.analytics___platform_stg__plan_category"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_category_1.150111d125": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__plan_category')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_category_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__9017e964888f06710cc36d2190db9c45.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_category_1.150111d125", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan_category", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_category_1"], "alias": "dbt_expectations_expect_table__9017e964888f06710cc36d2190db9c45", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__9017e964888f06710cc36d2190db9c45", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__9017e964888f06710cc36d2190db9c45"}, "created_at": 1700082648.1234815, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__9017e964888f06710cc36d2190db9c45\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__plan_category", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__plan_category"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.yml/dbt_expectations_expect_table__9017e964888f06710cc36d2190db9c45.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__plan_category\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__plan_category", "attached_node": "model.yoda.analytics___platform_stg__plan_category"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_1.cbb1dbbd68": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__plan_tag')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e3e3ef1e3bd376a23f80bec1792ab5f4.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_1.cbb1dbbd68", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan_tag", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_1"], "alias": "dbt_expectations_expect_table__e3e3ef1e3bd376a23f80bec1792ab5f4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e3e3ef1e3bd376a23f80bec1792ab5f4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e3e3ef1e3bd376a23f80bec1792ab5f4"}, "created_at": 1700082648.146046, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e3e3ef1e3bd376a23f80bec1792ab5f4\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__plan_tag", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__plan_tag"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.yml/dbt_expectations_expect_table__e3e3ef1e3bd376a23f80bec1792ab5f4.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__plan_tag\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__plan_tag", "attached_node": "model.yoda.analytics___platform_stg__plan_tag"}, "test.yoda.unique_analytics___platform_stg__plan_tag_type_plan_tag_type_id.6fab2c7c03": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "plan_tag_type_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__plan_tag_type')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__plan_tag_type_plan_tag_type_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__plan_tag_type_plan_tag_type_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__plan_tag_type_plan_tag_type_id.6fab2c7c03", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan_tag_type", "unique_analytics___platform_stg__plan_tag_type_plan_tag_type_id"], "alias": "unique_analytics___platform_stg__plan_tag_type_plan_tag_type_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082648.1688292, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__plan_tag_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__plan_tag_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.yml/unique_analytics___platform_stg__plan_tag_type_plan_tag_type_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select plan_tag_type_id from dev_dkruh1.analytics___platform_stg__plan_tag_type where plan_tag_type_id is not null group by plan_tag_type_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_tag_type_id", "file_key_name": "models.analytics___platform_stg__plan_tag_type", "attached_node": "model.yoda.analytics___platform_stg__plan_tag_type"}, "test.yoda.not_null_analytics___platform_stg__plan_tag_type_plan_tag_type_id.71a98514ee": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_tag_type_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__plan_tag_type')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__plan_tag_type_plan_tag_type_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__ec1b98763a4b69ae84dd1b343a88c6b9.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__plan_tag_type_plan_tag_type_id.71a98514ee", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan_tag_type", "not_null_analytics___platform_stg__plan_tag_type_plan_tag_type_id"], "alias": "not_null_analytics___platform__ec1b98763a4b69ae84dd1b343a88c6b9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__ec1b98763a4b69ae84dd1b343a88c6b9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__ec1b98763a4b69ae84dd1b343a88c6b9"}, "created_at": 1700082648.174399, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__ec1b98763a4b69ae84dd1b343a88c6b9\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__plan_tag_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__plan_tag_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.yml/not_null_analytics___platform__ec1b98763a4b69ae84dd1b343a88c6b9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__plan_tag_type where plan_tag_type_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_tag_type_id", "file_key_name": "models.analytics___platform_stg__plan_tag_type", "attached_node": "model.yoda.analytics___platform_stg__plan_tag_type"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_type_1.cf8b2a102f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__plan_tag_type')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_type_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__67b6e0a6edf69767608e9a64027fd775.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_type_1.cf8b2a102f", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__plan_tag_type", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_type_1"], "alias": "dbt_expectations_expect_table__67b6e0a6edf69767608e9a64027fd775", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__67b6e0a6edf69767608e9a64027fd775", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__67b6e0a6edf69767608e9a64027fd775"}, "created_at": 1700082648.1803973, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__67b6e0a6edf69767608e9a64027fd775\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__plan_tag_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__plan_tag_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.yml/dbt_expectations_expect_table__67b6e0a6edf69767608e9a64027fd775.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__plan_tag_type\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__plan_tag_type", "attached_node": "model.yoda.analytics___platform_stg__plan_tag_type"}, "test.yoda.unique_analytics___platform_stg__platform_type_platform_id.01dab06a26": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "platform_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__platform_type')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__platform_type_platform_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__platform_type_platform_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__platform_type_platform_id.01dab06a26", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__platform_type", "unique_analytics___platform_stg__platform_type_platform_id"], "alias": "unique_analytics___platform_stg__platform_type_platform_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082648.2022772, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__platform_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__platform_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.yml/unique_analytics___platform_stg__platform_type_platform_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select platform_id from dev_dkruh1.analytics___platform_stg__platform_type where platform_id is not null group by platform_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "platform_id", "file_key_name": "models.analytics___platform_stg__platform_type", "attached_node": "model.yoda.analytics___platform_stg__platform_type"}, "test.yoda.not_null_analytics___platform_stg__platform_type_platform_id.bd273dfebc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "platform_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__platform_type')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__platform_type_platform_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__platform_type_platform_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__platform_type_platform_id.bd273dfebc", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__platform_type", "not_null_analytics___platform_stg__platform_type_platform_id"], "alias": "not_null_analytics___platform_stg__platform_type_platform_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082648.2098844, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__platform_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__platform_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.yml/not_null_analytics___platform_stg__platform_type_platform_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__platform_type where platform_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "platform_id", "file_key_name": "models.analytics___platform_stg__platform_type", "attached_node": "model.yoda.analytics___platform_stg__platform_type"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__platform_type_1.773fe10dc6": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__platform_type')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__platform_type_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3c55d437c6a0fd2cdeb16dd57991772c.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__platform_type_1.773fe10dc6", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__platform_type", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__platform_type_1"], "alias": "dbt_expectations_expect_table__3c55d437c6a0fd2cdeb16dd57991772c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3c55d437c6a0fd2cdeb16dd57991772c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3c55d437c6a0fd2cdeb16dd57991772c"}, "created_at": 1700082648.2161114, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3c55d437c6a0fd2cdeb16dd57991772c\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__platform_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__platform_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.yml/dbt_expectations_expect_table__3c55d437c6a0fd2cdeb16dd57991772c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__platform_type\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__platform_type", "attached_node": "model.yoda.analytics___platform_stg__platform_type"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__product_1.54aa67c1e8": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__product')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__product_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ebeb13f96bdf234447c73af3e6869240.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__product_1.54aa67c1e8", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__product", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__product_1"], "alias": "dbt_expectations_expect_table__ebeb13f96bdf234447c73af3e6869240", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ebeb13f96bdf234447c73af3e6869240", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ebeb13f96bdf234447c73af3e6869240"}, "created_at": 1700082648.2423985, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ebeb13f96bdf234447c73af3e6869240\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__product"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.yml/dbt_expectations_expect_table__ebeb13f96bdf234447c73af3e6869240.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__product\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__product", "attached_node": "model.yoda.analytics___platform_stg__product"}, "test.yoda.unique_analytics___platform_stg__question_question_id.0b7a776845": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "question_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__question')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__question_question_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__question_question_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__question_question_id.0b7a776845", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__question", "unique_analytics___platform_stg__question_question_id"], "alias": "unique_analytics___platform_stg__question_question_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082648.2736905, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__question", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__question"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.yml/unique_analytics___platform_stg__question_question_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select question_id from dev_dkruh1.analytics___platform_stg__question where question_id is not null group by question_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "question_id", "file_key_name": "models.analytics___platform_stg__question", "attached_node": "model.yoda.analytics___platform_stg__question"}, "test.yoda.not_null_analytics___platform_stg__question_question_id.a2b90e39a8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "question_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__question')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__question_question_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__question_question_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__question_question_id.a2b90e39a8", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__question", "not_null_analytics___platform_stg__question_question_id"], "alias": "not_null_analytics___platform_stg__question_question_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082648.27973, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__question", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__question"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.yml/not_null_analytics___platform_stg__question_question_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__question where question_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "question_id", "file_key_name": "models.analytics___platform_stg__question", "attached_node": "model.yoda.analytics___platform_stg__question"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__question_1.cd917941be": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__question')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__question_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__56c4f55d3f604cbd1ca86d332393b7a4.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__question_1.cd917941be", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__question", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__question_1"], "alias": "dbt_expectations_expect_table__56c4f55d3f604cbd1ca86d332393b7a4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__56c4f55d3f604cbd1ca86d332393b7a4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__56c4f55d3f604cbd1ca86d332393b7a4"}, "created_at": 1700082648.2853768, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__56c4f55d3f604cbd1ca86d332393b7a4\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__question", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__question"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.yml/dbt_expectations_expect_table__56c4f55d3f604cbd1ca86d332393b7a4.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__question\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__question", "attached_node": "model.yoda.analytics___platform_stg__question"}, "test.yoda.unique_analytics___platform_stg__segment_account_created_event_id.1fa7cb0790": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_account_created')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__segment_account_created_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_st_9109d37f711268b9db642dc0a71e2c4b.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__segment_account_created_event_id.1fa7cb0790", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_account_created", "unique_analytics___platform_stg__segment_account_created_event_id"], "alias": "unique_analytics___platform_st_9109d37f711268b9db642dc0a71e2c4b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform_st_9109d37f711268b9db642dc0a71e2c4b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform_st_9109d37f711268b9db642dc0a71e2c4b"}, "created_at": 1700082648.3111181, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform_st_9109d37f711268b9db642dc0a71e2c4b\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_account_created", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_account_created"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.yml/unique_analytics___platform_st_9109d37f711268b9db642dc0a71e2c4b.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___platform_stg__segment_account_created where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_account_created", "attached_node": "model.yoda.analytics___platform_stg__segment_account_created"}, "test.yoda.not_null_analytics___platform_stg__segment_account_created_event_id.55bbe22a39": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_account_created')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_account_created_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__7349c66b16c95e8f594cc1caa9a43026.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_account_created_event_id.55bbe22a39", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_account_created", "not_null_analytics___platform_stg__segment_account_created_event_id"], "alias": "not_null_analytics___platform__7349c66b16c95e8f594cc1caa9a43026", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__7349c66b16c95e8f594cc1caa9a43026", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__7349c66b16c95e8f594cc1caa9a43026"}, "created_at": 1700082648.318009, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__7349c66b16c95e8f594cc1caa9a43026\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_account_created", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_account_created"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.yml/not_null_analytics___platform__7349c66b16c95e8f594cc1caa9a43026.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_account_created where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_account_created", "attached_node": "model.yoda.analytics___platform_stg__segment_account_created"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_account_created_1.9f7d6d550d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_account_created')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_account_created_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__666f271543588aed1c02b4c3278e3f49.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_account_created_1.9f7d6d550d", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_account_created", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_account_created_1"], "alias": "dbt_expectations_expect_table__666f271543588aed1c02b4c3278e3f49", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__666f271543588aed1c02b4c3278e3f49", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__666f271543588aed1c02b4c3278e3f49"}, "created_at": 1700082648.3239176, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__666f271543588aed1c02b4c3278e3f49\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_account_created", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_account_created"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.yml/dbt_expectations_expect_table__666f271543588aed1c02b4c3278e3f49.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_account_created\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_account_created", "attached_node": "model.yoda.analytics___platform_stg__segment_account_created"}, "test.yoda.unique_analytics___platform_stg__segment_activation_step_event_id.152d3eadc7": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_activation_step')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__segment_activation_step_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_st_d9c2b8891513c7e2f771a029f073f0d6.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__segment_activation_step_event_id.152d3eadc7", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_activation_step", "unique_analytics___platform_stg__segment_activation_step_event_id"], "alias": "unique_analytics___platform_st_d9c2b8891513c7e2f771a029f073f0d6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform_st_d9c2b8891513c7e2f771a029f073f0d6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform_st_d9c2b8891513c7e2f771a029f073f0d6"}, "created_at": 1700082648.3507833, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform_st_d9c2b8891513c7e2f771a029f073f0d6\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_activation_step", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_activation_step"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.yml/unique_analytics___platform_st_d9c2b8891513c7e2f771a029f073f0d6.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___platform_stg__segment_activation_step where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_activation_step", "attached_node": "model.yoda.analytics___platform_stg__segment_activation_step"}, "test.yoda.not_null_analytics___platform_stg__segment_activation_step_event_id.22c8d7d6c4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_activation_step')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_activation_step_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__27d72ad650612918de842ec1e19a3bd9.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_activation_step_event_id.22c8d7d6c4", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_activation_step", "not_null_analytics___platform_stg__segment_activation_step_event_id"], "alias": "not_null_analytics___platform__27d72ad650612918de842ec1e19a3bd9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__27d72ad650612918de842ec1e19a3bd9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__27d72ad650612918de842ec1e19a3bd9"}, "created_at": 1700082648.3574889, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__27d72ad650612918de842ec1e19a3bd9\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_activation_step", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_activation_step"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.yml/not_null_analytics___platform__27d72ad650612918de842ec1e19a3bd9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_activation_step where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_activation_step", "attached_node": "model.yoda.analytics___platform_stg__segment_activation_step"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_activation_step_1.bb810fb45e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_activation_step')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_activation_step_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__961d9801a488e0e2dd728af5b795705a.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_activation_step_1.bb810fb45e", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_activation_step", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_activation_step_1"], "alias": "dbt_expectations_expect_table__961d9801a488e0e2dd728af5b795705a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__961d9801a488e0e2dd728af5b795705a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__961d9801a488e0e2dd728af5b795705a"}, "created_at": 1700082648.3641882, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__961d9801a488e0e2dd728af5b795705a\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_activation_step", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_activation_step"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.yml/dbt_expectations_expect_table__961d9801a488e0e2dd728af5b795705a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_activation_step\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_activation_step", "attached_node": "model.yoda.analytics___platform_stg__segment_activation_step"}, "test.yoda.unique_analytics___platform_stg__segment_app_install_completed_event_id.3c8f5c9dee": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_app_install_completed')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__segment_app_install_completed_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_st_d43cc9904f5badf7508594cb3b03d784.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__segment_app_install_completed_event_id.3c8f5c9dee", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_app_install_completed", "unique_analytics___platform_stg__segment_app_install_completed_event_id"], "alias": "unique_analytics___platform_st_d43cc9904f5badf7508594cb3b03d784", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform_st_d43cc9904f5badf7508594cb3b03d784", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform_st_d43cc9904f5badf7508594cb3b03d784"}, "created_at": 1700082648.3902004, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform_st_d43cc9904f5badf7508594cb3b03d784\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_app_install_completed", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_app_install_completed"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.yml/unique_analytics___platform_st_d43cc9904f5badf7508594cb3b03d784.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___platform_stg__segment_app_install_completed where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_app_install_completed", "attached_node": "model.yoda.analytics___platform_stg__segment_app_install_completed"}, "test.yoda.not_null_analytics___platform_stg__segment_app_install_completed_event_id.5f53bf6dc2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_app_install_completed')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_app_install_completed_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__424ed5a8cc3504c40fce312b8790e7a2.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_app_install_completed_event_id.5f53bf6dc2", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_app_install_completed", "not_null_analytics___platform_stg__segment_app_install_completed_event_id"], "alias": "not_null_analytics___platform__424ed5a8cc3504c40fce312b8790e7a2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__424ed5a8cc3504c40fce312b8790e7a2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__424ed5a8cc3504c40fce312b8790e7a2"}, "created_at": 1700082648.396267, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__424ed5a8cc3504c40fce312b8790e7a2\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_app_install_completed", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_app_install_completed"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.yml/not_null_analytics___platform__424ed5a8cc3504c40fce312b8790e7a2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_app_install_completed where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_app_install_completed", "attached_node": "model.yoda.analytics___platform_stg__segment_app_install_completed"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_install_completed_1.dbe3d598d6": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_app_install_completed')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_install_completed_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__9928f3e78a384f65152cf8a61dcc6db6.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_install_completed_1.dbe3d598d6", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_app_install_completed", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_install_completed_1"], "alias": "dbt_expectations_expect_table__9928f3e78a384f65152cf8a61dcc6db6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__9928f3e78a384f65152cf8a61dcc6db6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__9928f3e78a384f65152cf8a61dcc6db6"}, "created_at": 1700082648.402769, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__9928f3e78a384f65152cf8a61dcc6db6\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_app_install_completed", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_app_install_completed"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.yml/dbt_expectations_expect_table__9928f3e78a384f65152cf8a61dcc6db6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_app_install_completed\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_app_install_completed", "attached_node": "model.yoda.analytics___platform_stg__segment_app_install_completed"}, "test.yoda.unique_analytics___platform_stg__segment_app_uninstalled_event_id.87acab11bc": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_app_uninstalled')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__segment_app_uninstalled_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_st_533c8b6b9393da9e1b7c5dd1aeb0c737.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__segment_app_uninstalled_event_id.87acab11bc", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_app_uninstalled", "unique_analytics___platform_stg__segment_app_uninstalled_event_id"], "alias": "unique_analytics___platform_st_533c8b6b9393da9e1b7c5dd1aeb0c737", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform_st_533c8b6b9393da9e1b7c5dd1aeb0c737", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform_st_533c8b6b9393da9e1b7c5dd1aeb0c737"}, "created_at": 1700082648.43123, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform_st_533c8b6b9393da9e1b7c5dd1aeb0c737\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_app_uninstalled", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_app_uninstalled"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.yml/unique_analytics___platform_st_533c8b6b9393da9e1b7c5dd1aeb0c737.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___platform_stg__segment_app_uninstalled where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_app_uninstalled", "attached_node": "model.yoda.analytics___platform_stg__segment_app_uninstalled"}, "test.yoda.not_null_analytics___platform_stg__segment_app_uninstalled_event_id.e48714f579": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_app_uninstalled')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_app_uninstalled_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__304c136e2cedd9d97a05e1144eb4c699.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_app_uninstalled_event_id.e48714f579", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_app_uninstalled", "not_null_analytics___platform_stg__segment_app_uninstalled_event_id"], "alias": "not_null_analytics___platform__304c136e2cedd9d97a05e1144eb4c699", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__304c136e2cedd9d97a05e1144eb4c699", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__304c136e2cedd9d97a05e1144eb4c699"}, "created_at": 1700082648.4377477, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__304c136e2cedd9d97a05e1144eb4c699\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_app_uninstalled", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_app_uninstalled"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.yml/not_null_analytics___platform__304c136e2cedd9d97a05e1144eb4c699.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_app_uninstalled where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_app_uninstalled", "attached_node": "model.yoda.analytics___platform_stg__segment_app_uninstalled"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_uninstalled_1.f8c67106e7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_app_uninstalled')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_uninstalled_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7447a9ff75604fb0d8b8690624e9e1e9.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_uninstalled_1.f8c67106e7", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_app_uninstalled", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_uninstalled_1"], "alias": "dbt_expectations_expect_table__7447a9ff75604fb0d8b8690624e9e1e9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7447a9ff75604fb0d8b8690624e9e1e9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7447a9ff75604fb0d8b8690624e9e1e9"}, "created_at": 1700082648.4443054, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7447a9ff75604fb0d8b8690624e9e1e9\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_app_uninstalled", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_app_uninstalled"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.yml/dbt_expectations_expect_table__7447a9ff75604fb0d8b8690624e9e1e9.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_app_uninstalled\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_app_uninstalled", "attached_node": "model.yoda.analytics___platform_stg__segment_app_uninstalled"}, "test.yoda.unique_analytics___platform_stg__segment_b_to_b_event_id.05b5e96242": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_b_to_b')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__segment_b_to_b_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__segment_b_to_b_event_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__segment_b_to_b_event_id.05b5e96242", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_b_to_b", "unique_analytics___platform_stg__segment_b_to_b_event_id"], "alias": "unique_analytics___platform_stg__segment_b_to_b_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082648.4735613, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_b_to_b", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_b_to_b"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.yml/unique_analytics___platform_stg__segment_b_to_b_event_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___platform_stg__segment_b_to_b where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_b_to_b", "attached_node": "model.yoda.analytics___platform_stg__segment_b_to_b"}, "test.yoda.not_null_analytics___platform_stg__segment_b_to_b_event_id.4e957a82dd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_b_to_b')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_b_to_b_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__segment_b_to_b_event_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_b_to_b_event_id.4e957a82dd", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_b_to_b", "not_null_analytics___platform_stg__segment_b_to_b_event_id"], "alias": "not_null_analytics___platform_stg__segment_b_to_b_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082648.4791436, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_b_to_b", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_b_to_b"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.yml/not_null_analytics___platform_stg__segment_b_to_b_event_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_b_to_b where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_b_to_b", "attached_node": "model.yoda.analytics___platform_stg__segment_b_to_b"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_b_to_b_1.e6e114ec71": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_b_to_b')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_b_to_b_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8af615332844b0f72bb44efa03191d19.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_b_to_b_1.e6e114ec71", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_b_to_b", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_b_to_b_1"], "alias": "dbt_expectations_expect_table__8af615332844b0f72bb44efa03191d19", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8af615332844b0f72bb44efa03191d19", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8af615332844b0f72bb44efa03191d19"}, "created_at": 1700082648.4850368, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8af615332844b0f72bb44efa03191d19\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_b_to_b", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_b_to_b"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.yml/dbt_expectations_expect_table__8af615332844b0f72bb44efa03191d19.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_b_to_b\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_b_to_b", "attached_node": "model.yoda.analytics___platform_stg__segment_b_to_b"}, "test.yoda.unique_analytics___platform_stg__segment_file_exported_event_id.0d046166dd": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_file_exported')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__segment_file_exported_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__segment_file_exported_event_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__segment_file_exported_event_id.0d046166dd", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_file_exported", "unique_analytics___platform_stg__segment_file_exported_event_id"], "alias": "unique_analytics___platform_stg__segment_file_exported_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082648.513014, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_file_exported", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_file_exported"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.yml/unique_analytics___platform_stg__segment_file_exported_event_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___platform_stg__segment_file_exported where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_file_exported", "attached_node": "model.yoda.analytics___platform_stg__segment_file_exported"}, "test.yoda.not_null_analytics___platform_stg__segment_file_exported_event_id.796820712d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_file_exported')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_file_exported_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__020a45c10871a32bc5de481cf071ab05.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_file_exported_event_id.796820712d", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_file_exported", "not_null_analytics___platform_stg__segment_file_exported_event_id"], "alias": "not_null_analytics___platform__020a45c10871a32bc5de481cf071ab05", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__020a45c10871a32bc5de481cf071ab05", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__020a45c10871a32bc5de481cf071ab05"}, "created_at": 1700082648.5193133, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__020a45c10871a32bc5de481cf071ab05\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_file_exported", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_file_exported"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.yml/not_null_analytics___platform__020a45c10871a32bc5de481cf071ab05.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_file_exported where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_file_exported", "attached_node": "model.yoda.analytics___platform_stg__segment_file_exported"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_file_exported_1.ee9e77b56a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_file_exported')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_file_exported_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f4e48fdf217f6a71f417ae03fc2f5a9c.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_file_exported_1.ee9e77b56a", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_file_exported", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_file_exported_1"], "alias": "dbt_expectations_expect_table__f4e48fdf217f6a71f417ae03fc2f5a9c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f4e48fdf217f6a71f417ae03fc2f5a9c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f4e48fdf217f6a71f417ae03fc2f5a9c"}, "created_at": 1700082648.5252697, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f4e48fdf217f6a71f417ae03fc2f5a9c\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_file_exported", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_file_exported"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.yml/dbt_expectations_expect_table__f4e48fdf217f6a71f417ae03fc2f5a9c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_file_exported\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_file_exported", "attached_node": "model.yoda.analytics___platform_stg__segment_file_exported"}, "test.yoda.unique_analytics___platform_stg__segment_limit_reached_event_id.a92b0fea75": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_limit_reached')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__segment_limit_reached_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__segment_limit_reached_event_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__segment_limit_reached_event_id.a92b0fea75", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_limit_reached", "unique_analytics___platform_stg__segment_limit_reached_event_id"], "alias": "unique_analytics___platform_stg__segment_limit_reached_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082648.5499103, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_limit_reached", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_limit_reached"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.yml/unique_analytics___platform_stg__segment_limit_reached_event_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___platform_stg__segment_limit_reached where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_limit_reached", "attached_node": "model.yoda.analytics___platform_stg__segment_limit_reached"}, "test.yoda.not_null_analytics___platform_stg__segment_limit_reached_event_id.7015799488": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_limit_reached')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_limit_reached_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__6de009cd5cb5a0bfdb60650d31727a43.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_limit_reached_event_id.7015799488", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_limit_reached", "not_null_analytics___platform_stg__segment_limit_reached_event_id"], "alias": "not_null_analytics___platform__6de009cd5cb5a0bfdb60650d31727a43", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__6de009cd5cb5a0bfdb60650d31727a43", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__6de009cd5cb5a0bfdb60650d31727a43"}, "created_at": 1700082648.555897, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__6de009cd5cb5a0bfdb60650d31727a43\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_limit_reached", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_limit_reached"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.yml/not_null_analytics___platform__6de009cd5cb5a0bfdb60650d31727a43.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_limit_reached where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_limit_reached", "attached_node": "model.yoda.analytics___platform_stg__segment_limit_reached"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_limit_reached_1.1838915467": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_limit_reached')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_limit_reached_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e6531085f5ed811ac9411ab55d77c682.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_limit_reached_1.1838915467", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_limit_reached", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_limit_reached_1"], "alias": "dbt_expectations_expect_table__e6531085f5ed811ac9411ab55d77c682", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e6531085f5ed811ac9411ab55d77c682", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e6531085f5ed811ac9411ab55d77c682"}, "created_at": 1700082648.5625415, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e6531085f5ed811ac9411ab55d77c682\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_limit_reached", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_limit_reached"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.yml/dbt_expectations_expect_table__e6531085f5ed811ac9411ab55d77c682.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_limit_reached\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_limit_reached", "attached_node": "model.yoda.analytics___platform_stg__segment_limit_reached"}, "test.yoda.unique_analytics___platform_stg__segment_onboarding_event_id.2d8e177e57": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_onboarding')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__segment_onboarding_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__segment_onboarding_event_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__segment_onboarding_event_id.2d8e177e57", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_onboarding", "unique_analytics___platform_stg__segment_onboarding_event_id"], "alias": "unique_analytics___platform_stg__segment_onboarding_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082648.5881722, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_onboarding", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_onboarding"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.yml/unique_analytics___platform_stg__segment_onboarding_event_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___platform_stg__segment_onboarding where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_onboarding", "attached_node": "model.yoda.analytics___platform_stg__segment_onboarding"}, "test.yoda.not_null_analytics___platform_stg__segment_onboarding_event_id.0ff7b57a94": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_onboarding')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_onboarding_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__segment_onboarding_event_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_onboarding_event_id.0ff7b57a94", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_onboarding", "not_null_analytics___platform_stg__segment_onboarding_event_id"], "alias": "not_null_analytics___platform_stg__segment_onboarding_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082648.593661, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_onboarding", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_onboarding"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.yml/not_null_analytics___platform_stg__segment_onboarding_event_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_onboarding where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_onboarding", "attached_node": "model.yoda.analytics___platform_stg__segment_onboarding"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_onboarding_1.1907a77604": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_onboarding')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_onboarding_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a4b087a3f2ae3807595a537d87adffa4.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_onboarding_1.1907a77604", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_onboarding", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_onboarding_1"], "alias": "dbt_expectations_expect_table__a4b087a3f2ae3807595a537d87adffa4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a4b087a3f2ae3807595a537d87adffa4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a4b087a3f2ae3807595a537d87adffa4"}, "created_at": 1700082648.5995314, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a4b087a3f2ae3807595a537d87adffa4\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_onboarding", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_onboarding"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.yml/dbt_expectations_expect_table__a4b087a3f2ae3807595a537d87adffa4.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_onboarding\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_onboarding", "attached_node": "model.yoda.analytics___platform_stg__segment_onboarding"}, "test.yoda.not_null_analytics___platform_stg__segment_page_event_app_key.6221c88cd5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_page_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_page_event_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__segment_page_event_app_key.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_page_event_app_key.6221c88cd5", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_page_event", "not_null_analytics___platform_stg__segment_page_event_app_key"], "alias": "not_null_analytics___platform_stg__segment_page_event_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082648.6244185, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_page_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_page_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.yml/not_null_analytics___platform_stg__segment_page_event_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_page_event where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform_stg__segment_page_event", "attached_node": "model.yoda.analytics___platform_stg__segment_page_event"}, "test.yoda.not_null_analytics___platform_stg__segment_page_event_event_id.29d85cd0ed": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_page_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_page_event_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__segment_page_event_event_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_page_event_event_id.29d85cd0ed", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_page_event", "not_null_analytics___platform_stg__segment_page_event_event_id"], "alias": "not_null_analytics___platform_stg__segment_page_event_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082648.6304226, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_page_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_page_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.yml/not_null_analytics___platform_stg__segment_page_event_event_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_page_event where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_page_event", "attached_node": "model.yoda.analytics___platform_stg__segment_page_event"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_page_event_1.36744c29f6": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_page_event')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_page_event_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__1fd6949d85938bc116008fcad99e181a.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_page_event_1.36744c29f6", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_page_event", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_page_event_1"], "alias": "dbt_expectations_expect_table__1fd6949d85938bc116008fcad99e181a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__1fd6949d85938bc116008fcad99e181a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__1fd6949d85938bc116008fcad99e181a"}, "created_at": 1700082648.6365857, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__1fd6949d85938bc116008fcad99e181a\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_page_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_page_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.yml/dbt_expectations_expect_table__1fd6949d85938bc116008fcad99e181a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_page_event\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_page_event", "attached_node": "model.yoda.analytics___platform_stg__segment_page_event"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__segment_page_event_event_id__app_key.8061a69191": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["event_id", "app_key"], "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_page_event')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform_stg__segment_page_event_event_id__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_335d6795c4ba4783889db9a1ff4bcb44.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__segment_page_event_event_id__app_key.8061a69191", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_page_event", "dbt_utils_unique_combination_of_columns_analytics___platform_stg__segment_page_event_event_id__app_key"], "alias": "dbt_utils_unique_combination_o_335d6795c4ba4783889db9a1ff4bcb44", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_335d6795c4ba4783889db9a1ff4bcb44", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_335d6795c4ba4783889db9a1ff4bcb44"}, "created_at": 1700082648.6436377, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_335d6795c4ba4783889db9a1ff4bcb44\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_page_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_page_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.yml/dbt_utils_unique_combination_o_335d6795c4ba4783889db9a1ff4bcb44.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n event_id, app_key\n from dev_dkruh1.analytics___platform_stg__segment_page_event\n group by event_id, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_page_event", "attached_node": "model.yoda.analytics___platform_stg__segment_page_event"}, "test.yoda.unique_analytics___platform_stg__segment_popup_displayed_event_id.c86d8b9d76": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_popup_displayed')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__segment_popup_displayed_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_st_84bda318b3d3f96e596534604bd8d7d0.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__segment_popup_displayed_event_id.c86d8b9d76", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_popup_displayed", "unique_analytics___platform_stg__segment_popup_displayed_event_id"], "alias": "unique_analytics___platform_st_84bda318b3d3f96e596534604bd8d7d0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform_st_84bda318b3d3f96e596534604bd8d7d0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform_st_84bda318b3d3f96e596534604bd8d7d0"}, "created_at": 1700082648.670993, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform_st_84bda318b3d3f96e596534604bd8d7d0\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_popup_displayed", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_popup_displayed"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.yml/unique_analytics___platform_st_84bda318b3d3f96e596534604bd8d7d0.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___platform_stg__segment_popup_displayed where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_popup_displayed", "attached_node": "model.yoda.analytics___platform_stg__segment_popup_displayed"}, "test.yoda.not_null_analytics___platform_stg__segment_popup_displayed_event_id.20dc1aca87": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_popup_displayed')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_popup_displayed_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__72d9f1dc4c4cbdf47927829dc0568f22.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_popup_displayed_event_id.20dc1aca87", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_popup_displayed", "not_null_analytics___platform_stg__segment_popup_displayed_event_id"], "alias": "not_null_analytics___platform__72d9f1dc4c4cbdf47927829dc0568f22", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__72d9f1dc4c4cbdf47927829dc0568f22", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__72d9f1dc4c4cbdf47927829dc0568f22"}, "created_at": 1700082648.678464, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__72d9f1dc4c4cbdf47927829dc0568f22\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_popup_displayed", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_popup_displayed"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.yml/not_null_analytics___platform__72d9f1dc4c4cbdf47927829dc0568f22.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_popup_displayed where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_popup_displayed", "attached_node": "model.yoda.analytics___platform_stg__segment_popup_displayed"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_popup_displayed_1.e5fe385095": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_popup_displayed')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_popup_displayed_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__1ea8da66069cfe1a1f63b2064bfc0e23.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_popup_displayed_1.e5fe385095", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_popup_displayed", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_popup_displayed_1"], "alias": "dbt_expectations_expect_table__1ea8da66069cfe1a1f63b2064bfc0e23", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__1ea8da66069cfe1a1f63b2064bfc0e23", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__1ea8da66069cfe1a1f63b2064bfc0e23"}, "created_at": 1700082648.684834, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__1ea8da66069cfe1a1f63b2064bfc0e23\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_popup_displayed", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_popup_displayed"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.yml/dbt_expectations_expect_table__1ea8da66069cfe1a1f63b2064bfc0e23.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_popup_displayed\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_popup_displayed", "attached_node": "model.yoda.analytics___platform_stg__segment_popup_displayed"}, "test.yoda.unique_analytics___platform_stg__segment_product_enabled_event_id.60b0b3a8b6": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_product_enabled')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__segment_product_enabled_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_st_e9438aff3b72ff40b12948b948c26954.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__segment_product_enabled_event_id.60b0b3a8b6", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_product_enabled", "unique_analytics___platform_stg__segment_product_enabled_event_id"], "alias": "unique_analytics___platform_st_e9438aff3b72ff40b12948b948c26954", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform_st_e9438aff3b72ff40b12948b948c26954", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform_st_e9438aff3b72ff40b12948b948c26954"}, "created_at": 1700082648.7092557, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform_st_e9438aff3b72ff40b12948b948c26954\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_product_enabled", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_product_enabled"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.yml/unique_analytics___platform_st_e9438aff3b72ff40b12948b948c26954.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___platform_stg__segment_product_enabled where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_product_enabled", "attached_node": "model.yoda.analytics___platform_stg__segment_product_enabled"}, "test.yoda.not_null_analytics___platform_stg__segment_product_enabled_event_id.c74bffc27e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_product_enabled')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__segment_product_enabled_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__758a505f209c155d089261873100dcb1.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__segment_product_enabled_event_id.c74bffc27e", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_product_enabled", "not_null_analytics___platform_stg__segment_product_enabled_event_id"], "alias": "not_null_analytics___platform__758a505f209c155d089261873100dcb1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__758a505f209c155d089261873100dcb1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__758a505f209c155d089261873100dcb1"}, "created_at": 1700082648.715723, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__758a505f209c155d089261873100dcb1\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_product_enabled", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_product_enabled"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.yml/not_null_analytics___platform__758a505f209c155d089261873100dcb1.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__segment_product_enabled where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__segment_product_enabled", "attached_node": "model.yoda.analytics___platform_stg__segment_product_enabled"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_product_enabled_1.b8b3335a48": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_product_enabled')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_product_enabled_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3d3fb96181d451b406e12acaba2dcaf9.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_product_enabled_1.b8b3335a48", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_product_enabled", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_product_enabled_1"], "alias": "dbt_expectations_expect_table__3d3fb96181d451b406e12acaba2dcaf9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3d3fb96181d451b406e12acaba2dcaf9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3d3fb96181d451b406e12acaba2dcaf9"}, "created_at": 1700082648.7219934, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3d3fb96181d451b406e12acaba2dcaf9\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_product_enabled", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_product_enabled"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.yml/dbt_expectations_expect_table__3d3fb96181d451b406e12acaba2dcaf9.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_product_enabled\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_product_enabled", "attached_node": "model.yoda.analytics___platform_stg__segment_product_enabled"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_uninstalled_yotpo_1.9eed93745f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__segment_uninstalled_yotpo')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_uninstalled_yotpo_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d8fc416dbb526328540add4fd712a939.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_uninstalled_yotpo_1.9eed93745f", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__segment_uninstalled_yotpo", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_uninstalled_yotpo_1"], "alias": "dbt_expectations_expect_table__d8fc416dbb526328540add4fd712a939", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d8fc416dbb526328540add4fd712a939", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d8fc416dbb526328540add4fd712a939"}, "created_at": 1700082648.7477078, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d8fc416dbb526328540add4fd712a939\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__segment_uninstalled_yotpo", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__segment_uninstalled_yotpo"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.yml/dbt_expectations_expect_table__d8fc416dbb526328540add4fd712a939.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__segment_uninstalled_yotpo\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__segment_uninstalled_yotpo", "attached_node": "model.yoda.analytics___platform_stg__segment_uninstalled_yotpo"}, "test.yoda.unique_analytics___platform_stg__similar_store_app_key.9f5cbcfa58": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform_stg__similar_store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__similar_store_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__similar_store_app_key.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__similar_store_app_key.9f5cbcfa58", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__similar_store", "unique_analytics___platform_stg__similar_store_app_key"], "alias": "unique_analytics___platform_stg__similar_store_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082648.769219, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__similar_store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__similar_store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.yml/unique_analytics___platform_stg__similar_store_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___platform_stg__similar_store where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform_stg__similar_store", "attached_node": "model.yoda.analytics___platform_stg__similar_store"}, "test.yoda.not_null_analytics___platform_stg__similar_store_app_key.4749d8ee70": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform_stg__similar_store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__similar_store_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__similar_store_app_key.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__similar_store_app_key.4749d8ee70", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__similar_store", "not_null_analytics___platform_stg__similar_store_app_key"], "alias": "not_null_analytics___platform_stg__similar_store_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082648.77509, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__similar_store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__similar_store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.yml/not_null_analytics___platform_stg__similar_store_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__similar_store where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform_stg__similar_store", "attached_node": "model.yoda.analytics___platform_stg__similar_store"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_store_1.92cb76df1c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__similar_store')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_store_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__16ece63d5cb16ff360800b2159af6794.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_store_1.92cb76df1c", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__similar_store", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_store_1"], "alias": "dbt_expectations_expect_table__16ece63d5cb16ff360800b2159af6794", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__16ece63d5cb16ff360800b2159af6794", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__16ece63d5cb16ff360800b2159af6794"}, "created_at": 1700082648.7841625, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__16ece63d5cb16ff360800b2159af6794\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__similar_store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__similar_store"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.yml/dbt_expectations_expect_table__16ece63d5cb16ff360800b2159af6794.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__similar_store\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__similar_store", "attached_node": "model.yoda.analytics___platform_stg__similar_store"}, "test.yoda.unique_analytics___platform_stg__static_deprecated_package_plan_id.98ec63a42c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__static_deprecated_package')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__static_deprecated_package_plan_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_st_444f5d20db86b02efd6523a71b4119da.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__static_deprecated_package_plan_id.98ec63a42c", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__static_deprecated_package", "unique_analytics___platform_stg__static_deprecated_package_plan_id"], "alias": "unique_analytics___platform_st_444f5d20db86b02efd6523a71b4119da", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___platform_st_444f5d20db86b02efd6523a71b4119da", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___platform_st_444f5d20db86b02efd6523a71b4119da"}, "created_at": 1700082648.8530552, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___platform_st_444f5d20db86b02efd6523a71b4119da\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__static_deprecated_package", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__static_deprecated_package"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.yml/unique_analytics___platform_st_444f5d20db86b02efd6523a71b4119da.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select plan_id from dev_dkruh1.analytics___platform_stg__static_deprecated_package where plan_id is not null group by plan_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___platform_stg__static_deprecated_package", "attached_node": "model.yoda.analytics___platform_stg__static_deprecated_package"}, "test.yoda.not_null_analytics___platform_stg__static_deprecated_package_plan_id.f9d05e69af": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__static_deprecated_package')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__static_deprecated_package_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__71e40322126adeb09a89730de3d79d11.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__static_deprecated_package_plan_id.f9d05e69af", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__static_deprecated_package", "not_null_analytics___platform_stg__static_deprecated_package_plan_id"], "alias": "not_null_analytics___platform__71e40322126adeb09a89730de3d79d11", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__71e40322126adeb09a89730de3d79d11", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__71e40322126adeb09a89730de3d79d11"}, "created_at": 1700082648.8607862, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__71e40322126adeb09a89730de3d79d11\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__static_deprecated_package", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__static_deprecated_package"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.yml/not_null_analytics___platform__71e40322126adeb09a89730de3d79d11.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__static_deprecated_package where plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___platform_stg__static_deprecated_package", "attached_node": "model.yoda.analytics___platform_stg__static_deprecated_package"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__static_deprecated_package_1.5cdfab0b87": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__static_deprecated_package')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__static_deprecated_package_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0c183149a8cd0d4573ead16d3774c56f.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__static_deprecated_package_1.5cdfab0b87", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__static_deprecated_package", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__static_deprecated_package_1"], "alias": "dbt_expectations_expect_table__0c183149a8cd0d4573ead16d3774c56f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0c183149a8cd0d4573ead16d3774c56f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0c183149a8cd0d4573ead16d3774c56f"}, "created_at": 1700082648.8687122, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0c183149a8cd0d4573ead16d3774c56f\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__static_deprecated_package", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__static_deprecated_package"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.yml/dbt_expectations_expect_table__0c183149a8cd0d4573ead16d3774c56f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__static_deprecated_package\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__static_deprecated_package", "attached_node": "model.yoda.analytics___platform_stg__static_deprecated_package"}, "test.yoda.unique_analytics___platform_stg__store_order_order_id.863fb84fb5": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__store_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___platform_stg__store_order_order_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___platform_stg__store_order_order_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.yml", "unique_id": "test.yoda.unique_analytics___platform_stg__store_order_order_id.863fb84fb5", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__store_order", "unique_analytics___platform_stg__store_order_order_id"], "alias": "unique_analytics___platform_stg__store_order_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082648.9150746, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__store_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__store_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.yml/unique_analytics___platform_stg__store_order_order_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_id from dev_dkruh1.analytics___platform_stg__store_order where order_id is not null group by order_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.analytics___platform_stg__store_order", "attached_node": "model.yoda.analytics___platform_stg__store_order"}, "test.yoda.not_null_analytics___platform_stg__store_order_order_id.61050041d8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__store_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__store_order_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__store_order_order_id.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__store_order_order_id.61050041d8", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__store_order", "not_null_analytics___platform_stg__store_order_order_id"], "alias": "not_null_analytics___platform_stg__store_order_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082648.9210875, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__store_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__store_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.yml/not_null_analytics___platform_stg__store_order_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__store_order where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.analytics___platform_stg__store_order", "attached_node": "model.yoda.analytics___platform_stg__store_order"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_order_1.06e9764eb1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__store_order')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_order_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d02b307cd35a8d73b1901e25a846f4e6.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_order_1.06e9764eb1", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__store_order", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_order_1"], "alias": "dbt_expectations_expect_table__d02b307cd35a8d73b1901e25a846f4e6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d02b307cd35a8d73b1901e25a846f4e6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d02b307cd35a8d73b1901e25a846f4e6"}, "created_at": 1700082648.9269423, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d02b307cd35a8d73b1901e25a846f4e6\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__store_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__store_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.yml/dbt_expectations_expect_table__d02b307cd35a8d73b1901e25a846f4e6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__store_order\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__store_order", "attached_node": "model.yoda.analytics___platform_stg__store_order"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_user_mapping_1.c53b62e32a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__store_user_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_user_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0788d93e2aa90f12d99d146cd3f264af.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_user_mapping_1.c53b62e32a", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__store_user_mapping", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_user_mapping_1"], "alias": "dbt_expectations_expect_table__0788d93e2aa90f12d99d146cd3f264af", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0788d93e2aa90f12d99d146cd3f264af", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0788d93e2aa90f12d99d146cd3f264af"}, "created_at": 1700082648.953887, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0788d93e2aa90f12d99d146cd3f264af\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__store_user_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__store_user_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.yml/dbt_expectations_expect_table__0788d93e2aa90f12d99d146cd3f264af.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__store_user_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__store_user_mapping", "attached_node": "model.yoda.analytics___platform_stg__store_user_mapping"}, "test.yoda.not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id.12b9d96841": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__subscriptions_pixel_widget_v_three')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__86e36f27ea7e7f916e60d3aa501cad11.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id.12b9d96841", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__subscriptions_pixel_widget_v_three", "not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id"], "alias": "not_null_analytics___platform__86e36f27ea7e7f916e60d3aa501cad11", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__86e36f27ea7e7f916e60d3aa501cad11", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__86e36f27ea7e7f916e60d3aa501cad11"}, "created_at": 1700082648.9901524, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__86e36f27ea7e7f916e60d3aa501cad11\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.yml/not_null_analytics___platform__86e36f27ea7e7f916e60d3aa501cad11.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__subscriptions_pixel_widget_v_three where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___platform_stg__subscriptions_pixel_widget_v_three", "attached_node": "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"}, "test.yoda.not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_row_rank.45726fb4c9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_row_rank", "model": "{{ get_where_subquery(ref('analytics___platform_stg__subscriptions_pixel_widget_v_three')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_row_rank", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__43100f6481517f51a048b6f993e4d880.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_row_rank.45726fb4c9", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__subscriptions_pixel_widget_v_three", "not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_row_rank"], "alias": "not_null_analytics___platform__43100f6481517f51a048b6f993e4d880", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__43100f6481517f51a048b6f993e4d880", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__43100f6481517f51a048b6f993e4d880"}, "created_at": 1700082648.9965248, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__43100f6481517f51a048b6f993e4d880\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.yml/not_null_analytics___platform__43100f6481517f51a048b6f993e4d880.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__subscriptions_pixel_widget_v_three where event_row_rank is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_row_rank", "file_key_name": "models.analytics___platform_stg__subscriptions_pixel_widget_v_three", "attached_node": "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_pixel_widget_v_three_1.a4c7dc7cd1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__subscriptions_pixel_widget_v_three')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_pixel_widget_v_three_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e94631901df85e292b3b0f4740a723f7.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_pixel_widget_v_three_1.a4c7dc7cd1", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__subscriptions_pixel_widget_v_three", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_pixel_widget_v_three_1"], "alias": "dbt_expectations_expect_table__e94631901df85e292b3b0f4740a723f7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e94631901df85e292b3b0f4740a723f7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e94631901df85e292b3b0f4740a723f7"}, "created_at": 1700082649.0033672, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e94631901df85e292b3b0f4740a723f7\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.yml/dbt_expectations_expect_table__e94631901df85e292b3b0f4740a723f7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__subscriptions_pixel_widget_v_three\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__subscriptions_pixel_widget_v_three", "attached_node": "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id__event_row_rank.b711864588": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["event_id", "event_row_rank"], "model": "{{ get_where_subquery(ref('analytics___platform_stg__subscriptions_pixel_widget_v_three')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id__event_row_rank", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_ba826e83c29ddf611c668b4419d01478.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id__event_row_rank.b711864588", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__subscriptions_pixel_widget_v_three", "dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id__event_row_rank"], "alias": "dbt_utils_unique_combination_o_ba826e83c29ddf611c668b4419d01478", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ba826e83c29ddf611c668b4419d01478", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ba826e83c29ddf611c668b4419d01478"}, "created_at": 1700082649.011572, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ba826e83c29ddf611c668b4419d01478\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.yml/dbt_utils_unique_combination_o_ba826e83c29ddf611c668b4419d01478.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n event_id, event_row_rank\n from dev_dkruh1.analytics___platform_stg__subscriptions_pixel_widget_v_three\n group by event_id, event_row_rank\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__subscriptions_pixel_widget_v_three", "attached_node": "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"}, "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_app_key.06cf074efd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___platform_stg__synergy_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__synergy_enablement_event_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__3861da8f8a9789065c4aed91e6a05656.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_app_key.06cf074efd", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__synergy_enablement_event", "not_null_analytics___platform_stg__synergy_enablement_event_app_key"], "alias": "not_null_analytics___platform__3861da8f8a9789065c4aed91e6a05656", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__3861da8f8a9789065c4aed91e6a05656", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__3861da8f8a9789065c4aed91e6a05656"}, "created_at": 1700082649.0415964, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__3861da8f8a9789065c4aed91e6a05656\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__synergy_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__synergy_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.yml/not_null_analytics___platform__3861da8f8a9789065c4aed91e6a05656.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__synergy_enablement_event where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___platform_stg__synergy_enablement_event", "attached_node": "model.yoda.analytics___platform_stg__synergy_enablement_event"}, "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_widget_id.f80b5d2200": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "widget_id", "model": "{{ get_where_subquery(ref('analytics___platform_stg__synergy_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__synergy_enablement_event_widget_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__7913a18aa625a2e5a3a23c83d172aaa1.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_widget_id.f80b5d2200", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__synergy_enablement_event", "not_null_analytics___platform_stg__synergy_enablement_event_widget_id"], "alias": "not_null_analytics___platform__7913a18aa625a2e5a3a23c83d172aaa1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__7913a18aa625a2e5a3a23c83d172aaa1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__7913a18aa625a2e5a3a23c83d172aaa1"}, "created_at": 1700082649.048136, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__7913a18aa625a2e5a3a23c83d172aaa1\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__synergy_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__synergy_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.yml/not_null_analytics___platform__7913a18aa625a2e5a3a23c83d172aaa1.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__synergy_enablement_event where widget_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_id", "file_key_name": "models.analytics___platform_stg__synergy_enablement_event", "attached_node": "model.yoda.analytics___platform_stg__synergy_enablement_event"}, "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_updated_at.ab180863ed": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('analytics___platform_stg__synergy_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__synergy_enablement_event_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__650a060f645f1cc577918ecc0778eb7e.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_updated_at.ab180863ed", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__synergy_enablement_event", "not_null_analytics___platform_stg__synergy_enablement_event_updated_at"], "alias": "not_null_analytics___platform__650a060f645f1cc577918ecc0778eb7e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__650a060f645f1cc577918ecc0778eb7e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__650a060f645f1cc577918ecc0778eb7e"}, "created_at": 1700082649.0555215, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__650a060f645f1cc577918ecc0778eb7e\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__synergy_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__synergy_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.yml/not_null_analytics___platform__650a060f645f1cc577918ecc0778eb7e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__synergy_enablement_event where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.analytics___platform_stg__synergy_enablement_event", "attached_node": "model.yoda.analytics___platform_stg__synergy_enablement_event"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__synergy_enablement_event_1.94a38eb172": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__synergy_enablement_event')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__synergy_enablement_event_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__cd8aa2ee57a3dcf1f0aa2534c01dd132.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__synergy_enablement_event_1.94a38eb172", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__synergy_enablement_event", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__synergy_enablement_event_1"], "alias": "dbt_expectations_expect_table__cd8aa2ee57a3dcf1f0aa2534c01dd132", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__cd8aa2ee57a3dcf1f0aa2534c01dd132", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__cd8aa2ee57a3dcf1f0aa2534c01dd132"}, "created_at": 1700082649.0639548, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__cd8aa2ee57a3dcf1f0aa2534c01dd132\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__synergy_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__synergy_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.yml/dbt_expectations_expect_table__cd8aa2ee57a3dcf1f0aa2534c01dd132.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__synergy_enablement_event\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__synergy_enablement_event", "attached_node": "model.yoda.analytics___platform_stg__synergy_enablement_event"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__synergy_enablement_event_app_key__widget_id__updated_at.12d1947a05": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "widget_id", "updated_at"], "model": "{{ get_where_subquery(ref('analytics___platform_stg__synergy_enablement_event')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___platform_stg__synergy_enablement_event_app_key__widget_id__updated_at", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_a4fa01ae1a3cf0a35908389c42d6a485.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__synergy_enablement_event_app_key__widget_id__updated_at.12d1947a05", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__synergy_enablement_event", "dbt_utils_unique_combination_of_columns_analytics___platform_stg__synergy_enablement_event_app_key__widget_id__updated_at"], "alias": "dbt_utils_unique_combination_o_a4fa01ae1a3cf0a35908389c42d6a485", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a4fa01ae1a3cf0a35908389c42d6a485", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a4fa01ae1a3cf0a35908389c42d6a485"}, "created_at": 1700082649.071371, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a4fa01ae1a3cf0a35908389c42d6a485\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__synergy_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__synergy_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.yml/dbt_utils_unique_combination_o_a4fa01ae1a3cf0a35908389c42d6a485.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, widget_id, updated_at\n from dev_dkruh1.analytics___platform_stg__synergy_enablement_event\n group by app_key, widget_id, updated_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__synergy_enablement_event", "attached_node": "model.yoda.analytics___platform_stg__synergy_enablement_event"}, "test.yoda.not_null_analytics___platform_stg__ugc_pixel_widget_v_three_date.14c303a758": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___platform_stg__ugc_pixel_widget_v_three')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__ugc_pixel_widget_v_three_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform__a89276b37b74d47a64e5d988ee75c9cd.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__ugc_pixel_widget_v_three_date.14c303a758", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__ugc_pixel_widget_v_three", "not_null_analytics___platform_stg__ugc_pixel_widget_v_three_date"], "alias": "not_null_analytics___platform__a89276b37b74d47a64e5d988ee75c9cd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___platform__a89276b37b74d47a64e5d988ee75c9cd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___platform__a89276b37b74d47a64e5d988ee75c9cd"}, "created_at": 1700082649.1000078, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___platform__a89276b37b74d47a64e5d988ee75c9cd\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__ugc_pixel_widget_v_three", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.yml/not_null_analytics___platform__a89276b37b74d47a64e5d988ee75c9cd.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__ugc_pixel_widget_v_three where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___platform_stg__ugc_pixel_widget_v_three", "attached_node": "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three"}, "test.yoda.not_null_analytics___platform_stg__ugc_pixel_widget_v_two_date.0ae171ab8f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___platform_stg__ugc_pixel_widget_v_two')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___platform_stg__ugc_pixel_widget_v_two_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___platform_stg__ugc_pixel_widget_v_two_date.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.yml", "unique_id": "test.yoda.not_null_analytics___platform_stg__ugc_pixel_widget_v_two_date.0ae171ab8f", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__ugc_pixel_widget_v_two", "not_null_analytics___platform_stg__ugc_pixel_widget_v_two_date"], "alias": "not_null_analytics___platform_stg__ugc_pixel_widget_v_two_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082649.1289134, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__ugc_pixel_widget_v_two", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.yml/not_null_analytics___platform_stg__ugc_pixel_widget_v_two_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___platform_stg__ugc_pixel_widget_v_two where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___platform_stg__ugc_pixel_widget_v_two", "attached_node": "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__user_1.322bb25202": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___platform_stg__user')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__user_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__052746c84db1c68395be2c0affe072e2.sql", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__user_1.322bb25202", "fqn": ["yoda", "analytics", "platform", "staging", "marts_compatible", "analytics___platform_stg__user", "dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__user_1"], "alias": "dbt_expectations_expect_table__052746c84db1c68395be2c0affe072e2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__052746c84db1c68395be2c0affe072e2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__052746c84db1c68395be2c0affe072e2"}, "created_at": 1700082649.1479683, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__052746c84db1c68395be2c0affe072e2\") }}", "language": "sql", "refs": [{"name": "analytics___platform_stg__user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___platform_stg__user"]}, "compiled_path": "target/compiled/yoda/models/analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.yml/dbt_expectations_expect_table__052746c84db1c68395be2c0affe072e2.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___platform_stg__user\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___platform_stg__user", "attached_node": "model.yoda.analytics___platform_stg__user"}, "test.yoda.unique_analytics___salesforce__account_account_id.3f1f984c3a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__account_account_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__account_account_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.yml", "unique_id": "test.yoda.unique_analytics___salesforce__account_account_id.3f1f984c3a", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account", "unique_analytics___salesforce__account_account_id"], "alias": "unique_analytics___salesforce__account_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082649.3278677, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.yml/unique_analytics___salesforce__account_account_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select account_id from dev_dkruh1.analytics___salesforce__account where account_id is not null group by account_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___salesforce__account", "attached_node": "model.yoda.analytics___salesforce__account"}, "test.yoda.not_null_analytics___salesforce__account_account_id.b4e829a4f6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__account_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__account_account_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__account_account_id.b4e829a4f6", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account", "not_null_analytics___salesforce__account_account_id"], "alias": "not_null_analytics___salesforce__account_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082649.3335328, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.yml/not_null_analytics___salesforce__account_account_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__account where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___salesforce__account", "attached_node": "model.yoda.analytics___salesforce__account"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_1.d3e9ecbc66": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__account')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__63b238c0a39d1fd4d68bff238c1552bd.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_1.d3e9ecbc66", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_1"], "alias": "dbt_expectations_expect_table__63b238c0a39d1fd4d68bff238c1552bd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__63b238c0a39d1fd4d68bff238c1552bd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__63b238c0a39d1fd4d68bff238c1552bd"}, "created_at": 1700082649.339763, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__63b238c0a39d1fd4d68bff238c1552bd\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.yml/dbt_expectations_expect_table__63b238c0a39d1fd4d68bff238c1552bd.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__account\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__account", "attached_node": "model.yoda.analytics___salesforce__account"}, "test.yoda.unique_analytics___salesforce__account_enrichment_Id.f3c4fb0985": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "Id", "model": "{{ get_where_subquery(ref('analytics___salesforce__account_enrichment')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__account_enrichment_Id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__account_enrichment_Id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.yml", "unique_id": "test.yoda.unique_analytics___salesforce__account_enrichment_Id.f3c4fb0985", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment", "unique_analytics___salesforce__account_enrichment_Id"], "alias": "unique_analytics___salesforce__account_enrichment_Id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082649.3689003, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_enrichment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_enrichment"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.yml/unique_analytics___salesforce__account_enrichment_Id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select Id from dev_dkruh1.analytics___salesforce__account_enrichment where Id is not null group by Id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "Id", "file_key_name": "models.analytics___salesforce__account_enrichment", "attached_node": "model.yoda.analytics___salesforce__account_enrichment"}, "test.yoda.not_null_analytics___salesforce__account_enrichment_Id.1622bc72e9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "Id", "model": "{{ get_where_subquery(ref('analytics___salesforce__account_enrichment')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__account_enrichment_Id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__account_enrichment_Id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__account_enrichment_Id.1622bc72e9", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment", "not_null_analytics___salesforce__account_enrichment_Id"], "alias": "not_null_analytics___salesforce__account_enrichment_Id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082649.3745143, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_enrichment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_enrichment"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.yml/not_null_analytics___salesforce__account_enrichment_Id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__account_enrichment where Id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "Id", "file_key_name": "models.analytics___salesforce__account_enrichment", "attached_node": "model.yoda.analytics___salesforce__account_enrichment"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_1.c6d86004ad": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__account_enrichment')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8068073b17e12867bef43f7116a329d0.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_1.c6d86004ad", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_1"], "alias": "dbt_expectations_expect_table__8068073b17e12867bef43f7116a329d0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8068073b17e12867bef43f7116a329d0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8068073b17e12867bef43f7116a329d0"}, "created_at": 1700082649.3806512, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8068073b17e12867bef43f7116a329d0\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_enrichment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_enrichment"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.yml/dbt_expectations_expect_table__8068073b17e12867bef43f7116a329d0.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__account_enrichment\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__account_enrichment", "attached_node": "model.yoda.analytics___salesforce__account_enrichment"}, "test.yoda.unique_analytics___salesforce__account_enrichment_daily_diff_Id.425a20a4f7": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "Id", "model": "{{ get_where_subquery(ref('analytics___salesforce__account_enrichment_daily_diff')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__account_enrichment_daily_diff_Id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__account_enrichment_daily_diff_Id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.yml", "unique_id": "test.yoda.unique_analytics___salesforce__account_enrichment_daily_diff_Id.425a20a4f7", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment_daily_diff", "unique_analytics___salesforce__account_enrichment_daily_diff_Id"], "alias": "unique_analytics___salesforce__account_enrichment_daily_diff_Id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082649.405526, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_enrichment_daily_diff", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_enrichment_daily_diff"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.yml/unique_analytics___salesforce__account_enrichment_daily_diff_Id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select Id from dev_dkruh1.analytics___salesforce__account_enrichment_daily_diff where Id is not null group by Id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "Id", "file_key_name": "models.analytics___salesforce__account_enrichment_daily_diff", "attached_node": "model.yoda.analytics___salesforce__account_enrichment_daily_diff"}, "test.yoda.not_null_analytics___salesforce__account_enrichment_daily_diff_Id.0f8803158d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "Id", "model": "{{ get_where_subquery(ref('analytics___salesforce__account_enrichment_daily_diff')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__account_enrichment_daily_diff_Id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_ec4b0f5d497ea486d2926a0a76e04842.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__account_enrichment_daily_diff_Id.0f8803158d", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment_daily_diff", "not_null_analytics___salesforce__account_enrichment_daily_diff_Id"], "alias": "not_null_analytics___salesforc_ec4b0f5d497ea486d2926a0a76e04842", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_ec4b0f5d497ea486d2926a0a76e04842", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_ec4b0f5d497ea486d2926a0a76e04842"}, "created_at": 1700082649.4116623, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_ec4b0f5d497ea486d2926a0a76e04842\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_enrichment_daily_diff", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_enrichment_daily_diff"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.yml/not_null_analytics___salesforc_ec4b0f5d497ea486d2926a0a76e04842.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__account_enrichment_daily_diff where Id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "Id", "file_key_name": "models.analytics___salesforce__account_enrichment_daily_diff", "attached_node": "model.yoda.analytics___salesforce__account_enrichment_daily_diff"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_daily_diff_1.88aaabae8d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__account_enrichment_daily_diff')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_daily_diff_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4920451a36b6e7b5ce55231569ba103c.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_daily_diff_1.88aaabae8d", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment_daily_diff", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_daily_diff_1"], "alias": "dbt_expectations_expect_table__4920451a36b6e7b5ce55231569ba103c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4920451a36b6e7b5ce55231569ba103c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4920451a36b6e7b5ce55231569ba103c"}, "created_at": 1700082649.4196577, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4920451a36b6e7b5ce55231569ba103c\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_enrichment_daily_diff", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_enrichment_daily_diff"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.yml/dbt_expectations_expect_table__4920451a36b6e7b5ce55231569ba103c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__account_enrichment_daily_diff\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__account_enrichment_daily_diff", "attached_node": "model.yoda.analytics___salesforce__account_enrichment_daily_diff"}, "test.yoda.not_null_analytics___salesforce__account_enrichment_snapshot_daily_Id.4cfd395b99": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "Id", "model": "{{ get_where_subquery(ref('analytics___salesforce__account_enrichment_snapshot_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__account_enrichment_snapshot_daily_Id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_98bb1723c2f707abffbb64a1b814e0f0.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__account_enrichment_snapshot_daily_Id.4cfd395b99", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment_snapshot_daily", "not_null_analytics___salesforce__account_enrichment_snapshot_daily_Id"], "alias": "not_null_analytics___salesforc_98bb1723c2f707abffbb64a1b814e0f0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_98bb1723c2f707abffbb64a1b814e0f0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_98bb1723c2f707abffbb64a1b814e0f0"}, "created_at": 1700082649.4457006, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_98bb1723c2f707abffbb64a1b814e0f0\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_enrichment_snapshot_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_enrichment_snapshot_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.yml/not_null_analytics___salesforc_98bb1723c2f707abffbb64a1b814e0f0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__account_enrichment_snapshot_daily where Id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "Id", "file_key_name": "models.analytics___salesforce__account_enrichment_snapshot_daily", "attached_node": "model.yoda.analytics___salesforce__account_enrichment_snapshot_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_snapshot_daily_1.8e91bf4823": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__account_enrichment_snapshot_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_snapshot_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__11f12ac18849d1268f41aa49ae49ccb3.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_snapshot_daily_1.8e91bf4823", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment_snapshot_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_snapshot_daily_1"], "alias": "dbt_expectations_expect_table__11f12ac18849d1268f41aa49ae49ccb3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__11f12ac18849d1268f41aa49ae49ccb3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__11f12ac18849d1268f41aa49ae49ccb3"}, "created_at": 1700082649.4520714, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__11f12ac18849d1268f41aa49ae49ccb3\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_enrichment_snapshot_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_enrichment_snapshot_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.yml/dbt_expectations_expect_table__11f12ac18849d1268f41aa49ae49ccb3.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__account_enrichment_snapshot_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__account_enrichment_snapshot_daily", "attached_node": "model.yoda.analytics___salesforce__account_enrichment_snapshot_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__account_enrichment_snapshot_daily_Id__updated_at.0ea5f95d46": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["Id", "updated_at"], "model": "{{ get_where_subquery(ref('analytics___salesforce__account_enrichment_snapshot_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___salesforce__account_enrichment_snapshot_daily_Id__updated_at", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_56b8bc79aa4b6a423f5c46f6f416b093.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__account_enrichment_snapshot_daily_Id__updated_at.0ea5f95d46", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_enrichment_snapshot_daily", "dbt_utils_unique_combination_of_columns_analytics___salesforce__account_enrichment_snapshot_daily_Id__updated_at"], "alias": "dbt_utils_unique_combination_o_56b8bc79aa4b6a423f5c46f6f416b093", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_56b8bc79aa4b6a423f5c46f6f416b093", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_56b8bc79aa4b6a423f5c46f6f416b093"}, "created_at": 1700082649.4592235, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_56b8bc79aa4b6a423f5c46f6f416b093\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_enrichment_snapshot_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_enrichment_snapshot_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.yml/dbt_utils_unique_combination_o_56b8bc79aa4b6a423f5c46f6f416b093.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n Id, updated_at\n from dev_dkruh1.analytics___salesforce__account_enrichment_snapshot_daily\n group by Id, updated_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__account_enrichment_snapshot_daily", "attached_node": "model.yoda.analytics___salesforce__account_enrichment_snapshot_daily"}, "test.yoda.not_null_analytics___salesforce__account_product_account_product_id.7103c06f5c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_product_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__account_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__account_product_account_product_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_1921b058ac87ad440a1a5d90f821b957.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__account_product_account_product_id.7103c06f5c", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_product", "not_null_analytics___salesforce__account_product_account_product_id"], "alias": "not_null_analytics___salesforc_1921b058ac87ad440a1a5d90f821b957", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_1921b058ac87ad440a1a5d90f821b957", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_1921b058ac87ad440a1a5d90f821b957"}, "created_at": 1700082649.4992354, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_1921b058ac87ad440a1a5d90f821b957\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.yml/not_null_analytics___salesforc_1921b058ac87ad440a1a5d90f821b957.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__account_product where account_product_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_product_id", "file_key_name": "models.analytics___salesforce__account_product", "attached_node": "model.yoda.analytics___salesforce__account_product"}, "test.yoda.unique_analytics___salesforce__account_product_account_product_id.4b119f7184": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "account_product_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__account_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__account_product_account_product_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__d3c367e8be2f70eaa50ce31efe6e3927.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.yml", "unique_id": "test.yoda.unique_analytics___salesforce__account_product_account_product_id.4b119f7184", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_product", "unique_analytics___salesforce__account_product_account_product_id"], "alias": "unique_analytics___salesforce__d3c367e8be2f70eaa50ce31efe6e3927", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__d3c367e8be2f70eaa50ce31efe6e3927", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__d3c367e8be2f70eaa50ce31efe6e3927"}, "created_at": 1700082649.5064495, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__d3c367e8be2f70eaa50ce31efe6e3927\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.yml/unique_analytics___salesforce__d3c367e8be2f70eaa50ce31efe6e3927.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select account_product_id from dev_dkruh1.analytics___salesforce__account_product where account_product_id is not null group by account_product_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_product_id", "file_key_name": "models.analytics___salesforce__account_product", "attached_node": "model.yoda.analytics___salesforce__account_product"}, "test.yoda.not_null_analytics___salesforce__account_product_account_id.75fbe7a00c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__account_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__account_product_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__account_product_account_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__account_product_account_id.75fbe7a00c", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_product", "not_null_analytics___salesforce__account_product_account_id"], "alias": "not_null_analytics___salesforce__account_product_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082649.5135045, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.yml/not_null_analytics___salesforce__account_product_account_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__account_product where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___salesforce__account_product", "attached_node": "model.yoda.analytics___salesforce__account_product"}, "test.yoda.not_null_analytics___salesforce__account_product_product_name.e19ce7f0b6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_name", "model": "{{ get_where_subquery(ref('analytics___salesforce__account_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__account_product_product_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__account_product_product_name.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__account_product_product_name.e19ce7f0b6", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_product", "not_null_analytics___salesforce__account_product_product_name"], "alias": "not_null_analytics___salesforce__account_product_product_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082649.519886, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.yml/not_null_analytics___salesforce__account_product_product_name.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__account_product where product_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_name", "file_key_name": "models.analytics___salesforce__account_product", "attached_node": "model.yoda.analytics___salesforce__account_product"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_product_1.42fa7fc5a3": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__account_product')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_product_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ef1a8a77e94a77cf52d741cbfdbe74f2.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_product_1.42fa7fc5a3", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_product", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_product_1"], "alias": "dbt_expectations_expect_table__ef1a8a77e94a77cf52d741cbfdbe74f2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ef1a8a77e94a77cf52d741cbfdbe74f2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ef1a8a77e94a77cf52d741cbfdbe74f2"}, "created_at": 1700082649.5255842, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ef1a8a77e94a77cf52d741cbfdbe74f2\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.yml/dbt_expectations_expect_table__ef1a8a77e94a77cf52d741cbfdbe74f2.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__account_product\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__account_product", "attached_node": "model.yoda.analytics___salesforce__account_product"}, "test.yoda.not_null_analytics___salesforce__account_tracking_daily_date.797d2a55bf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___salesforce__account_tracking_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__account_tracking_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__account_tracking_daily_date.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__account_tracking_daily_date.797d2a55bf", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_tracking_daily", "not_null_analytics___salesforce__account_tracking_daily_date"], "alias": "not_null_analytics___salesforce__account_tracking_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082649.5648713, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_tracking_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_tracking_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.yml/not_null_analytics___salesforce__account_tracking_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__account_tracking_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___salesforce__account_tracking_daily", "attached_node": "model.yoda.analytics___salesforce__account_tracking_daily"}, "test.yoda.not_null_analytics___salesforce__account_tracking_daily_account_id.10486c705b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__account_tracking_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__account_tracking_daily_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_b54a88e5dade5f696729eb4a0ebf61e5.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__account_tracking_daily_account_id.10486c705b", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_tracking_daily", "not_null_analytics___salesforce__account_tracking_daily_account_id"], "alias": "not_null_analytics___salesforc_b54a88e5dade5f696729eb4a0ebf61e5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_b54a88e5dade5f696729eb4a0ebf61e5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_b54a88e5dade5f696729eb4a0ebf61e5"}, "created_at": 1700082649.570776, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_b54a88e5dade5f696729eb4a0ebf61e5\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_tracking_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_tracking_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.yml/not_null_analytics___salesforc_b54a88e5dade5f696729eb4a0ebf61e5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__account_tracking_daily where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___salesforce__account_tracking_daily", "attached_node": "model.yoda.analytics___salesforce__account_tracking_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__account_tracking_daily_date__account_id.4235272552": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "account_id"], "model": "{{ get_where_subquery(ref('analytics___salesforce__account_tracking_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___salesforce__account_tracking_daily_date__account_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_fbe147ee312468f67ba4c9ba6e28eaef.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__account_tracking_daily_date__account_id.4235272552", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__account_tracking_daily", "dbt_utils_unique_combination_of_columns_analytics___salesforce__account_tracking_daily_date__account_id"], "alias": "dbt_utils_unique_combination_o_fbe147ee312468f67ba4c9ba6e28eaef", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_fbe147ee312468f67ba4c9ba6e28eaef", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_fbe147ee312468f67ba4c9ba6e28eaef"}, "created_at": 1700082649.5769992, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_fbe147ee312468f67ba4c9ba6e28eaef\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__account_tracking_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__account_tracking_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.yml/dbt_utils_unique_combination_o_fbe147ee312468f67ba4c9ba6e28eaef.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, account_id\n from dev_dkruh1.analytics___salesforce__account_tracking_daily\n group by date, account_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__account_tracking_daily", "attached_node": "model.yoda.analytics___salesforce__account_tracking_daily"}, "test.yoda.not_null_analytics___salesforce__campaign_member_field_history_campaign_member_id.7be38168d2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_member_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__campaign_member_field_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__campaign_member_field_history_campaign_member_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_2a16cf84c807176ef4ebbaf98468b5ec.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__campaign_member_field_history_campaign_member_id.7be38168d2", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__campaign_member_field_history", "not_null_analytics___salesforce__campaign_member_field_history_campaign_member_id"], "alias": "not_null_analytics___salesforc_2a16cf84c807176ef4ebbaf98468b5ec", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_2a16cf84c807176ef4ebbaf98468b5ec", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_2a16cf84c807176ef4ebbaf98468b5ec"}, "created_at": 1700082649.6017394, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_2a16cf84c807176ef4ebbaf98468b5ec\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__campaign_member_field_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__campaign_member_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.yml/not_null_analytics___salesforc_2a16cf84c807176ef4ebbaf98468b5ec.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__campaign_member_field_history where campaign_member_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_member_id", "file_key_name": "models.analytics___salesforce__campaign_member_field_history", "attached_node": "model.yoda.analytics___salesforce__campaign_member_field_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__campaign_member_field_history_1.c8a449e20f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__campaign_member_field_history')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__campaign_member_field_history_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__dbd5d4bb4a755b08ecf9f12bfc9be2c3.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__campaign_member_field_history_1.c8a449e20f", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__campaign_member_field_history", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__campaign_member_field_history_1"], "alias": "dbt_expectations_expect_table__dbd5d4bb4a755b08ecf9f12bfc9be2c3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__dbd5d4bb4a755b08ecf9f12bfc9be2c3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__dbd5d4bb4a755b08ecf9f12bfc9be2c3"}, "created_at": 1700082649.6080627, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__dbd5d4bb4a755b08ecf9f12bfc9be2c3\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__campaign_member_field_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__campaign_member_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.yml/dbt_expectations_expect_table__dbd5d4bb4a755b08ecf9f12bfc9be2c3.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__campaign_member_field_history\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__campaign_member_field_history", "attached_node": "model.yoda.analytics___salesforce__campaign_member_field_history"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__campaign_member_field_history_campaign_member_id__field_name__from_time.344e9966b2": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["campaign_member_id", "field_name", "from_time"], "model": "{{ get_where_subquery(ref('analytics___salesforce__campaign_member_field_history')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___salesforce__campaign_member_field_history_campaign_member_id__field_name__from_time", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_6338e8268a8e7a0995d5eca78d59614e.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__campaign_member_field_history_campaign_member_id__field_name__from_time.344e9966b2", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__campaign_member_field_history", "dbt_utils_unique_combination_of_columns_analytics___salesforce__campaign_member_field_history_campaign_member_id__field_name__from_time"], "alias": "dbt_utils_unique_combination_o_6338e8268a8e7a0995d5eca78d59614e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_6338e8268a8e7a0995d5eca78d59614e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_6338e8268a8e7a0995d5eca78d59614e"}, "created_at": 1700082649.6150377, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_6338e8268a8e7a0995d5eca78d59614e\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__campaign_member_field_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__campaign_member_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.yml/dbt_utils_unique_combination_o_6338e8268a8e7a0995d5eca78d59614e.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n campaign_member_id, field_name, from_time\n from dev_dkruh1.analytics___salesforce__campaign_member_field_history\n group by campaign_member_id, field_name, from_time\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__campaign_member_field_history", "attached_node": "model.yoda.analytics___salesforce__campaign_member_field_history"}, "test.yoda.unique_analytics___salesforce__deal_summary_deal_summary_id.387a36b275": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "deal_summary_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__deal_summary')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__deal_summary_deal_summary_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__deal_summary_deal_summary_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.yml", "unique_id": "test.yoda.unique_analytics___salesforce__deal_summary_deal_summary_id.387a36b275", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__deal_summary", "unique_analytics___salesforce__deal_summary_deal_summary_id"], "alias": "unique_analytics___salesforce__deal_summary_deal_summary_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082649.6651049, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__deal_summary", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__deal_summary"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.yml/unique_analytics___salesforce__deal_summary_deal_summary_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select deal_summary_id from dev_dkruh1.analytics___salesforce__deal_summary where deal_summary_id is not null group by deal_summary_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "deal_summary_id", "file_key_name": "models.analytics___salesforce__deal_summary", "attached_node": "model.yoda.analytics___salesforce__deal_summary"}, "test.yoda.not_null_analytics___salesforce__deal_summary_deal_summary_id.ba103f7317": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "deal_summary_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__deal_summary')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__deal_summary_deal_summary_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__deal_summary_deal_summary_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__deal_summary_deal_summary_id.ba103f7317", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__deal_summary", "not_null_analytics___salesforce__deal_summary_deal_summary_id"], "alias": "not_null_analytics___salesforce__deal_summary_deal_summary_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082649.6710644, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__deal_summary", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__deal_summary"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.yml/not_null_analytics___salesforce__deal_summary_deal_summary_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__deal_summary where deal_summary_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "deal_summary_id", "file_key_name": "models.analytics___salesforce__deal_summary", "attached_node": "model.yoda.analytics___salesforce__deal_summary"}, "test.yoda.not_null_analytics___salesforce__deal_summary_opportunity_id.03087133cd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__deal_summary')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__deal_summary_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__deal_summary_opportunity_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__deal_summary_opportunity_id.03087133cd", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__deal_summary", "not_null_analytics___salesforce__deal_summary_opportunity_id"], "alias": "not_null_analytics___salesforce__deal_summary_opportunity_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082649.6769438, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__deal_summary", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__deal_summary"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.yml/not_null_analytics___salesforce__deal_summary_opportunity_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__deal_summary where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___salesforce__deal_summary", "attached_node": "model.yoda.analytics___salesforce__deal_summary"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_1.9228eb7d64": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__deal_summary')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__991891ac5ef5aae7076bbb23313b468e.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_1.9228eb7d64", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__deal_summary", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_1"], "alias": "dbt_expectations_expect_table__991891ac5ef5aae7076bbb23313b468e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__991891ac5ef5aae7076bbb23313b468e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__991891ac5ef5aae7076bbb23313b468e"}, "created_at": 1700082649.6824338, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__991891ac5ef5aae7076bbb23313b468e\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__deal_summary", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__deal_summary"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.yml/dbt_expectations_expect_table__991891ac5ef5aae7076bbb23313b468e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__deal_summary\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__deal_summary", "attached_node": "model.yoda.analytics___salesforce__deal_summary"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_opportunity_id__opportunity_plan_id__plan.d096692b6a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["opportunity_id", "opportunity_plan_id", "plan"], "model": "{{ get_where_subquery(ref('analytics___salesforce__deal_summary')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_opportunity_id__opportunity_plan_id__plan", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_a5a616824d05dded32650cb84b015e0a.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_opportunity_id__opportunity_plan_id__plan.d096692b6a", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__deal_summary", "dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_opportunity_id__opportunity_plan_id__plan"], "alias": "dbt_utils_unique_combination_o_a5a616824d05dded32650cb84b015e0a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a5a616824d05dded32650cb84b015e0a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a5a616824d05dded32650cb84b015e0a"}, "created_at": 1700082649.6890192, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a5a616824d05dded32650cb84b015e0a\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__deal_summary", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__deal_summary"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.yml/dbt_utils_unique_combination_o_a5a616824d05dded32650cb84b015e0a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n opportunity_id, opportunity_plan_id, plan\n from dev_dkruh1.analytics___salesforce__deal_summary\n group by opportunity_id, opportunity_plan_id, plan\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__deal_summary", "attached_node": "model.yoda.analytics___salesforce__deal_summary"}, "test.yoda.unique_analytics___salesforce__deal_summary_product_deal_summary_product_id.57b1c94531": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "deal_summary_product_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__deal_summary_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__deal_summary_product_deal_summary_product_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__a84169d7e2141c7fa8969424a4c0af4e.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.yml", "unique_id": "test.yoda.unique_analytics___salesforce__deal_summary_product_deal_summary_product_id.57b1c94531", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__deal_summary_product", "unique_analytics___salesforce__deal_summary_product_deal_summary_product_id"], "alias": "unique_analytics___salesforce__a84169d7e2141c7fa8969424a4c0af4e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__a84169d7e2141c7fa8969424a4c0af4e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__a84169d7e2141c7fa8969424a4c0af4e"}, "created_at": 1700082649.7445736, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__a84169d7e2141c7fa8969424a4c0af4e\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__deal_summary_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__deal_summary_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.yml/unique_analytics___salesforce__a84169d7e2141c7fa8969424a4c0af4e.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select deal_summary_product_id from dev_dkruh1.analytics___salesforce__deal_summary_product where deal_summary_product_id is not null group by deal_summary_product_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "deal_summary_product_id", "file_key_name": "models.analytics___salesforce__deal_summary_product", "attached_node": "model.yoda.analytics___salesforce__deal_summary_product"}, "test.yoda.not_null_analytics___salesforce__deal_summary_product_deal_summary_product_id.31d4312769": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "deal_summary_product_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__deal_summary_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__deal_summary_product_deal_summary_product_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_43f93ea3f5de96bc28c5b1da217e9ac0.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__deal_summary_product_deal_summary_product_id.31d4312769", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__deal_summary_product", "not_null_analytics___salesforce__deal_summary_product_deal_summary_product_id"], "alias": "not_null_analytics___salesforc_43f93ea3f5de96bc28c5b1da217e9ac0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_43f93ea3f5de96bc28c5b1da217e9ac0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_43f93ea3f5de96bc28c5b1da217e9ac0"}, "created_at": 1700082649.7507365, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_43f93ea3f5de96bc28c5b1da217e9ac0\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__deal_summary_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__deal_summary_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.yml/not_null_analytics___salesforc_43f93ea3f5de96bc28c5b1da217e9ac0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__deal_summary_product where deal_summary_product_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "deal_summary_product_id", "file_key_name": "models.analytics___salesforce__deal_summary_product", "attached_node": "model.yoda.analytics___salesforce__deal_summary_product"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_product_1.72e8bd4470": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__deal_summary_product')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_product_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2c508d130f3a39bee6dc38524df1f768.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_product_1.72e8bd4470", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__deal_summary_product", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_product_1"], "alias": "dbt_expectations_expect_table__2c508d130f3a39bee6dc38524df1f768", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2c508d130f3a39bee6dc38524df1f768", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2c508d130f3a39bee6dc38524df1f768"}, "created_at": 1700082649.7581072, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2c508d130f3a39bee6dc38524df1f768\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__deal_summary_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__deal_summary_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.yml/dbt_expectations_expect_table__2c508d130f3a39bee6dc38524df1f768.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__deal_summary_product\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__deal_summary_product", "attached_node": "model.yoda.analytics___salesforce__deal_summary_product"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_product_opportunity_id__product.606e8c0004": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["opportunity_id", "product"], "model": "{{ get_where_subquery(ref('analytics___salesforce__deal_summary_product')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_product_opportunity_id__product", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_fbb3a50b44614bf191da8302ac3c0587.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_product_opportunity_id__product.606e8c0004", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__deal_summary_product", "dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_product_opportunity_id__product"], "alias": "dbt_utils_unique_combination_o_fbb3a50b44614bf191da8302ac3c0587", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_fbb3a50b44614bf191da8302ac3c0587", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_fbb3a50b44614bf191da8302ac3c0587"}, "created_at": 1700082649.7656765, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_fbb3a50b44614bf191da8302ac3c0587\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__deal_summary_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__deal_summary_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.yml/dbt_utils_unique_combination_o_fbb3a50b44614bf191da8302ac3c0587.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n opportunity_id, product\n from dev_dkruh1.analytics___salesforce__deal_summary_product\n group by opportunity_id, product\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__deal_summary_product", "attached_node": "model.yoda.analytics___salesforce__deal_summary_product"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__lead_1.6f1f5bb1a0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__lead')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__lead_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4ad66f105135f0a65087b024e3167a2f.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__lead_1.6f1f5bb1a0", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__lead", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__lead_1"], "alias": "dbt_expectations_expect_table__4ad66f105135f0a65087b024e3167a2f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4ad66f105135f0a65087b024e3167a2f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4ad66f105135f0a65087b024e3167a2f"}, "created_at": 1700082649.847177, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4ad66f105135f0a65087b024e3167a2f\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.yml/dbt_expectations_expect_table__4ad66f105135f0a65087b024e3167a2f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__lead\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__lead", "attached_node": "model.yoda.analytics___salesforce__lead"}, "test.yoda.unique_analytics___salesforce__live_chat_transcript_chat_id.273b64c735": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "chat_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__live_chat_transcript')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__live_chat_transcript_chat_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__live_chat_transcript_chat_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.yml", "unique_id": "test.yoda.unique_analytics___salesforce__live_chat_transcript_chat_id.273b64c735", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__live_chat_transcript", "unique_analytics___salesforce__live_chat_transcript_chat_id"], "alias": "unique_analytics___salesforce__live_chat_transcript_chat_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082649.9185874, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__live_chat_transcript", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__live_chat_transcript"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.yml/unique_analytics___salesforce__live_chat_transcript_chat_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select chat_id from dev_dkruh1.analytics___salesforce__live_chat_transcript where chat_id is not null group by chat_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "chat_id", "file_key_name": "models.analytics___salesforce__live_chat_transcript", "attached_node": "model.yoda.analytics___salesforce__live_chat_transcript"}, "test.yoda.not_null_analytics___salesforce__live_chat_transcript_chat_id.aa749713eb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "chat_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__live_chat_transcript')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__live_chat_transcript_chat_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__live_chat_transcript_chat_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__live_chat_transcript_chat_id.aa749713eb", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__live_chat_transcript", "not_null_analytics___salesforce__live_chat_transcript_chat_id"], "alias": "not_null_analytics___salesforce__live_chat_transcript_chat_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082649.924626, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__live_chat_transcript", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__live_chat_transcript"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.yml/not_null_analytics___salesforce__live_chat_transcript_chat_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__live_chat_transcript where chat_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "chat_id", "file_key_name": "models.analytics___salesforce__live_chat_transcript", "attached_node": "model.yoda.analytics___salesforce__live_chat_transcript"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__live_chat_transcript_1.5b1fca726d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__live_chat_transcript')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__live_chat_transcript_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6129f40fd4824626a44274c1f5d60fc9.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__live_chat_transcript_1.5b1fca726d", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__live_chat_transcript", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__live_chat_transcript_1"], "alias": "dbt_expectations_expect_table__6129f40fd4824626a44274c1f5d60fc9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6129f40fd4824626a44274c1f5d60fc9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6129f40fd4824626a44274c1f5d60fc9"}, "created_at": 1700082649.9326246, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6129f40fd4824626a44274c1f5d60fc9\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__live_chat_transcript", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__live_chat_transcript"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.yml/dbt_expectations_expect_table__6129f40fd4824626a44274c1f5d60fc9.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__live_chat_transcript\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__live_chat_transcript", "attached_node": "model.yoda.analytics___salesforce__live_chat_transcript"}, "test.yoda.unique_analytics___salesforce__mql_mql_id.d209fbec60": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "mql_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__mql')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__mql_mql_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__mql_mql_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.yml", "unique_id": "test.yoda.unique_analytics___salesforce__mql_mql_id.d209fbec60", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__mql", "unique_analytics___salesforce__mql_mql_id"], "alias": "unique_analytics___salesforce__mql_mql_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082649.9765885, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__mql", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__mql"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.yml/unique_analytics___salesforce__mql_mql_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select mql_id from dev_dkruh1.analytics___salesforce__mql where mql_id is not null group by mql_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "mql_id", "file_key_name": "models.analytics___salesforce__mql", "attached_node": "model.yoda.analytics___salesforce__mql"}, "test.yoda.not_null_analytics___salesforce__mql_mql_id.02bc1b90ba": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "mql_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__mql')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__mql_mql_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__mql_mql_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__mql_mql_id.02bc1b90ba", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__mql", "not_null_analytics___salesforce__mql_mql_id"], "alias": "not_null_analytics___salesforce__mql_mql_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082649.982297, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__mql", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__mql"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.yml/not_null_analytics___salesforce__mql_mql_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__mql where mql_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "mql_id", "file_key_name": "models.analytics___salesforce__mql", "attached_node": "model.yoda.analytics___salesforce__mql"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__mql_1.f074e992f7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__mql')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__mql_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c9e091d5ebe5b1c1e6f4568e71e17c51.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__mql_1.f074e992f7", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__mql", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__mql_1"], "alias": "dbt_expectations_expect_table__c9e091d5ebe5b1c1e6f4568e71e17c51", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c9e091d5ebe5b1c1e6f4568e71e17c51", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c9e091d5ebe5b1c1e6f4568e71e17c51"}, "created_at": 1700082649.9883466, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c9e091d5ebe5b1c1e6f4568e71e17c51\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__mql", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__mql"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.yml/dbt_expectations_expect_table__c9e091d5ebe5b1c1e6f4568e71e17c51.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__mql\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__mql", "attached_node": "model.yoda.analytics___salesforce__mql"}, "test.yoda.unique_analytics___salesforce__new_organization_Organization_Key__c.47411e9518": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "Organization_Key__c", "model": "{{ get_where_subquery(ref('analytics___salesforce__new_organization')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__new_organization_Organization_Key__c", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__718e626f2468ee483d9272d40a24aaf6.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.yml", "unique_id": "test.yoda.unique_analytics___salesforce__new_organization_Organization_Key__c.47411e9518", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__new_organization", "unique_analytics___salesforce__new_organization_Organization_Key__c"], "alias": "unique_analytics___salesforce__718e626f2468ee483d9272d40a24aaf6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__718e626f2468ee483d9272d40a24aaf6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__718e626f2468ee483d9272d40a24aaf6"}, "created_at": 1700082650.0087075, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__718e626f2468ee483d9272d40a24aaf6\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__new_organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__new_organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.yml/unique_analytics___salesforce__718e626f2468ee483d9272d40a24aaf6.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select Organization_Key__c from dev_dkruh1.analytics___salesforce__new_organization where Organization_Key__c is not null group by Organization_Key__c having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "Organization_Key__c", "file_key_name": "models.analytics___salesforce__new_organization", "attached_node": "model.yoda.analytics___salesforce__new_organization"}, "test.yoda.not_null_analytics___salesforce__new_organization_Organization_Key__c.7b2bf4e82a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "Organization_Key__c", "model": "{{ get_where_subquery(ref('analytics___salesforce__new_organization')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__new_organization_Organization_Key__c", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_eceb282050c7681a54e06e1a7f2dfff4.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__new_organization_Organization_Key__c.7b2bf4e82a", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__new_organization", "not_null_analytics___salesforce__new_organization_Organization_Key__c"], "alias": "not_null_analytics___salesforc_eceb282050c7681a54e06e1a7f2dfff4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_eceb282050c7681a54e06e1a7f2dfff4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_eceb282050c7681a54e06e1a7f2dfff4"}, "created_at": 1700082650.0165105, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_eceb282050c7681a54e06e1a7f2dfff4\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__new_organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__new_organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.yml/not_null_analytics___salesforc_eceb282050c7681a54e06e1a7f2dfff4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__new_organization where Organization_Key__c is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "Organization_Key__c", "file_key_name": "models.analytics___salesforce__new_organization", "attached_node": "model.yoda.analytics___salesforce__new_organization"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__new_organization_1.20953b5d1f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__new_organization')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__new_organization_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2234742b362b8070d665c0deda3e38ff.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__new_organization_1.20953b5d1f", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__new_organization", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__new_organization_1"], "alias": "dbt_expectations_expect_table__2234742b362b8070d665c0deda3e38ff", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2234742b362b8070d665c0deda3e38ff", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2234742b362b8070d665c0deda3e38ff"}, "created_at": 1700082650.022932, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2234742b362b8070d665c0deda3e38ff\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__new_organization", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__new_organization"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.yml/dbt_expectations_expect_table__2234742b362b8070d665c0deda3e38ff.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__new_organization\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__new_organization", "attached_node": "model.yoda.analytics___salesforce__new_organization"}, "test.yoda.unique_analytics___salesforce__onboarding_project_onboarding_project_id.71a179fe6c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "onboarding_project_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__onboarding_project')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__onboarding_project_onboarding_project_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__7c16b3eefe0513d310a378831349ff2b.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.yml", "unique_id": "test.yoda.unique_analytics___salesforce__onboarding_project_onboarding_project_id.71a179fe6c", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__onboarding_project", "unique_analytics___salesforce__onboarding_project_onboarding_project_id"], "alias": "unique_analytics___salesforce__7c16b3eefe0513d310a378831349ff2b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__7c16b3eefe0513d310a378831349ff2b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__7c16b3eefe0513d310a378831349ff2b"}, "created_at": 1700082650.083967, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__7c16b3eefe0513d310a378831349ff2b\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__onboarding_project", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__onboarding_project"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.yml/unique_analytics___salesforce__7c16b3eefe0513d310a378831349ff2b.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select onboarding_project_id from dev_dkruh1.analytics___salesforce__onboarding_project where onboarding_project_id is not null group by onboarding_project_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "onboarding_project_id", "file_key_name": "models.analytics___salesforce__onboarding_project", "attached_node": "model.yoda.analytics___salesforce__onboarding_project"}, "test.yoda.not_null_analytics___salesforce__onboarding_project_onboarding_project_id.5dc0a7f0e2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "onboarding_project_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__onboarding_project')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__onboarding_project_onboarding_project_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_f9458afffa7596d850c0365a8886835f.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__onboarding_project_onboarding_project_id.5dc0a7f0e2", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__onboarding_project", "not_null_analytics___salesforce__onboarding_project_onboarding_project_id"], "alias": "not_null_analytics___salesforc_f9458afffa7596d850c0365a8886835f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_f9458afffa7596d850c0365a8886835f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_f9458afffa7596d850c0365a8886835f"}, "created_at": 1700082650.0904129, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_f9458afffa7596d850c0365a8886835f\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__onboarding_project", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__onboarding_project"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.yml/not_null_analytics___salesforc_f9458afffa7596d850c0365a8886835f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__onboarding_project where onboarding_project_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "onboarding_project_id", "file_key_name": "models.analytics___salesforce__onboarding_project", "attached_node": "model.yoda.analytics___salesforce__onboarding_project"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__onboarding_project_1.3e73956d71": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__onboarding_project')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__onboarding_project_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d5b1fc4b3a4765ad972ba5c8d324f190.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__onboarding_project_1.3e73956d71", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__onboarding_project", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__onboarding_project_1"], "alias": "dbt_expectations_expect_table__d5b1fc4b3a4765ad972ba5c8d324f190", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d5b1fc4b3a4765ad972ba5c8d324f190", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d5b1fc4b3a4765ad972ba5c8d324f190"}, "created_at": 1700082650.0968823, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d5b1fc4b3a4765ad972ba5c8d324f190\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__onboarding_project", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__onboarding_project"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.yml/dbt_expectations_expect_table__d5b1fc4b3a4765ad972ba5c8d324f190.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__onboarding_project\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__onboarding_project", "attached_node": "model.yoda.analytics___salesforce__onboarding_project"}, "test.yoda.unique_analytics___salesforce__opportunity_opportunity_id.d7cc183433": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__opportunity')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__opportunity_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__opportunity_opportunity_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.yml", "unique_id": "test.yoda.unique_analytics___salesforce__opportunity_opportunity_id.d7cc183433", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__opportunity", "unique_analytics___salesforce__opportunity_opportunity_id"], "alias": "unique_analytics___salesforce__opportunity_opportunity_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082650.241436, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.yml/unique_analytics___salesforce__opportunity_opportunity_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select opportunity_id from dev_dkruh1.analytics___salesforce__opportunity where opportunity_id is not null group by opportunity_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___salesforce__opportunity", "attached_node": "model.yoda.analytics___salesforce__opportunity"}, "test.yoda.not_null_analytics___salesforce__opportunity_opportunity_id.65909d08bc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__opportunity')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__opportunity_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__opportunity_opportunity_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__opportunity_opportunity_id.65909d08bc", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__opportunity", "not_null_analytics___salesforce__opportunity_opportunity_id"], "alias": "not_null_analytics___salesforce__opportunity_opportunity_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082650.247155, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.yml/not_null_analytics___salesforce__opportunity_opportunity_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__opportunity where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___salesforce__opportunity", "attached_node": "model.yoda.analytics___salesforce__opportunity"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_1.258691c816": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__opportunity')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2e026f61620f44c53bf4034097674408.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_1.258691c816", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__opportunity", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_1"], "alias": "dbt_expectations_expect_table__2e026f61620f44c53bf4034097674408", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2e026f61620f44c53bf4034097674408", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2e026f61620f44c53bf4034097674408"}, "created_at": 1700082650.2533512, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2e026f61620f44c53bf4034097674408\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.yml/dbt_expectations_expect_table__2e026f61620f44c53bf4034097674408.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__opportunity\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__opportunity", "attached_node": "model.yoda.analytics___salesforce__opportunity"}, "test.yoda.unique_analytics___salesforce__opportunity_line_item_line_item_id.f73276dcba": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "line_item_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__opportunity_line_item')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__opportunity_line_item_line_item_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__d4d9226268cd55979fcb0c61b64dc592.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.yml", "unique_id": "test.yoda.unique_analytics___salesforce__opportunity_line_item_line_item_id.f73276dcba", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__opportunity_line_item", "unique_analytics___salesforce__opportunity_line_item_line_item_id"], "alias": "unique_analytics___salesforce__d4d9226268cd55979fcb0c61b64dc592", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__d4d9226268cd55979fcb0c61b64dc592", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__d4d9226268cd55979fcb0c61b64dc592"}, "created_at": 1700082650.2899952, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__d4d9226268cd55979fcb0c61b64dc592\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity_line_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__opportunity_line_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.yml/unique_analytics___salesforce__d4d9226268cd55979fcb0c61b64dc592.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select line_item_id from dev_dkruh1.analytics___salesforce__opportunity_line_item where line_item_id is not null group by line_item_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "line_item_id", "file_key_name": "models.analytics___salesforce__opportunity_line_item", "attached_node": "model.yoda.analytics___salesforce__opportunity_line_item"}, "test.yoda.not_null_analytics___salesforce__opportunity_line_item_line_item_id.b4ec3e167f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "line_item_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__opportunity_line_item')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__opportunity_line_item_line_item_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_6e878b4b8c6cc6e0b44cfda368f42ee9.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__opportunity_line_item_line_item_id.b4ec3e167f", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__opportunity_line_item", "not_null_analytics___salesforce__opportunity_line_item_line_item_id"], "alias": "not_null_analytics___salesforc_6e878b4b8c6cc6e0b44cfda368f42ee9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_6e878b4b8c6cc6e0b44cfda368f42ee9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_6e878b4b8c6cc6e0b44cfda368f42ee9"}, "created_at": 1700082650.2960386, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_6e878b4b8c6cc6e0b44cfda368f42ee9\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity_line_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__opportunity_line_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.yml/not_null_analytics___salesforc_6e878b4b8c6cc6e0b44cfda368f42ee9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__opportunity_line_item where line_item_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "line_item_id", "file_key_name": "models.analytics___salesforce__opportunity_line_item", "attached_node": "model.yoda.analytics___salesforce__opportunity_line_item"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_line_item_1.df821c0795": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__opportunity_line_item')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_line_item_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8a758f86309d27c79a14ffbaef21f458.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_line_item_1.df821c0795", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__opportunity_line_item", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_line_item_1"], "alias": "dbt_expectations_expect_table__8a758f86309d27c79a14ffbaef21f458", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8a758f86309d27c79a14ffbaef21f458", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8a758f86309d27c79a14ffbaef21f458"}, "created_at": 1700082650.3020766, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8a758f86309d27c79a14ffbaef21f458\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__opportunity_line_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__opportunity_line_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.yml/dbt_expectations_expect_table__8a758f86309d27c79a14ffbaef21f458.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__opportunity_line_item\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__opportunity_line_item", "attached_node": "model.yoda.analytics___salesforce__opportunity_line_item"}, "test.yoda.unique_analytics___salesforce__partner_engagement_partner_engagement_id.b2ccbbcf95": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "partner_engagement_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__partner_engagement')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__partner_engagement_partner_engagement_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__5f5987b078ef36e32019d0b948026fc8.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.yml", "unique_id": "test.yoda.unique_analytics___salesforce__partner_engagement_partner_engagement_id.b2ccbbcf95", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__partner_engagement", "unique_analytics___salesforce__partner_engagement_partner_engagement_id"], "alias": "unique_analytics___salesforce__5f5987b078ef36e32019d0b948026fc8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__5f5987b078ef36e32019d0b948026fc8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__5f5987b078ef36e32019d0b948026fc8"}, "created_at": 1700082650.358975, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__5f5987b078ef36e32019d0b948026fc8\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__partner_engagement", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__partner_engagement"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.yml/unique_analytics___salesforce__5f5987b078ef36e32019d0b948026fc8.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select partner_engagement_id from dev_dkruh1.analytics___salesforce__partner_engagement where partner_engagement_id is not null group by partner_engagement_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "partner_engagement_id", "file_key_name": "models.analytics___salesforce__partner_engagement", "attached_node": "model.yoda.analytics___salesforce__partner_engagement"}, "test.yoda.not_null_analytics___salesforce__partner_engagement_partner_engagement_id.629541df50": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "partner_engagement_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__partner_engagement')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__partner_engagement_partner_engagement_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_df31ea6348f7feabb3bd297749ed69c6.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__partner_engagement_partner_engagement_id.629541df50", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__partner_engagement", "not_null_analytics___salesforce__partner_engagement_partner_engagement_id"], "alias": "not_null_analytics___salesforc_df31ea6348f7feabb3bd297749ed69c6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_df31ea6348f7feabb3bd297749ed69c6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_df31ea6348f7feabb3bd297749ed69c6"}, "created_at": 1700082650.3653538, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_df31ea6348f7feabb3bd297749ed69c6\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__partner_engagement", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__partner_engagement"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.yml/not_null_analytics___salesforc_df31ea6348f7feabb3bd297749ed69c6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__partner_engagement where partner_engagement_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "partner_engagement_id", "file_key_name": "models.analytics___salesforce__partner_engagement", "attached_node": "model.yoda.analytics___salesforce__partner_engagement"}, "test.yoda.not_null_analytics___salesforce__service_case_case_id.1226a89545": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "case_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__service_case')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__service_case_case_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__service_case_case_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__service_case_case_id.1226a89545", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__service_case", "not_null_analytics___salesforce__service_case_case_id"], "alias": "not_null_analytics___salesforce__service_case_case_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082650.4237852, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__service_case", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__service_case"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.yml/not_null_analytics___salesforce__service_case_case_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__service_case where case_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "case_id", "file_key_name": "models.analytics___salesforce__service_case", "attached_node": "model.yoda.analytics___salesforce__service_case"}, "test.yoda.unique_analytics___salesforce__service_case_case_id.e02fd95829": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "case_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__service_case')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__service_case_case_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__service_case_case_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.yml", "unique_id": "test.yoda.unique_analytics___salesforce__service_case_case_id.e02fd95829", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__service_case", "unique_analytics___salesforce__service_case_case_id"], "alias": "unique_analytics___salesforce__service_case_case_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082650.429789, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__service_case", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__service_case"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.yml/unique_analytics___salesforce__service_case_case_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select case_id from dev_dkruh1.analytics___salesforce__service_case where case_id is not null group by case_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "case_id", "file_key_name": "models.analytics___salesforce__service_case", "attached_node": "model.yoda.analytics___salesforce__service_case"}, "test.yoda.not_null_analytics___salesforce__service_case_case_number.2b19a4e71c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "case_number", "model": "{{ get_where_subquery(ref('analytics___salesforce__service_case')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__service_case_case_number", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__service_case_case_number.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__service_case_case_number.2b19a4e71c", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__service_case", "not_null_analytics___salesforce__service_case_case_number"], "alias": "not_null_analytics___salesforce__service_case_case_number", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082650.4359472, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__service_case", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__service_case"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.yml/not_null_analytics___salesforce__service_case_case_number.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__service_case where case_number is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "case_number", "file_key_name": "models.analytics___salesforce__service_case", "attached_node": "model.yoda.analytics___salesforce__service_case"}, "test.yoda.unique_analytics___salesforce__service_case_case_number.3b647293ea": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "case_number", "model": "{{ get_where_subquery(ref('analytics___salesforce__service_case')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__service_case_case_number", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__service_case_case_number.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.yml", "unique_id": "test.yoda.unique_analytics___salesforce__service_case_case_number.3b647293ea", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__service_case", "unique_analytics___salesforce__service_case_case_number"], "alias": "unique_analytics___salesforce__service_case_case_number", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082650.4421158, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__service_case", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__service_case"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.yml/unique_analytics___salesforce__service_case_case_number.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select case_number from dev_dkruh1.analytics___salesforce__service_case where case_number is not null group by case_number having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "case_number", "file_key_name": "models.analytics___salesforce__service_case", "attached_node": "model.yoda.analytics___salesforce__service_case"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__service_case_1.54e258537d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__service_case')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__service_case_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f60e7ab053df0a09c1083e6fdb7a628a.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__service_case_1.54e258537d", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__service_case", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__service_case_1"], "alias": "dbt_expectations_expect_table__f60e7ab053df0a09c1083e6fdb7a628a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f60e7ab053df0a09c1083e6fdb7a628a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f60e7ab053df0a09c1083e6fdb7a628a"}, "created_at": 1700082650.4483001, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f60e7ab053df0a09c1083e6fdb7a628a\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__service_case", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__service_case"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.yml/dbt_expectations_expect_table__f60e7ab053df0a09c1083e6fdb7a628a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__service_case\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__service_case", "attached_node": "model.yoda.analytics___salesforce__service_case"}, "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c.541c4126d5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "App_Key__c", "model": "{{ get_where_subquery(ref('analytics___salesforce__store_product_metrics_snapshot_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_0dea5ebe2f8ac0961a5d719195ef7490.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c.541c4126d5", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__store_product_metrics_snapshot_daily", "not_null_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c"], "alias": "not_null_analytics___salesforc_0dea5ebe2f8ac0961a5d719195ef7490", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_0dea5ebe2f8ac0961a5d719195ef7490", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_0dea5ebe2f8ac0961a5d719195ef7490"}, "created_at": 1700082650.4772751, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_0dea5ebe2f8ac0961a5d719195ef7490\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__store_product_metrics_snapshot_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.yml/not_null_analytics___salesforc_0dea5ebe2f8ac0961a5d719195ef7490.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__store_product_metrics_snapshot_daily where App_Key__c is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "App_Key__c", "file_key_name": "models.analytics___salesforce__store_product_metrics_snapshot_daily", "attached_node": "model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"}, "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_daily_Product_Metrics_Name__c.1d4159a1ed": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "Product_Metrics_Name__c", "model": "{{ get_where_subquery(ref('analytics___salesforce__store_product_metrics_snapshot_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__store_product_metrics_snapshot_daily_Product_Metrics_Name__c", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_e9b1f26a07352ca5a25e88a172d0390f.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_daily_Product_Metrics_Name__c.1d4159a1ed", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__store_product_metrics_snapshot_daily", "not_null_analytics___salesforce__store_product_metrics_snapshot_daily_Product_Metrics_Name__c"], "alias": "not_null_analytics___salesforc_e9b1f26a07352ca5a25e88a172d0390f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_e9b1f26a07352ca5a25e88a172d0390f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_e9b1f26a07352ca5a25e88a172d0390f"}, "created_at": 1700082650.4835114, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_e9b1f26a07352ca5a25e88a172d0390f\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__store_product_metrics_snapshot_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.yml/not_null_analytics___salesforc_e9b1f26a07352ca5a25e88a172d0390f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__store_product_metrics_snapshot_daily where Product_Metrics_Name__c is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "Product_Metrics_Name__c", "file_key_name": "models.analytics___salesforce__store_product_metrics_snapshot_daily", "attached_node": "model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_daily_1.1a8396a1a0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__store_product_metrics_snapshot_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__9b3cf62cf0618c6a7fd15bb79008f319.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_daily_1.1a8396a1a0", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__store_product_metrics_snapshot_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_daily_1"], "alias": "dbt_expectations_expect_table__9b3cf62cf0618c6a7fd15bb79008f319", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__9b3cf62cf0618c6a7fd15bb79008f319", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__9b3cf62cf0618c6a7fd15bb79008f319"}, "created_at": 1700082650.489539, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__9b3cf62cf0618c6a7fd15bb79008f319\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__store_product_metrics_snapshot_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.yml/dbt_expectations_expect_table__9b3cf62cf0618c6a7fd15bb79008f319.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__store_product_metrics_snapshot_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__store_product_metrics_snapshot_daily", "attached_node": "model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c__Product_Metrics_Name__c.d8838388cf": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["App_Key__c", "Product_Metrics_Name__c"], "model": "{{ get_where_subquery(ref('analytics___salesforce__store_product_metrics_snapshot_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c__Product_Metrics_Name__c", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_aec4e231a78626fd9fdde5fe51cc57c8.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c__Product_Metrics_Name__c.d8838388cf", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__store_product_metrics_snapshot_daily", "dbt_utils_unique_combination_of_columns_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c__Product_Metrics_Name__c"], "alias": "dbt_utils_unique_combination_o_aec4e231a78626fd9fdde5fe51cc57c8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_aec4e231a78626fd9fdde5fe51cc57c8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_aec4e231a78626fd9fdde5fe51cc57c8"}, "created_at": 1700082650.4971533, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_aec4e231a78626fd9fdde5fe51cc57c8\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__store_product_metrics_snapshot_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.yml/dbt_utils_unique_combination_o_aec4e231a78626fd9fdde5fe51cc57c8.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n App_Key__c, Product_Metrics_Name__c\n from dev_dkruh1.analytics___salesforce__store_product_metrics_snapshot_daily\n group by App_Key__c, Product_Metrics_Name__c\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__store_product_metrics_snapshot_daily", "attached_node": "model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"}, "test.yoda.unique_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c.96c65ab273": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "External_ID__c", "model": "{{ get_where_subquery(ref('analytics___salesforce__store_product_metrics_snapshot_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__ce51f13dc4ebc3d08d89168323b1ebb2.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.yml", "unique_id": "test.yoda.unique_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c.96c65ab273", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__store_product_metrics_snapshot_monthly", "unique_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c"], "alias": "unique_analytics___salesforce__ce51f13dc4ebc3d08d89168323b1ebb2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__ce51f13dc4ebc3d08d89168323b1ebb2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__ce51f13dc4ebc3d08d89168323b1ebb2"}, "created_at": 1700082650.5274918, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__ce51f13dc4ebc3d08d89168323b1ebb2\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__store_product_metrics_snapshot_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.yml/unique_analytics___salesforce__ce51f13dc4ebc3d08d89168323b1ebb2.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select External_ID__c from dev_dkruh1.analytics___salesforce__store_product_metrics_snapshot_monthly where External_ID__c is not null group by External_ID__c having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "External_ID__c", "file_key_name": "models.analytics___salesforce__store_product_metrics_snapshot_monthly", "attached_node": "model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"}, "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c.42a91a77a8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "External_ID__c", "model": "{{ get_where_subquery(ref('analytics___salesforce__store_product_metrics_snapshot_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_31cfabb45ad3952b4a8faef63d36e1b3.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c.42a91a77a8", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__store_product_metrics_snapshot_monthly", "not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c"], "alias": "not_null_analytics___salesforc_31cfabb45ad3952b4a8faef63d36e1b3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_31cfabb45ad3952b4a8faef63d36e1b3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_31cfabb45ad3952b4a8faef63d36e1b3"}, "created_at": 1700082650.534381, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_31cfabb45ad3952b4a8faef63d36e1b3\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__store_product_metrics_snapshot_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.yml/not_null_analytics___salesforc_31cfabb45ad3952b4a8faef63d36e1b3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__store_product_metrics_snapshot_monthly where External_ID__c is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "External_ID__c", "file_key_name": "models.analytics___salesforce__store_product_metrics_snapshot_monthly", "attached_node": "model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"}, "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Metrics_Name__c.26d3e4508a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "Product_Metrics_Name__c", "model": "{{ get_where_subquery(ref('analytics___salesforce__store_product_metrics_snapshot_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Metrics_Name__c", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_39a5732e1639d85dbf2bce93d0e4a551.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Metrics_Name__c.26d3e4508a", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__store_product_metrics_snapshot_monthly", "not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Metrics_Name__c"], "alias": "not_null_analytics___salesforc_39a5732e1639d85dbf2bce93d0e4a551", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_39a5732e1639d85dbf2bce93d0e4a551", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_39a5732e1639d85dbf2bce93d0e4a551"}, "created_at": 1700082650.540858, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_39a5732e1639d85dbf2bce93d0e4a551\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__store_product_metrics_snapshot_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.yml/not_null_analytics___salesforc_39a5732e1639d85dbf2bce93d0e4a551.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__store_product_metrics_snapshot_monthly where Product_Metrics_Name__c is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "Product_Metrics_Name__c", "file_key_name": "models.analytics___salesforce__store_product_metrics_snapshot_monthly", "attached_node": "model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_monthly_1.5a5b0be37d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__store_product_metrics_snapshot_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0a1dbbb7445d063e9237408d84922c24.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_monthly_1.5a5b0be37d", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__store_product_metrics_snapshot_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_monthly_1"], "alias": "dbt_expectations_expect_table__0a1dbbb7445d063e9237408d84922c24", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0a1dbbb7445d063e9237408d84922c24", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0a1dbbb7445d063e9237408d84922c24"}, "created_at": 1700082650.5468445, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0a1dbbb7445d063e9237408d84922c24\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__store_product_metrics_snapshot_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.yml/dbt_expectations_expect_table__0a1dbbb7445d063e9237408d84922c24.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__store_product_metrics_snapshot_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__store_product_metrics_snapshot_monthly", "attached_node": "model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"}, "test.yoda.unique_analytics___salesforce__task_task_id.0f8d2488b9": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "task_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__task')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__task_task_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__task_task_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.yml", "unique_id": "test.yoda.unique_analytics___salesforce__task_task_id.0f8d2488b9", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__task", "unique_analytics___salesforce__task_task_id"], "alias": "unique_analytics___salesforce__task_task_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082650.5793114, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__task", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__task"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.yml/unique_analytics___salesforce__task_task_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select task_id from dev_dkruh1.analytics___salesforce__task where task_id is not null group by task_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "task_id", "file_key_name": "models.analytics___salesforce__task", "attached_node": "model.yoda.analytics___salesforce__task"}, "test.yoda.not_null_analytics___salesforce__task_task_id.d8090db429": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "task_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__task')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__task_task_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__task_task_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__task_task_id.d8090db429", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__task", "not_null_analytics___salesforce__task_task_id"], "alias": "not_null_analytics___salesforce__task_task_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082650.5851772, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__task", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__task"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.yml/not_null_analytics___salesforce__task_task_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__task where task_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "task_id", "file_key_name": "models.analytics___salesforce__task", "attached_node": "model.yoda.analytics___salesforce__task"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__task_1.da7010e10f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__task')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__task_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f0d598003b41ae133ce9e2d41e43fbbc.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__task_1.da7010e10f", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__task", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__task_1"], "alias": "dbt_expectations_expect_table__f0d598003b41ae133ce9e2d41e43fbbc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f0d598003b41ae133ce9e2d41e43fbbc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f0d598003b41ae133ce9e2d41e43fbbc"}, "created_at": 1700082650.591475, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f0d598003b41ae133ce9e2d41e43fbbc\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__task", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__task"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.yml/dbt_expectations_expect_table__f0d598003b41ae133ce9e2d41e43fbbc.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__task\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__task", "attached_node": "model.yoda.analytics___salesforce__task"}, "test.yoda.unique_analytics___salesforce__user_overtime_user_role_id.78768862b4": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "user_role_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__user_overtime')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce__user_overtime_user_role_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__user_overtime_user_role_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.yml", "unique_id": "test.yoda.unique_analytics___salesforce__user_overtime_user_role_id.78768862b4", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__user_overtime", "unique_analytics___salesforce__user_overtime_user_role_id"], "alias": "unique_analytics___salesforce__user_overtime_user_role_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082650.641397, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__user_overtime", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__user_overtime"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.yml/unique_analytics___salesforce__user_overtime_user_role_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select user_role_id from dev_dkruh1.analytics___salesforce__user_overtime where user_role_id is not null group by user_role_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_role_id", "file_key_name": "models.analytics___salesforce__user_overtime", "attached_node": "model.yoda.analytics___salesforce__user_overtime"}, "test.yoda.not_null_analytics___salesforce__user_overtime_user_role_id.a4cc02bdfd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_role_id", "model": "{{ get_where_subquery(ref('analytics___salesforce__user_overtime')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce__user_overtime_user_role_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce__user_overtime_user_role_id.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.yml", "unique_id": "test.yoda.not_null_analytics___salesforce__user_overtime_user_role_id.a4cc02bdfd", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__user_overtime", "not_null_analytics___salesforce__user_overtime_user_role_id"], "alias": "not_null_analytics___salesforce__user_overtime_user_role_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082650.647616, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce__user_overtime", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__user_overtime"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.yml/not_null_analytics___salesforce__user_overtime_user_role_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce__user_overtime where user_role_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_role_id", "file_key_name": "models.analytics___salesforce__user_overtime", "attached_node": "model.yoda.analytics___salesforce__user_overtime"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__user_overtime_1.347df68a4b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce__user_overtime')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__user_overtime_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5b83fc179f3a790898e9cc782dedd539.sql", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__user_overtime_1.347df68a4b", "fqn": ["yoda", "analytics", "salesforce", "marts", "analytics___salesforce__user_overtime", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__user_overtime_1"], "alias": "dbt_expectations_expect_table__5b83fc179f3a790898e9cc782dedd539", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5b83fc179f3a790898e9cc782dedd539", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5b83fc179f3a790898e9cc782dedd539"}, "created_at": 1700082650.6533685, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5b83fc179f3a790898e9cc782dedd539\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce__user_overtime", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce__user_overtime"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.yml/dbt_expectations_expect_table__5b83fc179f3a790898e9cc782dedd539.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce__user_overtime\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce__user_overtime", "attached_node": "model.yoda.analytics___salesforce__user_overtime"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_full_1.ac3cbc15d7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__account_full')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_full_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d9d25e9dd327bb0fb27b359c63588c24.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_full_1.ac3cbc15d7", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__account_full", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_full_1"], "alias": "dbt_expectations_expect_table__d9d25e9dd327bb0fb27b359c63588c24", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d9d25e9dd327bb0fb27b359c63588c24", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d9d25e9dd327bb0fb27b359c63588c24"}, "created_at": 1700082653.7279222, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d9d25e9dd327bb0fb27b359c63588c24\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__account_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__account_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.yml/dbt_expectations_expect_table__d9d25e9dd327bb0fb27b359c63588c24.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__account_full\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__account_full", "attached_node": "model.yoda.analytics___salesforce_stg__account_full"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_product_c_full_1.08bbe6d6f3": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__account_product_c_full')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_product_c_full_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d14978e4f2f2c32b947dffb67cb4dad1.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_product_c_full_1.08bbe6d6f3", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__account_product_c_full", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_product_c_full_1"], "alias": "dbt_expectations_expect_table__d14978e4f2f2c32b947dffb67cb4dad1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d14978e4f2f2c32b947dffb67cb4dad1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d14978e4f2f2c32b947dffb67cb4dad1"}, "created_at": 1700082653.7855427, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d14978e4f2f2c32b947dffb67cb4dad1\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__account_product_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__account_product_c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.yml/dbt_expectations_expect_table__d14978e4f2f2c32b947dffb67cb4dad1.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__account_product_c_full\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__account_product_c_full", "attached_node": "model.yoda.analytics___salesforce_stg__account_product_c_full"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__campaign_1.2498c6bddb": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__campaign')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__campaign_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__b8ec73d2814f831e1ed5d89dcd8e4847.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__campaign_1.2498c6bddb", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__campaign", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__campaign_1"], "alias": "dbt_expectations_expect_table__b8ec73d2814f831e1ed5d89dcd8e4847", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__b8ec73d2814f831e1ed5d89dcd8e4847", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__b8ec73d2814f831e1ed5d89dcd8e4847"}, "created_at": 1700082653.846615, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__b8ec73d2814f831e1ed5d89dcd8e4847\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.yml/dbt_expectations_expect_table__b8ec73d2814f831e1ed5d89dcd8e4847.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__campaign\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__campaign", "attached_node": "model.yoda.analytics___salesforce_stg__campaign"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__contact_1.9b8de16b82": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__contact')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__contact_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e0d9c5b1ca82068beeffcd4b0d3f2853.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__contact_1.9b8de16b82", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__contact", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__contact_1"], "alias": "dbt_expectations_expect_table__e0d9c5b1ca82068beeffcd4b0d3f2853", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e0d9c5b1ca82068beeffcd4b0d3f2853", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e0d9c5b1ca82068beeffcd4b0d3f2853"}, "created_at": 1700082654.2185352, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e0d9c5b1ca82068beeffcd4b0d3f2853\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__contact"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.yml/dbt_expectations_expect_table__e0d9c5b1ca82068beeffcd4b0d3f2853.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__contact\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__contact", "attached_node": "model.yoda.analytics___salesforce_stg__contact"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__datedconversionrate_1.1431d985ae": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__datedconversionrate')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__datedconversionrate_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__b9602331679e6a81ceab42158f3d3c2f.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__datedconversionrate_1.1431d985ae", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__datedconversionrate", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__datedconversionrate_1"], "alias": "dbt_expectations_expect_table__b9602331679e6a81ceab42158f3d3c2f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__b9602331679e6a81ceab42158f3d3c2f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__b9602331679e6a81ceab42158f3d3c2f"}, "created_at": 1700082654.4308443, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__b9602331679e6a81ceab42158f3d3c2f\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__datedconversionrate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__datedconversionrate"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.yml/dbt_expectations_expect_table__b9602331679e6a81ceab42158f3d3c2f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__datedconversionrate\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__datedconversionrate", "attached_node": "model.yoda.analytics___salesforce_stg__datedconversionrate"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__lead_1.1175c9dc01": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__lead')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__lead_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__042dd4bf7434f0bd2face205b00f9118.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__lead_1.1175c9dc01", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__lead", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__lead_1"], "alias": "dbt_expectations_expect_table__042dd4bf7434f0bd2face205b00f9118", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__042dd4bf7434f0bd2face205b00f9118", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__042dd4bf7434f0bd2face205b00f9118"}, "created_at": 1700082655.0945458, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__042dd4bf7434f0bd2face205b00f9118\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.yml/dbt_expectations_expect_table__042dd4bf7434f0bd2face205b00f9118.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__lead\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__lead", "attached_node": "model.yoda.analytics___salesforce_stg__lead"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__livechattranscript_full_1.0b050ad4b7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__livechattranscript_full')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__livechattranscript_full_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2bc1b18720c5bfdfd844e0a760a346f1.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__livechattranscript_full_1.0b050ad4b7", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__livechattranscript_full", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__livechattranscript_full_1"], "alias": "dbt_expectations_expect_table__2bc1b18720c5bfdfd844e0a760a346f1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2bc1b18720c5bfdfd844e0a760a346f1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2bc1b18720c5bfdfd844e0a760a346f1"}, "created_at": 1700082655.1678894, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2bc1b18720c5bfdfd844e0a760a346f1\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__livechattranscript_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__livechattranscript_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.yml/dbt_expectations_expect_table__2bc1b18720c5bfdfd844e0a760a346f1.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__livechattranscript_full\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__livechattranscript_full", "attached_node": "model.yoda.analytics___salesforce_stg__livechattranscript_full"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__onboarding_project_c_full_1.7d63555589": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__onboarding_project_c_full')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__onboarding_project_c_full_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__de4c22e99cf3a036aa4f72de2c2d958b.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__onboarding_project_c_full_1.7d63555589", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__onboarding_project_c_full", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__onboarding_project_c_full_1"], "alias": "dbt_expectations_expect_table__de4c22e99cf3a036aa4f72de2c2d958b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__de4c22e99cf3a036aa4f72de2c2d958b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__de4c22e99cf3a036aa4f72de2c2d958b"}, "created_at": 1700082655.323775, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__de4c22e99cf3a036aa4f72de2c2d958b\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__onboarding_project_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__onboarding_project_c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.yml/dbt_expectations_expect_table__de4c22e99cf3a036aa4f72de2c2d958b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__onboarding_project_c_full\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__onboarding_project_c_full", "attached_node": "model.yoda.analytics___salesforce_stg__onboarding_project_c_full"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_c_full_1.a687f42933": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__opportunity_prediction_c_full')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_c_full_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e4cfa2586a73cc677a0dcef249fa592f.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_c_full_1.a687f42933", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__opportunity_prediction_c_full", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_c_full_1"], "alias": "dbt_expectations_expect_table__e4cfa2586a73cc677a0dcef249fa592f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e4cfa2586a73cc677a0dcef249fa592f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e4cfa2586a73cc677a0dcef249fa592f"}, "created_at": 1700082655.8512864, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e4cfa2586a73cc677a0dcef249fa592f\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__opportunity_prediction_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.yml/dbt_expectations_expect_table__e4cfa2586a73cc677a0dcef249fa592f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__opportunity_prediction_c_full\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__opportunity_prediction_c_full", "attached_node": "model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__partner_referral_c_full_1.14539c8ee1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__partner_referral_c_full')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__partner_referral_c_full_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__acd20ad14762e0c4e92dd803b49e7878.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__partner_referral_c_full_1.14539c8ee1", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__partner_referral_c_full", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__partner_referral_c_full_1"], "alias": "dbt_expectations_expect_table__acd20ad14762e0c4e92dd803b49e7878", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__acd20ad14762e0c4e92dd803b49e7878", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__acd20ad14762e0c4e92dd803b49e7878"}, "created_at": 1700082656.0347507, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__acd20ad14762e0c4e92dd803b49e7878\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__partner_referral_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__partner_referral_c_full"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.yml/dbt_expectations_expect_table__acd20ad14762e0c4e92dd803b49e7878.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__partner_referral_c_full\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__partner_referral_c_full", "attached_node": "model.yoda.analytics___salesforce_stg__partner_referral_c_full"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__task_1.75c8aed526": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__task')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__task_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4a1d07b00d216470724d0c63aa3c3fbb.sql", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__task_1.75c8aed526", "fqn": ["yoda", "analytics", "salesforce", "staging", "base", "analytics___salesforce_stg__task", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__task_1"], "alias": "dbt_expectations_expect_table__4a1d07b00d216470724d0c63aa3c3fbb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4a1d07b00d216470724d0c63aa3c3fbb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4a1d07b00d216470724d0c63aa3c3fbb"}, "created_at": 1700082656.1626887, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4a1d07b00d216470724d0c63aa3c3fbb\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__task", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__task"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.yml/dbt_expectations_expect_table__4a1d07b00d216470724d0c63aa3c3fbb.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__task\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__task", "attached_node": "model.yoda.analytics___salesforce_stg__task"}, "test.yoda.unique_analytics___salesforce_stg__custom_field_history_sf_event_id.ab7808b812": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "sf_event_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__custom_field_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__custom_field_history_sf_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__261177d2760d3c34666576255f474f2e.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__custom_field_history_sf_event_id.ab7808b812", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__custom_field_history", "unique_analytics___salesforce_stg__custom_field_history_sf_event_id"], "alias": "unique_analytics___salesforce__261177d2760d3c34666576255f474f2e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__261177d2760d3c34666576255f474f2e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__261177d2760d3c34666576255f474f2e"}, "created_at": 1700082656.39936, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__261177d2760d3c34666576255f474f2e\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__custom_field_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__custom_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.yml/unique_analytics___salesforce__261177d2760d3c34666576255f474f2e.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select sf_event_id from dev_dkruh1.analytics___salesforce_stg__custom_field_history where sf_event_id is not null group by sf_event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sf_event_id", "file_key_name": "models.analytics___salesforce_stg__custom_field_history", "attached_node": "model.yoda.analytics___salesforce_stg__custom_field_history"}, "test.yoda.not_null_analytics___salesforce_stg__custom_field_history_sf_event_id.55074feac4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sf_event_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__custom_field_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__custom_field_history_sf_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_a30a3edcbc9b3582b833bd9f6b62c170.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__custom_field_history_sf_event_id.55074feac4", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__custom_field_history", "not_null_analytics___salesforce_stg__custom_field_history_sf_event_id"], "alias": "not_null_analytics___salesforc_a30a3edcbc9b3582b833bd9f6b62c170", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_a30a3edcbc9b3582b833bd9f6b62c170", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_a30a3edcbc9b3582b833bd9f6b62c170"}, "created_at": 1700082656.4054806, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_a30a3edcbc9b3582b833bd9f6b62c170\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__custom_field_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__custom_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.yml/not_null_analytics___salesforc_a30a3edcbc9b3582b833bd9f6b62c170.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__custom_field_history where sf_event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sf_event_id", "file_key_name": "models.analytics___salesforce_stg__custom_field_history", "attached_node": "model.yoda.analytics___salesforce_stg__custom_field_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__custom_field_history_1.86ee399ddd": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__custom_field_history')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__custom_field_history_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bb3309c6202183b344966bdb5eb99918.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__custom_field_history_1.86ee399ddd", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__custom_field_history", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__custom_field_history_1"], "alias": "dbt_expectations_expect_table__bb3309c6202183b344966bdb5eb99918", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bb3309c6202183b344966bdb5eb99918", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bb3309c6202183b344966bdb5eb99918"}, "created_at": 1700082656.4118068, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bb3309c6202183b344966bdb5eb99918\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__custom_field_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__custom_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.yml/dbt_expectations_expect_table__bb3309c6202183b344966bdb5eb99918.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__custom_field_history\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__custom_field_history", "attached_node": "model.yoda.analytics___salesforce_stg__custom_field_history"}, "test.yoda.unique_analytics___salesforce_stg__mc_account_account_id.6067ebe293": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_account_account_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce_stg__mc_account_account_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_account_account_id.6067ebe293", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_account", "unique_analytics___salesforce_stg__mc_account_account_id"], "alias": "unique_analytics___salesforce_stg__mc_account_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082656.5403993, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.yml/unique_analytics___salesforce_stg__mc_account_account_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select account_id from dev_dkruh1.analytics___salesforce_stg__mc_account where account_id is not null group by account_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___salesforce_stg__mc_account", "attached_node": "model.yoda.analytics___salesforce_stg__mc_account"}, "test.yoda.not_null_analytics___salesforce_stg__mc_account_account_id.782ec87d8f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_account')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_account_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce_stg__mc_account_account_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_account_account_id.782ec87d8f", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_account", "not_null_analytics___salesforce_stg__mc_account_account_id"], "alias": "not_null_analytics___salesforce_stg__mc_account_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082656.5464017, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.yml/not_null_analytics___salesforce_stg__mc_account_account_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_account where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___salesforce_stg__mc_account", "attached_node": "model.yoda.analytics___salesforce_stg__mc_account"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_1.32a13ae472": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_account')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8edb649f2b904551c8878fef62347c0b.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_1.32a13ae472", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_account", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_1"], "alias": "dbt_expectations_expect_table__8edb649f2b904551c8878fef62347c0b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8edb649f2b904551c8878fef62347c0b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8edb649f2b904551c8878fef62347c0b"}, "created_at": 1700082656.552331, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8edb649f2b904551c8878fef62347c0b\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_account"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.yml/dbt_expectations_expect_table__8edb649f2b904551c8878fef62347c0b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_account\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_account", "attached_node": "model.yoda.analytics___salesforce_stg__mc_account"}, "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_account_product_id.8dbd027775": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_product_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_account_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_account_product_account_product_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_7f022b6ed0c233ff9a318d4593baf54e.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_account_product_id.8dbd027775", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_account_product", "not_null_analytics___salesforce_stg__mc_account_product_account_product_id"], "alias": "not_null_analytics___salesforc_7f022b6ed0c233ff9a318d4593baf54e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_7f022b6ed0c233ff9a318d4593baf54e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_7f022b6ed0c233ff9a318d4593baf54e"}, "created_at": 1700082656.5886943, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_7f022b6ed0c233ff9a318d4593baf54e\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.yml/not_null_analytics___salesforc_7f022b6ed0c233ff9a318d4593baf54e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_account_product where account_product_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_product_id", "file_key_name": "models.analytics___salesforce_stg__mc_account_product", "attached_node": "model.yoda.analytics___salesforce_stg__mc_account_product"}, "test.yoda.unique_analytics___salesforce_stg__mc_account_product_account_product_id.49a3cb427d": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "account_product_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_account_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_account_product_account_product_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__817c8de85e405732190c37b490fecd99.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_account_product_account_product_id.49a3cb427d", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_account_product", "unique_analytics___salesforce_stg__mc_account_product_account_product_id"], "alias": "unique_analytics___salesforce__817c8de85e405732190c37b490fecd99", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__817c8de85e405732190c37b490fecd99", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__817c8de85e405732190c37b490fecd99"}, "created_at": 1700082656.5948203, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__817c8de85e405732190c37b490fecd99\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.yml/unique_analytics___salesforce__817c8de85e405732190c37b490fecd99.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select account_product_id from dev_dkruh1.analytics___salesforce_stg__mc_account_product where account_product_id is not null group by account_product_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_product_id", "file_key_name": "models.analytics___salesforce_stg__mc_account_product", "attached_node": "model.yoda.analytics___salesforce_stg__mc_account_product"}, "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_account_id.c2239a1a79": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_account_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_account_product_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_476b3d8c734c80db413117d37d3feb5a.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_account_id.c2239a1a79", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_account_product", "not_null_analytics___salesforce_stg__mc_account_product_account_id"], "alias": "not_null_analytics___salesforc_476b3d8c734c80db413117d37d3feb5a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_476b3d8c734c80db413117d37d3feb5a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_476b3d8c734c80db413117d37d3feb5a"}, "created_at": 1700082656.6009135, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_476b3d8c734c80db413117d37d3feb5a\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.yml/not_null_analytics___salesforc_476b3d8c734c80db413117d37d3feb5a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_account_product where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.analytics___salesforce_stg__mc_account_product", "attached_node": "model.yoda.analytics___salesforce_stg__mc_account_product"}, "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_product_name.e5ece9c4d5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_name", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_account_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_account_product_product_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_8765a222bcffd4b9f8e017c81eddf674.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_product_name.e5ece9c4d5", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_account_product", "not_null_analytics___salesforce_stg__mc_account_product_product_name"], "alias": "not_null_analytics___salesforc_8765a222bcffd4b9f8e017c81eddf674", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_8765a222bcffd4b9f8e017c81eddf674", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_8765a222bcffd4b9f8e017c81eddf674"}, "created_at": 1700082656.607134, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_8765a222bcffd4b9f8e017c81eddf674\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.yml/not_null_analytics___salesforc_8765a222bcffd4b9f8e017c81eddf674.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_account_product where product_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_name", "file_key_name": "models.analytics___salesforce_stg__mc_account_product", "attached_node": "model.yoda.analytics___salesforce_stg__mc_account_product"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_product_1.3ade706487": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_account_product')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_product_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__11ad8e0f15dfba65424a3091675433eb.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_product_1.3ade706487", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_account_product", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_product_1"], "alias": "dbt_expectations_expect_table__11ad8e0f15dfba65424a3091675433eb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__11ad8e0f15dfba65424a3091675433eb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__11ad8e0f15dfba65424a3091675433eb"}, "created_at": 1700082656.6135302, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__11ad8e0f15dfba65424a3091675433eb\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_account_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_account_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.yml/dbt_expectations_expect_table__11ad8e0f15dfba65424a3091675433eb.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_account_product\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_account_product", "attached_node": "model.yoda.analytics___salesforce_stg__mc_account_product"}, "test.yoda.unique_analytics___salesforce_stg__mc_campaign_campaign_id.8b1ea5edb4": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_campaign')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_campaign_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce_stg__mc_campaign_campaign_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_campaign_campaign_id.8b1ea5edb4", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_campaign", "unique_analytics___salesforce_stg__mc_campaign_campaign_id"], "alias": "unique_analytics___salesforce_stg__mc_campaign_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082656.6470656, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.yml/unique_analytics___salesforce_stg__mc_campaign_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select campaign_id from dev_dkruh1.analytics___salesforce_stg__mc_campaign where campaign_id is not null group by campaign_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.analytics___salesforce_stg__mc_campaign", "attached_node": "model.yoda.analytics___salesforce_stg__mc_campaign"}, "test.yoda.not_null_analytics___salesforce_stg__mc_campaign_campaign_id.2313c1b093": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_campaign')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_campaign_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce_stg__mc_campaign_campaign_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_campaign_campaign_id.2313c1b093", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_campaign", "not_null_analytics___salesforce_stg__mc_campaign_campaign_id"], "alias": "not_null_analytics___salesforce_stg__mc_campaign_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082656.6529477, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.yml/not_null_analytics___salesforce_stg__mc_campaign_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_campaign where campaign_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.analytics___salesforce_stg__mc_campaign", "attached_node": "model.yoda.analytics___salesforce_stg__mc_campaign"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_campaign_1.3e66a80add": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_campaign')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_campaign_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__83a30c3bf59c6c45569e271a9ec5c0df.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_campaign_1.3e66a80add", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_campaign", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_campaign_1"], "alias": "dbt_expectations_expect_table__83a30c3bf59c6c45569e271a9ec5c0df", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__83a30c3bf59c6c45569e271a9ec5c0df", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__83a30c3bf59c6c45569e271a9ec5c0df"}, "created_at": 1700082656.6589465, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__83a30c3bf59c6c45569e271a9ec5c0df\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.yml/dbt_expectations_expect_table__83a30c3bf59c6c45569e271a9ec5c0df.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_campaign\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_campaign", "attached_node": "model.yoda.analytics___salesforce_stg__mc_campaign"}, "test.yoda.unique_analytics___salesforce_stg__mc_contact_contact_id.7a821a5016": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "contact_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_contact')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_contact_contact_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce_stg__mc_contact_contact_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_contact_contact_id.7a821a5016", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_contact", "unique_analytics___salesforce_stg__mc_contact_contact_id"], "alias": "unique_analytics___salesforce_stg__mc_contact_contact_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082656.694273, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_contact"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.yml/unique_analytics___salesforce_stg__mc_contact_contact_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select contact_id from dev_dkruh1.analytics___salesforce_stg__mc_contact where contact_id is not null group by contact_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "contact_id", "file_key_name": "models.analytics___salesforce_stg__mc_contact", "attached_node": "model.yoda.analytics___salesforce_stg__mc_contact"}, "test.yoda.not_null_analytics___salesforce_stg__mc_contact_contact_id.9338361d21": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "contact_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_contact')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_contact_contact_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce_stg__mc_contact_contact_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_contact_contact_id.9338361d21", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_contact", "not_null_analytics___salesforce_stg__mc_contact_contact_id"], "alias": "not_null_analytics___salesforce_stg__mc_contact_contact_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082656.7007008, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_contact"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.yml/not_null_analytics___salesforce_stg__mc_contact_contact_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_contact where contact_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "contact_id", "file_key_name": "models.analytics___salesforce_stg__mc_contact", "attached_node": "model.yoda.analytics___salesforce_stg__mc_contact"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_contact_1.7dcf842d3b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_contact')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_contact_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8325c510e8682722d677547c62c14d71.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_contact_1.7dcf842d3b", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_contact", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_contact_1"], "alias": "dbt_expectations_expect_table__8325c510e8682722d677547c62c14d71", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8325c510e8682722d677547c62c14d71", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8325c510e8682722d677547c62c14d71"}, "created_at": 1700082656.7064302, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8325c510e8682722d677547c62c14d71\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_contact"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.yml/dbt_expectations_expect_table__8325c510e8682722d677547c62c14d71.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_contact\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_contact", "attached_node": "model.yoda.analytics___salesforce_stg__mc_contact"}, "test.yoda.unique_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id.5c374de83d": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "conversion_rate_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_conversion_rate')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__27f175a1af5b09207b5b3c94bd470957.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id.5c374de83d", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_conversion_rate", "unique_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id"], "alias": "unique_analytics___salesforce__27f175a1af5b09207b5b3c94bd470957", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__27f175a1af5b09207b5b3c94bd470957", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__27f175a1af5b09207b5b3c94bd470957"}, "created_at": 1700082656.7303073, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__27f175a1af5b09207b5b3c94bd470957\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_conversion_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml/unique_analytics___salesforce__27f175a1af5b09207b5b3c94bd470957.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select conversion_rate_id from dev_dkruh1.analytics___salesforce_stg__mc_conversion_rate where conversion_rate_id is not null group by conversion_rate_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "conversion_rate_id", "file_key_name": "models.analytics___salesforce_stg__mc_conversion_rate", "attached_node": "model.yoda.analytics___salesforce_stg__mc_conversion_rate"}, "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id.56a6f9db93": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "conversion_rate_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_conversion_rate')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_0376c78e7a1efe163d7cc0a1c4b7515b.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id.56a6f9db93", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_conversion_rate", "not_null_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id"], "alias": "not_null_analytics___salesforc_0376c78e7a1efe163d7cc0a1c4b7515b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_0376c78e7a1efe163d7cc0a1c4b7515b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_0376c78e7a1efe163d7cc0a1c4b7515b"}, "created_at": 1700082656.7363276, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_0376c78e7a1efe163d7cc0a1c4b7515b\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_conversion_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml/not_null_analytics___salesforc_0376c78e7a1efe163d7cc0a1c4b7515b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_conversion_rate where conversion_rate_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "conversion_rate_id", "file_key_name": "models.analytics___salesforce_stg__mc_conversion_rate", "attached_node": "model.yoda.analytics___salesforce_stg__mc_conversion_rate"}, "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_currency_symbol.aa0cd24815": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "currency_symbol", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_conversion_rate')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_conversion_rate_currency_symbol", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_523b3329a38399625f43c9ac46945957.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_currency_symbol.aa0cd24815", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_conversion_rate", "not_null_analytics___salesforce_stg__mc_conversion_rate_currency_symbol"], "alias": "not_null_analytics___salesforc_523b3329a38399625f43c9ac46945957", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_523b3329a38399625f43c9ac46945957", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_523b3329a38399625f43c9ac46945957"}, "created_at": 1700082656.7431738, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_523b3329a38399625f43c9ac46945957\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_conversion_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml/not_null_analytics___salesforc_523b3329a38399625f43c9ac46945957.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_conversion_rate where currency_symbol is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "currency_symbol", "file_key_name": "models.analytics___salesforce_stg__mc_conversion_rate", "attached_node": "model.yoda.analytics___salesforce_stg__mc_conversion_rate"}, "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_from_date.9f5d451a47": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_date", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_conversion_rate')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_conversion_rate_from_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_6ef4d1ca66a926e3dfd7d81f5384b84e.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_from_date.9f5d451a47", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_conversion_rate", "not_null_analytics___salesforce_stg__mc_conversion_rate_from_date"], "alias": "not_null_analytics___salesforc_6ef4d1ca66a926e3dfd7d81f5384b84e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_6ef4d1ca66a926e3dfd7d81f5384b84e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_6ef4d1ca66a926e3dfd7d81f5384b84e"}, "created_at": 1700082656.7502267, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_6ef4d1ca66a926e3dfd7d81f5384b84e\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_conversion_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml/not_null_analytics___salesforc_6ef4d1ca66a926e3dfd7d81f5384b84e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_conversion_rate where from_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_date", "file_key_name": "models.analytics___salesforce_stg__mc_conversion_rate", "attached_node": "model.yoda.analytics___salesforce_stg__mc_conversion_rate"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_conversion_rate_1.8ba7b5f4f2": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_conversion_rate')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_conversion_rate_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bf3e99fbadd29d951e1c8e3d8f168989.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_conversion_rate_1.8ba7b5f4f2", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_conversion_rate", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_conversion_rate_1"], "alias": "dbt_expectations_expect_table__bf3e99fbadd29d951e1c8e3d8f168989", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bf3e99fbadd29d951e1c8e3d8f168989", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bf3e99fbadd29d951e1c8e3d8f168989"}, "created_at": 1700082656.756116, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bf3e99fbadd29d951e1c8e3d8f168989\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_conversion_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml/dbt_expectations_expect_table__bf3e99fbadd29d951e1c8e3d8f168989.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_conversion_rate\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_conversion_rate", "attached_node": "model.yoda.analytics___salesforce_stg__mc_conversion_rate"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce_stg__mc_conversion_rate_currency_symbol__from_date.f692cccde0": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["currency_symbol", "from_date"], "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_conversion_rate')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___salesforce_stg__mc_conversion_rate_currency_symbol__from_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_14eebc05ae3f47bf5dabc704b21e09b3.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce_stg__mc_conversion_rate_currency_symbol__from_date.f692cccde0", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_conversion_rate", "dbt_utils_unique_combination_of_columns_analytics___salesforce_stg__mc_conversion_rate_currency_symbol__from_date"], "alias": "dbt_utils_unique_combination_o_14eebc05ae3f47bf5dabc704b21e09b3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_14eebc05ae3f47bf5dabc704b21e09b3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_14eebc05ae3f47bf5dabc704b21e09b3"}, "created_at": 1700082656.7629447, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_14eebc05ae3f47bf5dabc704b21e09b3\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_conversion_rate", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.yml/dbt_utils_unique_combination_o_14eebc05ae3f47bf5dabc704b21e09b3.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n currency_symbol, from_date\n from dev_dkruh1.analytics___salesforce_stg__mc_conversion_rate\n group by currency_symbol, from_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_conversion_rate", "attached_node": "model.yoda.analytics___salesforce_stg__mc_conversion_rate"}, "test.yoda.unique_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.ac71be4f72": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "cs_lead_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_cs_lead')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_cs_lead_cs_lead_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.ac71be4f72", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_cs_lead", "unique_analytics___salesforce_stg__mc_cs_lead_cs_lead_id"], "alias": "unique_analytics___salesforce_stg__mc_cs_lead_cs_lead_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082656.7840757, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_cs_lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_cs_lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.yml/unique_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select cs_lead_id from dev_dkruh1.analytics___salesforce_stg__mc_cs_lead where cs_lead_id is not null group by cs_lead_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "cs_lead_id", "file_key_name": "models.analytics___salesforce_stg__mc_cs_lead", "attached_node": "model.yoda.analytics___salesforce_stg__mc_cs_lead"}, "test.yoda.not_null_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.2e7c947e0e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "cs_lead_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_cs_lead')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_cs_lead_cs_lead_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.2e7c947e0e", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_cs_lead", "not_null_analytics___salesforce_stg__mc_cs_lead_cs_lead_id"], "alias": "not_null_analytics___salesforce_stg__mc_cs_lead_cs_lead_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082656.792574, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_cs_lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_cs_lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.yml/not_null_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_cs_lead where cs_lead_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "cs_lead_id", "file_key_name": "models.analytics___salesforce_stg__mc_cs_lead", "attached_node": "model.yoda.analytics___salesforce_stg__mc_cs_lead"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_cs_lead_1.c429c91cc1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_cs_lead')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_cs_lead_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__24d04537445845b9a3195999dade2352.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_cs_lead_1.c429c91cc1", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_cs_lead", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_cs_lead_1"], "alias": "dbt_expectations_expect_table__24d04537445845b9a3195999dade2352", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__24d04537445845b9a3195999dade2352", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__24d04537445845b9a3195999dade2352"}, "created_at": 1700082656.7987256, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__24d04537445845b9a3195999dade2352\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_cs_lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_cs_lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.yml/dbt_expectations_expect_table__24d04537445845b9a3195999dade2352.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_cs_lead\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_cs_lead", "attached_node": "model.yoda.analytics___salesforce_stg__mc_cs_lead"}, "test.yoda.unique_analytics___salesforce_stg__mc_deal_summary_deal_summary_id.c1a6fd6217": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "deal_summary_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_deal_summary')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_deal_summary_deal_summary_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__1da41ba9900aa52f786d0296691755fd.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_deal_summary_deal_summary_id.c1a6fd6217", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_deal_summary", "unique_analytics___salesforce_stg__mc_deal_summary_deal_summary_id"], "alias": "unique_analytics___salesforce__1da41ba9900aa52f786d0296691755fd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__1da41ba9900aa52f786d0296691755fd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__1da41ba9900aa52f786d0296691755fd"}, "created_at": 1700082656.83565, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__1da41ba9900aa52f786d0296691755fd\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_deal_summary", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_deal_summary"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.yml/unique_analytics___salesforce__1da41ba9900aa52f786d0296691755fd.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select deal_summary_id from dev_dkruh1.analytics___salesforce_stg__mc_deal_summary where deal_summary_id is not null group by deal_summary_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "deal_summary_id", "file_key_name": "models.analytics___salesforce_stg__mc_deal_summary", "attached_node": "model.yoda.analytics___salesforce_stg__mc_deal_summary"}, "test.yoda.not_null_analytics___salesforce_stg__mc_deal_summary_deal_summary_id.f987e65f12": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "deal_summary_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_deal_summary')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_deal_summary_deal_summary_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_7224c62d082e3856ce03f5b63ef6d021.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_deal_summary_deal_summary_id.f987e65f12", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_deal_summary", "not_null_analytics___salesforce_stg__mc_deal_summary_deal_summary_id"], "alias": "not_null_analytics___salesforc_7224c62d082e3856ce03f5b63ef6d021", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_7224c62d082e3856ce03f5b63ef6d021", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_7224c62d082e3856ce03f5b63ef6d021"}, "created_at": 1700082656.8417947, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_7224c62d082e3856ce03f5b63ef6d021\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_deal_summary", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_deal_summary"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.yml/not_null_analytics___salesforc_7224c62d082e3856ce03f5b63ef6d021.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_deal_summary where deal_summary_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "deal_summary_id", "file_key_name": "models.analytics___salesforce_stg__mc_deal_summary", "attached_node": "model.yoda.analytics___salesforce_stg__mc_deal_summary"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_deal_summary_1.67666745de": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_deal_summary')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_deal_summary_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7252c4d5f9b584398cbf5f05dc86b21f.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_deal_summary_1.67666745de", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_deal_summary", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_deal_summary_1"], "alias": "dbt_expectations_expect_table__7252c4d5f9b584398cbf5f05dc86b21f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7252c4d5f9b584398cbf5f05dc86b21f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7252c4d5f9b584398cbf5f05dc86b21f"}, "created_at": 1700082656.8477607, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7252c4d5f9b584398cbf5f05dc86b21f\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_deal_summary", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_deal_summary"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.yml/dbt_expectations_expect_table__7252c4d5f9b584398cbf5f05dc86b21f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_deal_summary\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_deal_summary", "attached_node": "model.yoda.analytics___salesforce_stg__mc_deal_summary"}, "test.yoda.unique_analytics___salesforce_stg__mc_event_event_id.3d0cf71521": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_event_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce_stg__mc_event_event_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_event_event_id.3d0cf71521", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_event", "unique_analytics___salesforce_stg__mc_event_event_id"], "alias": "unique_analytics___salesforce_stg__mc_event_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082656.8732684, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.yml/unique_analytics___salesforce_stg__mc_event_event_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___salesforce_stg__mc_event where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___salesforce_stg__mc_event", "attached_node": "model.yoda.analytics___salesforce_stg__mc_event"}, "test.yoda.not_null_analytics___salesforce_stg__mc_event_event_id.44815ab8c6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_event_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce_stg__mc_event_event_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_event_event_id.44815ab8c6", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_event", "not_null_analytics___salesforce_stg__mc_event_event_id"], "alias": "not_null_analytics___salesforce_stg__mc_event_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082656.879224, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.yml/not_null_analytics___salesforce_stg__mc_event_event_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_event where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___salesforce_stg__mc_event", "attached_node": "model.yoda.analytics___salesforce_stg__mc_event"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_event_1.6a312aa568": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_event')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_event_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__eb9fabfb5903509cfe36f6397f3f6db7.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_event_1.6a312aa568", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_event", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_event_1"], "alias": "dbt_expectations_expect_table__eb9fabfb5903509cfe36f6397f3f6db7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__eb9fabfb5903509cfe36f6397f3f6db7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__eb9fabfb5903509cfe36f6397f3f6db7"}, "created_at": 1700082656.8851144, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__eb9fabfb5903509cfe36f6397f3f6db7\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.yml/dbt_expectations_expect_table__eb9fabfb5903509cfe36f6397f3f6db7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_event\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_event", "attached_node": "model.yoda.analytics___salesforce_stg__mc_event"}, "test.yoda.unique_analytics___salesforce_stg__mc_lead_lead_id.c0041ba96f": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "lead_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_lead')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_lead_lead_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce_stg__mc_lead_lead_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_lead_lead_id.c0041ba96f", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_lead", "unique_analytics___salesforce_stg__mc_lead_lead_id"], "alias": "unique_analytics___salesforce_stg__mc_lead_lead_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082656.9385443, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.yml/unique_analytics___salesforce_stg__mc_lead_lead_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select lead_id from dev_dkruh1.analytics___salesforce_stg__mc_lead where lead_id is not null group by lead_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "lead_id", "file_key_name": "models.analytics___salesforce_stg__mc_lead", "attached_node": "model.yoda.analytics___salesforce_stg__mc_lead"}, "test.yoda.not_null_analytics___salesforce_stg__mc_lead_lead_id.1313d03af5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "lead_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_lead')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_lead_lead_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce_stg__mc_lead_lead_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_lead_lead_id.1313d03af5", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_lead", "not_null_analytics___salesforce_stg__mc_lead_lead_id"], "alias": "not_null_analytics___salesforce_stg__mc_lead_lead_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082656.9440935, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.yml/not_null_analytics___salesforce_stg__mc_lead_lead_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_lead where lead_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "lead_id", "file_key_name": "models.analytics___salesforce_stg__mc_lead", "attached_node": "model.yoda.analytics___salesforce_stg__mc_lead"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_lead_1.734b196685": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_lead')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_lead_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bd617f167a2569035236e86cec48a57b.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_lead_1.734b196685", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_lead", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_lead_1"], "alias": "dbt_expectations_expect_table__bd617f167a2569035236e86cec48a57b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bd617f167a2569035236e86cec48a57b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bd617f167a2569035236e86cec48a57b"}, "created_at": 1700082656.950873, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bd617f167a2569035236e86cec48a57b\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_lead", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_lead"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.yml/dbt_expectations_expect_table__bd617f167a2569035236e86cec48a57b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_lead\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_lead", "attached_node": "model.yoda.analytics___salesforce_stg__mc_lead"}, "test.yoda.unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_id.fcda757714": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "chat_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_live_chat_transcript')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__7d461bfd93ea9d31c9ea4040f06f450d.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_id.fcda757714", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_live_chat_transcript", "unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_id"], "alias": "unique_analytics___salesforce__7d461bfd93ea9d31c9ea4040f06f450d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__7d461bfd93ea9d31c9ea4040f06f450d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__7d461bfd93ea9d31c9ea4040f06f450d"}, "created_at": 1700082656.9938564, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__7d461bfd93ea9d31c9ea4040f06f450d\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_live_chat_transcript", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.yml/unique_analytics___salesforce__7d461bfd93ea9d31c9ea4040f06f450d.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select chat_id from dev_dkruh1.analytics___salesforce_stg__mc_live_chat_transcript where chat_id is not null group by chat_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "chat_id", "file_key_name": "models.analytics___salesforce_stg__mc_live_chat_transcript", "attached_node": "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"}, "test.yoda.not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_id.d41b3dca35": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "chat_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_live_chat_transcript')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_15bf11ddff865caa386b633159152954.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_id.d41b3dca35", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_live_chat_transcript", "not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_id"], "alias": "not_null_analytics___salesforc_15bf11ddff865caa386b633159152954", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_15bf11ddff865caa386b633159152954", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_15bf11ddff865caa386b633159152954"}, "created_at": 1700082657.0011895, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_15bf11ddff865caa386b633159152954\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_live_chat_transcript", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.yml/not_null_analytics___salesforc_15bf11ddff865caa386b633159152954.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_live_chat_transcript where chat_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "chat_id", "file_key_name": "models.analytics___salesforce_stg__mc_live_chat_transcript", "attached_node": "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"}, "test.yoda.unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name.6ab14b9723": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "chat_transcript_name", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_live_chat_transcript')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__6bacb2858148bcfdd94eaef3a348ff59.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name.6ab14b9723", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_live_chat_transcript", "unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name"], "alias": "unique_analytics___salesforce__6bacb2858148bcfdd94eaef3a348ff59", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__6bacb2858148bcfdd94eaef3a348ff59", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__6bacb2858148bcfdd94eaef3a348ff59"}, "created_at": 1700082657.007019, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__6bacb2858148bcfdd94eaef3a348ff59\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_live_chat_transcript", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.yml/unique_analytics___salesforce__6bacb2858148bcfdd94eaef3a348ff59.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select chat_transcript_name from dev_dkruh1.analytics___salesforce_stg__mc_live_chat_transcript where chat_transcript_name is not null group by chat_transcript_name having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "chat_transcript_name", "file_key_name": "models.analytics___salesforce_stg__mc_live_chat_transcript", "attached_node": "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"}, "test.yoda.not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name.5fdab31e8e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "chat_transcript_name", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_live_chat_transcript')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_48a09cf49e66f3d21d351e6fd027a22e.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name.5fdab31e8e", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_live_chat_transcript", "not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name"], "alias": "not_null_analytics___salesforc_48a09cf49e66f3d21d351e6fd027a22e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_48a09cf49e66f3d21d351e6fd027a22e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_48a09cf49e66f3d21d351e6fd027a22e"}, "created_at": 1700082657.1610239, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_48a09cf49e66f3d21d351e6fd027a22e\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_live_chat_transcript", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.yml/not_null_analytics___salesforc_48a09cf49e66f3d21d351e6fd027a22e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_live_chat_transcript where chat_transcript_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "chat_transcript_name", "file_key_name": "models.analytics___salesforce_stg__mc_live_chat_transcript", "attached_node": "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_live_chat_transcript_1.b2da541dc7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_live_chat_transcript')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_live_chat_transcript_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__cce77558fca4ee89fa4920eeb7bff90d.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_live_chat_transcript_1.b2da541dc7", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_live_chat_transcript", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_live_chat_transcript_1"], "alias": "dbt_expectations_expect_table__cce77558fca4ee89fa4920eeb7bff90d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__cce77558fca4ee89fa4920eeb7bff90d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__cce77558fca4ee89fa4920eeb7bff90d"}, "created_at": 1700082657.1692195, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__cce77558fca4ee89fa4920eeb7bff90d\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_live_chat_transcript", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.yml/dbt_expectations_expect_table__cce77558fca4ee89fa4920eeb7bff90d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_live_chat_transcript\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_live_chat_transcript", "attached_node": "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"}, "test.yoda.unique_analytics___salesforce_stg__mc_mql_mql_id.a3493225ae": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "mql_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_mql')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_mql_mql_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce_stg__mc_mql_mql_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_mql_mql_id.a3493225ae", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_mql", "unique_analytics___salesforce_stg__mc_mql_mql_id"], "alias": "unique_analytics___salesforce_stg__mc_mql_mql_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082657.2110853, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_mql", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_mql"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.yml/unique_analytics___salesforce_stg__mc_mql_mql_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select mql_id from dev_dkruh1.analytics___salesforce_stg__mc_mql where mql_id is not null group by mql_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "mql_id", "file_key_name": "models.analytics___salesforce_stg__mc_mql", "attached_node": "model.yoda.analytics___salesforce_stg__mc_mql"}, "test.yoda.not_null_analytics___salesforce_stg__mc_mql_mql_id.66109a1a64": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "mql_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_mql')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_mql_mql_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce_stg__mc_mql_mql_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_mql_mql_id.66109a1a64", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_mql", "not_null_analytics___salesforce_stg__mc_mql_mql_id"], "alias": "not_null_analytics___salesforce_stg__mc_mql_mql_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082657.2166822, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_mql", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_mql"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.yml/not_null_analytics___salesforce_stg__mc_mql_mql_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_mql where mql_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "mql_id", "file_key_name": "models.analytics___salesforce_stg__mc_mql", "attached_node": "model.yoda.analytics___salesforce_stg__mc_mql"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_mql_1.2e58293ab3": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_mql')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_mql_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__89e72c7cd86e8d8933c9f2166b01dd6b.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_mql_1.2e58293ab3", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_mql", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_mql_1"], "alias": "dbt_expectations_expect_table__89e72c7cd86e8d8933c9f2166b01dd6b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__89e72c7cd86e8d8933c9f2166b01dd6b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__89e72c7cd86e8d8933c9f2166b01dd6b"}, "created_at": 1700082657.2223854, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__89e72c7cd86e8d8933c9f2166b01dd6b\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_mql", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_mql"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.yml/dbt_expectations_expect_table__89e72c7cd86e8d8933c9f2166b01dd6b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_mql\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_mql", "attached_node": "model.yoda.analytics___salesforce_stg__mc_mql"}, "test.yoda.unique_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id.6198a515ad": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "onboarding_project_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_onboarding_project')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__893126cad374f0e647b1c610a7c1aa49.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id.6198a515ad", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_onboarding_project", "unique_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id"], "alias": "unique_analytics___salesforce__893126cad374f0e647b1c610a7c1aa49", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__893126cad374f0e647b1c610a7c1aa49", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__893126cad374f0e647b1c610a7c1aa49"}, "created_at": 1700082657.2782853, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__893126cad374f0e647b1c610a7c1aa49\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_onboarding_project", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_onboarding_project"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.yml/unique_analytics___salesforce__893126cad374f0e647b1c610a7c1aa49.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select onboarding_project_id from dev_dkruh1.analytics___salesforce_stg__mc_onboarding_project where onboarding_project_id is not null group by onboarding_project_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "onboarding_project_id", "file_key_name": "models.analytics___salesforce_stg__mc_onboarding_project", "attached_node": "model.yoda.analytics___salesforce_stg__mc_onboarding_project"}, "test.yoda.not_null_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id.6bce4734a2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "onboarding_project_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_onboarding_project')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_31f1e0e0cf6bd18838e2e88064a5329b.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id.6bce4734a2", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_onboarding_project", "not_null_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id"], "alias": "not_null_analytics___salesforc_31f1e0e0cf6bd18838e2e88064a5329b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_31f1e0e0cf6bd18838e2e88064a5329b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_31f1e0e0cf6bd18838e2e88064a5329b"}, "created_at": 1700082657.2842867, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_31f1e0e0cf6bd18838e2e88064a5329b\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_onboarding_project", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_onboarding_project"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.yml/not_null_analytics___salesforc_31f1e0e0cf6bd18838e2e88064a5329b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_onboarding_project where onboarding_project_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "onboarding_project_id", "file_key_name": "models.analytics___salesforce_stg__mc_onboarding_project", "attached_node": "model.yoda.analytics___salesforce_stg__mc_onboarding_project"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_onboarding_project_1.07a3de4ae7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_onboarding_project')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_onboarding_project_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ad8d8d2dd998eb5701609a38469f9f30.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_onboarding_project_1.07a3de4ae7", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_onboarding_project", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_onboarding_project_1"], "alias": "dbt_expectations_expect_table__ad8d8d2dd998eb5701609a38469f9f30", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ad8d8d2dd998eb5701609a38469f9f30", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ad8d8d2dd998eb5701609a38469f9f30"}, "created_at": 1700082657.2903476, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ad8d8d2dd998eb5701609a38469f9f30\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_onboarding_project", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_onboarding_project"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.yml/dbt_expectations_expect_table__ad8d8d2dd998eb5701609a38469f9f30.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_onboarding_project\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_onboarding_project", "attached_node": "model.yoda.analytics___salesforce_stg__mc_onboarding_project"}, "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_opportunity_id.0f619d4a92": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_opportunity')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_opportunity_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__a97bc2243a472b099d7916573f3172f3.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_opportunity_id.0f619d4a92", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity", "unique_analytics___salesforce_stg__mc_opportunity_opportunity_id"], "alias": "unique_analytics___salesforce__a97bc2243a472b099d7916573f3172f3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__a97bc2243a472b099d7916573f3172f3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__a97bc2243a472b099d7916573f3172f3"}, "created_at": 1700082657.3802679, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__a97bc2243a472b099d7916573f3172f3\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.yml/unique_analytics___salesforce__a97bc2243a472b099d7916573f3172f3.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select opportunity_id from dev_dkruh1.analytics___salesforce_stg__mc_opportunity where opportunity_id is not null group by opportunity_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___salesforce_stg__mc_opportunity", "attached_node": "model.yoda.analytics___salesforce_stg__mc_opportunity"}, "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_opportunity_id.1bc80ae2ed": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_opportunity')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_opportunity_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_5fc66d5bd4ee02b22de9a4c9a09bf4db.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_opportunity_id.1bc80ae2ed", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity", "not_null_analytics___salesforce_stg__mc_opportunity_opportunity_id"], "alias": "not_null_analytics___salesforc_5fc66d5bd4ee02b22de9a4c9a09bf4db", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_5fc66d5bd4ee02b22de9a4c9a09bf4db", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_5fc66d5bd4ee02b22de9a4c9a09bf4db"}, "created_at": 1700082657.3862796, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_5fc66d5bd4ee02b22de9a4c9a09bf4db\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.yml/not_null_analytics___salesforc_5fc66d5bd4ee02b22de9a4c9a09bf4db.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_opportunity where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___salesforce_stg__mc_opportunity", "attached_node": "model.yoda.analytics___salesforce_stg__mc_opportunity"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_1.86280c097e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_opportunity')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__74c2dfac17b0784a46a696a64c5e2376.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_1.86280c097e", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_1"], "alias": "dbt_expectations_expect_table__74c2dfac17b0784a46a696a64c5e2376", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__74c2dfac17b0784a46a696a64c5e2376", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__74c2dfac17b0784a46a696a64c5e2376"}, "created_at": 1700082657.3923755, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__74c2dfac17b0784a46a696a64c5e2376\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_opportunity"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.yml/dbt_expectations_expect_table__74c2dfac17b0784a46a696a64c5e2376.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_opportunity\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_opportunity", "attached_node": "model.yoda.analytics___salesforce_stg__mc_opportunity"}, "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id.abd55de465": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "sf_event_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_opportunity_field_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__2347694b02be2f9b989fd6a6f197f6c9.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id.abd55de465", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity_field_history", "unique_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id"], "alias": "unique_analytics___salesforce__2347694b02be2f9b989fd6a6f197f6c9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__2347694b02be2f9b989fd6a6f197f6c9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__2347694b02be2f9b989fd6a6f197f6c9"}, "created_at": 1700082657.418415, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__2347694b02be2f9b989fd6a6f197f6c9\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_opportunity_field_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.yml/unique_analytics___salesforce__2347694b02be2f9b989fd6a6f197f6c9.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select sf_event_id from dev_dkruh1.analytics___salesforce_stg__mc_opportunity_field_history where sf_event_id is not null group by sf_event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sf_event_id", "file_key_name": "models.analytics___salesforce_stg__mc_opportunity_field_history", "attached_node": "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"}, "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id.0e99b7bab4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sf_event_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_opportunity_field_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_2a5541b7d5773a7fa42e66e971086245.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id.0e99b7bab4", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity_field_history", "not_null_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id"], "alias": "not_null_analytics___salesforc_2a5541b7d5773a7fa42e66e971086245", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_2a5541b7d5773a7fa42e66e971086245", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_2a5541b7d5773a7fa42e66e971086245"}, "created_at": 1700082657.4245281, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_2a5541b7d5773a7fa42e66e971086245\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_opportunity_field_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.yml/not_null_analytics___salesforc_2a5541b7d5773a7fa42e66e971086245.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_opportunity_field_history where sf_event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sf_event_id", "file_key_name": "models.analytics___salesforce_stg__mc_opportunity_field_history", "attached_node": "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_field_history_1.d0fb577563": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_opportunity_field_history')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_field_history_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8cc209946ce7d1c60d83044f190af73b.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_field_history_1.d0fb577563", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity_field_history", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_field_history_1"], "alias": "dbt_expectations_expect_table__8cc209946ce7d1c60d83044f190af73b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8cc209946ce7d1c60d83044f190af73b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8cc209946ce7d1c60d83044f190af73b"}, "created_at": 1700082657.430632, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8cc209946ce7d1c60d83044f190af73b\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_opportunity_field_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.yml/dbt_expectations_expect_table__8cc209946ce7d1c60d83044f190af73b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_opportunity_field_history\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_opportunity_field_history", "attached_node": "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"}, "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id.58b83fd78d": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "line_item_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_opportunity_line_item')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__3cf6d55ddef94ac6644d45f6c0221767.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id.58b83fd78d", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity_line_item", "unique_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id"], "alias": "unique_analytics___salesforce__3cf6d55ddef94ac6644d45f6c0221767", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__3cf6d55ddef94ac6644d45f6c0221767", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__3cf6d55ddef94ac6644d45f6c0221767"}, "created_at": 1700082657.467762, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__3cf6d55ddef94ac6644d45f6c0221767\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_opportunity_line_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.yml/unique_analytics___salesforce__3cf6d55ddef94ac6644d45f6c0221767.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select line_item_id from dev_dkruh1.analytics___salesforce_stg__mc_opportunity_line_item where line_item_id is not null group by line_item_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "line_item_id", "file_key_name": "models.analytics___salesforce_stg__mc_opportunity_line_item", "attached_node": "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"}, "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id.84b54bbaa8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "line_item_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_opportunity_line_item')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_9374c4bc22e0dd957c857c6ddb3c1ff8.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id.84b54bbaa8", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity_line_item", "not_null_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id"], "alias": "not_null_analytics___salesforc_9374c4bc22e0dd957c857c6ddb3c1ff8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_9374c4bc22e0dd957c857c6ddb3c1ff8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_9374c4bc22e0dd957c857c6ddb3c1ff8"}, "created_at": 1700082657.4738004, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_9374c4bc22e0dd957c857c6ddb3c1ff8\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_opportunity_line_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.yml/not_null_analytics___salesforc_9374c4bc22e0dd957c857c6ddb3c1ff8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_opportunity_line_item where line_item_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "line_item_id", "file_key_name": "models.analytics___salesforce_stg__mc_opportunity_line_item", "attached_node": "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_line_item_1.d16e880f1e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_opportunity_line_item')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_line_item_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f3580d625f986c3969d1aea970f59ed1.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_line_item_1.d16e880f1e", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_opportunity_line_item", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_line_item_1"], "alias": "dbt_expectations_expect_table__f3580d625f986c3969d1aea970f59ed1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f3580d625f986c3969d1aea970f59ed1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f3580d625f986c3969d1aea970f59ed1"}, "created_at": 1700082657.480318, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f3580d625f986c3969d1aea970f59ed1\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_opportunity_line_item", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.yml/dbt_expectations_expect_table__f3580d625f986c3969d1aea970f59ed1.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_opportunity_line_item\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_opportunity_line_item", "attached_node": "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_partner_referral_1.45712a9da3": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_partner_referral')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_partner_referral_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7661cc4fa3b63b241d3faf7b185f6d97.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_partner_referral_1.45712a9da3", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_partner_referral", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_partner_referral_1"], "alias": "dbt_expectations_expect_table__7661cc4fa3b63b241d3faf7b185f6d97", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7661cc4fa3b63b241d3faf7b185f6d97", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7661cc4fa3b63b241d3faf7b185f6d97"}, "created_at": 1700082657.520034, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7661cc4fa3b63b241d3faf7b185f6d97\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_partner_referral", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_partner_referral"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.yml/dbt_expectations_expect_table__7661cc4fa3b63b241d3faf7b185f6d97.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_partner_referral\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_partner_referral", "attached_node": "model.yoda.analytics___salesforce_stg__mc_partner_referral"}, "test.yoda.not_null_analytics___salesforce_stg__mc_service_case_case_id.ffdf41fb7a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "case_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_service_case')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_service_case_case_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce_stg__mc_service_case_case_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_service_case_case_id.ffdf41fb7a", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_service_case", "not_null_analytics___salesforce_stg__mc_service_case_case_id"], "alias": "not_null_analytics___salesforce_stg__mc_service_case_case_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082657.577611, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_service_case", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_service_case"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.yml/not_null_analytics___salesforce_stg__mc_service_case_case_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_service_case where case_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "case_id", "file_key_name": "models.analytics___salesforce_stg__mc_service_case", "attached_node": "model.yoda.analytics___salesforce_stg__mc_service_case"}, "test.yoda.unique_analytics___salesforce_stg__mc_service_case_case_id.9f24d80528": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "case_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_service_case')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_service_case_case_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce_stg__mc_service_case_case_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_service_case_case_id.9f24d80528", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_service_case", "unique_analytics___salesforce_stg__mc_service_case_case_id"], "alias": "unique_analytics___salesforce_stg__mc_service_case_case_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082657.5839944, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_service_case", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_service_case"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.yml/unique_analytics___salesforce_stg__mc_service_case_case_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select case_id from dev_dkruh1.analytics___salesforce_stg__mc_service_case where case_id is not null group by case_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "case_id", "file_key_name": "models.analytics___salesforce_stg__mc_service_case", "attached_node": "model.yoda.analytics___salesforce_stg__mc_service_case"}, "test.yoda.not_null_analytics___salesforce_stg__mc_service_case_case_number.20104071ae": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "case_number", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_service_case')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_service_case_case_number", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_3c3599f27691936e5f6d786487512708.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_service_case_case_number.20104071ae", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_service_case", "not_null_analytics___salesforce_stg__mc_service_case_case_number"], "alias": "not_null_analytics___salesforc_3c3599f27691936e5f6d786487512708", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_3c3599f27691936e5f6d786487512708", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_3c3599f27691936e5f6d786487512708"}, "created_at": 1700082657.5907435, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_3c3599f27691936e5f6d786487512708\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_service_case", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_service_case"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.yml/not_null_analytics___salesforc_3c3599f27691936e5f6d786487512708.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_service_case where case_number is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "case_number", "file_key_name": "models.analytics___salesforce_stg__mc_service_case", "attached_node": "model.yoda.analytics___salesforce_stg__mc_service_case"}, "test.yoda.unique_analytics___salesforce_stg__mc_service_case_case_number.89289315b2": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "case_number", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_service_case')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_service_case_case_number", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce_stg__mc_service_case_case_number.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_service_case_case_number.89289315b2", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_service_case", "unique_analytics___salesforce_stg__mc_service_case_case_number"], "alias": "unique_analytics___salesforce_stg__mc_service_case_case_number", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082657.597684, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_service_case", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_service_case"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.yml/unique_analytics___salesforce_stg__mc_service_case_case_number.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select case_number from dev_dkruh1.analytics___salesforce_stg__mc_service_case where case_number is not null group by case_number having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "case_number", "file_key_name": "models.analytics___salesforce_stg__mc_service_case", "attached_node": "model.yoda.analytics___salesforce_stg__mc_service_case"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_service_case_1.4f19e3da6a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_service_case')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_service_case_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__cec4a17257547ff917bc9a0042fb6411.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_service_case_1.4f19e3da6a", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_service_case", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_service_case_1"], "alias": "dbt_expectations_expect_table__cec4a17257547ff917bc9a0042fb6411", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__cec4a17257547ff917bc9a0042fb6411", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__cec4a17257547ff917bc9a0042fb6411"}, "created_at": 1700082657.604447, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__cec4a17257547ff917bc9a0042fb6411\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_service_case", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_service_case"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.yml/dbt_expectations_expect_table__cec4a17257547ff917bc9a0042fb6411.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_service_case\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_service_case", "attached_node": "model.yoda.analytics___salesforce_stg__mc_service_case"}, "test.yoda.unique_analytics___salesforce_stg__mc_task_task_id.0df533b3d4": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "task_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_task')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_task_task_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce_stg__mc_task_task_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_task_task_id.0df533b3d4", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_task", "unique_analytics___salesforce_stg__mc_task_task_id"], "alias": "unique_analytics___salesforce_stg__mc_task_task_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082657.6329744, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_task", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_task"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.yml/unique_analytics___salesforce_stg__mc_task_task_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select task_id from dev_dkruh1.analytics___salesforce_stg__mc_task where task_id is not null group by task_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "task_id", "file_key_name": "models.analytics___salesforce_stg__mc_task", "attached_node": "model.yoda.analytics___salesforce_stg__mc_task"}, "test.yoda.not_null_analytics___salesforce_stg__mc_task_task_id.cf03e7f289": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "task_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_task')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_task_task_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce_stg__mc_task_task_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_task_task_id.cf03e7f289", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_task", "not_null_analytics___salesforce_stg__mc_task_task_id"], "alias": "not_null_analytics___salesforce_stg__mc_task_task_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082657.6388278, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_task", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_task"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.yml/not_null_analytics___salesforce_stg__mc_task_task_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_task where task_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "task_id", "file_key_name": "models.analytics___salesforce_stg__mc_task", "attached_node": "model.yoda.analytics___salesforce_stg__mc_task"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_task_1.cb12c7d801": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_task')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_task_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2ca82499ea2f7f4bba1fbe3da1b3908d.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_task_1.cb12c7d801", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_task", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_task_1"], "alias": "dbt_expectations_expect_table__2ca82499ea2f7f4bba1fbe3da1b3908d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2ca82499ea2f7f4bba1fbe3da1b3908d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2ca82499ea2f7f4bba1fbe3da1b3908d"}, "created_at": 1700082657.6443577, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2ca82499ea2f7f4bba1fbe3da1b3908d\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_task", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_task"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.yml/dbt_expectations_expect_table__2ca82499ea2f7f4bba1fbe3da1b3908d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_task\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_task", "attached_node": "model.yoda.analytics___salesforce_stg__mc_task"}, "test.yoda.unique_analytics___salesforce_stg__mc_user_user_id.e62938aaff": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "user_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_user')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__mc_user_user_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce_stg__mc_user_user_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__mc_user_user_id.e62938aaff", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_user", "unique_analytics___salesforce_stg__mc_user_user_id"], "alias": "unique_analytics___salesforce_stg__mc_user_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082657.6907103, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.yml/unique_analytics___salesforce_stg__mc_user_user_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select user_id from dev_dkruh1.analytics___salesforce_stg__mc_user where user_id is not null group by user_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_id", "file_key_name": "models.analytics___salesforce_stg__mc_user", "attached_node": "model.yoda.analytics___salesforce_stg__mc_user"}, "test.yoda.not_null_analytics___salesforce_stg__mc_user_user_id.ba2f4f0e35": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_user')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__mc_user_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforce_stg__mc_user_user_id.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__mc_user_user_id.ba2f4f0e35", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_user", "not_null_analytics___salesforce_stg__mc_user_user_id"], "alias": "not_null_analytics___salesforce_stg__mc_user_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082657.6966345, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.yml/not_null_analytics___salesforce_stg__mc_user_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__mc_user where user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_id", "file_key_name": "models.analytics___salesforce_stg__mc_user", "attached_node": "model.yoda.analytics___salesforce_stg__mc_user"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_user_1.b7a345583f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__mc_user')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_user_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__fba9deee78b7b28c4580ad4fd874d551.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_user_1.b7a345583f", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__mc_user", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_user_1"], "alias": "dbt_expectations_expect_table__fba9deee78b7b28c4580ad4fd874d551", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__fba9deee78b7b28c4580ad4fd874d551", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__fba9deee78b7b28c4580ad4fd874d551"}, "created_at": 1700082657.7020557, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__fba9deee78b7b28c4580ad4fd874d551\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__mc_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__mc_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.yml/dbt_expectations_expect_table__fba9deee78b7b28c4580ad4fd874d551.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__mc_user\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__mc_user", "attached_node": "model.yoda.analytics___salesforce_stg__mc_user"}, "test.yoda.unique_analytics___salesforce_stg__opportunity_prediction_prediction_id.238d85469e": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "prediction_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__opportunity_prediction')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___salesforce_stg__opportunity_prediction_prediction_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___salesforce__5c44afe7e8afa24281948ff80b4ae1c3.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.yml", "unique_id": "test.yoda.unique_analytics___salesforce_stg__opportunity_prediction_prediction_id.238d85469e", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__opportunity_prediction", "unique_analytics___salesforce_stg__opportunity_prediction_prediction_id"], "alias": "unique_analytics___salesforce__5c44afe7e8afa24281948ff80b4ae1c3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___salesforce__5c44afe7e8afa24281948ff80b4ae1c3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___salesforce__5c44afe7e8afa24281948ff80b4ae1c3"}, "created_at": 1700082657.7346501, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___salesforce__5c44afe7e8afa24281948ff80b4ae1c3\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__opportunity_prediction", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__opportunity_prediction"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.yml/unique_analytics___salesforce__5c44afe7e8afa24281948ff80b4ae1c3.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select prediction_id from dev_dkruh1.analytics___salesforce_stg__opportunity_prediction where prediction_id is not null group by prediction_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "prediction_id", "file_key_name": "models.analytics___salesforce_stg__opportunity_prediction", "attached_node": "model.yoda.analytics___salesforce_stg__opportunity_prediction"}, "test.yoda.not_null_analytics___salesforce_stg__opportunity_prediction_prediction_id.64f233439a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "prediction_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__opportunity_prediction')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__opportunity_prediction_prediction_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_8f5c03bf8f8e39f33324cbeae8dc9695.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__opportunity_prediction_prediction_id.64f233439a", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__opportunity_prediction", "not_null_analytics___salesforce_stg__opportunity_prediction_prediction_id"], "alias": "not_null_analytics___salesforc_8f5c03bf8f8e39f33324cbeae8dc9695", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_8f5c03bf8f8e39f33324cbeae8dc9695", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_8f5c03bf8f8e39f33324cbeae8dc9695"}, "created_at": 1700082657.7404385, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_8f5c03bf8f8e39f33324cbeae8dc9695\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__opportunity_prediction", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__opportunity_prediction"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.yml/not_null_analytics___salesforc_8f5c03bf8f8e39f33324cbeae8dc9695.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__opportunity_prediction where prediction_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "prediction_id", "file_key_name": "models.analytics___salesforce_stg__opportunity_prediction", "attached_node": "model.yoda.analytics___salesforce_stg__opportunity_prediction"}, "test.yoda.not_null_analytics___salesforce_stg__opportunity_prediction_opportunity_id.dbc81edaa6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opportunity_id", "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__opportunity_prediction')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___salesforce_stg__opportunity_prediction_opportunity_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___salesforc_7bf1bb79dc75411f4fe58a84e5e34153.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.yml", "unique_id": "test.yoda.not_null_analytics___salesforce_stg__opportunity_prediction_opportunity_id.dbc81edaa6", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__opportunity_prediction", "not_null_analytics___salesforce_stg__opportunity_prediction_opportunity_id"], "alias": "not_null_analytics___salesforc_7bf1bb79dc75411f4fe58a84e5e34153", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___salesforc_7bf1bb79dc75411f4fe58a84e5e34153", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___salesforc_7bf1bb79dc75411f4fe58a84e5e34153"}, "created_at": 1700082657.7476392, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___salesforc_7bf1bb79dc75411f4fe58a84e5e34153\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__opportunity_prediction", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__opportunity_prediction"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.yml/not_null_analytics___salesforc_7bf1bb79dc75411f4fe58a84e5e34153.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___salesforce_stg__opportunity_prediction where opportunity_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opportunity_id", "file_key_name": "models.analytics___salesforce_stg__opportunity_prediction", "attached_node": "model.yoda.analytics___salesforce_stg__opportunity_prediction"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_1.dc9a0132aa": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___salesforce_stg__opportunity_prediction')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__9b328442c384dda8363c26d33c9a018d.sql", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_1.dc9a0132aa", "fqn": ["yoda", "analytics", "salesforce", "staging", "marts_compatible", "analytics___salesforce_stg__opportunity_prediction", "dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_1"], "alias": "dbt_expectations_expect_table__9b328442c384dda8363c26d33c9a018d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__9b328442c384dda8363c26d33c9a018d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__9b328442c384dda8363c26d33c9a018d"}, "created_at": 1700082657.7547507, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__9b328442c384dda8363c26d33c9a018d\") }}", "language": "sql", "refs": [{"name": "analytics___salesforce_stg__opportunity_prediction", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___salesforce_stg__opportunity_prediction"]}, "compiled_path": "target/compiled/yoda/models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.yml/dbt_expectations_expect_table__9b328442c384dda8363c26d33c9a018d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___salesforce_stg__opportunity_prediction\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___salesforce_stg__opportunity_prediction", "attached_node": "model.yoda.analytics___salesforce_stg__opportunity_prediction"}, "test.yoda.not_null_analytics___sms__automation_message_dates_automation_id.0825c476ff": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "automation_id", "model": "{{ get_where_subquery(ref('analytics___sms__automation_message_dates')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__automation_message_dates_automation_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__auto_4b3300fa589608bdb3407483e3da257c.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.yml", "unique_id": "test.yoda.not_null_analytics___sms__automation_message_dates_automation_id.0825c476ff", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__automation_message_dates", "not_null_analytics___sms__automation_message_dates_automation_id"], "alias": "not_null_analytics___sms__auto_4b3300fa589608bdb3407483e3da257c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms__auto_4b3300fa589608bdb3407483e3da257c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms__auto_4b3300fa589608bdb3407483e3da257c"}, "created_at": 1700082657.859051, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms__auto_4b3300fa589608bdb3407483e3da257c\") }}", "language": "sql", "refs": [{"name": "analytics___sms__automation_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__automation_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.yml/not_null_analytics___sms__auto_4b3300fa589608bdb3407483e3da257c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__automation_message_dates where automation_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "automation_id", "file_key_name": "models.analytics___sms__automation_message_dates", "attached_node": "model.yoda.analytics___sms__automation_message_dates"}, "test.yoda.not_null_analytics___sms__automation_message_dates_message_date.1ce8be6560": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "message_date", "model": "{{ get_where_subquery(ref('analytics___sms__automation_message_dates')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__automation_message_dates_message_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__automation_message_dates_message_date.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.yml", "unique_id": "test.yoda.not_null_analytics___sms__automation_message_dates_message_date.1ce8be6560", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__automation_message_dates", "not_null_analytics___sms__automation_message_dates_message_date"], "alias": "not_null_analytics___sms__automation_message_dates_message_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082657.8652008, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__automation_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__automation_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.yml/not_null_analytics___sms__automation_message_dates_message_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__automation_message_dates where message_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "message_date", "file_key_name": "models.analytics___sms__automation_message_dates", "attached_node": "model.yoda.analytics___sms__automation_message_dates"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__automation_message_dates_1.4ec8bc0876": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__automation_message_dates')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__automation_message_dates_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3b6b39f0246d411bd0d5f6292a7bde1f.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__automation_message_dates_1.4ec8bc0876", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__automation_message_dates", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__automation_message_dates_1"], "alias": "dbt_expectations_expect_table__3b6b39f0246d411bd0d5f6292a7bde1f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3b6b39f0246d411bd0d5f6292a7bde1f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3b6b39f0246d411bd0d5f6292a7bde1f"}, "created_at": 1700082657.8709905, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3b6b39f0246d411bd0d5f6292a7bde1f\") }}", "language": "sql", "refs": [{"name": "analytics___sms__automation_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__automation_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.yml/dbt_expectations_expect_table__3b6b39f0246d411bd0d5f6292a7bde1f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__automation_message_dates\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__automation_message_dates", "attached_node": "model.yoda.analytics___sms__automation_message_dates"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__automation_message_dates_automation_id__message_date.fc259d88d0": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["automation_id", "message_date"], "model": "{{ get_where_subquery(ref('analytics___sms__automation_message_dates')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__automation_message_dates_automation_id__message_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_bf412387bf42929da61007673c82de9a.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__automation_message_dates_automation_id__message_date.fc259d88d0", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__automation_message_dates", "dbt_utils_unique_combination_of_columns_analytics___sms__automation_message_dates_automation_id__message_date"], "alias": "dbt_utils_unique_combination_o_bf412387bf42929da61007673c82de9a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_bf412387bf42929da61007673c82de9a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_bf412387bf42929da61007673c82de9a"}, "created_at": 1700082657.877592, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_bf412387bf42929da61007673c82de9a\") }}", "language": "sql", "refs": [{"name": "analytics___sms__automation_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__automation_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.yml/dbt_utils_unique_combination_o_bf412387bf42929da61007673c82de9a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n automation_id, message_date\n from dev_dkruh1.analytics___sms__automation_message_dates\n group by automation_id, message_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__automation_message_dates", "attached_node": "model.yoda.analytics___sms__automation_message_dates"}, "test.yoda.not_null_analytics___sms__campaign_message_dates_campaign_id.0514713006": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('analytics___sms__campaign_message_dates')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__campaign_message_dates_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__campaign_message_dates_campaign_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.yml", "unique_id": "test.yoda.not_null_analytics___sms__campaign_message_dates_campaign_id.0514713006", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__campaign_message_dates", "not_null_analytics___sms__campaign_message_dates_campaign_id"], "alias": "not_null_analytics___sms__campaign_message_dates_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082657.8999212, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__campaign_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__campaign_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.yml/not_null_analytics___sms__campaign_message_dates_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__campaign_message_dates where campaign_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.analytics___sms__campaign_message_dates", "attached_node": "model.yoda.analytics___sms__campaign_message_dates"}, "test.yoda.not_null_analytics___sms__campaign_message_dates_message_date.894b1dacb2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "message_date", "model": "{{ get_where_subquery(ref('analytics___sms__campaign_message_dates')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__campaign_message_dates_message_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__campaign_message_dates_message_date.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.yml", "unique_id": "test.yoda.not_null_analytics___sms__campaign_message_dates_message_date.894b1dacb2", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__campaign_message_dates", "not_null_analytics___sms__campaign_message_dates_message_date"], "alias": "not_null_analytics___sms__campaign_message_dates_message_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082657.9053385, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__campaign_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__campaign_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.yml/not_null_analytics___sms__campaign_message_dates_message_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__campaign_message_dates where message_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "message_date", "file_key_name": "models.analytics___sms__campaign_message_dates", "attached_node": "model.yoda.analytics___sms__campaign_message_dates"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__campaign_message_dates_1.ffbda0bcd9": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__campaign_message_dates')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__campaign_message_dates_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bb1c1a1bc144f52f3bcf7093d5468426.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__campaign_message_dates_1.ffbda0bcd9", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__campaign_message_dates", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__campaign_message_dates_1"], "alias": "dbt_expectations_expect_table__bb1c1a1bc144f52f3bcf7093d5468426", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bb1c1a1bc144f52f3bcf7093d5468426", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bb1c1a1bc144f52f3bcf7093d5468426"}, "created_at": 1700082657.911155, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bb1c1a1bc144f52f3bcf7093d5468426\") }}", "language": "sql", "refs": [{"name": "analytics___sms__campaign_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__campaign_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.yml/dbt_expectations_expect_table__bb1c1a1bc144f52f3bcf7093d5468426.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__campaign_message_dates\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__campaign_message_dates", "attached_node": "model.yoda.analytics___sms__campaign_message_dates"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__campaign_message_dates_campaign_id__message_date.46ebcecbeb": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["campaign_id", "message_date"], "model": "{{ get_where_subquery(ref('analytics___sms__campaign_message_dates')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__campaign_message_dates_campaign_id__message_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_ba4e52e9c05f95ec8b40b77ab3809d02.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__campaign_message_dates_campaign_id__message_date.46ebcecbeb", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__campaign_message_dates", "dbt_utils_unique_combination_of_columns_analytics___sms__campaign_message_dates_campaign_id__message_date"], "alias": "dbt_utils_unique_combination_o_ba4e52e9c05f95ec8b40b77ab3809d02", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ba4e52e9c05f95ec8b40b77ab3809d02", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ba4e52e9c05f95ec8b40b77ab3809d02"}, "created_at": 1700082657.918298, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ba4e52e9c05f95ec8b40b77ab3809d02\") }}", "language": "sql", "refs": [{"name": "analytics___sms__campaign_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__campaign_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.yml/dbt_utils_unique_combination_o_ba4e52e9c05f95ec8b40b77ab3809d02.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n campaign_id, message_date\n from dev_dkruh1.analytics___sms__campaign_message_dates\n group by campaign_id, message_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__campaign_message_dates", "attached_node": "model.yoda.analytics___sms__campaign_message_dates"}, "test.yoda.unique_analytics___sms__deliverability_daily_sms_deliverability_id.b877936313": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "sms_deliverability_id", "model": "{{ get_where_subquery(ref('analytics___sms__deliverability_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms__deliverability_daily_sms_deliverability_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms__delive_fc913067b001875dfe41a6d1a9c3d9b9.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.yml", "unique_id": "test.yoda.unique_analytics___sms__deliverability_daily_sms_deliverability_id.b877936313", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__deliverability_daily", "unique_analytics___sms__deliverability_daily_sms_deliverability_id"], "alias": "unique_analytics___sms__delive_fc913067b001875dfe41a6d1a9c3d9b9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___sms__delive_fc913067b001875dfe41a6d1a9c3d9b9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___sms__delive_fc913067b001875dfe41a6d1a9c3d9b9"}, "created_at": 1700082657.9496837, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___sms__delive_fc913067b001875dfe41a6d1a9c3d9b9\") }}", "language": "sql", "refs": [{"name": "analytics___sms__deliverability_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__deliverability_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.yml/unique_analytics___sms__delive_fc913067b001875dfe41a6d1a9c3d9b9.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select sms_deliverability_id from dev_dkruh1.analytics___sms__deliverability_daily where sms_deliverability_id is not null group by sms_deliverability_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_deliverability_id", "file_key_name": "models.analytics___sms__deliverability_daily", "attached_node": "model.yoda.analytics___sms__deliverability_daily"}, "test.yoda.not_null_analytics___sms__deliverability_daily_sms_deliverability_id.a4af05164d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_deliverability_id", "model": "{{ get_where_subquery(ref('analytics___sms__deliverability_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__deliverability_daily_sms_deliverability_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__deli_effe06f7329e8c4e38bb23ede44ad244.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__deliverability_daily_sms_deliverability_id.a4af05164d", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__deliverability_daily", "not_null_analytics___sms__deliverability_daily_sms_deliverability_id"], "alias": "not_null_analytics___sms__deli_effe06f7329e8c4e38bb23ede44ad244", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms__deli_effe06f7329e8c4e38bb23ede44ad244", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms__deli_effe06f7329e8c4e38bb23ede44ad244"}, "created_at": 1700082657.9560905, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms__deli_effe06f7329e8c4e38bb23ede44ad244\") }}", "language": "sql", "refs": [{"name": "analytics___sms__deliverability_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__deliverability_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.yml/not_null_analytics___sms__deli_effe06f7329e8c4e38bb23ede44ad244.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__deliverability_daily where sms_deliverability_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_deliverability_id", "file_key_name": "models.analytics___sms__deliverability_daily", "attached_node": "model.yoda.analytics___sms__deliverability_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__deliverability_daily_1.ed5ec677de": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__deliverability_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__deliverability_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__b7166ac9ff30538e735e2b5fa195390f.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__deliverability_daily_1.ed5ec677de", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__deliverability_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__deliverability_daily_1"], "alias": "dbt_expectations_expect_table__b7166ac9ff30538e735e2b5fa195390f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__b7166ac9ff30538e735e2b5fa195390f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__b7166ac9ff30538e735e2b5fa195390f"}, "created_at": 1700082657.9623137, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__b7166ac9ff30538e735e2b5fa195390f\") }}", "language": "sql", "refs": [{"name": "analytics___sms__deliverability_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__deliverability_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.yml/dbt_expectations_expect_table__b7166ac9ff30538e735e2b5fa195390f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__deliverability_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__deliverability_daily", "attached_node": "model.yoda.analytics___sms__deliverability_daily"}, "test.yoda.not_null_analytics___sms__flow_message_dates_flow_id.5090ceb246": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "flow_id", "model": "{{ get_where_subquery(ref('analytics___sms__flow_message_dates')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__flow_message_dates_flow_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__flow_message_dates_flow_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.yml", "unique_id": "test.yoda.not_null_analytics___sms__flow_message_dates_flow_id.5090ceb246", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__flow_message_dates", "not_null_analytics___sms__flow_message_dates_flow_id"], "alias": "not_null_analytics___sms__flow_message_dates_flow_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082657.9838943, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__flow_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__flow_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.yml/not_null_analytics___sms__flow_message_dates_flow_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__flow_message_dates where flow_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "flow_id", "file_key_name": "models.analytics___sms__flow_message_dates", "attached_node": "model.yoda.analytics___sms__flow_message_dates"}, "test.yoda.not_null_analytics___sms__flow_message_dates_message_date.29be2122c3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "message_date", "model": "{{ get_where_subquery(ref('analytics___sms__flow_message_dates')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__flow_message_dates_message_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__flow_message_dates_message_date.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.yml", "unique_id": "test.yoda.not_null_analytics___sms__flow_message_dates_message_date.29be2122c3", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__flow_message_dates", "not_null_analytics___sms__flow_message_dates_message_date"], "alias": "not_null_analytics___sms__flow_message_dates_message_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082657.9896324, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__flow_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__flow_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.yml/not_null_analytics___sms__flow_message_dates_message_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__flow_message_dates where message_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "message_date", "file_key_name": "models.analytics___sms__flow_message_dates", "attached_node": "model.yoda.analytics___sms__flow_message_dates"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__flow_message_dates_1.1ec9cc49fd": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__flow_message_dates')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__flow_message_dates_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__32b98c6e794a2d4a3deaa130fabb7bdd.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__flow_message_dates_1.1ec9cc49fd", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__flow_message_dates", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__flow_message_dates_1"], "alias": "dbt_expectations_expect_table__32b98c6e794a2d4a3deaa130fabb7bdd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__32b98c6e794a2d4a3deaa130fabb7bdd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__32b98c6e794a2d4a3deaa130fabb7bdd"}, "created_at": 1700082657.9952004, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__32b98c6e794a2d4a3deaa130fabb7bdd\") }}", "language": "sql", "refs": [{"name": "analytics___sms__flow_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__flow_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.yml/dbt_expectations_expect_table__32b98c6e794a2d4a3deaa130fabb7bdd.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__flow_message_dates\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__flow_message_dates", "attached_node": "model.yoda.analytics___sms__flow_message_dates"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__flow_message_dates_flow_id__message_date.f34aa732ba": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["flow_id", "message_date"], "model": "{{ get_where_subquery(ref('analytics___sms__flow_message_dates')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__flow_message_dates_flow_id__message_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_76f4987f308441ed823c7415f604edbe.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__flow_message_dates_flow_id__message_date.f34aa732ba", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__flow_message_dates", "dbt_utils_unique_combination_of_columns_analytics___sms__flow_message_dates_flow_id__message_date"], "alias": "dbt_utils_unique_combination_o_76f4987f308441ed823c7415f604edbe", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_76f4987f308441ed823c7415f604edbe", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_76f4987f308441ed823c7415f604edbe"}, "created_at": 1700082658.0017724, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_76f4987f308441ed823c7415f604edbe\") }}", "language": "sql", "refs": [{"name": "analytics___sms__flow_message_dates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__flow_message_dates"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.yml/dbt_utils_unique_combination_o_76f4987f308441ed823c7415f604edbe.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n flow_id, message_date\n from dev_dkruh1.analytics___sms__flow_message_dates\n group by flow_id, message_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__flow_message_dates", "attached_node": "model.yoda.analytics___sms__flow_message_dates"}, "test.yoda.unique_analytics___sms__free_credit_details_free_credit_id.b8d6e0a420": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "free_credit_id", "model": "{{ get_where_subquery(ref('analytics___sms__free_credit_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms__free_credit_details_free_credit_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms__free_credit_details_free_credit_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml", "unique_id": "test.yoda.unique_analytics___sms__free_credit_details_free_credit_id.b8d6e0a420", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__free_credit_details", "unique_analytics___sms__free_credit_details_free_credit_id"], "alias": "unique_analytics___sms__free_credit_details_free_credit_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082658.0276577, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__free_credit_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__free_credit_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml/unique_analytics___sms__free_credit_details_free_credit_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select free_credit_id from dev_dkruh1.analytics___sms__free_credit_details where free_credit_id is not null group by free_credit_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "free_credit_id", "file_key_name": "models.analytics___sms__free_credit_details", "attached_node": "model.yoda.analytics___sms__free_credit_details"}, "test.yoda.not_null_analytics___sms__free_credit_details_free_credit_id.613946642d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "free_credit_id", "model": "{{ get_where_subquery(ref('analytics___sms__free_credit_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__free_credit_details_free_credit_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__free_credit_details_free_credit_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml", "unique_id": "test.yoda.not_null_analytics___sms__free_credit_details_free_credit_id.613946642d", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__free_credit_details", "not_null_analytics___sms__free_credit_details_free_credit_id"], "alias": "not_null_analytics___sms__free_credit_details_free_credit_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.0331533, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__free_credit_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__free_credit_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml/not_null_analytics___sms__free_credit_details_free_credit_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__free_credit_details where free_credit_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "free_credit_id", "file_key_name": "models.analytics___sms__free_credit_details", "attached_node": "model.yoda.analytics___sms__free_credit_details"}, "test.yoda.not_null_analytics___sms__free_credit_details_sms_user_id.d1db017895": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__free_credit_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__free_credit_details_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__free_credit_details_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml", "unique_id": "test.yoda.not_null_analytics___sms__free_credit_details_sms_user_id.d1db017895", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__free_credit_details", "not_null_analytics___sms__free_credit_details_sms_user_id"], "alias": "not_null_analytics___sms__free_credit_details_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.0388227, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__free_credit_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__free_credit_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml/not_null_analytics___sms__free_credit_details_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__free_credit_details where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__free_credit_details", "attached_node": "model.yoda.analytics___sms__free_credit_details"}, "test.yoda.not_null_analytics___sms__free_credit_details_credit_type.78a91a3b84": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "credit_type", "model": "{{ get_where_subquery(ref('analytics___sms__free_credit_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__free_credit_details_credit_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__free_credit_details_credit_type.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml", "unique_id": "test.yoda.not_null_analytics___sms__free_credit_details_credit_type.78a91a3b84", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__free_credit_details", "not_null_analytics___sms__free_credit_details_credit_type"], "alias": "not_null_analytics___sms__free_credit_details_credit_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.0445344, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__free_credit_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__free_credit_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml/not_null_analytics___sms__free_credit_details_credit_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__free_credit_details where credit_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "credit_type", "file_key_name": "models.analytics___sms__free_credit_details", "attached_node": "model.yoda.analytics___sms__free_credit_details"}, "test.yoda.not_null_analytics___sms__free_credit_details_credit_created_at.7c49b5f5fa": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "credit_created_at", "model": "{{ get_where_subquery(ref('analytics___sms__free_credit_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__free_credit_details_credit_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__free_credit_details_credit_created_at.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml", "unique_id": "test.yoda.not_null_analytics___sms__free_credit_details_credit_created_at.7c49b5f5fa", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__free_credit_details", "not_null_analytics___sms__free_credit_details_credit_created_at"], "alias": "not_null_analytics___sms__free_credit_details_credit_created_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.0499656, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__free_credit_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__free_credit_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml/not_null_analytics___sms__free_credit_details_credit_created_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__free_credit_details where credit_created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "credit_created_at", "file_key_name": "models.analytics___sms__free_credit_details", "attached_node": "model.yoda.analytics___sms__free_credit_details"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__free_credit_details_1.add0fadb53": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__free_credit_details')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__free_credit_details_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__923e9970e70d2fa31aca73035688e7a7.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__free_credit_details_1.add0fadb53", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__free_credit_details", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__free_credit_details_1"], "alias": "dbt_expectations_expect_table__923e9970e70d2fa31aca73035688e7a7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__923e9970e70d2fa31aca73035688e7a7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__923e9970e70d2fa31aca73035688e7a7"}, "created_at": 1700082658.0566702, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__923e9970e70d2fa31aca73035688e7a7\") }}", "language": "sql", "refs": [{"name": "analytics___sms__free_credit_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__free_credit_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.yml/dbt_expectations_expect_table__923e9970e70d2fa31aca73035688e7a7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__free_credit_details\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__free_credit_details", "attached_node": "model.yoda.analytics___sms__free_credit_details"}, "test.yoda.not_null_analytics___sms__organization_metrics_monthly_month.4c1ae2b791": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___sms__organization_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__organization_metrics_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__organization_metrics_monthly_month.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___sms__organization_metrics_monthly_month.4c1ae2b791", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__organization_metrics_monthly", "not_null_analytics___sms__organization_metrics_monthly_month"], "alias": "not_null_analytics___sms__organization_metrics_monthly_month", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.0836744, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.yml/not_null_analytics___sms__organization_metrics_monthly_month.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__organization_metrics_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___sms__organization_metrics_monthly", "attached_node": "model.yoda.analytics___sms__organization_metrics_monthly"}, "test.yoda.not_null_analytics___sms__organization_metrics_monthly_organization_key.e4e223c945": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___sms__organization_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__organization_metrics_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__orga_4e3c4c5bc316e324c6a2fa342cad36cf.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___sms__organization_metrics_monthly_organization_key.e4e223c945", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__organization_metrics_monthly", "not_null_analytics___sms__organization_metrics_monthly_organization_key"], "alias": "not_null_analytics___sms__orga_4e3c4c5bc316e324c6a2fa342cad36cf", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms__orga_4e3c4c5bc316e324c6a2fa342cad36cf", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms__orga_4e3c4c5bc316e324c6a2fa342cad36cf"}, "created_at": 1700082658.089301, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms__orga_4e3c4c5bc316e324c6a2fa342cad36cf\") }}", "language": "sql", "refs": [{"name": "analytics___sms__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.yml/not_null_analytics___sms__orga_4e3c4c5bc316e324c6a2fa342cad36cf.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__organization_metrics_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___sms__organization_metrics_monthly", "attached_node": "model.yoda.analytics___sms__organization_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__organization_metrics_monthly_1.f032af9f64": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__organization_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__organization_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f8e1d7bd3995ff8ca3ca04112c758ade.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__organization_metrics_monthly_1.f032af9f64", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__organization_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__organization_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__f8e1d7bd3995ff8ca3ca04112c758ade", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f8e1d7bd3995ff8ca3ca04112c758ade", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f8e1d7bd3995ff8ca3ca04112c758ade"}, "created_at": 1700082658.0955157, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f8e1d7bd3995ff8ca3ca04112c758ade\") }}", "language": "sql", "refs": [{"name": "analytics___sms__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.yml/dbt_expectations_expect_table__f8e1d7bd3995ff8ca3ca04112c758ade.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__organization_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__organization_metrics_monthly", "attached_node": "model.yoda.analytics___sms__organization_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__organization_metrics_monthly_month__organization_key.de5cf3249b": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "organization_key"], "model": "{{ get_where_subquery(ref('analytics___sms__organization_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__organization_metrics_monthly_month__organization_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_aaff4c967ebdff3b2ee21af93180b3fe.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__organization_metrics_monthly_month__organization_key.de5cf3249b", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__organization_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___sms__organization_metrics_monthly_month__organization_key"], "alias": "dbt_utils_unique_combination_o_aaff4c967ebdff3b2ee21af93180b3fe", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_aaff4c967ebdff3b2ee21af93180b3fe", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_aaff4c967ebdff3b2ee21af93180b3fe"}, "created_at": 1700082658.102044, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_aaff4c967ebdff3b2ee21af93180b3fe\") }}", "language": "sql", "refs": [{"name": "analytics___sms__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.yml/dbt_utils_unique_combination_o_aaff4c967ebdff3b2ee21af93180b3fe.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, organization_key\n from dev_dkruh1.analytics___sms__organization_metrics_monthly\n group by month, organization_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__organization_metrics_monthly", "attached_node": "model.yoda.analytics___sms__organization_metrics_monthly"}, "test.yoda.unique_analytics___sms__purchase_purchase_id.b73f9e0cdf": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "purchase_id", "model": "{{ get_where_subquery(ref('analytics___sms__purchase')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms__purchase_purchase_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms__purchase_purchase_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.yml", "unique_id": "test.yoda.unique_analytics___sms__purchase_purchase_id.b73f9e0cdf", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__purchase", "unique_analytics___sms__purchase_purchase_id"], "alias": "unique_analytics___sms__purchase_purchase_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082658.1427584, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__purchase", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__purchase"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.yml/unique_analytics___sms__purchase_purchase_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select purchase_id from dev_dkruh1.analytics___sms__purchase where purchase_id is not null group by purchase_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "purchase_id", "file_key_name": "models.analytics___sms__purchase", "attached_node": "model.yoda.analytics___sms__purchase"}, "test.yoda.not_null_analytics___sms__purchase_purchase_id.b5ed9e35cb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "purchase_id", "model": "{{ get_where_subquery(ref('analytics___sms__purchase')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__purchase_purchase_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__purchase_purchase_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.yml", "unique_id": "test.yoda.not_null_analytics___sms__purchase_purchase_id.b5ed9e35cb", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__purchase", "not_null_analytics___sms__purchase_purchase_id"], "alias": "not_null_analytics___sms__purchase_purchase_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.1487176, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__purchase", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__purchase"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.yml/not_null_analytics___sms__purchase_purchase_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__purchase where purchase_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "purchase_id", "file_key_name": "models.analytics___sms__purchase", "attached_node": "model.yoda.analytics___sms__purchase"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__purchase_1.671a5dc914": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__purchase')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__purchase_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__17beb02aafad4c97af8044683b228a78.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__purchase_1.671a5dc914", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__purchase", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__purchase_1"], "alias": "dbt_expectations_expect_table__17beb02aafad4c97af8044683b228a78", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__17beb02aafad4c97af8044683b228a78", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__17beb02aafad4c97af8044683b228a78"}, "created_at": 1700082658.1541965, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__17beb02aafad4c97af8044683b228a78\") }}", "language": "sql", "refs": [{"name": "analytics___sms__purchase", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__purchase"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.yml/dbt_expectations_expect_table__17beb02aafad4c97af8044683b228a78.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__purchase\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__purchase", "attached_node": "model.yoda.analytics___sms__purchase"}, "test.yoda.unique_analytics___sms__store_app_key.c36e729d05": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___sms__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms__store_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms__store_app_key.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.yml", "unique_id": "test.yoda.unique_analytics___sms__store_app_key.c36e729d05", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store", "unique_analytics___sms__store_app_key"], "alias": "unique_analytics___sms__store_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082658.193619, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.yml/unique_analytics___sms__store_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___sms__store where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___sms__store", "attached_node": "model.yoda.analytics___sms__store"}, "test.yoda.not_null_analytics___sms__store_app_key.4ae1b748eb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___sms__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_app_key.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_app_key.4ae1b748eb", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store", "not_null_analytics___sms__store_app_key"], "alias": "not_null_analytics___sms__store_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.1995747, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.yml/not_null_analytics___sms__store_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___sms__store", "attached_node": "model.yoda.analytics___sms__store"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_1.f4bddc02a7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__store')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c29e207e05f48a944d789c072bb8f3e6.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_1.f4bddc02a7", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_1"], "alias": "dbt_expectations_expect_table__c29e207e05f48a944d789c072bb8f3e6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c29e207e05f48a944d789c072bb8f3e6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c29e207e05f48a944d789c072bb8f3e6"}, "created_at": 1700082658.2050648, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c29e207e05f48a944d789c072bb8f3e6\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.yml/dbt_expectations_expect_table__c29e207e05f48a944d789c072bb8f3e6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__store\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store", "attached_node": "model.yoda.analytics___sms__store"}, "test.yoda.not_null_analytics___sms__store_activeness_daily_activeness_date.418c4727f0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activeness_date", "model": "{{ get_where_subquery(ref('analytics___sms__store_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_activeness_daily_activeness_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__stor_da41ddb02528f183c789fc8551f3e492.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_activeness_daily_activeness_date.418c4727f0", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_activeness_daily", "not_null_analytics___sms__store_activeness_daily_activeness_date"], "alias": "not_null_analytics___sms__stor_da41ddb02528f183c789fc8551f3e492", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms__stor_da41ddb02528f183c789fc8551f3e492", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms__stor_da41ddb02528f183c789fc8551f3e492"}, "created_at": 1700082658.2284746, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms__stor_da41ddb02528f183c789fc8551f3e492\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.yml/not_null_analytics___sms__stor_da41ddb02528f183c789fc8551f3e492.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_activeness_daily where activeness_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "activeness_date", "file_key_name": "models.analytics___sms__store_activeness_daily", "attached_node": "model.yoda.analytics___sms__store_activeness_daily"}, "test.yoda.not_null_analytics___sms__store_activeness_daily_app_key.b3bfec3f09": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___sms__store_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_activeness_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_activeness_daily_app_key.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_activeness_daily_app_key.b3bfec3f09", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_activeness_daily", "not_null_analytics___sms__store_activeness_daily_app_key"], "alias": "not_null_analytics___sms__store_activeness_daily_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.2346618, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.yml/not_null_analytics___sms__store_activeness_daily_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_activeness_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___sms__store_activeness_daily", "attached_node": "model.yoda.analytics___sms__store_activeness_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_activeness_daily_1.4432762bd7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__store_activeness_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_activeness_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__84ebfa034e7c6723c6f6eb079f62b801.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_activeness_daily_1.4432762bd7", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_activeness_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_activeness_daily_1"], "alias": "dbt_expectations_expect_table__84ebfa034e7c6723c6f6eb079f62b801", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__84ebfa034e7c6723c6f6eb079f62b801", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__84ebfa034e7c6723c6f6eb079f62b801"}, "created_at": 1700082658.240492, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__84ebfa034e7c6723c6f6eb079f62b801\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.yml/dbt_expectations_expect_table__84ebfa034e7c6723c6f6eb079f62b801.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__store_activeness_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_activeness_daily", "attached_node": "model.yoda.analytics___sms__store_activeness_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_activeness_daily_activeness_date__app_key.e3dae1fbf0": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["activeness_date", "app_key"], "model": "{{ get_where_subquery(ref('analytics___sms__store_activeness_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__store_activeness_daily_activeness_date__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_adf259d2b0aac1e7b05572499d89506c.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_activeness_daily_activeness_date__app_key.e3dae1fbf0", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_activeness_daily", "dbt_utils_unique_combination_of_columns_analytics___sms__store_activeness_daily_activeness_date__app_key"], "alias": "dbt_utils_unique_combination_o_adf259d2b0aac1e7b05572499d89506c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_adf259d2b0aac1e7b05572499d89506c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_adf259d2b0aac1e7b05572499d89506c"}, "created_at": 1700082658.247009, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_adf259d2b0aac1e7b05572499d89506c\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.yml/dbt_utils_unique_combination_o_adf259d2b0aac1e7b05572499d89506c.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n activeness_date, app_key\n from dev_dkruh1.analytics___sms__store_activeness_daily\n group by activeness_date, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_activeness_daily", "attached_node": "model.yoda.analytics___sms__store_activeness_daily"}, "test.yoda.not_null_analytics___sms__store_cohort_cohort_type.a81030d6ce": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "cohort_type", "model": "{{ get_where_subquery(ref('analytics___sms__store_cohort')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_cohort_cohort_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_cohort_cohort_type.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_cohort_cohort_type.a81030d6ce", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_cohort", "not_null_analytics___sms__store_cohort_cohort_type"], "alias": "not_null_analytics___sms__store_cohort_cohort_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.2770383, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.yml/not_null_analytics___sms__store_cohort_cohort_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_cohort where cohort_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "cohort_type", "file_key_name": "models.analytics___sms__store_cohort", "attached_node": "model.yoda.analytics___sms__store_cohort"}, "test.yoda.not_null_analytics___sms__store_cohort_cohort_number.a60499f07d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "cohort_number", "model": "{{ get_where_subquery(ref('analytics___sms__store_cohort')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_cohort_cohort_number", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_cohort_cohort_number.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_cohort_cohort_number.a60499f07d", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_cohort", "not_null_analytics___sms__store_cohort_cohort_number"], "alias": "not_null_analytics___sms__store_cohort_cohort_number", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.282942, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.yml/not_null_analytics___sms__store_cohort_cohort_number.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_cohort where cohort_number is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "cohort_number", "file_key_name": "models.analytics___sms__store_cohort", "attached_node": "model.yoda.analytics___sms__store_cohort"}, "test.yoda.not_null_analytics___sms__store_cohort_app_key.c9097fd85a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___sms__store_cohort')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_cohort_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_cohort_app_key.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_cohort_app_key.c9097fd85a", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_cohort", "not_null_analytics___sms__store_cohort_app_key"], "alias": "not_null_analytics___sms__store_cohort_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.2883036, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.yml/not_null_analytics___sms__store_cohort_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_cohort where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___sms__store_cohort", "attached_node": "model.yoda.analytics___sms__store_cohort"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_cohort_1.731435684c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__store_cohort')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_cohort_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3eaa5801c7e8c373fc346699465263a6.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_cohort_1.731435684c", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_cohort", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_cohort_1"], "alias": "dbt_expectations_expect_table__3eaa5801c7e8c373fc346699465263a6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3eaa5801c7e8c373fc346699465263a6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3eaa5801c7e8c373fc346699465263a6"}, "created_at": 1700082658.2955341, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3eaa5801c7e8c373fc346699465263a6\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.yml/dbt_expectations_expect_table__3eaa5801c7e8c373fc346699465263a6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__store_cohort\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_cohort", "attached_node": "model.yoda.analytics___sms__store_cohort"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_cohort_cohort_type__cohort_number__app_key.4339d9bc4e": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["cohort_type", "cohort_number", "app_key"], "model": "{{ get_where_subquery(ref('analytics___sms__store_cohort')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__store_cohort_cohort_type__cohort_number__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_149ac40ef4dc974bedcb8b253a80d1c2.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_cohort_cohort_type__cohort_number__app_key.4339d9bc4e", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_cohort", "dbt_utils_unique_combination_of_columns_analytics___sms__store_cohort_cohort_type__cohort_number__app_key"], "alias": "dbt_utils_unique_combination_o_149ac40ef4dc974bedcb8b253a80d1c2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_149ac40ef4dc974bedcb8b253a80d1c2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_149ac40ef4dc974bedcb8b253a80d1c2"}, "created_at": 1700082658.302085, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_149ac40ef4dc974bedcb8b253a80d1c2\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.yml/dbt_utils_unique_combination_o_149ac40ef4dc974bedcb8b253a80d1c2.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n cohort_type, cohort_number, app_key\n from dev_dkruh1.analytics___sms__store_cohort\n group by cohort_type, cohort_number, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_cohort", "attached_node": "model.yoda.analytics___sms__store_cohort"}, "test.yoda.unique_analytics___sms__store_metrics_app_key.9ba09bfff4": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___sms__store_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms__store_metrics_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms__store_metrics_app_key.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.yml", "unique_id": "test.yoda.unique_analytics___sms__store_metrics_app_key.9ba09bfff4", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics", "unique_analytics___sms__store_metrics_app_key"], "alias": "unique_analytics___sms__store_metrics_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082658.373298, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.yml/unique_analytics___sms__store_metrics_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___sms__store_metrics where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___sms__store_metrics", "attached_node": "model.yoda.analytics___sms__store_metrics"}, "test.yoda.not_null_analytics___sms__store_metrics_app_key.66dbe2259f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___sms__store_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_metrics_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_metrics_app_key.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_metrics_app_key.66dbe2259f", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics", "not_null_analytics___sms__store_metrics_app_key"], "alias": "not_null_analytics___sms__store_metrics_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.3796635, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.yml/not_null_analytics___sms__store_metrics_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_metrics where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___sms__store_metrics", "attached_node": "model.yoda.analytics___sms__store_metrics"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_1.2243a2968f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__store_metrics')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7b23340e75f47ba7d709f9a2dd4a1b95.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_1.2243a2968f", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_1"], "alias": "dbt_expectations_expect_table__7b23340e75f47ba7d709f9a2dd4a1b95", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7b23340e75f47ba7d709f9a2dd4a1b95", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7b23340e75f47ba7d709f9a2dd4a1b95"}, "created_at": 1700082658.3852763, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7b23340e75f47ba7d709f9a2dd4a1b95\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.yml/dbt_expectations_expect_table__7b23340e75f47ba7d709f9a2dd4a1b95.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__store_metrics\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_metrics", "attached_node": "model.yoda.analytics___sms__store_metrics"}, "test.yoda.not_null_analytics___sms__store_metrics_daily_date.e047c841c8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___sms__store_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_metrics_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_metrics_daily_date.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_metrics_daily_date.e047c841c8", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics_daily", "not_null_analytics___sms__store_metrics_daily_date"], "alias": "not_null_analytics___sms__store_metrics_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.4427254, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.yml/not_null_analytics___sms__store_metrics_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_metrics_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___sms__store_metrics_daily", "attached_node": "model.yoda.analytics___sms__store_metrics_daily"}, "test.yoda.not_null_analytics___sms__store_metrics_daily_sms_user_id.8a38a6c32b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__store_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_metrics_daily_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_metrics_daily_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_metrics_daily_sms_user_id.8a38a6c32b", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics_daily", "not_null_analytics___sms__store_metrics_daily_sms_user_id"], "alias": "not_null_analytics___sms__store_metrics_daily_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.448725, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.yml/not_null_analytics___sms__store_metrics_daily_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_metrics_daily where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__store_metrics_daily", "attached_node": "model.yoda.analytics___sms__store_metrics_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_daily_1.8628852519": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__store_metrics_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__62d1b040bfdabe074f876ce9bcbe5bb5.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_daily_1.8628852519", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_daily_1"], "alias": "dbt_expectations_expect_table__62d1b040bfdabe074f876ce9bcbe5bb5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__62d1b040bfdabe074f876ce9bcbe5bb5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__62d1b040bfdabe074f876ce9bcbe5bb5"}, "created_at": 1700082658.4545608, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__62d1b040bfdabe074f876ce9bcbe5bb5\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.yml/dbt_expectations_expect_table__62d1b040bfdabe074f876ce9bcbe5bb5.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__store_metrics_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_metrics_daily", "attached_node": "model.yoda.analytics___sms__store_metrics_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_daily_date__sms_user_id.12d9c6e5a6": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "sms_user_id"], "model": "{{ get_where_subquery(ref('analytics___sms__store_metrics_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_daily_date__sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_328d0e2b7766ff40e05f38451eb6c950.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_daily_date__sms_user_id.12d9c6e5a6", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics_daily", "dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_daily_date__sms_user_id"], "alias": "dbt_utils_unique_combination_o_328d0e2b7766ff40e05f38451eb6c950", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_328d0e2b7766ff40e05f38451eb6c950", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_328d0e2b7766ff40e05f38451eb6c950"}, "created_at": 1700082658.4612453, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_328d0e2b7766ff40e05f38451eb6c950\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.yml/dbt_utils_unique_combination_o_328d0e2b7766ff40e05f38451eb6c950.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, sms_user_id\n from dev_dkruh1.analytics___sms__store_metrics_daily\n group by date, sms_user_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_metrics_daily", "attached_node": "model.yoda.analytics___sms__store_metrics_daily"}, "test.yoda.not_null_analytics___sms__store_metrics_monthly_month.1d1fbc529c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___sms__store_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_metrics_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_metrics_monthly_month.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_metrics_monthly_month.1d1fbc529c", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics_monthly", "not_null_analytics___sms__store_metrics_monthly_month"], "alias": "not_null_analytics___sms__store_metrics_monthly_month", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.5259259, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.yml/not_null_analytics___sms__store_metrics_monthly_month.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_metrics_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___sms__store_metrics_monthly", "attached_node": "model.yoda.analytics___sms__store_metrics_monthly"}, "test.yoda.not_null_analytics___sms__store_metrics_monthly_app_key.f1f27aa275": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___sms__store_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_metrics_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_metrics_monthly_app_key.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_metrics_monthly_app_key.f1f27aa275", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics_monthly", "not_null_analytics___sms__store_metrics_monthly_app_key"], "alias": "not_null_analytics___sms__store_metrics_monthly_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.531807, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.yml/not_null_analytics___sms__store_metrics_monthly_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_metrics_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___sms__store_metrics_monthly", "attached_node": "model.yoda.analytics___sms__store_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_monthly_1.503243a18e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__store_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4c4db22a4f5520069f118ec4b7bdff93.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_monthly_1.503243a18e", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__4c4db22a4f5520069f118ec4b7bdff93", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4c4db22a4f5520069f118ec4b7bdff93", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4c4db22a4f5520069f118ec4b7bdff93"}, "created_at": 1700082658.5374446, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4c4db22a4f5520069f118ec4b7bdff93\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.yml/dbt_expectations_expect_table__4c4db22a4f5520069f118ec4b7bdff93.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__store_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_metrics_monthly", "attached_node": "model.yoda.analytics___sms__store_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_monthly_month__app_key.261ef4f277": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "app_key"], "model": "{{ get_where_subquery(ref('analytics___sms__store_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_monthly_month__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_1cceadda19be973382a6cec145dc72aa.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_monthly_month__app_key.261ef4f277", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_monthly_month__app_key"], "alias": "dbt_utils_unique_combination_o_1cceadda19be973382a6cec145dc72aa", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_1cceadda19be973382a6cec145dc72aa", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_1cceadda19be973382a6cec145dc72aa"}, "created_at": 1700082658.5439334, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_1cceadda19be973382a6cec145dc72aa\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.yml/dbt_utils_unique_combination_o_1cceadda19be973382a6cec145dc72aa.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, app_key\n from dev_dkruh1.analytics___sms__store_metrics_monthly\n group by month, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_metrics_monthly", "attached_node": "model.yoda.analytics___sms__store_metrics_monthly"}, "test.yoda.not_null_analytics___sms__store_plan_daily_date.5d8a176ccd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___sms__store_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_plan_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_plan_daily_date.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_plan_daily_date.5d8a176ccd", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_plan_daily", "not_null_analytics___sms__store_plan_daily_date"], "alias": "not_null_analytics___sms__store_plan_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.5696359, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.yml/not_null_analytics___sms__store_plan_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_plan_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___sms__store_plan_daily", "attached_node": "model.yoda.analytics___sms__store_plan_daily"}, "test.yoda.not_null_analytics___sms__store_plan_daily_app_key.33a248140c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___sms__store_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_plan_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_plan_daily_app_key.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_plan_daily_app_key.33a248140c", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_plan_daily", "not_null_analytics___sms__store_plan_daily_app_key"], "alias": "not_null_analytics___sms__store_plan_daily_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.576985, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.yml/not_null_analytics___sms__store_plan_daily_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_plan_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___sms__store_plan_daily", "attached_node": "model.yoda.analytics___sms__store_plan_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_daily_1.639d995f4b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__store_plan_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__be567078e941ba221cbf08c0296c44ed.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_daily_1.639d995f4b", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_plan_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_daily_1"], "alias": "dbt_expectations_expect_table__be567078e941ba221cbf08c0296c44ed", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__be567078e941ba221cbf08c0296c44ed", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__be567078e941ba221cbf08c0296c44ed"}, "created_at": 1700082658.5824788, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__be567078e941ba221cbf08c0296c44ed\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.yml/dbt_expectations_expect_table__be567078e941ba221cbf08c0296c44ed.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__store_plan_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_plan_daily", "attached_node": "model.yoda.analytics___sms__store_plan_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_daily_date__app_key.4f5e35cc06": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "app_key"], "model": "{{ get_where_subquery(ref('analytics___sms__store_plan_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_daily_date__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_4afb95ccddd37c3d3a968803d05b8452.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_daily_date__app_key.4f5e35cc06", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_plan_daily", "dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_daily_date__app_key"], "alias": "dbt_utils_unique_combination_o_4afb95ccddd37c3d3a968803d05b8452", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_4afb95ccddd37c3d3a968803d05b8452", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_4afb95ccddd37c3d3a968803d05b8452"}, "created_at": 1700082658.5888693, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_4afb95ccddd37c3d3a968803d05b8452\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.yml/dbt_utils_unique_combination_o_4afb95ccddd37c3d3a968803d05b8452.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, app_key\n from dev_dkruh1.analytics___sms__store_plan_daily\n group by date, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_plan_daily", "attached_node": "model.yoda.analytics___sms__store_plan_daily"}, "test.yoda.not_null_analytics___sms__store_plan_over_time_app_key.915904b3b5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___sms__store_plan_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_plan_over_time_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_plan_over_time_app_key.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_plan_over_time_app_key.915904b3b5", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_plan_over_time", "not_null_analytics___sms__store_plan_over_time_app_key"], "alias": "not_null_analytics___sms__store_plan_over_time_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.6174676, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.yml/not_null_analytics___sms__store_plan_over_time_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_plan_over_time where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___sms__store_plan_over_time", "attached_node": "model.yoda.analytics___sms__store_plan_over_time"}, "test.yoda.not_null_analytics___sms__store_plan_over_time_from_time.2c20a6ca8e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_time", "model": "{{ get_where_subquery(ref('analytics___sms__store_plan_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_plan_over_time_from_time", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_plan_over_time_from_time.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_plan_over_time_from_time.2c20a6ca8e", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_plan_over_time", "not_null_analytics___sms__store_plan_over_time_from_time"], "alias": "not_null_analytics___sms__store_plan_over_time_from_time", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.6229253, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.yml/not_null_analytics___sms__store_plan_over_time_from_time.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_plan_over_time where from_time is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_time", "file_key_name": "models.analytics___sms__store_plan_over_time", "attached_node": "model.yoda.analytics___sms__store_plan_over_time"}, "test.yoda.not_null_analytics___sms__store_plan_over_time_row_ranking_for_store_and_created_date.a80e2f0af0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "row_ranking_for_store_and_created_date", "model": "{{ get_where_subquery(ref('analytics___sms__store_plan_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_plan_over_time_row_ranking_for_store_and_created_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__stor_2c0893902eea7626ebe4279ae7668355.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_plan_over_time_row_ranking_for_store_and_created_date.a80e2f0af0", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_plan_over_time", "not_null_analytics___sms__store_plan_over_time_row_ranking_for_store_and_created_date"], "alias": "not_null_analytics___sms__stor_2c0893902eea7626ebe4279ae7668355", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms__stor_2c0893902eea7626ebe4279ae7668355", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms__stor_2c0893902eea7626ebe4279ae7668355"}, "created_at": 1700082658.6284373, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms__stor_2c0893902eea7626ebe4279ae7668355\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.yml/not_null_analytics___sms__stor_2c0893902eea7626ebe4279ae7668355.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_plan_over_time where row_ranking_for_store_and_created_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "row_ranking_for_store_and_created_date", "file_key_name": "models.analytics___sms__store_plan_over_time", "attached_node": "model.yoda.analytics___sms__store_plan_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_over_time_1.1f72d8ea1d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__store_plan_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__49cac51fdb33aada6a88b880871ef846.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_over_time_1.1f72d8ea1d", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_plan_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_over_time_1"], "alias": "dbt_expectations_expect_table__49cac51fdb33aada6a88b880871ef846", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__49cac51fdb33aada6a88b880871ef846", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__49cac51fdb33aada6a88b880871ef846"}, "created_at": 1700082658.6344166, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__49cac51fdb33aada6a88b880871ef846\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.yml/dbt_expectations_expect_table__49cac51fdb33aada6a88b880871ef846.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__store_plan_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_plan_over_time", "attached_node": "model.yoda.analytics___sms__store_plan_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_over_time_app_key__from_time__row_ranking_for_store_and_created_date.e8a022ecf1": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "from_time", "row_ranking_for_store_and_created_date"], "model": "{{ get_where_subquery(ref('analytics___sms__store_plan_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_over_time_app_key__from_time__row_ranking_for_store_and_created_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_e8664de41ddfa0068f63921a9da58d29.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_over_time_app_key__from_time__row_ranking_for_store_and_created_date.e8a022ecf1", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_plan_over_time", "dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_over_time_app_key__from_time__row_ranking_for_store_and_created_date"], "alias": "dbt_utils_unique_combination_o_e8664de41ddfa0068f63921a9da58d29", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_e8664de41ddfa0068f63921a9da58d29", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_e8664de41ddfa0068f63921a9da58d29"}, "created_at": 1700082658.6406896, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_e8664de41ddfa0068f63921a9da58d29\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.yml/dbt_utils_unique_combination_o_e8664de41ddfa0068f63921a9da58d29.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, from_time, row_ranking_for_store_and_created_date\n from dev_dkruh1.analytics___sms__store_plan_over_time\n group by app_key, from_time, row_ranking_for_store_and_created_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_plan_over_time", "attached_node": "model.yoda.analytics___sms__store_plan_over_time"}, "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_date.48c8026dcb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___sms__store_receiving_country_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_receiving_country_metrics_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__store_receiving_country_metrics_date.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_date.48c8026dcb", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_receiving_country_metrics", "not_null_analytics___sms__store_receiving_country_metrics_date"], "alias": "not_null_analytics___sms__store_receiving_country_metrics_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.6680496, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__store_receiving_country_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_receiving_country_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml/not_null_analytics___sms__store_receiving_country_metrics_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_receiving_country_metrics where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___sms__store_receiving_country_metrics", "attached_node": "model.yoda.analytics___sms__store_receiving_country_metrics"}, "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_app_key.62baae9185": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___sms__store_receiving_country_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_receiving_country_metrics_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__stor_4ad6675ff76702f732b102103607a0df.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_app_key.62baae9185", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_receiving_country_metrics", "not_null_analytics___sms__store_receiving_country_metrics_app_key"], "alias": "not_null_analytics___sms__stor_4ad6675ff76702f732b102103607a0df", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms__stor_4ad6675ff76702f732b102103607a0df", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms__stor_4ad6675ff76702f732b102103607a0df"}, "created_at": 1700082658.6733541, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms__stor_4ad6675ff76702f732b102103607a0df\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_receiving_country_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_receiving_country_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml/not_null_analytics___sms__stor_4ad6675ff76702f732b102103607a0df.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_receiving_country_metrics where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___sms__store_receiving_country_metrics", "attached_node": "model.yoda.analytics___sms__store_receiving_country_metrics"}, "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_sms_user_id.23e8e685a5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__store_receiving_country_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_receiving_country_metrics_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__stor_57026960d119b78d9f0d49ec4706e35b.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_sms_user_id.23e8e685a5", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_receiving_country_metrics", "not_null_analytics___sms__store_receiving_country_metrics_sms_user_id"], "alias": "not_null_analytics___sms__stor_57026960d119b78d9f0d49ec4706e35b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms__stor_57026960d119b78d9f0d49ec4706e35b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms__stor_57026960d119b78d9f0d49ec4706e35b"}, "created_at": 1700082658.6793895, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms__stor_57026960d119b78d9f0d49ec4706e35b\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_receiving_country_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_receiving_country_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml/not_null_analytics___sms__stor_57026960d119b78d9f0d49ec4706e35b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_receiving_country_metrics where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__store_receiving_country_metrics", "attached_node": "model.yoda.analytics___sms__store_receiving_country_metrics"}, "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_platform_name.736d64c512": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "platform_name", "model": "{{ get_where_subquery(ref('analytics___sms__store_receiving_country_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_receiving_country_metrics_platform_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__stor_cef8ba5902bcb7c0d44cb4d8081e17c3.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_platform_name.736d64c512", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_receiving_country_metrics", "not_null_analytics___sms__store_receiving_country_metrics_platform_name"], "alias": "not_null_analytics___sms__stor_cef8ba5902bcb7c0d44cb4d8081e17c3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms__stor_cef8ba5902bcb7c0d44cb4d8081e17c3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms__stor_cef8ba5902bcb7c0d44cb4d8081e17c3"}, "created_at": 1700082658.685571, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms__stor_cef8ba5902bcb7c0d44cb4d8081e17c3\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_receiving_country_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_receiving_country_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml/not_null_analytics___sms__stor_cef8ba5902bcb7c0d44cb4d8081e17c3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_receiving_country_metrics where platform_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "platform_name", "file_key_name": "models.analytics___sms__store_receiving_country_metrics", "attached_node": "model.yoda.analytics___sms__store_receiving_country_metrics"}, "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_message_type.7c58e62a8d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "message_type", "model": "{{ get_where_subquery(ref('analytics___sms__store_receiving_country_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__store_receiving_country_metrics_message_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__stor_72ab4b61caa417f89e9a612425c237c4.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml", "unique_id": "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_message_type.7c58e62a8d", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_receiving_country_metrics", "not_null_analytics___sms__store_receiving_country_metrics_message_type"], "alias": "not_null_analytics___sms__stor_72ab4b61caa417f89e9a612425c237c4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms__stor_72ab4b61caa417f89e9a612425c237c4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms__stor_72ab4b61caa417f89e9a612425c237c4"}, "created_at": 1700082658.691128, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms__stor_72ab4b61caa417f89e9a612425c237c4\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_receiving_country_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_receiving_country_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml/not_null_analytics___sms__stor_72ab4b61caa417f89e9a612425c237c4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__store_receiving_country_metrics where message_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "message_type", "file_key_name": "models.analytics___sms__store_receiving_country_metrics", "attached_node": "model.yoda.analytics___sms__store_receiving_country_metrics"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_receiving_country_metrics_1.cfb3934611": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__store_receiving_country_metrics')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_receiving_country_metrics_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__712ac8764f353c0e8112524d7d67ceb3.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_receiving_country_metrics_1.cfb3934611", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_receiving_country_metrics", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_receiving_country_metrics_1"], "alias": "dbt_expectations_expect_table__712ac8764f353c0e8112524d7d67ceb3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__712ac8764f353c0e8112524d7d67ceb3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__712ac8764f353c0e8112524d7d67ceb3"}, "created_at": 1700082658.6972597, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__712ac8764f353c0e8112524d7d67ceb3\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_receiving_country_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_receiving_country_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml/dbt_expectations_expect_table__712ac8764f353c0e8112524d7d67ceb3.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__store_receiving_country_metrics\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_receiving_country_metrics", "attached_node": "model.yoda.analytics___sms__store_receiving_country_metrics"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_receiving_country_metrics_date__app_key__sms_user_id__plan_name__receiving_country__message_type.c272401986": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "app_key", "sms_user_id", "plan_name", "receiving_country", "message_type"], "model": "{{ get_where_subquery(ref('analytics___sms__store_receiving_country_metrics')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__store_receiving_country_metrics_date__app_key__sms_user_id__plan_name__receiving_country__message_type", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_c9a409b1da6c6fcd543acee54774542e.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_receiving_country_metrics_date__app_key__sms_user_id__plan_name__receiving_country__message_type.c272401986", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__store_receiving_country_metrics", "dbt_utils_unique_combination_of_columns_analytics___sms__store_receiving_country_metrics_date__app_key__sms_user_id__plan_name__receiving_country__message_type"], "alias": "dbt_utils_unique_combination_o_c9a409b1da6c6fcd543acee54774542e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c9a409b1da6c6fcd543acee54774542e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c9a409b1da6c6fcd543acee54774542e"}, "created_at": 1700082658.7036285, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c9a409b1da6c6fcd543acee54774542e\") }}", "language": "sql", "refs": [{"name": "analytics___sms__store_receiving_country_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__store_receiving_country_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.yml/dbt_utils_unique_combination_o_c9a409b1da6c6fcd543acee54774542e.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, app_key, sms_user_id, plan_name, receiving_country, message_type\n from dev_dkruh1.analytics___sms__store_receiving_country_metrics\n group by date, app_key, sms_user_id, plan_name, receiving_country, message_type\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__store_receiving_country_metrics", "attached_node": "model.yoda.analytics___sms__store_receiving_country_metrics"}, "test.yoda.not_null_analytics___sms__user_activeness_daily_activeness_date.ed1699b965": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activeness_date", "model": "{{ get_where_subquery(ref('analytics___sms__user_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_activeness_daily_activeness_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_activeness_daily_activeness_date.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_activeness_daily_activeness_date.ed1699b965", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_activeness_daily", "not_null_analytics___sms__user_activeness_daily_activeness_date"], "alias": "not_null_analytics___sms__user_activeness_daily_activeness_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.727843, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.yml/not_null_analytics___sms__user_activeness_daily_activeness_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_activeness_daily where activeness_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "activeness_date", "file_key_name": "models.analytics___sms__user_activeness_daily", "attached_node": "model.yoda.analytics___sms__user_activeness_daily"}, "test.yoda.not_null_analytics___sms__user_activeness_daily_sms_user_id.19e6a484b5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_activeness_daily_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_activeness_daily_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_activeness_daily_sms_user_id.19e6a484b5", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_activeness_daily", "not_null_analytics___sms__user_activeness_daily_sms_user_id"], "alias": "not_null_analytics___sms__user_activeness_daily_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.7334006, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.yml/not_null_analytics___sms__user_activeness_daily_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_activeness_daily where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_activeness_daily", "attached_node": "model.yoda.analytics___sms__user_activeness_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_activeness_daily_1.dadc0c9339": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_activeness_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_activeness_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2d671e14f6dda99e0b87d5a2f5ff63c8.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_activeness_daily_1.dadc0c9339", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_activeness_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_activeness_daily_1"], "alias": "dbt_expectations_expect_table__2d671e14f6dda99e0b87d5a2f5ff63c8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2d671e14f6dda99e0b87d5a2f5ff63c8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2d671e14f6dda99e0b87d5a2f5ff63c8"}, "created_at": 1700082658.7399502, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2d671e14f6dda99e0b87d5a2f5ff63c8\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.yml/dbt_expectations_expect_table__2d671e14f6dda99e0b87d5a2f5ff63c8.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_activeness_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_activeness_daily", "attached_node": "model.yoda.analytics___sms__user_activeness_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_activeness_daily_activeness_date__sms_user_id.4b9b0451dc": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["activeness_date", "sms_user_id"], "model": "{{ get_where_subquery(ref('analytics___sms__user_activeness_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__user_activeness_daily_activeness_date__sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_cb0ab3525a5bcda2173dbf573028a891.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_activeness_daily_activeness_date__sms_user_id.4b9b0451dc", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_activeness_daily", "dbt_utils_unique_combination_of_columns_analytics___sms__user_activeness_daily_activeness_date__sms_user_id"], "alias": "dbt_utils_unique_combination_o_cb0ab3525a5bcda2173dbf573028a891", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_cb0ab3525a5bcda2173dbf573028a891", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_cb0ab3525a5bcda2173dbf573028a891"}, "created_at": 1700082658.747131, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_cb0ab3525a5bcda2173dbf573028a891\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.yml/dbt_utils_unique_combination_o_cb0ab3525a5bcda2173dbf573028a891.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n activeness_date, sms_user_id\n from dev_dkruh1.analytics___sms__user_activeness_daily\n group by activeness_date, sms_user_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_activeness_daily", "attached_node": "model.yoda.analytics___sms__user_activeness_daily"}, "test.yoda.not_null_analytics___sms__user_customer_sms_user_id.2d20dc9984": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_customer_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_customer_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_customer_sms_user_id.2d20dc9984", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_customer", "not_null_analytics___sms__user_customer_sms_user_id"], "alias": "not_null_analytics___sms__user_customer_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.7683926, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_customer"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.yml/not_null_analytics___sms__user_customer_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_customer where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_customer", "attached_node": "model.yoda.analytics___sms__user_customer"}, "test.yoda.not_null_analytics___sms__user_customer_customer_email.d9a9b17c31": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_email", "model": "{{ get_where_subquery(ref('analytics___sms__user_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_customer_customer_email", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_customer_customer_email.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_customer_customer_email.d9a9b17c31", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_customer", "not_null_analytics___sms__user_customer_customer_email"], "alias": "not_null_analytics___sms__user_customer_customer_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.7741675, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_customer"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.yml/not_null_analytics___sms__user_customer_customer_email.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_customer where customer_email is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_email", "file_key_name": "models.analytics___sms__user_customer", "attached_node": "model.yoda.analytics___sms__user_customer"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_customer_1.e8e30e51aa": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_customer')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_customer_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__457650e29bff2657aef4fc74a59ccf9a.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_customer_1.e8e30e51aa", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_customer", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_customer_1"], "alias": "dbt_expectations_expect_table__457650e29bff2657aef4fc74a59ccf9a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__457650e29bff2657aef4fc74a59ccf9a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__457650e29bff2657aef4fc74a59ccf9a"}, "created_at": 1700082658.7799296, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__457650e29bff2657aef4fc74a59ccf9a\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_customer"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.yml/dbt_expectations_expect_table__457650e29bff2657aef4fc74a59ccf9a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_customer\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_customer", "attached_node": "model.yoda.analytics___sms__user_customer"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_customer_sms_user_id__customer_email.726afcd4b9": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["sms_user_id", "customer_email"], "model": "{{ get_where_subquery(ref('analytics___sms__user_customer')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__user_customer_sms_user_id__customer_email", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_c3325b9d5c0442d2bf306e46112ace35.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_customer_sms_user_id__customer_email.726afcd4b9", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_customer", "dbt_utils_unique_combination_of_columns_analytics___sms__user_customer_sms_user_id__customer_email"], "alias": "dbt_utils_unique_combination_o_c3325b9d5c0442d2bf306e46112ace35", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c3325b9d5c0442d2bf306e46112ace35", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c3325b9d5c0442d2bf306e46112ace35"}, "created_at": 1700082658.7876618, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c3325b9d5c0442d2bf306e46112ace35\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_customer"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.yml/dbt_utils_unique_combination_o_c3325b9d5c0442d2bf306e46112ace35.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n sms_user_id, customer_email\n from dev_dkruh1.analytics___sms__user_customer\n group by sms_user_id, customer_email\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_customer", "attached_node": "model.yoda.analytics___sms__user_customer"}, "test.yoda.not_null_analytics___sms__user_dates_history_sms_user_id.72878c6780": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_dates_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_dates_history_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_dates_history_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_dates_history_sms_user_id.72878c6780", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_dates_history", "not_null_analytics___sms__user_dates_history_sms_user_id"], "alias": "not_null_analytics___sms__user_dates_history_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.8081388, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_dates_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_dates_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.yml/not_null_analytics___sms__user_dates_history_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_dates_history where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_dates_history", "attached_node": "model.yoda.analytics___sms__user_dates_history"}, "test.yoda.not_null_analytics___sms__user_dates_history_category.84074f68fb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "category", "model": "{{ get_where_subquery(ref('analytics___sms__user_dates_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_dates_history_category", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_dates_history_category.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_dates_history_category.84074f68fb", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_dates_history", "not_null_analytics___sms__user_dates_history_category"], "alias": "not_null_analytics___sms__user_dates_history_category", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.8137848, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_dates_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_dates_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.yml/not_null_analytics___sms__user_dates_history_category.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_dates_history where category is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "category", "file_key_name": "models.analytics___sms__user_dates_history", "attached_node": "model.yoda.analytics___sms__user_dates_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_dates_history_1.51a67f0f66": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_dates_history')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_dates_history_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bef51e2c4c3b1d442558639f03e8dd9c.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_dates_history_1.51a67f0f66", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_dates_history", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_dates_history_1"], "alias": "dbt_expectations_expect_table__bef51e2c4c3b1d442558639f03e8dd9c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bef51e2c4c3b1d442558639f03e8dd9c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bef51e2c4c3b1d442558639f03e8dd9c"}, "created_at": 1700082658.819205, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bef51e2c4c3b1d442558639f03e8dd9c\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_dates_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_dates_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.yml/dbt_expectations_expect_table__bef51e2c4c3b1d442558639f03e8dd9c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_dates_history\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_dates_history", "attached_node": "model.yoda.analytics___sms__user_dates_history"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_dates_history_sms_user_id__category.60f0ec5210": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["sms_user_id", "category"], "model": "{{ get_where_subquery(ref('analytics___sms__user_dates_history')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__user_dates_history_sms_user_id__category", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_0c0f92971512c54398dbbc5c1136605f.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_dates_history_sms_user_id__category.60f0ec5210", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_dates_history", "dbt_utils_unique_combination_of_columns_analytics___sms__user_dates_history_sms_user_id__category"], "alias": "dbt_utils_unique_combination_o_0c0f92971512c54398dbbc5c1136605f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_0c0f92971512c54398dbbc5c1136605f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_0c0f92971512c54398dbbc5c1136605f"}, "created_at": 1700082658.8255801, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_0c0f92971512c54398dbbc5c1136605f\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_dates_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_dates_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.yml/dbt_utils_unique_combination_o_0c0f92971512c54398dbbc5c1136605f.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n sms_user_id, category\n from dev_dkruh1.analytics___sms__user_dates_history\n group by sms_user_id, category\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_dates_history", "attached_node": "model.yoda.analytics___sms__user_dates_history"}, "test.yoda.not_null_analytics___sms__user_installation_over_time_sms_user_id.8c0aa751e5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_installation_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_installation_over_time_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_b717f4e16103ca78080b400f88f4f87a.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_installation_over_time_sms_user_id.8c0aa751e5", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_installation_over_time", "not_null_analytics___sms__user_installation_over_time_sms_user_id"], "alias": "not_null_analytics___sms__user_b717f4e16103ca78080b400f88f4f87a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms__user_b717f4e16103ca78080b400f88f4f87a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms__user_b717f4e16103ca78080b400f88f4f87a"}, "created_at": 1700082658.8524008, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms__user_b717f4e16103ca78080b400f88f4f87a\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.yml/not_null_analytics___sms__user_b717f4e16103ca78080b400f88f4f87a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_installation_over_time where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_installation_over_time", "attached_node": "model.yoda.analytics___sms__user_installation_over_time"}, "test.yoda.not_null_analytics___sms__user_installation_over_time_from_time.084809d4ed": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_time", "model": "{{ get_where_subquery(ref('analytics___sms__user_installation_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_installation_over_time_from_time", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_installation_over_time_from_time.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_installation_over_time_from_time.084809d4ed", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_installation_over_time", "not_null_analytics___sms__user_installation_over_time_from_time"], "alias": "not_null_analytics___sms__user_installation_over_time_from_time", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.858279, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.yml/not_null_analytics___sms__user_installation_over_time_from_time.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_installation_over_time where from_time is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_time", "file_key_name": "models.analytics___sms__user_installation_over_time", "attached_node": "model.yoda.analytics___sms__user_installation_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_installation_over_time_1.bd685b143b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_installation_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_installation_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2eb028032cb2951f448cfe3fa352484b.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_installation_over_time_1.bd685b143b", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_installation_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_installation_over_time_1"], "alias": "dbt_expectations_expect_table__2eb028032cb2951f448cfe3fa352484b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2eb028032cb2951f448cfe3fa352484b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2eb028032cb2951f448cfe3fa352484b"}, "created_at": 1700082658.8645077, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2eb028032cb2951f448cfe3fa352484b\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.yml/dbt_expectations_expect_table__2eb028032cb2951f448cfe3fa352484b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_installation_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_installation_over_time", "attached_node": "model.yoda.analytics___sms__user_installation_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_installation_over_time_sms_user_id__from_time.35da2ba29c": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["sms_user_id", "from_time"], "model": "{{ get_where_subquery(ref('analytics___sms__user_installation_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__user_installation_over_time_sms_user_id__from_time", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_e468ea4a0a8914aba7aebffdb4064343.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_installation_over_time_sms_user_id__from_time.35da2ba29c", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_installation_over_time", "dbt_utils_unique_combination_of_columns_analytics___sms__user_installation_over_time_sms_user_id__from_time"], "alias": "dbt_utils_unique_combination_o_e468ea4a0a8914aba7aebffdb4064343", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_e468ea4a0a8914aba7aebffdb4064343", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_e468ea4a0a8914aba7aebffdb4064343"}, "created_at": 1700082658.8708413, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_e468ea4a0a8914aba7aebffdb4064343\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.yml/dbt_utils_unique_combination_o_e468ea4a0a8914aba7aebffdb4064343.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n sms_user_id, from_time\n from dev_dkruh1.analytics___sms__user_installation_over_time\n group by sms_user_id, from_time\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_installation_over_time", "attached_node": "model.yoda.analytics___sms__user_installation_over_time"}, "test.yoda.not_null_analytics___sms__user_metrics_daily_date.3aa35ebeae": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___sms__user_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_metrics_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_metrics_daily_date.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_metrics_daily_date.3aa35ebeae", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_metrics_daily", "not_null_analytics___sms__user_metrics_daily_date"], "alias": "not_null_analytics___sms__user_metrics_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.9224806, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.yml/not_null_analytics___sms__user_metrics_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_metrics_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___sms__user_metrics_daily", "attached_node": "model.yoda.analytics___sms__user_metrics_daily"}, "test.yoda.not_null_analytics___sms__user_metrics_daily_sms_user_id.2cf64f25e9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_metrics_daily_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_metrics_daily_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_metrics_daily_sms_user_id.2cf64f25e9", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_metrics_daily", "not_null_analytics___sms__user_metrics_daily_sms_user_id"], "alias": "not_null_analytics___sms__user_metrics_daily_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.928533, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.yml/not_null_analytics___sms__user_metrics_daily_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_metrics_daily where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_metrics_daily", "attached_node": "model.yoda.analytics___sms__user_metrics_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_metrics_daily_1.c15c39e602": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_metrics_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_metrics_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6c08a0fadd5bbb7c38f02aaf3dcc6fc2.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_metrics_daily_1.c15c39e602", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_metrics_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_metrics_daily_1"], "alias": "dbt_expectations_expect_table__6c08a0fadd5bbb7c38f02aaf3dcc6fc2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6c08a0fadd5bbb7c38f02aaf3dcc6fc2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6c08a0fadd5bbb7c38f02aaf3dcc6fc2"}, "created_at": 1700082658.9346728, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6c08a0fadd5bbb7c38f02aaf3dcc6fc2\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.yml/dbt_expectations_expect_table__6c08a0fadd5bbb7c38f02aaf3dcc6fc2.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_metrics_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_metrics_daily", "attached_node": "model.yoda.analytics___sms__user_metrics_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_metrics_daily_date__sms_user_id.c9e711584a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "sms_user_id"], "model": "{{ get_where_subquery(ref('analytics___sms__user_metrics_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__user_metrics_daily_date__sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_091de2c26cf72a9dd4ef037b0d153919.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_metrics_daily_date__sms_user_id.c9e711584a", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_metrics_daily", "dbt_utils_unique_combination_of_columns_analytics___sms__user_metrics_daily_date__sms_user_id"], "alias": "dbt_utils_unique_combination_o_091de2c26cf72a9dd4ef037b0d153919", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_091de2c26cf72a9dd4ef037b0d153919", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_091de2c26cf72a9dd4ef037b0d153919"}, "created_at": 1700082658.9421983, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_091de2c26cf72a9dd4ef037b0d153919\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.yml/dbt_utils_unique_combination_o_091de2c26cf72a9dd4ef037b0d153919.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, sms_user_id\n from dev_dkruh1.analytics___sms__user_metrics_daily\n group by date, sms_user_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_metrics_daily", "attached_node": "model.yoda.analytics___sms__user_metrics_daily"}, "test.yoda.not_null_analytics___sms__user_open_over_time_sms_user_id.648dc00053": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_open_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_open_over_time_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_open_over_time_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_open_over_time_sms_user_id.648dc00053", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_open_over_time", "not_null_analytics___sms__user_open_over_time_sms_user_id"], "alias": "not_null_analytics___sms__user_open_over_time_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.9829743, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_open_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_open_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.yml/not_null_analytics___sms__user_open_over_time_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_open_over_time where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_open_over_time", "attached_node": "model.yoda.analytics___sms__user_open_over_time"}, "test.yoda.not_null_analytics___sms__user_open_over_time_from_time.c332d22411": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_time", "model": "{{ get_where_subquery(ref('analytics___sms__user_open_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_open_over_time_from_time", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_open_over_time_from_time.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_open_over_time_from_time.c332d22411", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_open_over_time", "not_null_analytics___sms__user_open_over_time_from_time"], "alias": "not_null_analytics___sms__user_open_over_time_from_time", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082658.991421, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_open_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_open_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.yml/not_null_analytics___sms__user_open_over_time_from_time.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_open_over_time where from_time is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_time", "file_key_name": "models.analytics___sms__user_open_over_time", "attached_node": "model.yoda.analytics___sms__user_open_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_open_over_time_1.4d8283ec4f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_open_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_open_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__43ecb8ee0d7b261f89be3f45b1865c4c.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_open_over_time_1.4d8283ec4f", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_open_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_open_over_time_1"], "alias": "dbt_expectations_expect_table__43ecb8ee0d7b261f89be3f45b1865c4c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__43ecb8ee0d7b261f89be3f45b1865c4c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__43ecb8ee0d7b261f89be3f45b1865c4c"}, "created_at": 1700082659.0011597, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__43ecb8ee0d7b261f89be3f45b1865c4c\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_open_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_open_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.yml/dbt_expectations_expect_table__43ecb8ee0d7b261f89be3f45b1865c4c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_open_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_open_over_time", "attached_node": "model.yoda.analytics___sms__user_open_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_open_over_time_sms_user_id__from_time.47a1b16228": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["sms_user_id", "from_time"], "model": "{{ get_where_subquery(ref('analytics___sms__user_open_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__user_open_over_time_sms_user_id__from_time", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_4a275e618b0d35f59981f659c6772ff4.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_open_over_time_sms_user_id__from_time.47a1b16228", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_open_over_time", "dbt_utils_unique_combination_of_columns_analytics___sms__user_open_over_time_sms_user_id__from_time"], "alias": "dbt_utils_unique_combination_o_4a275e618b0d35f59981f659c6772ff4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_4a275e618b0d35f59981f659c6772ff4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_4a275e618b0d35f59981f659c6772ff4"}, "created_at": 1700082659.0086045, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_4a275e618b0d35f59981f659c6772ff4\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_open_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_open_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.yml/dbt_utils_unique_combination_o_4a275e618b0d35f59981f659c6772ff4.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n sms_user_id, from_time\n from dev_dkruh1.analytics___sms__user_open_over_time\n group by sms_user_id, from_time\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_open_over_time", "attached_node": "model.yoda.analytics___sms__user_open_over_time"}, "test.yoda.not_null_analytics___sms__user_plan_daily_date.33a3073dd2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_plan_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_plan_daily_date.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_plan_daily_date.33a3073dd2", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_daily", "not_null_analytics___sms__user_plan_daily_date"], "alias": "not_null_analytics___sms__user_plan_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.0349054, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.yml/not_null_analytics___sms__user_plan_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_plan_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___sms__user_plan_daily", "attached_node": "model.yoda.analytics___sms__user_plan_daily"}, "test.yoda.not_null_analytics___sms__user_plan_daily_sms_user_id.60835627af": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_plan_daily_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_plan_daily_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_plan_daily_sms_user_id.60835627af", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_daily", "not_null_analytics___sms__user_plan_daily_sms_user_id"], "alias": "not_null_analytics___sms__user_plan_daily_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.0404413, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.yml/not_null_analytics___sms__user_plan_daily_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_plan_daily where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_plan_daily", "attached_node": "model.yoda.analytics___sms__user_plan_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_daily_1.7a999ca752": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__32e53f931a969c90aee94d71299bc00e.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_daily_1.7a999ca752", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_daily_1"], "alias": "dbt_expectations_expect_table__32e53f931a969c90aee94d71299bc00e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__32e53f931a969c90aee94d71299bc00e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__32e53f931a969c90aee94d71299bc00e"}, "created_at": 1700082659.0459957, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__32e53f931a969c90aee94d71299bc00e\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.yml/dbt_expectations_expect_table__32e53f931a969c90aee94d71299bc00e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_plan_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_plan_daily", "attached_node": "model.yoda.analytics___sms__user_plan_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_daily_date__sms_user_id.7bb4b1abb3": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "sms_user_id"], "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_daily_date__sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_1ef77cf5c603899bef74d5a891bc1002.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_daily_date__sms_user_id.7bb4b1abb3", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_daily", "dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_daily_date__sms_user_id"], "alias": "dbt_utils_unique_combination_o_1ef77cf5c603899bef74d5a891bc1002", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_1ef77cf5c603899bef74d5a891bc1002", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_1ef77cf5c603899bef74d5a891bc1002"}, "created_at": 1700082659.0523088, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_1ef77cf5c603899bef74d5a891bc1002\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.yml/dbt_utils_unique_combination_o_1ef77cf5c603899bef74d5a891bc1002.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, sms_user_id\n from dev_dkruh1.analytics___sms__user_plan_daily\n group by date, sms_user_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_plan_daily", "attached_node": "model.yoda.analytics___sms__user_plan_daily"}, "test.yoda.not_null_analytics___sms__user_plan_monthly_month.0820d3b1d1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_plan_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_plan_monthly_month.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_plan_monthly_month.0820d3b1d1", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_monthly", "not_null_analytics___sms__user_plan_monthly_month"], "alias": "not_null_analytics___sms__user_plan_monthly_month", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.0775425, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.yml/not_null_analytics___sms__user_plan_monthly_month.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_plan_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___sms__user_plan_monthly", "attached_node": "model.yoda.analytics___sms__user_plan_monthly"}, "test.yoda.not_null_analytics___sms__user_plan_monthly_sms_user_id.3928145ca3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_plan_monthly_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_plan_monthly_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_plan_monthly_sms_user_id.3928145ca3", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_monthly", "not_null_analytics___sms__user_plan_monthly_sms_user_id"], "alias": "not_null_analytics___sms__user_plan_monthly_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.0828605, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.yml/not_null_analytics___sms__user_plan_monthly_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_plan_monthly where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_plan_monthly", "attached_node": "model.yoda.analytics___sms__user_plan_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_monthly_1.c91b897ee1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6586f93201109a3f515272c3da5a2f9e.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_monthly_1.c91b897ee1", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_monthly_1"], "alias": "dbt_expectations_expect_table__6586f93201109a3f515272c3da5a2f9e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6586f93201109a3f515272c3da5a2f9e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6586f93201109a3f515272c3da5a2f9e"}, "created_at": 1700082659.0884287, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6586f93201109a3f515272c3da5a2f9e\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.yml/dbt_expectations_expect_table__6586f93201109a3f515272c3da5a2f9e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_plan_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_plan_monthly", "attached_node": "model.yoda.analytics___sms__user_plan_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_monthly_month__sms_user_id.1b634e671b": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "sms_user_id"], "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_monthly_month__sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_184a0f1863f46d442bc939eb03ddad6b.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_monthly_month__sms_user_id.1b634e671b", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_monthly", "dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_monthly_month__sms_user_id"], "alias": "dbt_utils_unique_combination_o_184a0f1863f46d442bc939eb03ddad6b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_184a0f1863f46d442bc939eb03ddad6b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_184a0f1863f46d442bc939eb03ddad6b"}, "created_at": 1700082659.0947769, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_184a0f1863f46d442bc939eb03ddad6b\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.yml/dbt_utils_unique_combination_o_184a0f1863f46d442bc939eb03ddad6b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, sms_user_id\n from dev_dkruh1.analytics___sms__user_plan_monthly\n group by month, sms_user_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_plan_monthly", "attached_node": "model.yoda.analytics___sms__user_plan_monthly"}, "test.yoda.not_null_analytics___sms__user_plan_over_time_sms_user_id.554ad72120": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_plan_over_time_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_plan_over_time_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_plan_over_time_sms_user_id.554ad72120", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_over_time", "not_null_analytics___sms__user_plan_over_time_sms_user_id"], "alias": "not_null_analytics___sms__user_plan_over_time_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.125019, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.yml/not_null_analytics___sms__user_plan_over_time_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_plan_over_time where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_plan_over_time", "attached_node": "model.yoda.analytics___sms__user_plan_over_time"}, "test.yoda.not_null_analytics___sms__user_plan_over_time_from_time.33a87dfaa7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_time", "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_plan_over_time_from_time", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_plan_over_time_from_time.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_plan_over_time_from_time.33a87dfaa7", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_over_time", "not_null_analytics___sms__user_plan_over_time_from_time"], "alias": "not_null_analytics___sms__user_plan_over_time_from_time", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.1316879, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.yml/not_null_analytics___sms__user_plan_over_time_from_time.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_plan_over_time where from_time is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_time", "file_key_name": "models.analytics___sms__user_plan_over_time", "attached_node": "model.yoda.analytics___sms__user_plan_over_time"}, "test.yoda.not_null_analytics___sms__user_plan_over_time_row_ranking_for_user_and_created_date.2af5c52a25": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "row_ranking_for_user_and_created_date", "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_plan_over_time_row_ranking_for_user_and_created_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_6877506d7db7bb831d40691d889d3812.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_plan_over_time_row_ranking_for_user_and_created_date.2af5c52a25", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_over_time", "not_null_analytics___sms__user_plan_over_time_row_ranking_for_user_and_created_date"], "alias": "not_null_analytics___sms__user_6877506d7db7bb831d40691d889d3812", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms__user_6877506d7db7bb831d40691d889d3812", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms__user_6877506d7db7bb831d40691d889d3812"}, "created_at": 1700082659.137337, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms__user_6877506d7db7bb831d40691d889d3812\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.yml/not_null_analytics___sms__user_6877506d7db7bb831d40691d889d3812.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_plan_over_time where row_ranking_for_user_and_created_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "row_ranking_for_user_and_created_date", "file_key_name": "models.analytics___sms__user_plan_over_time", "attached_node": "model.yoda.analytics___sms__user_plan_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_over_time_1.82ee3e55ec": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__35489d555630c8f334bf2fdd63b28ecb.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_over_time_1.82ee3e55ec", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_over_time_1"], "alias": "dbt_expectations_expect_table__35489d555630c8f334bf2fdd63b28ecb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__35489d555630c8f334bf2fdd63b28ecb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__35489d555630c8f334bf2fdd63b28ecb"}, "created_at": 1700082659.1434567, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__35489d555630c8f334bf2fdd63b28ecb\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.yml/dbt_expectations_expect_table__35489d555630c8f334bf2fdd63b28ecb.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_plan_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_plan_over_time", "attached_node": "model.yoda.analytics___sms__user_plan_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_over_time_sms_user_id__from_time__row_ranking_for_user_and_created_date.0bac7aea56": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["sms_user_id", "from_time", "row_ranking_for_user_and_created_date"], "model": "{{ get_where_subquery(ref('analytics___sms__user_plan_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_over_time_sms_user_id__from_time__row_ranking_for_user_and_created_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_02f4903ae141c8183eb7e877245470dc.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_over_time_sms_user_id__from_time__row_ranking_for_user_and_created_date.0bac7aea56", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_plan_over_time", "dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_over_time_sms_user_id__from_time__row_ranking_for_user_and_created_date"], "alias": "dbt_utils_unique_combination_o_02f4903ae141c8183eb7e877245470dc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_02f4903ae141c8183eb7e877245470dc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_02f4903ae141c8183eb7e877245470dc"}, "created_at": 1700082659.1510646, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_02f4903ae141c8183eb7e877245470dc\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_plan_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_plan_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.yml/dbt_utils_unique_combination_o_02f4903ae141c8183eb7e877245470dc.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n sms_user_id, from_time, row_ranking_for_user_and_created_date\n from dev_dkruh1.analytics___sms__user_plan_over_time\n group by sms_user_id, from_time, row_ranking_for_user_and_created_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_plan_over_time", "attached_node": "model.yoda.analytics___sms__user_plan_over_time"}, "test.yoda.unique_analytics___sms__user_pop_up_status_sms_user_id.731b32c4ae": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_pop_up_status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms__user_pop_up_status_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms__user_pop_up_status_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.yml", "unique_id": "test.yoda.unique_analytics___sms__user_pop_up_status_sms_user_id.731b32c4ae", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_pop_up_status", "unique_analytics___sms__user_pop_up_status_sms_user_id"], "alias": "unique_analytics___sms__user_pop_up_status_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082659.1718678, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_pop_up_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_pop_up_status"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.yml/unique_analytics___sms__user_pop_up_status_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select sms_user_id from dev_dkruh1.analytics___sms__user_pop_up_status where sms_user_id is not null group by sms_user_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_pop_up_status", "attached_node": "model.yoda.analytics___sms__user_pop_up_status"}, "test.yoda.not_null_analytics___sms__user_pop_up_status_sms_user_id.9f7cc77c1e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_pop_up_status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_pop_up_status_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_pop_up_status_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_pop_up_status_sms_user_id.9f7cc77c1e", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_pop_up_status", "not_null_analytics___sms__user_pop_up_status_sms_user_id"], "alias": "not_null_analytics___sms__user_pop_up_status_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.1775513, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_pop_up_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_pop_up_status"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.yml/not_null_analytics___sms__user_pop_up_status_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_pop_up_status where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_pop_up_status", "attached_node": "model.yoda.analytics___sms__user_pop_up_status"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_1.12a6946cb6": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_pop_up_status')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__08e5083c6f9fb976d5a2e008ce165988.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_1.12a6946cb6", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_pop_up_status", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_1"], "alias": "dbt_expectations_expect_table__08e5083c6f9fb976d5a2e008ce165988", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__08e5083c6f9fb976d5a2e008ce165988", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__08e5083c6f9fb976d5a2e008ce165988"}, "created_at": 1700082659.1831708, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__08e5083c6f9fb976d5a2e008ce165988\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_pop_up_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_pop_up_status"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.yml/dbt_expectations_expect_table__08e5083c6f9fb976d5a2e008ce165988.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_pop_up_status\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_pop_up_status", "attached_node": "model.yoda.analytics___sms__user_pop_up_status"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_over_time_1.ddc3058f11": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_pop_up_status_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bdd8d276e4f60d07bdc9ec19caa2d408.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_over_time_1.ddc3058f11", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_pop_up_status_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_over_time_1"], "alias": "dbt_expectations_expect_table__bdd8d276e4f60d07bdc9ec19caa2d408", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bdd8d276e4f60d07bdc9ec19caa2d408", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bdd8d276e4f60d07bdc9ec19caa2d408"}, "created_at": 1700082659.2117517, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bdd8d276e4f60d07bdc9ec19caa2d408\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_pop_up_status_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_pop_up_status_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.yml/dbt_expectations_expect_table__bdd8d276e4f60d07bdc9ec19caa2d408.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_pop_up_status_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_pop_up_status_over_time", "attached_node": "model.yoda.analytics___sms__user_pop_up_status_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_pop_up_status_over_time_sms_user_id__from_date.2dd0ca6d86": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["sms_user_id", "from_date"], "model": "{{ get_where_subquery(ref('analytics___sms__user_pop_up_status_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__user_pop_up_status_over_time_sms_user_id__from_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_a9417a4385e6343c5b685f7941e0de8f.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_pop_up_status_over_time_sms_user_id__from_date.2dd0ca6d86", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_pop_up_status_over_time", "dbt_utils_unique_combination_of_columns_analytics___sms__user_pop_up_status_over_time_sms_user_id__from_date"], "alias": "dbt_utils_unique_combination_o_a9417a4385e6343c5b685f7941e0de8f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a9417a4385e6343c5b685f7941e0de8f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a9417a4385e6343c5b685f7941e0de8f"}, "created_at": 1700082659.2203364, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a9417a4385e6343c5b685f7941e0de8f\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_pop_up_status_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_pop_up_status_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.yml/dbt_utils_unique_combination_o_a9417a4385e6343c5b685f7941e0de8f.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n sms_user_id, from_date\n from dev_dkruh1.analytics___sms__user_pop_up_status_over_time\n group by sms_user_id, from_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_pop_up_status_over_time", "attached_node": "model.yoda.analytics___sms__user_pop_up_status_over_time"}, "test.yoda.not_null_analytics___sms__user_store_dates_history_sms_user_id.7cd1d7d381": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms__user_store_dates_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_store_dates_history_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_store_dates_history_sms_user_id.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_store_dates_history_sms_user_id.7cd1d7d381", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_store_dates_history", "not_null_analytics___sms__user_store_dates_history_sms_user_id"], "alias": "not_null_analytics___sms__user_store_dates_history_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.262395, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_store_dates_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_store_dates_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.yml/not_null_analytics___sms__user_store_dates_history_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_store_dates_history where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms__user_store_dates_history", "attached_node": "model.yoda.analytics___sms__user_store_dates_history"}, "test.yoda.not_null_analytics___sms__user_store_dates_history_app_key.296cd0882f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___sms__user_store_dates_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_store_dates_history_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_store_dates_history_app_key.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_store_dates_history_app_key.296cd0882f", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_store_dates_history", "not_null_analytics___sms__user_store_dates_history_app_key"], "alias": "not_null_analytics___sms__user_store_dates_history_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.2693968, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_store_dates_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_store_dates_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.yml/not_null_analytics___sms__user_store_dates_history_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_store_dates_history where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___sms__user_store_dates_history", "attached_node": "model.yoda.analytics___sms__user_store_dates_history"}, "test.yoda.not_null_analytics___sms__user_store_dates_history_category.bbab7f1a6e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "category", "model": "{{ get_where_subquery(ref('analytics___sms__user_store_dates_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms__user_store_dates_history_category", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms__user_store_dates_history_category.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.yml", "unique_id": "test.yoda.not_null_analytics___sms__user_store_dates_history_category.bbab7f1a6e", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_store_dates_history", "not_null_analytics___sms__user_store_dates_history_category"], "alias": "not_null_analytics___sms__user_store_dates_history_category", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.2751431, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms__user_store_dates_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_store_dates_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.yml/not_null_analytics___sms__user_store_dates_history_category.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms__user_store_dates_history where category is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "category", "file_key_name": "models.analytics___sms__user_store_dates_history", "attached_node": "model.yoda.analytics___sms__user_store_dates_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_store_dates_history_1.ceb253056b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms__user_store_dates_history')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_store_dates_history_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__087fbf8214ad630e57ac6269ea1718a4.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_store_dates_history_1.ceb253056b", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_store_dates_history", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_store_dates_history_1"], "alias": "dbt_expectations_expect_table__087fbf8214ad630e57ac6269ea1718a4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__087fbf8214ad630e57ac6269ea1718a4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__087fbf8214ad630e57ac6269ea1718a4"}, "created_at": 1700082659.2804844, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__087fbf8214ad630e57ac6269ea1718a4\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_store_dates_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_store_dates_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.yml/dbt_expectations_expect_table__087fbf8214ad630e57ac6269ea1718a4.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms__user_store_dates_history\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_store_dates_history", "attached_node": "model.yoda.analytics___sms__user_store_dates_history"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_store_dates_history_sms_user_id__app_key__category.494d86c84a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["sms_user_id", "app_key", "category"], "model": "{{ get_where_subquery(ref('analytics___sms__user_store_dates_history')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms__user_store_dates_history_sms_user_id__app_key__category", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_5618938fdacc37a666032260d2ce8ddf.sql", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_store_dates_history_sms_user_id__app_key__category.494d86c84a", "fqn": ["yoda", "analytics", "sms", "marts", "analytics___sms__user_store_dates_history", "dbt_utils_unique_combination_of_columns_analytics___sms__user_store_dates_history_sms_user_id__app_key__category"], "alias": "dbt_utils_unique_combination_o_5618938fdacc37a666032260d2ce8ddf", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_5618938fdacc37a666032260d2ce8ddf", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_5618938fdacc37a666032260d2ce8ddf"}, "created_at": 1700082659.2886822, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_5618938fdacc37a666032260d2ce8ddf\") }}", "language": "sql", "refs": [{"name": "analytics___sms__user_store_dates_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms__user_store_dates_history"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.yml/dbt_utils_unique_combination_o_5618938fdacc37a666032260d2ce8ddf.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n sms_user_id, app_key, category\n from dev_dkruh1.analytics___sms__user_store_dates_history\n group by sms_user_id, app_key, category\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms__user_store_dates_history", "attached_node": "model.yoda.analytics___sms__user_store_dates_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__fact_agg_sms_user_profile_daily_1.b874e00d75": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__fact_agg_sms_user_profile_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__fact_agg_sms_user_profile_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0ec7945d2be058ac761fc73723b9ff4a.sql", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__fact_agg_sms_user_profile_daily_1.b874e00d75", "fqn": ["yoda", "analytics", "sms", "staging", "base", "analytics___sms_stg__fact_agg_sms_user_profile_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__fact_agg_sms_user_profile_daily_1"], "alias": "dbt_expectations_expect_table__0ec7945d2be058ac761fc73723b9ff4a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0ec7945d2be058ac761fc73723b9ff4a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0ec7945d2be058ac761fc73723b9ff4a"}, "created_at": 1700082659.319211, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0ec7945d2be058ac761fc73723b9ff4a\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.yml/dbt_expectations_expect_table__0ec7945d2be058ac761fc73723b9ff4a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__fact_agg_sms_user_profile_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__fact_agg_sms_user_profile_daily", "attached_node": "model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__fact_agg_sms_user_profile_daily_date__user_id.9411d9994c": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "user_id"], "model": "{{ get_where_subquery(ref('analytics___sms_stg__fact_agg_sms_user_profile_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms_stg__fact_agg_sms_user_profile_daily_date__user_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_d6d23f0c8ecd31136d9afef8854d6778.sql", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__fact_agg_sms_user_profile_daily_date__user_id.9411d9994c", "fqn": ["yoda", "analytics", "sms", "staging", "base", "analytics___sms_stg__fact_agg_sms_user_profile_daily", "dbt_utils_unique_combination_of_columns_analytics___sms_stg__fact_agg_sms_user_profile_daily_date__user_id"], "alias": "dbt_utils_unique_combination_o_d6d23f0c8ecd31136d9afef8854d6778", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_d6d23f0c8ecd31136d9afef8854d6778", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_d6d23f0c8ecd31136d9afef8854d6778"}, "created_at": 1700082659.3256793, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_d6d23f0c8ecd31136d9afef8854d6778\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.yml/dbt_utils_unique_combination_o_d6d23f0c8ecd31136d9afef8854d6778.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, user_id\n from dev_dkruh1.analytics___sms_stg__fact_agg_sms_user_profile_daily\n group by date, user_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__fact_agg_sms_user_profile_daily", "attached_node": "model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_high_touch_bonus_1.cc9e696845": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__free_credit_high_touch_bonus')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_high_touch_bonus_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__94b2234fab57f619909539b977622b29.sql", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_high_touch_bonus_1.cc9e696845", "fqn": ["yoda", "analytics", "sms", "staging", "base", "analytics___sms_stg__free_credit_high_touch_bonus", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_high_touch_bonus_1"], "alias": "dbt_expectations_expect_table__94b2234fab57f619909539b977622b29", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__94b2234fab57f619909539b977622b29", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__94b2234fab57f619909539b977622b29"}, "created_at": 1700082659.3478622, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__94b2234fab57f619909539b977622b29\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__free_credit_high_touch_bonus", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__free_credit_high_touch_bonus"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.yml/dbt_expectations_expect_table__94b2234fab57f619909539b977622b29.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__free_credit_high_touch_bonus\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__free_credit_high_touch_bonus", "attached_node": "model.yoda.analytics___sms_stg__free_credit_high_touch_bonus"}, "test.yoda.unique_analytics___sms_stg__analytics_data_analytics_data_id.ea375a255c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "analytics_data_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__analytics_data')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__analytics_data_analytics_data_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__analytics_data_analytics_data_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__analytics_data_analytics_data_id.ea375a255c", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__analytics_data", "unique_analytics___sms_stg__analytics_data_analytics_data_id"], "alias": "unique_analytics___sms_stg__analytics_data_analytics_data_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082659.3765852, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__analytics_data", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__analytics_data"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.yml/unique_analytics___sms_stg__analytics_data_analytics_data_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select analytics_data_id from dev_dkruh1.analytics___sms_stg__analytics_data where analytics_data_id is not null group by analytics_data_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "analytics_data_id", "file_key_name": "models.analytics___sms_stg__analytics_data", "attached_node": "model.yoda.analytics___sms_stg__analytics_data"}, "test.yoda.not_null_analytics___sms_stg__analytics_data_analytics_data_id.9608a2af02": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "analytics_data_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__analytics_data')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__analytics_data_analytics_data_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__analytics_data_analytics_data_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__analytics_data_analytics_data_id.9608a2af02", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__analytics_data", "not_null_analytics___sms_stg__analytics_data_analytics_data_id"], "alias": "not_null_analytics___sms_stg__analytics_data_analytics_data_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.3822227, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__analytics_data", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__analytics_data"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.yml/not_null_analytics___sms_stg__analytics_data_analytics_data_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__analytics_data where analytics_data_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "analytics_data_id", "file_key_name": "models.analytics___sms_stg__analytics_data", "attached_node": "model.yoda.analytics___sms_stg__analytics_data"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__analytics_data_1.6bf1de2585": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__analytics_data')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__analytics_data_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__cbf19dc01d6736219c8f2227c2b64864.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__analytics_data_1.6bf1de2585", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__analytics_data", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__analytics_data_1"], "alias": "dbt_expectations_expect_table__cbf19dc01d6736219c8f2227c2b64864", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__cbf19dc01d6736219c8f2227c2b64864", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__cbf19dc01d6736219c8f2227c2b64864"}, "created_at": 1700082659.3877435, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__cbf19dc01d6736219c8f2227c2b64864\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__analytics_data", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__analytics_data"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.yml/dbt_expectations_expect_table__cbf19dc01d6736219c8f2227c2b64864.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__analytics_data\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__analytics_data", "attached_node": "model.yoda.analytics___sms_stg__analytics_data"}, "test.yoda.unique_analytics___sms_stg__api_calls_api_call_id.a63d25bdda": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "api_call_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__api_calls')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__api_calls_api_call_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__api_calls_api_call_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__api_calls_api_call_id.a63d25bdda", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__api_calls", "unique_analytics___sms_stg__api_calls_api_call_id"], "alias": "unique_analytics___sms_stg__api_calls_api_call_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082659.4271455, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__api_calls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__api_calls"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.yml/unique_analytics___sms_stg__api_calls_api_call_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select api_call_id from dev_dkruh1.analytics___sms_stg__api_calls where api_call_id is not null group by api_call_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "api_call_id", "file_key_name": "models.analytics___sms_stg__api_calls", "attached_node": "model.yoda.analytics___sms_stg__api_calls"}, "test.yoda.not_null_analytics___sms_stg__api_calls_api_call_id.568129cb2a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "api_call_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__api_calls')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__api_calls_api_call_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__api_calls_api_call_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__api_calls_api_call_id.568129cb2a", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__api_calls", "not_null_analytics___sms_stg__api_calls_api_call_id"], "alias": "not_null_analytics___sms_stg__api_calls_api_call_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.4329255, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__api_calls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__api_calls"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.yml/not_null_analytics___sms_stg__api_calls_api_call_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__api_calls where api_call_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "api_call_id", "file_key_name": "models.analytics___sms_stg__api_calls", "attached_node": "model.yoda.analytics___sms_stg__api_calls"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__api_calls_1.0e35106141": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__api_calls')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__api_calls_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5f24592a1a6c9d0be59cdf7522befd08.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__api_calls_1.0e35106141", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__api_calls", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__api_calls_1"], "alias": "dbt_expectations_expect_table__5f24592a1a6c9d0be59cdf7522befd08", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5f24592a1a6c9d0be59cdf7522befd08", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5f24592a1a6c9d0be59cdf7522befd08"}, "created_at": 1700082659.4387107, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5f24592a1a6c9d0be59cdf7522befd08\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__api_calls", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__api_calls"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.yml/dbt_expectations_expect_table__5f24592a1a6c9d0be59cdf7522befd08.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__api_calls\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__api_calls", "attached_node": "model.yoda.analytics___sms_stg__api_calls"}, "test.yoda.unique_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id.083d181b08": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "bigcommerce_user_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__bigcommerce_user')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__bi_2652e08fa1cb2a44c4d5c65d86b57127.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id.083d181b08", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__bigcommerce_user", "unique_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id"], "alias": "unique_analytics___sms_stg__bi_2652e08fa1cb2a44c4d5c65d86b57127", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___sms_stg__bi_2652e08fa1cb2a44c4d5c65d86b57127", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___sms_stg__bi_2652e08fa1cb2a44c4d5c65d86b57127"}, "created_at": 1700082659.4704072, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___sms_stg__bi_2652e08fa1cb2a44c4d5c65d86b57127\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__bigcommerce_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__bigcommerce_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.yml/unique_analytics___sms_stg__bi_2652e08fa1cb2a44c4d5c65d86b57127.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select bigcommerce_user_id from dev_dkruh1.analytics___sms_stg__bigcommerce_user where bigcommerce_user_id is not null group by bigcommerce_user_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "bigcommerce_user_id", "file_key_name": "models.analytics___sms_stg__bigcommerce_user", "attached_node": "model.yoda.analytics___sms_stg__bigcommerce_user"}, "test.yoda.not_null_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id.52ff23780e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "bigcommerce_user_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__bigcommerce_user')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___39e86edb883b6b8bb99cf850c13957d6.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id.52ff23780e", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__bigcommerce_user", "not_null_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id"], "alias": "not_null_analytics___sms_stg___39e86edb883b6b8bb99cf850c13957d6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___39e86edb883b6b8bb99cf850c13957d6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___39e86edb883b6b8bb99cf850c13957d6"}, "created_at": 1700082659.4765327, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___39e86edb883b6b8bb99cf850c13957d6\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__bigcommerce_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__bigcommerce_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.yml/not_null_analytics___sms_stg___39e86edb883b6b8bb99cf850c13957d6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__bigcommerce_user where bigcommerce_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "bigcommerce_user_id", "file_key_name": "models.analytics___sms_stg__bigcommerce_user", "attached_node": "model.yoda.analytics___sms_stg__bigcommerce_user"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__bigcommerce_user_1.2f8a1193cf": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__bigcommerce_user')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__bigcommerce_user_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ae0b3555b12cf2cadbd2321f1223b3a0.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__bigcommerce_user_1.2f8a1193cf", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__bigcommerce_user", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__bigcommerce_user_1"], "alias": "dbt_expectations_expect_table__ae0b3555b12cf2cadbd2321f1223b3a0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ae0b3555b12cf2cadbd2321f1223b3a0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ae0b3555b12cf2cadbd2321f1223b3a0"}, "created_at": 1700082659.4829972, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ae0b3555b12cf2cadbd2321f1223b3a0\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__bigcommerce_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__bigcommerce_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.yml/dbt_expectations_expect_table__ae0b3555b12cf2cadbd2321f1223b3a0.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__bigcommerce_user\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__bigcommerce_user", "attached_node": "model.yoda.analytics___sms_stg__bigcommerce_user"}, "test.yoda.unique_analytics___sms_stg__campaign_campaign_id.8cc2699c93": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__campaign_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__campaign_campaign_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__campaign_campaign_id.8cc2699c93", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign", "unique_analytics___sms_stg__campaign_campaign_id"], "alias": "unique_analytics___sms_stg__campaign_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082659.5113866, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.yml/unique_analytics___sms_stg__campaign_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select campaign_id from dev_dkruh1.analytics___sms_stg__campaign where campaign_id is not null group by campaign_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.analytics___sms_stg__campaign", "attached_node": "model.yoda.analytics___sms_stg__campaign"}, "test.yoda.not_null_analytics___sms_stg__campaign_campaign_id.2e4875af1d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__campaign_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__campaign_campaign_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__campaign_campaign_id.2e4875af1d", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign", "not_null_analytics___sms_stg__campaign_campaign_id"], "alias": "not_null_analytics___sms_stg__campaign_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.517191, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.yml/not_null_analytics___sms_stg__campaign_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__campaign where campaign_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.analytics___sms_stg__campaign", "attached_node": "model.yoda.analytics___sms_stg__campaign"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_1.6e36c0b8c5": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__9f0ae8d66648bcbd5526715302f97aae.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_1.6e36c0b8c5", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_1"], "alias": "dbt_expectations_expect_table__9f0ae8d66648bcbd5526715302f97aae", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__9f0ae8d66648bcbd5526715302f97aae", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__9f0ae8d66648bcbd5526715302f97aae"}, "created_at": 1700082659.52295, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__9f0ae8d66648bcbd5526715302f97aae\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.yml/dbt_expectations_expect_table__9f0ae8d66648bcbd5526715302f97aae.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__campaign\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__campaign", "attached_node": "model.yoda.analytics___sms_stg__campaign"}, "test.yoda.not_null_analytics___sms_stg__campaign_deletion_tracking_campaign_id.ad36d4faf6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign_deletion_tracking')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__campaign_deletion_tracking_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___e5353477905a26407984bb64e594d2cf.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__campaign_deletion_tracking_campaign_id.ad36d4faf6", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_deletion_tracking", "not_null_analytics___sms_stg__campaign_deletion_tracking_campaign_id"], "alias": "not_null_analytics___sms_stg___e5353477905a26407984bb64e594d2cf", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___e5353477905a26407984bb64e594d2cf", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___e5353477905a26407984bb64e594d2cf"}, "created_at": 1700082659.5529947, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___e5353477905a26407984bb64e594d2cf\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.yml/not_null_analytics___sms_stg___e5353477905a26407984bb64e594d2cf.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__campaign_deletion_tracking where campaign_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.analytics___sms_stg__campaign_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__campaign_deletion_tracking"}, "test.yoda.not_null_analytics___sms_stg__campaign_deletion_tracking_is_logical_deleted.8c745647d1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_logical_deleted", "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign_deletion_tracking')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__campaign_deletion_tracking_is_logical_deleted", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___f4261ddc6df92253301b142ddbabe743.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__campaign_deletion_tracking_is_logical_deleted.8c745647d1", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_deletion_tracking", "not_null_analytics___sms_stg__campaign_deletion_tracking_is_logical_deleted"], "alias": "not_null_analytics___sms_stg___f4261ddc6df92253301b142ddbabe743", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___f4261ddc6df92253301b142ddbabe743", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___f4261ddc6df92253301b142ddbabe743"}, "created_at": 1700082659.5590055, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___f4261ddc6df92253301b142ddbabe743\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.yml/not_null_analytics___sms_stg___f4261ddc6df92253301b142ddbabe743.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__campaign_deletion_tracking where is_logical_deleted is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_logical_deleted", "file_key_name": "models.analytics___sms_stg__campaign_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__campaign_deletion_tracking"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_deletion_tracking_1.92e95b6a0c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign_deletion_tracking')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_deletion_tracking_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a8a1368edcaa8e3f2d0ba780ad2b31f9.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_deletion_tracking_1.92e95b6a0c", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_deletion_tracking", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_deletion_tracking_1"], "alias": "dbt_expectations_expect_table__a8a1368edcaa8e3f2d0ba780ad2b31f9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a8a1368edcaa8e3f2d0ba780ad2b31f9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a8a1368edcaa8e3f2d0ba780ad2b31f9"}, "created_at": 1700082659.5646534, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a8a1368edcaa8e3f2d0ba780ad2b31f9\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.yml/dbt_expectations_expect_table__a8a1368edcaa8e3f2d0ba780ad2b31f9.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__campaign_deletion_tracking\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__campaign_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__campaign_deletion_tracking"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__campaign_deletion_tracking_campaign_id__is_logical_deleted.830a953547": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["campaign_id", "is_logical_deleted"], "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign_deletion_tracking')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms_stg__campaign_deletion_tracking_campaign_id__is_logical_deleted", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_266ce516fbd217668e16586ec1f5f564.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__campaign_deletion_tracking_campaign_id__is_logical_deleted.830a953547", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_deletion_tracking", "dbt_utils_unique_combination_of_columns_analytics___sms_stg__campaign_deletion_tracking_campaign_id__is_logical_deleted"], "alias": "dbt_utils_unique_combination_o_266ce516fbd217668e16586ec1f5f564", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_266ce516fbd217668e16586ec1f5f564", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_266ce516fbd217668e16586ec1f5f564"}, "created_at": 1700082659.5709107, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_266ce516fbd217668e16586ec1f5f564\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.yml/dbt_utils_unique_combination_o_266ce516fbd217668e16586ec1f5f564.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n campaign_id, is_logical_deleted\n from dev_dkruh1.analytics___sms_stg__campaign_deletion_tracking\n group by campaign_id, is_logical_deleted\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__campaign_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__campaign_deletion_tracking"}, "test.yoda.unique_analytics___sms_stg__campaign_list_campaign_list_id.f65a441bf5": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "campaign_list_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign_list')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__campaign_list_campaign_list_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__campaign_list_campaign_list_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__campaign_list_campaign_list_id.f65a441bf5", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_list", "unique_analytics___sms_stg__campaign_list_campaign_list_id"], "alias": "unique_analytics___sms_stg__campaign_list_campaign_list_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082659.5925362, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign_list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign_list"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.yml/unique_analytics___sms_stg__campaign_list_campaign_list_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select campaign_list_id from dev_dkruh1.analytics___sms_stg__campaign_list where campaign_list_id is not null group by campaign_list_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_list_id", "file_key_name": "models.analytics___sms_stg__campaign_list", "attached_node": "model.yoda.analytics___sms_stg__campaign_list"}, "test.yoda.not_null_analytics___sms_stg__campaign_list_campaign_list_id.0889d20f03": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_list_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign_list')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__campaign_list_campaign_list_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__campaign_list_campaign_list_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__campaign_list_campaign_list_id.0889d20f03", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_list", "not_null_analytics___sms_stg__campaign_list_campaign_list_id"], "alias": "not_null_analytics___sms_stg__campaign_list_campaign_list_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.5994112, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign_list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign_list"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.yml/not_null_analytics___sms_stg__campaign_list_campaign_list_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__campaign_list where campaign_list_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_list_id", "file_key_name": "models.analytics___sms_stg__campaign_list", "attached_node": "model.yoda.analytics___sms_stg__campaign_list"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_list_1.53789ded76": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign_list')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_list_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7d4c09668d5dea817b35915fb81dc496.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_list_1.53789ded76", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_list", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_list_1"], "alias": "dbt_expectations_expect_table__7d4c09668d5dea817b35915fb81dc496", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7d4c09668d5dea817b35915fb81dc496", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7d4c09668d5dea817b35915fb81dc496"}, "created_at": 1700082659.6052325, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7d4c09668d5dea817b35915fb81dc496\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign_list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign_list"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.yml/dbt_expectations_expect_table__7d4c09668d5dea817b35915fb81dc496.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__campaign_list\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__campaign_list", "attached_node": "model.yoda.analytics___sms_stg__campaign_list"}, "test.yoda.unique_analytics___sms_stg__campaign_relation_campaign_relation_id.e0081a0a4f": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "campaign_relation_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign_relation')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__campaign_relation_campaign_relation_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__ca_c7955675db97f0b5c6106b70715aac07.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__campaign_relation_campaign_relation_id.e0081a0a4f", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_relation", "unique_analytics___sms_stg__campaign_relation_campaign_relation_id"], "alias": "unique_analytics___sms_stg__ca_c7955675db97f0b5c6106b70715aac07", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___sms_stg__ca_c7955675db97f0b5c6106b70715aac07", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___sms_stg__ca_c7955675db97f0b5c6106b70715aac07"}, "created_at": 1700082659.628315, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___sms_stg__ca_c7955675db97f0b5c6106b70715aac07\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign_relation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign_relation"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.yml/unique_analytics___sms_stg__ca_c7955675db97f0b5c6106b70715aac07.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select campaign_relation_id from dev_dkruh1.analytics___sms_stg__campaign_relation where campaign_relation_id is not null group by campaign_relation_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_relation_id", "file_key_name": "models.analytics___sms_stg__campaign_relation", "attached_node": "model.yoda.analytics___sms_stg__campaign_relation"}, "test.yoda.not_null_analytics___sms_stg__campaign_relation_campaign_relation_id.01984fc04d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_relation_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign_relation')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__campaign_relation_campaign_relation_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___2ecb4c52ce5adfd55b946feb925d5948.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__campaign_relation_campaign_relation_id.01984fc04d", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_relation", "not_null_analytics___sms_stg__campaign_relation_campaign_relation_id"], "alias": "not_null_analytics___sms_stg___2ecb4c52ce5adfd55b946feb925d5948", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___2ecb4c52ce5adfd55b946feb925d5948", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___2ecb4c52ce5adfd55b946feb925d5948"}, "created_at": 1700082659.6341584, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___2ecb4c52ce5adfd55b946feb925d5948\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign_relation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign_relation"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.yml/not_null_analytics___sms_stg___2ecb4c52ce5adfd55b946feb925d5948.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__campaign_relation where campaign_relation_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_relation_id", "file_key_name": "models.analytics___sms_stg__campaign_relation", "attached_node": "model.yoda.analytics___sms_stg__campaign_relation"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_relation_1.0709383063": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__campaign_relation')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_relation_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__880f2ae5c1cfaa1f69cd1263f628b552.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_relation_1.0709383063", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__campaign_relation", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_relation_1"], "alias": "dbt_expectations_expect_table__880f2ae5c1cfaa1f69cd1263f628b552", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__880f2ae5c1cfaa1f69cd1263f628b552", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__880f2ae5c1cfaa1f69cd1263f628b552"}, "created_at": 1700082659.6400065, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__880f2ae5c1cfaa1f69cd1263f628b552\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__campaign_relation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__campaign_relation"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.yml/dbt_expectations_expect_table__880f2ae5c1cfaa1f69cd1263f628b552.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__campaign_relation\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__campaign_relation", "attached_node": "model.yoda.analytics___sms_stg__campaign_relation"}, "test.yoda.unique_analytics___sms_stg__default_predefined_message_template_id.2870f5f492": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "template_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__default_predefined_message')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__default_predefined_message_template_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__de_8ec691544785655c1aa2787f811fc38a.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__default_predefined_message_template_id.2870f5f492", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__default_predefined_message", "unique_analytics___sms_stg__default_predefined_message_template_id"], "alias": "unique_analytics___sms_stg__de_8ec691544785655c1aa2787f811fc38a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___sms_stg__de_8ec691544785655c1aa2787f811fc38a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___sms_stg__de_8ec691544785655c1aa2787f811fc38a"}, "created_at": 1700082659.665849, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___sms_stg__de_8ec691544785655c1aa2787f811fc38a\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__default_predefined_message", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__default_predefined_message"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.yml/unique_analytics___sms_stg__de_8ec691544785655c1aa2787f811fc38a.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select template_id from dev_dkruh1.analytics___sms_stg__default_predefined_message where template_id is not null group by template_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "template_id", "file_key_name": "models.analytics___sms_stg__default_predefined_message", "attached_node": "model.yoda.analytics___sms_stg__default_predefined_message"}, "test.yoda.not_null_analytics___sms_stg__default_predefined_message_template_id.2e1f7c861f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "template_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__default_predefined_message')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__default_predefined_message_template_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___9b3764e9de137254123d197f12c3fa85.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__default_predefined_message_template_id.2e1f7c861f", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__default_predefined_message", "not_null_analytics___sms_stg__default_predefined_message_template_id"], "alias": "not_null_analytics___sms_stg___9b3764e9de137254123d197f12c3fa85", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___9b3764e9de137254123d197f12c3fa85", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___9b3764e9de137254123d197f12c3fa85"}, "created_at": 1700082659.6725025, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___9b3764e9de137254123d197f12c3fa85\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__default_predefined_message", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__default_predefined_message"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.yml/not_null_analytics___sms_stg___9b3764e9de137254123d197f12c3fa85.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__default_predefined_message where template_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "template_id", "file_key_name": "models.analytics___sms_stg__default_predefined_message", "attached_node": "model.yoda.analytics___sms_stg__default_predefined_message"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__default_predefined_message_1.2179eda3ee": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__default_predefined_message')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__default_predefined_message_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5142de4fa6d637af9995421a71f80861.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__default_predefined_message_1.2179eda3ee", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__default_predefined_message", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__default_predefined_message_1"], "alias": "dbt_expectations_expect_table__5142de4fa6d637af9995421a71f80861", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5142de4fa6d637af9995421a71f80861", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5142de4fa6d637af9995421a71f80861"}, "created_at": 1700082659.6787102, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5142de4fa6d637af9995421a71f80861\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__default_predefined_message", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__default_predefined_message"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.yml/dbt_expectations_expect_table__5142de4fa6d637af9995421a71f80861.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__default_predefined_message\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__default_predefined_message", "attached_node": "model.yoda.analytics___sms_stg__default_predefined_message"}, "test.yoda.not_null_analytics___sms_stg__email_charge_email_charge_id.314c08ee94": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "email_charge_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__email_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__email_charge_email_charge_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__email_charge_email_charge_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__email_charge_email_charge_id.314c08ee94", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__email_charge", "not_null_analytics___sms_stg__email_charge_email_charge_id"], "alias": "not_null_analytics___sms_stg__email_charge_email_charge_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.7018795, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__email_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__email_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.yml/not_null_analytics___sms_stg__email_charge_email_charge_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__email_charge where email_charge_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email_charge_id", "file_key_name": "models.analytics___sms_stg__email_charge", "attached_node": "model.yoda.analytics___sms_stg__email_charge"}, "test.yoda.unique_analytics___sms_stg__email_charge_email_charge_id.88a79f413b": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "email_charge_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__email_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__email_charge_email_charge_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__email_charge_email_charge_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__email_charge_email_charge_id.88a79f413b", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__email_charge", "unique_analytics___sms_stg__email_charge_email_charge_id"], "alias": "unique_analytics___sms_stg__email_charge_email_charge_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082659.707495, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__email_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__email_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.yml/unique_analytics___sms_stg__email_charge_email_charge_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select email_charge_id from dev_dkruh1.analytics___sms_stg__email_charge where email_charge_id is not null group by email_charge_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email_charge_id", "file_key_name": "models.analytics___sms_stg__email_charge", "attached_node": "model.yoda.analytics___sms_stg__email_charge"}, "test.yoda.not_null_analytics___sms_stg__email_charge_currency.4ecbbe716b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "currency", "model": "{{ get_where_subquery(ref('analytics___sms_stg__email_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__email_charge_currency", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__email_charge_currency.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__email_charge_currency.4ecbbe716b", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__email_charge", "not_null_analytics___sms_stg__email_charge_currency"], "alias": "not_null_analytics___sms_stg__email_charge_currency", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.7131777, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__email_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__email_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.yml/not_null_analytics___sms_stg__email_charge_currency.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__email_charge where currency is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "currency", "file_key_name": "models.analytics___sms_stg__email_charge", "attached_node": "model.yoda.analytics___sms_stg__email_charge"}, "test.yoda.accepted_values_analytics___sms_stg__email_charge_currency__USD.3088c35bba": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["USD"], "column_name": "currency", "model": "{{ get_where_subquery(ref('analytics___sms_stg__email_charge')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___sms_stg__email_charge_currency__USD", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___sms_stg__email_charge_currency__USD.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.yml", "unique_id": "test.yoda.accepted_values_analytics___sms_stg__email_charge_currency__USD.3088c35bba", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__email_charge", "accepted_values_analytics___sms_stg__email_charge_currency__USD"], "alias": "accepted_values_analytics___sms_stg__email_charge_currency__USD", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.7188778, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__email_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__email_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.yml/accepted_values_analytics___sms_stg__email_charge_currency__USD.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n currency as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___sms_stg__email_charge\n group by currency\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'USD'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "currency", "file_key_name": "models.analytics___sms_stg__email_charge", "attached_node": "model.yoda.analytics___sms_stg__email_charge"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__email_charge_1.31aee7432b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__email_charge')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__email_charge_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6a25f655ab5716ba27ee27bc6ec8dfde.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__email_charge_1.31aee7432b", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__email_charge", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__email_charge_1"], "alias": "dbt_expectations_expect_table__6a25f655ab5716ba27ee27bc6ec8dfde", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6a25f655ab5716ba27ee27bc6ec8dfde", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6a25f655ab5716ba27ee27bc6ec8dfde"}, "created_at": 1700082659.724604, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6a25f655ab5716ba27ee27bc6ec8dfde\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__email_charge", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__email_charge"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.yml/dbt_expectations_expect_table__6a25f655ab5716ba27ee27bc6ec8dfde.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__email_charge\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__email_charge", "attached_node": "model.yoda.analytics___sms_stg__email_charge"}, "test.yoda.unique_analytics___sms_stg__event_event_id.b1ae672149": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__event_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__event_event_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__event_event_id.b1ae672149", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__event", "unique_analytics___sms_stg__event_event_id"], "alias": "unique_analytics___sms_stg__event_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082659.7522082, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__event"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.yml/unique_analytics___sms_stg__event_event_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___sms_stg__event where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___sms_stg__event", "attached_node": "model.yoda.analytics___sms_stg__event"}, "test.yoda.not_null_analytics___sms_stg__event_event_id.7c70674ed4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__event_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__event_event_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__event_event_id.7c70674ed4", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__event", "not_null_analytics___sms_stg__event_event_id"], "alias": "not_null_analytics___sms_stg__event_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.7579987, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__event"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.yml/not_null_analytics___sms_stg__event_event_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__event where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___sms_stg__event", "attached_node": "model.yoda.analytics___sms_stg__event"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_1.1481ad6982": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__event')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__cc1d05c04e8c9741216dfe1f59a33827.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_1.1481ad6982", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__event", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_1"], "alias": "dbt_expectations_expect_table__cc1d05c04e8c9741216dfe1f59a33827", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__cc1d05c04e8c9741216dfe1f59a33827", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__cc1d05c04e8c9741216dfe1f59a33827"}, "created_at": 1700082659.763708, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__cc1d05c04e8c9741216dfe1f59a33827\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__event"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.yml/dbt_expectations_expect_table__cc1d05c04e8c9741216dfe1f59a33827.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__event\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__event", "attached_node": "model.yoda.analytics___sms_stg__event"}, "test.yoda.not_null_analytics___sms_stg__event_deletion_tracking_event_id.aad13cd2d0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__event_deletion_tracking')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__event_deletion_tracking_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__event_deletion_tracking_event_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__event_deletion_tracking_event_id.aad13cd2d0", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__event_deletion_tracking", "not_null_analytics___sms_stg__event_deletion_tracking_event_id"], "alias": "not_null_analytics___sms_stg__event_deletion_tracking_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.7909708, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__event_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__event_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.yml/not_null_analytics___sms_stg__event_deletion_tracking_event_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__event_deletion_tracking where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___sms_stg__event_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__event_deletion_tracking"}, "test.yoda.not_null_analytics___sms_stg__event_deletion_tracking_is_logical_deleted.4bc68e5556": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_logical_deleted", "model": "{{ get_where_subquery(ref('analytics___sms_stg__event_deletion_tracking')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__event_deletion_tracking_is_logical_deleted", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___4d78a2e71bdf052b4ce067d82bfdc8bb.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__event_deletion_tracking_is_logical_deleted.4bc68e5556", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__event_deletion_tracking", "not_null_analytics___sms_stg__event_deletion_tracking_is_logical_deleted"], "alias": "not_null_analytics___sms_stg___4d78a2e71bdf052b4ce067d82bfdc8bb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___4d78a2e71bdf052b4ce067d82bfdc8bb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___4d78a2e71bdf052b4ce067d82bfdc8bb"}, "created_at": 1700082659.796628, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___4d78a2e71bdf052b4ce067d82bfdc8bb\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__event_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__event_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.yml/not_null_analytics___sms_stg___4d78a2e71bdf052b4ce067d82bfdc8bb.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__event_deletion_tracking where is_logical_deleted is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_logical_deleted", "file_key_name": "models.analytics___sms_stg__event_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__event_deletion_tracking"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_deletion_tracking_1.3fdf147bb9": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__event_deletion_tracking')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_deletion_tracking_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a88750a986c1668f594ad5dae19cb7e9.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_deletion_tracking_1.3fdf147bb9", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__event_deletion_tracking", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_deletion_tracking_1"], "alias": "dbt_expectations_expect_table__a88750a986c1668f594ad5dae19cb7e9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a88750a986c1668f594ad5dae19cb7e9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a88750a986c1668f594ad5dae19cb7e9"}, "created_at": 1700082659.8026366, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a88750a986c1668f594ad5dae19cb7e9\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__event_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__event_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.yml/dbt_expectations_expect_table__a88750a986c1668f594ad5dae19cb7e9.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__event_deletion_tracking\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__event_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__event_deletion_tracking"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__event_deletion_tracking_event_id__is_logical_deleted.3215c296e6": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["event_id", "is_logical_deleted"], "model": "{{ get_where_subquery(ref('analytics___sms_stg__event_deletion_tracking')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms_stg__event_deletion_tracking_event_id__is_logical_deleted", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_29840de71e4d5b28896603e8f474ee05.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__event_deletion_tracking_event_id__is_logical_deleted.3215c296e6", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__event_deletion_tracking", "dbt_utils_unique_combination_of_columns_analytics___sms_stg__event_deletion_tracking_event_id__is_logical_deleted"], "alias": "dbt_utils_unique_combination_o_29840de71e4d5b28896603e8f474ee05", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_29840de71e4d5b28896603e8f474ee05", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_29840de71e4d5b28896603e8f474ee05"}, "created_at": 1700082659.809056, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_29840de71e4d5b28896603e8f474ee05\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__event_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__event_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.yml/dbt_utils_unique_combination_o_29840de71e4d5b28896603e8f474ee05.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n event_id, is_logical_deleted\n from dev_dkruh1.analytics___sms_stg__event_deletion_tracking\n group by event_id, is_logical_deleted\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__event_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__event_deletion_tracking"}, "test.yoda.unique_analytics___sms_stg__flow_flow_id.00e5a420fc": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "flow_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__flow')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__flow_flow_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__flow_flow_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__flow_flow_id.00e5a420fc", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__flow", "unique_analytics___sms_stg__flow_flow_id"], "alias": "unique_analytics___sms_stg__flow_flow_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082659.8366776, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__flow", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__flow"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.yml/unique_analytics___sms_stg__flow_flow_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select flow_id from dev_dkruh1.analytics___sms_stg__flow where flow_id is not null group by flow_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "flow_id", "file_key_name": "models.analytics___sms_stg__flow", "attached_node": "model.yoda.analytics___sms_stg__flow"}, "test.yoda.not_null_analytics___sms_stg__flow_flow_id.d057f09c87": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "flow_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__flow')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__flow_flow_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__flow_flow_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__flow_flow_id.d057f09c87", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__flow", "not_null_analytics___sms_stg__flow_flow_id"], "alias": "not_null_analytics___sms_stg__flow_flow_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.8421907, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__flow", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__flow"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.yml/not_null_analytics___sms_stg__flow_flow_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__flow where flow_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "flow_id", "file_key_name": "models.analytics___sms_stg__flow", "attached_node": "model.yoda.analytics___sms_stg__flow"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_1.ef23600f5b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__flow')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f6e6f5be2cbac7e21bf46259a0fed4ce.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_1.ef23600f5b", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__flow", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_1"], "alias": "dbt_expectations_expect_table__f6e6f5be2cbac7e21bf46259a0fed4ce", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f6e6f5be2cbac7e21bf46259a0fed4ce", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f6e6f5be2cbac7e21bf46259a0fed4ce"}, "created_at": 1700082659.8482494, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f6e6f5be2cbac7e21bf46259a0fed4ce\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__flow", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__flow"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.yml/dbt_expectations_expect_table__f6e6f5be2cbac7e21bf46259a0fed4ce.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__flow\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__flow", "attached_node": "model.yoda.analytics___sms_stg__flow"}, "test.yoda.not_null_analytics___sms_stg__flow_deletion_tracking_flow_id.95d3a0af30": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "flow_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__flow_deletion_tracking')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__flow_deletion_tracking_flow_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__flow_deletion_tracking_flow_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__flow_deletion_tracking_flow_id.95d3a0af30", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__flow_deletion_tracking", "not_null_analytics___sms_stg__flow_deletion_tracking_flow_id"], "alias": "not_null_analytics___sms_stg__flow_deletion_tracking_flow_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082659.8764055, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__flow_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__flow_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.yml/not_null_analytics___sms_stg__flow_deletion_tracking_flow_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__flow_deletion_tracking where flow_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "flow_id", "file_key_name": "models.analytics___sms_stg__flow_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__flow_deletion_tracking"}, "test.yoda.not_null_analytics___sms_stg__flow_deletion_tracking_is_logical_deleted.c90de52b91": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_logical_deleted", "model": "{{ get_where_subquery(ref('analytics___sms_stg__flow_deletion_tracking')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__flow_deletion_tracking_is_logical_deleted", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___e1631368fb85592c8985b7850ebc9286.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__flow_deletion_tracking_is_logical_deleted.c90de52b91", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__flow_deletion_tracking", "not_null_analytics___sms_stg__flow_deletion_tracking_is_logical_deleted"], "alias": "not_null_analytics___sms_stg___e1631368fb85592c8985b7850ebc9286", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___e1631368fb85592c8985b7850ebc9286", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___e1631368fb85592c8985b7850ebc9286"}, "created_at": 1700082659.8818407, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___e1631368fb85592c8985b7850ebc9286\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__flow_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__flow_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.yml/not_null_analytics___sms_stg___e1631368fb85592c8985b7850ebc9286.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__flow_deletion_tracking where is_logical_deleted is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_logical_deleted", "file_key_name": "models.analytics___sms_stg__flow_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__flow_deletion_tracking"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_deletion_tracking_1.790497ab87": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__flow_deletion_tracking')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_deletion_tracking_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0659a0c411d677c9e035570c80e0fb50.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_deletion_tracking_1.790497ab87", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__flow_deletion_tracking", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_deletion_tracking_1"], "alias": "dbt_expectations_expect_table__0659a0c411d677c9e035570c80e0fb50", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0659a0c411d677c9e035570c80e0fb50", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0659a0c411d677c9e035570c80e0fb50"}, "created_at": 1700082659.8878496, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0659a0c411d677c9e035570c80e0fb50\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__flow_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__flow_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.yml/dbt_expectations_expect_table__0659a0c411d677c9e035570c80e0fb50.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__flow_deletion_tracking\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__flow_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__flow_deletion_tracking"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__flow_deletion_tracking_flow_id__is_logical_deleted.28b27600d8": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["flow_id", "is_logical_deleted"], "model": "{{ get_where_subquery(ref('analytics___sms_stg__flow_deletion_tracking')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms_stg__flow_deletion_tracking_flow_id__is_logical_deleted", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_839372aa41f805c4f81acb03dc2e229c.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__flow_deletion_tracking_flow_id__is_logical_deleted.28b27600d8", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__flow_deletion_tracking", "dbt_utils_unique_combination_of_columns_analytics___sms_stg__flow_deletion_tracking_flow_id__is_logical_deleted"], "alias": "dbt_utils_unique_combination_o_839372aa41f805c4f81acb03dc2e229c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_839372aa41f805c4f81acb03dc2e229c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_839372aa41f805c4f81acb03dc2e229c"}, "created_at": 1700082659.8950806, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_839372aa41f805c4f81acb03dc2e229c\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__flow_deletion_tracking", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__flow_deletion_tracking"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.yml/dbt_utils_unique_combination_o_839372aa41f805c4f81acb03dc2e229c.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n flow_id, is_logical_deleted\n from dev_dkruh1.analytics___sms_stg__flow_deletion_tracking\n group by flow_id, is_logical_deleted\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__flow_deletion_tracking", "attached_node": "model.yoda.analytics___sms_stg__flow_deletion_tracking"}, "test.yoda.accepted_values_analytics___sms_stg__form_is_dynamic_popup__0__1.b6e7c6b4a0": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_dynamic_popup", "model": "{{ get_where_subquery(ref('analytics___sms_stg__form')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___sms_stg__form_is_dynamic_popup__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___sm_7499196521a72529009e858ec0c74933.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.yml", "unique_id": "test.yoda.accepted_values_analytics___sms_stg__form_is_dynamic_popup__0__1.b6e7c6b4a0", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__form", "accepted_values_analytics___sms_stg__form_is_dynamic_popup__0__1"], "alias": "accepted_values_analytics___sm_7499196521a72529009e858ec0c74933", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___sm_7499196521a72529009e858ec0c74933", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___sm_7499196521a72529009e858ec0c74933"}, "created_at": 1700082659.9336953, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___sm_7499196521a72529009e858ec0c74933\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__form", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__form"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.yml/accepted_values_analytics___sm_7499196521a72529009e858ec0c74933.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_dynamic_popup as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___sms_stg__form\n group by is_dynamic_popup\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_dynamic_popup", "file_key_name": "models.analytics___sms_stg__form", "attached_node": "model.yoda.analytics___sms_stg__form"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__form_1.451d930639": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__form')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__form_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a88999362f404d59120f8c3377f58e40.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__form_1.451d930639", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__form", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__form_1"], "alias": "dbt_expectations_expect_table__a88999362f404d59120f8c3377f58e40", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a88999362f404d59120f8c3377f58e40", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a88999362f404d59120f8c3377f58e40"}, "created_at": 1700082659.9417357, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a88999362f404d59120f8c3377f58e40\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__form", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__form"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.yml/dbt_expectations_expect_table__a88999362f404d59120f8c3377f58e40.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__form\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__form", "attached_node": "model.yoda.analytics___sms_stg__form"}, "test.yoda.unique_analytics___sms_stg__free_credit_log_free_credit_log_id.d89be83a66": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "free_credit_log_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__free_credit_log')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__free_credit_log_free_credit_log_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__free_credit_log_free_credit_log_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__free_credit_log_free_credit_log_id.d89be83a66", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__free_credit_log", "unique_analytics___sms_stg__free_credit_log_free_credit_log_id"], "alias": "unique_analytics___sms_stg__free_credit_log_free_credit_log_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082659.9807434, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__free_credit_log", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__free_credit_log"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.yml/unique_analytics___sms_stg__free_credit_log_free_credit_log_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select free_credit_log_id from dev_dkruh1.analytics___sms_stg__free_credit_log where free_credit_log_id is not null group by free_credit_log_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "free_credit_log_id", "file_key_name": "models.analytics___sms_stg__free_credit_log", "attached_node": "model.yoda.analytics___sms_stg__free_credit_log"}, "test.yoda.not_null_analytics___sms_stg__free_credit_log_free_credit_log_id.92d6397f1e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "free_credit_log_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__free_credit_log')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__free_credit_log_free_credit_log_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___2b3833e2f236d049f85f66f0ec9e5759.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__free_credit_log_free_credit_log_id.92d6397f1e", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__free_credit_log", "not_null_analytics___sms_stg__free_credit_log_free_credit_log_id"], "alias": "not_null_analytics___sms_stg___2b3833e2f236d049f85f66f0ec9e5759", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___2b3833e2f236d049f85f66f0ec9e5759", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___2b3833e2f236d049f85f66f0ec9e5759"}, "created_at": 1700082659.9879556, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___2b3833e2f236d049f85f66f0ec9e5759\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__free_credit_log", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__free_credit_log"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.yml/not_null_analytics___sms_stg___2b3833e2f236d049f85f66f0ec9e5759.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__free_credit_log where free_credit_log_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "free_credit_log_id", "file_key_name": "models.analytics___sms_stg__free_credit_log", "attached_node": "model.yoda.analytics___sms_stg__free_credit_log"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_log_1.140b7330dd": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__free_credit_log')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_log_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__74e0ce5c85f26d99c19fe6d62fea28ec.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_log_1.140b7330dd", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__free_credit_log", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_log_1"], "alias": "dbt_expectations_expect_table__74e0ce5c85f26d99c19fe6d62fea28ec", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__74e0ce5c85f26d99c19fe6d62fea28ec", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__74e0ce5c85f26d99c19fe6d62fea28ec"}, "created_at": 1700082659.9953852, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__74e0ce5c85f26d99c19fe6d62fea28ec\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__free_credit_log", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__free_credit_log"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.yml/dbt_expectations_expect_table__74e0ce5c85f26d99c19fe6d62fea28ec.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__free_credit_log\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__free_credit_log", "attached_node": "model.yoda.analytics___sms_stg__free_credit_log"}, "test.yoda.unique_analytics___sms_stg__list_list_id.ea2f670be6": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "list_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__list')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__list_list_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__list_list_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__list_list_id.ea2f670be6", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__list", "unique_analytics___sms_stg__list_list_id"], "alias": "unique_analytics___sms_stg__list_list_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082660.031777, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__list"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.yml/unique_analytics___sms_stg__list_list_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select list_id from dev_dkruh1.analytics___sms_stg__list where list_id is not null group by list_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "list_id", "file_key_name": "models.analytics___sms_stg__list", "attached_node": "model.yoda.analytics___sms_stg__list"}, "test.yoda.not_null_analytics___sms_stg__list_list_id.76cfee039f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "list_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__list')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__list_list_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__list_list_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__list_list_id.76cfee039f", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__list", "not_null_analytics___sms_stg__list_list_id"], "alias": "not_null_analytics___sms_stg__list_list_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.0373664, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__list"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.yml/not_null_analytics___sms_stg__list_list_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__list where list_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "list_id", "file_key_name": "models.analytics___sms_stg__list", "attached_node": "model.yoda.analytics___sms_stg__list"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__list_1.a5ab72d384": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__list')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__list_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ec4990541c0d251383e6a2db364a74c2.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__list_1.a5ab72d384", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__list", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__list_1"], "alias": "dbt_expectations_expect_table__ec4990541c0d251383e6a2db364a74c2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ec4990541c0d251383e6a2db364a74c2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ec4990541c0d251383e6a2db364a74c2"}, "created_at": 1700082660.0427222, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ec4990541c0d251383e6a2db364a74c2\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__list"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.yml/dbt_expectations_expect_table__ec4990541c0d251383e6a2db364a74c2.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__list\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__list", "attached_node": "model.yoda.analytics___sms_stg__list"}, "test.yoda.unique_analytics___sms_stg__loyalty_flow_flow_id.7842cb6a45": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "flow_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__loyalty_flow')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__loyalty_flow_flow_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__loyalty_flow_flow_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__loyalty_flow_flow_id.7842cb6a45", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__loyalty_flow", "unique_analytics___sms_stg__loyalty_flow_flow_id"], "alias": "unique_analytics___sms_stg__loyalty_flow_flow_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082660.0632336, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__loyalty_flow", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__loyalty_flow"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.yml/unique_analytics___sms_stg__loyalty_flow_flow_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select flow_id from dev_dkruh1.analytics___sms_stg__loyalty_flow where flow_id is not null group by flow_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "flow_id", "file_key_name": "models.analytics___sms_stg__loyalty_flow", "attached_node": "model.yoda.analytics___sms_stg__loyalty_flow"}, "test.yoda.not_null_analytics___sms_stg__loyalty_flow_flow_id.edcc8e2992": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "flow_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__loyalty_flow')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__loyalty_flow_flow_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__loyalty_flow_flow_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__loyalty_flow_flow_id.edcc8e2992", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__loyalty_flow", "not_null_analytics___sms_stg__loyalty_flow_flow_id"], "alias": "not_null_analytics___sms_stg__loyalty_flow_flow_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.0701563, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__loyalty_flow", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__loyalty_flow"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.yml/not_null_analytics___sms_stg__loyalty_flow_flow_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__loyalty_flow where flow_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "flow_id", "file_key_name": "models.analytics___sms_stg__loyalty_flow", "attached_node": "model.yoda.analytics___sms_stg__loyalty_flow"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__loyalty_flow_1.0e978e780f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__loyalty_flow')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__loyalty_flow_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__71a79e878a32f1ffac90011b2b59edfc.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__loyalty_flow_1.0e978e780f", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__loyalty_flow", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__loyalty_flow_1"], "alias": "dbt_expectations_expect_table__71a79e878a32f1ffac90011b2b59edfc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__71a79e878a32f1ffac90011b2b59edfc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__71a79e878a32f1ffac90011b2b59edfc"}, "created_at": 1700082660.0756733, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__71a79e878a32f1ffac90011b2b59edfc\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__loyalty_flow", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__loyalty_flow"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.yml/dbt_expectations_expect_table__71a79e878a32f1ffac90011b2b59edfc.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__loyalty_flow\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__loyalty_flow", "attached_node": "model.yoda.analytics___sms_stg__loyalty_flow"}, "test.yoda.unique_analytics___sms_stg__organization_identifier_conversion_organization_id.d2cdc53d89": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__organization_identifier_conversion')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__organization_identifier_conversion_organization_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__or_bc1cb1930bd3b28cf60521ed1c6f4be2.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__organization_identifier_conversion_organization_id.d2cdc53d89", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__organization_identifier_conversion", "unique_analytics___sms_stg__organization_identifier_conversion_organization_id"], "alias": "unique_analytics___sms_stg__or_bc1cb1930bd3b28cf60521ed1c6f4be2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___sms_stg__or_bc1cb1930bd3b28cf60521ed1c6f4be2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___sms_stg__or_bc1cb1930bd3b28cf60521ed1c6f4be2"}, "created_at": 1700082660.098909, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___sms_stg__or_bc1cb1930bd3b28cf60521ed1c6f4be2\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__organization_identifier_conversion", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__organization_identifier_conversion"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.yml/unique_analytics___sms_stg__or_bc1cb1930bd3b28cf60521ed1c6f4be2.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_id from dev_dkruh1.analytics___sms_stg__organization_identifier_conversion where organization_id is not null group by organization_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_id", "file_key_name": "models.analytics___sms_stg__organization_identifier_conversion", "attached_node": "model.yoda.analytics___sms_stg__organization_identifier_conversion"}, "test.yoda.not_null_analytics___sms_stg__organization_identifier_conversion_organization_id.8211799e55": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__organization_identifier_conversion')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__organization_identifier_conversion_organization_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___8841d07f83f85f5dd557e62335401dfd.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__organization_identifier_conversion_organization_id.8211799e55", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__organization_identifier_conversion", "not_null_analytics___sms_stg__organization_identifier_conversion_organization_id"], "alias": "not_null_analytics___sms_stg___8841d07f83f85f5dd557e62335401dfd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___8841d07f83f85f5dd557e62335401dfd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___8841d07f83f85f5dd557e62335401dfd"}, "created_at": 1700082660.1045928, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___8841d07f83f85f5dd557e62335401dfd\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__organization_identifier_conversion", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__organization_identifier_conversion"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.yml/not_null_analytics___sms_stg___8841d07f83f85f5dd557e62335401dfd.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__organization_identifier_conversion where organization_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_id", "file_key_name": "models.analytics___sms_stg__organization_identifier_conversion", "attached_node": "model.yoda.analytics___sms_stg__organization_identifier_conversion"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__organization_identifier_conversion_1.5f7d34fc26": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__organization_identifier_conversion')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__organization_identifier_conversion_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__fe1be991ab2e47d246b94a9a93daa019.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__organization_identifier_conversion_1.5f7d34fc26", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__organization_identifier_conversion", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__organization_identifier_conversion_1"], "alias": "dbt_expectations_expect_table__fe1be991ab2e47d246b94a9a93daa019", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__fe1be991ab2e47d246b94a9a93daa019", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__fe1be991ab2e47d246b94a9a93daa019"}, "created_at": 1700082660.1106794, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__fe1be991ab2e47d246b94a9a93daa019\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__organization_identifier_conversion", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__organization_identifier_conversion"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.yml/dbt_expectations_expect_table__fe1be991ab2e47d246b94a9a93daa019.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__organization_identifier_conversion\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__organization_identifier_conversion", "attached_node": "model.yoda.analytics___sms_stg__organization_identifier_conversion"}, "test.yoda.unique_analytics___sms_stg__plan_plan_id.1bfc36b301": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__plan_plan_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__plan_plan_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__plan_plan_id.1bfc36b301", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__plan", "unique_analytics___sms_stg__plan_plan_id"], "alias": "unique_analytics___sms_stg__plan_plan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082660.1419158, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.yml/unique_analytics___sms_stg__plan_plan_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select plan_id from dev_dkruh1.analytics___sms_stg__plan where plan_id is not null group by plan_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___sms_stg__plan", "attached_node": "model.yoda.analytics___sms_stg__plan"}, "test.yoda.not_null_analytics___sms_stg__plan_plan_id.d2cf504db2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__plan_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__plan_plan_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__plan_plan_id.d2cf504db2", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__plan", "not_null_analytics___sms_stg__plan_plan_id"], "alias": "not_null_analytics___sms_stg__plan_plan_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.1472092, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.yml/not_null_analytics___sms_stg__plan_plan_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__plan where plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_id", "file_key_name": "models.analytics___sms_stg__plan", "attached_node": "model.yoda.analytics___sms_stg__plan"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__plan_1.7829c012c2": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__plan')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__plan_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7f7047ac86af44632f41fa88c684b749.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__plan_1.7829c012c2", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__plan", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__plan_1"], "alias": "dbt_expectations_expect_table__7f7047ac86af44632f41fa88c684b749", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7f7047ac86af44632f41fa88c684b749", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7f7047ac86af44632f41fa88c684b749"}, "created_at": 1700082660.1526687, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7f7047ac86af44632f41fa88c684b749\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.yml/dbt_expectations_expect_table__7f7047ac86af44632f41fa88c684b749.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__plan\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__plan", "attached_node": "model.yoda.analytics___sms_stg__plan"}, "test.yoda.unique_analytics___sms_stg__purchase_purchase_id.909b5ae18b": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "purchase_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__purchase')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__purchase_purchase_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__purchase_purchase_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__purchase_purchase_id.909b5ae18b", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__purchase", "unique_analytics___sms_stg__purchase_purchase_id"], "alias": "unique_analytics___sms_stg__purchase_purchase_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082660.1867294, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__purchase", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__purchase"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.yml/unique_analytics___sms_stg__purchase_purchase_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select purchase_id from dev_dkruh1.analytics___sms_stg__purchase where purchase_id is not null group by purchase_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "purchase_id", "file_key_name": "models.analytics___sms_stg__purchase", "attached_node": "model.yoda.analytics___sms_stg__purchase"}, "test.yoda.not_null_analytics___sms_stg__purchase_purchase_id.94e0e9df49": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "purchase_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__purchase')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__purchase_purchase_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__purchase_purchase_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__purchase_purchase_id.94e0e9df49", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__purchase", "not_null_analytics___sms_stg__purchase_purchase_id"], "alias": "not_null_analytics___sms_stg__purchase_purchase_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.1922445, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__purchase", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__purchase"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.yml/not_null_analytics___sms_stg__purchase_purchase_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__purchase where purchase_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "purchase_id", "file_key_name": "models.analytics___sms_stg__purchase", "attached_node": "model.yoda.analytics___sms_stg__purchase"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__purchase_1.a1735bbd5c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__purchase')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__purchase_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d266c1212f0587511bef4427c982ae01.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__purchase_1.a1735bbd5c", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__purchase", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__purchase_1"], "alias": "dbt_expectations_expect_table__d266c1212f0587511bef4427c982ae01", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d266c1212f0587511bef4427c982ae01", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d266c1212f0587511bef4427c982ae01"}, "created_at": 1700082660.1979353, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d266c1212f0587511bef4427c982ae01\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__purchase", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__purchase"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.yml/dbt_expectations_expect_table__d266c1212f0587511bef4427c982ae01.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__purchase\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__purchase", "attached_node": "model.yoda.analytics___sms_stg__purchase"}, "test.yoda.unique_analytics___sms_stg__segment_sms_campaign_message_id.3ee1be1b40": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "message_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__segment_sms_campaign')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__segment_sms_campaign_message_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__segment_sms_campaign_message_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__segment_sms_campaign_message_id.3ee1be1b40", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__segment_sms_campaign", "unique_analytics___sms_stg__segment_sms_campaign_message_id"], "alias": "unique_analytics___sms_stg__segment_sms_campaign_message_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082660.270427, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__segment_sms_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__segment_sms_campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.yml/unique_analytics___sms_stg__segment_sms_campaign_message_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select message_id from dev_dkruh1.analytics___sms_stg__segment_sms_campaign where message_id is not null group by message_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "message_id", "file_key_name": "models.analytics___sms_stg__segment_sms_campaign", "attached_node": "model.yoda.analytics___sms_stg__segment_sms_campaign"}, "test.yoda.not_null_analytics___sms_stg__segment_sms_campaign_message_id.92fc44f787": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "message_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__segment_sms_campaign')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__segment_sms_campaign_message_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__segment_sms_campaign_message_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__segment_sms_campaign_message_id.92fc44f787", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__segment_sms_campaign", "not_null_analytics___sms_stg__segment_sms_campaign_message_id"], "alias": "not_null_analytics___sms_stg__segment_sms_campaign_message_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.276139, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__segment_sms_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__segment_sms_campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.yml/not_null_analytics___sms_stg__segment_sms_campaign_message_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__segment_sms_campaign where message_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "message_id", "file_key_name": "models.analytics___sms_stg__segment_sms_campaign", "attached_node": "model.yoda.analytics___sms_stg__segment_sms_campaign"}, "test.yoda.not_null_analytics___sms_stg__segment_sms_campaign_created_at.9496b7b68e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('analytics___sms_stg__segment_sms_campaign')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__segment_sms_campaign_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__segment_sms_campaign_created_at.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__segment_sms_campaign_created_at.9496b7b68e", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__segment_sms_campaign", "not_null_analytics___sms_stg__segment_sms_campaign_created_at"], "alias": "not_null_analytics___sms_stg__segment_sms_campaign_created_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.2817848, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__segment_sms_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__segment_sms_campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.yml/not_null_analytics___sms_stg__segment_sms_campaign_created_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__segment_sms_campaign where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.analytics___sms_stg__segment_sms_campaign", "attached_node": "model.yoda.analytics___sms_stg__segment_sms_campaign"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__segment_sms_campaign_1.ed1541f2c3": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__segment_sms_campaign')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__segment_sms_campaign_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d958e6d84884ae69ccbee7a51a604d2f.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__segment_sms_campaign_1.ed1541f2c3", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__segment_sms_campaign", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__segment_sms_campaign_1"], "alias": "dbt_expectations_expect_table__d958e6d84884ae69ccbee7a51a604d2f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d958e6d84884ae69ccbee7a51a604d2f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d958e6d84884ae69ccbee7a51a604d2f"}, "created_at": 1700082660.2873034, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d958e6d84884ae69ccbee7a51a604d2f\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__segment_sms_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__segment_sms_campaign"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.yml/dbt_expectations_expect_table__d958e6d84884ae69ccbee7a51a604d2f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__segment_sms_campaign\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__segment_sms_campaign", "attached_node": "model.yoda.analytics___sms_stg__segment_sms_campaign"}, "test.yoda.unique_analytics___sms_stg__shopify_campaign_order_order_attribution_id.fa5455b3a8": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_attribution_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_campaign_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__shopify_campaign_order_order_attribution_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__sh_075054bebb7d7182799721fb5f67151d.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__shopify_campaign_order_order_attribution_id.fa5455b3a8", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_campaign_order", "unique_analytics___sms_stg__shopify_campaign_order_order_attribution_id"], "alias": "unique_analytics___sms_stg__sh_075054bebb7d7182799721fb5f67151d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___sms_stg__sh_075054bebb7d7182799721fb5f67151d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___sms_stg__sh_075054bebb7d7182799721fb5f67151d"}, "created_at": 1700082660.31095, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___sms_stg__sh_075054bebb7d7182799721fb5f67151d\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_campaign_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_campaign_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.yml/unique_analytics___sms_stg__sh_075054bebb7d7182799721fb5f67151d.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_attribution_id from dev_dkruh1.analytics___sms_stg__shopify_campaign_order where order_attribution_id is not null group by order_attribution_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_attribution_id", "file_key_name": "models.analytics___sms_stg__shopify_campaign_order", "attached_node": "model.yoda.analytics___sms_stg__shopify_campaign_order"}, "test.yoda.not_null_analytics___sms_stg__shopify_campaign_order_order_attribution_id.25777d50f3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_attribution_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_campaign_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__shopify_campaign_order_order_attribution_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___2f1e30ac9253192cd64769d2ffda14d7.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__shopify_campaign_order_order_attribution_id.25777d50f3", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_campaign_order", "not_null_analytics___sms_stg__shopify_campaign_order_order_attribution_id"], "alias": "not_null_analytics___sms_stg___2f1e30ac9253192cd64769d2ffda14d7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___2f1e30ac9253192cd64769d2ffda14d7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___2f1e30ac9253192cd64769d2ffda14d7"}, "created_at": 1700082660.3166552, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___2f1e30ac9253192cd64769d2ffda14d7\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_campaign_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_campaign_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.yml/not_null_analytics___sms_stg___2f1e30ac9253192cd64769d2ffda14d7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__shopify_campaign_order where order_attribution_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_attribution_id", "file_key_name": "models.analytics___sms_stg__shopify_campaign_order", "attached_node": "model.yoda.analytics___sms_stg__shopify_campaign_order"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_campaign_order_1.713ed05fab": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_campaign_order')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_campaign_order_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f34e52e5e0af3ba4a80a152d8ca666e3.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_campaign_order_1.713ed05fab", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_campaign_order", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_campaign_order_1"], "alias": "dbt_expectations_expect_table__f34e52e5e0af3ba4a80a152d8ca666e3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f34e52e5e0af3ba4a80a152d8ca666e3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f34e52e5e0af3ba4a80a152d8ca666e3"}, "created_at": 1700082660.322311, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f34e52e5e0af3ba4a80a152d8ca666e3\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_campaign_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_campaign_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.yml/dbt_expectations_expect_table__f34e52e5e0af3ba4a80a152d8ca666e3.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__shopify_campaign_order\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__shopify_campaign_order", "attached_node": "model.yoda.analytics___sms_stg__shopify_campaign_order"}, "test.yoda.unique_analytics___sms_stg__shopify_customer_shopify_customer_internal_id.2012ed1458": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "shopify_customer_internal_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__shopify_customer_shopify_customer_internal_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__sh_ab34511be8a341216111e84df0e6bb6c.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__shopify_customer_shopify_customer_internal_id.2012ed1458", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_customer", "unique_analytics___sms_stg__shopify_customer_shopify_customer_internal_id"], "alias": "unique_analytics___sms_stg__sh_ab34511be8a341216111e84df0e6bb6c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___sms_stg__sh_ab34511be8a341216111e84df0e6bb6c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___sms_stg__sh_ab34511be8a341216111e84df0e6bb6c"}, "created_at": 1700082660.3471794, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___sms_stg__sh_ab34511be8a341216111e84df0e6bb6c\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_customer"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.yml/unique_analytics___sms_stg__sh_ab34511be8a341216111e84df0e6bb6c.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select shopify_customer_internal_id from dev_dkruh1.analytics___sms_stg__shopify_customer where shopify_customer_internal_id is not null group by shopify_customer_internal_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_customer_internal_id", "file_key_name": "models.analytics___sms_stg__shopify_customer", "attached_node": "model.yoda.analytics___sms_stg__shopify_customer"}, "test.yoda.not_null_analytics___sms_stg__shopify_customer_shopify_customer_internal_id.c97ecf6b69": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_customer_internal_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__shopify_customer_shopify_customer_internal_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___41f3bea80b8bd2a386ac2bfde2361533.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__shopify_customer_shopify_customer_internal_id.c97ecf6b69", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_customer", "not_null_analytics___sms_stg__shopify_customer_shopify_customer_internal_id"], "alias": "not_null_analytics___sms_stg___41f3bea80b8bd2a386ac2bfde2361533", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___41f3bea80b8bd2a386ac2bfde2361533", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___41f3bea80b8bd2a386ac2bfde2361533"}, "created_at": 1700082660.352632, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___41f3bea80b8bd2a386ac2bfde2361533\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_customer"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.yml/not_null_analytics___sms_stg___41f3bea80b8bd2a386ac2bfde2361533.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__shopify_customer where shopify_customer_internal_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_customer_internal_id", "file_key_name": "models.analytics___sms_stg__shopify_customer", "attached_node": "model.yoda.analytics___sms_stg__shopify_customer"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_customer_1.45c5ed49f6": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_customer')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_customer_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d5af022ae6130f6eab00d8a4a21efb9e.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_customer_1.45c5ed49f6", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_customer", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_customer_1"], "alias": "dbt_expectations_expect_table__d5af022ae6130f6eab00d8a4a21efb9e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d5af022ae6130f6eab00d8a4a21efb9e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d5af022ae6130f6eab00d8a4a21efb9e"}, "created_at": 1700082660.3583553, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d5af022ae6130f6eab00d8a4a21efb9e\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_customer"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.yml/dbt_expectations_expect_table__d5af022ae6130f6eab00d8a4a21efb9e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__shopify_customer\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__shopify_customer", "attached_node": "model.yoda.analytics___sms_stg__shopify_customer"}, "test.yoda.unique_analytics___sms_stg__shopify_flow_order_order_attribution_id.37d90edfd1": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_attribution_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_flow_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__shopify_flow_order_order_attribution_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__sh_92ef7ad289d91cb123a01a77e58fdf5d.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__shopify_flow_order_order_attribution_id.37d90edfd1", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_flow_order", "unique_analytics___sms_stg__shopify_flow_order_order_attribution_id"], "alias": "unique_analytics___sms_stg__sh_92ef7ad289d91cb123a01a77e58fdf5d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___sms_stg__sh_92ef7ad289d91cb123a01a77e58fdf5d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___sms_stg__sh_92ef7ad289d91cb123a01a77e58fdf5d"}, "created_at": 1700082660.3832242, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___sms_stg__sh_92ef7ad289d91cb123a01a77e58fdf5d\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_flow_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_flow_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.yml/unique_analytics___sms_stg__sh_92ef7ad289d91cb123a01a77e58fdf5d.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_attribution_id from dev_dkruh1.analytics___sms_stg__shopify_flow_order where order_attribution_id is not null group by order_attribution_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_attribution_id", "file_key_name": "models.analytics___sms_stg__shopify_flow_order", "attached_node": "model.yoda.analytics___sms_stg__shopify_flow_order"}, "test.yoda.not_null_analytics___sms_stg__shopify_flow_order_order_attribution_id.c37f548479": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_attribution_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_flow_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__shopify_flow_order_order_attribution_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___aa9ab99060d5a5d69a9e3f921dfc6b24.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__shopify_flow_order_order_attribution_id.c37f548479", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_flow_order", "not_null_analytics___sms_stg__shopify_flow_order_order_attribution_id"], "alias": "not_null_analytics___sms_stg___aa9ab99060d5a5d69a9e3f921dfc6b24", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___aa9ab99060d5a5d69a9e3f921dfc6b24", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___aa9ab99060d5a5d69a9e3f921dfc6b24"}, "created_at": 1700082660.3889966, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___aa9ab99060d5a5d69a9e3f921dfc6b24\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_flow_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_flow_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.yml/not_null_analytics___sms_stg___aa9ab99060d5a5d69a9e3f921dfc6b24.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__shopify_flow_order where order_attribution_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_attribution_id", "file_key_name": "models.analytics___sms_stg__shopify_flow_order", "attached_node": "model.yoda.analytics___sms_stg__shopify_flow_order"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_flow_order_1.de05f701f6": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_flow_order')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_flow_order_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__aff018761a616e138afce5f68a98d575.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_flow_order_1.de05f701f6", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_flow_order", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_flow_order_1"], "alias": "dbt_expectations_expect_table__aff018761a616e138afce5f68a98d575", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__aff018761a616e138afce5f68a98d575", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__aff018761a616e138afce5f68a98d575"}, "created_at": 1700082660.3945029, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__aff018761a616e138afce5f68a98d575\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_flow_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_flow_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.yml/dbt_expectations_expect_table__aff018761a616e138afce5f68a98d575.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__shopify_flow_order\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__shopify_flow_order", "attached_node": "model.yoda.analytics___sms_stg__shopify_flow_order"}, "test.yoda.unique_analytics___sms_stg__shopify_orders_order_line_id.b7fc40909e": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_line_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_orders')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__shopify_orders_order_line_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__shopify_orders_order_line_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__shopify_orders_order_line_id.b7fc40909e", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_orders", "unique_analytics___sms_stg__shopify_orders_order_line_id"], "alias": "unique_analytics___sms_stg__shopify_orders_order_line_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082660.4236267, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_orders"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.yml/unique_analytics___sms_stg__shopify_orders_order_line_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_line_id from dev_dkruh1.analytics___sms_stg__shopify_orders where order_line_id is not null group by order_line_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_line_id", "file_key_name": "models.analytics___sms_stg__shopify_orders", "attached_node": "model.yoda.analytics___sms_stg__shopify_orders"}, "test.yoda.not_null_analytics___sms_stg__shopify_orders_order_line_id.63c7c1c764": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_line_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_orders')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__shopify_orders_order_line_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__shopify_orders_order_line_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__shopify_orders_order_line_id.63c7c1c764", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_orders", "not_null_analytics___sms_stg__shopify_orders_order_line_id"], "alias": "not_null_analytics___sms_stg__shopify_orders_order_line_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.42921, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_orders"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.yml/not_null_analytics___sms_stg__shopify_orders_order_line_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__shopify_orders where order_line_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_line_id", "file_key_name": "models.analytics___sms_stg__shopify_orders", "attached_node": "model.yoda.analytics___sms_stg__shopify_orders"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_orders_1.11db598530": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_orders')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_orders_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__14d0dcaf682c9b644a6b06cff26d62c4.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_orders_1.11db598530", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_orders", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_orders_1"], "alias": "dbt_expectations_expect_table__14d0dcaf682c9b644a6b06cff26d62c4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__14d0dcaf682c9b644a6b06cff26d62c4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__14d0dcaf682c9b644a6b06cff26d62c4"}, "created_at": 1700082660.434349, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__14d0dcaf682c9b644a6b06cff26d62c4\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_orders"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.yml/dbt_expectations_expect_table__14d0dcaf682c9b644a6b06cff26d62c4.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__shopify_orders\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__shopify_orders", "attached_node": "model.yoda.analytics___sms_stg__shopify_orders"}, "test.yoda.unique_analytics___sms_stg__shopify_segment_segment_id.7b34c480b5": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "segment_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_segment')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__shopify_segment_segment_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__shopify_segment_segment_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__shopify_segment_segment_id.7b34c480b5", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_segment", "unique_analytics___sms_stg__shopify_segment_segment_id"], "alias": "unique_analytics___sms_stg__shopify_segment_segment_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082660.4591718, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_segment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_segment"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.yml/unique_analytics___sms_stg__shopify_segment_segment_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select segment_id from dev_dkruh1.analytics___sms_stg__shopify_segment where segment_id is not null group by segment_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "segment_id", "file_key_name": "models.analytics___sms_stg__shopify_segment", "attached_node": "model.yoda.analytics___sms_stg__shopify_segment"}, "test.yoda.not_null_analytics___sms_stg__shopify_segment_segment_id.b05d38783b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "segment_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_segment')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__shopify_segment_segment_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__shopify_segment_segment_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__shopify_segment_segment_id.b05d38783b", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_segment", "not_null_analytics___sms_stg__shopify_segment_segment_id"], "alias": "not_null_analytics___sms_stg__shopify_segment_segment_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.4649682, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_segment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_segment"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.yml/not_null_analytics___sms_stg__shopify_segment_segment_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__shopify_segment where segment_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "segment_id", "file_key_name": "models.analytics___sms_stg__shopify_segment", "attached_node": "model.yoda.analytics___sms_stg__shopify_segment"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_segment_1.9aa58fa3a4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_segment')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_segment_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__fe7692d173d66061c8bcbe017dc7993b.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_segment_1.9aa58fa3a4", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_segment", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_segment_1"], "alias": "dbt_expectations_expect_table__fe7692d173d66061c8bcbe017dc7993b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__fe7692d173d66061c8bcbe017dc7993b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__fe7692d173d66061c8bcbe017dc7993b"}, "created_at": 1700082660.47052, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__fe7692d173d66061c8bcbe017dc7993b\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_segment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_segment"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.yml/dbt_expectations_expect_table__fe7692d173d66061c8bcbe017dc7993b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__shopify_segment\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__shopify_segment", "attached_node": "model.yoda.analytics___sms_stg__shopify_segment"}, "test.yoda.unique_analytics___sms_stg__shopify_user_shopify_user_id.c0bac38cb2": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "shopify_user_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_user')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__shopify_user_shopify_user_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__shopify_user_shopify_user_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__shopify_user_shopify_user_id.c0bac38cb2", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_user", "unique_analytics___sms_stg__shopify_user_shopify_user_id"], "alias": "unique_analytics___sms_stg__shopify_user_shopify_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082660.501161, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.yml/unique_analytics___sms_stg__shopify_user_shopify_user_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select shopify_user_id from dev_dkruh1.analytics___sms_stg__shopify_user where shopify_user_id is not null group by shopify_user_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_user_id", "file_key_name": "models.analytics___sms_stg__shopify_user", "attached_node": "model.yoda.analytics___sms_stg__shopify_user"}, "test.yoda.not_null_analytics___sms_stg__shopify_user_shopify_user_id.f0336d7360": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "shopify_user_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_user')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__shopify_user_shopify_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__shopify_user_shopify_user_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__shopify_user_shopify_user_id.f0336d7360", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_user", "not_null_analytics___sms_stg__shopify_user_shopify_user_id"], "alias": "not_null_analytics___sms_stg__shopify_user_shopify_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.5066338, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.yml/not_null_analytics___sms_stg__shopify_user_shopify_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__shopify_user where shopify_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "shopify_user_id", "file_key_name": "models.analytics___sms_stg__shopify_user", "attached_node": "model.yoda.analytics___sms_stg__shopify_user"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_user_1.862a063db4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__shopify_user')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_user_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__092dd9f5da55a69da2ca3ed5f8ee3853.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_user_1.862a063db4", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__shopify_user", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_user_1"], "alias": "dbt_expectations_expect_table__092dd9f5da55a69da2ca3ed5f8ee3853", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__092dd9f5da55a69da2ca3ed5f8ee3853", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__092dd9f5da55a69da2ca3ed5f8ee3853"}, "created_at": 1700082660.5119355, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__092dd9f5da55a69da2ca3ed5f8ee3853\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__shopify_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__shopify_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.yml/dbt_expectations_expect_table__092dd9f5da55a69da2ca3ed5f8ee3853.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__shopify_user\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__shopify_user", "attached_node": "model.yoda.analytics___sms_stg__shopify_user"}, "test.yoda.unique_analytics___sms_stg__sms_user_sms_user_id.490873732c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__sms_user')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__sms_user_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__sms_user_sms_user_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__sms_user_sms_user_id.490873732c", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__sms_user", "unique_analytics___sms_stg__sms_user_sms_user_id"], "alias": "unique_analytics___sms_stg__sms_user_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082660.5590613, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__sms_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__sms_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.yml/unique_analytics___sms_stg__sms_user_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select sms_user_id from dev_dkruh1.analytics___sms_stg__sms_user where sms_user_id is not null group by sms_user_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms_stg__sms_user", "attached_node": "model.yoda.analytics___sms_stg__sms_user"}, "test.yoda.not_null_analytics___sms_stg__sms_user_sms_user_id.ee715eacd8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_user_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__sms_user')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__sms_user_sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__sms_user_sms_user_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__sms_user_sms_user_id.ee715eacd8", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__sms_user", "not_null_analytics___sms_stg__sms_user_sms_user_id"], "alias": "not_null_analytics___sms_stg__sms_user_sms_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.564314, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__sms_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__sms_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.yml/not_null_analytics___sms_stg__sms_user_sms_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__sms_user where sms_user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_user_id", "file_key_name": "models.analytics___sms_stg__sms_user", "attached_node": "model.yoda.analytics___sms_stg__sms_user"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__sms_user_1.3707c4d202": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__sms_user')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__sms_user_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f8c0ad2778f7e71447fecb03bbf1de13.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__sms_user_1.3707c4d202", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__sms_user", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__sms_user_1"], "alias": "dbt_expectations_expect_table__f8c0ad2778f7e71447fecb03bbf1de13", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f8c0ad2778f7e71447fecb03bbf1de13", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f8c0ad2778f7e71447fecb03bbf1de13"}, "created_at": 1700082660.569883, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f8c0ad2778f7e71447fecb03bbf1de13\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__sms_user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__sms_user"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.yml/dbt_expectations_expect_table__f8c0ad2778f7e71447fecb03bbf1de13.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__sms_user\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__sms_user", "attached_node": "model.yoda.analytics___sms_stg__sms_user"}, "test.yoda.unique_analytics___sms_stg__track_flow_adoption_flow_adoption_id.e1be7f4dd9": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "flow_adoption_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__track_flow_adoption')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__track_flow_adoption_flow_adoption_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__tr_923cdb657806a0e61c41fee236e6f57d.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__track_flow_adoption_flow_adoption_id.e1be7f4dd9", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__track_flow_adoption", "unique_analytics___sms_stg__track_flow_adoption_flow_adoption_id"], "alias": "unique_analytics___sms_stg__tr_923cdb657806a0e61c41fee236e6f57d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___sms_stg__tr_923cdb657806a0e61c41fee236e6f57d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___sms_stg__tr_923cdb657806a0e61c41fee236e6f57d"}, "created_at": 1700082660.592652, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___sms_stg__tr_923cdb657806a0e61c41fee236e6f57d\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__track_flow_adoption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__track_flow_adoption"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.yml/unique_analytics___sms_stg__tr_923cdb657806a0e61c41fee236e6f57d.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select flow_adoption_id from dev_dkruh1.analytics___sms_stg__track_flow_adoption where flow_adoption_id is not null group by flow_adoption_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "flow_adoption_id", "file_key_name": "models.analytics___sms_stg__track_flow_adoption", "attached_node": "model.yoda.analytics___sms_stg__track_flow_adoption"}, "test.yoda.not_null_analytics___sms_stg__track_flow_adoption_flow_adoption_id.f27cbca06e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "flow_adoption_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__track_flow_adoption')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__track_flow_adoption_flow_adoption_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___d730cbf5a4428f9d684cca05969f9fe2.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__track_flow_adoption_flow_adoption_id.f27cbca06e", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__track_flow_adoption", "not_null_analytics___sms_stg__track_flow_adoption_flow_adoption_id"], "alias": "not_null_analytics___sms_stg___d730cbf5a4428f9d684cca05969f9fe2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___d730cbf5a4428f9d684cca05969f9fe2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___d730cbf5a4428f9d684cca05969f9fe2"}, "created_at": 1700082660.5983171, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___d730cbf5a4428f9d684cca05969f9fe2\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__track_flow_adoption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__track_flow_adoption"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.yml/not_null_analytics___sms_stg___d730cbf5a4428f9d684cca05969f9fe2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__track_flow_adoption where flow_adoption_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "flow_adoption_id", "file_key_name": "models.analytics___sms_stg__track_flow_adoption", "attached_node": "model.yoda.analytics___sms_stg__track_flow_adoption"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__track_flow_adoption_1.33191f793d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__track_flow_adoption')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__track_flow_adoption_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f221ab5f0789cc16327f98e6179a38bb.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__track_flow_adoption_1.33191f793d", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__track_flow_adoption", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__track_flow_adoption_1"], "alias": "dbt_expectations_expect_table__f221ab5f0789cc16327f98e6179a38bb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f221ab5f0789cc16327f98e6179a38bb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f221ab5f0789cc16327f98e6179a38bb"}, "created_at": 1700082660.604116, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f221ab5f0789cc16327f98e6179a38bb\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__track_flow_adoption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__track_flow_adoption"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.yml/dbt_expectations_expect_table__f221ab5f0789cc16327f98e6179a38bb.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__track_flow_adoption\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__track_flow_adoption", "attached_node": "model.yoda.analytics___sms_stg__track_flow_adoption"}, "test.yoda.not_null_analytics___sms_stg__user_date_explode_from_creation_date.261a50fcfa": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___sms_stg__user_date_explode_from_creation')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__user_date_explode_from_creation_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg___d6cb9626a0be654440d71506608fe3b6.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__user_date_explode_from_creation_date.261a50fcfa", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__user_date_explode_from_creation", "not_null_analytics___sms_stg__user_date_explode_from_creation_date"], "alias": "not_null_analytics___sms_stg___d6cb9626a0be654440d71506608fe3b6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___sms_stg___d6cb9626a0be654440d71506608fe3b6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___sms_stg___d6cb9626a0be654440d71506608fe3b6"}, "created_at": 1700082660.6227655, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___sms_stg___d6cb9626a0be654440d71506608fe3b6\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__user_date_explode_from_creation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__user_date_explode_from_creation"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.yml/not_null_analytics___sms_stg___d6cb9626a0be654440d71506608fe3b6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__user_date_explode_from_creation where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___sms_stg__user_date_explode_from_creation", "attached_node": "model.yoda.analytics___sms_stg__user_date_explode_from_creation"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_date_explode_from_creation_1.bde74b930d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__user_date_explode_from_creation')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_date_explode_from_creation_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__763247ce27e50c6efffef823aa847ea7.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_date_explode_from_creation_1.bde74b930d", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__user_date_explode_from_creation", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_date_explode_from_creation_1"], "alias": "dbt_expectations_expect_table__763247ce27e50c6efffef823aa847ea7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__763247ce27e50c6efffef823aa847ea7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__763247ce27e50c6efffef823aa847ea7"}, "created_at": 1700082660.6283197, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__763247ce27e50c6efffef823aa847ea7\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__user_date_explode_from_creation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__user_date_explode_from_creation"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.yml/dbt_expectations_expect_table__763247ce27e50c6efffef823aa847ea7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__user_date_explode_from_creation\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__user_date_explode_from_creation", "attached_node": "model.yoda.analytics___sms_stg__user_date_explode_from_creation"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__user_date_explode_from_creation_date__sms_user_id.4be7d2f30b": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["date", "sms_user_id"], "model": "{{ get_where_subquery(ref('analytics___sms_stg__user_date_explode_from_creation')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___sms_stg__user_date_explode_from_creation_date__sms_user_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_3a6151c9c232713f9ddb1e2741d0bd8e.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__user_date_explode_from_creation_date__sms_user_id.4be7d2f30b", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__user_date_explode_from_creation", "dbt_utils_unique_combination_of_columns_analytics___sms_stg__user_date_explode_from_creation_date__sms_user_id"], "alias": "dbt_utils_unique_combination_o_3a6151c9c232713f9ddb1e2741d0bd8e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_3a6151c9c232713f9ddb1e2741d0bd8e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_3a6151c9c232713f9ddb1e2741d0bd8e"}, "created_at": 1700082660.6344566, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_3a6151c9c232713f9ddb1e2741d0bd8e\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__user_date_explode_from_creation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__user_date_explode_from_creation"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.yml/dbt_utils_unique_combination_o_3a6151c9c232713f9ddb1e2741d0bd8e.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n date, sms_user_id\n from dev_dkruh1.analytics___sms_stg__user_date_explode_from_creation\n group by date, sms_user_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__user_date_explode_from_creation", "attached_node": "model.yoda.analytics___sms_stg__user_date_explode_from_creation"}, "test.yoda.unique_analytics___sms_stg__user_event_log_event_id.d78a562339": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__user_event_log')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___sms_stg__user_event_log_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___sms_stg__user_event_log_event_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.yml", "unique_id": "test.yoda.unique_analytics___sms_stg__user_event_log_event_id.d78a562339", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__user_event_log", "unique_analytics___sms_stg__user_event_log_event_id"], "alias": "unique_analytics___sms_stg__user_event_log_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082660.6598723, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__user_event_log", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__user_event_log"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.yml/unique_analytics___sms_stg__user_event_log_event_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___sms_stg__user_event_log where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___sms_stg__user_event_log", "attached_node": "model.yoda.analytics___sms_stg__user_event_log"}, "test.yoda.not_null_analytics___sms_stg__user_event_log_event_id.b453540b82": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___sms_stg__user_event_log')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___sms_stg__user_event_log_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___sms_stg__user_event_log_event_id.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.yml", "unique_id": "test.yoda.not_null_analytics___sms_stg__user_event_log_event_id.b453540b82", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__user_event_log", "not_null_analytics___sms_stg__user_event_log_event_id"], "alias": "not_null_analytics___sms_stg__user_event_log_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.6653585, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__user_event_log", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__user_event_log"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.yml/not_null_analytics___sms_stg__user_event_log_event_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___sms_stg__user_event_log where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___sms_stg__user_event_log", "attached_node": "model.yoda.analytics___sms_stg__user_event_log"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_event_log_1.312315ba21": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___sms_stg__user_event_log')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_event_log_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6f742b2e4a8e99dfd18835d4f3cbf07e.sql", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_event_log_1.312315ba21", "fqn": ["yoda", "analytics", "sms", "staging", "marts_compatible", "analytics___sms_stg__user_event_log", "dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_event_log_1"], "alias": "dbt_expectations_expect_table__6f742b2e4a8e99dfd18835d4f3cbf07e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6f742b2e4a8e99dfd18835d4f3cbf07e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6f742b2e4a8e99dfd18835d4f3cbf07e"}, "created_at": 1700082660.6706557, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6f742b2e4a8e99dfd18835d4f3cbf07e\") }}", "language": "sql", "refs": [{"name": "analytics___sms_stg__user_event_log", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___sms_stg__user_event_log"]}, "compiled_path": "target/compiled/yoda/models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.yml/dbt_expectations_expect_table__6f742b2e4a8e99dfd18835d4f3cbf07e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___sms_stg__user_event_log\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___sms_stg__user_event_log", "attached_node": "model.yoda.analytics___sms_stg__user_event_log"}, "test.yoda.not_null_analytics___subscriptions__contract_over_time_subscription_contract_id.afe55a364d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_contract_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions__contract_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__contract_over_time_subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_0cae414b3d0fb34017506b403fd48ea3.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__contract_over_time_subscription_contract_id.afe55a364d", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__contract_over_time", "not_null_analytics___subscriptions__contract_over_time_subscription_contract_id"], "alias": "not_null_analytics___subscript_0cae414b3d0fb34017506b403fd48ea3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_0cae414b3d0fb34017506b403fd48ea3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_0cae414b3d0fb34017506b403fd48ea3"}, "created_at": 1700082660.7354252, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_0cae414b3d0fb34017506b403fd48ea3\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__contract_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__contract_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml/not_null_analytics___subscript_0cae414b3d0fb34017506b403fd48ea3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__contract_over_time where subscription_contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_id", "file_key_name": "models.analytics___subscriptions__contract_over_time", "attached_node": "model.yoda.analytics___subscriptions__contract_over_time"}, "test.yoda.not_null_analytics___subscriptions__contract_over_time_app_key.eb1cc36551": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions__contract_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__contract_over_time_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscriptions__contract_over_time_app_key.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__contract_over_time_app_key.eb1cc36551", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__contract_over_time", "not_null_analytics___subscriptions__contract_over_time_app_key"], "alias": "not_null_analytics___subscriptions__contract_over_time_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.740998, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__contract_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__contract_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml/not_null_analytics___subscriptions__contract_over_time_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__contract_over_time where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions__contract_over_time", "attached_node": "model.yoda.analytics___subscriptions__contract_over_time"}, "test.yoda.not_null_analytics___subscriptions__contract_over_time_from_time.ea49a1a71e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_time", "model": "{{ get_where_subquery(ref('analytics___subscriptions__contract_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__contract_over_time_from_time", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_0a3c1c328dc081c0669c769bddd05598.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__contract_over_time_from_time.ea49a1a71e", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__contract_over_time", "not_null_analytics___subscriptions__contract_over_time_from_time"], "alias": "not_null_analytics___subscript_0a3c1c328dc081c0669c769bddd05598", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_0a3c1c328dc081c0669c769bddd05598", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_0a3c1c328dc081c0669c769bddd05598"}, "created_at": 1700082660.74843, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_0a3c1c328dc081c0669c769bddd05598\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__contract_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__contract_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml/not_null_analytics___subscript_0a3c1c328dc081c0669c769bddd05598.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__contract_over_time where from_time is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_time", "file_key_name": "models.analytics___subscriptions__contract_over_time", "attached_node": "model.yoda.analytics___subscriptions__contract_over_time"}, "test.yoda.not_null_analytics___subscriptions__contract_over_time_to_time.a7841aa00e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "to_time", "model": "{{ get_where_subquery(ref('analytics___subscriptions__contract_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__contract_over_time_to_time", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscriptions__contract_over_time_to_time.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__contract_over_time_to_time.a7841aa00e", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__contract_over_time", "not_null_analytics___subscriptions__contract_over_time_to_time"], "alias": "not_null_analytics___subscriptions__contract_over_time_to_time", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.756214, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__contract_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__contract_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml/not_null_analytics___subscriptions__contract_over_time_to_time.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__contract_over_time where to_time is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "to_time", "file_key_name": "models.analytics___subscriptions__contract_over_time", "attached_node": "model.yoda.analytics___subscriptions__contract_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__contract_over_time_1.f721df90e4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions__contract_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__contract_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__137d09baae76157ffc2c04e5ab2466ba.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__contract_over_time_1.f721df90e4", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__contract_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__contract_over_time_1"], "alias": "dbt_expectations_expect_table__137d09baae76157ffc2c04e5ab2466ba", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__137d09baae76157ffc2c04e5ab2466ba", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__137d09baae76157ffc2c04e5ab2466ba"}, "created_at": 1700082660.7615857, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__137d09baae76157ffc2c04e5ab2466ba\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__contract_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__contract_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml/dbt_expectations_expect_table__137d09baae76157ffc2c04e5ab2466ba.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions__contract_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__contract_over_time", "attached_node": "model.yoda.analytics___subscriptions__contract_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__contract_over_time_app_key__from_time__to_time__subscription_contract_id.a4c467bc5b": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "from_time", "to_time", "subscription_contract_id"], "model": "{{ get_where_subquery(ref('analytics___subscriptions__contract_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___subscriptions__contract_over_time_app_key__from_time__to_time__subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_5a14ef8df4c7467738567fa9be9141af.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__contract_over_time_app_key__from_time__to_time__subscription_contract_id.a4c467bc5b", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__contract_over_time", "dbt_utils_unique_combination_of_columns_analytics___subscriptions__contract_over_time_app_key__from_time__to_time__subscription_contract_id"], "alias": "dbt_utils_unique_combination_o_5a14ef8df4c7467738567fa9be9141af", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_5a14ef8df4c7467738567fa9be9141af", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_5a14ef8df4c7467738567fa9be9141af"}, "created_at": 1700082660.7678359, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_5a14ef8df4c7467738567fa9be9141af\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__contract_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__contract_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.yml/dbt_utils_unique_combination_o_5a14ef8df4c7467738567fa9be9141af.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, from_time, to_time, subscription_contract_id\n from dev_dkruh1.analytics___subscriptions__contract_over_time\n group by app_key, from_time, to_time, subscription_contract_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__contract_over_time", "attached_node": "model.yoda.analytics___subscriptions__contract_over_time"}, "test.yoda.unique_analytics___subscriptions__store_app_key.9ef591e5eb": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions__store_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptions__store_app_key.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.yml", "unique_id": "test.yoda.unique_analytics___subscriptions__store_app_key.9ef591e5eb", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store", "unique_analytics___subscriptions__store_app_key"], "alias": "unique_analytics___subscriptions__store_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082660.7981555, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.yml/unique_analytics___subscriptions__store_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___subscriptions__store where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions__store", "attached_node": "model.yoda.analytics___subscriptions__store"}, "test.yoda.not_null_analytics___subscriptions__store_app_key.08a51eda61": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__store_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscriptions__store_app_key.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__store_app_key.08a51eda61", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store", "not_null_analytics___subscriptions__store_app_key"], "alias": "not_null_analytics___subscriptions__store_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082660.8037066, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.yml/not_null_analytics___subscriptions__store_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__store where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions__store", "attached_node": "model.yoda.analytics___subscriptions__store"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_1.34ac5e53e0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions__store')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2a7e6a1e2455836399ae0bd177e84376.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_1.34ac5e53e0", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_1"], "alias": "dbt_expectations_expect_table__2a7e6a1e2455836399ae0bd177e84376", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2a7e6a1e2455836399ae0bd177e84376", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2a7e6a1e2455836399ae0bd177e84376"}, "created_at": 1700082660.809283, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2a7e6a1e2455836399ae0bd177e84376\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.yml/dbt_expectations_expect_table__2a7e6a1e2455836399ae0bd177e84376.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions__store\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__store", "attached_node": "model.yoda.analytics___subscriptions__store"}, "test.yoda.not_null_analytics___subscriptions__store_activeness_daily_activeness_date.ee63973cf7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activeness_date", "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__store_activeness_daily_activeness_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_82b9838988450587c695d4ca41a325c7.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__store_activeness_daily_activeness_date.ee63973cf7", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_activeness_daily", "not_null_analytics___subscriptions__store_activeness_daily_activeness_date"], "alias": "not_null_analytics___subscript_82b9838988450587c695d4ca41a325c7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_82b9838988450587c695d4ca41a325c7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_82b9838988450587c695d4ca41a325c7"}, "created_at": 1700082660.8291838, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_82b9838988450587c695d4ca41a325c7\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.yml/not_null_analytics___subscript_82b9838988450587c695d4ca41a325c7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__store_activeness_daily where activeness_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "activeness_date", "file_key_name": "models.analytics___subscriptions__store_activeness_daily", "attached_node": "model.yoda.analytics___subscriptions__store_activeness_daily"}, "test.yoda.not_null_analytics___subscriptions__store_activeness_daily_app_key.00b4f16e92": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__store_activeness_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_4a9628b9ea68ce1253f9399ae371c523.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__store_activeness_daily_app_key.00b4f16e92", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_activeness_daily", "not_null_analytics___subscriptions__store_activeness_daily_app_key"], "alias": "not_null_analytics___subscript_4a9628b9ea68ce1253f9399ae371c523", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_4a9628b9ea68ce1253f9399ae371c523", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_4a9628b9ea68ce1253f9399ae371c523"}, "created_at": 1700082660.834849, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_4a9628b9ea68ce1253f9399ae371c523\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.yml/not_null_analytics___subscript_4a9628b9ea68ce1253f9399ae371c523.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__store_activeness_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions__store_activeness_daily", "attached_node": "model.yoda.analytics___subscriptions__store_activeness_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_activeness_daily_1.094fb6643f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_activeness_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_activeness_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4fa8139aae1fb97a57a8282b3eccdf8c.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_activeness_daily_1.094fb6643f", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_activeness_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_activeness_daily_1"], "alias": "dbt_expectations_expect_table__4fa8139aae1fb97a57a8282b3eccdf8c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4fa8139aae1fb97a57a8282b3eccdf8c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4fa8139aae1fb97a57a8282b3eccdf8c"}, "created_at": 1700082660.8402028, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4fa8139aae1fb97a57a8282b3eccdf8c\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.yml/dbt_expectations_expect_table__4fa8139aae1fb97a57a8282b3eccdf8c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions__store_activeness_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__store_activeness_daily", "attached_node": "model.yoda.analytics___subscriptions__store_activeness_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_activeness_daily_activeness_date__app_key.bb85741a83": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["activeness_date", "app_key"], "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_activeness_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_activeness_daily_activeness_date__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_3f369bb59f319d42eee00b8d809c9e82.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_activeness_daily_activeness_date__app_key.bb85741a83", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_activeness_daily", "dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_activeness_daily_activeness_date__app_key"], "alias": "dbt_utils_unique_combination_o_3f369bb59f319d42eee00b8d809c9e82", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_3f369bb59f319d42eee00b8d809c9e82", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_3f369bb59f319d42eee00b8d809c9e82"}, "created_at": 1700082660.846448, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_3f369bb59f319d42eee00b8d809c9e82\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.yml/dbt_utils_unique_combination_o_3f369bb59f319d42eee00b8d809c9e82.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n activeness_date, app_key\n from dev_dkruh1.analytics___subscriptions__store_activeness_daily\n group by activeness_date, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__store_activeness_daily", "attached_node": "model.yoda.analytics___subscriptions__store_activeness_daily"}, "test.yoda.not_null_analytics___subscriptions__store_feature_activation_app_key.20fc1e9ad2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_feature_activation')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__store_feature_activation_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_57bdba3ae48a64e3e41d2e076bf38ba7.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__store_feature_activation_app_key.20fc1e9ad2", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_feature_activation", "not_null_analytics___subscriptions__store_feature_activation_app_key"], "alias": "not_null_analytics___subscript_57bdba3ae48a64e3e41d2e076bf38ba7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_57bdba3ae48a64e3e41d2e076bf38ba7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_57bdba3ae48a64e3e41d2e076bf38ba7"}, "created_at": 1700082660.8697863, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_57bdba3ae48a64e3e41d2e076bf38ba7\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_feature_activation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_feature_activation"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.yml/not_null_analytics___subscript_57bdba3ae48a64e3e41d2e076bf38ba7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__store_feature_activation where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions__store_feature_activation", "attached_node": "model.yoda.analytics___subscriptions__store_feature_activation"}, "test.yoda.not_null_analytics___subscriptions__store_feature_activation_feature_name.7d69d75c9c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "feature_name", "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_feature_activation')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__store_feature_activation_feature_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_96aaf241c5b7f18e494632e02dbdd52d.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__store_feature_activation_feature_name.7d69d75c9c", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_feature_activation", "not_null_analytics___subscriptions__store_feature_activation_feature_name"], "alias": "not_null_analytics___subscript_96aaf241c5b7f18e494632e02dbdd52d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_96aaf241c5b7f18e494632e02dbdd52d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_96aaf241c5b7f18e494632e02dbdd52d"}, "created_at": 1700082660.8752868, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_96aaf241c5b7f18e494632e02dbdd52d\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_feature_activation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_feature_activation"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.yml/not_null_analytics___subscript_96aaf241c5b7f18e494632e02dbdd52d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__store_feature_activation where feature_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "feature_name", "file_key_name": "models.analytics___subscriptions__store_feature_activation", "attached_node": "model.yoda.analytics___subscriptions__store_feature_activation"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_feature_activation_1.8d5d5298a3": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_feature_activation')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_feature_activation_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__fffb3193c69f8b99dcfa7d3ef987a93d.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_feature_activation_1.8d5d5298a3", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_feature_activation", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_feature_activation_1"], "alias": "dbt_expectations_expect_table__fffb3193c69f8b99dcfa7d3ef987a93d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__fffb3193c69f8b99dcfa7d3ef987a93d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__fffb3193c69f8b99dcfa7d3ef987a93d"}, "created_at": 1700082660.881219, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__fffb3193c69f8b99dcfa7d3ef987a93d\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_feature_activation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_feature_activation"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.yml/dbt_expectations_expect_table__fffb3193c69f8b99dcfa7d3ef987a93d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions__store_feature_activation\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__store_feature_activation", "attached_node": "model.yoda.analytics___subscriptions__store_feature_activation"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_feature_activation_app_key__feature_name.b3a24c2bb2": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "feature_name"], "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_feature_activation')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_feature_activation_app_key__feature_name", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_90f85fd40a3fdaa339a757fb91f1ab55.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_feature_activation_app_key__feature_name.b3a24c2bb2", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_feature_activation", "dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_feature_activation_app_key__feature_name"], "alias": "dbt_utils_unique_combination_o_90f85fd40a3fdaa339a757fb91f1ab55", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_90f85fd40a3fdaa339a757fb91f1ab55", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_90f85fd40a3fdaa339a757fb91f1ab55"}, "created_at": 1700082660.8887687, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_90f85fd40a3fdaa339a757fb91f1ab55\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_feature_activation", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_feature_activation"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.yml/dbt_utils_unique_combination_o_90f85fd40a3fdaa339a757fb91f1ab55.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, feature_name\n from dev_dkruh1.analytics___subscriptions__store_feature_activation\n group by app_key, feature_name\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__store_feature_activation", "attached_node": "model.yoda.analytics___subscriptions__store_feature_activation"}, "test.yoda.not_null_analytics___subscriptions__store_installation_over_time_app_key.5c5e205994": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_installation_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__store_installation_over_time_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_586daf33e1c5b88e9bb36576d0aec0c4.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__store_installation_over_time_app_key.5c5e205994", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_installation_over_time", "not_null_analytics___subscriptions__store_installation_over_time_app_key"], "alias": "not_null_analytics___subscript_586daf33e1c5b88e9bb36576d0aec0c4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_586daf33e1c5b88e9bb36576d0aec0c4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_586daf33e1c5b88e9bb36576d0aec0c4"}, "created_at": 1700082660.9136453, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_586daf33e1c5b88e9bb36576d0aec0c4\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.yml/not_null_analytics___subscript_586daf33e1c5b88e9bb36576d0aec0c4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__store_installation_over_time where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions__store_installation_over_time", "attached_node": "model.yoda.analytics___subscriptions__store_installation_over_time"}, "test.yoda.not_null_analytics___subscriptions__store_installation_over_time_from_time.9a7d4d93c3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_time", "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_installation_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__store_installation_over_time_from_time", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_61e7fcb4e722b3652b271b6739cf567b.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__store_installation_over_time_from_time.9a7d4d93c3", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_installation_over_time", "not_null_analytics___subscriptions__store_installation_over_time_from_time"], "alias": "not_null_analytics___subscript_61e7fcb4e722b3652b271b6739cf567b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_61e7fcb4e722b3652b271b6739cf567b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_61e7fcb4e722b3652b271b6739cf567b"}, "created_at": 1700082660.9193208, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_61e7fcb4e722b3652b271b6739cf567b\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.yml/not_null_analytics___subscript_61e7fcb4e722b3652b271b6739cf567b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__store_installation_over_time where from_time is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_time", "file_key_name": "models.analytics___subscriptions__store_installation_over_time", "attached_node": "model.yoda.analytics___subscriptions__store_installation_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_installation_over_time_1.78f443f9ee": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_installation_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_installation_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6ddc44388856e35423d8ed43b0f94624.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_installation_over_time_1.78f443f9ee", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_installation_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_installation_over_time_1"], "alias": "dbt_expectations_expect_table__6ddc44388856e35423d8ed43b0f94624", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6ddc44388856e35423d8ed43b0f94624", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6ddc44388856e35423d8ed43b0f94624"}, "created_at": 1700082660.9254382, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6ddc44388856e35423d8ed43b0f94624\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.yml/dbt_expectations_expect_table__6ddc44388856e35423d8ed43b0f94624.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions__store_installation_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__store_installation_over_time", "attached_node": "model.yoda.analytics___subscriptions__store_installation_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_installation_over_time_app_key__from_time.7622c74e4b": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "from_time"], "model": "{{ get_where_subquery(ref('analytics___subscriptions__store_installation_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_installation_over_time_app_key__from_time", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_db54ccdc9d721c7761a810cb305340f4.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_installation_over_time_app_key__from_time.7622c74e4b", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__store_installation_over_time", "dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_installation_over_time_app_key__from_time"], "alias": "dbt_utils_unique_combination_o_db54ccdc9d721c7761a810cb305340f4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_db54ccdc9d721c7761a810cb305340f4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_db54ccdc9d721c7761a810cb305340f4"}, "created_at": 1700082660.9319098, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_db54ccdc9d721c7761a810cb305340f4\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__store_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__store_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.yml/dbt_utils_unique_combination_o_db54ccdc9d721c7761a810cb305340f4.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, from_time\n from dev_dkruh1.analytics___subscriptions__store_installation_over_time\n group by app_key, from_time\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__store_installation_over_time", "attached_node": "model.yoda.analytics___subscriptions__store_installation_over_time"}, "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_app_key.43cd3ad301": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__subscription_contract_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_cf24af7e6a4ee2bdda76b5cb6e3d0b16.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_app_key.43cd3ad301", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_daily", "not_null_analytics___subscriptions__subscription_contract_daily_app_key"], "alias": "not_null_analytics___subscript_cf24af7e6a4ee2bdda76b5cb6e3d0b16", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_cf24af7e6a4ee2bdda76b5cb6e3d0b16", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_cf24af7e6a4ee2bdda76b5cb6e3d0b16"}, "created_at": 1700082660.9544072, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_cf24af7e6a4ee2bdda76b5cb6e3d0b16\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml/not_null_analytics___subscript_cf24af7e6a4ee2bdda76b5cb6e3d0b16.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__subscription_contract_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions__subscription_contract_daily", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_daily"}, "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_date.d3d90c8094": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__subscription_contract_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_e5246d8fc29232d050f6577c1192b674.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_date.d3d90c8094", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_daily", "not_null_analytics___subscriptions__subscription_contract_daily_date"], "alias": "not_null_analytics___subscript_e5246d8fc29232d050f6577c1192b674", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_e5246d8fc29232d050f6577c1192b674", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_e5246d8fc29232d050f6577c1192b674"}, "created_at": 1700082660.9626138, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_e5246d8fc29232d050f6577c1192b674\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml/not_null_analytics___subscript_e5246d8fc29232d050f6577c1192b674.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__subscription_contract_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___subscriptions__subscription_contract_daily", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_daily"}, "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status.a93d10ba55": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_contract_status", "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_f05274db1777f8dc90ad66c1c4e91384.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status.a93d10ba55", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_daily", "not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status"], "alias": "not_null_analytics___subscript_f05274db1777f8dc90ad66c1c4e91384", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_f05274db1777f8dc90ad66c1c4e91384", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_f05274db1777f8dc90ad66c1c4e91384"}, "created_at": 1700082660.96994, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_f05274db1777f8dc90ad66c1c4e91384\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml/not_null_analytics___subscript_f05274db1777f8dc90ad66c1c4e91384.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__subscription_contract_daily where subscription_contract_status is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_status", "file_key_name": "models.analytics___subscriptions__subscription_contract_daily", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_daily"}, "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status_id.c972a8540d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_contract_status_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_065603172224024c5ba0c5b62fcba7cf.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status_id.c972a8540d", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_daily", "not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status_id"], "alias": "not_null_analytics___subscript_065603172224024c5ba0c5b62fcba7cf", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_065603172224024c5ba0c5b62fcba7cf", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_065603172224024c5ba0c5b62fcba7cf"}, "created_at": 1700082660.9758852, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_065603172224024c5ba0c5b62fcba7cf\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml/not_null_analytics___subscript_065603172224024c5ba0c5b62fcba7cf.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__subscription_contract_daily where subscription_contract_status_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_status_id", "file_key_name": "models.analytics___subscriptions__subscription_contract_daily", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_daily_1.c0a7f26b24": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e04f6f39581a6b94858476a9f5109e66.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_daily_1.c0a7f26b24", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_daily_1"], "alias": "dbt_expectations_expect_table__e04f6f39581a6b94858476a9f5109e66", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e04f6f39581a6b94858476a9f5109e66", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e04f6f39581a6b94858476a9f5109e66"}, "created_at": 1700082660.9824488, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e04f6f39581a6b94858476a9f5109e66\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml/dbt_expectations_expect_table__e04f6f39581a6b94858476a9f5109e66.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions__subscription_contract_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__subscription_contract_daily", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_daily_app_key__date__subscription_contract_status_id.55e676ee06": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "date", "subscription_contract_status_id"], "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_daily_app_key__date__subscription_contract_status_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_ced1cce21b19bcca663784b02f451d81.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_daily_app_key__date__subscription_contract_status_id.55e676ee06", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_daily", "dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_daily_app_key__date__subscription_contract_status_id"], "alias": "dbt_utils_unique_combination_o_ced1cce21b19bcca663784b02f451d81", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ced1cce21b19bcca663784b02f451d81", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ced1cce21b19bcca663784b02f451d81"}, "created_at": 1700082660.9898875, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ced1cce21b19bcca663784b02f451d81\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.yml/dbt_utils_unique_combination_o_ced1cce21b19bcca663784b02f451d81.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, date, subscription_contract_status_id\n from dev_dkruh1.analytics___subscriptions__subscription_contract_daily\n group by app_key, date, subscription_contract_status_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__subscription_contract_daily", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_daily"}, "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_app_key.3ddafaed5f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__subscription_contract_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_2c79f47293368b33432a567d6bb56d01.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_app_key.3ddafaed5f", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_monthly", "not_null_analytics___subscriptions__subscription_contract_monthly_app_key"], "alias": "not_null_analytics___subscript_2c79f47293368b33432a567d6bb56d01", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_2c79f47293368b33432a567d6bb56d01", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_2c79f47293368b33432a567d6bb56d01"}, "created_at": 1700082661.0128913, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_2c79f47293368b33432a567d6bb56d01\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml/not_null_analytics___subscript_2c79f47293368b33432a567d6bb56d01.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__subscription_contract_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions__subscription_contract_monthly", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_monthly"}, "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_month.cfc865b9a1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__subscription_contract_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_0f7f6cf85bfef208c91abf7feeba9b16.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_month.cfc865b9a1", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_monthly", "not_null_analytics___subscriptions__subscription_contract_monthly_month"], "alias": "not_null_analytics___subscript_0f7f6cf85bfef208c91abf7feeba9b16", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_0f7f6cf85bfef208c91abf7feeba9b16", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_0f7f6cf85bfef208c91abf7feeba9b16"}, "created_at": 1700082661.0186284, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_0f7f6cf85bfef208c91abf7feeba9b16\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml/not_null_analytics___subscript_0f7f6cf85bfef208c91abf7feeba9b16.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__subscription_contract_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___subscriptions__subscription_contract_monthly", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_monthly"}, "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status.3aa7143fde": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_contract_status", "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_8339a06b6af9220b97008c995f0d9f0e.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status.3aa7143fde", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_monthly", "not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status"], "alias": "not_null_analytics___subscript_8339a06b6af9220b97008c995f0d9f0e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_8339a06b6af9220b97008c995f0d9f0e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_8339a06b6af9220b97008c995f0d9f0e"}, "created_at": 1700082661.0247378, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_8339a06b6af9220b97008c995f0d9f0e\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml/not_null_analytics___subscript_8339a06b6af9220b97008c995f0d9f0e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__subscription_contract_monthly where subscription_contract_status is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_status", "file_key_name": "models.analytics___subscriptions__subscription_contract_monthly", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_monthly"}, "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status_id.bebb1bf4ce": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_contract_status_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_286ece93b6e5810c6418a71e836b3e1b.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status_id.bebb1bf4ce", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_monthly", "not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status_id"], "alias": "not_null_analytics___subscript_286ece93b6e5810c6418a71e836b3e1b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_286ece93b6e5810c6418a71e836b3e1b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_286ece93b6e5810c6418a71e836b3e1b"}, "created_at": 1700082661.0307574, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_286ece93b6e5810c6418a71e836b3e1b\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml/not_null_analytics___subscript_286ece93b6e5810c6418a71e836b3e1b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions__subscription_contract_monthly where subscription_contract_status_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_status_id", "file_key_name": "models.analytics___subscriptions__subscription_contract_monthly", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_monthly_1.54db6ef4fc": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__202050b5ccd2b5dde7fb99f83124d775.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_monthly_1.54db6ef4fc", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_monthly_1"], "alias": "dbt_expectations_expect_table__202050b5ccd2b5dde7fb99f83124d775", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__202050b5ccd2b5dde7fb99f83124d775", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__202050b5ccd2b5dde7fb99f83124d775"}, "created_at": 1700082661.0366576, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__202050b5ccd2b5dde7fb99f83124d775\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml/dbt_expectations_expect_table__202050b5ccd2b5dde7fb99f83124d775.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions__subscription_contract_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__subscription_contract_monthly", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_monthly_app_key__month__subscription_contract_status_id.2217450d3a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "month", "subscription_contract_status_id"], "model": "{{ get_where_subquery(ref('analytics___subscriptions__subscription_contract_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_monthly_app_key__month__subscription_contract_status_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_3cb1eb87e500deeb7c5b1ba40f2d9368.sql", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_monthly_app_key__month__subscription_contract_status_id.2217450d3a", "fqn": ["yoda", "analytics", "subscriptions", "marts", "analytics___subscriptions__subscription_contract_monthly", "dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_monthly_app_key__month__subscription_contract_status_id"], "alias": "dbt_utils_unique_combination_o_3cb1eb87e500deeb7c5b1ba40f2d9368", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_3cb1eb87e500deeb7c5b1ba40f2d9368", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_3cb1eb87e500deeb7c5b1ba40f2d9368"}, "created_at": 1700082661.0432405, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_3cb1eb87e500deeb7c5b1ba40f2d9368\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions__subscription_contract_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.yml/dbt_utils_unique_combination_o_3cb1eb87e500deeb7c5b1ba40f2d9368.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, month, subscription_contract_status_id\n from dev_dkruh1.analytics___subscriptions__subscription_contract_monthly\n group by app_key, month, subscription_contract_status_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions__subscription_contract_monthly", "attached_node": "model.yoda.analytics___subscriptions__subscription_contract_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_ended_v2_1.6d6c36a6b0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__subscription_ended_v2')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_ended_v2_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__46b36fc0bd9c85b0daa308437a5256c5.sql", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_ended_v2_1.6d6c36a6b0", "fqn": ["yoda", "analytics", "subscriptions", "staging", "base", "analytics___subscriptions_stg__subscription_ended_v2", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_ended_v2_1"], "alias": "dbt_expectations_expect_table__46b36fc0bd9c85b0daa308437a5256c5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__46b36fc0bd9c85b0daa308437a5256c5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__46b36fc0bd9c85b0daa308437a5256c5"}, "created_at": 1700082661.1428616, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__46b36fc0bd9c85b0daa308437a5256c5\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__subscription_ended_v2", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__subscription_ended_v2"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.yml/dbt_expectations_expect_table__46b36fc0bd9c85b0daa308437a5256c5.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__subscription_ended_v2\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__subscription_ended_v2", "attached_node": "model.yoda.analytics___subscriptions_stg__subscription_ended_v2"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_started_v2_1.548aa7a7be": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__subscription_started_v2')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_started_v2_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f4c116feecc07e5d583ed99ec0835b7c.sql", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_started_v2_1.548aa7a7be", "fqn": ["yoda", "analytics", "subscriptions", "staging", "base", "analytics___subscriptions_stg__subscription_started_v2", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_started_v2_1"], "alias": "dbt_expectations_expect_table__f4c116feecc07e5d583ed99ec0835b7c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f4c116feecc07e5d583ed99ec0835b7c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f4c116feecc07e5d583ed99ec0835b7c"}, "created_at": 1700082661.2146857, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f4c116feecc07e5d583ed99ec0835b7c\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__subscription_started_v2", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__subscription_started_v2"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.yml/dbt_expectations_expect_table__f4c116feecc07e5d583ed99ec0835b7c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__subscription_started_v2\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__subscription_started_v2", "attached_node": "model.yoda.analytics___subscriptions_stg__subscription_started_v2"}, "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_event_created_at.0d93935f72": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_created_at", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__contract_event_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__contract_event_details_event_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_6ac4d009332b0544c7a752c10a401bc7.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_event_created_at.0d93935f72", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_event_details", "not_null_analytics___subscriptions_stg__contract_event_details_event_created_at"], "alias": "not_null_analytics___subscript_6ac4d009332b0544c7a752c10a401bc7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_6ac4d009332b0544c7a752c10a401bc7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_6ac4d009332b0544c7a752c10a401bc7"}, "created_at": 1700082661.2420638, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_6ac4d009332b0544c7a752c10a401bc7\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__contract_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__contract_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml/not_null_analytics___subscript_6ac4d009332b0544c7a752c10a401bc7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__contract_event_details where event_created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_created_at", "file_key_name": "models.analytics___subscriptions_stg__contract_event_details", "attached_node": "model.yoda.analytics___subscriptions_stg__contract_event_details"}, "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_app_key.fd876ab8bb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__contract_event_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__contract_event_details_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_b9b8ced83e4dcd81e3afa18094ee6869.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_app_key.fd876ab8bb", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_event_details", "not_null_analytics___subscriptions_stg__contract_event_details_app_key"], "alias": "not_null_analytics___subscript_b9b8ced83e4dcd81e3afa18094ee6869", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_b9b8ced83e4dcd81e3afa18094ee6869", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_b9b8ced83e4dcd81e3afa18094ee6869"}, "created_at": 1700082661.2479062, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_b9b8ced83e4dcd81e3afa18094ee6869\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__contract_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__contract_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml/not_null_analytics___subscript_b9b8ced83e4dcd81e3afa18094ee6869.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__contract_event_details where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions_stg__contract_event_details", "attached_node": "model.yoda.analytics___subscriptions_stg__contract_event_details"}, "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_contract_id.cb1646dc14": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "contract_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__contract_event_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__contract_event_details_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_455b993915e25d38447fee7dd3daac0e.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_contract_id.cb1646dc14", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_event_details", "not_null_analytics___subscriptions_stg__contract_event_details_contract_id"], "alias": "not_null_analytics___subscript_455b993915e25d38447fee7dd3daac0e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_455b993915e25d38447fee7dd3daac0e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_455b993915e25d38447fee7dd3daac0e"}, "created_at": 1700082661.253307, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_455b993915e25d38447fee7dd3daac0e\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__contract_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__contract_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml/not_null_analytics___subscript_455b993915e25d38447fee7dd3daac0e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__contract_event_details where contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "contract_id", "file_key_name": "models.analytics___subscriptions_stg__contract_event_details", "attached_node": "model.yoda.analytics___subscriptions_stg__contract_event_details"}, "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_status_id.fdfae2edbf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "status_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__contract_event_details')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__contract_event_details_status_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_0359def4b27d03910bd254131a43a91c.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_status_id.fdfae2edbf", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_event_details", "not_null_analytics___subscriptions_stg__contract_event_details_status_id"], "alias": "not_null_analytics___subscript_0359def4b27d03910bd254131a43a91c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_0359def4b27d03910bd254131a43a91c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_0359def4b27d03910bd254131a43a91c"}, "created_at": 1700082661.2591944, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_0359def4b27d03910bd254131a43a91c\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__contract_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__contract_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml/not_null_analytics___subscript_0359def4b27d03910bd254131a43a91c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__contract_event_details where status_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "status_id", "file_key_name": "models.analytics___subscriptions_stg__contract_event_details", "attached_node": "model.yoda.analytics___subscriptions_stg__contract_event_details"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_event_details_1.708aff8138": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__contract_event_details')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_event_details_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__71ed5af40cba756f131c78d79ab2c734.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_event_details_1.708aff8138", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_event_details", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_event_details_1"], "alias": "dbt_expectations_expect_table__71ed5af40cba756f131c78d79ab2c734", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__71ed5af40cba756f131c78d79ab2c734", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__71ed5af40cba756f131c78d79ab2c734"}, "created_at": 1700082661.2650971, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__71ed5af40cba756f131c78d79ab2c734\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__contract_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__contract_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml/dbt_expectations_expect_table__71ed5af40cba756f131c78d79ab2c734.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__contract_event_details\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__contract_event_details", "attached_node": "model.yoda.analytics___subscriptions_stg__contract_event_details"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_event_details_app_key__event_created_at__contract_id.7776609e85": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "event_created_at", "contract_id"], "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__contract_event_details')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_event_details_app_key__event_created_at__contract_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_7f0e8561310d11f58a1f4a2ae5a93942.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_event_details_app_key__event_created_at__contract_id.7776609e85", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_event_details", "dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_event_details_app_key__event_created_at__contract_id"], "alias": "dbt_utils_unique_combination_o_7f0e8561310d11f58a1f4a2ae5a93942", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_7f0e8561310d11f58a1f4a2ae5a93942", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_7f0e8561310d11f58a1f4a2ae5a93942"}, "created_at": 1700082661.272543, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_7f0e8561310d11f58a1f4a2ae5a93942\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__contract_event_details", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__contract_event_details"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.yml/dbt_utils_unique_combination_o_7f0e8561310d11f58a1f4a2ae5a93942.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, event_created_at, contract_id\n from dev_dkruh1.analytics___subscriptions_stg__contract_event_details\n group by app_key, event_created_at, contract_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__contract_event_details", "attached_node": "model.yoda.analytics___subscriptions_stg__contract_event_details"}, "test.yoda.not_null_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id.c8fafa20ce": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_contract_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__contract_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_02ec49b1e33377491ba449da6100539c.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id.c8fafa20ce", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_snapshot", "not_null_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id"], "alias": "not_null_analytics___subscript_02ec49b1e33377491ba449da6100539c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_02ec49b1e33377491ba449da6100539c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_02ec49b1e33377491ba449da6100539c"}, "created_at": 1700082661.3039145, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_02ec49b1e33377491ba449da6100539c\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__contract_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__contract_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.yml/not_null_analytics___subscript_02ec49b1e33377491ba449da6100539c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__contract_snapshot where subscription_contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_id", "file_key_name": "models.analytics___subscriptions_stg__contract_snapshot", "attached_node": "model.yoda.analytics___subscriptions_stg__contract_snapshot"}, "test.yoda.not_null_analytics___subscriptions_stg__contract_snapshot_app_key.effd01aca2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__contract_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__contract_snapshot_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_9733b7482e725d6d20a031e0f85a3274.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__contract_snapshot_app_key.effd01aca2", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_snapshot", "not_null_analytics___subscriptions_stg__contract_snapshot_app_key"], "alias": "not_null_analytics___subscript_9733b7482e725d6d20a031e0f85a3274", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_9733b7482e725d6d20a031e0f85a3274", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_9733b7482e725d6d20a031e0f85a3274"}, "created_at": 1700082661.310404, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_9733b7482e725d6d20a031e0f85a3274\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__contract_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__contract_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.yml/not_null_analytics___subscript_9733b7482e725d6d20a031e0f85a3274.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__contract_snapshot where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions_stg__contract_snapshot", "attached_node": "model.yoda.analytics___subscriptions_stg__contract_snapshot"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_snapshot_1.b7c50a7e65": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__contract_snapshot')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_snapshot_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0f370704f05928c922c3a79e86fff47f.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_snapshot_1.b7c50a7e65", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_snapshot", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_snapshot_1"], "alias": "dbt_expectations_expect_table__0f370704f05928c922c3a79e86fff47f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0f370704f05928c922c3a79e86fff47f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0f370704f05928c922c3a79e86fff47f"}, "created_at": 1700082661.3190508, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0f370704f05928c922c3a79e86fff47f\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__contract_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__contract_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.yml/dbt_expectations_expect_table__0f370704f05928c922c3a79e86fff47f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__contract_snapshot\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__contract_snapshot", "attached_node": "model.yoda.analytics___subscriptions_stg__contract_snapshot"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id__app_key__updated_at.d0faa80564": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["subscription_contract_id", "app_key", "updated_at"], "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__contract_snapshot')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id__app_key__updated_at", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_be8a26d819c5ac4672af3a0481d1cc67.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id__app_key__updated_at.d0faa80564", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__contract_snapshot", "dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id__app_key__updated_at"], "alias": "dbt_utils_unique_combination_o_be8a26d819c5ac4672af3a0481d1cc67", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_be8a26d819c5ac4672af3a0481d1cc67", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_be8a26d819c5ac4672af3a0481d1cc67"}, "created_at": 1700082661.327837, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_be8a26d819c5ac4672af3a0481d1cc67\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__contract_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__contract_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.yml/dbt_utils_unique_combination_o_be8a26d819c5ac4672af3a0481d1cc67.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n subscription_contract_id, app_key, updated_at\n from dev_dkruh1.analytics___subscriptions_stg__contract_snapshot\n group by subscription_contract_id, app_key, updated_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__contract_snapshot", "attached_node": "model.yoda.analytics___subscriptions_stg__contract_snapshot"}, "test.yoda.not_null_analytics___subscriptions_stg__customer_journey_event_journey_event_id.9b3eedfd0f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "journey_event_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__customer_journey_event_journey_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_5734c165d9706d1ccc1bf796cb55a167.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__customer_journey_event_journey_event_id.9b3eedfd0f", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__customer_journey_event", "not_null_analytics___subscriptions_stg__customer_journey_event_journey_event_id"], "alias": "not_null_analytics___subscript_5734c165d9706d1ccc1bf796cb55a167", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_5734c165d9706d1ccc1bf796cb55a167", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_5734c165d9706d1ccc1bf796cb55a167"}, "created_at": 1700082661.3595564, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_5734c165d9706d1ccc1bf796cb55a167\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.yml/not_null_analytics___subscript_5734c165d9706d1ccc1bf796cb55a167.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__customer_journey_event where journey_event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "journey_event_id", "file_key_name": "models.analytics___subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.analytics___subscriptions_stg__customer_journey_event"}, "test.yoda.unique_analytics___subscriptions_stg__customer_journey_event_journey_event_id.c80c9d4ef0": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "journey_event_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__customer_journey_event_journey_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptio_dc7ec736620d941af324463ae58f667d.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__customer_journey_event_journey_event_id.c80c9d4ef0", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__customer_journey_event", "unique_analytics___subscriptions_stg__customer_journey_event_journey_event_id"], "alias": "unique_analytics___subscriptio_dc7ec736620d941af324463ae58f667d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___subscriptio_dc7ec736620d941af324463ae58f667d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___subscriptio_dc7ec736620d941af324463ae58f667d"}, "created_at": 1700082661.3653498, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___subscriptio_dc7ec736620d941af324463ae58f667d\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.yml/unique_analytics___subscriptio_dc7ec736620d941af324463ae58f667d.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select journey_event_id from dev_dkruh1.analytics___subscriptions_stg__customer_journey_event where journey_event_id is not null group by journey_event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "journey_event_id", "file_key_name": "models.analytics___subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.analytics___subscriptions_stg__customer_journey_event"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__customer_journey_event_1.e2a10c9828": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__customer_journey_event')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__customer_journey_event_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__866c264f359fb0765ffc924fff6eef16.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__customer_journey_event_1.e2a10c9828", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__customer_journey_event", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__customer_journey_event_1"], "alias": "dbt_expectations_expect_table__866c264f359fb0765ffc924fff6eef16", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__866c264f359fb0765ffc924fff6eef16", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__866c264f359fb0765ffc924fff6eef16"}, "created_at": 1700082661.3708074, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__866c264f359fb0765ffc924fff6eef16\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.yml/dbt_expectations_expect_table__866c264f359fb0765ffc924fff6eef16.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__customer_journey_event\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.analytics___subscriptions_stg__customer_journey_event"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_product_product_id.af3ee8cbb8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_product_product_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscriptions_stg__mc_product_product_id.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_product_product_id.af3ee8cbb8", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_product", "not_null_analytics___subscriptions_stg__mc_product_product_id"], "alias": "not_null_analytics___subscriptions_stg__mc_product_product_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082661.40561, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.yml/not_null_analytics___subscriptions_stg__mc_product_product_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_product where product_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_id", "file_key_name": "models.analytics___subscriptions_stg__mc_product", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_product"}, "test.yoda.unique_analytics___subscriptions_stg__mc_product_product_id.4c52e4bd15": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "product_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__mc_product_product_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptions_stg__mc_product_product_id.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__mc_product_product_id.4c52e4bd15", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_product", "unique_analytics___subscriptions_stg__mc_product_product_id"], "alias": "unique_analytics___subscriptions_stg__mc_product_product_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082661.4110334, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.yml/unique_analytics___subscriptions_stg__mc_product_product_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select product_id from dev_dkruh1.analytics___subscriptions_stg__mc_product where product_id is not null group by product_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_id", "file_key_name": "models.analytics___subscriptions_stg__mc_product", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_product"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_product_1.a71b24154f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_product')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_product_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__83311f0613e4b5827556cfd1627f50ce.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_product_1.a71b24154f", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_product", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_product_1"], "alias": "dbt_expectations_expect_table__83311f0613e4b5827556cfd1627f50ce", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__83311f0613e4b5827556cfd1627f50ce", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__83311f0613e4b5827556cfd1627f50ce"}, "created_at": 1700082661.4165187, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__83311f0613e4b5827556cfd1627f50ce\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.yml/dbt_expectations_expect_table__83311f0613e4b5827556cfd1627f50ce.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__mc_product\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__mc_product", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_product"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id.d7668b80cb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "selling_plan_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_selling_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_b91cae0a21305febcaaa04d6bf3381e3.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id.d7668b80cb", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_selling_plan", "not_null_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id"], "alias": "not_null_analytics___subscript_b91cae0a21305febcaaa04d6bf3381e3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_b91cae0a21305febcaaa04d6bf3381e3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_b91cae0a21305febcaaa04d6bf3381e3"}, "created_at": 1700082661.4378965, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_b91cae0a21305febcaaa04d6bf3381e3\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_selling_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.yml/not_null_analytics___subscript_b91cae0a21305febcaaa04d6bf3381e3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_selling_plan where selling_plan_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "selling_plan_id", "file_key_name": "models.analytics___subscriptions_stg__mc_selling_plan", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_selling_plan"}, "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id.59fd8b105c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "selling_plan_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_selling_plan')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptio_61163d190aec20b70a2572f5d811aed5.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id.59fd8b105c", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_selling_plan", "unique_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id"], "alias": "unique_analytics___subscriptio_61163d190aec20b70a2572f5d811aed5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___subscriptio_61163d190aec20b70a2572f5d811aed5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___subscriptio_61163d190aec20b70a2572f5d811aed5"}, "created_at": 1700082661.4449277, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___subscriptio_61163d190aec20b70a2572f5d811aed5\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_selling_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.yml/unique_analytics___subscriptio_61163d190aec20b70a2572f5d811aed5.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select selling_plan_id from dev_dkruh1.analytics___subscriptions_stg__mc_selling_plan where selling_plan_id is not null group by selling_plan_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "selling_plan_id", "file_key_name": "models.analytics___subscriptions_stg__mc_selling_plan", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_selling_plan"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_1.407e580603": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_selling_plan')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5f24fc4eb598ed4fb8d04838273c08ee.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_1.407e580603", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_selling_plan", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_1"], "alias": "dbt_expectations_expect_table__5f24fc4eb598ed4fb8d04838273c08ee", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5f24fc4eb598ed4fb8d04838273c08ee", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5f24fc4eb598ed4fb8d04838273c08ee"}, "created_at": 1700082661.4507453, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5f24fc4eb598ed4fb8d04838273c08ee\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_selling_plan", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.yml/dbt_expectations_expect_table__5f24fc4eb598ed4fb8d04838273c08ee.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__mc_selling_plan\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__mc_selling_plan", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_selling_plan"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id.d2f7df0555": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "selling_plan_group_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_selling_plan_group')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_96e3cea0c82772725d043ef03356f49c.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id.d2f7df0555", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_selling_plan_group", "not_null_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id"], "alias": "not_null_analytics___subscript_96e3cea0c82772725d043ef03356f49c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_96e3cea0c82772725d043ef03356f49c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_96e3cea0c82772725d043ef03356f49c"}, "created_at": 1700082661.471863, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_96e3cea0c82772725d043ef03356f49c\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_selling_plan_group", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan_group"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.yml/not_null_analytics___subscript_96e3cea0c82772725d043ef03356f49c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_selling_plan_group where selling_plan_group_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "selling_plan_group_id", "file_key_name": "models.analytics___subscriptions_stg__mc_selling_plan_group", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group"}, "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id.b9cc1e66c4": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "selling_plan_group_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_selling_plan_group')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptio_4377227513be8bc02f4eaa22c9fb5a6d.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id.b9cc1e66c4", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_selling_plan_group", "unique_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id"], "alias": "unique_analytics___subscriptio_4377227513be8bc02f4eaa22c9fb5a6d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___subscriptio_4377227513be8bc02f4eaa22c9fb5a6d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___subscriptio_4377227513be8bc02f4eaa22c9fb5a6d"}, "created_at": 1700082661.477753, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___subscriptio_4377227513be8bc02f4eaa22c9fb5a6d\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_selling_plan_group", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan_group"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.yml/unique_analytics___subscriptio_4377227513be8bc02f4eaa22c9fb5a6d.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select selling_plan_group_id from dev_dkruh1.analytics___subscriptions_stg__mc_selling_plan_group where selling_plan_group_id is not null group by selling_plan_group_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "selling_plan_group_id", "file_key_name": "models.analytics___subscriptions_stg__mc_selling_plan_group", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id.7b725cc447": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "selling_plan_group_product_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_selling_plan_group_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_4da3087f06f068b76d3d77b6dd255169.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id.7b725cc447", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_selling_plan_group_product", "not_null_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id"], "alias": "not_null_analytics___subscript_4da3087f06f068b76d3d77b6dd255169", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_4da3087f06f068b76d3d77b6dd255169", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_4da3087f06f068b76d3d77b6dd255169"}, "created_at": 1700082661.4962378, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_4da3087f06f068b76d3d77b6dd255169\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_selling_plan_group_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.yml/not_null_analytics___subscript_4da3087f06f068b76d3d77b6dd255169.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_selling_plan_group_product where selling_plan_group_product_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "selling_plan_group_product_id", "file_key_name": "models.analytics___subscriptions_stg__mc_selling_plan_group_product", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product"}, "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id.df899a9d29": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "selling_plan_group_product_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_selling_plan_group_product')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptio_4cb5e16614f0f2664d722e23960c2b48.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id.df899a9d29", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_selling_plan_group_product", "unique_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id"], "alias": "unique_analytics___subscriptio_4cb5e16614f0f2664d722e23960c2b48", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___subscriptio_4cb5e16614f0f2664d722e23960c2b48", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___subscriptio_4cb5e16614f0f2664d722e23960c2b48"}, "created_at": 1700082661.5030494, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___subscriptio_4cb5e16614f0f2664d722e23960c2b48\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_selling_plan_group_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.yml/unique_analytics___subscriptio_4cb5e16614f0f2664d722e23960c2b48.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select selling_plan_group_product_id from dev_dkruh1.analytics___subscriptions_stg__mc_selling_plan_group_product where selling_plan_group_product_id is not null group by selling_plan_group_product_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "selling_plan_group_product_id", "file_key_name": "models.analytics___subscriptions_stg__mc_selling_plan_group_product", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_group_product_1.ebc32382de": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_selling_plan_group_product')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_group_product_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a036ef82226a3ffd83acbefc7024a572.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_group_product_1.ebc32382de", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_selling_plan_group_product", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_group_product_1"], "alias": "dbt_expectations_expect_table__a036ef82226a3ffd83acbefc7024a572", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a036ef82226a3ffd83acbefc7024a572", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a036ef82226a3ffd83acbefc7024a572"}, "created_at": 1700082661.5090213, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a036ef82226a3ffd83acbefc7024a572\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_selling_plan_group_product", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.yml/dbt_expectations_expect_table__a036ef82226a3ffd83acbefc7024a572.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__mc_selling_plan_group_product\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__mc_selling_plan_group_product", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product"}, "test.yoda.unique_analytics___subscriptions_stg__mc_status_status_id.2b49d6d937": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "status_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__mc_status_status_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptions_stg__mc_status_status_id.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__mc_status_status_id.2b49d6d937", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_status", "unique_analytics___subscriptions_stg__mc_status_status_id"], "alias": "unique_analytics___subscriptions_stg__mc_status_status_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082661.5296965, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_status"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.yml/unique_analytics___subscriptions_stg__mc_status_status_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select status_id from dev_dkruh1.analytics___subscriptions_stg__mc_status where status_id is not null group by status_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "status_id", "file_key_name": "models.analytics___subscriptions_stg__mc_status", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_status"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_id.a541e7b3ac": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "status_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_status_status_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscriptions_stg__mc_status_status_id.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_id.a541e7b3ac", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_status", "not_null_analytics___subscriptions_stg__mc_status_status_id"], "alias": "not_null_analytics___subscriptions_stg__mc_status_status_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082661.5351562, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_status"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.yml/not_null_analytics___subscriptions_stg__mc_status_status_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_status where status_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "status_id", "file_key_name": "models.analytics___subscriptions_stg__mc_status", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_status"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_number.ad6508ce95": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "status_number", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_status_status_number", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscriptions_stg__mc_status_status_number.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_number.ad6508ce95", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_status", "not_null_analytics___subscriptions_stg__mc_status_status_number"], "alias": "not_null_analytics___subscriptions_stg__mc_status_status_number", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082661.5404766, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_status"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.yml/not_null_analytics___subscriptions_stg__mc_status_status_number.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_status where status_number is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "status_number", "file_key_name": "models.analytics___subscriptions_stg__mc_status", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_status"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_name.254ed69a12": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "status_name", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_status_status_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscriptions_stg__mc_status_status_name.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_name.254ed69a12", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_status", "not_null_analytics___subscriptions_stg__mc_status_status_name"], "alias": "not_null_analytics___subscriptions_stg__mc_status_status_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082661.5466704, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_status"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.yml/not_null_analytics___subscriptions_stg__mc_status_status_name.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_status where status_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "status_name", "file_key_name": "models.analytics___subscriptions_stg__mc_status", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_status"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_status_1.854cb7f2ef": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_status')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_status_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__010070b5948854b72db0383896026e70.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_status_1.854cb7f2ef", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_status", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_status_1"], "alias": "dbt_expectations_expect_table__010070b5948854b72db0383896026e70", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__010070b5948854b72db0383896026e70", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__010070b5948854b72db0383896026e70"}, "created_at": 1700082661.55217, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__010070b5948854b72db0383896026e70\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_status"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.yml/dbt_expectations_expect_table__010070b5948854b72db0383896026e70.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__mc_status\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__mc_status", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_status"}, "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id.915c60d6c0": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "subscription_contract_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptio_c816edb085824e4e59db61cf564a5b94.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id.915c60d6c0", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_contract", "unique_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id"], "alias": "unique_analytics___subscriptio_c816edb085824e4e59db61cf564a5b94", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___subscriptio_c816edb085824e4e59db61cf564a5b94", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___subscriptio_c816edb085824e4e59db61cf564a5b94"}, "created_at": 1700082661.5802872, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___subscriptio_c816edb085824e4e59db61cf564a5b94\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.yml/unique_analytics___subscriptio_c816edb085824e4e59db61cf564a5b94.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select subscription_contract_id from dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract where subscription_contract_id is not null group by subscription_contract_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_id", "file_key_name": "models.analytics___subscriptions_stg__mc_subscription_contract", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_subscription_contract"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id.32d06bde10": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_contract_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_565326907d916a9522adfb08d44f6760.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id.32d06bde10", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_contract", "not_null_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id"], "alias": "not_null_analytics___subscript_565326907d916a9522adfb08d44f6760", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_565326907d916a9522adfb08d44f6760", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_565326907d916a9522adfb08d44f6760"}, "created_at": 1700082661.5860214, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_565326907d916a9522adfb08d44f6760\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.yml/not_null_analytics___subscript_565326907d916a9522adfb08d44f6760.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract where subscription_contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_id", "file_key_name": "models.analytics___subscriptions_stg__mc_subscription_contract", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_subscription_contract"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_app_key.f2d2b80d1f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_subscription_contract_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_6d2d64c1f2a28c756700ad8c338e374c.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_app_key.f2d2b80d1f", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_contract", "not_null_analytics___subscriptions_stg__mc_subscription_contract_app_key"], "alias": "not_null_analytics___subscript_6d2d64c1f2a28c756700ad8c338e374c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_6d2d64c1f2a28c756700ad8c338e374c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_6d2d64c1f2a28c756700ad8c338e374c"}, "created_at": 1700082661.591978, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_6d2d64c1f2a28c756700ad8c338e374c\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.yml/not_null_analytics___subscript_6d2d64c1f2a28c756700ad8c338e374c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions_stg__mc_subscription_contract", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_subscription_contract"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_1.702fb87f22": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_subscription_contract')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6b9b31f62b5335d52d5e9a0fd27265ca.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_1.702fb87f22", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_contract", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_1"], "alias": "dbt_expectations_expect_table__6b9b31f62b5335d52d5e9a0fd27265ca", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6b9b31f62b5335d52d5e9a0fd27265ca", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6b9b31f62b5335d52d5e9a0fd27265ca"}, "created_at": 1700082661.5976202, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6b9b31f62b5335d52d5e9a0fd27265ca\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.yml/dbt_expectations_expect_table__6b9b31f62b5335d52d5e9a0fd27265ca.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__mc_subscription_contract", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_subscription_contract"}, "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id.9359322c5e": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "subscription_contract_order_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptio_32b6b24528349ae3146d7e02476fadb4.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id.9359322c5e", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_contract_order", "unique_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id"], "alias": "unique_analytics___subscriptio_32b6b24528349ae3146d7e02476fadb4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___subscriptio_32b6b24528349ae3146d7e02476fadb4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___subscriptio_32b6b24528349ae3146d7e02476fadb4"}, "created_at": 1700082661.620718, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___subscriptio_32b6b24528349ae3146d7e02476fadb4\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.yml/unique_analytics___subscriptio_32b6b24528349ae3146d7e02476fadb4.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select subscription_contract_order_id from dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract_order where subscription_contract_order_id is not null group by subscription_contract_order_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_order_id", "file_key_name": "models.analytics___subscriptions_stg__mc_subscription_contract_order", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id.3bf0d39584": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_contract_order_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_d513422fbef249f8ff4420ef7614067d.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id.3bf0d39584", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_contract_order", "not_null_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id"], "alias": "not_null_analytics___subscript_d513422fbef249f8ff4420ef7614067d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_d513422fbef249f8ff4420ef7614067d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_d513422fbef249f8ff4420ef7614067d"}, "created_at": 1700082661.6262186, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_d513422fbef249f8ff4420ef7614067d\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.yml/not_null_analytics___subscript_d513422fbef249f8ff4420ef7614067d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract_order where subscription_contract_order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_order_id", "file_key_name": "models.analytics___subscriptions_stg__mc_subscription_contract_order", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_order_app_key.a1c6a31e25": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_subscription_contract_order_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_eea303a70bac38029198230c6a3d317e.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_order_app_key.a1c6a31e25", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_contract_order", "not_null_analytics___subscriptions_stg__mc_subscription_contract_order_app_key"], "alias": "not_null_analytics___subscript_eea303a70bac38029198230c6a3d317e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_eea303a70bac38029198230c6a3d317e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_eea303a70bac38029198230c6a3d317e"}, "created_at": 1700082661.6333237, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_eea303a70bac38029198230c6a3d317e\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.yml/not_null_analytics___subscript_eea303a70bac38029198230c6a3d317e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract_order where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions_stg__mc_subscription_contract_order", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_order_1.b320df335e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_subscription_contract_order')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_order_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ebf1dd8b93386df19e32dcd6fe820799.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_order_1.b320df335e", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_contract_order", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_order_1"], "alias": "dbt_expectations_expect_table__ebf1dd8b93386df19e32dcd6fe820799", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ebf1dd8b93386df19e32dcd6fe820799", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ebf1dd8b93386df19e32dcd6fe820799"}, "created_at": 1700082661.639052, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ebf1dd8b93386df19e32dcd6fe820799\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.yml/dbt_expectations_expect_table__ebf1dd8b93386df19e32dcd6fe820799.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__mc_subscription_contract_order\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__mc_subscription_contract_order", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"}, "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id.21230cd84a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "creation_request_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_subscription_creation_request')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_33bbe125f68b00d13a805a60ea9d1295.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id.21230cd84a", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_creation_request", "not_null_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id"], "alias": "not_null_analytics___subscript_33bbe125f68b00d13a805a60ea9d1295", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_33bbe125f68b00d13a805a60ea9d1295", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_33bbe125f68b00d13a805a60ea9d1295"}, "created_at": 1700082661.6617951, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_33bbe125f68b00d13a805a60ea9d1295\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_creation_request", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.yml/not_null_analytics___subscript_33bbe125f68b00d13a805a60ea9d1295.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__mc_subscription_creation_request where creation_request_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "creation_request_id", "file_key_name": "models.analytics___subscriptions_stg__mc_subscription_creation_request", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request"}, "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id.1abd886432": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "creation_request_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_subscription_creation_request')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptio_96103ec65a23ba64830a20783dedcfc5.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id.1abd886432", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_creation_request", "unique_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id"], "alias": "unique_analytics___subscriptio_96103ec65a23ba64830a20783dedcfc5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___subscriptio_96103ec65a23ba64830a20783dedcfc5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___subscriptio_96103ec65a23ba64830a20783dedcfc5"}, "created_at": 1700082661.6675313, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___subscriptio_96103ec65a23ba64830a20783dedcfc5\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_creation_request", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.yml/unique_analytics___subscriptio_96103ec65a23ba64830a20783dedcfc5.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select creation_request_id from dev_dkruh1.analytics___subscriptions_stg__mc_subscription_creation_request where creation_request_id is not null group by creation_request_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "creation_request_id", "file_key_name": "models.analytics___subscriptions_stg__mc_subscription_creation_request", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_creation_request_1.d94bb1038d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__mc_subscription_creation_request')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_creation_request_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5f1188b1f0250512615e0aa513b7069f.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_creation_request_1.d94bb1038d", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__mc_subscription_creation_request", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_creation_request_1"], "alias": "dbt_expectations_expect_table__5f1188b1f0250512615e0aa513b7069f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5f1188b1f0250512615e0aa513b7069f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5f1188b1f0250512615e0aa513b7069f"}, "created_at": 1700082661.6732469, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5f1188b1f0250512615e0aa513b7069f\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_creation_request", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.yml/dbt_expectations_expect_table__5f1188b1f0250512615e0aa513b7069f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__mc_subscription_creation_request\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__mc_subscription_creation_request", "attached_node": "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request"}, "test.yoda.unique_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id.66f95d75ca": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__segment_subscription_ended_v_two')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptio_5c99091445fa201ee8bd245435e18ffa.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id.66f95d75ca", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__segment_subscription_ended_v_two", "unique_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id"], "alias": "unique_analytics___subscriptio_5c99091445fa201ee8bd245435e18ffa", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___subscriptio_5c99091445fa201ee8bd245435e18ffa", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___subscriptio_5c99091445fa201ee8bd245435e18ffa"}, "created_at": 1700082661.6960068, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___subscriptio_5c99091445fa201ee8bd245435e18ffa\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.yml/unique_analytics___subscriptio_5c99091445fa201ee8bd245435e18ffa.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___subscriptions_stg__segment_subscription_ended_v_two where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___subscriptions_stg__segment_subscription_ended_v_two", "attached_node": "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two"}, "test.yoda.not_null_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id.0ec80372f0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__segment_subscription_ended_v_two')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_8553aa5bd424f63d2a40b517f3d90573.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id.0ec80372f0", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__segment_subscription_ended_v_two", "not_null_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id"], "alias": "not_null_analytics___subscript_8553aa5bd424f63d2a40b517f3d90573", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_8553aa5bd424f63d2a40b517f3d90573", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_8553aa5bd424f63d2a40b517f3d90573"}, "created_at": 1700082661.7017663, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_8553aa5bd424f63d2a40b517f3d90573\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.yml/not_null_analytics___subscript_8553aa5bd424f63d2a40b517f3d90573.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__segment_subscription_ended_v_two where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___subscriptions_stg__segment_subscription_ended_v_two", "attached_node": "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_ended_v_two_1.bedc844c4a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__segment_subscription_ended_v_two')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_ended_v_two_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__5ae5c313481f239897675992c9c026b0.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_ended_v_two_1.bedc844c4a", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__segment_subscription_ended_v_two", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_ended_v_two_1"], "alias": "dbt_expectations_expect_table__5ae5c313481f239897675992c9c026b0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__5ae5c313481f239897675992c9c026b0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__5ae5c313481f239897675992c9c026b0"}, "created_at": 1700082661.70788, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__5ae5c313481f239897675992c9c026b0\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.yml/dbt_expectations_expect_table__5ae5c313481f239897675992c9c026b0.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__segment_subscription_ended_v_two\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__segment_subscription_ended_v_two", "attached_node": "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two"}, "test.yoda.unique_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id.d42993d6a1": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__segment_subscription_started_v_two')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptio_5c90722ec7f48d723517ef0b3a096f30.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id.d42993d6a1", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__segment_subscription_started_v_two", "unique_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id"], "alias": "unique_analytics___subscriptio_5c90722ec7f48d723517ef0b3a096f30", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___subscriptio_5c90722ec7f48d723517ef0b3a096f30", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___subscriptio_5c90722ec7f48d723517ef0b3a096f30"}, "created_at": 1700082661.7296007, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___subscriptio_5c90722ec7f48d723517ef0b3a096f30\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__segment_subscription_started_v_two", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.yml/unique_analytics___subscriptio_5c90722ec7f48d723517ef0b3a096f30.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select event_id from dev_dkruh1.analytics___subscriptions_stg__segment_subscription_started_v_two where event_id is not null group by event_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___subscriptions_stg__segment_subscription_started_v_two", "attached_node": "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two"}, "test.yoda.not_null_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id.6ffdf73ddf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__segment_subscription_started_v_two')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_d5c62fd380fb3596b4afa38749c2473f.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id.6ffdf73ddf", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__segment_subscription_started_v_two", "not_null_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id"], "alias": "not_null_analytics___subscript_d5c62fd380fb3596b4afa38749c2473f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_d5c62fd380fb3596b4afa38749c2473f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_d5c62fd380fb3596b4afa38749c2473f"}, "created_at": 1700082661.7352898, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_d5c62fd380fb3596b4afa38749c2473f\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__segment_subscription_started_v_two", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.yml/not_null_analytics___subscript_d5c62fd380fb3596b4afa38749c2473f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__segment_subscription_started_v_two where event_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.analytics___subscriptions_stg__segment_subscription_started_v_two", "attached_node": "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_started_v_two_1.ecf07b9f7b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__segment_subscription_started_v_two')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_started_v_two_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__353599b83454f6eba029b7cb172a7782.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_started_v_two_1.ecf07b9f7b", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__segment_subscription_started_v_two", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_started_v_two_1"], "alias": "dbt_expectations_expect_table__353599b83454f6eba029b7cb172a7782", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__353599b83454f6eba029b7cb172a7782", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__353599b83454f6eba029b7cb172a7782"}, "created_at": 1700082661.741028, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__353599b83454f6eba029b7cb172a7782\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__segment_subscription_started_v_two", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.yml/dbt_expectations_expect_table__353599b83454f6eba029b7cb172a7782.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__segment_subscription_started_v_two\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__segment_subscription_started_v_two", "attached_node": "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two"}, "test.yoda.not_null_analytics___subscriptions_stg__subscriptions_store_app_key.7942022444": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__subscriptions_store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___subscriptions_stg__subscriptions_store_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___subscript_a9f1b4076b955be20b997d74f97b6737.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.yml", "unique_id": "test.yoda.not_null_analytics___subscriptions_stg__subscriptions_store_app_key.7942022444", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__subscriptions_store", "not_null_analytics___subscriptions_stg__subscriptions_store_app_key"], "alias": "not_null_analytics___subscript_a9f1b4076b955be20b997d74f97b6737", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___subscript_a9f1b4076b955be20b997d74f97b6737", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___subscript_a9f1b4076b955be20b997d74f97b6737"}, "created_at": 1700082661.7659924, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___subscript_a9f1b4076b955be20b997d74f97b6737\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__subscriptions_store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__subscriptions_store"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.yml/not_null_analytics___subscript_a9f1b4076b955be20b997d74f97b6737.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___subscriptions_stg__subscriptions_store where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions_stg__subscriptions_store", "attached_node": "model.yoda.analytics___subscriptions_stg__subscriptions_store"}, "test.yoda.unique_analytics___subscriptions_stg__subscriptions_store_app_key.3886a3df6b": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__subscriptions_store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___subscriptions_stg__subscriptions_store_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___subscriptio_690142b4e100ab5b3ba1de382aa49612.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.yml", "unique_id": "test.yoda.unique_analytics___subscriptions_stg__subscriptions_store_app_key.3886a3df6b", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__subscriptions_store", "unique_analytics___subscriptions_stg__subscriptions_store_app_key"], "alias": "unique_analytics___subscriptio_690142b4e100ab5b3ba1de382aa49612", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___subscriptio_690142b4e100ab5b3ba1de382aa49612", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___subscriptio_690142b4e100ab5b3ba1de382aa49612"}, "created_at": 1700082661.7718666, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___subscriptio_690142b4e100ab5b3ba1de382aa49612\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__subscriptions_store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__subscriptions_store"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.yml/unique_analytics___subscriptio_690142b4e100ab5b3ba1de382aa49612.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___subscriptions_stg__subscriptions_store where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___subscriptions_stg__subscriptions_store", "attached_node": "model.yoda.analytics___subscriptions_stg__subscriptions_store"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscriptions_store_1.de18534c11": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___subscriptions_stg__subscriptions_store')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscriptions_store_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__91939bce5f8adc53997420cf13286961.sql", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscriptions_store_1.de18534c11", "fqn": ["yoda", "analytics", "subscriptions", "staging", "marts_compatible", "analytics___subscriptions_stg__subscriptions_store", "dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscriptions_store_1"], "alias": "dbt_expectations_expect_table__91939bce5f8adc53997420cf13286961", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__91939bce5f8adc53997420cf13286961", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__91939bce5f8adc53997420cf13286961"}, "created_at": 1700082661.7777908, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__91939bce5f8adc53997420cf13286961\") }}", "language": "sql", "refs": [{"name": "analytics___subscriptions_stg__subscriptions_store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___subscriptions_stg__subscriptions_store"]}, "compiled_path": "target/compiled/yoda/models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.yml/dbt_expectations_expect_table__91939bce5f8adc53997420cf13286961.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___subscriptions_stg__subscriptions_store\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___subscriptions_stg__subscriptions_store", "attached_node": "model.yoda.analytics___subscriptions_stg__subscriptions_store"}, "test.yoda.not_null_analytics___synergies__activation_level_daily_activeness_date.84e6dd6a57": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activeness_date", "model": "{{ get_where_subquery(ref('analytics___synergies__activation_level_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__activation_level_daily_activeness_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_c708a817e2f48f114d42eaa52add03db.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.yml", "unique_id": "test.yoda.not_null_analytics___synergies__activation_level_daily_activeness_date.84e6dd6a57", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__activation_level_daily", "not_null_analytics___synergies__activation_level_daily_activeness_date"], "alias": "not_null_analytics___synergies_c708a817e2f48f114d42eaa52add03db", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_c708a817e2f48f114d42eaa52add03db", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_c708a817e2f48f114d42eaa52add03db"}, "created_at": 1700082661.8587034, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_c708a817e2f48f114d42eaa52add03db\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__activation_level_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__activation_level_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.yml/not_null_analytics___synergies_c708a817e2f48f114d42eaa52add03db.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__activation_level_daily where activeness_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "activeness_date", "file_key_name": "models.analytics___synergies__activation_level_daily", "attached_node": "model.yoda.analytics___synergies__activation_level_daily"}, "test.yoda.not_null_analytics___synergies__activation_level_daily_app_key.72da946758": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__activation_level_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__activation_level_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies__activation_level_daily_app_key.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.yml", "unique_id": "test.yoda.not_null_analytics___synergies__activation_level_daily_app_key.72da946758", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__activation_level_daily", "not_null_analytics___synergies__activation_level_daily_app_key"], "alias": "not_null_analytics___synergies__activation_level_daily_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082661.8646476, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies__activation_level_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__activation_level_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.yml/not_null_analytics___synergies__activation_level_daily_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__activation_level_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__activation_level_daily", "attached_node": "model.yoda.analytics___synergies__activation_level_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__activation_level_daily_1.3140e90624": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__activation_level_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__activation_level_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4259a32d841628760f9e4ea0ad12d9e6.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__activation_level_daily_1.3140e90624", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__activation_level_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__activation_level_daily_1"], "alias": "dbt_expectations_expect_table__4259a32d841628760f9e4ea0ad12d9e6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4259a32d841628760f9e4ea0ad12d9e6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4259a32d841628760f9e4ea0ad12d9e6"}, "created_at": 1700082661.8697784, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4259a32d841628760f9e4ea0ad12d9e6\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__activation_level_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__activation_level_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.yml/dbt_expectations_expect_table__4259a32d841628760f9e4ea0ad12d9e6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__activation_level_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__activation_level_daily", "attached_node": "model.yoda.analytics___synergies__activation_level_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__activation_level_daily_activeness_date__app_key.b8424f7b0c": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["activeness_date", "app_key"], "model": "{{ get_where_subquery(ref('analytics___synergies__activation_level_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__activation_level_daily_activeness_date__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_2790ce7c5c1c992afe8e7ae87b87e378.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__activation_level_daily_activeness_date__app_key.b8424f7b0c", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__activation_level_daily", "dbt_utils_unique_combination_of_columns_analytics___synergies__activation_level_daily_activeness_date__app_key"], "alias": "dbt_utils_unique_combination_o_2790ce7c5c1c992afe8e7ae87b87e378", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_2790ce7c5c1c992afe8e7ae87b87e378", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_2790ce7c5c1c992afe8e7ae87b87e378"}, "created_at": 1700082661.8760653, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_2790ce7c5c1c992afe8e7ae87b87e378\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__activation_level_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__activation_level_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.yml/dbt_utils_unique_combination_o_2790ce7c5c1c992afe8e7ae87b87e378.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n activeness_date, app_key\n from dev_dkruh1.analytics___synergies__activation_level_daily\n group by activeness_date, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__activation_level_daily", "attached_node": "model.yoda.analytics___synergies__activation_level_daily"}, "test.yoda.not_null_analytics___synergies__eligible_store_monthly_synergy_month.aa5c8d2f0b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_month", "model": "{{ get_where_subquery(ref('analytics___synergies__eligible_store_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__eligible_store_monthly_synergy_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_4398f38975e5ee51f622c34c9ee80d23.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__eligible_store_monthly_synergy_month.aa5c8d2f0b", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__eligible_store_monthly", "not_null_analytics___synergies__eligible_store_monthly_synergy_month"], "alias": "not_null_analytics___synergies_4398f38975e5ee51f622c34c9ee80d23", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_4398f38975e5ee51f622c34c9ee80d23", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_4398f38975e5ee51f622c34c9ee80d23"}, "created_at": 1700082661.9025507, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_4398f38975e5ee51f622c34c9ee80d23\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__eligible_store_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__eligible_store_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.yml/not_null_analytics___synergies_4398f38975e5ee51f622c34c9ee80d23.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__eligible_store_monthly where synergy_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_month", "file_key_name": "models.analytics___synergies__eligible_store_monthly", "attached_node": "model.yoda.analytics___synergies__eligible_store_monthly"}, "test.yoda.not_null_analytics___synergies__eligible_store_monthly_app_key.1914c2f746": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__eligible_store_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__eligible_store_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies__eligible_store_monthly_app_key.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__eligible_store_monthly_app_key.1914c2f746", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__eligible_store_monthly", "not_null_analytics___synergies__eligible_store_monthly_app_key"], "alias": "not_null_analytics___synergies__eligible_store_monthly_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082661.9082212, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies__eligible_store_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__eligible_store_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.yml/not_null_analytics___synergies__eligible_store_monthly_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__eligible_store_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__eligible_store_monthly", "attached_node": "model.yoda.analytics___synergies__eligible_store_monthly"}, "test.yoda.not_null_analytics___synergies__eligible_store_monthly_synergy_id.63ab4f85a7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('analytics___synergies__eligible_store_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__eligible_store_monthly_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_f43e42d7ea38ab3bec8542056c2ab8cb.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__eligible_store_monthly_synergy_id.63ab4f85a7", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__eligible_store_monthly", "not_null_analytics___synergies__eligible_store_monthly_synergy_id"], "alias": "not_null_analytics___synergies_f43e42d7ea38ab3bec8542056c2ab8cb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_f43e42d7ea38ab3bec8542056c2ab8cb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_f43e42d7ea38ab3bec8542056c2ab8cb"}, "created_at": 1700082661.9140694, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_f43e42d7ea38ab3bec8542056c2ab8cb\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__eligible_store_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__eligible_store_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.yml/not_null_analytics___synergies_f43e42d7ea38ab3bec8542056c2ab8cb.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__eligible_store_monthly where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.analytics___synergies__eligible_store_monthly", "attached_node": "model.yoda.analytics___synergies__eligible_store_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__eligible_store_monthly_1.3d0937d0fa": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__eligible_store_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__eligible_store_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d3491a32722a02113084ea779e9b5b54.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__eligible_store_monthly_1.3d0937d0fa", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__eligible_store_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__eligible_store_monthly_1"], "alias": "dbt_expectations_expect_table__d3491a32722a02113084ea779e9b5b54", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d3491a32722a02113084ea779e9b5b54", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d3491a32722a02113084ea779e9b5b54"}, "created_at": 1700082661.9199216, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d3491a32722a02113084ea779e9b5b54\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__eligible_store_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__eligible_store_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.yml/dbt_expectations_expect_table__d3491a32722a02113084ea779e9b5b54.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__eligible_store_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__eligible_store_monthly", "attached_node": "model.yoda.analytics___synergies__eligible_store_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__eligible_store_monthly_synergy_month__app_key__synergy_id.22e3c9c72a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_month", "app_key", "synergy_id"], "model": "{{ get_where_subquery(ref('analytics___synergies__eligible_store_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__eligible_store_monthly_synergy_month__app_key__synergy_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_abf53ef38def270d2e775cc270daa669.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__eligible_store_monthly_synergy_month__app_key__synergy_id.22e3c9c72a", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__eligible_store_monthly", "dbt_utils_unique_combination_of_columns_analytics___synergies__eligible_store_monthly_synergy_month__app_key__synergy_id"], "alias": "dbt_utils_unique_combination_o_abf53ef38def270d2e775cc270daa669", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_abf53ef38def270d2e775cc270daa669", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_abf53ef38def270d2e775cc270daa669"}, "created_at": 1700082661.9262116, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_abf53ef38def270d2e775cc270daa669\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__eligible_store_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__eligible_store_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.yml/dbt_utils_unique_combination_o_abf53ef38def270d2e775cc270daa669.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_month, app_key, synergy_id\n from dev_dkruh1.analytics___synergies__eligible_store_monthly\n group by synergy_month, app_key, synergy_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__eligible_store_monthly", "attached_node": "model.yoda.analytics___synergies__eligible_store_monthly"}, "test.yoda.not_null_analytics___synergies__kpi_ranked_action_synergy_id.f57d4318b3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('analytics___synergies__kpi_ranked_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__kpi_ranked_action_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies__kpi_ranked_action_synergy_id.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml", "unique_id": "test.yoda.not_null_analytics___synergies__kpi_ranked_action_synergy_id.f57d4318b3", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__kpi_ranked_action", "not_null_analytics___synergies__kpi_ranked_action_synergy_id"], "alias": "not_null_analytics___synergies__kpi_ranked_action_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082661.9555485, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies__kpi_ranked_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__kpi_ranked_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml/not_null_analytics___synergies__kpi_ranked_action_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__kpi_ranked_action where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.analytics___synergies__kpi_ranked_action", "attached_node": "model.yoda.analytics___synergies__kpi_ranked_action"}, "test.yoda.not_null_analytics___synergies__kpi_ranked_action_app_key.e66b331f14": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__kpi_ranked_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__kpi_ranked_action_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies__kpi_ranked_action_app_key.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml", "unique_id": "test.yoda.not_null_analytics___synergies__kpi_ranked_action_app_key.e66b331f14", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__kpi_ranked_action", "not_null_analytics___synergies__kpi_ranked_action_app_key"], "alias": "not_null_analytics___synergies__kpi_ranked_action_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082661.9627233, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies__kpi_ranked_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__kpi_ranked_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml/not_null_analytics___synergies__kpi_ranked_action_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__kpi_ranked_action where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__kpi_ranked_action", "attached_node": "model.yoda.analytics___synergies__kpi_ranked_action"}, "test.yoda.not_null_analytics___synergies__kpi_ranked_action_source_type.f591a8ea3e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('analytics___synergies__kpi_ranked_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__kpi_ranked_action_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies__kpi_ranked_action_source_type.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml", "unique_id": "test.yoda.not_null_analytics___synergies__kpi_ranked_action_source_type.f591a8ea3e", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__kpi_ranked_action", "not_null_analytics___synergies__kpi_ranked_action_source_type"], "alias": "not_null_analytics___synergies__kpi_ranked_action_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082661.96809, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies__kpi_ranked_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__kpi_ranked_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml/not_null_analytics___synergies__kpi_ranked_action_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__kpi_ranked_action where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.analytics___synergies__kpi_ranked_action", "attached_node": "model.yoda.analytics___synergies__kpi_ranked_action"}, "test.yoda.not_null_analytics___synergies__kpi_ranked_action_source_id.24e8689291": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('analytics___synergies__kpi_ranked_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__kpi_ranked_action_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies__kpi_ranked_action_source_id.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml", "unique_id": "test.yoda.not_null_analytics___synergies__kpi_ranked_action_source_id.24e8689291", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__kpi_ranked_action", "not_null_analytics___synergies__kpi_ranked_action_source_id"], "alias": "not_null_analytics___synergies__kpi_ranked_action_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082661.973461, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies__kpi_ranked_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__kpi_ranked_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml/not_null_analytics___synergies__kpi_ranked_action_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__kpi_ranked_action where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.analytics___synergies__kpi_ranked_action", "attached_node": "model.yoda.analytics___synergies__kpi_ranked_action"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__kpi_ranked_action_1.26b68aef97": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__kpi_ranked_action')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__kpi_ranked_action_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a5a47bec063aa2f70f266053c915d395.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__kpi_ranked_action_1.26b68aef97", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__kpi_ranked_action", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__kpi_ranked_action_1"], "alias": "dbt_expectations_expect_table__a5a47bec063aa2f70f266053c915d395", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a5a47bec063aa2f70f266053c915d395", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a5a47bec063aa2f70f266053c915d395"}, "created_at": 1700082661.9793851, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a5a47bec063aa2f70f266053c915d395\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__kpi_ranked_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__kpi_ranked_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml/dbt_expectations_expect_table__a5a47bec063aa2f70f266053c915d395.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__kpi_ranked_action\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__kpi_ranked_action", "attached_node": "model.yoda.analytics___synergies__kpi_ranked_action"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__kpi_ranked_action_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id.0f755cad91": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id", "order_id"], "model": "{{ get_where_subquery(ref('analytics___synergies__kpi_ranked_action')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__kpi_ranked_action_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_f28dcb1b47bef58d8a87280a97c0338f.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__kpi_ranked_action_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id.0f755cad91", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__kpi_ranked_action", "dbt_utils_unique_combination_of_columns_analytics___synergies__kpi_ranked_action_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id"], "alias": "dbt_utils_unique_combination_o_f28dcb1b47bef58d8a87280a97c0338f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_f28dcb1b47bef58d8a87280a97c0338f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_f28dcb1b47bef58d8a87280a97c0338f"}, "created_at": 1700082661.9856527, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_f28dcb1b47bef58d8a87280a97c0338f\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__kpi_ranked_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__kpi_ranked_action"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.yml/dbt_utils_unique_combination_o_f28dcb1b47bef58d8a87280a97c0338f.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, order_id\n from dev_dkruh1.analytics___synergies__kpi_ranked_action\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, order_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__kpi_ranked_action", "attached_node": "model.yoda.analytics___synergies__kpi_ranked_action"}, "test.yoda.not_null_analytics___synergies__loyalty_store_metrics_monthly_synergy_month.897d6bad2d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_month", "model": "{{ get_where_subquery(ref('analytics___synergies__loyalty_store_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__loyalty_store_metrics_monthly_synergy_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_b4362953eecba56dc02a6005f8426e84.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__loyalty_store_metrics_monthly_synergy_month.897d6bad2d", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__loyalty_store_metrics_monthly", "not_null_analytics___synergies__loyalty_store_metrics_monthly_synergy_month"], "alias": "not_null_analytics___synergies_b4362953eecba56dc02a6005f8426e84", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_b4362953eecba56dc02a6005f8426e84", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_b4362953eecba56dc02a6005f8426e84"}, "created_at": 1700082662.0119698, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_b4362953eecba56dc02a6005f8426e84\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__loyalty_store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__loyalty_store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.yml/not_null_analytics___synergies_b4362953eecba56dc02a6005f8426e84.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__loyalty_store_metrics_monthly where synergy_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_month", "file_key_name": "models.analytics___synergies__loyalty_store_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__loyalty_store_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__loyalty_store_metrics_monthly_app_key.87b4d192d0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__loyalty_store_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__loyalty_store_metrics_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_ba2cef9c89b328878af89da8bb267b02.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__loyalty_store_metrics_monthly_app_key.87b4d192d0", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__loyalty_store_metrics_monthly", "not_null_analytics___synergies__loyalty_store_metrics_monthly_app_key"], "alias": "not_null_analytics___synergies_ba2cef9c89b328878af89da8bb267b02", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_ba2cef9c89b328878af89da8bb267b02", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_ba2cef9c89b328878af89da8bb267b02"}, "created_at": 1700082662.0173461, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_ba2cef9c89b328878af89da8bb267b02\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__loyalty_store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__loyalty_store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.yml/not_null_analytics___synergies_ba2cef9c89b328878af89da8bb267b02.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__loyalty_store_metrics_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__loyalty_store_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__loyalty_store_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_metrics_monthly_1.f5a5480524": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__loyalty_store_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8c9ddb8cffc9e9646aa706ab933cdbce.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_metrics_monthly_1.f5a5480524", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__loyalty_store_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__8c9ddb8cffc9e9646aa706ab933cdbce", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8c9ddb8cffc9e9646aa706ab933cdbce", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8c9ddb8cffc9e9646aa706ab933cdbce"}, "created_at": 1700082662.0230057, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8c9ddb8cffc9e9646aa706ab933cdbce\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__loyalty_store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__loyalty_store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.yml/dbt_expectations_expect_table__8c9ddb8cffc9e9646aa706ab933cdbce.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__loyalty_store_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__loyalty_store_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__loyalty_store_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_metrics_monthly_synergy_month__app_key.2f59dc6331": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_month", "app_key"], "model": "{{ get_where_subquery(ref('analytics___synergies__loyalty_store_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_metrics_monthly_synergy_month__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_f2a2f7592fa1589d2df98b5b3588e782.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_metrics_monthly_synergy_month__app_key.2f59dc6331", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__loyalty_store_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_metrics_monthly_synergy_month__app_key"], "alias": "dbt_utils_unique_combination_o_f2a2f7592fa1589d2df98b5b3588e782", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_f2a2f7592fa1589d2df98b5b3588e782", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_f2a2f7592fa1589d2df98b5b3588e782"}, "created_at": 1700082662.0291865, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_f2a2f7592fa1589d2df98b5b3588e782\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__loyalty_store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__loyalty_store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.yml/dbt_utils_unique_combination_o_f2a2f7592fa1589d2df98b5b3588e782.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_month, app_key\n from dev_dkruh1.analytics___synergies__loyalty_store_metrics_monthly\n group by synergy_month, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__loyalty_store_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__loyalty_store_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month.1fd7c4260c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_month", "model": "{{ get_where_subquery(ref('analytics___synergies__loyalty_store_synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_9a797389c85ea77680249da0393b4755.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month.1fd7c4260c", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__loyalty_store_synergy_metrics_monthly", "not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month"], "alias": "not_null_analytics___synergies_9a797389c85ea77680249da0393b4755", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_9a797389c85ea77680249da0393b4755", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_9a797389c85ea77680249da0393b4755"}, "created_at": 1700082662.0635781, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_9a797389c85ea77680249da0393b4755\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.yml/not_null_analytics___synergies_9a797389c85ea77680249da0393b4755.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__loyalty_store_synergy_metrics_monthly where synergy_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_month", "file_key_name": "models.analytics___synergies__loyalty_store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_app_key.f8ef238f52": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__loyalty_store_synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_039f7814dd1de74290fc696dca66bcee.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_app_key.f8ef238f52", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__loyalty_store_synergy_metrics_monthly", "not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_app_key"], "alias": "not_null_analytics___synergies_039f7814dd1de74290fc696dca66bcee", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_039f7814dd1de74290fc696dca66bcee", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_039f7814dd1de74290fc696dca66bcee"}, "created_at": 1700082662.0689838, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_039f7814dd1de74290fc696dca66bcee\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.yml/not_null_analytics___synergies_039f7814dd1de74290fc696dca66bcee.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__loyalty_store_synergy_metrics_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__loyalty_store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_id.35170d967c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('analytics___synergies__loyalty_store_synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_54a6706b98f90e559ea498d6a5412a4b.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_id.35170d967c", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__loyalty_store_synergy_metrics_monthly", "not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_id"], "alias": "not_null_analytics___synergies_54a6706b98f90e559ea498d6a5412a4b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_54a6706b98f90e559ea498d6a5412a4b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_54a6706b98f90e559ea498d6a5412a4b"}, "created_at": 1700082662.0743856, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_54a6706b98f90e559ea498d6a5412a4b\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.yml/not_null_analytics___synergies_54a6706b98f90e559ea498d6a5412a4b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__loyalty_store_synergy_metrics_monthly where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.analytics___synergies__loyalty_store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_synergy_metrics_monthly_1.d3aa71542d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__loyalty_store_synergy_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_synergy_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a878881e9f808877c8dbb9ee0f4003d4.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_synergy_metrics_monthly_1.d3aa71542d", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__loyalty_store_synergy_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_synergy_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__a878881e9f808877c8dbb9ee0f4003d4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a878881e9f808877c8dbb9ee0f4003d4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a878881e9f808877c8dbb9ee0f4003d4"}, "created_at": 1700082662.0801609, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a878881e9f808877c8dbb9ee0f4003d4\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.yml/dbt_expectations_expect_table__a878881e9f808877c8dbb9ee0f4003d4.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__loyalty_store_synergy_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__loyalty_store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id.a72eb611ac": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_month", "app_key", "synergy_id"], "model": "{{ get_where_subquery(ref('analytics___synergies__loyalty_store_synergy_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_bc04ddf9539987ee816c8783f7fd01c6.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id.a72eb611ac", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__loyalty_store_synergy_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id"], "alias": "dbt_utils_unique_combination_o_bc04ddf9539987ee816c8783f7fd01c6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_bc04ddf9539987ee816c8783f7fd01c6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_bc04ddf9539987ee816c8783f7fd01c6"}, "created_at": 1700082662.0858605, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_bc04ddf9539987ee816c8783f7fd01c6\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.yml/dbt_utils_unique_combination_o_bc04ddf9539987ee816c8783f7fd01c6.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_month, app_key, synergy_id\n from dev_dkruh1.analytics___synergies__loyalty_store_synergy_metrics_monthly\n group by synergy_month, app_key, synergy_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__loyalty_store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"}, "test.yoda.unique_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id.61f1af692a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "organization_month_id", "model": "{{ get_where_subquery(ref('analytics___synergies__organization_synergy_activeness_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___synergies___46d40fb97019e4129b2a6dc8d0a0086a.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.yml", "unique_id": "test.yoda.unique_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id.61f1af692a", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__organization_synergy_activeness_monthly", "unique_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id"], "alias": "unique_analytics___synergies___46d40fb97019e4129b2a6dc8d0a0086a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___synergies___46d40fb97019e4129b2a6dc8d0a0086a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___synergies___46d40fb97019e4129b2a6dc8d0a0086a"}, "created_at": 1700082662.114362, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___synergies___46d40fb97019e4129b2a6dc8d0a0086a\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__organization_synergy_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__organization_synergy_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.yml/unique_analytics___synergies___46d40fb97019e4129b2a6dc8d0a0086a.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select organization_month_id from dev_dkruh1.analytics___synergies__organization_synergy_activeness_monthly where organization_month_id is not null group by organization_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_month_id", "file_key_name": "models.analytics___synergies__organization_synergy_activeness_monthly", "attached_node": "model.yoda.analytics___synergies__organization_synergy_activeness_monthly"}, "test.yoda.not_null_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id.e4c71acd8a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_month_id", "model": "{{ get_where_subquery(ref('analytics___synergies__organization_synergy_activeness_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_2f6ae570a329014e53e3fb891dac4f1f.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id.e4c71acd8a", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__organization_synergy_activeness_monthly", "not_null_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id"], "alias": "not_null_analytics___synergies_2f6ae570a329014e53e3fb891dac4f1f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_2f6ae570a329014e53e3fb891dac4f1f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_2f6ae570a329014e53e3fb891dac4f1f"}, "created_at": 1700082662.1197443, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_2f6ae570a329014e53e3fb891dac4f1f\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__organization_synergy_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__organization_synergy_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.yml/not_null_analytics___synergies_2f6ae570a329014e53e3fb891dac4f1f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__organization_synergy_activeness_monthly where organization_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_month_id", "file_key_name": "models.analytics___synergies__organization_synergy_activeness_monthly", "attached_node": "model.yoda.analytics___synergies__organization_synergy_activeness_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__organization_synergy_activeness_monthly_1.833ae826f0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__organization_synergy_activeness_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__organization_synergy_activeness_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__386c65261c324cc4207962825332651e.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__organization_synergy_activeness_monthly_1.833ae826f0", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__organization_synergy_activeness_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__organization_synergy_activeness_monthly_1"], "alias": "dbt_expectations_expect_table__386c65261c324cc4207962825332651e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__386c65261c324cc4207962825332651e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__386c65261c324cc4207962825332651e"}, "created_at": 1700082662.1253328, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__386c65261c324cc4207962825332651e\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__organization_synergy_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__organization_synergy_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.yml/dbt_expectations_expect_table__386c65261c324cc4207962825332651e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__organization_synergy_activeness_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__organization_synergy_activeness_monthly", "attached_node": "model.yoda.analytics___synergies__organization_synergy_activeness_monthly"}, "test.yoda.not_null_analytics___synergies__store_activeness_daily_synergy_id.8ed2c45d8f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('analytics___synergies__store_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_activeness_daily_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_8ff18066a601e47feb1052d1739a80d5.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_activeness_daily_synergy_id.8ed2c45d8f", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_daily", "not_null_analytics___synergies__store_activeness_daily_synergy_id"], "alias": "not_null_analytics___synergies_8ff18066a601e47feb1052d1739a80d5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_8ff18066a601e47feb1052d1739a80d5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_8ff18066a601e47feb1052d1739a80d5"}, "created_at": 1700082662.1454759, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_8ff18066a601e47feb1052d1739a80d5\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.yml/not_null_analytics___synergies_8ff18066a601e47feb1052d1739a80d5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_activeness_daily where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.analytics___synergies__store_activeness_daily", "attached_node": "model.yoda.analytics___synergies__store_activeness_daily"}, "test.yoda.not_null_analytics___synergies__store_activeness_daily_activeness_date.0c44d56959": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activeness_date", "model": "{{ get_where_subquery(ref('analytics___synergies__store_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_activeness_daily_activeness_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_7c275ab7214afc4647ef766d92aeac80.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_activeness_daily_activeness_date.0c44d56959", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_daily", "not_null_analytics___synergies__store_activeness_daily_activeness_date"], "alias": "not_null_analytics___synergies_7c275ab7214afc4647ef766d92aeac80", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_7c275ab7214afc4647ef766d92aeac80", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_7c275ab7214afc4647ef766d92aeac80"}, "created_at": 1700082662.1512995, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_7c275ab7214afc4647ef766d92aeac80\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.yml/not_null_analytics___synergies_7c275ab7214afc4647ef766d92aeac80.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_activeness_daily where activeness_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "activeness_date", "file_key_name": "models.analytics___synergies__store_activeness_daily", "attached_node": "model.yoda.analytics___synergies__store_activeness_daily"}, "test.yoda.not_null_analytics___synergies__store_activeness_daily_app_key.4c62dab59d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__store_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_activeness_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies__store_activeness_daily_app_key.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_activeness_daily_app_key.4c62dab59d", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_daily", "not_null_analytics___synergies__store_activeness_daily_app_key"], "alias": "not_null_analytics___synergies__store_activeness_daily_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082662.1569204, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.yml/not_null_analytics___synergies__store_activeness_daily_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_activeness_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__store_activeness_daily", "attached_node": "model.yoda.analytics___synergies__store_activeness_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_daily_1.851284ac04": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__store_activeness_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__fc8a974377a715370da91e6cac1956c7.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_daily_1.851284ac04", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_daily_1"], "alias": "dbt_expectations_expect_table__fc8a974377a715370da91e6cac1956c7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__fc8a974377a715370da91e6cac1956c7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__fc8a974377a715370da91e6cac1956c7"}, "created_at": 1700082662.1640317, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__fc8a974377a715370da91e6cac1956c7\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.yml/dbt_expectations_expect_table__fc8a974377a715370da91e6cac1956c7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__store_activeness_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_activeness_daily", "attached_node": "model.yoda.analytics___synergies__store_activeness_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_daily_synergy_id__activeness_date__app_key.491cf6b0a8": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "activeness_date", "app_key"], "model": "{{ get_where_subquery(ref('analytics___synergies__store_activeness_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_daily_synergy_id__activeness_date__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_659ba2148c815d2faad74b22e9e0abf2.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_daily_synergy_id__activeness_date__app_key.491cf6b0a8", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_daily", "dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_daily_synergy_id__activeness_date__app_key"], "alias": "dbt_utils_unique_combination_o_659ba2148c815d2faad74b22e9e0abf2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_659ba2148c815d2faad74b22e9e0abf2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_659ba2148c815d2faad74b22e9e0abf2"}, "created_at": 1700082662.1700406, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_659ba2148c815d2faad74b22e9e0abf2\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.yml/dbt_utils_unique_combination_o_659ba2148c815d2faad74b22e9e0abf2.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, activeness_date, app_key\n from dev_dkruh1.analytics___synergies__store_activeness_daily\n group by synergy_id, activeness_date, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_activeness_daily", "attached_node": "model.yoda.analytics___synergies__store_activeness_daily"}, "test.yoda.not_null_analytics___synergies__store_activeness_monthly_app_key.32980f35f1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__store_activeness_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_activeness_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_8deb6a169cd26c5d1f79e242182bec12.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_activeness_monthly_app_key.32980f35f1", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_monthly", "not_null_analytics___synergies__store_activeness_monthly_app_key"], "alias": "not_null_analytics___synergies_8deb6a169cd26c5d1f79e242182bec12", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_8deb6a169cd26c5d1f79e242182bec12", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_8deb6a169cd26c5d1f79e242182bec12"}, "created_at": 1700082662.191568, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_8deb6a169cd26c5d1f79e242182bec12\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.yml/not_null_analytics___synergies_8deb6a169cd26c5d1f79e242182bec12.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_activeness_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__store_activeness_monthly", "attached_node": "model.yoda.analytics___synergies__store_activeness_monthly"}, "test.yoda.not_null_analytics___synergies__store_activeness_monthly_synergy_month.872f2e9cd2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_month", "model": "{{ get_where_subquery(ref('analytics___synergies__store_activeness_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_activeness_monthly_synergy_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_d633e75c8bb8d5f2f4897a95a76fd673.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_activeness_monthly_synergy_month.872f2e9cd2", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_monthly", "not_null_analytics___synergies__store_activeness_monthly_synergy_month"], "alias": "not_null_analytics___synergies_d633e75c8bb8d5f2f4897a95a76fd673", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_d633e75c8bb8d5f2f4897a95a76fd673", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_d633e75c8bb8d5f2f4897a95a76fd673"}, "created_at": 1700082662.1970572, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_d633e75c8bb8d5f2f4897a95a76fd673\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.yml/not_null_analytics___synergies_d633e75c8bb8d5f2f4897a95a76fd673.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_activeness_monthly where synergy_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_month", "file_key_name": "models.analytics___synergies__store_activeness_monthly", "attached_node": "model.yoda.analytics___synergies__store_activeness_monthly"}, "test.yoda.not_null_analytics___synergies__store_activeness_monthly_synergy_id.73179feb49": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('analytics___synergies__store_activeness_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_activeness_monthly_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_7ad0c0058b7e73ca63c612856db6d8e7.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_activeness_monthly_synergy_id.73179feb49", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_monthly", "not_null_analytics___synergies__store_activeness_monthly_synergy_id"], "alias": "not_null_analytics___synergies_7ad0c0058b7e73ca63c612856db6d8e7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_7ad0c0058b7e73ca63c612856db6d8e7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_7ad0c0058b7e73ca63c612856db6d8e7"}, "created_at": 1700082662.2032955, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_7ad0c0058b7e73ca63c612856db6d8e7\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.yml/not_null_analytics___synergies_7ad0c0058b7e73ca63c612856db6d8e7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_activeness_monthly where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.analytics___synergies__store_activeness_monthly", "attached_node": "model.yoda.analytics___synergies__store_activeness_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_monthly_1.67b317255f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__store_activeness_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6032ca61c648bee3e47635fda0e00b3f.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_monthly_1.67b317255f", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_monthly_1"], "alias": "dbt_expectations_expect_table__6032ca61c648bee3e47635fda0e00b3f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6032ca61c648bee3e47635fda0e00b3f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6032ca61c648bee3e47635fda0e00b3f"}, "created_at": 1700082662.2087789, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6032ca61c648bee3e47635fda0e00b3f\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.yml/dbt_expectations_expect_table__6032ca61c648bee3e47635fda0e00b3f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__store_activeness_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_activeness_monthly", "attached_node": "model.yoda.analytics___synergies__store_activeness_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_monthly_app_key__synergy_month__synergy_id.5890b97bea": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "synergy_month", "synergy_id"], "model": "{{ get_where_subquery(ref('analytics___synergies__store_activeness_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_monthly_app_key__synergy_month__synergy_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_7752e448e1d698d772674989a7c83cb3.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_monthly_app_key__synergy_month__synergy_id.5890b97bea", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_activeness_monthly", "dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_monthly_app_key__synergy_month__synergy_id"], "alias": "dbt_utils_unique_combination_o_7752e448e1d698d772674989a7c83cb3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_7752e448e1d698d772674989a7c83cb3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_7752e448e1d698d772674989a7c83cb3"}, "created_at": 1700082662.2156332, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_7752e448e1d698d772674989a7c83cb3\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.yml/dbt_utils_unique_combination_o_7752e448e1d698d772674989a7c83cb3.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, synergy_month, synergy_id\n from dev_dkruh1.analytics___synergies__store_activeness_monthly\n group by app_key, synergy_month, synergy_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_activeness_monthly", "attached_node": "model.yoda.analytics___synergies__store_activeness_monthly"}, "test.yoda.not_null_analytics___synergies__store_enablement_daily_synergy_date.5f66ebab8e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_date", "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_enablement_daily_synergy_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_f3582fdd7a4bacb4e990ca4707914304.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_enablement_daily_synergy_date.5f66ebab8e", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_daily", "not_null_analytics___synergies__store_enablement_daily_synergy_date"], "alias": "not_null_analytics___synergies_f3582fdd7a4bacb4e990ca4707914304", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_f3582fdd7a4bacb4e990ca4707914304", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_f3582fdd7a4bacb4e990ca4707914304"}, "created_at": 1700082662.2378943, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_f3582fdd7a4bacb4e990ca4707914304\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.yml/not_null_analytics___synergies_f3582fdd7a4bacb4e990ca4707914304.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_enablement_daily where synergy_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_date", "file_key_name": "models.analytics___synergies__store_enablement_daily", "attached_node": "model.yoda.analytics___synergies__store_enablement_daily"}, "test.yoda.not_null_analytics___synergies__store_enablement_daily_app_key.dde758627d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_enablement_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies__store_enablement_daily_app_key.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_enablement_daily_app_key.dde758627d", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_daily", "not_null_analytics___synergies__store_enablement_daily_app_key"], "alias": "not_null_analytics___synergies__store_enablement_daily_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082662.2432263, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.yml/not_null_analytics___synergies__store_enablement_daily_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_enablement_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__store_enablement_daily", "attached_node": "model.yoda.analytics___synergies__store_enablement_daily"}, "test.yoda.not_null_analytics___synergies__store_enablement_daily_synergy_id.cfd7e75be5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_enablement_daily_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_feb1b5a75150fec2e805a4d36c86ce1d.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_enablement_daily_synergy_id.cfd7e75be5", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_daily", "not_null_analytics___synergies__store_enablement_daily_synergy_id"], "alias": "not_null_analytics___synergies_feb1b5a75150fec2e805a4d36c86ce1d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_feb1b5a75150fec2e805a4d36c86ce1d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_feb1b5a75150fec2e805a4d36c86ce1d"}, "created_at": 1700082662.2486215, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_feb1b5a75150fec2e805a4d36c86ce1d\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.yml/not_null_analytics___synergies_feb1b5a75150fec2e805a4d36c86ce1d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_enablement_daily where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.analytics___synergies__store_enablement_daily", "attached_node": "model.yoda.analytics___synergies__store_enablement_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_daily_1.58b47e9d83": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__eac5912c7ee1a7049344573e8737ccea.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_daily_1.58b47e9d83", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_daily_1"], "alias": "dbt_expectations_expect_table__eac5912c7ee1a7049344573e8737ccea", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__eac5912c7ee1a7049344573e8737ccea", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__eac5912c7ee1a7049344573e8737ccea"}, "created_at": 1700082662.254129, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__eac5912c7ee1a7049344573e8737ccea\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.yml/dbt_expectations_expect_table__eac5912c7ee1a7049344573e8737ccea.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__store_enablement_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_enablement_daily", "attached_node": "model.yoda.analytics___synergies__store_enablement_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_daily_synergy_date__app_key__synergy_id.926cbeb0ff": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_date", "app_key", "synergy_id"], "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_daily_synergy_date__app_key__synergy_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_d15619fbed26d1c8f809212deca4f967.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_daily_synergy_date__app_key__synergy_id.926cbeb0ff", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_daily", "dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_daily_synergy_date__app_key__synergy_id"], "alias": "dbt_utils_unique_combination_o_d15619fbed26d1c8f809212deca4f967", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_d15619fbed26d1c8f809212deca4f967", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_d15619fbed26d1c8f809212deca4f967"}, "created_at": 1700082662.2602699, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_d15619fbed26d1c8f809212deca4f967\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.yml/dbt_utils_unique_combination_o_d15619fbed26d1c8f809212deca4f967.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_date, app_key, synergy_id\n from dev_dkruh1.analytics___synergies__store_enablement_daily\n group by synergy_date, app_key, synergy_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_enablement_daily", "attached_node": "model.yoda.analytics___synergies__store_enablement_daily"}, "test.yoda.not_null_analytics___synergies__store_enablement_monthly_synergy_month.f62218a7e0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_month", "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_enablement_monthly_synergy_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_22267c5915db73e3896757eaab17e3ee.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_enablement_monthly_synergy_month.f62218a7e0", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_monthly", "not_null_analytics___synergies__store_enablement_monthly_synergy_month"], "alias": "not_null_analytics___synergies_22267c5915db73e3896757eaab17e3ee", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_22267c5915db73e3896757eaab17e3ee", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_22267c5915db73e3896757eaab17e3ee"}, "created_at": 1700082662.2834768, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_22267c5915db73e3896757eaab17e3ee\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.yml/not_null_analytics___synergies_22267c5915db73e3896757eaab17e3ee.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_enablement_monthly where synergy_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_month", "file_key_name": "models.analytics___synergies__store_enablement_monthly", "attached_node": "model.yoda.analytics___synergies__store_enablement_monthly"}, "test.yoda.not_null_analytics___synergies__store_enablement_monthly_app_key.702d12e3b1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_enablement_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_0ffe8486e48edb7ebca9fffc2b3196df.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_enablement_monthly_app_key.702d12e3b1", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_monthly", "not_null_analytics___synergies__store_enablement_monthly_app_key"], "alias": "not_null_analytics___synergies_0ffe8486e48edb7ebca9fffc2b3196df", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_0ffe8486e48edb7ebca9fffc2b3196df", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_0ffe8486e48edb7ebca9fffc2b3196df"}, "created_at": 1700082662.2903094, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_0ffe8486e48edb7ebca9fffc2b3196df\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.yml/not_null_analytics___synergies_0ffe8486e48edb7ebca9fffc2b3196df.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_enablement_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__store_enablement_monthly", "attached_node": "model.yoda.analytics___synergies__store_enablement_monthly"}, "test.yoda.not_null_analytics___synergies__store_enablement_monthly_synergy_id.3b524edbf2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_enablement_monthly_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_7a8cfbd94f821b5a560a5cefcd43d5ef.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_enablement_monthly_synergy_id.3b524edbf2", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_monthly", "not_null_analytics___synergies__store_enablement_monthly_synergy_id"], "alias": "not_null_analytics___synergies_7a8cfbd94f821b5a560a5cefcd43d5ef", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_7a8cfbd94f821b5a560a5cefcd43d5ef", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_7a8cfbd94f821b5a560a5cefcd43d5ef"}, "created_at": 1700082662.296143, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_7a8cfbd94f821b5a560a5cefcd43d5ef\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.yml/not_null_analytics___synergies_7a8cfbd94f821b5a560a5cefcd43d5ef.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_enablement_monthly where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.analytics___synergies__store_enablement_monthly", "attached_node": "model.yoda.analytics___synergies__store_enablement_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_monthly_1.73bb740d22": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c723db16e8a7d119d71bfd04eb2db76c.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_monthly_1.73bb740d22", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_monthly_1"], "alias": "dbt_expectations_expect_table__c723db16e8a7d119d71bfd04eb2db76c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c723db16e8a7d119d71bfd04eb2db76c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c723db16e8a7d119d71bfd04eb2db76c"}, "created_at": 1700082662.301753, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c723db16e8a7d119d71bfd04eb2db76c\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.yml/dbt_expectations_expect_table__c723db16e8a7d119d71bfd04eb2db76c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__store_enablement_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_enablement_monthly", "attached_node": "model.yoda.analytics___synergies__store_enablement_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_monthly_synergy_month__app_key__synergy_id.ac76283542": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_month", "app_key", "synergy_id"], "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_monthly_synergy_month__app_key__synergy_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_481f5b6c856dc3deb8545138684bbc29.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_monthly_synergy_month__app_key__synergy_id.ac76283542", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_monthly", "dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_monthly_synergy_month__app_key__synergy_id"], "alias": "dbt_utils_unique_combination_o_481f5b6c856dc3deb8545138684bbc29", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_481f5b6c856dc3deb8545138684bbc29", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_481f5b6c856dc3deb8545138684bbc29"}, "created_at": 1700082662.308161, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_481f5b6c856dc3deb8545138684bbc29\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.yml/dbt_utils_unique_combination_o_481f5b6c856dc3deb8545138684bbc29.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_month, app_key, synergy_id\n from dev_dkruh1.analytics___synergies__store_enablement_monthly\n group by synergy_month, app_key, synergy_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_enablement_monthly", "attached_node": "model.yoda.analytics___synergies__store_enablement_monthly"}, "test.yoda.not_null_analytics___synergies__store_enablement_over_time_app_key.32ef98e888": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_enablement_over_time_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_728ff5fe77ea9a5060d6220332a96266.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_enablement_over_time_app_key.32ef98e888", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_over_time", "not_null_analytics___synergies__store_enablement_over_time_app_key"], "alias": "not_null_analytics___synergies_728ff5fe77ea9a5060d6220332a96266", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_728ff5fe77ea9a5060d6220332a96266", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_728ff5fe77ea9a5060d6220332a96266"}, "created_at": 1700082662.3313339, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_728ff5fe77ea9a5060d6220332a96266\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.yml/not_null_analytics___synergies_728ff5fe77ea9a5060d6220332a96266.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_enablement_over_time where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__store_enablement_over_time", "attached_node": "model.yoda.analytics___synergies__store_enablement_over_time"}, "test.yoda.not_null_analytics___synergies__store_enablement_over_time_synergy_id.3305f8662d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_enablement_over_time_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_d6c6b8b4959c6ce6d99d97b23aab78ad.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_enablement_over_time_synergy_id.3305f8662d", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_over_time", "not_null_analytics___synergies__store_enablement_over_time_synergy_id"], "alias": "not_null_analytics___synergies_d6c6b8b4959c6ce6d99d97b23aab78ad", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_d6c6b8b4959c6ce6d99d97b23aab78ad", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_d6c6b8b4959c6ce6d99d97b23aab78ad"}, "created_at": 1700082662.3367932, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_d6c6b8b4959c6ce6d99d97b23aab78ad\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.yml/not_null_analytics___synergies_d6c6b8b4959c6ce6d99d97b23aab78ad.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_enablement_over_time where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.analytics___synergies__store_enablement_over_time", "attached_node": "model.yoda.analytics___synergies__store_enablement_over_time"}, "test.yoda.not_null_analytics___synergies__store_enablement_over_time_from_time.02cb597eca": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_time", "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_enablement_over_time_from_time", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_8277e9498d34359d22ce443d95a877f7.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_enablement_over_time_from_time.02cb597eca", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_over_time", "not_null_analytics___synergies__store_enablement_over_time_from_time"], "alias": "not_null_analytics___synergies_8277e9498d34359d22ce443d95a877f7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_8277e9498d34359d22ce443d95a877f7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_8277e9498d34359d22ce443d95a877f7"}, "created_at": 1700082662.3424566, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_8277e9498d34359d22ce443d95a877f7\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.yml/not_null_analytics___synergies_8277e9498d34359d22ce443d95a877f7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_enablement_over_time where from_time is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_time", "file_key_name": "models.analytics___synergies__store_enablement_over_time", "attached_node": "model.yoda.analytics___synergies__store_enablement_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_over_time_1.c138651cf5": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__9312561138f914d24572968d74ed98ef.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_over_time_1.c138651cf5", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_over_time_1"], "alias": "dbt_expectations_expect_table__9312561138f914d24572968d74ed98ef", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__9312561138f914d24572968d74ed98ef", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__9312561138f914d24572968d74ed98ef"}, "created_at": 1700082662.348471, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__9312561138f914d24572968d74ed98ef\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.yml/dbt_expectations_expect_table__9312561138f914d24572968d74ed98ef.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__store_enablement_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_enablement_over_time", "attached_node": "model.yoda.analytics___synergies__store_enablement_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_over_time_app_key__synergy_id__from_time.a0c81c697b": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "synergy_id", "from_time"], "model": "{{ get_where_subquery(ref('analytics___synergies__store_enablement_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_over_time_app_key__synergy_id__from_time", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_3efc53c1f77c99e79334e28ad0b8673a.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_over_time_app_key__synergy_id__from_time.a0c81c697b", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_enablement_over_time", "dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_over_time_app_key__synergy_id__from_time"], "alias": "dbt_utils_unique_combination_o_3efc53c1f77c99e79334e28ad0b8673a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_3efc53c1f77c99e79334e28ad0b8673a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_3efc53c1f77c99e79334e28ad0b8673a"}, "created_at": 1700082662.3546546, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_3efc53c1f77c99e79334e28ad0b8673a\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_enablement_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_enablement_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.yml/dbt_utils_unique_combination_o_3efc53c1f77c99e79334e28ad0b8673a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, synergy_id, from_time\n from dev_dkruh1.analytics___synergies__store_enablement_over_time\n group by app_key, synergy_id, from_time\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_enablement_over_time", "attached_node": "model.yoda.analytics___synergies__store_enablement_over_time"}, "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id.8f39499aa6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('analytics___synergies__store_last_thirty_days_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_cf629f24061701f0ecea89cb2daf83ae.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id.8f39499aa6", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_last_thirty_days_activeness_daily", "not_null_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id"], "alias": "not_null_analytics___synergies_cf629f24061701f0ecea89cb2daf83ae", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_cf629f24061701f0ecea89cb2daf83ae", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_cf629f24061701f0ecea89cb2daf83ae"}, "created_at": 1700082662.3762274, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_cf629f24061701f0ecea89cb2daf83ae\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_last_thirty_days_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.yml/not_null_analytics___synergies_cf629f24061701f0ecea89cb2daf83ae.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_last_thirty_days_activeness_daily where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.analytics___synergies__store_last_thirty_days_activeness_daily", "attached_node": "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"}, "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_activeness_date.f67191ee40": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activeness_date", "model": "{{ get_where_subquery(ref('analytics___synergies__store_last_thirty_days_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_last_thirty_days_activeness_daily_activeness_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_8f3cf5506401841b2915d45a1de1ba81.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_activeness_date.f67191ee40", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_last_thirty_days_activeness_daily", "not_null_analytics___synergies__store_last_thirty_days_activeness_daily_activeness_date"], "alias": "not_null_analytics___synergies_8f3cf5506401841b2915d45a1de1ba81", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_8f3cf5506401841b2915d45a1de1ba81", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_8f3cf5506401841b2915d45a1de1ba81"}, "created_at": 1700082662.3819258, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_8f3cf5506401841b2915d45a1de1ba81\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_last_thirty_days_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.yml/not_null_analytics___synergies_8f3cf5506401841b2915d45a1de1ba81.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_last_thirty_days_activeness_daily where activeness_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "activeness_date", "file_key_name": "models.analytics___synergies__store_last_thirty_days_activeness_daily", "attached_node": "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"}, "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_app_key.6d013dc48c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__store_last_thirty_days_activeness_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_last_thirty_days_activeness_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_aec43041e6853d0fdbefa56e309d6e09.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_app_key.6d013dc48c", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_last_thirty_days_activeness_daily", "not_null_analytics___synergies__store_last_thirty_days_activeness_daily_app_key"], "alias": "not_null_analytics___synergies_aec43041e6853d0fdbefa56e309d6e09", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_aec43041e6853d0fdbefa56e309d6e09", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_aec43041e6853d0fdbefa56e309d6e09"}, "created_at": 1700082662.3872335, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_aec43041e6853d0fdbefa56e309d6e09\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_last_thirty_days_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.yml/not_null_analytics___synergies_aec43041e6853d0fdbefa56e309d6e09.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_last_thirty_days_activeness_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__store_last_thirty_days_activeness_daily", "attached_node": "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_last_thirty_days_activeness_daily_1.9bd60f3d3c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__store_last_thirty_days_activeness_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_last_thirty_days_activeness_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__324348714d999662d2fa0a021925b011.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_last_thirty_days_activeness_daily_1.9bd60f3d3c", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_last_thirty_days_activeness_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_last_thirty_days_activeness_daily_1"], "alias": "dbt_expectations_expect_table__324348714d999662d2fa0a021925b011", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__324348714d999662d2fa0a021925b011", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__324348714d999662d2fa0a021925b011"}, "created_at": 1700082662.3929713, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__324348714d999662d2fa0a021925b011\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_last_thirty_days_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.yml/dbt_expectations_expect_table__324348714d999662d2fa0a021925b011.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__store_last_thirty_days_activeness_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_last_thirty_days_activeness_daily", "attached_node": "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id__activeness_date__app_key.894f454cd1": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "activeness_date", "app_key"], "model": "{{ get_where_subquery(ref('analytics___synergies__store_last_thirty_days_activeness_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id__activeness_date__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_2a8da3a3f12230bc2bce7bac74c4b9ba.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id__activeness_date__app_key.894f454cd1", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_last_thirty_days_activeness_daily", "dbt_utils_unique_combination_of_columns_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id__activeness_date__app_key"], "alias": "dbt_utils_unique_combination_o_2a8da3a3f12230bc2bce7bac74c4b9ba", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_2a8da3a3f12230bc2bce7bac74c4b9ba", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_2a8da3a3f12230bc2bce7bac74c4b9ba"}, "created_at": 1700082662.398956, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_2a8da3a3f12230bc2bce7bac74c4b9ba\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_last_thirty_days_activeness_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.yml/dbt_utils_unique_combination_o_2a8da3a3f12230bc2bce7bac74c4b9ba.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, activeness_date, app_key\n from dev_dkruh1.analytics___synergies__store_last_thirty_days_activeness_daily\n group by synergy_id, activeness_date, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_last_thirty_days_activeness_daily", "attached_node": "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"}, "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_month.0ac49bf360": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_month", "model": "{{ get_where_subquery(ref('analytics___synergies__store_synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_f30b8d4a6fb9c454aa96c4b74cf6d24a.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_month.0ac49bf360", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_synergy_metrics_monthly", "not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_month"], "alias": "not_null_analytics___synergies_f30b8d4a6fb9c454aa96c4b74cf6d24a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_f30b8d4a6fb9c454aa96c4b74cf6d24a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_f30b8d4a6fb9c454aa96c4b74cf6d24a"}, "created_at": 1700082662.4242315, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_f30b8d4a6fb9c454aa96c4b74cf6d24a\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml/not_null_analytics___synergies_f30b8d4a6fb9c454aa96c4b74cf6d24a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_synergy_metrics_monthly where synergy_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_month", "file_key_name": "models.analytics___synergies__store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__store_synergy_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_app_key.02ef3aa81e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__store_synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_synergy_metrics_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_abede7aa97b19f6bf4a0961037d4723a.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_app_key.02ef3aa81e", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_synergy_metrics_monthly", "not_null_analytics___synergies__store_synergy_metrics_monthly_app_key"], "alias": "not_null_analytics___synergies_abede7aa97b19f6bf4a0961037d4723a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_abede7aa97b19f6bf4a0961037d4723a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_abede7aa97b19f6bf4a0961037d4723a"}, "created_at": 1700082662.4301312, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_abede7aa97b19f6bf4a0961037d4723a\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml/not_null_analytics___synergies_abede7aa97b19f6bf4a0961037d4723a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_synergy_metrics_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__store_synergy_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_id.82cc06f14c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('analytics___synergies__store_synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_4d43deac9629cc29444493b8c0736ae0.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_id.82cc06f14c", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_synergy_metrics_monthly", "not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_id"], "alias": "not_null_analytics___synergies_4d43deac9629cc29444493b8c0736ae0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_4d43deac9629cc29444493b8c0736ae0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_4d43deac9629cc29444493b8c0736ae0"}, "created_at": 1700082662.4362571, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_4d43deac9629cc29444493b8c0736ae0\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml/not_null_analytics___synergies_4d43deac9629cc29444493b8c0736ae0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_synergy_metrics_monthly where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.analytics___synergies__store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__store_synergy_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_metric_name.da7aaad9b4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "metric_name", "model": "{{ get_where_subquery(ref('analytics___synergies__store_synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__store_synergy_metrics_monthly_metric_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_d69c74b2bb8fd3f9cdb52a26144deeb7.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_metric_name.da7aaad9b4", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_synergy_metrics_monthly", "not_null_analytics___synergies__store_synergy_metrics_monthly_metric_name"], "alias": "not_null_analytics___synergies_d69c74b2bb8fd3f9cdb52a26144deeb7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_d69c74b2bb8fd3f9cdb52a26144deeb7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_d69c74b2bb8fd3f9cdb52a26144deeb7"}, "created_at": 1700082662.442204, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_d69c74b2bb8fd3f9cdb52a26144deeb7\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml/not_null_analytics___synergies_d69c74b2bb8fd3f9cdb52a26144deeb7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__store_synergy_metrics_monthly where metric_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metric_name", "file_key_name": "models.analytics___synergies__store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__store_synergy_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_synergy_metrics_monthly_1.507d6f163f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__store_synergy_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_synergy_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__770dac1096aa291eab77aff13293dc2c.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_synergy_metrics_monthly_1.507d6f163f", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_synergy_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_synergy_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__770dac1096aa291eab77aff13293dc2c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__770dac1096aa291eab77aff13293dc2c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__770dac1096aa291eab77aff13293dc2c"}, "created_at": 1700082662.4476829, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__770dac1096aa291eab77aff13293dc2c\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml/dbt_expectations_expect_table__770dac1096aa291eab77aff13293dc2c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__store_synergy_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__store_synergy_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_synergy_metrics_monthly_synergy_month__app_key__synergy_id__metric_name.a98223feff": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_month", "app_key", "synergy_id", "metric_name"], "model": "{{ get_where_subquery(ref('analytics___synergies__store_synergy_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__store_synergy_metrics_monthly_synergy_month__app_key__synergy_id__metric_name", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_eb8c0b97cd139eae29d7ce69b6d8c693.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_synergy_metrics_monthly_synergy_month__app_key__synergy_id__metric_name.a98223feff", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__store_synergy_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___synergies__store_synergy_metrics_monthly_synergy_month__app_key__synergy_id__metric_name"], "alias": "dbt_utils_unique_combination_o_eb8c0b97cd139eae29d7ce69b6d8c693", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_eb8c0b97cd139eae29d7ce69b6d8c693", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_eb8c0b97cd139eae29d7ce69b6d8c693"}, "created_at": 1700082662.4537551, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_eb8c0b97cd139eae29d7ce69b6d8c693\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.yml/dbt_utils_unique_combination_o_eb8c0b97cd139eae29d7ce69b6d8c693.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_month, app_key, synergy_id, metric_name\n from dev_dkruh1.analytics___synergies__store_synergy_metrics_monthly\n group by synergy_month, app_key, synergy_id, metric_name\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__store_synergy_metrics_monthly"}, "test.yoda.unique_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id.0d3a695823": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "synergy_metrics_id", "model": "{{ get_where_subquery(ref('analytics___synergies__synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___synergies___e00f272db4c5f2c19a66180a9ed5e883.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.yml", "unique_id": "test.yoda.unique_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id.0d3a695823", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__synergy_metrics_monthly", "unique_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id"], "alias": "unique_analytics___synergies___e00f272db4c5f2c19a66180a9ed5e883", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___synergies___e00f272db4c5f2c19a66180a9ed5e883", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___synergies___e00f272db4c5f2c19a66180a9ed5e883"}, "created_at": 1700082662.4847891, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___synergies___e00f272db4c5f2c19a66180a9ed5e883\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.yml/unique_analytics___synergies___e00f272db4c5f2c19a66180a9ed5e883.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select synergy_metrics_id from dev_dkruh1.analytics___synergies__synergy_metrics_monthly where synergy_metrics_id is not null group by synergy_metrics_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_metrics_id", "file_key_name": "models.analytics___synergies__synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__synergy_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id.a13a970968": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_metrics_id", "model": "{{ get_where_subquery(ref('analytics___synergies__synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_7d2a79085d84d4f8a0846ef2766bd0f9.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id.a13a970968", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__synergy_metrics_monthly", "not_null_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id"], "alias": "not_null_analytics___synergies_7d2a79085d84d4f8a0846ef2766bd0f9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_7d2a79085d84d4f8a0846ef2766bd0f9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_7d2a79085d84d4f8a0846ef2766bd0f9"}, "created_at": 1700082662.4914656, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_7d2a79085d84d4f8a0846ef2766bd0f9\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.yml/not_null_analytics___synergies_7d2a79085d84d4f8a0846ef2766bd0f9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__synergy_metrics_monthly where synergy_metrics_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_metrics_id", "file_key_name": "models.analytics___synergies__synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__synergy_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__synergy_metrics_monthly_1.fd220b4844": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__synergy_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__synergy_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2158d97b7255c8a6ca26a2c579ba319c.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__synergy_metrics_monthly_1.fd220b4844", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__synergy_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__synergy_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__2158d97b7255c8a6ca26a2c579ba319c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2158d97b7255c8a6ca26a2c579ba319c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2158d97b7255c8a6ca26a2c579ba319c"}, "created_at": 1700082662.4970617, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2158d97b7255c8a6ca26a2c579ba319c\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.yml/dbt_expectations_expect_table__2158d97b7255c8a6ca26a2c579ba319c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__synergy_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__synergy_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__ugc_store_metrics_monthly_synergy_month.4f18d8d4d6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_month", "model": "{{ get_where_subquery(ref('analytics___synergies__ugc_store_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__ugc_store_metrics_monthly_synergy_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_fc983b880579ea6737dee1b04096fa6e.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__ugc_store_metrics_monthly_synergy_month.4f18d8d4d6", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__ugc_store_metrics_monthly", "not_null_analytics___synergies__ugc_store_metrics_monthly_synergy_month"], "alias": "not_null_analytics___synergies_fc983b880579ea6737dee1b04096fa6e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_fc983b880579ea6737dee1b04096fa6e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_fc983b880579ea6737dee1b04096fa6e"}, "created_at": 1700082662.519794, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_fc983b880579ea6737dee1b04096fa6e\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__ugc_store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__ugc_store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.yml/not_null_analytics___synergies_fc983b880579ea6737dee1b04096fa6e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__ugc_store_metrics_monthly where synergy_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_month", "file_key_name": "models.analytics___synergies__ugc_store_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__ugc_store_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__ugc_store_metrics_monthly_app_key.75603f946d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__ugc_store_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__ugc_store_metrics_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_f08159ed63afb506227a224e908dff2a.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__ugc_store_metrics_monthly_app_key.75603f946d", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__ugc_store_metrics_monthly", "not_null_analytics___synergies__ugc_store_metrics_monthly_app_key"], "alias": "not_null_analytics___synergies_f08159ed63afb506227a224e908dff2a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_f08159ed63afb506227a224e908dff2a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_f08159ed63afb506227a224e908dff2a"}, "created_at": 1700082662.5251386, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_f08159ed63afb506227a224e908dff2a\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__ugc_store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__ugc_store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.yml/not_null_analytics___synergies_f08159ed63afb506227a224e908dff2a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__ugc_store_metrics_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__ugc_store_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__ugc_store_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_metrics_monthly_1.52ccee81dc": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__ugc_store_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0007e1084854a862f4ebe2f62b4dad3e.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_metrics_monthly_1.52ccee81dc", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__ugc_store_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__0007e1084854a862f4ebe2f62b4dad3e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0007e1084854a862f4ebe2f62b4dad3e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0007e1084854a862f4ebe2f62b4dad3e"}, "created_at": 1700082662.5309303, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0007e1084854a862f4ebe2f62b4dad3e\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__ugc_store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__ugc_store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.yml/dbt_expectations_expect_table__0007e1084854a862f4ebe2f62b4dad3e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__ugc_store_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__ugc_store_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__ugc_store_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_metrics_monthly_synergy_month__app_key.1344c9d2d5": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_month", "app_key"], "model": "{{ get_where_subquery(ref('analytics___synergies__ugc_store_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_metrics_monthly_synergy_month__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_2d15a758696bb987332628bc58c9ca63.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_metrics_monthly_synergy_month__app_key.1344c9d2d5", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__ugc_store_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_metrics_monthly_synergy_month__app_key"], "alias": "dbt_utils_unique_combination_o_2d15a758696bb987332628bc58c9ca63", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_2d15a758696bb987332628bc58c9ca63", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_2d15a758696bb987332628bc58c9ca63"}, "created_at": 1700082662.536986, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_2d15a758696bb987332628bc58c9ca63\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__ugc_store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__ugc_store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.yml/dbt_utils_unique_combination_o_2d15a758696bb987332628bc58c9ca63.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_month, app_key\n from dev_dkruh1.analytics___synergies__ugc_store_metrics_monthly\n group by synergy_month, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__ugc_store_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__ugc_store_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month.3ae6c80717": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_month", "model": "{{ get_where_subquery(ref('analytics___synergies__ugc_store_synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_59d2cc4a38bb10d4f7ea0d9389f6f383.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month.3ae6c80717", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__ugc_store_synergy_metrics_monthly", "not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month"], "alias": "not_null_analytics___synergies_59d2cc4a38bb10d4f7ea0d9389f6f383", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_59d2cc4a38bb10d4f7ea0d9389f6f383", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_59d2cc4a38bb10d4f7ea0d9389f6f383"}, "created_at": 1700082662.5648336, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_59d2cc4a38bb10d4f7ea0d9389f6f383\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__ugc_store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.yml/not_null_analytics___synergies_59d2cc4a38bb10d4f7ea0d9389f6f383.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__ugc_store_synergy_metrics_monthly where synergy_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_month", "file_key_name": "models.analytics___synergies__ugc_store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_app_key.bae999bfe8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies__ugc_store_synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_dae5d45d1cdd5f8a946efcdc5985081c.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_app_key.bae999bfe8", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__ugc_store_synergy_metrics_monthly", "not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_app_key"], "alias": "not_null_analytics___synergies_dae5d45d1cdd5f8a946efcdc5985081c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_dae5d45d1cdd5f8a946efcdc5985081c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_dae5d45d1cdd5f8a946efcdc5985081c"}, "created_at": 1700082662.5702672, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_dae5d45d1cdd5f8a946efcdc5985081c\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__ugc_store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.yml/not_null_analytics___synergies_dae5d45d1cdd5f8a946efcdc5985081c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__ugc_store_synergy_metrics_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies__ugc_store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"}, "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_id.b10bee05e2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('analytics___synergies__ugc_store_synergy_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_a28e2e1579222c58968003a32d446098.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_id.b10bee05e2", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__ugc_store_synergy_metrics_monthly", "not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_id"], "alias": "not_null_analytics___synergies_a28e2e1579222c58968003a32d446098", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_a28e2e1579222c58968003a32d446098", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_a28e2e1579222c58968003a32d446098"}, "created_at": 1700082662.576179, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_a28e2e1579222c58968003a32d446098\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__ugc_store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.yml/not_null_analytics___synergies_a28e2e1579222c58968003a32d446098.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies__ugc_store_synergy_metrics_monthly where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.analytics___synergies__ugc_store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_synergy_metrics_monthly_1.e7f414d99d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies__ugc_store_synergy_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_synergy_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__304b3f2bead8b1bbcacc00b35cc3d81c.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_synergy_metrics_monthly_1.e7f414d99d", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__ugc_store_synergy_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_synergy_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__304b3f2bead8b1bbcacc00b35cc3d81c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__304b3f2bead8b1bbcacc00b35cc3d81c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__304b3f2bead8b1bbcacc00b35cc3d81c"}, "created_at": 1700082662.582097, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__304b3f2bead8b1bbcacc00b35cc3d81c\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__ugc_store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.yml/dbt_expectations_expect_table__304b3f2bead8b1bbcacc00b35cc3d81c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies__ugc_store_synergy_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__ugc_store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id.a1faf90280": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_month", "app_key", "synergy_id"], "model": "{{ get_where_subquery(ref('analytics___synergies__ugc_store_synergy_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_6b4811727604eba83c2f6c69aaf7a3c7.sql", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id.a1faf90280", "fqn": ["yoda", "analytics", "synergies", "marts", "analytics___synergies__ugc_store_synergy_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id"], "alias": "dbt_utils_unique_combination_o_6b4811727604eba83c2f6c69aaf7a3c7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_6b4811727604eba83c2f6c69aaf7a3c7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_6b4811727604eba83c2f6c69aaf7a3c7"}, "created_at": 1700082662.5886335, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_6b4811727604eba83c2f6c69aaf7a3c7\") }}", "language": "sql", "refs": [{"name": "analytics___synergies__ugc_store_synergy_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.yml/dbt_utils_unique_combination_o_6b4811727604eba83c2f6c69aaf7a3c7.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_month, app_key, synergy_id\n from dev_dkruh1.analytics___synergies__ugc_store_synergy_metrics_monthly\n group by synergy_month, app_key, synergy_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies__ugc_store_synergy_metrics_monthly", "attached_node": "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"}, "test.yoda.not_null_analytics___synergies_stg__enablement_event_app_key.76fcb32c34": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___synergies_stg__enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies_stg__enablement_event_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_stg__enablement_event_app_key.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___synergies_stg__enablement_event_app_key.76fcb32c34", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__enablement_event", "not_null_analytics___synergies_stg__enablement_event_app_key"], "alias": "not_null_analytics___synergies_stg__enablement_event_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082662.680979, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.yml/not_null_analytics___synergies_stg__enablement_event_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies_stg__enablement_event where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___synergies_stg__enablement_event", "attached_node": "model.yoda.analytics___synergies_stg__enablement_event"}, "test.yoda.not_null_analytics___synergies_stg__enablement_event_widget_id.4957052cb7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "widget_id", "model": "{{ get_where_subquery(ref('analytics___synergies_stg__enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies_stg__enablement_event_widget_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_stg__enablement_event_widget_id.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___synergies_stg__enablement_event_widget_id.4957052cb7", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__enablement_event", "not_null_analytics___synergies_stg__enablement_event_widget_id"], "alias": "not_null_analytics___synergies_stg__enablement_event_widget_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082662.6863215, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.yml/not_null_analytics___synergies_stg__enablement_event_widget_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies_stg__enablement_event where widget_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_id", "file_key_name": "models.analytics___synergies_stg__enablement_event", "attached_node": "model.yoda.analytics___synergies_stg__enablement_event"}, "test.yoda.not_null_analytics___synergies_stg__enablement_event_updated_at.21bf468446": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('analytics___synergies_stg__enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies_stg__enablement_event_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_stg__enablement_event_updated_at.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___synergies_stg__enablement_event_updated_at.21bf468446", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__enablement_event", "not_null_analytics___synergies_stg__enablement_event_updated_at"], "alias": "not_null_analytics___synergies_stg__enablement_event_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082662.6920557, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.yml/not_null_analytics___synergies_stg__enablement_event_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies_stg__enablement_event where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.analytics___synergies_stg__enablement_event", "attached_node": "model.yoda.analytics___synergies_stg__enablement_event"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__enablement_event_1.a8864ee9dc": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies_stg__enablement_event')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__enablement_event_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ccdd24f329bb05a038f9ffd9174478fa.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__enablement_event_1.a8864ee9dc", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__enablement_event", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__enablement_event_1"], "alias": "dbt_expectations_expect_table__ccdd24f329bb05a038f9ffd9174478fa", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ccdd24f329bb05a038f9ffd9174478fa", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ccdd24f329bb05a038f9ffd9174478fa"}, "created_at": 1700082662.6971312, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ccdd24f329bb05a038f9ffd9174478fa\") }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.yml/dbt_expectations_expect_table__ccdd24f329bb05a038f9ffd9174478fa.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies_stg__enablement_event\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies_stg__enablement_event", "attached_node": "model.yoda.analytics___synergies_stg__enablement_event"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies_stg__enablement_event_app_key__widget_id__updated_at.9b112674ca": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "widget_id", "updated_at"], "model": "{{ get_where_subquery(ref('analytics___synergies_stg__enablement_event')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___synergies_stg__enablement_event_app_key__widget_id__updated_at", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_a72b57388fdc403829895ea11d7b2704.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies_stg__enablement_event_app_key__widget_id__updated_at.9b112674ca", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__enablement_event", "dbt_utils_unique_combination_of_columns_analytics___synergies_stg__enablement_event_app_key__widget_id__updated_at"], "alias": "dbt_utils_unique_combination_o_a72b57388fdc403829895ea11d7b2704", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a72b57388fdc403829895ea11d7b2704", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a72b57388fdc403829895ea11d7b2704"}, "created_at": 1700082662.703109, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a72b57388fdc403829895ea11d7b2704\") }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.yml/dbt_utils_unique_combination_o_a72b57388fdc403829895ea11d7b2704.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, widget_id, updated_at\n from dev_dkruh1.analytics___synergies_stg__enablement_event\n group by app_key, widget_id, updated_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies_stg__enablement_event", "attached_node": "model.yoda.analytics___synergies_stg__enablement_event"}, "test.yoda.unique_analytics___synergies_stg__home_screen_section_section_id.4d0b6fc004": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "section_id", "model": "{{ get_where_subquery(ref('analytics___synergies_stg__home_screen_section')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___synergies_stg__home_screen_section_section_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___synergies_s_c5f050698306030ff642a707fb1200e6.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.yml", "unique_id": "test.yoda.unique_analytics___synergies_stg__home_screen_section_section_id.4d0b6fc004", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_section", "unique_analytics___synergies_stg__home_screen_section_section_id"], "alias": "unique_analytics___synergies_s_c5f050698306030ff642a707fb1200e6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___synergies_s_c5f050698306030ff642a707fb1200e6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___synergies_s_c5f050698306030ff642a707fb1200e6"}, "created_at": 1700082662.7254944, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___synergies_s_c5f050698306030ff642a707fb1200e6\") }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__home_screen_section", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__home_screen_section"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.yml/unique_analytics___synergies_s_c5f050698306030ff642a707fb1200e6.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select section_id from dev_dkruh1.analytics___synergies_stg__home_screen_section where section_id is not null group by section_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "section_id", "file_key_name": "models.analytics___synergies_stg__home_screen_section", "attached_node": "model.yoda.analytics___synergies_stg__home_screen_section"}, "test.yoda.not_null_analytics___synergies_stg__home_screen_section_section_id.dde5fb0656": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "section_id", "model": "{{ get_where_subquery(ref('analytics___synergies_stg__home_screen_section')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies_stg__home_screen_section_section_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_4c4ff083308eb0a74b638290a1f8e22e.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.yml", "unique_id": "test.yoda.not_null_analytics___synergies_stg__home_screen_section_section_id.dde5fb0656", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_section", "not_null_analytics___synergies_stg__home_screen_section_section_id"], "alias": "not_null_analytics___synergies_4c4ff083308eb0a74b638290a1f8e22e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_4c4ff083308eb0a74b638290a1f8e22e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_4c4ff083308eb0a74b638290a1f8e22e"}, "created_at": 1700082662.7317288, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_4c4ff083308eb0a74b638290a1f8e22e\") }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__home_screen_section", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__home_screen_section"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.yml/not_null_analytics___synergies_4c4ff083308eb0a74b638290a1f8e22e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies_stg__home_screen_section where section_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "section_id", "file_key_name": "models.analytics___synergies_stg__home_screen_section", "attached_node": "model.yoda.analytics___synergies_stg__home_screen_section"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_section_1.6bb04a8b5f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies_stg__home_screen_section')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_section_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0a25ff5d33f1d77b19a52da7fd7e5a01.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_section_1.6bb04a8b5f", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_section", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_section_1"], "alias": "dbt_expectations_expect_table__0a25ff5d33f1d77b19a52da7fd7e5a01", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0a25ff5d33f1d77b19a52da7fd7e5a01", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0a25ff5d33f1d77b19a52da7fd7e5a01"}, "created_at": 1700082662.7373865, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0a25ff5d33f1d77b19a52da7fd7e5a01\") }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__home_screen_section", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__home_screen_section"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.yml/dbt_expectations_expect_table__0a25ff5d33f1d77b19a52da7fd7e5a01.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies_stg__home_screen_section\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies_stg__home_screen_section", "attached_node": "model.yoda.analytics___synergies_stg__home_screen_section"}, "test.yoda.unique_analytics___synergies_stg__home_screen_widget_widget_id.3783cc3799": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "widget_id", "model": "{{ get_where_subquery(ref('analytics___synergies_stg__home_screen_widget')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___synergies_stg__home_screen_widget_widget_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___synergies_stg__home_screen_widget_widget_id.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.yml", "unique_id": "test.yoda.unique_analytics___synergies_stg__home_screen_widget_widget_id.3783cc3799", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_widget", "unique_analytics___synergies_stg__home_screen_widget_widget_id"], "alias": "unique_analytics___synergies_stg__home_screen_widget_widget_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082662.7599127, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__home_screen_widget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__home_screen_widget"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.yml/unique_analytics___synergies_stg__home_screen_widget_widget_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select widget_id from dev_dkruh1.analytics___synergies_stg__home_screen_widget where widget_id is not null group by widget_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_id", "file_key_name": "models.analytics___synergies_stg__home_screen_widget", "attached_node": "model.yoda.analytics___synergies_stg__home_screen_widget"}, "test.yoda.not_null_analytics___synergies_stg__home_screen_widget_widget_id.8689f866f2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "widget_id", "model": "{{ get_where_subquery(ref('analytics___synergies_stg__home_screen_widget')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies_stg__home_screen_widget_widget_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_0f8c93511a26afae3cd94c9c6c53274a.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.yml", "unique_id": "test.yoda.not_null_analytics___synergies_stg__home_screen_widget_widget_id.8689f866f2", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_widget", "not_null_analytics___synergies_stg__home_screen_widget_widget_id"], "alias": "not_null_analytics___synergies_0f8c93511a26afae3cd94c9c6c53274a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_0f8c93511a26afae3cd94c9c6c53274a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_0f8c93511a26afae3cd94c9c6c53274a"}, "created_at": 1700082662.76657, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_0f8c93511a26afae3cd94c9c6c53274a\") }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__home_screen_widget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__home_screen_widget"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.yml/not_null_analytics___synergies_0f8c93511a26afae3cd94c9c6c53274a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies_stg__home_screen_widget where widget_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_id", "file_key_name": "models.analytics___synergies_stg__home_screen_widget", "attached_node": "model.yoda.analytics___synergies_stg__home_screen_widget"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_1.12bcc2f246": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies_stg__home_screen_widget')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bfb96b2a01a074f799d770031f3146f1.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_1.12bcc2f246", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_widget", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_1"], "alias": "dbt_expectations_expect_table__bfb96b2a01a074f799d770031f3146f1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bfb96b2a01a074f799d770031f3146f1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bfb96b2a01a074f799d770031f3146f1"}, "created_at": 1700082662.7722845, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bfb96b2a01a074f799d770031f3146f1\") }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__home_screen_widget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__home_screen_widget"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.yml/dbt_expectations_expect_table__bfb96b2a01a074f799d770031f3146f1.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies_stg__home_screen_widget\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies_stg__home_screen_widget", "attached_node": "model.yoda.analytics___synergies_stg__home_screen_widget"}, "test.yoda.unique_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id.597f20ed79": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "widget_configuration_id", "model": "{{ get_where_subquery(ref('analytics___synergies_stg__home_screen_widget_configuration')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___synergies_s_44aae5befbec5f5ece06df28bff00d50.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.yml", "unique_id": "test.yoda.unique_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id.597f20ed79", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_widget_configuration", "unique_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id"], "alias": "unique_analytics___synergies_s_44aae5befbec5f5ece06df28bff00d50", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___synergies_s_44aae5befbec5f5ece06df28bff00d50", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___synergies_s_44aae5befbec5f5ece06df28bff00d50"}, "created_at": 1700082662.794329, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___synergies_s_44aae5befbec5f5ece06df28bff00d50\") }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__home_screen_widget_configuration", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__home_screen_widget_configuration"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.yml/unique_analytics___synergies_s_44aae5befbec5f5ece06df28bff00d50.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select widget_configuration_id from dev_dkruh1.analytics___synergies_stg__home_screen_widget_configuration where widget_configuration_id is not null group by widget_configuration_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_configuration_id", "file_key_name": "models.analytics___synergies_stg__home_screen_widget_configuration", "attached_node": "model.yoda.analytics___synergies_stg__home_screen_widget_configuration"}, "test.yoda.not_null_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id.081c36060e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "widget_configuration_id", "model": "{{ get_where_subquery(ref('analytics___synergies_stg__home_screen_widget_configuration')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_8c4d6016d66e16609b8b707d909cbb56.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.yml", "unique_id": "test.yoda.not_null_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id.081c36060e", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_widget_configuration", "not_null_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id"], "alias": "not_null_analytics___synergies_8c4d6016d66e16609b8b707d909cbb56", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___synergies_8c4d6016d66e16609b8b707d909cbb56", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___synergies_8c4d6016d66e16609b8b707d909cbb56"}, "created_at": 1700082662.8001716, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___synergies_8c4d6016d66e16609b8b707d909cbb56\") }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__home_screen_widget_configuration", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__home_screen_widget_configuration"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.yml/not_null_analytics___synergies_8c4d6016d66e16609b8b707d909cbb56.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies_stg__home_screen_widget_configuration where widget_configuration_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_configuration_id", "file_key_name": "models.analytics___synergies_stg__home_screen_widget_configuration", "attached_node": "model.yoda.analytics___synergies_stg__home_screen_widget_configuration"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_configuration_1.de22ba73a1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies_stg__home_screen_widget_configuration')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_configuration_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c213a9cf06c8b81514d300eb71461723.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_configuration_1.de22ba73a1", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__home_screen_widget_configuration", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_configuration_1"], "alias": "dbt_expectations_expect_table__c213a9cf06c8b81514d300eb71461723", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c213a9cf06c8b81514d300eb71461723", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c213a9cf06c8b81514d300eb71461723"}, "created_at": 1700082662.8055987, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c213a9cf06c8b81514d300eb71461723\") }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__home_screen_widget_configuration", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__home_screen_widget_configuration"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.yml/dbt_expectations_expect_table__c213a9cf06c8b81514d300eb71461723.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies_stg__home_screen_widget_configuration\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies_stg__home_screen_widget_configuration", "attached_node": "model.yoda.analytics___synergies_stg__home_screen_widget_configuration"}, "test.yoda.not_null_analytics___synergies_stg__synergy_widget_widget_id.3fc9fb7c27": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "widget_id", "model": "{{ get_where_subquery(ref('analytics___synergies_stg__synergy_widget')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___synergies_stg__synergy_widget_widget_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___synergies_stg__synergy_widget_widget_id.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.yml", "unique_id": "test.yoda.not_null_analytics___synergies_stg__synergy_widget_widget_id.3fc9fb7c27", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__synergy_widget", "not_null_analytics___synergies_stg__synergy_widget_widget_id"], "alias": "not_null_analytics___synergies_stg__synergy_widget_widget_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082662.8261466, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__synergy_widget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__synergy_widget"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.yml/not_null_analytics___synergies_stg__synergy_widget_widget_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___synergies_stg__synergy_widget where widget_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_id", "file_key_name": "models.analytics___synergies_stg__synergy_widget", "attached_node": "model.yoda.analytics___synergies_stg__synergy_widget"}, "test.yoda.unique_analytics___synergies_stg__synergy_widget_widget_id.d1ea36462d": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "widget_id", "model": "{{ get_where_subquery(ref('analytics___synergies_stg__synergy_widget')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___synergies_stg__synergy_widget_widget_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___synergies_stg__synergy_widget_widget_id.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.yml", "unique_id": "test.yoda.unique_analytics___synergies_stg__synergy_widget_widget_id.d1ea36462d", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__synergy_widget", "unique_analytics___synergies_stg__synergy_widget_widget_id"], "alias": "unique_analytics___synergies_stg__synergy_widget_widget_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082663.008667, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__synergy_widget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__synergy_widget"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.yml/unique_analytics___synergies_stg__synergy_widget_widget_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select widget_id from dev_dkruh1.analytics___synergies_stg__synergy_widget where widget_id is not null group by widget_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "widget_id", "file_key_name": "models.analytics___synergies_stg__synergy_widget", "attached_node": "model.yoda.analytics___synergies_stg__synergy_widget"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__synergy_widget_1.a10bbb825f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___synergies_stg__synergy_widget')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__synergy_widget_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e7e7c61e51bf225d731b6319079f1acb.sql", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__synergy_widget_1.a10bbb825f", "fqn": ["yoda", "analytics", "synergies", "staging", "marts_compatible", "analytics___synergies_stg__synergy_widget", "dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__synergy_widget_1"], "alias": "dbt_expectations_expect_table__e7e7c61e51bf225d731b6319079f1acb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e7e7c61e51bf225d731b6319079f1acb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e7e7c61e51bf225d731b6319079f1acb"}, "created_at": 1700082663.0141764, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e7e7c61e51bf225d731b6319079f1acb\") }}", "language": "sql", "refs": [{"name": "analytics___synergies_stg__synergy_widget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___synergies_stg__synergy_widget"]}, "compiled_path": "target/compiled/yoda/models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.yml/dbt_expectations_expect_table__e7e7c61e51bf225d731b6319079f1acb.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___synergies_stg__synergy_widget\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___synergies_stg__synergy_widget", "attached_node": "model.yoda.analytics___synergies_stg__synergy_widget"}, "test.yoda.unique_analytics___ugc__active_metrics_monthly_metrics_id.cd059a648d": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "metrics_id", "model": "{{ get_where_subquery(ref('analytics___ugc__active_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc__active_metrics_monthly_metrics_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc__active_metrics_monthly_metrics_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.yml", "unique_id": "test.yoda.unique_analytics___ugc__active_metrics_monthly_metrics_id.cd059a648d", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__active_metrics_monthly", "unique_analytics___ugc__active_metrics_monthly_metrics_id"], "alias": "unique_analytics___ugc__active_metrics_monthly_metrics_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082663.1046154, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__active_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__active_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.yml/unique_analytics___ugc__active_metrics_monthly_metrics_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select metrics_id from dev_dkruh1.analytics___ugc__active_metrics_monthly where metrics_id is not null group by metrics_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metrics_id", "file_key_name": "models.analytics___ugc__active_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__active_metrics_monthly"}, "test.yoda.not_null_analytics___ugc__active_metrics_monthly_metrics_id.be59d583d1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "metrics_id", "model": "{{ get_where_subquery(ref('analytics___ugc__active_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__active_metrics_monthly_metrics_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__active_metrics_monthly_metrics_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__active_metrics_monthly_metrics_id.be59d583d1", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__active_metrics_monthly", "not_null_analytics___ugc__active_metrics_monthly_metrics_id"], "alias": "not_null_analytics___ugc__active_metrics_monthly_metrics_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.110027, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__active_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__active_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.yml/not_null_analytics___ugc__active_metrics_monthly_metrics_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__active_metrics_monthly where metrics_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metrics_id", "file_key_name": "models.analytics___ugc__active_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__active_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__active_metrics_monthly_1.4a122bedee": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__active_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__active_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0c467ec27159a881045d05cd2e2bd2c7.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__active_metrics_monthly_1.4a122bedee", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__active_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__active_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__0c467ec27159a881045d05cd2e2bd2c7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0c467ec27159a881045d05cd2e2bd2c7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0c467ec27159a881045d05cd2e2bd2c7"}, "created_at": 1700082663.1155224, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0c467ec27159a881045d05cd2e2bd2c7\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__active_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__active_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.yml/dbt_expectations_expect_table__0c467ec27159a881045d05cd2e2bd2c7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__active_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__active_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__active_metrics_monthly"}, "test.yoda.unique_analytics___ugc__image_image_id.ba2637444f": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "image_id", "model": "{{ get_where_subquery(ref('analytics___ugc__image')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc__image_image_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc__image_image_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.yml", "unique_id": "test.yoda.unique_analytics___ugc__image_image_id.ba2637444f", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__image", "unique_analytics___ugc__image_image_id"], "alias": "unique_analytics___ugc__image_image_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082663.1401193, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__image", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__image"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.yml/unique_analytics___ugc__image_image_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select image_id from dev_dkruh1.analytics___ugc__image where image_id is not null group by image_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "image_id", "file_key_name": "models.analytics___ugc__image", "attached_node": "model.yoda.analytics___ugc__image"}, "test.yoda.not_null_analytics___ugc__image_image_id.0162a8e5be": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "image_id", "model": "{{ get_where_subquery(ref('analytics___ugc__image')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__image_image_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__image_image_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.yml", "unique_id": "test.yoda.not_null_analytics___ugc__image_image_id.0162a8e5be", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__image", "not_null_analytics___ugc__image_image_id"], "alias": "not_null_analytics___ugc__image_image_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.1466331, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__image", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__image"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.yml/not_null_analytics___ugc__image_image_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__image where image_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "image_id", "file_key_name": "models.analytics___ugc__image", "attached_node": "model.yoda.analytics___ugc__image"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__image_1.47d3787714": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__image')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__image_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__fa012f4b49d43228ad2727f8549dbf05.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__image_1.47d3787714", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__image", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__image_1"], "alias": "dbt_expectations_expect_table__fa012f4b49d43228ad2727f8549dbf05", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__fa012f4b49d43228ad2727f8549dbf05", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__fa012f4b49d43228ad2727f8549dbf05"}, "created_at": 1700082663.1520681, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__fa012f4b49d43228ad2727f8549dbf05\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__image", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__image"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.yml/dbt_expectations_expect_table__fa012f4b49d43228ad2727f8549dbf05.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__image\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__image", "attached_node": "model.yoda.analytics___ugc__image"}, "test.yoda.unique_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id.a627e345d6": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_to_review_cohort_id", "model": "{{ get_where_subquery(ref('analytics___ugc__order_to_review_rate_cohort')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc__order__29e593617561ef130a639284dd986d5f.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.yml", "unique_id": "test.yoda.unique_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id.a627e345d6", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__order_to_review_rate_cohort", "unique_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id"], "alias": "unique_analytics___ugc__order__29e593617561ef130a639284dd986d5f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___ugc__order__29e593617561ef130a639284dd986d5f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___ugc__order__29e593617561ef130a639284dd986d5f"}, "created_at": 1700082663.1770227, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___ugc__order__29e593617561ef130a639284dd986d5f\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__order_to_review_rate_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__order_to_review_rate_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.yml/unique_analytics___ugc__order__29e593617561ef130a639284dd986d5f.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_to_review_cohort_id from dev_dkruh1.analytics___ugc__order_to_review_rate_cohort where order_to_review_cohort_id is not null group by order_to_review_cohort_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_to_review_cohort_id", "file_key_name": "models.analytics___ugc__order_to_review_rate_cohort", "attached_node": "model.yoda.analytics___ugc__order_to_review_rate_cohort"}, "test.yoda.not_null_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id.f0d74a7394": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_to_review_cohort_id", "model": "{{ get_where_subquery(ref('analytics___ugc__order_to_review_rate_cohort')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__orde_dd2021b2fe99c188c429df84429e1487.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.yml", "unique_id": "test.yoda.not_null_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id.f0d74a7394", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__order_to_review_rate_cohort", "not_null_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id"], "alias": "not_null_analytics___ugc__orde_dd2021b2fe99c188c429df84429e1487", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__orde_dd2021b2fe99c188c429df84429e1487", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__orde_dd2021b2fe99c188c429df84429e1487"}, "created_at": 1700082663.1826277, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__orde_dd2021b2fe99c188c429df84429e1487\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__order_to_review_rate_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__order_to_review_rate_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.yml/not_null_analytics___ugc__orde_dd2021b2fe99c188c429df84429e1487.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__order_to_review_rate_cohort where order_to_review_cohort_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_to_review_cohort_id", "file_key_name": "models.analytics___ugc__order_to_review_rate_cohort", "attached_node": "model.yoda.analytics___ugc__order_to_review_rate_cohort"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__order_to_review_rate_cohort_1.24d4a0af4b": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__order_to_review_rate_cohort')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__order_to_review_rate_cohort_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c4cac2a5dca24001c7c56cdf1643ebb5.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__order_to_review_rate_cohort_1.24d4a0af4b", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__order_to_review_rate_cohort", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__order_to_review_rate_cohort_1"], "alias": "dbt_expectations_expect_table__c4cac2a5dca24001c7c56cdf1643ebb5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c4cac2a5dca24001c7c56cdf1643ebb5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c4cac2a5dca24001c7c56cdf1643ebb5"}, "created_at": 1700082663.1884258, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c4cac2a5dca24001c7c56cdf1643ebb5\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__order_to_review_rate_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__order_to_review_rate_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.yml/dbt_expectations_expect_table__c4cac2a5dca24001c7c56cdf1643ebb5.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__order_to_review_rate_cohort\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__order_to_review_rate_cohort", "attached_node": "model.yoda.analytics___ugc__order_to_review_rate_cohort"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_first_time_activity_metrics_1.e770d90630": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__organization_first_time_activity_metrics')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_first_time_activity_metrics_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a7633cf73977d85827ad157f11eb9ec6.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_first_time_activity_metrics_1.e770d90630", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__organization_first_time_activity_metrics", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_first_time_activity_metrics_1"], "alias": "dbt_expectations_expect_table__a7633cf73977d85827ad157f11eb9ec6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a7633cf73977d85827ad157f11eb9ec6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a7633cf73977d85827ad157f11eb9ec6"}, "created_at": 1700082663.2238996, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a7633cf73977d85827ad157f11eb9ec6\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__organization_first_time_activity_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__organization_first_time_activity_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.yml/dbt_expectations_expect_table__a7633cf73977d85827ad157f11eb9ec6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__organization_first_time_activity_metrics\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__organization_first_time_activity_metrics", "attached_node": "model.yoda.analytics___ugc__organization_first_time_activity_metrics"}, "test.yoda.not_null_analytics___ugc__organization_metrics_monthly_metric_month.a27595dbc1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "metric_month", "model": "{{ get_where_subquery(ref('analytics___ugc__organization_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__organization_metrics_monthly_metric_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__orga_44df16217bbbb2e8e989ad2734df03bf.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__organization_metrics_monthly_metric_month.a27595dbc1", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__organization_metrics_monthly", "not_null_analytics___ugc__organization_metrics_monthly_metric_month"], "alias": "not_null_analytics___ugc__orga_44df16217bbbb2e8e989ad2734df03bf", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__orga_44df16217bbbb2e8e989ad2734df03bf", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__orga_44df16217bbbb2e8e989ad2734df03bf"}, "created_at": 1700082663.248957, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__orga_44df16217bbbb2e8e989ad2734df03bf\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.yml/not_null_analytics___ugc__orga_44df16217bbbb2e8e989ad2734df03bf.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__organization_metrics_monthly where metric_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metric_month", "file_key_name": "models.analytics___ugc__organization_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__organization_metrics_monthly"}, "test.yoda.not_null_analytics___ugc__organization_metrics_monthly_organization_key.5222d1cf40": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "organization_key", "model": "{{ get_where_subquery(ref('analytics___ugc__organization_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__organization_metrics_monthly_organization_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__orga_8107868c40ad383dee42f5cad11f4058.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__organization_metrics_monthly_organization_key.5222d1cf40", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__organization_metrics_monthly", "not_null_analytics___ugc__organization_metrics_monthly_organization_key"], "alias": "not_null_analytics___ugc__orga_8107868c40ad383dee42f5cad11f4058", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__orga_8107868c40ad383dee42f5cad11f4058", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__orga_8107868c40ad383dee42f5cad11f4058"}, "created_at": 1700082663.2544959, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__orga_8107868c40ad383dee42f5cad11f4058\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.yml/not_null_analytics___ugc__orga_8107868c40ad383dee42f5cad11f4058.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__organization_metrics_monthly where organization_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "organization_key", "file_key_name": "models.analytics___ugc__organization_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__organization_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_metrics_monthly_1.6b4b3f7cbf": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__organization_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__406b069c4432c406dbef1cda0759644e.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_metrics_monthly_1.6b4b3f7cbf", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__organization_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__406b069c4432c406dbef1cda0759644e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__406b069c4432c406dbef1cda0759644e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__406b069c4432c406dbef1cda0759644e"}, "created_at": 1700082663.2616158, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__406b069c4432c406dbef1cda0759644e\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.yml/dbt_expectations_expect_table__406b069c4432c406dbef1cda0759644e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__organization_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__organization_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__organization_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__organization_metrics_monthly_metric_month__organization_key.d1c5a17e8e": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["metric_month", "organization_key"], "model": "{{ get_where_subquery(ref('analytics___ugc__organization_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__organization_metrics_monthly_metric_month__organization_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_c3ea2a8eda42be1042dd81ac389bfc7b.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__organization_metrics_monthly_metric_month__organization_key.d1c5a17e8e", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__organization_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___ugc__organization_metrics_monthly_metric_month__organization_key"], "alias": "dbt_utils_unique_combination_o_c3ea2a8eda42be1042dd81ac389bfc7b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c3ea2a8eda42be1042dd81ac389bfc7b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c3ea2a8eda42be1042dd81ac389bfc7b"}, "created_at": 1700082663.2673898, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c3ea2a8eda42be1042dd81ac389bfc7b\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__organization_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__organization_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.yml/dbt_utils_unique_combination_o_c3ea2a8eda42be1042dd81ac389bfc7b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n metric_month, organization_key\n from dev_dkruh1.analytics___ugc__organization_metrics_monthly\n group by metric_month, organization_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__organization_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__organization_metrics_monthly"}, "test.yoda.not_null_analytics___ugc__owner_first_time_activity_metrics_owner_id.0db71e17e3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_id", "model": "{{ get_where_subquery(ref('analytics___ugc__owner_first_time_activity_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__owner_first_time_activity_metrics_owner_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__owne_5ba70e92616e4a52672c16d5e23abfb9.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.yml", "unique_id": "test.yoda.not_null_analytics___ugc__owner_first_time_activity_metrics_owner_id.0db71e17e3", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__owner_first_time_activity_metrics", "not_null_analytics___ugc__owner_first_time_activity_metrics_owner_id"], "alias": "not_null_analytics___ugc__owne_5ba70e92616e4a52672c16d5e23abfb9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__owne_5ba70e92616e4a52672c16d5e23abfb9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__owne_5ba70e92616e4a52672c16d5e23abfb9"}, "created_at": 1700082663.303461, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__owne_5ba70e92616e4a52672c16d5e23abfb9\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__owner_first_time_activity_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__owner_first_time_activity_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.yml/not_null_analytics___ugc__owne_5ba70e92616e4a52672c16d5e23abfb9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__owner_first_time_activity_metrics where owner_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_id", "file_key_name": "models.analytics___ugc__owner_first_time_activity_metrics", "attached_node": "model.yoda.analytics___ugc__owner_first_time_activity_metrics"}, "test.yoda.not_null_analytics___ugc__owner_first_time_activity_metrics_owner_type.000b78d478": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_type", "model": "{{ get_where_subquery(ref('analytics___ugc__owner_first_time_activity_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__owner_first_time_activity_metrics_owner_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__owne_547cbc642b4a3d9e99ec452431d72029.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.yml", "unique_id": "test.yoda.not_null_analytics___ugc__owner_first_time_activity_metrics_owner_type.000b78d478", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__owner_first_time_activity_metrics", "not_null_analytics___ugc__owner_first_time_activity_metrics_owner_type"], "alias": "not_null_analytics___ugc__owne_547cbc642b4a3d9e99ec452431d72029", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__owne_547cbc642b4a3d9e99ec452431d72029", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__owne_547cbc642b4a3d9e99ec452431d72029"}, "created_at": 1700082663.3090901, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__owne_547cbc642b4a3d9e99ec452431d72029\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__owner_first_time_activity_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__owner_first_time_activity_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.yml/not_null_analytics___ugc__owne_547cbc642b4a3d9e99ec452431d72029.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__owner_first_time_activity_metrics where owner_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_type", "file_key_name": "models.analytics___ugc__owner_first_time_activity_metrics", "attached_node": "model.yoda.analytics___ugc__owner_first_time_activity_metrics"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_first_time_activity_metrics_1.a83c5a171a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__owner_first_time_activity_metrics')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_first_time_activity_metrics_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__31d663e852e0ead544c5fa0b96c35372.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_first_time_activity_metrics_1.a83c5a171a", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__owner_first_time_activity_metrics", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_first_time_activity_metrics_1"], "alias": "dbt_expectations_expect_table__31d663e852e0ead544c5fa0b96c35372", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__31d663e852e0ead544c5fa0b96c35372", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__31d663e852e0ead544c5fa0b96c35372"}, "created_at": 1700082663.3148873, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__31d663e852e0ead544c5fa0b96c35372\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__owner_first_time_activity_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__owner_first_time_activity_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.yml/dbt_expectations_expect_table__31d663e852e0ead544c5fa0b96c35372.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__owner_first_time_activity_metrics\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__owner_first_time_activity_metrics", "attached_node": "model.yoda.analytics___ugc__owner_first_time_activity_metrics"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__owner_first_time_activity_metrics_owner_id__owner_type.bd345030f9": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["owner_id", "owner_type"], "model": "{{ get_where_subquery(ref('analytics___ugc__owner_first_time_activity_metrics')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__owner_first_time_activity_metrics_owner_id__owner_type", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_b71c0ee7c84c7e956c21023fe5706b0e.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__owner_first_time_activity_metrics_owner_id__owner_type.bd345030f9", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__owner_first_time_activity_metrics", "dbt_utils_unique_combination_of_columns_analytics___ugc__owner_first_time_activity_metrics_owner_id__owner_type"], "alias": "dbt_utils_unique_combination_o_b71c0ee7c84c7e956c21023fe5706b0e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_b71c0ee7c84c7e956c21023fe5706b0e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_b71c0ee7c84c7e956c21023fe5706b0e"}, "created_at": 1700082663.320803, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_b71c0ee7c84c7e956c21023fe5706b0e\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__owner_first_time_activity_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__owner_first_time_activity_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.yml/dbt_utils_unique_combination_o_b71c0ee7c84c7e956c21023fe5706b0e.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n owner_id, owner_type\n from dev_dkruh1.analytics___ugc__owner_first_time_activity_metrics\n group by owner_id, owner_type\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__owner_first_time_activity_metrics", "attached_node": "model.yoda.analytics___ugc__owner_first_time_activity_metrics"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_order_to_review_monthly_1.a8f9518409": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__owner_order_to_review_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_order_to_review_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__1a6e89521d5106ef78caeae52fa1bcb5.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_order_to_review_monthly_1.a8f9518409", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__owner_order_to_review_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_order_to_review_monthly_1"], "alias": "dbt_expectations_expect_table__1a6e89521d5106ef78caeae52fa1bcb5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__1a6e89521d5106ef78caeae52fa1bcb5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__1a6e89521d5106ef78caeae52fa1bcb5"}, "created_at": 1700082663.3458543, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__1a6e89521d5106ef78caeae52fa1bcb5\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__owner_order_to_review_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__owner_order_to_review_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.yml/dbt_expectations_expect_table__1a6e89521d5106ef78caeae52fa1bcb5.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__owner_order_to_review_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__owner_order_to_review_monthly", "attached_node": "model.yoda.analytics___ugc__owner_order_to_review_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__owner_order_to_review_monthly_owner_id__owner_type__month.78d91128ab": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["owner_id", "owner_type", "month"], "model": "{{ get_where_subquery(ref('analytics___ugc__owner_order_to_review_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__owner_order_to_review_monthly_owner_id__owner_type__month", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_e24ded46961ebc6c6f01f41e0f47d903.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__owner_order_to_review_monthly_owner_id__owner_type__month.78d91128ab", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__owner_order_to_review_monthly", "dbt_utils_unique_combination_of_columns_analytics___ugc__owner_order_to_review_monthly_owner_id__owner_type__month"], "alias": "dbt_utils_unique_combination_o_e24ded46961ebc6c6f01f41e0f47d903", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_e24ded46961ebc6c6f01f41e0f47d903", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_e24ded46961ebc6c6f01f41e0f47d903"}, "created_at": 1700082663.3565288, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_e24ded46961ebc6c6f01f41e0f47d903\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__owner_order_to_review_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__owner_order_to_review_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.yml/dbt_utils_unique_combination_o_e24ded46961ebc6c6f01f41e0f47d903.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n owner_id, owner_type, month\n from dev_dkruh1.analytics___ugc__owner_order_to_review_monthly\n group by owner_id, owner_type, month\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__owner_order_to_review_monthly", "attached_node": "model.yoda.analytics___ugc__owner_order_to_review_monthly"}, "test.yoda.not_null_analytics___ugc__platform_order_to_review_monthly_month.facc9b995e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___ugc__platform_order_to_review_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__platform_order_to_review_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__plat_be549e9eb3353fb3cf214bd47e575b2d.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__platform_order_to_review_monthly_month.facc9b995e", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__platform_order_to_review_monthly", "not_null_analytics___ugc__platform_order_to_review_monthly_month"], "alias": "not_null_analytics___ugc__plat_be549e9eb3353fb3cf214bd47e575b2d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__plat_be549e9eb3353fb3cf214bd47e575b2d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__plat_be549e9eb3353fb3cf214bd47e575b2d"}, "created_at": 1700082663.3853557, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__plat_be549e9eb3353fb3cf214bd47e575b2d\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__platform_order_to_review_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__platform_order_to_review_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.yml/not_null_analytics___ugc__plat_be549e9eb3353fb3cf214bd47e575b2d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__platform_order_to_review_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___ugc__platform_order_to_review_monthly", "attached_node": "model.yoda.analytics___ugc__platform_order_to_review_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__platform_order_to_review_monthly_1.344b78f570": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__platform_order_to_review_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__platform_order_to_review_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3f36d39a3d36246f15a1f05ec7e7b46c.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__platform_order_to_review_monthly_1.344b78f570", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__platform_order_to_review_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__platform_order_to_review_monthly_1"], "alias": "dbt_expectations_expect_table__3f36d39a3d36246f15a1f05ec7e7b46c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3f36d39a3d36246f15a1f05ec7e7b46c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3f36d39a3d36246f15a1f05ec7e7b46c"}, "created_at": 1700082663.3938532, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3f36d39a3d36246f15a1f05ec7e7b46c\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__platform_order_to_review_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__platform_order_to_review_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.yml/dbt_expectations_expect_table__3f36d39a3d36246f15a1f05ec7e7b46c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__platform_order_to_review_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__platform_order_to_review_monthly", "attached_node": "model.yoda.analytics___ugc__platform_order_to_review_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__platform_order_to_review_monthly_month__closing_plan_group__platform__last_3m_orders_avg_bucket__postman_enabled.9a0f5c1cc0": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["month", "closing_plan_group", "platform", "last_3m_orders_avg_bucket", "postman_enabled"], "model": "{{ get_where_subquery(ref('analytics___ugc__platform_order_to_review_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__platform_order_to_review_monthly_month__closing_plan_group__platform__last_3m_orders_avg_bucket__postman_enabled", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_25508e56847342d086716936f9da45be.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__platform_order_to_review_monthly_month__closing_plan_group__platform__last_3m_orders_avg_bucket__postman_enabled.9a0f5c1cc0", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__platform_order_to_review_monthly", "dbt_utils_unique_combination_of_columns_analytics___ugc__platform_order_to_review_monthly_month__closing_plan_group__platform__last_3m_orders_avg_bucket__postman_enabled"], "alias": "dbt_utils_unique_combination_o_25508e56847342d086716936f9da45be", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_25508e56847342d086716936f9da45be", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_25508e56847342d086716936f9da45be"}, "created_at": 1700082663.4023201, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_25508e56847342d086716936f9da45be\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__platform_order_to_review_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__platform_order_to_review_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.yml/dbt_utils_unique_combination_o_25508e56847342d086716936f9da45be.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n month, closing_plan_group, platform, last_3m_orders_avg_bucket, postman_enabled\n from dev_dkruh1.analytics___ugc__platform_order_to_review_monthly\n group by month, closing_plan_group, platform, last_3m_orders_avg_bucket, postman_enabled\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__platform_order_to_review_monthly", "attached_node": "model.yoda.analytics___ugc__platform_order_to_review_monthly"}, "test.yoda.unique_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id.6cd0e845b1": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "postman_feature_email_usage_id", "model": "{{ get_where_subquery(ref('analytics___ugc__postman_feature_email_usage_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc__postma_72010ce8b9bdf339214bb9eb074887eb.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.yml", "unique_id": "test.yoda.unique_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id.6cd0e845b1", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__postman_feature_email_usage_monthly", "unique_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id"], "alias": "unique_analytics___ugc__postma_72010ce8b9bdf339214bb9eb074887eb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___ugc__postma_72010ce8b9bdf339214bb9eb074887eb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___ugc__postma_72010ce8b9bdf339214bb9eb074887eb"}, "created_at": 1700082663.4320264, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___ugc__postma_72010ce8b9bdf339214bb9eb074887eb\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__postman_feature_email_usage_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__postman_feature_email_usage_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.yml/unique_analytics___ugc__postma_72010ce8b9bdf339214bb9eb074887eb.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select postman_feature_email_usage_id from dev_dkruh1.analytics___ugc__postman_feature_email_usage_monthly where postman_feature_email_usage_id is not null group by postman_feature_email_usage_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "postman_feature_email_usage_id", "file_key_name": "models.analytics___ugc__postman_feature_email_usage_monthly", "attached_node": "model.yoda.analytics___ugc__postman_feature_email_usage_monthly"}, "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id.db29533c75": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "postman_feature_email_usage_id", "model": "{{ get_where_subquery(ref('analytics___ugc__postman_feature_email_usage_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__post_9ed797cb0d2de6fa372bb68335adeeb7.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id.db29533c75", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__postman_feature_email_usage_monthly", "not_null_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id"], "alias": "not_null_analytics___ugc__post_9ed797cb0d2de6fa372bb68335adeeb7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__post_9ed797cb0d2de6fa372bb68335adeeb7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__post_9ed797cb0d2de6fa372bb68335adeeb7"}, "created_at": 1700082663.4376435, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__post_9ed797cb0d2de6fa372bb68335adeeb7\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__postman_feature_email_usage_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__postman_feature_email_usage_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.yml/not_null_analytics___ugc__post_9ed797cb0d2de6fa372bb68335adeeb7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__postman_feature_email_usage_monthly where postman_feature_email_usage_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "postman_feature_email_usage_id", "file_key_name": "models.analytics___ugc__postman_feature_email_usage_monthly", "attached_node": "model.yoda.analytics___ugc__postman_feature_email_usage_monthly"}, "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_email_sent_month.92c2bb76ba": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "email_sent_month", "model": "{{ get_where_subquery(ref('analytics___ugc__postman_feature_email_usage_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__postman_feature_email_usage_monthly_email_sent_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__post_6a0351dd12d8740d91f09991d25028d1.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_email_sent_month.92c2bb76ba", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__postman_feature_email_usage_monthly", "not_null_analytics___ugc__postman_feature_email_usage_monthly_email_sent_month"], "alias": "not_null_analytics___ugc__post_6a0351dd12d8740d91f09991d25028d1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__post_6a0351dd12d8740d91f09991d25028d1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__post_6a0351dd12d8740d91f09991d25028d1"}, "created_at": 1700082663.4436457, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__post_6a0351dd12d8740d91f09991d25028d1\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__postman_feature_email_usage_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__postman_feature_email_usage_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.yml/not_null_analytics___ugc__post_6a0351dd12d8740d91f09991d25028d1.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__postman_feature_email_usage_monthly where email_sent_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email_sent_month", "file_key_name": "models.analytics___ugc__postman_feature_email_usage_monthly", "attached_node": "model.yoda.analytics___ugc__postman_feature_email_usage_monthly"}, "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_is_postman_enabled.a9a288b413": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_postman_enabled", "model": "{{ get_where_subquery(ref('analytics___ugc__postman_feature_email_usage_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__postman_feature_email_usage_monthly_is_postman_enabled", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__post_5f096af92d98f187dfef5930fe4a65f4.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_is_postman_enabled.a9a288b413", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__postman_feature_email_usage_monthly", "not_null_analytics___ugc__postman_feature_email_usage_monthly_is_postman_enabled"], "alias": "not_null_analytics___ugc__post_5f096af92d98f187dfef5930fe4a65f4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__post_5f096af92d98f187dfef5930fe4a65f4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__post_5f096af92d98f187dfef5930fe4a65f4"}, "created_at": 1700082663.449405, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__post_5f096af92d98f187dfef5930fe4a65f4\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__postman_feature_email_usage_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__postman_feature_email_usage_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.yml/not_null_analytics___ugc__post_5f096af92d98f187dfef5930fe4a65f4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__postman_feature_email_usage_monthly where is_postman_enabled is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_postman_enabled", "file_key_name": "models.analytics___ugc__postman_feature_email_usage_monthly", "attached_node": "model.yoda.analytics___ugc__postman_feature_email_usage_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__postman_feature_email_usage_monthly_1.c886495d8c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__postman_feature_email_usage_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__postman_feature_email_usage_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a1692d2d46b88aa313fe91d1c1564765.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__postman_feature_email_usage_monthly_1.c886495d8c", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__postman_feature_email_usage_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__postman_feature_email_usage_monthly_1"], "alias": "dbt_expectations_expect_table__a1692d2d46b88aa313fe91d1c1564765", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a1692d2d46b88aa313fe91d1c1564765", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a1692d2d46b88aa313fe91d1c1564765"}, "created_at": 1700082663.4551961, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a1692d2d46b88aa313fe91d1c1564765\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__postman_feature_email_usage_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__postman_feature_email_usage_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.yml/dbt_expectations_expect_table__a1692d2d46b88aa313fe91d1c1564765.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__postman_feature_email_usage_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__postman_feature_email_usage_monthly", "attached_node": "model.yoda.analytics___ugc__postman_feature_email_usage_monthly"}, "test.yoda.unique_analytics___ugc__review_review_id.1b6c9b9032": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "review_id", "model": "{{ get_where_subquery(ref('analytics___ugc__review')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc__review_review_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc__review_review_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.yml", "unique_id": "test.yoda.unique_analytics___ugc__review_review_id.1b6c9b9032", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review", "unique_analytics___ugc__review_review_id"], "alias": "unique_analytics___ugc__review_review_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082663.4944947, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__review", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.yml/unique_analytics___ugc__review_review_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select review_id from dev_dkruh1.analytics___ugc__review where review_id is not null group by review_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_id", "file_key_name": "models.analytics___ugc__review", "attached_node": "model.yoda.analytics___ugc__review"}, "test.yoda.not_null_analytics___ugc__review_review_id.a1469a8d82": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "review_id", "model": "{{ get_where_subquery(ref('analytics___ugc__review')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__review_review_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__review_review_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.yml", "unique_id": "test.yoda.not_null_analytics___ugc__review_review_id.a1469a8d82", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review", "not_null_analytics___ugc__review_review_id"], "alias": "not_null_analytics___ugc__review_review_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.5000162, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__review", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.yml/not_null_analytics___ugc__review_review_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__review where review_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_id", "file_key_name": "models.analytics___ugc__review", "attached_node": "model.yoda.analytics___ugc__review"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_1.324968d72d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__review')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__1b383737b0028c6cbdc28f32a2198105.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_1.324968d72d", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_1"], "alias": "dbt_expectations_expect_table__1b383737b0028c6cbdc28f32a2198105", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__1b383737b0028c6cbdc28f32a2198105", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__1b383737b0028c6cbdc28f32a2198105"}, "created_at": 1700082663.5051475, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__1b383737b0028c6cbdc28f32a2198105\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__review", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.yml/dbt_expectations_expect_table__1b383737b0028c6cbdc28f32a2198105.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__review\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__review", "attached_node": "model.yoda.analytics___ugc__review"}, "test.yoda.not_null_analytics___ugc__review_request_channel_name.c8cd833bf6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "channel_name", "model": "{{ get_where_subquery(ref('analytics___ugc__review_request')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__review_request_channel_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__review_request_channel_name.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.yml", "unique_id": "test.yoda.not_null_analytics___ugc__review_request_channel_name.c8cd833bf6", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request", "not_null_analytics___ugc__review_request_channel_name"], "alias": "not_null_analytics___ugc__review_request_channel_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.5486763, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.yml/not_null_analytics___ugc__review_request_channel_name.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__review_request where channel_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "channel_name", "file_key_name": "models.analytics___ugc__review_request", "attached_node": "model.yoda.analytics___ugc__review_request"}, "test.yoda.not_null_analytics___ugc__review_request_channel_message_id.d1c9073545": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "channel_message_id", "model": "{{ get_where_subquery(ref('analytics___ugc__review_request')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__review_request_channel_message_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__review_request_channel_message_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.yml", "unique_id": "test.yoda.not_null_analytics___ugc__review_request_channel_message_id.d1c9073545", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request", "not_null_analytics___ugc__review_request_channel_message_id"], "alias": "not_null_analytics___ugc__review_request_channel_message_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.5565746, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.yml/not_null_analytics___ugc__review_request_channel_message_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__review_request where channel_message_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "channel_message_id", "file_key_name": "models.analytics___ugc__review_request", "attached_node": "model.yoda.analytics___ugc__review_request"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_1.d18d50dbe2": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__review_request')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__75dc6d02e33ede9975eea179cf6c9a56.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_1.d18d50dbe2", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_1"], "alias": "dbt_expectations_expect_table__75dc6d02e33ede9975eea179cf6c9a56", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__75dc6d02e33ede9975eea179cf6c9a56", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__75dc6d02e33ede9975eea179cf6c9a56"}, "created_at": 1700082663.562257, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__75dc6d02e33ede9975eea179cf6c9a56\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.yml/dbt_expectations_expect_table__75dc6d02e33ede9975eea179cf6c9a56.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__review_request\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__review_request", "attached_node": "model.yoda.analytics___ugc__review_request"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_channel_name__channel_message_id.1d214ff05a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["channel_name", "channel_message_id"], "model": "{{ get_where_subquery(ref('analytics___ugc__review_request')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_channel_name__channel_message_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_c61d94848303ff4f02ce4121567f4366.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_channel_name__channel_message_id.1d214ff05a", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request", "dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_channel_name__channel_message_id"], "alias": "dbt_utils_unique_combination_o_c61d94848303ff4f02ce4121567f4366", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c61d94848303ff4f02ce4121567f4366", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c61d94848303ff4f02ce4121567f4366"}, "created_at": 1700082663.5685873, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c61d94848303ff4f02ce4121567f4366\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.yml/dbt_utils_unique_combination_o_c61d94848303ff4f02ce4121567f4366.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n channel_name, channel_message_id\n from dev_dkruh1.analytics___ugc__review_request\n group by channel_name, channel_message_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__review_request", "attached_node": "model.yoda.analytics___ugc__review_request"}, "test.yoda.not_null_analytics___ugc__review_request_token_token.d8ef92cf0c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "token", "model": "{{ get_where_subquery(ref('analytics___ugc__review_request_token')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__review_request_token_token", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__review_request_token_token.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.yml", "unique_id": "test.yoda.not_null_analytics___ugc__review_request_token_token.d8ef92cf0c", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request_token", "not_null_analytics___ugc__review_request_token_token"], "alias": "not_null_analytics___ugc__review_request_token_token", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.5982487, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request_token", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request_token"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.yml/not_null_analytics___ugc__review_request_token_token.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__review_request_token where token is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "token", "file_key_name": "models.analytics___ugc__review_request_token", "attached_node": "model.yoda.analytics___ugc__review_request_token"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_1.a0d5fe504e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__review_request_token')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__efb53f20867eecbeaf93c9dec6e46a29.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_1.a0d5fe504e", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request_token", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_1"], "alias": "dbt_expectations_expect_table__efb53f20867eecbeaf93c9dec6e46a29", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__efb53f20867eecbeaf93c9dec6e46a29", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__efb53f20867eecbeaf93c9dec6e46a29"}, "created_at": 1700082663.605142, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__efb53f20867eecbeaf93c9dec6e46a29\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request_token", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request_token"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.yml/dbt_expectations_expect_table__efb53f20867eecbeaf93c9dec6e46a29.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__review_request_token\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__review_request_token", "attached_node": "model.yoda.analytics___ugc__review_request_token"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_channel_name__review_request_token_id.62b29c2b49": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["channel_name", "review_request_token_id"], "model": "{{ get_where_subquery(ref('analytics___ugc__review_request_token')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_channel_name__review_request_token_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_a9f3a13e5fadde8b078e129375716a89.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_channel_name__review_request_token_id.62b29c2b49", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request_token", "dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_channel_name__review_request_token_id"], "alias": "dbt_utils_unique_combination_o_a9f3a13e5fadde8b078e129375716a89", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a9f3a13e5fadde8b078e129375716a89", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a9f3a13e5fadde8b078e129375716a89"}, "created_at": 1700082663.6118062, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a9f3a13e5fadde8b078e129375716a89\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request_token", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request_token"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.yml/dbt_utils_unique_combination_o_a9f3a13e5fadde8b078e129375716a89.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n channel_name, review_request_token_id\n from dev_dkruh1.analytics___ugc__review_request_token\n group by channel_name, review_request_token_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__review_request_token", "attached_node": "model.yoda.analytics___ugc__review_request_token"}, "test.yoda.not_null_analytics___ugc__review_request_token_message_channel_name.dc729be2e3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "channel_name", "model": "{{ get_where_subquery(ref('analytics___ugc__review_request_token_message')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__review_request_token_message_channel_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__revi_48f70facd322b7e163882126c3614da3.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.yml", "unique_id": "test.yoda.not_null_analytics___ugc__review_request_token_message_channel_name.dc729be2e3", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request_token_message", "not_null_analytics___ugc__review_request_token_message_channel_name"], "alias": "not_null_analytics___ugc__revi_48f70facd322b7e163882126c3614da3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__revi_48f70facd322b7e163882126c3614da3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__revi_48f70facd322b7e163882126c3614da3"}, "created_at": 1700082663.6536896, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__revi_48f70facd322b7e163882126c3614da3\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request_token_message", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request_token_message"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.yml/not_null_analytics___ugc__revi_48f70facd322b7e163882126c3614da3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__review_request_token_message where channel_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "channel_name", "file_key_name": "models.analytics___ugc__review_request_token_message", "attached_node": "model.yoda.analytics___ugc__review_request_token_message"}, "test.yoda.not_null_analytics___ugc__review_request_token_message_review_request_token_id.161c203dfd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "review_request_token_id", "model": "{{ get_where_subquery(ref('analytics___ugc__review_request_token_message')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__review_request_token_message_review_request_token_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__revi_844de2955df350f48803bd035362589d.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.yml", "unique_id": "test.yoda.not_null_analytics___ugc__review_request_token_message_review_request_token_id.161c203dfd", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request_token_message", "not_null_analytics___ugc__review_request_token_message_review_request_token_id"], "alias": "not_null_analytics___ugc__revi_844de2955df350f48803bd035362589d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__revi_844de2955df350f48803bd035362589d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__revi_844de2955df350f48803bd035362589d"}, "created_at": 1700082663.65921, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__revi_844de2955df350f48803bd035362589d\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request_token_message", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request_token_message"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.yml/not_null_analytics___ugc__revi_844de2955df350f48803bd035362589d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__review_request_token_message where review_request_token_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_request_token_id", "file_key_name": "models.analytics___ugc__review_request_token_message", "attached_node": "model.yoda.analytics___ugc__review_request_token_message"}, "test.yoda.not_null_analytics___ugc__review_request_token_message_channel_message_id.b91e2d1d77": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "channel_message_id", "model": "{{ get_where_subquery(ref('analytics___ugc__review_request_token_message')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__review_request_token_message_channel_message_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__revi_a01ebd63775011f7f7c61972bf858fd9.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.yml", "unique_id": "test.yoda.not_null_analytics___ugc__review_request_token_message_channel_message_id.b91e2d1d77", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request_token_message", "not_null_analytics___ugc__review_request_token_message_channel_message_id"], "alias": "not_null_analytics___ugc__revi_a01ebd63775011f7f7c61972bf858fd9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__revi_a01ebd63775011f7f7c61972bf858fd9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__revi_a01ebd63775011f7f7c61972bf858fd9"}, "created_at": 1700082663.664938, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__revi_a01ebd63775011f7f7c61972bf858fd9\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request_token_message", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request_token_message"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.yml/not_null_analytics___ugc__revi_a01ebd63775011f7f7c61972bf858fd9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__review_request_token_message where channel_message_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "channel_message_id", "file_key_name": "models.analytics___ugc__review_request_token_message", "attached_node": "model.yoda.analytics___ugc__review_request_token_message"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_message_1.a0e41528a1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__review_request_token_message')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_message_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c2fdeef0a42f1879c1358c31cb32a91d.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_message_1.a0e41528a1", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request_token_message", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_message_1"], "alias": "dbt_expectations_expect_table__c2fdeef0a42f1879c1358c31cb32a91d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c2fdeef0a42f1879c1358c31cb32a91d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c2fdeef0a42f1879c1358c31cb32a91d"}, "created_at": 1700082663.6719215, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c2fdeef0a42f1879c1358c31cb32a91d\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request_token_message", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request_token_message"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.yml/dbt_expectations_expect_table__c2fdeef0a42f1879c1358c31cb32a91d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__review_request_token_message\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__review_request_token_message", "attached_node": "model.yoda.analytics___ugc__review_request_token_message"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_message_channel_name__review_request_token_id__channel_message_id.904160e48d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["channel_name", "review_request_token_id", "channel_message_id"], "model": "{{ get_where_subquery(ref('analytics___ugc__review_request_token_message')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_message_channel_name__review_request_token_id__channel_message_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_6fa3d2951720ffafe77eba27eebb5327.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_message_channel_name__review_request_token_id__channel_message_id.904160e48d", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__review_request_token_message", "dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_message_channel_name__review_request_token_id__channel_message_id"], "alias": "dbt_utils_unique_combination_o_6fa3d2951720ffafe77eba27eebb5327", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_6fa3d2951720ffafe77eba27eebb5327", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_6fa3d2951720ffafe77eba27eebb5327"}, "created_at": 1700082663.6781278, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_6fa3d2951720ffafe77eba27eebb5327\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__review_request_token_message", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__review_request_token_message"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.yml/dbt_utils_unique_combination_o_6fa3d2951720ffafe77eba27eebb5327.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n channel_name, review_request_token_id, channel_message_id\n from dev_dkruh1.analytics___ugc__review_request_token_message\n group by channel_name, review_request_token_id, channel_message_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__review_request_token_message", "attached_node": "model.yoda.analytics___ugc__review_request_token_message"}, "test.yoda.unique_analytics___ugc__store_store_id.b6317d5494": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('analytics___ugc__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc__store_store_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc__store_store_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.yml", "unique_id": "test.yoda.unique_analytics___ugc__store_store_id.b6317d5494", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store", "unique_analytics___ugc__store_store_id"], "alias": "unique_analytics___ugc__store_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082663.7109559, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.yml/unique_analytics___ugc__store_store_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select store_id from dev_dkruh1.analytics___ugc__store where store_id is not null group by store_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.analytics___ugc__store", "attached_node": "model.yoda.analytics___ugc__store"}, "test.yoda.not_null_analytics___ugc__store_store_id.a00f663f7d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('analytics___ugc__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_store_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_store_id.a00f663f7d", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store", "not_null_analytics___ugc__store_store_id"], "alias": "not_null_analytics___ugc__store_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.7162015, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.yml/not_null_analytics___ugc__store_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.analytics___ugc__store", "attached_node": "model.yoda.analytics___ugc__store"}, "test.yoda.unique_analytics___ugc__store_app_key.34f069379e": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___ugc__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc__store_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc__store_app_key.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.yml", "unique_id": "test.yoda.unique_analytics___ugc__store_app_key.34f069379e", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store", "unique_analytics___ugc__store_app_key"], "alias": "unique_analytics___ugc__store_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082663.7215269, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.yml/unique_analytics___ugc__store_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___ugc__store where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___ugc__store", "attached_node": "model.yoda.analytics___ugc__store"}, "test.yoda.not_null_analytics___ugc__store_app_key.405614a37b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___ugc__store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_app_key.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_app_key.405614a37b", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store", "not_null_analytics___ugc__store_app_key"], "alias": "not_null_analytics___ugc__store_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.7271655, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.yml/not_null_analytics___ugc__store_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___ugc__store", "attached_node": "model.yoda.analytics___ugc__store"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_1.5d3063e2a5": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__store')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__1dc83942c5877c96f2d1fc71b633f421.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_1.5d3063e2a5", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_1"], "alias": "dbt_expectations_expect_table__1dc83942c5877c96f2d1fc71b633f421", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__1dc83942c5877c96f2d1fc71b633f421", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__1dc83942c5877c96f2d1fc71b633f421"}, "created_at": 1700082663.7322996, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__1dc83942c5877c96f2d1fc71b633f421\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.yml/dbt_expectations_expect_table__1dc83942c5877c96f2d1fc71b633f421.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__store\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store", "attached_node": "model.yoda.analytics___ugc__store"}, "test.yoda.not_null_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key.f4f2fbdb44": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___ugc__store_enablement_to_pixel_event_cohort')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__stor_09c59070bf0eb00ae5d63fe94efc9ea7.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key.f4f2fbdb44", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_enablement_to_pixel_event_cohort", "not_null_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key"], "alias": "not_null_analytics___ugc__stor_09c59070bf0eb00ae5d63fe94efc9ea7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__stor_09c59070bf0eb00ae5d63fe94efc9ea7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__stor_09c59070bf0eb00ae5d63fe94efc9ea7"}, "created_at": 1700082663.7586398, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__stor_09c59070bf0eb00ae5d63fe94efc9ea7\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_enablement_to_pixel_event_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.yml/not_null_analytics___ugc__stor_09c59070bf0eb00ae5d63fe94efc9ea7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_enablement_to_pixel_event_cohort where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___ugc__store_enablement_to_pixel_event_cohort", "attached_node": "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_enablement_to_pixel_event_cohort_1.b1ff78daf3": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__store_enablement_to_pixel_event_cohort')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_enablement_to_pixel_event_cohort_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8e0f3b1ea6fb1caa2827ba2bd2d62525.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_enablement_to_pixel_event_cohort_1.b1ff78daf3", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_enablement_to_pixel_event_cohort", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_enablement_to_pixel_event_cohort_1"], "alias": "dbt_expectations_expect_table__8e0f3b1ea6fb1caa2827ba2bd2d62525", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8e0f3b1ea6fb1caa2827ba2bd2d62525", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8e0f3b1ea6fb1caa2827ba2bd2d62525"}, "created_at": 1700082663.7644825, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8e0f3b1ea6fb1caa2827ba2bd2d62525\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_enablement_to_pixel_event_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.yml/dbt_expectations_expect_table__8e0f3b1ea6fb1caa2827ba2bd2d62525.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__store_enablement_to_pixel_event_cohort\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_enablement_to_pixel_event_cohort", "attached_node": "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key__widget_element_v3__pixel_event_v3_month.8037deec6c": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "widget_element_v3", "pixel_event_v3_month"], "model": "{{ get_where_subquery(ref('analytics___ugc__store_enablement_to_pixel_event_cohort')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key__widget_element_v3__pixel_event_v3_month", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_ba0f5cce9e7db7f1ff545447c1564118.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key__widget_element_v3__pixel_event_v3_month.8037deec6c", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_enablement_to_pixel_event_cohort", "dbt_utils_unique_combination_of_columns_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key__widget_element_v3__pixel_event_v3_month"], "alias": "dbt_utils_unique_combination_o_ba0f5cce9e7db7f1ff545447c1564118", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ba0f5cce9e7db7f1ff545447c1564118", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ba0f5cce9e7db7f1ff545447c1564118"}, "created_at": 1700082663.7703054, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ba0f5cce9e7db7f1ff545447c1564118\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_enablement_to_pixel_event_cohort", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.yml/dbt_utils_unique_combination_o_ba0f5cce9e7db7f1ff545447c1564118.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, widget_element_v3, pixel_event_v3_month\n from dev_dkruh1.analytics___ugc__store_enablement_to_pixel_event_cohort\n group by app_key, widget_element_v3, pixel_event_v3_month\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_enablement_to_pixel_event_cohort", "attached_node": "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort"}, "test.yoda.not_null_analytics___ugc__store_feature_over_time_source_id.f2748b048b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('analytics___ugc__store_feature_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_feature_over_time_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_feature_over_time_source_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_feature_over_time_source_id.f2748b048b", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_feature_over_time", "not_null_analytics___ugc__store_feature_over_time_source_id"], "alias": "not_null_analytics___ugc__store_feature_over_time_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.7987647, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_feature_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml/not_null_analytics___ugc__store_feature_over_time_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_feature_over_time where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.analytics___ugc__store_feature_over_time", "attached_node": "model.yoda.analytics___ugc__store_feature_over_time"}, "test.yoda.not_null_analytics___ugc__store_feature_over_time_store_id.c0ec402331": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('analytics___ugc__store_feature_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_feature_over_time_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_feature_over_time_store_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_feature_over_time_store_id.c0ec402331", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_feature_over_time", "not_null_analytics___ugc__store_feature_over_time_store_id"], "alias": "not_null_analytics___ugc__store_feature_over_time_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.8042233, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_feature_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml/not_null_analytics___ugc__store_feature_over_time_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_feature_over_time where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.analytics___ugc__store_feature_over_time", "attached_node": "model.yoda.analytics___ugc__store_feature_over_time"}, "test.yoda.not_null_analytics___ugc__store_feature_over_time_feature_id.3ca7ae5b7d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "feature_id", "model": "{{ get_where_subquery(ref('analytics___ugc__store_feature_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_feature_over_time_feature_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_feature_over_time_feature_id.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_feature_over_time_feature_id.3ca7ae5b7d", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_feature_over_time", "not_null_analytics___ugc__store_feature_over_time_feature_id"], "alias": "not_null_analytics___ugc__store_feature_over_time_feature_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.8099802, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_feature_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml/not_null_analytics___ugc__store_feature_over_time_feature_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_feature_over_time where feature_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "feature_id", "file_key_name": "models.analytics___ugc__store_feature_over_time", "attached_node": "model.yoda.analytics___ugc__store_feature_over_time"}, "test.yoda.not_null_analytics___ugc__store_feature_over_time_from_date.7d669669af": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_date", "model": "{{ get_where_subquery(ref('analytics___ugc__store_feature_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_feature_over_time_from_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_feature_over_time_from_date.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_feature_over_time_from_date.7d669669af", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_feature_over_time", "not_null_analytics___ugc__store_feature_over_time_from_date"], "alias": "not_null_analytics___ugc__store_feature_over_time_from_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.8159833, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_feature_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml/not_null_analytics___ugc__store_feature_over_time_from_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_feature_over_time where from_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_date", "file_key_name": "models.analytics___ugc__store_feature_over_time", "attached_node": "model.yoda.analytics___ugc__store_feature_over_time"}, "test.yoda.not_null_analytics___ugc__store_feature_over_time_to_date.a32b4c2cef": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "to_date", "model": "{{ get_where_subquery(ref('analytics___ugc__store_feature_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_feature_over_time_to_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_feature_over_time_to_date.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_feature_over_time_to_date.a32b4c2cef", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_feature_over_time", "not_null_analytics___ugc__store_feature_over_time_to_date"], "alias": "not_null_analytics___ugc__store_feature_over_time_to_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.8212247, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_feature_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml/not_null_analytics___ugc__store_feature_over_time_to_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_feature_over_time where to_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "to_date", "file_key_name": "models.analytics___ugc__store_feature_over_time", "attached_node": "model.yoda.analytics___ugc__store_feature_over_time"}, "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_organization_owner__0.eb01fab611": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0], "column_name": "is_organization_owner", "model": "{{ get_where_subquery(ref('analytics___ugc__store_feature_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___ugc__store_feature_over_time_is_organization_owner__0", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___ug_47e38793777b05b4df6806d0e34677f4.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml", "unique_id": "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_organization_owner__0.eb01fab611", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_feature_over_time", "accepted_values_analytics___ugc__store_feature_over_time_is_organization_owner__0"], "alias": "accepted_values_analytics___ug_47e38793777b05b4df6806d0e34677f4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___ug_47e38793777b05b4df6806d0e34677f4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___ug_47e38793777b05b4df6806d0e34677f4"}, "created_at": 1700082663.8268461, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___ug_47e38793777b05b4df6806d0e34677f4\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_feature_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml/accepted_values_analytics___ug_47e38793777b05b4df6806d0e34677f4.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_organization_owner as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___ugc__store_feature_over_time\n group by is_organization_owner\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_organization_owner", "file_key_name": "models.analytics___ugc__store_feature_over_time", "attached_node": "model.yoda.analytics___ugc__store_feature_over_time"}, "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_user_owner__0.8fc5e0eb2b": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0], "column_name": "is_user_owner", "model": "{{ get_where_subquery(ref('analytics___ugc__store_feature_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___ugc__store_feature_over_time_is_user_owner__0", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___ug_e8c62522d21d5cd23c4c8ab3c5d9fcc0.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml", "unique_id": "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_user_owner__0.8fc5e0eb2b", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_feature_over_time", "accepted_values_analytics___ugc__store_feature_over_time_is_user_owner__0"], "alias": "accepted_values_analytics___ug_e8c62522d21d5cd23c4c8ab3c5d9fcc0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___ug_e8c62522d21d5cd23c4c8ab3c5d9fcc0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___ug_e8c62522d21d5cd23c4c8ab3c5d9fcc0"}, "created_at": 1700082663.8326905, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___ug_e8c62522d21d5cd23c4c8ab3c5d9fcc0\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_feature_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml/accepted_values_analytics___ug_e8c62522d21d5cd23c4c8ab3c5d9fcc0.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_user_owner as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___ugc__store_feature_over_time\n group by is_user_owner\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_user_owner", "file_key_name": "models.analytics___ugc__store_feature_over_time", "attached_node": "model.yoda.analytics___ugc__store_feature_over_time"}, "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_store_owner__1.955434b684": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [1], "column_name": "is_store_owner", "model": "{{ get_where_subquery(ref('analytics___ugc__store_feature_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___ugc__store_feature_over_time_is_store_owner__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___ug_2c313cf9728c512d9fc61d0ba4db7adc.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml", "unique_id": "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_store_owner__1.955434b684", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_feature_over_time", "accepted_values_analytics___ugc__store_feature_over_time_is_store_owner__1"], "alias": "accepted_values_analytics___ug_2c313cf9728c512d9fc61d0ba4db7adc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_analytics___ug_2c313cf9728c512d9fc61d0ba4db7adc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_analytics___ug_2c313cf9728c512d9fc61d0ba4db7adc"}, "created_at": 1700082663.83808, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_analytics___ug_2c313cf9728c512d9fc61d0ba4db7adc\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_feature_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml/accepted_values_analytics___ug_2c313cf9728c512d9fc61d0ba4db7adc.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_store_owner as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___ugc__store_feature_over_time\n group by is_store_owner\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_store_owner", "file_key_name": "models.analytics___ugc__store_feature_over_time", "attached_node": "model.yoda.analytics___ugc__store_feature_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_feature_over_time_1.f91a26b0cb": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__store_feature_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_feature_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__743ac78ca74692e373eab6481a3ab92f.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_feature_over_time_1.f91a26b0cb", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_feature_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_feature_over_time_1"], "alias": "dbt_expectations_expect_table__743ac78ca74692e373eab6481a3ab92f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__743ac78ca74692e373eab6481a3ab92f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__743ac78ca74692e373eab6481a3ab92f"}, "created_at": 1700082663.8440256, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__743ac78ca74692e373eab6481a3ab92f\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_feature_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml/dbt_expectations_expect_table__743ac78ca74692e373eab6481a3ab92f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__store_feature_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_feature_over_time", "attached_node": "model.yoda.analytics___ugc__store_feature_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_feature_over_time_source_id__store_id__feature_id__from_date__to_date.292a9e16a5": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["source_id", "store_id", "feature_id", "from_date", "to_date"], "model": "{{ get_where_subquery(ref('analytics___ugc__store_feature_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__store_feature_over_time_source_id__store_id__feature_id__from_date__to_date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_cfbb14538227460b1a5b25c50ef3cc10.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_feature_over_time_source_id__store_id__feature_id__from_date__to_date.292a9e16a5", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_feature_over_time", "dbt_utils_unique_combination_of_columns_analytics___ugc__store_feature_over_time_source_id__store_id__feature_id__from_date__to_date"], "alias": "dbt_utils_unique_combination_o_cfbb14538227460b1a5b25c50ef3cc10", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_cfbb14538227460b1a5b25c50ef3cc10", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_cfbb14538227460b1a5b25c50ef3cc10"}, "created_at": 1700082663.8500586, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_cfbb14538227460b1a5b25c50ef3cc10\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_feature_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.yml/dbt_utils_unique_combination_o_cfbb14538227460b1a5b25c50ef3cc10.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n source_id, store_id, feature_id, from_date, to_date\n from dev_dkruh1.analytics___ugc__store_feature_over_time\n group by source_id, store_id, feature_id, from_date, to_date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_feature_over_time", "attached_node": "model.yoda.analytics___ugc__store_feature_over_time"}, "test.yoda.unique_analytics___ugc__store_first_time_activity_metrics_app_key.3aa1ca5a92": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___ugc__store_first_time_activity_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc__store_first_time_activity_metrics_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc__store__483208fd4c664085a00851630df2f1a9.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.yml", "unique_id": "test.yoda.unique_analytics___ugc__store_first_time_activity_metrics_app_key.3aa1ca5a92", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_first_time_activity_metrics", "unique_analytics___ugc__store_first_time_activity_metrics_app_key"], "alias": "unique_analytics___ugc__store__483208fd4c664085a00851630df2f1a9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___ugc__store__483208fd4c664085a00851630df2f1a9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___ugc__store__483208fd4c664085a00851630df2f1a9"}, "created_at": 1700082663.8879108, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___ugc__store__483208fd4c664085a00851630df2f1a9\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_first_time_activity_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_first_time_activity_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.yml/unique_analytics___ugc__store__483208fd4c664085a00851630df2f1a9.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.analytics___ugc__store_first_time_activity_metrics where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___ugc__store_first_time_activity_metrics", "attached_node": "model.yoda.analytics___ugc__store_first_time_activity_metrics"}, "test.yoda.not_null_analytics___ugc__store_first_time_activity_metrics_app_key.cc9670afe5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___ugc__store_first_time_activity_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_first_time_activity_metrics_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__stor_79ac89ff6256b788c6c8b778b6a330e6.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_first_time_activity_metrics_app_key.cc9670afe5", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_first_time_activity_metrics", "not_null_analytics___ugc__store_first_time_activity_metrics_app_key"], "alias": "not_null_analytics___ugc__stor_79ac89ff6256b788c6c8b778b6a330e6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__stor_79ac89ff6256b788c6c8b778b6a330e6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__stor_79ac89ff6256b788c6c8b778b6a330e6"}, "created_at": 1700082663.8938003, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__stor_79ac89ff6256b788c6c8b778b6a330e6\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_first_time_activity_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_first_time_activity_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.yml/not_null_analytics___ugc__stor_79ac89ff6256b788c6c8b778b6a330e6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_first_time_activity_metrics where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___ugc__store_first_time_activity_metrics", "attached_node": "model.yoda.analytics___ugc__store_first_time_activity_metrics"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_first_time_activity_metrics_1.0613283fc4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__store_first_time_activity_metrics')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_first_time_activity_metrics_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f0d29bf550294da9f36ad49a47760859.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_first_time_activity_metrics_1.0613283fc4", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_first_time_activity_metrics", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_first_time_activity_metrics_1"], "alias": "dbt_expectations_expect_table__f0d29bf550294da9f36ad49a47760859", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f0d29bf550294da9f36ad49a47760859", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f0d29bf550294da9f36ad49a47760859"}, "created_at": 1700082663.8995113, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f0d29bf550294da9f36ad49a47760859\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_first_time_activity_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_first_time_activity_metrics"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.yml/dbt_expectations_expect_table__f0d29bf550294da9f36ad49a47760859.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__store_first_time_activity_metrics\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_first_time_activity_metrics", "attached_node": "model.yoda.analytics___ugc__store_first_time_activity_metrics"}, "test.yoda.not_null_analytics___ugc__store_installation_over_time_app_key.19a3e4b522": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___ugc__store_installation_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_installation_over_time_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_installation_over_time_app_key.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_installation_over_time_app_key.19a3e4b522", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_installation_over_time", "not_null_analytics___ugc__store_installation_over_time_app_key"], "alias": "not_null_analytics___ugc__store_installation_over_time_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.923068, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.yml/not_null_analytics___ugc__store_installation_over_time_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_installation_over_time where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___ugc__store_installation_over_time", "attached_node": "model.yoda.analytics___ugc__store_installation_over_time"}, "test.yoda.not_null_analytics___ugc__store_installation_over_time_from_time.76e51caa47": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "from_time", "model": "{{ get_where_subquery(ref('analytics___ugc__store_installation_over_time')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_installation_over_time_from_time", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__stor_9e27821189908ef0a37ed20eea2983f9.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_installation_over_time_from_time.76e51caa47", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_installation_over_time", "not_null_analytics___ugc__store_installation_over_time_from_time"], "alias": "not_null_analytics___ugc__stor_9e27821189908ef0a37ed20eea2983f9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__stor_9e27821189908ef0a37ed20eea2983f9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__stor_9e27821189908ef0a37ed20eea2983f9"}, "created_at": 1700082663.9284222, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__stor_9e27821189908ef0a37ed20eea2983f9\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.yml/not_null_analytics___ugc__stor_9e27821189908ef0a37ed20eea2983f9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_installation_over_time where from_time is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "from_time", "file_key_name": "models.analytics___ugc__store_installation_over_time", "attached_node": "model.yoda.analytics___ugc__store_installation_over_time"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_installation_over_time_1.b6666b70ca": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__store_installation_over_time')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_installation_over_time_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0e24f0cf7f9245bcea6e295353c60e93.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_installation_over_time_1.b6666b70ca", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_installation_over_time", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_installation_over_time_1"], "alias": "dbt_expectations_expect_table__0e24f0cf7f9245bcea6e295353c60e93", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0e24f0cf7f9245bcea6e295353c60e93", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0e24f0cf7f9245bcea6e295353c60e93"}, "created_at": 1700082663.9342597, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0e24f0cf7f9245bcea6e295353c60e93\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.yml/dbt_expectations_expect_table__0e24f0cf7f9245bcea6e295353c60e93.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__store_installation_over_time\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_installation_over_time", "attached_node": "model.yoda.analytics___ugc__store_installation_over_time"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_installation_over_time_app_key__from_time.a70955b949": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["app_key", "from_time"], "model": "{{ get_where_subquery(ref('analytics___ugc__store_installation_over_time')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__store_installation_over_time_app_key__from_time", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_231a5c65f770f6669c52ffd96a3149d6.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_installation_over_time_app_key__from_time.a70955b949", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_installation_over_time", "dbt_utils_unique_combination_of_columns_analytics___ugc__store_installation_over_time_app_key__from_time"], "alias": "dbt_utils_unique_combination_o_231a5c65f770f6669c52ffd96a3149d6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_231a5c65f770f6669c52ffd96a3149d6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_231a5c65f770f6669c52ffd96a3149d6"}, "created_at": 1700082663.9403725, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_231a5c65f770f6669c52ffd96a3149d6\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_installation_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_installation_over_time"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.yml/dbt_utils_unique_combination_o_231a5c65f770f6669c52ffd96a3149d6.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n app_key, from_time\n from dev_dkruh1.analytics___ugc__store_installation_over_time\n group by app_key, from_time\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_installation_over_time", "attached_node": "model.yoda.analytics___ugc__store_installation_over_time"}, "test.yoda.not_null_analytics___ugc__store_metrics_daily_metric_date.1f726f3aa4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "metric_date", "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_metrics_daily_metric_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_metrics_daily_metric_date.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_metrics_daily_metric_date.1f726f3aa4", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_daily", "not_null_analytics___ugc__store_metrics_daily_metric_date"], "alias": "not_null_analytics___ugc__store_metrics_daily_metric_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082663.9959884, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.yml/not_null_analytics___ugc__store_metrics_daily_metric_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_metrics_daily where metric_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metric_date", "file_key_name": "models.analytics___ugc__store_metrics_daily", "attached_node": "model.yoda.analytics___ugc__store_metrics_daily"}, "test.yoda.not_null_analytics___ugc__store_metrics_daily_app_key.e01288e581": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_metrics_daily_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_metrics_daily_app_key.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_metrics_daily_app_key.e01288e581", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_daily", "not_null_analytics___ugc__store_metrics_daily_app_key"], "alias": "not_null_analytics___ugc__store_metrics_daily_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.001192, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.yml/not_null_analytics___ugc__store_metrics_daily_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_metrics_daily where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___ugc__store_metrics_daily", "attached_node": "model.yoda.analytics___ugc__store_metrics_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_1.a539e46a89": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e3e5f33c4efa2addb3f87b5ab2c5cbb4.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_1.a539e46a89", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_daily", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_1"], "alias": "dbt_expectations_expect_table__e3e5f33c4efa2addb3f87b5ab2c5cbb4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e3e5f33c4efa2addb3f87b5ab2c5cbb4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e3e5f33c4efa2addb3f87b5ab2c5cbb4"}, "created_at": 1700082664.00692, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e3e5f33c4efa2addb3f87b5ab2c5cbb4\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.yml/dbt_expectations_expect_table__e3e5f33c4efa2addb3f87b5ab2c5cbb4.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__store_metrics_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_metrics_daily", "attached_node": "model.yoda.analytics___ugc__store_metrics_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_metric_date__app_key.112a1b66cf": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["metric_date", "app_key"], "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_metric_date__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_0c78e6a4c9fdc6f98c9168241ab0ad43.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_metric_date__app_key.112a1b66cf", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_daily", "dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_metric_date__app_key"], "alias": "dbt_utils_unique_combination_o_0c78e6a4c9fdc6f98c9168241ab0ad43", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_0c78e6a4c9fdc6f98c9168241ab0ad43", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_0c78e6a4c9fdc6f98c9168241ab0ad43"}, "created_at": 1700082664.013137, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_0c78e6a4c9fdc6f98c9168241ab0ad43\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.yml/dbt_utils_unique_combination_o_0c78e6a4c9fdc6f98c9168241ab0ad43.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n metric_date, app_key\n from dev_dkruh1.analytics___ugc__store_metrics_daily\n group by metric_date, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_metrics_daily", "attached_node": "model.yoda.analytics___ugc__store_metrics_daily"}, "test.yoda.not_null_analytics___ugc__store_metrics_daily_24m_metric_date.9bf1825ce3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "metric_date", "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_daily_24m')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_metrics_daily_24m_metric_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_metrics_daily_24m_metric_date.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_metrics_daily_24m_metric_date.9bf1825ce3", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_daily_24m", "not_null_analytics___ugc__store_metrics_daily_24m_metric_date"], "alias": "not_null_analytics___ugc__store_metrics_daily_24m_metric_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.0599196, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily_24m", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily_24m"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.yml/not_null_analytics___ugc__store_metrics_daily_24m_metric_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_metrics_daily_24m where metric_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metric_date", "file_key_name": "models.analytics___ugc__store_metrics_daily_24m", "attached_node": "model.yoda.analytics___ugc__store_metrics_daily_24m"}, "test.yoda.not_null_analytics___ugc__store_metrics_daily_24m_app_key.f9a2090544": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_daily_24m')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_metrics_daily_24m_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_metrics_daily_24m_app_key.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_metrics_daily_24m_app_key.f9a2090544", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_daily_24m", "not_null_analytics___ugc__store_metrics_daily_24m_app_key"], "alias": "not_null_analytics___ugc__store_metrics_daily_24m_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.0655837, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily_24m", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily_24m"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.yml/not_null_analytics___ugc__store_metrics_daily_24m_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_metrics_daily_24m where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___ugc__store_metrics_daily_24m", "attached_node": "model.yoda.analytics___ugc__store_metrics_daily_24m"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_24m_1.e51d9b69d8": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_daily_24m')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_24m_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8ec35d01cd12592209095c6daf52df34.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_24m_1.e51d9b69d8", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_daily_24m", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_24m_1"], "alias": "dbt_expectations_expect_table__8ec35d01cd12592209095c6daf52df34", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8ec35d01cd12592209095c6daf52df34", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8ec35d01cd12592209095c6daf52df34"}, "created_at": 1700082664.0709462, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8ec35d01cd12592209095c6daf52df34\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily_24m", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily_24m"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.yml/dbt_expectations_expect_table__8ec35d01cd12592209095c6daf52df34.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__store_metrics_daily_24m\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_metrics_daily_24m", "attached_node": "model.yoda.analytics___ugc__store_metrics_daily_24m"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_24m_metric_date__app_key.4970dec896": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["metric_date", "app_key"], "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_daily_24m')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_24m_metric_date__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_31c069a2f9a392e15dffce434e643282.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_24m_metric_date__app_key.4970dec896", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_daily_24m", "dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_24m_metric_date__app_key"], "alias": "dbt_utils_unique_combination_o_31c069a2f9a392e15dffce434e643282", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_31c069a2f9a392e15dffce434e643282", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_31c069a2f9a392e15dffce434e643282"}, "created_at": 1700082664.0769856, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_31c069a2f9a392e15dffce434e643282\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_daily_24m", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_daily_24m"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.yml/dbt_utils_unique_combination_o_31c069a2f9a392e15dffce434e643282.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n metric_date, app_key\n from dev_dkruh1.analytics___ugc__store_metrics_daily_24m\n group by metric_date, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_metrics_daily_24m", "attached_node": "model.yoda.analytics___ugc__store_metrics_daily_24m"}, "test.yoda.not_null_analytics___ugc__store_metrics_monthly_metric_month.c3d4f10df5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "metric_month", "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_metrics_monthly_metric_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_metrics_monthly_metric_month.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_metrics_monthly_metric_month.c3d4f10df5", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_monthly", "not_null_analytics___ugc__store_metrics_monthly_metric_month"], "alias": "not_null_analytics___ugc__store_metrics_monthly_metric_month", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.108288, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.yml/not_null_analytics___ugc__store_metrics_monthly_metric_month.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_metrics_monthly where metric_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metric_month", "file_key_name": "models.analytics___ugc__store_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__store_metrics_monthly"}, "test.yoda.not_null_analytics___ugc__store_metrics_monthly_app_key.1073499c24": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_metrics_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_metrics_monthly_app_key.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_metrics_monthly_app_key.1073499c24", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_monthly", "not_null_analytics___ugc__store_metrics_monthly_app_key"], "alias": "not_null_analytics___ugc__store_metrics_monthly_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.114133, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.yml/not_null_analytics___ugc__store_metrics_monthly_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_metrics_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___ugc__store_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__store_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_monthly_1.24eea2db84": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bd0050dd48c9190ead1365fd438ea5c3.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_monthly_1.24eea2db84", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__bd0050dd48c9190ead1365fd438ea5c3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bd0050dd48c9190ead1365fd438ea5c3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bd0050dd48c9190ead1365fd438ea5c3"}, "created_at": 1700082664.1193485, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bd0050dd48c9190ead1365fd438ea5c3\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.yml/dbt_expectations_expect_table__bd0050dd48c9190ead1365fd438ea5c3.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__store_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__store_metrics_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_monthly_metric_month__app_key.517b629212": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["metric_month", "app_key"], "model": "{{ get_where_subquery(ref('analytics___ugc__store_metrics_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_monthly_metric_month__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_c93b764216aa1e58dcc98b4c2ace9e2c.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_monthly_metric_month__app_key.517b629212", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_metrics_monthly", "dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_monthly_metric_month__app_key"], "alias": "dbt_utils_unique_combination_o_c93b764216aa1e58dcc98b4c2ace9e2c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c93b764216aa1e58dcc98b4c2ace9e2c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c93b764216aa1e58dcc98b4c2ace9e2c"}, "created_at": 1700082664.1256566, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c93b764216aa1e58dcc98b4c2ace9e2c\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.yml/dbt_utils_unique_combination_o_c93b764216aa1e58dcc98b4c2ace9e2c.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n metric_month, app_key\n from dev_dkruh1.analytics___ugc__store_metrics_monthly\n group by metric_month, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__store_metrics_monthly"}, "test.yoda.not_null_analytics___ugc__store_product_activeness_monthly_activeness_month.9f374e83a9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activeness_month", "model": "{{ get_where_subquery(ref('analytics___ugc__store_product_activeness_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_product_activeness_monthly_activeness_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__stor_dd82432f3dd48f5bfebe2ad02cf8af71.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_product_activeness_monthly_activeness_month.9f374e83a9", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_product_activeness_monthly", "not_null_analytics___ugc__store_product_activeness_monthly_activeness_month"], "alias": "not_null_analytics___ugc__stor_dd82432f3dd48f5bfebe2ad02cf8af71", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__stor_dd82432f3dd48f5bfebe2ad02cf8af71", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__stor_dd82432f3dd48f5bfebe2ad02cf8af71"}, "created_at": 1700082664.1477666, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__stor_dd82432f3dd48f5bfebe2ad02cf8af71\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.yml/not_null_analytics___ugc__stor_dd82432f3dd48f5bfebe2ad02cf8af71.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_product_activeness_monthly where activeness_month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "activeness_month", "file_key_name": "models.analytics___ugc__store_product_activeness_monthly", "attached_node": "model.yoda.analytics___ugc__store_product_activeness_monthly"}, "test.yoda.not_null_analytics___ugc__store_product_activeness_monthly_app_key.6cb5d16c3d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___ugc__store_product_activeness_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_product_activeness_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__stor_00daa061523dcc4cda89851810b5831c.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_product_activeness_monthly_app_key.6cb5d16c3d", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_product_activeness_monthly", "not_null_analytics___ugc__store_product_activeness_monthly_app_key"], "alias": "not_null_analytics___ugc__stor_00daa061523dcc4cda89851810b5831c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__stor_00daa061523dcc4cda89851810b5831c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__stor_00daa061523dcc4cda89851810b5831c"}, "created_at": 1700082664.153358, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__stor_00daa061523dcc4cda89851810b5831c\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.yml/not_null_analytics___ugc__stor_00daa061523dcc4cda89851810b5831c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_product_activeness_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___ugc__store_product_activeness_monthly", "attached_node": "model.yoda.analytics___ugc__store_product_activeness_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_product_activeness_monthly_1.50a62efcf1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__store_product_activeness_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_product_activeness_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a0bfaa3a6fe5acefe436a3ec93a7f1a1.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_product_activeness_monthly_1.50a62efcf1", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_product_activeness_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_product_activeness_monthly_1"], "alias": "dbt_expectations_expect_table__a0bfaa3a6fe5acefe436a3ec93a7f1a1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a0bfaa3a6fe5acefe436a3ec93a7f1a1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a0bfaa3a6fe5acefe436a3ec93a7f1a1"}, "created_at": 1700082664.1591332, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a0bfaa3a6fe5acefe436a3ec93a7f1a1\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.yml/dbt_expectations_expect_table__a0bfaa3a6fe5acefe436a3ec93a7f1a1.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__store_product_activeness_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_product_activeness_monthly", "attached_node": "model.yoda.analytics___ugc__store_product_activeness_monthly"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_product_activeness_monthly_activeness_month__app_key.60e55c84b7": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["activeness_month", "app_key"], "model": "{{ get_where_subquery(ref('analytics___ugc__store_product_activeness_monthly')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__store_product_activeness_monthly_activeness_month__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_303c2b878b9aa684053533027cd8ee0c.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_product_activeness_monthly_activeness_month__app_key.60e55c84b7", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_product_activeness_monthly", "dbt_utils_unique_combination_of_columns_analytics___ugc__store_product_activeness_monthly_activeness_month__app_key"], "alias": "dbt_utils_unique_combination_o_303c2b878b9aa684053533027cd8ee0c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_303c2b878b9aa684053533027cd8ee0c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_303c2b878b9aa684053533027cd8ee0c"}, "created_at": 1700082664.1652095, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_303c2b878b9aa684053533027cd8ee0c\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_product_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_product_activeness_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.yml/dbt_utils_unique_combination_o_303c2b878b9aa684053533027cd8ee0c.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n activeness_month, app_key\n from dev_dkruh1.analytics___ugc__store_product_activeness_monthly\n group by activeness_month, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_product_activeness_monthly", "attached_node": "model.yoda.analytics___ugc__store_product_activeness_monthly"}, "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id.b99dcb3c0c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_widget_month_id", "model": "{{ get_where_subquery(ref('analytics___ugc__store_widget_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__stor_6350e1a0b3c4f1ee3e5a20d534c7e85e.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id.b99dcb3c0c", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_widget_metrics_monthly", "not_null_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id"], "alias": "not_null_analytics___ugc__stor_6350e1a0b3c4f1ee3e5a20d534c7e85e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__stor_6350e1a0b3c4f1ee3e5a20d534c7e85e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__stor_6350e1a0b3c4f1ee3e5a20d534c7e85e"}, "created_at": 1700082664.1902208, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__stor_6350e1a0b3c4f1ee3e5a20d534c7e85e\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_widget_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_widget_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.yml/not_null_analytics___ugc__stor_6350e1a0b3c4f1ee3e5a20d534c7e85e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_widget_metrics_monthly where store_widget_month_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_widget_month_id", "file_key_name": "models.analytics___ugc__store_widget_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__store_widget_metrics_monthly"}, "test.yoda.unique_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id.824457c223": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "store_widget_month_id", "model": "{{ get_where_subquery(ref('analytics___ugc__store_widget_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc__store__ca882f430bada7c57924fa3956388998.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.yml", "unique_id": "test.yoda.unique_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id.824457c223", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_widget_metrics_monthly", "unique_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id"], "alias": "unique_analytics___ugc__store__ca882f430bada7c57924fa3956388998", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___ugc__store__ca882f430bada7c57924fa3956388998", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___ugc__store__ca882f430bada7c57924fa3956388998"}, "created_at": 1700082664.1961415, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___ugc__store__ca882f430bada7c57924fa3956388998\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_widget_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_widget_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.yml/unique_analytics___ugc__store__ca882f430bada7c57924fa3956388998.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select store_widget_month_id from dev_dkruh1.analytics___ugc__store_widget_metrics_monthly where store_widget_month_id is not null group by store_widget_month_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_widget_month_id", "file_key_name": "models.analytics___ugc__store_widget_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__store_widget_metrics_monthly"}, "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_month.769efb0e90": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('analytics___ugc__store_widget_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_widget_metrics_monthly_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_widget_metrics_monthly_month.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_month.769efb0e90", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_widget_metrics_monthly", "not_null_analytics___ugc__store_widget_metrics_monthly_month"], "alias": "not_null_analytics___ugc__store_widget_metrics_monthly_month", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.2020073, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_widget_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_widget_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.yml/not_null_analytics___ugc__store_widget_metrics_monthly_month.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_widget_metrics_monthly where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.analytics___ugc__store_widget_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__store_widget_metrics_monthly"}, "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_app_key.81856455ca": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('analytics___ugc__store_widget_metrics_monthly')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__store_widget_metrics_monthly_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__store_widget_metrics_monthly_app_key.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.yml", "unique_id": "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_app_key.81856455ca", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_widget_metrics_monthly", "not_null_analytics___ugc__store_widget_metrics_monthly_app_key"], "alias": "not_null_analytics___ugc__store_widget_metrics_monthly_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.2073677, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_widget_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_widget_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.yml/not_null_analytics___ugc__store_widget_metrics_monthly_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__store_widget_metrics_monthly where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.analytics___ugc__store_widget_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__store_widget_metrics_monthly"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_widget_metrics_monthly_1.cbe0147ee1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__store_widget_metrics_monthly')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_widget_metrics_monthly_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a07a4c5bbd91b56b1f4f92f127aac7ad.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_widget_metrics_monthly_1.cbe0147ee1", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__store_widget_metrics_monthly", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_widget_metrics_monthly_1"], "alias": "dbt_expectations_expect_table__a07a4c5bbd91b56b1f4f92f127aac7ad", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a07a4c5bbd91b56b1f4f92f127aac7ad", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a07a4c5bbd91b56b1f4f92f127aac7ad"}, "created_at": 1700082664.2140741, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a07a4c5bbd91b56b1f4f92f127aac7ad\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__store_widget_metrics_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__store_widget_metrics_monthly"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.yml/dbt_expectations_expect_table__a07a4c5bbd91b56b1f4f92f127aac7ad.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__store_widget_metrics_monthly\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__store_widget_metrics_monthly", "attached_node": "model.yoda.analytics___ugc__store_widget_metrics_monthly"}, "test.yoda.unique_analytics___ugc__unmigrated_review_request_token_token.fdcd099de4": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "token", "model": "{{ get_where_subquery(ref('analytics___ugc__unmigrated_review_request_token')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc__unmigrated_review_request_token_token", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc__unmigrated_review_request_token_token.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.yml", "unique_id": "test.yoda.unique_analytics___ugc__unmigrated_review_request_token_token.fdcd099de4", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__unmigrated_review_request_token", "unique_analytics___ugc__unmigrated_review_request_token_token"], "alias": "unique_analytics___ugc__unmigrated_review_request_token_token", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082664.2377439, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__unmigrated_review_request_token", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__unmigrated_review_request_token"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.yml/unique_analytics___ugc__unmigrated_review_request_token_token.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select token from dev_dkruh1.analytics___ugc__unmigrated_review_request_token where token is not null group by token having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "token", "file_key_name": "models.analytics___ugc__unmigrated_review_request_token", "attached_node": "model.yoda.analytics___ugc__unmigrated_review_request_token"}, "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_token.5e02c0380e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "token", "model": "{{ get_where_subquery(ref('analytics___ugc__unmigrated_review_request_token')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__unmigrated_review_request_token_token", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__unmigrated_review_request_token_token.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.yml", "unique_id": "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_token.5e02c0380e", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__unmigrated_review_request_token", "not_null_analytics___ugc__unmigrated_review_request_token_token"], "alias": "not_null_analytics___ugc__unmigrated_review_request_token_token", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.2430573, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc__unmigrated_review_request_token", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__unmigrated_review_request_token"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.yml/not_null_analytics___ugc__unmigrated_review_request_token_token.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__unmigrated_review_request_token where token is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "token", "file_key_name": "models.analytics___ugc__unmigrated_review_request_token", "attached_node": "model.yoda.analytics___ugc__unmigrated_review_request_token"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_1.2bffc5d009": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__unmigrated_review_request_token')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__397ff1223267504adbf8fcae9f205c88.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_1.2bffc5d009", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__unmigrated_review_request_token", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_1"], "alias": "dbt_expectations_expect_table__397ff1223267504adbf8fcae9f205c88", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__397ff1223267504adbf8fcae9f205c88", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__397ff1223267504adbf8fcae9f205c88"}, "created_at": 1700082664.2484963, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__397ff1223267504adbf8fcae9f205c88\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__unmigrated_review_request_token", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__unmigrated_review_request_token"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.yml/dbt_expectations_expect_table__397ff1223267504adbf8fcae9f205c88.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__unmigrated_review_request_token\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__unmigrated_review_request_token", "attached_node": "model.yoda.analytics___ugc__unmigrated_review_request_token"}, "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_email_token.4be6598c69": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "token", "model": "{{ get_where_subquery(ref('analytics___ugc__unmigrated_review_request_token_email')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__unmigrated_review_request_token_email_token", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__unmi_ae8d7af00c7e8fd874e64255dfdc4014.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.yml", "unique_id": "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_email_token.4be6598c69", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__unmigrated_review_request_token_email", "not_null_analytics___ugc__unmigrated_review_request_token_email_token"], "alias": "not_null_analytics___ugc__unmi_ae8d7af00c7e8fd874e64255dfdc4014", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__unmi_ae8d7af00c7e8fd874e64255dfdc4014", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__unmi_ae8d7af00c7e8fd874e64255dfdc4014"}, "created_at": 1700082664.2831488, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__unmi_ae8d7af00c7e8fd874e64255dfdc4014\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__unmigrated_review_request_token_email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__unmigrated_review_request_token_email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.yml/not_null_analytics___ugc__unmi_ae8d7af00c7e8fd874e64255dfdc4014.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__unmigrated_review_request_token_email where token is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "token", "file_key_name": "models.analytics___ugc__unmigrated_review_request_token_email", "attached_node": "model.yoda.analytics___ugc__unmigrated_review_request_token_email"}, "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_email_users_email_control_id.b2ddbde755": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "users_email_control_id", "model": "{{ get_where_subquery(ref('analytics___ugc__unmigrated_review_request_token_email')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc__unmigrated_review_request_token_email_users_email_control_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc__unmi_39e66d9e716c8759db47aa2f22bb4c04.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.yml", "unique_id": "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_email_users_email_control_id.b2ddbde755", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__unmigrated_review_request_token_email", "not_null_analytics___ugc__unmigrated_review_request_token_email_users_email_control_id"], "alias": "not_null_analytics___ugc__unmi_39e66d9e716c8759db47aa2f22bb4c04", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc__unmi_39e66d9e716c8759db47aa2f22bb4c04", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc__unmi_39e66d9e716c8759db47aa2f22bb4c04"}, "created_at": 1700082664.2887082, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc__unmi_39e66d9e716c8759db47aa2f22bb4c04\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__unmigrated_review_request_token_email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__unmigrated_review_request_token_email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.yml/not_null_analytics___ugc__unmi_39e66d9e716c8759db47aa2f22bb4c04.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc__unmigrated_review_request_token_email where users_email_control_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "users_email_control_id", "file_key_name": "models.analytics___ugc__unmigrated_review_request_token_email", "attached_node": "model.yoda.analytics___ugc__unmigrated_review_request_token_email"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_email_1.a654efd0a2": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc__unmigrated_review_request_token_email')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_email_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ae8d1b2df62971ee2e82bff3cdb5475a.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_email_1.a654efd0a2", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__unmigrated_review_request_token_email", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_email_1"], "alias": "dbt_expectations_expect_table__ae8d1b2df62971ee2e82bff3cdb5475a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ae8d1b2df62971ee2e82bff3cdb5475a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ae8d1b2df62971ee2e82bff3cdb5475a"}, "created_at": 1700082664.2944553, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ae8d1b2df62971ee2e82bff3cdb5475a\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__unmigrated_review_request_token_email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__unmigrated_review_request_token_email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.yml/dbt_expectations_expect_table__ae8d1b2df62971ee2e82bff3cdb5475a.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc__unmigrated_review_request_token_email\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__unmigrated_review_request_token_email", "attached_node": "model.yoda.analytics___ugc__unmigrated_review_request_token_email"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__unmigrated_review_request_token_email_token__users_email_control_id.e0f980471d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["token", "users_email_control_id"], "model": "{{ get_where_subquery(ref('analytics___ugc__unmigrated_review_request_token_email')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc__unmigrated_review_request_token_email_token__users_email_control_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_629dd930b71a03514e3578d399743011.sql", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__unmigrated_review_request_token_email_token__users_email_control_id.e0f980471d", "fqn": ["yoda", "analytics", "ugc", "marts", "analytics___ugc__unmigrated_review_request_token_email", "dbt_utils_unique_combination_of_columns_analytics___ugc__unmigrated_review_request_token_email_token__users_email_control_id"], "alias": "dbt_utils_unique_combination_o_629dd930b71a03514e3578d399743011", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_629dd930b71a03514e3578d399743011", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_629dd930b71a03514e3578d399743011"}, "created_at": 1700082664.3004596, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_629dd930b71a03514e3578d399743011\") }}", "language": "sql", "refs": [{"name": "analytics___ugc__unmigrated_review_request_token_email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc__unmigrated_review_request_token_email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.yml/dbt_utils_unique_combination_o_629dd930b71a03514e3578d399743011.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n token, users_email_control_id\n from dev_dkruh1.analytics___ugc__unmigrated_review_request_token_email\n group by token, users_email_control_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc__unmigrated_review_request_token_email", "attached_node": "model.yoda.analytics___ugc__unmigrated_review_request_token_email"}, "test.yoda.not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group.8f84ce0592": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "previous_day_plan_group", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__ugc_plan_group_change_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___3004f4025285d52d1d9403f8c06f45e9.sql", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group.8f84ce0592", "fqn": ["yoda", "analytics", "ugc", "staging", "base", "analytics___ugc_stg__ugc_plan_group_change_mapping", "not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group"], "alias": "not_null_analytics___ugc_stg___3004f4025285d52d1d9403f8c06f45e9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___3004f4025285d52d1d9403f8c06f45e9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___3004f4025285d52d1d9403f8c06f45e9"}, "created_at": 1700082664.371828, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___3004f4025285d52d1d9403f8c06f45e9\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__ugc_plan_group_change_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.yml/not_null_analytics___ugc_stg___3004f4025285d52d1d9403f8c06f45e9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__ugc_plan_group_change_mapping where previous_day_plan_group is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "previous_day_plan_group", "file_key_name": "models.analytics___ugc_stg__ugc_plan_group_change_mapping", "attached_node": "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"}, "test.yoda.not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_current_day_plan_group.f14c7ed426": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "current_day_plan_group", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__ugc_plan_group_change_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_current_day_plan_group", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___6e5d74025ff8ccc77f44d498cab060c3.sql", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_current_day_plan_group.f14c7ed426", "fqn": ["yoda", "analytics", "ugc", "staging", "base", "analytics___ugc_stg__ugc_plan_group_change_mapping", "not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_current_day_plan_group"], "alias": "not_null_analytics___ugc_stg___6e5d74025ff8ccc77f44d498cab060c3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___6e5d74025ff8ccc77f44d498cab060c3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___6e5d74025ff8ccc77f44d498cab060c3"}, "created_at": 1700082664.3775835, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___6e5d74025ff8ccc77f44d498cab060c3\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__ugc_plan_group_change_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.yml/not_null_analytics___ugc_stg___6e5d74025ff8ccc77f44d498cab060c3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__ugc_plan_group_change_mapping where current_day_plan_group is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "current_day_plan_group", "file_key_name": "models.analytics___ugc_stg__ugc_plan_group_change_mapping", "attached_node": "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__ugc_plan_group_change_mapping_1.5a38ea7600": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__ugc_plan_group_change_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__ugc_plan_group_change_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__666c2b7802bd58e3db344481bf6ea1e2.sql", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__ugc_plan_group_change_mapping_1.5a38ea7600", "fqn": ["yoda", "analytics", "ugc", "staging", "base", "analytics___ugc_stg__ugc_plan_group_change_mapping", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__ugc_plan_group_change_mapping_1"], "alias": "dbt_expectations_expect_table__666c2b7802bd58e3db344481bf6ea1e2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__666c2b7802bd58e3db344481bf6ea1e2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__666c2b7802bd58e3db344481bf6ea1e2"}, "created_at": 1700082664.3830032, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__666c2b7802bd58e3db344481bf6ea1e2\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__ugc_plan_group_change_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.yml/dbt_expectations_expect_table__666c2b7802bd58e3db344481bf6ea1e2.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__ugc_plan_group_change_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__ugc_plan_group_change_mapping", "attached_node": "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group__current_day_plan_group.8467be1d05": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["previous_day_plan_group", "current_day_plan_group"], "model": "{{ get_where_subquery(ref('analytics___ugc_stg__ugc_plan_group_change_mapping')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group__current_day_plan_group", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_a4e8d6fcfb8cf8b974a9ad041d896e74.sql", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group__current_day_plan_group.8467be1d05", "fqn": ["yoda", "analytics", "ugc", "staging", "base", "analytics___ugc_stg__ugc_plan_group_change_mapping", "dbt_utils_unique_combination_of_columns_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group__current_day_plan_group"], "alias": "dbt_utils_unique_combination_o_a4e8d6fcfb8cf8b974a9ad041d896e74", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a4e8d6fcfb8cf8b974a9ad041d896e74", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a4e8d6fcfb8cf8b974a9ad041d896e74"}, "created_at": 1700082664.389177, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a4e8d6fcfb8cf8b974a9ad041d896e74\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__ugc_plan_group_change_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.yml/dbt_utils_unique_combination_o_a4e8d6fcfb8cf8b974a9ad041d896e74.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n previous_day_plan_group, current_day_plan_group\n from dev_dkruh1.analytics___ugc_stg__ugc_plan_group_change_mapping\n group by previous_day_plan_group, current_day_plan_group\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__ugc_plan_group_change_mapping", "attached_node": "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"}, "test.yoda.unique_analytics___ugc_stg__comment_comment_id.176198d33d": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "comment_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__comment')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc_stg__comment_comment_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc_stg__comment_comment_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.yml", "unique_id": "test.yoda.unique_analytics___ugc_stg__comment_comment_id.176198d33d", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__comment", "unique_analytics___ugc_stg__comment_comment_id"], "alias": "unique_analytics___ugc_stg__comment_comment_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082664.4163144, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__comment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__comment"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.yml/unique_analytics___ugc_stg__comment_comment_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select comment_id from dev_dkruh1.analytics___ugc_stg__comment where comment_id is not null group by comment_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "comment_id", "file_key_name": "models.analytics___ugc_stg__comment", "attached_node": "model.yoda.analytics___ugc_stg__comment"}, "test.yoda.not_null_analytics___ugc_stg__comment_comment_id.624b204f24": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "comment_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__comment')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__comment_comment_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__comment_comment_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__comment_comment_id.624b204f24", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__comment", "not_null_analytics___ugc_stg__comment_comment_id"], "alias": "not_null_analytics___ugc_stg__comment_comment_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.4216354, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__comment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__comment"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.yml/not_null_analytics___ugc_stg__comment_comment_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__comment where comment_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "comment_id", "file_key_name": "models.analytics___ugc_stg__comment", "attached_node": "model.yoda.analytics___ugc_stg__comment"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__comment_1.77e489a153": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__comment')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__comment_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__140601893bebfc4f891fdd65baecc418.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__comment_1.77e489a153", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__comment", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__comment_1"], "alias": "dbt_expectations_expect_table__140601893bebfc4f891fdd65baecc418", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__140601893bebfc4f891fdd65baecc418", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__140601893bebfc4f891fdd65baecc418"}, "created_at": 1700082664.427091, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__140601893bebfc4f891fdd65baecc418\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__comment", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__comment"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.yml/dbt_expectations_expect_table__140601893bebfc4f891fdd65baecc418.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__comment\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__comment", "attached_node": "model.yoda.analytics___ugc_stg__comment"}, "test.yoda.unique_analytics___ugc_stg__dirty_words_content_row_id.4d33cf4736": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "row_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__dirty_words_content')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc_stg__dirty_words_content_row_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc_stg__dirty_words_content_row_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.yml", "unique_id": "test.yoda.unique_analytics___ugc_stg__dirty_words_content_row_id.4d33cf4736", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__dirty_words_content", "unique_analytics___ugc_stg__dirty_words_content_row_id"], "alias": "unique_analytics___ugc_stg__dirty_words_content_row_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082664.448922, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__dirty_words_content", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__dirty_words_content"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.yml/unique_analytics___ugc_stg__dirty_words_content_row_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select row_id from dev_dkruh1.analytics___ugc_stg__dirty_words_content where row_id is not null group by row_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "row_id", "file_key_name": "models.analytics___ugc_stg__dirty_words_content", "attached_node": "model.yoda.analytics___ugc_stg__dirty_words_content"}, "test.yoda.not_null_analytics___ugc_stg__dirty_words_content_row_id.10b8fc8eca": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "row_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__dirty_words_content')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__dirty_words_content_row_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__dirty_words_content_row_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__dirty_words_content_row_id.10b8fc8eca", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__dirty_words_content", "not_null_analytics___ugc_stg__dirty_words_content_row_id"], "alias": "not_null_analytics___ugc_stg__dirty_words_content_row_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.456006, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__dirty_words_content", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__dirty_words_content"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.yml/not_null_analytics___ugc_stg__dirty_words_content_row_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__dirty_words_content where row_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "row_id", "file_key_name": "models.analytics___ugc_stg__dirty_words_content", "attached_node": "model.yoda.analytics___ugc_stg__dirty_words_content"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__dirty_words_content_1.01c4db28a4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__dirty_words_content')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__dirty_words_content_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__76560327dee537ec4c24dc7672abd4e7.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__dirty_words_content_1.01c4db28a4", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__dirty_words_content", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__dirty_words_content_1"], "alias": "dbt_expectations_expect_table__76560327dee537ec4c24dc7672abd4e7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__76560327dee537ec4c24dc7672abd4e7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__76560327dee537ec4c24dc7672abd4e7"}, "created_at": 1700082664.4618547, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__76560327dee537ec4c24dc7672abd4e7\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__dirty_words_content", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__dirty_words_content"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.yml/dbt_expectations_expect_table__76560327dee537ec4c24dc7672abd4e7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__dirty_words_content\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__dirty_words_content", "attached_node": "model.yoda.analytics___ugc_stg__dirty_words_content"}, "test.yoda.not_null_analytics___ugc_stg__email_email_analytics_id.be969eaf47": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "email_analytics_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__email')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__email_email_analytics_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__email_email_analytics_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__email_email_analytics_id.be969eaf47", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__email", "not_null_analytics___ugc_stg__email_email_analytics_id"], "alias": "not_null_analytics___ugc_stg__email_email_analytics_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.4967077, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.yml/not_null_analytics___ugc_stg__email_email_analytics_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__email where email_analytics_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email_analytics_id", "file_key_name": "models.analytics___ugc_stg__email", "attached_node": "model.yoda.analytics___ugc_stg__email"}, "test.yoda.unique_analytics___ugc_stg__email_email_analytics_id.3236432e37": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "email_analytics_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__email')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc_stg__email_email_analytics_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc_stg__email_email_analytics_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.yml", "unique_id": "test.yoda.unique_analytics___ugc_stg__email_email_analytics_id.3236432e37", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__email", "unique_analytics___ugc_stg__email_email_analytics_id"], "alias": "unique_analytics___ugc_stg__email_email_analytics_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082664.5018327, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.yml/unique_analytics___ugc_stg__email_email_analytics_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select email_analytics_id from dev_dkruh1.analytics___ugc_stg__email where email_analytics_id is not null group by email_analytics_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email_analytics_id", "file_key_name": "models.analytics___ugc_stg__email", "attached_node": "model.yoda.analytics___ugc_stg__email"}, "test.yoda.not_null_analytics___ugc_stg__email_email_id.d06d4e3ea5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "email_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__email')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__email_email_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__email_email_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__email_email_id.d06d4e3ea5", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__email", "not_null_analytics___ugc_stg__email_email_id"], "alias": "not_null_analytics___ugc_stg__email_email_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.5071843, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.yml/not_null_analytics___ugc_stg__email_email_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__email where email_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email_id", "file_key_name": "models.analytics___ugc_stg__email", "attached_node": "model.yoda.analytics___ugc_stg__email"}, "test.yoda.unique_analytics___ugc_stg__email_email_id.3b8b1114cc": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "email_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__email')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc_stg__email_email_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc_stg__email_email_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.yml", "unique_id": "test.yoda.unique_analytics___ugc_stg__email_email_id.3b8b1114cc", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__email", "unique_analytics___ugc_stg__email_email_id"], "alias": "unique_analytics___ugc_stg__email_email_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082664.5126307, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.yml/unique_analytics___ugc_stg__email_email_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select email_id from dev_dkruh1.analytics___ugc_stg__email where email_id is not null group by email_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email_id", "file_key_name": "models.analytics___ugc_stg__email", "attached_node": "model.yoda.analytics___ugc_stg__email"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__email_1.38f0ffaa3d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__email')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__email_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7eaf8d71713f313543293bfd95555119.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__email_1.38f0ffaa3d", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__email", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__email_1"], "alias": "dbt_expectations_expect_table__7eaf8d71713f313543293bfd95555119", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7eaf8d71713f313543293bfd95555119", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7eaf8d71713f313543293bfd95555119"}, "created_at": 1700082664.5176072, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7eaf8d71713f313543293bfd95555119\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.yml/dbt_expectations_expect_table__7eaf8d71713f313543293bfd95555119.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__email\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__email", "attached_node": "model.yoda.analytics___ugc_stg__email"}, "test.yoda.unique_analytics___ugc_stg__image_image_id.8d2a490eb2": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "image_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__image')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc_stg__image_image_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc_stg__image_image_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.yml", "unique_id": "test.yoda.unique_analytics___ugc_stg__image_image_id.8d2a490eb2", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__image", "unique_analytics___ugc_stg__image_image_id"], "alias": "unique_analytics___ugc_stg__image_image_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082664.543109, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__image", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__image"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.yml/unique_analytics___ugc_stg__image_image_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select image_id from dev_dkruh1.analytics___ugc_stg__image where image_id is not null group by image_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "image_id", "file_key_name": "models.analytics___ugc_stg__image", "attached_node": "model.yoda.analytics___ugc_stg__image"}, "test.yoda.not_null_analytics___ugc_stg__image_image_id.93c006695c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "image_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__image')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__image_image_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__image_image_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__image_image_id.93c006695c", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__image", "not_null_analytics___ugc_stg__image_image_id"], "alias": "not_null_analytics___ugc_stg__image_image_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.5483687, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__image", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__image"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.yml/not_null_analytics___ugc_stg__image_image_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__image where image_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "image_id", "file_key_name": "models.analytics___ugc_stg__image", "attached_node": "model.yoda.analytics___ugc_stg__image"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__image_1.3bc5f175b6": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__image')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__image_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2ca663ec3bec9f6e908f4e4481c409d6.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__image_1.3bc5f175b6", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__image", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__image_1"], "alias": "dbt_expectations_expect_table__2ca663ec3bec9f6e908f4e4481c409d6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2ca663ec3bec9f6e908f4e4481c409d6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2ca663ec3bec9f6e908f4e4481c409d6"}, "created_at": 1700082664.554329, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2ca663ec3bec9f6e908f4e4481c409d6\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__image", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__image"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.yml/dbt_expectations_expect_table__2ca663ec3bec9f6e908f4e4481c409d6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__image\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__image", "attached_node": "model.yoda.analytics___ugc_stg__image"}, "test.yoda.unique_analytics___ugc_stg__metadata_type_metadata_type_id.6ae00d97a8": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "metadata_type_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__metadata_type')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc_stg__metadata_type_metadata_type_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc_stg__metadata_type_metadata_type_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.yml", "unique_id": "test.yoda.unique_analytics___ugc_stg__metadata_type_metadata_type_id.6ae00d97a8", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__metadata_type", "unique_analytics___ugc_stg__metadata_type_metadata_type_id"], "alias": "unique_analytics___ugc_stg__metadata_type_metadata_type_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082664.5752912, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__metadata_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__metadata_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.yml/unique_analytics___ugc_stg__metadata_type_metadata_type_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select metadata_type_id from dev_dkruh1.analytics___ugc_stg__metadata_type where metadata_type_id is not null group by metadata_type_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metadata_type_id", "file_key_name": "models.analytics___ugc_stg__metadata_type", "attached_node": "model.yoda.analytics___ugc_stg__metadata_type"}, "test.yoda.not_null_analytics___ugc_stg__metadata_type_metadata_type_id.b1ad12f505": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "metadata_type_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__metadata_type')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__metadata_type_metadata_type_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__metadata_type_metadata_type_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__metadata_type_metadata_type_id.b1ad12f505", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__metadata_type", "not_null_analytics___ugc_stg__metadata_type_metadata_type_id"], "alias": "not_null_analytics___ugc_stg__metadata_type_metadata_type_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.5804048, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__metadata_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__metadata_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.yml/not_null_analytics___ugc_stg__metadata_type_metadata_type_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__metadata_type where metadata_type_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "metadata_type_id", "file_key_name": "models.analytics___ugc_stg__metadata_type", "attached_node": "model.yoda.analytics___ugc_stg__metadata_type"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__metadata_type_1.e965017da7": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__metadata_type')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__metadata_type_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__61c7f5ec55f1a157fbca6dd1aba8e842.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__metadata_type_1.e965017da7", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__metadata_type", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__metadata_type_1"], "alias": "dbt_expectations_expect_table__61c7f5ec55f1a157fbca6dd1aba8e842", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__61c7f5ec55f1a157fbca6dd1aba8e842", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__61c7f5ec55f1a157fbca6dd1aba8e842"}, "created_at": 1700082664.5857644, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__61c7f5ec55f1a157fbca6dd1aba8e842\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__metadata_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__metadata_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.yml/dbt_expectations_expect_table__61c7f5ec55f1a157fbca6dd1aba8e842.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__metadata_type\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__metadata_type", "attached_node": "model.yoda.analytics___ugc_stg__metadata_type"}, "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_feature_id.0d3b7ec8aa": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_feature_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__owner_feature_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_feature_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___90bc8d8e774df295505175fba74fe99c.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_feature_id.0d3b7ec8aa", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_enablement_event", "not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_feature_id"], "alias": "not_null_analytics___ugc_stg___90bc8d8e774df295505175fba74fe99c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___90bc8d8e774df295505175fba74fe99c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___90bc8d8e774df295505175fba74fe99c"}, "created_at": 1700082664.6106398, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___90bc8d8e774df295505175fba74fe99c\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml/not_null_analytics___ugc_stg___90bc8d8e774df295505175fba74fe99c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event where owner_feature_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_feature_id", "file_key_name": "models.analytics___ugc_stg__owner_feature_enablement_event", "attached_node": "model.yoda.analytics___ugc_stg__owner_feature_enablement_event"}, "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_id.0434a0f934": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__owner_feature_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___1be35f767911018a296f33f0639cad64.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_id.0434a0f934", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_enablement_event", "not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_id"], "alias": "not_null_analytics___ugc_stg___1be35f767911018a296f33f0639cad64", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___1be35f767911018a296f33f0639cad64", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___1be35f767911018a296f33f0639cad64"}, "created_at": 1700082664.6162014, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___1be35f767911018a296f33f0639cad64\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml/not_null_analytics___ugc_stg___1be35f767911018a296f33f0639cad64.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event where owner_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_id", "file_key_name": "models.analytics___ugc_stg__owner_feature_enablement_event", "attached_node": "model.yoda.analytics___ugc_stg__owner_feature_enablement_event"}, "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_feature_id.c5fb24a3f1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "feature_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__owner_feature_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__owner_feature_enablement_event_feature_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___40a96b03b8050be7992f682e42bee34f.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_feature_id.c5fb24a3f1", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_enablement_event", "not_null_analytics___ugc_stg__owner_feature_enablement_event_feature_id"], "alias": "not_null_analytics___ugc_stg___40a96b03b8050be7992f682e42bee34f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___40a96b03b8050be7992f682e42bee34f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___40a96b03b8050be7992f682e42bee34f"}, "created_at": 1700082664.621386, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___40a96b03b8050be7992f682e42bee34f\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml/not_null_analytics___ugc_stg___40a96b03b8050be7992f682e42bee34f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event where feature_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "feature_id", "file_key_name": "models.analytics___ugc_stg__owner_feature_enablement_event", "attached_node": "model.yoda.analytics___ugc_stg__owner_feature_enablement_event"}, "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_type.f59683da70": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "owner_type", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__owner_feature_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___81aca950ed745d9ac80d35ddbd8588c8.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_type.f59683da70", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_enablement_event", "not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_type"], "alias": "not_null_analytics___ugc_stg___81aca950ed745d9ac80d35ddbd8588c8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___81aca950ed745d9ac80d35ddbd8588c8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___81aca950ed745d9ac80d35ddbd8588c8"}, "created_at": 1700082664.6270225, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___81aca950ed745d9ac80d35ddbd8588c8\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml/not_null_analytics___ugc_stg___81aca950ed745d9ac80d35ddbd8588c8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event where owner_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "owner_type", "file_key_name": "models.analytics___ugc_stg__owner_feature_enablement_event", "attached_node": "model.yoda.analytics___ugc_stg__owner_feature_enablement_event"}, "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_created_at.c9b79bcd9e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__owner_feature_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__owner_feature_enablement_event_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___9a84c07455c8c17730b935622233ee08.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_created_at.c9b79bcd9e", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_enablement_event", "not_null_analytics___ugc_stg__owner_feature_enablement_event_created_at"], "alias": "not_null_analytics___ugc_stg___9a84c07455c8c17730b935622233ee08", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___9a84c07455c8c17730b935622233ee08", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___9a84c07455c8c17730b935622233ee08"}, "created_at": 1700082664.6325233, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___9a84c07455c8c17730b935622233ee08\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml/not_null_analytics___ugc_stg___9a84c07455c8c17730b935622233ee08.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.analytics___ugc_stg__owner_feature_enablement_event", "attached_node": "model.yoda.analytics___ugc_stg__owner_feature_enablement_event"}, "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_updated_at.3ba9ddca81": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__owner_feature_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__owner_feature_enablement_event_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___3e685dd321994762f696902f3cf165ea.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_updated_at.3ba9ddca81", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_enablement_event", "not_null_analytics___ugc_stg__owner_feature_enablement_event_updated_at"], "alias": "not_null_analytics___ugc_stg___3e685dd321994762f696902f3cf165ea", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___3e685dd321994762f696902f3cf165ea", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___3e685dd321994762f696902f3cf165ea"}, "created_at": 1700082664.6381218, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___3e685dd321994762f696902f3cf165ea\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml/not_null_analytics___ugc_stg___3e685dd321994762f696902f3cf165ea.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.analytics___ugc_stg__owner_feature_enablement_event", "attached_node": "model.yoda.analytics___ugc_stg__owner_feature_enablement_event"}, "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_disabled.f99ad1250c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_disabled", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__owner_feature_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__owner_feature_enablement_event_is_disabled", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___b14ec0427c22ea638d11bb12e4b2d5ee.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_disabled.f99ad1250c", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_enablement_event", "not_null_analytics___ugc_stg__owner_feature_enablement_event_is_disabled"], "alias": "not_null_analytics___ugc_stg___b14ec0427c22ea638d11bb12e4b2d5ee", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___b14ec0427c22ea638d11bb12e4b2d5ee", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___b14ec0427c22ea638d11bb12e4b2d5ee"}, "created_at": 1700082664.6433437, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___b14ec0427c22ea638d11bb12e4b2d5ee\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml/not_null_analytics___ugc_stg___b14ec0427c22ea638d11bb12e4b2d5ee.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event where is_disabled is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_disabled", "file_key_name": "models.analytics___ugc_stg__owner_feature_enablement_event", "attached_node": "model.yoda.analytics___ugc_stg__owner_feature_enablement_event"}, "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_user_enabled.1d360123cf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_user_enabled", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__owner_feature_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__owner_feature_enablement_event_is_user_enabled", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___33edba24f07636a4e360bbcdec20a8e0.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_user_enabled.1d360123cf", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_enablement_event", "not_null_analytics___ugc_stg__owner_feature_enablement_event_is_user_enabled"], "alias": "not_null_analytics___ugc_stg___33edba24f07636a4e360bbcdec20a8e0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___33edba24f07636a4e360bbcdec20a8e0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___33edba24f07636a4e360bbcdec20a8e0"}, "created_at": 1700082664.650318, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___33edba24f07636a4e360bbcdec20a8e0\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml/not_null_analytics___ugc_stg___33edba24f07636a4e360bbcdec20a8e0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event where is_user_enabled is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_user_enabled", "file_key_name": "models.analytics___ugc_stg__owner_feature_enablement_event", "attached_node": "model.yoda.analytics___ugc_stg__owner_feature_enablement_event"}, "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_floating.2d4d22ef6e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_floating", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__owner_feature_enablement_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__owner_feature_enablement_event_is_floating", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___3e0d02243c4d6e47e14fd162393ab35e.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_floating.2d4d22ef6e", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_enablement_event", "not_null_analytics___ugc_stg__owner_feature_enablement_event_is_floating"], "alias": "not_null_analytics___ugc_stg___3e0d02243c4d6e47e14fd162393ab35e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___3e0d02243c4d6e47e14fd162393ab35e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___3e0d02243c4d6e47e14fd162393ab35e"}, "created_at": 1700082664.6561117, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___3e0d02243c4d6e47e14fd162393ab35e\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml/not_null_analytics___ugc_stg___3e0d02243c4d6e47e14fd162393ab35e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event where is_floating is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_floating", "file_key_name": "models.analytics___ugc_stg__owner_feature_enablement_event", "attached_node": "model.yoda.analytics___ugc_stg__owner_feature_enablement_event"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_enablement_event_1.017f2f4925": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__owner_feature_enablement_event')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_enablement_event_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__bf5d14bcfffbd42ea3b10a6607632c2f.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_enablement_event_1.017f2f4925", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_enablement_event", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_enablement_event_1"], "alias": "dbt_expectations_expect_table__bf5d14bcfffbd42ea3b10a6607632c2f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__bf5d14bcfffbd42ea3b10a6607632c2f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__bf5d14bcfffbd42ea3b10a6607632c2f"}, "created_at": 1700082664.6614578, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__bf5d14bcfffbd42ea3b10a6607632c2f\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.yml/dbt_expectations_expect_table__bf5d14bcfffbd42ea3b10a6607632c2f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__owner_feature_enablement_event\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__owner_feature_enablement_event", "attached_node": "model.yoda.analytics___ugc_stg__owner_feature_enablement_event"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_setting_change_event_1.722d6279f0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__owner_feature_setting_change_event')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_setting_change_event_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3c678d018626081f4b2ca86979bcefb9.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_setting_change_event_1.722d6279f0", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__owner_feature_setting_change_event", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_setting_change_event_1"], "alias": "dbt_expectations_expect_table__3c678d018626081f4b2ca86979bcefb9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3c678d018626081f4b2ca86979bcefb9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3c678d018626081f4b2ca86979bcefb9"}, "created_at": 1700082664.682885, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3c678d018626081f4b2ca86979bcefb9\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__owner_feature_setting_change_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_setting_change_event"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.yml/dbt_expectations_expect_table__3c678d018626081f4b2ca86979bcefb9.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__owner_feature_setting_change_event\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__owner_feature_setting_change_event", "attached_node": "model.yoda.analytics___ugc_stg__owner_feature_setting_change_event"}, "test.yoda.not_null_analytics___ugc_stg__reminder_reminder_id.0443c861f0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "reminder_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__reminder')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__reminder_reminder_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__reminder_reminder_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__reminder_reminder_id.0443c861f0", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__reminder", "not_null_analytics___ugc_stg__reminder_reminder_id"], "alias": "not_null_analytics___ugc_stg__reminder_reminder_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.709866, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__reminder", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__reminder"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.yml/not_null_analytics___ugc_stg__reminder_reminder_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__reminder where reminder_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "reminder_id", "file_key_name": "models.analytics___ugc_stg__reminder", "attached_node": "model.yoda.analytics___ugc_stg__reminder"}, "test.yoda.not_null_analytics___ugc_stg__reminder_store_id.e2fc574452": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__reminder')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__reminder_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__reminder_store_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__reminder_store_id.e2fc574452", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__reminder", "not_null_analytics___ugc_stg__reminder_store_id"], "alias": "not_null_analytics___ugc_stg__reminder_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.715111, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__reminder", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__reminder"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.yml/not_null_analytics___ugc_stg__reminder_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__reminder where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.analytics___ugc_stg__reminder", "attached_node": "model.yoda.analytics___ugc_stg__reminder"}, "test.yoda.accepted_values_analytics___ugc_stg__reminder_is_enabled__0__1.28a0cbe576": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1], "column_name": "is_enabled", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__reminder')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_analytics___ugc_stg__reminder_is_enabled__0__1", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_analytics___ugc_stg__reminder_is_enabled__0__1.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.yml", "unique_id": "test.yoda.accepted_values_analytics___ugc_stg__reminder_is_enabled__0__1.28a0cbe576", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__reminder", "accepted_values_analytics___ugc_stg__reminder_is_enabled__0__1"], "alias": "accepted_values_analytics___ugc_stg__reminder_is_enabled__0__1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.7200725, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__reminder", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__reminder"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.yml/accepted_values_analytics___ugc_stg__reminder_is_enabled__0__1.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_enabled as value_field,\n count(*) as n_records\n\n from dev_dkruh1.analytics___ugc_stg__reminder\n group by is_enabled\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_enabled", "file_key_name": "models.analytics___ugc_stg__reminder", "attached_node": "model.yoda.analytics___ugc_stg__reminder"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_1.904e70f372": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__reminder')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__b9f1a1fee1199cbdbbc5a3ff5c9a5158.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_1.904e70f372", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__reminder", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_1"], "alias": "dbt_expectations_expect_table__b9f1a1fee1199cbdbbc5a3ff5c9a5158", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__b9f1a1fee1199cbdbbc5a3ff5c9a5158", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__b9f1a1fee1199cbdbbc5a3ff5c9a5158"}, "created_at": 1700082664.7255716, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__b9f1a1fee1199cbdbbc5a3ff5c9a5158\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__reminder", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__reminder"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.yml/dbt_expectations_expect_table__b9f1a1fee1199cbdbbc5a3ff5c9a5158.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__reminder\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__reminder", "attached_node": "model.yoda.analytics___ugc_stg__reminder"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_reminder_id__store_id.80e3f0e40c": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["reminder_id", "store_id"], "model": "{{ get_where_subquery(ref('analytics___ugc_stg__reminder')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_reminder_id__store_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_3e92b09cb99821142b4d37f8c293e81d.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_reminder_id__store_id.80e3f0e40c", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__reminder", "dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_reminder_id__store_id"], "alias": "dbt_utils_unique_combination_o_3e92b09cb99821142b4d37f8c293e81d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_3e92b09cb99821142b4d37f8c293e81d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_3e92b09cb99821142b4d37f8c293e81d"}, "created_at": 1700082664.7318828, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_3e92b09cb99821142b4d37f8c293e81d\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__reminder", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__reminder"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.yml/dbt_utils_unique_combination_o_3e92b09cb99821142b4d37f8c293e81d.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n reminder_id, store_id\n from dev_dkruh1.analytics___ugc_stg__reminder\n group by reminder_id, store_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__reminder", "attached_node": "model.yoda.analytics___ugc_stg__reminder"}, "test.yoda.not_null_analytics___ugc_stg__reminder_snapshot_store_id.9a36c060c0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__reminder_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__reminder_snapshot_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__reminder_snapshot_store_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__reminder_snapshot_store_id.9a36c060c0", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__reminder_snapshot", "not_null_analytics___ugc_stg__reminder_snapshot_store_id"], "alias": "not_null_analytics___ugc_stg__reminder_snapshot_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.757068, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__reminder_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__reminder_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.yml/not_null_analytics___ugc_stg__reminder_snapshot_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__reminder_snapshot where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.analytics___ugc_stg__reminder_snapshot", "attached_node": "model.yoda.analytics___ugc_stg__reminder_snapshot"}, "test.yoda.not_null_analytics___ugc_stg__reminder_snapshot_reminder_id.eb8468219c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "reminder_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__reminder_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__reminder_snapshot_reminder_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__reminder_snapshot_reminder_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__reminder_snapshot_reminder_id.eb8468219c", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__reminder_snapshot", "not_null_analytics___ugc_stg__reminder_snapshot_reminder_id"], "alias": "not_null_analytics___ugc_stg__reminder_snapshot_reminder_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.762479, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__reminder_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__reminder_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.yml/not_null_analytics___ugc_stg__reminder_snapshot_reminder_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__reminder_snapshot where reminder_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "reminder_id", "file_key_name": "models.analytics___ugc_stg__reminder_snapshot", "attached_node": "model.yoda.analytics___ugc_stg__reminder_snapshot"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_snapshot_1.522406774f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__reminder_snapshot')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_snapshot_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__58573712ed4d82a7a9ef56f2af7fea47.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_snapshot_1.522406774f", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__reminder_snapshot", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_snapshot_1"], "alias": "dbt_expectations_expect_table__58573712ed4d82a7a9ef56f2af7fea47", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__58573712ed4d82a7a9ef56f2af7fea47", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__58573712ed4d82a7a9ef56f2af7fea47"}, "created_at": 1700082664.767966, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__58573712ed4d82a7a9ef56f2af7fea47\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__reminder_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__reminder_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.yml/dbt_expectations_expect_table__58573712ed4d82a7a9ef56f2af7fea47.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__reminder_snapshot\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__reminder_snapshot", "attached_node": "model.yoda.analytics___ugc_stg__reminder_snapshot"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_snapshot_reminder_id__store_id__updated_at.455f7570ac": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["reminder_id", "store_id", "updated_at"], "model": "{{ get_where_subquery(ref('analytics___ugc_stg__reminder_snapshot')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_snapshot_reminder_id__store_id__updated_at", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_241512db2dce35f45cc48d4753256ec7.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_snapshot_reminder_id__store_id__updated_at.455f7570ac", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__reminder_snapshot", "dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_snapshot_reminder_id__store_id__updated_at"], "alias": "dbt_utils_unique_combination_o_241512db2dce35f45cc48d4753256ec7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_241512db2dce35f45cc48d4753256ec7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_241512db2dce35f45cc48d4753256ec7"}, "created_at": 1700082664.7753308, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_241512db2dce35f45cc48d4753256ec7\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__reminder_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__reminder_snapshot"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.yml/dbt_utils_unique_combination_o_241512db2dce35f45cc48d4753256ec7.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n reminder_id, store_id, updated_at\n from dev_dkruh1.analytics___ugc_stg__reminder_snapshot\n group by reminder_id, store_id, updated_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__reminder_snapshot", "attached_node": "model.yoda.analytics___ugc_stg__reminder_snapshot"}, "test.yoda.unique_analytics___ugc_stg__review_review_id.340430637c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "review_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc_stg__review_review_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc_stg__review_review_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.yml", "unique_id": "test.yoda.unique_analytics___ugc_stg__review_review_id.340430637c", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review", "unique_analytics___ugc_stg__review_review_id"], "alias": "unique_analytics___ugc_stg__review_review_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082664.8086984, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.yml/unique_analytics___ugc_stg__review_review_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select review_id from dev_dkruh1.analytics___ugc_stg__review where review_id is not null group by review_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_id", "file_key_name": "models.analytics___ugc_stg__review", "attached_node": "model.yoda.analytics___ugc_stg__review"}, "test.yoda.not_null_analytics___ugc_stg__review_review_id.fb39d68d60": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "review_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__review_review_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__review_review_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__review_review_id.fb39d68d60", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review", "not_null_analytics___ugc_stg__review_review_id"], "alias": "not_null_analytics___ugc_stg__review_review_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.813913, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.yml/not_null_analytics___ugc_stg__review_review_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__review where review_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_id", "file_key_name": "models.analytics___ugc_stg__review", "attached_node": "model.yoda.analytics___ugc_stg__review"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_1.df703fc694": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__446d5dc497d4a0bc7b226d02b545c932.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_1.df703fc694", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_1"], "alias": "dbt_expectations_expect_table__446d5dc497d4a0bc7b226d02b545c932", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__446d5dc497d4a0bc7b226d02b545c932", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__446d5dc497d4a0bc7b226d02b545c932"}, "created_at": 1700082664.819212, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__446d5dc497d4a0bc7b226d02b545c932\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.yml/dbt_expectations_expect_table__446d5dc497d4a0bc7b226d02b545c932.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__review\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__review", "attached_node": "model.yoda.analytics___ugc_stg__review"}, "test.yoda.not_null_analytics___ugc_stg__review_image_review_id.cb84240bb1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "review_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_image')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__review_image_review_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__review_image_review_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__review_image_review_id.cb84240bb1", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_image", "not_null_analytics___ugc_stg__review_image_review_id"], "alias": "not_null_analytics___ugc_stg__review_image_review_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.8399804, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_image", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_image"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.yml/not_null_analytics___ugc_stg__review_image_review_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__review_image where review_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_id", "file_key_name": "models.analytics___ugc_stg__review_image", "attached_node": "model.yoda.analytics___ugc_stg__review_image"}, "test.yoda.not_null_analytics___ugc_stg__review_image_image_id.dbd0627e86": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "image_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_image')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__review_image_image_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__review_image_image_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__review_image_image_id.dbd0627e86", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_image", "not_null_analytics___ugc_stg__review_image_image_id"], "alias": "not_null_analytics___ugc_stg__review_image_image_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082664.8450062, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_image", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_image"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.yml/not_null_analytics___ugc_stg__review_image_image_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__review_image where image_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "image_id", "file_key_name": "models.analytics___ugc_stg__review_image", "attached_node": "model.yoda.analytics___ugc_stg__review_image"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_image_1.dc6b7d5d4a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_image')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_image_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__189c2d11b344bcd1b961a7100e5ae4e9.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_image_1.dc6b7d5d4a", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_image", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_image_1"], "alias": "dbt_expectations_expect_table__189c2d11b344bcd1b961a7100e5ae4e9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__189c2d11b344bcd1b961a7100e5ae4e9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__189c2d11b344bcd1b961a7100e5ae4e9"}, "created_at": 1700082664.850241, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__189c2d11b344bcd1b961a7100e5ae4e9\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_image", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_image"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.yml/dbt_expectations_expect_table__189c2d11b344bcd1b961a7100e5ae4e9.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__review_image\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__review_image", "attached_node": "model.yoda.analytics___ugc_stg__review_image"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_image_review_id__image_id.a73115c375": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["review_id", "image_id"], "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_image')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_image_review_id__image_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_eabb2d4695eec4af3ca468393f5e93ae.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_image_review_id__image_id.a73115c375", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_image", "dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_image_review_id__image_id"], "alias": "dbt_utils_unique_combination_o_eabb2d4695eec4af3ca468393f5e93ae", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_eabb2d4695eec4af3ca468393f5e93ae", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_eabb2d4695eec4af3ca468393f5e93ae"}, "created_at": 1700082664.8562644, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_eabb2d4695eec4af3ca468393f5e93ae\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_image", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_image"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.yml/dbt_utils_unique_combination_o_eabb2d4695eec4af3ca468393f5e93ae.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n review_id, image_id\n from dev_dkruh1.analytics___ugc_stg__review_image\n group by review_id, image_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__review_image", "attached_node": "model.yoda.analytics___ugc_stg__review_image"}, "test.yoda.unique_analytics___ugc_stg__review_metadata_review_metadata_id.e1a83f1720": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "review_metadata_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_metadata')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc_stg__review_metadata_review_metadata_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc_stg__review_metadata_review_metadata_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.yml", "unique_id": "test.yoda.unique_analytics___ugc_stg__review_metadata_review_metadata_id.e1a83f1720", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_metadata", "unique_analytics___ugc_stg__review_metadata_review_metadata_id"], "alias": "unique_analytics___ugc_stg__review_metadata_review_metadata_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082664.8796196, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_metadata", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_metadata"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.yml/unique_analytics___ugc_stg__review_metadata_review_metadata_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select review_metadata_id from dev_dkruh1.analytics___ugc_stg__review_metadata where review_metadata_id is not null group by review_metadata_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_metadata_id", "file_key_name": "models.analytics___ugc_stg__review_metadata", "attached_node": "model.yoda.analytics___ugc_stg__review_metadata"}, "test.yoda.not_null_analytics___ugc_stg__review_metadata_review_metadata_id.50cd8e9406": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "review_metadata_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_metadata')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__review_metadata_review_metadata_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___d907009b3db057775fd2b90e9d10c559.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__review_metadata_review_metadata_id.50cd8e9406", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_metadata", "not_null_analytics___ugc_stg__review_metadata_review_metadata_id"], "alias": "not_null_analytics___ugc_stg___d907009b3db057775fd2b90e9d10c559", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___d907009b3db057775fd2b90e9d10c559", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___d907009b3db057775fd2b90e9d10c559"}, "created_at": 1700082664.8846493, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___d907009b3db057775fd2b90e9d10c559\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_metadata", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_metadata"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.yml/not_null_analytics___ugc_stg___d907009b3db057775fd2b90e9d10c559.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__review_metadata where review_metadata_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_metadata_id", "file_key_name": "models.analytics___ugc_stg__review_metadata", "attached_node": "model.yoda.analytics___ugc_stg__review_metadata"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_metadata_1.e414dae9e3": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_metadata')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_metadata_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__2285bf37777a9ea75f2e009fe31bc234.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_metadata_1.e414dae9e3", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_metadata", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_metadata_1"], "alias": "dbt_expectations_expect_table__2285bf37777a9ea75f2e009fe31bc234", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__2285bf37777a9ea75f2e009fe31bc234", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__2285bf37777a9ea75f2e009fe31bc234"}, "created_at": 1700082664.890545, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__2285bf37777a9ea75f2e009fe31bc234\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_metadata", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_metadata"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.yml/dbt_expectations_expect_table__2285bf37777a9ea75f2e009fe31bc234.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__review_metadata\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__review_metadata", "attached_node": "model.yoda.analytics___ugc_stg__review_metadata"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_email_1.183696f8fc": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_request_email')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_email_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__afe62059acc1c0abf90d1c88508e7264.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_email_1.183696f8fc", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_request_email", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_email_1"], "alias": "dbt_expectations_expect_table__afe62059acc1c0abf90d1c88508e7264", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__afe62059acc1c0abf90d1c88508e7264", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__afe62059acc1c0abf90d1c88508e7264"}, "created_at": 1700082664.9200006, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__afe62059acc1c0abf90d1c88508e7264\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_request_email", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_request_email"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.yml/dbt_expectations_expect_table__afe62059acc1c0abf90d1c88508e7264.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__review_request_email\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__review_request_email", "attached_node": "model.yoda.analytics___ugc_stg__review_request_email"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_sms_1.070a1af629": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_request_sms')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_sms_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a66e8f0c02b184f176d5c8cb8e0ae168.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_sms_1.070a1af629", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_request_sms", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_sms_1"], "alias": "dbt_expectations_expect_table__a66e8f0c02b184f176d5c8cb8e0ae168", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a66e8f0c02b184f176d5c8cb8e0ae168", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a66e8f0c02b184f176d5c8cb8e0ae168"}, "created_at": 1700082664.9474797, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a66e8f0c02b184f176d5c8cb8e0ae168\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_request_sms", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_request_sms"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.yml/dbt_expectations_expect_table__a66e8f0c02b184f176d5c8cb8e0ae168.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__review_request_sms\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__review_request_sms", "attached_node": "model.yoda.analytics___ugc_stg__review_request_sms"}, "test.yoda.unique_analytics___ugc_stg__review_source_type_review_source_type_id.f472340919": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "review_source_type_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_source_type')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc_stg__review_source_type_review_source_type_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc_stg__re_a6b020d0caa482ae1b7b3e3859907361.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.yml", "unique_id": "test.yoda.unique_analytics___ugc_stg__review_source_type_review_source_type_id.f472340919", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_source_type", "unique_analytics___ugc_stg__review_source_type_review_source_type_id"], "alias": "unique_analytics___ugc_stg__re_a6b020d0caa482ae1b7b3e3859907361", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_analytics___ugc_stg__re_a6b020d0caa482ae1b7b3e3859907361", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_analytics___ugc_stg__re_a6b020d0caa482ae1b7b3e3859907361"}, "created_at": 1700082664.9687147, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_analytics___ugc_stg__re_a6b020d0caa482ae1b7b3e3859907361\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_source_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_source_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.yml/unique_analytics___ugc_stg__re_a6b020d0caa482ae1b7b3e3859907361.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select review_source_type_id from dev_dkruh1.analytics___ugc_stg__review_source_type where review_source_type_id is not null group by review_source_type_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_source_type_id", "file_key_name": "models.analytics___ugc_stg__review_source_type", "attached_node": "model.yoda.analytics___ugc_stg__review_source_type"}, "test.yoda.not_null_analytics___ugc_stg__review_source_type_review_source_type_id.66e45b81d8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "review_source_type_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_source_type')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__review_source_type_review_source_type_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg___027b114e6f8d59dd3ad28ef636cee6c0.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__review_source_type_review_source_type_id.66e45b81d8", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_source_type", "not_null_analytics___ugc_stg__review_source_type_review_source_type_id"], "alias": "not_null_analytics___ugc_stg___027b114e6f8d59dd3ad28ef636cee6c0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_analytics___ugc_stg___027b114e6f8d59dd3ad28ef636cee6c0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_analytics___ugc_stg___027b114e6f8d59dd3ad28ef636cee6c0"}, "created_at": 1700082664.974208, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_analytics___ugc_stg___027b114e6f8d59dd3ad28ef636cee6c0\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_source_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_source_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.yml/not_null_analytics___ugc_stg___027b114e6f8d59dd3ad28ef636cee6c0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__review_source_type where review_source_type_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_source_type_id", "file_key_name": "models.analytics___ugc_stg__review_source_type", "attached_node": "model.yoda.analytics___ugc_stg__review_source_type"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_source_type_1.279fc2029a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_source_type')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_source_type_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e9a7e3ded928de5b1befebe2a53696ab.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_source_type_1.279fc2029a", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_source_type", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_source_type_1"], "alias": "dbt_expectations_expect_table__e9a7e3ded928de5b1befebe2a53696ab", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e9a7e3ded928de5b1befebe2a53696ab", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e9a7e3ded928de5b1befebe2a53696ab"}, "created_at": 1700082664.9802296, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e9a7e3ded928de5b1befebe2a53696ab\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_source_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_source_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.yml/dbt_expectations_expect_table__e9a7e3ded928de5b1befebe2a53696ab.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__review_source_type\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__review_source_type", "attached_node": "model.yoda.analytics___ugc_stg__review_source_type"}, "test.yoda.unique_analytics___ugc_stg__review_subject_review_subject_id.91d2fa6505": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "review_subject_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_subject')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc_stg__review_subject_review_subject_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc_stg__review_subject_review_subject_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.yml", "unique_id": "test.yoda.unique_analytics___ugc_stg__review_subject_review_subject_id.91d2fa6505", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_subject", "unique_analytics___ugc_stg__review_subject_review_subject_id"], "alias": "unique_analytics___ugc_stg__review_subject_review_subject_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082665.0040953, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_subject", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_subject"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.yml/unique_analytics___ugc_stg__review_subject_review_subject_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select review_subject_id from dev_dkruh1.analytics___ugc_stg__review_subject where review_subject_id is not null group by review_subject_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_subject_id", "file_key_name": "models.analytics___ugc_stg__review_subject", "attached_node": "model.yoda.analytics___ugc_stg__review_subject"}, "test.yoda.not_null_analytics___ugc_stg__review_subject_review_subject_id.2e0521c635": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "review_subject_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_subject')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__review_subject_review_subject_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__review_subject_review_subject_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__review_subject_review_subject_id.2e0521c635", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_subject", "not_null_analytics___ugc_stg__review_subject_review_subject_id"], "alias": "not_null_analytics___ugc_stg__review_subject_review_subject_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082665.009151, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_subject", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_subject"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.yml/not_null_analytics___ugc_stg__review_subject_review_subject_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__review_subject where review_subject_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_subject_id", "file_key_name": "models.analytics___ugc_stg__review_subject", "attached_node": "model.yoda.analytics___ugc_stg__review_subject"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_subject_1.fe38748fe0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_subject')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_subject_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__39e3381653b3b60343249d19ee99b011.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_subject_1.fe38748fe0", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_subject", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_subject_1"], "alias": "dbt_expectations_expect_table__39e3381653b3b60343249d19ee99b011", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__39e3381653b3b60343249d19ee99b011", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__39e3381653b3b60343249d19ee99b011"}, "created_at": 1700082665.0144637, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__39e3381653b3b60343249d19ee99b011\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_subject", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_subject"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.yml/dbt_expectations_expect_table__39e3381653b3b60343249d19ee99b011.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__review_subject\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__review_subject", "attached_node": "model.yoda.analytics___ugc_stg__review_subject"}, "test.yoda.unique_analytics___ugc_stg__review_type_review_type_id.2fa963d87d": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "review_type_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_type')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___ugc_stg__review_type_review_type_id", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___ugc_stg__review_type_review_type_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.yml", "unique_id": "test.yoda.unique_analytics___ugc_stg__review_type_review_type_id.2fa963d87d", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_type", "unique_analytics___ugc_stg__review_type_review_type_id"], "alias": "unique_analytics___ugc_stg__review_type_review_type_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082665.0354023, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.yml/unique_analytics___ugc_stg__review_type_review_type_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select review_type_id from dev_dkruh1.analytics___ugc_stg__review_type where review_type_id is not null group by review_type_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_type_id", "file_key_name": "models.analytics___ugc_stg__review_type", "attached_node": "model.yoda.analytics___ugc_stg__review_type"}, "test.yoda.not_null_analytics___ugc_stg__review_type_review_type_id.3efe93aeee": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "review_type_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_type')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__review_type_review_type_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__review_type_review_type_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__review_type_review_type_id.3efe93aeee", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_type", "not_null_analytics___ugc_stg__review_type_review_type_id"], "alias": "not_null_analytics___ugc_stg__review_type_review_type_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082665.0406952, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.yml/not_null_analytics___ugc_stg__review_type_review_type_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__review_type where review_type_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_type_id", "file_key_name": "models.analytics___ugc_stg__review_type", "attached_node": "model.yoda.analytics___ugc_stg__review_type"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_type_1.63b9f90919": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_type')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_type_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__950c4ed403e6f7f3ede19f60b9cbc59b.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_type_1.63b9f90919", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_type", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_type_1"], "alias": "dbt_expectations_expect_table__950c4ed403e6f7f3ede19f60b9cbc59b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__950c4ed403e6f7f3ede19f60b9cbc59b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__950c4ed403e6f7f3ede19f60b9cbc59b"}, "created_at": 1700082665.046063, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__950c4ed403e6f7f3ede19f60b9cbc59b\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_type"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.yml/dbt_expectations_expect_table__950c4ed403e6f7f3ede19f60b9cbc59b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__review_type\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__review_type", "attached_node": "model.yoda.analytics___ugc_stg__review_type"}, "test.yoda.not_null_analytics___ugc_stg__review_video_review_id.fb9fc0d7bf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "review_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_video')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__review_video_review_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__review_video_review_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__review_video_review_id.fb9fc0d7bf", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_video", "not_null_analytics___ugc_stg__review_video_review_id"], "alias": "not_null_analytics___ugc_stg__review_video_review_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082665.0672638, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_video", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_video"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.yml/not_null_analytics___ugc_stg__review_video_review_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__review_video where review_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "review_id", "file_key_name": "models.analytics___ugc_stg__review_video", "attached_node": "model.yoda.analytics___ugc_stg__review_video"}, "test.yoda.not_null_analytics___ugc_stg__review_video_video_id.1869d3c00b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "video_id", "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_video')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___ugc_stg__review_video_video_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___ugc_stg__review_video_video_id.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.yml", "unique_id": "test.yoda.not_null_analytics___ugc_stg__review_video_video_id.1869d3c00b", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_video", "not_null_analytics___ugc_stg__review_video_video_id"], "alias": "not_null_analytics___ugc_stg__review_video_video_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082665.0723574, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_video", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_video"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.yml/not_null_analytics___ugc_stg__review_video_video_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___ugc_stg__review_video where video_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "video_id", "file_key_name": "models.analytics___ugc_stg__review_video", "attached_node": "model.yoda.analytics___ugc_stg__review_video"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_video_1.63c54374fc": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_video')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_video_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7b34f25cf6aabe89e04e2edea957823d.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_video_1.63c54374fc", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_video", "dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_video_1"], "alias": "dbt_expectations_expect_table__7b34f25cf6aabe89e04e2edea957823d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7b34f25cf6aabe89e04e2edea957823d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7b34f25cf6aabe89e04e2edea957823d"}, "created_at": 1700082665.0777574, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7b34f25cf6aabe89e04e2edea957823d\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_video", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_video"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.yml/dbt_expectations_expect_table__7b34f25cf6aabe89e04e2edea957823d.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.analytics___ugc_stg__review_video\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__review_video", "attached_node": "model.yoda.analytics___ugc_stg__review_video"}, "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_video_review_id__video_id.cdbdc5d389": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["review_id", "video_id"], "model": "{{ get_where_subquery(ref('analytics___ugc_stg__review_video')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_video_review_id__video_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_02aceb2df7523e8f6f5586bad83f94b4.sql", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_video_review_id__video_id.cdbdc5d389", "fqn": ["yoda", "analytics", "ugc", "staging", "marts_compatible", "analytics___ugc_stg__review_video", "dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_video_review_id__video_id"], "alias": "dbt_utils_unique_combination_o_02aceb2df7523e8f6f5586bad83f94b4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_02aceb2df7523e8f6f5586bad83f94b4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_02aceb2df7523e8f6f5586bad83f94b4"}, "created_at": 1700082665.08377, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_02aceb2df7523e8f6f5586bad83f94b4\") }}", "language": "sql", "refs": [{"name": "analytics___ugc_stg__review_video", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___ugc_stg__review_video"]}, "compiled_path": "target/compiled/yoda/models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.yml/dbt_utils_unique_combination_o_02aceb2df7523e8f6f5586bad83f94b4.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n review_id, video_id\n from dev_dkruh1.analytics___ugc_stg__review_video\n group by review_id, video_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.analytics___ugc_stg__review_video", "attached_node": "model.yoda.analytics___ugc_stg__review_video"}, "test.yoda.not_null_analytics___utils_stg__calendar_date.7d542d0652": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___utils_stg__calendar')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_analytics___utils_stg__calendar_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_analytics___utils_stg__calendar_date.sql", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.yml", "unique_id": "test.yoda.not_null_analytics___utils_stg__calendar_date.7d542d0652", "fqn": ["yoda", "analytics", "utils", "staging", "base", "analytics___utils_stg__calendar", "not_null_analytics___utils_stg__calendar_date"], "alias": "not_null_analytics___utils_stg__calendar_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082665.122317, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___utils_stg__calendar", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___utils_stg__calendar"]}, "compiled_path": "target/compiled/yoda/models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.yml/not_null_analytics___utils_stg__calendar_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.analytics___utils_stg__calendar where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___utils_stg__calendar", "attached_node": "model.yoda.analytics___utils_stg__calendar"}, "test.yoda.unique_analytics___utils_stg__calendar_date.2f0bc853db": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('analytics___utils_stg__calendar')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_analytics___utils_stg__calendar_date", "resource_type": "test", "package_name": "yoda", "path": "unique_analytics___utils_stg__calendar_date.sql", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.yml", "unique_id": "test.yoda.unique_analytics___utils_stg__calendar_date.2f0bc853db", "fqn": ["yoda", "analytics", "utils", "staging", "base", "analytics___utils_stg__calendar", "unique_analytics___utils_stg__calendar_date"], "alias": "unique_analytics___utils_stg__calendar_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082665.1279657, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "analytics___utils_stg__calendar", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.analytics___utils_stg__calendar"]}, "compiled_path": "target/compiled/yoda/models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.yml/unique_analytics___utils_stg__calendar_date.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select date from dev_dkruh1.analytics___utils_stg__calendar where date is not null group by date having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.analytics___utils_stg__calendar", "attached_node": "model.yoda.analytics___utils_stg__calendar"}, "test.yoda.not_null_email__daily_delivered_emails_by_source_name_context_source_name.5b2fd00db3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "context_source_name", "model": "{{ get_where_subquery(ref('email__daily_delivered_emails_by_source_name')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__daily_delivered_emails_by_source_name_context_source_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__daily_delivere_75e02debd5ad02b2c2ce4ab052f3345f.sql", "original_file_path": "models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.yml", "unique_id": "test.yoda.not_null_email__daily_delivered_emails_by_source_name_context_source_name.5b2fd00db3", "fqn": ["yoda", "email", "marts", "email__daily_delivered_emails_by_source_name", "not_null_email__daily_delivered_emails_by_source_name_context_source_name"], "alias": "not_null_email__daily_delivere_75e02debd5ad02b2c2ce4ab052f3345f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_email__daily_delivere_75e02debd5ad02b2c2ce4ab052f3345f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_email__daily_delivere_75e02debd5ad02b2c2ce4ab052f3345f"}, "created_at": 1700082667.3714712, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_email__daily_delivere_75e02debd5ad02b2c2ce4ab052f3345f\") }}", "language": "sql", "refs": [{"name": "email__daily_delivered_emails_by_source_name", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__daily_delivered_emails_by_source_name"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.yml/not_null_email__daily_delivere_75e02debd5ad02b2c2ce4ab052f3345f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__daily_delivered_emails_by_source_name where context_source_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "context_source_name", "file_key_name": "models.email__daily_delivered_emails_by_source_name", "attached_node": "model.yoda.email__daily_delivered_emails_by_source_name"}, "test.yoda.not_null_email__daily_delivered_emails_by_source_name_date.67e6ee4752": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('email__daily_delivered_emails_by_source_name')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__daily_delivered_emails_by_source_name_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__daily_delivered_emails_by_source_name_date.sql", "original_file_path": "models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.yml", "unique_id": "test.yoda.not_null_email__daily_delivered_emails_by_source_name_date.67e6ee4752", "fqn": ["yoda", "email", "marts", "email__daily_delivered_emails_by_source_name", "not_null_email__daily_delivered_emails_by_source_name_date"], "alias": "not_null_email__daily_delivered_emails_by_source_name_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.3771274, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__daily_delivered_emails_by_source_name", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__daily_delivered_emails_by_source_name"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.yml/not_null_email__daily_delivered_emails_by_source_name_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__daily_delivered_emails_by_source_name where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.email__daily_delivered_emails_by_source_name", "attached_node": "model.yoda.email__daily_delivered_emails_by_source_name"}, "test.yoda.not_null_email__daily_delivered_emails_by_source_name_total.739582565f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "total", "model": "{{ get_where_subquery(ref('email__daily_delivered_emails_by_source_name')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__daily_delivered_emails_by_source_name_total", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__daily_delivered_emails_by_source_name_total.sql", "original_file_path": "models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.yml", "unique_id": "test.yoda.not_null_email__daily_delivered_emails_by_source_name_total.739582565f", "fqn": ["yoda", "email", "marts", "email__daily_delivered_emails_by_source_name", "not_null_email__daily_delivered_emails_by_source_name_total"], "alias": "not_null_email__daily_delivered_emails_by_source_name_total", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.382464, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__daily_delivered_emails_by_source_name", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__daily_delivered_emails_by_source_name"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.yml/not_null_email__daily_delivered_emails_by_source_name_total.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__daily_delivered_emails_by_source_name where total is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "total", "file_key_name": "models.email__daily_delivered_emails_by_source_name", "attached_node": "model.yoda.email__daily_delivered_emails_by_source_name"}, "test.yoda.not_null_email__daily_total_email_campaigns_total.4ff35bd3bf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "total", "model": "{{ get_where_subquery(ref('email__daily_total_email_campaigns')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__daily_total_email_campaigns_total", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__daily_total_email_campaigns_total.sql", "original_file_path": "models/email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.yml", "unique_id": "test.yoda.not_null_email__daily_total_email_campaigns_total.4ff35bd3bf", "fqn": ["yoda", "email", "marts", "email__daily_total_email_campaigns", "not_null_email__daily_total_email_campaigns_total"], "alias": "not_null_email__daily_total_email_campaigns_total", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.399785, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__daily_total_email_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__daily_total_email_campaigns"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.yml/not_null_email__daily_total_email_campaigns_total.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__daily_total_email_campaigns where total is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "total", "file_key_name": "models.email__daily_total_email_campaigns", "attached_node": "model.yoda.email__daily_total_email_campaigns"}, "test.yoda.not_null_email__daily_total_email_campaigns_date.7042c6c263": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('email__daily_total_email_campaigns')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__daily_total_email_campaigns_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__daily_total_email_campaigns_date.sql", "original_file_path": "models/email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.yml", "unique_id": "test.yoda.not_null_email__daily_total_email_campaigns_date.7042c6c263", "fqn": ["yoda", "email", "marts", "email__daily_total_email_campaigns", "not_null_email__daily_total_email_campaigns_date"], "alias": "not_null_email__daily_total_email_campaigns_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.404859, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__daily_total_email_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__daily_total_email_campaigns"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.yml/not_null_email__daily_total_email_campaigns_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__daily_total_email_campaigns where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.email__daily_total_email_campaigns", "attached_node": "model.yoda.email__daily_total_email_campaigns"}, "test.yoda.not_null_email__email_campaign_reviews_block_kpi_id.01cfbeedb9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_block_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_block_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_block_kpi_id.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_block_kpi_id.01cfbeedb9", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_block_kpi", "not_null_email__email_campaign_reviews_block_kpi_id"], "alias": "not_null_email__email_campaign_reviews_block_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.4679906, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_block_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_block_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml/not_null_email__email_campaign_reviews_block_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_block_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.email__email_campaign_reviews_block_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_block_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_block_kpi_synergy_id.182a7183c0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_block_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_block_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_block_kpi_synergy_id.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_block_kpi_synergy_id.182a7183c0", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_block_kpi", "not_null_email__email_campaign_reviews_block_kpi_synergy_id"], "alias": "not_null_email__email_campaign_reviews_block_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.473424, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_block_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_block_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml/not_null_email__email_campaign_reviews_block_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_block_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.email__email_campaign_reviews_block_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_block_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_block_kpi_app_key.7018e17ee4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_block_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_block_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_block_kpi_app_key.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_block_kpi_app_key.7018e17ee4", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_block_kpi", "not_null_email__email_campaign_reviews_block_kpi_app_key"], "alias": "not_null_email__email_campaign_reviews_block_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.4788525, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_block_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_block_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml/not_null_email__email_campaign_reviews_block_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_block_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.email__email_campaign_reviews_block_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_block_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_block_kpi_customer_email.e76313a4cb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_email", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_block_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_block_kpi_customer_email", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_block_kpi_customer_email.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_block_kpi_customer_email.e76313a4cb", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_block_kpi", "not_null_email__email_campaign_reviews_block_kpi_customer_email"], "alias": "not_null_email__email_campaign_reviews_block_kpi_customer_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.4857213, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_block_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_block_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml/not_null_email__email_campaign_reviews_block_kpi_customer_email.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_block_kpi where customer_email is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_email", "file_key_name": "models.email__email_campaign_reviews_block_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_block_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_block_kpi_customer_external_id.d649258d9d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_block_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_block_kpi_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_714adbaf35fdfabc4ca2140b2007155d.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_block_kpi_customer_external_id.d649258d9d", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_block_kpi", "not_null_email__email_campaign_reviews_block_kpi_customer_external_id"], "alias": "not_null_email__email_campaign_714adbaf35fdfabc4ca2140b2007155d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_email__email_campaign_714adbaf35fdfabc4ca2140b2007155d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_email__email_campaign_714adbaf35fdfabc4ca2140b2007155d"}, "created_at": 1700082667.492988, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_email__email_campaign_714adbaf35fdfabc4ca2140b2007155d\") }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_block_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_block_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml/not_null_email__email_campaign_714adbaf35fdfabc4ca2140b2007155d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_block_kpi where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.email__email_campaign_reviews_block_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_block_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_block_kpi_source_type.53bbbe37cd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_block_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_block_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_block_kpi_source_type.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_block_kpi_source_type.53bbbe37cd", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_block_kpi", "not_null_email__email_campaign_reviews_block_kpi_source_type"], "alias": "not_null_email__email_campaign_reviews_block_kpi_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.5050192, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_block_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_block_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml/not_null_email__email_campaign_reviews_block_kpi_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_block_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.email__email_campaign_reviews_block_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_block_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_block_kpi_source_id.1251666079": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_block_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_block_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_block_kpi_source_id.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_block_kpi_source_id.1251666079", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_block_kpi", "not_null_email__email_campaign_reviews_block_kpi_source_id"], "alias": "not_null_email__email_campaign_reviews_block_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.5120819, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_block_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_block_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml/not_null_email__email_campaign_reviews_block_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_block_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.email__email_campaign_reviews_block_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_block_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_block_kpi_order_id.3a2529f59b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_block_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_block_kpi_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_block_kpi_order_id.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_block_kpi_order_id.3a2529f59b", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_block_kpi", "not_null_email__email_campaign_reviews_block_kpi_order_id"], "alias": "not_null_email__email_campaign_reviews_block_kpi_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.5181313, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_block_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_block_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.yml/not_null_email__email_campaign_reviews_block_kpi_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_block_kpi where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.email__email_campaign_reviews_block_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_block_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_id.9eef29ff31": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_stars_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_stars_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_stars_kpi_id.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_id.9eef29ff31", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_stars_kpi", "not_null_email__email_campaign_reviews_stars_kpi_id"], "alias": "not_null_email__email_campaign_reviews_stars_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.5481029, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_stars_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_stars_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml/not_null_email__email_campaign_reviews_stars_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_stars_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.email__email_campaign_reviews_stars_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_stars_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_synergy_id.958accfe65": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_stars_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_stars_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_stars_kpi_synergy_id.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_synergy_id.958accfe65", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_stars_kpi", "not_null_email__email_campaign_reviews_stars_kpi_synergy_id"], "alias": "not_null_email__email_campaign_reviews_stars_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.5547872, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_stars_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_stars_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml/not_null_email__email_campaign_reviews_stars_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_stars_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.email__email_campaign_reviews_stars_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_stars_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_app_key.639c700af5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_stars_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_stars_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_stars_kpi_app_key.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_app_key.639c700af5", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_stars_kpi", "not_null_email__email_campaign_reviews_stars_kpi_app_key"], "alias": "not_null_email__email_campaign_reviews_stars_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.5627449, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_stars_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_stars_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml/not_null_email__email_campaign_reviews_stars_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_stars_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.email__email_campaign_reviews_stars_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_stars_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_customer_email.f19549059f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_email", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_stars_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_stars_kpi_customer_email", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_stars_kpi_customer_email.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_customer_email.f19549059f", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_stars_kpi", "not_null_email__email_campaign_reviews_stars_kpi_customer_email"], "alias": "not_null_email__email_campaign_reviews_stars_kpi_customer_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.5681796, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_stars_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_stars_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml/not_null_email__email_campaign_reviews_stars_kpi_customer_email.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_stars_kpi where customer_email is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_email", "file_key_name": "models.email__email_campaign_reviews_stars_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_stars_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_customer_external_id.2ea805cb1d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_stars_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_stars_kpi_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_35fec4108fe79a72683cb5cbbccd1e7a.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_customer_external_id.2ea805cb1d", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_stars_kpi", "not_null_email__email_campaign_reviews_stars_kpi_customer_external_id"], "alias": "not_null_email__email_campaign_35fec4108fe79a72683cb5cbbccd1e7a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_email__email_campaign_35fec4108fe79a72683cb5cbbccd1e7a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_email__email_campaign_35fec4108fe79a72683cb5cbbccd1e7a"}, "created_at": 1700082667.5735543, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_email__email_campaign_35fec4108fe79a72683cb5cbbccd1e7a\") }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_stars_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_stars_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml/not_null_email__email_campaign_35fec4108fe79a72683cb5cbbccd1e7a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_stars_kpi where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.email__email_campaign_reviews_stars_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_stars_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_source_type.9cbbfce071": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_stars_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_stars_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_stars_kpi_source_type.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_source_type.9cbbfce071", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_stars_kpi", "not_null_email__email_campaign_reviews_stars_kpi_source_type"], "alias": "not_null_email__email_campaign_reviews_stars_kpi_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.5792181, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_stars_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_stars_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml/not_null_email__email_campaign_reviews_stars_kpi_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_stars_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.email__email_campaign_reviews_stars_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_stars_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_source_id.08e3c773a8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_stars_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_stars_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_stars_kpi_source_id.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_source_id.08e3c773a8", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_stars_kpi", "not_null_email__email_campaign_reviews_stars_kpi_source_id"], "alias": "not_null_email__email_campaign_reviews_stars_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.5842366, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_stars_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_stars_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml/not_null_email__email_campaign_reviews_stars_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_stars_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.email__email_campaign_reviews_stars_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_stars_kpi"}, "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_order_id.1503c1d47e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('email__email_campaign_reviews_stars_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email__email_campaign_reviews_stars_kpi_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email__email_campaign_reviews_stars_kpi_order_id.sql", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml", "unique_id": "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_order_id.1503c1d47e", "fqn": ["yoda", "email", "marts", "email__email_campaign_reviews_stars_kpi", "not_null_email__email_campaign_reviews_stars_kpi_order_id"], "alias": "not_null_email__email_campaign_reviews_stars_kpi_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.5908096, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email__email_campaign_reviews_stars_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email__email_campaign_reviews_stars_kpi"]}, "compiled_path": "target/compiled/yoda/models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.yml/not_null_email__email_campaign_reviews_stars_kpi_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email__email_campaign_reviews_stars_kpi where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.email__email_campaign_reviews_stars_kpi", "attached_node": "model.yoda.email__email_campaign_reviews_stars_kpi"}, "test.yoda.not_null_email_stg__template_instance_events_store_id.7489a266fe": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('email_stg__template_instance_events')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email_stg__template_instance_events_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email_stg__template_instance_events_store_id.sql", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.yml", "unique_id": "test.yoda.not_null_email_stg__template_instance_events_store_id.7489a266fe", "fqn": ["yoda", "email", "staging", "base", "email_stg__template_instance_events", "not_null_email_stg__template_instance_events_store_id"], "alias": "not_null_email_stg__template_instance_events_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082667.95507, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "email_stg__template_instance_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email_stg__template_instance_events"]}, "compiled_path": "target/compiled/yoda/models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.yml/not_null_email_stg__template_instance_events_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email_stg__template_instance_events where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.email_stg__template_instance_events", "attached_node": "model.yoda.email_stg__template_instance_events"}, "test.yoda.not_null_email_stg__template_instance_events_template_instance_id.1a63fc900e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "template_instance_id", "model": "{{ get_where_subquery(ref('email_stg__template_instance_events')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_email_stg__template_instance_events_template_instance_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_email_stg__template_i_7065bfe0b19fd1487b6c3f6d0825fd4c.sql", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.yml", "unique_id": "test.yoda.not_null_email_stg__template_instance_events_template_instance_id.1a63fc900e", "fqn": ["yoda", "email", "staging", "base", "email_stg__template_instance_events", "not_null_email_stg__template_instance_events_template_instance_id"], "alias": "not_null_email_stg__template_i_7065bfe0b19fd1487b6c3f6d0825fd4c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_email_stg__template_i_7065bfe0b19fd1487b6c3f6d0825fd4c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_email_stg__template_i_7065bfe0b19fd1487b6c3f6d0825fd4c"}, "created_at": 1700082667.9602888, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_email_stg__template_i_7065bfe0b19fd1487b6c3f6d0825fd4c\") }}", "language": "sql", "refs": [{"name": "email_stg__template_instance_events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.email_stg__template_instance_events"]}, "compiled_path": "target/compiled/yoda/models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.yml/not_null_email_stg__template_i_7065bfe0b19fd1487b6c3f6d0825fd4c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.email_stg__template_instance_events where template_instance_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "template_instance_id", "file_key_name": "models.email_stg__template_instance_events", "attached_node": "model.yoda.email_stg__template_instance_events"}, "test.yoda.not_null_infra__canary_data_model_app_key.c6db71c81f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('infra__canary_data_model')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__canary_data_model_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__canary_data_model_app_key.sql", "original_file_path": "models/infra/marts/infra__canary_data_model/infra__canary_data_model.yml", "unique_id": "test.yoda.not_null_infra__canary_data_model_app_key.c6db71c81f", "fqn": ["yoda", "infra", "marts", "infra__canary_data_model", "not_null_infra__canary_data_model_app_key"], "alias": "not_null_infra__canary_data_model_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.3376958, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__canary_data_model", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__canary_data_model"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__canary_data_model/infra__canary_data_model.yml/not_null_infra__canary_data_model_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__canary_data_model where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.infra__canary_data_model", "attached_node": "model.yoda.infra__canary_data_model"}, "test.yoda.not_null_infra__canary_data_model_daily_metric.5db67846d8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "daily_metric", "model": "{{ get_where_subquery(ref('infra__canary_data_model')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__canary_data_model_daily_metric", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__canary_data_model_daily_metric.sql", "original_file_path": "models/infra/marts/infra__canary_data_model/infra__canary_data_model.yml", "unique_id": "test.yoda.not_null_infra__canary_data_model_daily_metric.5db67846d8", "fqn": ["yoda", "infra", "marts", "infra__canary_data_model", "not_null_infra__canary_data_model_daily_metric"], "alias": "not_null_infra__canary_data_model_daily_metric", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.3430154, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__canary_data_model", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__canary_data_model"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__canary_data_model/infra__canary_data_model.yml/not_null_infra__canary_data_model_daily_metric.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__canary_data_model where daily_metric is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "daily_metric", "file_key_name": "models.infra__canary_data_model", "attached_node": "model.yoda.infra__canary_data_model"}, "test.yoda.not_null_infra__canary_segment_model_profile_userId.5e72499306": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "userId", "model": "{{ get_where_subquery(ref('infra__canary_segment_model_profile')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__canary_segment_model_profile_userId", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__canary_segment_model_profile_userId.sql", "original_file_path": "models/infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.yml", "unique_id": "test.yoda.not_null_infra__canary_segment_model_profile_userId.5e72499306", "fqn": ["yoda", "infra", "marts", "infra__canary_segment_model_profile", "not_null_infra__canary_segment_model_profile_userId"], "alias": "not_null_infra__canary_segment_model_profile_userId", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.3602622, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__canary_segment_model_profile", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__canary_segment_model_profile"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.yml/not_null_infra__canary_segment_model_profile_userId.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__canary_segment_model_profile where userId is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "userId", "file_key_name": "models.infra__canary_segment_model_profile", "attached_node": "model.yoda.infra__canary_segment_model_profile"}, "test.yoda.not_null_infra__canary_segment_model_profile_daily_metric.60592337f0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "daily_metric", "model": "{{ get_where_subquery(ref('infra__canary_segment_model_profile')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__canary_segment_model_profile_daily_metric", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__canary_segment_model_profile_daily_metric.sql", "original_file_path": "models/infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.yml", "unique_id": "test.yoda.not_null_infra__canary_segment_model_profile_daily_metric.60592337f0", "fqn": ["yoda", "infra", "marts", "infra__canary_segment_model_profile", "not_null_infra__canary_segment_model_profile_daily_metric"], "alias": "not_null_infra__canary_segment_model_profile_daily_metric", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.3654258, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__canary_segment_model_profile", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__canary_segment_model_profile"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.yml/not_null_infra__canary_segment_model_profile_daily_metric.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__canary_segment_model_profile where daily_metric is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "daily_metric", "file_key_name": "models.infra__canary_segment_model_profile", "attached_node": "model.yoda.infra__canary_segment_model_profile"}, "test.yoda.dbt_utils_expression_is_true_infra__contracts_burn_estimations_yearly_budget___0.3a039f37ba": {"test_metadata": {"name": "expression_is_true", "kwargs": {"expression": "> 0", "column_name": "yearly_budget", "model": "{{ get_where_subquery(ref('infra__contracts_burn_estimations')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_expression_is_true_infra__contracts_burn_estimations_yearly_budget___0", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_expression_is_true_i_f47345f637c166bedaffb39d789f38f8.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.yml", "unique_id": "test.yoda.dbt_utils_expression_is_true_infra__contracts_burn_estimations_yearly_budget___0.3a039f37ba", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_estimations", "dbt_utils_expression_is_true_infra__contracts_burn_estimations_yearly_budget___0"], "alias": "dbt_utils_expression_is_true_i_f47345f637c166bedaffb39d789f38f8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_expression_is_true_i_f47345f637c166bedaffb39d789f38f8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_expression_is_true_i_f47345f637c166bedaffb39d789f38f8"}, "created_at": 1700082668.4038014, "relation_name": null, "raw_code": "{{ dbt_utils.test_expression_is_true(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_expression_is_true_i_f47345f637c166bedaffb39d789f38f8\") }}", "language": "sql", "refs": [{"name": "infra__contracts_burn_estimations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_expression_is_true", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__contracts_burn_estimations"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.yml/dbt_utils_expression_is_true_i_f47345f637c166bedaffb39d789f38f8.sql", "compiled": true, "compiled_code": "\n\nwith meet_condition as (\n select * from dev_dkruh1.infra__contracts_burn_estimations where 1=1\n)\n\nselect\n *\nfrom meet_condition\n\nwhere not(yearly_budget > 0)\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "yearly_budget", "file_key_name": "models.infra__contracts_burn_estimations", "attached_node": "model.yoda.infra__contracts_burn_estimations"}, "test.yoda.not_null_infra__contracts_burn_estimations_start_date.0b2404158a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "start_date", "model": "{{ get_where_subquery(ref('infra__contracts_burn_estimations')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__contracts_burn_estimations_start_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__contracts_burn_estimations_start_date.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.yml", "unique_id": "test.yoda.not_null_infra__contracts_burn_estimations_start_date.0b2404158a", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_estimations", "not_null_infra__contracts_burn_estimations_start_date"], "alias": "not_null_infra__contracts_burn_estimations_start_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.4147453, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__contracts_burn_estimations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__contracts_burn_estimations"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.yml/not_null_infra__contracts_burn_estimations_start_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__contracts_burn_estimations where start_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "start_date", "file_key_name": "models.infra__contracts_burn_estimations", "attached_node": "model.yoda.infra__contracts_burn_estimations"}, "test.yoda.not_null_infra__contracts_burn_estimations_end_date.ea1ea1c411": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "end_date", "model": "{{ get_where_subquery(ref('infra__contracts_burn_estimations')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__contracts_burn_estimations_end_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__contracts_burn_estimations_end_date.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.yml", "unique_id": "test.yoda.not_null_infra__contracts_burn_estimations_end_date.ea1ea1c411", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_estimations", "not_null_infra__contracts_burn_estimations_end_date"], "alias": "not_null_infra__contracts_burn_estimations_end_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.4202683, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__contracts_burn_estimations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__contracts_burn_estimations"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.yml/not_null_infra__contracts_burn_estimations_end_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__contracts_burn_estimations where end_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "end_date", "file_key_name": "models.infra__contracts_burn_estimations", "attached_node": "model.yoda.infra__contracts_burn_estimations"}, "test.yoda.not_null_infra__contracts_burn_estimations_vendor.357a49c299": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "vendor", "model": "{{ get_where_subquery(ref('infra__contracts_burn_estimations')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__contracts_burn_estimations_vendor", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__contracts_burn_estimations_vendor.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.yml", "unique_id": "test.yoda.not_null_infra__contracts_burn_estimations_vendor.357a49c299", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_estimations", "not_null_infra__contracts_burn_estimations_vendor"], "alias": "not_null_infra__contracts_burn_estimations_vendor", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.4279518, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__contracts_burn_estimations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__contracts_burn_estimations"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.yml/not_null_infra__contracts_burn_estimations_vendor.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__contracts_burn_estimations where vendor is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "vendor", "file_key_name": "models.infra__contracts_burn_estimations", "attached_node": "model.yoda.infra__contracts_burn_estimations"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_estimations_1.8a4cf1359e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('infra__contracts_burn_estimations')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_estimations_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4a97faac4a89239eb5999cee27a6e8e7.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_estimations_1.8a4cf1359e", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_estimations", "dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_estimations_1"], "alias": "dbt_expectations_expect_table__4a97faac4a89239eb5999cee27a6e8e7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4a97faac4a89239eb5999cee27a6e8e7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4a97faac4a89239eb5999cee27a6e8e7"}, "created_at": 1700082668.4332278, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4a97faac4a89239eb5999cee27a6e8e7\") }}", "language": "sql", "refs": [{"name": "infra__contracts_burn_estimations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__contracts_burn_estimations"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.yml/dbt_expectations_expect_table__4a97faac4a89239eb5999cee27a6e8e7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.infra__contracts_burn_estimations\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.infra__contracts_burn_estimations", "attached_node": "model.yoda.infra__contracts_burn_estimations"}, "test.yoda.not_null_infra__contracts_burn_status_start_date.f75328a2f7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "start_date", "model": "{{ get_where_subquery(ref('infra__contracts_burn_status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__contracts_burn_status_start_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__contracts_burn_status_start_date.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.yml", "unique_id": "test.yoda.not_null_infra__contracts_burn_status_start_date.f75328a2f7", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_status", "not_null_infra__contracts_burn_status_start_date"], "alias": "not_null_infra__contracts_burn_status_start_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.4689884, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__contracts_burn_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__contracts_burn_status"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.yml/not_null_infra__contracts_burn_status_start_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__contracts_burn_status where start_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "start_date", "file_key_name": "models.infra__contracts_burn_status", "attached_node": "model.yoda.infra__contracts_burn_status"}, "test.yoda.not_null_infra__contracts_burn_status_end_date.9520a11610": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "end_date", "model": "{{ get_where_subquery(ref('infra__contracts_burn_status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__contracts_burn_status_end_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__contracts_burn_status_end_date.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.yml", "unique_id": "test.yoda.not_null_infra__contracts_burn_status_end_date.9520a11610", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_status", "not_null_infra__contracts_burn_status_end_date"], "alias": "not_null_infra__contracts_burn_status_end_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.4747264, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__contracts_burn_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__contracts_burn_status"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.yml/not_null_infra__contracts_burn_status_end_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__contracts_burn_status where end_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "end_date", "file_key_name": "models.infra__contracts_burn_status", "attached_node": "model.yoda.infra__contracts_burn_status"}, "test.yoda.not_null_infra__contracts_burn_status_vendor.1122e674a4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "vendor", "model": "{{ get_where_subquery(ref('infra__contracts_burn_status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__contracts_burn_status_vendor", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__contracts_burn_status_vendor.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.yml", "unique_id": "test.yoda.not_null_infra__contracts_burn_status_vendor.1122e674a4", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_status", "not_null_infra__contracts_burn_status_vendor"], "alias": "not_null_infra__contracts_burn_status_vendor", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.4803886, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__contracts_burn_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__contracts_burn_status"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.yml/not_null_infra__contracts_burn_status_vendor.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__contracts_burn_status where vendor is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "vendor", "file_key_name": "models.infra__contracts_burn_status", "attached_node": "model.yoda.infra__contracts_burn_status"}, "test.yoda.dbt_utils_expression_is_true_infra__contracts_burn_status_yearly_budget___0.6af0f1b89d": {"test_metadata": {"name": "expression_is_true", "kwargs": {"expression": "> 0", "column_name": "yearly_budget", "model": "{{ get_where_subquery(ref('infra__contracts_burn_status')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_expression_is_true_infra__contracts_burn_status_yearly_budget___0", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_expression_is_true_i_48bbed44997fd03a2f0ef4dcfc65d14e.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.yml", "unique_id": "test.yoda.dbt_utils_expression_is_true_infra__contracts_burn_status_yearly_budget___0.6af0f1b89d", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_status", "dbt_utils_expression_is_true_infra__contracts_burn_status_yearly_budget___0"], "alias": "dbt_utils_expression_is_true_i_48bbed44997fd03a2f0ef4dcfc65d14e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_expression_is_true_i_48bbed44997fd03a2f0ef4dcfc65d14e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_expression_is_true_i_48bbed44997fd03a2f0ef4dcfc65d14e"}, "created_at": 1700082668.4854643, "relation_name": null, "raw_code": "{{ dbt_utils.test_expression_is_true(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_expression_is_true_i_48bbed44997fd03a2f0ef4dcfc65d14e\") }}", "language": "sql", "refs": [{"name": "infra__contracts_burn_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_expression_is_true", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__contracts_burn_status"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.yml/dbt_utils_expression_is_true_i_48bbed44997fd03a2f0ef4dcfc65d14e.sql", "compiled": true, "compiled_code": "\n\nwith meet_condition as (\n select * from dev_dkruh1.infra__contracts_burn_status where 1=1\n)\n\nselect\n *\nfrom meet_condition\n\nwhere not(yearly_budget > 0)\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "yearly_budget", "file_key_name": "models.infra__contracts_burn_status", "attached_node": "model.yoda.infra__contracts_burn_status"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_status_1.24745bba70": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('infra__contracts_burn_status')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_status_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6de9245a16e10c82904788a66c0716a7.sql", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_status_1.24745bba70", "fqn": ["yoda", "infra", "marts", "infra__contracts_burn_status", "dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_status_1"], "alias": "dbt_expectations_expect_table__6de9245a16e10c82904788a66c0716a7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6de9245a16e10c82904788a66c0716a7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6de9245a16e10c82904788a66c0716a7"}, "created_at": 1700082668.4922006, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6de9245a16e10c82904788a66c0716a7\") }}", "language": "sql", "refs": [{"name": "infra__contracts_burn_status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__contracts_burn_status"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.yml/dbt_expectations_expect_table__6de9245a16e10c82904788a66c0716a7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.infra__contracts_burn_status\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.infra__contracts_burn_status", "attached_node": "model.yoda.infra__contracts_burn_status"}, "test.yoda.not_null_infra__infra_metrics_ts.d898bb6180": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "ts", "model": "{{ get_where_subquery(ref('infra__infra_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__infra_metrics_ts", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__infra_metrics_ts.sql", "original_file_path": "models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml", "unique_id": "test.yoda.not_null_infra__infra_metrics_ts.d898bb6180", "fqn": ["yoda", "infra", "marts", "infra__infra_metrics", "not_null_infra__infra_metrics_ts"], "alias": "not_null_infra__infra_metrics_ts", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.7068243, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__infra_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml/not_null_infra__infra_metrics_ts.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__infra_metrics where ts is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "ts", "file_key_name": "models.infra__infra_metrics", "attached_node": "model.yoda.infra__infra_metrics"}, "test.yoda.not_null_infra__infra_metrics_product_line.9add29efd9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_line", "model": "{{ get_where_subquery(ref('infra__infra_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__infra_metrics_product_line", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__infra_metrics_product_line.sql", "original_file_path": "models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml", "unique_id": "test.yoda.not_null_infra__infra_metrics_product_line.9add29efd9", "fqn": ["yoda", "infra", "marts", "infra__infra_metrics", "not_null_infra__infra_metrics_product_line"], "alias": "not_null_infra__infra_metrics_product_line", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.7119958, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__infra_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml/not_null_infra__infra_metrics_product_line.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__infra_metrics where product_line is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_line", "file_key_name": "models.infra__infra_metrics", "attached_node": "model.yoda.infra__infra_metrics"}, "test.yoda.not_null_infra__infra_metrics_source.edaf9abc91": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source", "model": "{{ get_where_subquery(ref('infra__infra_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__infra_metrics_source", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__infra_metrics_source.sql", "original_file_path": "models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml", "unique_id": "test.yoda.not_null_infra__infra_metrics_source.edaf9abc91", "fqn": ["yoda", "infra", "marts", "infra__infra_metrics", "not_null_infra__infra_metrics_source"], "alias": "not_null_infra__infra_metrics_source", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.7169569, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__infra_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml/not_null_infra__infra_metrics_source.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__infra_metrics where source is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source", "file_key_name": "models.infra__infra_metrics", "attached_node": "model.yoda.infra__infra_metrics"}, "test.yoda.not_null_infra__infra_metrics_component.d8af3c0fbd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "component", "model": "{{ get_where_subquery(ref('infra__infra_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__infra_metrics_component", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__infra_metrics_component.sql", "original_file_path": "models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml", "unique_id": "test.yoda.not_null_infra__infra_metrics_component.d8af3c0fbd", "fqn": ["yoda", "infra", "marts", "infra__infra_metrics", "not_null_infra__infra_metrics_component"], "alias": "not_null_infra__infra_metrics_component", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.7224348, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__infra_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml/not_null_infra__infra_metrics_component.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__infra_metrics where component is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "component", "file_key_name": "models.infra__infra_metrics", "attached_node": "model.yoda.infra__infra_metrics"}, "test.yoda.not_null_infra__infra_metrics_key.172127b073": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "key", "model": "{{ get_where_subquery(ref('infra__infra_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__infra_metrics_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__infra_metrics_key.sql", "original_file_path": "models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml", "unique_id": "test.yoda.not_null_infra__infra_metrics_key.172127b073", "fqn": ["yoda", "infra", "marts", "infra__infra_metrics", "not_null_infra__infra_metrics_key"], "alias": "not_null_infra__infra_metrics_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.7281234, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__infra_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml/not_null_infra__infra_metrics_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__infra_metrics where key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "key", "file_key_name": "models.infra__infra_metrics", "attached_node": "model.yoda.infra__infra_metrics"}, "test.yoda.not_null_infra__infra_metrics_value.2e0033a76e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "value", "model": "{{ get_where_subquery(ref('infra__infra_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__infra_metrics_value", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__infra_metrics_value.sql", "original_file_path": "models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml", "unique_id": "test.yoda.not_null_infra__infra_metrics_value.2e0033a76e", "fqn": ["yoda", "infra", "marts", "infra__infra_metrics", "not_null_infra__infra_metrics_value"], "alias": "not_null_infra__infra_metrics_value", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082668.7337646, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__infra_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__infra_metrics/infra__infra_metrics.yml/not_null_infra__infra_metrics_value.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__infra_metrics where value is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "value", "file_key_name": "models.infra__infra_metrics", "attached_node": "model.yoda.infra__infra_metrics"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__kubernetes_cost_1__billing_day_current_date_1.801b62a34e": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "row_condition": "billing_day = current_date -1", "model": "{{ get_where_subquery(ref('infra__kubernetes_cost')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_infra__kubernetes_cost_1__billing_day_current_date_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c2c54003461ba4835aafc3650d9eb991.sql", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__kubernetes_cost_1__billing_day_current_date_1.801b62a34e", "fqn": ["yoda", "infra", "marts", "infra__kubernetes_cost", "dbt_expectations_expect_table_row_count_to_be_between_infra__kubernetes_cost_1__billing_day_current_date_1"], "alias": "dbt_expectations_expect_table__c2c54003461ba4835aafc3650d9eb991", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c2c54003461ba4835aafc3650d9eb991", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c2c54003461ba4835aafc3650d9eb991"}, "created_at": 1700082668.7907133, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c2c54003461ba4835aafc3650d9eb991\") }}", "language": "sql", "refs": [{"name": "infra__kubernetes_cost", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__kubernetes_cost"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.yml/dbt_expectations_expect_table__c2c54003461ba4835aafc3650d9eb991.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.infra__kubernetes_cost\n where\n billing_day = current_date -1\n \n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.infra__kubernetes_cost", "attached_node": "model.yoda.infra__kubernetes_cost"}, "test.yoda.not_null_infra__rivery_contract_statistics_date.fdd99a1917": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('infra__rivery_contract_statistics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__rivery_contract_statistics_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__rivery_contract_statistics_date.sql", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.yml", "unique_id": "test.yoda.not_null_infra__rivery_contract_statistics_date.fdd99a1917", "fqn": ["yoda", "infra", "marts", "infra__rivery_contract_statistics", "not_null_infra__rivery_contract_statistics_date"], "alias": "not_null_infra__rivery_contract_statistics_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082669.1882482, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__rivery_contract_statistics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__rivery_contract_statistics"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.yml/not_null_infra__rivery_contract_statistics_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__rivery_contract_statistics where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.infra__rivery_contract_statistics", "attached_node": "model.yoda.infra__rivery_contract_statistics"}, "test.yoda.not_null_infra__rivery_contract_statistics_year.faa8708e47": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "year", "model": "{{ get_where_subquery(ref('infra__rivery_contract_statistics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__rivery_contract_statistics_year", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__rivery_contract_statistics_year.sql", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.yml", "unique_id": "test.yoda.not_null_infra__rivery_contract_statistics_year.faa8708e47", "fqn": ["yoda", "infra", "marts", "infra__rivery_contract_statistics", "not_null_infra__rivery_contract_statistics_year"], "alias": "not_null_infra__rivery_contract_statistics_year", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082669.1935678, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__rivery_contract_statistics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__rivery_contract_statistics"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.yml/not_null_infra__rivery_contract_statistics_year.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__rivery_contract_statistics where year is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "year", "file_key_name": "models.infra__rivery_contract_statistics", "attached_node": "model.yoda.infra__rivery_contract_statistics"}, "test.yoda.not_null_infra__rivery_contract_statistics_month.5ac3bd212c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "month", "model": "{{ get_where_subquery(ref('infra__rivery_contract_statistics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__rivery_contract_statistics_month", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__rivery_contract_statistics_month.sql", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.yml", "unique_id": "test.yoda.not_null_infra__rivery_contract_statistics_month.5ac3bd212c", "fqn": ["yoda", "infra", "marts", "infra__rivery_contract_statistics", "not_null_infra__rivery_contract_statistics_month"], "alias": "not_null_infra__rivery_contract_statistics_month", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082669.198635, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__rivery_contract_statistics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__rivery_contract_statistics"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.yml/not_null_infra__rivery_contract_statistics_month.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__rivery_contract_statistics where month is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "month", "file_key_name": "models.infra__rivery_contract_statistics", "attached_node": "model.yoda.infra__rivery_contract_statistics"}, "test.yoda.not_null_infra__rivery_daily_usage_account_id.7c3b1f6492": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "account_id", "model": "{{ get_where_subquery(ref('infra__rivery_daily_usage')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__rivery_daily_usage_account_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__rivery_daily_usage_account_id.sql", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.yml", "unique_id": "test.yoda.not_null_infra__rivery_daily_usage_account_id.7c3b1f6492", "fqn": ["yoda", "infra", "marts", "infra__rivery_daily_usage", "not_null_infra__rivery_daily_usage_account_id"], "alias": "not_null_infra__rivery_daily_usage_account_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082669.2272825, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__rivery_daily_usage", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__rivery_daily_usage"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.yml/not_null_infra__rivery_daily_usage_account_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__rivery_daily_usage where account_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "account_id", "file_key_name": "models.infra__rivery_daily_usage", "attached_node": "model.yoda.infra__rivery_daily_usage"}, "test.yoda.not_null_infra__rivery_daily_usage_environment_name.8f90fc6903": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "environment_name", "model": "{{ get_where_subquery(ref('infra__rivery_daily_usage')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__rivery_daily_usage_environment_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__rivery_daily_usage_environment_name.sql", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.yml", "unique_id": "test.yoda.not_null_infra__rivery_daily_usage_environment_name.8f90fc6903", "fqn": ["yoda", "infra", "marts", "infra__rivery_daily_usage", "not_null_infra__rivery_daily_usage_environment_name"], "alias": "not_null_infra__rivery_daily_usage_environment_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082669.2325509, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__rivery_daily_usage", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__rivery_daily_usage"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.yml/not_null_infra__rivery_daily_usage_environment_name.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__rivery_daily_usage where environment_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "environment_name", "file_key_name": "models.infra__rivery_daily_usage", "attached_node": "model.yoda.infra__rivery_daily_usage"}, "test.yoda.not_null_infra__rivery_daily_usage_river_name.1274519a44": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "river_name", "model": "{{ get_where_subquery(ref('infra__rivery_daily_usage')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__rivery_daily_usage_river_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__rivery_daily_usage_river_name.sql", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.yml", "unique_id": "test.yoda.not_null_infra__rivery_daily_usage_river_name.1274519a44", "fqn": ["yoda", "infra", "marts", "infra__rivery_daily_usage", "not_null_infra__rivery_daily_usage_river_name"], "alias": "not_null_infra__rivery_daily_usage_river_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082669.2378662, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__rivery_daily_usage", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__rivery_daily_usage"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.yml/not_null_infra__rivery_daily_usage_river_name.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__rivery_daily_usage where river_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "river_name", "file_key_name": "models.infra__rivery_daily_usage", "attached_node": "model.yoda.infra__rivery_daily_usage"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__rivery_daily_usage_1__date_current_date_1.167a073d90": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "row_condition": "date = current_date -1", "model": "{{ get_where_subquery(ref('infra__rivery_daily_usage')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_infra__rivery_daily_usage_1__date_current_date_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__108ae58aba684a5861ae077371beba5c.sql", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__rivery_daily_usage_1__date_current_date_1.167a073d90", "fqn": ["yoda", "infra", "marts", "infra__rivery_daily_usage", "dbt_expectations_expect_table_row_count_to_be_between_infra__rivery_daily_usage_1__date_current_date_1"], "alias": "dbt_expectations_expect_table__108ae58aba684a5861ae077371beba5c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__108ae58aba684a5861ae077371beba5c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__108ae58aba684a5861ae077371beba5c"}, "created_at": 1700082669.2434797, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__108ae58aba684a5861ae077371beba5c\") }}", "language": "sql", "refs": [{"name": "infra__rivery_daily_usage", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__rivery_daily_usage"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.yml/dbt_expectations_expect_table__108ae58aba684a5861ae077371beba5c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.infra__rivery_daily_usage\n where\n date = current_date -1\n \n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.infra__rivery_daily_usage", "attached_node": "model.yoda.infra__rivery_daily_usage"}, "test.yoda.not_null_infra__s3_storage_data_summary_bucket.61255b41ed": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "bucket", "model": "{{ get_where_subquery(ref('infra__s3_storage_data_summary')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra__s3_storage_data_summary_bucket", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra__s3_storage_data_summary_bucket.sql", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.yml", "unique_id": "test.yoda.not_null_infra__s3_storage_data_summary_bucket.61255b41ed", "fqn": ["yoda", "infra", "marts", "infra__s3_storage_data_summary", "not_null_infra__s3_storage_data_summary_bucket"], "alias": "not_null_infra__s3_storage_data_summary_bucket", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082669.3544047, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra__s3_storage_data_summary", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra__s3_storage_data_summary"]}, "compiled_path": "target/compiled/yoda/models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.yml/not_null_infra__s3_storage_data_summary_bucket.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra__s3_storage_data_summary where bucket is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "bucket", "file_key_name": "models.infra__s3_storage_data_summary", "attached_node": "model.yoda.infra__s3_storage_data_summary"}, "test.yoda.dbt_utils_equality_infra_stg__budget_ref_unit_test__expected__infra_stg__budget__infra_stg__budget_.a1e776df30": {"test_metadata": {"name": "equality", "kwargs": {"compare_model": "ref('unit_test__expected__infra_stg__budget__infra_stg__budget')", "model": "{{ get_where_subquery(ref('infra_stg__budget')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_equality_infra_stg__budget_ref_unit_test__expected__infra_stg__budget__infra_stg__budget_", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_equality_infra_stg___f4b1d8c7bd989b6093259f003885fe58.sql", "original_file_path": "models/infra/staging/base/infra_stg__budget/infra_stg__budget.yml", "unique_id": "test.yoda.dbt_utils_equality_infra_stg__budget_ref_unit_test__expected__infra_stg__budget__infra_stg__budget_.a1e776df30", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__budget", "dbt_utils_equality_infra_stg__budget_ref_unit_test__expected__infra_stg__budget__infra_stg__budget_"], "alias": "dbt_utils_equality_infra_stg___f4b1d8c7bd989b6093259f003885fe58", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_equality_infra_stg___f4b1d8c7bd989b6093259f003885fe58", "schema": "dbt_test__audit", "database": null, "tags": ["unit_test"], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "\n count(*) + coalesce(abs(\n sum(case when which_diff = 'a_minus_b' then 1 else 0 end) -\n sum(case when which_diff = 'b_minus_a' then 1 else 0 end)\n ), 0)\n", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": ["unit_test"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "\n count(*) + coalesce(abs(\n sum(case when which_diff = 'a_minus_b' then 1 else 0 end) -\n sum(case when which_diff = 'b_minus_a' then 1 else 0 end)\n ), 0)\n", "tags": ["unit_test"], "alias": "dbt_utils_equality_infra_stg___f4b1d8c7bd989b6093259f003885fe58"}, "created_at": 1700082671.0347, "relation_name": null, "raw_code": "{{ dbt_utils.test_equality(**_dbt_generic_test_kwargs) }}{{ config(tags=['unit_test'],alias=\"dbt_utils_equality_infra_stg___f4b1d8c7bd989b6093259f003885fe58\") }}", "language": "sql", "refs": [{"name": "unit_test__expected__infra_stg__budget__infra_stg__budget", "package": null, "version": null}, {"name": "infra_stg__budget", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_equality", "macro.dbt.get_where_subquery"], "nodes": ["seed.yoda.unit_test__expected__infra_stg__budget__infra_stg__budget", "model.yoda.infra_stg__budget"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__budget/infra_stg__budget.yml/dbt_utils_equality_infra_stg___f4b1d8c7bd989b6093259f003885fe58.sql", "compiled": true, "compiled_code": "\n\n\n\n-- setup\n\nwith a as (\n\n select * from dev_dkruh1.infra_stg__budget\n\n),\n\nb as (\n\n select * from dev_dkruh1.unit_test__expected__infra_stg__budget__infra_stg__budget\n\n),\n\na_minus_b as (\n\n select from a\n \n\n except\n\n\n select from b\n\n),\n\nb_minus_a as (\n\n select from b\n \n\n except\n\n\n select from a\n\n),\n\nunioned as (\n\n select 'a_minus_b' as which_diff, a_minus_b.* from a_minus_b\n union all\n select 'b_minus_a' as which_diff, b_minus_a.* from b_minus_a\n\n)\n\nselect * from unioned\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.infra_stg__budget", "attached_node": "model.yoda.infra_stg__budget"}, "test.yoda.not_null_infra_stg__infra_metrics_ts.85dad6d1d4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "ts", "model": "{{ get_where_subquery(ref('infra_stg__infra_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra_stg__infra_metrics_ts", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra_stg__infra_metrics_ts.sql", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.yml", "unique_id": "test.yoda.not_null_infra_stg__infra_metrics_ts.85dad6d1d4", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__infra_metrics", "not_null_infra_stg__infra_metrics_ts"], "alias": "not_null_infra_stg__infra_metrics_ts", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082671.2100677, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra_stg__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra_stg__infra_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.yml/not_null_infra_stg__infra_metrics_ts.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra_stg__infra_metrics where ts is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "ts", "file_key_name": "models.infra_stg__infra_metrics", "attached_node": "model.yoda.infra_stg__infra_metrics"}, "test.yoda.not_null_infra_stg__infra_metrics_source.8d98cc3218": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source", "model": "{{ get_where_subquery(ref('infra_stg__infra_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra_stg__infra_metrics_source", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra_stg__infra_metrics_source.sql", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.yml", "unique_id": "test.yoda.not_null_infra_stg__infra_metrics_source.8d98cc3218", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__infra_metrics", "not_null_infra_stg__infra_metrics_source"], "alias": "not_null_infra_stg__infra_metrics_source", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082671.215471, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra_stg__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra_stg__infra_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.yml/not_null_infra_stg__infra_metrics_source.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra_stg__infra_metrics where source is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source", "file_key_name": "models.infra_stg__infra_metrics", "attached_node": "model.yoda.infra_stg__infra_metrics"}, "test.yoda.not_null_infra_stg__infra_metrics_component.b2e07aafab": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "component", "model": "{{ get_where_subquery(ref('infra_stg__infra_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra_stg__infra_metrics_component", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra_stg__infra_metrics_component.sql", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.yml", "unique_id": "test.yoda.not_null_infra_stg__infra_metrics_component.b2e07aafab", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__infra_metrics", "not_null_infra_stg__infra_metrics_component"], "alias": "not_null_infra_stg__infra_metrics_component", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082671.2207773, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra_stg__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra_stg__infra_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.yml/not_null_infra_stg__infra_metrics_component.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra_stg__infra_metrics where component is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "component", "file_key_name": "models.infra_stg__infra_metrics", "attached_node": "model.yoda.infra_stg__infra_metrics"}, "test.yoda.not_null_infra_stg__infra_metrics_key.bcec2067d3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "key", "model": "{{ get_where_subquery(ref('infra_stg__infra_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra_stg__infra_metrics_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra_stg__infra_metrics_key.sql", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.yml", "unique_id": "test.yoda.not_null_infra_stg__infra_metrics_key.bcec2067d3", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__infra_metrics", "not_null_infra_stg__infra_metrics_key"], "alias": "not_null_infra_stg__infra_metrics_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082671.2262738, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra_stg__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra_stg__infra_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.yml/not_null_infra_stg__infra_metrics_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra_stg__infra_metrics where key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "key", "file_key_name": "models.infra_stg__infra_metrics", "attached_node": "model.yoda.infra_stg__infra_metrics"}, "test.yoda.not_null_infra_stg__infra_metrics_value.4b3957014e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "value", "model": "{{ get_where_subquery(ref('infra_stg__infra_metrics')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_infra_stg__infra_metrics_value", "resource_type": "test", "package_name": "yoda", "path": "not_null_infra_stg__infra_metrics_value.sql", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.yml", "unique_id": "test.yoda.not_null_infra_stg__infra_metrics_value.4b3957014e", "fqn": ["yoda", "infra", "staging", "base", "infra_stg__infra_metrics", "not_null_infra_stg__infra_metrics_value"], "alias": "not_null_infra_stg__infra_metrics_value", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082671.2313457, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "infra_stg__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.infra_stg__infra_metrics"]}, "compiled_path": "target/compiled/yoda/models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.yml/not_null_infra_stg__infra_metrics_value.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.infra_stg__infra_metrics where value is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "value", "file_key_name": "models.infra_stg__infra_metrics", "attached_node": "model.yoda.infra_stg__infra_metrics"}, "test.yoda.not_null_loyalty__customer_group_date_history_group_customer_id.f20f49abfc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "group_customer_id", "model": "{{ get_where_subquery(ref('loyalty__customer_group_date_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__customer_group_date_history_group_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__customer_group_date_history_group_customer_id.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.yml", "unique_id": "test.yoda.not_null_loyalty__customer_group_date_history_group_customer_id.f20f49abfc", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_group_date_history", "not_null_loyalty__customer_group_date_history_group_customer_id"], "alias": "not_null_loyalty__customer_group_date_history_group_customer_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.6862233, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__customer_group_date_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__customer_group_date_history"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.yml/not_null_loyalty__customer_group_date_history_group_customer_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__customer_group_date_history where group_customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "group_customer_id", "file_key_name": "models.loyalty__customer_group_date_history", "attached_node": "model.yoda.loyalty__customer_group_date_history"}, "test.yoda.not_null_loyalty__customer_group_date_history_merchant_group_id.722d4bf4f0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_group_id", "model": "{{ get_where_subquery(ref('loyalty__customer_group_date_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__customer_group_date_history_merchant_group_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__customer_group_date_history_merchant_group_id.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.yml", "unique_id": "test.yoda.not_null_loyalty__customer_group_date_history_merchant_group_id.722d4bf4f0", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_group_date_history", "not_null_loyalty__customer_group_date_history_merchant_group_id"], "alias": "not_null_loyalty__customer_group_date_history_merchant_group_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.69148, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__customer_group_date_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__customer_group_date_history"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.yml/not_null_loyalty__customer_group_date_history_merchant_group_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__customer_group_date_history where merchant_group_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_group_id", "file_key_name": "models.loyalty__customer_group_date_history", "attached_node": "model.yoda.loyalty__customer_group_date_history"}, "test.yoda.not_null_loyalty__customer_group_date_history_category.b5e988372f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "category", "model": "{{ get_where_subquery(ref('loyalty__customer_group_date_history')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__customer_group_date_history_category", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__customer_group_date_history_category.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.yml", "unique_id": "test.yoda.not_null_loyalty__customer_group_date_history_category.b5e988372f", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_group_date_history", "not_null_loyalty__customer_group_date_history_category"], "alias": "not_null_loyalty__customer_group_date_history_category", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.6967719, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__customer_group_date_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__customer_group_date_history"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.yml/not_null_loyalty__customer_group_date_history_category.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__customer_group_date_history where category is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "category", "file_key_name": "models.loyalty__customer_group_date_history", "attached_node": "model.yoda.loyalty__customer_group_date_history"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_group_date_history_1.066a328015": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty__customer_group_date_history')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_group_date_history_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3d126e0f1daab7502e5960a5c8e2b726.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_group_date_history_1.066a328015", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_group_date_history", "dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_group_date_history_1"], "alias": "dbt_expectations_expect_table__3d126e0f1daab7502e5960a5c8e2b726", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3d126e0f1daab7502e5960a5c8e2b726", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3d126e0f1daab7502e5960a5c8e2b726"}, "created_at": 1700082672.7023673, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3d126e0f1daab7502e5960a5c8e2b726\") }}", "language": "sql", "refs": [{"name": "loyalty__customer_group_date_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__customer_group_date_history"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.yml/dbt_expectations_expect_table__3d126e0f1daab7502e5960a5c8e2b726.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.loyalty__customer_group_date_history\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__customer_group_date_history", "attached_node": "model.yoda.loyalty__customer_group_date_history"}, "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__customer_group_date_history_group_customer_id__merchant_group_id__category.6db34ce124": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["group_customer_id", "merchant_group_id", "category"], "model": "{{ get_where_subquery(ref('loyalty__customer_group_date_history')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_loyalty__customer_group_date_history_group_customer_id__merchant_group_id__category", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_003d248761b69f095db2888c05abc05a.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__customer_group_date_history_group_customer_id__merchant_group_id__category.6db34ce124", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_group_date_history", "dbt_utils_unique_combination_of_columns_loyalty__customer_group_date_history_group_customer_id__merchant_group_id__category"], "alias": "dbt_utils_unique_combination_o_003d248761b69f095db2888c05abc05a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_003d248761b69f095db2888c05abc05a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_003d248761b69f095db2888c05abc05a"}, "created_at": 1700082672.7080524, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_003d248761b69f095db2888c05abc05a\") }}", "language": "sql", "refs": [{"name": "loyalty__customer_group_date_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__customer_group_date_history"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.yml/dbt_utils_unique_combination_o_003d248761b69f095db2888c05abc05a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n group_customer_id, merchant_group_id, category\n from dev_dkruh1.loyalty__customer_group_date_history\n group by group_customer_id, merchant_group_id, category\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__customer_group_date_history", "attached_node": "model.yoda.loyalty__customer_group_date_history"}, "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_date.dfeffafae1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "date", "model": "{{ get_where_subquery(ref('loyalty__customer_point_transaction_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__customer_point_transaction_metrics_daily_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__customer_point_transaction_metrics_daily_date.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.yml", "unique_id": "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_date.dfeffafae1", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_point_transaction_metrics_daily", "not_null_loyalty__customer_point_transaction_metrics_daily_date"], "alias": "not_null_loyalty__customer_point_transaction_metrics_daily_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.7357004, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__customer_point_transaction_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.yml/not_null_loyalty__customer_point_transaction_metrics_daily_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__customer_point_transaction_metrics_daily where date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "date", "file_key_name": "models.loyalty__customer_point_transaction_metrics_daily", "attached_node": "model.yoda.loyalty__customer_point_transaction_metrics_daily"}, "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_group_customer_id.586bcf6ede": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "group_customer_id", "model": "{{ get_where_subquery(ref('loyalty__customer_point_transaction_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__customer_point_transaction_metrics_daily_group_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__customer_poi_d07cf999759526c8275edce87dc5a15c.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.yml", "unique_id": "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_group_customer_id.586bcf6ede", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_point_transaction_metrics_daily", "not_null_loyalty__customer_point_transaction_metrics_daily_group_customer_id"], "alias": "not_null_loyalty__customer_poi_d07cf999759526c8275edce87dc5a15c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__customer_poi_d07cf999759526c8275edce87dc5a15c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__customer_poi_d07cf999759526c8275edce87dc5a15c"}, "created_at": 1700082672.7407236, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__customer_poi_d07cf999759526c8275edce87dc5a15c\") }}", "language": "sql", "refs": [{"name": "loyalty__customer_point_transaction_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.yml/not_null_loyalty__customer_poi_d07cf999759526c8275edce87dc5a15c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__customer_point_transaction_metrics_daily where group_customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "group_customer_id", "file_key_name": "models.loyalty__customer_point_transaction_metrics_daily", "attached_node": "model.yoda.loyalty__customer_point_transaction_metrics_daily"}, "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_merchant_group_id.c4bc04af4f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_group_id", "model": "{{ get_where_subquery(ref('loyalty__customer_point_transaction_metrics_daily')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__customer_point_transaction_metrics_daily_merchant_group_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__customer_poi_9b074e55f032762d1710104c98b84c49.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.yml", "unique_id": "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_merchant_group_id.c4bc04af4f", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_point_transaction_metrics_daily", "not_null_loyalty__customer_point_transaction_metrics_daily_merchant_group_id"], "alias": "not_null_loyalty__customer_poi_9b074e55f032762d1710104c98b84c49", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__customer_poi_9b074e55f032762d1710104c98b84c49", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__customer_poi_9b074e55f032762d1710104c98b84c49"}, "created_at": 1700082672.7480223, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__customer_poi_9b074e55f032762d1710104c98b84c49\") }}", "language": "sql", "refs": [{"name": "loyalty__customer_point_transaction_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.yml/not_null_loyalty__customer_poi_9b074e55f032762d1710104c98b84c49.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__customer_point_transaction_metrics_daily where merchant_group_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_group_id", "file_key_name": "models.loyalty__customer_point_transaction_metrics_daily", "attached_node": "model.yoda.loyalty__customer_point_transaction_metrics_daily"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_point_transaction_metrics_daily_1.d7ff2825fe": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty__customer_point_transaction_metrics_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_point_transaction_metrics_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__e9730c119b1ef15c1347455a3762941f.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_point_transaction_metrics_daily_1.d7ff2825fe", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_point_transaction_metrics_daily", "dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_point_transaction_metrics_daily_1"], "alias": "dbt_expectations_expect_table__e9730c119b1ef15c1347455a3762941f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__e9730c119b1ef15c1347455a3762941f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__e9730c119b1ef15c1347455a3762941f"}, "created_at": 1700082672.7547994, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__e9730c119b1ef15c1347455a3762941f\") }}", "language": "sql", "refs": [{"name": "loyalty__customer_point_transaction_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.yml/dbt_expectations_expect_table__e9730c119b1ef15c1347455a3762941f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.loyalty__customer_point_transaction_metrics_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__customer_point_transaction_metrics_daily", "attached_node": "model.yoda.loyalty__customer_point_transaction_metrics_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__customer_point_transaction_metrics_daily_group_customer_id__date.10101ccaa4": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["group_customer_id", "date"], "model": "{{ get_where_subquery(ref('loyalty__customer_point_transaction_metrics_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_loyalty__customer_point_transaction_metrics_daily_group_customer_id__date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_8e9d0e0be46226eb7a552fda3398d8aa.sql", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__customer_point_transaction_metrics_daily_group_customer_id__date.10101ccaa4", "fqn": ["yoda", "loyalty", "marts", "loyalty__customer_point_transaction_metrics_daily", "dbt_utils_unique_combination_of_columns_loyalty__customer_point_transaction_metrics_daily_group_customer_id__date"], "alias": "dbt_utils_unique_combination_o_8e9d0e0be46226eb7a552fda3398d8aa", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_8e9d0e0be46226eb7a552fda3398d8aa", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_8e9d0e0be46226eb7a552fda3398d8aa"}, "created_at": 1700082672.7621803, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_8e9d0e0be46226eb7a552fda3398d8aa\") }}", "language": "sql", "refs": [{"name": "loyalty__customer_point_transaction_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.yml/dbt_utils_unique_combination_o_8e9d0e0be46226eb7a552fda3398d8aa.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n group_customer_id, date\n from dev_dkruh1.loyalty__customer_point_transaction_metrics_daily\n group by group_customer_id, date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__customer_point_transaction_metrics_daily", "attached_node": "model.yoda.loyalty__customer_point_transaction_metrics_daily"}, "test.yoda.unique_loyalty__dim_campaigns_daily_snapshot_id.4bb6aeeae2": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_campaigns_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__dim_campaigns_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__dim_campaigns_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__dim_campaigns_daily_snapshot_id.4bb6aeeae2", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_campaigns_daily_snapshot", "unique_loyalty__dim_campaigns_daily_snapshot_id"], "alias": "unique_loyalty__dim_campaigns_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082672.7854683, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_campaigns_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_campaigns_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.yml/unique_loyalty__dim_campaigns_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__dim_campaigns_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_campaigns_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_campaigns_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_id.5e34c99824": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_campaigns_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_campaigns_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_campaigns_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_id.5e34c99824", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_campaigns_daily_snapshot", "not_null_loyalty__dim_campaigns_daily_snapshot_id"], "alias": "not_null_loyalty__dim_campaigns_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.791996, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_campaigns_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_campaigns_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.yml/not_null_loyalty__dim_campaigns_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_campaigns_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_campaigns_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_campaigns_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_type.6d4b50622a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "type", "model": "{{ get_where_subquery(ref('loyalty__dim_campaigns_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_campaigns_daily_snapshot_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_campaigns_daily_snapshot_type.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_type.6d4b50622a", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_campaigns_daily_snapshot", "not_null_loyalty__dim_campaigns_daily_snapshot_type"], "alias": "not_null_loyalty__dim_campaigns_daily_snapshot_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.7976365, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_campaigns_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_campaigns_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.yml/not_null_loyalty__dim_campaigns_daily_snapshot_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_campaigns_daily_snapshot where type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "type", "file_key_name": "models.loyalty__dim_campaigns_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_campaigns_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_dwh_updated_at.aa17481f82": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('loyalty__dim_campaigns_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_campaigns_daily_snapshot_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_campaigns_daily_snapshot_dwh_updated_at.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_dwh_updated_at.aa17481f82", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_campaigns_daily_snapshot", "not_null_loyalty__dim_campaigns_daily_snapshot_dwh_updated_at"], "alias": "not_null_loyalty__dim_campaigns_daily_snapshot_dwh_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.8046577, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_campaigns_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_campaigns_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.yml/not_null_loyalty__dim_campaigns_daily_snapshot_dwh_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_campaigns_daily_snapshot where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.loyalty__dim_campaigns_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_campaigns_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_customer_birthdays_daily_snapshot_group_customer_id.d1b35ae6fd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "group_customer_id", "model": "{{ get_where_subquery(ref('loyalty__dim_customer_birthdays_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_customer_birthdays_daily_snapshot_group_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_customer_f21b4085b846b8215b56d385c5dd3d68.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_customer_birthdays_daily_snapshot_group_customer_id.d1b35ae6fd", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customer_birthdays_daily_snapshot", "not_null_loyalty__dim_customer_birthdays_daily_snapshot_group_customer_id"], "alias": "not_null_loyalty__dim_customer_f21b4085b846b8215b56d385c5dd3d68", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__dim_customer_f21b4085b846b8215b56d385c5dd3d68", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__dim_customer_f21b4085b846b8215b56d385c5dd3d68"}, "created_at": 1700082672.8291047, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__dim_customer_f21b4085b846b8215b56d385c5dd3d68\") }}", "language": "sql", "refs": [{"name": "loyalty__dim_customer_birthdays_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_customer_birthdays_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.yml/not_null_loyalty__dim_customer_f21b4085b846b8215b56d385c5dd3d68.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_customer_birthdays_daily_snapshot where group_customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "group_customer_id", "file_key_name": "models.loyalty__dim_customer_birthdays_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_customer_birthdays_daily_snapshot"}, "test.yoda.unique_loyalty__dim_customers_daily_snapshot_id.09d33def70": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_customers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__dim_customers_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__dim_customers_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__dim_customers_daily_snapshot_id.09d33def70", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customers_daily_snapshot", "unique_loyalty__dim_customers_daily_snapshot_id"], "alias": "unique_loyalty__dim_customers_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082672.8663397, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_customers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml/unique_loyalty__dim_customers_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__dim_customers_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_customers_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_customers_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_id.2c54f85955": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_customers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_customers_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_customers_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_id.2c54f85955", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customers_daily_snapshot", "not_null_loyalty__dim_customers_daily_snapshot_id"], "alias": "not_null_loyalty__dim_customers_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.8716292, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_customers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml/not_null_loyalty__dim_customers_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_customers_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_customers_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_customers_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_merchant_id.890d8e6cbc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('loyalty__dim_customers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_customers_daily_snapshot_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_customers_daily_snapshot_merchant_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_merchant_id.890d8e6cbc", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customers_daily_snapshot", "not_null_loyalty__dim_customers_daily_snapshot_merchant_id"], "alias": "not_null_loyalty__dim_customers_daily_snapshot_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.877182, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_customers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml/not_null_loyalty__dim_customers_daily_snapshot_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_customers_daily_snapshot where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.loyalty__dim_customers_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_customers_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_email_sent_count.0d45742168": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "email_sent_count", "model": "{{ get_where_subquery(ref('loyalty__dim_customers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_customers_daily_snapshot_email_sent_count", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_customers_daily_snapshot_email_sent_count.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_email_sent_count.0d45742168", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customers_daily_snapshot", "not_null_loyalty__dim_customers_daily_snapshot_email_sent_count"], "alias": "not_null_loyalty__dim_customers_daily_snapshot_email_sent_count", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.882614, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_customers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml/not_null_loyalty__dim_customers_daily_snapshot_email_sent_count.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_customers_daily_snapshot where email_sent_count is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email_sent_count", "file_key_name": "models.loyalty__dim_customers_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_customers_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_updated_at.55fcdbd1a8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('loyalty__dim_customers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_customers_daily_snapshot_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_customers_daily_snapshot_updated_at.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_updated_at.55fcdbd1a8", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customers_daily_snapshot", "not_null_loyalty__dim_customers_daily_snapshot_updated_at"], "alias": "not_null_loyalty__dim_customers_daily_snapshot_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.8881145, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_customers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml/not_null_loyalty__dim_customers_daily_snapshot_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_customers_daily_snapshot where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.loyalty__dim_customers_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_customers_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_is_member.7c4c9533ab": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_member", "model": "{{ get_where_subquery(ref('loyalty__dim_customers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_customers_daily_snapshot_is_member", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_customers_daily_snapshot_is_member.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_is_member.7c4c9533ab", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customers_daily_snapshot", "not_null_loyalty__dim_customers_daily_snapshot_is_member"], "alias": "not_null_loyalty__dim_customers_daily_snapshot_is_member", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.8930538, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_customers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml/not_null_loyalty__dim_customers_daily_snapshot_is_member.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_customers_daily_snapshot where is_member is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_member", "file_key_name": "models.loyalty__dim_customers_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_customers_daily_snapshot"}, "test.yoda.accepted_values_loyalty__dim_customers_daily_snapshot_is_member__False__True__False.d2aafb2216": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [true, false], "quote": false, "column_name": "is_member", "model": "{{ get_where_subquery(ref('loyalty__dim_customers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_loyalty__dim_customers_daily_snapshot_is_member__False__True__False", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_loyalty__dim_c_9ce699522cd9c37166d5c10c134d1beb.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml", "unique_id": "test.yoda.accepted_values_loyalty__dim_customers_daily_snapshot_is_member__False__True__False.d2aafb2216", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customers_daily_snapshot", "accepted_values_loyalty__dim_customers_daily_snapshot_is_member__False__True__False"], "alias": "accepted_values_loyalty__dim_c_9ce699522cd9c37166d5c10c134d1beb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_loyalty__dim_c_9ce699522cd9c37166d5c10c134d1beb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_loyalty__dim_c_9ce699522cd9c37166d5c10c134d1beb"}, "created_at": 1700082672.898512, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_loyalty__dim_c_9ce699522cd9c37166d5c10c134d1beb\") }}", "language": "sql", "refs": [{"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_customers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml/accepted_values_loyalty__dim_c_9ce699522cd9c37166d5c10c134d1beb.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_member as value_field,\n count(*) as n_records\n\n from dev_dkruh1.loyalty__dim_customers_daily_snapshot\n group by is_member\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n True,False\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_member", "file_key_name": "models.loyalty__dim_customers_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_customers_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_dwh_updated_at.32a31ae877": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('loyalty__dim_customers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_customers_daily_snapshot_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_customers_daily_snapshot_dwh_updated_at.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_dwh_updated_at.32a31ae877", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_customers_daily_snapshot", "not_null_loyalty__dim_customers_daily_snapshot_dwh_updated_at"], "alias": "not_null_loyalty__dim_customers_daily_snapshot_dwh_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.9043074, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_customers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.yml/not_null_loyalty__dim_customers_daily_snapshot_dwh_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_customers_daily_snapshot where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.loyalty__dim_customers_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_customers_daily_snapshot"}, "test.yoda.unique_loyalty__dim_merchants_daily_snapshot_id.9e1b4d52f2": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_merchants_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__dim_merchants_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__dim_merchants_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__dim_merchants_daily_snapshot_id.9e1b4d52f2", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_merchants_daily_snapshot", "unique_loyalty__dim_merchants_daily_snapshot_id"], "alias": "unique_loyalty__dim_merchants_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082672.9541647, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_merchants_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_merchants_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.yml/unique_loyalty__dim_merchants_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__dim_merchants_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_merchants_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_merchants_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_merchants_daily_snapshot_id.b30eb29a5c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_merchants_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_merchants_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_merchants_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_merchants_daily_snapshot_id.b30eb29a5c", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_merchants_daily_snapshot", "not_null_loyalty__dim_merchants_daily_snapshot_id"], "alias": "not_null_loyalty__dim_merchants_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.9594696, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_merchants_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_merchants_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.yml/not_null_loyalty__dim_merchants_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_merchants_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_merchants_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_merchants_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_merchants_daily_snapshot_updated_at.87cd836a10": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('loyalty__dim_merchants_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_merchants_daily_snapshot_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_merchants_daily_snapshot_updated_at.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_merchants_daily_snapshot_updated_at.87cd836a10", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_merchants_daily_snapshot", "not_null_loyalty__dim_merchants_daily_snapshot_updated_at"], "alias": "not_null_loyalty__dim_merchants_daily_snapshot_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082672.9649892, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_merchants_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_merchants_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.yml/not_null_loyalty__dim_merchants_daily_snapshot_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_merchants_daily_snapshot where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.loyalty__dim_merchants_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_merchants_daily_snapshot"}, "test.yoda.unique_loyalty__dim_referral_discount_codes_daily_snapshot_id.3655facf99": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_referral_discount_codes_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__dim_referral_discount_codes_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__dim_referral_discount_codes_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__dim_referral_discount_codes_daily_snapshot_id.3655facf99", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_referral_discount_codes_daily_snapshot", "unique_loyalty__dim_referral_discount_codes_daily_snapshot_id"], "alias": "unique_loyalty__dim_referral_discount_codes_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.00783, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_referral_discount_codes_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.yml/unique_loyalty__dim_referral_discount_codes_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__dim_referral_discount_codes_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_referral_discount_codes_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_referral_discount_codes_daily_snapshot_id.7bd46d84ad": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_referral_discount_codes_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_referral_discount_codes_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_referral_discount_codes_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_referral_discount_codes_daily_snapshot_id.7bd46d84ad", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_referral_discount_codes_daily_snapshot", "not_null_loyalty__dim_referral_discount_codes_daily_snapshot_id"], "alias": "not_null_loyalty__dim_referral_discount_codes_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.0130508, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_referral_discount_codes_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.yml/not_null_loyalty__dim_referral_discount_codes_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_referral_discount_codes_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_referral_discount_codes_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot"}, "test.yoda.unique_loyalty__dim_subscriptions_daily_snapshot_id.c57a1bbf29": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_subscriptions_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__dim_subscriptions_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__dim_subscriptions_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__dim_subscriptions_daily_snapshot_id.c57a1bbf29", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_subscriptions_daily_snapshot", "unique_loyalty__dim_subscriptions_daily_snapshot_id"], "alias": "unique_loyalty__dim_subscriptions_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.0380921, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_subscriptions_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_subscriptions_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.yml/unique_loyalty__dim_subscriptions_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__dim_subscriptions_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_subscriptions_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_subscriptions_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_subscriptions_daily_snapshot_id.6396815751": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_subscriptions_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_subscriptions_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_subscriptions_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_subscriptions_daily_snapshot_id.6396815751", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_subscriptions_daily_snapshot", "not_null_loyalty__dim_subscriptions_daily_snapshot_id"], "alias": "not_null_loyalty__dim_subscriptions_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.045062, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_subscriptions_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_subscriptions_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.yml/not_null_loyalty__dim_subscriptions_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_subscriptions_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_subscriptions_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_subscriptions_daily_snapshot"}, "test.yoda.unique_loyalty__dim_vip_tiers_daily_snapshot_id.3db5ece551": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_vip_tiers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__dim_vip_tiers_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__dim_vip_tiers_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__dim_vip_tiers_daily_snapshot_id.3db5ece551", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_vip_tiers_daily_snapshot", "unique_loyalty__dim_vip_tiers_daily_snapshot_id"], "alias": "unique_loyalty__dim_vip_tiers_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.0658252, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_vip_tiers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_vip_tiers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.yml/unique_loyalty__dim_vip_tiers_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__dim_vip_tiers_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_vip_tiers_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_vip_tiers_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_vip_tiers_daily_snapshot_id.91a51f5037": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_vip_tiers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_vip_tiers_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_vip_tiers_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_vip_tiers_daily_snapshot_id.91a51f5037", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_vip_tiers_daily_snapshot", "not_null_loyalty__dim_vip_tiers_daily_snapshot_id"], "alias": "not_null_loyalty__dim_vip_tiers_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.0710902, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_vip_tiers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_vip_tiers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.yml/not_null_loyalty__dim_vip_tiers_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_vip_tiers_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_vip_tiers_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_vip_tiers_daily_snapshot"}, "test.yoda.unique_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.a8136b53dd": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_yotpo_platform_accounts_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.a8136b53dd", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "unique_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id"], "alias": "unique_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.1144655, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.yml/unique_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__dim_yotpo_platform_accounts_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_yotpo_platform_accounts_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot"}, "test.yoda.not_null_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.8e468345d8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__dim_yotpo_platform_accounts_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.8e468345d8", "fqn": ["yoda", "loyalty", "marts", "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "not_null_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id"], "alias": "not_null_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.1198533, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.yml/not_null_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__dim_yotpo_platform_accounts_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__dim_yotpo_platform_accounts_daily_snapshot", "attached_node": "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot"}, "test.yoda.unique_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date.415dfb2355": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "investment_date", "model": "{{ get_where_subquery(ref('loyalty__fact_dates_for_investment_metric_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_dates_for_8c59c1e034226c77c8b46addd9c199e7.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date.415dfb2355", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_dates_for_investment_metric_daily_snapshot", "unique_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date"], "alias": "unique_loyalty__fact_dates_for_8c59c1e034226c77c8b46addd9c199e7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_loyalty__fact_dates_for_8c59c1e034226c77c8b46addd9c199e7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_loyalty__fact_dates_for_8c59c1e034226c77c8b46addd9c199e7"}, "created_at": 1700082673.1361904, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_loyalty__fact_dates_for_8c59c1e034226c77c8b46addd9c199e7\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_dates_for_investment_metric_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.yml/unique_loyalty__fact_dates_for_8c59c1e034226c77c8b46addd9c199e7.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select investment_date from dev_dkruh1.loyalty__fact_dates_for_investment_metric_daily_snapshot where investment_date is not null group by investment_date having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "investment_date", "file_key_name": "models.loyalty__fact_dates_for_investment_metric_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date.96a2b394d3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "investment_date", "model": "{{ get_where_subquery(ref('loyalty__fact_dates_for_investment_metric_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_dates_f_ade3514ae975c2a5600fd9876f1a019c.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date.96a2b394d3", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_dates_for_investment_metric_daily_snapshot", "not_null_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date"], "alias": "not_null_loyalty__fact_dates_f_ade3514ae975c2a5600fd9876f1a019c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__fact_dates_f_ade3514ae975c2a5600fd9876f1a019c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__fact_dates_f_ade3514ae975c2a5600fd9876f1a019c"}, "created_at": 1700082673.1421354, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__fact_dates_f_ade3514ae975c2a5600fd9876f1a019c\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_dates_for_investment_metric_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.yml/not_null_loyalty__fact_dates_f_ade3514ae975c2a5600fd9876f1a019c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_dates_for_investment_metric_daily_snapshot where investment_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "investment_date", "file_key_name": "models.loyalty__fact_dates_for_investment_metric_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_customer_id.47bf050fa7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('loyalty__fact_email_campaigns_emails_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_email_c_cdfd53fb1374adf8508d65721608a15a.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_customer_id.47bf050fa7", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_email_campaigns_emails_daily_snapshot", "not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_customer_id"], "alias": "not_null_loyalty__fact_email_c_cdfd53fb1374adf8508d65721608a15a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__fact_email_c_cdfd53fb1374adf8508d65721608a15a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__fact_email_c_cdfd53fb1374adf8508d65721608a15a"}, "created_at": 1700082673.167743, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__fact_email_c_cdfd53fb1374adf8508d65721608a15a\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_email_campaigns_emails_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.yml/not_null_loyalty__fact_email_c_cdfd53fb1374adf8508d65721608a15a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_email_campaigns_emails_daily_snapshot where customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.loyalty__fact_email_campaigns_emails_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_merchant_id.8f02c9f6d3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('loyalty__fact_email_campaigns_emails_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_email_c_126635ef16e776d7a75e5ee8c5d23d06.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_merchant_id.8f02c9f6d3", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_email_campaigns_emails_daily_snapshot", "not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_merchant_id"], "alias": "not_null_loyalty__fact_email_c_126635ef16e776d7a75e5ee8c5d23d06", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__fact_email_c_126635ef16e776d7a75e5ee8c5d23d06", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__fact_email_c_126635ef16e776d7a75e5ee8c5d23d06"}, "created_at": 1700082673.1731203, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__fact_email_c_126635ef16e776d7a75e5ee8c5d23d06\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_email_campaigns_emails_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.yml/not_null_loyalty__fact_email_c_126635ef16e776d7a75e5ee8c5d23d06.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_email_campaigns_emails_daily_snapshot where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.loyalty__fact_email_campaigns_emails_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot"}, "test.yoda.unique_loyalty__fact_perks_daily_snapshot_id.447c6f759a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_perks_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_perks_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_perks_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_perks_daily_snapshot_id.447c6f759a", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_perks_daily_snapshot", "unique_loyalty__fact_perks_daily_snapshot_id"], "alias": "unique_loyalty__fact_perks_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.195793, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_perks_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_perks_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.yml/unique_loyalty__fact_perks_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__fact_perks_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_perks_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_perks_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_perks_daily_snapshot_id.d3372857e3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_perks_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_perks_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_perks_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_perks_daily_snapshot_id.d3372857e3", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_perks_daily_snapshot", "not_null_loyalty__fact_perks_daily_snapshot_id"], "alias": "not_null_loyalty__fact_perks_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.2025142, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_perks_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_perks_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.yml/not_null_loyalty__fact_perks_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_perks_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_perks_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_perks_daily_snapshot"}, "test.yoda.unique_loyalty__fact_purchase_items_daily_snapshot_id.a08c3ecb47": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_purchase_items_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_purchase_items_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_purchase_items_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_purchase_items_daily_snapshot_id.a08c3ecb47", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_purchase_items_daily_snapshot", "unique_loyalty__fact_purchase_items_daily_snapshot_id"], "alias": "unique_loyalty__fact_purchase_items_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.2241886, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_purchase_items_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_purchase_items_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.yml/unique_loyalty__fact_purchase_items_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__fact_purchase_items_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_purchase_items_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_purchase_items_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_purchase_items_daily_snapshot_id.96ed057021": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_purchase_items_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_purchase_items_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_purchase_items_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_purchase_items_daily_snapshot_id.96ed057021", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_purchase_items_daily_snapshot", "not_null_loyalty__fact_purchase_items_daily_snapshot_id"], "alias": "not_null_loyalty__fact_purchase_items_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.2295778, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_purchase_items_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_purchase_items_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.yml/not_null_loyalty__fact_purchase_items_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_purchase_items_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_purchase_items_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_purchase_items_daily_snapshot"}, "test.yoda.unique_loyalty__fact_purchases_daily_snapshot_id.49d307d948": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_purchases_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_purchases_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_purchases_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_purchases_daily_snapshot_id.49d307d948", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_purchases_daily_snapshot", "unique_loyalty__fact_purchases_daily_snapshot_id"], "alias": "unique_loyalty__fact_purchases_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.2761092, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_purchases_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_purchases_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.yml/unique_loyalty__fact_purchases_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__fact_purchases_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_purchases_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_purchases_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_purchases_daily_snapshot_id.95de3471a3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_purchases_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_purchases_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_purchases_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_purchases_daily_snapshot_id.95de3471a3", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_purchases_daily_snapshot", "not_null_loyalty__fact_purchases_daily_snapshot_id"], "alias": "not_null_loyalty__fact_purchases_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.28134, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_purchases_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_purchases_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.yml/not_null_loyalty__fact_purchases_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_purchases_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_purchases_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_purchases_daily_snapshot"}, "test.yoda.unique_loyalty__fact_purchases_redemptions_daily_snapshot_id.8443c10201": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_purchases_redemptions_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_purchases_redemptions_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_purchases_redemptions_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_purchases_redemptions_daily_snapshot_id.8443c10201", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_purchases_redemptions_daily_snapshot", "unique_loyalty__fact_purchases_redemptions_daily_snapshot_id"], "alias": "unique_loyalty__fact_purchases_redemptions_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.300536, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_purchases_redemptions_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.yml/unique_loyalty__fact_purchases_redemptions_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__fact_purchases_redemptions_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_purchases_redemptions_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_purchases_redemptions_daily_snapshot_id.a68dde1e9f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_purchases_redemptions_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_purchases_redemptions_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_purchases_redemptions_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_purchases_redemptions_daily_snapshot_id.a68dde1e9f", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_purchases_redemptions_daily_snapshot", "not_null_loyalty__fact_purchases_redemptions_daily_snapshot_id"], "alias": "not_null_loyalty__fact_purchases_redemptions_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.305923, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_purchases_redemptions_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.yml/not_null_loyalty__fact_purchases_redemptions_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_purchases_redemptions_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_purchases_redemptions_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_redemption_created_at.3a0df4fe84": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "redemption_created_at", "model": "{{ get_where_subquery(ref('loyalty__fact_redemptions_with_purchases_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_redemption_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_redempt_c0a2d5a4b19dbd68f9cc58059decc9c3.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_redemption_created_at.3a0df4fe84", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_redemptions_with_purchases_daily_snapshot", "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_redemption_created_at"], "alias": "not_null_loyalty__fact_redempt_c0a2d5a4b19dbd68f9cc58059decc9c3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__fact_redempt_c0a2d5a4b19dbd68f9cc58059decc9c3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__fact_redempt_c0a2d5a4b19dbd68f9cc58059decc9c3"}, "created_at": 1700082673.35206, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__fact_redempt_c0a2d5a4b19dbd68f9cc58059decc9c3\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml/not_null_loyalty__fact_redempt_c0a2d5a4b19dbd68f9cc58059decc9c3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_redemptions_with_purchases_daily_snapshot where redemption_created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "redemption_created_at", "file_key_name": "models.loyalty__fact_redemptions_with_purchases_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referred_redemption.a6ec485fde": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_referred_redemption", "model": "{{ get_where_subquery(ref('loyalty__fact_redemptions_with_purchases_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referred_redemption", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_redempt_51c7fc1af50a7eadeeae3afde512a7b4.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referred_redemption.a6ec485fde", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_redemptions_with_purchases_daily_snapshot", "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referred_redemption"], "alias": "not_null_loyalty__fact_redempt_51c7fc1af50a7eadeeae3afde512a7b4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__fact_redempt_51c7fc1af50a7eadeeae3afde512a7b4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__fact_redempt_51c7fc1af50a7eadeeae3afde512a7b4"}, "created_at": 1700082673.3589642, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__fact_redempt_51c7fc1af50a7eadeeae3afde512a7b4\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml/not_null_loyalty__fact_redempt_51c7fc1af50a7eadeeae3afde512a7b4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_redemptions_with_purchases_daily_snapshot where is_referred_redemption is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_referred_redemption", "file_key_name": "models.loyalty__fact_redemptions_with_purchases_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referring_redemption.1df06c91c6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_referring_redemption", "model": "{{ get_where_subquery(ref('loyalty__fact_redemptions_with_purchases_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referring_redemption", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_redempt_5d60ee92418d9fd4bab899687f844ba2.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referring_redemption.1df06c91c6", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_redemptions_with_purchases_daily_snapshot", "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referring_redemption"], "alias": "not_null_loyalty__fact_redempt_5d60ee92418d9fd4bab899687f844ba2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__fact_redempt_5d60ee92418d9fd4bab899687f844ba2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__fact_redempt_5d60ee92418d9fd4bab899687f844ba2"}, "created_at": 1700082673.3646195, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__fact_redempt_5d60ee92418d9fd4bab899687f844ba2\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml/not_null_loyalty__fact_redempt_5d60ee92418d9fd4bab899687f844ba2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_redemptions_with_purchases_daily_snapshot where is_referring_redemption is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_referring_redemption", "file_key_name": "models.loyalty__fact_redemptions_with_purchases_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_point_redemption_id.dc22cb3be8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "point_redemption_id", "model": "{{ get_where_subquery(ref('loyalty__fact_redemptions_with_purchases_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_point_redemption_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_redempt_a1cc50ce24e407b8f9a53c2dcd463946.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_point_redemption_id.dc22cb3be8", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_redemptions_with_purchases_daily_snapshot", "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_point_redemption_id"], "alias": "not_null_loyalty__fact_redempt_a1cc50ce24e407b8f9a53c2dcd463946", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__fact_redempt_a1cc50ce24e407b8f9a53c2dcd463946", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__fact_redempt_a1cc50ce24e407b8f9a53c2dcd463946"}, "created_at": 1700082673.3703647, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__fact_redempt_a1cc50ce24e407b8f9a53c2dcd463946\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml/not_null_loyalty__fact_redempt_a1cc50ce24e407b8f9a53c2dcd463946.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_redemptions_with_purchases_daily_snapshot where point_redemption_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "point_redemption_id", "file_key_name": "models.loyalty__fact_redemptions_with_purchases_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_merchant_id.35917319bf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('loyalty__fact_redemptions_with_purchases_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_redempt_fae18de9e39f1e4c883f773f721e9c6f.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_merchant_id.35917319bf", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_redemptions_with_purchases_daily_snapshot", "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_merchant_id"], "alias": "not_null_loyalty__fact_redempt_fae18de9e39f1e4c883f773f721e9c6f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__fact_redempt_fae18de9e39f1e4c883f773f721e9c6f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__fact_redempt_fae18de9e39f1e4c883f773f721e9c6f"}, "created_at": 1700082673.3778565, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__fact_redempt_fae18de9e39f1e4c883f773f721e9c6f\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml/not_null_loyalty__fact_redempt_fae18de9e39f1e4c883f773f721e9c6f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_redemptions_with_purchases_daily_snapshot where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.loyalty__fact_redemptions_with_purchases_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_purchase_id.410eaccfde": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "purchase_id", "model": "{{ get_where_subquery(ref('loyalty__fact_redemptions_with_purchases_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_purchase_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_redempt_014146115b23b371d9501b56db56e641.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_purchase_id.410eaccfde", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_redemptions_with_purchases_daily_snapshot", "not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_purchase_id"], "alias": "not_null_loyalty__fact_redempt_014146115b23b371d9501b56db56e641", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__fact_redempt_014146115b23b371d9501b56db56e641", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__fact_redempt_014146115b23b371d9501b56db56e641"}, "created_at": 1700082673.3834078, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__fact_redempt_014146115b23b371d9501b56db56e641\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.yml/not_null_loyalty__fact_redempt_014146115b23b371d9501b56db56e641.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_redemptions_with_purchases_daily_snapshot where purchase_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "purchase_id", "file_key_name": "models.loyalty__fact_redemptions_with_purchases_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"}, "test.yoda.unique_loyalty__fact_referral_receipts_daily_snapshot_id.a7e236019d": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_referral_receipts_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_referral_receipts_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_referral_receipts_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_referral_receipts_daily_snapshot_id.a7e236019d", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referral_receipts_daily_snapshot", "unique_loyalty__fact_referral_receipts_daily_snapshot_id"], "alias": "unique_loyalty__fact_referral_receipts_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.4204326, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_referral_receipts_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_referral_receipts_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.yml/unique_loyalty__fact_referral_receipts_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__fact_referral_receipts_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_referral_receipts_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_referral_receipts_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_referral_receipts_daily_snapshot_id.32e3efb79c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_referral_receipts_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_referral_receipts_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_referral_receipts_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_referral_receipts_daily_snapshot_id.32e3efb79c", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referral_receipts_daily_snapshot", "not_null_loyalty__fact_referral_receipts_daily_snapshot_id"], "alias": "not_null_loyalty__fact_referral_receipts_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.4256988, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_referral_receipts_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_referral_receipts_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.yml/not_null_loyalty__fact_referral_receipts_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_referral_receipts_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_referral_receipts_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_referral_receipts_daily_snapshot"}, "test.yoda.unique_loyalty__fact_referral_shares_daily_snapshot_id.765c3266ad": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_referral_shares_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_referral_shares_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_referral_shares_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_referral_shares_daily_snapshot_id.765c3266ad", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referral_shares_daily_snapshot", "unique_loyalty__fact_referral_shares_daily_snapshot_id"], "alias": "unique_loyalty__fact_referral_shares_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.4478114, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_referral_shares_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_referral_shares_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.yml/unique_loyalty__fact_referral_shares_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__fact_referral_shares_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_referral_shares_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_referral_shares_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_referral_shares_daily_snapshot_id.3ccd631bab": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_referral_shares_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_referral_shares_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_referral_shares_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_referral_shares_daily_snapshot_id.3ccd631bab", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referral_shares_daily_snapshot", "not_null_loyalty__fact_referral_shares_daily_snapshot_id"], "alias": "not_null_loyalty__fact_referral_shares_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.453144, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_referral_shares_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_referral_shares_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.yml/not_null_loyalty__fact_referral_shares_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_referral_shares_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_referral_shares_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_referral_shares_daily_snapshot"}, "test.yoda.unique_loyalty__fact_referral_snapshots_daily_snapshot_id.19cf311d69": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_referral_snapshots_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_referral_snapshots_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_referral_snapshots_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_referral_snapshots_daily_snapshot_id.19cf311d69", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referral_snapshots_daily_snapshot", "unique_loyalty__fact_referral_snapshots_daily_snapshot_id"], "alias": "unique_loyalty__fact_referral_snapshots_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.472535, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_referral_snapshots_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_referral_snapshots_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.yml/unique_loyalty__fact_referral_snapshots_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__fact_referral_snapshots_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_referral_snapshots_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_referral_snapshots_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_referral_snapshots_daily_snapshot_id.3cde9224ff": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_referral_snapshots_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_referral_snapshots_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_referral_snapshots_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_referral_snapshots_daily_snapshot_id.3cde9224ff", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referral_snapshots_daily_snapshot", "not_null_loyalty__fact_referral_snapshots_daily_snapshot_id"], "alias": "not_null_loyalty__fact_referral_snapshots_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.47826, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_referral_snapshots_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_referral_snapshots_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.yml/not_null_loyalty__fact_referral_snapshots_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_referral_snapshots_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_referral_snapshots_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_referral_snapshots_daily_snapshot"}, "test.yoda.unique_loyalty__fact_referrals_without_crawlers_daily_snapshot_id.5afe5a429c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_referrals_without_crawlers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_referrals_without_crawlers_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_referrals_9dd431c5427927e520722f046381157e.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_referrals_without_crawlers_daily_snapshot_id.5afe5a429c", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referrals_without_crawlers_daily_snapshot", "unique_loyalty__fact_referrals_without_crawlers_daily_snapshot_id"], "alias": "unique_loyalty__fact_referrals_9dd431c5427927e520722f046381157e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_loyalty__fact_referrals_9dd431c5427927e520722f046381157e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_loyalty__fact_referrals_9dd431c5427927e520722f046381157e"}, "created_at": 1700082673.5083747, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_loyalty__fact_referrals_9dd431c5427927e520722f046381157e\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.yml/unique_loyalty__fact_referrals_9dd431c5427927e520722f046381157e.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__fact_referrals_without_crawlers_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_referrals_without_crawlers_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_referrals_without_crawlers_daily_snapshot_id.188a4f7623": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_referrals_without_crawlers_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_referrals_without_crawlers_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_referra_37030c240e799c47b6887c073ce63026.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_referrals_without_crawlers_daily_snapshot_id.188a4f7623", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_referrals_without_crawlers_daily_snapshot", "not_null_loyalty__fact_referrals_without_crawlers_daily_snapshot_id"], "alias": "not_null_loyalty__fact_referra_37030c240e799c47b6887c073ce63026", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_loyalty__fact_referra_37030c240e799c47b6887c073ce63026", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_loyalty__fact_referra_37030c240e799c47b6887c073ce63026"}, "created_at": 1700082673.514287, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_loyalty__fact_referra_37030c240e799c47b6887c073ce63026\") }}", "language": "sql", "refs": [{"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.yml/not_null_loyalty__fact_referra_37030c240e799c47b6887c073ce63026.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_referrals_without_crawlers_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_referrals_without_crawlers_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot"}, "test.yoda.unique_loyalty__fact_refund_items_daily_snapshot_id.62033e081f": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_refund_items_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_refund_items_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_refund_items_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_refund_items_daily_snapshot_id.62033e081f", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_refund_items_daily_snapshot", "unique_loyalty__fact_refund_items_daily_snapshot_id"], "alias": "unique_loyalty__fact_refund_items_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.5334408, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_refund_items_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_refund_items_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.yml/unique_loyalty__fact_refund_items_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__fact_refund_items_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_refund_items_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_refund_items_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_refund_items_daily_snapshot_id.ab670fba71": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_refund_items_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_refund_items_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_refund_items_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_refund_items_daily_snapshot_id.ab670fba71", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_refund_items_daily_snapshot", "not_null_loyalty__fact_refund_items_daily_snapshot_id"], "alias": "not_null_loyalty__fact_refund_items_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.540355, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_refund_items_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_refund_items_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.yml/not_null_loyalty__fact_refund_items_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_refund_items_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_refund_items_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_refund_items_daily_snapshot"}, "test.yoda.unique_loyalty__fact_refunds_daily_snapshot_refund_id.d54f16a3a2": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "refund_id", "model": "{{ get_where_subquery(ref('loyalty__fact_refunds_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_refunds_daily_snapshot_refund_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_refunds_daily_snapshot_refund_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_refunds_daily_snapshot_refund_id.d54f16a3a2", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_refunds_daily_snapshot", "unique_loyalty__fact_refunds_daily_snapshot_refund_id"], "alias": "unique_loyalty__fact_refunds_daily_snapshot_refund_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.5616684, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_refunds_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_refunds_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.yml/unique_loyalty__fact_refunds_daily_snapshot_refund_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select refund_id from dev_dkruh1.loyalty__fact_refunds_daily_snapshot where refund_id is not null group by refund_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "refund_id", "file_key_name": "models.loyalty__fact_refunds_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_refunds_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_refunds_daily_snapshot_refund_id.8b29aa083d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "refund_id", "model": "{{ get_where_subquery(ref('loyalty__fact_refunds_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_refunds_daily_snapshot_refund_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_refunds_daily_snapshot_refund_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_refunds_daily_snapshot_refund_id.8b29aa083d", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_refunds_daily_snapshot", "not_null_loyalty__fact_refunds_daily_snapshot_refund_id"], "alias": "not_null_loyalty__fact_refunds_daily_snapshot_refund_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.567153, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_refunds_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_refunds_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.yml/not_null_loyalty__fact_refunds_daily_snapshot_refund_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_refunds_daily_snapshot where refund_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "refund_id", "file_key_name": "models.loyalty__fact_refunds_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_refunds_daily_snapshot"}, "test.yoda.unique_loyalty__fact_user_actions_daily_snapshot_id.bab085d102": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_user_actions_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_user_actions_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_user_actions_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_user_actions_daily_snapshot_id.bab085d102", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_user_actions_daily_snapshot", "unique_loyalty__fact_user_actions_daily_snapshot_id"], "alias": "unique_loyalty__fact_user_actions_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.5854228, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_user_actions_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_user_actions_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.yml/unique_loyalty__fact_user_actions_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__fact_user_actions_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_user_actions_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_user_actions_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_user_actions_daily_snapshot_id.45a03e2bdf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_user_actions_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_user_actions_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_user_actions_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_user_actions_daily_snapshot_id.45a03e2bdf", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_user_actions_daily_snapshot", "not_null_loyalty__fact_user_actions_daily_snapshot_id"], "alias": "not_null_loyalty__fact_user_actions_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.5904877, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_user_actions_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_user_actions_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.yml/not_null_loyalty__fact_user_actions_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_user_actions_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_user_actions_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_user_actions_daily_snapshot"}, "test.yoda.unique_loyalty__fact_user_agents_daily_snapshot_id.4c7c23bd57": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_user_agents_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__fact_user_agents_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__fact_user_agents_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.yml", "unique_id": "test.yoda.unique_loyalty__fact_user_agents_daily_snapshot_id.4c7c23bd57", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_user_agents_daily_snapshot", "unique_loyalty__fact_user_agents_daily_snapshot_id"], "alias": "unique_loyalty__fact_user_agents_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.610348, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_user_agents_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_user_agents_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.yml/unique_loyalty__fact_user_agents_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__fact_user_agents_daily_snapshot where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_user_agents_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_user_agents_daily_snapshot"}, "test.yoda.not_null_loyalty__fact_user_agents_daily_snapshot_id.d41feb0cd1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__fact_user_agents_daily_snapshot')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__fact_user_agents_daily_snapshot_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__fact_user_agents_daily_snapshot_id.sql", "original_file_path": "models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.yml", "unique_id": "test.yoda.not_null_loyalty__fact_user_agents_daily_snapshot_id.d41feb0cd1", "fqn": ["yoda", "loyalty", "marts", "loyalty__fact_user_agents_daily_snapshot", "not_null_loyalty__fact_user_agents_daily_snapshot_id"], "alias": "not_null_loyalty__fact_user_agents_daily_snapshot_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.6158369, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__fact_user_agents_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__fact_user_agents_daily_snapshot"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.yml/not_null_loyalty__fact_user_agents_daily_snapshot_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__fact_user_agents_daily_snapshot where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__fact_user_agents_daily_snapshot", "attached_node": "model.yoda.loyalty__fact_user_agents_daily_snapshot"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__merchant_point_transaction_metrics_daily_1.d76ac8b5bf": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty__merchant_point_transaction_metrics_daily')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_loyalty__merchant_point_transaction_metrics_daily_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__972cf3b07a63463761b4f8f554c477d7.sql", "original_file_path": "models/loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__merchant_point_transaction_metrics_daily_1.d76ac8b5bf", "fqn": ["yoda", "loyalty", "marts", "loyalty__merchant_point_transaction_metrics_daily", "dbt_expectations_expect_table_row_count_to_be_between_loyalty__merchant_point_transaction_metrics_daily_1"], "alias": "dbt_expectations_expect_table__972cf3b07a63463761b4f8f554c477d7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__972cf3b07a63463761b4f8f554c477d7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__972cf3b07a63463761b4f8f554c477d7"}, "created_at": 1700082673.6405401, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__972cf3b07a63463761b4f8f554c477d7\") }}", "language": "sql", "refs": [{"name": "loyalty__merchant_point_transaction_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__merchant_point_transaction_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.yml/dbt_expectations_expect_table__972cf3b07a63463761b4f8f554c477d7.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.loyalty__merchant_point_transaction_metrics_daily\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__merchant_point_transaction_metrics_daily", "attached_node": "model.yoda.loyalty__merchant_point_transaction_metrics_daily"}, "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__merchant_point_transaction_metrics_daily_merchant_group_id__date.20ced22582": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["merchant_group_id", "date"], "model": "{{ get_where_subquery(ref('loyalty__merchant_point_transaction_metrics_daily')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_loyalty__merchant_point_transaction_metrics_daily_merchant_group_id__date", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_d3a8e03c7023abdb5a7e2ec47674d825.sql", "original_file_path": "models/loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__merchant_point_transaction_metrics_daily_merchant_group_id__date.20ced22582", "fqn": ["yoda", "loyalty", "marts", "loyalty__merchant_point_transaction_metrics_daily", "dbt_utils_unique_combination_of_columns_loyalty__merchant_point_transaction_metrics_daily_merchant_group_id__date"], "alias": "dbt_utils_unique_combination_o_d3a8e03c7023abdb5a7e2ec47674d825", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_d3a8e03c7023abdb5a7e2ec47674d825", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_d3a8e03c7023abdb5a7e2ec47674d825"}, "created_at": 1700082673.6497371, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_d3a8e03c7023abdb5a7e2ec47674d825\") }}", "language": "sql", "refs": [{"name": "loyalty__merchant_point_transaction_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__merchant_point_transaction_metrics_daily"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.yml/dbt_utils_unique_combination_o_d3a8e03c7023abdb5a7e2ec47674d825.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n merchant_group_id, date\n from dev_dkruh1.loyalty__merchant_point_transaction_metrics_daily\n group by merchant_group_id, date\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__merchant_point_transaction_metrics_daily", "attached_node": "model.yoda.loyalty__merchant_point_transaction_metrics_daily"}, "test.yoda.not_null_loyalty__opted_in_customers_customer_id.5eaf19e71e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('loyalty__opted_in_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__opted_in_customers_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__opted_in_customers_customer_id.sql", "original_file_path": "models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.yml", "unique_id": "test.yoda.not_null_loyalty__opted_in_customers_customer_id.5eaf19e71e", "fqn": ["yoda", "loyalty", "marts", "loyalty__opted_in_customers", "not_null_loyalty__opted_in_customers_customer_id"], "alias": "not_null_loyalty__opted_in_customers_customer_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.6699047, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__opted_in_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__opted_in_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.yml/not_null_loyalty__opted_in_customers_customer_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__opted_in_customers where customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.loyalty__opted_in_customers", "attached_node": "model.yoda.loyalty__opted_in_customers"}, "test.yoda.not_null_loyalty__opted_in_customers_app_key.c844344118": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('loyalty__opted_in_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__opted_in_customers_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__opted_in_customers_app_key.sql", "original_file_path": "models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.yml", "unique_id": "test.yoda.not_null_loyalty__opted_in_customers_app_key.c844344118", "fqn": ["yoda", "loyalty", "marts", "loyalty__opted_in_customers", "not_null_loyalty__opted_in_customers_app_key"], "alias": "not_null_loyalty__opted_in_customers_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.6752193, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__opted_in_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__opted_in_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.yml/not_null_loyalty__opted_in_customers_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__opted_in_customers where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.loyalty__opted_in_customers", "attached_node": "model.yoda.loyalty__opted_in_customers"}, "test.yoda.not_null_loyalty__opted_in_customers_opted_in_at.7861355d0d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opted_in_at", "model": "{{ get_where_subquery(ref('loyalty__opted_in_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__opted_in_customers_opted_in_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__opted_in_customers_opted_in_at.sql", "original_file_path": "models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.yml", "unique_id": "test.yoda.not_null_loyalty__opted_in_customers_opted_in_at.7861355d0d", "fqn": ["yoda", "loyalty", "marts", "loyalty__opted_in_customers", "not_null_loyalty__opted_in_customers_opted_in_at"], "alias": "not_null_loyalty__opted_in_customers_opted_in_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.6802402, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__opted_in_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__opted_in_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.yml/not_null_loyalty__opted_in_customers_opted_in_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__opted_in_customers where opted_in_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opted_in_at", "file_key_name": "models.loyalty__opted_in_customers", "attached_node": "model.yoda.loyalty__opted_in_customers"}, "test.yoda.not_null_loyalty__opted_in_customers_customer_email.ba061c0fa1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_email", "model": "{{ get_where_subquery(ref('loyalty__opted_in_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__opted_in_customers_customer_email", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__opted_in_customers_customer_email.sql", "original_file_path": "models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.yml", "unique_id": "test.yoda.not_null_loyalty__opted_in_customers_customer_email.ba061c0fa1", "fqn": ["yoda", "loyalty", "marts", "loyalty__opted_in_customers", "not_null_loyalty__opted_in_customers_customer_email"], "alias": "not_null_loyalty__opted_in_customers_customer_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.6855447, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__opted_in_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__opted_in_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.yml/not_null_loyalty__opted_in_customers_customer_email.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__opted_in_customers where customer_email is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_email", "file_key_name": "models.loyalty__opted_in_customers", "attached_node": "model.yoda.loyalty__opted_in_customers"}, "test.yoda.not_null_loyalty__redeemed_purchases_app_key.43d0e57a64": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('loyalty__redeemed_purchases')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__redeemed_purchases_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__redeemed_purchases_app_key.sql", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.yml", "unique_id": "test.yoda.not_null_loyalty__redeemed_purchases_app_key.43d0e57a64", "fqn": ["yoda", "loyalty", "marts", "loyalty__redeemed_purchases", "not_null_loyalty__redeemed_purchases_app_key"], "alias": "not_null_loyalty__redeemed_purchases_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.7283878, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__redeemed_purchases", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__redeemed_purchases"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.yml/not_null_loyalty__redeemed_purchases_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__redeemed_purchases where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.loyalty__redeemed_purchases", "attached_node": "model.yoda.loyalty__redeemed_purchases"}, "test.yoda.not_null_loyalty__redeemed_purchases_order_total.1afd9cd992": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_total", "model": "{{ get_where_subquery(ref('loyalty__redeemed_purchases')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__redeemed_purchases_order_total", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__redeemed_purchases_order_total.sql", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.yml", "unique_id": "test.yoda.not_null_loyalty__redeemed_purchases_order_total.1afd9cd992", "fqn": ["yoda", "loyalty", "marts", "loyalty__redeemed_purchases", "not_null_loyalty__redeemed_purchases_order_total"], "alias": "not_null_loyalty__redeemed_purchases_order_total", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.7347987, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__redeemed_purchases", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__redeemed_purchases"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.yml/not_null_loyalty__redeemed_purchases_order_total.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__redeemed_purchases where order_total is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_total", "file_key_name": "models.loyalty__redeemed_purchases", "attached_node": "model.yoda.loyalty__redeemed_purchases"}, "test.yoda.not_null_loyalty__redeemed_purchases_external_order_id.acfce1b606": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_order_id", "model": "{{ get_where_subquery(ref('loyalty__redeemed_purchases')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__redeemed_purchases_external_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__redeemed_purchases_external_order_id.sql", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.yml", "unique_id": "test.yoda.not_null_loyalty__redeemed_purchases_external_order_id.acfce1b606", "fqn": ["yoda", "loyalty", "marts", "loyalty__redeemed_purchases", "not_null_loyalty__redeemed_purchases_external_order_id"], "alias": "not_null_loyalty__redeemed_purchases_external_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.750644, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__redeemed_purchases", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__redeemed_purchases"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.yml/not_null_loyalty__redeemed_purchases_external_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__redeemed_purchases where external_order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_order_id", "file_key_name": "models.loyalty__redeemed_purchases", "attached_node": "model.yoda.loyalty__redeemed_purchases"}, "test.yoda.not_null_loyalty__redeemed_purchases_order_date.f16d5b66b4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_date", "model": "{{ get_where_subquery(ref('loyalty__redeemed_purchases')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty__redeemed_purchases_order_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty__redeemed_purchases_order_date.sql", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.yml", "unique_id": "test.yoda.not_null_loyalty__redeemed_purchases_order_date.f16d5b66b4", "fqn": ["yoda", "loyalty", "marts", "loyalty__redeemed_purchases", "not_null_loyalty__redeemed_purchases_order_date"], "alias": "not_null_loyalty__redeemed_purchases_order_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082673.757293, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__redeemed_purchases", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__redeemed_purchases"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.yml/not_null_loyalty__redeemed_purchases_order_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty__redeemed_purchases where order_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_date", "file_key_name": "models.loyalty__redeemed_purchases", "attached_node": "model.yoda.loyalty__redeemed_purchases"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__redeemed_purchases_1.bd19437612": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty__redeemed_purchases')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_loyalty__redeemed_purchases_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f7e8adce5a606ec4f9931df06d58a6b0.sql", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__redeemed_purchases_1.bd19437612", "fqn": ["yoda", "loyalty", "marts", "loyalty__redeemed_purchases", "dbt_expectations_expect_table_row_count_to_be_between_loyalty__redeemed_purchases_1"], "alias": "dbt_expectations_expect_table__f7e8adce5a606ec4f9931df06d58a6b0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f7e8adce5a606ec4f9931df06d58a6b0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f7e8adce5a606ec4f9931df06d58a6b0"}, "created_at": 1700082673.7642496, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f7e8adce5a606ec4f9931df06d58a6b0\") }}", "language": "sql", "refs": [{"name": "loyalty__redeemed_purchases", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__redeemed_purchases"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.yml/dbt_expectations_expect_table__f7e8adce5a606ec4f9931df06d58a6b0.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.loyalty__redeemed_purchases\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__redeemed_purchases", "attached_node": "model.yoda.loyalty__redeemed_purchases"}, "test.yoda.unique_loyalty__review_earning_rule_loyalty_id.d82f8ca7f5": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__review_earning_rule_loyalty')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__review_earning_rule_loyalty_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__review_earning_rule_loyalty_id.sql", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.yml", "unique_id": "test.yoda.unique_loyalty__review_earning_rule_loyalty_id.d82f8ca7f5", "fqn": ["yoda", "loyalty", "marts", "loyalty__review_earning_rule_loyalty", "unique_loyalty__review_earning_rule_loyalty_id"], "alias": "unique_loyalty__review_earning_rule_loyalty_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.8249545, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__review_earning_rule_loyalty", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__review_earning_rule_loyalty"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.yml/unique_loyalty__review_earning_rule_loyalty_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__review_earning_rule_loyalty where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__review_earning_rule_loyalty", "attached_node": "model.yoda.loyalty__review_earning_rule_loyalty"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__review_earning_rule_loyalty_1.bee3f0ab25": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty__review_earning_rule_loyalty')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_loyalty__review_earning_rule_loyalty_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__b93c9aae55b2d701ff608f29478fb3c4.sql", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__review_earning_rule_loyalty_1.bee3f0ab25", "fqn": ["yoda", "loyalty", "marts", "loyalty__review_earning_rule_loyalty", "dbt_expectations_expect_table_row_count_to_be_between_loyalty__review_earning_rule_loyalty_1"], "alias": "dbt_expectations_expect_table__b93c9aae55b2d701ff608f29478fb3c4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__b93c9aae55b2d701ff608f29478fb3c4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__b93c9aae55b2d701ff608f29478fb3c4"}, "created_at": 1700082673.8319783, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__b93c9aae55b2d701ff608f29478fb3c4\") }}", "language": "sql", "refs": [{"name": "loyalty__review_earning_rule_loyalty", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__review_earning_rule_loyalty"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.yml/dbt_expectations_expect_table__b93c9aae55b2d701ff608f29478fb3c4.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.loyalty__review_earning_rule_loyalty\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__review_earning_rule_loyalty", "attached_node": "model.yoda.loyalty__review_earning_rule_loyalty"}, "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__review_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.38227a0364": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('loyalty__review_earning_rule_loyalty')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_loyalty__review_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_13f17671ca898e7d3fbf7c01aa623813.sql", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__review_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.38227a0364", "fqn": ["yoda", "loyalty", "marts", "loyalty__review_earning_rule_loyalty", "dbt_utils_unique_combination_of_columns_loyalty__review_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_13f17671ca898e7d3fbf7c01aa623813", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_13f17671ca898e7d3fbf7c01aa623813", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_13f17671ca898e7d3fbf7c01aa623813"}, "created_at": 1700082673.838172, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_13f17671ca898e7d3fbf7c01aa623813\") }}", "language": "sql", "refs": [{"name": "loyalty__review_earning_rule_loyalty", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__review_earning_rule_loyalty"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.yml/dbt_utils_unique_combination_o_13f17671ca898e7d3fbf7c01aa623813.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.loyalty__review_earning_rule_loyalty\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__review_earning_rule_loyalty", "attached_node": "model.yoda.loyalty__review_earning_rule_loyalty"}, "test.yoda.unique_loyalty__sms_earning_rule_loyalty_id.087d42e8f9": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty__sms_earning_rule_loyalty')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty__sms_earning_rule_loyalty_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty__sms_earning_rule_loyalty_id.sql", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.yml", "unique_id": "test.yoda.unique_loyalty__sms_earning_rule_loyalty_id.087d42e8f9", "fqn": ["yoda", "loyalty", "marts", "loyalty__sms_earning_rule_loyalty", "unique_loyalty__sms_earning_rule_loyalty_id"], "alias": "unique_loyalty__sms_earning_rule_loyalty_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082673.8674412, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty__sms_earning_rule_loyalty", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__sms_earning_rule_loyalty"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.yml/unique_loyalty__sms_earning_rule_loyalty_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty__sms_earning_rule_loyalty where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty__sms_earning_rule_loyalty", "attached_node": "model.yoda.loyalty__sms_earning_rule_loyalty"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__sms_earning_rule_loyalty_1.13bc516ed5": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty__sms_earning_rule_loyalty')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_loyalty__sms_earning_rule_loyalty_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d2187fdd18abe3b740990076e7cd4cd6.sql", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__sms_earning_rule_loyalty_1.13bc516ed5", "fqn": ["yoda", "loyalty", "marts", "loyalty__sms_earning_rule_loyalty", "dbt_expectations_expect_table_row_count_to_be_between_loyalty__sms_earning_rule_loyalty_1"], "alias": "dbt_expectations_expect_table__d2187fdd18abe3b740990076e7cd4cd6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d2187fdd18abe3b740990076e7cd4cd6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d2187fdd18abe3b740990076e7cd4cd6"}, "created_at": 1700082673.8727798, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d2187fdd18abe3b740990076e7cd4cd6\") }}", "language": "sql", "refs": [{"name": "loyalty__sms_earning_rule_loyalty", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__sms_earning_rule_loyalty"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.yml/dbt_expectations_expect_table__d2187fdd18abe3b740990076e7cd4cd6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.loyalty__sms_earning_rule_loyalty\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__sms_earning_rule_loyalty", "attached_node": "model.yoda.loyalty__sms_earning_rule_loyalty"}, "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__sms_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.28b1c71f7d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('loyalty__sms_earning_rule_loyalty')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_loyalty__sms_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_bde9e4ae7f45314b2d019639dfd3aa12.sql", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__sms_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.28b1c71f7d", "fqn": ["yoda", "loyalty", "marts", "loyalty__sms_earning_rule_loyalty", "dbt_utils_unique_combination_of_columns_loyalty__sms_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_bde9e4ae7f45314b2d019639dfd3aa12", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_bde9e4ae7f45314b2d019639dfd3aa12", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_bde9e4ae7f45314b2d019639dfd3aa12"}, "created_at": 1700082673.8796332, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_bde9e4ae7f45314b2d019639dfd3aa12\") }}", "language": "sql", "refs": [{"name": "loyalty__sms_earning_rule_loyalty", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__sms_earning_rule_loyalty"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.yml/dbt_utils_unique_combination_o_bde9e4ae7f45314b2d019639dfd3aa12.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.loyalty__sms_earning_rule_loyalty\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__sms_earning_rule_loyalty", "attached_node": "model.yoda.loyalty__sms_earning_rule_loyalty"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__tier_expiring_reminder_kpi_1.2d41c2d9e8": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty__tier_expiring_reminder_kpi')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_loyalty__tier_expiring_reminder_kpi_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ea0484efbed39d29b58aed532405add1.sql", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__tier_expiring_reminder_kpi_1.2d41c2d9e8", "fqn": ["yoda", "loyalty", "marts", "loyalty__tier_expiring_reminder_kpi", "dbt_expectations_expect_table_row_count_to_be_between_loyalty__tier_expiring_reminder_kpi_1"], "alias": "dbt_expectations_expect_table__ea0484efbed39d29b58aed532405add1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ea0484efbed39d29b58aed532405add1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ea0484efbed39d29b58aed532405add1"}, "created_at": 1700082674.6679025, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ea0484efbed39d29b58aed532405add1\") }}", "language": "sql", "refs": [{"name": "loyalty__tier_expiring_reminder_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__tier_expiring_reminder_kpi"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.yml/dbt_expectations_expect_table__ea0484efbed39d29b58aed532405add1.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.loyalty__tier_expiring_reminder_kpi\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__tier_expiring_reminder_kpi", "attached_node": "model.yoda.loyalty__tier_expiring_reminder_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__tier_expiring_reminder_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.47422e4c3e": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('loyalty__tier_expiring_reminder_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_loyalty__tier_expiring_reminder_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_698624b8de809beff46dde8a2dfe4e9a.sql", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__tier_expiring_reminder_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.47422e4c3e", "fqn": ["yoda", "loyalty", "marts", "loyalty__tier_expiring_reminder_kpi", "dbt_utils_unique_combination_of_columns_loyalty__tier_expiring_reminder_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_698624b8de809beff46dde8a2dfe4e9a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_698624b8de809beff46dde8a2dfe4e9a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_698624b8de809beff46dde8a2dfe4e9a"}, "created_at": 1700082674.6739287, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_698624b8de809beff46dde8a2dfe4e9a\") }}", "language": "sql", "refs": [{"name": "loyalty__tier_expiring_reminder_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty__tier_expiring_reminder_kpi"]}, "compiled_path": "target/compiled/yoda/models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.yml/dbt_utils_unique_combination_o_698624b8de809beff46dde8a2dfe4e9a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.loyalty__tier_expiring_reminder_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty__tier_expiring_reminder_kpi", "attached_node": "model.yoda.loyalty__tier_expiring_reminder_kpi"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__campaign_activation_histories_1.da00fb269f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty_stg__campaign_activation_histories')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__campaign_activation_histories_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__233788c3fd35b2bb6a3db7295947e62b.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__campaign_activation_histories_1.da00fb269f", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__campaign_activation_histories", "dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__campaign_activation_histories_1"], "alias": "dbt_expectations_expect_table__233788c3fd35b2bb6a3db7295947e62b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__233788c3fd35b2bb6a3db7295947e62b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__233788c3fd35b2bb6a3db7295947e62b"}, "created_at": 1700082675.7402716, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__233788c3fd35b2bb6a3db7295947e62b\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__campaign_activation_histories", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__campaign_activation_histories"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.yml/dbt_expectations_expect_table__233788c3fd35b2bb6a3db7295947e62b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.loyalty_stg__campaign_activation_histories\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty_stg__campaign_activation_histories", "attached_node": "model.yoda.loyalty_stg__campaign_activation_histories"}, "test.yoda.dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__campaigns_1.79895b6923": {"test_metadata": {"name": "expect_table_column_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty_stg__campaigns')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__campaigns_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__769154db89d5f2e864f1588b82020304.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__campaigns_1.79895b6923", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__campaigns", "dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__campaigns_1"], "alias": "dbt_expectations_expect_table__769154db89d5f2e864f1588b82020304", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__769154db89d5f2e864f1588b82020304", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__769154db89d5f2e864f1588b82020304"}, "created_at": 1700082675.8322635, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_column_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__769154db89d5f2e864f1588b82020304\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_column_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__campaigns"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.yml/dbt_expectations_expect_table__769154db89d5f2e864f1588b82020304.sql", "compiled": true, "compiled_code": "with test_data as (\n\n select\n 100 as number_actual_columns,\n 1 as min_value,\n 0 as max_value\n\n)\nselect *\nfrom test_data\nwhere\n not \n( 1=1 and number_actual_columns >= min_value\n)\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty_stg__campaigns", "attached_node": "model.yoda.loyalty_stg__campaigns"}, "test.yoda.unique_loyalty_stg__customers_platform_accounts_customer_id.40a87706ce": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('loyalty_stg__customers_platform_accounts')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty_stg__customers_platform_accounts_customer_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty_stg__customers_platform_accounts_customer_id.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.yml", "unique_id": "test.yoda.unique_loyalty_stg__customers_platform_accounts_customer_id.40a87706ce", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__customers_platform_accounts", "unique_loyalty_stg__customers_platform_accounts_customer_id"], "alias": "unique_loyalty_stg__customers_platform_accounts_customer_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082675.9831867, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__customers_platform_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__customers_platform_accounts"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.yml/unique_loyalty_stg__customers_platform_accounts_customer_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select customer_id from dev_dkruh1.loyalty_stg__customers_platform_accounts where customer_id is not null group by customer_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.loyalty_stg__customers_platform_accounts", "attached_node": "model.yoda.loyalty_stg__customers_platform_accounts"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_updated_at.f35e0ec669": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_updated_at.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_updated_at.f35e0ec669", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_updated_at"], "alias": "not_null_loyalty_stg__email_campaign_emails_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.066612, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_created_at.3f23aae44e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_created_at.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_created_at.3f23aae44e", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_created_at"], "alias": "not_null_loyalty_stg__email_campaign_emails_created_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.072333, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_created_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_bounced.5a936b2be4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "bounced", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_bounced", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_bounced.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_bounced.5a936b2be4", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_bounced"], "alias": "not_null_loyalty_stg__email_campaign_emails_bounced", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.0776954, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_bounced.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where bounced is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "bounced", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_bounced__False__True__False.53b68d6d71": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [true, false], "quote": false, "column_name": "bounced", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_loyalty_stg__email_campaign_emails_bounced__False__True__False", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_loyalty_stg__e_55d07e034e0366079bcd0f8e07f92056.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_bounced__False__True__False.53b68d6d71", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "accepted_values_loyalty_stg__email_campaign_emails_bounced__False__True__False"], "alias": "accepted_values_loyalty_stg__e_55d07e034e0366079bcd0f8e07f92056", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_loyalty_stg__e_55d07e034e0366079bcd0f8e07f92056", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_loyalty_stg__e_55d07e034e0366079bcd0f8e07f92056"}, "created_at": 1700082676.0832474, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_loyalty_stg__e_55d07e034e0366079bcd0f8e07f92056\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/accepted_values_loyalty_stg__e_55d07e034e0366079bcd0f8e07f92056.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n bounced as value_field,\n count(*) as n_records\n\n from dev_dkruh1.loyalty_stg__email_campaign_emails\n group by bounced\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n True,False\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "bounced", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_clicked.adee51924d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "clicked", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_clicked", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_clicked.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_clicked.adee51924d", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_clicked"], "alias": "not_null_loyalty_stg__email_campaign_emails_clicked", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.0904236, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_clicked.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where clicked is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "clicked", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_clicked__False__True__False.d219dd168d": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [true, false], "quote": false, "column_name": "clicked", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_loyalty_stg__email_campaign_emails_clicked__False__True__False", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_loyalty_stg__e_d950bd150f2d93d75fae7f434cf6713b.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_clicked__False__True__False.d219dd168d", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "accepted_values_loyalty_stg__email_campaign_emails_clicked__False__True__False"], "alias": "accepted_values_loyalty_stg__e_d950bd150f2d93d75fae7f434cf6713b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_loyalty_stg__e_d950bd150f2d93d75fae7f434cf6713b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_loyalty_stg__e_d950bd150f2d93d75fae7f434cf6713b"}, "created_at": 1700082676.0958722, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_loyalty_stg__e_d950bd150f2d93d75fae7f434cf6713b\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/accepted_values_loyalty_stg__e_d950bd150f2d93d75fae7f434cf6713b.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n clicked as value_field,\n count(*) as n_records\n\n from dev_dkruh1.loyalty_stg__email_campaign_emails\n group by clicked\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n True,False\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "clicked", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_delayed.354349f78e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "delayed", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_delayed", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_delayed.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_delayed.354349f78e", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_delayed"], "alias": "not_null_loyalty_stg__email_campaign_emails_delayed", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.1019313, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_delayed.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where delayed is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "delayed", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_delayed__False__True__False.09b50c8038": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [true, false], "quote": false, "column_name": "delayed", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_loyalty_stg__email_campaign_emails_delayed__False__True__False", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_loyalty_stg__e_492791d73189cde1d0d3301099383407.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_delayed__False__True__False.09b50c8038", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "accepted_values_loyalty_stg__email_campaign_emails_delayed__False__True__False"], "alias": "accepted_values_loyalty_stg__e_492791d73189cde1d0d3301099383407", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_loyalty_stg__e_492791d73189cde1d0d3301099383407", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_loyalty_stg__e_492791d73189cde1d0d3301099383407"}, "created_at": 1700082676.1074536, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_loyalty_stg__e_492791d73189cde1d0d3301099383407\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/accepted_values_loyalty_stg__e_492791d73189cde1d0d3301099383407.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n delayed as value_field,\n count(*) as n_records\n\n from dev_dkruh1.loyalty_stg__email_campaign_emails\n group by delayed\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n True,False\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "delayed", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_email_campaign_id.fafdb8a303": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "email_campaign_id", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_email_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_email_campaign_id.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_email_campaign_id.fafdb8a303", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_email_campaign_id"], "alias": "not_null_loyalty_stg__email_campaign_emails_email_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.113444, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_email_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where email_campaign_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email_campaign_id", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_id.41eb3b382f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_id.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_id.41eb3b382f", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_id"], "alias": "not_null_loyalty_stg__email_campaign_emails_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.1186562, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.unique_loyalty_stg__email_campaign_emails_id.bbc907fb95": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty_stg__email_campaign_emails_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty_stg__email_campaign_emails_id.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.unique_loyalty_stg__email_campaign_emails_id.bbc907fb95", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "unique_loyalty_stg__email_campaign_emails_id"], "alias": "unique_loyalty_stg__email_campaign_emails_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082676.1239183, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/unique_loyalty_stg__email_campaign_emails_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.loyalty_stg__email_campaign_emails where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_marked_as_spam.5516734a3b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "marked_as_spam", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_marked_as_spam", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_marked_as_spam.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_marked_as_spam.5516734a3b", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_marked_as_spam"], "alias": "not_null_loyalty_stg__email_campaign_emails_marked_as_spam", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.1294198, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_marked_as_spam.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where marked_as_spam is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "marked_as_spam", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_marked_as_spam__False__True__False.294df5cbf2": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [true, false], "quote": false, "column_name": "marked_as_spam", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_loyalty_stg__email_campaign_emails_marked_as_spam__False__True__False", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_loyalty_stg__e_3af27b52121e62570bb462e5f07a30d0.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_marked_as_spam__False__True__False.294df5cbf2", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "accepted_values_loyalty_stg__email_campaign_emails_marked_as_spam__False__True__False"], "alias": "accepted_values_loyalty_stg__e_3af27b52121e62570bb462e5f07a30d0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_loyalty_stg__e_3af27b52121e62570bb462e5f07a30d0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_loyalty_stg__e_3af27b52121e62570bb462e5f07a30d0"}, "created_at": 1700082676.1346705, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_loyalty_stg__e_3af27b52121e62570bb462e5f07a30d0\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/accepted_values_loyalty_stg__e_3af27b52121e62570bb462e5f07a30d0.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n marked_as_spam as value_field,\n count(*) as n_records\n\n from dev_dkruh1.loyalty_stg__email_campaign_emails\n group by marked_as_spam\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n True,False\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "marked_as_spam", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_opened.a5f55ca146": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "opened", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_opened", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_opened.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_opened.a5f55ca146", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_opened"], "alias": "not_null_loyalty_stg__email_campaign_emails_opened", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.1407733, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_opened.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where opened is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opened", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_opened__False__True__False.40621c7d0f": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [true, false], "quote": false, "column_name": "opened", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_loyalty_stg__email_campaign_emails_opened__False__True__False", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_loyalty_stg__e_ab221b42825faead9334c97663c51455.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_opened__False__True__False.40621c7d0f", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "accepted_values_loyalty_stg__email_campaign_emails_opened__False__True__False"], "alias": "accepted_values_loyalty_stg__e_ab221b42825faead9334c97663c51455", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_loyalty_stg__e_ab221b42825faead9334c97663c51455", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_loyalty_stg__e_ab221b42825faead9334c97663c51455"}, "created_at": 1700082676.1460876, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_loyalty_stg__e_ab221b42825faead9334c97663c51455\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/accepted_values_loyalty_stg__e_ab221b42825faead9334c97663c51455.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n opened as value_field,\n count(*) as n_records\n\n from dev_dkruh1.loyalty_stg__email_campaign_emails\n group by opened\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n True,False\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "opened", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_rejected.6e5ee9ade4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "rejected", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_rejected", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_rejected.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_rejected.6e5ee9ade4", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_rejected"], "alias": "not_null_loyalty_stg__email_campaign_emails_rejected", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.1519763, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_rejected.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where rejected is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "rejected", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_rejected__False__True__False.51e5ea9726": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [true, false], "quote": false, "column_name": "rejected", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_loyalty_stg__email_campaign_emails_rejected__False__True__False", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_loyalty_stg__e_3511da973d29f0e3050ef4ec05a27d74.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_rejected__False__True__False.51e5ea9726", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "accepted_values_loyalty_stg__email_campaign_emails_rejected__False__True__False"], "alias": "accepted_values_loyalty_stg__e_3511da973d29f0e3050ef4ec05a27d74", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_loyalty_stg__e_3511da973d29f0e3050ef4ec05a27d74", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_loyalty_stg__e_3511da973d29f0e3050ef4ec05a27d74"}, "created_at": 1700082676.1572506, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_loyalty_stg__e_3511da973d29f0e3050ef4ec05a27d74\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/accepted_values_loyalty_stg__e_3511da973d29f0e3050ef4ec05a27d74.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n rejected as value_field,\n count(*) as n_records\n\n from dev_dkruh1.loyalty_stg__email_campaign_emails\n group by rejected\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n True,False\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "rejected", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_sent.82b5353261": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sent", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_sent", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_sent.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_sent.82b5353261", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_sent"], "alias": "not_null_loyalty_stg__email_campaign_emails_sent", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.1630878, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_sent.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where sent is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sent", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_sent__False__True__False.ab58b87404": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [true, false], "quote": false, "column_name": "sent", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_loyalty_stg__email_campaign_emails_sent__False__True__False", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_loyalty_stg__e_e125fcc0eee5f221a6575e212173d750.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_sent__False__True__False.ab58b87404", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "accepted_values_loyalty_stg__email_campaign_emails_sent__False__True__False"], "alias": "accepted_values_loyalty_stg__e_e125fcc0eee5f221a6575e212173d750", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_loyalty_stg__e_e125fcc0eee5f221a6575e212173d750", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_loyalty_stg__e_e125fcc0eee5f221a6575e212173d750"}, "created_at": 1700082676.168719, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_loyalty_stg__e_e125fcc0eee5f221a6575e212173d750\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/accepted_values_loyalty_stg__e_e125fcc0eee5f221a6575e212173d750.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n sent as value_field,\n count(*) as n_records\n\n from dev_dkruh1.loyalty_stg__email_campaign_emails\n group by sent\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n True,False\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sent", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_soft_bounced.e1759cf142": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "soft_bounced", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_soft_bounced", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_soft_bounced.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_soft_bounced.e1759cf142", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_soft_bounced"], "alias": "not_null_loyalty_stg__email_campaign_emails_soft_bounced", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.1742873, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_soft_bounced.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where soft_bounced is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "soft_bounced", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_soft_bounced__False__True__False.29953005b7": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [true, false], "quote": false, "column_name": "soft_bounced", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_loyalty_stg__email_campaign_emails_soft_bounced__False__True__False", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_loyalty_stg__e_b3046f1431a84562589122eaf2d293ee.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_soft_bounced__False__True__False.29953005b7", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "accepted_values_loyalty_stg__email_campaign_emails_soft_bounced__False__True__False"], "alias": "accepted_values_loyalty_stg__e_b3046f1431a84562589122eaf2d293ee", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_loyalty_stg__e_b3046f1431a84562589122eaf2d293ee", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_loyalty_stg__e_b3046f1431a84562589122eaf2d293ee"}, "created_at": 1700082676.1798842, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_loyalty_stg__e_b3046f1431a84562589122eaf2d293ee\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/accepted_values_loyalty_stg__e_b3046f1431a84562589122eaf2d293ee.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n soft_bounced as value_field,\n count(*) as n_records\n\n from dev_dkruh1.loyalty_stg__email_campaign_emails\n group by soft_bounced\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n True,False\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "soft_bounced", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.not_null_loyalty_stg__email_campaign_emails_unsubscribed.cbe049b3b5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "unsubscribed", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__email_campaign_emails_unsubscribed", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__email_campaign_emails_unsubscribed.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.not_null_loyalty_stg__email_campaign_emails_unsubscribed.cbe049b3b5", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "not_null_loyalty_stg__email_campaign_emails_unsubscribed"], "alias": "not_null_loyalty_stg__email_campaign_emails_unsubscribed", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082676.1873155, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/not_null_loyalty_stg__email_campaign_emails_unsubscribed.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__email_campaign_emails where unsubscribed is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "unsubscribed", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_unsubscribed__False__True__False.c1accaca74": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [true, false], "quote": false, "column_name": "unsubscribed", "model": "{{ get_where_subquery(ref('loyalty_stg__email_campaign_emails')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_loyalty_stg__email_campaign_emails_unsubscribed__False__True__False", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_loyalty_stg__e_4f2d730e01192dcf5728a52a3e1874c8.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml", "unique_id": "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_unsubscribed__False__True__False.c1accaca74", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__email_campaign_emails", "accepted_values_loyalty_stg__email_campaign_emails_unsubscribed__False__True__False"], "alias": "accepted_values_loyalty_stg__e_4f2d730e01192dcf5728a52a3e1874c8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_loyalty_stg__e_4f2d730e01192dcf5728a52a3e1874c8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_loyalty_stg__e_4f2d730e01192dcf5728a52a3e1874c8"}, "created_at": 1700082676.1929953, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_loyalty_stg__e_4f2d730e01192dcf5728a52a3e1874c8\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__email_campaign_emails"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.yml/accepted_values_loyalty_stg__e_4f2d730e01192dcf5728a52a3e1874c8.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n unsubscribed as value_field,\n count(*) as n_records\n\n from dev_dkruh1.loyalty_stg__email_campaign_emails\n group by unsubscribed\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n True,False\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "unsubscribed", "file_key_name": "models.loyalty_stg__email_campaign_emails", "attached_node": "model.yoda.loyalty_stg__email_campaign_emails"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__install_loyalty_1.b473ebd87a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty_stg__install_loyalty')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__install_loyalty_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a18ae68a82541ab44596500475d780dc.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__install_loyalty_1.b473ebd87a", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__install_loyalty", "dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__install_loyalty_1"], "alias": "dbt_expectations_expect_table__a18ae68a82541ab44596500475d780dc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a18ae68a82541ab44596500475d780dc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a18ae68a82541ab44596500475d780dc"}, "created_at": 1700082676.3074188, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a18ae68a82541ab44596500475d780dc\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__install_loyalty", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__install_loyalty"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.yml/dbt_expectations_expect_table__a18ae68a82541ab44596500475d780dc.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.loyalty_stg__install_loyalty\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty_stg__install_loyalty", "attached_node": "model.yoda.loyalty_stg__install_loyalty"}, "test.yoda.dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__known_crawlers_1.81fcd9848e": {"test_metadata": {"name": "expect_table_column_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty_stg__known_crawlers')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__known_crawlers_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c910c8beda998a479d121f35264b31e6.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__known_crawlers/loyalty_stg__known_crawlers.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__known_crawlers_1.81fcd9848e", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__known_crawlers", "dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__known_crawlers_1"], "alias": "dbt_expectations_expect_table__c910c8beda998a479d121f35264b31e6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c910c8beda998a479d121f35264b31e6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c910c8beda998a479d121f35264b31e6"}, "created_at": 1700082676.3626869, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_column_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c910c8beda998a479d121f35264b31e6\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__known_crawlers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_column_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__known_crawlers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__known_crawlers/loyalty_stg__known_crawlers.yml/dbt_expectations_expect_table__c910c8beda998a479d121f35264b31e6.sql", "compiled": true, "compiled_code": "with test_data as (\n\n select\n 0 as number_actual_columns,\n 1 as min_value,\n 0 as max_value\n\n)\nselect *\nfrom test_data\nwhere\n not \n( 1=1 and number_actual_columns >= min_value\n)\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty_stg__known_crawlers", "attached_node": "model.yoda.loyalty_stg__known_crawlers"}, "test.yoda.unique_loyalty_stg__swell_vip_tiers_settings_merchant_id.211caa536c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('loyalty_stg__swell_vip_tiers_settings')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty_stg__swell_vip_tiers_settings_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty_stg__swell_vip_tiers_settings_merchant_id.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.yml", "unique_id": "test.yoda.unique_loyalty_stg__swell_vip_tiers_settings_merchant_id.211caa536c", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__swell_vip_tiers_settings", "unique_loyalty_stg__swell_vip_tiers_settings_merchant_id"], "alias": "unique_loyalty_stg__swell_vip_tiers_settings_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082677.1589358, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__swell_vip_tiers_settings", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__swell_vip_tiers_settings"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.yml/unique_loyalty_stg__swell_vip_tiers_settings_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select merchant_id from dev_dkruh1.loyalty_stg__swell_vip_tiers_settings where merchant_id is not null group by merchant_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.loyalty_stg__swell_vip_tiers_settings", "attached_node": "model.yoda.loyalty_stg__swell_vip_tiers_settings"}, "test.yoda.not_null_loyalty_stg__swell_vip_tiers_settings_merchant_id.e6804f14f2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('loyalty_stg__swell_vip_tiers_settings')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__swell_vip_tiers_settings_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__swell_vip_tiers_settings_merchant_id.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.yml", "unique_id": "test.yoda.not_null_loyalty_stg__swell_vip_tiers_settings_merchant_id.e6804f14f2", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__swell_vip_tiers_settings", "not_null_loyalty_stg__swell_vip_tiers_settings_merchant_id"], "alias": "not_null_loyalty_stg__swell_vip_tiers_settings_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082677.1647096, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__swell_vip_tiers_settings", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__swell_vip_tiers_settings"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.yml/not_null_loyalty_stg__swell_vip_tiers_settings_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__swell_vip_tiers_settings where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.loyalty_stg__swell_vip_tiers_settings", "attached_node": "model.yoda.loyalty_stg__swell_vip_tiers_settings"}, "test.yoda.not_null_loyalty_stg__uninstall_loyalty_partition_date.f65c8439c9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "partition_date", "model": "{{ get_where_subquery(ref('loyalty_stg__uninstall_loyalty')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__uninstall_loyalty_partition_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__uninstall_loyalty_partition_date.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.yml", "unique_id": "test.yoda.not_null_loyalty_stg__uninstall_loyalty_partition_date.f65c8439c9", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__uninstall_loyalty", "not_null_loyalty_stg__uninstall_loyalty_partition_date"], "alias": "not_null_loyalty_stg__uninstall_loyalty_partition_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082677.2532167, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__uninstall_loyalty", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__uninstall_loyalty"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.yml/not_null_loyalty_stg__uninstall_loyalty_partition_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__uninstall_loyalty where partition_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "partition_date", "file_key_name": "models.loyalty_stg__uninstall_loyalty", "attached_node": "model.yoda.loyalty_stg__uninstall_loyalty"}, "test.yoda.not_null_loyalty_stg__uninstall_loyalty_merchant_id.01515316c9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('loyalty_stg__uninstall_loyalty')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__uninstall_loyalty_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__uninstall_loyalty_merchant_id.sql", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.yml", "unique_id": "test.yoda.not_null_loyalty_stg__uninstall_loyalty_merchant_id.01515316c9", "fqn": ["yoda", "loyalty", "staging", "base", "loyalty_stg__uninstall_loyalty", "not_null_loyalty_stg__uninstall_loyalty_merchant_id"], "alias": "not_null_loyalty_stg__uninstall_loyalty_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082677.2590933, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__uninstall_loyalty", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__uninstall_loyalty"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.yml/not_null_loyalty_stg__uninstall_loyalty_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__uninstall_loyalty where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.loyalty_stg__uninstall_loyalty", "attached_node": "model.yoda.loyalty_stg__uninstall_loyalty"}, "test.yoda.unique_loyalty_stg__enriched_customers_customer_id.321a122973": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('loyalty_stg__enriched_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty_stg__enriched_customers_customer_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty_stg__enriched_customers_customer_id.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml", "unique_id": "test.yoda.unique_loyalty_stg__enriched_customers_customer_id.321a122973", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__enriched_customers", "unique_loyalty_stg__enriched_customers_customer_id"], "alias": "unique_loyalty_stg__enriched_customers_customer_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082677.4509513, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__enriched_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__enriched_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml/unique_loyalty_stg__enriched_customers_customer_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select customer_id from dev_dkruh1.loyalty_stg__enriched_customers where customer_id is not null group by customer_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.loyalty_stg__enriched_customers", "attached_node": "model.yoda.loyalty_stg__enriched_customers"}, "test.yoda.not_null_loyalty_stg__enriched_customers_customer_id.632a3d255f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('loyalty_stg__enriched_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__enriched_customers_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__enriched_customers_customer_id.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml", "unique_id": "test.yoda.not_null_loyalty_stg__enriched_customers_customer_id.632a3d255f", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__enriched_customers", "not_null_loyalty_stg__enriched_customers_customer_id"], "alias": "not_null_loyalty_stg__enriched_customers_customer_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082677.6719375, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__enriched_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__enriched_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml/not_null_loyalty_stg__enriched_customers_customer_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__enriched_customers where customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.loyalty_stg__enriched_customers", "attached_node": "model.yoda.loyalty_stg__enriched_customers"}, "test.yoda.not_null_loyalty_stg__enriched_customers_merchant_id.fb9c39e016": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(ref('loyalty_stg__enriched_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__enriched_customers_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__enriched_customers_merchant_id.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml", "unique_id": "test.yoda.not_null_loyalty_stg__enriched_customers_merchant_id.fb9c39e016", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__enriched_customers", "not_null_loyalty_stg__enriched_customers_merchant_id"], "alias": "not_null_loyalty_stg__enriched_customers_merchant_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082677.6782563, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__enriched_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__enriched_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml/not_null_loyalty_stg__enriched_customers_merchant_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__enriched_customers where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "models.loyalty_stg__enriched_customers", "attached_node": "model.yoda.loyalty_stg__enriched_customers"}, "test.yoda.not_null_loyalty_stg__enriched_customers_updated_at.4cff0bd8dd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('loyalty_stg__enriched_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__enriched_customers_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__enriched_customers_updated_at.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml", "unique_id": "test.yoda.not_null_loyalty_stg__enriched_customers_updated_at.4cff0bd8dd", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__enriched_customers", "not_null_loyalty_stg__enriched_customers_updated_at"], "alias": "not_null_loyalty_stg__enriched_customers_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082677.6837718, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__enriched_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__enriched_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml/not_null_loyalty_stg__enriched_customers_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__enriched_customers where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.loyalty_stg__enriched_customers", "attached_node": "model.yoda.loyalty_stg__enriched_customers"}, "test.yoda.not_null_loyalty_stg__enriched_customers_is_member.97b742e2eb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_member", "model": "{{ get_where_subquery(ref('loyalty_stg__enriched_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__enriched_customers_is_member", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__enriched_customers_is_member.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml", "unique_id": "test.yoda.not_null_loyalty_stg__enriched_customers_is_member.97b742e2eb", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__enriched_customers", "not_null_loyalty_stg__enriched_customers_is_member"], "alias": "not_null_loyalty_stg__enriched_customers_is_member", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082677.6894112, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__enriched_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__enriched_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml/not_null_loyalty_stg__enriched_customers_is_member.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__enriched_customers where is_member is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_member", "file_key_name": "models.loyalty_stg__enriched_customers", "attached_node": "model.yoda.loyalty_stg__enriched_customers"}, "test.yoda.accepted_values_loyalty_stg__enriched_customers_is_member__False__True__False.a33b7531e0": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [true, false], "quote": false, "column_name": "is_member", "model": "{{ get_where_subquery(ref('loyalty_stg__enriched_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_loyalty_stg__enriched_customers_is_member__False__True__False", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_loyalty_stg__e_89fac75a46bece32bc8c7682b3e53898.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml", "unique_id": "test.yoda.accepted_values_loyalty_stg__enriched_customers_is_member__False__True__False.a33b7531e0", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__enriched_customers", "accepted_values_loyalty_stg__enriched_customers_is_member__False__True__False"], "alias": "accepted_values_loyalty_stg__e_89fac75a46bece32bc8c7682b3e53898", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_loyalty_stg__e_89fac75a46bece32bc8c7682b3e53898", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_loyalty_stg__e_89fac75a46bece32bc8c7682b3e53898"}, "created_at": 1700082677.6949706, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_loyalty_stg__e_89fac75a46bece32bc8c7682b3e53898\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__enriched_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__enriched_customers"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.yml/accepted_values_loyalty_stg__e_89fac75a46bece32bc8c7682b3e53898.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n is_member as value_field,\n count(*) as n_records\n\n from dev_dkruh1.loyalty_stg__enriched_customers\n group by is_member\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n True,False\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_member", "file_key_name": "models.loyalty_stg__enriched_customers", "attached_node": "model.yoda.loyalty_stg__enriched_customers"}, "test.yoda.unique_loyalty_stg__point_transaction_transaction_id.1c44f00d74": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "transaction_id", "model": "{{ get_where_subquery(ref('loyalty_stg__point_transaction')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_loyalty_stg__point_transaction_transaction_id", "resource_type": "test", "package_name": "yoda", "path": "unique_loyalty_stg__point_transaction_transaction_id.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.yml", "unique_id": "test.yoda.unique_loyalty_stg__point_transaction_transaction_id.1c44f00d74", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__point_transaction", "unique_loyalty_stg__point_transaction_transaction_id"], "alias": "unique_loyalty_stg__point_transaction_transaction_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082677.7461903, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__point_transaction", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__point_transaction"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.yml/unique_loyalty_stg__point_transaction_transaction_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select transaction_id from dev_dkruh1.loyalty_stg__point_transaction where transaction_id is not null group by transaction_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "transaction_id", "file_key_name": "models.loyalty_stg__point_transaction", "attached_node": "model.yoda.loyalty_stg__point_transaction"}, "test.yoda.not_null_loyalty_stg__point_transaction_transaction_id.762f30efd1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "transaction_id", "model": "{{ get_where_subquery(ref('loyalty_stg__point_transaction')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_loyalty_stg__point_transaction_transaction_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_loyalty_stg__point_transaction_transaction_id.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.yml", "unique_id": "test.yoda.not_null_loyalty_stg__point_transaction_transaction_id.762f30efd1", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__point_transaction", "not_null_loyalty_stg__point_transaction_transaction_id"], "alias": "not_null_loyalty_stg__point_transaction_transaction_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082677.7518802, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "loyalty_stg__point_transaction", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__point_transaction"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.yml/not_null_loyalty_stg__point_transaction_transaction_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.loyalty_stg__point_transaction where transaction_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "transaction_id", "file_key_name": "models.loyalty_stg__point_transaction", "attached_node": "model.yoda.loyalty_stg__point_transaction"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__point_transaction_1.388cc831c9": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('loyalty_stg__point_transaction')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__point_transaction_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f6a786a0f22722d98bec429fa5cb0836.sql", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__point_transaction_1.388cc831c9", "fqn": ["yoda", "loyalty", "staging", "marts_compatible", "loyalty_stg__point_transaction", "dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__point_transaction_1"], "alias": "dbt_expectations_expect_table__f6a786a0f22722d98bec429fa5cb0836", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f6a786a0f22722d98bec429fa5cb0836", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f6a786a0f22722d98bec429fa5cb0836"}, "created_at": 1700082677.7576036, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f6a786a0f22722d98bec429fa5cb0836\") }}", "language": "sql", "refs": [{"name": "loyalty_stg__point_transaction", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.loyalty_stg__point_transaction"]}, "compiled_path": "target/compiled/yoda/models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.yml/dbt_expectations_expect_table__f6a786a0f22722d98bec429fa5cb0836.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.loyalty_stg__point_transaction\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.loyalty_stg__point_transaction", "attached_node": "model.yoda.loyalty_stg__point_transaction"}, "test.yoda.not_null_platform__integrations_adoption_store_id.5b1b7c55d0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('platform__integrations_adoption')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__integrations_adoption_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__integrations_adoption_store_id.sql", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.yml", "unique_id": "test.yoda.not_null_platform__integrations_adoption_store_id.5b1b7c55d0", "fqn": ["yoda", "platform", "marts", "platform__integrations_adoption", "not_null_platform__integrations_adoption_store_id"], "alias": "not_null_platform__integrations_adoption_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082678.3145006, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__integrations_adoption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__integrations_adoption"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.yml/not_null_platform__integrations_adoption_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__integrations_adoption where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.platform__integrations_adoption", "attached_node": "model.yoda.platform__integrations_adoption"}, "test.yoda.not_null_platform__integrations_adoption_application_id.d50d3f5e03": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "application_id", "model": "{{ get_where_subquery(ref('platform__integrations_adoption')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__integrations_adoption_application_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__integrations_adoption_application_id.sql", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.yml", "unique_id": "test.yoda.not_null_platform__integrations_adoption_application_id.d50d3f5e03", "fqn": ["yoda", "platform", "marts", "platform__integrations_adoption", "not_null_platform__integrations_adoption_application_id"], "alias": "not_null_platform__integrations_adoption_application_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082678.3202617, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__integrations_adoption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__integrations_adoption"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.yml/not_null_platform__integrations_adoption_application_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__integrations_adoption where application_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "application_id", "file_key_name": "models.platform__integrations_adoption", "attached_node": "model.yoda.platform__integrations_adoption"}, "test.yoda.not_null_platform__integrations_adoption_application_name.9386d798e4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "application_name", "model": "{{ get_where_subquery(ref('platform__integrations_adoption')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__integrations_adoption_application_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__integrations_adoption_application_name.sql", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.yml", "unique_id": "test.yoda.not_null_platform__integrations_adoption_application_name.9386d798e4", "fqn": ["yoda", "platform", "marts", "platform__integrations_adoption", "not_null_platform__integrations_adoption_application_name"], "alias": "not_null_platform__integrations_adoption_application_name", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082678.325911, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__integrations_adoption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__integrations_adoption"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.yml/not_null_platform__integrations_adoption_application_name.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__integrations_adoption where application_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "application_name", "file_key_name": "models.platform__integrations_adoption", "attached_node": "model.yoda.platform__integrations_adoption"}, "test.yoda.not_null_platform__integrations_adoption_created_at.37b0d90b09": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('platform__integrations_adoption')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__integrations_adoption_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__integrations_adoption_created_at.sql", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.yml", "unique_id": "test.yoda.not_null_platform__integrations_adoption_created_at.37b0d90b09", "fqn": ["yoda", "platform", "marts", "platform__integrations_adoption", "not_null_platform__integrations_adoption_created_at"], "alias": "not_null_platform__integrations_adoption_created_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082678.3315916, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__integrations_adoption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__integrations_adoption"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.yml/not_null_platform__integrations_adoption_created_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__integrations_adoption where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.platform__integrations_adoption", "attached_node": "model.yoda.platform__integrations_adoption"}, "test.yoda.not_null_platform__integrations_adoption_snapshot_date.ccc0700817": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "snapshot_date", "model": "{{ get_where_subquery(ref('platform__integrations_adoption')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__integrations_adoption_snapshot_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__integrations_adoption_snapshot_date.sql", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.yml", "unique_id": "test.yoda.not_null_platform__integrations_adoption_snapshot_date.ccc0700817", "fqn": ["yoda", "platform", "marts", "platform__integrations_adoption", "not_null_platform__integrations_adoption_snapshot_date"], "alias": "not_null_platform__integrations_adoption_snapshot_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082678.337613, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__integrations_adoption", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__integrations_adoption"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.yml/not_null_platform__integrations_adoption_snapshot_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__integrations_adoption where snapshot_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "snapshot_date", "file_key_name": "models.platform__integrations_adoption", "attached_node": "model.yoda.platform__integrations_adoption"}, "test.yoda.not_null_platform__integrations_adoption_per_application_application_id.161ec59cae": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "application_id", "model": "{{ get_where_subquery(ref('platform__integrations_adoption_per_application')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__integrations_adoption_per_application_application_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__integration_8b7821be17365446347f2b2b763fd7ec.sql", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.yml", "unique_id": "test.yoda.not_null_platform__integrations_adoption_per_application_application_id.161ec59cae", "fqn": ["yoda", "platform", "marts", "platform__integrations_adoption_per_application", "not_null_platform__integrations_adoption_per_application_application_id"], "alias": "not_null_platform__integration_8b7821be17365446347f2b2b763fd7ec", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__integration_8b7821be17365446347f2b2b763fd7ec", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__integration_8b7821be17365446347f2b2b763fd7ec"}, "created_at": 1700082678.3600826, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__integration_8b7821be17365446347f2b2b763fd7ec\") }}", "language": "sql", "refs": [{"name": "platform__integrations_adoption_per_application", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__integrations_adoption_per_application"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.yml/not_null_platform__integration_8b7821be17365446347f2b2b763fd7ec.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__integrations_adoption_per_application where application_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "application_id", "file_key_name": "models.platform__integrations_adoption_per_application", "attached_node": "model.yoda.platform__integrations_adoption_per_application"}, "test.yoda.not_null_platform__integrations_adoption_per_application_application_name.40f82b15e1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "application_name", "model": "{{ get_where_subquery(ref('platform__integrations_adoption_per_application')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__integrations_adoption_per_application_application_name", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__integration_dc1abce0d423a6045d2e0d7c6fd94ea5.sql", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.yml", "unique_id": "test.yoda.not_null_platform__integrations_adoption_per_application_application_name.40f82b15e1", "fqn": ["yoda", "platform", "marts", "platform__integrations_adoption_per_application", "not_null_platform__integrations_adoption_per_application_application_name"], "alias": "not_null_platform__integration_dc1abce0d423a6045d2e0d7c6fd94ea5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__integration_dc1abce0d423a6045d2e0d7c6fd94ea5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__integration_dc1abce0d423a6045d2e0d7c6fd94ea5"}, "created_at": 1700082678.3663137, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__integration_dc1abce0d423a6045d2e0d7c6fd94ea5\") }}", "language": "sql", "refs": [{"name": "platform__integrations_adoption_per_application", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__integrations_adoption_per_application"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.yml/not_null_platform__integration_dc1abce0d423a6045d2e0d7c6fd94ea5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__integrations_adoption_per_application where application_name is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "application_name", "file_key_name": "models.platform__integrations_adoption_per_application", "attached_node": "model.yoda.platform__integrations_adoption_per_application"}, "test.yoda.not_null_platform__integrations_adoption_per_store_store_id.594717070b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('platform__integrations_adoption_per_store')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__integrations_adoption_per_store_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__integrations_adoption_per_store_store_id.sql", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.yml", "unique_id": "test.yoda.not_null_platform__integrations_adoption_per_store_store_id.594717070b", "fqn": ["yoda", "platform", "marts", "platform__integrations_adoption_per_store", "not_null_platform__integrations_adoption_per_store_store_id"], "alias": "not_null_platform__integrations_adoption_per_store_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082678.3869967, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__integrations_adoption_per_store", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__integrations_adoption_per_store"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.yml/not_null_platform__integrations_adoption_per_store_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__integrations_adoption_per_store where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.platform__integrations_adoption_per_store", "attached_node": "model.yoda.platform__integrations_adoption_per_store"}, "test.yoda.not_null_platform__retention_metrics_customer_segment_ratio_app_key.08f694e03e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('platform__retention_metrics_customer_segment_ratio')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__retention_metrics_customer_segment_ratio_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__retention_m_5a1260bb97a3c75ecb1880b573b1a541.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.yml", "unique_id": "test.yoda.not_null_platform__retention_metrics_customer_segment_ratio_app_key.08f694e03e", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_customer_segment_ratio", "not_null_platform__retention_metrics_customer_segment_ratio_app_key"], "alias": "not_null_platform__retention_m_5a1260bb97a3c75ecb1880b573b1a541", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__retention_m_5a1260bb97a3c75ecb1880b573b1a541", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__retention_m_5a1260bb97a3c75ecb1880b573b1a541"}, "created_at": 1700082678.6021278, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__retention_m_5a1260bb97a3c75ecb1880b573b1a541\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_customer_segment_ratio", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_customer_segment_ratio"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.yml/not_null_platform__retention_m_5a1260bb97a3c75ecb1880b573b1a541.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__retention_metrics_customer_segment_ratio where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.platform__retention_metrics_customer_segment_ratio", "attached_node": "model.yoda.platform__retention_metrics_customer_segment_ratio"}, "test.yoda.accepted_values_platform__retention_metrics_customer_segment_ratio_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.7c99cc067e": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["Last_7_days", "Last_30_days", "Last_90_days", "Last_365_days", "Previous_7_days", "Previous_30_days", "Previous_90_days", "Previous_365_days"], "column_name": "trend", "model": "{{ get_where_subquery(ref('platform__retention_metrics_customer_segment_ratio')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_platform__retention_metrics_customer_segment_ratio_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_platform__rete_85a79b4c0ef46adddd8e6e1bb5511ec2.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.yml", "unique_id": "test.yoda.accepted_values_platform__retention_metrics_customer_segment_ratio_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.7c99cc067e", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_customer_segment_ratio", "accepted_values_platform__retention_metrics_customer_segment_ratio_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days"], "alias": "accepted_values_platform__rete_85a79b4c0ef46adddd8e6e1bb5511ec2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_platform__rete_85a79b4c0ef46adddd8e6e1bb5511ec2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_platform__rete_85a79b4c0ef46adddd8e6e1bb5511ec2"}, "created_at": 1700082678.6105974, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_platform__rete_85a79b4c0ef46adddd8e6e1bb5511ec2\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_customer_segment_ratio", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_customer_segment_ratio"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.yml/accepted_values_platform__rete_85a79b4c0ef46adddd8e6e1bb5511ec2.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n trend as value_field,\n count(*) as n_records\n\n from dev_dkruh1.platform__retention_metrics_customer_segment_ratio\n group by trend\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'Last_7_days','Last_30_days','Last_90_days','Last_365_days','Previous_7_days','Previous_30_days','Previous_90_days','Previous_365_days'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "trend", "file_key_name": "models.platform__retention_metrics_customer_segment_ratio", "attached_node": "model.yoda.platform__retention_metrics_customer_segment_ratio"}, "test.yoda.unique_platform__retention_metrics_returning_customers_app_key.03eca0d9cd": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('platform__retention_metrics_returning_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform__retention_metrics_returning_customers_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_platform__retention_metrics_returning_customers_app_key.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml", "unique_id": "test.yoda.unique_platform__retention_metrics_returning_customers_app_key.03eca0d9cd", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers", "unique_platform__retention_metrics_returning_customers_app_key"], "alias": "unique_platform__retention_metrics_returning_customers_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082678.7009733, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_returning_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml/unique_platform__retention_metrics_returning_customers_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.platform__retention_metrics_returning_customers where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.platform__retention_metrics_returning_customers", "attached_node": "model.yoda.platform__retention_metrics_returning_customers"}, "test.yoda.not_null_platform__retention_metrics_returning_customers_app_key.a5654fb46d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('platform__retention_metrics_returning_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__retention_metrics_returning_customers_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__retention_m_46eb45332a3bbd64f24e5b19412b8fff.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml", "unique_id": "test.yoda.not_null_platform__retention_metrics_returning_customers_app_key.a5654fb46d", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers", "not_null_platform__retention_metrics_returning_customers_app_key"], "alias": "not_null_platform__retention_m_46eb45332a3bbd64f24e5b19412b8fff", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__retention_m_46eb45332a3bbd64f24e5b19412b8fff", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__retention_m_46eb45332a3bbd64f24e5b19412b8fff"}, "created_at": 1700082678.7068717, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__retention_m_46eb45332a3bbd64f24e5b19412b8fff\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_returning_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml/not_null_platform__retention_m_46eb45332a3bbd64f24e5b19412b8fff.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__retention_metrics_returning_customers where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.platform__retention_metrics_returning_customers", "attached_node": "model.yoda.platform__retention_metrics_returning_customers"}, "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days.f818fbb53d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "returning_customers_value_last_7_days", "model": "{{ get_where_subquery(ref('platform__retention_metrics_returning_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__retention_m_30dd7b635eaab5b569bb2b8883e0b914.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml", "unique_id": "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days.f818fbb53d", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers", "not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days"], "alias": "not_null_platform__retention_m_30dd7b635eaab5b569bb2b8883e0b914", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__retention_m_30dd7b635eaab5b569bb2b8883e0b914", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__retention_m_30dd7b635eaab5b569bb2b8883e0b914"}, "created_at": 1700082678.713529, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__retention_m_30dd7b635eaab5b569bb2b8883e0b914\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_returning_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml/not_null_platform__retention_m_30dd7b635eaab5b569bb2b8883e0b914.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__retention_metrics_returning_customers where returning_customers_value_last_7_days is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_customers_value_last_7_days", "file_key_name": "models.platform__retention_metrics_returning_customers", "attached_node": "model.yoda.platform__retention_metrics_returning_customers"}, "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days__100___100.661859c0d8": {"test_metadata": {"name": "accepted_range", "kwargs": {"min_value": -100, "max_value": 100, "column_name": "returning_customers_value_last_7_days", "model": "{{ get_where_subquery(ref('platform__retention_metrics_returning_customers')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days__100___100", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_accepted_range_platf_d38558598b888ba0e5ac07983602f29a.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml", "unique_id": "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days__100___100.661859c0d8", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers", "dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days__100___100"], "alias": "dbt_utils_accepted_range_platf_d38558598b888ba0e5ac07983602f29a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_accepted_range_platf_d38558598b888ba0e5ac07983602f29a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_accepted_range_platf_d38558598b888ba0e5ac07983602f29a"}, "created_at": 1700082678.719334, "relation_name": null, "raw_code": "{{ dbt_utils.test_accepted_range(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_accepted_range_platf_d38558598b888ba0e5ac07983602f29a\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_accepted_range", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_returning_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml/dbt_utils_accepted_range_platf_d38558598b888ba0e5ac07983602f29a.sql", "compiled": true, "compiled_code": "\n\nwith meet_condition as(\n select *\n from dev_dkruh1.platform__retention_metrics_returning_customers\n),\n\nvalidation_errors as (\n select *\n from meet_condition\n where\n -- never true, defaults to an empty result set. Exists to ensure any combo of the `or` clauses below succeeds\n 1 = 2\n -- records with a value >= min_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not returning_customers_value_last_7_days >= -100\n -- records with a value <= max_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not returning_customers_value_last_7_days <= 100\n)\n\nselect *\nfrom validation_errors\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_customers_value_last_7_days", "file_key_name": "models.platform__retention_metrics_returning_customers", "attached_node": "model.yoda.platform__retention_metrics_returning_customers"}, "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days.757eba9f4d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "returning_customers_value_last_30_days", "model": "{{ get_where_subquery(ref('platform__retention_metrics_returning_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__retention_m_fc42e9080f33c0dc81fb24227b0dfd4c.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml", "unique_id": "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days.757eba9f4d", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers", "not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days"], "alias": "not_null_platform__retention_m_fc42e9080f33c0dc81fb24227b0dfd4c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__retention_m_fc42e9080f33c0dc81fb24227b0dfd4c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__retention_m_fc42e9080f33c0dc81fb24227b0dfd4c"}, "created_at": 1700082678.7327693, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__retention_m_fc42e9080f33c0dc81fb24227b0dfd4c\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_returning_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml/not_null_platform__retention_m_fc42e9080f33c0dc81fb24227b0dfd4c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__retention_metrics_returning_customers where returning_customers_value_last_30_days is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_customers_value_last_30_days", "file_key_name": "models.platform__retention_metrics_returning_customers", "attached_node": "model.yoda.platform__retention_metrics_returning_customers"}, "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days__100___100.538bc912e0": {"test_metadata": {"name": "accepted_range", "kwargs": {"min_value": -100, "max_value": 100, "column_name": "returning_customers_value_last_30_days", "model": "{{ get_where_subquery(ref('platform__retention_metrics_returning_customers')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days__100___100", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_accepted_range_platf_3a3ba77f8e75066060f38d03c0505b8c.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml", "unique_id": "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days__100___100.538bc912e0", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers", "dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days__100___100"], "alias": "dbt_utils_accepted_range_platf_3a3ba77f8e75066060f38d03c0505b8c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_accepted_range_platf_3a3ba77f8e75066060f38d03c0505b8c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_accepted_range_platf_3a3ba77f8e75066060f38d03c0505b8c"}, "created_at": 1700082678.7389934, "relation_name": null, "raw_code": "{{ dbt_utils.test_accepted_range(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_accepted_range_platf_3a3ba77f8e75066060f38d03c0505b8c\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_accepted_range", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_returning_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml/dbt_utils_accepted_range_platf_3a3ba77f8e75066060f38d03c0505b8c.sql", "compiled": true, "compiled_code": "\n\nwith meet_condition as(\n select *\n from dev_dkruh1.platform__retention_metrics_returning_customers\n),\n\nvalidation_errors as (\n select *\n from meet_condition\n where\n -- never true, defaults to an empty result set. Exists to ensure any combo of the `or` clauses below succeeds\n 1 = 2\n -- records with a value >= min_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not returning_customers_value_last_30_days >= -100\n -- records with a value <= max_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not returning_customers_value_last_30_days <= 100\n)\n\nselect *\nfrom validation_errors\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_customers_value_last_30_days", "file_key_name": "models.platform__retention_metrics_returning_customers", "attached_node": "model.yoda.platform__retention_metrics_returning_customers"}, "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days.c02255bdfa": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "returning_customers_value_last_90_days", "model": "{{ get_where_subquery(ref('platform__retention_metrics_returning_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__retention_m_bc9cf76d640437542198120690eef604.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml", "unique_id": "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days.c02255bdfa", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers", "not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days"], "alias": "not_null_platform__retention_m_bc9cf76d640437542198120690eef604", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__retention_m_bc9cf76d640437542198120690eef604", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__retention_m_bc9cf76d640437542198120690eef604"}, "created_at": 1700082678.7466822, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__retention_m_bc9cf76d640437542198120690eef604\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_returning_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml/not_null_platform__retention_m_bc9cf76d640437542198120690eef604.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__retention_metrics_returning_customers where returning_customers_value_last_90_days is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_customers_value_last_90_days", "file_key_name": "models.platform__retention_metrics_returning_customers", "attached_node": "model.yoda.platform__retention_metrics_returning_customers"}, "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days__100___100.18abaa0517": {"test_metadata": {"name": "accepted_range", "kwargs": {"min_value": -100, "max_value": 100, "column_name": "returning_customers_value_last_90_days", "model": "{{ get_where_subquery(ref('platform__retention_metrics_returning_customers')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days__100___100", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_accepted_range_platf_c3dee55d75b35e940c3f18e7b01ea98c.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml", "unique_id": "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days__100___100.18abaa0517", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers", "dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days__100___100"], "alias": "dbt_utils_accepted_range_platf_c3dee55d75b35e940c3f18e7b01ea98c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_accepted_range_platf_c3dee55d75b35e940c3f18e7b01ea98c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_accepted_range_platf_c3dee55d75b35e940c3f18e7b01ea98c"}, "created_at": 1700082678.752883, "relation_name": null, "raw_code": "{{ dbt_utils.test_accepted_range(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_accepted_range_platf_c3dee55d75b35e940c3f18e7b01ea98c\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_accepted_range", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_returning_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml/dbt_utils_accepted_range_platf_c3dee55d75b35e940c3f18e7b01ea98c.sql", "compiled": true, "compiled_code": "\n\nwith meet_condition as(\n select *\n from dev_dkruh1.platform__retention_metrics_returning_customers\n),\n\nvalidation_errors as (\n select *\n from meet_condition\n where\n -- never true, defaults to an empty result set. Exists to ensure any combo of the `or` clauses below succeeds\n 1 = 2\n -- records with a value >= min_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not returning_customers_value_last_90_days >= -100\n -- records with a value <= max_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not returning_customers_value_last_90_days <= 100\n)\n\nselect *\nfrom validation_errors\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_customers_value_last_90_days", "file_key_name": "models.platform__retention_metrics_returning_customers", "attached_node": "model.yoda.platform__retention_metrics_returning_customers"}, "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days.beaf53283a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "returning_customers_value_last_365_days", "model": "{{ get_where_subquery(ref('platform__retention_metrics_returning_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__retention_m_01da108af36b352bbc17db0b4f4c1b05.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml", "unique_id": "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days.beaf53283a", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers", "not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days"], "alias": "not_null_platform__retention_m_01da108af36b352bbc17db0b4f4c1b05", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__retention_m_01da108af36b352bbc17db0b4f4c1b05", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__retention_m_01da108af36b352bbc17db0b4f4c1b05"}, "created_at": 1700082678.7597153, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__retention_m_01da108af36b352bbc17db0b4f4c1b05\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_returning_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml/not_null_platform__retention_m_01da108af36b352bbc17db0b4f4c1b05.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__retention_metrics_returning_customers where returning_customers_value_last_365_days is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_customers_value_last_365_days", "file_key_name": "models.platform__retention_metrics_returning_customers", "attached_node": "model.yoda.platform__retention_metrics_returning_customers"}, "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days__100___100.110e77d070": {"test_metadata": {"name": "accepted_range", "kwargs": {"min_value": -100, "max_value": 100, "column_name": "returning_customers_value_last_365_days", "model": "{{ get_where_subquery(ref('platform__retention_metrics_returning_customers')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days__100___100", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_accepted_range_platf_10eb30c259056bc57da3e434cd823b5c.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml", "unique_id": "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days__100___100.110e77d070", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_returning_customers", "dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days__100___100"], "alias": "dbt_utils_accepted_range_platf_10eb30c259056bc57da3e434cd823b5c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_accepted_range_platf_10eb30c259056bc57da3e434cd823b5c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_accepted_range_platf_10eb30c259056bc57da3e434cd823b5c"}, "created_at": 1700082678.7664146, "relation_name": null, "raw_code": "{{ dbt_utils.test_accepted_range(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_accepted_range_platf_10eb30c259056bc57da3e434cd823b5c\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_accepted_range", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_returning_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.yml/dbt_utils_accepted_range_platf_10eb30c259056bc57da3e434cd823b5c.sql", "compiled": true, "compiled_code": "\n\nwith meet_condition as(\n select *\n from dev_dkruh1.platform__retention_metrics_returning_customers\n),\n\nvalidation_errors as (\n select *\n from meet_condition\n where\n -- never true, defaults to an empty result set. Exists to ensure any combo of the `or` clauses below succeeds\n 1 = 2\n -- records with a value >= min_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not returning_customers_value_last_365_days >= -100\n -- records with a value <= max_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not returning_customers_value_last_365_days <= 100\n)\n\nselect *\nfrom validation_errors\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_customers_value_last_365_days", "file_key_name": "models.platform__retention_metrics_returning_customers", "attached_node": "model.yoda.platform__retention_metrics_returning_customers"}, "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_app_key.138987bbfa": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('platform__retention_metrics_total_revenue_trends_by_segments')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__retention_metrics_total_revenue_trends_by_segments_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__retention_m_263f571835b31110e4f4ed0590506217.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.yml", "unique_id": "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_app_key.138987bbfa", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_total_revenue_trends_by_segments", "not_null_platform__retention_metrics_total_revenue_trends_by_segments_app_key"], "alias": "not_null_platform__retention_m_263f571835b31110e4f4ed0590506217", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__retention_m_263f571835b31110e4f4ed0590506217", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__retention_m_263f571835b31110e4f4ed0590506217"}, "created_at": 1700082678.8191197, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__retention_m_263f571835b31110e4f4ed0590506217\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_total_revenue_trends_by_segments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.yml/not_null_platform__retention_m_263f571835b31110e4f4ed0590506217.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__retention_metrics_total_revenue_trends_by_segments where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.platform__retention_metrics_total_revenue_trends_by_segments", "attached_node": "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"}, "test.yoda.accepted_values_platform__retention_metrics_total_revenue_trends_by_segments_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.d537ec1279": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["Last_7_days", "Last_30_days", "Last_90_days", "Last_365_days", "Previous_7_days", "Previous_30_days", "Previous_90_days", "Previous_365_days"], "column_name": "trend", "model": "{{ get_where_subquery(ref('platform__retention_metrics_total_revenue_trends_by_segments')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_platform__retention_metrics_total_revenue_trends_by_segments_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_platform__rete_00dc4904e550e23e40daac36b58665d0.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.yml", "unique_id": "test.yoda.accepted_values_platform__retention_metrics_total_revenue_trends_by_segments_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.d537ec1279", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_total_revenue_trends_by_segments", "accepted_values_platform__retention_metrics_total_revenue_trends_by_segments_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days"], "alias": "accepted_values_platform__rete_00dc4904e550e23e40daac36b58665d0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_platform__rete_00dc4904e550e23e40daac36b58665d0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_platform__rete_00dc4904e550e23e40daac36b58665d0"}, "created_at": 1700082678.8296812, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_platform__rete_00dc4904e550e23e40daac36b58665d0\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_total_revenue_trends_by_segments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.yml/accepted_values_platform__rete_00dc4904e550e23e40daac36b58665d0.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n trend as value_field,\n count(*) as n_records\n\n from dev_dkruh1.platform__retention_metrics_total_revenue_trends_by_segments\n group by trend\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'Last_7_days','Last_30_days','Last_90_days','Last_365_days','Previous_7_days','Previous_30_days','Previous_90_days','Previous_365_days'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "trend", "file_key_name": "models.platform__retention_metrics_total_revenue_trends_by_segments", "attached_node": "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"}, "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_engaged.c7b89ae0f7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "total_revenue_engaged", "model": "{{ get_where_subquery(ref('platform__retention_metrics_total_revenue_trends_by_segments')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_engaged", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__retention_m_0638bf72d16594d8bc9df09c351c2ea5.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.yml", "unique_id": "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_engaged.c7b89ae0f7", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_total_revenue_trends_by_segments", "not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_engaged"], "alias": "not_null_platform__retention_m_0638bf72d16594d8bc9df09c351c2ea5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__retention_m_0638bf72d16594d8bc9df09c351c2ea5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__retention_m_0638bf72d16594d8bc9df09c351c2ea5"}, "created_at": 1700082678.8505082, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__retention_m_0638bf72d16594d8bc9df09c351c2ea5\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_total_revenue_trends_by_segments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.yml/not_null_platform__retention_m_0638bf72d16594d8bc9df09c351c2ea5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__retention_metrics_total_revenue_trends_by_segments where total_revenue_engaged is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "total_revenue_engaged", "file_key_name": "models.platform__retention_metrics_total_revenue_trends_by_segments", "attached_node": "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"}, "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_returning.b9186412bd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "total_revenue_returning", "model": "{{ get_where_subquery(ref('platform__retention_metrics_total_revenue_trends_by_segments')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_returning", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__retention_m_2f31e23fcd788ce1a0a9c8b58a5fbad0.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.yml", "unique_id": "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_returning.b9186412bd", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_total_revenue_trends_by_segments", "not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_returning"], "alias": "not_null_platform__retention_m_2f31e23fcd788ce1a0a9c8b58a5fbad0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__retention_m_2f31e23fcd788ce1a0a9c8b58a5fbad0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__retention_m_2f31e23fcd788ce1a0a9c8b58a5fbad0"}, "created_at": 1700082678.8604708, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__retention_m_2f31e23fcd788ce1a0a9c8b58a5fbad0\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_total_revenue_trends_by_segments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.yml/not_null_platform__retention_m_2f31e23fcd788ce1a0a9c8b58a5fbad0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__retention_metrics_total_revenue_trends_by_segments where total_revenue_returning is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "total_revenue_returning", "file_key_name": "models.platform__retention_metrics_total_revenue_trends_by_segments", "attached_node": "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"}, "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_new.08adaeb3b7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "total_revenue_new", "model": "{{ get_where_subquery(ref('platform__retention_metrics_total_revenue_trends_by_segments')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_new", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__retention_m_544ca2ccefc172ecaf552447350803ea.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.yml", "unique_id": "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_new.08adaeb3b7", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_total_revenue_trends_by_segments", "not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_new"], "alias": "not_null_platform__retention_m_544ca2ccefc172ecaf552447350803ea", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform__retention_m_544ca2ccefc172ecaf552447350803ea", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform__retention_m_544ca2ccefc172ecaf552447350803ea"}, "created_at": 1700082678.867125, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform__retention_m_544ca2ccefc172ecaf552447350803ea\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_total_revenue_trends_by_segments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.yml/not_null_platform__retention_m_544ca2ccefc172ecaf552447350803ea.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__retention_metrics_total_revenue_trends_by_segments where total_revenue_new is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "total_revenue_new", "file_key_name": "models.platform__retention_metrics_total_revenue_trends_by_segments", "attached_node": "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"}, "test.yoda.accepted_values_platform__retention_metrics_trends_average_order_value_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.0228a17bf2": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["Last_7_days", "Last_30_days", "Last_90_days", "Last_365_days", "Previous_7_days", "Previous_30_days", "Previous_90_days", "Previous_365_days"], "column_name": "trend", "model": "{{ get_where_subquery(ref('platform__retention_metrics_trends_average_order_value')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_platform__retention_metrics_trends_average_order_value_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_platform__rete_25988fb6e08a41f493fef84c8e8c4e69.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.yml", "unique_id": "test.yoda.accepted_values_platform__retention_metrics_trends_average_order_value_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.0228a17bf2", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_trends_average_order_value", "accepted_values_platform__retention_metrics_trends_average_order_value_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days"], "alias": "accepted_values_platform__rete_25988fb6e08a41f493fef84c8e8c4e69", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_platform__rete_25988fb6e08a41f493fef84c8e8c4e69", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_platform__rete_25988fb6e08a41f493fef84c8e8c4e69"}, "created_at": 1700082679.015011, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_platform__rete_25988fb6e08a41f493fef84c8e8c4e69\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_trends_average_order_value", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_trends_average_order_value"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.yml/accepted_values_platform__rete_25988fb6e08a41f493fef84c8e8c4e69.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n trend as value_field,\n count(*) as n_records\n\n from dev_dkruh1.platform__retention_metrics_trends_average_order_value\n group by trend\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'Last_7_days','Last_30_days','Last_90_days','Last_365_days','Previous_7_days','Previous_30_days','Previous_90_days','Previous_365_days'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "trend", "file_key_name": "models.platform__retention_metrics_trends_average_order_value", "attached_node": "model.yoda.platform__retention_metrics_trends_average_order_value"}, "test.yoda.accepted_values_platform__retention_metrics_trends_average_sales_per_customer_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.c2853eef65": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["Last_7_days", "Last_30_days", "Last_90_days", "Last_365_days", "Previous_7_days", "Previous_30_days", "Previous_90_days", "Previous_365_days"], "column_name": "trend", "model": "{{ get_where_subquery(ref('platform__retention_metrics_trends_average_sales_per_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_platform__retention_metrics_trends_average_sales_per_customer_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_platform__rete_a50f7e04c696bf9689edfa97e6320a1d.sql", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.yml", "unique_id": "test.yoda.accepted_values_platform__retention_metrics_trends_average_sales_per_customer_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.c2853eef65", "fqn": ["yoda", "platform", "marts", "platform__retention_metrics_trends_average_sales_per_customer", "accepted_values_platform__retention_metrics_trends_average_sales_per_customer_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days"], "alias": "accepted_values_platform__rete_a50f7e04c696bf9689edfa97e6320a1d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_platform__rete_a50f7e04c696bf9689edfa97e6320a1d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_platform__rete_a50f7e04c696bf9689edfa97e6320a1d"}, "created_at": 1700082679.0688124, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_platform__rete_a50f7e04c696bf9689edfa97e6320a1d\") }}", "language": "sql", "refs": [{"name": "platform__retention_metrics_trends_average_sales_per_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__retention_metrics_trends_average_sales_per_customer"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.yml/accepted_values_platform__rete_a50f7e04c696bf9689edfa97e6320a1d.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n trend as value_field,\n count(*) as n_records\n\n from dev_dkruh1.platform__retention_metrics_trends_average_sales_per_customer\n group by trend\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'Last_7_days','Last_30_days','Last_90_days','Last_365_days','Previous_7_days','Previous_30_days','Previous_90_days','Previous_365_days'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "trend", "file_key_name": "models.platform__retention_metrics_trends_average_sales_per_customer", "attached_node": "model.yoda.platform__retention_metrics_trends_average_sales_per_customer"}, "test.yoda.not_null_platform__synergies_kpi_id.63385699ca": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform__synergies_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__synergies_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__synergies_kpi_id.sql", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml", "unique_id": "test.yoda.not_null_platform__synergies_kpi_id.63385699ca", "fqn": ["yoda", "platform", "marts", "platform__synergies_kpi", "not_null_platform__synergies_kpi_id"], "alias": "not_null_platform__synergies_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082679.177661, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__synergies_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__synergies_kpi"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml/not_null_platform__synergies_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__synergies_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform__synergies_kpi", "attached_node": "model.yoda.platform__synergies_kpi"}, "test.yoda.not_null_platform__synergies_kpi_synergy_id.c084deb6ce": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('platform__synergies_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__synergies_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__synergies_kpi_synergy_id.sql", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml", "unique_id": "test.yoda.not_null_platform__synergies_kpi_synergy_id.c084deb6ce", "fqn": ["yoda", "platform", "marts", "platform__synergies_kpi", "not_null_platform__synergies_kpi_synergy_id"], "alias": "not_null_platform__synergies_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082679.183496, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__synergies_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__synergies_kpi"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml/not_null_platform__synergies_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__synergies_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.platform__synergies_kpi", "attached_node": "model.yoda.platform__synergies_kpi"}, "test.yoda.not_null_platform__synergies_kpi_app_key.18962ec868": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('platform__synergies_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__synergies_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__synergies_kpi_app_key.sql", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml", "unique_id": "test.yoda.not_null_platform__synergies_kpi_app_key.18962ec868", "fqn": ["yoda", "platform", "marts", "platform__synergies_kpi", "not_null_platform__synergies_kpi_app_key"], "alias": "not_null_platform__synergies_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082679.1893744, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__synergies_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__synergies_kpi"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml/not_null_platform__synergies_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__synergies_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.platform__synergies_kpi", "attached_node": "model.yoda.platform__synergies_kpi"}, "test.yoda.not_null_platform__synergies_kpi_source_type.9b5bc448b1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('platform__synergies_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__synergies_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__synergies_kpi_source_type.sql", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml", "unique_id": "test.yoda.not_null_platform__synergies_kpi_source_type.9b5bc448b1", "fqn": ["yoda", "platform", "marts", "platform__synergies_kpi", "not_null_platform__synergies_kpi_source_type"], "alias": "not_null_platform__synergies_kpi_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082679.194797, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__synergies_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__synergies_kpi"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml/not_null_platform__synergies_kpi_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__synergies_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.platform__synergies_kpi", "attached_node": "model.yoda.platform__synergies_kpi"}, "test.yoda.not_null_platform__synergies_kpi_source_id.76aef20d60": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('platform__synergies_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform__synergies_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform__synergies_kpi_source_id.sql", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml", "unique_id": "test.yoda.not_null_platform__synergies_kpi_source_id.76aef20d60", "fqn": ["yoda", "platform", "marts", "platform__synergies_kpi", "not_null_platform__synergies_kpi_source_id"], "alias": "not_null_platform__synergies_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082679.2006602, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform__synergies_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__synergies_kpi"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml/not_null_platform__synergies_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform__synergies_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.platform__synergies_kpi", "attached_node": "model.yoda.platform__synergies_kpi"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform__synergies_kpi_1.778a1da858": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform__synergies_kpi')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform__synergies_kpi_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__6f82b223e6161024ca415edbbbef3abe.sql", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform__synergies_kpi_1.778a1da858", "fqn": ["yoda", "platform", "marts", "platform__synergies_kpi", "dbt_expectations_expect_table_row_count_to_be_between_platform__synergies_kpi_1"], "alias": "dbt_expectations_expect_table__6f82b223e6161024ca415edbbbef3abe", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__6f82b223e6161024ca415edbbbef3abe", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__6f82b223e6161024ca415edbbbef3abe"}, "created_at": 1700082679.2063065, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__6f82b223e6161024ca415edbbbef3abe\") }}", "language": "sql", "refs": [{"name": "platform__synergies_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__synergies_kpi"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml/dbt_expectations_expect_table__6f82b223e6161024ca415edbbbef3abe.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform__synergies_kpi\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform__synergies_kpi", "attached_node": "model.yoda.platform__synergies_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_platform__synergies_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id.f6c94956eb": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id", "order_id"], "model": "{{ get_where_subquery(ref('platform__synergies_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_platform__synergies_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_a71ff4dc07b6e4c51a2762e1c0b7cc8e.sql", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_platform__synergies_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id.f6c94956eb", "fqn": ["yoda", "platform", "marts", "platform__synergies_kpi", "dbt_utils_unique_combination_of_columns_platform__synergies_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id"], "alias": "dbt_utils_unique_combination_o_a71ff4dc07b6e4c51a2762e1c0b7cc8e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a71ff4dc07b6e4c51a2762e1c0b7cc8e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a71ff4dc07b6e4c51a2762e1c0b7cc8e"}, "created_at": 1700082679.213717, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a71ff4dc07b6e4c51a2762e1c0b7cc8e\") }}", "language": "sql", "refs": [{"name": "platform__synergies_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform__synergies_kpi"]}, "compiled_path": "target/compiled/yoda/models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.yml/dbt_utils_unique_combination_o_a71ff4dc07b6e4c51a2762e1c0b7cc8e.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, order_id\n from dev_dkruh1.platform__synergies_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, order_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform__synergies_kpi", "attached_node": "model.yoda.platform__synergies_kpi"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_created_1.36e5090435": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__account_created')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_created_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8cebd31022e5e289112fb5a0929d5278.sql", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_created_1.36e5090435", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__account_created", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_created_1"], "alias": "dbt_expectations_expect_table__8cebd31022e5e289112fb5a0929d5278", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8cebd31022e5e289112fb5a0929d5278", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8cebd31022e5e289112fb5a0929d5278"}, "created_at": 1700082681.356652, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8cebd31022e5e289112fb5a0929d5278\") }}", "language": "sql", "refs": [{"name": "platform_stg__account_created", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__account_created"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.yml/dbt_expectations_expect_table__8cebd31022e5e289112fb5a0929d5278.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__account_created\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__account_created", "attached_node": "model.yoda.platform_stg__account_created"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_platforms_1.24a52ed0f0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__account_platforms')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_platforms_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__42b8127d59486cbc58411c7fa0c7c0fa.sql", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_platforms_1.24a52ed0f0", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__account_platforms", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_platforms_1"], "alias": "dbt_expectations_expect_table__42b8127d59486cbc58411c7fa0c7c0fa", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__42b8127d59486cbc58411c7fa0c7c0fa", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__42b8127d59486cbc58411c7fa0c7c0fa"}, "created_at": 1700082681.3964462, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__42b8127d59486cbc58411c7fa0c7c0fa\") }}", "language": "sql", "refs": [{"name": "platform_stg__account_platforms", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__account_platforms"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.yml/dbt_expectations_expect_table__42b8127d59486cbc58411c7fa0c7c0fa.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__account_platforms\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__account_platforms", "attached_node": "model.yoda.platform_stg__account_platforms"}, "test.yoda.unique_platform_stg__accounts_id.fe64c3f0a5": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__accounts')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__accounts_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__accounts_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.yml", "unique_id": "test.yoda.unique_platform_stg__accounts_id.fe64c3f0a5", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__accounts", "unique_platform_stg__accounts_id"], "alias": "unique_platform_stg__accounts_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082681.4432435, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__accounts"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.yml/unique_platform_stg__accounts_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.platform_stg__accounts where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__accounts", "attached_node": "model.yoda.platform_stg__accounts"}, "test.yoda.not_null_platform_stg__accounts_id.108c0bdbbf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__accounts')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__accounts_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__accounts_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.yml", "unique_id": "test.yoda.not_null_platform_stg__accounts_id.108c0bdbbf", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__accounts", "not_null_platform_stg__accounts_id"], "alias": "not_null_platform_stg__accounts_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082681.449219, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__accounts"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.yml/not_null_platform_stg__accounts_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__accounts where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__accounts", "attached_node": "model.yoda.platform_stg__accounts"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__activation_step_1.93c0f37cd3": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__activation_step')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__activation_step_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ffd9c0761c08e2ce8f5d436efafaed78.sql", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__activation_step_1.93c0f37cd3", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__activation_step", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__activation_step_1"], "alias": "dbt_expectations_expect_table__ffd9c0761c08e2ce8f5d436efafaed78", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ffd9c0761c08e2ce8f5d436efafaed78", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ffd9c0761c08e2ce8f5d436efafaed78"}, "created_at": 1700082681.6115127, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ffd9c0761c08e2ce8f5d436efafaed78\") }}", "language": "sql", "refs": [{"name": "platform_stg__activation_step", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__activation_step"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.yml/dbt_expectations_expect_table__ffd9c0761c08e2ce8f5d436efafaed78.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__activation_step\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__activation_step", "attached_node": "model.yoda.platform_stg__activation_step"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_install_completed_1.5d1a24ef06": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__app_install_completed')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_install_completed_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__8adc3d36d245ad0a7c05935033c876f1.sql", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_install_completed_1.5d1a24ef06", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__app_install_completed", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_install_completed_1"], "alias": "dbt_expectations_expect_table__8adc3d36d245ad0a7c05935033c876f1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__8adc3d36d245ad0a7c05935033c876f1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__8adc3d36d245ad0a7c05935033c876f1"}, "created_at": 1700082681.6697695, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__8adc3d36d245ad0a7c05935033c876f1\") }}", "language": "sql", "refs": [{"name": "platform_stg__app_install_completed", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__app_install_completed"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.yml/dbt_expectations_expect_table__8adc3d36d245ad0a7c05935033c876f1.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__app_install_completed\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__app_install_completed", "attached_node": "model.yoda.platform_stg__app_install_completed"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_uninstalled_1.8d782dd9e0": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__app_uninstalled')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_uninstalled_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__44a45c0e7eafda2f0ddab70112a46e0c.sql", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_uninstalled_1.8d782dd9e0", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__app_uninstalled", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_uninstalled_1"], "alias": "dbt_expectations_expect_table__44a45c0e7eafda2f0ddab70112a46e0c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__44a45c0e7eafda2f0ddab70112a46e0c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__44a45c0e7eafda2f0ddab70112a46e0c"}, "created_at": 1700082681.7539814, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__44a45c0e7eafda2f0ddab70112a46e0c\") }}", "language": "sql", "refs": [{"name": "platform_stg__app_uninstalled", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__app_uninstalled"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.yml/dbt_expectations_expect_table__44a45c0e7eafda2f0ddab70112a46e0c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__app_uninstalled\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__app_uninstalled", "attached_node": "model.yoda.platform_stg__app_uninstalled"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__b2b_1.e1a5239104": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__b2b')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__b2b_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__771a46ec778e2cb9d829af724f46367b.sql", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__b2b_1.e1a5239104", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__b2b", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__b2b_1"], "alias": "dbt_expectations_expect_table__771a46ec778e2cb9d829af724f46367b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__771a46ec778e2cb9d829af724f46367b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__771a46ec778e2cb9d829af724f46367b"}, "created_at": 1700082681.8953571, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__771a46ec778e2cb9d829af724f46367b\") }}", "language": "sql", "refs": [{"name": "platform_stg__b2b", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__b2b"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.yml/dbt_expectations_expect_table__771a46ec778e2cb9d829af724f46367b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__b2b\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__b2b", "attached_node": "model.yoda.platform_stg__b2b"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__currency_rates_1.68f3e1bb6c": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__currency_rates')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__currency_rates_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ad0319112a9bd7a78b60f88b5d3a1f78.sql", "original_file_path": "models/platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__currency_rates_1.68f3e1bb6c", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__currency_rates", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__currency_rates_1"], "alias": "dbt_expectations_expect_table__ad0319112a9bd7a78b60f88b5d3a1f78", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ad0319112a9bd7a78b60f88b5d3a1f78", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ad0319112a9bd7a78b60f88b5d3a1f78"}, "created_at": 1700082681.977286, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ad0319112a9bd7a78b60f88b5d3a1f78\") }}", "language": "sql", "refs": [{"name": "platform_stg__currency_rates", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__currency_rates"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.yml/dbt_expectations_expect_table__ad0319112a9bd7a78b60f88b5d3a1f78.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__currency_rates\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__currency_rates", "attached_node": "model.yoda.platform_stg__currency_rates"}, "test.yoda.unique_platform_stg__fulfillments_id.bb76db0a7f": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__fulfillments')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__fulfillments_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__fulfillments_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.yml", "unique_id": "test.yoda.unique_platform_stg__fulfillments_id.bb76db0a7f", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__fulfillments", "unique_platform_stg__fulfillments_id"], "alias": "unique_platform_stg__fulfillments_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082682.219875, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__fulfillments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__fulfillments"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.yml/unique_platform_stg__fulfillments_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.platform_stg__fulfillments where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__fulfillments", "attached_node": "model.yoda.platform_stg__fulfillments"}, "test.yoda.not_null_platform_stg__fulfillments_id.5cdd9a9673": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__fulfillments')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__fulfillments_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__fulfillments_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.yml", "unique_id": "test.yoda.not_null_platform_stg__fulfillments_id.5cdd9a9673", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__fulfillments", "not_null_platform_stg__fulfillments_id"], "alias": "not_null_platform_stg__fulfillments_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082682.225617, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__fulfillments", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__fulfillments"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.yml/not_null_platform_stg__fulfillments_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__fulfillments where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__fulfillments", "attached_node": "model.yoda.platform_stg__fulfillments"}, "test.yoda.unique_platform_stg__limit_reached_message_id.c3b289bfa1": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "message_id", "model": "{{ get_where_subquery(ref('platform_stg__limit_reached')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__limit_reached_message_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__limit_reached_message_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.yml", "unique_id": "test.yoda.unique_platform_stg__limit_reached_message_id.c3b289bfa1", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__limit_reached", "unique_platform_stg__limit_reached_message_id"], "alias": "unique_platform_stg__limit_reached_message_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082682.3537428, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__limit_reached", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__limit_reached"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.yml/unique_platform_stg__limit_reached_message_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select message_id from dev_dkruh1.platform_stg__limit_reached where message_id is not null group by message_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "message_id", "file_key_name": "models.platform_stg__limit_reached", "attached_node": "model.yoda.platform_stg__limit_reached"}, "test.yoda.not_null_platform_stg__limit_reached_message_id.33f98204c4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "message_id", "model": "{{ get_where_subquery(ref('platform_stg__limit_reached')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__limit_reached_message_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__limit_reached_message_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.yml", "unique_id": "test.yoda.not_null_platform_stg__limit_reached_message_id.33f98204c4", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__limit_reached", "not_null_platform_stg__limit_reached_message_id"], "alias": "not_null_platform_stg__limit_reached_message_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082682.360377, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__limit_reached", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__limit_reached"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.yml/not_null_platform_stg__limit_reached_message_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__limit_reached where message_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "message_id", "file_key_name": "models.platform_stg__limit_reached", "attached_node": "model.yoda.platform_stg__limit_reached"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__limit_reached_1.404afcaf21": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__limit_reached')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__limit_reached_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__73422478999334fbbcb9a93e825d8110.sql", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__limit_reached_1.404afcaf21", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__limit_reached", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__limit_reached_1"], "alias": "dbt_expectations_expect_table__73422478999334fbbcb9a93e825d8110", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__73422478999334fbbcb9a93e825d8110", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__73422478999334fbbcb9a93e825d8110"}, "created_at": 1700082682.3665016, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__73422478999334fbbcb9a93e825d8110\") }}", "language": "sql", "refs": [{"name": "platform_stg__limit_reached", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__limit_reached"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.yml/dbt_expectations_expect_table__73422478999334fbbcb9a93e825d8110.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__limit_reached\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__limit_reached", "attached_node": "model.yoda.platform_stg__limit_reached"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onboarding_1.a724bde051": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__onboarding')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onboarding_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__21455ec58a41e051e53640d848ca48b8.sql", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onboarding_1.a724bde051", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__onboarding", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onboarding_1"], "alias": "dbt_expectations_expect_table__21455ec58a41e051e53640d848ca48b8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__21455ec58a41e051e53640d848ca48b8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__21455ec58a41e051e53640d848ca48b8"}, "created_at": 1700082682.5541677, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__21455ec58a41e051e53640d848ca48b8\") }}", "language": "sql", "refs": [{"name": "platform_stg__onboarding", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__onboarding"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.yml/dbt_expectations_expect_table__21455ec58a41e051e53640d848ca48b8.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__onboarding\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__onboarding", "attached_node": "model.yoda.platform_stg__onboarding"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v2_1.7bed67921a": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__onsite_v2')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v2_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3f7edda4d51057c5addcc9a0740ae44c.sql", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v2_1.7bed67921a", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__onsite_v2", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v2_1"], "alias": "dbt_expectations_expect_table__3f7edda4d51057c5addcc9a0740ae44c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3f7edda4d51057c5addcc9a0740ae44c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3f7edda4d51057c5addcc9a0740ae44c"}, "created_at": 1700082682.6466076, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3f7edda4d51057c5addcc9a0740ae44c\") }}", "language": "sql", "refs": [{"name": "platform_stg__onsite_v2", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__onsite_v2"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.yml/dbt_expectations_expect_table__3f7edda4d51057c5addcc9a0740ae44c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__onsite_v2\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__onsite_v2", "attached_node": "model.yoda.platform_stg__onsite_v2"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v3_1.c3022b0a33": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__onsite_v3')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v3_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4271611047250a23a6168f0d0fa84d86.sql", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v3_1.c3022b0a33", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__onsite_v3", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v3_1"], "alias": "dbt_expectations_expect_table__4271611047250a23a6168f0d0fa84d86", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4271611047250a23a6168f0d0fa84d86", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4271611047250a23a6168f0d0fa84d86"}, "created_at": 1700082682.7299573, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4271611047250a23a6168f0d0fa84d86\") }}", "language": "sql", "refs": [{"name": "platform_stg__onsite_v3", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__onsite_v3"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.yml/dbt_expectations_expect_table__4271611047250a23a6168f0d0fa84d86.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__onsite_v3\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__onsite_v3", "attached_node": "model.yoda.platform_stg__onsite_v3"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__order_lines_1.ce3b7be8f2": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__order_lines')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__order_lines_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__ad77f03967d84b85fc59aac3c93e7bc2.sql", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__order_lines_1.ce3b7be8f2", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__order_lines", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__order_lines_1"], "alias": "dbt_expectations_expect_table__ad77f03967d84b85fc59aac3c93e7bc2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__ad77f03967d84b85fc59aac3c93e7bc2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__ad77f03967d84b85fc59aac3c93e7bc2"}, "created_at": 1700082682.763575, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__ad77f03967d84b85fc59aac3c93e7bc2\") }}", "language": "sql", "refs": [{"name": "platform_stg__order_lines", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__order_lines"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.yml/dbt_expectations_expect_table__ad77f03967d84b85fc59aac3c93e7bc2.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__order_lines\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__order_lines", "attached_node": "model.yoda.platform_stg__order_lines"}, "test.yoda.not_null_platform_stg__orders_app_key.94d6cc8864": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('platform_stg__orders')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__orders_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__orders_app_key.sql", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.yml", "unique_id": "test.yoda.not_null_platform_stg__orders_app_key.94d6cc8864", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__orders", "not_null_platform_stg__orders_app_key"], "alias": "not_null_platform_stg__orders_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082682.8094795, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__orders"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__orders/platform_stg__orders.yml/not_null_platform_stg__orders_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__orders where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.platform_stg__orders", "attached_node": "model.yoda.platform_stg__orders"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__orders_1.39cf73c1b2": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__orders')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__orders_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3fa6c77f60028ce837857844c2a13e89.sql", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__orders_1.39cf73c1b2", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__orders", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__orders_1"], "alias": "dbt_expectations_expect_table__3fa6c77f60028ce837857844c2a13e89", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3fa6c77f60028ce837857844c2a13e89", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3fa6c77f60028ce837857844c2a13e89"}, "created_at": 1700082682.8157084, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3fa6c77f60028ce837857844c2a13e89\") }}", "language": "sql", "refs": [{"name": "platform_stg__orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__orders"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__orders/platform_stg__orders.yml/dbt_expectations_expect_table__3fa6c77f60028ce837857844c2a13e89.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__orders\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__orders", "attached_node": "model.yoda.platform_stg__orders"}, "test.yoda.unique_platform_stg__organizations_id.043a3c4fa9": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__organizations')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__organizations_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__organizations_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.yml", "unique_id": "test.yoda.unique_platform_stg__organizations_id.043a3c4fa9", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__organizations", "unique_platform_stg__organizations_id"], "alias": "unique_platform_stg__organizations_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082682.8372211, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__organizations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__organizations"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.yml/unique_platform_stg__organizations_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.platform_stg__organizations where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__organizations", "attached_node": "model.yoda.platform_stg__organizations"}, "test.yoda.not_null_platform_stg__organizations_id.17f56f00ec": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__organizations')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__organizations_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__organizations_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.yml", "unique_id": "test.yoda.not_null_platform_stg__organizations_id.17f56f00ec", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__organizations", "not_null_platform_stg__organizations_id"], "alias": "not_null_platform_stg__organizations_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082682.843064, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__organizations", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__organizations"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.yml/not_null_platform_stg__organizations_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__organizations where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__organizations", "attached_node": "model.yoda.platform_stg__organizations"}, "test.yoda.unique_platform_stg__packages_id.b938e21c3c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__packages')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__packages_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__packages_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.yml", "unique_id": "test.yoda.unique_platform_stg__packages_id.b938e21c3c", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__packages", "unique_platform_stg__packages_id"], "alias": "unique_platform_stg__packages_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082683.0805616, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__packages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__packages"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__packages/platform_stg__packages.yml/unique_platform_stg__packages_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.platform_stg__packages where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__packages", "attached_node": "model.yoda.platform_stg__packages"}, "test.yoda.not_null_platform_stg__packages_id.5b80680c17": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__packages')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__packages_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__packages_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.yml", "unique_id": "test.yoda.not_null_platform_stg__packages_id.5b80680c17", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__packages", "not_null_platform_stg__packages_id"], "alias": "not_null_platform_stg__packages_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082683.0862958, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__packages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__packages"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__packages/platform_stg__packages.yml/not_null_platform_stg__packages_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__packages where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__packages", "attached_node": "model.yoda.platform_stg__packages"}, "test.yoda.unique_platform_stg__platform_types_id.e61a91f579": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__platform_types')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__platform_types_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__platform_types_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.yml", "unique_id": "test.yoda.unique_platform_stg__platform_types_id.e61a91f579", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__platform_types", "unique_platform_stg__platform_types_id"], "alias": "unique_platform_stg__platform_types_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082683.1448674, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__platform_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__platform_types"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.yml/unique_platform_stg__platform_types_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.platform_stg__platform_types where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__platform_types", "attached_node": "model.yoda.platform_stg__platform_types"}, "test.yoda.not_null_platform_stg__platform_types_id.9199155447": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__platform_types')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__platform_types_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__platform_types_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.yml", "unique_id": "test.yoda.not_null_platform_stg__platform_types_id.9199155447", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__platform_types", "not_null_platform_stg__platform_types_id"], "alias": "not_null_platform_stg__platform_types_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082683.1510303, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__platform_types", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__platform_types"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.yml/not_null_platform_stg__platform_types_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__platform_types where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__platform_types", "attached_node": "model.yoda.platform_stg__platform_types"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__popup_displayed_1.7167e005f6": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__popup_displayed')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__popup_displayed_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3a6f4a34098b8057da252eaa661cc918.sql", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__popup_displayed_1.7167e005f6", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__popup_displayed", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__popup_displayed_1"], "alias": "dbt_expectations_expect_table__3a6f4a34098b8057da252eaa661cc918", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3a6f4a34098b8057da252eaa661cc918", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3a6f4a34098b8057da252eaa661cc918"}, "created_at": 1700082683.2770355, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3a6f4a34098b8057da252eaa661cc918\") }}", "language": "sql", "refs": [{"name": "platform_stg__popup_displayed", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__popup_displayed"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.yml/dbt_expectations_expect_table__3a6f4a34098b8057da252eaa661cc918.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__popup_displayed\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__popup_displayed", "attached_node": "model.yoda.platform_stg__popup_displayed"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__product_enabled_1.e4eb4c574d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__product_enabled')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__product_enabled_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__653d67dd4f010aafa60631cf142f64b3.sql", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__product_enabled_1.e4eb4c574d", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__product_enabled", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__product_enabled_1"], "alias": "dbt_expectations_expect_table__653d67dd4f010aafa60631cf142f64b3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__653d67dd4f010aafa60631cf142f64b3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__653d67dd4f010aafa60631cf142f64b3"}, "created_at": 1700082683.367879, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__653d67dd4f010aafa60631cf142f64b3\") }}", "language": "sql", "refs": [{"name": "platform_stg__product_enabled", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__product_enabled"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.yml/dbt_expectations_expect_table__653d67dd4f010aafa60631cf142f64b3.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__product_enabled\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__product_enabled", "attached_node": "model.yoda.platform_stg__product_enabled"}, "test.yoda.unique_platform_stg__store_platforms_id.86a9ff434c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__store_platforms')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__store_platforms_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__store_platforms_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.yml", "unique_id": "test.yoda.unique_platform_stg__store_platforms_id.86a9ff434c", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__store_platforms", "unique_platform_stg__store_platforms_id"], "alias": "unique_platform_stg__store_platforms_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082683.4681954, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__store_platforms", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__store_platforms"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.yml/unique_platform_stg__store_platforms_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.platform_stg__store_platforms where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__store_platforms", "attached_node": "model.yoda.platform_stg__store_platforms"}, "test.yoda.not_null_platform_stg__store_platforms_id.d38ec1c91c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('platform_stg__store_platforms')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__store_platforms_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__store_platforms_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.yml", "unique_id": "test.yoda.not_null_platform_stg__store_platforms_id.d38ec1c91c", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__store_platforms", "not_null_platform_stg__store_platforms_id"], "alias": "not_null_platform_stg__store_platforms_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082683.4753602, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__store_platforms", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__store_platforms"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.yml/not_null_platform_stg__store_platforms_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__store_platforms where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.platform_stg__store_platforms", "attached_node": "model.yoda.platform_stg__store_platforms"}, "test.yoda.unique_platform_stg__stores_store_id.245bf7c8f4": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('platform_stg__stores')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__stores_store_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__stores_store_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.yml", "unique_id": "test.yoda.unique_platform_stg__stores_store_id.245bf7c8f4", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__stores", "unique_platform_stg__stores_store_id"], "alias": "unique_platform_stg__stores_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082683.499634, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__stores", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__stores"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__stores/platform_stg__stores.yml/unique_platform_stg__stores_store_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select store_id from dev_dkruh1.platform_stg__stores where store_id is not null group by store_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.platform_stg__stores", "attached_node": "model.yoda.platform_stg__stores"}, "test.yoda.not_null_platform_stg__stores_store_id.eec556c579": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('platform_stg__stores')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__stores_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__stores_store_id.sql", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.yml", "unique_id": "test.yoda.not_null_platform_stg__stores_store_id.eec556c579", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__stores", "not_null_platform_stg__stores_store_id"], "alias": "not_null_platform_stg__stores_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082683.5054538, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__stores", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__stores"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__stores/platform_stg__stores.yml/not_null_platform_stg__stores_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__stores where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.platform_stg__stores", "attached_node": "model.yoda.platform_stg__stores"}, "test.yoda.unique_platform_stg__stores_app_key.b7ccbfec8b": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('platform_stg__stores')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__stores_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__stores_app_key.sql", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.yml", "unique_id": "test.yoda.unique_platform_stg__stores_app_key.b7ccbfec8b", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__stores", "unique_platform_stg__stores_app_key"], "alias": "unique_platform_stg__stores_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082683.5117004, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__stores", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__stores"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__stores/platform_stg__stores.yml/unique_platform_stg__stores_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.platform_stg__stores where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.platform_stg__stores", "attached_node": "model.yoda.platform_stg__stores"}, "test.yoda.not_null_platform_stg__stores_app_key.df3929b531": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('platform_stg__stores')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__stores_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__stores_app_key.sql", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.yml", "unique_id": "test.yoda.not_null_platform_stg__stores_app_key.df3929b531", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__stores", "not_null_platform_stg__stores_app_key"], "alias": "not_null_platform_stg__stores_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082683.5177045, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__stores", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__stores"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__stores/platform_stg__stores.yml/not_null_platform_stg__stores_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__stores where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.platform_stg__stores", "attached_node": "model.yoda.platform_stg__stores"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__timezone_country_mapping_1.71a0cfb06f": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__timezone_country_mapping')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__timezone_country_mapping_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7e5fd01f3fe8eba56b6d9cbcdf42e10e.sql", "original_file_path": "models/platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__timezone_country_mapping_1.71a0cfb06f", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__timezone_country_mapping", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__timezone_country_mapping_1"], "alias": "dbt_expectations_expect_table__7e5fd01f3fe8eba56b6d9cbcdf42e10e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7e5fd01f3fe8eba56b6d9cbcdf42e10e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7e5fd01f3fe8eba56b6d9cbcdf42e10e"}, "created_at": 1700082683.657649, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7e5fd01f3fe8eba56b6d9cbcdf42e10e\") }}", "language": "sql", "refs": [{"name": "platform_stg__timezone_country_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__timezone_country_mapping"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.yml/dbt_expectations_expect_table__7e5fd01f3fe8eba56b6d9cbcdf42e10e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__timezone_country_mapping\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__timezone_country_mapping", "attached_node": "model.yoda.platform_stg__timezone_country_mapping"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__uninstalled_yotpo_1.b2d53f31db": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__uninstalled_yotpo')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__uninstalled_yotpo_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c80c3b83b2d9fbe4ea541f302da3c7eb.sql", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__uninstalled_yotpo_1.b2d53f31db", "fqn": ["yoda", "platform", "staging", "base", "platform_stg__uninstalled_yotpo", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__uninstalled_yotpo_1"], "alias": "dbt_expectations_expect_table__c80c3b83b2d9fbe4ea541f302da3c7eb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c80c3b83b2d9fbe4ea541f302da3c7eb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c80c3b83b2d9fbe4ea541f302da3c7eb"}, "created_at": 1700082683.7714326, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c80c3b83b2d9fbe4ea541f302da3c7eb\") }}", "language": "sql", "refs": [{"name": "platform_stg__uninstalled_yotpo", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__uninstalled_yotpo"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.yml/dbt_expectations_expect_table__c80c3b83b2d9fbe4ea541f302da3c7eb.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__uninstalled_yotpo\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__uninstalled_yotpo", "attached_node": "model.yoda.platform_stg__uninstalled_yotpo"}, "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_customer_id.0500ea4ddb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_brand_affection')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__customer_dimensions_brand_affection_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__custome_86ffc72321ac53fc2fe9323a8e22f1c2.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml", "unique_id": "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_customer_id.0500ea4ddb", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_brand_affection", "not_null_platform_stg__customer_dimensions_brand_affection_customer_id"], "alias": "not_null_platform_stg__custome_86ffc72321ac53fc2fe9323a8e22f1c2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__custome_86ffc72321ac53fc2fe9323a8e22f1c2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__custome_86ffc72321ac53fc2fe9323a8e22f1c2"}, "created_at": 1700082683.9998493, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__custome_86ffc72321ac53fc2fe9323a8e22f1c2\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_brand_affection", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_brand_affection"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml/not_null_platform_stg__custome_86ffc72321ac53fc2fe9323a8e22f1c2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__customer_dimensions_brand_affection where customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.platform_stg__customer_dimensions_brand_affection", "attached_node": "model.yoda.platform_stg__customer_dimensions_brand_affection"}, "test.yoda.unique_platform_stg__customer_dimensions_brand_affection_customer_id.d2bc5d9b6f": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_brand_affection')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__customer_dimensions_brand_affection_customer_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__customer__7b5be47ae67e5c60e6aae1e3a6cbb234.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml", "unique_id": "test.yoda.unique_platform_stg__customer_dimensions_brand_affection_customer_id.d2bc5d9b6f", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_brand_affection", "unique_platform_stg__customer_dimensions_brand_affection_customer_id"], "alias": "unique_platform_stg__customer__7b5be47ae67e5c60e6aae1e3a6cbb234", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_platform_stg__customer__7b5be47ae67e5c60e6aae1e3a6cbb234", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_platform_stg__customer__7b5be47ae67e5c60e6aae1e3a6cbb234"}, "created_at": 1700082684.0059164, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_platform_stg__customer__7b5be47ae67e5c60e6aae1e3a6cbb234\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_brand_affection", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_brand_affection"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml/unique_platform_stg__customer__7b5be47ae67e5c60e6aae1e3a6cbb234.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select customer_id from dev_dkruh1.platform_stg__customer_dimensions_brand_affection where customer_id is not null group by customer_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.platform_stg__customer_dimensions_brand_affection", "attached_node": "model.yoda.platform_stg__customer_dimensions_brand_affection"}, "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_brand_affection.294dc11b1c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "brand_affection", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_brand_affection')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__customer_dimensions_brand_affection_brand_affection", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__custome_3ff6d6e5cad140dfccabd27855f71560.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml", "unique_id": "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_brand_affection.294dc11b1c", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_brand_affection", "not_null_platform_stg__customer_dimensions_brand_affection_brand_affection"], "alias": "not_null_platform_stg__custome_3ff6d6e5cad140dfccabd27855f71560", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__custome_3ff6d6e5cad140dfccabd27855f71560", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__custome_3ff6d6e5cad140dfccabd27855f71560"}, "created_at": 1700082684.0123148, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__custome_3ff6d6e5cad140dfccabd27855f71560\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_brand_affection", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_brand_affection"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml/not_null_platform_stg__custome_3ff6d6e5cad140dfccabd27855f71560.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__customer_dimensions_brand_affection where brand_affection is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "brand_affection", "file_key_name": "models.platform_stg__customer_dimensions_brand_affection", "attached_node": "model.yoda.platform_stg__customer_dimensions_brand_affection"}, "test.yoda.accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection__Advocate__Likes__Disappointed__Hater__N_A.6de3a1c638": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["Advocate", "Likes", "Disappointed", "Hater", "N/A"], "column_name": "brand_affection", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_brand_affection')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection__Advocate__Likes__Disappointed__Hater__N_A", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_platform_stg___fa324d6144471e57862c6f7886d09302.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml", "unique_id": "test.yoda.accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection__Advocate__Likes__Disappointed__Hater__N_A.6de3a1c638", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_brand_affection", "accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection__Advocate__Likes__Disappointed__Hater__N_A"], "alias": "accepted_values_platform_stg___fa324d6144471e57862c6f7886d09302", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_platform_stg___fa324d6144471e57862c6f7886d09302", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_platform_stg___fa324d6144471e57862c6f7886d09302"}, "created_at": 1700082684.0190544, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_platform_stg___fa324d6144471e57862c6f7886d09302\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_brand_affection", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_brand_affection"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml/accepted_values_platform_stg___fa324d6144471e57862c6f7886d09302.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n brand_affection as value_field,\n count(*) as n_records\n\n from dev_dkruh1.platform_stg__customer_dimensions_brand_affection\n group by brand_affection\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'Advocate','Likes','Disappointed','Hater','N/A'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "brand_affection", "file_key_name": "models.platform_stg__customer_dimensions_brand_affection", "attached_node": "model.yoda.platform_stg__customer_dimensions_brand_affection"}, "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_brand_affection_rank.a8fff1d958": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "brand_affection_rank", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_brand_affection')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__customer_dimensions_brand_affection_brand_affection_rank", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__custome_1bc8d0bdb06d97cb9a92dd3c808f3cb4.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml", "unique_id": "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_brand_affection_rank.a8fff1d958", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_brand_affection", "not_null_platform_stg__customer_dimensions_brand_affection_brand_affection_rank"], "alias": "not_null_platform_stg__custome_1bc8d0bdb06d97cb9a92dd3c808f3cb4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__custome_1bc8d0bdb06d97cb9a92dd3c808f3cb4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__custome_1bc8d0bdb06d97cb9a92dd3c808f3cb4"}, "created_at": 1700082684.0278826, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__custome_1bc8d0bdb06d97cb9a92dd3c808f3cb4\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_brand_affection", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_brand_affection"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml/not_null_platform_stg__custome_1bc8d0bdb06d97cb9a92dd3c808f3cb4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__customer_dimensions_brand_affection where brand_affection_rank is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "brand_affection_rank", "file_key_name": "models.platform_stg__customer_dimensions_brand_affection", "attached_node": "model.yoda.platform_stg__customer_dimensions_brand_affection"}, "test.yoda.accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection_rank__0__1__2__3__4.520afa83f7": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1, 2, 3, 4], "column_name": "brand_affection_rank", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_brand_affection')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection_rank__0__1__2__3__4", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_platform_stg___b00387b3007bd0e2823a75ee6b1a4aac.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml", "unique_id": "test.yoda.accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection_rank__0__1__2__3__4.520afa83f7", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_brand_affection", "accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection_rank__0__1__2__3__4"], "alias": "accepted_values_platform_stg___b00387b3007bd0e2823a75ee6b1a4aac", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_platform_stg___b00387b3007bd0e2823a75ee6b1a4aac", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_platform_stg___b00387b3007bd0e2823a75ee6b1a4aac"}, "created_at": 1700082684.0343554, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_platform_stg___b00387b3007bd0e2823a75ee6b1a4aac\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_brand_affection", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_brand_affection"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.yml/accepted_values_platform_stg___b00387b3007bd0e2823a75ee6b1a4aac.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n brand_affection_rank as value_field,\n count(*) as n_records\n\n from dev_dkruh1.platform_stg__customer_dimensions_brand_affection\n group by brand_affection_rank\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1','2','3','4'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "brand_affection_rank", "file_key_name": "models.platform_stg__customer_dimensions_brand_affection", "attached_node": "model.yoda.platform_stg__customer_dimensions_brand_affection"}, "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_customer_id.5ee49bfb4a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_engagement_marketing_material')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__customer_dimensions_engagement_marketing_material_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__custome_65ba51db546448a1f02ed27086074013.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml", "unique_id": "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_customer_id.5ee49bfb4a", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_engagement_marketing_material", "not_null_platform_stg__customer_dimensions_engagement_marketing_material_customer_id"], "alias": "not_null_platform_stg__custome_65ba51db546448a1f02ed27086074013", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__custome_65ba51db546448a1f02ed27086074013", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__custome_65ba51db546448a1f02ed27086074013"}, "created_at": 1700082684.1009965, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__custome_65ba51db546448a1f02ed27086074013\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_engagement_marketing_material", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml/not_null_platform_stg__custome_65ba51db546448a1f02ed27086074013.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__customer_dimensions_engagement_marketing_material where customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.platform_stg__customer_dimensions_engagement_marketing_material", "attached_node": "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"}, "test.yoda.unique_platform_stg__customer_dimensions_engagement_marketing_material_customer_id.d9f15debd3": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_engagement_marketing_material')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__customer_dimensions_engagement_marketing_material_customer_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__customer__4fdf9cbafc27e283ae006094facddb56.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml", "unique_id": "test.yoda.unique_platform_stg__customer_dimensions_engagement_marketing_material_customer_id.d9f15debd3", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_engagement_marketing_material", "unique_platform_stg__customer_dimensions_engagement_marketing_material_customer_id"], "alias": "unique_platform_stg__customer__4fdf9cbafc27e283ae006094facddb56", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_platform_stg__customer__4fdf9cbafc27e283ae006094facddb56", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_platform_stg__customer__4fdf9cbafc27e283ae006094facddb56"}, "created_at": 1700082684.107056, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_platform_stg__customer__4fdf9cbafc27e283ae006094facddb56\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_engagement_marketing_material", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml/unique_platform_stg__customer__4fdf9cbafc27e283ae006094facddb56.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select customer_id from dev_dkruh1.platform_stg__customer_dimensions_engagement_marketing_material where customer_id is not null group by customer_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.platform_stg__customer_dimensions_engagement_marketing_material", "attached_node": "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"}, "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material.b8949619fc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "engagement_with_marketing_material", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_engagement_marketing_material')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__custome_6e18a9ad8101b075daa5a25477065027.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml", "unique_id": "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material.b8949619fc", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_engagement_marketing_material", "not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material"], "alias": "not_null_platform_stg__custome_6e18a9ad8101b075daa5a25477065027", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__custome_6e18a9ad8101b075daa5a25477065027", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__custome_6e18a9ad8101b075daa5a25477065027"}, "created_at": 1700082684.1137266, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__custome_6e18a9ad8101b075daa5a25477065027\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_engagement_marketing_material", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml/not_null_platform_stg__custome_6e18a9ad8101b075daa5a25477065027.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__customer_dimensions_engagement_marketing_material where engagement_with_marketing_material is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "engagement_with_marketing_material", "file_key_name": "models.platform_stg__customer_dimensions_engagement_marketing_material", "attached_node": "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"}, "test.yoda.accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material__Not_an_SMS_User__Unsubscribed__Ignores__Newcomer__Engaging__Highly_Engaged.b5b7c56881": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["Not an SMS User", "Unsubscribed", "Ignores", "Newcomer", "Engaging", "Highly Engaged"], "column_name": "engagement_with_marketing_material", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_engagement_marketing_material')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material__Not_an_SMS_User__Unsubscribed__Ignores__Newcomer__Engaging__Highly_Engaged", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_platform_stg___fbf1eb2372ee821fc1cd8e6e5085414c.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml", "unique_id": "test.yoda.accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material__Not_an_SMS_User__Unsubscribed__Ignores__Newcomer__Engaging__Highly_Engaged.b5b7c56881", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_engagement_marketing_material", "accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material__Not_an_SMS_User__Unsubscribed__Ignores__Newcomer__Engaging__Highly_Engaged"], "alias": "accepted_values_platform_stg___fbf1eb2372ee821fc1cd8e6e5085414c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_platform_stg___fbf1eb2372ee821fc1cd8e6e5085414c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_platform_stg___fbf1eb2372ee821fc1cd8e6e5085414c"}, "created_at": 1700082684.1198177, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_platform_stg___fbf1eb2372ee821fc1cd8e6e5085414c\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_engagement_marketing_material", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml/accepted_values_platform_stg___fbf1eb2372ee821fc1cd8e6e5085414c.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n engagement_with_marketing_material as value_field,\n count(*) as n_records\n\n from dev_dkruh1.platform_stg__customer_dimensions_engagement_marketing_material\n group by engagement_with_marketing_material\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'Not an SMS User','Unsubscribed','Ignores','Newcomer','Engaging','Highly Engaged'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "engagement_with_marketing_material", "file_key_name": "models.platform_stg__customer_dimensions_engagement_marketing_material", "attached_node": "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"}, "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank.0236e69b6e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "engagement_with_marketing_material_rank", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_engagement_marketing_material')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__custome_762c508aa5af510ffde2e725008517b8.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml", "unique_id": "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank.0236e69b6e", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_engagement_marketing_material", "not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank"], "alias": "not_null_platform_stg__custome_762c508aa5af510ffde2e725008517b8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__custome_762c508aa5af510ffde2e725008517b8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__custome_762c508aa5af510ffde2e725008517b8"}, "created_at": 1700082684.1304462, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__custome_762c508aa5af510ffde2e725008517b8\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_engagement_marketing_material", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml/not_null_platform_stg__custome_762c508aa5af510ffde2e725008517b8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__customer_dimensions_engagement_marketing_material where engagement_with_marketing_material_rank is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "engagement_with_marketing_material_rank", "file_key_name": "models.platform_stg__customer_dimensions_engagement_marketing_material", "attached_node": "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"}, "test.yoda.accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank__0__1__2__3__4__5.411d931f2d": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1, 2, 3, 4, 5], "column_name": "engagement_with_marketing_material_rank", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_engagement_marketing_material')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank__0__1__2__3__4__5", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_platform_stg___04529c085456634df718e71a3597d345.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml", "unique_id": "test.yoda.accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank__0__1__2__3__4__5.411d931f2d", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_engagement_marketing_material", "accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank__0__1__2__3__4__5"], "alias": "accepted_values_platform_stg___04529c085456634df718e71a3597d345", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_platform_stg___04529c085456634df718e71a3597d345", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_platform_stg___04529c085456634df718e71a3597d345"}, "created_at": 1700082684.1425676, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_platform_stg___04529c085456634df718e71a3597d345\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_engagement_marketing_material", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.yml/accepted_values_platform_stg___04529c085456634df718e71a3597d345.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n engagement_with_marketing_material_rank as value_field,\n count(*) as n_records\n\n from dev_dkruh1.platform_stg__customer_dimensions_engagement_marketing_material\n group by engagement_with_marketing_material_rank\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1','2','3','4','5'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "engagement_with_marketing_material_rank", "file_key_name": "models.platform_stg__customer_dimensions_engagement_marketing_material", "attached_node": "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"}, "test.yoda.not_null_platform_stg__customer_dimensions_loyalty_program_customer_id.9a4c56f4fd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_loyalty_program')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__customer_dimensions_loyalty_program_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__custome_190e5c141edda12afe51433898cd0c20.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.yml", "unique_id": "test.yoda.not_null_platform_stg__customer_dimensions_loyalty_program_customer_id.9a4c56f4fd", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_loyalty_program", "not_null_platform_stg__customer_dimensions_loyalty_program_customer_id"], "alias": "not_null_platform_stg__custome_190e5c141edda12afe51433898cd0c20", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__custome_190e5c141edda12afe51433898cd0c20", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__custome_190e5c141edda12afe51433898cd0c20"}, "created_at": 1700082684.4070294, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__custome_190e5c141edda12afe51433898cd0c20\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_loyalty_program", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_loyalty_program"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.yml/not_null_platform_stg__custome_190e5c141edda12afe51433898cd0c20.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__customer_dimensions_loyalty_program where customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.platform_stg__customer_dimensions_loyalty_program", "attached_node": "model.yoda.platform_stg__customer_dimensions_loyalty_program"}, "test.yoda.unique_platform_stg__customer_dimensions_loyalty_program_customer_id.d5724ded6a": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_loyalty_program')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__customer_dimensions_loyalty_program_customer_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__customer__40d77528423903a6ce2923a63f23d6b8.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.yml", "unique_id": "test.yoda.unique_platform_stg__customer_dimensions_loyalty_program_customer_id.d5724ded6a", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_loyalty_program", "unique_platform_stg__customer_dimensions_loyalty_program_customer_id"], "alias": "unique_platform_stg__customer__40d77528423903a6ce2923a63f23d6b8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_platform_stg__customer__40d77528423903a6ce2923a63f23d6b8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_platform_stg__customer__40d77528423903a6ce2923a63f23d6b8"}, "created_at": 1700082684.4133728, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_platform_stg__customer__40d77528423903a6ce2923a63f23d6b8\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_loyalty_program", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_loyalty_program"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.yml/unique_platform_stg__customer__40d77528423903a6ce2923a63f23d6b8.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select customer_id from dev_dkruh1.platform_stg__customer_dimensions_loyalty_program where customer_id is not null group by customer_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.platform_stg__customer_dimensions_loyalty_program", "attached_node": "model.yoda.platform_stg__customer_dimensions_loyalty_program"}, "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_customer_id.c8bbbe4528": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_returning_buyers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__customer_dimensions_returning_buyers_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__custome_04bed05202b97abeab245035ca84591f.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml", "unique_id": "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_customer_id.c8bbbe4528", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_returning_buyers", "not_null_platform_stg__customer_dimensions_returning_buyers_customer_id"], "alias": "not_null_platform_stg__custome_04bed05202b97abeab245035ca84591f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__custome_04bed05202b97abeab245035ca84591f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__custome_04bed05202b97abeab245035ca84591f"}, "created_at": 1700082684.4478474, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__custome_04bed05202b97abeab245035ca84591f\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_returning_buyers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml/not_null_platform_stg__custome_04bed05202b97abeab245035ca84591f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__customer_dimensions_returning_buyers where customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.platform_stg__customer_dimensions_returning_buyers", "attached_node": "model.yoda.platform_stg__customer_dimensions_returning_buyers"}, "test.yoda.unique_platform_stg__customer_dimensions_returning_buyers_customer_id.8e16ea8dcd": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_returning_buyers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__customer_dimensions_returning_buyers_customer_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__customer__e61023e86374ba08a73447ee518fd53a.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml", "unique_id": "test.yoda.unique_platform_stg__customer_dimensions_returning_buyers_customer_id.8e16ea8dcd", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_returning_buyers", "unique_platform_stg__customer_dimensions_returning_buyers_customer_id"], "alias": "unique_platform_stg__customer__e61023e86374ba08a73447ee518fd53a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "unique_platform_stg__customer__e61023e86374ba08a73447ee518fd53a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "unique_platform_stg__customer__e61023e86374ba08a73447ee518fd53a"}, "created_at": 1700082684.4559429, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_platform_stg__customer__e61023e86374ba08a73447ee518fd53a\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_returning_buyers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml/unique_platform_stg__customer__e61023e86374ba08a73447ee518fd53a.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select customer_id from dev_dkruh1.platform_stg__customer_dimensions_returning_buyers where customer_id is not null group by customer_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.platform_stg__customer_dimensions_returning_buyers", "attached_node": "model.yoda.platform_stg__customer_dimensions_returning_buyers"}, "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers.88abcb6a5a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "returning_buyers", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_returning_buyers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__custome_646483fe79c396f5962d211faf09c9d1.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml", "unique_id": "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers.88abcb6a5a", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_returning_buyers", "not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers"], "alias": "not_null_platform_stg__custome_646483fe79c396f5962d211faf09c9d1", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__custome_646483fe79c396f5962d211faf09c9d1", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__custome_646483fe79c396f5962d211faf09c9d1"}, "created_at": 1700082684.4629748, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__custome_646483fe79c396f5962d211faf09c9d1\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_returning_buyers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml/not_null_platform_stg__custome_646483fe79c396f5962d211faf09c9d1.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__customer_dimensions_returning_buyers where returning_buyers is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_buyers", "file_key_name": "models.platform_stg__customer_dimensions_returning_buyers", "attached_node": "model.yoda.platform_stg__customer_dimensions_returning_buyers"}, "test.yoda.accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers__Prospects__Single_Purchase__Repeat_Purchase__Frequent_Shopper.43cf54a015": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["Prospects", "Single Purchase", "Repeat Purchase", "Frequent Shopper"], "column_name": "returning_buyers", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_returning_buyers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers__Prospects__Single_Purchase__Repeat_Purchase__Frequent_Shopper", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_platform_stg___c97729ee76d6bdf12a54bb3a1c53229b.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml", "unique_id": "test.yoda.accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers__Prospects__Single_Purchase__Repeat_Purchase__Frequent_Shopper.43cf54a015", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_returning_buyers", "accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers__Prospects__Single_Purchase__Repeat_Purchase__Frequent_Shopper"], "alias": "accepted_values_platform_stg___c97729ee76d6bdf12a54bb3a1c53229b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_platform_stg___c97729ee76d6bdf12a54bb3a1c53229b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_platform_stg___c97729ee76d6bdf12a54bb3a1c53229b"}, "created_at": 1700082684.4691796, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_platform_stg___c97729ee76d6bdf12a54bb3a1c53229b\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_returning_buyers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml/accepted_values_platform_stg___c97729ee76d6bdf12a54bb3a1c53229b.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n returning_buyers as value_field,\n count(*) as n_records\n\n from dev_dkruh1.platform_stg__customer_dimensions_returning_buyers\n group by returning_buyers\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'Prospects','Single Purchase','Repeat Purchase','Frequent Shopper'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_buyers", "file_key_name": "models.platform_stg__customer_dimensions_returning_buyers", "attached_node": "model.yoda.platform_stg__customer_dimensions_returning_buyers"}, "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank.736fcf711c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "returning_buyers_rank", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_returning_buyers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__custome_4182245c2ff62e8e25a39888e77c59ca.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml", "unique_id": "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank.736fcf711c", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_returning_buyers", "not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank"], "alias": "not_null_platform_stg__custome_4182245c2ff62e8e25a39888e77c59ca", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__custome_4182245c2ff62e8e25a39888e77c59ca", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__custome_4182245c2ff62e8e25a39888e77c59ca"}, "created_at": 1700082684.477541, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__custome_4182245c2ff62e8e25a39888e77c59ca\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_returning_buyers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml/not_null_platform_stg__custome_4182245c2ff62e8e25a39888e77c59ca.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__customer_dimensions_returning_buyers where returning_buyers_rank is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_buyers_rank", "file_key_name": "models.platform_stg__customer_dimensions_returning_buyers", "attached_node": "model.yoda.platform_stg__customer_dimensions_returning_buyers"}, "test.yoda.accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank__0__1__2__3.494420f036": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": [0, 1, 2, 3], "column_name": "returning_buyers_rank", "model": "{{ get_where_subquery(ref('platform_stg__customer_dimensions_returning_buyers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank__0__1__2__3", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_platform_stg___9f6e9f62817febef061fb17a2eda0827.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml", "unique_id": "test.yoda.accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank__0__1__2__3.494420f036", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__customer_dimensions_returning_buyers", "accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank__0__1__2__3"], "alias": "accepted_values_platform_stg___9f6e9f62817febef061fb17a2eda0827", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_platform_stg___9f6e9f62817febef061fb17a2eda0827", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_platform_stg___9f6e9f62817febef061fb17a2eda0827"}, "created_at": 1700082684.4841387, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_platform_stg___9f6e9f62817febef061fb17a2eda0827\") }}", "language": "sql", "refs": [{"name": "platform_stg__customer_dimensions_returning_buyers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.yml/accepted_values_platform_stg___9f6e9f62817febef061fb17a2eda0827.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n returning_buyers_rank as value_field,\n count(*) as n_records\n\n from dev_dkruh1.platform_stg__customer_dimensions_returning_buyers\n group by returning_buyers_rank\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n '0','1','2','3'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "returning_buyers_rank", "file_key_name": "models.platform_stg__customer_dimensions_returning_buyers", "attached_node": "model.yoda.platform_stg__customer_dimensions_returning_buyers"}, "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_engaged_customer.4817581c98": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "avg_per_engaged_customer", "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_engaged_customer", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__retenti_311fbb778b5dc555a49c0ee4a7c8e71d.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.yml", "unique_id": "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_engaged_customer.4817581c98", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_engaged_customer"], "alias": "not_null_platform_stg__retenti_311fbb778b5dc555a49c0ee4a7c8e71d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__retenti_311fbb778b5dc555a49c0ee4a7c8e71d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__retenti_311fbb778b5dc555a49c0ee4a7c8e71d"}, "created_at": 1700082684.6938496, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__retenti_311fbb778b5dc555a49c0ee4a7c8e71d\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.yml/not_null_platform_stg__retenti_311fbb778b5dc555a49c0ee4a7c8e71d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer where avg_per_engaged_customer is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "avg_per_engaged_customer", "file_key_name": "models.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "attached_node": "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer"}, "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_returning_customer.e644585ce1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "avg_per_returning_customer", "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_returning_customer", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__retenti_9e6b3010f443b9cef09be59352cd7178.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.yml", "unique_id": "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_returning_customer.e644585ce1", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_returning_customer"], "alias": "not_null_platform_stg__retenti_9e6b3010f443b9cef09be59352cd7178", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__retenti_9e6b3010f443b9cef09be59352cd7178", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__retenti_9e6b3010f443b9cef09be59352cd7178"}, "created_at": 1700082684.69991, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__retenti_9e6b3010f443b9cef09be59352cd7178\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.yml/not_null_platform_stg__retenti_9e6b3010f443b9cef09be59352cd7178.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer where avg_per_returning_customer is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "avg_per_returning_customer", "file_key_name": "models.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "attached_node": "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer"}, "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_new_customer.4a8fee0d84": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "avg_per_new_customer", "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_new_customer", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__retenti_b9e3f35ec0ef78c223dd9cb4703b0718.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.yml", "unique_id": "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_new_customer.4a8fee0d84", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_new_customer"], "alias": "not_null_platform_stg__retenti_b9e3f35ec0ef78c223dd9cb4703b0718", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__retenti_b9e3f35ec0ef78c223dd9cb4703b0718", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__retenti_b9e3f35ec0ef78c223dd9cb4703b0718"}, "created_at": 1700082684.7063181, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__retenti_b9e3f35ec0ef78c223dd9cb4703b0718\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.yml/not_null_platform_stg__retenti_b9e3f35ec0ef78c223dd9cb4703b0718.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer where avg_per_new_customer is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "avg_per_new_customer", "file_key_name": "models.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "attached_node": "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer"}, "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_engaged_customers.c606e37c8a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "aov_for_engaged_customers", "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_previous_segment_for_trend_average_order_value')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_engaged_customers", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__retenti_a904d1bfcdf62ac909043446b744a928.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.yml", "unique_id": "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_engaged_customers.c606e37c8a", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_engaged_customers"], "alias": "not_null_platform_stg__retenti_a904d1bfcdf62ac909043446b744a928", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__retenti_a904d1bfcdf62ac909043446b744a928", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__retenti_a904d1bfcdf62ac909043446b744a928"}, "created_at": 1700082684.825297, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__retenti_a904d1bfcdf62ac909043446b744a928\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.yml/not_null_platform_stg__retenti_a904d1bfcdf62ac909043446b744a928.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value where aov_for_engaged_customers is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "aov_for_engaged_customers", "file_key_name": "models.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "attached_node": "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"}, "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_returning_customers.cd98bc4e12": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "aov_for_returning_customers", "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_previous_segment_for_trend_average_order_value')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_returning_customers", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__retenti_a59f38a476c4931b3cd69f76aa89d306.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.yml", "unique_id": "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_returning_customers.cd98bc4e12", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_returning_customers"], "alias": "not_null_platform_stg__retenti_a59f38a476c4931b3cd69f76aa89d306", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__retenti_a59f38a476c4931b3cd69f76aa89d306", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__retenti_a59f38a476c4931b3cd69f76aa89d306"}, "created_at": 1700082684.8331153, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__retenti_a59f38a476c4931b3cd69f76aa89d306\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.yml/not_null_platform_stg__retenti_a59f38a476c4931b3cd69f76aa89d306.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value where aov_for_returning_customers is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "aov_for_returning_customers", "file_key_name": "models.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "attached_node": "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"}, "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_new_customers.fb8eb7382a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "aov_for_new_customers", "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_previous_segment_for_trend_average_order_value')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_new_customers", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__retenti_ccc3f979b5a06432f06812e2502ccc35.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.yml", "unique_id": "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_new_customers.fb8eb7382a", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_new_customers"], "alias": "not_null_platform_stg__retenti_ccc3f979b5a06432f06812e2502ccc35", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__retenti_ccc3f979b5a06432f06812e2502ccc35", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__retenti_ccc3f979b5a06432f06812e2502ccc35"}, "created_at": 1700082684.8404462, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__retenti_ccc3f979b5a06432f06812e2502ccc35\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.yml/not_null_platform_stg__retenti_ccc3f979b5a06432f06812e2502ccc35.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value where aov_for_new_customers is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "aov_for_new_customers", "file_key_name": "models.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "attached_node": "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"}, "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_engaged_customer.dfe71027cd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "avg_per_engaged_customer", "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_engaged_customer", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__retenti_cdc966bf2211fd2044d146e056a906e4.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.yml", "unique_id": "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_engaged_customer.dfe71027cd", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_engaged_customer"], "alias": "not_null_platform_stg__retenti_cdc966bf2211fd2044d146e056a906e4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__retenti_cdc966bf2211fd2044d146e056a906e4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__retenti_cdc966bf2211fd2044d146e056a906e4"}, "created_at": 1700082684.8648427, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__retenti_cdc966bf2211fd2044d146e056a906e4\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.yml/not_null_platform_stg__retenti_cdc966bf2211fd2044d146e056a906e4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer where avg_per_engaged_customer is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "avg_per_engaged_customer", "file_key_name": "models.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "attached_node": "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"}, "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_returning_customer.361c352a44": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "avg_per_returning_customer", "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_returning_customer", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__retenti_311f80f6fc7b25efd780fd6e24593610.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.yml", "unique_id": "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_returning_customer.361c352a44", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_returning_customer"], "alias": "not_null_platform_stg__retenti_311f80f6fc7b25efd780fd6e24593610", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__retenti_311f80f6fc7b25efd780fd6e24593610", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__retenti_311f80f6fc7b25efd780fd6e24593610"}, "created_at": 1700082684.8711505, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__retenti_311f80f6fc7b25efd780fd6e24593610\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.yml/not_null_platform_stg__retenti_311f80f6fc7b25efd780fd6e24593610.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer where avg_per_returning_customer is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "avg_per_returning_customer", "file_key_name": "models.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "attached_node": "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"}, "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_new_customer.af4e49837b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "avg_per_new_customer", "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_new_customer", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__retenti_26fb185126256e1b3b61d97ba930d88a.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.yml", "unique_id": "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_new_customer.af4e49837b", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_new_customer"], "alias": "not_null_platform_stg__retenti_26fb185126256e1b3b61d97ba930d88a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__retenti_26fb185126256e1b3b61d97ba930d88a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__retenti_26fb185126256e1b3b61d97ba930d88a"}, "created_at": 1700082684.8782122, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__retenti_26fb185126256e1b3b61d97ba930d88a\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.yml/not_null_platform_stg__retenti_26fb185126256e1b3b61d97ba930d88a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer where avg_per_new_customer is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "avg_per_new_customer", "file_key_name": "models.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "attached_node": "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"}, "test.yoda.not_null_platform_stg__retention_metrics_segmented_customers_app_key.a4a568f4a4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_segmented_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__retention_metrics_segmented_customers_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__retenti_b6e054df1ea3ccde38a7b22e78cd7a74.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.yml", "unique_id": "test.yoda.not_null_platform_stg__retention_metrics_segmented_customers_app_key.a4a568f4a4", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_segmented_customers", "not_null_platform_stg__retention_metrics_segmented_customers_app_key"], "alias": "not_null_platform_stg__retenti_b6e054df1ea3ccde38a7b22e78cd7a74", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__retenti_b6e054df1ea3ccde38a7b22e78cd7a74", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__retenti_b6e054df1ea3ccde38a7b22e78cd7a74"}, "created_at": 1700082684.9022532, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__retenti_b6e054df1ea3ccde38a7b22e78cd7a74\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_segmented_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_segmented_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.yml/not_null_platform_stg__retenti_b6e054df1ea3ccde38a7b22e78cd7a74.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__retention_metrics_segmented_customers where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.platform_stg__retention_metrics_segmented_customers", "attached_node": "model.yoda.platform_stg__retention_metrics_segmented_customers"}, "test.yoda.not_null_platform_stg__retention_metrics_segmented_customers_external_customer_id.28244c2486": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_customer_id", "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_segmented_customers')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__retention_metrics_segmented_customers_external_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__retenti_bd98a8e9e770b21e8e3bc1e394f0c99f.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.yml", "unique_id": "test.yoda.not_null_platform_stg__retention_metrics_segmented_customers_external_customer_id.28244c2486", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_segmented_customers", "not_null_platform_stg__retention_metrics_segmented_customers_external_customer_id"], "alias": "not_null_platform_stg__retenti_bd98a8e9e770b21e8e3bc1e394f0c99f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_platform_stg__retenti_bd98a8e9e770b21e8e3bc1e394f0c99f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_platform_stg__retenti_bd98a8e9e770b21e8e3bc1e394f0c99f"}, "created_at": 1700082684.9087021, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_platform_stg__retenti_bd98a8e9e770b21e8e3bc1e394f0c99f\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_segmented_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_segmented_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.yml/not_null_platform_stg__retenti_bd98a8e9e770b21e8e3bc1e394f0c99f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__retention_metrics_segmented_customers where external_customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_customer_id", "file_key_name": "models.platform_stg__retention_metrics_segmented_customers", "attached_node": "model.yoda.platform_stg__retention_metrics_segmented_customers"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__retention_metrics_segmented_customers_1.a572a0f956": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_segmented_customers')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__retention_metrics_segmented_customers_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__0db461ccf8f20080fa524fed62cc073e.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__retention_metrics_segmented_customers_1.a572a0f956", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_segmented_customers", "dbt_expectations_expect_table_row_count_to_be_between_platform_stg__retention_metrics_segmented_customers_1"], "alias": "dbt_expectations_expect_table__0db461ccf8f20080fa524fed62cc073e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__0db461ccf8f20080fa524fed62cc073e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__0db461ccf8f20080fa524fed62cc073e"}, "created_at": 1700082684.9157388, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__0db461ccf8f20080fa524fed62cc073e\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_segmented_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_segmented_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.yml/dbt_expectations_expect_table__0db461ccf8f20080fa524fed62cc073e.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.platform_stg__retention_metrics_segmented_customers\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__retention_metrics_segmented_customers", "attached_node": "model.yoda.platform_stg__retention_metrics_segmented_customers"}, "test.yoda.dbt_utils_unique_combination_of_columns_platform_stg__retention_metrics_segmented_customers_external_customer_id__app_key.5c0c405e9f": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["external_customer_id", "app_key"], "model": "{{ get_where_subquery(ref('platform_stg__retention_metrics_segmented_customers')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_platform_stg__retention_metrics_segmented_customers_external_customer_id__app_key", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_3009f92285c3b012ec13c26fdca5487b.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_platform_stg__retention_metrics_segmented_customers_external_customer_id__app_key.5c0c405e9f", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__retention_metrics_segmented_customers", "dbt_utils_unique_combination_of_columns_platform_stg__retention_metrics_segmented_customers_external_customer_id__app_key"], "alias": "dbt_utils_unique_combination_o_3009f92285c3b012ec13c26fdca5487b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_3009f92285c3b012ec13c26fdca5487b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_3009f92285c3b012ec13c26fdca5487b"}, "created_at": 1700082684.9226673, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_3009f92285c3b012ec13c26fdca5487b\") }}", "language": "sql", "refs": [{"name": "platform_stg__retention_metrics_segmented_customers", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__retention_metrics_segmented_customers"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.yml/dbt_utils_unique_combination_o_3009f92285c3b012ec13c26fdca5487b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n external_customer_id, app_key\n from dev_dkruh1.platform_stg__retention_metrics_segmented_customers\n group by external_customer_id, app_key\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__retention_metrics_segmented_customers", "attached_node": "model.yoda.platform_stg__retention_metrics_segmented_customers"}, "test.yoda.not_null_platform_stg__synergy_product_mapping_synergy_id.3b7caadd31": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('platform_stg__synergy_product_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__synergy_product_mapping_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__synergy_product_mapping_synergy_id.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.yml", "unique_id": "test.yoda.not_null_platform_stg__synergy_product_mapping_synergy_id.3b7caadd31", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__synergy_product_mapping", "not_null_platform_stg__synergy_product_mapping_synergy_id"], "alias": "not_null_platform_stg__synergy_product_mapping_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.0225568, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__synergy_product_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__synergy_product_mapping"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.yml/not_null_platform_stg__synergy_product_mapping_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__synergy_product_mapping where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.platform_stg__synergy_product_mapping", "attached_node": "model.yoda.platform_stg__synergy_product_mapping"}, "test.yoda.accepted_values_platform_stg__synergy_product_mapping_product_name__reviews__loyalty__sms__email__subscriptions.97c67a96be": {"test_metadata": {"name": "accepted_values", "kwargs": {"values": ["reviews", "loyalty", "sms", "email", "subscriptions"], "column_name": "product_name", "model": "{{ get_where_subquery(ref('platform_stg__synergy_product_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "accepted_values_platform_stg__synergy_product_mapping_product_name__reviews__loyalty__sms__email__subscriptions", "resource_type": "test", "package_name": "yoda", "path": "accepted_values_platform_stg___f145614ea36a1c365847933a474362fc.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.yml", "unique_id": "test.yoda.accepted_values_platform_stg__synergy_product_mapping_product_name__reviews__loyalty__sms__email__subscriptions.97c67a96be", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__synergy_product_mapping", "accepted_values_platform_stg__synergy_product_mapping_product_name__reviews__loyalty__sms__email__subscriptions"], "alias": "accepted_values_platform_stg___f145614ea36a1c365847933a474362fc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "accepted_values_platform_stg___f145614ea36a1c365847933a474362fc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_platform_stg___f145614ea36a1c365847933a474362fc"}, "created_at": 1700082685.0285983, "relation_name": null, "raw_code": "{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias=\"accepted_values_platform_stg___f145614ea36a1c365847933a474362fc\") }}", "language": "sql", "refs": [{"name": "platform_stg__synergy_product_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__synergy_product_mapping"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.yml/accepted_values_platform_stg___f145614ea36a1c365847933a474362fc.sql", "compiled": true, "compiled_code": "\n \n \n\nwith all_values as (\n\n select\n product_name as value_field,\n count(*) as n_records\n\n from dev_dkruh1.platform_stg__synergy_product_mapping\n group by product_name\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'reviews','loyalty','sms','email','subscriptions'\n)\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_name", "file_key_name": "models.platform_stg__synergy_product_mapping", "attached_node": "model.yoda.platform_stg__synergy_product_mapping"}, "test.yoda.dbt_utils_unique_combination_of_columns_platform_stg__synergy_product_mapping_synergy_id__product_name.c1289ab79c": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "product_name"], "model": "{{ get_where_subquery(ref('platform_stg__synergy_product_mapping')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_platform_stg__synergy_product_mapping_synergy_id__product_name", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_9b58e2b6ec8cfd7bcd98c91ef26b49e3.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_platform_stg__synergy_product_mapping_synergy_id__product_name.c1289ab79c", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__synergy_product_mapping", "dbt_utils_unique_combination_of_columns_platform_stg__synergy_product_mapping_synergy_id__product_name"], "alias": "dbt_utils_unique_combination_o_9b58e2b6ec8cfd7bcd98c91ef26b49e3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_9b58e2b6ec8cfd7bcd98c91ef26b49e3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_9b58e2b6ec8cfd7bcd98c91ef26b49e3"}, "created_at": 1700082685.0373116, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_9b58e2b6ec8cfd7bcd98c91ef26b49e3\") }}", "language": "sql", "refs": [{"name": "platform_stg__synergy_product_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__synergy_product_mapping"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.yml/dbt_utils_unique_combination_o_9b58e2b6ec8cfd7bcd98c91ef26b49e3.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, product_name\n from dev_dkruh1.platform_stg__synergy_product_mapping\n group by synergy_id, product_name\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.platform_stg__synergy_product_mapping", "attached_node": "model.yoda.platform_stg__synergy_product_mapping"}, "test.yoda.unique_platform_stg__synergy_start_date_mapping_synergy_id.c18d65c2a6": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('platform_stg__synergy_start_date_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_platform_stg__synergy_start_date_mapping_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "unique_platform_stg__synergy_start_date_mapping_synergy_id.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.yml", "unique_id": "test.yoda.unique_platform_stg__synergy_start_date_mapping_synergy_id.c18d65c2a6", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__synergy_start_date_mapping", "unique_platform_stg__synergy_start_date_mapping_synergy_id"], "alias": "unique_platform_stg__synergy_start_date_mapping_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082685.0615008, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__synergy_start_date_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__synergy_start_date_mapping"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.yml/unique_platform_stg__synergy_start_date_mapping_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select synergy_id from dev_dkruh1.platform_stg__synergy_start_date_mapping where synergy_id is not null group by synergy_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.platform_stg__synergy_start_date_mapping", "attached_node": "model.yoda.platform_stg__synergy_start_date_mapping"}, "test.yoda.not_null_platform_stg__synergy_start_date_mapping_synergy_id.5212293e31": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('platform_stg__synergy_start_date_mapping')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_platform_stg__synergy_start_date_mapping_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_platform_stg__synergy_start_date_mapping_synergy_id.sql", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.yml", "unique_id": "test.yoda.not_null_platform_stg__synergy_start_date_mapping_synergy_id.5212293e31", "fqn": ["yoda", "platform", "staging", "marts_compatible", "platform_stg__synergy_start_date_mapping", "not_null_platform_stg__synergy_start_date_mapping_synergy_id"], "alias": "not_null_platform_stg__synergy_start_date_mapping_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.0676458, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "platform_stg__synergy_start_date_mapping", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.platform_stg__synergy_start_date_mapping"]}, "compiled_path": "target/compiled/yoda/models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.yml/not_null_platform_stg__synergy_start_date_mapping_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.platform_stg__synergy_start_date_mapping where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.platform_stg__synergy_start_date_mapping", "attached_node": "model.yoda.platform_stg__synergy_start_date_mapping"}, "test.yoda.not_null_sms__api_calls_with_customer_user_id.f8e8b23d65": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_id", "model": "{{ get_where_subquery(ref('sms__api_calls_with_customer')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__api_calls_with_customer_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__api_calls_with_customer_user_id.sql", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.yml", "unique_id": "test.yoda.not_null_sms__api_calls_with_customer_user_id.f8e8b23d65", "fqn": ["yoda", "sms", "marts", "sms__api_calls_with_customer", "not_null_sms__api_calls_with_customer_user_id"], "alias": "not_null_sms__api_calls_with_customer_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.2029798, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__api_calls_with_customer", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__api_calls_with_customer"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.yml/not_null_sms__api_calls_with_customer_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__api_calls_with_customer where user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_id", "file_key_name": "models.sms__api_calls_with_customer", "attached_node": "model.yoda.sms__api_calls_with_customer"}, "test.yoda.not_null_sms__flows_links_clicks_sms_id.47edf277e7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_id", "model": "{{ get_where_subquery(ref('sms__flows_links_clicks')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__flows_links_clicks_sms_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__flows_links_clicks_sms_id.sql", "original_file_path": "models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.yml", "unique_id": "test.yoda.not_null_sms__flows_links_clicks_sms_id.47edf277e7", "fqn": ["yoda", "sms", "marts", "sms__flows_links_clicks", "not_null_sms__flows_links_clicks_sms_id"], "alias": "not_null_sms__flows_links_clicks_sms_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.2453558, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__flows_links_clicks", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__flows_links_clicks"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.yml/not_null_sms__flows_links_clicks_sms_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__flows_links_clicks where sms_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_id", "file_key_name": "models.sms__flows_links_clicks", "attached_node": "model.yoda.sms__flows_links_clicks"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_id.876a000616": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_email_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_id.876a000616", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_id"], "alias": "not_null_sms__loyalty_sms_campaigns_email_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.275501, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_campaigns_email_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.unique_sms__loyalty_sms_campaigns_email_kpi_id.b6adae0854": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__loyalty_sms_campaigns_email_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__loyalty_sms_campaigns_email_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.unique_sms__loyalty_sms_campaigns_email_kpi_id.b6adae0854", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "unique_sms__loyalty_sms_campaigns_email_kpi_id"], "alias": "unique_sms__loyalty_sms_campaigns_email_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082685.2819526, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/unique_sms__loyalty_sms_campaigns_email_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_synergy_id.c8ac09f1a3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_email_kpi_synergy_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_synergy_id.c8ac09f1a3", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_synergy_id"], "alias": "not_null_sms__loyalty_sms_campaigns_email_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.287713, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_campaigns_email_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_source_type.d7634be10e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_email_kpi_source_type.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_source_type.d7634be10e", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_source_type"], "alias": "not_null_sms__loyalty_sms_campaigns_email_kpi_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.2940295, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_campaigns_email_kpi_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_source_id.5c4747d9c5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_email_kpi_source_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_source_id.5c4747d9c5", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_source_id"], "alias": "not_null_sms__loyalty_sms_campaigns_email_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.3002708, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_campaigns_email_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_order_id.7a9802c74e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_email_kpi_order_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_order_id.7a9802c74e", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_order_id"], "alias": "not_null_sms__loyalty_sms_campaigns_email_kpi_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.30605, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_campaigns_email_kpi_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_type.fcd941d58b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_action_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_email_kpi_action_type.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_type.fcd941d58b", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_action_type"], "alias": "not_null_sms__loyalty_sms_campaigns_email_kpi_action_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.3122578, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_campaigns_email_kpi_action_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where action_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_type", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_id.624ec53ba1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_action_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_email_kpi_action_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_id.624ec53ba1", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_action_id"], "alias": "not_null_sms__loyalty_sms_campaigns_email_kpi_action_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.3182497, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_campaigns_email_kpi_action_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where action_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_type.d4340dd655": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_f286087dc8e67e20cd8efce0fb6d493f.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_type.d4340dd655", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_type"], "alias": "not_null_sms__loyalty_sms_camp_f286087dc8e67e20cd8efce0fb6d493f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_f286087dc8e67e20cd8efce0fb6d493f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_f286087dc8e67e20cd8efce0fb6d493f"}, "created_at": 1700082685.3238833, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_f286087dc8e67e20cd8efce0fb6d493f\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_camp_f286087dc8e67e20cd8efce0fb6d493f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where action_attribute_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_type", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_value.508891a2d5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_value", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_value", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_33140a05b8841650b2a05257769e6914.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_value.508891a2d5", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_value"], "alias": "not_null_sms__loyalty_sms_camp_33140a05b8841650b2a05257769e6914", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_33140a05b8841650b2a05257769e6914", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_33140a05b8841650b2a05257769e6914"}, "created_at": 1700082685.3305867, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_33140a05b8841650b2a05257769e6914\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_camp_33140a05b8841650b2a05257769e6914.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where action_attribute_value is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_value", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_app_key.a732afb837": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_email_kpi_app_key.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_app_key.a732afb837", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_app_key"], "alias": "not_null_sms__loyalty_sms_campaigns_email_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.3375242, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_campaigns_email_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_customer_external_id.a17da066ab": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_b494ad1a7930dfddadecf42ac733ff4c.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_customer_external_id.a17da066ab", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_customer_external_id"], "alias": "not_null_sms__loyalty_sms_camp_b494ad1a7930dfddadecf42ac733ff4c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_b494ad1a7930dfddadecf42ac733ff4c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_b494ad1a7930dfddadecf42ac733ff4c"}, "created_at": 1700082685.3437252, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_b494ad1a7930dfddadecf42ac733ff4c\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_camp_b494ad1a7930dfddadecf42ac733ff4c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at.5834ffd156": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at.5834ffd156", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "not_null_sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at"], "alias": "not_null_sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.34998, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/not_null_sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.b6016711ef": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_224d876243bb222bd7914fe798e14540.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.b6016711ef", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_kpi", "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_224d876243bb222bd7914fe798e14540", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_224d876243bb222bd7914fe798e14540", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_224d876243bb222bd7914fe798e14540"}, "created_at": 1700082685.355996, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_224d876243bb222bd7914fe798e14540\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.yml/dbt_utils_unique_combination_o_224d876243bb222bd7914fe798e14540.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.sms__loyalty_sms_campaigns_email_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__loyalty_sms_campaigns_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.8fcc0c462e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.8fcc0c462e", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_id"], "alias": "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.3906565, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml/not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "test.yoda.unique_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.4692fd125d": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__loyalty_sms_campaigns_email_reward_program_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "unique_id": "test.yoda.unique_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.4692fd125d", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "unique_sms__loyalty_sms_campaigns_email_reward_program_kpi_id"], "alias": "unique_sms__loyalty_sms_campaigns_email_reward_program_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082685.3966875, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml/unique_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id.7792d2184d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_3c9b0f33a12641ed047c2384c834ba69.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id.7792d2184d", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id"], "alias": "not_null_sms__loyalty_sms_camp_3c9b0f33a12641ed047c2384c834ba69", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_3c9b0f33a12641ed047c2384c834ba69", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_3c9b0f33a12641ed047c2384c834ba69"}, "created_at": 1700082685.402908, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_3c9b0f33a12641ed047c2384c834ba69\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_3c9b0f33a12641ed047c2384c834ba69.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_type.f068a64fc3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_ac9bf6415bb403935689d2c5bc73da76.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_type.f068a64fc3", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_type"], "alias": "not_null_sms__loyalty_sms_camp_ac9bf6415bb403935689d2c5bc73da76", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_ac9bf6415bb403935689d2c5bc73da76", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_ac9bf6415bb403935689d2c5bc73da76"}, "created_at": 1700082685.4094276, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_ac9bf6415bb403935689d2c5bc73da76\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_ac9bf6415bb403935689d2c5bc73da76.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.sms__loyalty_sms_campaigns_email_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_id.8a8140253f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_4a8d51671d8bffccc5ceaf4b1ccad55a.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_id.8a8140253f", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_id"], "alias": "not_null_sms__loyalty_sms_camp_4a8d51671d8bffccc5ceaf4b1ccad55a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_4a8d51671d8bffccc5ceaf4b1ccad55a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_4a8d51671d8bffccc5ceaf4b1ccad55a"}, "created_at": 1700082685.4157422, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_4a8d51671d8bffccc5ceaf4b1ccad55a\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_4a8d51671d8bffccc5ceaf4b1ccad55a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_action_type.168d81f897": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_action_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_29e36ff1be9eb79b15af6eda9b19a85a.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_action_type.168d81f897", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_action_type"], "alias": "not_null_sms__loyalty_sms_camp_29e36ff1be9eb79b15af6eda9b19a85a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_29e36ff1be9eb79b15af6eda9b19a85a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_29e36ff1be9eb79b15af6eda9b19a85a"}, "created_at": 1700082685.4221833, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_29e36ff1be9eb79b15af6eda9b19a85a\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_29e36ff1be9eb79b15af6eda9b19a85a.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi where action_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_type", "file_key_name": "models.sms__loyalty_sms_campaigns_email_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_app_key.a6956fba6e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_0e303010e9611ff09819e922544ddcb0.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_app_key.a6956fba6e", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_app_key"], "alias": "not_null_sms__loyalty_sms_camp_0e303010e9611ff09819e922544ddcb0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_0e303010e9611ff09819e922544ddcb0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_0e303010e9611ff09819e922544ddcb0"}, "created_at": 1700082685.4288862, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_0e303010e9611ff09819e922544ddcb0\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_0e303010e9611ff09819e922544ddcb0.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms__loyalty_sms_campaigns_email_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_email.ab214f3db2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_email", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_email", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_370ac5400ff972b362a41247df8f6496.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_email.ab214f3db2", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_email"], "alias": "not_null_sms__loyalty_sms_camp_370ac5400ff972b362a41247df8f6496", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_370ac5400ff972b362a41247df8f6496", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_370ac5400ff972b362a41247df8f6496"}, "created_at": 1700082685.434996, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_370ac5400ff972b362a41247df8f6496\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_370ac5400ff972b362a41247df8f6496.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi where customer_email is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_email", "file_key_name": "models.sms__loyalty_sms_campaigns_email_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_external_id.8976e49a9b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_e6d2e133e055b7df219496197aff58a9.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_external_id.8976e49a9b", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_external_id"], "alias": "not_null_sms__loyalty_sms_camp_e6d2e133e055b7df219496197aff58a9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_e6d2e133e055b7df219496197aff58a9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_e6d2e133e055b7df219496197aff58a9"}, "created_at": 1700082685.4415, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_e6d2e133e055b7df219496197aff58a9\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_e6d2e133e055b7df219496197aff58a9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.sms__loyalty_sms_campaigns_email_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_dwh_updated_at.f8e7467368": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_0dd3fb9c309a948eb1ec45b64755ef70.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_dwh_updated_at.f8e7467368", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_dwh_updated_at"], "alias": "not_null_sms__loyalty_sms_camp_0dd3fb9c309a948eb1ec45b64755ef70", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_0dd3fb9c309a948eb1ec45b64755ef70", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_0dd3fb9c309a948eb1ec45b64755ef70"}, "created_at": 1700082685.4492564, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_0dd3fb9c309a948eb1ec45b64755ef70\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_0dd3fb9c309a948eb1ec45b64755ef70.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.sms__loyalty_sms_campaigns_email_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.1dcf47bfa1": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_email_reward_program_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_57bd9764f4a9d97b0d3bac837843fcbc.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.1dcf47bfa1", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_email_reward_program_kpi", "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_57bd9764f4a9d97b0d3bac837843fcbc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_57bd9764f4a9d97b0d3bac837843fcbc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_57bd9764f4a9d97b0d3bac837843fcbc"}, "created_at": 1700082685.455662, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_57bd9764f4a9d97b0d3bac837843fcbc\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.yml/dbt_utils_unique_combination_o_57bd9764f4a9d97b0d3bac837843fcbc.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.sms__loyalty_sms_campaigns_email_reward_program_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__loyalty_sms_campaigns_email_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_id.1d52c5a45a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_sms_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_id.1d52c5a45a", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_id"], "alias": "not_null_sms__loyalty_sms_campaigns_sms_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.4891682, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_campaigns_sms_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.unique_sms__loyalty_sms_campaigns_sms_kpi_id.2ea7e0c8d9": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__loyalty_sms_campaigns_sms_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__loyalty_sms_campaigns_sms_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.unique_sms__loyalty_sms_campaigns_sms_kpi_id.2ea7e0c8d9", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "unique_sms__loyalty_sms_campaigns_sms_kpi_id"], "alias": "unique_sms__loyalty_sms_campaigns_sms_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082685.4955597, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/unique_sms__loyalty_sms_campaigns_sms_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_synergy_id.29588cfb6d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_sms_kpi_synergy_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_synergy_id.29588cfb6d", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_synergy_id"], "alias": "not_null_sms__loyalty_sms_campaigns_sms_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.501862, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_campaigns_sms_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_source_type.82066434ea": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_sms_kpi_source_type.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_source_type.82066434ea", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_source_type"], "alias": "not_null_sms__loyalty_sms_campaigns_sms_kpi_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.5081015, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_campaigns_sms_kpi_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_source_id.3080489abe": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_sms_kpi_source_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_source_id.3080489abe", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_source_id"], "alias": "not_null_sms__loyalty_sms_campaigns_sms_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.5147274, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_campaigns_sms_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_order_id.1476d35105": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_sms_kpi_order_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_order_id.1476d35105", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_order_id"], "alias": "not_null_sms__loyalty_sms_campaigns_sms_kpi_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.5208879, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_campaigns_sms_kpi_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_type.aa91be5ee0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_type.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_type.aa91be5ee0", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_type"], "alias": "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.5266, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_campaigns_sms_kpi_action_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where action_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_type", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_id.624ebb2739": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_id.624ebb2739", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_id"], "alias": "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.5345118, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_campaigns_sms_kpi_action_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where action_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_type.56ebc598e7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_9901570ae317d73cede4b07eb9912d34.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_type.56ebc598e7", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_type"], "alias": "not_null_sms__loyalty_sms_camp_9901570ae317d73cede4b07eb9912d34", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_9901570ae317d73cede4b07eb9912d34", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_9901570ae317d73cede4b07eb9912d34"}, "created_at": 1700082685.5407183, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_9901570ae317d73cede4b07eb9912d34\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_camp_9901570ae317d73cede4b07eb9912d34.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where action_attribute_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_type", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_value.f689171e11": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_value", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_value", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_bfaab8d34640480541ba528c621f0d81.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_value.f689171e11", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_value"], "alias": "not_null_sms__loyalty_sms_camp_bfaab8d34640480541ba528c621f0d81", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_bfaab8d34640480541ba528c621f0d81", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_bfaab8d34640480541ba528c621f0d81"}, "created_at": 1700082685.547267, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_bfaab8d34640480541ba528c621f0d81\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_camp_bfaab8d34640480541ba528c621f0d81.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where action_attribute_value is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_value", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_app_key.75f77ce3d9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_sms_kpi_app_key.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_app_key.75f77ce3d9", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_app_key"], "alias": "not_null_sms__loyalty_sms_campaigns_sms_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.5535202, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_campaigns_sms_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_customer_external_id.d15d22c39c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_917854a3d6fc58177e37095bdf2aa5ed.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_customer_external_id.d15d22c39c", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_customer_external_id"], "alias": "not_null_sms__loyalty_sms_camp_917854a3d6fc58177e37095bdf2aa5ed", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_917854a3d6fc58177e37095bdf2aa5ed", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_917854a3d6fc58177e37095bdf2aa5ed"}, "created_at": 1700082685.5601387, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_917854a3d6fc58177e37095bdf2aa5ed\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_camp_917854a3d6fc58177e37095bdf2aa5ed.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at.6b390e3d5f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at.6b390e3d5f", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "not_null_sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at"], "alias": "not_null_sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.5672889, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/not_null_sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_kpi_1.3487732497": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_kpi_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__3ea5bbbd56d2af1f9853bf37050ef428.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_kpi_1.3487732497", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_kpi_1"], "alias": "dbt_expectations_expect_table__3ea5bbbd56d2af1f9853bf37050ef428", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__3ea5bbbd56d2af1f9853bf37050ef428", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__3ea5bbbd56d2af1f9853bf37050ef428"}, "created_at": 1700082685.5730827, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__3ea5bbbd56d2af1f9853bf37050ef428\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/dbt_expectations_expect_table__3ea5bbbd56d2af1f9853bf37050ef428.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.9f08c066bc": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_661d2cf1cb82342c1bc26def21535bbc.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.9f08c066bc", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_kpi", "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_661d2cf1cb82342c1bc26def21535bbc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_661d2cf1cb82342c1bc26def21535bbc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_661d2cf1cb82342c1bc26def21535bbc"}, "created_at": 1700082685.5800617, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_661d2cf1cb82342c1bc26def21535bbc\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.yml/dbt_utils_unique_combination_o_661d2cf1cb82342c1bc26def21535bbc.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.sms__loyalty_sms_campaigns_sms_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__loyalty_sms_campaigns_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.3396dbb221": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.3396dbb221", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id"], "alias": "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.6140285, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml/not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "test.yoda.unique_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.84772316a7": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "unique_id": "test.yoda.unique_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.84772316a7", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "unique_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id"], "alias": "unique_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082685.6199067, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml/unique_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id.80690303ed": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_a394bb796e37d86112d174bb996a9a82.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id.80690303ed", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id"], "alias": "not_null_sms__loyalty_sms_camp_a394bb796e37d86112d174bb996a9a82", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_a394bb796e37d86112d174bb996a9a82", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_a394bb796e37d86112d174bb996a9a82"}, "created_at": 1700082685.6264708, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_a394bb796e37d86112d174bb996a9a82\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_a394bb796e37d86112d174bb996a9a82.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_type.1b19985470": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_3da7e036004f1ccc288b3c73cf6b8602.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_type.1b19985470", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_type"], "alias": "not_null_sms__loyalty_sms_camp_3da7e036004f1ccc288b3c73cf6b8602", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_3da7e036004f1ccc288b3c73cf6b8602", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_3da7e036004f1ccc288b3c73cf6b8602"}, "created_at": 1700082685.6329892, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_3da7e036004f1ccc288b3c73cf6b8602\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_3da7e036004f1ccc288b3c73cf6b8602.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_id.10736984ea": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_fa256b9fadfb86c517935c86764cff86.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_id.10736984ea", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_id"], "alias": "not_null_sms__loyalty_sms_camp_fa256b9fadfb86c517935c86764cff86", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_fa256b9fadfb86c517935c86764cff86", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_fa256b9fadfb86c517935c86764cff86"}, "created_at": 1700082685.6391537, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_fa256b9fadfb86c517935c86764cff86\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_fa256b9fadfb86c517935c86764cff86.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_type.000ee33b9c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_c91bbe880dea6b2db274f047d750535d.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_type.000ee33b9c", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_type"], "alias": "not_null_sms__loyalty_sms_camp_c91bbe880dea6b2db274f047d750535d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_c91bbe880dea6b2db274f047d750535d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_c91bbe880dea6b2db274f047d750535d"}, "created_at": 1700082685.645908, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_c91bbe880dea6b2db274f047d750535d\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_c91bbe880dea6b2db274f047d750535d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi where action_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_type", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_app_key.0265c2319c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_5f58be06bf3019a72973fb4b6bc0443d.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_app_key.0265c2319c", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_app_key"], "alias": "not_null_sms__loyalty_sms_camp_5f58be06bf3019a72973fb4b6bc0443d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_5f58be06bf3019a72973fb4b6bc0443d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_5f58be06bf3019a72973fb4b6bc0443d"}, "created_at": 1700082685.652466, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_5f58be06bf3019a72973fb4b6bc0443d\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_5f58be06bf3019a72973fb4b6bc0443d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_external_id.f41a283a9d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_13182a3a068a8dda2dbf5a764e727304.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_external_id.f41a283a9d", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_external_id"], "alias": "not_null_sms__loyalty_sms_camp_13182a3a068a8dda2dbf5a764e727304", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_13182a3a068a8dda2dbf5a764e727304", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_13182a3a068a8dda2dbf5a764e727304"}, "created_at": 1700082685.6585793, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_13182a3a068a8dda2dbf5a764e727304\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_13182a3a068a8dda2dbf5a764e727304.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_dwh_updated_at.d964462cac": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_reward_program_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_camp_70233819bdbddf0e96c4465b1796d6b9.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_dwh_updated_at.d964462cac", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_dwh_updated_at"], "alias": "not_null_sms__loyalty_sms_camp_70233819bdbddf0e96c4465b1796d6b9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__loyalty_sms_camp_70233819bdbddf0e96c4465b1796d6b9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__loyalty_sms_camp_70233819bdbddf0e96c4465b1796d6b9"}, "created_at": 1700082685.6651819, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__loyalty_sms_camp_70233819bdbddf0e96c4465b1796d6b9\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml/not_null_sms__loyalty_sms_camp_70233819bdbddf0e96c4465b1796d6b9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_reward_program_kpi_1.bf4c051deb": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_reward_program_kpi')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_reward_program_kpi_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__a5f50df2c6c1f6dff9b57e8874afe5be.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_reward_program_kpi_1.bf4c051deb", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_reward_program_kpi_1"], "alias": "dbt_expectations_expect_table__a5f50df2c6c1f6dff9b57e8874afe5be", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__a5f50df2c6c1f6dff9b57e8874afe5be", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__a5f50df2c6c1f6dff9b57e8874afe5be"}, "created_at": 1700082685.6716635, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__a5f50df2c6c1f6dff9b57e8874afe5be\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml/dbt_expectations_expect_table__a5f50df2c6c1f6dff9b57e8874afe5be.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e23653fee8": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('sms__loyalty_sms_campaigns_sms_reward_program_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_6ee8be1dab6f05ce13225241ed1ac81c.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e23653fee8", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_6ee8be1dab6f05ce13225241ed1ac81c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_6ee8be1dab6f05ce13225241ed1ac81c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_6ee8be1dab6f05ce13225241ed1ac81c"}, "created_at": 1700082685.6785266, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_6ee8be1dab6f05ce13225241ed1ac81c\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.yml/dbt_utils_unique_combination_o_6ee8be1dab6f05ce13225241ed1ac81c.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.sms__loyalty_sms_campaigns_sms_reward_program_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "attached_node": "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_id.0622858aaf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_email_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_email_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_id.0622858aaf", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_email_kpi", "not_null_sms__loyalty_sms_flows_email_kpi_id"], "alias": "not_null_sms__loyalty_sms_flows_email_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.712501, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml/not_null_sms__loyalty_sms_flows_email_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_email_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_flows_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_email_kpi"}, "test.yoda.unique_sms__loyalty_sms_flows_email_kpi_id.832af8e4ba": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__loyalty_sms_flows_email_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__loyalty_sms_flows_email_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml", "unique_id": "test.yoda.unique_sms__loyalty_sms_flows_email_kpi_id.832af8e4ba", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_email_kpi", "unique_sms__loyalty_sms_flows_email_kpi_id"], "alias": "unique_sms__loyalty_sms_flows_email_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082685.7184558, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml/unique_sms__loyalty_sms_flows_email_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.sms__loyalty_sms_flows_email_kpi where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_flows_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_synergy_id.7e8701e3dc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_email_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_email_kpi_synergy_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_synergy_id.7e8701e3dc", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_email_kpi", "not_null_sms__loyalty_sms_flows_email_kpi_synergy_id"], "alias": "not_null_sms__loyalty_sms_flows_email_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.7246187, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml/not_null_sms__loyalty_sms_flows_email_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_email_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms__loyalty_sms_flows_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_source_type.66e1f4a84e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_email_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_email_kpi_source_type.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_source_type.66e1f4a84e", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_email_kpi", "not_null_sms__loyalty_sms_flows_email_kpi_source_type"], "alias": "not_null_sms__loyalty_sms_flows_email_kpi_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.7306025, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml/not_null_sms__loyalty_sms_flows_email_kpi_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_email_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.sms__loyalty_sms_flows_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_source_id.5a26a49665": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_email_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_email_kpi_source_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_source_id.5a26a49665", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_email_kpi", "not_null_sms__loyalty_sms_flows_email_kpi_source_id"], "alias": "not_null_sms__loyalty_sms_flows_email_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.7367873, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml/not_null_sms__loyalty_sms_flows_email_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_email_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__loyalty_sms_flows_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_order_id.b200957d13": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_email_kpi_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_email_kpi_order_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_order_id.b200957d13", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_email_kpi", "not_null_sms__loyalty_sms_flows_email_kpi_order_id"], "alias": "not_null_sms__loyalty_sms_flows_email_kpi_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.7428966, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml/not_null_sms__loyalty_sms_flows_email_kpi_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_email_kpi where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.sms__loyalty_sms_flows_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_app_key.7cb2925f0f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_email_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_email_kpi_app_key.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_app_key.7cb2925f0f", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_email_kpi", "not_null_sms__loyalty_sms_flows_email_kpi_app_key"], "alias": "not_null_sms__loyalty_sms_flows_email_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.749768, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml/not_null_sms__loyalty_sms_flows_email_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_email_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms__loyalty_sms_flows_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_dwh_updated_at.a3d152550a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_email_kpi_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_email_kpi_dwh_updated_at.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_dwh_updated_at.a3d152550a", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_email_kpi", "not_null_sms__loyalty_sms_flows_email_kpi_dwh_updated_at"], "alias": "not_null_sms__loyalty_sms_flows_email_kpi_dwh_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.7565644, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml/not_null_sms__loyalty_sms_flows_email_kpi_dwh_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_email_kpi where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.sms__loyalty_sms_flows_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_email_kpi"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_email_kpi_1.a1ea11e7f3": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_email_kpi')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_email_kpi_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__925e37fa18528e4e2f3fd70eea5cc87f.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_email_kpi_1.a1ea11e7f3", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_email_kpi", "dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_email_kpi_1"], "alias": "dbt_expectations_expect_table__925e37fa18528e4e2f3fd70eea5cc87f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__925e37fa18528e4e2f3fd70eea5cc87f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__925e37fa18528e4e2f3fd70eea5cc87f"}, "created_at": 1700082685.7638276, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__925e37fa18528e4e2f3fd70eea5cc87f\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml/dbt_expectations_expect_table__925e37fa18528e4e2f3fd70eea5cc87f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.sms__loyalty_sms_flows_email_kpi\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__loyalty_sms_flows_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_email_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.69b3540440": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_email_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_68c6539e28c838dcb6fc578d92e9a0c5.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.69b3540440", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_email_kpi", "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_68c6539e28c838dcb6fc578d92e9a0c5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_68c6539e28c838dcb6fc578d92e9a0c5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_68c6539e28c838dcb6fc578d92e9a0c5"}, "created_at": 1700082685.7705445, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_68c6539e28c838dcb6fc578d92e9a0c5\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.yml/dbt_utils_unique_combination_o_68c6539e28c838dcb6fc578d92e9a0c5.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.sms__loyalty_sms_flows_email_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__loyalty_sms_flows_email_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_email_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_id.a8f20edfd9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_sms_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_sms_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_id.a8f20edfd9", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "not_null_sms__loyalty_sms_flows_sms_kpi_id"], "alias": "not_null_sms__loyalty_sms_flows_sms_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.8044624, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml/not_null_sms__loyalty_sms_flows_sms_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_sms_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_sms_kpi"}, "test.yoda.unique_sms__loyalty_sms_flows_sms_kpi_id.bb7a28542f": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__loyalty_sms_flows_sms_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__loyalty_sms_flows_sms_kpi_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.unique_sms__loyalty_sms_flows_sms_kpi_id.bb7a28542f", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "unique_sms__loyalty_sms_flows_sms_kpi_id"], "alias": "unique_sms__loyalty_sms_flows_sms_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082685.8104305, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml/unique_sms__loyalty_sms_flows_sms_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.sms__loyalty_sms_flows_sms_kpi where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__loyalty_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_synergy_id.1ff32cef3e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_sms_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_sms_kpi_synergy_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_synergy_id.1ff32cef3e", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "not_null_sms__loyalty_sms_flows_sms_kpi_synergy_id"], "alias": "not_null_sms__loyalty_sms_flows_sms_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.8165402, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml/not_null_sms__loyalty_sms_flows_sms_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_sms_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms__loyalty_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_source_type.d4341cb5c4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_sms_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_sms_kpi_source_type.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_source_type.d4341cb5c4", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "not_null_sms__loyalty_sms_flows_sms_kpi_source_type"], "alias": "not_null_sms__loyalty_sms_flows_sms_kpi_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.8223007, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml/not_null_sms__loyalty_sms_flows_sms_kpi_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_sms_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.sms__loyalty_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_source_id.ee0653470d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_sms_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_sms_kpi_source_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_source_id.ee0653470d", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "not_null_sms__loyalty_sms_flows_sms_kpi_source_id"], "alias": "not_null_sms__loyalty_sms_flows_sms_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.8295307, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml/not_null_sms__loyalty_sms_flows_sms_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_sms_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__loyalty_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_order_id.65559dfaa9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_sms_kpi_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_sms_kpi_order_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_order_id.65559dfaa9", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "not_null_sms__loyalty_sms_flows_sms_kpi_order_id"], "alias": "not_null_sms__loyalty_sms_flows_sms_kpi_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.8357837, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml/not_null_sms__loyalty_sms_flows_sms_kpi_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_sms_kpi where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.sms__loyalty_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_app_key.282167a551": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_sms_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_sms_kpi_app_key.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_app_key.282167a551", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "not_null_sms__loyalty_sms_flows_sms_kpi_app_key"], "alias": "not_null_sms__loyalty_sms_flows_sms_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.842135, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml/not_null_sms__loyalty_sms_flows_sms_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_sms_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms__loyalty_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_customer_external_id.8288595aa4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_sms_kpi_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_sms_kpi_customer_external_id.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_customer_external_id.8288595aa4", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "not_null_sms__loyalty_sms_flows_sms_kpi_customer_external_id"], "alias": "not_null_sms__loyalty_sms_flows_sms_kpi_customer_external_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.8479803, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml/not_null_sms__loyalty_sms_flows_sms_kpi_customer_external_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_sms_kpi where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.sms__loyalty_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_dwh_updated_at.b3d1874250": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__loyalty_sms_flows_sms_kpi_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__loyalty_sms_flows_sms_kpi_dwh_updated_at.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_dwh_updated_at.b3d1874250", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "not_null_sms__loyalty_sms_flows_sms_kpi_dwh_updated_at"], "alias": "not_null_sms__loyalty_sms_flows_sms_kpi_dwh_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.8540893, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml/not_null_sms__loyalty_sms_flows_sms_kpi_dwh_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__loyalty_sms_flows_sms_kpi where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.sms__loyalty_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_sms_kpi"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_sms_kpi_1.90319ceb4d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_sms_kpi')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_sms_kpi_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__7792debc079fe084a5f9c4f0f5cc771b.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_sms_kpi_1.90319ceb4d", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_sms_kpi_1"], "alias": "dbt_expectations_expect_table__7792debc079fe084a5f9c4f0f5cc771b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__7792debc079fe084a5f9c4f0f5cc771b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__7792debc079fe084a5f9c4f0f5cc771b"}, "created_at": 1700082685.8603017, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__7792debc079fe084a5f9c4f0f5cc771b\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml/dbt_expectations_expect_table__7792debc079fe084a5f9c4f0f5cc771b.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.sms__loyalty_sms_flows_sms_kpi\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__loyalty_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_sms_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.7dd8e8f9ef": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('sms__loyalty_sms_flows_sms_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_5fc6fdaa885696b3558d329b344837c5.sql", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.7dd8e8f9ef", "fqn": ["yoda", "sms", "marts", "sms__loyalty_sms_flows_sms_kpi", "dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_5fc6fdaa885696b3558d329b344837c5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_5fc6fdaa885696b3558d329b344837c5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_5fc6fdaa885696b3558d329b344837c5"}, "created_at": 1700082685.8672469, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_5fc6fdaa885696b3558d329b344837c5\") }}", "language": "sql", "refs": [{"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.yml/dbt_utils_unique_combination_o_5fc6fdaa885696b3558d329b344837c5.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.sms__loyalty_sms_flows_sms_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__loyalty_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__loyalty_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_id.1acc53b67c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_email_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_email_kpi_id.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_id.1acc53b67c", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "not_null_sms__reviews_sms_flows_email_kpi_id"], "alias": "not_null_sms__reviews_sms_flows_email_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.9233172, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/not_null_sms__reviews_sms_flows_email_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_email_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.unique_sms__reviews_sms_flows_email_kpi_id.9f4bc62f01": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__reviews_sms_flows_email_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__reviews_sms_flows_email_kpi_id.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.unique_sms__reviews_sms_flows_email_kpi_id.9f4bc62f01", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "unique_sms__reviews_sms_flows_email_kpi_id"], "alias": "unique_sms__reviews_sms_flows_email_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082685.92957, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/unique_sms__reviews_sms_flows_email_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.sms__reviews_sms_flows_email_kpi where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_synergy_id.1110a49fbb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_email_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_email_kpi_synergy_id.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_synergy_id.1110a49fbb", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "not_null_sms__reviews_sms_flows_email_kpi_synergy_id"], "alias": "not_null_sms__reviews_sms_flows_email_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.9356809, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/not_null_sms__reviews_sms_flows_email_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_email_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_source_type.fc04a7df20": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_email_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_email_kpi_source_type.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_source_type.fc04a7df20", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "not_null_sms__reviews_sms_flows_email_kpi_source_type"], "alias": "not_null_sms__reviews_sms_flows_email_kpi_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.9441304, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/not_null_sms__reviews_sms_flows_email_kpi_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_email_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_source_id.56938ccd82": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_email_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_email_kpi_source_id.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_source_id.56938ccd82", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "not_null_sms__reviews_sms_flows_email_kpi_source_id"], "alias": "not_null_sms__reviews_sms_flows_email_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.950026, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/not_null_sms__reviews_sms_flows_email_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_email_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_type.92b7a71dd1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_type", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_email_kpi_action_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_email_kpi_action_type.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_type.92b7a71dd1", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "not_null_sms__reviews_sms_flows_email_kpi_action_type"], "alias": "not_null_sms__reviews_sms_flows_email_kpi_action_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.956231, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/not_null_sms__reviews_sms_flows_email_kpi_action_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_email_kpi where action_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_type", "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_id.f2f03eef4f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_id", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_email_kpi_action_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_email_kpi_action_id.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_id.f2f03eef4f", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "not_null_sms__reviews_sms_flows_email_kpi_action_id"], "alias": "not_null_sms__reviews_sms_flows_email_kpi_action_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.9628203, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/not_null_sms__reviews_sms_flows_email_kpi_action_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_email_kpi where action_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_id", "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_attribute_type.f84d25c934": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_type", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_email_kpi_action_attribute_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_email_kpi_action_attribute_type.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_attribute_type.f84d25c934", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "not_null_sms__reviews_sms_flows_email_kpi_action_attribute_type"], "alias": "not_null_sms__reviews_sms_flows_email_kpi_action_attribute_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.9686096, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/not_null_sms__reviews_sms_flows_email_kpi_action_attribute_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_email_kpi where action_attribute_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_type", "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_attribute_value.eae3c36486": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_value", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_email_kpi_action_attribute_value", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flow_53b83314291eaf5af650d9eb7a324050.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_attribute_value.eae3c36486", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "not_null_sms__reviews_sms_flows_email_kpi_action_attribute_value"], "alias": "not_null_sms__reviews_sms_flow_53b83314291eaf5af650d9eb7a324050", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms__reviews_sms_flow_53b83314291eaf5af650d9eb7a324050", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms__reviews_sms_flow_53b83314291eaf5af650d9eb7a324050"}, "created_at": 1700082685.9747458, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms__reviews_sms_flow_53b83314291eaf5af650d9eb7a324050\") }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/not_null_sms__reviews_sms_flow_53b83314291eaf5af650d9eb7a324050.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_email_kpi where action_attribute_value is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_value", "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_app_key.d087df8817": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_email_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_email_kpi_app_key.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_app_key.d087df8817", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "not_null_sms__reviews_sms_flows_email_kpi_app_key"], "alias": "not_null_sms__reviews_sms_flows_email_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.9814134, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/not_null_sms__reviews_sms_flows_email_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_email_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_dwh_updated_at.46a25c2e8a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_email_kpi_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_email_kpi_dwh_updated_at.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_dwh_updated_at.46a25c2e8a", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "not_null_sms__reviews_sms_flows_email_kpi_dwh_updated_at"], "alias": "not_null_sms__reviews_sms_flows_email_kpi_dwh_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082685.9870403, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/not_null_sms__reviews_sms_flows_email_kpi_dwh_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_email_kpi where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.5a0798e63b": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_email_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_5ee8eb88a2be1194035f07fa0b41f4c4.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.5a0798e63b", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_email_kpi", "dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_5ee8eb88a2be1194035f07fa0b41f4c4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_5ee8eb88a2be1194035f07fa0b41f4c4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_5ee8eb88a2be1194035f07fa0b41f4c4"}, "created_at": 1700082685.9934723, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_5ee8eb88a2be1194035f07fa0b41f4c4\") }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.yml/dbt_utils_unique_combination_o_5ee8eb88a2be1194035f07fa0b41f4c4.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.sms__reviews_sms_flows_email_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__reviews_sms_flows_email_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_email_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_id.88af3e38a5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_sms_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_sms_kpi_id.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_id.88af3e38a5", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "not_null_sms__reviews_sms_flows_sms_kpi_id"], "alias": "not_null_sms__reviews_sms_flows_sms_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.0277495, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/not_null_sms__reviews_sms_flows_sms_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_sms_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.unique_sms__reviews_sms_flows_sms_kpi_id.b5d1077c08": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__reviews_sms_flows_sms_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__reviews_sms_flows_sms_kpi_id.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.unique_sms__reviews_sms_flows_sms_kpi_id.b5d1077c08", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "unique_sms__reviews_sms_flows_sms_kpi_id"], "alias": "unique_sms__reviews_sms_flows_sms_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082686.0335498, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/unique_sms__reviews_sms_flows_sms_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.sms__reviews_sms_flows_sms_kpi where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_synergy_id.5d48cbbab2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_sms_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_sms_kpi_synergy_id.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_synergy_id.5d48cbbab2", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "not_null_sms__reviews_sms_flows_sms_kpi_synergy_id"], "alias": "not_null_sms__reviews_sms_flows_sms_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.0396965, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/not_null_sms__reviews_sms_flows_sms_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_sms_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_source_type.6f8ec42a8d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_sms_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_sms_kpi_source_type.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_source_type.6f8ec42a8d", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "not_null_sms__reviews_sms_flows_sms_kpi_source_type"], "alias": "not_null_sms__reviews_sms_flows_sms_kpi_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.046442, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/not_null_sms__reviews_sms_flows_sms_kpi_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_sms_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_source_id.3bc4067038": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_sms_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_sms_kpi_source_id.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_source_id.3bc4067038", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "not_null_sms__reviews_sms_flows_sms_kpi_source_id"], "alias": "not_null_sms__reviews_sms_flows_sms_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.052206, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/not_null_sms__reviews_sms_flows_sms_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_sms_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_type.1b8d07e3e7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_type", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_sms_kpi_action_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_sms_kpi_action_type.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_type.1b8d07e3e7", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "not_null_sms__reviews_sms_flows_sms_kpi_action_type"], "alias": "not_null_sms__reviews_sms_flows_sms_kpi_action_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.058414, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/not_null_sms__reviews_sms_flows_sms_kpi_action_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_sms_kpi where action_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_type", "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_id.4e86e8a455": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_id", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_sms_kpi_action_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_sms_kpi_action_id.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_id.4e86e8a455", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "not_null_sms__reviews_sms_flows_sms_kpi_action_id"], "alias": "not_null_sms__reviews_sms_flows_sms_kpi_action_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.0645704, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/not_null_sms__reviews_sms_flows_sms_kpi_action_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_sms_kpi where action_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_id", "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_type.ea5c4b7e67": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_type", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_type.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_type.ea5c4b7e67", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_type"], "alias": "not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.0702674, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_sms_kpi where action_attribute_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_type", "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_value.28ac84c4d0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_value", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_value", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_value.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_value.28ac84c4d0", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_value"], "alias": "not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_value", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.0764744, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_value.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_sms_kpi where action_attribute_value is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_value", "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_app_key.b9848e0e21": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_sms_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_sms_kpi_app_key.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_app_key.b9848e0e21", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "not_null_sms__reviews_sms_flows_sms_kpi_app_key"], "alias": "not_null_sms__reviews_sms_flows_sms_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.0826178, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/not_null_sms__reviews_sms_flows_sms_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_sms_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_dwh_updated_at.a406efbd69": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__reviews_sms_flows_sms_kpi_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__reviews_sms_flows_sms_kpi_dwh_updated_at.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_dwh_updated_at.a406efbd69", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "not_null_sms__reviews_sms_flows_sms_kpi_dwh_updated_at"], "alias": "not_null_sms__reviews_sms_flows_sms_kpi_dwh_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.0887225, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/not_null_sms__reviews_sms_flows_sms_kpi_dwh_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__reviews_sms_flows_sms_kpi where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.4fc8c0491a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('sms__reviews_sms_flows_sms_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_435bf2a0c316889cdbcd25890479d8d4.sql", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.4fc8c0491a", "fqn": ["yoda", "sms", "marts", "sms__reviews_sms_flows_sms_kpi", "dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_435bf2a0c316889cdbcd25890479d8d4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_435bf2a0c316889cdbcd25890479d8d4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_435bf2a0c316889cdbcd25890479d8d4"}, "created_at": 1700082686.0945547, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_435bf2a0c316889cdbcd25890479d8d4\") }}", "language": "sql", "refs": [{"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__reviews_sms_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.yml/dbt_utils_unique_combination_o_435bf2a0c316889cdbcd25890479d8d4.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.sms__reviews_sms_flows_sms_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__reviews_sms_flows_sms_kpi", "attached_node": "model.yoda.sms__reviews_sms_flows_sms_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_sms__sms_double_points_campaign_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e4e92d81b4": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('sms__sms_double_points_campaign_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_sms__sms_double_points_campaign_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_0aac86250e2a4d64b7d52f8193a4238d.sql", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_sms__sms_double_points_campaign_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e4e92d81b4", "fqn": ["yoda", "sms", "marts", "sms__sms_double_points_campaign_kpi", "dbt_utils_unique_combination_of_columns_sms__sms_double_points_campaign_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_0aac86250e2a4d64b7d52f8193a4238d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_0aac86250e2a4d64b7d52f8193a4238d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_0aac86250e2a4d64b7d52f8193a4238d"}, "created_at": 1700082686.1275063, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_0aac86250e2a4d64b7d52f8193a4238d\") }}", "language": "sql", "refs": [{"name": "sms__sms_double_points_campaign_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__sms_double_points_campaign_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.yml/dbt_utils_unique_combination_o_0aac86250e2a4d64b7d52f8193a4238d.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.sms__sms_double_points_campaign_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__sms_double_points_campaign_kpi", "attached_node": "model.yoda.sms__sms_double_points_campaign_kpi"}, "test.yoda.not_null_sms__social_proof_flows_email_kpi_id.d57c5637e3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_email_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_email_kpi_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_email_kpi_id.d57c5637e3", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_email_kpi", "not_null_sms__social_proof_flows_email_kpi_id"], "alias": "not_null_sms__social_proof_flows_email_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.1801176, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml/not_null_sms__social_proof_flows_email_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_email_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__social_proof_flows_email_kpi", "attached_node": "model.yoda.sms__social_proof_flows_email_kpi"}, "test.yoda.unique_sms__social_proof_flows_email_kpi_id.c8c30d52ca": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__social_proof_flows_email_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__social_proof_flows_email_kpi_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml", "unique_id": "test.yoda.unique_sms__social_proof_flows_email_kpi_id.c8c30d52ca", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_email_kpi", "unique_sms__social_proof_flows_email_kpi_id"], "alias": "unique_sms__social_proof_flows_email_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082686.1860359, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml/unique_sms__social_proof_flows_email_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.sms__social_proof_flows_email_kpi where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__social_proof_flows_email_kpi", "attached_node": "model.yoda.sms__social_proof_flows_email_kpi"}, "test.yoda.not_null_sms__social_proof_flows_email_kpi_synergy_id.67177f1079": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_email_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_email_kpi_synergy_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_email_kpi_synergy_id.67177f1079", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_email_kpi", "not_null_sms__social_proof_flows_email_kpi_synergy_id"], "alias": "not_null_sms__social_proof_flows_email_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.1918674, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml/not_null_sms__social_proof_flows_email_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_email_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms__social_proof_flows_email_kpi", "attached_node": "model.yoda.sms__social_proof_flows_email_kpi"}, "test.yoda.not_null_sms__social_proof_flows_email_kpi_source_type.7b8e28dc19": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_email_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_email_kpi_source_type.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_email_kpi_source_type.7b8e28dc19", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_email_kpi", "not_null_sms__social_proof_flows_email_kpi_source_type"], "alias": "not_null_sms__social_proof_flows_email_kpi_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.1980214, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml/not_null_sms__social_proof_flows_email_kpi_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_email_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.sms__social_proof_flows_email_kpi", "attached_node": "model.yoda.sms__social_proof_flows_email_kpi"}, "test.yoda.not_null_sms__social_proof_flows_email_kpi_source_id.4ca7bcd4d6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_email_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_email_kpi_source_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_email_kpi_source_id.4ca7bcd4d6", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_email_kpi", "not_null_sms__social_proof_flows_email_kpi_source_id"], "alias": "not_null_sms__social_proof_flows_email_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.205284, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml/not_null_sms__social_proof_flows_email_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_email_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__social_proof_flows_email_kpi", "attached_node": "model.yoda.sms__social_proof_flows_email_kpi"}, "test.yoda.unique_sms__social_proof_flows_email_kpi_source_id.3db7a2ca48": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__social_proof_flows_email_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__social_proof_flows_email_kpi_source_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml", "unique_id": "test.yoda.unique_sms__social_proof_flows_email_kpi_source_id.3db7a2ca48", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_email_kpi", "unique_sms__social_proof_flows_email_kpi_source_id"], "alias": "unique_sms__social_proof_flows_email_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082686.212942, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml/unique_sms__social_proof_flows_email_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select source_id from dev_dkruh1.sms__social_proof_flows_email_kpi where source_id is not null group by source_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__social_proof_flows_email_kpi", "attached_node": "model.yoda.sms__social_proof_flows_email_kpi"}, "test.yoda.not_null_sms__social_proof_flows_email_kpi_app_key.c84b86f064": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_email_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_email_kpi_app_key.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_email_kpi_app_key.c84b86f064", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_email_kpi", "not_null_sms__social_proof_flows_email_kpi_app_key"], "alias": "not_null_sms__social_proof_flows_email_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.2218573, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml/not_null_sms__social_proof_flows_email_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_email_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms__social_proof_flows_email_kpi", "attached_node": "model.yoda.sms__social_proof_flows_email_kpi"}, "test.yoda.not_null_sms__social_proof_flows_email_kpi_customer_external_id.796d587844": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_email_kpi_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_email_kpi_customer_external_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_email_kpi_customer_external_id.796d587844", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_email_kpi", "not_null_sms__social_proof_flows_email_kpi_customer_external_id"], "alias": "not_null_sms__social_proof_flows_email_kpi_customer_external_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.2308767, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml/not_null_sms__social_proof_flows_email_kpi_customer_external_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_email_kpi where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.sms__social_proof_flows_email_kpi", "attached_node": "model.yoda.sms__social_proof_flows_email_kpi"}, "test.yoda.not_null_sms__social_proof_flows_email_kpi_dwh_updated_at.1b00bf3c9d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_email_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_email_kpi_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_email_kpi_dwh_updated_at.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_email_kpi_dwh_updated_at.1b00bf3c9d", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_email_kpi", "not_null_sms__social_proof_flows_email_kpi_dwh_updated_at"], "alias": "not_null_sms__social_proof_flows_email_kpi_dwh_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.2377775, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml/not_null_sms__social_proof_flows_email_kpi_dwh_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_email_kpi where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.sms__social_proof_flows_email_kpi", "attached_node": "model.yoda.sms__social_proof_flows_email_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_sms__social_proof_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.6203320c8f": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('sms__social_proof_flows_email_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_sms__social_proof_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_43eca38a2b0b4eee10ab65beafa35e75.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_sms__social_proof_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.6203320c8f", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_email_kpi", "dbt_utils_unique_combination_of_columns_sms__social_proof_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_43eca38a2b0b4eee10ab65beafa35e75", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_43eca38a2b0b4eee10ab65beafa35e75", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_43eca38a2b0b4eee10ab65beafa35e75"}, "created_at": 1700082686.2447202, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_43eca38a2b0b4eee10ab65beafa35e75\") }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_email_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.yml/dbt_utils_unique_combination_o_43eca38a2b0b4eee10ab65beafa35e75.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.sms__social_proof_flows_email_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__social_proof_flows_email_kpi", "attached_node": "model.yoda.sms__social_proof_flows_email_kpi"}, "test.yoda.not_null_sms__social_proof_flows_sms_kpi_id.cf034d9c8c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_sms_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_sms_kpi_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_sms_kpi_id.cf034d9c8c", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "not_null_sms__social_proof_flows_sms_kpi_id"], "alias": "not_null_sms__social_proof_flows_sms_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.2875538, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml/not_null_sms__social_proof_flows_sms_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_sms_kpi where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__social_proof_flows_sms_kpi", "attached_node": "model.yoda.sms__social_proof_flows_sms_kpi"}, "test.yoda.unique_sms__social_proof_flows_sms_kpi_id.c797b4e309": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__social_proof_flows_sms_kpi_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__social_proof_flows_sms_kpi_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "unique_id": "test.yoda.unique_sms__social_proof_flows_sms_kpi_id.c797b4e309", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "unique_sms__social_proof_flows_sms_kpi_id"], "alias": "unique_sms__social_proof_flows_sms_kpi_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082686.294253, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml/unique_sms__social_proof_flows_sms_kpi_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.sms__social_proof_flows_sms_kpi where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.sms__social_proof_flows_sms_kpi", "attached_node": "model.yoda.sms__social_proof_flows_sms_kpi"}, "test.yoda.not_null_sms__social_proof_flows_sms_kpi_synergy_id.7234432245": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_sms_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_sms_kpi_synergy_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_sms_kpi_synergy_id.7234432245", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "not_null_sms__social_proof_flows_sms_kpi_synergy_id"], "alias": "not_null_sms__social_proof_flows_sms_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.2999947, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml/not_null_sms__social_proof_flows_sms_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_sms_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms__social_proof_flows_sms_kpi", "attached_node": "model.yoda.sms__social_proof_flows_sms_kpi"}, "test.yoda.not_null_sms__social_proof_flows_sms_kpi_source_type.44cbe3410e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_type", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_sms_kpi_source_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_sms_kpi_source_type.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_sms_kpi_source_type.44cbe3410e", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "not_null_sms__social_proof_flows_sms_kpi_source_type"], "alias": "not_null_sms__social_proof_flows_sms_kpi_source_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.3060558, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml/not_null_sms__social_proof_flows_sms_kpi_source_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_sms_kpi where source_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_type", "file_key_name": "models.sms__social_proof_flows_sms_kpi", "attached_node": "model.yoda.sms__social_proof_flows_sms_kpi"}, "test.yoda.not_null_sms__social_proof_flows_sms_kpi_source_id.e249f9eb2a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_sms_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_sms_kpi_source_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_sms_kpi_source_id.e249f9eb2a", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "not_null_sms__social_proof_flows_sms_kpi_source_id"], "alias": "not_null_sms__social_proof_flows_sms_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.3122838, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml/not_null_sms__social_proof_flows_sms_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_sms_kpi where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__social_proof_flows_sms_kpi", "attached_node": "model.yoda.sms__social_proof_flows_sms_kpi"}, "test.yoda.unique_sms__social_proof_flows_sms_kpi_source_id.49cffddbe2": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms__social_proof_flows_sms_kpi_source_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms__social_proof_flows_sms_kpi_source_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "unique_id": "test.yoda.unique_sms__social_proof_flows_sms_kpi_source_id.49cffddbe2", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "unique_sms__social_proof_flows_sms_kpi_source_id"], "alias": "unique_sms__social_proof_flows_sms_kpi_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082686.3179638, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml/unique_sms__social_proof_flows_sms_kpi_source_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select source_id from dev_dkruh1.sms__social_proof_flows_sms_kpi where source_id is not null group by source_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.sms__social_proof_flows_sms_kpi", "attached_node": "model.yoda.sms__social_proof_flows_sms_kpi"}, "test.yoda.not_null_sms__social_proof_flows_sms_kpi_app_key.5176bbd10d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_sms_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_sms_kpi_app_key.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_sms_kpi_app_key.5176bbd10d", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "not_null_sms__social_proof_flows_sms_kpi_app_key"], "alias": "not_null_sms__social_proof_flows_sms_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.3240433, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml/not_null_sms__social_proof_flows_sms_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_sms_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms__social_proof_flows_sms_kpi", "attached_node": "model.yoda.sms__social_proof_flows_sms_kpi"}, "test.yoda.not_null_sms__social_proof_flows_sms_kpi_customer_external_id.e46837cb39": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_sms_kpi_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_sms_kpi_customer_external_id.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_sms_kpi_customer_external_id.e46837cb39", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "not_null_sms__social_proof_flows_sms_kpi_customer_external_id"], "alias": "not_null_sms__social_proof_flows_sms_kpi_customer_external_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.3300953, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml/not_null_sms__social_proof_flows_sms_kpi_customer_external_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_sms_kpi where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.sms__social_proof_flows_sms_kpi", "attached_node": "model.yoda.sms__social_proof_flows_sms_kpi"}, "test.yoda.not_null_sms__social_proof_flows_sms_kpi_dwh_updated_at.42d9dbd28e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('sms__social_proof_flows_sms_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms__social_proof_flows_sms_kpi_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms__social_proof_flows_sms_kpi_dwh_updated_at.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "unique_id": "test.yoda.not_null_sms__social_proof_flows_sms_kpi_dwh_updated_at.42d9dbd28e", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "not_null_sms__social_proof_flows_sms_kpi_dwh_updated_at"], "alias": "not_null_sms__social_proof_flows_sms_kpi_dwh_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082686.3357759, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml/not_null_sms__social_proof_flows_sms_kpi_dwh_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms__social_proof_flows_sms_kpi where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.sms__social_proof_flows_sms_kpi", "attached_node": "model.yoda.sms__social_proof_flows_sms_kpi"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__social_proof_flows_sms_kpi_1.19240c79c4": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('sms__social_proof_flows_sms_kpi')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_sms__social_proof_flows_sms_kpi_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__f934992288083316ba84cbf52330e04f.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__social_proof_flows_sms_kpi_1.19240c79c4", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "dbt_expectations_expect_table_row_count_to_be_between_sms__social_proof_flows_sms_kpi_1"], "alias": "dbt_expectations_expect_table__f934992288083316ba84cbf52330e04f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__f934992288083316ba84cbf52330e04f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__f934992288083316ba84cbf52330e04f"}, "created_at": 1700082686.34215, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__f934992288083316ba84cbf52330e04f\") }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml/dbt_expectations_expect_table__f934992288083316ba84cbf52330e04f.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.sms__social_proof_flows_sms_kpi\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__social_proof_flows_sms_kpi", "attached_node": "model.yoda.sms__social_proof_flows_sms_kpi"}, "test.yoda.dbt_utils_unique_combination_of_columns_sms__social_proof_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.ecabcafbac": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('sms__social_proof_flows_sms_kpi')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_sms__social_proof_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_8a57075669dfd2b562bd0bfd67503e23.sql", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_sms__social_proof_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.ecabcafbac", "fqn": ["yoda", "sms", "marts", "sms__social_proof_flows_sms_kpi", "dbt_utils_unique_combination_of_columns_sms__social_proof_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_8a57075669dfd2b562bd0bfd67503e23", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_8a57075669dfd2b562bd0bfd67503e23", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_8a57075669dfd2b562bd0bfd67503e23"}, "created_at": 1700082686.3495011, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_8a57075669dfd2b562bd0bfd67503e23\") }}", "language": "sql", "refs": [{"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms__social_proof_flows_sms_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.yml/dbt_utils_unique_combination_o_8a57075669dfd2b562bd0bfd67503e23.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.sms__social_proof_flows_sms_kpi\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms__social_proof_flows_sms_kpi", "attached_node": "model.yoda.sms__social_proof_flows_sms_kpi"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__free_credits_logs_1.1cf00e33bb": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('sms_stg__free_credits_logs')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_sms_stg__free_credits_logs_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__359619600db73368f6ac71f64857e3ee.sql", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__free_credits_logs_1.1cf00e33bb", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__free_credits_logs", "dbt_expectations_expect_table_row_count_to_be_between_sms_stg__free_credits_logs_1"], "alias": "dbt_expectations_expect_table__359619600db73368f6ac71f64857e3ee", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__359619600db73368f6ac71f64857e3ee", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__359619600db73368f6ac71f64857e3ee"}, "created_at": 1700082687.8480637, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__359619600db73368f6ac71f64857e3ee\") }}", "language": "sql", "refs": [{"name": "sms_stg__free_credits_logs", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__free_credits_logs"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.yml/dbt_expectations_expect_table__359619600db73368f6ac71f64857e3ee.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.sms_stg__free_credits_logs\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms_stg__free_credits_logs", "attached_node": "model.yoda.sms_stg__free_credits_logs"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__packages_1.a3e59e8764": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('sms_stg__packages')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_sms_stg__packages_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__77bb28164633f9e7cab3b4494eca91c0.sql", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__packages_1.a3e59e8764", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__packages", "dbt_expectations_expect_table_row_count_to_be_between_sms_stg__packages_1"], "alias": "dbt_expectations_expect_table__77bb28164633f9e7cab3b4494eca91c0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__77bb28164633f9e7cab3b4494eca91c0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__77bb28164633f9e7cab3b4494eca91c0"}, "created_at": 1700082688.0247405, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__77bb28164633f9e7cab3b4494eca91c0\") }}", "language": "sql", "refs": [{"name": "sms_stg__packages", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__packages"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__packages/sms_stg__packages.yml/dbt_expectations_expect_table__77bb28164633f9e7cab3b4494eca91c0.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.sms_stg__packages\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms_stg__packages", "attached_node": "model.yoda.sms_stg__packages"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__users_events_log_1.a84bfcbfd1": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('sms_stg__users_events_log')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_sms_stg__users_events_log_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__c4b9d7a2bc5399e5121a076f89f72ac0.sql", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__users_events_log_1.a84bfcbfd1", "fqn": ["yoda", "sms", "staging", "base", "sms_stg__users_events_log", "dbt_expectations_expect_table_row_count_to_be_between_sms_stg__users_events_log_1"], "alias": "dbt_expectations_expect_table__c4b9d7a2bc5399e5121a076f89f72ac0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__c4b9d7a2bc5399e5121a076f89f72ac0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__c4b9d7a2bc5399e5121a076f89f72ac0"}, "created_at": 1700082688.5204895, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__c4b9d7a2bc5399e5121a076f89f72ac0\") }}", "language": "sql", "refs": [{"name": "sms_stg__users_events_log", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__users_events_log"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.yml/dbt_expectations_expect_table__c4b9d7a2bc5399e5121a076f89f72ac0.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.sms_stg__users_events_log\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.sms_stg__users_events_log", "attached_node": "model.yoda.sms_stg__users_events_log"}, "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_customer_id.372860f3c6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('sms_stg__one_click_campaigns_subscriptions')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__one_click_campaigns_subscriptions_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__one_click_campaigns_subscriptions_customer_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.yml", "unique_id": "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_customer_id.372860f3c6", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__one_click_campaigns_subscriptions", "not_null_sms_stg__one_click_campaigns_subscriptions_customer_id"], "alias": "not_null_sms_stg__one_click_campaigns_subscriptions_customer_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.6203928, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__one_click_campaigns_subscriptions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__one_click_campaigns_subscriptions"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.yml/not_null_sms_stg__one_click_campaigns_subscriptions_customer_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__one_click_campaigns_subscriptions where customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.sms_stg__one_click_campaigns_subscriptions", "attached_node": "model.yoda.sms_stg__one_click_campaigns_subscriptions"}, "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_store_id.200b540f58": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('sms_stg__one_click_campaigns_subscriptions')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__one_click_campaigns_subscriptions_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__one_click_campaigns_subscriptions_store_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.yml", "unique_id": "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_store_id.200b540f58", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__one_click_campaigns_subscriptions", "not_null_sms_stg__one_click_campaigns_subscriptions_store_id"], "alias": "not_null_sms_stg__one_click_campaigns_subscriptions_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.6266644, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__one_click_campaigns_subscriptions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__one_click_campaigns_subscriptions"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.yml/not_null_sms_stg__one_click_campaigns_subscriptions_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__one_click_campaigns_subscriptions where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.sms_stg__one_click_campaigns_subscriptions", "attached_node": "model.yoda.sms_stg__one_click_campaigns_subscriptions"}, "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_sms_id.5938202b8f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_id", "model": "{{ get_where_subquery(ref('sms_stg__one_click_campaigns_subscriptions')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__one_click_campaigns_subscriptions_sms_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__one_click_campaigns_subscriptions_sms_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.yml", "unique_id": "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_sms_id.5938202b8f", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__one_click_campaigns_subscriptions", "not_null_sms_stg__one_click_campaigns_subscriptions_sms_id"], "alias": "not_null_sms_stg__one_click_campaigns_subscriptions_sms_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.6379552, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__one_click_campaigns_subscriptions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__one_click_campaigns_subscriptions"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.yml/not_null_sms_stg__one_click_campaigns_subscriptions_sms_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__one_click_campaigns_subscriptions where sms_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_id", "file_key_name": "models.sms_stg__one_click_campaigns_subscriptions", "attached_node": "model.yoda.sms_stg__one_click_campaigns_subscriptions"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_user_id.c578348f55": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_user_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_user_id.c578348f55", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns", "not_null_sms_stg__sms_loyalty_campaigns_user_id"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.6909122, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.yml/not_null_sms_stg__sms_loyalty_campaigns_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns where user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_id", "file_key_name": "models.sms_stg__sms_loyalty_campaigns", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_store_id.7e676990e4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_store_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_store_id.7e676990e4", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns", "not_null_sms_stg__sms_loyalty_campaigns_store_id"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.6968608, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.yml/not_null_sms_stg__sms_loyalty_campaigns_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.sms_stg__sms_loyalty_campaigns", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_campaign_id.11fe14e496": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_campaign_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_campaign_id.11fe14e496", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns", "not_null_sms_stg__sms_loyalty_campaigns_campaign_id"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.7029827, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.yml/not_null_sms_stg__sms_loyalty_campaigns_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns where campaign_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.sms_stg__sms_loyalty_campaigns", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_synergy_id.0e972bea98": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_synergy_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_synergy_id.0e972bea98", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns", "not_null_sms_stg__sms_loyalty_campaigns_synergy_id"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.7097065, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.yml/not_null_sms_stg__sms_loyalty_campaigns_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms_stg__sms_loyalty_campaigns", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_synergy_id.346c782e61": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_kpi_synergy_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_synergy_id.346c782e61", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_synergy_id"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.7366772, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty_campaigns_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_campaign_id.87c25f580a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_kpi_campaign_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_campaign_id.87c25f580a", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_campaign_id"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_kpi_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.745938, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty_campaigns_kpi_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where campaign_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_order_id.f993119d04": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_kpi_order_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_order_id.f993119d04", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_order_id"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_kpi_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.7530372, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty_campaigns_kpi_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.unique_sms_stg__sms_loyalty_campaigns_kpi_order_id.dc6d45cf40": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms_stg__sms_loyalty_campaigns_kpi_order_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms_stg__sms_loyalty_campaigns_kpi_order_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.unique_sms_stg__sms_loyalty_campaigns_kpi_order_id.dc6d45cf40", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "unique_sms_stg__sms_loyalty_campaigns_kpi_order_id"], "alias": "unique_sms_stg__sms_loyalty_campaigns_kpi_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082688.7613156, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/unique_sms_stg__sms_loyalty_campaigns_kpi_order_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_id from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where order_id is not null group by order_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_channel.39b287a4ad": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "channel", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_channel", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_kpi_channel.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_channel.39b287a4ad", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_channel"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_kpi_channel", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.768046, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty_campaigns_kpi_channel.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where channel is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "channel", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_user_id.5572a3141f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_kpi_user_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_user_id.5572a3141f", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_user_id"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_kpi_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.7746437, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty_campaigns_kpi_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_id", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_type.7014c4b910": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_type", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_type.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_type.7014c4b910", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_type"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.7817562, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty_campaigns_kpi_action_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where action_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_type", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_id.6159229595": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_id.6159229595", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_id"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.788889, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty_campaigns_kpi_action_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where action_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_id", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_type.e917b8a2e4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_type", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty__8e555b2b8a0aa639e48cbee4c3df4135.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_type.e917b8a2e4", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_type"], "alias": "not_null_sms_stg__sms_loyalty__8e555b2b8a0aa639e48cbee4c3df4135", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms_stg__sms_loyalty__8e555b2b8a0aa639e48cbee4c3df4135", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms_stg__sms_loyalty__8e555b2b8a0aa639e48cbee4c3df4135"}, "created_at": 1700082688.796725, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms_stg__sms_loyalty__8e555b2b8a0aa639e48cbee4c3df4135\") }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty__8e555b2b8a0aa639e48cbee4c3df4135.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where action_attribute_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_type", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_value.28bf6e0da5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_value", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_value", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty__8a39446cb32a6d904d7252a1ecb49c2e.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_value.28bf6e0da5", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_value"], "alias": "not_null_sms_stg__sms_loyalty__8a39446cb32a6d904d7252a1ecb49c2e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms_stg__sms_loyalty__8a39446cb32a6d904d7252a1ecb49c2e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms_stg__sms_loyalty__8a39446cb32a6d904d7252a1ecb49c2e"}, "created_at": 1700082688.8051775, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms_stg__sms_loyalty__8a39446cb32a6d904d7252a1ecb49c2e\") }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty__8a39446cb32a6d904d7252a1ecb49c2e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where action_attribute_value is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_value", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_app_key.8613cbcfe7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_kpi_app_key.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_app_key.8613cbcfe7", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_app_key"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.8128924, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty_campaigns_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_customer_email.664fc8caa0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_email", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_customer_email", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_campaigns_kpi_customer_email.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_customer_email.664fc8caa0", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_customer_email"], "alias": "not_null_sms_stg__sms_loyalty_campaigns_kpi_customer_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.8189874, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty_campaigns_kpi_customer_email.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where customer_email is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_email", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_external_customer_id.5fc501ffcc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_customer_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_campaigns_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_campaigns_kpi_external_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty__6dc389fa0d3169db3a69b54234d7bde9.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_external_customer_id.5fc501ffcc", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_campaigns_kpi", "not_null_sms_stg__sms_loyalty_campaigns_kpi_external_customer_id"], "alias": "not_null_sms_stg__sms_loyalty__6dc389fa0d3169db3a69b54234d7bde9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_sms_stg__sms_loyalty__6dc389fa0d3169db3a69b54234d7bde9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_sms_stg__sms_loyalty__6dc389fa0d3169db3a69b54234d7bde9"}, "created_at": 1700082688.8251398, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_sms_stg__sms_loyalty__6dc389fa0d3169db3a69b54234d7bde9\") }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.yml/not_null_sms_stg__sms_loyalty__6dc389fa0d3169db3a69b54234d7bde9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_campaigns_kpi where external_customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_customer_id", "file_key_name": "models.sms_stg__sms_loyalty_campaigns_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_campaign_id.51faa33045": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_custom_campaigns')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_custom_campaigns_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_custom_campaigns_campaign_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_campaign_id.51faa33045", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_custom_campaigns", "not_null_sms_stg__sms_loyalty_custom_campaigns_campaign_id"], "alias": "not_null_sms_stg__sms_loyalty_custom_campaigns_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.8466907, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_custom_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_custom_campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.yml/not_null_sms_stg__sms_loyalty_custom_campaigns_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_custom_campaigns where campaign_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.sms_stg__sms_loyalty_custom_campaigns", "attached_node": "model.yoda.sms_stg__sms_loyalty_custom_campaigns"}, "test.yoda.unique_sms_stg__sms_loyalty_custom_campaigns_campaign_id.5d5bbdcc49": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_custom_campaigns')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms_stg__sms_loyalty_custom_campaigns_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms_stg__sms_loyalty_custom_campaigns_campaign_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.yml", "unique_id": "test.yoda.unique_sms_stg__sms_loyalty_custom_campaigns_campaign_id.5d5bbdcc49", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_custom_campaigns", "unique_sms_stg__sms_loyalty_custom_campaigns_campaign_id"], "alias": "unique_sms_stg__sms_loyalty_custom_campaigns_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082688.852859, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_custom_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_custom_campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.yml/unique_sms_stg__sms_loyalty_custom_campaigns_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select campaign_id from dev_dkruh1.sms_stg__sms_loyalty_custom_campaigns where campaign_id is not null group by campaign_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.sms_stg__sms_loyalty_custom_campaigns", "attached_node": "model.yoda.sms_stg__sms_loyalty_custom_campaigns"}, "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_user_id.f5bc9de2d1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_custom_campaigns')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_custom_campaigns_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_custom_campaigns_user_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_user_id.f5bc9de2d1", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_custom_campaigns", "not_null_sms_stg__sms_loyalty_custom_campaigns_user_id"], "alias": "not_null_sms_stg__sms_loyalty_custom_campaigns_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.859013, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_custom_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_custom_campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.yml/not_null_sms_stg__sms_loyalty_custom_campaigns_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_custom_campaigns where user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_id", "file_key_name": "models.sms_stg__sms_loyalty_custom_campaigns", "attached_node": "model.yoda.sms_stg__sms_loyalty_custom_campaigns"}, "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_synergy_id.21a61ab99e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_custom_campaigns')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_custom_campaigns_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_custom_campaigns_synergy_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_synergy_id.21a61ab99e", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_custom_campaigns", "not_null_sms_stg__sms_loyalty_custom_campaigns_synergy_id"], "alias": "not_null_sms_stg__sms_loyalty_custom_campaigns_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.8655682, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_custom_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_custom_campaigns"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.yml/not_null_sms_stg__sms_loyalty_custom_campaigns_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_custom_campaigns where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms_stg__sms_loyalty_custom_campaigns", "attached_node": "model.yoda.sms_stg__sms_loyalty_custom_campaigns"}, "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_order_created.94295e0b38": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_created", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_flows_kpi_order_created", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_flows_kpi_order_created.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_order_created.94295e0b38", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_flows_kpi", "not_null_sms_stg__sms_loyalty_flows_kpi_order_created"], "alias": "not_null_sms_stg__sms_loyalty_flows_kpi_order_created", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.8956318, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml/not_null_sms_stg__sms_loyalty_flows_kpi_order_created.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_flows_kpi where order_created is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_created", "file_key_name": "models.sms_stg__sms_loyalty_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_flow_id.d03c6f1299": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "flow_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_flows_kpi_flow_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_flows_kpi_flow_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_flow_id.d03c6f1299", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_flows_kpi", "not_null_sms_stg__sms_loyalty_flows_kpi_flow_id"], "alias": "not_null_sms_stg__sms_loyalty_flows_kpi_flow_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.9024072, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml/not_null_sms_stg__sms_loyalty_flows_kpi_flow_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_flows_kpi where flow_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "flow_id", "file_key_name": "models.sms_stg__sms_loyalty_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_user_id.84f00df3d4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_flows_kpi_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_flows_kpi_user_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_user_id.84f00df3d4", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_flows_kpi", "not_null_sms_stg__sms_loyalty_flows_kpi_user_id"], "alias": "not_null_sms_stg__sms_loyalty_flows_kpi_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.9086208, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml/not_null_sms_stg__sms_loyalty_flows_kpi_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_flows_kpi where user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_id", "file_key_name": "models.sms_stg__sms_loyalty_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_synergy_id.e4d948c601": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_flows_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_flows_kpi_synergy_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_synergy_id.e4d948c601", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_flows_kpi", "not_null_sms_stg__sms_loyalty_flows_kpi_synergy_id"], "alias": "not_null_sms_stg__sms_loyalty_flows_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.915936, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml/not_null_sms_stg__sms_loyalty_flows_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_flows_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms_stg__sms_loyalty_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_order_id.9ac4dff31a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_flows_kpi_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_flows_kpi_order_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_order_id.9ac4dff31a", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_flows_kpi", "not_null_sms_stg__sms_loyalty_flows_kpi_order_id"], "alias": "not_null_sms_stg__sms_loyalty_flows_kpi_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.9222875, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml/not_null_sms_stg__sms_loyalty_flows_kpi_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_flows_kpi where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.sms_stg__sms_loyalty_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_flows_kpi"}, "test.yoda.unique_sms_stg__sms_loyalty_flows_kpi_order_id.1cc255b787": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_sms_stg__sms_loyalty_flows_kpi_order_id", "resource_type": "test", "package_name": "yoda", "path": "unique_sms_stg__sms_loyalty_flows_kpi_order_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml", "unique_id": "test.yoda.unique_sms_stg__sms_loyalty_flows_kpi_order_id.1cc255b787", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_flows_kpi", "unique_sms_stg__sms_loyalty_flows_kpi_order_id"], "alias": "unique_sms_stg__sms_loyalty_flows_kpi_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082688.9285192, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml/unique_sms_stg__sms_loyalty_flows_kpi_order_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select order_id from dev_dkruh1.sms_stg__sms_loyalty_flows_kpi where order_id is not null group by order_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.sms_stg__sms_loyalty_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_app_key.00e7633287": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_flows_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_flows_kpi_app_key.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_app_key.00e7633287", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_flows_kpi", "not_null_sms_stg__sms_loyalty_flows_kpi_app_key"], "alias": "not_null_sms_stg__sms_loyalty_flows_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.9353833, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml/not_null_sms_stg__sms_loyalty_flows_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_flows_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms_stg__sms_loyalty_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_customer_external_id.663bb6641c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_loyalty_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_loyalty_flows_kpi_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_loyalty_flows_kpi_customer_external_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_customer_external_id.663bb6641c", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_loyalty_flows_kpi", "not_null_sms_stg__sms_loyalty_flows_kpi_customer_external_id"], "alias": "not_null_sms_stg__sms_loyalty_flows_kpi_customer_external_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.9420018, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_loyalty_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.yml/not_null_sms_stg__sms_loyalty_flows_kpi_customer_external_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_loyalty_flows_kpi where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.sms_stg__sms_loyalty_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_loyalty_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_synergy_id.ed2f5118d2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_reviews_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_reviews_flows_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_reviews_flows_kpi_synergy_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_synergy_id.ed2f5118d2", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_reviews_flows_kpi", "not_null_sms_stg__sms_reviews_flows_kpi_synergy_id"], "alias": "not_null_sms_stg__sms_reviews_flows_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.971723, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_reviews_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_reviews_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml/not_null_sms_stg__sms_reviews_flows_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_reviews_flows_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms_stg__sms_reviews_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_reviews_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_type.265a0d9485": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_type", "model": "{{ get_where_subquery(ref('sms_stg__sms_reviews_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_reviews_flows_kpi_action_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_reviews_flows_kpi_action_type.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_type.265a0d9485", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_reviews_flows_kpi", "not_null_sms_stg__sms_reviews_flows_kpi_action_type"], "alias": "not_null_sms_stg__sms_reviews_flows_kpi_action_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.977974, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_reviews_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_reviews_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml/not_null_sms_stg__sms_reviews_flows_kpi_action_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_reviews_flows_kpi where action_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_type", "file_key_name": "models.sms_stg__sms_reviews_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_reviews_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_id.bbd1debb93": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_reviews_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_reviews_flows_kpi_action_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_reviews_flows_kpi_action_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_id.bbd1debb93", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_reviews_flows_kpi", "not_null_sms_stg__sms_reviews_flows_kpi_action_id"], "alias": "not_null_sms_stg__sms_reviews_flows_kpi_action_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.9844153, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_reviews_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_reviews_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml/not_null_sms_stg__sms_reviews_flows_kpi_action_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_reviews_flows_kpi where action_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_id", "file_key_name": "models.sms_stg__sms_reviews_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_reviews_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_type.53a6bf6014": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_type", "model": "{{ get_where_subquery(ref('sms_stg__sms_reviews_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_type.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_type.53a6bf6014", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_reviews_flows_kpi", "not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_type"], "alias": "not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.9909022, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_reviews_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_reviews_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml/not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_reviews_flows_kpi where action_attribute_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_type", "file_key_name": "models.sms_stg__sms_reviews_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_reviews_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_value.a53aaa039b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_value", "model": "{{ get_where_subquery(ref('sms_stg__sms_reviews_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_value", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_value.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_value.a53aaa039b", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_reviews_flows_kpi", "not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_value"], "alias": "not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_value", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082688.9974377, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_reviews_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_reviews_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml/not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_value.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_reviews_flows_kpi where action_attribute_value is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_value", "file_key_name": "models.sms_stg__sms_reviews_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_reviews_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_app_key.25ddfd9d45": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('sms_stg__sms_reviews_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_reviews_flows_kpi_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_reviews_flows_kpi_app_key.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_app_key.25ddfd9d45", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_reviews_flows_kpi", "not_null_sms_stg__sms_reviews_flows_kpi_app_key"], "alias": "not_null_sms_stg__sms_reviews_flows_kpi_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.005056, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_reviews_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_reviews_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml/not_null_sms_stg__sms_reviews_flows_kpi_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_reviews_flows_kpi where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.sms_stg__sms_reviews_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_reviews_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_flow_id.5ca1d76709": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "flow_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_reviews_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_reviews_flows_kpi_flow_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_reviews_flows_kpi_flow_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_flow_id.5ca1d76709", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_reviews_flows_kpi", "not_null_sms_stg__sms_reviews_flows_kpi_flow_id"], "alias": "not_null_sms_stg__sms_reviews_flows_kpi_flow_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.0114725, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_reviews_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_reviews_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml/not_null_sms_stg__sms_reviews_flows_kpi_flow_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_reviews_flows_kpi where flow_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "flow_id", "file_key_name": "models.sms_stg__sms_reviews_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_reviews_flows_kpi"}, "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_user_id.8b7af4db58": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_id", "model": "{{ get_where_subquery(ref('sms_stg__sms_reviews_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__sms_reviews_flows_kpi_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__sms_reviews_flows_kpi_user_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_user_id.8b7af4db58", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__sms_reviews_flows_kpi", "not_null_sms_stg__sms_reviews_flows_kpi_user_id"], "alias": "not_null_sms_stg__sms_reviews_flows_kpi_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.018417, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__sms_reviews_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__sms_reviews_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.yml/not_null_sms_stg__sms_reviews_flows_kpi_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__sms_reviews_flows_kpi where user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_id", "file_key_name": "models.sms_stg__sms_reviews_flows_kpi", "attached_node": "model.yoda.sms_stg__sms_reviews_flows_kpi"}, "test.yoda.not_null_sms_stg__social_proof_flows_kpi_store_id.9a58077931": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('sms_stg__social_proof_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__social_proof_flows_kpi_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__social_proof_flows_kpi_store_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__social_proof_flows_kpi_store_id.9a58077931", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__social_proof_flows_kpi", "not_null_sms_stg__social_proof_flows_kpi_store_id"], "alias": "not_null_sms_stg__social_proof_flows_kpi_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.0425844, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__social_proof_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__social_proof_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml/not_null_sms_stg__social_proof_flows_kpi_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__social_proof_flows_kpi where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.sms_stg__social_proof_flows_kpi", "attached_node": "model.yoda.sms_stg__social_proof_flows_kpi"}, "test.yoda.not_null_sms_stg__social_proof_flows_kpi_user_id.616df356af": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_id", "model": "{{ get_where_subquery(ref('sms_stg__social_proof_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__social_proof_flows_kpi_user_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__social_proof_flows_kpi_user_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__social_proof_flows_kpi_user_id.616df356af", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__social_proof_flows_kpi", "not_null_sms_stg__social_proof_flows_kpi_user_id"], "alias": "not_null_sms_stg__social_proof_flows_kpi_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.0490468, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__social_proof_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__social_proof_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml/not_null_sms_stg__social_proof_flows_kpi_user_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__social_proof_flows_kpi where user_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_id", "file_key_name": "models.sms_stg__social_proof_flows_kpi", "attached_node": "model.yoda.sms_stg__social_proof_flows_kpi"}, "test.yoda.not_null_sms_stg__social_proof_flows_kpi_flow_id.0d3291518e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "flow_id", "model": "{{ get_where_subquery(ref('sms_stg__social_proof_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__social_proof_flows_kpi_flow_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__social_proof_flows_kpi_flow_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__social_proof_flows_kpi_flow_id.0d3291518e", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__social_proof_flows_kpi", "not_null_sms_stg__social_proof_flows_kpi_flow_id"], "alias": "not_null_sms_stg__social_proof_flows_kpi_flow_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.054989, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__social_proof_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__social_proof_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml/not_null_sms_stg__social_proof_flows_kpi_flow_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__social_proof_flows_kpi where flow_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "flow_id", "file_key_name": "models.sms_stg__social_proof_flows_kpi", "attached_node": "model.yoda.sms_stg__social_proof_flows_kpi"}, "test.yoda.not_null_sms_stg__social_proof_flows_kpi_customer_external_id.94003d5050": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('sms_stg__social_proof_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__social_proof_flows_kpi_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__social_proof_flows_kpi_customer_external_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__social_proof_flows_kpi_customer_external_id.94003d5050", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__social_proof_flows_kpi", "not_null_sms_stg__social_proof_flows_kpi_customer_external_id"], "alias": "not_null_sms_stg__social_proof_flows_kpi_customer_external_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.061398, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__social_proof_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__social_proof_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml/not_null_sms_stg__social_proof_flows_kpi_customer_external_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__social_proof_flows_kpi where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.sms_stg__social_proof_flows_kpi", "attached_node": "model.yoda.sms_stg__social_proof_flows_kpi"}, "test.yoda.not_null_sms_stg__social_proof_flows_kpi_order_created.e48858883a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_created", "model": "{{ get_where_subquery(ref('sms_stg__social_proof_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__social_proof_flows_kpi_order_created", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__social_proof_flows_kpi_order_created.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__social_proof_flows_kpi_order_created.e48858883a", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__social_proof_flows_kpi", "not_null_sms_stg__social_proof_flows_kpi_order_created"], "alias": "not_null_sms_stg__social_proof_flows_kpi_order_created", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.0675054, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__social_proof_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__social_proof_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml/not_null_sms_stg__social_proof_flows_kpi_order_created.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__social_proof_flows_kpi where order_created is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_created", "file_key_name": "models.sms_stg__social_proof_flows_kpi", "attached_node": "model.yoda.sms_stg__social_proof_flows_kpi"}, "test.yoda.not_null_sms_stg__social_proof_flows_kpi_synergy_id.76fed0e870": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('sms_stg__social_proof_flows_kpi')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_sms_stg__social_proof_flows_kpi_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_sms_stg__social_proof_flows_kpi_synergy_id.sql", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml", "unique_id": "test.yoda.not_null_sms_stg__social_proof_flows_kpi_synergy_id.76fed0e870", "fqn": ["yoda", "sms", "staging", "marts_compatible", "sms_stg__social_proof_flows_kpi", "not_null_sms_stg__social_proof_flows_kpi_synergy_id"], "alias": "not_null_sms_stg__social_proof_flows_kpi_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.0731354, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "sms_stg__social_proof_flows_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.sms_stg__social_proof_flows_kpi"]}, "compiled_path": "target/compiled/yoda/models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.yml/not_null_sms_stg__social_proof_flows_kpi_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.sms_stg__social_proof_flows_kpi where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.sms_stg__social_proof_flows_kpi", "attached_node": "model.yoda.sms_stg__social_proof_flows_kpi"}, "test.yoda.unique_subscriptions__recurrent_event_rule_id.d124611023": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions__recurrent_event_rule_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions__recurrent_event_rule_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml", "unique_id": "test.yoda.unique_subscriptions__recurrent_event_rule_id.d124611023", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__recurrent_event_rule", "unique_subscriptions__recurrent_event_rule_id"], "alias": "unique_subscriptions__recurrent_event_rule_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082689.2808359, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml/unique_subscriptions__recurrent_event_rule_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions__recurrent_event_rule where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__recurrent_event_rule", "attached_node": "model.yoda.subscriptions__recurrent_event_rule"}, "test.yoda.not_null_subscriptions__recurrent_event_rule_id.3e6e1ca38f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__recurrent_event_rule_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__recurrent_event_rule_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions__recurrent_event_rule_id.3e6e1ca38f", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__recurrent_event_rule", "not_null_subscriptions__recurrent_event_rule_id"], "alias": "not_null_subscriptions__recurrent_event_rule_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.2867541, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml/not_null_subscriptions__recurrent_event_rule_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__recurrent_event_rule where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__recurrent_event_rule", "attached_node": "model.yoda.subscriptions__recurrent_event_rule"}, "test.yoda.not_null_subscriptions__recurrent_event_rule_created_at.81c34b3f79": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('subscriptions__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__recurrent_event_rule_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__recurrent_event_rule_created_at.sql", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions__recurrent_event_rule_created_at.81c34b3f79", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__recurrent_event_rule", "not_null_subscriptions__recurrent_event_rule_created_at"], "alias": "not_null_subscriptions__recurrent_event_rule_created_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.2928517, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml/not_null_subscriptions__recurrent_event_rule_created_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__recurrent_event_rule where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.subscriptions__recurrent_event_rule", "attached_node": "model.yoda.subscriptions__recurrent_event_rule"}, "test.yoda.not_null_subscriptions__recurrent_event_rule_updated_at.fc466f17cb": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('subscriptions__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__recurrent_event_rule_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__recurrent_event_rule_updated_at.sql", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions__recurrent_event_rule_updated_at.fc466f17cb", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__recurrent_event_rule", "not_null_subscriptions__recurrent_event_rule_updated_at"], "alias": "not_null_subscriptions__recurrent_event_rule_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.2986085, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml/not_null_subscriptions__recurrent_event_rule_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__recurrent_event_rule where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.subscriptions__recurrent_event_rule", "attached_node": "model.yoda.subscriptions__recurrent_event_rule"}, "test.yoda.not_null_subscriptions__recurrent_event_rule_obj_id.304c69bd4b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "obj_id", "model": "{{ get_where_subquery(ref('subscriptions__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__recurrent_event_rule_obj_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__recurrent_event_rule_obj_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions__recurrent_event_rule_obj_id.304c69bd4b", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__recurrent_event_rule", "not_null_subscriptions__recurrent_event_rule_obj_id"], "alias": "not_null_subscriptions__recurrent_event_rule_obj_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.3046503, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml/not_null_subscriptions__recurrent_event_rule_obj_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__recurrent_event_rule where obj_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "obj_id", "file_key_name": "models.subscriptions__recurrent_event_rule", "attached_node": "model.yoda.subscriptions__recurrent_event_rule"}, "test.yoda.not_null_subscriptions__recurrent_event_rule_obj_type.5400d9a9b1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "obj_type", "model": "{{ get_where_subquery(ref('subscriptions__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__recurrent_event_rule_obj_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__recurrent_event_rule_obj_type.sql", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions__recurrent_event_rule_obj_type.5400d9a9b1", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__recurrent_event_rule", "not_null_subscriptions__recurrent_event_rule_obj_type"], "alias": "not_null_subscriptions__recurrent_event_rule_obj_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.3107038, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml/not_null_subscriptions__recurrent_event_rule_obj_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__recurrent_event_rule where obj_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "obj_type", "file_key_name": "models.subscriptions__recurrent_event_rule", "attached_node": "model.yoda.subscriptions__recurrent_event_rule"}, "test.yoda.not_null_subscriptions__recurrent_event_rule_plan_interval.6ed726d355": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_interval", "model": "{{ get_where_subquery(ref('subscriptions__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__recurrent_event_rule_plan_interval", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__recurrent_event_rule_plan_interval.sql", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions__recurrent_event_rule_plan_interval.6ed726d355", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__recurrent_event_rule", "not_null_subscriptions__recurrent_event_rule_plan_interval"], "alias": "not_null_subscriptions__recurrent_event_rule_plan_interval", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.3166537, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml/not_null_subscriptions__recurrent_event_rule_plan_interval.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__recurrent_event_rule where plan_interval is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_interval", "file_key_name": "models.subscriptions__recurrent_event_rule", "attached_node": "model.yoda.subscriptions__recurrent_event_rule"}, "test.yoda.not_null_subscriptions__recurrent_event_rule_interval_count.00655cb6ff": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "interval_count", "model": "{{ get_where_subquery(ref('subscriptions__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__recurrent_event_rule_interval_count", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__recurrent_event_rule_interval_count.sql", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions__recurrent_event_rule_interval_count.00655cb6ff", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__recurrent_event_rule", "not_null_subscriptions__recurrent_event_rule_interval_count"], "alias": "not_null_subscriptions__recurrent_event_rule_interval_count", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.3222437, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml/not_null_subscriptions__recurrent_event_rule_interval_count.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__recurrent_event_rule where interval_count is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "interval_count", "file_key_name": "models.subscriptions__recurrent_event_rule", "attached_node": "model.yoda.subscriptions__recurrent_event_rule"}, "test.yoda.not_null_subscriptions__recurrent_event_rule_is_canceled.324f4c15ee": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_canceled", "model": "{{ get_where_subquery(ref('subscriptions__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__recurrent_event_rule_is_canceled", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__recurrent_event_rule_is_canceled.sql", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions__recurrent_event_rule_is_canceled.324f4c15ee", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__recurrent_event_rule", "not_null_subscriptions__recurrent_event_rule_is_canceled"], "alias": "not_null_subscriptions__recurrent_event_rule_is_canceled", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.328254, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.yml/not_null_subscriptions__recurrent_event_rule_is_canceled.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__recurrent_event_rule where is_canceled is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_canceled", "file_key_name": "models.subscriptions__recurrent_event_rule", "attached_node": "model.yoda.subscriptions__recurrent_event_rule"}, "test.yoda.unique_subscriptions__status_id.f32aced663": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions__status_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions__status_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.yml", "unique_id": "test.yoda.unique_subscriptions__status_id.f32aced663", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__status", "unique_subscriptions__status_id"], "alias": "unique_subscriptions__status_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082689.6355414, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__status/subscriptions__status.yml/unique_subscriptions__status_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions__status where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__status", "attached_node": "model.yoda.subscriptions__status"}, "test.yoda.not_null_subscriptions__status_id.0e1836e3d1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__status_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__status_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.yml", "unique_id": "test.yoda.not_null_subscriptions__status_id.0e1836e3d1", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__status", "not_null_subscriptions__status_id"], "alias": "not_null_subscriptions__status_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.6427362, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__status/subscriptions__status.yml/not_null_subscriptions__status_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__status where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__status", "attached_node": "model.yoda.subscriptions__status"}, "test.yoda.unique_subscriptions__status_num.c4479387d7": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "num", "model": "{{ get_where_subquery(ref('subscriptions__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions__status_num", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions__status_num.sql", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.yml", "unique_id": "test.yoda.unique_subscriptions__status_num.c4479387d7", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__status", "unique_subscriptions__status_num"], "alias": "unique_subscriptions__status_num", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082689.6489716, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__status/subscriptions__status.yml/unique_subscriptions__status_num.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select num from dev_dkruh1.subscriptions__status where num is not null group by num having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "num", "file_key_name": "models.subscriptions__status", "attached_node": "model.yoda.subscriptions__status"}, "test.yoda.not_null_subscriptions__status_num.6bcb27440e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "num", "model": "{{ get_where_subquery(ref('subscriptions__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__status_num", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__status_num.sql", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.yml", "unique_id": "test.yoda.not_null_subscriptions__status_num.6bcb27440e", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__status", "not_null_subscriptions__status_num"], "alias": "not_null_subscriptions__status_num", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.6551056, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__status/subscriptions__status.yml/not_null_subscriptions__status_num.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__status where num is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "num", "file_key_name": "models.subscriptions__status", "attached_node": "model.yoda.subscriptions__status"}, "test.yoda.unique_subscriptions__status_text.5ea3decb93": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "text", "model": "{{ get_where_subquery(ref('subscriptions__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions__status_text", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions__status_text.sql", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.yml", "unique_id": "test.yoda.unique_subscriptions__status_text.5ea3decb93", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__status", "unique_subscriptions__status_text"], "alias": "unique_subscriptions__status_text", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082689.6617334, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__status/subscriptions__status.yml/unique_subscriptions__status_text.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select text from dev_dkruh1.subscriptions__status where text is not null group by text having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "text", "file_key_name": "models.subscriptions__status", "attached_node": "model.yoda.subscriptions__status"}, "test.yoda.not_null_subscriptions__status_text.7918b594f4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "text", "model": "{{ get_where_subquery(ref('subscriptions__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__status_text", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__status_text.sql", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.yml", "unique_id": "test.yoda.not_null_subscriptions__status_text.7918b594f4", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__status", "not_null_subscriptions__status_text"], "alias": "not_null_subscriptions__status_text", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.6677196, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__status/subscriptions__status.yml/not_null_subscriptions__status_text.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__status where text is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "text", "file_key_name": "models.subscriptions__status", "attached_node": "model.yoda.subscriptions__status"}, "test.yoda.unique_subscriptions__subscription_accounts_app_key.865b094650": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('subscriptions__subscription_accounts')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions__subscription_accounts_app_key", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions__subscription_accounts_app_key.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.yml", "unique_id": "test.yoda.unique_subscriptions__subscription_accounts_app_key.865b094650", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_accounts", "unique_subscriptions__subscription_accounts_app_key"], "alias": "unique_subscriptions__subscription_accounts_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082689.7260296, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_accounts"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.yml/unique_subscriptions__subscription_accounts_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from dev_dkruh1.subscriptions__subscription_accounts where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.subscriptions__subscription_accounts", "attached_node": "model.yoda.subscriptions__subscription_accounts"}, "test.yoda.not_null_subscriptions__subscription_accounts_app_key.bc18436501": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('subscriptions__subscription_accounts')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_accounts_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_accounts_app_key.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_accounts_app_key.bc18436501", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_accounts", "not_null_subscriptions__subscription_accounts_app_key"], "alias": "not_null_subscriptions__subscription_accounts_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.7319272, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_accounts"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.yml/not_null_subscriptions__subscription_accounts_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_accounts where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.subscriptions__subscription_accounts", "attached_node": "model.yoda.subscriptions__subscription_accounts"}, "test.yoda.not_null_subscriptions__subscription_accounts_is_test.f9e6d2f52c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_test", "model": "{{ get_where_subquery(ref('subscriptions__subscription_accounts')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_accounts_is_test", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_accounts_is_test.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_accounts_is_test.f9e6d2f52c", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_accounts", "not_null_subscriptions__subscription_accounts_is_test"], "alias": "not_null_subscriptions__subscription_accounts_is_test", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.7379448, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_accounts"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.yml/not_null_subscriptions__subscription_accounts_is_test.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_accounts where is_test is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_test", "file_key_name": "models.subscriptions__subscription_accounts", "attached_node": "model.yoda.subscriptions__subscription_accounts"}, "test.yoda.unique_subscriptions__subscription_contract_id.ba23444208": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions__subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions__subscription_contract_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.unique_subscriptions__subscription_contract_id.ba23444208", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "unique_subscriptions__subscription_contract_id"], "alias": "unique_subscriptions__subscription_contract_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082689.7685308, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/unique_subscriptions__subscription_contract_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions__subscription_contract where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_id.f85b412524": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_contract_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_id.f85b412524", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "not_null_subscriptions__subscription_contract_id"], "alias": "not_null_subscriptions__subscription_contract_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.7745721, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/not_null_subscriptions__subscription_contract_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_store_id.eda0b915fc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_contract_store_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_store_id.eda0b915fc", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "not_null_subscriptions__subscription_contract_store_id"], "alias": "not_null_subscriptions__subscription_contract_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.7822275, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/not_null_subscriptions__subscription_contract_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_external_id.d03059b309": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_contract_external_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_external_id.d03059b309", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "not_null_subscriptions__subscription_contract_external_id"], "alias": "not_null_subscriptions__subscription_contract_external_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.7883928, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/not_null_subscriptions__subscription_contract_external_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract where external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_id", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_status.2e53e022b3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "status", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_status", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_contract_status.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_status.2e53e022b3", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "not_null_subscriptions__subscription_contract_status"], "alias": "not_null_subscriptions__subscription_contract_status", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.7940657, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/not_null_subscriptions__subscription_contract_status.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract where status is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "status", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_delivery_policy_interval.a86bca1149": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "delivery_policy_interval", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_delivery_policy_interval", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_4fa9665dedba5f82970856a0113ca68b.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_delivery_policy_interval.a86bca1149", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "not_null_subscriptions__subscription_contract_delivery_policy_interval"], "alias": "not_null_subscriptions__subscr_4fa9665dedba5f82970856a0113ca68b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_4fa9665dedba5f82970856a0113ca68b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_4fa9665dedba5f82970856a0113ca68b"}, "created_at": 1700082689.80005, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_4fa9665dedba5f82970856a0113ca68b\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/not_null_subscriptions__subscr_4fa9665dedba5f82970856a0113ca68b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract where delivery_policy_interval is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "delivery_policy_interval", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_delivery_policy_interval_count.4dfa830ddd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "delivery_policy_interval_count", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_delivery_policy_interval_count", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_1e7f75717d5bd514b80e10a98224c65b.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_delivery_policy_interval_count.4dfa830ddd", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "not_null_subscriptions__subscription_contract_delivery_policy_interval_count"], "alias": "not_null_subscriptions__subscr_1e7f75717d5bd514b80e10a98224c65b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_1e7f75717d5bd514b80e10a98224c65b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_1e7f75717d5bd514b80e10a98224c65b"}, "created_at": 1700082689.8064423, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_1e7f75717d5bd514b80e10a98224c65b\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/not_null_subscriptions__subscr_1e7f75717d5bd514b80e10a98224c65b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract where delivery_policy_interval_count is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "delivery_policy_interval_count", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_billing_policy_interval.ef3085ca3c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "billing_policy_interval", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_billing_policy_interval", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_3d1129ac8a8ac54ff27c5642912d89d3.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_billing_policy_interval.ef3085ca3c", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "not_null_subscriptions__subscription_contract_billing_policy_interval"], "alias": "not_null_subscriptions__subscr_3d1129ac8a8ac54ff27c5642912d89d3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_3d1129ac8a8ac54ff27c5642912d89d3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_3d1129ac8a8ac54ff27c5642912d89d3"}, "created_at": 1700082689.8124382, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_3d1129ac8a8ac54ff27c5642912d89d3\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/not_null_subscriptions__subscr_3d1129ac8a8ac54ff27c5642912d89d3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract where billing_policy_interval is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "billing_policy_interval", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_billing_policy_interval_count.19bd743b78": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "billing_policy_interval_count", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_billing_policy_interval_count", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_1f8f198b6054a668b074c2fd333ce68c.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_billing_policy_interval_count.19bd743b78", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "not_null_subscriptions__subscription_contract_billing_policy_interval_count"], "alias": "not_null_subscriptions__subscr_1f8f198b6054a668b074c2fd333ce68c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_1f8f198b6054a668b074c2fd333ce68c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_1f8f198b6054a668b074c2fd333ce68c"}, "created_at": 1700082689.8186965, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_1f8f198b6054a668b074c2fd333ce68c\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/not_null_subscriptions__subscr_1f8f198b6054a668b074c2fd333ce68c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract where billing_policy_interval_count is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "billing_policy_interval_count", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_external_customer_id.39cc52db95": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_customer_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_external_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_bb0a68ee13bed6db9ddd4cf23e0c37be.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_external_customer_id.39cc52db95", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "not_null_subscriptions__subscription_contract_external_customer_id"], "alias": "not_null_subscriptions__subscr_bb0a68ee13bed6db9ddd4cf23e0c37be", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_bb0a68ee13bed6db9ddd4cf23e0c37be", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_bb0a68ee13bed6db9ddd4cf23e0c37be"}, "created_at": 1700082689.8250258, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_bb0a68ee13bed6db9ddd4cf23e0c37be\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/not_null_subscriptions__subscr_bb0a68ee13bed6db9ddd4cf23e0c37be.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract where external_customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_customer_id", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_created_at.12896bd08f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_contract_created_at.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_created_at.12896bd08f", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "not_null_subscriptions__subscription_contract_created_at"], "alias": "not_null_subscriptions__subscription_contract_created_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.8313663, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/not_null_subscriptions__subscription_contract_created_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_updated_at.d55f6eac47": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_contract_updated_at.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_updated_at.d55f6eac47", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract", "not_null_subscriptions__subscription_contract_updated_at"], "alias": "not_null_subscriptions__subscription_contract_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.8373437, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.yml/not_null_subscriptions__subscription_contract_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.subscriptions__subscription_contract", "attached_node": "model.yoda.subscriptions__subscription_contract"}, "test.yoda.not_null_subscriptions__subscription_contract_line_policy_subscription_contract_id.31bfd15557": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_contract_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_line_policy')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_line_policy_subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_4fda50ea08dc17429d4a8578dcbcb017.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_line_policy_subscription_contract_id.31bfd15557", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_line_policy", "not_null_subscriptions__subscription_contract_line_policy_subscription_contract_id"], "alias": "not_null_subscriptions__subscr_4fda50ea08dc17429d4a8578dcbcb017", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_4fda50ea08dc17429d4a8578dcbcb017", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_4fda50ea08dc17429d4a8578dcbcb017"}, "created_at": 1700082689.8866844, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_4fda50ea08dc17429d4a8578dcbcb017\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_line_policy", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_line_policy"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml/not_null_subscriptions__subscr_4fda50ea08dc17429d4a8578dcbcb017.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_line_policy where subscription_contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_id", "file_key_name": "models.subscriptions__subscription_contract_line_policy", "attached_node": "model.yoda.subscriptions__subscription_contract_line_policy"}, "test.yoda.not_null_subscriptions__subscription_contract_line_policy_subscription_contract_external_id.c9469e7b6c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_contract_external_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_line_policy')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_line_policy_subscription_contract_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_bee77c71dcc302d98bb6876f79a3c4b5.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_line_policy_subscription_contract_external_id.c9469e7b6c", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_line_policy", "not_null_subscriptions__subscription_contract_line_policy_subscription_contract_external_id"], "alias": "not_null_subscriptions__subscr_bee77c71dcc302d98bb6876f79a3c4b5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_bee77c71dcc302d98bb6876f79a3c4b5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_bee77c71dcc302d98bb6876f79a3c4b5"}, "created_at": 1700082689.8927567, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_bee77c71dcc302d98bb6876f79a3c4b5\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_line_policy", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_line_policy"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml/not_null_subscriptions__subscr_bee77c71dcc302d98bb6876f79a3c4b5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_line_policy where subscription_contract_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_external_id", "file_key_name": "models.subscriptions__subscription_contract_line_policy", "attached_node": "model.yoda.subscriptions__subscription_contract_line_policy"}, "test.yoda.not_null_subscriptions__subscription_contract_line_policy_product_external_id.893a27b15a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_external_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_line_policy')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_line_policy_product_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_f4da6d1299f72a7abcf829806291ddec.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_line_policy_product_external_id.893a27b15a", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_line_policy", "not_null_subscriptions__subscription_contract_line_policy_product_external_id"], "alias": "not_null_subscriptions__subscr_f4da6d1299f72a7abcf829806291ddec", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_f4da6d1299f72a7abcf829806291ddec", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_f4da6d1299f72a7abcf829806291ddec"}, "created_at": 1700082689.8991327, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_f4da6d1299f72a7abcf829806291ddec\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_line_policy", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_line_policy"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml/not_null_subscriptions__subscr_f4da6d1299f72a7abcf829806291ddec.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_line_policy where product_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_external_id", "file_key_name": "models.subscriptions__subscription_contract_line_policy", "attached_node": "model.yoda.subscriptions__subscription_contract_line_policy"}, "test.yoda.not_null_subscriptions__subscription_contract_line_policy_product_title.ba64e462f8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_title", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_line_policy')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_line_policy_product_title", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_1afcd4368be5d35e573c7182c93efb10.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_line_policy_product_title.ba64e462f8", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_line_policy", "not_null_subscriptions__subscription_contract_line_policy_product_title"], "alias": "not_null_subscriptions__subscr_1afcd4368be5d35e573c7182c93efb10", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_1afcd4368be5d35e573c7182c93efb10", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_1afcd4368be5d35e573c7182c93efb10"}, "created_at": 1700082689.9053261, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_1afcd4368be5d35e573c7182c93efb10\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_line_policy", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_line_policy"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml/not_null_subscriptions__subscr_1afcd4368be5d35e573c7182c93efb10.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_line_policy where product_title is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_title", "file_key_name": "models.subscriptions__subscription_contract_line_policy", "attached_node": "model.yoda.subscriptions__subscription_contract_line_policy"}, "test.yoda.not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval.4581d78f9f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "delivery_policy_interval", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_line_policy')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_6fd23792a0816096869848714f01371f.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval.4581d78f9f", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_line_policy", "not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval"], "alias": "not_null_subscriptions__subscr_6fd23792a0816096869848714f01371f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_6fd23792a0816096869848714f01371f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_6fd23792a0816096869848714f01371f"}, "created_at": 1700082689.9117289, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_6fd23792a0816096869848714f01371f\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_line_policy", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_line_policy"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml/not_null_subscriptions__subscr_6fd23792a0816096869848714f01371f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_line_policy where delivery_policy_interval is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "delivery_policy_interval", "file_key_name": "models.subscriptions__subscription_contract_line_policy", "attached_node": "model.yoda.subscriptions__subscription_contract_line_policy"}, "test.yoda.not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval_count.eeab6707a5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "delivery_policy_interval_count", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_line_policy')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval_count", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_a7cc54bf4e102c906e4e92b76f8c25aa.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval_count.eeab6707a5", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_line_policy", "not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval_count"], "alias": "not_null_subscriptions__subscr_a7cc54bf4e102c906e4e92b76f8c25aa", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_a7cc54bf4e102c906e4e92b76f8c25aa", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_a7cc54bf4e102c906e4e92b76f8c25aa"}, "created_at": 1700082689.918066, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_a7cc54bf4e102c906e4e92b76f8c25aa\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_line_policy", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_line_policy"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml/not_null_subscriptions__subscr_a7cc54bf4e102c906e4e92b76f8c25aa.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_line_policy where delivery_policy_interval_count is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "delivery_policy_interval_count", "file_key_name": "models.subscriptions__subscription_contract_line_policy", "attached_node": "model.yoda.subscriptions__subscription_contract_line_policy"}, "test.yoda.not_null_subscriptions__subscription_contract_line_policy_store_id.3856262e90": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_line_policy')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_line_policy_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_a08f81b747a0e060821dfc57c264b9e6.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_line_policy_store_id.3856262e90", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_line_policy", "not_null_subscriptions__subscription_contract_line_policy_store_id"], "alias": "not_null_subscriptions__subscr_a08f81b747a0e060821dfc57c264b9e6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_a08f81b747a0e060821dfc57c264b9e6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_a08f81b747a0e060821dfc57c264b9e6"}, "created_at": 1700082689.924432, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_a08f81b747a0e060821dfc57c264b9e6\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_line_policy", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_line_policy"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml/not_null_subscriptions__subscr_a08f81b747a0e060821dfc57c264b9e6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_line_policy where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.subscriptions__subscription_contract_line_policy", "attached_node": "model.yoda.subscriptions__subscription_contract_line_policy"}, "test.yoda.not_null_subscriptions__subscription_contract_line_policy_variant_external_id.21ca2c3c1d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "variant_external_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_line_policy')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_line_policy_variant_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_e539b147a51f3cd5916e1e1f912031d8.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_line_policy_variant_external_id.21ca2c3c1d", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_line_policy", "not_null_subscriptions__subscription_contract_line_policy_variant_external_id"], "alias": "not_null_subscriptions__subscr_e539b147a51f3cd5916e1e1f912031d8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_e539b147a51f3cd5916e1e1f912031d8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_e539b147a51f3cd5916e1e1f912031d8"}, "created_at": 1700082689.9307778, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_e539b147a51f3cd5916e1e1f912031d8\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_line_policy", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_line_policy"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.yml/not_null_subscriptions__subscr_e539b147a51f3cd5916e1e1f912031d8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_line_policy where variant_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "variant_external_id", "file_key_name": "models.subscriptions__subscription_contract_line_policy", "attached_node": "model.yoda.subscriptions__subscription_contract_line_policy"}, "test.yoda.unique_subscriptions__subscription_contract_order_id.b60c074d05": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions__subscription_contract_order_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions__subscription_contract_order_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml", "unique_id": "test.yoda.unique_subscriptions__subscription_contract_order_id.b60c074d05", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order", "unique_subscriptions__subscription_contract_order_id"], "alias": "unique_subscriptions__subscription_contract_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082689.9595063, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml/unique_subscriptions__subscription_contract_order_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions__subscription_contract_order where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__subscription_contract_order", "attached_node": "model.yoda.subscriptions__subscription_contract_order"}, "test.yoda.not_null_subscriptions__subscription_contract_order_id.5e48bf7918": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_contract_order_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_id.5e48bf7918", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order", "not_null_subscriptions__subscription_contract_order_id"], "alias": "not_null_subscriptions__subscription_contract_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.9660194, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml/not_null_subscriptions__subscription_contract_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__subscription_contract_order", "attached_node": "model.yoda.subscriptions__subscription_contract_order"}, "test.yoda.not_null_subscriptions__subscription_contract_order_store_id.7f45cb2d26": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_contract_order_store_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_store_id.7f45cb2d26", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order", "not_null_subscriptions__subscription_contract_order_store_id"], "alias": "not_null_subscriptions__subscription_contract_order_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.9724188, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml/not_null_subscriptions__subscription_contract_order_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.subscriptions__subscription_contract_order", "attached_node": "model.yoda.subscriptions__subscription_contract_order"}, "test.yoda.not_null_subscriptions__subscription_contract_order_external_subscription_contract_id.9a19225b7d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_subscription_contract_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_external_subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_5379764d4555931abb4cec9cd6cef4d4.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_external_subscription_contract_id.9a19225b7d", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order", "not_null_subscriptions__subscription_contract_order_external_subscription_contract_id"], "alias": "not_null_subscriptions__subscr_5379764d4555931abb4cec9cd6cef4d4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_5379764d4555931abb4cec9cd6cef4d4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_5379764d4555931abb4cec9cd6cef4d4"}, "created_at": 1700082689.9786975, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_5379764d4555931abb4cec9cd6cef4d4\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml/not_null_subscriptions__subscr_5379764d4555931abb4cec9cd6cef4d4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order where external_subscription_contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_subscription_contract_id", "file_key_name": "models.subscriptions__subscription_contract_order", "attached_node": "model.yoda.subscriptions__subscription_contract_order"}, "test.yoda.not_null_subscriptions__subscription_contract_order_external_order_id.a4354e8ec7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_order_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_external_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_cae14b0649c3b1c6939b350e62037bec.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_external_order_id.a4354e8ec7", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order", "not_null_subscriptions__subscription_contract_order_external_order_id"], "alias": "not_null_subscriptions__subscr_cae14b0649c3b1c6939b350e62037bec", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_cae14b0649c3b1c6939b350e62037bec", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_cae14b0649c3b1c6939b350e62037bec"}, "created_at": 1700082689.9850588, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_cae14b0649c3b1c6939b350e62037bec\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml/not_null_subscriptions__subscr_cae14b0649c3b1c6939b350e62037bec.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order where external_order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_order_id", "file_key_name": "models.subscriptions__subscription_contract_order", "attached_node": "model.yoda.subscriptions__subscription_contract_order"}, "test.yoda.not_null_subscriptions__subscription_contract_order_created_at.4f7cc5441a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_contract_order_created_at.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_created_at.4f7cc5441a", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order", "not_null_subscriptions__subscription_contract_order_created_at"], "alias": "not_null_subscriptions__subscription_contract_order_created_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.9914935, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml/not_null_subscriptions__subscription_contract_order_created_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.subscriptions__subscription_contract_order", "attached_node": "model.yoda.subscriptions__subscription_contract_order"}, "test.yoda.not_null_subscriptions__subscription_contract_order_updated_at.623041284e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_contract_order_updated_at.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_updated_at.623041284e", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order", "not_null_subscriptions__subscription_contract_order_updated_at"], "alias": "not_null_subscriptions__subscription_contract_order_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082689.997258, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.yml/not_null_subscriptions__subscription_contract_order_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.subscriptions__subscription_contract_order", "attached_node": "model.yoda.subscriptions__subscription_contract_order"}, "test.yoda.not_null_subscriptions__subscription_contract_order_lines_external_order_id.0e27a8bc29": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_order_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order_lines')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_lines_external_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_ae64e7fd224a97c0470a22616281f96f.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_lines_external_order_id.0e27a8bc29", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order_lines", "not_null_subscriptions__subscription_contract_order_lines_external_order_id"], "alias": "not_null_subscriptions__subscr_ae64e7fd224a97c0470a22616281f96f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_ae64e7fd224a97c0470a22616281f96f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_ae64e7fd224a97c0470a22616281f96f"}, "created_at": 1700082690.024357, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_ae64e7fd224a97c0470a22616281f96f\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order_lines", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order_lines"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml/not_null_subscriptions__subscr_ae64e7fd224a97c0470a22616281f96f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order_lines where external_order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_order_id", "file_key_name": "models.subscriptions__subscription_contract_order_lines", "attached_node": "model.yoda.subscriptions__subscription_contract_order_lines"}, "test.yoda.not_null_subscriptions__subscription_contract_order_lines_external_subscription_contract_id.ed8270a222": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_subscription_contract_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order_lines')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_lines_external_subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_75e8ede49bd06e3a99d525e6d7e942c7.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_lines_external_subscription_contract_id.ed8270a222", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order_lines", "not_null_subscriptions__subscription_contract_order_lines_external_subscription_contract_id"], "alias": "not_null_subscriptions__subscr_75e8ede49bd06e3a99d525e6d7e942c7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_75e8ede49bd06e3a99d525e6d7e942c7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_75e8ede49bd06e3a99d525e6d7e942c7"}, "created_at": 1700082690.0306075, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_75e8ede49bd06e3a99d525e6d7e942c7\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order_lines", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order_lines"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml/not_null_subscriptions__subscr_75e8ede49bd06e3a99d525e6d7e942c7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order_lines where external_subscription_contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_subscription_contract_id", "file_key_name": "models.subscriptions__subscription_contract_order_lines", "attached_node": "model.yoda.subscriptions__subscription_contract_order_lines"}, "test.yoda.not_null_subscriptions__subscription_contract_order_lines_product_external_id.fd0ed26ff0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_external_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order_lines')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_lines_product_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_9a1a7f93dfae24af6fbb4078966de9e7.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_lines_product_external_id.fd0ed26ff0", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order_lines", "not_null_subscriptions__subscription_contract_order_lines_product_external_id"], "alias": "not_null_subscriptions__subscr_9a1a7f93dfae24af6fbb4078966de9e7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_9a1a7f93dfae24af6fbb4078966de9e7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_9a1a7f93dfae24af6fbb4078966de9e7"}, "created_at": 1700082690.0368743, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_9a1a7f93dfae24af6fbb4078966de9e7\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order_lines", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order_lines"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml/not_null_subscriptions__subscr_9a1a7f93dfae24af6fbb4078966de9e7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order_lines where product_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_external_id", "file_key_name": "models.subscriptions__subscription_contract_order_lines", "attached_node": "model.yoda.subscriptions__subscription_contract_order_lines"}, "test.yoda.not_null_subscriptions__subscription_contract_order_lines_variant_external_id.6ec01adf5c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "variant_external_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order_lines')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_lines_variant_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_c93a526b3f3b54cccbc0eb072603a641.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_lines_variant_external_id.6ec01adf5c", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order_lines", "not_null_subscriptions__subscription_contract_order_lines_variant_external_id"], "alias": "not_null_subscriptions__subscr_c93a526b3f3b54cccbc0eb072603a641", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_c93a526b3f3b54cccbc0eb072603a641", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_c93a526b3f3b54cccbc0eb072603a641"}, "created_at": 1700082690.042996, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_c93a526b3f3b54cccbc0eb072603a641\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order_lines", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order_lines"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml/not_null_subscriptions__subscr_c93a526b3f3b54cccbc0eb072603a641.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order_lines where variant_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "variant_external_id", "file_key_name": "models.subscriptions__subscription_contract_order_lines", "attached_node": "model.yoda.subscriptions__subscription_contract_order_lines"}, "test.yoda.not_null_subscriptions__subscription_contract_order_lines_store_id.f83074f863": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order_lines')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_lines_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_a59980b579a4661377271420fe29f11b.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_lines_store_id.f83074f863", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order_lines", "not_null_subscriptions__subscription_contract_order_lines_store_id"], "alias": "not_null_subscriptions__subscr_a59980b579a4661377271420fe29f11b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_a59980b579a4661377271420fe29f11b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_a59980b579a4661377271420fe29f11b"}, "created_at": 1700082690.0497324, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_a59980b579a4661377271420fe29f11b\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order_lines", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order_lines"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml/not_null_subscriptions__subscr_a59980b579a4661377271420fe29f11b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order_lines where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.subscriptions__subscription_contract_order_lines", "attached_node": "model.yoda.subscriptions__subscription_contract_order_lines"}, "test.yoda.not_null_subscriptions__subscription_contract_order_lines_order_line_total.4af6feff8e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_line_total", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order_lines')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_lines_order_line_total", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_793b72f52b74749acd61370995074040.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_lines_order_line_total.4af6feff8e", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order_lines", "not_null_subscriptions__subscription_contract_order_lines_order_line_total"], "alias": "not_null_subscriptions__subscr_793b72f52b74749acd61370995074040", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_793b72f52b74749acd61370995074040", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_793b72f52b74749acd61370995074040"}, "created_at": 1700082690.0564053, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_793b72f52b74749acd61370995074040\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order_lines", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order_lines"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml/not_null_subscriptions__subscr_793b72f52b74749acd61370995074040.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order_lines where order_line_total is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_line_total", "file_key_name": "models.subscriptions__subscription_contract_order_lines", "attached_node": "model.yoda.subscriptions__subscription_contract_order_lines"}, "test.yoda.not_null_subscriptions__subscription_contract_order_lines_order_date.ca8512e5b7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_date", "model": "{{ get_where_subquery(ref('subscriptions__subscription_contract_order_lines')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_contract_order_lines_order_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_16370aa89f6282a34e9a556fdb69bf8f.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_contract_order_lines_order_date.ca8512e5b7", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_contract_order_lines", "not_null_subscriptions__subscription_contract_order_lines_order_date"], "alias": "not_null_subscriptions__subscr_16370aa89f6282a34e9a556fdb69bf8f", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_16370aa89f6282a34e9a556fdb69bf8f", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_16370aa89f6282a34e9a556fdb69bf8f"}, "created_at": 1700082690.0627606, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_16370aa89f6282a34e9a556fdb69bf8f\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_contract_order_lines", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_contract_order_lines"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.yml/not_null_subscriptions__subscr_16370aa89f6282a34e9a556fdb69bf8f.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_contract_order_lines where order_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_date", "file_key_name": "models.subscriptions__subscription_contract_order_lines", "attached_node": "model.yoda.subscriptions__subscription_contract_order_lines"}, "test.yoda.not_null_subscriptions__subscription_merchant_migration_date_store_id.f16505d236": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_merchant_migration_date')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_merchant_migration_date_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_e3045d4452081d307e96126271e67890.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_merchant_migration_date_store_id.f16505d236", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_merchant_migration_date", "not_null_subscriptions__subscription_merchant_migration_date_store_id"], "alias": "not_null_subscriptions__subscr_e3045d4452081d307e96126271e67890", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_e3045d4452081d307e96126271e67890", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_e3045d4452081d307e96126271e67890"}, "created_at": 1700082690.098333, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_e3045d4452081d307e96126271e67890\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_merchant_migration_date", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_merchant_migration_date"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.yml/not_null_subscriptions__subscr_e3045d4452081d307e96126271e67890.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_merchant_migration_date where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.subscriptions__subscription_merchant_migration_date", "attached_node": "model.yoda.subscriptions__subscription_merchant_migration_date"}, "test.yoda.not_null_subscriptions__subscription_merchant_migration_date_migration_date.4336341af9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "migration_date", "model": "{{ get_where_subquery(ref('subscriptions__subscription_merchant_migration_date')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_merchant_migration_date_migration_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_4bc456c28ed4e047cb1a5606b8fd0ef3.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_merchant_migration_date_migration_date.4336341af9", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_merchant_migration_date", "not_null_subscriptions__subscription_merchant_migration_date_migration_date"], "alias": "not_null_subscriptions__subscr_4bc456c28ed4e047cb1a5606b8fd0ef3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_4bc456c28ed4e047cb1a5606b8fd0ef3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_4bc456c28ed4e047cb1a5606b8fd0ef3"}, "created_at": 1700082690.1044564, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_4bc456c28ed4e047cb1a5606b8fd0ef3\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_merchant_migration_date", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_merchant_migration_date"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.yml/not_null_subscriptions__subscr_4bc456c28ed4e047cb1a5606b8fd0ef3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_merchant_migration_date where migration_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "migration_date", "file_key_name": "models.subscriptions__subscription_merchant_migration_date", "attached_node": "model.yoda.subscriptions__subscription_merchant_migration_date"}, "test.yoda.not_null_subscriptions__subscription_total_orders_external_order_id.c114ec599a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_order_id", "model": "{{ get_where_subquery(ref('subscriptions__subscription_total_orders')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_total_orders_external_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_c500cf1b2b4225fc8529f3d141dfb3c8.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_total_orders_external_order_id.c114ec599a", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_total_orders", "not_null_subscriptions__subscription_total_orders_external_order_id"], "alias": "not_null_subscriptions__subscr_c500cf1b2b4225fc8529f3d141dfb3c8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_c500cf1b2b4225fc8529f3d141dfb3c8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_c500cf1b2b4225fc8529f3d141dfb3c8"}, "created_at": 1700082690.1279297, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_c500cf1b2b4225fc8529f3d141dfb3c8\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_total_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_total_orders"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.yml/not_null_subscriptions__subscr_c500cf1b2b4225fc8529f3d141dfb3c8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_total_orders where external_order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_order_id", "file_key_name": "models.subscriptions__subscription_total_orders", "attached_node": "model.yoda.subscriptions__subscription_total_orders"}, "test.yoda.not_null_subscriptions__subscription_total_orders_order_date.3912faf5d4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_date", "model": "{{ get_where_subquery(ref('subscriptions__subscription_total_orders')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_total_orders_order_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_total_orders_order_date.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_total_orders_order_date.3912faf5d4", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_total_orders", "not_null_subscriptions__subscription_total_orders_order_date"], "alias": "not_null_subscriptions__subscription_total_orders_order_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.134137, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_total_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_total_orders"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.yml/not_null_subscriptions__subscription_total_orders_order_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_total_orders where order_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_date", "file_key_name": "models.subscriptions__subscription_total_orders", "attached_node": "model.yoda.subscriptions__subscription_total_orders"}, "test.yoda.not_null_subscriptions__subscription_total_orders_app_key.6e31807f76": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('subscriptions__subscription_total_orders')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscription_total_orders_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscription_total_orders_app_key.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.yml", "unique_id": "test.yoda.not_null_subscriptions__subscription_total_orders_app_key.6e31807f76", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscription_total_orders", "not_null_subscriptions__subscription_total_orders_app_key"], "alias": "not_null_subscriptions__subscription_total_orders_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.1402338, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscription_total_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscription_total_orders"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.yml/not_null_subscriptions__subscription_total_orders_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscription_total_orders where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.subscriptions__subscription_total_orders", "attached_node": "model.yoda.subscriptions__subscription_total_orders"}, "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_external_order_id.e716efbda5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_order_id", "model": "{{ get_where_subquery(ref('subscriptions__subscriptions_attributed_orders')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscriptions_attributed_orders_external_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_1e9fe3dcfda9cbdebbae18ba65b84af3.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml", "unique_id": "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_external_order_id.e716efbda5", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscriptions_attributed_orders", "not_null_subscriptions__subscriptions_attributed_orders_external_order_id"], "alias": "not_null_subscriptions__subscr_1e9fe3dcfda9cbdebbae18ba65b84af3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_1e9fe3dcfda9cbdebbae18ba65b84af3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_1e9fe3dcfda9cbdebbae18ba65b84af3"}, "created_at": 1700082690.1786332, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_1e9fe3dcfda9cbdebbae18ba65b84af3\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscriptions_attributed_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscriptions_attributed_orders"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml/not_null_subscriptions__subscr_1e9fe3dcfda9cbdebbae18ba65b84af3.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscriptions_attributed_orders where external_order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_order_id", "file_key_name": "models.subscriptions__subscriptions_attributed_orders", "attached_node": "model.yoda.subscriptions__subscriptions_attributed_orders"}, "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_external_customer_id.91ef01bf80": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_customer_id", "model": "{{ get_where_subquery(ref('subscriptions__subscriptions_attributed_orders')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscriptions_attributed_orders_external_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_46d9c86c391df527ce7752deace1ac51.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml", "unique_id": "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_external_customer_id.91ef01bf80", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscriptions_attributed_orders", "not_null_subscriptions__subscriptions_attributed_orders_external_customer_id"], "alias": "not_null_subscriptions__subscr_46d9c86c391df527ce7752deace1ac51", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_46d9c86c391df527ce7752deace1ac51", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_46d9c86c391df527ce7752deace1ac51"}, "created_at": 1700082690.1959617, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_46d9c86c391df527ce7752deace1ac51\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscriptions_attributed_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscriptions_attributed_orders"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml/not_null_subscriptions__subscr_46d9c86c391df527ce7752deace1ac51.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscriptions_attributed_orders where external_customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_customer_id", "file_key_name": "models.subscriptions__subscriptions_attributed_orders", "attached_node": "model.yoda.subscriptions__subscriptions_attributed_orders"}, "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_order_date.56befe7696": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_date", "model": "{{ get_where_subquery(ref('subscriptions__subscriptions_attributed_orders')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscriptions_attributed_orders_order_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_cad72e311b0d039aec063e2c7bdf7f23.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml", "unique_id": "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_order_date.56befe7696", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscriptions_attributed_orders", "not_null_subscriptions__subscriptions_attributed_orders_order_date"], "alias": "not_null_subscriptions__subscr_cad72e311b0d039aec063e2c7bdf7f23", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_cad72e311b0d039aec063e2c7bdf7f23", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_cad72e311b0d039aec063e2c7bdf7f23"}, "created_at": 1700082690.211394, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_cad72e311b0d039aec063e2c7bdf7f23\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscriptions_attributed_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscriptions_attributed_orders"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml/not_null_subscriptions__subscr_cad72e311b0d039aec063e2c7bdf7f23.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscriptions_attributed_orders where order_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_date", "file_key_name": "models.subscriptions__subscriptions_attributed_orders", "attached_node": "model.yoda.subscriptions__subscriptions_attributed_orders"}, "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_order_total.f2f64e969d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_total", "model": "{{ get_where_subquery(ref('subscriptions__subscriptions_attributed_orders')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscriptions_attributed_orders_order_total", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscr_6884859b2706552d03228c86da1e9bd8.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml", "unique_id": "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_order_total.f2f64e969d", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscriptions_attributed_orders", "not_null_subscriptions__subscriptions_attributed_orders_order_total"], "alias": "not_null_subscriptions__subscr_6884859b2706552d03228c86da1e9bd8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__subscr_6884859b2706552d03228c86da1e9bd8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__subscr_6884859b2706552d03228c86da1e9bd8"}, "created_at": 1700082690.2254508, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__subscr_6884859b2706552d03228c86da1e9bd8\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscriptions_attributed_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscriptions_attributed_orders"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml/not_null_subscriptions__subscr_6884859b2706552d03228c86da1e9bd8.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscriptions_attributed_orders where order_total is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_total", "file_key_name": "models.subscriptions__subscriptions_attributed_orders", "attached_node": "model.yoda.subscriptions__subscriptions_attributed_orders"}, "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_app_key.73ce2fbed4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('subscriptions__subscriptions_attributed_orders')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__subscriptions_attributed_orders_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__subscriptions_attributed_orders_app_key.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml", "unique_id": "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_app_key.73ce2fbed4", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscriptions_attributed_orders", "not_null_subscriptions__subscriptions_attributed_orders_app_key"], "alias": "not_null_subscriptions__subscriptions_attributed_orders_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.235902, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__subscriptions_attributed_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscriptions_attributed_orders"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml/not_null_subscriptions__subscriptions_attributed_orders_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__subscriptions_attributed_orders where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.subscriptions__subscriptions_attributed_orders", "attached_node": "model.yoda.subscriptions__subscriptions_attributed_orders"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__subscriptions_attributed_orders_1.696d32fa42": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('subscriptions__subscriptions_attributed_orders')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_subscriptions__subscriptions_attributed_orders_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__36151ad57636a79623b19bdf7c18df89.sql", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__subscriptions_attributed_orders_1.696d32fa42", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__subscriptions_attributed_orders", "dbt_expectations_expect_table_row_count_to_be_between_subscriptions__subscriptions_attributed_orders_1"], "alias": "dbt_expectations_expect_table__36151ad57636a79623b19bdf7c18df89", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__36151ad57636a79623b19bdf7c18df89", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__36151ad57636a79623b19bdf7c18df89"}, "created_at": 1700082690.2482405, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__36151ad57636a79623b19bdf7c18df89\") }}", "language": "sql", "refs": [{"name": "subscriptions__subscriptions_attributed_orders", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__subscriptions_attributed_orders"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.yml/dbt_expectations_expect_table__36151ad57636a79623b19bdf7c18df89.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.subscriptions__subscriptions_attributed_orders\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.subscriptions__subscriptions_attributed_orders", "attached_node": "model.yoda.subscriptions__subscriptions_attributed_orders"}, "test.yoda.unique_subscriptions__synergy_kpi_one_click_campaign_id.bed8484992": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_one_click_campaign')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions__synergy_kpi_one_click_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions__synergy_kpi_one_click_campaign_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.yml", "unique_id": "test.yoda.unique_subscriptions__synergy_kpi_one_click_campaign_id.bed8484992", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_one_click_campaign", "unique_subscriptions__synergy_kpi_one_click_campaign_id"], "alias": "unique_subscriptions__synergy_kpi_one_click_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082690.323356, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_one_click_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_one_click_campaign"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.yml/unique_subscriptions__synergy_kpi_one_click_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions__synergy_kpi_one_click_campaign where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__synergy_kpi_one_click_campaign", "attached_node": "model.yoda.subscriptions__synergy_kpi_one_click_campaign"}, "test.yoda.not_null_subscriptions__synergy_kpi_one_click_campaign_id.6da03f0dd5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_one_click_campaign')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_one_click_campaign_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synergy_kpi_one_click_campaign_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_one_click_campaign_id.6da03f0dd5", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_one_click_campaign", "not_null_subscriptions__synergy_kpi_one_click_campaign_id"], "alias": "not_null_subscriptions__synergy_kpi_one_click_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.3304496, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_one_click_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_one_click_campaign"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.yml/not_null_subscriptions__synergy_kpi_one_click_campaign_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_one_click_campaign where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__synergy_kpi_one_click_campaign", "attached_node": "model.yoda.subscriptions__synergy_kpi_one_click_campaign"}, "test.yoda.not_null_subscriptions__synergy_kpi_one_click_campaign_source_id.f418f95b53": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_one_click_campaign')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_one_click_campaign_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synerg_9e4309ae2059c484d90f430c7770c10d.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_one_click_campaign_source_id.f418f95b53", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_one_click_campaign", "not_null_subscriptions__synergy_kpi_one_click_campaign_source_id"], "alias": "not_null_subscriptions__synerg_9e4309ae2059c484d90f430c7770c10d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__synerg_9e4309ae2059c484d90f430c7770c10d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__synerg_9e4309ae2059c484d90f430c7770c10d"}, "created_at": 1700082690.342567, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__synerg_9e4309ae2059c484d90f430c7770c10d\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_one_click_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_one_click_campaign"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.yml/not_null_subscriptions__synerg_9e4309ae2059c484d90f430c7770c10d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_one_click_campaign where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.subscriptions__synergy_kpi_one_click_campaign", "attached_node": "model.yoda.subscriptions__synergy_kpi_one_click_campaign"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_one_click_campaign_1.37cf6f3498": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_one_click_campaign')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_one_click_campaign_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__db7172fa951bc48714006ed40c813a9c.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_one_click_campaign_1.37cf6f3498", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_one_click_campaign", "dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_one_click_campaign_1"], "alias": "dbt_expectations_expect_table__db7172fa951bc48714006ed40c813a9c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__db7172fa951bc48714006ed40c813a9c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__db7172fa951bc48714006ed40c813a9c"}, "created_at": 1700082690.3527741, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__db7172fa951bc48714006ed40c813a9c\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_one_click_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_one_click_campaign"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.yml/dbt_expectations_expect_table__db7172fa951bc48714006ed40c813a9c.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.subscriptions__synergy_kpi_one_click_campaign\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.subscriptions__synergy_kpi_one_click_campaign", "attached_node": "model.yoda.subscriptions__synergy_kpi_one_click_campaign"}, "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_one_click_campaign_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.9f3c68965a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_one_click_campaign')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_one_click_campaign_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_b27e63601478b1a6fdbc39c525fad759.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_one_click_campaign_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.9f3c68965a", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_one_click_campaign", "dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_one_click_campaign_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_b27e63601478b1a6fdbc39c525fad759", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_b27e63601478b1a6fdbc39c525fad759", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_b27e63601478b1a6fdbc39c525fad759"}, "created_at": 1700082690.3626888, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_b27e63601478b1a6fdbc39c525fad759\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_one_click_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_one_click_campaign"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.yml/dbt_utils_unique_combination_o_b27e63601478b1a6fdbc39c525fad759.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.subscriptions__synergy_kpi_one_click_campaign\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.subscriptions__synergy_kpi_one_click_campaign", "attached_node": "model.yoda.subscriptions__synergy_kpi_one_click_campaign"}, "test.yoda.unique_subscriptions__synergy_kpi_redeemed_points_id.00b5bae0fc": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions__synergy_kpi_redeemed_points_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions__synergy_kpi_redeemed_points_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.unique_subscriptions__synergy_kpi_redeemed_points_id.00b5bae0fc", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "unique_subscriptions__synergy_kpi_redeemed_points_id"], "alias": "unique_subscriptions__synergy_kpi_redeemed_points_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082690.4186997, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/unique_subscriptions__synergy_kpi_redeemed_points_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_id.583334bd1d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_redeemed_points_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synergy_kpi_redeemed_points_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_id.583334bd1d", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "not_null_subscriptions__synergy_kpi_redeemed_points_id"], "alias": "not_null_subscriptions__synergy_kpi_redeemed_points_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.4267855, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/not_null_subscriptions__synergy_kpi_redeemed_points_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_synergy_id.53cef945f0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "synergy_id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_redeemed_points_synergy_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synergy_kpi_redeemed_points_synergy_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_synergy_id.53cef945f0", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "not_null_subscriptions__synergy_kpi_redeemed_points_synergy_id"], "alias": "not_null_subscriptions__synergy_kpi_redeemed_points_synergy_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.4338946, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/not_null_subscriptions__synergy_kpi_redeemed_points_synergy_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where synergy_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "synergy_id", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_source_id.f91b17a9b6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_redeemed_points_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synergy_kpi_redeemed_points_source_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_source_id.f91b17a9b6", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "not_null_subscriptions__synergy_kpi_redeemed_points_source_id"], "alias": "not_null_subscriptions__synergy_kpi_redeemed_points_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.4408243, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/not_null_subscriptions__synergy_kpi_redeemed_points_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_order_id.98d3a29306": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_redeemed_points_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synergy_kpi_redeemed_points_order_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_order_id.98d3a29306", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "not_null_subscriptions__synergy_kpi_redeemed_points_order_id"], "alias": "not_null_subscriptions__synergy_kpi_redeemed_points_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.452239, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/not_null_subscriptions__synergy_kpi_redeemed_points_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_type.2e487c08f7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_type", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_redeemed_points_action_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synergy_kpi_redeemed_points_action_type.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_type.2e487c08f7", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "not_null_subscriptions__synergy_kpi_redeemed_points_action_type"], "alias": "not_null_subscriptions__synergy_kpi_redeemed_points_action_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.4653716, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/not_null_subscriptions__synergy_kpi_redeemed_points_action_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where action_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_type", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_id.4383f3c6df": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_redeemed_points_action_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synergy_kpi_redeemed_points_action_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_id.4383f3c6df", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "not_null_subscriptions__synergy_kpi_redeemed_points_action_id"], "alias": "not_null_subscriptions__synergy_kpi_redeemed_points_action_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.473037, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/not_null_subscriptions__synergy_kpi_redeemed_points_action_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where action_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_id", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_type.6f89b29fcd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_type", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synerg_9d93403a1bf7585203b8d395880c5332.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_type.6f89b29fcd", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_type"], "alias": "not_null_subscriptions__synerg_9d93403a1bf7585203b8d395880c5332", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__synerg_9d93403a1bf7585203b8d395880c5332", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__synerg_9d93403a1bf7585203b8d395880c5332"}, "created_at": 1700082690.4810953, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__synerg_9d93403a1bf7585203b8d395880c5332\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/not_null_subscriptions__synerg_9d93403a1bf7585203b8d395880c5332.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where action_attribute_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_type", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_value.819ea5c046": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_attribute_value", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_value", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synerg_293c0a08a172797612c6833cc7ed70a4.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_value.819ea5c046", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_value"], "alias": "not_null_subscriptions__synerg_293c0a08a172797612c6833cc7ed70a4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__synerg_293c0a08a172797612c6833cc7ed70a4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__synerg_293c0a08a172797612c6833cc7ed70a4"}, "created_at": 1700082690.4876585, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__synerg_293c0a08a172797612c6833cc7ed70a4\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/not_null_subscriptions__synerg_293c0a08a172797612c6833cc7ed70a4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where action_attribute_value is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_attribute_value", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_app_key.0c83180733": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_redeemed_points_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synergy_kpi_redeemed_points_app_key.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_app_key.0c83180733", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "not_null_subscriptions__synergy_kpi_redeemed_points_app_key"], "alias": "not_null_subscriptions__synergy_kpi_redeemed_points_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.4937394, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/not_null_subscriptions__synergy_kpi_redeemed_points_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_customer_external_id.78f16c14d6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_external_id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_redeemed_points_customer_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synerg_c4d8b2bbcd8740642a8b3cc9fd1af078.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_customer_external_id.78f16c14d6", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "not_null_subscriptions__synergy_kpi_redeemed_points_customer_external_id"], "alias": "not_null_subscriptions__synerg_c4d8b2bbcd8740642a8b3cc9fd1af078", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__synerg_c4d8b2bbcd8740642a8b3cc9fd1af078", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__synerg_c4d8b2bbcd8740642a8b3cc9fd1af078"}, "created_at": 1700082690.4998868, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__synerg_c4d8b2bbcd8740642a8b3cc9fd1af078\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/not_null_subscriptions__synerg_c4d8b2bbcd8740642a8b3cc9fd1af078.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where customer_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_external_id", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_dwh_updated_at.74f206dbdd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "dwh_updated_at", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_redeemed_points_dwh_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synerg_91a052c7f6dacf1b6c82f4a610b8c1a6.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_dwh_updated_at.74f206dbdd", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "not_null_subscriptions__synergy_kpi_redeemed_points_dwh_updated_at"], "alias": "not_null_subscriptions__synerg_91a052c7f6dacf1b6c82f4a610b8c1a6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__synerg_91a052c7f6dacf1b6c82f4a610b8c1a6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__synerg_91a052c7f6dacf1b6c82f4a610b8c1a6"}, "created_at": 1700082690.512213, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__synerg_91a052c7f6dacf1b6c82f4a610b8c1a6\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/not_null_subscriptions__synerg_91a052c7f6dacf1b6c82f4a610b8c1a6.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points where dwh_updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "dwh_updated_at", "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_redeemed_points_1.0e031d228d": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_redeemed_points_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__b979c857b5922b21f1233a896afcc890.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_redeemed_points_1.0e031d228d", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_redeemed_points_1"], "alias": "dbt_expectations_expect_table__b979c857b5922b21f1233a896afcc890", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__b979c857b5922b21f1233a896afcc890", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__b979c857b5922b21f1233a896afcc890"}, "created_at": 1700082690.5205564, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__b979c857b5922b21f1233a896afcc890\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/dbt_expectations_expect_table__b979c857b5922b21f1233a896afcc890.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_redeemed_points_synergy_id__app_key__order_id__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__action_attribute_value.b831857ebb": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "order_id", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id", "action_attribute_value"], "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_redeemed_points')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_redeemed_points_synergy_id__app_key__order_id__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__action_attribute_value", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_7a01496bcd358cd4b8cc535c32cdfd84.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_redeemed_points_synergy_id__app_key__order_id__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__action_attribute_value.b831857ebb", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_redeemed_points", "dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_redeemed_points_synergy_id__app_key__order_id__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__action_attribute_value"], "alias": "dbt_utils_unique_combination_o_7a01496bcd358cd4b8cc535c32cdfd84", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_7a01496bcd358cd4b8cc535c32cdfd84", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_7a01496bcd358cd4b8cc535c32cdfd84"}, "created_at": 1700082690.5275688, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_7a01496bcd358cd4b8cc535c32cdfd84\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.yml/dbt_utils_unique_combination_o_7a01496bcd358cd4b8cc535c32cdfd84.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, order_id, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_value\n from dev_dkruh1.subscriptions__synergy_kpi_redeemed_points\n group by synergy_id, app_key, order_id, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, action_attribute_value\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.subscriptions__synergy_kpi_redeemed_points", "attached_node": "model.yoda.subscriptions__synergy_kpi_redeemed_points"}, "test.yoda.unique_subscriptions__synergy_kpi_sms_payment_failure_id.f00540d302": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_sms_payment_failure')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions__synergy_kpi_sms_payment_failure_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions__synergy_kpi_sms_payment_failure_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml", "unique_id": "test.yoda.unique_subscriptions__synergy_kpi_sms_payment_failure_id.f00540d302", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_sms_payment_failure", "unique_subscriptions__synergy_kpi_sms_payment_failure_id"], "alias": "unique_subscriptions__synergy_kpi_sms_payment_failure_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082690.5652933, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml/unique_subscriptions__synergy_kpi_sms_payment_failure_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions__synergy_kpi_sms_payment_failure where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__synergy_kpi_sms_payment_failure", "attached_node": "model.yoda.subscriptions__synergy_kpi_sms_payment_failure"}, "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_id.d7d8bd0db1": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_sms_payment_failure')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_sms_payment_failure_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synergy_kpi_sms_payment_failure_id.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_id.d7d8bd0db1", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_sms_payment_failure", "not_null_subscriptions__synergy_kpi_sms_payment_failure_id"], "alias": "not_null_subscriptions__synergy_kpi_sms_payment_failure_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082690.5716178, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml/not_null_subscriptions__synergy_kpi_sms_payment_failure_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_sms_payment_failure where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions__synergy_kpi_sms_payment_failure", "attached_node": "model.yoda.subscriptions__synergy_kpi_sms_payment_failure"}, "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_source_id.004bae07b6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_sms_payment_failure')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_sms_payment_failure_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synerg_2f18b9fe64dfd58f3377b2ff99cdcdf9.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_source_id.004bae07b6", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_sms_payment_failure", "not_null_subscriptions__synergy_kpi_sms_payment_failure_source_id"], "alias": "not_null_subscriptions__synerg_2f18b9fe64dfd58f3377b2ff99cdcdf9", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__synerg_2f18b9fe64dfd58f3377b2ff99cdcdf9", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__synerg_2f18b9fe64dfd58f3377b2ff99cdcdf9"}, "created_at": 1700082690.577745, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__synerg_2f18b9fe64dfd58f3377b2ff99cdcdf9\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml/not_null_subscriptions__synerg_2f18b9fe64dfd58f3377b2ff99cdcdf9.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_sms_payment_failure where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.subscriptions__synergy_kpi_sms_payment_failure", "attached_node": "model.yoda.subscriptions__synergy_kpi_sms_payment_failure"}, "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_order_id.6ddd173b10": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_sms_payment_failure')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions__synergy_kpi_sms_payment_failure_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions__synerg_90c9fdc951f843efed9d224b27f07c94.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml", "unique_id": "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_order_id.6ddd173b10", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_sms_payment_failure", "not_null_subscriptions__synergy_kpi_sms_payment_failure_order_id"], "alias": "not_null_subscriptions__synerg_90c9fdc951f843efed9d224b27f07c94", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions__synerg_90c9fdc951f843efed9d224b27f07c94", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions__synerg_90c9fdc951f843efed9d224b27f07c94"}, "created_at": 1700082690.5840795, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions__synerg_90c9fdc951f843efed9d224b27f07c94\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml/not_null_subscriptions__synerg_90c9fdc951f843efed9d224b27f07c94.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions__synergy_kpi_sms_payment_failure where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.subscriptions__synergy_kpi_sms_payment_failure", "attached_node": "model.yoda.subscriptions__synergy_kpi_sms_payment_failure"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_payment_failure_1.1afa2799e9": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_sms_payment_failure')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_payment_failure_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__77f74b6b867b17c3ee2e9710c823e956.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_payment_failure_1.1afa2799e9", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_sms_payment_failure", "dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_payment_failure_1"], "alias": "dbt_expectations_expect_table__77f74b6b867b17c3ee2e9710c823e956", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__77f74b6b867b17c3ee2e9710c823e956", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__77f74b6b867b17c3ee2e9710c823e956"}, "created_at": 1700082690.5904949, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__77f74b6b867b17c3ee2e9710c823e956\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml/dbt_expectations_expect_table__77f74b6b867b17c3ee2e9710c823e956.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.subscriptions__synergy_kpi_sms_payment_failure\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.subscriptions__synergy_kpi_sms_payment_failure", "attached_node": "model.yoda.subscriptions__synergy_kpi_sms_payment_failure"}, "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_payment_failure_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.3e4ce633de": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_sms_payment_failure')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_payment_failure_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_84761e406daace4284052c74c9d8d88b.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_payment_failure_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.3e4ce633de", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_sms_payment_failure", "dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_payment_failure_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_84761e406daace4284052c74c9d8d88b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_84761e406daace4284052c74c9d8d88b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_84761e406daace4284052c74c9d8d88b"}, "created_at": 1700082690.5970788, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_84761e406daace4284052c74c9d8d88b\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.yml/dbt_utils_unique_combination_o_84761e406daace4284052c74c9d8d88b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.subscriptions__synergy_kpi_sms_payment_failure\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.subscriptions__synergy_kpi_sms_payment_failure", "attached_node": "model.yoda.subscriptions__synergy_kpi_sms_payment_failure"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_upsell_1.b7262d32d5": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_sms_upsell')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_upsell_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__4576190982b337a664210c305c0aeaca.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_upsell_1.b7262d32d5", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_sms_upsell", "dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_upsell_1"], "alias": "dbt_expectations_expect_table__4576190982b337a664210c305c0aeaca", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__4576190982b337a664210c305c0aeaca", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__4576190982b337a664210c305c0aeaca"}, "created_at": 1700082690.6323526, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__4576190982b337a664210c305c0aeaca\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_sms_upsell", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_sms_upsell"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.yml/dbt_expectations_expect_table__4576190982b337a664210c305c0aeaca.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.subscriptions__synergy_kpi_sms_upsell\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.subscriptions__synergy_kpi_sms_upsell", "attached_node": "model.yoda.subscriptions__synergy_kpi_sms_upsell"}, "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_upsell_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e72a32d5e0": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["synergy_id", "app_key", "customer_email", "customer_phone_number", "customer_external_id", "source_type", "source_id", "action_type", "action_id"], "model": "{{ get_where_subquery(ref('subscriptions__synergy_kpi_sms_upsell')) }}"}, "namespace": "dbt_utils"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_upsell_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id", "resource_type": "test", "package_name": "yoda", "path": "dbt_utils_unique_combination_o_606b9884dbe54fe7015b539ec99facb8.sql", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.yml", "unique_id": "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_upsell_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e72a32d5e0", "fqn": ["yoda", "subscriptions", "marts", "subscriptions__synergy_kpi_sms_upsell", "dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_upsell_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id"], "alias": "dbt_utils_unique_combination_o_606b9884dbe54fe7015b539ec99facb8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_606b9884dbe54fe7015b539ec99facb8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_606b9884dbe54fe7015b539ec99facb8"}, "created_at": 1700082690.6401095, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_606b9884dbe54fe7015b539ec99facb8\") }}", "language": "sql", "refs": [{"name": "subscriptions__synergy_kpi_sms_upsell", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions__synergy_kpi_sms_upsell"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.yml/dbt_utils_unique_combination_o_606b9884dbe54fe7015b539ec99facb8.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n from dev_dkruh1.subscriptions__synergy_kpi_sms_upsell\n group by synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.subscriptions__synergy_kpi_sms_upsell", "attached_node": "model.yoda.subscriptions__synergy_kpi_sms_upsell"}, "test.yoda.unique_subscriptions_stg__customer_journey_event_id.f4133674ad": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions_stg__customer_journey_event_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions_stg__customer_journey_event_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.unique_subscriptions_stg__customer_journey_event_id.f4133674ad", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "unique_subscriptions_stg__customer_journey_event_id"], "alias": "unique_subscriptions_stg__customer_journey_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082691.1136792, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml/unique_subscriptions_stg__customer_journey_event_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions_stg__customer_journey_event where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.subscriptions_stg__customer_journey_event"}, "test.yoda.not_null_subscriptions_stg__customer_journey_event_id.bec0d4731a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__customer_journey_event_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__customer_journey_event_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__customer_journey_event_id.bec0d4731a", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "not_null_subscriptions_stg__customer_journey_event_id"], "alias": "not_null_subscriptions_stg__customer_journey_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.1209106, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml/not_null_subscriptions_stg__customer_journey_event_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__customer_journey_event where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.subscriptions_stg__customer_journey_event"}, "test.yoda.not_null_subscriptions_stg__customer_journey_event_store_id.f9cab24c0f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__customer_journey_event_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__customer_journey_event_store_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__customer_journey_event_store_id.f9cab24c0f", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "not_null_subscriptions_stg__customer_journey_event_store_id"], "alias": "not_null_subscriptions_stg__customer_journey_event_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.129972, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml/not_null_subscriptions_stg__customer_journey_event_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__customer_journey_event where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.subscriptions_stg__customer_journey_event"}, "test.yoda.not_null_subscriptions_stg__customer_journey_event_customer_id.e2b55b8d59": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__customer_journey_event_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__customer_journey_event_customer_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__customer_journey_event_customer_id.e2b55b8d59", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "not_null_subscriptions_stg__customer_journey_event_customer_id"], "alias": "not_null_subscriptions_stg__customer_journey_event_customer_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.136614, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml/not_null_subscriptions_stg__customer_journey_event_customer_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__customer_journey_event where customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.subscriptions_stg__customer_journey_event"}, "test.yoda.not_null_subscriptions_stg__customer_journey_event_source_domain.8bdffa28cf": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_domain", "model": "{{ get_where_subquery(ref('subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__customer_journey_event_source_domain", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__cu_ab1fdc521336fe9a44c971fd80b0915c.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__customer_journey_event_source_domain.8bdffa28cf", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "not_null_subscriptions_stg__customer_journey_event_source_domain"], "alias": "not_null_subscriptions_stg__cu_ab1fdc521336fe9a44c971fd80b0915c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__cu_ab1fdc521336fe9a44c971fd80b0915c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__cu_ab1fdc521336fe9a44c971fd80b0915c"}, "created_at": 1700082691.1440935, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__cu_ab1fdc521336fe9a44c971fd80b0915c\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml/not_null_subscriptions_stg__cu_ab1fdc521336fe9a44c971fd80b0915c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__customer_journey_event where source_domain is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_domain", "file_key_name": "models.subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.subscriptions_stg__customer_journey_event"}, "test.yoda.not_null_subscriptions_stg__customer_journey_event_source_id.027faf7ba9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "source_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__customer_journey_event_source_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__customer_journey_event_source_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__customer_journey_event_source_id.027faf7ba9", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "not_null_subscriptions_stg__customer_journey_event_source_id"], "alias": "not_null_subscriptions_stg__customer_journey_event_source_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.152793, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml/not_null_subscriptions_stg__customer_journey_event_source_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__customer_journey_event where source_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "source_id", "file_key_name": "models.subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.subscriptions_stg__customer_journey_event"}, "test.yoda.not_null_subscriptions_stg__customer_journey_event_created_at.a32d0c43fc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__customer_journey_event_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__customer_journey_event_created_at.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__customer_journey_event_created_at.a32d0c43fc", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "not_null_subscriptions_stg__customer_journey_event_created_at"], "alias": "not_null_subscriptions_stg__customer_journey_event_created_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.1611497, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml/not_null_subscriptions_stg__customer_journey_event_created_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__customer_journey_event where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.subscriptions_stg__customer_journey_event"}, "test.yoda.not_null_subscriptions_stg__customer_journey_event_updated_at.61004cb8b5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__customer_journey_event_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__customer_journey_event_updated_at.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__customer_journey_event_updated_at.61004cb8b5", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "not_null_subscriptions_stg__customer_journey_event_updated_at"], "alias": "not_null_subscriptions_stg__customer_journey_event_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.1712863, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml/not_null_subscriptions_stg__customer_journey_event_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__customer_journey_event where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.subscriptions_stg__customer_journey_event"}, "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_type.a26bc346aa": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_type", "model": "{{ get_where_subquery(ref('subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__customer_journey_event_event_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__customer_journey_event_event_type.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_type.a26bc346aa", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "not_null_subscriptions_stg__customer_journey_event_event_type"], "alias": "not_null_subscriptions_stg__customer_journey_event_event_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.1778202, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml/not_null_subscriptions_stg__customer_journey_event_event_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__customer_journey_event where event_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_type", "file_key_name": "models.subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.subscriptions_stg__customer_journey_event"}, "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_origin.e87e6d0502": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_origin", "model": "{{ get_where_subquery(ref('subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__customer_journey_event_event_origin", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__customer_journey_event_event_origin.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_origin.e87e6d0502", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "not_null_subscriptions_stg__customer_journey_event_event_origin"], "alias": "not_null_subscriptions_stg__customer_journey_event_event_origin", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.18645, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml/not_null_subscriptions_stg__customer_journey_event_event_origin.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__customer_journey_event where event_origin is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_origin", "file_key_name": "models.subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.subscriptions_stg__customer_journey_event"}, "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_time.ca372e17ea": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_time", "model": "{{ get_where_subquery(ref('subscriptions_stg__customer_journey_event')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__customer_journey_event_event_time", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__customer_journey_event_event_time.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_time.ca372e17ea", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__customer_journey_event", "not_null_subscriptions_stg__customer_journey_event_event_time"], "alias": "not_null_subscriptions_stg__customer_journey_event_event_time", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.1933181, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__customer_journey_event"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.yml/not_null_subscriptions_stg__customer_journey_event_event_time.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__customer_journey_event where event_time is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_time", "file_key_name": "models.subscriptions_stg__customer_journey_event", "attached_node": "model.yoda.subscriptions_stg__customer_journey_event"}, "test.yoda.unique_subscriptions_stg__recurrent_event_rule_id.ab51575389": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions_stg__recurrent_event_rule_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions_stg__recurrent_event_rule_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml", "unique_id": "test.yoda.unique_subscriptions_stg__recurrent_event_rule_id.ab51575389", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__recurrent_event_rule", "unique_subscriptions_stg__recurrent_event_rule_id"], "alias": "unique_subscriptions_stg__recurrent_event_rule_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082691.2531075, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml/unique_subscriptions_stg__recurrent_event_rule_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions_stg__recurrent_event_rule where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__recurrent_event_rule", "attached_node": "model.yoda.subscriptions_stg__recurrent_event_rule"}, "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_id.27079aee4c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__recurrent_event_rule_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__recurrent_event_rule_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_id.27079aee4c", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__recurrent_event_rule", "not_null_subscriptions_stg__recurrent_event_rule_id"], "alias": "not_null_subscriptions_stg__recurrent_event_rule_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.2609818, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml/not_null_subscriptions_stg__recurrent_event_rule_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__recurrent_event_rule where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__recurrent_event_rule", "attached_node": "model.yoda.subscriptions_stg__recurrent_event_rule"}, "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_created_at.32a32c4032": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__recurrent_event_rule_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__recurrent_event_rule_created_at.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_created_at.32a32c4032", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__recurrent_event_rule", "not_null_subscriptions_stg__recurrent_event_rule_created_at"], "alias": "not_null_subscriptions_stg__recurrent_event_rule_created_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.2677596, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml/not_null_subscriptions_stg__recurrent_event_rule_created_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__recurrent_event_rule where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.subscriptions_stg__recurrent_event_rule", "attached_node": "model.yoda.subscriptions_stg__recurrent_event_rule"}, "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_updated_at.fdfbcba8a2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__recurrent_event_rule_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__recurrent_event_rule_updated_at.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_updated_at.fdfbcba8a2", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__recurrent_event_rule", "not_null_subscriptions_stg__recurrent_event_rule_updated_at"], "alias": "not_null_subscriptions_stg__recurrent_event_rule_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.2743025, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml/not_null_subscriptions_stg__recurrent_event_rule_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__recurrent_event_rule where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.subscriptions_stg__recurrent_event_rule", "attached_node": "model.yoda.subscriptions_stg__recurrent_event_rule"}, "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_obj_id.d716d0142f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "obj_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__recurrent_event_rule_obj_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__recurrent_event_rule_obj_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_obj_id.d716d0142f", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__recurrent_event_rule", "not_null_subscriptions_stg__recurrent_event_rule_obj_id"], "alias": "not_null_subscriptions_stg__recurrent_event_rule_obj_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.280214, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml/not_null_subscriptions_stg__recurrent_event_rule_obj_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__recurrent_event_rule where obj_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "obj_id", "file_key_name": "models.subscriptions_stg__recurrent_event_rule", "attached_node": "model.yoda.subscriptions_stg__recurrent_event_rule"}, "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_obj_type.577d0a5dec": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "obj_type", "model": "{{ get_where_subquery(ref('subscriptions_stg__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__recurrent_event_rule_obj_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__recurrent_event_rule_obj_type.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_obj_type.577d0a5dec", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__recurrent_event_rule", "not_null_subscriptions_stg__recurrent_event_rule_obj_type"], "alias": "not_null_subscriptions_stg__recurrent_event_rule_obj_type", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.2858744, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml/not_null_subscriptions_stg__recurrent_event_rule_obj_type.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__recurrent_event_rule where obj_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "obj_type", "file_key_name": "models.subscriptions_stg__recurrent_event_rule", "attached_node": "model.yoda.subscriptions_stg__recurrent_event_rule"}, "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_next_due_date.2aec71eaf0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "next_due_date", "model": "{{ get_where_subquery(ref('subscriptions_stg__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__recurrent_event_rule_next_due_date", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__recurrent_event_rule_next_due_date.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_next_due_date.2aec71eaf0", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__recurrent_event_rule", "not_null_subscriptions_stg__recurrent_event_rule_next_due_date"], "alias": "not_null_subscriptions_stg__recurrent_event_rule_next_due_date", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.2920291, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml/not_null_subscriptions_stg__recurrent_event_rule_next_due_date.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__recurrent_event_rule where next_due_date is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "next_due_date", "file_key_name": "models.subscriptions_stg__recurrent_event_rule", "attached_node": "model.yoda.subscriptions_stg__recurrent_event_rule"}, "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_plan_interval.bfbb8f7a79": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "plan_interval", "model": "{{ get_where_subquery(ref('subscriptions_stg__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__recurrent_event_rule_plan_interval", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__recurrent_event_rule_plan_interval.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_plan_interval.bfbb8f7a79", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__recurrent_event_rule", "not_null_subscriptions_stg__recurrent_event_rule_plan_interval"], "alias": "not_null_subscriptions_stg__recurrent_event_rule_plan_interval", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.2981107, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml/not_null_subscriptions_stg__recurrent_event_rule_plan_interval.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__recurrent_event_rule where plan_interval is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "plan_interval", "file_key_name": "models.subscriptions_stg__recurrent_event_rule", "attached_node": "model.yoda.subscriptions_stg__recurrent_event_rule"}, "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_interval_count.c0e601b31d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "interval_count", "model": "{{ get_where_subquery(ref('subscriptions_stg__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__recurrent_event_rule_interval_count", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__recurrent_event_rule_interval_count.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_interval_count.c0e601b31d", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__recurrent_event_rule", "not_null_subscriptions_stg__recurrent_event_rule_interval_count"], "alias": "not_null_subscriptions_stg__recurrent_event_rule_interval_count", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.3038557, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml/not_null_subscriptions_stg__recurrent_event_rule_interval_count.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__recurrent_event_rule where interval_count is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "interval_count", "file_key_name": "models.subscriptions_stg__recurrent_event_rule", "attached_node": "model.yoda.subscriptions_stg__recurrent_event_rule"}, "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_is_canceled.080fc39b12": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "is_canceled", "model": "{{ get_where_subquery(ref('subscriptions_stg__recurrent_event_rule')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__recurrent_event_rule_is_canceled", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__recurrent_event_rule_is_canceled.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_is_canceled.080fc39b12", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__recurrent_event_rule", "not_null_subscriptions_stg__recurrent_event_rule_is_canceled"], "alias": "not_null_subscriptions_stg__recurrent_event_rule_is_canceled", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.309979, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__recurrent_event_rule"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.yml/not_null_subscriptions_stg__recurrent_event_rule_is_canceled.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__recurrent_event_rule where is_canceled is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "is_canceled", "file_key_name": "models.subscriptions_stg__recurrent_event_rule", "attached_node": "model.yoda.subscriptions_stg__recurrent_event_rule"}, "test.yoda.unique_subscriptions_stg__status_id.03bc739540": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions_stg__status_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions_stg__status_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml", "unique_id": "test.yoda.unique_subscriptions_stg__status_id.03bc739540", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__status", "unique_subscriptions_stg__status_id"], "alias": "unique_subscriptions_stg__status_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082691.38882, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml/unique_subscriptions_stg__status_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions_stg__status where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__status", "attached_node": "model.yoda.subscriptions_stg__status"}, "test.yoda.not_null_subscriptions_stg__status_id.8ffe282590": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__status_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__status_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__status_id.8ffe282590", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__status", "not_null_subscriptions_stg__status_id"], "alias": "not_null_subscriptions_stg__status_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.3949163, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml/not_null_subscriptions_stg__status_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__status where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__status", "attached_node": "model.yoda.subscriptions_stg__status"}, "test.yoda.unique_subscriptions_stg__status_num.67fc6cf8f7": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "num", "model": "{{ get_where_subquery(ref('subscriptions_stg__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions_stg__status_num", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions_stg__status_num.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml", "unique_id": "test.yoda.unique_subscriptions_stg__status_num.67fc6cf8f7", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__status", "unique_subscriptions_stg__status_num"], "alias": "unique_subscriptions_stg__status_num", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082691.4012268, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml/unique_subscriptions_stg__status_num.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select num from dev_dkruh1.subscriptions_stg__status where num is not null group by num having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "num", "file_key_name": "models.subscriptions_stg__status", "attached_node": "model.yoda.subscriptions_stg__status"}, "test.yoda.not_null_subscriptions_stg__status_num.95235b8006": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "num", "model": "{{ get_where_subquery(ref('subscriptions_stg__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__status_num", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__status_num.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__status_num.95235b8006", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__status", "not_null_subscriptions_stg__status_num"], "alias": "not_null_subscriptions_stg__status_num", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.4080281, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml/not_null_subscriptions_stg__status_num.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__status where num is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "num", "file_key_name": "models.subscriptions_stg__status", "attached_node": "model.yoda.subscriptions_stg__status"}, "test.yoda.unique_subscriptions_stg__status_text.6a5eb937eb": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "text", "model": "{{ get_where_subquery(ref('subscriptions_stg__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions_stg__status_text", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions_stg__status_text.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml", "unique_id": "test.yoda.unique_subscriptions_stg__status_text.6a5eb937eb", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__status", "unique_subscriptions_stg__status_text"], "alias": "unique_subscriptions_stg__status_text", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082691.4137995, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml/unique_subscriptions_stg__status_text.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select text from dev_dkruh1.subscriptions_stg__status where text is not null group by text having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "text", "file_key_name": "models.subscriptions_stg__status", "attached_node": "model.yoda.subscriptions_stg__status"}, "test.yoda.not_null_subscriptions_stg__status_text.0bbdba506f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "text", "model": "{{ get_where_subquery(ref('subscriptions_stg__status')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__status_text", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__status_text.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__status_text.0bbdba506f", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__status", "not_null_subscriptions_stg__status_text"], "alias": "not_null_subscriptions_stg__status_text", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.419861, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__status", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__status"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.yml/not_null_subscriptions_stg__status_text.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__status where text is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "text", "file_key_name": "models.subscriptions_stg__status", "attached_node": "model.yoda.subscriptions_stg__status"}, "test.yoda.unique_subscriptions_stg__subscription_contract_id.41f442c867": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions_stg__subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions_stg__subscription_contract_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "unique_id": "test.yoda.unique_subscriptions_stg__subscription_contract_id.41f442c867", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "unique_subscriptions_stg__subscription_contract_id"], "alias": "unique_subscriptions_stg__subscription_contract_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082691.4885342, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml/unique_subscriptions_stg__subscription_contract_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions_stg__subscription_contract where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__subscription_contract", "attached_node": "model.yoda.subscriptions_stg__subscription_contract"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_id.858c7729db": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_contract_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_id.858c7729db", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "not_null_subscriptions_stg__subscription_contract_id"], "alias": "not_null_subscriptions_stg__subscription_contract_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.4945085, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml/not_null_subscriptions_stg__subscription_contract_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__subscription_contract", "attached_node": "model.yoda.subscriptions_stg__subscription_contract"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_store_id.4aa7e8dc1f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_contract_store_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_store_id.4aa7e8dc1f", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "not_null_subscriptions_stg__subscription_contract_store_id"], "alias": "not_null_subscriptions_stg__subscription_contract_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.5017047, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml/not_null_subscriptions_stg__subscription_contract_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.subscriptions_stg__subscription_contract", "attached_node": "model.yoda.subscriptions_stg__subscription_contract"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_external_id.84ab33c6b0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_contract_external_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_external_id.84ab33c6b0", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "not_null_subscriptions_stg__subscription_contract_external_id"], "alias": "not_null_subscriptions_stg__subscription_contract_external_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.5074146, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml/not_null_subscriptions_stg__subscription_contract_external_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract where external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_id", "file_key_name": "models.subscriptions_stg__subscription_contract", "attached_node": "model.yoda.subscriptions_stg__subscription_contract"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_delivery_policy_interval.b4e2f92799": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "delivery_policy_interval", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_delivery_policy_interval", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_3e75a878d4fa1170f4e718c1413ec9d4.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_delivery_policy_interval.b4e2f92799", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "not_null_subscriptions_stg__subscription_contract_delivery_policy_interval"], "alias": "not_null_subscriptions_stg__su_3e75a878d4fa1170f4e718c1413ec9d4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_3e75a878d4fa1170f4e718c1413ec9d4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_3e75a878d4fa1170f4e718c1413ec9d4"}, "created_at": 1700082691.513441, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_3e75a878d4fa1170f4e718c1413ec9d4\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml/not_null_subscriptions_stg__su_3e75a878d4fa1170f4e718c1413ec9d4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract where delivery_policy_interval is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "delivery_policy_interval", "file_key_name": "models.subscriptions_stg__subscription_contract", "attached_node": "model.yoda.subscriptions_stg__subscription_contract"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_delivery_policy_interval_count.f3950c52af": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "delivery_policy_interval_count", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_delivery_policy_interval_count", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_dcd7222a7cacdc77f3b20272b3d70de7.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_delivery_policy_interval_count.f3950c52af", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "not_null_subscriptions_stg__subscription_contract_delivery_policy_interval_count"], "alias": "not_null_subscriptions_stg__su_dcd7222a7cacdc77f3b20272b3d70de7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_dcd7222a7cacdc77f3b20272b3d70de7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_dcd7222a7cacdc77f3b20272b3d70de7"}, "created_at": 1700082691.5197928, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_dcd7222a7cacdc77f3b20272b3d70de7\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml/not_null_subscriptions_stg__su_dcd7222a7cacdc77f3b20272b3d70de7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract where delivery_policy_interval_count is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "delivery_policy_interval_count", "file_key_name": "models.subscriptions_stg__subscription_contract", "attached_node": "model.yoda.subscriptions_stg__subscription_contract"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_billing_policy_interval.c9bde22f45": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "billing_policy_interval", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_billing_policy_interval", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_4b5c54b56577a8aa082cef6bf5b73eb4.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_billing_policy_interval.c9bde22f45", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "not_null_subscriptions_stg__subscription_contract_billing_policy_interval"], "alias": "not_null_subscriptions_stg__su_4b5c54b56577a8aa082cef6bf5b73eb4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_4b5c54b56577a8aa082cef6bf5b73eb4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_4b5c54b56577a8aa082cef6bf5b73eb4"}, "created_at": 1700082691.5262818, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_4b5c54b56577a8aa082cef6bf5b73eb4\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml/not_null_subscriptions_stg__su_4b5c54b56577a8aa082cef6bf5b73eb4.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract where billing_policy_interval is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "billing_policy_interval", "file_key_name": "models.subscriptions_stg__subscription_contract", "attached_node": "model.yoda.subscriptions_stg__subscription_contract"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_billing_policy_interval_count.cd94089a3a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "billing_policy_interval_count", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_billing_policy_interval_count", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_c2026c64a6c6ea00b4ce9931dedf3ac2.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_billing_policy_interval_count.cd94089a3a", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "not_null_subscriptions_stg__subscription_contract_billing_policy_interval_count"], "alias": "not_null_subscriptions_stg__su_c2026c64a6c6ea00b4ce9931dedf3ac2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_c2026c64a6c6ea00b4ce9931dedf3ac2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_c2026c64a6c6ea00b4ce9931dedf3ac2"}, "created_at": 1700082691.5324295, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_c2026c64a6c6ea00b4ce9931dedf3ac2\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml/not_null_subscriptions_stg__su_c2026c64a6c6ea00b4ce9931dedf3ac2.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract where billing_policy_interval_count is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "billing_policy_interval_count", "file_key_name": "models.subscriptions_stg__subscription_contract", "attached_node": "model.yoda.subscriptions_stg__subscription_contract"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_external_customer_id.796215cb6f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_customer_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_external_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_8ae3befe4a0e539b8572eabbf3c46231.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_external_customer_id.796215cb6f", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "not_null_subscriptions_stg__subscription_contract_external_customer_id"], "alias": "not_null_subscriptions_stg__su_8ae3befe4a0e539b8572eabbf3c46231", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_8ae3befe4a0e539b8572eabbf3c46231", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_8ae3befe4a0e539b8572eabbf3c46231"}, "created_at": 1700082691.5388305, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_8ae3befe4a0e539b8572eabbf3c46231\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml/not_null_subscriptions_stg__su_8ae3befe4a0e539b8572eabbf3c46231.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract where external_customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_customer_id", "file_key_name": "models.subscriptions_stg__subscription_contract", "attached_node": "model.yoda.subscriptions_stg__subscription_contract"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_created_at.abcdb1a87d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_contract_created_at.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_created_at.abcdb1a87d", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "not_null_subscriptions_stg__subscription_contract_created_at"], "alias": "not_null_subscriptions_stg__subscription_contract_created_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.5454512, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml/not_null_subscriptions_stg__subscription_contract_created_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.subscriptions_stg__subscription_contract", "attached_node": "model.yoda.subscriptions_stg__subscription_contract"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_updated_at.a01bf82f91": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_contract_updated_at.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_updated_at.a01bf82f91", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract", "not_null_subscriptions_stg__subscription_contract_updated_at"], "alias": "not_null_subscriptions_stg__subscription_contract_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.5513089, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.yml/not_null_subscriptions_stg__subscription_contract_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.subscriptions_stg__subscription_contract", "attached_node": "model.yoda.subscriptions_stg__subscription_contract"}, "test.yoda.unique_subscriptions_stg__subscription_contract_line_id.a404ce51e5": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_line')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions_stg__subscription_contract_line_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions_stg__subscription_contract_line_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml", "unique_id": "test.yoda.unique_subscriptions_stg__subscription_contract_line_id.a404ce51e5", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_line", "unique_subscriptions_stg__subscription_contract_line_id"], "alias": "unique_subscriptions_stg__subscription_contract_line_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082691.5789275, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_line"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml/unique_subscriptions_stg__subscription_contract_line_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions_stg__subscription_contract_line where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__subscription_contract_line", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_line"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_line_id.59b71253af": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_line')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_line_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_contract_line_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_line_id.59b71253af", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_line", "not_null_subscriptions_stg__subscription_contract_line_id"], "alias": "not_null_subscriptions_stg__subscription_contract_line_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.5858784, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_line"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml/not_null_subscriptions_stg__subscription_contract_line_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_line where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__subscription_contract_line", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_line"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_line_created_at.3788d0b43d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_line')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_line_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_e90aa6b24247a30791f9ffda332a1c87.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_line_created_at.3788d0b43d", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_line", "not_null_subscriptions_stg__subscription_contract_line_created_at"], "alias": "not_null_subscriptions_stg__su_e90aa6b24247a30791f9ffda332a1c87", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_e90aa6b24247a30791f9ffda332a1c87", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_e90aa6b24247a30791f9ffda332a1c87"}, "created_at": 1700082691.592146, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_e90aa6b24247a30791f9ffda332a1c87\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_line"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml/not_null_subscriptions_stg__su_e90aa6b24247a30791f9ffda332a1c87.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_line where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.subscriptions_stg__subscription_contract_line", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_line"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_line_updated_at.7b7870ed57": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_line')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_line_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_7b6510a2c2538286c3f04194133c7375.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_line_updated_at.7b7870ed57", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_line", "not_null_subscriptions_stg__subscription_contract_line_updated_at"], "alias": "not_null_subscriptions_stg__su_7b6510a2c2538286c3f04194133c7375", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_7b6510a2c2538286c3f04194133c7375", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_7b6510a2c2538286c3f04194133c7375"}, "created_at": 1700082691.5981586, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_7b6510a2c2538286c3f04194133c7375\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_line"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml/not_null_subscriptions_stg__su_7b6510a2c2538286c3f04194133c7375.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_line where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.subscriptions_stg__subscription_contract_line", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_line"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_line_subscription_contract_id.1e9e63855c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "subscription_contract_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_line')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_line_subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_72a359ae4b9b3077037517cb2e71ea53.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_line_subscription_contract_id.1e9e63855c", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_line", "not_null_subscriptions_stg__subscription_contract_line_subscription_contract_id"], "alias": "not_null_subscriptions_stg__su_72a359ae4b9b3077037517cb2e71ea53", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_72a359ae4b9b3077037517cb2e71ea53", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_72a359ae4b9b3077037517cb2e71ea53"}, "created_at": 1700082691.6046016, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_72a359ae4b9b3077037517cb2e71ea53\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_line"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml/not_null_subscriptions_stg__su_72a359ae4b9b3077037517cb2e71ea53.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_line where subscription_contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "subscription_contract_id", "file_key_name": "models.subscriptions_stg__subscription_contract_line", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_line"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_line_product_external_id.54272ca55f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "product_external_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_line')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_line_product_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_e4877c307680ca3ffc38fe0fc0467db5.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_line_product_external_id.54272ca55f", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_line", "not_null_subscriptions_stg__subscription_contract_line_product_external_id"], "alias": "not_null_subscriptions_stg__su_e4877c307680ca3ffc38fe0fc0467db5", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_e4877c307680ca3ffc38fe0fc0467db5", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_e4877c307680ca3ffc38fe0fc0467db5"}, "created_at": 1700082691.6114104, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_e4877c307680ca3ffc38fe0fc0467db5\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_line"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml/not_null_subscriptions_stg__su_e4877c307680ca3ffc38fe0fc0467db5.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_line where product_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "product_external_id", "file_key_name": "models.subscriptions_stg__subscription_contract_line", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_line"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_line_variant_external_id.1cb6445974": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "variant_external_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_line')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_line_variant_external_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_911a77c319b7cea3cdbc690d7e936584.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_line_variant_external_id.1cb6445974", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_line", "not_null_subscriptions_stg__subscription_contract_line_variant_external_id"], "alias": "not_null_subscriptions_stg__su_911a77c319b7cea3cdbc690d7e936584", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_911a77c319b7cea3cdbc690d7e936584", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_911a77c319b7cea3cdbc690d7e936584"}, "created_at": 1700082691.6177166, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_911a77c319b7cea3cdbc690d7e936584\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_line"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml/not_null_subscriptions_stg__su_911a77c319b7cea3cdbc690d7e936584.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_line where variant_external_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "variant_external_id", "file_key_name": "models.subscriptions_stg__subscription_contract_line", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_line"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_line_quantity.b5141eefc6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "quantity", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_line')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_line_quantity", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_contract_line_quantity.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_line_quantity.b5141eefc6", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_line", "not_null_subscriptions_stg__subscription_contract_line_quantity"], "alias": "not_null_subscriptions_stg__subscription_contract_line_quantity", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.6246145, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_line"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.yml/not_null_subscriptions_stg__subscription_contract_line_quantity.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_line where quantity is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "quantity", "file_key_name": "models.subscriptions_stg__subscription_contract_line", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_line"}, "test.yoda.unique_subscriptions_stg__subscription_contract_order_id.6e2ffae470": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions_stg__subscription_contract_order_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions_stg__subscription_contract_order_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml", "unique_id": "test.yoda.unique_subscriptions_stg__subscription_contract_order_id.6e2ffae470", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_order", "unique_subscriptions_stg__subscription_contract_order_id"], "alias": "unique_subscriptions_stg__subscription_contract_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082691.649956, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml/unique_subscriptions_stg__subscription_contract_order_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions_stg__subscription_contract_order where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__subscription_contract_order", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_order"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_order_id.ab84ffc005": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_contract_order_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_order_id.ab84ffc005", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_order", "not_null_subscriptions_stg__subscription_contract_order_id"], "alias": "not_null_subscriptions_stg__subscription_contract_order_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.6560998, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml/not_null_subscriptions_stg__subscription_contract_order_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_order where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__subscription_contract_order", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_order"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_order_store_id.ea32213fae": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_order_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_2fe72fecba599cf0f6c7f4153a1614cd.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_order_store_id.ea32213fae", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_order", "not_null_subscriptions_stg__subscription_contract_order_store_id"], "alias": "not_null_subscriptions_stg__su_2fe72fecba599cf0f6c7f4153a1614cd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_2fe72fecba599cf0f6c7f4153a1614cd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_2fe72fecba599cf0f6c7f4153a1614cd"}, "created_at": 1700082691.6622226, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_2fe72fecba599cf0f6c7f4153a1614cd\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml/not_null_subscriptions_stg__su_2fe72fecba599cf0f6c7f4153a1614cd.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_order where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.subscriptions_stg__subscription_contract_order", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_order"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_order_external_subscription_contract_id.0b2e8cd5f6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_subscription_contract_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_order_external_subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_0f830035693da4054b142975c7e57e8b.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_order_external_subscription_contract_id.0b2e8cd5f6", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_order", "not_null_subscriptions_stg__subscription_contract_order_external_subscription_contract_id"], "alias": "not_null_subscriptions_stg__su_0f830035693da4054b142975c7e57e8b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_0f830035693da4054b142975c7e57e8b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_0f830035693da4054b142975c7e57e8b"}, "created_at": 1700082691.6697295, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_0f830035693da4054b142975c7e57e8b\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml/not_null_subscriptions_stg__su_0f830035693da4054b142975c7e57e8b.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_order where external_subscription_contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_subscription_contract_id", "file_key_name": "models.subscriptions_stg__subscription_contract_order", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_order"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_order_external_order_id.3be5a3bc9e": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_order_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_order_external_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_47754ecb9b325d1ee3acf60b83dc531e.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_order_external_order_id.3be5a3bc9e", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_order", "not_null_subscriptions_stg__subscription_contract_order_external_order_id"], "alias": "not_null_subscriptions_stg__su_47754ecb9b325d1ee3acf60b83dc531e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_47754ecb9b325d1ee3acf60b83dc531e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_47754ecb9b325d1ee3acf60b83dc531e"}, "created_at": 1700082691.6758153, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_47754ecb9b325d1ee3acf60b83dc531e\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml/not_null_subscriptions_stg__su_47754ecb9b325d1ee3acf60b83dc531e.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_order where external_order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_order_id", "file_key_name": "models.subscriptions_stg__subscription_contract_order", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_order"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_order_created_at.51958f6ced": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_order_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_9980618a157e60220a950cbc97caad9d.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_order_created_at.51958f6ced", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_order", "not_null_subscriptions_stg__subscription_contract_order_created_at"], "alias": "not_null_subscriptions_stg__su_9980618a157e60220a950cbc97caad9d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_9980618a157e60220a950cbc97caad9d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_9980618a157e60220a950cbc97caad9d"}, "created_at": 1700082691.6820633, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_9980618a157e60220a950cbc97caad9d\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml/not_null_subscriptions_stg__su_9980618a157e60220a950cbc97caad9d.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_order where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.subscriptions_stg__subscription_contract_order", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_order"}, "test.yoda.not_null_subscriptions_stg__subscription_contract_order_updated_at.e9265941b3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_contract_order')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_contract_order_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_e1ead62bfb8be3313647978767046f3c.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_contract_order_updated_at.e9265941b3", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_contract_order", "not_null_subscriptions_stg__subscription_contract_order_updated_at"], "alias": "not_null_subscriptions_stg__su_e1ead62bfb8be3313647978767046f3c", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_e1ead62bfb8be3313647978767046f3c", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_e1ead62bfb8be3313647978767046f3c"}, "created_at": 1700082691.688779, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_e1ead62bfb8be3313647978767046f3c\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_contract_order", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_contract_order"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.yml/not_null_subscriptions_stg__su_e1ead62bfb8be3313647978767046f3c.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_contract_order where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.subscriptions_stg__subscription_contract_order", "attached_node": "model.yoda.subscriptions_stg__subscription_contract_order"}, "test.yoda.unique_subscriptions_stg__subscription_line_action_id.8bf84a0019": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_line_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions_stg__subscription_line_action_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions_stg__subscription_line_action_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "unique_id": "test.yoda.unique_subscriptions_stg__subscription_line_action_id.8bf84a0019", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "unique_subscriptions_stg__subscription_line_action_id"], "alias": "unique_subscriptions_stg__subscription_line_action_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082691.752648, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml/unique_subscriptions_stg__subscription_line_action_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from dev_dkruh1.subscriptions_stg__subscription_line_action where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__subscription_line_action", "attached_node": "model.yoda.subscriptions_stg__subscription_line_action"}, "test.yoda.not_null_subscriptions_stg__subscription_line_action_id.36f709ac2f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_line_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_line_action_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_line_action_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_line_action_id.36f709ac2f", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "not_null_subscriptions_stg__subscription_line_action_id"], "alias": "not_null_subscriptions_stg__subscription_line_action_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.758792, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml/not_null_subscriptions_stg__subscription_line_action_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_line_action where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "models.subscriptions_stg__subscription_line_action", "attached_node": "model.yoda.subscriptions_stg__subscription_line_action"}, "test.yoda.not_null_subscriptions_stg__subscription_line_action_store_id.8a1fcd46b3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "store_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_line_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_line_action_store_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_line_action_store_id.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_line_action_store_id.8a1fcd46b3", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "not_null_subscriptions_stg__subscription_line_action_store_id"], "alias": "not_null_subscriptions_stg__subscription_line_action_store_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.7646532, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml/not_null_subscriptions_stg__subscription_line_action_store_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_line_action where store_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "store_id", "file_key_name": "models.subscriptions_stg__subscription_line_action", "attached_node": "model.yoda.subscriptions_stg__subscription_line_action"}, "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_subscription_contract_id.46a57f4159": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_subscription_contract_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_line_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_line_action_external_subscription_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_9d48469b46f94db775feca05c7e07e84.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_subscription_contract_id.46a57f4159", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "not_null_subscriptions_stg__subscription_line_action_external_subscription_contract_id"], "alias": "not_null_subscriptions_stg__su_9d48469b46f94db775feca05c7e07e84", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_9d48469b46f94db775feca05c7e07e84", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_9d48469b46f94db775feca05c7e07e84"}, "created_at": 1700082691.7708747, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_9d48469b46f94db775feca05c7e07e84\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml/not_null_subscriptions_stg__su_9d48469b46f94db775feca05c7e07e84.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_line_action where external_subscription_contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_subscription_contract_id", "file_key_name": "models.subscriptions_stg__subscription_line_action", "attached_node": "model.yoda.subscriptions_stg__subscription_line_action"}, "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_line_id.76369fc8e4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_line_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_line_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_line_action_external_line_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_b27adc201c04295968bd034676d9d352.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_line_id.76369fc8e4", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "not_null_subscriptions_stg__subscription_line_action_external_line_id"], "alias": "not_null_subscriptions_stg__su_b27adc201c04295968bd034676d9d352", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_b27adc201c04295968bd034676d9d352", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_b27adc201c04295968bd034676d9d352"}, "created_at": 1700082691.7775373, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_b27adc201c04295968bd034676d9d352\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml/not_null_subscriptions_stg__su_b27adc201c04295968bd034676d9d352.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_line_action where external_line_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_line_id", "file_key_name": "models.subscriptions_stg__subscription_line_action", "attached_node": "model.yoda.subscriptions_stg__subscription_line_action"}, "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_variant_id.3aa5d75d64": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "external_variant_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_line_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_line_action_external_variant_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_8fed8c358f302ff5d9e58e74ed3920fb.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_variant_id.3aa5d75d64", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "not_null_subscriptions_stg__subscription_line_action_external_variant_id"], "alias": "not_null_subscriptions_stg__su_8fed8c358f302ff5d9e58e74ed3920fb", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_8fed8c358f302ff5d9e58e74ed3920fb", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_8fed8c358f302ff5d9e58e74ed3920fb"}, "created_at": 1700082691.784003, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_8fed8c358f302ff5d9e58e74ed3920fb\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml/not_null_subscriptions_stg__su_8fed8c358f302ff5d9e58e74ed3920fb.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_line_action where external_variant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "external_variant_id", "file_key_name": "models.subscriptions_stg__subscription_line_action", "attached_node": "model.yoda.subscriptions_stg__subscription_line_action"}, "test.yoda.not_null_subscriptions_stg__subscription_line_action_action_type.fdd8968d86": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_type", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_line_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_line_action_action_type", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_a64127d36389af212c7dd437919b5e03.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_line_action_action_type.fdd8968d86", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "not_null_subscriptions_stg__subscription_line_action_action_type"], "alias": "not_null_subscriptions_stg__su_a64127d36389af212c7dd437919b5e03", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_a64127d36389af212c7dd437919b5e03", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_a64127d36389af212c7dd437919b5e03"}, "created_at": 1700082691.7902799, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_a64127d36389af212c7dd437919b5e03\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml/not_null_subscriptions_stg__su_a64127d36389af212c7dd437919b5e03.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_line_action where action_type is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_type", "file_key_name": "models.subscriptions_stg__subscription_line_action", "attached_node": "model.yoda.subscriptions_stg__subscription_line_action"}, "test.yoda.not_null_subscriptions_stg__subscription_line_action_action_status.46b55635d6": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "action_status", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_line_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_line_action_action_status", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__su_24f589ca2f0c8db15e5113957ffa23cc.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_line_action_action_status.46b55635d6", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "not_null_subscriptions_stg__subscription_line_action_action_status"], "alias": "not_null_subscriptions_stg__su_24f589ca2f0c8db15e5113957ffa23cc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__su_24f589ca2f0c8db15e5113957ffa23cc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__su_24f589ca2f0c8db15e5113957ffa23cc"}, "created_at": 1700082691.7966864, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__su_24f589ca2f0c8db15e5113957ffa23cc\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml/not_null_subscriptions_stg__su_24f589ca2f0c8db15e5113957ffa23cc.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_line_action where action_status is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "action_status", "file_key_name": "models.subscriptions_stg__subscription_line_action", "attached_node": "model.yoda.subscriptions_stg__subscription_line_action"}, "test.yoda.not_null_subscriptions_stg__subscription_line_action_quantity.13af32fe78": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "quantity", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_line_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_line_action_quantity", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_line_action_quantity.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_line_action_quantity.13af32fe78", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "not_null_subscriptions_stg__subscription_line_action_quantity"], "alias": "not_null_subscriptions_stg__subscription_line_action_quantity", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.8029315, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml/not_null_subscriptions_stg__subscription_line_action_quantity.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_line_action where quantity is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "quantity", "file_key_name": "models.subscriptions_stg__subscription_line_action", "attached_node": "model.yoda.subscriptions_stg__subscription_line_action"}, "test.yoda.not_null_subscriptions_stg__subscription_line_action_created_at.acb57fb287": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "created_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_line_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_line_action_created_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_line_action_created_at.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_line_action_created_at.acb57fb287", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "not_null_subscriptions_stg__subscription_line_action_created_at"], "alias": "not_null_subscriptions_stg__subscription_line_action_created_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.8087754, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml/not_null_subscriptions_stg__subscription_line_action_created_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_line_action where created_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "created_at", "file_key_name": "models.subscriptions_stg__subscription_line_action", "attached_node": "model.yoda.subscriptions_stg__subscription_line_action"}, "test.yoda.not_null_subscriptions_stg__subscription_line_action_updated_at.cd68e46ce5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "updated_at", "model": "{{ get_where_subquery(ref('subscriptions_stg__subscription_line_action')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__subscription_line_action_updated_at", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__subscription_line_action_updated_at.sql", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__subscription_line_action_updated_at.cd68e46ce5", "fqn": ["yoda", "subscriptions", "staging", "base", "subscriptions_stg__subscription_line_action", "not_null_subscriptions_stg__subscription_line_action_updated_at"], "alias": "not_null_subscriptions_stg__subscription_line_action_updated_at", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082691.8148022, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__subscription_line_action"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.yml/not_null_subscriptions_stg__subscription_line_action_updated_at.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__subscription_line_action where updated_at is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "updated_at", "file_key_name": "models.subscriptions_stg__subscription_line_action", "attached_node": "model.yoda.subscriptions_stg__subscription_line_action"}, "test.yoda.unique_subscriptions_stg__synergy_sms_payment_failure_sms_id.d0cbebe707": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "sms_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__synergy_sms_payment_failure')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "unique_subscriptions_stg__synergy_sms_payment_failure_sms_id", "resource_type": "test", "package_name": "yoda", "path": "unique_subscriptions_stg__synergy_sms_payment_failure_sms_id.sql", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml", "unique_id": "test.yoda.unique_subscriptions_stg__synergy_sms_payment_failure_sms_id.d0cbebe707", "fqn": ["yoda", "subscriptions", "staging", "marts_compatible", "subscriptions_stg__synergy_sms_payment_failure", "unique_subscriptions_stg__synergy_sms_payment_failure_sms_id"], "alias": "unique_subscriptions_stg__synergy_sms_payment_failure_sms_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082692.0753756, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__synergy_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml/unique_subscriptions_stg__synergy_sms_payment_failure_sms_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select sms_id from dev_dkruh1.subscriptions_stg__synergy_sms_payment_failure where sms_id is not null group by sms_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_id", "file_key_name": "models.subscriptions_stg__synergy_sms_payment_failure", "attached_node": "model.yoda.subscriptions_stg__synergy_sms_payment_failure"}, "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_sms_id.cf24e4eac3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "sms_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__synergy_sms_payment_failure')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__synergy_sms_payment_failure_sms_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__synergy_sms_payment_failure_sms_id.sql", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_sms_id.cf24e4eac3", "fqn": ["yoda", "subscriptions", "staging", "marts_compatible", "subscriptions_stg__synergy_sms_payment_failure", "not_null_subscriptions_stg__synergy_sms_payment_failure_sms_id"], "alias": "not_null_subscriptions_stg__synergy_sms_payment_failure_sms_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082692.0815248, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__synergy_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml/not_null_subscriptions_stg__synergy_sms_payment_failure_sms_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__synergy_sms_payment_failure where sms_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "sms_id", "file_key_name": "models.subscriptions_stg__synergy_sms_payment_failure", "attached_node": "model.yoda.subscriptions_stg__synergy_sms_payment_failure"}, "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_number.4876169148": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "number", "model": "{{ get_where_subquery(ref('subscriptions_stg__synergy_sms_payment_failure')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__synergy_sms_payment_failure_number", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__synergy_sms_payment_failure_number.sql", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_number.4876169148", "fqn": ["yoda", "subscriptions", "staging", "marts_compatible", "subscriptions_stg__synergy_sms_payment_failure", "not_null_subscriptions_stg__synergy_sms_payment_failure_number"], "alias": "not_null_subscriptions_stg__synergy_sms_payment_failure_number", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082692.0875568, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__synergy_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml/not_null_subscriptions_stg__synergy_sms_payment_failure_number.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__synergy_sms_payment_failure where number is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "number", "file_key_name": "models.subscriptions_stg__synergy_sms_payment_failure", "attached_node": "model.yoda.subscriptions_stg__synergy_sms_payment_failure"}, "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_app_key.64d75a0a7b": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(ref('subscriptions_stg__synergy_sms_payment_failure')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__synergy_sms_payment_failure_app_key", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__synergy_sms_payment_failure_app_key.sql", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_app_key.64d75a0a7b", "fqn": ["yoda", "subscriptions", "staging", "marts_compatible", "subscriptions_stg__synergy_sms_payment_failure", "not_null_subscriptions_stg__synergy_sms_payment_failure_app_key"], "alias": "not_null_subscriptions_stg__synergy_sms_payment_failure_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082692.09372, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "subscriptions_stg__synergy_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml/not_null_subscriptions_stg__synergy_sms_payment_failure_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__synergy_sms_payment_failure where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "models.subscriptions_stg__synergy_sms_payment_failure", "attached_node": "model.yoda.subscriptions_stg__synergy_sms_payment_failure"}, "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_customer_id.11dd893009": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__synergy_sms_payment_failure')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__synergy_sms_payment_failure_customer_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__sy_e32fc87cd12e42f2ef4ba6234dde41be.sql", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_customer_id.11dd893009", "fqn": ["yoda", "subscriptions", "staging", "marts_compatible", "subscriptions_stg__synergy_sms_payment_failure", "not_null_subscriptions_stg__synergy_sms_payment_failure_customer_id"], "alias": "not_null_subscriptions_stg__sy_e32fc87cd12e42f2ef4ba6234dde41be", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__sy_e32fc87cd12e42f2ef4ba6234dde41be", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__sy_e32fc87cd12e42f2ef4ba6234dde41be"}, "created_at": 1700082692.0997562, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__sy_e32fc87cd12e42f2ef4ba6234dde41be\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__synergy_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml/not_null_subscriptions_stg__sy_e32fc87cd12e42f2ef4ba6234dde41be.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__synergy_sms_payment_failure where customer_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "customer_id", "file_key_name": "models.subscriptions_stg__synergy_sms_payment_failure", "attached_node": "model.yoda.subscriptions_stg__synergy_sms_payment_failure"}, "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_contract_id.ab96c98b93": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "contract_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__synergy_sms_payment_failure')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__synergy_sms_payment_failure_contract_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__sy_df7e799fdfa6e81e508d7a903b37efaf.sql", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_contract_id.ab96c98b93", "fqn": ["yoda", "subscriptions", "staging", "marts_compatible", "subscriptions_stg__synergy_sms_payment_failure", "not_null_subscriptions_stg__synergy_sms_payment_failure_contract_id"], "alias": "not_null_subscriptions_stg__sy_df7e799fdfa6e81e508d7a903b37efaf", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__sy_df7e799fdfa6e81e508d7a903b37efaf", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__sy_df7e799fdfa6e81e508d7a903b37efaf"}, "created_at": 1700082692.1059186, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__sy_df7e799fdfa6e81e508d7a903b37efaf\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__synergy_sms_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.yml/not_null_subscriptions_stg__sy_df7e799fdfa6e81e508d7a903b37efaf.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__synergy_sms_payment_failure where contract_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "contract_id", "file_key_name": "models.subscriptions_stg__synergy_sms_payment_failure", "attached_node": "model.yoda.subscriptions_stg__synergy_sms_payment_failure"}, "test.yoda.not_null_subscriptions_stg__synergy_subs_payment_failure_order_id.3f406c467c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{{ get_where_subquery(ref('subscriptions_stg__synergy_subs_payment_failure')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "not_null_subscriptions_stg__synergy_subs_payment_failure_order_id", "resource_type": "test", "package_name": "yoda", "path": "not_null_subscriptions_stg__sy_ae49515718866f5a1e166a15cc175ec7.sql", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.yml", "unique_id": "test.yoda.not_null_subscriptions_stg__synergy_subs_payment_failure_order_id.3f406c467c", "fqn": ["yoda", "subscriptions", "staging", "marts_compatible", "subscriptions_stg__synergy_subs_payment_failure", "not_null_subscriptions_stg__synergy_subs_payment_failure_order_id"], "alias": "not_null_subscriptions_stg__sy_ae49515718866f5a1e166a15cc175ec7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_subscriptions_stg__sy_ae49515718866f5a1e166a15cc175ec7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_subscriptions_stg__sy_ae49515718866f5a1e166a15cc175ec7"}, "created_at": 1700082692.130889, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_subscriptions_stg__sy_ae49515718866f5a1e166a15cc175ec7\") }}", "language": "sql", "refs": [{"name": "subscriptions_stg__synergy_subs_payment_failure", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.subscriptions_stg__synergy_subs_payment_failure"]}, "compiled_path": "target/compiled/yoda/models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.yml/not_null_subscriptions_stg__sy_ae49515718866f5a1e166a15cc175ec7.sql", "compiled": true, "compiled_code": "\n\n \n select * from dev_dkruh1.subscriptions_stg__synergy_subs_payment_failure where order_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "order_id", "file_key_name": "models.subscriptions_stg__synergy_subs_payment_failure", "attached_node": "model.yoda.subscriptions_stg__synergy_subs_payment_failure"}, "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_ugc_stg__review_order_line_1.aef73dd478": {"test_metadata": {"name": "expect_table_row_count_to_be_between", "kwargs": {"min_value": 1, "model": "{{ get_where_subquery(ref('ugc_stg__review_order_line')) }}"}, "namespace": "dbt_expectations"}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "dbt_expectations_expect_table_row_count_to_be_between_ugc_stg__review_order_line_1", "resource_type": "test", "package_name": "yoda", "path": "dbt_expectations_expect_table__d28a53bd70e951645cd6127440750ca6.sql", "original_file_path": "models/ugc/staging/base/ugc_stg__review_order_line/ugc_stg__review_order_line.yml", "unique_id": "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_ugc_stg__review_order_line_1.aef73dd478", "fqn": ["yoda", "ugc", "staging", "base", "ugc_stg__review_order_line", "dbt_expectations_expect_table_row_count_to_be_between_ugc_stg__review_order_line_1"], "alias": "dbt_expectations_expect_table__d28a53bd70e951645cd6127440750ca6", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_expectations_expect_table__d28a53bd70e951645cd6127440750ca6", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_expectations_expect_table__d28a53bd70e951645cd6127440750ca6"}, "created_at": 1700082693.2178838, "relation_name": null, "raw_code": "{{ dbt_expectations.test_expect_table_row_count_to_be_between(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_expectations_expect_table__d28a53bd70e951645cd6127440750ca6\") }}", "language": "sql", "refs": [{"name": "ugc_stg__review_order_line", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro.dbt.get_where_subquery"], "nodes": ["model.yoda.ugc_stg__review_order_line"]}, "compiled_path": "target/compiled/yoda/models/ugc/staging/base/ugc_stg__review_order_line/ugc_stg__review_order_line.yml/dbt_expectations_expect_table__d28a53bd70e951645cd6127440750ca6.sql", "compiled": true, "compiled_code": "\n\n\n\n with grouped_expression as (\n select\n \n \n \n \n( 1=1 and count(*) >= 1\n)\n as expression\n\n\n from dev_dkruh1.ugc_stg__review_order_line\n \n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression = true)\n\n)\n\nselect *\nfrom validation_errors\n\n\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.ugc_stg__review_order_line", "attached_node": "model.yoda.ugc_stg__review_order_line"}, "test.yoda.source_not_null_loyalty__default_swell_vip_tiers_settings_merchant_id.c901db4741": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(source('loyalty__default', 'swell_vip_tiers_settings')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "source_not_null_loyalty__default_swell_vip_tiers_settings_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "source_not_null_loyalty__defau_c9e29c69ba07d23d1b3440dd35948399.sql", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "test.yoda.source_not_null_loyalty__default_swell_vip_tiers_settings_merchant_id.c901db4741", "fqn": ["yoda", "loyalty", "source", "source_not_null_loyalty__default_swell_vip_tiers_settings_merchant_id"], "alias": "source_not_null_loyalty__defau_c9e29c69ba07d23d1b3440dd35948399", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "source_not_null_loyalty__defau_c9e29c69ba07d23d1b3440dd35948399", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "source_not_null_loyalty__defau_c9e29c69ba07d23d1b3440dd35948399"}, "created_at": 1700082693.7354267, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"source_not_null_loyalty__defau_c9e29c69ba07d23d1b3440dd35948399\") }}", "language": "sql", "refs": [], "sources": [["loyalty__default", "swell_vip_tiers_settings"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["source.yoda.loyalty__default.swell_vip_tiers_settings"]}, "compiled_path": "target/compiled/yoda/models/loyalty/source/loyalty__src.yml/source_not_null_loyalty__defau_c9e29c69ba07d23d1b3440dd35948399.sql", "compiled": true, "compiled_code": "\n\n \n select * from default.swell_vip_tiers_settings where merchant_id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "sources.loyalty__default", "attached_node": null}, "test.yoda.source_unique_loyalty__default_swell_vip_tiers_settings_merchant_id.5f44e0ed3b": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "merchant_id", "model": "{{ get_where_subquery(source('loyalty__default', 'swell_vip_tiers_settings')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "source_unique_loyalty__default_swell_vip_tiers_settings_merchant_id", "resource_type": "test", "package_name": "yoda", "path": "source_unique_loyalty__default_5cbdc6c69a6d1670cbe6de909bbc3a74.sql", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "test.yoda.source_unique_loyalty__default_swell_vip_tiers_settings_merchant_id.5f44e0ed3b", "fqn": ["yoda", "loyalty", "source", "source_unique_loyalty__default_swell_vip_tiers_settings_merchant_id"], "alias": "source_unique_loyalty__default_5cbdc6c69a6d1670cbe6de909bbc3a74", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "source_unique_loyalty__default_5cbdc6c69a6d1670cbe6de909bbc3a74", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)", "alias": "source_unique_loyalty__default_5cbdc6c69a6d1670cbe6de909bbc3a74"}, "created_at": 1700082693.74231, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"source_unique_loyalty__default_5cbdc6c69a6d1670cbe6de909bbc3a74\") }}", "language": "sql", "refs": [], "sources": [["loyalty__default", "swell_vip_tiers_settings"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["source.yoda.loyalty__default.swell_vip_tiers_settings"]}, "compiled_path": "target/compiled/yoda/models/loyalty/source/loyalty__src.yml/source_unique_loyalty__default_5cbdc6c69a6d1670cbe6de909bbc3a74.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select merchant_id from default.swell_vip_tiers_settings where merchant_id is not null group by merchant_id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "merchant_id", "file_key_name": "sources.loyalty__default", "attached_node": null}, "test.yoda.source_not_null_platform__yotpoapiprod_accounts_id.53e221b49f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(source('platform__yotpoapiprod', 'accounts')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "source_not_null_platform__yotpoapiprod_accounts_id", "resource_type": "test", "package_name": "yoda", "path": "source_not_null_platform__yotpoapiprod_accounts_id.sql", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "test.yoda.source_not_null_platform__yotpoapiprod_accounts_id.53e221b49f", "fqn": ["yoda", "platform", "source", "source_not_null_platform__yotpoapiprod_accounts_id"], "alias": "source_not_null_platform__yotpoapiprod_accounts_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082693.7670062, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "accounts"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["source.yoda.platform__yotpoapiprod.accounts"]}, "compiled_path": "target/compiled/yoda/models/platform/source/platform__src.yml/source_not_null_platform__yotpoapiprod_accounts_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from yotpoapiprod.accounts where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "sources.platform__yotpoapiprod", "attached_node": null}, "test.yoda.source_unique_platform__yotpoapiprod_accounts_id.1717951440": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(source('platform__yotpoapiprod', 'accounts')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "source_unique_platform__yotpoapiprod_accounts_id", "resource_type": "test", "package_name": "yoda", "path": "source_unique_platform__yotpoapiprod_accounts_id.sql", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "test.yoda.source_unique_platform__yotpoapiprod_accounts_id.1717951440", "fqn": ["yoda", "platform", "source", "source_unique_platform__yotpoapiprod_accounts_id"], "alias": "source_unique_platform__yotpoapiprod_accounts_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082693.7739425, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "accounts"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["source.yoda.platform__yotpoapiprod.accounts"]}, "compiled_path": "target/compiled/yoda/models/platform/source/platform__src.yml/source_unique_platform__yotpoapiprod_accounts_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from yotpoapiprod.accounts where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "sources.platform__yotpoapiprod", "attached_node": null}, "test.yoda.source_not_null_platform__yotpoapiprod_accounts_app_key.82f42cf573": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(source('platform__yotpoapiprod', 'accounts')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "source_not_null_platform__yotpoapiprod_accounts_app_key", "resource_type": "test", "package_name": "yoda", "path": "source_not_null_platform__yotpoapiprod_accounts_app_key.sql", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "test.yoda.source_not_null_platform__yotpoapiprod_accounts_app_key.82f42cf573", "fqn": ["yoda", "platform", "source", "source_not_null_platform__yotpoapiprod_accounts_app_key"], "alias": "source_not_null_platform__yotpoapiprod_accounts_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082693.7804415, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "accounts"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["source.yoda.platform__yotpoapiprod.accounts"]}, "compiled_path": "target/compiled/yoda/models/platform/source/platform__src.yml/source_not_null_platform__yotpoapiprod_accounts_app_key.sql", "compiled": true, "compiled_code": "\n\n \n select * from yotpoapiprod.accounts where app_key is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "sources.platform__yotpoapiprod", "attached_node": null}, "test.yoda.source_unique_platform__yotpoapiprod_accounts_app_key.8c15d446df": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "app_key", "model": "{{ get_where_subquery(source('platform__yotpoapiprod', 'accounts')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "source_unique_platform__yotpoapiprod_accounts_app_key", "resource_type": "test", "package_name": "yoda", "path": "source_unique_platform__yotpoapiprod_accounts_app_key.sql", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "test.yoda.source_unique_platform__yotpoapiprod_accounts_app_key.8c15d446df", "fqn": ["yoda", "platform", "source", "source_unique_platform__yotpoapiprod_accounts_app_key"], "alias": "source_unique_platform__yotpoapiprod_accounts_app_key", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082693.7859747, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "accounts"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["source.yoda.platform__yotpoapiprod.accounts"]}, "compiled_path": "target/compiled/yoda/models/platform/source/platform__src.yml/source_unique_platform__yotpoapiprod_accounts_app_key.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select app_key from yotpoapiprod.accounts where app_key is not null group by app_key having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "app_key", "file_key_name": "sources.platform__yotpoapiprod", "attached_node": null}, "test.yoda.source_not_null_platform__yotpoapiprod_platform_types_id.2364631aa4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(source('platform__yotpoapiprod', 'platform_types')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "source_not_null_platform__yotpoapiprod_platform_types_id", "resource_type": "test", "package_name": "yoda", "path": "source_not_null_platform__yotpoapiprod_platform_types_id.sql", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "test.yoda.source_not_null_platform__yotpoapiprod_platform_types_id.2364631aa4", "fqn": ["yoda", "platform", "source", "source_not_null_platform__yotpoapiprod_platform_types_id"], "alias": "source_not_null_platform__yotpoapiprod_platform_types_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082693.7926707, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "platform_types"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["source.yoda.platform__yotpoapiprod.platform_types"]}, "compiled_path": "target/compiled/yoda/models/platform/source/platform__src.yml/source_not_null_platform__yotpoapiprod_platform_types_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from yotpoapiprod.platform_types where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "sources.platform__yotpoapiprod", "attached_node": null}, "test.yoda.source_unique_platform__yotpoapiprod_platform_types_id.e3c5d219fe": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(source('platform__yotpoapiprod', 'platform_types')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "source_unique_platform__yotpoapiprod_platform_types_id", "resource_type": "test", "package_name": "yoda", "path": "source_unique_platform__yotpoapiprod_platform_types_id.sql", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "test.yoda.source_unique_platform__yotpoapiprod_platform_types_id.e3c5d219fe", "fqn": ["yoda", "platform", "source", "source_unique_platform__yotpoapiprod_platform_types_id"], "alias": "source_unique_platform__yotpoapiprod_platform_types_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082693.7986438, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "platform_types"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["source.yoda.platform__yotpoapiprod.platform_types"]}, "compiled_path": "target/compiled/yoda/models/platform/source/platform__src.yml/source_unique_platform__yotpoapiprod_platform_types_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from yotpoapiprod.platform_types where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "sources.platform__yotpoapiprod", "attached_node": null}, "test.yoda.source_not_null_platform__yotpoapiprod_account_platforms_id.665cd6e626": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(source('platform__yotpoapiprod', 'account_platforms')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "source_not_null_platform__yotpoapiprod_account_platforms_id", "resource_type": "test", "package_name": "yoda", "path": "source_not_null_platform__yotpoapiprod_account_platforms_id.sql", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "test.yoda.source_not_null_platform__yotpoapiprod_account_platforms_id.665cd6e626", "fqn": ["yoda", "platform", "source", "source_not_null_platform__yotpoapiprod_account_platforms_id"], "alias": "source_not_null_platform__yotpoapiprod_account_platforms_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1700082693.8070273, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "account_platforms"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["source.yoda.platform__yotpoapiprod.account_platforms"]}, "compiled_path": "target/compiled/yoda/models/platform/source/platform__src.yml/source_not_null_platform__yotpoapiprod_account_platforms_id.sql", "compiled": true, "compiled_code": "\n\n \n select * from yotpoapiprod.account_platforms where id is null", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "sources.platform__yotpoapiprod", "attached_node": null}, "test.yoda.source_unique_platform__yotpoapiprod_account_platforms_id.f7c871edac": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "id", "model": "{{ get_where_subquery(source('platform__yotpoapiprod', 'account_platforms')) }}"}, "namespace": null}, "database": null, "schema": "dev_dkruh1_dbt_test__audit", "name": "source_unique_platform__yotpoapiprod_account_platforms_id", "resource_type": "test", "package_name": "yoda", "path": "source_unique_platform__yotpoapiprod_account_platforms_id.sql", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "test.yoda.source_unique_platform__yotpoapiprod_account_platforms_id.f7c871edac", "fqn": ["yoda", "platform", "source", "source_unique_platform__yotpoapiprod_account_platforms_id"], "alias": "source_unique_platform__yotpoapiprod_account_platforms_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "sum(n_records)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"fail_calc": "sum(n_records)"}, "created_at": 1700082693.8133957, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [], "sources": [["platform__yotpoapiprod", "account_platforms"]], "metrics": [], "depends_on": {"macros": ["macro.yoda.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["source.yoda.platform__yotpoapiprod.account_platforms"]}, "compiled_path": "target/compiled/yoda/models/platform/source/platform__src.yml/source_unique_platform__yotpoapiprod_account_platforms_id.sql", "compiled": true, "compiled_code": "\n\n \n \n\n select count(*) as n_records from (\n select id from yotpoapiprod.account_platforms where id is not null group by id having count(*) > 1\n )", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "id", "file_key_name": "sources.platform__yotpoapiprod", "attached_node": null}}, "sources": {"source.yoda.analytics__billing.shopify_billing_events": {"database": null, "schema": "billing", "name": "shopify_billing_events", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__billing.shopify_billing_events", "fqn": ["yoda", "analytics", "finance", "source", "analytics__billing", "shopify_billing_events"], "source_name": "analytics__billing", "source_description": "", "loader": "", "identifier": "shopify_billing_events", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "occurredat": {"name": "occurredat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "eventtype": {"name": "eventtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "appid": {"name": "appid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billedon": {"name": "billedon", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "chargename": {"name": "chargename", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformtypename": {"name": "platformtypename", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopid": {"name": "shopid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopname": {"name": "shopname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopifydomain": {"name": "shopifydomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "billing.shopify_billing_events", "created_at": 1700082693.669303}, "source.yoda.analytics__zuora.subscription": {"database": null, "schema": "zuora", "name": "subscription", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.subscription", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "subscription"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "subscription", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "actual_contract_duration__c": {"name": "actual_contract_duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_extension_months__c": {"name": "csm_extension_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "end_of_contract_extension_month__c": {"name": "end_of_contract_extension_month__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_contract_duration__c": {"name": "original_contract_duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price__c": {"name": "total_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "autorenew": {"name": "autorenew", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "billtocontactid": {"name": "billtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelleddate": {"name": "cancelleddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contractacceptancedate": {"name": "contractacceptancedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contracteffectivedate": {"name": "contracteffectivedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cpqbundlejsonid__qt": {"name": "cpqbundlejsonid__qt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creatoraccountid": {"name": "creatoraccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creatorinvoiceownerid": {"name": "creatorinvoiceownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currenttermperiodtype": {"name": "currenttermperiodtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currentterm": {"name": "currentterm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "downgraded__c": {"name": "downgraded__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_from_dunning_until__c": {"name": "exclude_from_dunning_until__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "excludefromdashboards__c": {"name": "excludefromdashboards__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initialtermperiodtype": {"name": "initialtermperiodtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initialterm": {"name": "initialterm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "integrationid__ns": {"name": "integrationid__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceownerid": {"name": "invoiceownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvoiceseparate": {"name": "isinvoiceseparate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ismigrationsubscription__c": {"name": "ismigrationsubscription__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "notes": {"name": "notes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunityname__qt": {"name": "opportunityname__qt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "originalcreateddate": {"name": "originalcreateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "originalid": {"name": "originalid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previoussubscriptionid": {"name": "previoussubscriptionid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "project__ns": {"name": "project__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quotebusinesstype__qt": {"name": "quotebusinesstype__qt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quotenumber__qt": {"name": "quotenumber__qt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quotetype__qt": {"name": "quotetype__qt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewalsetting": {"name": "renewalsetting", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewaltermperiodtype": {"name": "renewaltermperiodtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewalterm": {"name": "renewalterm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sf_opportunityid__c": {"name": "sf_opportunityid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesorder__ns": {"name": "salesorder__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "serviceactivationdate": {"name": "serviceactivationdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionenddate": {"name": "subscriptionenddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstartdate": {"name": "subscriptionstartdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionversionamendmentid": {"name": "subscriptionversionamendmentid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "termenddate": {"name": "termenddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "termstartdate": {"name": "termstartdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "termtype": {"name": "termtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upsctpcode__c": {"name": "upsctpcode__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "originalrenewaldate__c": {"name": "originalrenewaldate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewalfromsubscription__c": {"name": "renewalfromsubscription__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includeinpastduefile__c": {"name": "includeinpastduefile__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment__c": {"name": "segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.subscription", "created_at": 1700082693.6699345}, "source.yoda.analytics__zuora.account": {"database": null, "schema": "zuora", "name": "account", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.account", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "account"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "account", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountnumber": {"name": "accountnumber", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "additionalemailaddresses": {"name": "additionalemailaddresses", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "allowinvoiceedit": {"name": "allowinvoiceedit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "appkey__c": {"name": "appkey__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "autopay": {"name": "autopay", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "balance": {"name": "balance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "batch": {"name": "batch", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bcdsettingoption": {"name": "bcdsettingoption", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billcycleday": {"name": "billcycleday", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billtocontactid": {"name": "billtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "class__ns": {"name": "class__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "communicationprofileid": {"name": "communicationprofileid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creditbalance": {"name": "creditbalance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "crmid": {"name": "crmid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customerid__ns": {"name": "customerid__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customerservicerepname": {"name": "customerservicerepname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customertype__ns": {"name": "customertype__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "department__ns": {"name": "department__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationid__ns": {"name": "integrationid__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "intercompany__c": {"name": "intercompany__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoicedeliveryprefsemail": {"name": "invoicedeliveryprefsemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "invoicedeliveryprefsprint": {"name": "invoicedeliveryprefsprint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "invoicetemplateid": {"name": "invoicetemplateid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastinvoicedate": {"name": "lastinvoicedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "legalentity__c": {"name": "legalentity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "location__ns": {"name": "location__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchantid__c": {"name": "merchantid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mrr": {"name": "mrr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "notes": {"name": "notes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organisationkey__c": {"name": "organisationkey__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccount__c": {"name": "parentaccount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentid": {"name": "parentid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paymentgateway": {"name": "paymentgateway", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paymentterm": {"name": "paymentterm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchaseordernumber": {"name": "purchaseordernumber", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer__c": {"name": "referrer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_accountid__c": {"name": "sf_accountid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesrepname": {"name": "salesrepname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sequencesetid": {"name": "sequencesetid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subsidiary__ns": {"name": "subsidiary__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synctonetsuite__ns": {"name": "synctonetsuite__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxcompanycode": {"name": "taxcompanycode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptcertificateid": {"name": "taxexemptcertificateid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptcertificatetype": {"name": "taxexemptcertificatetype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptdescription": {"name": "taxexemptdescription", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptentityusecode": {"name": "taxexemptentityusecode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptissuingjurisdiction": {"name": "taxexemptissuingjurisdiction", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptstatus": {"name": "taxexemptstatus", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "testaccount__c": {"name": "testaccount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "totaldebitmemobalance": {"name": "totaldebitmemobalance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalinvoicebalance": {"name": "totalinvoicebalance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "unappliedbalance": {"name": "unappliedbalance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "unappliedcreditmemoamount": {"name": "unappliedcreditmemoamount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vatid": {"name": "vatid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment__c": {"name": "segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.account", "created_at": 1700082693.6704438}, "source.yoda.analytics__zuora.rateplan": {"database": null, "schema": "zuora", "name": "rateplan", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.rateplan", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "rateplan"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "rateplan", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price__c": {"name": "total_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendmentid": {"name": "amendmentid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendmenttype": {"name": "amendmenttype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactid": {"name": "billtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productid": {"name": "productid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanid": {"name": "productrateplanid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionversionamendmentid": {"name": "subscriptionversionamendmentid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family__c": {"name": "product_family__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.rateplan", "created_at": 1700082693.670867}, "source.yoda.analytics__zuora.order": {"database": null, "schema": "zuora", "name": "order", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.order", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "order"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "order", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactid": {"name": "billtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orderdate": {"name": "orderdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ordernumber": {"name": "ordernumber", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisiondate__c": {"name": "provisiondate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.order", "created_at": 1700082693.6711261}, "source.yoda.analytics__zuora.invoice": {"database": null, "schema": "zuora", "name": "invoice", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.invoice", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "invoice"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "invoice", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adjustmentamount": {"name": "adjustmentamount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amountwithouttax": {"name": "amountwithouttax", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "autopay": {"name": "autopay", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "balance": {"name": "balance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "billtocontactid": {"name": "billtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactsnapshotid": {"name": "billtocontactsnapshotid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comments": {"name": "comments", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creditbalanceadjustmentamount": {"name": "creditbalanceadjustmentamount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "duedate": {"name": "duedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includesonetime": {"name": "includesonetime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "includesrecurring": {"name": "includesrecurring", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "includesusage": {"name": "includesusage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "integrationid__ns": {"name": "integrationid__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceconversionamountbeforetax__c": {"name": "invoiceconversionamountbeforetax__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceconversionamount__c": {"name": "invoiceconversionamount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceconversioncurrency__c": {"name": "invoiceconversioncurrency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceconversionrate__c": {"name": "invoiceconversionrate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoicedate": {"name": "invoicedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoicenumber": {"name": "invoicenumber", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastemailsentdate": {"name": "lastemailsentdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paymentamount": {"name": "paymentamount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "postedby": {"name": "postedby", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "posteddate": {"name": "posteddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refundamount": {"name": "refundamount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reversed": {"name": "reversed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "soldtocontactid": {"name": "soldtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactsnapshotid": {"name": "soldtocontactsnapshotid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sourceid": {"name": "sourceid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "targetdate": {"name": "targetdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxamount": {"name": "taxamount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxexemptamount": {"name": "taxexemptamount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxmessage": {"name": "taxmessage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxstatus": {"name": "taxstatus", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "transferredtoaccounting": {"name": "transferredtoaccounting", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.invoice", "created_at": 1700082693.671511}, "source.yoda.analytics__zuora.orderaction": {"database": null, "schema": "zuora", "name": "orderaction", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.orderaction", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "orderaction"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "orderaction", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "holds events for every order action that made", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "zuora account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactid": {"name": "billtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contracteffectivedate": {"name": "contracteffectivedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "event created timestamp", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customeracceptancedate": {"name": "customeracceptancedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "True or False if action deleted", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "downgradedpackage__c": {"name": "downgradedpackage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "order action id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orderid": {"name": "orderid", "description": "zuora order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisiondone__c": {"name": "provisiondone__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "serviceactivationdate": {"name": "serviceactivationdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "serviceactivation__c": {"name": "serviceactivation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionversionamendmentid": {"name": "subscriptionversionamendmentid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "action type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.orderaction", "created_at": 1700082693.6717768}, "source.yoda.analytics__zuora.ordermrr": {"database": null, "schema": "zuora", "name": "ordermrr", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.ordermrr", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "ordermrr"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "ordermrr", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Holds the order mrr for each zuora order", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "zuora account id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendmentid": {"name": "amendmentid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactid": {"name": "billtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "discountchargeid": {"name": "discountchargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enddate": {"name": "enddate", "description": "mrr end date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "zuora order mrr id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceownerid": {"name": "invoiceownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orderactionid": {"name": "orderactionid", "description": "zuora order action id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orderid": {"name": "orderid", "description": "zuora order id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productid": {"name": "productid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanchargeid": {"name": "productrateplanchargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanid": {"name": "productrateplanid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplanchargeid": {"name": "rateplanchargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplanid": {"name": "rateplanid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "startdate": {"name": "startdate", "description": "mrr start date", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "zuora subscription id", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionownerid": {"name": "subscriptionownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionversionamendmentid": {"name": "subscriptionversionamendmentid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "term": {"name": "term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "type of mrr (Regular,discount)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "mrr value", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.ordermrr", "created_at": 1700082693.6720555}, "source.yoda.analytics__zuora.product": {"database": null, "schema": "zuora", "name": "product", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.product", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "product"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "product", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "provisioned_package__c": {"name": "provisioned_package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "allowfeaturechanges": {"name": "allowfeaturechanges", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "category": {"name": "category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectiveenddate": {"name": "effectiveenddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectivestartdate": {"name": "effectivestartdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationid__ns": {"name": "integrationid__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "itemtype__ns": {"name": "itemtype__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_metadata__c": {"name": "plan_metadata__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productfamily__c": {"name": "productfamily__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provisionrequired__c": {"name": "provisionrequired__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxengine__c": {"name": "taxengine__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.product", "created_at": 1700082693.6724517}, "source.yoda.analytics__zuora.productrateplan": {"database": null, "schema": "zuora", "name": "productrateplan", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.productrateplan", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "productrateplan"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "productrateplan", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billingperiod__ns": {"name": "billingperiod__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "class__ns": {"name": "class__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "department__ns": {"name": "department__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectiveenddate": {"name": "effectiveenddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectivestartdate": {"name": "effectivestartdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includechildren__ns": {"name": "includechildren__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationid__ns": {"name": "integrationid__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "itemtype__ns": {"name": "itemtype__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "location__ns": {"name": "location__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "multicurrencyprice__ns": {"name": "multicurrencyprice__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price__ns": {"name": "price__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productid": {"name": "productid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subsidiary__ns": {"name": "subsidiary__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxcode__ns": {"name": "taxcode__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.productrateplan", "created_at": 1700082693.6727226}, "source.yoda.analytics__zuora.rateplancharge": {"database": null, "schema": "zuora", "name": "rateplancharge", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.rateplancharge", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "rateplancharge"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "rateplancharge", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountreceivableaccountingcodeid": {"name": "accountreceivableaccountingcodeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountingcode": {"name": "accountingcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendmentid": {"name": "amendmentid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applydiscountto": {"name": "applydiscountto", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billcycleday": {"name": "billcycleday", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billcycletype": {"name": "billcycletype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactid": {"name": "billtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingperiodalignment": {"name": "billingperiodalignment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingperiod": {"name": "billingperiod", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingtiming": {"name": "billingtiming", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargemodel": {"name": "chargemodel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargenumber": {"name": "chargenumber", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargetype": {"name": "chargetype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargedthroughdate": {"name": "chargedthroughdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dmrc": {"name": "dmrc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dtcv": {"name": "dtcv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deferredrevenueaccountingcodeid": {"name": "deferredrevenueaccountingcodeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discountlevel": {"name": "discountlevel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectiveenddate": {"name": "effectiveenddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effectivestartdate": {"name": "effectivestartdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enddatecondition": {"name": "enddatecondition", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "islastsegment": {"name": "islastsegment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isprocessed": {"name": "isprocessed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "listpricebase": {"name": "listpricebase", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mrr": {"name": "mrr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numberofperiods": {"name": "numberofperiods", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "originalid": {"name": "originalid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "overagecalculationoption": {"name": "overagecalculationoption", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "overageunusedunitscreditoption": {"name": "overageunusedunitscreditoption", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricechangeoption": {"name": "pricechangeoption", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priceincreasepercentage": {"name": "priceincreasepercentage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processedthroughdate": {"name": "processedthroughdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productid": {"name": "productid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanchargeid": {"name": "productrateplanchargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanid": {"name": "productrateplanid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rateplanid": {"name": "rateplanid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ratinggroup": {"name": "ratinggroup", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recognizedrevenueaccountingcodeid": {"name": "recognizedrevenueaccountingcodeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revreccode": {"name": "revreccode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revrectriggercondition": {"name": "revrectriggercondition", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "revenuerecognitionrulename": {"name": "revenuerecognitionrulename", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "soldtocontactid": {"name": "soldtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tcv": {"name": "tcv", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "triggerevent": {"name": "triggerevent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uom": {"name": "uom", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uptoperiodstype": {"name": "uptoperiodstype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "weeklybillcycleday": {"name": "weeklybillcycleday", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "excludeitembillingfromrevenueaccounting": {"name": "excludeitembillingfromrevenueaccounting", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "excludeitembookingfromrevenueaccounting": {"name": "excludeitembookingfromrevenueaccounting", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "freedayschargeflag__c": {"name": "freedayschargeflag__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isprepaid": {"name": "isprepaid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "optoutduration__c": {"name": "optoutduration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prepaidoperationtype": {"name": "prepaidoperationtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prepaiduom": {"name": "prepaiduom", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "validityperiodtype": {"name": "validityperiodtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendedbyorderon": {"name": "amendedbyorderon", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bundlename__c": {"name": "bundlename__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bundlesku__c": {"name": "bundlesku__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bundleyn__c": {"name": "bundleyn__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bundleyesno__c": {"name": "bundleyesno__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "originalorderdate": {"name": "originalorderdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.rateplancharge", "created_at": 1700082693.6731257}, "source.yoda.analytics__zuora.rateplanchargetier": {"database": null, "schema": "zuora", "name": "rateplanchargetier", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.rateplanchargetier", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "rateplanchargetier"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "rateplanchargetier", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amendmentid": {"name": "amendmentid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "discountpercentage": {"name": "discountpercentage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includedunits": {"name": "includedunits", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overageprice": {"name": "overageprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "priceformat": {"name": "priceformat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price": {"name": "price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "productid": {"name": "productid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanchargeid": {"name": "productrateplanchargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanid": {"name": "productrateplanid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplanchargeid": {"name": "rateplanchargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplanid": {"name": "rateplanid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tier": {"name": "tier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.rateplanchargetier", "created_at": 1700082693.6735125}, "source.yoda.analytics__zuora.productrateplancharge": {"database": null, "schema": "zuora", "name": "productrateplancharge", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.productrateplancharge", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "productrateplancharge"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "productrateplancharge", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.productrateplancharge", "created_at": 1700082693.6736963}, "source.yoda.analytics__zuora.invoiceitem": {"database": null, "schema": "zuora", "name": "invoiceitem", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.invoiceitem", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "invoiceitem"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "invoiceitem", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountreceivableaccountingcodeid": {"name": "accountreceivableaccountingcodeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountingcode": {"name": "accountingcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountingperiodid": {"name": "accountingperiodid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amendmentid": {"name": "amendmentid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appliedtoinvoiceitemid": {"name": "appliedtoinvoiceitemid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "balance": {"name": "balance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "billtocontactid": {"name": "billtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billtocontactsnapshotid": {"name": "billtocontactsnapshotid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeamount": {"name": "chargeamount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "chargedate": {"name": "chargedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargename": {"name": "chargename", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultpaymentmethodid": {"name": "defaultpaymentmethodid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deferredrevenueaccountingcodeid": {"name": "deferredrevenueaccountingcodeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationid__ns": {"name": "integrationid__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrationstatus__ns": {"name": "integrationstatus__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoiceid": {"name": "invoiceid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "journalentryid": {"name": "journalentryid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "journalrunid": {"name": "journalrunid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentaccountid": {"name": "parentaccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processingtype": {"name": "processingtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productid": {"name": "productid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanchargeid": {"name": "productrateplanchargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productrateplanid": {"name": "productrateplanid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rateplanchargeid": {"name": "rateplanchargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rateplanid": {"name": "rateplanid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recognizedrevenueaccountingcodeid": {"name": "recognizedrevenueaccountingcodeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "serviceenddate": {"name": "serviceenddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "servicestartdate": {"name": "servicestartdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactid": {"name": "soldtocontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "soldtocontactsnapshotid": {"name": "soldtocontactsnapshotid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionid": {"name": "subscriptionid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syncdate__ns": {"name": "syncdate__ns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxamount": {"name": "taxamount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxcode": {"name": "taxcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxexemptamount": {"name": "taxexemptamount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxmode": {"name": "taxmode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uom": {"name": "uom", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unitprice": {"name": "unitprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.invoiceitem", "created_at": 1700082693.6740117}, "source.yoda.analytics__zuora.contact": {"database": null, "schema": "zuora", "name": "contact", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/finance/source/analytics___finance__src.yml", "original_file_path": "models/analytics/finance/source/analytics___finance__src.yml", "unique_id": "source.yoda.analytics__zuora.contact", "fqn": ["yoda", "analytics", "finance", "source", "analytics__zuora", "contact"], "source_name": "analytics__zuora", "source_description": "", "loader": "", "identifier": "contact", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address1": {"name": "address1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address2": {"name": "address2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "city": {"name": "city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "county": {"name": "county", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fax": {"name": "fax", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "firstname": {"name": "firstname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "homephone": {"name": "homephone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastname": {"name": "lastname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mobilephone": {"name": "mobilephone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nickname": {"name": "nickname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "otherphonetype": {"name": "otherphonetype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "otherphone": {"name": "otherphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "personalemail": {"name": "personalemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "postalcode": {"name": "postalcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "taxregion": {"name": "taxregion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedbyid": {"name": "updatedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updateddate": {"name": "updateddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "workemail": {"name": "workemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "workphone": {"name": "workphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "zuora.contact", "created_at": 1700082693.6743357}, "source.yoda.analytics__bi_rivery.stg_nerd_acv_goals": {"database": null, "schema": "bi_rivery", "name": "stg_nerd_acv_goals", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/gtm/source/analytics___gtm__src.yml", "original_file_path": "models/analytics/gtm/source/analytics___gtm__src.yml", "unique_id": "source.yoda.analytics__bi_rivery.stg_nerd_acv_goals", "fqn": ["yoda", "analytics", "gtm", "source", "analytics__bi_rivery", "stg_nerd_acv_goals"], "source_name": "analytics__bi_rivery", "source_description": "", "loader": "", "identifier": "stg_nerd_acv_goals", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "revenue_stream": {"name": "revenue_stream", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_channel": {"name": "demand_gen_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_goal": {"name": "monthly_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_goal": {"name": "forecast_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["rivery", "analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["rivery", "analytics"]}, "relation_name": "bi_rivery.stg_nerd_acv_goals", "created_at": 1700082693.6745615}, "source.yoda.analytics__bi_rivery.stg_nerd_sal_goals": {"database": null, "schema": "bi_rivery", "name": "stg_nerd_sal_goals", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/gtm/source/analytics___gtm__src.yml", "original_file_path": "models/analytics/gtm/source/analytics___gtm__src.yml", "unique_id": "source.yoda.analytics__bi_rivery.stg_nerd_sal_goals", "fqn": ["yoda", "analytics", "gtm", "source", "analytics__bi_rivery", "stg_nerd_sal_goals"], "source_name": "analytics__bi_rivery", "source_description": "", "loader": "", "identifier": "stg_nerd_sal_goals", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "revenue_stream": {"name": "revenue_stream", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment": {"name": "segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region": {"name": "region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_channel": {"name": "demand_gen_channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type": {"name": "deal_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_goal": {"name": "monthly_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "forecast_goal": {"name": "forecast_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["rivery", "analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["rivery", "analytics"]}, "relation_name": "bi_rivery.stg_nerd_sal_goals", "created_at": 1700082693.674772}, "source.yoda.analytics__static.calendar_with_closing_day": {"database": null, "schema": "static", "name": "calendar_with_closing_day", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/gtm/source/analytics___gtm__src.yml", "original_file_path": "models/analytics/gtm/source/analytics___gtm__src.yml", "unique_id": "source.yoda.analytics__static.calendar_with_closing_day", "fqn": ["yoda", "analytics", "gtm", "source", "analytics__static", "calendar_with_closing_day"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "calendar_with_closing_day", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"day": {"name": "day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "year": {"name": "year", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "working_day_no": {"name": "working_day_no", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "closing_date": {"name": "closing_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.calendar_with_closing_day", "created_at": 1700082693.6749778}, "source.yoda.analytics__bi_rivery.partner_manager_goals": {"database": null, "schema": "bi_rivery", "name": "partner_manager_goals", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/partners/source/analytics___partners__src.yml", "original_file_path": "models/analytics/partners/source/analytics___partners__src.yml", "unique_id": "source.yoda.analytics__bi_rivery.partner_manager_goals", "fqn": ["yoda", "analytics", "partners", "source", "analytics__bi_rivery", "partner_manager_goals"], "source_name": "analytics__bi_rivery", "source_description": "", "loader": "", "identifier": "partner_manager_goals", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"quarter": {"name": "quarter", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "original_referrer_owner_id": {"name": "original_referrer_owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "booking_goal": {"name": "booking_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sal_goal": {"name": "sal_goal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "partner_manager": {"name": "partner_manager", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager": {"name": "manager", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "second_level_manager": {"name": "second_level_manager", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "river_run_time": {"name": "river_run_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "bi_rivery.partner_manager_goals", "created_at": 1700082693.6752517}, "source.yoda.analytics__static.saas_organization_daily_history": {"database": null, "schema": "static", "name": "saas_organization_daily_history", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/platform/source/analytics___platform__src.yml", "original_file_path": "models/analytics/platform/source/analytics___platform__src.yml", "unique_id": "source.yoda.analytics__static.saas_organization_daily_history", "fqn": ["yoda", "analytics", "platform", "source", "analytics__static", "saas_organization_daily_history"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "saas_organization_daily_history", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_annual": {"name": "is_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ss": {"name": "is_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.saas_organization_daily_history", "created_at": 1700082693.6755548}, "source.yoda.analytics__static.product_plan_name_rank": {"database": null, "schema": "static", "name": "product_plan_name_rank", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/platform/source/analytics___platform__src.yml", "original_file_path": "models/analytics/platform/source/analytics___platform__src.yml", "unique_id": "source.yoda.analytics__static.product_plan_name_rank", "fqn": ["yoda", "analytics", "platform", "source", "analytics__static", "product_plan_name_rank"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "product_plan_name_rank", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_group": {"name": "plan_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_plan_rank": {"name": "product_plan_rank", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.product_plan_name_rank", "created_at": 1700082693.6757617}, "source.yoda.analytics__static.shopify_billing_charge_plan_mapping": {"database": null, "schema": "static", "name": "shopify_billing_charge_plan_mapping", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/platform/source/analytics___platform__src.yml", "original_file_path": "models/analytics/platform/source/analytics___platform__src.yml", "unique_id": "source.yoda.analytics__static.shopify_billing_charge_plan_mapping", "fqn": ["yoda", "analytics", "platform", "source", "analytics__static", "shopify_billing_charge_plan_mapping"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "shopify_billing_charge_plan_mapping", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "charge_name": {"name": "charge_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_self_service": {"name": "is_self_service", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_email": {"name": "is_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.shopify_billing_charge_plan_mapping", "created_at": 1700082693.6759918}, "source.yoda.analytics__static.chargify_organization_product_usage_revanue_daily": {"database": null, "schema": "static", "name": "chargify_organization_product_usage_revanue_daily", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/platform/source/analytics___platform__src.yml", "original_file_path": "models/analytics/platform/source/analytics___platform__src.yml", "unique_id": "source.yoda.analytics__static.chargify_organization_product_usage_revanue_daily", "fqn": ["yoda", "analytics", "platform", "source", "analytics__static", "chargify_organization_product_usage_revanue_daily"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "chargify_organization_product_usage_revanue_daily", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"revenue_month": {"name": "revenue_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family": {"name": "product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usage_revenue_in_usd": {"name": "usage_revenue_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "shopify_billing_usage_revenue_in_usd": {"name": "shopify_billing_usage_revenue_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_usage_revenue_in_usd": {"name": "zuora_usage_revenue_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "chargify_usage_revenue_in_usd": {"name": "chargify_usage_revenue_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communication_usage_revenue_in_usd": {"name": "communication_usage_revenue_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communication_usage_in_usd": {"name": "communication_usage_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "communication_free_credit_in_usd": {"name": "communication_free_credit_in_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "additional_orders_cnt": {"name": "additional_orders_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_self_service": {"name": "is_self_service", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_full_service": {"name": "is_full_service", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.chargify_organization_product_usage_revanue_daily", "created_at": 1700082693.676272}, "source.yoda.analytics__static.organization_onboarding_call_pre_2023_08_27": {"database": null, "schema": "static", "name": "organization_onboarding_call_pre_2023_08_27", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/platform/source/analytics___platform__src.yml", "original_file_path": "models/analytics/platform/source/analytics___platform__src.yml", "unique_id": "source.yoda.analytics__static.organization_onboarding_call_pre_2023_08_27", "fqn": ["yoda", "analytics", "platform", "source", "analytics__static", "organization_onboarding_call_pre_2023_08_27"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "organization_onboarding_call_pre_2023_08_27", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_family_group": {"name": "product_family_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_call_date": {"name": "onboarding_call_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.organization_onboarding_call_pre_2023_08_27", "created_at": 1700082693.676478}, "source.yoda.analytics__salesforce.deal_summary_new__c_full": {"database": null, "schema": "salesforce", "name": "deal_summary_new__c_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.deal_summary_new__c_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "deal_summary_new__c_full"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "deal_summary_new__c_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"CreatedById": {"name": "CreatedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_ACV_USD_Calculated__c": {"name": "Current_ACV_USD_Calculated__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Current_ACV_USD__c": {"name": "Current_ACV_USD__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Current_Acv_For_Retention__c": {"name": "Current_Acv_For_Retention__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Current_Acv_For_Retention_original__c": {"name": "Current_Acv_For_Retention_original__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Current_Acv_Original_Currency__c": {"name": "Current_Acv_Original_Currency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Current_Acv__c": {"name": "Current_Acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Deal_type__c": {"name": "Deal_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Id": {"name": "Id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsDeleted": {"name": "IsDeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "LastModifiedById": {"name": "LastModifiedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Line_Delta_ACV__c": {"name": "Line_Delta_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Line_Delta_ACV_for_Retention__c": {"name": "Line_Delta_ACV_for_Retention__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Opportunity_Product__c": {"name": "Opportunity_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity__c": {"name": "Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Package_Product__c": {"name": "Package_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Previous_ACV_From_Opportunity_Product__c": {"name": "Previous_ACV_From_Opportunity_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Previous_ACV_USD_Calculated__c": {"name": "Previous_ACV_USD_Calculated__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Previous_ACV_USD__c": {"name": "Previous_ACV_USD__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Previous_ACV__c": {"name": "Previous_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Previous_ACV_original_currency__c": {"name": "Previous_ACV_original_currency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Family__c": {"name": "Product_Family__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product__c": {"name": "Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Renewal_From_Opportunity_Line__c": {"name": "Renewal_From_Opportunity_Line__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Status__c": {"name": "Status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SystemModstamp": {"name": "SystemModstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.deal_summary_new__c_full", "created_at": 1700082693.676769}, "source.yoda.analytics__salesforce.account_full": {"database": null, "schema": "salesforce", "name": "account_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.account_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "account_full"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "account_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"ACV_Expectancy__c": {"name": "ACV_Expectancy__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ACV_USD__c": {"name": "ACV_USD__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ACV__c": {"name": "ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "AE_Forecast_Category__c": {"name": "AE_Forecast_Category__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "AM_Age__c": {"name": "AM_Age__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "APP_KEY_account__c": {"name": "APP_KEY_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "AR_Helper_Order_Exclusion__c": {"name": "AR_Helper_Order_Exclusion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "AccountId": {"name": "AccountId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Address_Valid__c": {"name": "Account_Address_Valid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Account_CSM_Super__c": {"name": "Account_CSM_Super__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Account_Manager_Assignment_Date__c": {"name": "Account_Manager_Assignment_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Master_Opp_Id__c": {"name": "Account_Master_Opp_Id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Name_Formula__c": {"name": "Account_Name_Formula__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Name__c": {"name": "Account_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Referrer__c": {"name": "Account_Referrer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_from_Opportunity__c": {"name": "Account_from_Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_in_Zuora__c": {"name": "Account_in_Zuora__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ActivityMetricId": {"name": "ActivityMetricId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ActivityMetricRollupId": {"name": "ActivityMetricRollupId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Actual_Contract_Duration__c": {"name": "Actual_Contract_Duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Actual_Duration_New__c": {"name": "Actual_Duration_New__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Actual_End_Date_New__c": {"name": "Actual_End_Date_New__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Actual_End_Date__c": {"name": "Actual_End_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Add_Auto_Renew_Clause__c": {"name": "Add_Auto_Renew_Clause__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Add_On_Product__c": {"name": "Add_On_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Add_to_Winback_Process__c": {"name": "Add_to_Winback_Process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Added_Extra_Seats__c": {"name": "Added_Extra_Seats__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Added_to_Lockdown_Process_Date__c": {"name": "Added_to_Lockdown_Process_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Additional_Context__c": {"name": "Additional_Context__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Address_validation_needed__c": {"name": "Address_validation_needed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Agency_Involvement_Throughout_Deployment__c": {"name": "Agency_Involvement_Throughout_Deployment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Align_with_Original_Contract_Renewal__c": {"name": "Align_with_Original_Contract_Renewal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Amount": {"name": "Amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Annual_Products__c": {"name": "Annual_Products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Annual_Reviews_for_Syndication__c": {"name": "Annual_Reviews_for_Syndication__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Ask_to_Renew__c": {"name": "Ask_to_Renew__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Attribution_Channel__c": {"name": "Attribution_Channel__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Auto_Closed_by_AR__c": {"name": "Auto_Closed_by_AR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Auto_Renewal_Contact_Name__c": {"name": "Auto_Renewal_Contact_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Auto_Renewal_Customer_Choice__c": {"name": "Auto_Renewal_Customer_Choice__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Auto_Renewal_Exclusion_Reason__c": {"name": "Auto_Renewal_Exclusion_Reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Auto_Renewal_Request_Type__c": {"name": "Auto_Renewal_Request_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bill_To__c": {"name": "Bill_To__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Billing_Contract_Duration_Days__c": {"name": "Billing_Contract_Duration_Days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Billing_Frequency__c": {"name": "Billing_Frequency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bundle_Total__c": {"name": "Bundle_Total__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "COVID_implications__c": {"name": "COVID_implications__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CSM_Free_Months_Value__c": {"name": "CSM_Free_Months_Value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "CSM_Owner_Role__c": {"name": "CSM_Owner_Role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CSM_Team_Leader__c": {"name": "CSM_Team_Leader__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CS_Comp_Paid__c": {"name": "CS_Comp_Paid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CTP_Code__c": {"name": "CTP_Code__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CampaignId": {"name": "CampaignId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Cancellation_Date__c": {"name": "Cancellation_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Cancelled_during_trial__c": {"name": "Cancelled_during_trial__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Change_Currency_Flag__c": {"name": "Change_Currency_Flag__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Client_s_Agency__c": {"name": "Client_s_Agency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CloseDate": {"name": "CloseDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Close_Date_Day_Less_Than_Today_Day__c": {"name": "Close_Date_Day_Less_Than_Today_Day__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Close_Date_Pushed__c": {"name": "Close_Date_Pushed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Close_Month__c": {"name": "Close_Month__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Combined_Opportunities_EARR__c": {"name": "Combined_Opportunities_EARR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Commercial_Contact_Email__c": {"name": "Commercial_Contact_Email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Commercial_Contact__c": {"name": "Commercial_Contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Company_Expansion__c": {"name": "Company_Expansion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Compelling_Event_del__c": {"name": "Compelling_Event_del__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Concession_Reason__c": {"name": "Concession_Reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Conga_CSM_Notes__c": {"name": "Conga_CSM_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Conga_Culture_Currency__c": {"name": "Conga_Culture_Currency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Conga_Payment_Terms_Days__c": {"name": "Conga_Payment_Terms_Days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Conga_RemindIn__c": {"name": "Conga_RemindIn__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Conga_Reminder__c": {"name": "Conga_Reminder__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Conga_Seats_Info__c": {"name": "Conga_Seats_Info__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ContactId": {"name": "ContactId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Contains_Dedicated_CSM__c": {"name": "Contains_Dedicated_CSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ContractId": {"name": "ContractId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Contract_Duration_Days__c": {"name": "Contract_Duration_Days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Contract_Duration_Months__c": {"name": "Contract_Duration_Months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Contract_Duration__c": {"name": "Contract_Duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Contract_Renewal_Date__c": {"name": "Contract_Renewal_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Contract_Renewal_Helpe_Number__c": {"name": "Contract_Renewal_Helpe_Number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Contract_Renewal_Helper_Number_Year__c": {"name": "Contract_Renewal_Helper_Number_Year__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Contract_Renewal_Helper_Record_Type__c": {"name": "Contract_Renewal_Helper_Record_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Contract_Renewal_Manual__c": {"name": "Contract_Renewal_Manual__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Conversion_Rate_Raw__c": {"name": "Conversion_Rate_Raw__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Conversion_Rate__c": {"name": "Conversion_Rate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Converted__c": {"name": "Converted__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Create_Date_Day_Less_Than_Today_Day__c": {"name": "Create_Date_Day_Less_Than_Today_Day__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Create_Potential_Opportunity__c": {"name": "Create_Potential_Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "CreatedById": {"name": "CreatedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Created_from_CS_Lead__c": {"name": "Created_from_CS_Lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Critical_Event__c": {"name": "Critical_Event__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_ACV_For_Retention_USD_Loyalty__c": {"name": "Current_ACV_For_Retention_USD_Loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Current_ACV_For_Retention_USD_SMS__c": {"name": "Current_ACV_For_Retention_USD_SMS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Current_ACV_For_Retention_USD_UGC__c": {"name": "Current_ACV_For_Retention_USD_UGC__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Current_ACV_For_Retention_USD_VMS__c": {"name": "Current_ACV_For_Retention_USD_VMS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Current_Contact_Role__c": {"name": "Current_Contact_Role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_Contract__c": {"name": "Current_Contract__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Current_Usage_Commitment_Term_End_Date__c": {"name": "Current_Usage_Commitment_Term_End_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_Usage_Commitment_Term_Start_Date__c": {"name": "Current_Usage_Commitment_Term_Start_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Customer_Refund_Required__c": {"name": "Customer_Refund_Required__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Date_Of_Converting_Nurturing_Email__c": {"name": "Date_Of_Converting_Nurturing_Email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Days_From_Last_Activity__c": {"name": "Days_From_Last_Activity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_In_Current_Stage__c": {"name": "Days_In_Current_Stage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_Until_Contract_Renewal__c": {"name": "Days_Until_Contract_Renewal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_in_Contract_Signed__c": {"name": "Days_in_Contract_Signed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_in_Contracting__c": {"name": "Days_in_Contracting__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_in_Demo__c": {"name": "Days_in_Demo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_in_Discovery__c": {"name": "Days_in_Discovery__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_in_Evaluation__c": {"name": "Days_in_Evaluation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_in_Propose__c": {"name": "Days_in_Propose__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_in_SAL__c": {"name": "Days_in_SAL__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_to_Start_Date__c": {"name": "Days_to_Start_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Deal_Type_Filter_GS__c": {"name": "Deal_Type_Filter_GS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Deal_Type__c": {"name": "Deal_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Deal_Type_as_per_Deal_Summary__c": {"name": "Deal_Type_as_per_Deal_Summary__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Dealhub_Additional_comments__c": {"name": "Dealhub_Additional_comments__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Dealhub_Custom_Terms__c": {"name": "Dealhub_Custom_Terms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Dealhub_Domain_List__c": {"name": "Dealhub_Domain_List__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Dealhub_End_Date__c": {"name": "Dealhub_End_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Dealhub_Main_Add_on_Discount__c": {"name": "Dealhub_Main_Add_on_Discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Dealhub_Main_Add_on_List_Price__c": {"name": "Dealhub_Main_Add_on_List_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Dealhub_Main_Add_on_Total_Price__c": {"name": "Dealhub_Main_Add_on_Total_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Dealhub_New_Address__c": {"name": "Dealhub_New_Address__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Dealhub_Quote_ID__c": {"name": "Dealhub_Quote_ID__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Dealhub_SalesAllowLegacy__c": {"name": "Dealhub_SalesAllowLegacy__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Dealhub_Signed_Date__c": {"name": "Dealhub_Signed_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Dealhub_Stage__c": {"name": "Dealhub_Stage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Dealhub_Total_Seats__c": {"name": "Dealhub_Total_Seats__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Dealhub_URL__c": {"name": "Dealhub_URL__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Decision_Maker_Job_Title__c": {"name": "Decision_Maker_Job_Title__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Decision__c": {"name": "Decision__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Delayed_Start_Date_Approved_Partners__c": {"name": "Delayed_Start_Date_Approved_Partners__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Delta_ACV_USD_Loyalty__c": {"name": "Delta_ACV_USD_Loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Delta_ACV_USD_SMS__c": {"name": "Delta_ACV_USD_SMS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Delta_ACV_USD_UGC__c": {"name": "Delta_ACV_USD_UGC__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Delta_ACV_USD_VMS__c": {"name": "Delta_ACV_USD_VMS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Delta_Booking__c": {"name": "Delta_Booking__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Delta_eARR__c": {"name": "Delta_eARR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Delta_eARR_Subscriptions__c": {"name": "Delta_eARR_Subscriptions__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Deprovisioning_Outcome__c": {"name": "Deprovisioning_Outcome__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Description": {"name": "Description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Discount__c": {"name": "Discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Do_not_update_territory__c": {"name": "Do_not_update_territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Don_t_Recalculate_eARR__c": {"name": "Don_t_Recalculate_eARR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Done_t_Send_Auto_Renewal_Notification__c": {"name": "Done_t_Send_Auto_Renewal_Notification__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Downgraded_Package__c": {"name": "Downgraded_Package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Downgraded_package_price__c": {"name": "Downgraded_package_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "EARR_USD__c": {"name": "EARR_USD__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Effective_Date_Free_months_SB__c": {"name": "Effective_Date_Free_months_SB__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Effective_Date_Free_months__c": {"name": "Effective_Date_Free_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Email_Intent__c": {"name": "Email_Intent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Email_Marketing_eARR__c": {"name": "Email_Marketing_eARR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Email_Service_Provider_ESP__c": {"name": "Email_Service_Provider_ESP__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "End_Date_Finance__c": {"name": "End_Date_Finance__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "End_Date__c": {"name": "End_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "End_Of_Contract_Extension_Days__c": {"name": "End_Of_Contract_Extension_Days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "End_Of_Contract_Extension_Month__c": {"name": "End_Of_Contract_Extension_Month__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "End_of_Opt_out_Period__c": {"name": "End_of_Opt_out_Period__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Entered_Closed__c": {"name": "Entered_Closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Entered_Contract_Signed__c": {"name": "Entered_Contract_Signed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Entered_Contracting__c": {"name": "Entered_Contracting__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Entered_Demo__c": {"name": "Entered_Demo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Entered_Discovery__c": {"name": "Entered_Discovery__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Entered_Evaluation__c": {"name": "Entered_Evaluation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Entered_Propose__c": {"name": "Entered_Propose__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Entered_Quote_Email_Sent__c": {"name": "Entered_Quote_Email_Sent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Entered_to_Auto_Renewal_Process_Date__c": {"name": "Entered_to_Auto_Renewal_Process_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Entered_to_Renewal_Assist_Process_Date__c": {"name": "Entered_to_Renewal_Assist_Process_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Enterprise_Lead__c": {"name": "Enterprise_Lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Estimated_AOV__c": {"name": "Estimated_AOV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Estimated_Review_Requests_Per_Month__c": {"name": "Estimated_Review_Requests_Per_Month__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Estimated_vs_Include_Review_Requests__c": {"name": "Estimated_vs_Include_Review_Requests__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Exclude_From_Feedback_Process__c": {"name": "Exclude_From_Feedback_Process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Exclude_from_Auto_Renewal_Process__c": {"name": "Exclude_from_Auto_Renewal_Process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Exclude_from_No_Touch_Process__c": {"name": "Exclude_from_No_Touch_Process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Exclude_from_Renewal_Reminder__c": {"name": "Exclude_from_Renewal_Reminder__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Excluded_from_COMP_on__c": {"name": "Excluded_from_COMP_on__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ExpectedRevenue": {"name": "ExpectedRevenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Expiration_Date__c": {"name": "Expiration_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Extra_Domain_Pricing__c": {"name": "Extra_Domain_Pricing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Fiscal": {"name": "Fiscal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "FiscalQuarter": {"name": "FiscalQuarter", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "FiscalYear": {"name": "FiscalYear", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "Follow_Up_In__c": {"name": "Follow_Up_In__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Follow_up_date_2__c": {"name": "Follow_up_date_2__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ForecastCategory": {"name": "ForecastCategory", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ForecastCategoryName": {"name": "ForecastCategoryName", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Free_Months_for_Contract_Alignment__c": {"name": "Free_Months_for_Contract_Alignment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Free_period_charge_flag__c": {"name": "Free_period_charge_flag__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Full_Duration_Of_Contract__c": {"name": "Full_Duration_Of_Contract__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Gong__CurrentGenerators__c": {"name": "Gong__CurrentGenerators__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Gong__DeliveryInstallationStatus__c": {"name": "Gong__DeliveryInstallationStatus__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Gong__Gong_Count__c": {"name": "Gong__Gong_Count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Gong__MainCompetitors__c": {"name": "Gong__MainCompetitors__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Gong__OrderNumber__c": {"name": "Gong__OrderNumber__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Gong__TrackingNumber__c": {"name": "Gong__TrackingNumber__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Good_Fit_for_the_Annual_Plan_Opp__c": {"name": "Good_Fit_for_the_Annual_Plan_Opp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "HasOpenActivity": {"name": "HasOpenActivity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "HasOpportunityLineItem": {"name": "HasOpportunityLineItem", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "HasOverdueTask": {"name": "HasOverdueTask", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Hidden_Lost_Reason_Values_Renewal_Opp__c": {"name": "Hidden_Lost_Reason_Values_Renewal_Opp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Hidden_Lost_Reason_Values__c": {"name": "Hidden_Lost_Reason_Values__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Id": {"name": "Id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Ignore_Legacy__c": {"name": "Ignore_Legacy__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Impact__c": {"name": "Impact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Import_Products_to_Dealhub__c": {"name": "Import_Products_to_Dealhub__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Include_Exclude_from_Auto_Renewal_Link__c": {"name": "Include_Exclude_from_Auto_Renewal_Link__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Include_Exclude_from_No_Touch_Link__c": {"name": "Include_Exclude_from_No_Touch_Link__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Include_In_No_Touch_Process__c": {"name": "Include_In_No_Touch_Process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Include_MR__c": {"name": "Include_MR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Include_in_Auto_Renewal_Process__c": {"name": "Include_in_Auto_Renewal_Process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Included_Seats__c": {"name": "Included_Seats__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Includes_SMS_Product__c": {"name": "Includes_SMS_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Includes_Self_Service_Product__c": {"name": "Includes_Self_Service_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Includes_Syndication__c": {"name": "Includes_Syndication__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Inherited_Lead_Source__c": {"name": "Inherited_Lead_Source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Initial_Account_Product_Process__c": {"name": "Initial_Account_Product_Process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Initial_Relevant_CSM_Update__c": {"name": "Initial_Relevant_CSM_Update__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Initiate_Contract_Renewal_Datafix__c": {"name": "Initiate_Contract_Renewal_Datafix__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Initiate_Credit_Notification__c": {"name": "Initiate_Credit_Notification__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Initiate_Renewal_Opportunity_Creation__c": {"name": "Initiate_Renewal_Opportunity_Creation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Initiate_Rev_Share_Process_Temp__c": {"name": "Initiate_Rev_Share_Process_Temp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Initiate_TCV_Flow__c": {"name": "Initiate_TCV_Flow__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Initiate_deal_Type_Calculation__c": {"name": "Initiate_deal_Type_Calculation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Insights_Product_Name__c": {"name": "Insights_Product_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Intiate_GBP_Conversion_Rate_Fix__c": {"name": "Intiate_GBP_Conversion_Rate_Fix__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Invoices_In_Dunning__c": {"name": "Invoices_In_Dunning__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "IsClosed": {"name": "IsClosed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "IsDeleted": {"name": "IsDeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "IsPrivate": {"name": "IsPrivate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "IsWon": {"name": "IsWon", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Is_Active_Subscription__c": {"name": "Is_Active_Subscription__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Is_Bundle__c": {"name": "Is_Bundle__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Is_this_a_downgrade_to_a_monthly_plan__c": {"name": "Is_this_a_downgrade_to_a_monthly_plan__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Key_Agency_Stakeholder_Contact__c": {"name": "Key_Agency_Stakeholder_Contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LAW_Reason__c": {"name": "LAW_Reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "L_R_Orders_Included_Yearly__c": {"name": "L_R_Orders_Included_Yearly__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "LastActivityDate": {"name": "LastActivityDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastAmountChangedHistoryId": {"name": "LastAmountChangedHistoryId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastCloseDateChangedHistoryId": {"name": "LastCloseDateChangedHistoryId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedById": {"name": "LastModifiedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastReferencedDate": {"name": "LastReferencedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastStageChangeDate": {"name": "LastStageChangeDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastViewedDate": {"name": "LastViewedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Last_Activity_Date__c": {"name": "Last_Activity_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Last_Invoice_End_Date__c": {"name": "Last_Invoice_End_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Last_Invoice_Fully_Paid__c": {"name": "Last_Invoice_Fully_Paid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "LeadSource": {"name": "LeadSource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Lead_ID__c": {"name": "Lead_ID__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Lead_Source_Desscription__c": {"name": "Lead_Source_Desscription__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Legal_Entity__c": {"name": "Legal_Entity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Locked_Account__c": {"name": "Locked_Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Loss_Reason_LR__c": {"name": "Loss_Reason_LR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loss_Reason_Reviews__c": {"name": "Loss_Reason_Reviews__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loss_Reason_SMS__c": {"name": "Loss_Reason_SMS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loss_Reason_Subscription__c": {"name": "Loss_Reason_Subscription__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loss_Reason_VMS__c": {"name": "Loss_Reason_VMS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loss_to_Syndication__c": {"name": "Loss_to_Syndication__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Lost_Details_Update_Date__c": {"name": "Lost_Details_Update_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Lost_Main_Products__c": {"name": "Lost_Main_Products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Lost_Opps_Products_Considered__c": {"name": "Lost_Opps_Products_Considered__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Lost_Sub_Reason__c": {"name": "Lost_Sub_Reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Lost_updated_through_Flow__c": {"name": "Lost_updated_through_Flow__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Loyalty_And_Referrals_Competitors__c": {"name": "Loyalty_And_Referrals_Competitors__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_CSM_Team_Upon_Closed__c": {"name": "Loyalty_CSM_Team_Upon_Closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_CSM_Upon_Closed_Won__c": {"name": "Loyalty_CSM_Upon_Closed_Won__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "MCV__c": {"name": "MCV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "MM_Renewal_Notification__c": {"name": "MM_Renewal_Notification__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "MRR__c": {"name": "MRR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "MSA_Type__c": {"name": "MSA_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Main_CSM__c": {"name": "Main_CSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Main_Package_Discount__c": {"name": "Main_Package_Discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Main_Package_Prodcut__c": {"name": "Main_Package_Prodcut__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Main_Product_Families__c": {"name": "Main_Product_Families__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Manual_Team_Attribution__c": {"name": "Manual_Team_Attribution__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Mark_as_Master__c": {"name": "Mark_as_Master__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Memo__c": {"name": "Memo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Merge_to_Opportunity__c": {"name": "Merge_to_Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Merged_Contract__c": {"name": "Merged_Contract__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Mid_Market_Pricing_Tier__c": {"name": "Mid_Market_Pricing_Tier__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Migration_From_Monthly__c": {"name": "Migration_From_Monthly__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Monthly_Budget__c": {"name": "Monthly_Budget__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Most_Recent_Assignment_Bucket__c": {"name": "Most_Recent_Assignment_Bucket__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Most_Recent_Assignment_Date__c": {"name": "Most_Recent_Assignment_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Most_Recent_Assignment_Reason__c": {"name": "Most_Recent_Assignment_Reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Most_Recent_Assignment_Sub_Reason__c": {"name": "Most_Recent_Assignment_Sub_Reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Must_Win__c": {"name": "Must_Win__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "My_Opp_SDR__c": {"name": "My_Opp_SDR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "New_ACV_Swell__c": {"name": "New_ACV_Swell__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "New_ACV_USD__c": {"name": "New_ACV_USD__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "New_ACV_Yotpo__c": {"name": "New_ACV_Yotpo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "New_ACV__c": {"name": "New_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "NextStep": {"name": "NextStep", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Next_Contact_Date__c": {"name": "Next_Contact_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Next_Contact_Type__c": {"name": "Next_Contact_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Next_Rounded_Months_From_Start_Date__c": {"name": "Next_Rounded_Months_From_Start_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "No_Dedicated_CSM__c": {"name": "No_Dedicated_CSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "No_Touch_Exclusion_Reason__c": {"name": "No_Touch_Exclusion_Reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "No_Touch_Notification_Date__c": {"name": "No_Touch_Notification_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Num_of_Extra_Domain_Products__c": {"name": "Num_of_Extra_Domain_Products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_of_Add_Ons__c": {"name": "Number_of_Add_Ons__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_of_Extra_Domains__c": {"name": "Number_of_Extra_Domains__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_of_Insights_Products__c": {"name": "Number_of_Insights_Products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_of_Main_Products__c": {"name": "Number_of_Main_Products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_of_Professional_Services__c": {"name": "Number_of_Professional_Services__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_of_Trial_Products__c": {"name": "Number_of_Trial_Products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_of_Whitelabel_Products__c": {"name": "Number_of_Whitelabel_Products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Omnichannel_Deal__c": {"name": "Omnichannel_Deal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Opp_ID_18_Digit__c": {"name": "Opp_ID_18_Digit__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opp_Products_Contain_Discount__c": {"name": "Opp_Products_Contain_Discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Opportunity_Age__c": {"name": "Opportunity_Age__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Opportunity_Alert__c": {"name": "Opportunity_Alert__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Assignment__c": {"name": "Opportunity_Assignment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Count__c": {"name": "Opportunity_Count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Opportunity_Insights_Total_Amount__c": {"name": "Opportunity_Insights_Total_Amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Opportunity_Loyalty_Total_Amount__c": {"name": "Opportunity_Loyalty_Total_Amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Opportunity_Reviews_Total_Amount__c": {"name": "Opportunity_Reviews_Total_Amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Opportunity_SMS_Total_Amount__c": {"name": "Opportunity_SMS_Total_Amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Opportunity_VMS_Total_Amount__c": {"name": "Opportunity_VMS_Total_Amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Opt_out_Clause__c": {"name": "Opt_out_Clause__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Optout_Duration__c": {"name": "Optout_Duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Order_Comments__c": {"name": "Order_Comments__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Order_Internal_Comments__c": {"name": "Order_Internal_Comments__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Orders_Included_L_R__c": {"name": "Orders_Included_L_R__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Orders_Included__c": {"name": "Orders_Included__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Original_Curation_Provider__c": {"name": "Original_Curation_Provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_IAP_Tier__c": {"name": "Original_IAP_Tier__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_Loyalty_Referral_Provider_M__c": {"name": "Original_Loyalty_Referral_Provider_M__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_Owner_Role__c": {"name": "Original_Owner_Role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_Referrer_Owner__c": {"name": "Original_Referrer_Owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_Referrer__c": {"name": "Original_Referrer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_Referrer_text__c": {"name": "Original_Referrer_text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_Review_Provider__c": {"name": "Original_Review_Provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_SDR_Role__c": {"name": "Original_SDR_Role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Other__c": {"name": "Other__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Overlay_AE__c": {"name": "Overlay_AE__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "OwnerId": {"name": "OwnerId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Owner_Manager_Email__c": {"name": "Owner_Manager_Email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Owner_Role_Custom__c": {"name": "Owner_Role_Custom__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Owns_By_Group__c": {"name": "Owns_By_Group__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "POS_Provider__c": {"name": "POS_Provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "PS_Cost__c": {"name": "PS_Cost__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "PS_Products_Flag__c": {"name": "PS_Products_Flag__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Package_Category__c": {"name": "Package_Category__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Package__c": {"name": "Package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Pain__c": {"name": "Pain__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Parent_Account_Billing__c": {"name": "Parent_Account_Billing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Parent_Account__c": {"name": "Parent_Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "PartnerAccountId": {"name": "PartnerAccountId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Commission_Percentage__c": {"name": "Partner_Commission_Percentage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Involvement_in_Onboarding__c": {"name": "Partner_Involvement_in_Onboarding__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Referral_Referrer_Type__c": {"name": "Partner_Referral_Referrer_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Referral__c": {"name": "Partner_Referral__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Upsell__c": {"name": "Partner_Upsell__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Partner_referral_text__c": {"name": "Partner_referral_text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Per_Installment__c": {"name": "Per_Installment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Platform__c": {"name": "Platform__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Pre_Lost_Status__c": {"name": "Pre_Lost_Status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Prevent_Sync__c": {"name": "Prevent_Sync__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Prevent_downgrading__c": {"name": "Prevent_downgrading__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Previous_ACV_USD_Loyalty__c": {"name": "Previous_ACV_USD_Loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Previous_ACV_USD_SMS__c": {"name": "Previous_ACV_USD_SMS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Previous_ACV_USD_UGC__c": {"name": "Previous_ACV_USD_UGC__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Previous_ACV_USD_VMS__c": {"name": "Previous_ACV_USD_VMS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Previous_Opp_Package__c": {"name": "Previous_Opp_Package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Previous_Opp_Total_Discount__c": {"name": "Previous_Opp_Total_Discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Price_Per_Installment_USD__c": {"name": "Price_Per_Installment_USD__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Price_per_Installment__c": {"name": "Price_per_Installment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Pricebook2Id": {"name": "Pricebook2Id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Primary_CSM_Team_Upon_Closed__c": {"name": "Primary_CSM_Team_Upon_Closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Primary_CSM_Upon_Closed__c": {"name": "Primary_CSM_Upon_Closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Probability": {"name": "Probability", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Interest__c": {"name": "Product_Interest__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Purchase_Order_Expiration_Date__c": {"name": "Purchase_Order_Expiration_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Purchase_Order_Number__c": {"name": "Purchase_Order_Number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Purchased_as_MR__c": {"name": "Purchased_as_MR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Push_as_New_Sale__c": {"name": "Push_as_New_Sale__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Recalculate_Deal_Type__c": {"name": "Recalculate_Deal_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Recent_Source__c": {"name": "Recent_Source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "RecordTypeId": {"name": "RecordTypeId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Record_Type_Name__c": {"name": "Record_Type_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Date__c": {"name": "Referral_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Type__c": {"name": "Referral_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referrer_Owner__c": {"name": "Referrer_Owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_App_keys_for_SMS__c": {"name": "Relevant_App_keys_for_SMS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_CSM_Id_Helper__c": {"name": "Relevant_CSM_Id_Helper__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_CSM_for_CS_Outreach_First_Name__c": {"name": "Relevant_CSM_for_CS_Outreach_First_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_CSM_for_CS_Outreach__c": {"name": "Relevant_CSM_for_CS_Outreach__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Remove_Auto_Renew_Clause__c": {"name": "Remove_Auto_Renew_Clause__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Remove_from_AL_Process__c": {"name": "Remove_from_AL_Process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Remove_from_NT_Process__c": {"name": "Remove_from_NT_Process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Remove_from_No_Touch__c": {"name": "Remove_from_No_Touch__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Renewal_Opportunity_Package__c": {"name": "Renewal_Opportunity_Package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Renewal_Opportunity__c": {"name": "Renewal_Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Renewal_To_Opp_Won_Sale__c": {"name": "Renewal_To_Opp_Won_Sale__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Requested_Feature__c": {"name": "Requested_Feature__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Retention_CSM_Free_Days__c": {"name": "Retention_CSM_Free_Days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Retention_CSM_Free_Months_Reason__c": {"name": "Retention_CSM_Free_Months_Reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Retention_CSM_Free_Months__c": {"name": "Retention_CSM_Free_Months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Retention_Goal_by_viewer__c": {"name": "Retention_Goal_by_viewer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Rev_Share_Rate__c": {"name": "Rev_Share_Rate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Annual_Included_Orders__c": {"name": "Reviews_Annual_Included_Orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_CSM_Team_Upon_Closed__c": {"name": "Reviews_CSM_Team_Upon_Closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_CSM_Upon_Closed__c": {"name": "Reviews_CSM_Upon_Closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Competitor_Price__c": {"name": "Reviews_Competitor_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Competitor__c": {"name": "Reviews_Competitor__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Run_PB2__c": {"name": "Run_PB2__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Run_PB__c": {"name": "Run_PB__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SAAS_Amount__c": {"name": "SAAS_Amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SAAS_CSMS_teams_upon_closed__c": {"name": "SAAS_CSMS_teams_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SAAS_CSMS_upon_closed__c": {"name": "SAAS_CSMS_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SAAS_Extra_Domain_w_Disc__c": {"name": "SAAS_Extra_Domain_w_Disc__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SAAS_WL_Amount__c": {"name": "SAAS_WL_Amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SAL_MTD__c": {"name": "SAL_MTD__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SAL__c": {"name": "SAL__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SCSM_Deal__c": {"name": "SCSM_Deal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SDR_ID__c": {"name": "SDR_ID__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SDR_Lookup__c": {"name": "SDR_Lookup__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SDR_Role__c": {"name": "SDR_Role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SDR_Role_old__c": {"name": "SDR_Role_old__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SDR__c": {"name": "SDR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SLA_Status__c": {"name": "SLA_Status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_ACV__c": {"name": "SMS_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SMS_CSM_Team_Upon_Closed__c": {"name": "SMS_CSM_Team_Upon_Closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_CSM_Upon_Closed__c": {"name": "SMS_CSM_Upon_Closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_Commitment_Term__c": {"name": "SMS_Commitment_Term__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_Commitment_Value__c": {"name": "SMS_Commitment_Value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SMS_Second_Commitment_Value__c": {"name": "SMS_Second_Commitment_Value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SMS_Usage_Cancellation_Date__c": {"name": "SMS_Usage_Cancellation_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SQL_Assignment__c": {"name": "SQL_Assignment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SQL_MTD__c": {"name": "SQL_MTD__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SalesLoft1__Most_Recent_Cadence_Name__c": {"name": "SalesLoft1__Most_Recent_Cadence_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SalesLoft1__Most_Recent_Last_Completed_Step__c": {"name": "SalesLoft1__Most_Recent_Last_Completed_Step__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SalesLoft1__Primary_Contact__c": {"name": "SalesLoft1__Primary_Contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Sales_Accepted_Date__c": {"name": "Sales_Accepted_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Sales_Demo_Feedback__c": {"name": "Sales_Demo_Feedback__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Sales_Enginieer__c": {"name": "Sales_Enginieer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Sales_Estimated_Monthly_Orders__c": {"name": "Sales_Estimated_Monthly_Orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Sales_Estimated_Subscribers__c": {"name": "Sales_Estimated_Subscribers__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Sales_Free_Months_Value__c": {"name": "Sales_Free_Months_Value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Sales_Region__c": {"name": "Sales_Region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Sales_Segment__c": {"name": "Sales_Segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Sales_Segment_old__c": {"name": "Sales_Segment_old__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Secondary_Sales_Engineer__c": {"name": "Secondary_Sales_Engineer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Secondary_Seller_Role__c": {"name": "Secondary_Seller_Role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Secondary_Seller__c": {"name": "Secondary_Seller__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Segment_for_BI__c": {"name": "Segment_for_BI__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Selected_Product_ID_Conversion__c": {"name": "Selected_Product_ID_Conversion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Selected_Product_for_Lead_Conversion__c": {"name": "Selected_Product_for_Lead_Conversion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Show_Discount_Percentage__c": {"name": "Show_Discount_Percentage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Signed_with_Auto_Renewal_Clause__c": {"name": "Signed_with_Auto_Renewal_Clause__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Situation__c": {"name": "Situation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "StageName": {"name": "StageName", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Standalone_Insights__c": {"name": "Standalone_Insights__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Start_Date_Difference_Today__c": {"name": "Start_Date_Difference_Today__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Start_Date_Week_Day_Name__c": {"name": "Start_Date_Week_Day_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Start_Date__c": {"name": "Start_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Strategic_Investment__c": {"name": "Strategic_Investment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Submitted_Ads_LP_form__c": {"name": "Submitted_Ads_LP_form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Subscription_Customer_Type__c": {"name": "Subscription_Customer_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Subscription_EARR__c": {"name": "Subscription_EARR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Subscription_Number__c": {"name": "Subscription_Number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Sum_of_Sales_price__c": {"name": "Sum_of_Sales_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Swell_ACV__c": {"name": "Swell_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Swell_Orders__c": {"name": "Swell_Orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SyncedQuoteId": {"name": "SyncedQuoteId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Syndication_Domains__c": {"name": "Syndication_Domains__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SystemModstamp": {"name": "SystemModstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "TCV__c": {"name": "TCV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Talk_to_CSM__c": {"name": "Talk_to_CSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Technical_Contact_Email__c": {"name": "Technical_Contact_Email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Technical_Contact_First_Name__c": {"name": "Technical_Contact_First_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Technical_Contact_Last_Name__c": {"name": "Technical_Contact_Last_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Technical_Contact_Phone__c": {"name": "Technical_Contact_Phone__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Template_ID_TEST__c": {"name": "Template_ID_TEST__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Template_ID__c": {"name": "Template_ID__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Temporary_AR_process_Include__c": {"name": "Temporary_AR_process_Include__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Territory_New__c": {"name": "Territory_New__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Tertiary_Seller__c": {"name": "Tertiary_Seller__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Test_Account__c": {"name": "Test_Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Time_of_AM_Ownership__c": {"name": "Time_of_AM_Ownership__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Time_willing_to_commit_of_months__c": {"name": "Time_willing_to_commit_of_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Timestamp_Billing_Frequency__c": {"name": "Timestamp_Billing_Frequency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Timestamp_Retention_CSM_Free_Months__c": {"name": "Timestamp_Retention_CSM_Free_Months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Timestamp_Sales_Free_Months__c": {"name": "Timestamp_Sales_Free_Months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Today_s_Date__c": {"name": "Today_s_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "TotalOpportunityQuantity": {"name": "TotalOpportunityQuantity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Current_ACV__c": {"name": "Total_Current_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Discount_For_Matan_and_Adi__c": {"name": "Total_Discount_For_Matan_and_Adi__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Discount__c": {"name": "Total_Discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Domains_LR__c": {"name": "Total_Domains_LR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Domains_SMS__c": {"name": "Total_Domains_SMS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Domains_VMS__c": {"name": "Total_Domains_VMS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Domains__c": {"name": "Total_Domains__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Ds_Delta_ACV__c": {"name": "Total_Ds_Delta_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Paid_by_UPS__c": {"name": "Total_Paid_by_UPS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Total_Previous_ACV__c": {"name": "Total_Previous_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Rev_Share_Paid__c": {"name": "Total_Rev_Share_Paid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Seats__c": {"name": "Total_Seats__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Yotpo_ACV__c": {"name": "Total_Yotpo_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Type": {"name": "Type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "UPS_ACV__c": {"name": "UPS_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "UPS_Account__c": {"name": "UPS_Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "UPS_Deal__c": {"name": "UPS_Deal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "UPS_Subscription_Number__c": {"name": "UPS_Subscription_Number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "USER_is_CSM__c": {"name": "USER_is_CSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "USER_is_from_CSM_team__c": {"name": "USER_is_from_CSM_team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "UTM_Content__c": {"name": "UTM_Content__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "UTM_Term__c": {"name": "UTM_Term__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Upsell_Opportunity__c": {"name": "Upsell_Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Usage_Opportunity__c": {"name": "Usage_Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Usage_Team_Attribution__c": {"name": "Usage_Team_Attribution__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "VMS_ACV__c": {"name": "VMS_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "VMS_Competitor_Price__c": {"name": "VMS_Competitor_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "VMS_Competitor__c": {"name": "VMS_Competitor__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Value_Proposition__c": {"name": "Value_Proposition__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Viewed_Yotpo_Ads_LP__c": {"name": "Viewed_Yotpo_Ads_LP__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Visible_Name_for_Migration__c": {"name": "Visible_Name_for_Migration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Web_Traffic__c": {"name": "Web_Traffic__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Which_Renewal_Process__c": {"name": "Which_Renewal_Process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Why_Lost__c": {"name": "Why_Lost__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Why_bad_timing__c": {"name": "Why_bad_timing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Why_do_you_think_they_didn_t_respond__c": {"name": "Why_do_you_think_they_didn_t_respond__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Why_lost_Description__c": {"name": "Why_lost_Description__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Winback_Date__c": {"name": "Winback_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Winback_Notes__c": {"name": "Winback_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Winback_Opportunity__c": {"name": "Winback_Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Winback_Reason__c": {"name": "Winback_Reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Won_Opp__c": {"name": "Won_Opp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Wrong_Field_Do_Not_Touch__c": {"name": "Wrong_Field_Do_Not_Touch__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "X6sense_Attribution__c": {"name": "X6sense_Attribution__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Yotpo_ACV__c": {"name": "Yotpo_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_Bill_Cycle_Day__c": {"name": "Zuora_Bill_Cycle_Day__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_CSM_Free_Days_Delta__c": {"name": "Zuora_CSM_Free_Days_Delta__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_CSM_Free_Days_Scenario_Price__c": {"name": "Zuora_CSM_Free_Days_Scenario_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_CSM_Free_Month_Price_Customer__c": {"name": "Zuora_CSM_Free_Month_Price_Customer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_CSM_Free_Month_Price_UPS__c": {"name": "Zuora_CSM_Free_Month_Price_UPS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_CSM_Free_Months_Delta__c": {"name": "Zuora_CSM_Free_Months_Delta__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_Communication_Profile__c": {"name": "Zuora_Communication_Profile__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Contract_Duration__c": {"name": "Zuora_Contract_Duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_Duration_for_Billing_Period__c": {"name": "Zuora_Duration_for_Billing_Period__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_Free_Month_Scenario_Price__c": {"name": "Zuora_Free_Month_Scenario_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_Integration_Error__c": {"name": "Zuora_Integration_Error__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Last_Charge_Amount__c": {"name": "Zuora_Last_Charge_Amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_Last_Charge_Date__c": {"name": "Zuora_Last_Charge_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Payment_Method__c": {"name": "Zuora_Payment_Method__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Period_Change_Start_Date__c": {"name": "Zuora_Period_Change_Start_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Period_Type__c": {"name": "Zuora_Period_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Sales_Free_Days_Scenario_Price__c": {"name": "Zuora_Sales_Free_Days_Scenario_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_Sales_Free_Month_Delta__c": {"name": "Zuora_Sales_Free_Month_Delta__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_Sales_Free_Month_Price_Customer__c": {"name": "Zuora_Sales_Free_Month_Price_Customer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_Sales_Free_Month_Price_UPS__c": {"name": "Zuora_Sales_Free_Month_Price_UPS__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_Sales_Free_Month_Scenario_Price__c": {"name": "Zuora_Sales_Free_Month_Scenario_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Zuora_Sync_Account__c": {"name": "Zuora_Sync_Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Sync_Batch_Update__c": {"name": "Zuora_Sync_Batch_Update__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Sync_Error_Reason__c": {"name": "Zuora_Sync_Error_Reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Sync_Free_Months__c": {"name": "Zuora_Sync_Free_Months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Sync_Lost__c": {"name": "Zuora_Sync_Lost__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Zuora_Sync_Manually__c": {"name": "Zuora_Sync_Manually__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Zuora_Sync_Merge_Opportunity__c": {"name": "Zuora_Sync_Merge_Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Zuora_Sync_Opportunity__c": {"name": "Zuora_Sync_Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Sync_POC_Extension__c": {"name": "Zuora_Sync_POC_Extension__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Sync_Sales_Free_Months__c": {"name": "Zuora_Sync_Sales_Free_Months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Sync_UPS_CSM_Free_Months__c": {"name": "Zuora_Sync_UPS_CSM_Free_Months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Sync_UPS_Lost__c": {"name": "Zuora_Sync_UPS_Lost__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Zuora_Sync_UPS_Sales_Free_Months__c": {"name": "Zuora_Sync_UPS_Sales_Free_Months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_Tax_Region__c": {"name": "Zuora_Tax_Region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ambition__timestamp_for_unittest__c": {"name": "ambition__timestamp_for_unittest__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__MarketoAnalyzer__c": {"name": "mkto_si__MarketoAnalyzer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "of_Won_Child_Opps__c": {"name": "of_Won_Child_Opps__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sign_test_udi__c": {"name": "sign_test_udi__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id__c": {"name": "user_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_campaign__c": {"name": "utm_campaign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_medium__c": {"name": "utm_medium__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_source__c": {"name": "utm_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rn": {"name": "rn", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.account_full", "created_at": 1700082693.6790922}, "source.yoda.analytics__salesforce.opportunitylineitem_full": {"database": null, "schema": "salesforce", "name": "opportunitylineitem_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.opportunitylineitem_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "opportunitylineitem_full"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "opportunitylineitem_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"Add_On_Product__c": {"name": "Add_On_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Average_ACV__c": {"name": "Average_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Billing_Frequency__c": {"name": "Billing_Frequency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Billing_Frequency_in_number__c": {"name": "Billing_Frequency_in_number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Bundle_Description__c": {"name": "Bundle_Description__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedById": {"name": "CreatedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Customer_Portion_from_List_Price__c": {"name": "Customer_Portion_from_List_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Customer_Portion_from_Total_Price__c": {"name": "Customer_Portion_from_Total_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Dealhub_Main_Add_on_Product__c": {"name": "Dealhub_Main_Add_on_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Description": {"name": "Description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Discount": {"name": "Discount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Docusign_AnchorTag_Helper__c": {"name": "Docusign_AnchorTag_Helper__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Domain_Product__c": {"name": "Domain_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Estimated_Orders__c": {"name": "Estimated_Orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Id": {"name": "Id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Included_Orders__c": {"name": "Included_Orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Insight_Number_of_Order_Reviews__c": {"name": "Insight_Number_of_Order_Reviews__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Insights_Dashboard__c": {"name": "Insights_Dashboard__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Installment_Amount__c": {"name": "Installment_Amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "IsDeleted": {"name": "IsDeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Is_Add_On__c": {"name": "Is_Add_On__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Is_Bundle__c": {"name": "Is_Bundle__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "LastModifiedById": {"name": "LastModifiedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Legacy_Product__c": {"name": "Legacy_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ListPrice": {"name": "ListPrice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Moderation_Service__c": {"name": "Moderation_Service__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "No_CSM__c": {"name": "No_CSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Number_of_Hours__c": {"name": "Number_of_Hours__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_of_Included_Reviews__c": {"name": "Number_of_Included_Reviews__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_of_Seats__c": {"name": "Number_of_Seats__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "OpportunityId": {"name": "OpportunityId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Merge_To_Id__c": {"name": "Opportunity_Merge_To_Id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Product_ID__c": {"name": "Opportunity_Product_ID__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Overage_Charge__c": {"name": "Overage_Charge__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Package_Name__c": {"name": "Package_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Package_Product__c": {"name": "Package_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Parent_Bundle_SKU__c": {"name": "Parent_Bundle_SKU__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Parent_Bundle__c": {"name": "Parent_Bundle__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Pre_Overage_Price__c": {"name": "Pre_Overage_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "PricebookEntryId": {"name": "PricebookEntryId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product2Id": {"name": "Product2Id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ProductCode": {"name": "ProductCode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Category__c": {"name": "Product_Category__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Family__c": {"name": "Product_Family__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Included_Seats_Total__c": {"name": "Product_Included_Seats_Total__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Included_Seats__c": {"name": "Product_Included_Seats__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Line_MRR__c": {"name": "Product_Line_MRR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Name__c": {"name": "Product_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Proration_Today__c": {"name": "Product_Proration_Today__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Proration__c": {"name": "Product_Proration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Production_Rate_Paln_Id__c": {"name": "Production_Rate_Paln_Id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Production_Rate_Plan_Charge_Discount_Id__c": {"name": "Production_Rate_Plan_Charge_Discount_Id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Production_Rate_Plan_Charge_Recurring_Id__c": {"name": "Production_Rate_Plan_Charge_Recurring_Id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Professional_Service_Product__c": {"name": "Professional_Service_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Quantity": {"name": "Quantity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Rate_Paln_Id__c": {"name": "Rate_Paln_Id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Rate_Plan_Charge_Discount_Id__c": {"name": "Rate_Plan_Charge_Discount_Id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Rate_Plan_Charge_Recurring_Id__c": {"name": "Rate_Plan_Charge_Recurring_Id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Seat_License_Product__c": {"name": "Seat_License_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Self_Service__c": {"name": "Self_Service__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ServiceDate": {"name": "ServiceDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Start_Date__c": {"name": "Start_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SortOrder": {"name": "SortOrder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "Syndication_Product__c": {"name": "Syndication_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SystemModstamp": {"name": "SystemModstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "TotalPrice": {"name": "TotalPrice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Discount_Amount__c": {"name": "Total_Discount_Amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_List_Price__c": {"name": "Total_List_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Price_No_Discount__c": {"name": "Total_Price_No_Discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Price_USD__c": {"name": "Total_Price_USD__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Trial_Product__c": {"name": "Trial_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "UPS_Portion_from_List_Price__c": {"name": "UPS_Portion_from_List_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "UPS_Portion_from_Total_Price__c": {"name": "UPS_Portion_from_Total_Price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "UnitPrice": {"name": "UnitPrice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Unit_Price_For_Free_Months_Scenario__c": {"name": "Unit_Price_For_Free_Months_Scenario__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Whitelabel_Product__c": {"name": "Whitelabel_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Zuora_Charge_Model__c": {"name": "Zuora_Charge_Model__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Zuora_applyToDiscount_Type__c": {"name": "Zuora_applyToDiscount_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "test__c": {"name": "test__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rn": {"name": "rn", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.opportunitylineitem_full", "created_at": 1700082693.6797683}, "source.yoda.analytics__salesforce.livechattranscript_full": {"database": null, "schema": "salesforce", "name": "livechattranscript_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.livechattranscript_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "livechattranscript_full"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "livechattranscript_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"Abandoned": {"name": "Abandoned", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "AccountId": {"name": "AccountId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "App_Key__c": {"name": "App_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "AverageResponseTimeOperator": {"name": "AverageResponseTimeOperator", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "AverageResponseTimeVisitor": {"name": "AverageResponseTimeVisitor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "Body": {"name": "Body", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Browser": {"name": "Browser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "BrowserLanguage": {"name": "BrowserLanguage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Can_I_help_you_with_anything_else__c": {"name": "Can_I_help_you_with_anything_else__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CaseId": {"name": "CaseId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ChatDuration": {"name": "ChatDuration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ChatKey": {"name": "ChatKey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Chat_Button__c": {"name": "Chat_Button__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Choice_selected_Installing_Yotpo_UGC__c": {"name": "Choice_selected_Installing_Yotpo_UGC__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Choice_selected__c": {"name": "Choice_selected__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Concern_Addressed__c": {"name": "Concern_Addressed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Confused__c": {"name": "Confused__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ContactId": {"name": "ContactId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedById": {"name": "CreatedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Dialog__c": {"name": "Dialog__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "EndTime": {"name": "EndTime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "EndedBy": {"name": "EndedBy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Id": {"name": "Id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IpAddress": {"name": "IpAddress", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsChatbotSession": {"name": "IsChatbotSession", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "IsDeleted": {"name": "IsDeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "LastModifiedById": {"name": "LastModifiedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastReferencedDate": {"name": "LastReferencedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastViewedDate": {"name": "LastViewedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LeadId": {"name": "LeadId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LiveChatButtonId": {"name": "LiveChatButtonId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LiveChatDeploymentId": {"name": "LiveChatDeploymentId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LiveChatVisitorId": {"name": "LiveChatVisitorId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Location": {"name": "Location", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "MaxResponseTimeOperator": {"name": "MaxResponseTimeOperator", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "MaxResponseTimeVisitor": {"name": "MaxResponseTimeVisitor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "Merchant_ID__c": {"name": "Merchant_ID__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "OperatorMessageCount": {"name": "OperatorMessageCount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "OwnerId": {"name": "OwnerId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Platform": {"name": "Platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ReferrerUri": {"name": "ReferrerUri", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reply_to_Email__c": {"name": "Reply_to_Email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "RequestTime": {"name": "RequestTime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ScreenResolution": {"name": "ScreenResolution", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SkillId": {"name": "SkillId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "StartTime": {"name": "StartTime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Status": {"name": "Status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SupervisorTranscriptBody": {"name": "SupervisorTranscriptBody", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SystemModstamp": {"name": "SystemModstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Topic__c": {"name": "Topic__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "UserAgent": {"name": "UserAgent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "VisitorMessageCount": {"name": "VisitorMessageCount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "VisitorNetwork": {"name": "VisitorNetwork", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "WaitTime": {"name": "WaitTime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "Was_This_Result_Helpful_Text__c": {"name": "Was_This_Result_Helpful_Text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Was_this_resault_helpful__c": {"name": "Was_this_resault_helpful__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Welcome_Dialog__c": {"name": "Welcome_Dialog__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.livechattranscript_full", "created_at": 1700082693.680248}, "source.yoda.analytics__salesforce.opportunity_prediction__c_full": {"database": null, "schema": "salesforce", "name": "opportunity_prediction__c_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.opportunity_prediction__c_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "opportunity_prediction__c_full"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "opportunity_prediction__c_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"AM_contribution_Assumption__c": {"name": "AM_contribution_Assumption__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "CSM_Loyalty_Risk__c": {"name": "CSM_Loyalty_Risk__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "CSM_Reviews_Risk__c": {"name": "CSM_Reviews_Risk__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "CreatedById": {"name": "CreatedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Deal_Summary__c": {"name": "Deal_Summary__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Forecast_Prediction_Notes__c": {"name": "Forecast_Prediction_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Gross_account__c": {"name": "Gross_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Id": {"name": "Id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsDeleted": {"name": "IsDeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "LastModifiedById": {"name": "LastModifiedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastReferencedDate": {"name": "LastReferencedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastViewedDate": {"name": "LastViewedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Logo_retention_account__c": {"name": "Logo_retention_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_CSM_Notes__c": {"name": "Loyalty_CSM_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_CSM_Notes_rich__c": {"name": "Loyalty_CSM_Notes_rich__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_Current_ACV__c": {"name": "Loyalty_Current_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_Current_Hedged_ACV__c": {"name": "Loyalty_Current_Hedged_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_Manager_Notes__c": {"name": "Loyalty_Manager_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_Manager_Notes_rich__c": {"name": "Loyalty_Manager_Notes_rich__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_Predictions_Certainty__c": {"name": "Loyalty_Predictions_Certainty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_Previous_ACV__c": {"name": "Loyalty_Previous_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_Result_Type__c": {"name": "Loyalty_Result_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_Risk_Buckets__c": {"name": "Loyalty_Risk_Buckets__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Loyalty_logo_retainment_hedged__c": {"name": "Loyalty_logo_retainment_hedged__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_previous_ACV_with_ITC__c": {"name": "Loyalty_previous_ACV_with_ITC__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Loyalty_result_type_hedged__c": {"name": "Loyalty_result_type_hedged__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Manager_Notes__c": {"name": "Manager_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity__c": {"name": "Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Predicted_Loyalty_ACV__c": {"name": "Predicted_Loyalty_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Predicted_Reviews_ACV__c": {"name": "Predicted_Reviews_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Primary_CSM_Notes__c": {"name": "Primary_CSM_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Primary_CSM_Notes_rich__c": {"name": "Primary_CSM_Notes_rich__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Primary_Manager_Notes__c": {"name": "Primary_Manager_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Primary_Manager_Notes_rich__c": {"name": "Primary_Manager_Notes_rich__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_CSMS_teams_upon_closed__c": {"name": "Relevant_CSMS_teams_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_CSMS_upon_closed__c": {"name": "Relevant_CSMS_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_Loyalty_CSM_Team__c": {"name": "Relevant_Loyalty_CSM_Team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_Loyalty_CSM__c": {"name": "Relevant_Loyalty_CSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_Reviews_CSM_Team__c": {"name": "Relevant_Reviews_CSM_Team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Relevant_Reviews_CSM__c": {"name": "Relevant_Reviews_CSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_CSM_Notes__c": {"name": "Reviews_CSM_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_CSM_Notes_rich__c": {"name": "Reviews_CSM_Notes_rich__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Current_ACV__c": {"name": "Reviews_Current_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_Current_Hedged_ACV__c": {"name": "Reviews_Current_Hedged_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_Manager_Notes__c": {"name": "Reviews_Manager_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Manager_Notes_rich__c": {"name": "Reviews_Manager_Notes_rich__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Predictions_Certainty__c": {"name": "Reviews_Predictions_Certainty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Previous_ACV__c": {"name": "Reviews_Previous_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_Result_Type__c": {"name": "Reviews_Result_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_Risk_Buckets__c": {"name": "Reviews_Risk_Buckets__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Reviews_logo_retainment_hedged__c": {"name": "Reviews_logo_retainment_hedged__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_previous_ACV_with_ITC__c": {"name": "Reviews_previous_ACV_with_ITC__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Reviews_result_type_hedged__c": {"name": "Reviews_result_type_hedged__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_CSM_ACV_Prediction__c": {"name": "SMS_CSM_ACV_Prediction__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SMS_CSM_Notes__c": {"name": "SMS_CSM_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SMS_CSM_Renewal_Prediction__c": {"name": "SMS_CSM_Renewal_Prediction__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SMS_Manager_Notes__c": {"name": "SMS_Manager_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SystemModstamp": {"name": "SystemModstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Total_Hedged_ACV_with_assumptions__c": {"name": "Total_Hedged_ACV_with_assumptions__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Previous_ACV_with_assumptions__c": {"name": "Total_Previous_ACV_with_assumptions__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "USER_is_from_relevant_CSM_team__c": {"name": "USER_is_from_relevant_CSM_team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "USER_is_relevant_CSM__c": {"name": "USER_is_relevant_CSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "X2_Months_ACV_Prediction__c": {"name": "X2_Months_ACV_Prediction__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "X2_Months_Contract_Renewal_Prediction__c": {"name": "X2_Months_Contract_Renewal_Prediction__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "X4_Months_ACV_Prediction__c": {"name": "X4_Months_ACV_Prediction__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "X4_Months_Contract_Renewal_Prediction__c": {"name": "X4_Months_Contract_Renewal_Prediction__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.opportunity_prediction__c_full", "created_at": 1700082693.6807442}, "source.yoda.analytics__salesforce.lead": {"database": null, "schema": "salesforce", "name": "lead", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.lead", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "lead"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "lead", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_id__c": {"name": "account_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_phone__c": {"name": "account_phone__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creation_date_time__c": {"name": "creation_date_time__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "no_specified_domain_com__c": {"name": "no_specified_domain_com__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "score__c": {"name": "score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "utm_campaign__c": {"name": "utm_campaign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_medium__c": {"name": "utm_medium__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_source__c": {"name": "utm_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "aov__c": {"name": "aov__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_email__c": {"name": "account_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_status__c": {"name": "account_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "active_lead__c": {"name": "active_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "additional_email__c": {"name": "additional_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_pdr_lookup__c": {"name": "agency_pdr_lookup__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_potential__c": {"name": "agency_potential__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_sales_owner__c": {"name": "agency_sales_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_services__c": {"name": "agency_services__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "alexa_rank__c": {"name": "alexa_rank__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "annualrevenue": {"name": "annualrevenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "annual_revenue__c": {"name": "annual_revenue__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key__c": {"name": "app_key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "assigned_by_de__c": {"name": "assigned_by_de__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "came_from_nurturing__c": {"name": "came_from_nurturing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "city": {"name": "city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "claim_status__c": {"name": "claim_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "client_s_agency2__c": {"name": "client_s_agency2__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comments__c": {"name": "comments__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company": {"name": "company", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "confidence_level_lead__c": {"name": "confidence_level_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "convert_to_existing_account__c": {"name": "convert_to_existing_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "convertedaccountid": {"name": "convertedaccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "convertedcontactid": {"name": "convertedcontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converteddate": {"name": "converteddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "convertedopportunityid": {"name": "convertedopportunityid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countrycode": {"name": "countrycode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_region_text__c": {"name": "country_region_text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_region__c": {"name": "country_region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_role__c": {"name": "created_by_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_date_day_less_than_today_day__c": {"name": "created_date_day_less_than_today_day__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_cycle_calls_completed__c": {"name": "current_cycle_calls_completed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_cycle_emails_sent__c": {"name": "current_cycle_emails_sent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_cycle_first_call_email_date__c": {"name": "current_cycle_first_call_email_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_cycle_last_call_email_date__c": {"name": "current_cycle_last_call_email_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_cycle_total_activities__c": {"name": "current_cycle_total_activities__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "datanayze_annual_revenue_changed__c": {"name": "datanayze_annual_revenue_changed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "datanayze_annual_revenue__c": {"name": "datanayze_annual_revenue__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "datanayze_current_curation_solution__c": {"name": "datanayze_current_curation_solution__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "datanayze_monthly_tech_spend__c": {"name": "datanayze_monthly_tech_spend__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "datanyze_funding__c": {"name": "datanyze_funding__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date_assigned_to_sdr__c": {"name": "date_assigned_to_sdr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_between_nurture_to_new__c": {"name": "days_between_nurture_to_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_from_last_activity__c": {"name": "days_from_last_activity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_activity_after_engage__c": {"name": "days_since_last_activity_after_engage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_activity_after_mql__c": {"name": "days_since_last_activity_after_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "decision_maker__c": {"name": "decision_maker__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "demo_task_subject__c": {"name": "demo_task_subject__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain__c": {"name": "domain__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "donotcall": {"name": "donotcall", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "doesn_t_work_here__c": {"name": "doesn_t_work_here__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "drift_assignee__c": {"name": "drift_assignee__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "duration_in_lead_status__c": {"name": "duration_in_lead_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "effective_source__c": {"name": "effective_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_domain__c": {"name": "email_domain__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_validation__c": {"name": "email_validation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enterprise_lead__c": {"name": "enterprise_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "fax": {"name": "fax", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "firstname": {"name": "firstname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_activity_date__c": {"name": "first_activity_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_campaign_name__c": {"name": "first_campaign_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_campaign_type__c": {"name": "first_campaign_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_campaign__c": {"name": "first_campaign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "follow_up_date__c": {"name": "follow_up_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "funding__c": {"name": "funding__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "google_fake_lead__c": {"name": "google_fake_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "growth_date__c": {"name": "growth_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hasoptedoutofemail": {"name": "hasoptedoutofemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hasoptedoutoffax": {"name": "hasoptedoutoffax", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hours_since_last_transfer__c": {"name": "hours_since_last_transfer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "how_did_they_hear_about_yotpo__c": {"name": "how_did_they_hear_about_yotpo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "import_reason__c": {"name": "import_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry": {"name": "industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "influencer_owner__c": {"name": "influencer_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "influencer__c": {"name": "influencer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "instagram_followers__c": {"name": "instagram_followers__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_email_marketing__c": {"name": "integrations_email_marketing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_loyalty__c": {"name": "integrations_loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_onsite_engagement__c": {"name": "integrations_onsite_engagement__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_search__c": {"name": "integrations_search__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invalid_email_address_marketo__c": {"name": "invalid_email_address_marketo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isconverted": {"name": "isconverted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isunreadbyowner": {"name": "isunreadbyowner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "junk_reason__c": {"name": "junk_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "keep_in_owner_name__c": {"name": "keep_in_owner_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lninterest__c": {"name": "lninterest__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnpath__c": {"name": "lnpath__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnstage__c": {"name": "lnstage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnstatus__c": {"name": "lnstatus__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastname": {"name": "lastname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "laststatuschange__c": {"name": "laststatuschange__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lasttransferdate": {"name": "lasttransferdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_maps_total__c": {"name": "last_30_days_maps_total__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_30_days_reviews__c": {"name": "last_30_days_reviews__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_30_days_maps__c": {"name": "last_30_days_maps__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_30_days_orders__c": {"name": "last_30_days_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_30_days_sales__c": {"name": "last_30_days_sales__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_ae_team__c": {"name": "last_ae_team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_ae__c": {"name": "last_ae__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_activity_date__c": {"name": "last_activity_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner_email__c": {"name": "last_lead_owner_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner_lookup__c": {"name": "last_lead_owner_lookup__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner_phone__c": {"name": "last_lead_owner_phone__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner_role__c": {"name": "last_lead_owner_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner_without_queue__c": {"name": "last_lead_owner_without_queue__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_lead_owner__c": {"name": "last_lead_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_nurture_reason__c": {"name": "last_nurture_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_packaged_change_date__c": {"name": "last_packaged_change_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_ringlead_merge_activity__c": {"name": "last_ringlead_merge_activity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_sdr_team__c": {"name": "last_sdr_team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_sdr__c": {"name": "last_sdr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_sub_nurture_reason__c": {"name": "last_sub_nurture_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_transfer_datetime_without_queue__c": {"name": "last_transfer_datetime_without_queue__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_transfer_date_date_time__c": {"name": "last_transfer_date_date_time__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_transfer_date_without_queue__c": {"name": "last_transfer_date_without_queue__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "leadsource": {"name": "leadsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_bucket_when_referred__c": {"name": "lead_bucket_when_referred__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_bucket__c": {"name": "lead_bucket__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_creation_date__c": {"name": "lead_creation_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_emails_sent__c": {"name": "lead_emails_sent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lead_id_18_digit__c": {"name": "lead_id_18_digit__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_id_map_to_opp__c": {"name": "lead_id_map_to_opp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_id__c": {"name": "lead_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_influenced_by__c": {"name": "lead_influenced_by__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_influenced_date__c": {"name": "lead_influenced_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_campaign2__c": {"name": "lead_last_campaign2__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_campaign_contact__c": {"name": "lead_last_campaign_contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_campaign_name__c": {"name": "lead_last_campaign_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_campaign_type__c": {"name": "lead_last_campaign_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_hubspot_engagement__c": {"name": "lead_last_hubspot_engagement__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_referred_by__c": {"name": "lead_referred_by__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_referred_date__c": {"name": "lead_referred_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_source_type__c": {"name": "lead_source_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_source__c": {"name": "lead_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_territory__c": {"name": "lead_territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_type__c": {"name": "lead_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "linkedin__c": {"name": "linkedin__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_date__c": {"name": "mql_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_hql_date__c": {"name": "marketing_filter_hql_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_last_qualified_tier__c": {"name": "marketing_filter_last_qualified_tier__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_fit_score_first_mql__c": {"name": "marketo_fit_score_first_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_fit_score_grade__c": {"name": "marketo_fit_score_grade__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_fit_score_last_mql__c": {"name": "marketo_fit_score_last_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_fit_score__c": {"name": "marketo_fit_score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_tier_last_mql__c": {"name": "marketo_tier_last_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_tier_mql__c": {"name": "marketo_tier_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "matched_account_ring_lead__c": {"name": "matched_account_ring_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "meeting_type_cp__c": {"name": "meeting_type_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mobilephone": {"name": "mobilephone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_fb_ads_budget__c": {"name": "monthly_fb_ads_budget__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "move_to_nurture__c": {"name": "move_to_nurture__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numberofemployees": {"name": "numberofemployees", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number_of_open_outreach_tasks__c": {"name": "number_of_open_outreach_tasks__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number_of_employees__c": {"name": "number_of_employees__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_reason__c": {"name": "nurturing_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_to_new__c": {"name": "nurturing_to_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_month_estimate__c": {"name": "orders_month_estimate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key__c": {"name": "organization_key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_source__c": {"name": "original_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_is_active__c": {"name": "owner_is_active__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "owner_is_queue__c": {"name": "owner_is_queue__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pct_usage_reached__c": {"name": "pct_usage_reached__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "package_category__c": {"name": "package_category__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package__c": {"name": "package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_country_code_lead__c": {"name": "phone_country_code_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "photourl": {"name": "photourl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform__c": {"name": "platform__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "postalcode": {"name": "postalcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_db_package__c": {"name": "previous_db_package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_rank__c": {"name": "prospect_fit_rank__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_reason__c": {"name": "prospect_fit_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_reason__c": {"name": "prospect_intent_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospecting_alexa_ranking__c": {"name": "prospecting_alexa_ranking__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "prospecting_fb_likes__c": {"name": "prospecting_fb_likes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospecting_google_ads_spent_spyfu__c": {"name": "prospecting_google_ads_spent_spyfu__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rating": {"name": "rating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ready_for_routing__c": {"name": "ready_for_routing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recordtypeid": {"name": "recordtypeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recycling_status__c": {"name": "recycling_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_agency_potential__c": {"name": "referrer_agency_potential__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_name__c": {"name": "referrer_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_owner__c": {"name": "referrer_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_type__c": {"name": "referrer_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer__c": {"name": "referrer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_provider_from_list__c": {"name": "reviews_provider_from_list__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ringlead_dms_status__c": {"name": "ringlead_dms_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ringlead_merged_ids_leads__c": {"name": "ringlead_merged_ids_leads__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr__c": {"name": "sdr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sla_status__c": {"name": "sla_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_estimated_monthly_orders__c": {"name": "sales_estimated_monthly_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_territory__c": {"name": "sales_territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_tier_first_mql__c": {"name": "sales_tier_first_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_tier_routing__c": {"name": "sales_tier_routing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salutation": {"name": "salutation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_id__c": {"name": "segment_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_plan__c": {"name": "shopify_plan__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sign_in_count__c": {"name": "sign_in_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "statecode": {"name": "statecode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state_region__c": {"name": "state_region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status_before_convert__c": {"name": "status_before_convert__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "street": {"name": "street", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_nurturing_reason__c": {"name": "sub_nurturing_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subjective_score__c": {"name": "subjective_score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscribed_to_blog__c": {"name": "subscribed_to_blog__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sync_with_zendesk__c": {"name": "sync_with_zendesk__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory__c": {"name": "territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_to_mql_days__c": {"name": "time_to_mql_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "time_zone_formula__c": {"name": "time_zone_formula__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_zone_new__c": {"name": "time_zone_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_orders__c": {"name": "total_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_reviews__c": {"name": "total_reviews__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_sales__c": {"name": "total_sales__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "utm_campaign_account__c": {"name": "utm_campaign_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_content_account__c": {"name": "utm_content_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_content__c": {"name": "utm_content__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_medium_account__c": {"name": "utm_medium_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_source_account__c": {"name": "utm_source_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_term_account__c": {"name": "utm_term_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "utm_term__c": {"name": "utm_term__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_manually_annual_revenue__c": {"name": "updated_manually_annual_revenue__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "updated_manually_country__c": {"name": "updated_manually_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "user_id__c": {"name": "user_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "web_traffic__c": {"name": "web_traffic__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website_text__c": {"name": "website_text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "x18_digits_id__c": {"name": "x18_digits_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_industry_lead__c": {"name": "yotpo_industry_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_industry_verified_lead__c": {"name": "yotpo_industry_verified_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yotpo_sub_industry_lead__c": {"name": "yotpo_sub_industry_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zendesk_sync__c": {"name": "zendesk_sync__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_outreach_completed__c": {"name": "lead_outreach_completed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto2__acquisition_date__c": {"name": "mkto2__acquisition_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__acquisition_program_id__c": {"name": "mkto2__acquisition_program_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto2__acquisition_program__c": {"name": "mkto2__acquisition_program__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_city__c": {"name": "mkto2__inferred_city__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_company__c": {"name": "mkto2__inferred_company__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_country__c": {"name": "mkto2__inferred_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_metropolitan_area__c": {"name": "mkto2__inferred_metropolitan_area__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_phone_area_code__c": {"name": "mkto2__inferred_phone_area_code__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_postal_code__c": {"name": "mkto2__inferred_postal_code__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_state_region__c": {"name": "mkto2__inferred_state_region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__lead_score__c": {"name": "mkto2__lead_score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto2__original_referrer__c": {"name": "mkto2__original_referrer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_search_engine__c": {"name": "mkto2__original_search_engine__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_search_phrase__c": {"name": "mkto2__original_search_phrase__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_source_info__c": {"name": "mkto2__original_source_info__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_source_type__c": {"name": "mkto2__original_source_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto71_acquisition_date__c": {"name": "mkto71_acquisition_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto71_acquisition_program_id__c": {"name": "mkto71_acquisition_program_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto71_acquisition_program__c": {"name": "mkto71_acquisition_program__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__add_to_marketo_campaign__c": {"name": "mkto_si__add_to_marketo_campaign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_date__c": {"name": "mkto_si__last_interesting_moment_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_desc__c": {"name": "mkto_si__last_interesting_moment_desc__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_source__c": {"name": "mkto_si__last_interesting_moment_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_type__c": {"name": "mkto_si__last_interesting_moment_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment__c": {"name": "mkto_si__last_interesting_moment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__priority__c": {"name": "mkto_si__priority__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto_si__relative_score_value__c": {"name": "mkto_si__relative_score_value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto_si__relative_score__c": {"name": "mkto_si__relative_score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__urgency__c": {"name": "mkto_si__urgency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__view_in_marketo__c": {"name": "mkto_si__view_in_marketo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_supported_platforms_lead__c": {"name": "agency_supported_platforms_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "annual_revenue_est__c": {"name": "annual_revenue_est__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "was_referred_by_the_agency__c": {"name": "was_referred_by_the_agency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_type__c": {"name": "agency_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "business_days_to_first_connect__c": {"name": "business_days_to_first_connect__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "business_days_to_first_touch__c": {"name": "business_days_to_first_touch__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_cycle_first_activity__c": {"name": "current_cycle_first_activity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_cycle_first_connected_activity__c": {"name": "current_cycle_first_connected_activity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gray_area__c": {"name": "gray_area__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hours_to_first_connect__c": {"name": "hours_to_first_connect__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hours_to_first_touch__c": {"name": "hours_to_first_touch__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_from_last_assign_to_first_touch__c": {"name": "days_from_last_assign_to_first_touch__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lastactivitydate": {"name": "lastactivitydate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_swell_sales__c": {"name": "last_30_days_swell_sales__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id__c": {"name": "merchant_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_bucket__c": {"name": "most_recent_assignment_bucket__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_date__c": {"name": "most_recent_assignment_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_reason__c": {"name": "most_recent_assignment_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_sub_reason__c": {"name": "most_recent_assignment_sub_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_rank__c": {"name": "prospect_intent_rank__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_engagement__c": {"name": "swell_engagement__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_package__c": {"name": "swell_package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avg_traffic_6_months__c": {"name": "avg_traffic_6_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "bounce_rate__c": {"name": "bounce_rate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "direct_traffic_share__c": {"name": "direct_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "emailbounceddate": {"name": "emailbounceddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "emailbouncedreason": {"name": "emailbouncedreason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "global_rank__c": {"name": "global_rank__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mail_traffic_share__c": {"name": "mail_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "paid_referrals_traffic_share__c": {"name": "paid_referrals_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referrals_traffic_share__c": {"name": "referrals_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sdr_email__c": {"name": "sdr_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_owner__c": {"name": "sdr_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_role__c": {"name": "sdr_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "search_traffic_share__c": {"name": "search_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "second_best_country__c": {"name": "second_best_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "similarweb_traffic_new__c": {"name": "similarweb_traffic_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "social_traffic_share__c": {"name": "social_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "third_best_country__c": {"name": "third_best_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_country__c": {"name": "top_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_organic_keyword__c": {"name": "top_organic_keyword__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_paid_keyword__c": {"name": "top_paid_keyword__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "critical_event__c": {"name": "critical_event__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discoverorg_company_industry__c": {"name": "discoverorg_company_industry__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "impact__c": {"name": "impact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_using_loyalty_campaigns__c": {"name": "is_using_loyalty_campaigns__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_swell_orders__c": {"name": "last_30_days_swell_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_6_months_points_earned__c": {"name": "last_6_months_points_earned__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_6_months_points_redeemed__c": {"name": "last_6_months_points_redeemed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "latest_partner_referral_influencer__c": {"name": "latest_partner_referral_influencer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "latest_partner_referral__c": {"name": "latest_partner_referral__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_referrer_owner_role__c": {"name": "lead_referrer_owner_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_date__c": {"name": "most_recent_engagement_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_reason__c": {"name": "most_recent_engagement_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pain__c": {"name": "pain__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_team_routing_team__c": {"name": "partner_team_routing_team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_owner_email__c": {"name": "referrer_owner_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_owner_new__c": {"name": "referrer_owner_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "situation__c": {"name": "situation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status_swell__c": {"name": "status_swell__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_orders_swell__c": {"name": "total_orders_swell__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_orders_from_referral_links_shares__c": {"name": "total_orders_from_referral_links_shares__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_referrals_links_clickes__c": {"name": "total_referrals_links_clickes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_referrals_links_shares__c": {"name": "total_referrals_links_shares__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_revenue_from_referral_links_shares__c": {"name": "total_revenue_from_referral_links_shares__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "additional_phone_number__c": {"name": "additional_phone_number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ads_provider__c": {"name": "ads_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cdp_provider__c": {"name": "cdp_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chat_bots_provider__c": {"name": "chat_bots_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_company_id__c": {"name": "dozisf__zoominfo_company_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_first_updated__c": {"name": "dozisf__zoominfo_first_updated__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_id__c": {"name": "dozisf__zoominfo_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_last_updated__c": {"name": "dozisf__zoominfo_last_updated__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "help_desk_provider__c": {"name": "help_desk_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pos_provider__c": {"name": "pos_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager_email_referral_form__c": {"name": "partner_manager_email_referral_form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_provider__c": {"name": "payment_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "personalization_provider__c": {"name": "personalization_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_email_referral_form__c": {"name": "referred_by_email_referral_form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_referral_form__c": {"name": "referred_by_referral_form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_partner_code__c": {"name": "referred_partner_code__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sql_assignment__c": {"name": "sql_assignment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "wrong_number_indication_date__c": {"name": "wrong_number_indication_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "additional_email_address__c": {"name": "additional_email_address__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_segment__c": {"name": "agency_segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_provider__c": {"name": "sms_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "active_automations_flows_3_months_avg__c": {"name": "active_automations_flows_3_months_avg__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "active_automations_flows_last_30_days__c": {"name": "active_automations_flows_last_30_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active_campaigns__c": {"name": "active_campaigns__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "credits_used_last_30_days__c": {"name": "credits_used_last_30_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits_used_last_90_days__c": {"name": "credits_used_last_90_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "good_fit_for_growth__c": {"name": "good_fit_for_growth__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "incorrect_score_reason__c": {"name": "incorrect_score_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "messages_sent_last_30_days__c": {"name": "messages_sent_last_30_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "messages_sent_last_90_days__c": {"name": "messages_sent_last_90_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "percent_subscribers_from_customers__c": {"name": "percent_subscribers_from_customers__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "num_of_subscribers__c": {"name": "num_of_subscribers__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cs_tags__c": {"name": "cs_tags__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id__c": {"name": "sms_user_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "managed_services_agency__c": {"name": "managed_services_agency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_triggered_mql__c": {"name": "marketo_triggered_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partneraccountid": {"name": "partneraccountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_interest_referral_form__c": {"name": "products_interest_referral_form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "jigsawcontactid": {"name": "jigsawcontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "jigsaw": {"name": "jigsaw", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_segment__c": {"name": "sales_segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "a_b_testing_provider__c": {"name": "a_b_testing_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_billing_provider__c": {"name": "subscription_billing_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "masterrecordid": {"name": "masterrecordid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_product_preference__c": {"name": "most_recent_product_preference__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_session_starting_page__c": {"name": "most_recent_session_starting_page__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_of_funnel_touches__c": {"name": "top_of_funnel_touches__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_touches__c": {"name": "product_touches__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_of_funnel_sessions__c": {"name": "top_of_funnel_sessions__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_30_days_orders_sms__c": {"name": "last_30_days_orders_sms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sales_estimated_subscribers__c": {"name": "sales_estimated_subscribers__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_enabled_automations__c": {"name": "sms_enabled_automations__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_enabled_flows__c": {"name": "sms_enabled_flows__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "bottom_of_funnel_sessions__c": {"name": "bottom_of_funnel_sessions__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "prospect_fit_score_test__c": {"name": "prospect_fit_score_test__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "connect_with_a_yotpo_rep__c": {"name": "connect_with_a_yotpo_rep__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_for_snr_form__c": {"name": "platform_for_snr_form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "interested_in_sms__c": {"name": "interested_in_sms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_vms__c": {"name": "interested_in_vms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_loyalty__c": {"name": "interested_in_loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_reviews__c": {"name": "interested_in_reviews__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lead_status_time_stamp__c": {"name": "lead_status_time_stamp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_care_tagged__c": {"name": "customer_care_tagged__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "interested_in_subscription__c": {"name": "interested_in_subscription__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastproductoflastsubscriptionevent__c": {"name": "lastproductoflastsubscriptionevent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastsubscriptioneventchange__c": {"name": "lastsubscriptioneventchange__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "booking_status_cp__c": {"name": "booking_status_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__active_lead__c": {"name": "salesloft1__active_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "no_of_touchpoints_before_nurturing__c": {"name": "no_of_touchpoints_before_nurturing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "activitymetricid": {"name": "activitymetricid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activitymetricrollupid": {"name": "activitymetricrollupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_cadence_name__c": {"name": "salesloft1__most_recent_cadence_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_cadence_next_step_due_date__c": {"name": "salesloft1__most_recent_cadence_next_step_due_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_last_completed_step__c": {"name": "salesloft1__most_recent_last_completed_step__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mql_motion__c": {"name": "mql_motion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "do_not_update_territory__c": {"name": "do_not_update_territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "region__c": {"name": "region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory_new__c": {"name": "territory_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pe_reassignment_date__c": {"name": "pe_reassignment_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_enrichment_date__c": {"name": "last_enrichment_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.lead", "created_at": 1700082693.6844847}, "source.yoda.analytics__salesforce.campaign": {"database": null, "schema": "salesforce", "name": "campaign", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.campaign", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "campaign"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "campaign", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "actualcost": {"name": "actualcost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amountallopportunities": {"name": "amountallopportunities", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amountwonopportunities": {"name": "amountwonopportunities", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "campaign_url__c": {"name": "campaign_url__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enddate": {"name": "enddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expectedresponse": {"name": "expectedresponse", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchyactualcost": {"name": "hierarchyactualcost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "hierarchyamountallopportunities": {"name": "hierarchyamountallopportunities", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "hierarchyamountwonopportunities": {"name": "hierarchyamountwonopportunities", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "hierarchybudgetedcost": {"name": "hierarchybudgetedcost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchyexpectedrevenue": {"name": "hierarchyexpectedrevenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofcontacts": {"name": "hierarchynumberofcontacts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofconvertedleads": {"name": "hierarchynumberofconvertedleads", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofleads": {"name": "hierarchynumberofleads", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofopportunities": {"name": "hierarchynumberofopportunities", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofresponses": {"name": "hierarchynumberofresponses", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumberofwonopportunities": {"name": "hierarchynumberofwonopportunities", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hierarchynumbersent": {"name": "hierarchynumbersent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isactive": {"name": "isactive", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastactivitydate": {"name": "lastactivitydate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numberofcontacts": {"name": "numberofcontacts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numberofconvertedleads": {"name": "numberofconvertedleads", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numberofleads": {"name": "numberofleads", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numberofopportunities": {"name": "numberofopportunities", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numberofresponses": {"name": "numberofresponses", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numberofwonopportunities": {"name": "numberofwonopportunities", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numbersent": {"name": "numbersent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_source__c": {"name": "original_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parentid": {"name": "parentid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_products__c": {"name": "related_products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "startdate": {"name": "startdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_type__c": {"name": "sub_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.campaign", "created_at": 1700082693.6850078}, "source.yoda.analytics__salesforce.contact": {"database": null, "schema": "salesforce", "name": "contact", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.contact", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "contact"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "contact", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "avg_traffic_6_months__c": {"name": "avg_traffic_6_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_country__c": {"name": "account_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_db_package__c": {"name": "account_db_package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_in_cross_sell_process__c": {"name": "account_in_cross_sell_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "account_name__c": {"name": "account_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_owner__c": {"name": "account_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_sdr_owner__c": {"name": "account_sdr_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_status__c": {"name": "account_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_territory__c": {"name": "account_territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_s_organization_key__c": {"name": "account_s_organization_key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "active_community_member__c": {"name": "active_community_member__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "active_contact_14_days__c": {"name": "active_contact_14_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "additional_email_address__c": {"name": "additional_email_address__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "additional_email__c": {"name": "additional_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "additional_phone_number__c": {"name": "additional_phone_number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ads_provider__c": {"name": "ads_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_potential__c": {"name": "agency_potential__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_stage__c": {"name": "agency_stage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "annual_revenue__c": {"name": "annual_revenue__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ask_to_renew__c": {"name": "ask_to_renew__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "automate_contact_status_timestamp__c": {"name": "automate_contact_status_timestamp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bounce_rate__c": {"name": "bounce_rate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cdp_provider__c": {"name": "cdp_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_email_re_engaged__c": {"name": "csm_email_re_engaged__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "champion__c": {"name": "champion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "chat_bots_provider__c": {"name": "chat_bots_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comments__c": {"name": "comments__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "commonalities__c": {"name": "commonalities__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "community_user_my_account_s_contacts__c": {"name": "community_user_my_account_s_contacts__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "contact_count__c": {"name": "contact_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "contact_id_18__c": {"name": "contact_id_18__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_last_campaign__c": {"name": "contact_last_campaign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_last_hubspot_engagement__c": {"name": "contact_last_hubspot_engagement__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_notes__c": {"name": "contact_notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_role__c": {"name": "contact_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_status__c": {"name": "contact_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_owner_not_account_owner__c": {"name": "contact_owner_not_account_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "contacts_in_common__c": {"name": "contacts_in_common__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_by_ringlead_webhook__c": {"name": "converted_by_ringlead_webhook__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_region__c": {"name": "country_region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_via_docusign__c": {"name": "created_via_docusign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "critical_event__c": {"name": "critical_event__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_curation_solution__c": {"name": "current_curation_solution__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_marketing_efforts__c": {"name": "current_marketing_efforts__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_company_id__c": {"name": "dozisf__zoominfo_company_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_first_updated__c": {"name": "dozisf__zoominfo_first_updated__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_id__c": {"name": "dozisf__zoominfo_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dozisf__zoominfo_last_updated__c": {"name": "dozisf__zoominfo_last_updated__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ds_account_id__c": {"name": "ds_account_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_from_last_activity__c": {"name": "days_from_last_activity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_activity_after_assign__c": {"name": "days_since_last_activity_after_assign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_activity_after_engage__c": {"name": "days_since_last_activity_after_engage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_activity_after_mql__c": {"name": "days_since_last_activity_after_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_since_last_communicated__c": {"name": "days_since_last_communicated__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_from_last_assign_to_first_touch__c": {"name": "days_from_last_assign_to_first_touch__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "decision_maker__c": {"name": "decision_maker__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "department": {"name": "department", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "direct_traffic_share__c": {"name": "direct_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "donotcall": {"name": "donotcall", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "doesn_t_work_here__c": {"name": "doesn_t_work_here__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "domain__c": {"name": "domain__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain_copy__c": {"name": "domain_copy__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "drift_assignee__c": {"name": "drift_assignee__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effective_source__c": {"name": "effective_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "emailbounceddate": {"name": "emailbounceddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "emailbouncedreason": {"name": "emailbouncedreason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_domain__c": {"name": "email_domain__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_validation__c": {"name": "email_validation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enterprise_contact_formula__c": {"name": "enterprise_contact_formula__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "enterprise_contact__c": {"name": "enterprise_contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "estimated_aov__c": {"name": "estimated_aov__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "estimated_of_orders__c": {"name": "estimated_of_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fb_likes__c": {"name": "fb_likes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fax": {"name": "fax", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "features_to_focus_on__c": {"name": "features_to_focus_on__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "firstname": {"name": "firstname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_activity_date__c": {"name": "first_activity_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_contact_on_account_indication__c": {"name": "first_contact_on_account_indication__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "follow_up_date__c": {"name": "follow_up_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "follow_up_in__c": {"name": "follow_up_in__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "follow_up_num_of_days__c": {"name": "follow_up_num_of_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "funding__c": {"name": "funding__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "global_rank__c": {"name": "global_rank__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "good_fit_for_the_annual_plan_contact__c": {"name": "good_fit_for_the_annual_plan_contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "google_click_id__c": {"name": "google_click_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "google_seller_rating__c": {"name": "google_seller_rating__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hasoptedoutofemail": {"name": "hasoptedoutofemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hasoptedoutoffax": {"name": "hasoptedoutoffax", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "help_desk_provider__c": {"name": "help_desk_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "homephone": {"name": "homephone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hours_since_account_last_transfer__c": {"name": "hours_since_account_last_transfer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "import_reason__c": {"name": "import_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "inbound_reason_for_interest_in_yotpo__c": {"name": "inbound_reason_for_interest_in_yotpo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_email_marketing__c": {"name": "integrations_email_marketing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_loyalty__c": {"name": "integrations_loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_onsite_engagement__c": {"name": "integrations_onsite_engagement__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integrations_search__c": {"name": "integrations_search__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "internal_use__c": {"name": "internal_use__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "invalid_email_address_marketo__c": {"name": "invalid_email_address_marketo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isemailbounced": {"name": "isemailbounced", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "jigsawcontactid": {"name": "jigsawcontactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "jigsaw": {"name": "jigsaw", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "junk_reason__c": {"name": "junk_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnpath__c": {"name": "lnpath__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnstage__c": {"name": "lnstage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lnstatus__c": {"name": "lnstatus__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ln_interest__c": {"name": "ln_interest__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastactivitydate": {"name": "lastactivitydate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastname": {"name": "lastname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_activity_date__c": {"name": "last_activity_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_call_date__c": {"name": "last_call_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_communication_date__c": {"name": "last_communication_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_nps_date__c": {"name": "last_nps_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_ringlead_merge_activity__c": {"name": "last_ringlead_merge_activity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "latest_nps_score__c": {"name": "latest_nps_score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "leadsource": {"name": "leadsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_last_hubspot_engagement_mapped__c": {"name": "lead_last_hubspot_engagement_mapped__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_source_type__c": {"name": "lead_source_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "linkedin__c": {"name": "linkedin__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "location__c": {"name": "location__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_date__c": {"name": "mql_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mail_traffic_share__c": {"name": "mail_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mailingcity": {"name": "mailingcity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingcountrycode": {"name": "mailingcountrycode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingcountry": {"name": "mailingcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingpostalcode": {"name": "mailingpostalcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingstatecode": {"name": "mailingstatecode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingstate": {"name": "mailingstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailingstreet": {"name": "mailingstreet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_hlql_date__c": {"name": "marketing_filter_hlql_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_hql_date__c": {"name": "marketing_filter_hql_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_lql_date__c": {"name": "marketing_filter_lql_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_filter_last_qualified_tier__c": {"name": "marketing_filter_last_qualified_tier__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_product_push_counter__c": {"name": "marketing_product_push_counter__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_fit_score_first_mql__c": {"name": "marketo_fit_score_first_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_fit_score_last_mql__c": {"name": "marketo_fit_score_last_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_fit_score__c": {"name": "marketo_fit_score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketo_tier_last_mql__c": {"name": "marketo_tier_last_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_tier_mql__c": {"name": "marketo_tier_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "meeting_type_cp__c": {"name": "meeting_type_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id__c": {"name": "merchant_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merged_contact__c": {"name": "merged_contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mobilephone": {"name": "mobilephone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_fb_ads_budget__c": {"name": "monthly_fb_ads_budget__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "most_recent_assignment_bucket__c": {"name": "most_recent_assignment_bucket__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_date__c": {"name": "most_recent_assignment_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_reason__c": {"name": "most_recent_assignment_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_sub_reason__c": {"name": "most_recent_assignment_sub_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_date__c": {"name": "most_recent_engagement_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_reason__c": {"name": "most_recent_engagement_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "move_to_nurture__c": {"name": "move_to_nurture__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nps_response__c": {"name": "nps_response__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_outbound_referral__c": {"name": "new_outbound_referral__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_accounts_s_open_opportunities__c": {"name": "number_of_accounts_s_open_opportunities__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number_of_instagram_followers__c": {"name": "number_of_instagram_followers__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_reason__c": {"name": "nurturing_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_to_new__c": {"name": "nurturing_to_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opt_out_partner_marketing__c": {"name": "opt_out_partner_marketing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "original_source__c": {"name": "original_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "otherphone": {"name": "otherphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "other_contact_notes__c": {"name": "other_contact_notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owned_by_sdr_salesloft__c": {"name": "owned_by_sdr_salesloft__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ownerid": {"name": "ownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_manager_email__c": {"name": "owner_manager_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_is_active__c": {"name": "owner_is_active__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "owner_is_queue__c": {"name": "owner_is_queue__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pos_provider__c": {"name": "pos_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_base__c": {"name": "package_base__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_extensions__c": {"name": "package_extensions__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package__c": {"name": "package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paid_referrals_traffic_share__c": {"name": "paid_referrals_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pain_points__c": {"name": "pain_points__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_outbound_referral__c": {"name": "partner_outbound_referral__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_provider__c": {"name": "payment_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "personalization_provider__c": {"name": "personalization_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_country_code_contact__c": {"name": "phone_country_code_contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_extension__c": {"name": "phone_extension__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "photourl": {"name": "photourl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform__c": {"name": "platform__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_companies__c": {"name": "previous_companies__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_roles__c": {"name": "previous_roles__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_lead_engagement__c": {"name": "product_lead_engagement__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "prospect_fit_rank__c": {"name": "prospect_fit_rank__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_reason__c": {"name": "prospect_fit_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_rank__c": {"name": "prospect_intent_rank__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_intent_reason__c": {"name": "prospect_intent_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_role__c": {"name": "prospect_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ready_for_routing__c": {"name": "ready_for_routing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "referrals_traffic_share__c": {"name": "referrals_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referrer_agency_potential__c": {"name": "referrer_agency_potential__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_type__c": {"name": "referrer_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_recent_social_media_posts__c": {"name": "relevant_recent_social_media_posts__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_yotpo_deployments__c": {"name": "relevant_yotpo_deployments__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "remove_from_primary__c": {"name": "remove_from_primary__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_provider__c": {"name": "reviews_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ringlead_dms_status__c": {"name": "ringlead_dms_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_email__c": {"name": "sdr_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_notes__c": {"name": "sdr_notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_territory__c": {"name": "sales_territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_tier_first_mql__c": {"name": "sales_tier_first_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_tier_routing__c": {"name": "sales_tier_routing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salutation": {"name": "salutation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "search_traffic_share__c": {"name": "search_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "second_best_country__c": {"name": "second_best_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_id__c": {"name": "segment_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "send_to_growth__c": {"name": "send_to_growth__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "similarweb_traffic_new__c": {"name": "similarweb_traffic_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "skype_id__c": {"name": "skype_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "social_traffic_share__c": {"name": "social_traffic_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "state_region__c": {"name": "state_region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscribed_to_blog__c": {"name": "subscribed_to_blog__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "subscription_billing_provider__c": {"name": "subscription_billing_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "super_csm_generic_account__c": {"name": "super_csm_generic_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "swell_engagement__c": {"name": "swell_engagement__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_package__c": {"name": "swell_package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "talk_to_csm__c": {"name": "talk_to_csm__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "third_best_country__c": {"name": "third_best_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_at_company__c": {"name": "time_at_company__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_in_current_role__c": {"name": "time_in_current_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_country__c": {"name": "top_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_organic_keyword__c": {"name": "top_organic_keyword__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_paid_keyword__c": {"name": "top_paid_keyword__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id__c": {"name": "user_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "verify_as_primary__c": {"name": "verify_as_primary__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "wrong_number_indication_date__c": {"name": "wrong_number_indication_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdr_low_fit_qualification_date__c": {"name": "isdr_low_fit_qualification_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdr_low_fit_qualification_status__c": {"name": "isdr_low_fit_qualification_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__acquisition_date__c": {"name": "mkto2__acquisition_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_city__c": {"name": "mkto2__inferred_city__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_company__c": {"name": "mkto2__inferred_company__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_country__c": {"name": "mkto2__inferred_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_metropolitan_area__c": {"name": "mkto2__inferred_metropolitan_area__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_phone_area_code__c": {"name": "mkto2__inferred_phone_area_code__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_postal_code__c": {"name": "mkto2__inferred_postal_code__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__inferred_state_region__c": {"name": "mkto2__inferred_state_region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__lead_score__c": {"name": "mkto2__lead_score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto2__original_referrer__c": {"name": "mkto2__original_referrer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_search_engine__c": {"name": "mkto2__original_search_engine__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_search_phrase__c": {"name": "mkto2__original_search_phrase__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_source_info__c": {"name": "mkto2__original_source_info__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__original_source_type__c": {"name": "mkto2__original_source_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto71_acquisition_date__c": {"name": "mkto71_acquisition_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto71_acquisition_program_id__c": {"name": "mkto71_acquisition_program_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto71_acquisition_program__c": {"name": "mkto71_acquisition_program__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__add_to_marketo_campaign__c": {"name": "mkto_si__add_to_marketo_campaign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_date__c": {"name": "mkto_si__last_interesting_moment_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_desc__c": {"name": "mkto_si__last_interesting_moment_desc__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_source__c": {"name": "mkto_si__last_interesting_moment_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment_type__c": {"name": "mkto_si__last_interesting_moment_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__last_interesting_moment__c": {"name": "mkto_si__last_interesting_moment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__priority__c": {"name": "mkto_si__priority__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto_si__relative_score_value__c": {"name": "mkto_si__relative_score_value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto_si__relative_score__c": {"name": "mkto_si__relative_score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__sales_insight__c": {"name": "mkto_si__sales_insight__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__urgency_value__c": {"name": "mkto_si__urgency_value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto_si__urgency__c": {"name": "mkto_si__urgency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__view_in_marketo__c": {"name": "mkto_si__view_in_marketo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__sendsms__c": {"name": "rcsfl__sendsms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_profile__c": {"name": "company_profile__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "decision__c": {"name": "decision__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "good_fit_for_growth__c": {"name": "good_fit_for_growth__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "impact__c": {"name": "impact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_in_person_meeting__c": {"name": "last_in_person_meeting__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_opp_feedback_process__c": {"name": "lost_opp_feedback_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_notification_engagement_type__c": {"name": "mql_notification_engagement_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_notification_reason__c": {"name": "mql_notification_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "othercity": {"name": "othercity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "othercountrycode": {"name": "othercountrycode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "othercountry": {"name": "othercountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "otherpostalcode": {"name": "otherpostalcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "otherstreet": {"name": "otherstreet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pain__c": {"name": "pain__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_team_routing__c": {"name": "partner_team_routing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reportstoid": {"name": "reportstoid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_industry__c": {"name": "salesloft_industry__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "situation__c": {"name": "situation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager_email_referral_form__c": {"name": "partner_manager_email_referral_form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rating__c": {"name": "rating__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_email_referral_form__c": {"name": "referred_by_email_referral_form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_by_referral_form__c": {"name": "referred_by_referral_form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_partner_code__c": {"name": "referred_partner_code__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_assignment__c": {"name": "contact_assignment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referred_to_cross_sell_by__c": {"name": "referred_to_cross_sell_by__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "topics_to_avoid__c": {"name": "topics_to_avoid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "added_to_self_service_by_role__c": {"name": "added_to_self_service_by_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "added_to_self_service_by__c": {"name": "added_to_self_service_by__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto2__acquisition_program_id__c": {"name": "mkto2__acquisition_program_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mkto2__acquisition_program__c": {"name": "mkto2__acquisition_program__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketo_triggered_mql__c": {"name": "marketo_triggered_mql__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "community_user_profile__c": {"name": "community_user_profile__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "community_user__c": {"name": "community_user__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_interest_referral_form__c": {"name": "products_interest_referral_form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "community_user_last_login_date__c": {"name": "community_user_last_login_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_growth_referral_account_name__c": {"name": "most_recent_growth_referral_account_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engaged_with_cross_sell_campaign__c": {"name": "engaged_with_cross_sell_campaign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_assignee__c": {"name": "swell_assignee__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "birthdate": {"name": "birthdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "masterrecordid": {"name": "masterrecordid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_product_preference__c": {"name": "most_recent_product_preference__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_session_starting_page__c": {"name": "most_recent_session_starting_page__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_of_funnel_touches__c": {"name": "top_of_funnel_touches__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_touches__c": {"name": "product_touches__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_of_funnel_sessions__c": {"name": "top_of_funnel_sessions__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sales_estimated_product_preference__c": {"name": "sales_estimated_product_preference__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bottom_of_funnel_sessions__c": {"name": "bottom_of_funnel_sessions__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "prospect_fit_score_test__c": {"name": "prospect_fit_score_test__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "next_steps__c": {"name": "next_steps__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_sub_reason__c": {"name": "most_recent_engagement_sub_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recordval__rv2status__c": {"name": "recordval__rv2status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recordval__rv2validation__c": {"name": "recordval__rv2validation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "send_docusign__c": {"name": "send_docusign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "interested_in_sms__c": {"name": "interested_in_sms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_vms__c": {"name": "interested_in_vms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_loyalty__c": {"name": "interested_in_loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "interested_in_reviews__c": {"name": "interested_in_reviews__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "package_category__c": {"name": "package_category__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_status_time_stamp__c": {"name": "contact_status_time_stamp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_segment__c": {"name": "sales_segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_contact_role__c": {"name": "partner_contact_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_since_last_partner_portal_modify__c": {"name": "days_since_last_partner_portal_modify__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner_portal_status__c": {"name": "partner_portal_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "qualification_question_monthly_orders__c": {"name": "qualification_question_monthly_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_portal_last_modify__c": {"name": "partner_portal_last_modify__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "was_portal_inactive__c": {"name": "was_portal_inactive__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "customer_care_tagged__c": {"name": "customer_care_tagged__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_claimed_rev_share__c": {"name": "partner_claimed_rev_share__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastproductoflastsubscriptionevent__c": {"name": "lastproductoflastsubscriptionevent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastsubscriptioneventchange__c": {"name": "lastsubscriptioneventchange__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "booking_status_cp__c": {"name": "booking_status_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_revshare__c": {"name": "exclude_revshare__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "discoverorg_person_country__c": {"name": "discoverorg_person_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__active_contact__c": {"name": "salesloft1__active_contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "community_member__c": {"name": "community_member__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activitymetricid": {"name": "activitymetricid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activitymetricrollupid": {"name": "activitymetricrollupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enable_email_to_case_ugc_prime__c": {"name": "enable_email_to_case_ugc_prime__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "salesloft1__most_recent_cadence_next_step_due_date__c": {"name": "salesloft1__most_recent_cadence_next_step_due_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_last_completed_step__c": {"name": "salesloft1__most_recent_last_completed_step__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "salesloft1__most_recent_cadence_name__c": {"name": "salesloft1__most_recent_cadence_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "interested_in_subscription__c": {"name": "interested_in_subscription__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mql_motion__c": {"name": "mql_motion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_referral_via_the_portal__c": {"name": "last_referral_via_the_portal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_login__c": {"name": "last_login__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_login__c": {"name": "previous_login__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_login__c": {"name": "first_login__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_role_primary__c": {"name": "contact_role_primary__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pe_reassignment_date__c": {"name": "pe_reassignment_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_account_territory__c": {"name": "new_account_territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_is_primary_sms__c": {"name": "contact_is_primary_sms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "last_campaign_engagement_date__c": {"name": "last_campaign_engagement_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_id__c": {"name": "zuora_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_estimated_monthly_orders__c": {"name": "sales_estimated_monthly_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.contact", "created_at": 1700082693.686516}, "source.yoda.analytics__salesforce.partner_referral__c_full": {"database": null, "schema": "salesforce", "name": "partner_referral__c_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.partner_referral__c_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "partner_referral__c_full"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "partner_referral__c_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"Account_Referrer_Type__c": {"name": "Account_Referrer_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Additional_Context__c": {"name": "Additional_Context__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Agency_Involvement_Throughout_Deployment__c": {"name": "Agency_Involvement_Throughout_Deployment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Annual_Revenue_Referred_Lead_Account__c": {"name": "Annual_Revenue_Referred_Lead_Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CS_Tags__c": {"name": "CS_Tags__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedById": {"name": "CreatedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Date_Changed_From_Heads_Up__c": {"name": "Date_Changed_From_Heads_Up__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Days_Until_Heads_Up_Change__c": {"name": "Days_Until_Heads_Up_Change__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Id": {"name": "Id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Imported_Datafix__c": {"name": "Imported_Datafix__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Include_Renewals__c": {"name": "Include_Renewals__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsDeleted": {"name": "IsDeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "LastActivityDate": {"name": "LastActivityDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedById": {"name": "LastModifiedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastReferencedDate": {"name": "LastReferencedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastViewedDate": {"name": "LastViewedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Managed_Services_Agency__c": {"name": "Managed_Services_Agency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Monthly_Budget__c": {"name": "Monthly_Budget__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "My_PE__c": {"name": "My_PE__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_Referrer_Owner_New__c": {"name": "Original_Referrer_Owner_New__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Original_Referrer_Owner__c": {"name": "Original_Referrer_Owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Outbound_Referral_Status__c": {"name": "Outbound_Referral_Status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "OwnerId": {"name": "OwnerId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "PM_Role__c": {"name": "PM_Role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Account_Community_Acc_Help__c": {"name": "Partner_Account_Community_Acc_Help__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Partner_Account__c": {"name": "Partner_Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Contact__c": {"name": "Partner_Contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Involvement_in_Onboarding__c": {"name": "Partner_Involvement_in_Onboarding__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Manger__c": {"name": "Partner_Manger__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Marketing_Campaign__c": {"name": "Partner_Marketing_Campaign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Owner__c": {"name": "Partner_Owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Referral_ID_18_Digit__c": {"name": "Partner_Referral_ID_18_Digit__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Partner_Upsell__c": {"name": "Partner_Upsell__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Partner_name_text__c": {"name": "Partner_name_text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Phase_2_Date__c": {"name": "Phase_2_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Phase_2_Notes__c": {"name": "Phase_2_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Phase_2_Product_Interest__c": {"name": "Phase_2_Product_Interest__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Platforms_Considering__c": {"name": "Platforms_Considering__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Interest__c": {"name": "Product_Interest__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Claim_Duration__c": {"name": "Referral_Claim_Duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Claim_Period_End_Date__c": {"name": "Referral_Claim_Period_End_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Date__c": {"name": "Referral_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Notes__c": {"name": "Referral_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Source__c": {"name": "Referral_Source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Sub_Type__c": {"name": "Referral_Sub_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referral_Type__c": {"name": "Referral_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Account__c": {"name": "Referred_Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_By_Email_Partner_Referral_Form__c": {"name": "Referred_By_Email_Partner_Referral_Form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_By_Partner_Referral_Form__c": {"name": "Referred_By_Partner_Referral_Form__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Contact__c": {"name": "Referred_Contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Account_Owner__c": {"name": "Referred_Lead_Account_Owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Account_Status__c": {"name": "Referred_Lead_Account_Status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Account__c": {"name": "Referred_Lead_Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Contact_Annual_Revenue__c": {"name": "Referred_Lead_Contact_Annual_Revenue__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Contact_Monthly_Orders__c": {"name": "Referred_Lead_Contact_Monthly_Orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead_Contact_Platform__c": {"name": "Referred_Lead_Contact_Platform__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_Lead__c": {"name": "Referred_Lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_lead_Account_Name_Text__c": {"name": "Referred_lead_Account_Name_Text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Referred_to_Growth__c": {"name": "Referred_to_Growth__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Renewal_Rev_Share_Rate__c": {"name": "Renewal_Rev_Share_Rate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Rev_Share_Rate__c": {"name": "Rev_Share_Rate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Solution_Needed__c": {"name": "Solution_Needed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SystemModstamp": {"name": "SystemModstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Trigger_Notification__c": {"name": "Trigger_Notification__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.partner_referral__c_full", "created_at": 1700082693.6869376}, "source.yoda.analytics__salesforce.task": {"database": null, "schema": "salesforce", "name": "task", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.task", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "task"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "task", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activitydate": {"name": "activitydate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activity_id_18_digit__c": {"name": "activity_id_18_digit__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_event_stage__c": {"name": "agency_event_stage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "automate_lead_status_hidden_field__c": {"name": "automate_lead_status_hidden_field__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "booked_by_prospect_c__c": {"name": "booked_by_prospect_c__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "call_status__c": {"name": "call_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completion__c": {"name": "completion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "connected_count__c": {"name": "connected_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_role__c": {"name": "created_by_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_flow__c": {"name": "created_by_flow__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "created_by_me__c": {"name": "created_by_me__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_assignment__c": {"name": "demo_assignment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_cancellation_reason__c": {"name": "demo_cancellation_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_status__c": {"name": "demo_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_approval_status__c": {"name": "demo_approval_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "during_dst__c": {"name": "during_dst__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "gong__gong_selected_process__c": {"name": "gong__gong_selected_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isarchived": {"name": "isarchived", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isclosed": {"name": "isclosed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishighpriority": {"name": "ishighpriority", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isrecurrence": {"name": "isrecurrence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreminderset": {"name": "isreminderset", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvisibleinselfservice": {"name": "isvisibleinselfservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_task_from_external_system__c": {"name": "is_task_from_external_system__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_modified_date_for_report__c": {"name": "last_modified_date_for_report__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_lookup__c": {"name": "lead_lookup__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "live_transfer_sdr__c": {"name": "live_transfer_sdr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "medium__c": {"name": "medium__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "on_opp__c": {"name": "on_opp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ownerid": {"name": "ownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phase__c": {"name": "phase__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priority": {"name": "priority", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_shown__c": {"name": "products_shown__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recordtypeid": {"name": "recordtypeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reminderdatetime": {"name": "reminderdatetime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reschedule__c": {"name": "reschedule__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sdr_role__c": {"name": "sdr_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_role_old__c": {"name": "sdr_role_old__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr__c": {"name": "sdr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_demo_feedback__c": {"name": "sales_demo_feedback__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "selected_product_for_lead_conversion__c": {"name": "selected_product_for_lead_conversion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "social_activity__c": {"name": "social_activity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subject": {"name": "subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tasksubtype": {"name": "tasksubtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "task_completion_date__c": {"name": "task_completion_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "task_creation_time_bucket__c": {"name": "task_creation_time_bucket__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "task_creation_time__c": {"name": "task_creation_time__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "voicemail_count__c": {"name": "voicemail_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "whatid": {"name": "whatid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "whoid": {"name": "whoid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswareiscampaign__c": {"name": "yeswareiscampaign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yeswareismailmerge__c": {"name": "yeswareismailmerge__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_activitytype__c": {"name": "yesware_activitytype__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_activity_time__c": {"name": "yesware_activity_time__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_bounce__c": {"name": "yesware_bounce__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_connectcall__c": {"name": "yesware_connectcall__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_day__c": {"name": "yesware_day__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_link_click__c": {"name": "yesware_link_click__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_meeting__c": {"name": "yesware_meeting__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_open__c": {"name": "yesware_open__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_reply__c": {"name": "yesware_reply__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_sent__c": {"name": "yesware_sent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yesware_subject__c": {"name": "yesware_subject__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_template__c": {"name": "yesware_template__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_totalcall__c": {"name": "yesware_totalcall__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "calldurationinseconds": {"name": "calldurationinseconds", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "calltype": {"name": "calltype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloftreplycount__c": {"name": "salesloftreplycount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "salesloft_cadence_id__c": {"name": "salesloft_cadence_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_cadence_name__c": {"name": "salesloft_cadence_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_clicked_count__c": {"name": "salesloft_clicked_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "salesloft_email_template_id__c": {"name": "salesloft_email_template_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_email_template_title__c": {"name": "salesloft_email_template_title__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_day_new__c": {"name": "salesloft_step_day_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "salesloft_step_id__c": {"name": "salesloft_step_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_name__c": {"name": "salesloft_step_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_type__c": {"name": "salesloft_step_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_viewed_count__c": {"name": "salesloft_viewed_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unique_click_count__c": {"name": "unique_click_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unique_reply_count__c": {"name": "unique_reply_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unique_view_count__c": {"name": "unique_view_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yeswarecampaignid__c": {"name": "yeswarecampaignid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yeswarecampaignname__c": {"name": "yeswarecampaignname__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswarecampaigntotaltouches__c": {"name": "yeswarecampaigntotaltouches__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yeswarecampaigntouchnumber__c": {"name": "yeswarecampaigntouchnumber__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yeswarecampaigntouchtype__c": {"name": "yeswarecampaigntouchtype__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswaretemplateids__c": {"name": "yeswaretemplateids__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswaretemplatenames__c": {"name": "yeswaretemplatenames__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_emailtype__c": {"name": "yesware_emailtype__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "medium_type__c": {"name": "medium_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discovery_call_account_name__c": {"name": "discovery_call_account_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discovery_call_contact_name__c": {"name": "discovery_call_contact_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswaremailmergename__c": {"name": "yeswaremailmergename__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "considering_replatforming_in_12_months__c": {"name": "considering_replatforming_in_12_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_topics_discussed__c": {"name": "sms_topics_discussed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id__c": {"name": "sms_user_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "call_sentiment__c": {"name": "call_sentiment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "call_disposition__c": {"name": "call_disposition__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_considering__c": {"name": "platform_considering__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "re_platform_notes__c": {"name": "re_platform_notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "calldisposition": {"name": "calldisposition", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "callobject": {"name": "callobject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__call_unique_id__c": {"name": "rcsfl__call_unique_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__rc_logging_type__c": {"name": "rcsfl__rc_logging_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__external_whoid__c": {"name": "rcsfl__external_whoid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__call_recording__c": {"name": "rcsfl__call_recording__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rcsfl__recording_information__c": {"name": "rcsfl__recording_information__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrenceactivityid": {"name": "recurrenceactivityid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencedayofmonth": {"name": "recurrencedayofmonth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrencedayofweekmask": {"name": "recurrencedayofweekmask", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrenceenddateonly": {"name": "recurrenceenddateonly", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrenceinterval": {"name": "recurrenceinterval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrencestartdateonly": {"name": "recurrencestartdateonly", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencetimezonesidkey": {"name": "recurrencetimezonesidkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencetype": {"name": "recurrencetype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completeddatetime": {"name": "completeddatetime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "whatcount": {"name": "whatcount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "whocount": {"name": "whocount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "main_goal__c": {"name": "main_goal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "canceled_cp__c": {"name": "canceled_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "no_show_cp__c": {"name": "no_show_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "salesloft1__call_duration_in_minutes__c": {"name": "salesloft1__call_duration_in_minutes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__salesloft_type__c": {"name": "salesloft1__salesloft_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "presentation_link__c": {"name": "presentation_link__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_qbr__c": {"name": "last_qbr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "labsactionplans__taskaptask__c": {"name": "labsactionplans__taskaptask__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.task", "created_at": 1700082693.6877203}, "source.yoda.analytics__salesforce.datedconversionrate": {"database": null, "schema": "salesforce", "name": "datedconversionrate", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.datedconversionrate", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "datedconversionrate"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "datedconversionrate", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "conversionrate": {"name": "conversionrate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isocode": {"name": "isocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nextstartdate": {"name": "nextstartdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "startdate": {"name": "startdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.datedconversionrate", "created_at": 1700082693.687971}, "source.yoda.analytics__salesforce.case_full": {"database": null, "schema": "salesforce", "name": "case_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.case_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "case_full"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "case_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"AccountId": {"name": "AccountId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bug_Actual_TTR__c": {"name": "Bug_Actual_TTR__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Bug_Fix_Due_Date_Initial__c": {"name": "Bug_Fix_Due_Date_Initial__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bug_Fix_Due_Date__c": {"name": "Bug_Fix_Due_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bug_Number__c": {"name": "Bug_Number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bug_Status__c": {"name": "Bug_Status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Bug_number_days_in_delay_timer__c": {"name": "Bug_number_days_in_delay_timer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CaseNumber": {"name": "CaseNumber", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Case_Group__c": {"name": "Case_Group__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Case_Score__c": {"name": "Case_Score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Case_Team_Formula__c": {"name": "Case_Team_Formula__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Case_Team__c": {"name": "Case_Team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ClosedDate": {"name": "ClosedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Counter_Agent_Replies__c": {"name": "Counter_Agent_Replies__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Counter_Total_Replies__c": {"name": "Counter_Total_Replies__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "CreatedDate": {"name": "CreatedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "De_escalated_At__c": {"name": "De_escalated_At__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Description": {"name": "Description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Escalated_to_Tier_2_at__c": {"name": "Escalated_to_Tier_2_at__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Escalation_Severity__c": {"name": "Escalation_Severity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Escalation_Type__c": {"name": "Escalation_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Feature__c": {"name": "Feature__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "First_Response_Date__c": {"name": "First_Response_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Id": {"name": "Id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Incident__c": {"name": "Incident__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Inquiry_Type__c": {"name": "Inquiry_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsClosed": {"name": "IsClosed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "IsDeleted": {"name": "IsDeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "IsEscalated": {"name": "IsEscalated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Live_Chat_End_Date__c": {"name": "Live_Chat_End_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Live_Chat_Start_Date__c": {"name": "Live_Chat_Start_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Organization_Key__c": {"name": "Organization_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Origin": {"name": "Origin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Line__c": {"name": "Product_Line__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "RecordTypeId": {"name": "RecordTypeId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Requester_Email__c": {"name": "Requester_Email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SE_Time_in_Pending_R_D_hr__c": {"name": "SE_Time_in_Pending_R_D_hr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Severity_Score__c": {"name": "Severity_Score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Snapshot_Customer_Segment__c": {"name": "Snapshot_Customer_Segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Status": {"name": "Status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Store_App_Key_Text__c": {"name": "Store_App_Key_Text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Subject": {"name": "Subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Survey_Response_Date__c": {"name": "Survey_Response_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Survey_Score__c": {"name": "Survey_Score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "SystemModstamp": {"name": "SystemModstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Tier_2_First_Response_Date__c": {"name": "Tier_2_First_Response_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Time_to_First_Response_Tier_2_Min__c": {"name": "Time_to_First_Response_Tier_2_Min__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Time_to_First_Response__c": {"name": "Time_to_First_Response__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Time_to_Resolution__c": {"name": "Time_to_Resolution__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Requester_Wait_Time_T1__c": {"name": "Timer_Requester_Wait_Time_T1__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Requester_Wait_Time_T2__c": {"name": "Timer_Requester_Wait_Time_T2__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Requester_Wait_Time__c": {"name": "Timer_Requester_Wait_Time__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_T1_Net_Support_RWT__c": {"name": "Timer_T1_Net_Support_RWT__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_T2_Net_Support_RWT__c": {"name": "Timer_T2_Net_Support_RWT__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Time_In_Development__c": {"name": "Timer_Time_In_Development__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Time_In_Pending_CSM__c": {"name": "Timer_Time_In_Pending_CSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Timer_Time_in_P_Escalation_hr__c": {"name": "Timer_Time_in_P_Escalation_hr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Topic__c": {"name": "Topic__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.case_full", "created_at": 1700082693.6884646}, "source.yoda.analytics__salesforce.account_product__c_full": {"database": null, "schema": "salesforce", "name": "account_product__c_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.account_product__c_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "account_product__c_full"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "account_product__c_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"ACV_USD__c": {"name": "ACV_USD__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ACV__c": {"name": "ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Account_Product_CSM_Role__c": {"name": "Account_Product_CSM_Role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Product_CSM_Team__c": {"name": "Account_Product_CSM_Team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account__c": {"name": "Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_s_Product_CSM_Is_LT_SCSM__c": {"name": "Account_s_Product_CSM_Is_LT_SCSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Contract_Renewal_Date__c": {"name": "Contract_Renewal_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CurrencyIsoCode": {"name": "CurrencyIsoCode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_Contract__c": {"name": "Current_Contract__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Current_Usage_Commitment_Credits_Spent__c": {"name": "Current_Usage_Commitment_Credits_Spent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Current_Usage_Commitment_Term_End_Date__c": {"name": "Current_Usage_Commitment_Term_End_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_Usage_Commitment_Term_Start_Date__c": {"name": "Current_Usage_Commitment_Term_Start_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_Usage_Commitment_Term__c": {"name": "Current_Usage_Commitment_Term__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Current_Usage_Commitment_Value__c": {"name": "Current_Usage_Commitment_Value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Date_of_Live_on_Site_Loyalty__c": {"name": "Date_of_Live_on_Site_Loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Days_Until_Contract_Renewal__c": {"name": "Days_Until_Contract_Renewal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Delta_Current_Commitment__c": {"name": "Delta_Current_Commitment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Has_Met_Current_Usage_Commitment__c": {"name": "Has_Met_Current_Usage_Commitment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Id": {"name": "Id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Initially_Won_Opportunity__c": {"name": "Initially_Won_Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Initially_Won_Self_Service_Opportunity__c": {"name": "Initially_Won_Self_Service_Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsDeleted": {"name": "IsDeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Live_Date__c": {"name": "Live_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Live_on_Site_Loyalty__c": {"name": "Live_on_Site_Loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Main_Product_Families__c": {"name": "Main_Product_Families__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Number_of_OB__c": {"name": "Number_of_OB__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Onboarding_Completion_Date__c": {"name": "Onboarding_Completion_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Onboarding_Manager_CSM_Team__c": {"name": "Onboarding_Manager_CSM_Team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Onboarding_Manager__c": {"name": "Onboarding_Manager__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Conversion_Rate__c": {"name": "Opportunity_Conversion_Rate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Opportunity_Start_Date__c": {"name": "Opportunity_Start_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Type__c": {"name": "Opportunity_Type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity__c": {"name": "Opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Initial_Won_Date_Self_Service__c": {"name": "Product_Initial_Won_Date_Self_Service__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Initial_Won_Date__c": {"name": "Product_Initial_Won_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Line__c": {"name": "Product_Line__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product__c": {"name": "Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Stage__c": {"name": "Stage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Strategic_Priority_Account__c": {"name": "Strategic_Priority_Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Super_CSM_Account_Product__c": {"name": "Super_CSM_Account_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SystemModstamp": {"name": "SystemModstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.account_product__c_full", "created_at": 1700082693.6888049}, "source.yoda.analytics__salesforce.onboarding_project__c_full": {"database": null, "schema": "salesforce", "name": "onboarding_project__c_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.onboarding_project__c_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "onboarding_project__c_full"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "onboarding_project__c_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"APP_Key__c": {"name": "APP_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_ID__c": {"name": "Account_ID__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Name__c": {"name": "Account_Name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Product_Currency__c": {"name": "Account_Product_Currency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account_Product__c": {"name": "Account_Product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Account__c": {"name": "Account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Actual_Duration_NET__c": {"name": "Actual_Duration_NET__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Agency__c": {"name": "Agency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Assign_SE__c": {"name": "Assign_SE__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CSM_Email__c": {"name": "CSM_Email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CSM__c": {"name": "CSM__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CS_Segment__c": {"name": "CS_Segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Cancelled_Date__c": {"name": "Cancelled_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Cases_Report__c": {"name": "Cases_Report__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Complexity_Score__c": {"name": "Complexity_Score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Contract_Start_Date__c": {"name": "Contract_Start_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedById": {"name": "CreatedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "CreatedDate": {"name": "CreatedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Customer_Care_OB_project__c": {"name": "Customer_Care_OB_project__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Customization_Level__c": {"name": "Customization_Level__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Date_onboarding_completed__c": {"name": "Date_onboarding_completed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Days_Since_Onboarding_Creation__c": {"name": "Days_Since_Onboarding_Creation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Days_since_start_date__c": {"name": "Days_since_start_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Domain__c": {"name": "Domain__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Duration_SE_Kickoff_to_Completion__c": {"name": "Duration_SE_Kickoff_to_Completion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Gross_duration__c": {"name": "Gross_duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Headless_platform__c": {"name": "Headless_platform__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Id": {"name": "Id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "IsDeleted": {"name": "IsDeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Is_Owner_is_the_current_User__c": {"name": "Is_Owner_is_the_current_User__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "KOC_Date__c": {"name": "KOC_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedById": {"name": "LastModifiedById", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "LastModifiedDate": {"name": "LastModifiedDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Merchant_Id__c": {"name": "Merchant_Id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Multi_Store__c": {"name": "Multi_Store__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Multi_product__c": {"name": "Multi_product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Name": {"name": "Name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Net_duration__c": {"name": "Net_duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Number_Of_Domains__c": {"name": "Number_Of_Domains__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Onboarding_Manager_CSM_Team__c": {"name": "Onboarding_Manager_CSM_Team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Onboarding_completed__c": {"name": "Onboarding_completed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Onboarding_duration__c": {"name": "Onboarding_duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Onboarding_start_date__c": {"name": "Onboarding_start_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Opportunity_Package__c": {"name": "Opportunity_Package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Organization_Key__c": {"name": "Organization_Key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Owner_Role__c": {"name": "Owner_Role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Owner__c": {"name": "Owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Paused_Duration__c": {"name": "Paused_Duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Platform__c": {"name": "Platform__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Process_Paused_Date__c": {"name": "Process_Paused_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Process_Resumed_Date__c": {"name": "Process_Resumed_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Product_Line_ACV__c": {"name": "Product_Line_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Product_Line__c": {"name": "Product_Line__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Proejct_Actual_duration_gross_Days__c": {"name": "Proejct_Actual_duration_gross_Days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Project_Completion_Date__c": {"name": "Project_Completion_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Project_Due_Date__c": {"name": "Project_Due_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Project_Planned_Duration_Days__c": {"name": "Project_Planned_Duration_Days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Project_Start_Date__c": {"name": "Project_Start_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Red_Flag_Date__c": {"name": "Red_Flag_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Red_Flag_Reason__c": {"name": "Red_Flag_Reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Red_flag_Bucket__c": {"name": "Red_flag_Bucket__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Red_flag_Notes__c": {"name": "Red_flag_Notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SE_Needed__c": {"name": "SE_Needed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "Stage__c": {"name": "Stage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "SystemModstamp": {"name": "SystemModstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Target_Launch_Date__c": {"name": "Target_Launch_Date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "The_Reason_for_the_onboarding__c": {"name": "The_Reason_for_the_onboarding__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "Total_ACV__c": {"name": "Total_ACV__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "Total_Score__c": {"name": "Total_Score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "X18_Digits_Id__c": {"name": "X18_Digits_Id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rn": {"name": "rn", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.onboarding_project__c_full", "created_at": 1700082693.6892076}, "source.yoda.analytics__salesforce.custom_field_history_tracking__c": {"database": null, "schema": "salesforce", "name": "custom_field_history_tracking__c", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.custom_field_history_tracking__c", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "custom_field_history_tracking__c"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "custom_field_history_tracking__c", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account__c": {"name": "account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action__c": {"name": "action__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_value__c": {"name": "new_value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_value__c": {"name": "old_value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_object_id__c": {"name": "parent_object_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_name__c": {"name": "object_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "count__c": {"name": "count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "on_creation__c": {"name": "on_creation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "onboarding_project__c": {"name": "onboarding_project__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_prediction__c": {"name": "opportunity_prediction__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "record_count__c": {"name": "record_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "spend_time__c": {"name": "spend_time__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date__c": {"name": "start_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ticket__c": {"name": "ticket__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "end_date__c": {"name": "end_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_record__c": {"name": "previous_record__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_record_id__c": {"name": "parent_record_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "changed_field_name__c": {"name": "changed_field_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_services__c": {"name": "delivery_services__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "spend_time_number__c": {"name": "spend_time_number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "error_message__c": {"name": "error_message__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "case__c": {"name": "case__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.custom_field_history_tracking__c", "created_at": 1700082693.6896405}, "source.yoda.analytics__salesforce.opportunityfieldhistory": {"database": null, "schema": "salesforce", "name": "opportunityfieldhistory", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce.opportunityfieldhistory", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce", "opportunityfieldhistory"], "source_name": "analytics__salesforce", "source_description": "", "loader": "", "identifier": "opportunityfieldhistory", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "d": {"name": "d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "_sdc_batched_at": {"name": "_sdc_batched_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_extracted_at": {"name": "_sdc_extracted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_received_at": {"name": "_sdc_received_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_sdc_sequence": {"name": "_sdc_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "_sdc_table_version": {"name": "_sdc_table_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "field": {"name": "field", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "newvalue": {"name": "newvalue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oldvalue": {"name": "oldvalue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunityid": {"name": "opportunityid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "datatype": {"name": "datatype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce.opportunityfieldhistory", "created_at": 1700082693.689873}, "source.yoda.analytics__default.dim_sf_campaign_member_mapping": {"database": null, "schema": "default", "name": "dim_sf_campaign_member_mapping", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__default.dim_sf_campaign_member_mapping", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__default", "dim_sf_campaign_member_mapping"], "source_name": "analytics__default", "source_description": "", "loader": "", "identifier": "dim_sf_campaign_member_mapping", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"campaign_member_mapping_id": {"name": "campaign_member_mapping_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_campaign_id": {"name": "sf_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "who_id": {"name": "who_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "who_type": {"name": "who_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_member_status": {"name": "campaign_member_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_member_mapping_created_at": {"name": "campaign_member_mapping_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "campaign_member_mapping_updated_at": {"name": "campaign_member_mapping_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "campaign_member_mapping_created_by_sf_user_gk": {"name": "campaign_member_mapping_created_by_sf_user_gk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "campaign_member_mapping_created_by_sf_user_id": {"name": "campaign_member_mapping_created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_member_mapping_updated_by_sf_user_gk": {"name": "campaign_member_mapping_updated_by_sf_user_gk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "campaign_member_mapping_updated_by_sf_user_id": {"name": "campaign_member_mapping_updated_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_responded_by_member_date": {"name": "first_responded_by_member_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "is_responded_by_member": {"name": "is_responded_by_member", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "campagin_member_added_at": {"name": "campagin_member_added_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics", "salesforce"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics", "salesforce"]}, "relation_name": "default.dim_sf_campaign_member_mapping", "created_at": 1700082693.6901507}, "source.yoda.analytics__default.dim_sf_users_scd": {"database": null, "schema": "default", "name": "dim_sf_users_scd", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__default.dim_sf_users_scd", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__default", "dim_sf_users_scd"], "source_name": "analytics__default", "source_description": "", "loader": "", "identifier": "dim_sf_users_scd", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"sf_user_gk": {"name": "sf_user_gk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "sf_user_id": {"name": "sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_name": {"name": "sf_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_last_name": {"name": "sf_user_last_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_first_name": {"name": "sf_user_first_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_full_name": {"name": "sf_user_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_title": {"name": "sf_user_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_email": {"name": "sf_user_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_role": {"name": "sf_user_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_role_id": {"name": "sf_user_role_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sales_rep_role": {"name": "is_sales_rep_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_partner_role": {"name": "is_partner_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sf_user_alias": {"name": "sf_user_alias", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_sf_user_id": {"name": "manager_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_full_name": {"name": "manager_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "second_level_manager_sf_user_id": {"name": "second_level_manager_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "second_level_manager_full_name": {"name": "second_level_manager_full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_is_active": {"name": "sf_user_is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sf_user_last_login_date": {"name": "sf_user_last_login_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sf_user_created_at": {"name": "sf_user_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sf_user_updated_at": {"name": "sf_user_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sf_user_created_by_sf_user_id": {"name": "sf_user_created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sf_user_updated_by_sf_user_id": {"name": "sf_user_updated_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_time": {"name": "from_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "scd_cur_ind": {"name": "scd_cur_ind", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "sf_user_location": {"name": "sf_user_location", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_super_csm": {"name": "is_super_csm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "csm_team": {"name": "csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_exclude_from_tracking": {"name": "is_exclude_from_tracking", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_marketing_activity_user": {"name": "is_marketing_activity_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_integration": {"name": "is_integration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "queue_type": {"name": "queue_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_queue": {"name": "is_queue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_created_at": {"name": "dwh_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics", "salesforce"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics", "salesforce"]}, "relation_name": "default.dim_sf_users_scd", "created_at": 1700082693.6904433}, "source.yoda.analytics__static.salesforce_object_prefix_id": {"database": null, "schema": "static", "name": "salesforce_object_prefix_id", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__static.salesforce_object_prefix_id", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__static", "salesforce_object_prefix_id"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "salesforce_object_prefix_id", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id_prefix": {"name": "id_prefix", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_name": {"name": "object_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics", "salesforce"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics", "salesforce"]}, "relation_name": "static.salesforce_object_prefix_id", "created_at": 1700082693.6906338}, "source.yoda.analytics__static.fact_account_profile_daily": {"database": null, "schema": "static", "name": "fact_account_profile_daily", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__static.fact_account_profile_daily", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__static", "fact_account_profile_daily"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "fact_account_profile_daily", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name": {"name": "account_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_id": {"name": "loyalty_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_name": {"name": "loyalty_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_team": {"name": "loyalty_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_id": {"name": "ugc_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_name": {"name": "ugc_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_team": {"name": "ugc_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_id": {"name": "sms_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_name": {"name": "sms_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_team": {"name": "sms_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_id": {"name": "primary_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_name": {"name": "primary_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team": {"name": "primary_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_strategist_id": {"name": "sms_strategist_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_strategist_name": {"name": "sms_strategist_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_strategist_team": {"name": "sms_strategist_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_csm_id": {"name": "subscription_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptions_csm_name": {"name": "subscriptions_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptions_csm_team": {"name": "subscriptions_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_csm_id": {"name": "email_csm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_csm_name": {"name": "email_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_csm_team": {"name": "email_csm_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics", "salesforce"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics", "salesforce"]}, "relation_name": "static.fact_account_profile_daily", "created_at": 1700082693.6908872}, "source.yoda.analytics__static.campaign_member_history_creation_records": {"database": null, "schema": "static", "name": "campaign_member_history_creation_records", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__static.campaign_member_history_creation_records", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__static", "campaign_member_history_creation_records"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "campaign_member_history_creation_records", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"parent_object_id": {"name": "parent_object_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "field_name": {"name": "field_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sf_event_id": {"name": "sf_event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_sf_user_id": {"name": "created_by_sf_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_value": {"name": "new_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics", "salesforce"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics", "salesforce"]}, "relation_name": "static.campaign_member_history_creation_records", "created_at": 1700082693.691082}, "source.yoda.analytics__salesforce_rivery.event": {"database": null, "schema": "salesforce_rivery", "name": "event", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce_rivery.event", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce_rivery", "event"], "source_name": "analytics__salesforce_rivery", "source_description": "", "loader": "", "identifier": "event", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "whoid": {"name": "whoid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "whatid": {"name": "whatid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "whocount": {"name": "whocount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "whatcount": {"name": "whatcount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "subject": {"name": "subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "location": {"name": "location", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isalldayevent": {"name": "isalldayevent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "activitydatetime": {"name": "activitydatetime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "activitydate": {"name": "activitydate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "durationinminutes": {"name": "durationinminutes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "startdatetime": {"name": "startdatetime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "enddatetime": {"name": "enddatetime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "enddate": {"name": "enddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isprivate": {"name": "isprivate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "showas": {"name": "showas", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ischild": {"name": "ischild", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isgroupevent": {"name": "isgroupevent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "groupeventtype": {"name": "groupeventtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "isarchived": {"name": "isarchived", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvisibleinselfservice": {"name": "isvisibleinselfservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recurrenceactivityid": {"name": "recurrenceactivityid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isrecurrence": {"name": "isrecurrence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recurrencestartdatetime": {"name": "recurrencestartdatetime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "recurrenceenddateonly": {"name": "recurrenceenddateonly", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencetimezonesidkey": {"name": "recurrencetimezonesidkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencetype": {"name": "recurrencetype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrenceinterval": {"name": "recurrenceinterval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrencedayofweekmask": {"name": "recurrencedayofweekmask", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrencedayofmonth": {"name": "recurrencedayofmonth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recurrenceinstance": {"name": "recurrenceinstance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrencemonthofyear": {"name": "recurrencemonthofyear", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reminderdatetime": {"name": "reminderdatetime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "isreminderset": {"name": "isreminderset", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "eventsubtype": {"name": "eventsubtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isrecurrence2exclusion": {"name": "isrecurrence2exclusion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recurrence2patterntext": {"name": "recurrence2patterntext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurrence2patternversion": {"name": "recurrence2patternversion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isrecurrence2": {"name": "isrecurrence2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isrecurrence2exception": {"name": "isrecurrence2exception", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recurrence2patternstartdate": {"name": "recurrence2patternstartdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "recurrence2patterntimezone": {"name": "recurrence2patterntimezone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__call_disposition__c": {"name": "salesloft1__call_disposition__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "del_yeswaretemplatenames__c": {"name": "del_yeswaretemplatenames__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswarecampaignid__c": {"name": "yeswarecampaignid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yeswarecampaignname__c": {"name": "yeswarecampaignname__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswarecampaigntotaltouches__c": {"name": "yeswarecampaigntotaltouches__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yeswarecampaigntouchnumber__c": {"name": "yeswarecampaigntouchnumber__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yeswarecampaigntouchtype__c": {"name": "yeswarecampaigntouchtype__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswareiscampaign__c": {"name": "yeswareiscampaign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "salesloft1__call_duration_in_minutes__c": {"name": "salesloft1__call_duration_in_minutes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__call_sentiment__c": {"name": "salesloft1__call_sentiment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phase__c": {"name": "phase__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_cadence_name__c": {"name": "salesloft1__salesloft_cadence_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_clicked_count__c": {"name": "salesloft1__salesloft_clicked_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__salesloft_email_template_title__c": {"name": "salesloft1__salesloft_email_template_title__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloftreplycount__c": {"name": "salesloftreplycount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft_cadence_id__c": {"name": "salesloft_cadence_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_cadence_name__c": {"name": "salesloft_cadence_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_clicked_count__c": {"name": "salesloft_clicked_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft_email_template_id__c": {"name": "salesloft_email_template_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_email_template_title__c": {"name": "salesloft_email_template_title__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_external_identifier__c": {"name": "salesloft_external_identifier__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_day_new__c": {"name": "salesloft_step_day_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft_step_id__c": {"name": "salesloft_step_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_name__c": {"name": "salesloft_step_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_step_type__c": {"name": "salesloft_step_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft_viewed_count__c": {"name": "salesloft_viewed_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "unique_click_count__c": {"name": "unique_click_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "unique_reply_count__c": {"name": "unique_reply_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "unique_view_count__c": {"name": "unique_view_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__salesloft_replies_count__c": {"name": "salesloft1__salesloft_replies_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_sdr_email__c": {"name": "last_sdr_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ae_email__c": {"name": "ae_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_step_day__c": {"name": "salesloft1__salesloft_step_day__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "canceled_cp__c": {"name": "canceled_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "no_show_cp__c": {"name": "no_show_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "rescheduled_cp__c": {"name": "rescheduled_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "response_schedule_cp__c": {"name": "response_schedule_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswareismailmerge__c": {"name": "yeswareismailmerge__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yeswaremailmergename__c": {"name": "yeswaremailmergename__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswaretemplateids__c": {"name": "yeswaretemplateids__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_activitytype__c": {"name": "yesware_activitytype__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "medium__c": {"name": "medium__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yeswaretemplatenames__c": {"name": "yeswaretemplatenames__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_activity_time__c": {"name": "yesware_activity_time__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "presentation_link__c": {"name": "presentation_link__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_call_duration_minutes__c": {"name": "yesware_call_duration_minutes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yesware_connectcall__c": {"name": "yesware_connectcall__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_day__c": {"name": "yesware_day__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "call_status__c": {"name": "call_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_status__c": {"name": "demo_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_modified_date_for_report__c": {"name": "last_modified_date_for_report__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "salesloft1__salesloft_type__c": {"name": "salesloft1__salesloft_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_event_stage__c": {"name": "agency_event_stage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_view_count__c": {"name": "salesloft1__salesloft_view_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "is_task_from_external_system__c": {"name": "is_task_from_external_system__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "activity_id_18_digit__c": {"name": "activity_id_18_digit__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "task_completion_date__c": {"name": "task_completion_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "demo_approval_status__c": {"name": "demo_approval_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gong__gong_selected_process__c": {"name": "gong__gong_selected_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_emailtype__c": {"name": "yesware_emailtype__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_meeting__c": {"name": "yesware_meeting__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_topics_discussed__c": {"name": "sms_topics_discussed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_connected_count__c": {"name": "salesloft1__salesloft_connected_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_by_role__c": {"name": "created_by_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr__c": {"name": "sdr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_unique_click_count__c": {"name": "salesloft1__salesloft_unique_click_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__salesloft_unique_reply_count__c": {"name": "salesloft1__salesloft_unique_reply_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "selected_product_for_lead_conversion__c": {"name": "selected_product_for_lead_conversion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demo_cancellation_reason__c": {"name": "demo_cancellation_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__salesloft_unique_view_count__c": {"name": "salesloft1__salesloft_unique_view_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yesware_open__c": {"name": "yesware_open__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "workspacename_cp__c": {"name": "workspacename_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "designated_assignee_cp__c": {"name": "designated_assignee_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_goal__c": {"name": "main_goal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_demo_feedback__c": {"name": "sales_demo_feedback__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "labsactionplans__taskaptask__c": {"name": "labsactionplans__taskaptask__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_qbr__c": {"name": "last_qbr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lead_lookup__c": {"name": "lead_lookup__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_flow__c": {"name": "created_by_flow__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "send_cp_slack_communication__c": {"name": "send_cp_slack_communication__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_reply__c": {"name": "yesware_reply__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yesware_sent__c": {"name": "yesware_sent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yesware_subject__c": {"name": "yesware_subject__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yesware_template__c": {"name": "yesware_template__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "yesware_totalcall__c": {"name": "yesware_totalcall__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "meeting_type_cp__c": {"name": "meeting_type_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "queue_name_cp__c": {"name": "queue_name_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "assigned_to_role__c": {"name": "assigned_to_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "router_name_cp__c": {"name": "router_name_cp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_shown__c": {"name": "products_shown__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "on_opp__c": {"name": "on_opp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "call_sentiment__c": {"name": "call_sentiment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_me__c": {"name": "created_by_me__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce_rivery.event", "created_at": 1700082693.6918461}, "source.yoda.analytics__salesforce_rivery.mql__c": {"database": null, "schema": "salesforce_rivery", "name": "mql__c", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce_rivery.mql__c", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce_rivery", "mql__c"], "source_name": "analytics__salesforce_rivery", "source_description": "", "loader": "", "identifier": "mql__c", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastactivitydate": {"name": "lastactivitydate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "contact_record__c": {"name": "contact_record__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "demand_gen_unit__c": {"name": "demand_gen_unit__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain__c": {"name": "domain__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_address__c": {"name": "email_address__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_record__c": {"name": "lead_record__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_country__c": {"name": "mql_country__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_reason__c": {"name": "most_recent_engagement_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_engagement_sub_reason__c": {"name": "most_recent_engagement_sub_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "prospect_fit_rank__c": {"name": "prospect_fit_rank__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment__c": {"name": "segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status_upon_creation__c": {"name": "status_upon_creation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory__c": {"name": "territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_date__c": {"name": "mql_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "activity_id__c": {"name": "activity_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date_of_first_activity__c": {"name": "date_of_first_activity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id__c": {"name": "user_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_product_preference__c": {"name": "mql_product_preference__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_bucket__c": {"name": "most_recent_assignment_bucket__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_reason__c": {"name": "most_recent_assignment_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_sub_reason__c": {"name": "most_recent_assignment_sub_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_category__c": {"name": "package_category__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_rad__c": {"name": "is_rad__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_self_service__c": {"name": "is_self_service__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sdr_owner__c": {"name": "sdr_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_touchpoints_before_nurturing__c": {"name": "number_of_touchpoints_before_nurturing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "time_to_first_response__c": {"name": "time_to_first_response__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lead_source__c": {"name": "lead_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "automation_created_by__c": {"name": "automation_created_by__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_touch_points__c": {"name": "number_of_touch_points__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_name__c": {"name": "account_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_swell_orders__c": {"name": "last_30_days_swell_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_30_days_orders_sms__c": {"name": "last_30_days_orders_sms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_30_days_orders__c": {"name": "last_30_days_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "orders_month_estimate__c": {"name": "orders_month_estimate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform__c": {"name": "platform__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_estimated_monthly_orders__c": {"name": "sales_estimated_monthly_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "similarweb_traffic_new__c": {"name": "similarweb_traffic_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yotpo_industry__c": {"name": "yotpo_industry__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sixsense_profile_fit__c": {"name": "sixsense_profile_fit__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_role__c": {"name": "owner_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_motion__c": {"name": "mql_motion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_manual_create__c": {"name": "mql_manual_create__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "territory_new__c": {"name": "territory_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_chili_piper__c": {"name": "created_by_chili_piper__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "product_qualified_lead__c": {"name": "product_qualified_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce_rivery.mql__c", "created_at": 1700082693.6923041}, "source.yoda.analytics__salesforce_rivery.mql__c_full": {"database": null, "schema": "salesforce_rivery", "name": "mql__c_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce_rivery.mql__c_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce_rivery", "mql__c_full"], "source_name": "analytics__salesforce_rivery", "source_description": "", "loader": "", "identifier": "mql__c_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lead_or_contact_current_territory__c": {"name": "lead_or_contact_current_territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory_new__c": {"name": "territory_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_by_chili_piper__c": {"name": "created_by_chili_piper__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "product_qualified_lead__c": {"name": "product_qualified_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce_rivery.mql__c_full", "created_at": 1700082693.6925175}, "source.yoda.analytics__salesforce_rivery.opportunity_full": {"database": null, "schema": "salesforce_rivery", "name": "opportunity_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce_rivery.opportunity_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce_rivery", "opportunity_full"], "source_name": "analytics__salesforce_rivery", "source_description": "", "loader": "", "identifier": "opportunity_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_in_sal__c": {"name": "days_in_sal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "user_id__c": {"name": "user_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key_account__c": {"name": "app_key_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_referrer__c": {"name": "account_referrer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "inherited_lead_source__c": {"name": "inherited_lead_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "acv_expectancy__c": {"name": "acv_expectancy__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referral_date__c": {"name": "referral_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_count__c": {"name": "opportunity_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referral_type__c": {"name": "referral_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ups_deal__c": {"name": "ups_deal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "deal_type_filter_gs__c": {"name": "deal_type_filter_gs__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gong__gong_count__c": {"name": "gong__gong_count__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "acv__c": {"name": "acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "platform__c": {"name": "platform__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "close_date_day_less_than_today_day__c": {"name": "close_date_day_less_than_today_day__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_from_last_activity__c": {"name": "days_from_last_activity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "actual_contract_duration__c": {"name": "actual_contract_duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_csm_super__c": {"name": "account_csm_super__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "conga_csm_notes__c": {"name": "conga_csm_notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "conga_seats_info__c": {"name": "conga_seats_info__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contains_dedicated_csm__c": {"name": "contains_dedicated_csm__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "standalone_insights__c": {"name": "standalone_insights__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_seats__c": {"name": "total_seats__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "csm_free_months_value__c": {"name": "csm_free_months_value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mkto_si__marketoanalyzer__c": {"name": "mkto_si__marketoanalyzer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opp_id_18_digit__c": {"name": "opp_id_18_digit__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "create_date_day_less_than_today_day__c": {"name": "create_date_day_less_than_today_day__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "owner_role_custom__c": {"name": "owner_role_custom__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mm_renewal_notification__c": {"name": "mm_renewal_notification__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "template_id__c": {"name": "template_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name__c": {"name": "account_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_acv__c": {"name": "new_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_duration_months__c": {"name": "contract_duration_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "parent_account__c": {"name": "parent_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tcv__c": {"name": "tcv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_name_formula__c": {"name": "account_name_formula__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sign_test_udi__c": {"name": "sign_test_udi__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_opportunity_package__c": {"name": "renewal_opportunity_package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "conga_payment_terms_days__c": {"name": "conga_payment_terms_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "conga_reminder__c": {"name": "conga_reminder__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "conga_remindin__c": {"name": "conga_remindin__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "csm_owner_role__c": {"name": "csm_owner_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_acv_usd__c": {"name": "new_acv_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sdr_role_old__c": {"name": "sdr_role_old__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_vs_include_review_requests__c": {"name": "estimated_vs_include_review_requests__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "full_duration_of_contract__c": {"name": "full_duration_of_contract__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dealhub_main_add_on_discount__c": {"name": "dealhub_main_add_on_discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "per_installment__c": {"name": "per_installment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_discount__c": {"name": "total_discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "conversion_rate__c": {"name": "conversion_rate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "conga_culture_currency__c": {"name": "conga_culture_currency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sla_status__c": {"name": "sla_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "acv_usd__c": {"name": "acv_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_per_installment_usd__c": {"name": "price_per_installment_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "auto_renewal_request_type__c": {"name": "auto_renewal_request_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "record_type_name__c": {"name": "record_type_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_tax_region__c": {"name": "zuora_tax_region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "template_id_test__c": {"name": "template_id_test__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_csm_free_days_scenario_price__c": {"name": "zuora_csm_free_days_scenario_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opportunity_age__c": {"name": "opportunity_age__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_renewal_date__c": {"name": "contract_renewal_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_contract__c": {"name": "current_contract__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "days_until_contract_renewal__c": {"name": "days_until_contract_renewal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_paid_by_ups__c": {"name": "total_paid_by_ups__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "visible_name_for_migration__c": {"name": "visible_name_for_migration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "commercial_contact_email__c": {"name": "commercial_contact_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "import_products_to_dealhub__c": {"name": "import_products_to_dealhub__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_acv__c": {"name": "yotpo_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_to_start_date__c": {"name": "days_to_start_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "auto_renewal_exclusion_reason__c": {"name": "auto_renewal_exclusion_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "include_exclude_from_auto_renewal_link__c": {"name": "include_exclude_from_auto_renewal_link__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "new_acv_swell__c": {"name": "new_acv_swell__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "new_acv_yotpo__c": {"name": "new_acv_yotpo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "auto_renewal_customer_choice__c": {"name": "auto_renewal_customer_choice__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date_week_day_name__c": {"name": "start_date_week_day_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actual_duration_new__c": {"name": "actual_duration_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mcv__c": {"name": "mcv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_free_months_value__c": {"name": "sales_free_months_value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "legal_entity__c": {"name": "legal_entity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "next_rounded_months_from_start_date__c": {"name": "next_rounded_months_from_start_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_address_valid__c": {"name": "account_address_valid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sync_error_reason__c": {"name": "zuora_sync_error_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_bill_cycle_day__c": {"name": "zuora_bill_cycle_day__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "won_opp__c": {"name": "won_opp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_duration_days__c": {"name": "contract_duration_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_period_type__c": {"name": "zuora_period_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_contract_duration__c": {"name": "zuora_contract_duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_payment_method__c": {"name": "zuora_payment_method__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_duration_for_billing_period__c": {"name": "zuora_duration_for_billing_period__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_discovery__c": {"name": "days_in_discovery__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_demo__c": {"name": "days_in_demo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_evaluation__c": {"name": "days_in_evaluation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_propose__c": {"name": "days_in_propose__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_contracting__c": {"name": "days_in_contracting__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_contract_signed__c": {"name": "days_in_contract_signed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "my_opp_sdr__c": {"name": "my_opp_sdr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sal_mtd__c": {"name": "sal_mtd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_communication_profile__c": {"name": "zuora_communication_profile__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_csm_id_helper__c": {"name": "relevant_csm_id_helper__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_free_month_scenario_price__c": {"name": "zuora_free_month_scenario_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "today_s_date__c": {"name": "today_s_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "no_touch_exclusion_reason__c": {"name": "no_touch_exclusion_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "remove_from_nt_process__c": {"name": "remove_from_nt_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sales_free_month_scenario_price__c": {"name": "zuora_sales_free_month_scenario_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "include_exclude_from_no_touch_link__c": {"name": "include_exclude_from_no_touch_link__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "which_renewal_process__c": {"name": "which_renewal_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "effective_date_free_months__c": {"name": "effective_date_free_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_discount_for_matan_and_adi__c": {"name": "total_discount_for_matan_and_adi__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "relevant_csm_for_cs_outreach_first_name__c": {"name": "relevant_csm_for_cs_outreach_first_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_accepted_date__c": {"name": "sales_accepted_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_master_opp_id__c": {"name": "account_master_opp_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sal__c": {"name": "sal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "previous_opp_package__c": {"name": "previous_opp_package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "previous_opp_total_discount__c": {"name": "previous_opp_total_discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_in_current_stage__c": {"name": "days_in_current_stage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_earr__c": {"name": "delta_earr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "partner_referral_referrer_type__c": {"name": "partner_referral_referrer_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_in_zuora__c": {"name": "account_in_zuora__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sales_free_days_scenario_price__c": {"name": "zuora_sales_free_days_scenario_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "prevent_sync__c": {"name": "prevent_sync__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "email_service_provider_esp__c": {"name": "email_service_provider_esp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sql_mtd__c": {"name": "sql_mtd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "opportunity_alert__c": {"name": "opportunity_alert__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "test_account__c": {"name": "test_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dealhub_salesallowlegacy__c": {"name": "dealhub_salesallowlegacy__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sales_free_month_price_customer__c": {"name": "zuora_sales_free_month_price_customer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_csm_free_month_price_ups__c": {"name": "zuora_csm_free_month_price_ups__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_csm_free_month_price_customer__c": {"name": "zuora_csm_free_month_price_customer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_sales_free_month_price_ups__c": {"name": "zuora_sales_free_month_price_ups__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end_date_finance__c": {"name": "end_date_finance__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delta_earr_subscriptions__c": {"name": "delta_earr_subscriptions__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reference_call__c": {"name": "reference_call__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "billing_contract_duration_days__c": {"name": "billing_contract_duration_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "start_date_difference_today__c": {"name": "start_date_difference_today__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "close_month__c": {"name": "close_month__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address_validation_needed__c": {"name": "address_validation_needed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hybrid_deal_ht_ss__c": {"name": "hybrid_deal_ht_ss__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "original_referrer_owner__c": {"name": "original_referrer_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "saas_csms_teams_upon_closed__c": {"name": "saas_csms_teams_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "saas_csms_upon_closed__c": {"name": "saas_csms_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_is_csm__c": {"name": "user_is_csm__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "user_is_from_csm_team__c": {"name": "user_is_from_csm_team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_usage_commitment_term_end_date__c": {"name": "current_usage_commitment_term_end_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "downgraded_package_price__c": {"name": "downgraded_package_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_ds_delta_acv__c": {"name": "total_ds_delta_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_acv_usd_loyalty__c": {"name": "delta_acv_usd_loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_acv_usd_sms__c": {"name": "delta_acv_usd_sms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delta_acv_usd_ugc__c": {"name": "delta_acv_usd_ugc__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_current_acv__c": {"name": "total_current_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_previous_acv__c": {"name": "total_previous_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "partner_involvement_in_onboarding__c": {"name": "partner_involvement_in_onboarding__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "agency_involvement_throughout_deployment__c": {"name": "agency_involvement_throughout_deployment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "additional_context__c": {"name": "additional_context__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_referrer_text__c": {"name": "original_referrer_text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_segment_old__c": {"name": "sales_segment_old__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_usage_commitment_term_start_date__c": {"name": "current_usage_commitment_term_start_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_referral_text__c": {"name": "partner_referral_text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delta_booking__c": {"name": "delta_booking__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "am_age__c": {"name": "am_age__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_earr_usd__c": {"name": "total_earr_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "seller_region__c": {"name": "seller_region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce_rivery.opportunity_full", "created_at": 1700082693.6932166}, "source.yoda.analytics__salesforce_rivery.opportunity": {"database": null, "schema": "salesforce_rivery", "name": "opportunity", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce_rivery.opportunity", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce_rivery", "opportunity"], "source_name": "analytics__salesforce_rivery", "source_description": "", "loader": "", "identifier": "opportunity", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recordtypeid": {"name": "recordtypeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stagename": {"name": "stagename", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "probability": {"name": "probability", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "closedate": {"name": "closedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nextstep": {"name": "nextstep", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "leadsource": {"name": "leadsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isclosed": {"name": "isclosed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "iswon": {"name": "iswon", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "forecastcategory": {"name": "forecastcategory", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "forecastcategoryname": {"name": "forecastcategoryname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaignid": {"name": "campaignid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hasopportunitylineitem": {"name": "hasopportunitylineitem", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pricebook2id": {"name": "pricebook2id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastactivitydate": {"name": "lastactivitydate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fiscal": {"name": "fiscal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contactid": {"name": "contactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "syncedquoteid": {"name": "syncedquoteid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hasopenactivity": {"name": "hasopenactivity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hasoverduetask": {"name": "hasoverduetask", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "activitymetricid": {"name": "activitymetricid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "activitymetricrollupid": {"name": "activitymetricrollupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_integration_error__c": {"name": "zuora_integration_error__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_intent__c": {"name": "email_intent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "why_lost__c": {"name": "why_lost__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "winback_reason__c": {"name": "winback_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelled_during_trial__c": {"name": "cancelled_during_trial__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "why_lost_description__c": {"name": "why_lost_description__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_from_opportunity__c": {"name": "account_from_opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date__c": {"name": "start_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_from_renewal_reminder__c": {"name": "exclude_from_renewal_reminder__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "value_proposition__c": {"name": "value_proposition__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "winback_notes__c": {"name": "winback_notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "winback_date__c": {"name": "winback_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active_subscription__c": {"name": "is_active_subscription__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "contract_duration__c": {"name": "contract_duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expiration_date__c": {"name": "expiration_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount__c": {"name": "discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "exclude_from_feedback_process__c": {"name": "exclude_from_feedback_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "package__c": {"name": "package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_included__c": {"name": "orders_included__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gong__currentgenerators__c": {"name": "gong__currentgenerators__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gong__deliveryinstallationstatus__c": {"name": "gong__deliveryinstallationstatus__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_comments__c": {"name": "order_comments__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "commercial_contact__c": {"name": "commercial_contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_internal_comments__c": {"name": "order_internal_comments__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gong__maincompetitors__c": {"name": "gong__maincompetitors__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_id__c": {"name": "lead_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gong__ordernumber__c": {"name": "gong__ordernumber__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_commitment_value__c": {"name": "sms_commitment_value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cancellation_date__c": {"name": "cancellation_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "insights_product_name__c": {"name": "insights_product_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr__c": {"name": "sdr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_commitment_term__c": {"name": "sms_commitment_term__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "retention_csm_free_days__c": {"name": "retention_csm_free_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_csm_free_days_delta__c": {"name": "zuora_csm_free_days_delta__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "prevent_downgrading__c": {"name": "prevent_downgrading__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "end_of_contract_extension_days__c": {"name": "end_of_contract_extension_days__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "optout_duration__c": {"name": "optout_duration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_period_charge_flag__c": {"name": "free_period_charge_flag__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tertiary_seller__c": {"name": "tertiary_seller__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_package_discount__c": {"name": "main_package_discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "retention_csm_free_months_reason__c": {"name": "retention_csm_free_months_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "retention_csm_free_months__c": {"name": "retention_csm_free_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_upsell__c": {"name": "partner_upsell__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "current_contact_role__c": {"name": "current_contact_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "decision_maker_job_title__c": {"name": "decision_maker_job_title__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "estimated_aov__c": {"name": "estimated_aov__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "follow_up_in__c": {"name": "follow_up_in__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "follow_up_date_2__c": {"name": "follow_up_date_2__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hidden_lost_reason_values__c": {"name": "hidden_lost_reason_values__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "strategic_investment__c": {"name": "strategic_investment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_updated_through_flow__c": {"name": "lost_updated_through_flow__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "monthly_budget__c": {"name": "monthly_budget__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "requested_feature__c": {"name": "requested_feature__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_competitor_price__c": {"name": "reviews_competitor_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_competitor__c": {"name": "reviews_competitor__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_willing_to_commit_of_months__c": {"name": "time_willing_to_commit_of_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vms_competitor_price__c": {"name": "vms_competitor_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vms_competitor__c": {"name": "vms_competitor__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "web_traffic__c": {"name": "web_traffic__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "why_bad_timing__c": {"name": "why_bad_timing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "end_of_contract_extension_month__c": {"name": "end_of_contract_extension_month__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_opportunity__c": {"name": "renewal_opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_activity_date__c": {"name": "last_activity_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "why_do_you_think_they_didn_t_respond__c": {"name": "why_do_you_think_they_didn_t_respond__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merged_contract__c": {"name": "merged_contract__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "initial_account_product_process__c": {"name": "initial_account_product_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "gong__trackingnumber__c": {"name": "gong__trackingnumber__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_main_add_on_list_price__c": {"name": "dealhub_main_add_on_list_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "owner_manager_email__c": {"name": "owner_manager_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pre_lost_status__c": {"name": "pre_lost_status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_id__c": {"name": "sdr_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_to__c": {"name": "bill_to__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_account_billing__c": {"name": "parent_account_billing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_ups_sales_free_months__c": {"name": "zuora_sync_ups_sales_free_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "next_contact_date__c": {"name": "next_contact_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upsell_opportunity__c": {"name": "upsell_opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "extra_domain_pricing__c": {"name": "extra_domain_pricing__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_estimated_subscribers__c": {"name": "sales_estimated_subscribers__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "num_of_extra_domain_products__c": {"name": "num_of_extra_domain_products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_usage_cancellation_date__c": {"name": "sms_usage_cancellation_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_ups_csm_free_months__c": {"name": "zuora_sync_ups_csm_free_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "push_as_new_sale__c": {"name": "push_as_new_sale__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "secondary_seller__c": {"name": "secondary_seller__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_iap_tier__c": {"name": "original_iap_tier__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secondary_seller_role__c": {"name": "secondary_seller_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "earr_usd__c": {"name": "earr_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end_date__c": {"name": "end_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_csm__c": {"name": "main_csm__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "law_reason__c": {"name": "law_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "include_mr__c": {"name": "include_mr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "usage_opportunity__c": {"name": "usage_opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "purchased_as_mr__c": {"name": "purchased_as_mr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "number_of_extra_domains__c": {"name": "number_of_extra_domains__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "original_referrer__c": {"name": "original_referrer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "added_extra_seats__c": {"name": "added_extra_seats__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "included_seats__c": {"name": "included_seats__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "no_dedicated_csm__c": {"name": "no_dedicated_csm__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "number_of_insights_products__c": {"name": "number_of_insights_products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ask_to_renew__c": {"name": "ask_to_renew__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "talk_to_csm__c": {"name": "talk_to_csm__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "exclude_from_auto_renewal_process__c": {"name": "exclude_from_auto_renewal_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "csm_team_leader__c": {"name": "csm_team_leader__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_owner_role__c": {"name": "original_owner_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_sdr_role__c": {"name": "original_sdr_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrer_owner__c": {"name": "referrer_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_demo_feedback__c": {"name": "sales_demo_feedback__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_quote_id__c": {"name": "dealhub_quote_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_rev_share_paid__c": {"name": "total_rev_share_paid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "initiate_rev_share_process_temp__c": {"name": "initiate_rev_share_process_temp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "winback_opportunity__c": {"name": "winback_opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "add_to_winback_process__c": {"name": "add_to_winback_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_estimated_monthly_orders__c": {"name": "sales_estimated_monthly_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_renewal_contact_name__c": {"name": "auto_renewal_contact_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "selected_product_for_lead_conversion__c": {"name": "selected_product_for_lead_conversion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_frequency__c": {"name": "billing_frequency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "duplicate_product_family__c": {"name": "duplicate_product_family__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "estimated_subscriptions_gmv__c": {"name": "estimated_subscriptions_gmv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dealhub_main_add_on_total_price__c": {"name": "dealhub_main_add_on_total_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "add_on_product__c": {"name": "add_on_product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "temporary_ar_process_include__c": {"name": "temporary_ar_process_include__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "estimated_review_requests_per_month__c": {"name": "estimated_review_requests_per_month__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "main_package_prodcut__c": {"name": "main_package_prodcut__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_marketing_earr__c": {"name": "email_marketing_earr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "number_of_add_ons__c": {"name": "number_of_add_ons__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "number_of_main_products__c": {"name": "number_of_main_products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opp_products_contain_discount__c": {"name": "opp_products_contain_discount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sum_of_sales_price__c": {"name": "sum_of_sales_price__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rev_share_rate__c": {"name": "rev_share_rate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_refund_required__c": {"name": "customer_refund_required__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "good_fit_for_the_annual_plan_opp__c": {"name": "good_fit_for_the_annual_plan_opp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "change_currency_flag__c": {"name": "change_currency_flag__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "conversion_rate_raw__c": {"name": "conversion_rate_raw__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sales_enginieer__c": {"name": "sales_enginieer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoices_in_dunning__c": {"name": "invoices_in_dunning__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_invoice_fully_paid__c": {"name": "last_invoice_fully_paid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ps_products_flag__c": {"name": "ps_products_flag__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "omnichannel_deal__c": {"name": "omnichannel_deal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "number_of_professional_services__c": {"name": "number_of_professional_services__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "number_of_whitelabel_products__c": {"name": "number_of_whitelabel_products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ps_cost__c": {"name": "ps_cost__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "saas_amount__c": {"name": "saas_amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "saas_extra_domain_w_disc__c": {"name": "saas_extra_domain_w_disc__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "saas_wl_amount__c": {"name": "saas_wl_amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dealhub_additional_comments__c": {"name": "dealhub_additional_comments__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hidden_lost_reason_values_renewal_opp__c": {"name": "hidden_lost_reason_values_renewal_opp__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_sub_reason__c": {"name": "lost_sub_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mid_market_pricing_tier__c": {"name": "mid_market_pricing_tier__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "remove_auto_renew_clause__c": {"name": "remove_auto_renew_clause__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "partner_commission_percentage__c": {"name": "partner_commission_percentage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_trial_products__c": {"name": "number_of_trial_products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_sync_manually__c": {"name": "zuora_sync_manually__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "swell_orders__c": {"name": "swell_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "free_months_for_contract_alignment__c": {"name": "free_months_for_contract_alignment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actual_end_date__c": {"name": "actual_end_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_renewal_helpe_number__c": {"name": "contract_renewal_helpe_number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_renewal_helper_number_year__c": {"name": "contract_renewal_helper_number_year__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "contract_renewal_helper_record_type__c": {"name": "contract_renewal_helper_record_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_renewal_manual__c": {"name": "contract_renewal_manual__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merge_to_opportunity__c": {"name": "merge_to_opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_acv__c": {"name": "swell_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "of_won_child_opps__c": {"name": "of_won_child_opps__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "initiate_contract_renewal_datafix__c": {"name": "initiate_contract_renewal_datafix__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dealhub_signed_date__c": {"name": "dealhub_signed_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dealhub_stage__c": {"name": "dealhub_stage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "technical_contact_first_name__c": {"name": "technical_contact_first_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "technical_contact_last_name__c": {"name": "technical_contact_last_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "technical_contact_email__c": {"name": "technical_contact_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "technical_contact_phone__c": {"name": "technical_contact_phone__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_second_commitment_value__c": {"name": "sms_second_commitment_value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "client_s_agency__c": {"name": "client_s_agency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_reason__c": {"name": "most_recent_assignment_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_sub_reason__c": {"name": "most_recent_assignment_sub_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initiate_deal_type_calculation__c": {"name": "initiate_deal_type_calculation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "deal_type__c": {"name": "deal_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_closed_by_ar__c": {"name": "auto_closed_by_ar__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "most_recent_assignment_date__c": {"name": "most_recent_assignment_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "include_in_auto_renewal_process__c": {"name": "include_in_auto_renewal_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loss_to_syndication__c": {"name": "loss_to_syndication__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "added_to_lockdown_process_date__c": {"name": "added_to_lockdown_process_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "loyalty_csm_team_upon_closed__c": {"name": "loyalty_csm_team_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_contact_name__c": {"name": "primary_contact_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_yotpo_acv__c": {"name": "total_yotpo_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "dealhub_end_date__c": {"name": "dealhub_end_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "scsm_deal__c": {"name": "scsm_deal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "remove_from_al_process__c": {"name": "remove_from_al_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dealhub_url__c": {"name": "dealhub_url__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_new_address__c": {"name": "dealhub_new_address__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_domain_list__c": {"name": "dealhub_domain_list__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_custom_terms__c": {"name": "dealhub_custom_terms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signed_with_auto_renewal_clause__c": {"name": "signed_with_auto_renewal_clause__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "no_touch_notification_date__c": {"name": "no_touch_notification_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_csm_upon_closed_won__c": {"name": "loyalty_csm_upon_closed_won__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team_upon_closed__c": {"name": "primary_csm_team_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_upon_closed__c": {"name": "primary_csm_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actual_end_date_new__c": {"name": "actual_end_date_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_csm_team_upon_closed__c": {"name": "reviews_csm_team_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_csm_upon_closed__c": {"name": "reviews_csm_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_and_referrals_competitors__c": {"name": "loyalty_and_referrals_competitors__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_team_upon_closed__c": {"name": "sms_csm_team_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delayed_start_date_approved_partners__c": {"name": "delayed_start_date_approved_partners__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "align_with_original_contract_renewal__c": {"name": "align_with_original_contract_renewal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "create_potential_opportunity__c": {"name": "create_potential_opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_bundle__c": {"name": "is_bundle__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "locked_account__c": {"name": "locked_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "initiate_tcv_flow__c": {"name": "initiate_tcv_flow__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "total_domains__c": {"name": "total_domains__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sdr_role__c": {"name": "sdr_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "remove_from_no_touch__c": {"name": "remove_from_no_touch__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dealhub_total_seats__c": {"name": "dealhub_total_seats__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_csm_upon_closed__c": {"name": "sms_csm_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_number__c": {"name": "subscription_number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loss_reason_lr__c": {"name": "loss_reason_lr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loss_reason_reviews__c": {"name": "loss_reason_reviews__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initiate_renewal_opportunity_creation__c": {"name": "initiate_renewal_opportunity_creation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "partner_referral__c": {"name": "partner_referral__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_from_cs_lead__c": {"name": "created_from_cs_lead__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_invoice_end_date__c": {"name": "last_invoice_end_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_segment__c": {"name": "sales_segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sales_region__c": {"name": "sales_region__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_free_months__c": {"name": "zuora_sync_free_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_curation_provider__c": {"name": "original_curation_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_lost__c": {"name": "zuora_sync_lost__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sync_account__c": {"name": "zuora_sync_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_opportunity__c": {"name": "zuora_sync_opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_period_change_start_date__c": {"name": "zuora_period_change_start_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attribution_channel__c": {"name": "attribution_channel__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_loyalty_referral_provider_m__c": {"name": "original_loyalty_referral_provider_m__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_review_provider__c": {"name": "original_review_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "entered_discovery__c": {"name": "entered_discovery__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_demo__c": {"name": "entered_demo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_evaluation__c": {"name": "entered_evaluation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_propose__c": {"name": "entered_propose__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_contracting__c": {"name": "entered_contracting__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_contract_signed__c": {"name": "entered_contract_signed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_closed__c": {"name": "entered_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "zuora_sync_merge_opportunity__c": {"name": "zuora_sync_merge_opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sql_assignment__c": {"name": "sql_assignment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recent_source__c": {"name": "recent_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "most_recent_assignment_bucket__c": {"name": "most_recent_assignment_bucket__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "downgraded_package__c": {"name": "downgraded_package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_this_a_downgrade_to_a_monthly_plan__c": {"name": "is_this_a_downgrade_to_a_monthly_plan__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_expansion__c": {"name": "company_expansion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "account_manager_assignment_date__c": {"name": "account_manager_assignment_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "combined_opportunities_earr__c": {"name": "combined_opportunities_earr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "situation__c": {"name": "situation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pain__c": {"name": "pain__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "impact__c": {"name": "impact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "critical_event__c": {"name": "critical_event__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "decision__c": {"name": "decision__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_csm_for_cs_outreach__c": {"name": "relevant_csm_for_cs_outreach__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initial_relevant_csm_update__c": {"name": "initial_relevant_csm_update__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sync_sales_free_months__c": {"name": "zuora_sync_sales_free_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "include_in_no_touch_process__c": {"name": "include_in_no_touch_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "exclude_from_no_touch_process__c": {"name": "exclude_from_no_touch_process__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "done_t_send_auto_renewal_notification__c": {"name": "done_t_send_auto_renewal_notification__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "zuora_sync_batch_update__c": {"name": "zuora_sync_batch_update__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sales_free_month_delta__c": {"name": "zuora_sales_free_month_delta__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_csm_free_months_delta__c": {"name": "zuora_csm_free_months_delta__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "owns_by_group__c": {"name": "owns_by_group__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ar_helper_order_exclusion__c": {"name": "ar_helper_order_exclusion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "mark_as_master__c": {"name": "mark_as_master__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_last_charge_amount__c": {"name": "zuora_last_charge_amount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "zuora_last_charge_date__c": {"name": "zuora_last_charge_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "add_auto_renew_clause__c": {"name": "add_auto_renew_clause__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "entered_to_renewal_assist_process_date__c": {"name": "entered_to_renewal_assist_process_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_to_auto_renewal_process_date__c": {"name": "entered_to_auto_renewal_process_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "migration_from_monthly__c": {"name": "migration_from_monthly__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_acv__c": {"name": "sms_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "purchase_order_number__c": {"name": "purchase_order_number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_details_update_date__c": {"name": "lost_details_update_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "main_product_families__c": {"name": "main_product_families__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_interest__c": {"name": "product_interest__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "covid_implications__c": {"name": "covid_implications__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ae_forecast_category__c": {"name": "ae_forecast_category__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_poc_extension__c": {"name": "zuora_sync_poc_extension__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp_retention_csm_free_months__c": {"name": "timestamp_retention_csm_free_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "entered_quote_email_sent__c": {"name": "entered_quote_email_sent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "cs_comp_paid__c": {"name": "cs_comp_paid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted__c": {"name": "converted__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "timestamp_billing_frequency__c": {"name": "timestamp_billing_frequency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "segment_for_bi__c": {"name": "segment_for_bi__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "overlay_ae__c": {"name": "overlay_ae__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_app_keys_for_sms__c": {"name": "relevant_app_keys_for_sms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includes_sms_product__c": {"name": "includes_sms_product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "includes_self_service_product__c": {"name": "includes_self_service_product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "excluded_from_comp_on__c": {"name": "excluded_from_comp_on__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ups_acv__c": {"name": "ups_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loss_reason_sms__c": {"name": "loss_reason_sms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_domains_lr__c": {"name": "total_domains_lr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_domains_sms__c": {"name": "total_domains_sms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "vms_acv__c": {"name": "vms_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loss_reason_vms__c": {"name": "loss_reason_vms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_opps_products_considered__c": {"name": "lost_opps_products_considered__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctp_code__c": {"name": "ctp_code__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ups_account__c": {"name": "ups_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuora_sync_ups_lost__c": {"name": "zuora_sync_ups_lost__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "concession_reason__c": {"name": "concession_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ups_subscription_number__c": {"name": "ups_subscription_number__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "annual_reviews_for_syndication__c": {"name": "annual_reviews_for_syndication__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_domains_vms__c": {"name": "total_domains_vms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sdr_lookup__c": {"name": "sdr_lookup__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "includes_syndication__c": {"name": "includes_syndication__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "syndication_domains__c": {"name": "syndication_domains__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp_sales_free_months__c": {"name": "timestamp_sales_free_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "deprovisioning_outcome__c": {"name": "deprovisioning_outcome__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "do_not_update_territory__c": {"name": "do_not_update_territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "territory_new__c": {"name": "territory_new__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "key_agency_stakeholder_contact__c": {"name": "key_agency_stakeholder_contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "close_date_pushed__c": {"name": "close_date_pushed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "must_win__c": {"name": "must_win__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lost_main_products__c": {"name": "lost_main_products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opt_out_clause__c": {"name": "opt_out_clause__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "end_of_opt_out_period__c": {"name": "end_of_opt_out_period__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gold_earr_usd__c": {"name": "gold_earr_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "prime_earr_usd__c": {"name": "prime_earr_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_csm_manager_upon_closed__c": {"name": "reviews_csm_manager_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_csm_manager_upon_closed__c": {"name": "sms_csm_manager_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "l_r_number_of_total_orders_included__c": {"name": "l_r_number_of_total_orders_included__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_number_of_total_orders_included__c": {"name": "reviews_number_of_total_orders_included__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upsell_with_in_term_renewal__c": {"name": "upsell_with_in_term_renewal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "memo__c": {"name": "memo__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_included_l_r__c": {"name": "orders_included_l_r__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "other__c": {"name": "other__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pos_provider__c": {"name": "pos_provider__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_to_opp_won_sale__c": {"name": "renewal_to_opp_won_sale__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mrr__c": {"name": "mrr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "usage_team_attribution__c": {"name": "usage_team_attribution__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "x6sense_attribution__c": {"name": "x6sense_attribution__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "secondary_sales_engineer__c": {"name": "secondary_sales_engineer__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_cadence_name__c": {"name": "salesloft1__most_recent_cadence_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "salesloft1__most_recent_last_completed_step__c": {"name": "salesloft1__most_recent_last_completed_step__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "salesloft1__primary_contact__c": {"name": "salesloft1__primary_contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deal_type_as_per_deal_summary__c": {"name": "deal_type_as_per_deal_summary__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "msa_type__c": {"name": "msa_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manual_team_attribution__c": {"name": "manual_team_attribution__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "purchase_order_expiration_date__c": {"name": "purchase_order_expiration_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recalculate_deal_type__c": {"name": "recalculate_deal_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "show_discount_percentage__c": {"name": "show_discount_percentage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_pb__c": {"name": "run_pb__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "run_pb2__c": {"name": "run_pb2__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "current_acv_for_retention_usd_loyalty__c": {"name": "current_acv_for_retention_usd_loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_for_retention_usd_sms__c": {"name": "current_acv_for_retention_usd_sms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_for_retention_usd_ugc__c": {"name": "current_acv_for_retention_usd_ugc__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_usd_loyalty__c": {"name": "previous_acv_usd_loyalty__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_usd_sms__c": {"name": "previous_acv_usd_sms__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_usd_ugc__c": {"name": "previous_acv_usd_ugc__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loyalty_csm_manager_upon_closed__c": {"name": "loyalty_csm_manager_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "l_r_orders_included_yearly__c": {"name": "l_r_orders_included_yearly__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reviews_annual_included_orders__c": {"name": "reviews_annual_included_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "annual_products__c": {"name": "annual_products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bundle_total__c": {"name": "bundle_total__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "primary_csm_manager_upon_closed__c": {"name": "primary_csm_manager_upon_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loss_reason_subscription__c": {"name": "loss_reason_subscription__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_of_am_ownership__c": {"name": "time_of_am_ownership__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gmv__c": {"name": "gmv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "no_price_increase_upon_auto_renewal__c": {"name": "no_price_increase_upon_auto_renewal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "opt_out_for_multi_year_deals__c": {"name": "opt_out_for_multi_year_deals__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "opt_out_without_refund_of_pre_paid__c": {"name": "opt_out_without_refund_of_pre_paid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "price_cap_percentage_for_renewal__c": {"name": "price_cap_percentage_for_renewal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_cap_applied__c": {"name": "price_cap_applied__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sms_fourth_commitment_value__c": {"name": "sms_fourth_commitment_value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sms_third_commitment_value__c": {"name": "sms_third_commitment_value__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscription_customer_type__c": {"name": "subscription_customer_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "termination_for_convenience_no_refund__c": {"name": "termination_for_convenience_no_refund__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "sms_earr_usd__c": {"name": "sms_earr_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subscriptions_earr_usd__c": {"name": "subscriptions_earr_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "early_release_for_partners__c": {"name": "early_release_for_partners__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "early_release_from__c": {"name": "early_release_from__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "staggered_contract__c": {"name": "staggered_contract__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pipeline_inspection_metric__c": {"name": "pipeline_inspection_metric__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_per_installment__c": {"name": "price_per_installment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce_rivery.opportunity", "created_at": 1700082693.6946716}, "source.yoda.analytics__salesforce_rivery.user": {"database": null, "schema": "salesforce_rivery", "name": "user", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce_rivery.user", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce_rivery", "user"], "source_name": "analytics__salesforce_rivery", "source_description": "", "loader": "", "identifier": "user", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "username": {"name": "username", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastname": {"name": "lastname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "firstname": {"name": "firstname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "companyname": {"name": "companyname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "division": {"name": "division", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "department": {"name": "department", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "street": {"name": "street", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "city": {"name": "city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "postalcode": {"name": "postalcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "statecode": {"name": "statecode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countrycode": {"name": "countrycode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "latitude": {"name": "latitude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "longitude": {"name": "longitude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geocodeaccuracy": {"name": "geocodeaccuracy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "emailpreferencesautobcc": {"name": "emailpreferencesautobcc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "emailpreferencesautobccstayintouch": {"name": "emailpreferencesautobccstayintouch", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "emailpreferencesstayintouchreminder": {"name": "emailpreferencesstayintouchreminder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "senderemail": {"name": "senderemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sendername": {"name": "sendername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signature": {"name": "signature", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stayintouchsubject": {"name": "stayintouchsubject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stayintouchsignature": {"name": "stayintouchsignature", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stayintouchnote": {"name": "stayintouchnote", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fax": {"name": "fax", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mobilephone": {"name": "mobilephone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "alias": {"name": "alias", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "communitynickname": {"name": "communitynickname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "badgetext": {"name": "badgetext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isactive": {"name": "isactive", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "timezonesidkey": {"name": "timezonesidkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userroleid": {"name": "userroleid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "localesidkey": {"name": "localesidkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "receivesinfoemails": {"name": "receivesinfoemails", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "receivesadmininfoemails": {"name": "receivesadmininfoemails", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "emailencodingkey": {"name": "emailencodingkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultcurrencyisocode": {"name": "defaultcurrencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "profileid": {"name": "profileid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usertype": {"name": "usertype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "languagelocalekey": {"name": "languagelocalekey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "employeenumber": {"name": "employeenumber", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delegatedapproverid": {"name": "delegatedapproverid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "managerid": {"name": "managerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastlogindate": {"name": "lastlogindate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastpasswordchangedate": {"name": "lastpasswordchangedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "numberoffailedlogins": {"name": "numberoffailedlogins", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "offlinetrialexpirationdate": {"name": "offlinetrialexpirationdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "offlinepdatrialexpirationdate": {"name": "offlinepdatrialexpirationdate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "userpermissionsmarketinguser": {"name": "userpermissionsmarketinguser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionsofflineuser": {"name": "userpermissionsofflineuser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionscallcenterautologin": {"name": "userpermissionscallcenterautologin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionssfcontentuser": {"name": "userpermissionssfcontentuser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionsknowledgeuser": {"name": "userpermissionsknowledgeuser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionsinteractionuser": {"name": "userpermissionsinteractionuser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionssupportuser": {"name": "userpermissionssupportuser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionsliveagentuser": {"name": "userpermissionsliveagentuser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpermissionschatteranswersuser": {"name": "userpermissionschatteranswersuser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "forecastenabled": {"name": "forecastenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesactivityreminderspopup": {"name": "userpreferencesactivityreminderspopup", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceseventreminderscheckboxdefault": {"name": "userpreferenceseventreminderscheckboxdefault", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencestaskreminderscheckboxdefault": {"name": "userpreferencestaskreminderscheckboxdefault", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesremindersoundoff": {"name": "userpreferencesremindersoundoff", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisableallfeedsemail": {"name": "userpreferencesdisableallfeedsemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablefollowersemail": {"name": "userpreferencesdisablefollowersemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisableprofilepostemail": {"name": "userpreferencesdisableprofilepostemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablechangecommentemail": {"name": "userpreferencesdisablechangecommentemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablelatercommentemail": {"name": "userpreferencesdisablelatercommentemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisprofpostcommentemail": {"name": "userpreferencesdisprofpostcommentemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencescontentnoemail": {"name": "userpreferencescontentnoemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencescontentemailasandwhen": {"name": "userpreferencescontentemailasandwhen", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesapexpagesdevelopermode": {"name": "userpreferencesapexpagesdevelopermode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesreceivenonotificationsasapprover": {"name": "userpreferencesreceivenonotificationsasapprover", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesreceivenotificationsasdelegatedapprover": {"name": "userpreferencesreceivenotificationsasdelegatedapprover", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidecsngetchattermobiletask": {"name": "userpreferenceshidecsngetchattermobiletask", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablementionspostemail": {"name": "userpreferencesdisablementionspostemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdismentionscommentemail": {"name": "userpreferencesdismentionscommentemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidecsndesktoptask": {"name": "userpreferenceshidecsndesktoptask", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidechatteronboardingsplash": {"name": "userpreferenceshidechatteronboardingsplash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidesecondchatteronboardingsplash": {"name": "userpreferenceshidesecondchatteronboardingsplash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdiscommentafterlikeemail": {"name": "userpreferencesdiscommentafterlikeemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablelikeemail": {"name": "userpreferencesdisablelikeemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencessortfeedbycomment": {"name": "userpreferencessortfeedbycomment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablemessageemail": {"name": "userpreferencesdisablemessageemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablebookmarkemail": {"name": "userpreferencesdisablebookmarkemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablesharepostemail": {"name": "userpreferencesdisablesharepostemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesenableautosubforfeeds": {"name": "userpreferencesenableautosubforfeeds", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisablefilesharenotificationsforapi": {"name": "userpreferencesdisablefilesharenotificationsforapi", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowtitletoexternalusers": {"name": "userpreferencesshowtitletoexternalusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowmanagertoexternalusers": {"name": "userpreferencesshowmanagertoexternalusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowemailtoexternalusers": {"name": "userpreferencesshowemailtoexternalusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowworkphonetoexternalusers": {"name": "userpreferencesshowworkphonetoexternalusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowmobilephonetoexternalusers": {"name": "userpreferencesshowmobilephonetoexternalusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowfaxtoexternalusers": {"name": "userpreferencesshowfaxtoexternalusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowstreetaddresstoexternalusers": {"name": "userpreferencesshowstreetaddresstoexternalusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowcitytoexternalusers": {"name": "userpreferencesshowcitytoexternalusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowstatetoexternalusers": {"name": "userpreferencesshowstatetoexternalusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowpostalcodetoexternalusers": {"name": "userpreferencesshowpostalcodetoexternalusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowcountrytoexternalusers": {"name": "userpreferencesshowcountrytoexternalusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowprofilepictoguestusers": {"name": "userpreferencesshowprofilepictoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowtitletoguestusers": {"name": "userpreferencesshowtitletoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowcitytoguestusers": {"name": "userpreferencesshowcitytoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowstatetoguestusers": {"name": "userpreferencesshowstatetoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowpostalcodetoguestusers": {"name": "userpreferencesshowpostalcodetoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowcountrytoguestusers": {"name": "userpreferencesshowcountrytoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencespipelineviewhidehelppopover": {"name": "userpreferencespipelineviewhidehelppopover", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshides1browserui": {"name": "userpreferenceshides1browserui", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesdisableendorsementemail": {"name": "userpreferencesdisableendorsementemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencespathassistantcollapsed": {"name": "userpreferencespathassistantcollapsed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencescachediagnostics": {"name": "userpreferencescachediagnostics", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowemailtoguestusers": {"name": "userpreferencesshowemailtoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowmanagertoguestusers": {"name": "userpreferencesshowmanagertoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowworkphonetoguestusers": {"name": "userpreferencesshowworkphonetoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowmobilephonetoguestusers": {"name": "userpreferencesshowmobilephonetoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowfaxtoguestusers": {"name": "userpreferencesshowfaxtoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesshowstreetaddresstoguestusers": {"name": "userpreferencesshowstreetaddresstoguestusers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceslightningexperiencepreferred": {"name": "userpreferenceslightningexperiencepreferred", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencespreviewlightning": {"name": "userpreferencespreviewlightning", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshideenduseronboardingassistantmodal": {"name": "userpreferenceshideenduseronboardingassistantmodal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidelightningmigrationmodal": {"name": "userpreferenceshidelightningmigrationmodal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidesfxwelcomemat": {"name": "userpreferenceshidesfxwelcomemat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshidebiggerphotocallout": {"name": "userpreferenceshidebiggerphotocallout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesglobalnavbarwtshown": {"name": "userpreferencesglobalnavbarwtshown", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesglobalnavgridmenuwtshown": {"name": "userpreferencesglobalnavgridmenuwtshown", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencescreatelexappswtshown": {"name": "userpreferencescreatelexappswtshown", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesfavoriteswtshown": {"name": "userpreferencesfavoriteswtshown", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesrecordhomesectioncollapsewtshown": {"name": "userpreferencesrecordhomesectioncollapsewtshown", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesrecordhomereservedwtshown": {"name": "userpreferencesrecordhomereservedwtshown", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesfavoritesshowtopfavorites": {"name": "userpreferencesfavoritesshowtopfavorites", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesexcludemailappattachments": {"name": "userpreferencesexcludemailappattachments", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencessuppresstasksfxreminders": {"name": "userpreferencessuppresstasksfxreminders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencessuppresseventsfxreminders": {"name": "userpreferencessuppresseventsfxreminders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencespreviewcustomtheme": {"name": "userpreferencespreviewcustomtheme", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferenceshascelebrationbadge": {"name": "userpreferenceshascelebrationbadge", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesuserdebugmodepref": {"name": "userpreferencesuserdebugmodepref", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencessrhoverrideactivities": {"name": "userpreferencessrhoverrideactivities", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesnewlightningreportrunpageenabled": {"name": "userpreferencesnewlightningreportrunpageenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "userpreferencesnativeemailclient": {"name": "userpreferencesnativeemailclient", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "contactid": {"name": "contactid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "callcenterid": {"name": "callcenterid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "extension": {"name": "extension", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "portalrole": {"name": "portalrole", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isportalenabled": {"name": "isportalenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "federationidentifier": {"name": "federationidentifier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "aboutme": {"name": "aboutme", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fullphotourl": {"name": "fullphotourl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smallphotourl": {"name": "smallphotourl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isextindicatorvisible": {"name": "isextindicatorvisible", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "outofofficemessage": {"name": "outofofficemessage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mediumphotourl": {"name": "mediumphotourl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "digestfrequency": {"name": "digestfrequency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "defaultgroupnotificationfrequency": {"name": "defaultgroupnotificationfrequency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bannerphotourl": {"name": "bannerphotourl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smallbannerphotourl": {"name": "smallbannerphotourl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mediumbannerphotourl": {"name": "mediumbannerphotourl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isprofilephotoactive": {"name": "isprofilephotoactive", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "individualid": {"name": "individualid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "low_touch_csm__c": {"name": "low_touch_csm__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "account_manager_csm_pod__c": {"name": "account_manager_csm_pod__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_from_assignment_tracking__c": {"name": "exclude_from_assignment_tracking__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dsfs__dsprosfmembershipstatus__c": {"name": "dsfs__dsprosfmembershipstatus__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dsfs__dsprosfpassword__c": {"name": "dsfs__dsprosfpassword__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dsfs__dsprosfusername__c": {"name": "dsfs__dsprosfusername__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkto_si__iscachinganonwebactivitylist__c": {"name": "mkto_si__iscachinganonwebactivitylist__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingbestbets__c": {"name": "mkto_si__iscachingbestbets__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingemailactivitylist__c": {"name": "mkto_si__iscachingemailactivitylist__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachinggroupedwebactivitylist__c": {"name": "mkto_si__iscachinggroupedwebactivitylist__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachinginterestingmomentslist__c": {"name": "mkto_si__iscachinginterestingmomentslist__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingscoringlist__c": {"name": "mkto_si__iscachingscoringlist__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingstreamlist__c": {"name": "mkto_si__iscachingstreamlist__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingwatchlist__c": {"name": "mkto_si__iscachingwatchlist__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__iscachingwebactivitylist__c": {"name": "mkto_si__iscachingwebactivitylist__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "mkto_si__sales_insight_counter__c": {"name": "mkto_si__sales_insight_counter__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "calendar_link__c": {"name": "calendar_link__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "s4g_currencies__endpoint__c": {"name": "s4g_currencies__endpoint__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_currency__c": {"name": "user_currency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gmt__c": {"name": "gmt__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "x18_digits_id__c": {"name": "x18_digits_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "marketing_activity_user__c": {"name": "marketing_activity_user__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ignore_claim__c": {"name": "ignore_claim__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "super_csm__c": {"name": "super_csm__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "csm_team__c": {"name": "csm_team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_name__c": {"name": "role_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team__c": {"name": "team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priority_escalation_permission__c": {"name": "priority_escalation_permission__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isqueue__c": {"name": "isqueue__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isintegration__c": {"name": "isintegration__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "queuetype__c": {"name": "queuetype__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_text__c": {"name": "manager_text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_name__c": {"name": "full_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboarding_assignee__c": {"name": "onboarding_assignee__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "multi_product_csm__c": {"name": "multi_product_csm__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "account_id__c": {"name": "account_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_s_owner__c": {"name": "account_s_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address_fields__c": {"name": "address_fields__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "business_email__c": {"name": "business_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "business_name__c": {"name": "business_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company__c": {"name": "company__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_login_date_custom__c": {"name": "last_login_date_custom__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "my_content__c": {"name": "my_content__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "prm_role__c": {"name": "prm_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager__c": {"name": "partner_manager__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paypal_account__c": {"name": "paypal_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "profile_formula__c": {"name": "profile_formula__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website__c": {"name": "website__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "wire_details_del__c": {"name": "wire_details_del__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "login_user_member__c": {"name": "login_user_member__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "process_base_time_1_min__c": {"name": "process_base_time_1_min__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "invitation_date__c": {"name": "invitation_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "wwid__c": {"name": "wwid__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "finance_department_description__c": {"name": "finance_department_description__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type__c": {"name": "type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ticket_department__c": {"name": "ticket_department__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recordval__rv2disableautovalidate__c": {"name": "recordval__rv2disableautovalidate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "recordval__rv2disabletriggers__c": {"name": "recordval__rv2disabletriggers__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dfsle__canmanageaccount__c": {"name": "dfsle__canmanageaccount__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dfsle__provisioned__c": {"name": "dfsle__provisioned__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dfsle__status__c": {"name": "dfsle__status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dfsle__username__c": {"name": "dfsle__username__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_seller__c": {"name": "subscription_seller__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usage_seller__c": {"name": "usage_seller__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quota__c": {"name": "quota__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "seller_s_capacity__c": {"name": "seller_s_capacity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "us_smb_senior_ae__c": {"name": "us_smb_senior_ae__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ambition__isambitionuser__c": {"name": "ambition__isambitionuser__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "retention_goal__c": {"name": "retention_goal__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "wwid_legacy__c": {"name": "wwid_legacy__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "slack_channel_id__c": {"name": "slack_channel_id__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory__c": {"name": "territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce_rivery.user", "created_at": 1700082693.6970983}, "source.yoda.analytics__salesforce_rivery.user_full": {"database": null, "schema": "salesforce_rivery", "name": "user_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce_rivery.user_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce_rivery", "user_full"], "source_name": "analytics__salesforce_rivery", "source_description": "", "loader": "", "identifier": "user_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userroleid": {"name": "userroleid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "csm_team__c": {"name": "csm_team__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_name__c": {"name": "role_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manager_text__c": {"name": "manager_text__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "territory__c": {"name": "territory__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce_rivery.user_full", "created_at": 1700082693.6974971}, "source.yoda.analytics__salesforce_rivery.deal_summary_new__c_full": {"database": null, "schema": "salesforce_rivery", "name": "deal_summary_new__c_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce_rivery.deal_summary_new__c_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce_rivery", "deal_summary_new__c_full"], "source_name": "analytics__salesforce_rivery", "source_description": "", "loader": "", "identifier": "deal_summary_new__c_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opportunity__c": {"name": "opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_acv_original_currency__c": {"name": "current_acv_original_currency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "opportunity_product__c": {"name": "opportunity_product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_product__c": {"name": "package_product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "previous_acv_original_currency__c": {"name": "previous_acv_original_currency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_family__c": {"name": "product_family__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product__c": {"name": "product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_from_opportunity_line__c": {"name": "renewal_from_opportunity_line__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status__c": {"name": "status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_acv_usd_calculated__c": {"name": "current_acv_usd_calculated__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_usd__c": {"name": "current_acv_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_for_retention__c": {"name": "current_acv_for_retention__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv__c": {"name": "current_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "deal_type__c": {"name": "deal_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_delta_acv__c": {"name": "line_delta_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_delta_acv_for_retention__c": {"name": "line_delta_acv_for_retention__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_from_opportunity_product__c": {"name": "previous_acv_from_opportunity_product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_usd_calculated__c": {"name": "previous_acv_usd_calculated__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_usd__c": {"name": "previous_acv_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv__c": {"name": "previous_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_controlling_for_conversion__c": {"name": "current_acv_controlling_for_conversion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_for_retention_original__c": {"name": "current_acv_for_retention_original__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "custom_earr__c": {"name": "custom_earr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "earr_usd__c": {"name": "earr_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "latest_ds__c": {"name": "latest_ds__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pipeline_usd__c": {"name": "pipeline_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce_rivery.deal_summary_new__c_full", "created_at": 1700082693.6978104}, "source.yoda.analytics__salesforce_rivery.deal_summary_new__c": {"database": null, "schema": "salesforce_rivery", "name": "deal_summary_new__c", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce_rivery.deal_summary_new__c", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce_rivery", "deal_summary_new__c"], "source_name": "analytics__salesforce_rivery", "source_description": "", "loader": "", "identifier": "deal_summary_new__c", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastactivitydate": {"name": "lastactivitydate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opportunity__c": {"name": "opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_acv_original_currency__c": {"name": "current_acv_original_currency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end_date__c": {"name": "end_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oli_product_code__c": {"name": "oli_product_code__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "opportunity_product__c": {"name": "opportunity_product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "override_current_acv_usd__c": {"name": "override_current_acv_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "override_previous_acv_usd__c": {"name": "override_previous_acv_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "package_product__c": {"name": "package_product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "previous_acv_override__c": {"name": "previous_acv_override__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "previous_acv_original_currency__c": {"name": "previous_acv_original_currency__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "product_family__c": {"name": "product_family__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product__c": {"name": "product__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewal_from_opportunity_line__c": {"name": "renewal_from_opportunity_line__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date__c": {"name": "start_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status__c": {"name": "status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "copy_of_current_acv_for_retention__c": {"name": "copy_of_current_acv_for_retention__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "copy_of_previous_acv_usd_calculated__c": {"name": "copy_of_previous_acv_usd_calculated__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "deletion_date__c": {"name": "deletion_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line_close_date__c": {"name": "product_line_close_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_at_the_time_of_deletion__c": {"name": "owner_at_the_time_of_deletion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_role_at_the_time_of_deletion__c": {"name": "owner_role_at_the_time_of_deletion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "p_line_owner_role__c": {"name": "p_line_owner_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_acv_controlling_for_conversion__c": {"name": "current_acv_controlling_for_conversion__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "current_acv_for_retention_original__c": {"name": "current_acv_for_retention_original__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "custom_earr__c": {"name": "custom_earr__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "earr_usd__c": {"name": "earr_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "latest_ds__c": {"name": "latest_ds__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pipeline_usd__c": {"name": "pipeline_usd__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce_rivery.deal_summary_new__c", "created_at": 1700082693.6982071}, "source.yoda.analytics__salesforce_rivery.cs_lead__c": {"database": null, "schema": "salesforce_rivery", "name": "cs_lead__c", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce_rivery.cs_lead__c", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce_rivery", "cs_lead__c"], "source_name": "analytics__salesforce_rivery", "source_description": "", "loader": "", "identifier": "cs_lead__c", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerid": {"name": "ownerid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currencyisocode": {"name": "currencyisocode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "createdbyid": {"name": "createdbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastmodifieddate": {"name": "lastmodifieddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastmodifiedbyid": {"name": "lastmodifiedbyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastactivitydate": {"name": "lastactivitydate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastvieweddate": {"name": "lastvieweddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "lastreferenceddate": {"name": "lastreferenceddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "am_rejection_reason__c": {"name": "am_rejection_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_name__c": {"name": "account_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account__c": {"name": "account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "assignment_date__c": {"name": "assignment_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csl_source__c": {"name": "csl_source__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_comments__c": {"name": "csm_comments__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_first_name__c": {"name": "csm_first_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_rejection_reason__c": {"name": "csm_rejection_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm__c": {"name": "csm__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closest_renewal_date__c": {"name": "closest_renewal_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_date__c": {"name": "converted_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "funding__c": {"name": "funding__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry__c": {"name": "industry__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_orders__c": {"name": "last_30_days_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "lost_date__c": {"name": "lost_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "monthly_tech_spend__c": {"name": "monthly_tech_spend__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_employees__c": {"name": "number_of_employees__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "on_hold_due_date__c": {"name": "on_hold_due_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contains_vms_mockup__c": {"name": "contains_vms_mockup__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "package__c": {"name": "package__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform__c": {"name": "platform__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_line__c": {"name": "product_line__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_contact__c": {"name": "related_contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_opportunity__c": {"name": "related_opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_store__c": {"name": "related_store__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "send_csm_notification__c": {"name": "send_csm_notification__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "status__c": {"name": "status__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_acv__c": {"name": "total_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "related_opportunity_stage__c": {"name": "related_opportunity_stage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_opp_closed__c": {"name": "related_opp_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "rejected_date__c": {"name": "rejected_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upsell_from_opportunity__c": {"name": "upsell_from_opportunity__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_cs_segment__c": {"name": "account_cs_segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_office__c": {"name": "csm_office__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "qualify_csl__c": {"name": "qualify_csl__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reject_csl__c": {"name": "reject_csl__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csl_owner_manager__c": {"name": "csl_owner_manager__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_manager__c": {"name": "csm_manager__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "am_notes__c": {"name": "am_notes__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "snoozed_in__c": {"name": "snoozed_in__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "snoozed_due_date__c": {"name": "snoozed_due_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_org_key__c": {"name": "account_org_key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_email__c": {"name": "csm_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_email__c": {"name": "owner_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_first_name__c": {"name": "owner_first_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "request_csm_intro__c": {"name": "request_csm_intro__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "intro_sent_at__c": {"name": "intro_sent_at__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "send_custom_email__c": {"name": "send_custom_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "send_intro_email__c": {"name": "send_intro_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mockup_priority__c": {"name": "mockup_priority__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "increase_mockup_priority__c": {"name": "increase_mockup_priority__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "swell_renewal_date__c": {"name": "swell_renewal_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_renewal_date__c": {"name": "ugc_renewal_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ugc_csm_manager__c": {"name": "ugc_csm_manager__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_csm_manager__c": {"name": "swell_csm_manager__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vms_mockups_sent__c": {"name": "vms_mockups_sent__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "vms_mockups_sent_date__c": {"name": "vms_mockups_sent_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_source_location__c": {"name": "product_source_location__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "potential_acv__c": {"name": "potential_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_to_convert__c": {"name": "days_to_convert__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_to_lost__c": {"name": "days_to_lost__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "demo_scheduled_date__c": {"name": "demo_scheduled_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_to_nurture__c": {"name": "days_to_nurture__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "follow_up_in_date__c": {"name": "follow_up_in_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "follow_up_in_helper__c": {"name": "follow_up_in_helper__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "follow_up_in_c__c": {"name": "follow_up_in_c__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_date__c": {"name": "nurturing_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nurturing_reason__c": {"name": "nurturing_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initiate__c": {"name": "initiate__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_is_current_user__c": {"name": "csm_is_current_user__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "total_open_csls_under_account__c": {"name": "total_open_csls_under_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "another_open_csl__c": {"name": "another_open_csl__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "average_monthly_orders_last_3_months__c": {"name": "average_monthly_orders_last_3_months__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "engaged_with_campaign__c": {"name": "engaged_with_campaign__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "main_partner_manager__c": {"name": "main_partner_manager__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "test__c": {"name": "test__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_partner_manager_email__c": {"name": "relevant_partner_manager_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "relevant_partner_manager__c": {"name": "relevant_partner_manager__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csl_score__c": {"name": "csl_score__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lead_warmth__c": {"name": "lead_warmth__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status_last_updated__c": {"name": "status_last_updated__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "mql_notification_engagement_type__c": {"name": "mql_notification_engagement_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "in_progress_date__c": {"name": "in_progress_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mql_notification_reason__c": {"name": "mql_notification_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_at_time_of_csl_creation__c": {"name": "primary_csm_at_time_of_csl_creation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_email_routing_notification__c": {"name": "primary_csm_email_routing_notification__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lost_reason__c": {"name": "lost_reason__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_account_cs_segment__c": {"name": "original_account_cs_segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_referral__c": {"name": "partner_referral__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sdr_owner__c": {"name": "sdr_owner__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cs_lead_owner_role__c": {"name": "cs_lead_owner_role__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_seller_csl__c": {"name": "subscription_seller_csl__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usage_seller_csl__c": {"name": "usage_seller_csl__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_contact__c": {"name": "partner_contact__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_manager__c": {"name": "partner_manager__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_name__c": {"name": "partner_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_date__c": {"name": "referral_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_type__c": {"name": "referral_type__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "all_relevant_products__c": {"name": "all_relevant_products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team_at_csl_creation__c": {"name": "primary_csm_team_at_csl_creation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "temp_product_holder__c": {"name": "temp_product_holder__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_account__c": {"name": "top_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_avg_3_months_orders_swell__c": {"name": "last_avg_3_months_orders_swell__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce_rivery.cs_lead__c", "created_at": 1700082693.6988578}, "source.yoda.analytics__salesforce_rivery.cs_lead__c_full": {"database": null, "schema": "salesforce_rivery", "name": "cs_lead__c_full", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "original_file_path": "models/analytics/salesforce/source/analytics___salesforce__src.yml", "unique_id": "source.yoda.analytics__salesforce_rivery.cs_lead__c_full", "fqn": ["yoda", "analytics", "salesforce", "source", "analytics__salesforce_rivery", "cs_lead__c_full"], "source_name": "analytics__salesforce_rivery", "source_description": "", "loader": "", "identifier": "cs_lead__c_full", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemmodstamp": {"name": "systemmodstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_name__c": {"name": "account_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_first_name__c": {"name": "csm_first_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closest_renewal_date__c": {"name": "closest_renewal_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "funding__c": {"name": "funding__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "industry__c": {"name": "industry__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_30_days_orders__c": {"name": "last_30_days_orders__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "monthly_tech_spend__c": {"name": "monthly_tech_spend__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "number_of_employees__c": {"name": "number_of_employees__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform__c": {"name": "platform__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_acv__c": {"name": "total_acv__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "related_opportunity_stage__c": {"name": "related_opportunity_stage__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "related_opp_closed__c": {"name": "related_opp_closed__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "account_cs_segment__c": {"name": "account_cs_segment__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_office__c": {"name": "csm_office__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csl_owner_manager__c": {"name": "csl_owner_manager__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_manager__c": {"name": "csm_manager__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_org_key__c": {"name": "account_org_key__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "csm_email__c": {"name": "csm_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_email__c": {"name": "owner_email__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_first_name__c": {"name": "owner_first_name__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_source_location__c": {"name": "product_source_location__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_to_convert__c": {"name": "days_to_convert__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_to_lost__c": {"name": "days_to_lost__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "days_to_nurture__c": {"name": "days_to_nurture__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "follow_up_in_date__c": {"name": "follow_up_in_date__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "all_relevant_products__c": {"name": "all_relevant_products__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "primary_csm_team_at_csl_creation__c": {"name": "primary_csm_team_at_csl_creation__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "temp_product_holder__c": {"name": "temp_product_holder__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "top_account__c": {"name": "top_account__c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "_rivery_river_id": {"name": "_rivery_river_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_run_id": {"name": "_rivery_run_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_rivery_last_update": {"name": "_rivery_last_update", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "salesforce_rivery.cs_lead__c_full", "created_at": 1700082693.699251}, "source.yoda.analytics__static.free_credit_high_touch_bonus": {"database": null, "schema": "static", "name": "free_credit_high_touch_bonus", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/sms/source/analytics___sms__src.yml", "original_file_path": "models/analytics/sms/source/analytics___sms__src.yml", "unique_id": "source.yoda.analytics__static.free_credit_high_touch_bonus", "fqn": ["yoda", "analytics", "sms", "source", "analytics__static", "free_credit_high_touch_bonus"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "free_credit_high_touch_bonus", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"credit_type": {"name": "credit_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bonus_amount": {"name": "bonus_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.free_credit_high_touch_bonus", "created_at": 1700082693.6994753}, "source.yoda.analytics__static.subscription_contract_before_snapshot": {"database": null, "schema": "static", "name": "subscription_contract_before_snapshot", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/subscriptions/source/analytics___subscriptions__src.yml", "original_file_path": "models/analytics/subscriptions/source/analytics___subscriptions__src.yml", "unique_id": "source.yoda.analytics__static.subscription_contract_before_snapshot", "fqn": ["yoda", "analytics", "subscriptions", "source", "analytics__static", "subscription_contract_before_snapshot"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "subscription_contract_before_snapshot", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"subscription_contract_id": {"name": "subscription_contract_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_contract_status": {"name": "subscription_contract_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval": {"name": "delivery_policy_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval_count": {"name": "delivery_policy_interval_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval": {"name": "billing_policy_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval_count": {"name": "billing_policy_interval_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.subscription_contract_before_snapshot", "created_at": 1700082693.6996913}, "source.yoda.analytics__static.loyalty_earning_rule_types_for_synergy_activeness": {"database": null, "schema": "static", "name": "loyalty_earning_rule_types_for_synergy_activeness", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/synergies/source/analytics___synergies__src.yml", "original_file_path": "models/analytics/synergies/source/analytics___synergies__src.yml", "unique_id": "source.yoda.analytics__static.loyalty_earning_rule_types_for_synergy_activeness", "fqn": ["yoda", "analytics", "synergies", "source", "analytics__static", "loyalty_earning_rule_types_for_synergy_activeness"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "loyalty_earning_rule_types_for_synergy_activeness", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"earning_rule_type": {"name": "earning_rule_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.loyalty_earning_rule_types_for_synergy_activeness", "created_at": 1700082693.6998818}, "source.yoda.analytics__static.sms_flow_triggers_for_synergy_activeness": {"database": null, "schema": "static", "name": "sms_flow_triggers_for_synergy_activeness", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/synergies/source/analytics___synergies__src.yml", "original_file_path": "models/analytics/synergies/source/analytics___synergies__src.yml", "unique_id": "source.yoda.analytics__static.sms_flow_triggers_for_synergy_activeness", "fqn": ["yoda", "analytics", "synergies", "source", "analytics__static", "sms_flow_triggers_for_synergy_activeness"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "sms_flow_triggers_for_synergy_activeness", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"flow_trigger": {"name": "flow_trigger", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.sms_flow_triggers_for_synergy_activeness", "created_at": 1700082693.7000659}, "source.yoda.analytics__static.sms_flow_triggers_to_filter_for_custom_loyalty_activeness": {"database": null, "schema": "static", "name": "sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/synergies/source/analytics___synergies__src.yml", "original_file_path": "models/analytics/synergies/source/analytics___synergies__src.yml", "unique_id": "source.yoda.analytics__static.sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "fqn": ["yoda", "analytics", "synergies", "source", "analytics__static", "sms_flow_triggers_to_filter_for_custom_loyalty_activeness"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"flow_trigger": {"name": "flow_trigger", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "created_at": 1700082693.7002466}, "source.yoda.analytics__static.sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness": {"database": null, "schema": "static", "name": "sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/synergies/source/analytics___synergies__src.yml", "original_file_path": "models/analytics/synergies/source/analytics___synergies__src.yml", "unique_id": "source.yoda.analytics__static.sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "fqn": ["yoda", "analytics", "synergies", "source", "analytics__static", "sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"flow_settings": {"name": "flow_settings", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "created_at": 1700082693.7004976}, "source.yoda.analytics__static.sms_predefined_message_sub_category_for_synergy_activeness": {"database": null, "schema": "static", "name": "sms_predefined_message_sub_category_for_synergy_activeness", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/synergies/source/analytics___synergies__src.yml", "original_file_path": "models/analytics/synergies/source/analytics___synergies__src.yml", "unique_id": "source.yoda.analytics__static.sms_predefined_message_sub_category_for_synergy_activeness", "fqn": ["yoda", "analytics", "synergies", "source", "analytics__static", "sms_predefined_message_sub_category_for_synergy_activeness"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "sms_predefined_message_sub_category_for_synergy_activeness", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"sub_category": {"name": "sub_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_id": {"name": "synergy_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.sms_predefined_message_sub_category_for_synergy_activeness", "created_at": 1700082693.7006886}, "source.yoda.analytics__email_analytics.emails": {"database": null, "schema": "email_analytics", "name": "emails", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/ugc/source/analytics___ugc__src.yml", "original_file_path": "models/analytics/ugc/source/analytics___ugc__src.yml", "unique_id": "source.yoda.analytics__email_analytics.emails", "fqn": ["yoda", "analytics", "ugc", "source", "analytics__email_analytics", "emails"], "source_name": "analytics__email_analytics", "source_description": "", "loader": "", "identifier": "emails", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "arrived_early_timestamp": {"name": "arrived_early_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "batch_id": {"name": "batch_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "batch_subject": {"name": "batch_subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicked_through_timestamp": {"name": "clicked_through_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "content_creation_timestamp": {"name": "content_creation_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "coupon_code": {"name": "coupon_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_address": {"name": "email_address", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_id": {"name": "email_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_sent_date": {"name": "email_sent_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email_sent_timestamp": {"name": "email_sent_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email_type": {"name": "email_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "failed_timestamp": {"name": "failed_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "invalid_address_timestamp": {"name": "invalid_address_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "marked_spam_timestamp": {"name": "marked_spam_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opened_timestamp": {"name": "opened_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_timestamp": {"name": "order_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reminder_num": {"name": "reminder_num", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_form": {"name": "review_form", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_type": {"name": "review_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "unsubscribed_timestamp": {"name": "unsubscribed_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "email_analytics.emails", "created_at": 1700082693.701039}, "source.yoda.analytics__static.calendar": {"database": null, "schema": "static", "name": "calendar", "resource_type": "source", "package_name": "yoda", "path": "models/analytics/utils/source/analytics___utils__src.yml", "original_file_path": "models/analytics/utils/source/analytics___utils__src.yml", "unique_id": "source.yoda.analytics__static.calendar", "fqn": ["yoda", "analytics", "utils", "source", "analytics__static", "calendar"], "source_name": "analytics__static", "source_description": "", "loader": "", "identifier": "calendar", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "year": {"name": "year", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "quarter": {"name": "quarter", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "week": {"name": "week", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day_name": {"name": "day_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month_name": {"name": "month_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "holiday_flag": {"name": "holiday_flag", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "weekend_flag": {"name": "weekend_flag", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["analytics"]}, "patch_path": null, "unrendered_config": {"tags": ["analytics"]}, "relation_name": "static.calendar", "created_at": 1700082693.701333}, "source.yoda.communication__sms.users": {"database": null, "schema": "sms", "name": "users", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.users", "fqn": ["yoda", "communication", "source", "communication__sms", "users"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "users", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "parent_id": {"name": "parent_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vendor_id": {"name": "vendor_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "support_level_id": {"name": "support_level_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "balance": {"name": "balance", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "bonus_balance": {"name": "bonus_balance", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits": {"name": "credits", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "earnings": {"name": "earnings", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "points": {"name": "points", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "role": {"name": "role", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_id": {"name": "role_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner": {"name": "partner", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner_info": {"name": "partner_info", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_nexmo_price_multiply": {"name": "partner_nexmo_price_multiply", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "plan": {"name": "plan", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_price": {"name": "plan_price", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "package_id": {"name": "package_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yotpo_app_key": {"name": "yotpo_app_key", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_app_secret": {"name": "yotpo_app_secret", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_organization_id": {"name": "yotpo_organization_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "payment_gateway": {"name": "payment_gateway", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provision_calls_count": {"name": "provision_calls_count", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_unique_id": {"name": "platform_unique_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_data": {"name": "discount_data", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_trial_until": {"name": "plan_trial_until", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "discounted_mms_price": {"name": "discounted_mms_price", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "affiliate_commission": {"name": "affiliate_commission", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amploa": {"name": "amploa", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_is_valid": {"name": "email_is_valid", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "password": {"name": "password", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_passwords": {"name": "old_passwords", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tfa_enabled": {"name": "tfa_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "preferred_vendor": {"name": "preferred_vendor", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_type": {"name": "partner_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_route": {"name": "delivery_route", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hash": {"name": "hash", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_number": {"name": "phone_number", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_subscription_list_id": {"name": "main_subscription_list_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "double_opt_in": {"name": "double_opt_in", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "double_opt_in_level": {"name": "double_opt_in_level", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timezone": {"name": "timezone", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dnd": {"name": "dnd", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dnd_from": {"name": "dnd_from", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dnd_to": {"name": "dnd_to", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smart_sending_value": {"name": "smart_sending_value", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smart_sending_ignore_transac_email": {"name": "smart_sending_ignore_transac_email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "strict_marketing_check": {"name": "strict_marketing_check", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_limit_enabled": {"name": "price_limit_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_limit": {"name": "price_limit", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "chat_enabled": {"name": "chat_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chat_settings": {"name": "chat_settings", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collect_checkout_subscribers": {"name": "collect_checkout_subscribers", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "country": {"name": "country", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countries_limitation_mode": {"name": "countries_limitation_mode", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countries_limitation_values": {"name": "countries_limitation_values", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "city": {"name": "city", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zipcode": {"name": "zipcode", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address": {"name": "address", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vat_number": {"name": "vat_number", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paypal_email": {"name": "paypal_email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "google_user_id": {"name": "google_user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_id": {"name": "facebook_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_info": {"name": "facebook_info", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gplusurl": {"name": "gplusurl", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "picture": {"name": "picture", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cookie_related_users": {"name": "cookie_related_users", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "all_ip": {"name": "all_ip", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_ip": {"name": "last_ip", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_available": {"name": "last_available", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "total_logins": {"name": "total_logins", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_downloads": {"name": "total_downloads", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abuser_status": {"name": "abuser_status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abuser_notes": {"name": "abuser_notes", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_keywords_available_count": {"name": "free_keywords_available_count", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ban_exclude": {"name": "ban_exclude", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_test": {"name": "is_test", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscribed": {"name": "subscribed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscribed_to_forum": {"name": "subscribed_to_forum", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unsubscribe_reason": {"name": "unsubscribe_reason", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "notes": {"name": "notes", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upload_lists_enabled": {"name": "upload_lists_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes_modified": {"name": "notes_modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "agreed_terms": {"name": "agreed_terms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signed_promo_id": {"name": "signed_promo_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signup_source": {"name": "signup_source", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_name": {"name": "contact_card_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_logo": {"name": "contact_card_logo", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_path": {"name": "contact_card_path", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_message": {"name": "contact_card_message", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "system_messages_payer": {"name": "system_messages_payer", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "compliance_accepted_date": {"name": "compliance_accepted_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "affiliate_payout_pref": {"name": "affiliate_payout_pref", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "affiliate_payout_email": {"name": "affiliate_payout_email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_payout": {"name": "last_payout", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "automatic_transliteration": {"name": "automatic_transliteration", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_local_number_for_subscription": {"name": "use_local_number_for_subscription", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "onboarding_completed": {"name": "onboarding_completed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "industry": {"name": "industry", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "language": {"name": "language", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "whitelisted": {"name": "whitelisted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shaft_status": {"name": "shaft_status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.users", "created_at": 1700082693.70185}, "source.yoda.communication__sms.shopify_users": {"database": null, "schema": "sms", "name": "shopify_users", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.shopify_users", "fqn": ["yoda", "communication", "source", "communication__sms", "shopify_users"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "shopify_users", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store": {"name": "store", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "access_token": {"name": "access_token", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_data": {"name": "shop_data", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_data": {"name": "app_data", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan": {"name": "plan", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_store_id": {"name": "shopify_store_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "associated_user": {"name": "associated_user", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_reload": {"name": "auto_reload", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_threshold": {"name": "auto_reload_threshold", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_amount": {"name": "auto_reload_amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_cap": {"name": "auto_reload_cap", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abandoned_checkouts_sent": {"name": "abandoned_checkouts_sent", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "connected": {"name": "connected", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_enabled": {"name": "sync_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "back_fill_completed": {"name": "back_fill_completed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes": {"name": "notes", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pinned_navigation": {"name": "pinned_navigation", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "consent_webhook_enabled": {"name": "consent_webhook_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.shopify_users", "created_at": 1700082693.7021203}, "source.yoda.communication__sms.campaigns": {"database": null, "schema": "sms", "name": "campaigns", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.campaigns", "fqn": ["yoda", "communication", "source", "communication__sms", "campaigns"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "campaigns", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "list_id": {"name": "list_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_sent": {"name": "total_sent", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent": {"name": "sent", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_testing_id": {"name": "ab_testing_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "scheduled": {"name": "scheduled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "approved": {"name": "approved", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_repopulated": {"name": "is_repopulated", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "request": {"name": "request", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.campaigns", "created_at": 1700082693.7025042}, "source.yoda.communication__sms.events": {"database": null, "schema": "sms", "name": "events", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.events", "fqn": ["yoda", "communication", "source", "communication__sms", "events"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "events", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "webhook": {"name": "webhook", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "settings": {"name": "settings", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.events", "created_at": 1700082693.7027283}, "source.yoda.communication__sms.flows": {"database": null, "schema": "sms", "name": "flows", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.flows", "fqn": ["yoda", "communication", "source", "communication__sms", "flows"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "flows", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_trigger": {"name": "flow_trigger", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_settings": {"name": "flow_settings", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "snapshot_id": {"name": "snapshot_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.flows", "created_at": 1700082693.7029443}, "source.yoda.communication__sms.forms": {"database": null, "schema": "sms", "name": "forms", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.forms", "fqn": ["yoda", "communication", "source", "communication__sms", "forms"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "forms", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "settings": {"name": "settings", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dynamic_popup": {"name": "dynamic_popup", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_script_id": {"name": "platform_script_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.forms", "created_at": 1700082693.7032416}, "source.yoda.communication__sms.list_keywords": {"database": null, "schema": "sms", "name": "list_keywords", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.list_keywords", "fqn": ["yoda", "communication", "source", "communication__sms", "list_keywords"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "list_keywords", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "keyword": {"name": "keyword", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "list_id": {"name": "list_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price": {"name": "price", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_billed": {"name": "last_billed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status": {"name": "status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_status": {"name": "subscription_status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "max_messages": {"name": "max_messages", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charge_attempts": {"name": "charge_attempts", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.list_keywords", "created_at": 1700082693.7034788}, "source.yoda.communication__sms.shopify_subscription_list_pages": {"database": null, "schema": "sms", "name": "shopify_subscription_list_pages", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.shopify_subscription_list_pages", "fqn": ["yoda", "communication", "source", "communication__sms", "shopify_subscription_list_pages"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "shopify_subscription_list_pages", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "list_id": {"name": "list_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_id": {"name": "page_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "handle": {"name": "handle", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_short_url": {"name": "page_short_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_short_loyalty_url": {"name": "page_short_loyalty_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "link_clicks": {"name": "link_clicks", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "link_subscribed": {"name": "link_subscribed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.shopify_subscription_list_pages", "created_at": 1700082693.7037005}, "source.yoda.communication__sms.shopify_user_integrations": {"database": null, "schema": "sms", "name": "shopify_user_integrations", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.shopify_user_integrations", "fqn": ["yoda", "communication", "source", "communication__sms", "shopify_user_integrations"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "shopify_user_integrations", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "integration_id": {"name": "integration_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.shopify_user_integrations", "created_at": 1700082693.7039034}, "source.yoda.communication__sms.phones_meta": {"database": null, "schema": "sms", "name": "phones_meta", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.phones_meta", "fqn": ["yoda", "communication", "source", "communication__sms", "phones_meta"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "phones_meta", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_id": {"name": "phone_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_subscriber": {"name": "is_subscriber", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_name": {"name": "first_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "birth_date": {"name": "birth_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "gender": {"name": "gender", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timezone": {"name": "timezone", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initial_source": {"name": "initial_source", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.phones_meta", "created_at": 1700082693.7041345}, "source.yoda.communication__sms.apicalls": {"database": null, "schema": "sms", "name": "apicalls", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.apicalls", "fqn": ["yoda", "communication", "source", "communication__sms", "apicalls"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "apicalls", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "request_id": {"name": "request_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "queue_id": {"name": "queue_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_id": {"name": "app_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "apikey": {"name": "apikey", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from": {"name": "from", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "to": {"name": "to", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "media": {"name": "media", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "spot_user_balance": {"name": "spot_user_balance", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "vendor_name_used": {"name": "vendor_name_used", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price_billed": {"name": "price_billed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_vendor_cost": {"name": "price_vendor_cost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "parts": {"name": "parts", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_currency": {"name": "price_currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "method": {"name": "method", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_id": {"name": "message_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_id_int": {"name": "message_id_int", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_uuid": {"name": "message_uuid", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip": {"name": "ip", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip_forward": {"name": "ip_forward", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referer": {"name": "referer", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sender_type": {"name": "sender_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.apicalls", "created_at": 1700082693.704534}, "source.yoda.communication__sms.phones": {"database": null, "schema": "sms", "name": "phones", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.phones", "fqn": ["yoda", "communication", "source", "communication__sms", "phones"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "phones", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "phone": {"name": "phone", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_subscriber": {"name": "is_subscriber", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "country_iso": {"name": "country_iso", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landline": {"name": "landline", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "network": {"name": "network", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "failed_count": {"name": "failed_count", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.phones", "created_at": 1700082693.7047513}, "source.yoda.communication__sms.phone_to_list": {"database": null, "schema": "sms", "name": "phone_to_list", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.phone_to_list", "fqn": ["yoda", "communication", "source", "communication__sms", "phone_to_list"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "phone_to_list", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "list_id": {"name": "list_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_id": {"name": "phone_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_meta_id": {"name": "phone_meta_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source": {"name": "source", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.phone_to_list", "created_at": 1700082693.7049603}, "source.yoda.communication__sms.packages": {"database": null, "schema": "sms", "name": "packages", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.packages", "fqn": ["yoda", "communication", "source", "communication__sms", "packages"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "packages", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_key": {"name": "payment_key", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_key": {"name": "plan_key", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_title": {"name": "sub_title", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "period": {"name": "period", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price": {"name": "price", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "bonus_credits": {"name": "bonus_credits", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "visible_app": {"name": "visible_app", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "visible_site": {"name": "visible_site", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.packages", "created_at": 1700082693.7052484}, "source.yoda.communication__sms.email_esp_events": {"database": null, "schema": "sms", "name": "email_esp_events", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.email_esp_events", "fqn": ["yoda", "communication", "source", "communication__sms", "email_esp_events"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "email_esp_events", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reference_id": {"name": "reference_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_type": {"name": "event_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_properties": {"name": "event_properties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason": {"name": "reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.email_esp_events", "created_at": 1700082693.7054682}, "source.yoda.communication__sms.conversation_messages": {"database": null, "schema": "sms", "name": "conversation_messages", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.conversation_messages", "fqn": ["yoda", "communication", "source", "communication__sms", "conversation_messages"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "conversation_messages", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "conversation_id": {"name": "conversation_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "direction": {"name": "direction", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "apicall_id": {"name": "apicall_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_url": {"name": "image_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_caption": {"name": "image_caption", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "read": {"name": "read", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.conversation_messages", "created_at": 1700082693.7056837}, "source.yoda.communication__sms.klaviyo_users": {"database": null, "schema": "sms", "name": "klaviyo_users", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.klaviyo_users", "fqn": ["yoda", "communication", "source", "communication__sms", "klaviyo_users"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "klaviyo_users", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "api_key": {"name": "api_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "klaviyo_auto_sync": {"name": "klaviyo_auto_sync", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smsbump_auto_sync": {"name": "smsbump_auto_sync", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "all_lists_sync": {"name": "all_lists_sync", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_sync": {"name": "auto_sync", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.klaviyo_users", "created_at": 1700082693.7058897}, "source.yoda.communication__sms.bigcommerce_users": {"database": null, "schema": "sms", "name": "bigcommerce_users", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.bigcommerce_users", "fqn": ["yoda", "communication", "source", "communication__sms", "bigcommerce_users"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "bigcommerce_users", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store": {"name": "store", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_hash": {"name": "store_hash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "access_token": {"name": "access_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_data": {"name": "shop_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_data": {"name": "app_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_level": {"name": "plan_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_reload": {"name": "auto_reload", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_threshold": {"name": "auto_reload_threshold", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_amount": {"name": "auto_reload_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_cap": {"name": "auto_reload_cap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abandoned_checkouts_sent": {"name": "abandoned_checkouts_sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "connected": {"name": "connected", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_enabled": {"name": "sync_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes": {"name": "notes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pinned_navigation": {"name": "pinned_navigation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.bigcommerce_users", "created_at": 1700082693.7061772}, "source.yoda.communication__sms.users_additional_flags": {"database": null, "schema": "sms", "name": "users_additional_flags", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.users_additional_flags", "fqn": ["yoda", "communication", "source", "communication__sms", "users_additional_flags"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "users_additional_flags", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "added_default_flows": {"name": "added_default_flows", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "added_default_segments": {"name": "added_default_segments", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "added_analytics_script": {"name": "added_analytics_script", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_version": {"name": "app_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "show_email": {"name": "show_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopify_sms_consent": {"name": "shopify_sms_consent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "segment_events_backfill": {"name": "segment_events_backfill", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_sms_subscribers_from_unomi": {"name": "show_sms_subscribers_from_unomi", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_contacts_from_unomi": {"name": "campaign_contacts_from_unomi", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_subs_analytics_over_unomi": {"name": "show_subs_analytics_over_unomi", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_loyalty_reviews_filters": {"name": "show_loyalty_reviews_filters", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_loyalty_tier_placeholders": {"name": "show_loyalty_tier_placeholders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_reviews_filters": {"name": "show_reviews_filters", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_attribution": {"name": "new_attribution", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_discount_logic": {"name": "new_discount_logic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "generic_tags_available": {"name": "generic_tags_available", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "generic_products_available": {"name": "generic_products_available", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "generic_collections_available": {"name": "generic_collections_available", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_exports": {"name": "analytics_exports", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yotpo_active": {"name": "yotpo_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yotpo_status_last_check": {"name": "yotpo_status_last_check", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "added_default_segments_v1": {"name": "added_default_segments_v1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "added_default_segments_email": {"name": "added_default_segments_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "generated_revenue": {"name": "generated_revenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_impressions_conv_rate_subs_form": {"name": "show_impressions_conv_rate_subs_form", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_cs_analytics_subscription_form": {"name": "show_cs_analytics_subscription_form", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_cs_looker_subscription_form": {"name": "show_cs_looker_subscription_form", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_subscriber_collection_looker": {"name": "show_subscriber_collection_looker", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_sub_form_looker_ui": {"name": "show_sub_form_looker_ui", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_cs_analytics_page": {"name": "show_cs_analytics_page", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_cs_listing_subscribers_types": {"name": "show_cs_listing_subscribers_types", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_analytics_total_message_parts": {"name": "show_analytics_total_message_parts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_dashboard_page": {"name": "new_dashboard_page", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_payer_last_change": {"name": "sms_payer_last_change", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "show_report": {"name": "show_report", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_group_by_geo_report": {"name": "enable_group_by_geo_report", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_looker_analytics": {"name": "show_looker_analytics", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_subscribers_page": {"name": "new_subscribers_page", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "mandatory_opt_out_message": {"name": "mandatory_opt_out_message", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hide_subscriber_opt_in_preference": {"name": "hide_subscriber_opt_in_preference", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "multiple_free_keywords": {"name": "multiple_free_keywords", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_klaviyo_sync_logic": {"name": "new_klaviyo_sync_logic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_klaviyo_integration_page": {"name": "new_klaviyo_integration_page", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_tiptap_composer": {"name": "use_tiptap_composer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_new_salesforce_version": {"name": "use_new_salesforce_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_tolstoy": {"name": "show_tolstoy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaigns_multiple_segments": {"name": "campaigns_multiple_segments", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "targeted_campaigns_sequence": {"name": "targeted_campaigns_sequence", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "push_tags_to_shopify": {"name": "push_tags_to_shopify", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recharge_set_user_timezone": {"name": "recharge_set_user_timezone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_auto_response_qr": {"name": "enable_auto_response_qr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_auto_response_social": {"name": "enable_auto_response_social", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_new_sidebar": {"name": "use_new_sidebar", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "edit_campaigns": {"name": "edit_campaigns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_new_analytics": {"name": "enable_new_analytics", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_klaviyo_flow_conditions": {"name": "enable_klaviyo_flow_conditions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_balance_logic": {"name": "new_balance_logic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_new_analytics_campaigns_listing": {"name": "enable_new_analytics_campaigns_listing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_new_analytics_campaign_overview": {"name": "enable_new_analytics_campaign_overview", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "resubscribe_user": {"name": "resubscribe_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "popup_enhancements": {"name": "popup_enhancements", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "exclude_generating_recipients_on_validating": {"name": "exclude_generating_recipients_on_validating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "display_new_behavior_popup": {"name": "display_new_behavior_popup", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_request_data_modal": {"name": "new_request_data_modal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaigns_auto_reload_credits": {"name": "campaigns_auto_reload_credits", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "import_without_country_code": {"name": "import_without_country_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_listrak": {"name": "enable_listrak", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automations_v2": {"name": "automations_v2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_integrations_test_mode": {"name": "enable_integrations_test_mode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unomi_campaigns_listing_fields": {"name": "unomi_campaigns_listing_fields", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unomi_parallel_fetch": {"name": "unomi_parallel_fetch", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "click_to_buy": {"name": "click_to_buy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_klaviyo_new_consent": {"name": "enable_klaviyo_new_consent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_loyalty_shortcodes": {"name": "use_loyalty_shortcodes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "browse_abandonment_shortcodes": {"name": "browse_abandonment_shortcodes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_review_shortcodes": {"name": "use_review_shortcodes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopify_transactional_flows": {"name": "shopify_transactional_flows", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hybrid_popup": {"name": "hybrid_popup", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "resource_feedback": {"name": "resource_feedback", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "display_hybrid_popup_migration_times_remaining": {"name": "display_hybrid_popup_migration_times_remaining", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_results": {"name": "campaign_results", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_queue_sdk": {"name": "use_queue_sdk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_domestic_prices": {"name": "use_domestic_prices", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_microservice": {"name": "campaign_microservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "request_recipients_split": {"name": "request_recipients_split", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flows_preview": {"name": "flows_preview", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_onboarding_v2": {"name": "use_onboarding_v2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "allow_onboarding_email": {"name": "allow_onboarding_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_popup_editor": {"name": "new_popup_editor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_loyalty_events": {"name": "new_loyalty_events", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "text_to_buy": {"name": "text_to_buy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_onboarding_discount_setup": {"name": "use_onboarding_discount_setup", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "litigators_service_enabled": {"name": "litigators_service_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flows_listing_redesign": {"name": "flows_listing_redesign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flows_library_redesign": {"name": "flows_library_redesign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flows_empty_state": {"name": "flows_empty_state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collect_checkouts_subscribers_without_events": {"name": "collect_checkouts_subscribers_without_events", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_message_routing_service": {"name": "use_message_routing_service", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collect_subscribers_checkout": {"name": "collect_subscribers_checkout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automation_migration_popup": {"name": "automation_migration_popup", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pulling_klavyio_email_sub": {"name": "pulling_klavyio_email_sub", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "back_in_stock": {"name": "back_in_stock", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "duplicate_form_logic": {"name": "duplicate_form_logic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cs_library_page": {"name": "cs_library_page", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_dashboard_tools": {"name": "show_dashboard_tools", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_recommendation_engine": {"name": "product_recommendation_engine", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_analytics_benchmark": {"name": "enable_analytics_benchmark", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "additional_vip_tier_loyalty_markers": {"name": "additional_vip_tier_loyalty_markers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ignore_transactional_triggers": {"name": "ignore_transactional_triggers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cs_tools_looker_analytics": {"name": "cs_tools_looker_analytics", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collect_subscribers_page_show_cvr_column": {"name": "collect_subscribers_page_show_cvr_column", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "welcome_msg_checkout": {"name": "welcome_msg_checkout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hide_cs_editor_store_view": {"name": "hide_cs_editor_store_view", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_looker_realtime_campaign": {"name": "enable_looker_realtime_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "enable_looker_sources_reports": {"name": "enable_looker_sources_reports", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_flows": {"name": "subscription_flows", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "allow_webhooks_sms_list_segment_events": {"name": "allow_webhooks_sms_list_segment_events", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transactional_is_sms_subscriber": {"name": "transactional_is_sms_subscriber", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transactional_is_email_subscriber": {"name": "transactional_is_email_subscriber", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_user_service_messages": {"name": "use_user_service_messages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new_home_page_dashboard": {"name": "new_home_page_dashboard", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cs_enhanced_unomi_profile_creation": {"name": "cs_enhanced_unomi_profile_creation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "increase_customer_loyalty": {"name": "increase_customer_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "automation_listing_redesign": {"name": "automation_listing_redesign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transactional_message_rules": {"name": "transactional_message_rules", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.users_additional_flags", "created_at": 1700082693.706803}, "source.yoda.communication__sms.shopify_analytics_orders": {"database": null, "schema": "sms", "name": "shopify_analytics_orders", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.shopify_analytics_orders", "fqn": ["yoda", "communication", "source", "communication__sms", "shopify_analytics_orders"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "shopify_analytics_orders", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_snapshot_id": {"name": "flow_snapshot_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_campaign_id": {"name": "ab_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "country_iso": {"name": "country_iso", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ref_campaign_id": {"name": "ref_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.shopify_analytics_orders", "created_at": 1700082693.7070503}, "source.yoda.communication__sms.tmp_email_events": {"database": null, "schema": "sms", "name": "tmp_email_events", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms.tmp_email_events", "fqn": ["yoda", "communication", "source", "communication__sms", "tmp_email_events"], "source_name": "communication__sms", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "tmp_email_events", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "button_name": {"name": "button_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "apperance": {"name": "apperance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms.tmp_email_events", "created_at": 1700082693.7073123}, "source.yoda.communication__sms_shopify.orders": {"database": null, "schema": "sms_shopify", "name": "orders", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__sms_shopify.orders", "fqn": ["yoda", "communication", "source", "communication__sms_shopify", "orders"], "source_name": "communication__sms_shopify", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "orders", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "smsbump_user_id": {"name": "smsbump_user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closed_at": {"name": "closed_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "number": {"name": "number", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "note": {"name": "note", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "token": {"name": "token", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gateway": {"name": "gateway", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "test": {"name": "test", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price": {"name": "total_price", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subtotal_price": {"name": "subtotal_price", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_weight": {"name": "total_weight", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_tax": {"name": "total_tax", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxes_included": {"name": "taxes_included", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "financial_status": {"name": "financial_status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "confirmed": {"name": "confirmed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_discounts": {"name": "total_discounts", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_line_items_price": {"name": "total_line_items_price", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cart_token": {"name": "cart_token", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "buyer_accepts_marketing": {"name": "buyer_accepts_marketing", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referring_site": {"name": "referring_site", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landing_site": {"name": "landing_site", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelled_at": {"name": "cancelled_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "cancel_reason": {"name": "cancel_reason", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price_usd": {"name": "total_price_usd", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "checkout_token": {"name": "checkout_token", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reference": {"name": "reference", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "location_id": {"name": "location_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_identifier": {"name": "source_identifier", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_url": {"name": "source_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processed_at": {"name": "processed_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "device_id": {"name": "device_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_formatted": {"name": "phone_formatted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_locale": {"name": "customer_locale", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "browser_ip": {"name": "browser_ip", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landing_site_ref": {"name": "landing_site_ref", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_number": {"name": "order_number", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_method": {"name": "processing_method", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "checkout_id": {"name": "checkout_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_name": {"name": "source_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fulfillment_status": {"name": "fulfillment_status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_email": {"name": "contact_email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_status_url": {"name": "order_status_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "sms_shopify.orders", "created_at": 1700082693.7077298}, "source.yoda.communication__communication.billing_events": {"database": null, "schema": "communication", "name": "billing_events", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__communication.billing_events", "fqn": ["yoda", "communication", "source", "communication__communication", "billing_events"], "source_name": "communication__communication", "source_description": "", "loader": "", "identifier": "billing_events", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_name": {"name": "source_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "operation_type": {"name": "operation_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_timestamp": {"name": "event_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "requested_email_count": {"name": "requested_email_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "request_cost": {"name": "request_cost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_email_count": {"name": "total_email_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "campaign_email_count": {"name": "campaign_email_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "flow_email_count": {"name": "flow_email_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "billing_cycle_end_date": {"name": "billing_cycle_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_plan_id": {"name": "price_plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "communication.billing_events", "created_at": 1700082693.7079635}, "source.yoda.communication__unomi.profiles": {"database": null, "schema": "unomi", "name": "profiles", "resource_type": "source", "package_name": "yoda", "path": "models/communication/source/communication__src.yml", "original_file_path": "models/communication/source/communication__src.yml", "unique_id": "source.yoda.communication__unomi.profiles", "fqn": ["yoda", "communication", "source", "communication__unomi", "profiles"], "source_name": "communication__unomi", "source_description": "", "loader": "", "identifier": "profiles", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"itemId": {"name": "itemId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "itemType": {"name": "itemType", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lists": {"name": "lists", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "mergedWith": {"name": "mergedWith", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemProperties": {"name": "systemProperties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "properties": {"name": "properties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct,shipping:array>,birthdays:array,createdAt:timestamp,defaultCurrency:string,defaultLanguage:string,email:string,externalCreatedAt:timestamp,externalId:string,externalStatus:string,firstName:string,lastName:string,gender:string,phone:string,platform:string,platformCreatedAt:timestamp,platformCustomerId:string,platformId:string,platformName:string,platformStatus:string,referredByCustomer:boolean,status:string,... 7 more fields>"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["communication"]}, "patch_path": null, "unrendered_config": {"tags": ["communication"]}, "relation_name": "unomi.profiles", "created_at": 1700082693.708219}, "source.yoda.email__communication.campaign_events": {"database": null, "schema": "communication", "name": "campaign_events", "resource_type": "source", "package_name": "yoda", "path": "models/email/source/email__src.yml", "original_file_path": "models/email/source/email__src.yml", "unique_id": "source.yoda.email__communication.campaign_events", "fqn": ["yoda", "email", "source", "email__communication", "campaign_events"], "source_name": "email__communication", "source_description": "", "loader": "", "identifier": "campaign_events", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "audiences": {"name": "audiences", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason": {"name": "reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channelsettings": {"name": "channelsettings", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "createdbyuserid": {"name": "createdbyuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "createddate": {"name": "createddate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isarchived": {"name": "isarchived", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastupdatebyuserid": {"name": "lastupdatebyuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastupdatedate": {"name": "lastupdatedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sendstrategies": {"name": "sendstrategies", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "execution_actualrecipients": {"name": "execution_actualrecipients", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_startdatetime": {"name": "execution_startdatetime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_totaldelivered": {"name": "execution_totaldelivered", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_totalfailed": {"name": "execution_totalfailed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_totalrecipients": {"name": "execution_totalrecipients", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_totalskipped": {"name": "execution_totalskipped", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "completiontime": {"name": "completiontime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "execution_enddatetime": {"name": "execution_enddatetime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "substatusstate": {"name": "substatusstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "audiencesize": {"name": "audiencesize", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isdeleted": {"name": "isdeleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "statusdescription": {"name": "statusdescription", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isstopped": {"name": "isstopped", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "execution_totaldeliveredwhenstopped": {"name": "execution_totaldeliveredwhenstopped", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["email"]}, "patch_path": null, "unrendered_config": {"tags": ["email"]}, "relation_name": "communication.campaign_events", "created_at": 1700082693.708499}, "source.yoda.email__communication.system_email_events": {"database": null, "schema": "communication", "name": "system_email_events", "resource_type": "source", "package_name": "yoda", "path": "models/email/source/email__src.yml", "original_file_path": "models/email/source/email__src.yml", "unique_id": "source.yoda.email__communication.system_email_events", "fqn": ["yoda", "email", "source", "email__communication", "system_email_events"], "source_name": "email__communication", "source_description": "", "loader": "", "identifier": "system_email_events", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "context_reference_id": {"name": "context_reference_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_store_id": {"name": "context_store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_source_id": {"name": "context_source_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_address": {"name": "email_address", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_source_name": {"name": "context_source_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context_delivery_type": {"name": "context_delivery_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_issuer": {"name": "event_issuer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_type": {"name": "event_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "error_message": {"name": "error_message", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mailbox_provider": {"name": "mailbox_provider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_attributes_raw_event": {"name": "external_attributes_raw_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_attributes_external_event_id": {"name": "external_attributes_external_event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_data_ip": {"name": "delivery_data_ip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_data_esp": {"name": "delivery_data_esp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_ip": {"name": "engagement_data_ip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_is_bot_event": {"name": "engagement_data_is_bot_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_machine_mpp_open": {"name": "engagement_data_machine_mpp_open", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_click_url": {"name": "engagement_data_click_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_device_type": {"name": "engagement_data_user_agent_properties_device_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_device": {"name": "engagement_data_user_agent_properties_device", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_browser": {"name": "engagement_data_user_agent_properties_browser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_browser_version": {"name": "engagement_data_user_agent_properties_browser_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_os": {"name": "engagement_data_user_agent_properties_os", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_os_version": {"name": "engagement_data_user_agent_properties_os_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "engagement_data_user_agent_properties_user_agent_line": {"name": "engagement_data_user_agent_properties_user_agent_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "headers_is_replay": {"name": "headers_is_replay", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "headers_event_id": {"name": "headers_event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "headers_event_type": {"name": "headers_event_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "headers_time_sent": {"name": "headers_time_sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "feedback_code": {"name": "feedback_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productname": {"name": "productname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "ip_pool_name": {"name": "ip_pool_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_user_name": {"name": "sub_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["email"]}, "patch_path": null, "unrendered_config": {"tags": ["email"]}, "relation_name": "communication.system_email_events", "created_at": 1700082693.70878}, "source.yoda.email__communication.delivered_email": {"database": null, "schema": "communication", "name": "delivered_email", "resource_type": "source", "package_name": "yoda", "path": "models/email/source/email__src.yml", "original_file_path": "models/email/source/email__src.yml", "unique_id": "source.yoda.email__communication.delivered_email", "fqn": ["yoda", "email", "source", "email__communication", "delivered_email"], "source_name": "email__communication", "source_description": "", "loader": "", "identifier": "delivered_email", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "delivered_email_id": {"name": "delivered_email_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_date": {"name": "created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email_address": {"name": "email_address", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provider_id": {"name": "provider_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reference_id": {"name": "reference_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_status_id": {"name": "delivery_status_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_name": {"name": "source_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_type_id": {"name": "delivery_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status_description": {"name": "status_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_user_name": {"name": "sub_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip_pool_name": {"name": "ip_pool_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hash_key": {"name": "hash_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subject": {"name": "subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_email": {"name": "from_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["email"]}, "patch_path": null, "unrendered_config": {"tags": ["email"]}, "relation_name": "communication.delivered_email", "created_at": 1700082693.7090662}, "source.yoda.email__communication.template_instance_events": {"database": null, "schema": "communication", "name": "template_instance_events", "resource_type": "source", "package_name": "yoda", "path": "models/email/source/email__src.yml", "original_file_path": "models/email/source/email__src.yml", "unique_id": "source.yoda.email__communication.template_instance_events", "fqn": ["yoda", "email", "source", "email__communication", "template_instance_events"], "source_name": "email__communication", "source_description": "", "loader": "", "identifier": "template_instance_events", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_name": {"name": "source_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "template_instance_id": {"name": "template_instance_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_type": {"name": "event_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metadata": {"name": "metadata", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct>>>>"}, "partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["email"]}, "patch_path": null, "unrendered_config": {"tags": ["email"]}, "relation_name": "communication.template_instance_events", "created_at": 1700082693.7093291}, "source.yoda.email__communication.source_engagement_level_dry_run": {"database": null, "schema": "communication", "name": "source_engagement_level_dry_run", "resource_type": "source", "package_name": "yoda", "path": "models/email/source/email__src.yml", "original_file_path": "models/email/source/email__src.yml", "unique_id": "source.yoda.email__communication.source_engagement_level_dry_run", "fqn": ["yoda", "email", "source", "email__communication", "source_engagement_level_dry_run"], "source_name": "email__communication", "source_description": "", "loader": "", "identifier": "source_engagement_level_dry_run", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "engaged_profiles_count": {"name": "engaged_profiles_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "engagement_level": {"name": "engagement_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_timestamp": {"name": "event_timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "excluded_segment_ids": {"name": "excluded_segment_ids", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "feature_name": {"name": "feature_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "included_segment_ids": {"name": "included_segment_ids", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "source_id": {"name": "source_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_profiles_count": {"name": "total_profiles_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "excluded_audience_ids": {"name": "excluded_audience_ids", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "included_audience_ids": {"name": "included_audience_ids", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "feature_version": {"name": "feature_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_on_boarding": {"name": "store_on_boarding", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["email"]}, "patch_path": null, "unrendered_config": {"tags": ["email"]}, "relation_name": "communication.source_engagement_level_dry_run", "created_at": 1700082693.7095587}, "source.yoda.email__delivery.authenticated_domain": {"database": null, "schema": "delivery", "name": "authenticated_domain", "resource_type": "source", "package_name": "yoda", "path": "models/email/source/email__src.yml", "original_file_path": "models/email/source/email__src.yml", "unique_id": "source.yoda.email__delivery.authenticated_domain", "fqn": ["yoda", "email", "source", "email__delivery", "authenticated_domain"], "source_name": "email__delivery", "source_description": "", "loader": "", "identifier": "authenticated_domain", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "authenticated_domain_id": {"name": "authenticated_domain_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "domain_name": {"name": "domain_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subdomain": {"name": "subdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "esp_domain_id": {"name": "esp_domain_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_status_id": {"name": "domain_status_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dns_records": {"name": "dns_records", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["email"]}, "patch_path": null, "unrendered_config": {"tags": ["email"]}, "relation_name": "delivery.authenticated_domain", "created_at": 1700082693.7097719}, "source.yoda.infra__costpo.aws_billing_report_raw": {"database": null, "schema": "costpo", "name": "aws_billing_report_raw", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.aws_billing_report_raw", "fqn": ["yoda", "infra", "source", "infra__costpo", "aws_billing_report_raw"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "aws_billing_report_raw", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"identity_line_item_id": {"name": "identity_line_item_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "identity_time_interval": {"name": "identity_time_interval", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_invoice_id": {"name": "bill_invoice_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_billing_entity": {"name": "bill_billing_entity", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_bill_type": {"name": "bill_bill_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_billing_period_start_date": {"name": "bill_billing_period_start_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_billing_period_end_date": {"name": "bill_billing_period_end_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_usage_account_id": {"name": "line_item_usage_account_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_start_date": {"name": "line_item_usage_start_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_usage_end_date": {"name": "line_item_usage_end_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_product_code": {"name": "line_item_product_code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_type": {"name": "line_item_usage_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_operation": {"name": "line_item_operation", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_availability_zone": {"name": "line_item_availability_zone", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_resource_id": {"name": "line_item_resource_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_amount": {"name": "line_item_usage_amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_normalization_factor": {"name": "line_item_normalization_factor", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_normalized_usage_amount": {"name": "line_item_normalized_usage_amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_currency_code": {"name": "line_item_currency_code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_unblended_rate": {"name": "line_item_unblended_rate", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_unblended_cost": {"name": "line_item_unblended_cost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_blended_rate": {"name": "line_item_blended_rate", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_blended_cost": {"name": "line_item_blended_cost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_line_item_description": {"name": "line_item_line_item_description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_tax_type": {"name": "line_item_tax_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_net_unblended_rate": {"name": "line_item_net_unblended_rate", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_net_unblended_cost": {"name": "line_item_net_unblended_cost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_legal_entity": {"name": "line_item_legal_entity", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_name": {"name": "product_product_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_purchase_option": {"name": "product_purchase_option", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_alarm_type": {"name": "product_alarm_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_availability": {"name": "product_availability", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_availability_zone": {"name": "product_availability_zone", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle": {"name": "product_bundle", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle_description": {"name": "product_bundle_description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle_group": {"name": "product_bundle_group", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_cache_engine": {"name": "product_cache_engine", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_capacitystatus": {"name": "product_capacitystatus", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_category": {"name": "product_category", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_clock_speed": {"name": "product_clock_speed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_component": {"name": "product_component", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_compute_family": {"name": "product_compute_family", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_compute_type": {"name": "product_compute_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_concurrencyscalingfreeusage": {"name": "product_concurrencyscalingfreeusage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_counts_against_quota": {"name": "product_counts_against_quota", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_cputype": {"name": "product_cputype", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_current_generation": {"name": "product_current_generation", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_data": {"name": "product_data", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_data_transfer_quota": {"name": "product_data_transfer_quota", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_database_engine": {"name": "product_database_engine", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_datastore_storagetype": {"name": "product_datastore_storagetype", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_dedicated_ebs_throughput": {"name": "product_dedicated_ebs_throughput", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_deployment_option": {"name": "product_deployment_option", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_description": {"name": "product_description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_durability": {"name": "product_durability", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_ecu": {"name": "product_ecu", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_endpoint": {"name": "product_endpoint", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_endpoint_type": {"name": "product_endpoint_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_engine_code": {"name": "product_engine_code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_enhanced_networking_supported": {"name": "product_enhanced_networking_supported", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_event_type": {"name": "product_event_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_execution_frequency": {"name": "product_execution_frequency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_execution_location": {"name": "product_execution_location", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_fee_code": {"name": "product_fee_code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_fee_description": {"name": "product_fee_description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_free_overage": {"name": "product_free_overage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_frequency_mode": {"name": "product_frequency_mode", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_from_location": {"name": "product_from_location", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_from_location_type": {"name": "product_from_location_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_gpu": {"name": "product_gpu", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_gpu_memory": {"name": "product_gpu_memory", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_granularity": {"name": "product_granularity", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_group": {"name": "product_group", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_group_description": {"name": "product_group_description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_insightstype": {"name": "product_insightstype", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_family": {"name": "product_instance_family", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_name": {"name": "product_instance_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type": {"name": "product_instance_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type_family": {"name": "product_instance_type_family", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_avx2_available": {"name": "product_intel_avx2_available", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_avx_available": {"name": "product_intel_avx_available", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_turbo_available": {"name": "product_intel_turbo_available", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_io": {"name": "product_io", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_license": {"name": "product_license", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_license_model": {"name": "product_license_model", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_location": {"name": "product_location", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_location_type": {"name": "product_location_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_logs_destination": {"name": "product_logs_destination", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_iops_burst_performance": {"name": "product_max_iops_burst_performance", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_iopsvolume": {"name": "product_max_iopsvolume", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_throughputvolume": {"name": "product_max_throughputvolume", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_volume_size": {"name": "product_max_volume_size", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_maximum_extended_storage": {"name": "product_maximum_extended_storage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory": {"name": "product_memory", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory_gib": {"name": "product_memory_gib", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memorytype": {"name": "product_memorytype", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_message_delivery_frequency": {"name": "product_message_delivery_frequency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_message_delivery_order": {"name": "product_message_delivery_order", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_min_volume_size": {"name": "product_min_volume_size", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_network_performance": {"name": "product_network_performance", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_normalization_size_factor": {"name": "product_normalization_size_factor", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_operating_system": {"name": "product_operating_system", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_operation": {"name": "product_operation", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_overage_type": {"name": "product_overage_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_cpu": {"name": "product_physical_cpu", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_gpu": {"name": "product_physical_gpu", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_processor": {"name": "product_physical_processor", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_pre_installed_sw": {"name": "product_pre_installed_sw", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_pricing_unit": {"name": "product_pricing_unit", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_processor_architecture": {"name": "product_processor_architecture", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_processor_features": {"name": "product_processor_features", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_purchaseterm": {"name": "product_purchaseterm", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_queue_type": {"name": "product_queue_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_ratetype": {"name": "product_ratetype", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_request_description": {"name": "product_request_description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_request_type": {"name": "product_request_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_resource_endpoint": {"name": "product_resource_endpoint", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_resource_type": {"name": "product_resource_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rootvolume": {"name": "product_rootvolume", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_routing_target": {"name": "product_routing_target", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_routing_type": {"name": "product_routing_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_running_mode": {"name": "product_running_mode", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_servicecode": {"name": "product_servicecode", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_servicename": {"name": "product_servicename", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_sku": {"name": "product_sku", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_software_included": {"name": "product_software_included", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_software_type": {"name": "product_software_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_standard_storage_retention_included": {"name": "product_standard_storage_retention_included", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage": {"name": "product_storage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_class": {"name": "product_storage_class", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_family": {"name": "product_storage_family", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_media": {"name": "product_storage_media", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_type": {"name": "product_storage_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_tenancy": {"name": "product_tenancy", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_tiertype": {"name": "product_tiertype", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_to_location": {"name": "product_to_location", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_to_location_type": {"name": "product_to_location_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_transfer_type": {"name": "product_transfer_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_type": {"name": "product_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_usage_family": {"name": "product_usage_family", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_usagetype": {"name": "product_usagetype", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_uservolume": {"name": "product_uservolume", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_vcpu": {"name": "product_vcpu", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_version": {"name": "product_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_volume_api_name": {"name": "product_volume_api_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_volume_type": {"name": "product_volume_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_with_active_users": {"name": "product_with_active_users", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_lease_contract_length": {"name": "pricing_lease_contract_length", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_offering_class": {"name": "pricing_offering_class", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_purchase_option": {"name": "pricing_purchase_option", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_rate_code": {"name": "pricing_rate_code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_rate_id": {"name": "pricing_rate_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_currency": {"name": "pricing_currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_public_on_demand_cost": {"name": "pricing_public_on_demand_cost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pricing_public_on_demand_rate": {"name": "pricing_public_on_demand_rate", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_unit": {"name": "pricing_unit", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_amortized_upfront_cost_for_usage": {"name": "reservation_amortized_upfront_cost_for_usage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_amortized_upfront_fee_for_billing_period": {"name": "reservation_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_effective_cost": {"name": "reservation_effective_cost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_end_time": {"name": "reservation_end_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_modification_status": {"name": "reservation_modification_status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_net_amortized_upfront_cost_for_usage": {"name": "reservation_net_amortized_upfront_cost_for_usage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_amortized_upfront_fee_for_billing_period": {"name": "reservation_net_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_effective_cost": {"name": "reservation_net_effective_cost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_recurring_fee_for_usage": {"name": "reservation_net_recurring_fee_for_usage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_unused_amortized_upfront_fee_for_billing_period": {"name": "reservation_net_unused_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_unused_recurring_fee": {"name": "reservation_net_unused_recurring_fee", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_upfront_value": {"name": "reservation_net_upfront_value", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_normalized_units_per_reservation": {"name": "reservation_normalized_units_per_reservation", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_number_of_reservations": {"name": "reservation_number_of_reservations", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_recurring_fee_for_usage": {"name": "reservation_recurring_fee_for_usage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_reservation_a_r_n": {"name": "reservation_reservation_a_r_n", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_start_time": {"name": "reservation_start_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_subscription_id": {"name": "reservation_subscription_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_total_reserved_normalized_units": {"name": "reservation_total_reserved_normalized_units", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_total_reserved_units": {"name": "reservation_total_reserved_units", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_units_per_reservation": {"name": "reservation_units_per_reservation", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_unused_amortized_upfront_fee_for_billing_period": {"name": "reservation_unused_amortized_upfront_fee_for_billing_period", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_normalized_unit_quantity": {"name": "reservation_unused_normalized_unit_quantity", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_quantity": {"name": "reservation_unused_quantity", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_recurring_fee": {"name": "reservation_unused_recurring_fee", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_upfront_value": {"name": "reservation_upfront_value", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_edp_discount": {"name": "discount_edp_discount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_private_rate_discount": {"name": "discount_private_rate_discount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_total_discount": {"name": "discount_total_discount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_total_commitment_to_date": {"name": "savings_plan_total_commitment_to_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_savings_plan_a_r_n": {"name": "savings_plan_savings_plan_a_r_n", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_savings_plan_rate": {"name": "savings_plan_savings_plan_rate", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_used_commitment": {"name": "savings_plan_used_commitment", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_savings_plan_effective_cost": {"name": "savings_plan_savings_plan_effective_cost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_amortized_upfront_commitment_for_billing_period": {"name": "savings_plan_amortized_upfront_commitment_for_billing_period", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_recurring_commitment_for_billing_period": {"name": "savings_plan_recurring_commitment_for_billing_period", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_start_time": {"name": "savings_plan_start_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_end_time": {"name": "savings_plan_end_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_instance_type_family": {"name": "savings_plan_instance_type_family", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_offering_type": {"name": "savings_plan_offering_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_payment_option": {"name": "savings_plan_payment_option", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_purchase_term": {"name": "savings_plan_purchase_term", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_region": {"name": "savings_plan_region", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_net_savings_plan_effective_cost": {"name": "savings_plan_net_savings_plan_effective_cost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_net_amortized_upfront_commitment_for_billing_period": {"name": "savings_plan_net_amortized_upfront_commitment_for_billing_period", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_net_recurring_commitment_for_billing_period": {"name": "savings_plan_net_recurring_commitment_for_billing_period", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "resource_tags_aws_created_by": {"name": "resource_tags_aws_created_by", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_aws_elasticmapreduce_instance_group_role": {"name": "resource_tags_aws_elasticmapreduce_instance_group_role", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_aws_elasticmapreduce_job_flow_id": {"name": "resource_tags_aws_elasticmapreduce_job_flow_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_databricks_instance_pool_id": {"name": "resource_tags_user_databricks_instance_pool_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_docker_compose": {"name": "resource_tags_user_docker_compose", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_environment": {"name": "resource_tags_user_environment", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_name": {"name": "resource_tags_user_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_service": {"name": "resource_tags_user_service", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_account": {"name": "resource_tags_user_account", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_asg": {"name": "resource_tags_user_asg", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_cluster_name": {"name": "resource_tags_user_cluster_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_component": {"name": "resource_tags_user_component", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_product_line": {"name": "resource_tags_user_product_line", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_componenet": {"name": "resource_tags_user_sub_componenet", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_component": {"name": "resource_tags_user_sub_component", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "year": {"name": "year", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.aws_billing_report_raw", "created_at": 1700082693.7106318}, "source.yoda.infra__costpo.kubecost_raw": {"database": null, "schema": "costpo", "name": "kubecost_raw", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.kubecost_raw", "fqn": ["yoda", "infra", "source", "infra__costpo", "kubecost_raw"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "kubecost_raw", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"cpucorehours": {"name": "cpucorehours", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucorerequestaverage": {"name": "cpucorerequestaverage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucoreusageaverage": {"name": "cpucoreusageaverage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucores": {"name": "cpucores", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucost": {"name": "cpucost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpucostadjustment": {"name": "cpucostadjustment", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuefficiency": {"name": "cpuefficiency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end": {"name": "end", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "externalcost": {"name": "externalcost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpucost": {"name": "gpucost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpucostadjustment": {"name": "gpucostadjustment", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpucount": {"name": "gpucount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpuhours": {"name": "gpuhours", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loadbalancercost": {"name": "loadbalancercost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loadbalancercostadjustment": {"name": "loadbalancercostadjustment", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "minutes": {"name": "minutes", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "networkcost": {"name": "networkcost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkcostadjustment": {"name": "networkcostadjustment", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkreceivebytes": {"name": "networkreceivebytes", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networktransferbytes": {"name": "networktransferbytes", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "properties": {"name": "properties", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "STRUCT,namespace:STRING,node:STRING,pod:STRING,providerID:STRING,services:ARRAY>"}, "pvbytehours": {"name": "pvbytehours", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvbytes": {"name": "pvbytes", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvcost": {"name": "pvcost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvcostadjustment": {"name": "pvcostadjustment", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvs": {"name": "pvs", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rambytehours": {"name": "rambytehours", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyterequestaverage": {"name": "rambyterequestaverage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambyteusageaverage": {"name": "rambyteusageaverage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rambytes": {"name": "rambytes", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramcost": {"name": "ramcost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramcostadjustment": {"name": "ramcostadjustment", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramefficiency": {"name": "ramefficiency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rawallocationonly": {"name": "rawallocationonly", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "sharedcost": {"name": "sharedcost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "start": {"name": "start", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "totalcost": {"name": "totalcost", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalefficiency": {"name": "totalefficiency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "window": {"name": "window", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "year": {"name": "year", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.kubecost_raw", "created_at": 1700082693.7109432}, "source.yoda.infra__costpo.databricks_cost_raw": {"database": null, "schema": "costpo", "name": "databricks_cost_raw", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.databricks_cost_raw", "fqn": ["yoda", "infra", "source", "infra__costpo", "databricks_cost_raw"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "databricks_cost_raw", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"workspaceid": {"name": "workspaceid", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp": {"name": "timestamp", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "clusterid": {"name": "clusterid", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clustername": {"name": "clustername", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clusternodetype": {"name": "clusternodetype", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clusterowneruserid": {"name": "clusterowneruserid", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clustercustomtags": {"name": "clustercustomtags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dbus": {"name": "dbus", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "machinehours": {"name": "machinehours", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "clusterownerusername": {"name": "clusterownerusername", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.databricks_cost_raw", "created_at": 1700082693.711202}, "source.yoda.infra__costpo.aws_payer_billing_report_raw": {"database": null, "schema": "costpo", "name": "aws_payer_billing_report_raw", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.aws_payer_billing_report_raw", "fqn": ["yoda", "infra", "source", "infra__costpo", "aws_payer_billing_report_raw"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "aws_payer_billing_report_raw", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"identity_line_item_id": {"name": "identity_line_item_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "identity_time_interval": {"name": "identity_time_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_invoice_id": {"name": "bill_invoice_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_billing_entity": {"name": "bill_billing_entity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_bill_type": {"name": "bill_bill_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_payer_account_id": {"name": "bill_payer_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bill_billing_period_start_date": {"name": "bill_billing_period_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bill_billing_period_end_date": {"name": "bill_billing_period_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_usage_account_id": {"name": "line_item_usage_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_line_item_type": {"name": "line_item_line_item_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_start_date": {"name": "line_item_usage_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_usage_end_date": {"name": "line_item_usage_end_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "line_item_product_code": {"name": "line_item_product_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_type": {"name": "line_item_usage_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_operation": {"name": "line_item_operation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_availability_zone": {"name": "line_item_availability_zone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_resource_id": {"name": "line_item_resource_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_usage_amount": {"name": "line_item_usage_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_normalization_factor": {"name": "line_item_normalization_factor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_normalized_usage_amount": {"name": "line_item_normalized_usage_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_currency_code": {"name": "line_item_currency_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_unblended_rate": {"name": "line_item_unblended_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_unblended_cost": {"name": "line_item_unblended_cost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_blended_rate": {"name": "line_item_blended_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_blended_cost": {"name": "line_item_blended_cost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_line_item_description": {"name": "line_item_line_item_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_tax_type": {"name": "line_item_tax_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_net_unblended_rate": {"name": "line_item_net_unblended_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "line_item_net_unblended_cost": {"name": "line_item_net_unblended_cost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "line_item_legal_entity": {"name": "line_item_legal_entity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_name": {"name": "product_product_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_purchase_option": {"name": "product_purchase_option", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_alarm_type": {"name": "product_alarm_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_availability": {"name": "product_availability", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_availability_zone": {"name": "product_availability_zone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle": {"name": "product_bundle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle_description": {"name": "product_bundle_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_bundle_group": {"name": "product_bundle_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_cache_engine": {"name": "product_cache_engine", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_capacitystatus": {"name": "product_capacitystatus", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_category": {"name": "product_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_clock_speed": {"name": "product_clock_speed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_component": {"name": "product_component", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_compute_family": {"name": "product_compute_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_compute_type": {"name": "product_compute_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_concurrencyscalingfreeusage": {"name": "product_concurrencyscalingfreeusage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_counts_against_quota": {"name": "product_counts_against_quota", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_cputype": {"name": "product_cputype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_current_generation": {"name": "product_current_generation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_data": {"name": "product_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_data_transfer_quota": {"name": "product_data_transfer_quota", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_database_engine": {"name": "product_database_engine", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_datastore_storagetype": {"name": "product_datastore_storagetype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_dedicated_ebs_throughput": {"name": "product_dedicated_ebs_throughput", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_deployment_option": {"name": "product_deployment_option", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_description": {"name": "product_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_durability": {"name": "product_durability", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_ecu": {"name": "product_ecu", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_endpoint": {"name": "product_endpoint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_endpoint_type": {"name": "product_endpoint_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_engine_code": {"name": "product_engine_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_enhanced_networking_supported": {"name": "product_enhanced_networking_supported", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_event_type": {"name": "product_event_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_execution_frequency": {"name": "product_execution_frequency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_execution_location": {"name": "product_execution_location", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_fee_code": {"name": "product_fee_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_fee_description": {"name": "product_fee_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_free_overage": {"name": "product_free_overage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_frequency_mode": {"name": "product_frequency_mode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_from_location": {"name": "product_from_location", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_from_location_type": {"name": "product_from_location_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_gpu": {"name": "product_gpu", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_gpu_memory": {"name": "product_gpu_memory", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_granularity": {"name": "product_granularity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_group": {"name": "product_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_group_description": {"name": "product_group_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_insightstype": {"name": "product_insightstype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_family": {"name": "product_instance_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_name": {"name": "product_instance_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type": {"name": "product_instance_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_instance_type_family": {"name": "product_instance_type_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_avx2_available": {"name": "product_intel_avx2_available", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_avx_available": {"name": "product_intel_avx_available", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_intel_turbo_available": {"name": "product_intel_turbo_available", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_io": {"name": "product_io", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_license": {"name": "product_license", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_license_model": {"name": "product_license_model", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_location": {"name": "product_location", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_location_type": {"name": "product_location_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_logs_destination": {"name": "product_logs_destination", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_iops_burst_performance": {"name": "product_max_iops_burst_performance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_iopsvolume": {"name": "product_max_iopsvolume", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_throughputvolume": {"name": "product_max_throughputvolume", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_max_volume_size": {"name": "product_max_volume_size", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_maximum_extended_storage": {"name": "product_maximum_extended_storage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory": {"name": "product_memory", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memory_gib": {"name": "product_memory_gib", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_memorytype": {"name": "product_memorytype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_message_delivery_frequency": {"name": "product_message_delivery_frequency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_message_delivery_order": {"name": "product_message_delivery_order", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_min_volume_size": {"name": "product_min_volume_size", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_network_performance": {"name": "product_network_performance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_normalization_size_factor": {"name": "product_normalization_size_factor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_operating_system": {"name": "product_operating_system", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_operation": {"name": "product_operation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_overage_type": {"name": "product_overage_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_cpu": {"name": "product_physical_cpu", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_gpu": {"name": "product_physical_gpu", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_physical_processor": {"name": "product_physical_processor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_pre_installed_sw": {"name": "product_pre_installed_sw", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_pricing_unit": {"name": "product_pricing_unit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_processor_architecture": {"name": "product_processor_architecture", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_processor_features": {"name": "product_processor_features", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_product_family": {"name": "product_product_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_purchaseterm": {"name": "product_purchaseterm", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_queue_type": {"name": "product_queue_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_ratetype": {"name": "product_ratetype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_region": {"name": "product_region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_request_description": {"name": "product_request_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_request_type": {"name": "product_request_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_resource_endpoint": {"name": "product_resource_endpoint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_resource_type": {"name": "product_resource_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_rootvolume": {"name": "product_rootvolume", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_routing_target": {"name": "product_routing_target", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_routing_type": {"name": "product_routing_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_running_mode": {"name": "product_running_mode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_servicecode": {"name": "product_servicecode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_servicename": {"name": "product_servicename", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_sku": {"name": "product_sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_software_included": {"name": "product_software_included", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_software_type": {"name": "product_software_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_standard_storage_retention_included": {"name": "product_standard_storage_retention_included", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage": {"name": "product_storage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_class": {"name": "product_storage_class", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_family": {"name": "product_storage_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_media": {"name": "product_storage_media", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_storage_type": {"name": "product_storage_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_tenancy": {"name": "product_tenancy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_tiertype": {"name": "product_tiertype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_to_location": {"name": "product_to_location", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_to_location_type": {"name": "product_to_location_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_transfer_type": {"name": "product_transfer_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_type": {"name": "product_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_usage_family": {"name": "product_usage_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_usagetype": {"name": "product_usagetype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_uservolume": {"name": "product_uservolume", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_vcpu": {"name": "product_vcpu", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_version": {"name": "product_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_volume_api_name": {"name": "product_volume_api_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_volume_type": {"name": "product_volume_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_with_active_users": {"name": "product_with_active_users", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_lease_contract_length": {"name": "pricing_lease_contract_length", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_offering_class": {"name": "pricing_offering_class", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_purchase_option": {"name": "pricing_purchase_option", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_rate_code": {"name": "pricing_rate_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_rate_id": {"name": "pricing_rate_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_currency": {"name": "pricing_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_public_on_demand_cost": {"name": "pricing_public_on_demand_cost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pricing_public_on_demand_rate": {"name": "pricing_public_on_demand_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_term": {"name": "pricing_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_unit": {"name": "pricing_unit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_amortized_upfront_cost_for_usage": {"name": "reservation_amortized_upfront_cost_for_usage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_amortized_upfront_fee_for_billing_period": {"name": "reservation_amortized_upfront_fee_for_billing_period", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_effective_cost": {"name": "reservation_effective_cost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_end_time": {"name": "reservation_end_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_modification_status": {"name": "reservation_modification_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_net_amortized_upfront_cost_for_usage": {"name": "reservation_net_amortized_upfront_cost_for_usage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_amortized_upfront_fee_for_billing_period": {"name": "reservation_net_amortized_upfront_fee_for_billing_period", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_effective_cost": {"name": "reservation_net_effective_cost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_recurring_fee_for_usage": {"name": "reservation_net_recurring_fee_for_usage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_unused_amortized_upfront_fee_for_billing_period": {"name": "reservation_net_unused_amortized_upfront_fee_for_billing_period", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_unused_recurring_fee": {"name": "reservation_net_unused_recurring_fee", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_net_upfront_value": {"name": "reservation_net_upfront_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_normalized_units_per_reservation": {"name": "reservation_normalized_units_per_reservation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_number_of_reservations": {"name": "reservation_number_of_reservations", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_recurring_fee_for_usage": {"name": "reservation_recurring_fee_for_usage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_reservation_a_r_n": {"name": "reservation_reservation_a_r_n", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_start_time": {"name": "reservation_start_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_subscription_id": {"name": "reservation_subscription_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_total_reserved_normalized_units": {"name": "reservation_total_reserved_normalized_units", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_total_reserved_units": {"name": "reservation_total_reserved_units", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_units_per_reservation": {"name": "reservation_units_per_reservation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reservation_unused_amortized_upfront_fee_for_billing_period": {"name": "reservation_unused_amortized_upfront_fee_for_billing_period", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_normalized_unit_quantity": {"name": "reservation_unused_normalized_unit_quantity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_quantity": {"name": "reservation_unused_quantity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_unused_recurring_fee": {"name": "reservation_unused_recurring_fee", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "reservation_upfront_value": {"name": "reservation_upfront_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_edp_discount": {"name": "discount_edp_discount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_private_rate_discount": {"name": "discount_private_rate_discount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "discount_total_discount": {"name": "discount_total_discount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_total_commitment_to_date": {"name": "savings_plan_total_commitment_to_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_savings_plan_a_r_n": {"name": "savings_plan_savings_plan_a_r_n", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_savings_plan_rate": {"name": "savings_plan_savings_plan_rate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_used_commitment": {"name": "savings_plan_used_commitment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_savings_plan_effective_cost": {"name": "savings_plan_savings_plan_effective_cost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_amortized_upfront_commitment_for_billing_period": {"name": "savings_plan_amortized_upfront_commitment_for_billing_period", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_recurring_commitment_for_billing_period": {"name": "savings_plan_recurring_commitment_for_billing_period", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_start_time": {"name": "savings_plan_start_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_end_time": {"name": "savings_plan_end_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_instance_type_family": {"name": "savings_plan_instance_type_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_offering_type": {"name": "savings_plan_offering_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_payment_option": {"name": "savings_plan_payment_option", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_purchase_term": {"name": "savings_plan_purchase_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_region": {"name": "savings_plan_region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "savings_plan_net_savings_plan_effective_cost": {"name": "savings_plan_net_savings_plan_effective_cost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_net_amortized_upfront_commitment_for_billing_period": {"name": "savings_plan_net_amortized_upfront_commitment_for_billing_period", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "savings_plan_net_recurring_commitment_for_billing_period": {"name": "savings_plan_net_recurring_commitment_for_billing_period", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "resource_tags_aws_created_by": {"name": "resource_tags_aws_created_by", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_aws_elasticmapreduce_instance_group_role": {"name": "resource_tags_aws_elasticmapreduce_instance_group_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_aws_elasticmapreduce_job_flow_id": {"name": "resource_tags_aws_elasticmapreduce_job_flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_databricks_instance_pool_id": {"name": "resource_tags_user_databricks_instance_pool_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_docker_compose": {"name": "resource_tags_user_docker_compose", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_environment": {"name": "resource_tags_user_environment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_name": {"name": "resource_tags_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_service": {"name": "resource_tags_user_service", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_account": {"name": "resource_tags_user_account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_asg": {"name": "resource_tags_user_asg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_cluster_name": {"name": "resource_tags_user_cluster_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_component": {"name": "resource_tags_user_component", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_product_line": {"name": "resource_tags_user_product_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_componenet": {"name": "resource_tags_user_sub_componenet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_sub_component": {"name": "resource_tags_user_sub_component", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_group": {"name": "resource_tags_user_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_iac": {"name": "resource_tags_user_iac", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_repository": {"name": "resource_tags_user_repository", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_team": {"name": "resource_tags_user_team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_feature": {"name": "resource_tags_user_feature", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "year": {"name": "year", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "resource_tags_user_cast_cluster_id": {"name": "resource_tags_user_cast_cluster_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_cast_managed_by": {"name": "resource_tags_user_cast_managed_by", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_cast_node_id": {"name": "resource_tags_user_cast_node_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resource_tags_user_castai": {"name": "resource_tags_user_castai", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.aws_payer_billing_report_raw", "created_at": 1700082693.7120044}, "source.yoda.infra__costpo.budget": {"database": null, "schema": "costpo", "name": "budget", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.budget", "fqn": ["yoda", "infra", "source", "infra__costpo", "budget"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "budget", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"product_line": {"name": "product_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "daily": {"name": "daily", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.budget", "created_at": 1700082693.7122507}, "source.yoda.infra__costpo.sub_departments_monthyl_budget": {"database": null, "schema": "costpo", "name": "sub_departments_monthyl_budget", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.sub_departments_monthyl_budget", "fqn": ["yoda", "infra", "source", "infra__costpo", "sub_departments_monthyl_budget"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "sub_departments_monthyl_budget", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"department": {"name": "department", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "department_disply_name": {"name": "department_disply_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "budget": {"name": "budget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.sub_departments_monthyl_budget", "created_at": 1700082693.712442}, "source.yoda.infra__costpo.kubecost_delta": {"database": null, "schema": "costpo", "name": "kubecost_delta", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.kubecost_delta", "fqn": ["yoda", "infra", "source", "infra__costpo", "kubecost_delta"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "kubecost_delta", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"cpuCoreHours": {"name": "cpuCoreHours", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCoreRequestAverage": {"name": "cpuCoreRequestAverage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCoreUsageAverage": {"name": "cpuCoreUsageAverage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCores": {"name": "cpuCores", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCost": {"name": "cpuCost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuCostAdjustment": {"name": "cpuCostAdjustment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cpuEfficiency": {"name": "cpuEfficiency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "end": {"name": "end", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "externalCost": {"name": "externalCost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpuCost": {"name": "gpuCost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpuCostAdjustment": {"name": "gpuCostAdjustment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpuCount": {"name": "gpuCount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gpuHours": {"name": "gpuHours", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loadBalancerCost": {"name": "loadBalancerCost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "loadBalancerCostAdjustment": {"name": "loadBalancerCostAdjustment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "minutes": {"name": "minutes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "networkCost": {"name": "networkCost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkCostAdjustment": {"name": "networkCostAdjustment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkReceiveBytes": {"name": "networkReceiveBytes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "networkTransferBytes": {"name": "networkTransferBytes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "properties": {"name": "properties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct,namespace:string,node:string,pod:string,providerID:string,services:array>"}, "pvByteHours": {"name": "pvByteHours", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvBytes": {"name": "pvBytes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvCost": {"name": "pvCost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvCostAdjustment": {"name": "pvCostAdjustment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pvs": {"name": "pvs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ramByteHours": {"name": "ramByteHours", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramByteRequestAverage": {"name": "ramByteRequestAverage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramByteUsageAverage": {"name": "ramByteUsageAverage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramBytes": {"name": "ramBytes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramCost": {"name": "ramCost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramCostAdjustment": {"name": "ramCostAdjustment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "ramEfficiency": {"name": "ramEfficiency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rawAllocationOnly": {"name": "rawAllocationOnly", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "sharedCost": {"name": "sharedCost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "start": {"name": "start", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "totalCost": {"name": "totalCost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "totalEfficiency": {"name": "totalEfficiency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "window": {"name": "window", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct"}, "year": {"name": "year", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.kubecost_delta", "created_at": 1700082693.7127194}, "source.yoda.infra__costpo.snowflake_automatic_clustering_history": {"database": null, "schema": "costpo", "name": "snowflake_automatic_clustering_history", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.snowflake_automatic_clustering_history", "fqn": ["yoda", "infra", "source", "infra__costpo", "snowflake_automatic_clustering_history"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "snowflake_automatic_clustering_history", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"start_time": {"name": "start_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "end_time": {"name": "end_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "table_id": {"name": "table_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits_used": {"name": "credits_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "database_id": {"name": "database_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "database_name": {"name": "database_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "num_bytes_reclustered": {"name": "num_bytes_reclustered", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "num_rows_reclustered": {"name": "num_rows_reclustered", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "schema_id": {"name": "schema_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "schema_name": {"name": "schema_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "table_name": {"name": "table_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account": {"name": "account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.snowflake_automatic_clustering_history", "created_at": 1700082693.7129207}, "source.yoda.infra__costpo.snowflake_database_storage_usage_history": {"database": null, "schema": "costpo", "name": "snowflake_database_storage_usage_history", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.snowflake_database_storage_usage_history", "fqn": ["yoda", "infra", "source", "infra__costpo", "snowflake_database_storage_usage_history"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "snowflake_database_storage_usage_history", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"usage_date": {"name": "usage_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "database_id": {"name": "database_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "database_name": {"name": "database_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "average_database_bytes": {"name": "average_database_bytes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "average_failsafe_bytes": {"name": "average_failsafe_bytes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account": {"name": "account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.snowflake_database_storage_usage_history", "created_at": 1700082693.7131648}, "source.yoda.infra__costpo.snowflake_materialized_view_refresh_history": {"database": null, "schema": "costpo", "name": "snowflake_materialized_view_refresh_history", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.snowflake_materialized_view_refresh_history", "fqn": ["yoda", "infra", "source", "infra__costpo", "snowflake_materialized_view_refresh_history"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "snowflake_materialized_view_refresh_history", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"start_time": {"name": "start_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "end_time": {"name": "end_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "credits_used": {"name": "credits_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "table_id": {"name": "table_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "table_name": {"name": "table_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "schema_id": {"name": "schema_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "schema_name": {"name": "schema_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "database_id": {"name": "database_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "database_name": {"name": "database_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account": {"name": "account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.snowflake_materialized_view_refresh_history", "created_at": 1700082693.713374}, "source.yoda.infra__costpo.snowflake_warehouse_metering_history": {"database": null, "schema": "costpo", "name": "snowflake_warehouse_metering_history", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.snowflake_warehouse_metering_history", "fqn": ["yoda", "infra", "source", "infra__costpo", "snowflake_warehouse_metering_history"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "snowflake_warehouse_metering_history", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"start_time": {"name": "start_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "end_time": {"name": "end_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "warehouse_id": {"name": "warehouse_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "warehouse_name": {"name": "warehouse_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "credits_used": {"name": "credits_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits_used_compute": {"name": "credits_used_compute", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits_used_cloud_services": {"name": "credits_used_cloud_services", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account": {"name": "account", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.snowflake_warehouse_metering_history", "created_at": 1700082693.7135768}, "source.yoda.infra__costpo.snowflake_tag_references": {"database": null, "schema": "costpo", "name": "snowflake_tag_references", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.snowflake_tag_references", "fqn": ["yoda", "infra", "source", "infra__costpo", "snowflake_tag_references"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "snowflake_tag_references", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"column_id": {"name": "column_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "column_name": {"name": "column_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_database": {"name": "object_database", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_deleted": {"name": "object_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "object_id": {"name": "object_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "object_name": {"name": "object_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_schema": {"name": "object_schema", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tag_database": {"name": "tag_database", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tag_id": {"name": "tag_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tag_name": {"name": "tag_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tag_schema": {"name": "tag_schema", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tag_value": {"name": "tag_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.snowflake_tag_references", "created_at": 1700082693.7150397}, "source.yoda.infra__costpo.snowflake_warehouse_events": {"database": null, "schema": "costpo", "name": "snowflake_warehouse_events", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.snowflake_warehouse_events", "fqn": ["yoda", "infra", "source", "infra__costpo", "snowflake_warehouse_events"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "snowflake_warehouse_events", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "warehouse_name": {"name": "warehouse_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cluster_number": {"name": "cluster_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_state": {"name": "event_state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.snowflake_warehouse_events", "created_at": 1700082693.7153685}, "source.yoda.infra__costpo.snowflake_queries_statistics": {"database": null, "schema": "costpo", "name": "snowflake_queries_statistics", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.snowflake_queries_statistics", "fqn": ["yoda", "infra", "source", "infra__costpo", "snowflake_queries_statistics"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "snowflake_queries_statistics", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"start_time": {"name": "start_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "warehouse_name": {"name": "warehouse_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "query_type": {"name": "query_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "warehouse_size": {"name": "warehouse_size", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "EXECUTION_STATUS": {"name": "EXECUTION_STATUS", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_queries": {"name": "total_queries", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "min_cluster_cnt": {"name": "min_cluster_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "max_cluster_cnt": {"name": "max_cluster_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "total_elapsed_p25": {"name": "total_elapsed_p25", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_p50": {"name": "total_elapsed_p50", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_p75": {"name": "total_elapsed_p75", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_p95": {"name": "total_elapsed_p95", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed_avg": {"name": "total_elapsed_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_elapsed": {"name": "total_elapsed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p25": {"name": "compilation_time_p25", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p50": {"name": "compilation_time_p50", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p75": {"name": "compilation_time_p75", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_p95": {"name": "compilation_time_p95", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time_avg": {"name": "compilation_time_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "compilation_time": {"name": "compilation_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p25": {"name": "execution_time_p25", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p50": {"name": "execution_time_p50", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p75": {"name": "execution_time_p75", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_p95": {"name": "execution_time_p95", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time_avg": {"name": "execution_time_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "execution_time": {"name": "execution_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p25": {"name": "queue_time_p25", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p50": {"name": "queue_time_p50", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p75": {"name": "queue_time_p75", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_p95": {"name": "queue_time_p95", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time_avg": {"name": "queue_time_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queue_time": {"name": "queue_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p25": {"name": "blocked_time_p25", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p50": {"name": "blocked_time_p50", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p75": {"name": "blocked_time_p75", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_p95": {"name": "blocked_time_p95", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time_avg": {"name": "blocked_time_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "blocked_time": {"name": "blocked_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "spilled_to_local_cnt": {"name": "spilled_to_local_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "spilled_to_remote_cnt": {"name": "spilled_to_remote_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "scanned_from_cache_p25": {"name": "scanned_from_cache_p25", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_p50": {"name": "scanned_from_cache_p50", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_p75": {"name": "scanned_from_cache_p75", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_p95": {"name": "scanned_from_cache_p95", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache_avg": {"name": "scanned_from_cache_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "scanned_from_cache": {"name": "scanned_from_cache", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p25": {"name": "inbound_data_p25", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p50": {"name": "inbound_data_p50", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p75": {"name": "inbound_data_p75", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_p95": {"name": "inbound_data_p95", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data_avg": {"name": "inbound_data_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "inbound_data": {"name": "inbound_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p25": {"name": "outbound_data_p25", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p50": {"name": "outbound_data_p50", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p75": {"name": "outbound_data_p75", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_p95": {"name": "outbound_data_p95", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data_avg": {"name": "outbound_data_avg", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "outbound_data": {"name": "outbound_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "queries_partition_proning_cnt": {"name": "queries_partition_proning_cnt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.snowflake_queries_statistics", "created_at": 1700082693.7157094}, "source.yoda.infra__costpo.sub_departments_monthly_budget": {"database": null, "schema": "costpo", "name": "sub_departments_monthly_budget", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.sub_departments_monthly_budget", "fqn": ["yoda", "infra", "source", "infra__costpo", "sub_departments_monthly_budget"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "sub_departments_monthly_budget", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"department": {"name": "department", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "department_disply_name": {"name": "department_disply_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "change_date": {"name": "change_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "budget": {"name": "budget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.sub_departments_monthly_budget", "created_at": 1700082693.7158964}, "source.yoda.infra__costpo.team_budget": {"database": null, "schema": "costpo", "name": "team_budget", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__costpo.team_budget", "fqn": ["yoda", "infra", "source", "infra__costpo", "team_budget"], "source_name": "infra__costpo", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "team_budget", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_line": {"name": "product_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group": {"name": "group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "team": {"name": "team", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "budget": {"name": "budget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "costpo.team_budget", "created_at": 1700082693.7161214}, "source.yoda.infra__default.s3_inventory": {"database": null, "schema": "default", "name": "s3_inventory", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__default.s3_inventory", "fqn": ["yoda", "infra", "source", "infra__default", "s3_inventory"], "source_name": "infra__default", "source_description": "", "loader": "", "identifier": "s3_inventory", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"bucket": {"name": "bucket", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "key": {"name": "key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "size": {"name": "size", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_modified_date": {"name": "last_modified_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "e_tag": {"name": "e_tag", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storage_class": {"name": "storage_class", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_multipart_uploaded": {"name": "is_multipart_uploaded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "replication_status": {"name": "replication_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "encryption_status": {"name": "encryption_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_lock_retain_until_date": {"name": "object_lock_retain_until_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "object_lock_mode": {"name": "object_lock_mode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "object_lock_legal_hold_status": {"name": "object_lock_legal_hold_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "intelligent_tiering_access_tier": {"name": "intelligent_tiering_access_tier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "year": {"name": "year", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "default.s3_inventory", "created_at": 1700082693.7164016}, "source.yoda.infra__pixel.pixel_enrichment": {"database": null, "schema": "pixel", "name": "pixel_enrichment", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__pixel.pixel_enrichment", "fqn": ["yoda", "infra", "source", "infra__pixel", "pixel_enrichment"], "source_name": "infra__pixel", "source_description": "", "loader": "", "identifier": "pixel_enrichment", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "br_colordepth": {"name": "br_colordepth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_cookies": {"name": "br_cookies", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_family": {"name": "br_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_features_director": {"name": "br_features_director", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_flash": {"name": "br_features_flash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_gears": {"name": "br_features_gears", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_java": {"name": "br_features_java", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_pdf": {"name": "br_features_pdf", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_quicktime": {"name": "br_features_quicktime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_realplayer": {"name": "br_features_realplayer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_silverlight": {"name": "br_features_silverlight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_windowsmedia": {"name": "br_features_windowsmedia", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_lang": {"name": "br_lang", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_major": {"name": "br_major", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_minor": {"name": "br_minor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_viewheight": {"name": "br_viewheight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_viewwidth": {"name": "br_viewwidth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_day": {"name": "collector_day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_epoch": {"name": "collector_epoch", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_month": {"name": "collector_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_year": {"name": "collector_year", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_family": {"name": "device_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_charset": {"name": "doc_charset", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_height": {"name": "doc_height", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "doc_width": {"name": "doc_width", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_sessionidx": {"name": "domain_sessionidx", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dvce_screenheight": {"name": "dvce_screenheight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_screenwidth": {"name": "dvce_screenwidth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_tstamp": {"name": "dvce_tstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_vendor": {"name": "event_vendor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event": {"name": "event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_city": {"name": "geo_city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_country": {"name": "geo_country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_latitude": {"name": "geo_latitude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_longitude": {"name": "geo_longitude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_region": {"name": "geo_region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_zipcode": {"name": "geo_zipcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_campaign": {"name": "mkt_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_content": {"name": "mkt_content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_medium": {"name": "mkt_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_source": {"name": "mkt_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_term": {"name": "mkt_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_family": {"name": "os_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_major": {"name": "os_major", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_minor": {"name": "os_minor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_timezone": {"name": "os_timezone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlfragment": {"name": "page_urlfragment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlhost": {"name": "page_urlhost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlpath": {"name": "page_urlpath", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlport": {"name": "page_urlport", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_urlquery": {"name": "page_urlquery", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlscheme": {"name": "page_urlscheme", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pp_xoffset_max": {"name": "pp_xoffset_max", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_xoffset_min": {"name": "pp_xoffset_min", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_max": {"name": "pp_yoffset_max", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_min": {"name": "pp_yoffset_min", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_medium": {"name": "refr_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_source": {"name": "refr_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_term": {"name": "refr_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlfragment": {"name": "refr_urlfragment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlhost": {"name": "refr_urlhost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlpath": {"name": "refr_urlpath", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlport": {"name": "refr_urlport", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_urlquery": {"name": "refr_urlquery", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlscheme": {"name": "refr_urlscheme", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_page_sku": {"name": "se_page_sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_testing_groups": {"name": "se_testing_groups", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_value": {"name": "se_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_currency": {"name": "tr_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_orderid": {"name": "tr_orderid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_total": {"name": "tr_total", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "txn_id": {"name": "txn_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_fingerprint": {"name": "user_fingerprint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useragent": {"name": "useragent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_collector": {"name": "v_collector", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_etl": {"name": "v_etl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_tracker": {"name": "v_tracker", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "y_fingerprint": {"name": "y_fingerprint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hour": {"name": "hour", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "pixel.pixel_enrichment", "created_at": 1700082693.7169027}, "source.yoda.infra__opsgenie.incidents": {"database": null, "schema": "opsgenie", "name": "incidents", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__opsgenie.incidents", "fqn": ["yoda", "infra", "source", "infra__opsgenie", "incidents"], "source_name": "infra__opsgenie", "source_description": "", "loader": "", "identifier": "incidents", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"seen": {"name": "seen", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tinyId": {"name": "tinyId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "alias": {"name": "alias", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "acknowledged": {"name": "acknowledged", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isSeen": {"name": "isSeen", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "snoozed": {"name": "snoozed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "count": {"name": "count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastOccurredAt": {"name": "lastOccurredAt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdAt": {"name": "createdAt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedAt": {"name": "updatedAt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priority": {"name": "priority", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "teams": {"name": "teams", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "responders": {"name": "responders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integration": {"name": "integration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "report": {"name": "report", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerTeamId": {"name": "ownerTeamId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerTeam": {"name": "ownerTeam", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "extraProperties": {"name": "extraProperties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "links": {"name": "links", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "impactStartDate": {"name": "impactStartDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "impactEndDate": {"name": "impactEndDate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "impactedServices": {"name": "impactedServices", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actions": {"name": "actions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "opsgenie.incidents", "created_at": 1700082693.717235}, "source.yoda.infra__opsgenie.services": {"database": null, "schema": "opsgenie", "name": "services", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__opsgenie.services", "fqn": ["yoda", "infra", "source", "infra__opsgenie", "services"], "source_name": "infra__opsgenie", "source_description": "", "loader": "", "identifier": "services", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "links": {"name": "links", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "teamId": {"name": "teamId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isExternal": {"name": "isExternal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "tags": {"name": "tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "opsgenie.services", "created_at": 1700082693.7174447}, "source.yoda.infra__opsgenie.teams": {"database": null, "schema": "opsgenie", "name": "teams", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__opsgenie.teams", "fqn": ["yoda", "infra", "source", "infra__opsgenie", "teams"], "source_name": "infra__opsgenie", "source_description": "", "loader": "", "identifier": "teams", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "links": {"name": "links", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "opsgenie.teams", "created_at": 1700082693.7176306}, "source.yoda.infra__opsgenie.alerts": {"database": null, "schema": "opsgenie", "name": "alerts", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__opsgenie.alerts", "fqn": ["yoda", "infra", "source", "infra__opsgenie", "alerts"], "source_name": "infra__opsgenie", "source_description": "", "loader": "", "identifier": "alerts", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"seen": {"name": "seen", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tinyid": {"name": "tinyid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "alias": {"name": "alias", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "acknowledged": {"name": "acknowledged", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isseen": {"name": "isseen", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "snoozed": {"name": "snoozed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "count": {"name": "count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastoccurredat": {"name": "lastoccurredat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updatedat": {"name": "updatedat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "priority": {"name": "priority", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "teams": {"name": "teams", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "responders": {"name": "responders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integration": {"name": "integration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "report": {"name": "report", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ownerteamid": {"name": "ownerteamid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "opsgenie.alerts", "created_at": 1700082693.717868}, "source.yoda.infra__github_info.repos": {"database": null, "schema": "github_info", "name": "repos", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__github_info.repos", "fqn": ["yoda", "infra", "source", "infra__github_info", "repos"], "source_name": "infra__github_info", "source_description": "", "loader": "", "identifier": "repos", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "node_id": {"name": "node_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_name": {"name": "full_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fork": {"name": "fork", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "private": {"name": "private", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "forks_count": {"name": "forks_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "stargazers_count": {"name": "stargazers_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "watchers_count": {"name": "watchers_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "size": {"name": "size", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "default_branch": {"name": "default_branch", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "open_issues_count": {"name": "open_issues_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_template": {"name": "is_template", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_issues": {"name": "has_issues", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_projects": {"name": "has_projects", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_wiki": {"name": "has_wiki", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_pages": {"name": "has_pages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_downloads": {"name": "has_downloads", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "has_discussions": {"name": "has_discussions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "archived": {"name": "archived", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "disabled": {"name": "disabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "visibility": {"name": "visibility", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pushed_at": {"name": "pushed_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "github_info.repos", "created_at": 1700082693.7181711}, "source.yoda.infra__github_info.workflows": {"database": null, "schema": "github_info", "name": "workflows", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__github_info.workflows", "fqn": ["yoda", "infra", "source", "infra__github_info", "workflows"], "source_name": "infra__github_info", "source_description": "", "loader": "", "identifier": "workflows", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"repo_name": {"name": "repo_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "node_id": {"name": "node_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "github_info.workflows", "created_at": 1700082693.7183807}, "source.yoda.infra__github_info.workflow_runs": {"database": null, "schema": "github_info", "name": "workflow_runs", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__github_info.workflow_runs", "fqn": ["yoda", "infra", "source", "infra__github_info", "workflow_runs"], "source_name": "infra__github_info", "source_description": "", "loader": "", "identifier": "workflow_runs", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"repo_name": {"name": "repo_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "node_id": {"name": "node_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "check_suite_id": {"name": "check_suite_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "check_suite_node_id": {"name": "check_suite_node_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "head_branch": {"name": "head_branch", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "head_sha": {"name": "head_sha", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_number": {"name": "run_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event": {"name": "event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "conclusion": {"name": "conclusion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "workflow_id": {"name": "workflow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "run_attempt": {"name": "run_attempt", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "run_started_at": {"name": "run_started_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "github_info.workflow_runs", "created_at": 1700082693.7186625}, "source.yoda.infra__infra_metrics.infra_raw_metrics": {"database": null, "schema": "infra_metrics", "name": "infra_raw_metrics", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__infra_metrics.infra_raw_metrics", "fqn": ["yoda", "infra", "source", "infra__infra_metrics", "infra_raw_metrics"], "source_name": "infra__infra_metrics", "source_description": "", "loader": "", "identifier": "infra_raw_metrics", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"ts": {"name": "ts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "product_line": {"name": "product_line", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "component": {"name": "component", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "value": {"name": "value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "custom_properties": {"name": "custom_properties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "infra_metrics.infra_raw_metrics", "created_at": 1700082693.719126}, "source.yoda.infra__infra_metrics.upsolver_raw_output": {"database": null, "schema": "infra_metrics", "name": "upsolver_raw_output", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__infra_metrics.upsolver_raw_output", "fqn": ["yoda", "infra", "source", "infra__infra_metrics", "upsolver_raw_output"], "source_name": "infra__infra_metrics", "source_description": "", "loader": "", "identifier": "upsolver_raw_output", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "databaseName": {"name": "databaseName", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "tableName": {"name": "tableName", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workspaceName": {"name": "workspaceName", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ts": {"name": "ts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "infra_metrics.upsolver_raw_output", "created_at": 1700082693.7198768}, "source.yoda.infra__infra.rivery_rivers_usage": {"database": null, "schema": "infra", "name": "rivery_rivers_usage", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__infra.rivery_rivers_usage", "fqn": ["yoda", "infra", "source", "infra__infra", "rivery_rivers_usage"], "source_name": "infra__infra", "source_description": "", "loader": "", "identifier": "rivery_rivers_usage", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "environment_id": {"name": "environment_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cross_id": {"name": "cross_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "river_id": {"name": "river_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "master_river_id": {"name": "master_river_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "river_name": {"name": "river_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sub_river": {"name": "is_sub_river", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_master_river": {"name": "is_master_river", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_multi": {"name": "is_multi", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_scheduled": {"name": "is_scheduled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "total_files": {"name": "total_files", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "units": {"name": "units", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_size": {"name": "total_size", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_run": {"name": "last_run", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pending": {"name": "pending", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "failed": {"name": "failed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "running": {"name": "running", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "succeeded": {"name": "succeeded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "canceled": {"name": "canceled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "datasource_id": {"name": "datasource_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dry_runs": {"name": "dry_runs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "start_time": {"name": "start_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "end_time": {"name": "end_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "infra.rivery_rivers_usage", "created_at": 1700082693.7206576}, "source.yoda.infra__infra.rivery_environments": {"database": null, "schema": "infra", "name": "rivery_environments", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__infra.rivery_environments", "fqn": ["yoda", "infra", "source", "infra__infra", "rivery_environments"], "source_name": "infra__infra", "source_description": "", "loader": "", "identifier": "rivery_environments", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "infra.rivery_environments", "created_at": 1700082693.7210426}, "source.yoda.infra__infra.rivery_groups": {"database": null, "schema": "infra", "name": "rivery_groups", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__infra.rivery_groups", "fqn": ["yoda", "infra", "source", "infra__infra", "rivery_groups"], "source_name": "infra__infra", "source_description": "", "loader": "", "identifier": "rivery_groups", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "environment_id": {"name": "environment_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "infra.rivery_groups", "created_at": 1700082693.7214613}, "source.yoda.infra__segment.page": {"database": null, "schema": "segment", "name": "page", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__segment.page", "fqn": ["yoda", "infra", "source", "infra__segment", "page"], "source_name": "infra__segment", "source_description": "", "loader": "", "identifier": "page", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin_user_name": {"name": "admin_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth_0_user_id": {"name": "auth_0_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ht": {"name": "is_ht", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_internal_user": {"name": "is_internal_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_vugc": {"name": "is_vugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyalty_merchant_id": {"name": "loyalty_merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_package": {"name": "loyalty_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_id": {"name": "org_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_key": {"name": "org_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_version": {"name": "platform_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_package": {"name": "reviews_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_package": {"name": "sms_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_platform_domain": {"name": "store_platform_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugc_package": {"name": "vugc_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_context": {"name": "page_context", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_name": {"name": "page_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_sub_context": {"name": "page_sub_context", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tab_name": {"name": "tab_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "campaign_source": {"name": "campaign_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_medium": {"name": "campaign_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_content": {"name": "campaign_content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_search": {"name": "page_search", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "session_id": {"name": "session_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_referrer": {"name": "original_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "segment.page", "created_at": 1700082693.721844}, "source.yoda.infra__segment.page_track": {"database": null, "schema": "segment", "name": "page_track", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__segment.page_track", "fqn": ["yoda", "infra", "source", "infra__segment", "page_track"], "source_name": "infra__segment", "source_description": "", "loader": "", "identifier": "page_track", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "session_id": {"name": "session_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rrssentinbillingcycle": {"name": "rrssentinbillingcycle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin": {"name": "admin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingprovider": {"name": "billingprovider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargifybalance": {"name": "chargifybalance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargifyrevenue": {"name": "chargifyrevenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysindunning": {"name": "daysindunning", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "intercomuserhash": {"name": "intercomuserhash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isautopublishenabled": {"name": "isautopublishenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledcoupons": {"name": "isenabledcoupons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledcustomreviews": {"name": "isenabledcustomreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledgsr": {"name": "isenabledgsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledmap": {"name": "isenabledmap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpla": {"name": "isenabledpla", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpromotedproductsemail": {"name": "isenabledpromotedproductsemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpromotedproductswidget": {"name": "isenabledpromotedproductswidget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledqna": {"name": "isenabledqna", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledrichsnippets": {"name": "isenabledrichsnippets", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasbadge": {"name": "ishasbadge", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascomments": {"name": "ishascomments", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasconverttositereview": {"name": "ishasconverttositereview", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascoupons": {"name": "ishascoupons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascsseditor": {"name": "ishascsseditor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascustomreviews": {"name": "ishascustomreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasdedicatedpage": {"name": "ishasdedicatedpage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasgsr": {"name": "ishasgsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasnewmainwidgetlayout": {"name": "ishasnewmainwidgetlayout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspla": {"name": "ishaspla", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspromotedproductsemail": {"name": "ishaspromotedproductsemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspromotedproductswidget": {"name": "ishaspromotedproductswidget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasqna": {"name": "ishasqna", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasreviewscarousel": {"name": "ishasreviewscarousel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasreviewstab": {"name": "ishasreviewstab", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasrichsnippets": {"name": "ishasrichsnippets", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmai": {"name": "ishassentmai", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmas": {"name": "ishassentmas", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmap": {"name": "ishassentmap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentsitereminder": {"name": "ishassentsitereminder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassenttpr": {"name": "ishassenttpr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassenttsr": {"name": "ishassenttsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasshoppableinstagram": {"name": "ishasshoppableinstagram", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassocialpush": {"name": "ishassocialpush", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasstarrating": {"name": "ishasstarrating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishastpr": {"name": "ishastpr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishastsr": {"name": "ishastsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ismapcustomfieldsenabled": {"name": "ismapcustomfieldsenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreceivesentimentnotification": {"name": "isreceivesentimentnotification", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagecategory": {"name": "pagecategory", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paysvia": {"name": "paysvia", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurringpaymentinterval": {"name": "recurringpaymentinterval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uiversion": {"name": "uiversion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoproductscorev2": {"name": "yotpoproductscorev2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "creditcardtype": {"name": "creditcardtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daystorenewal": {"name": "daystorenewal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nameoncreditcard": {"name": "nameoncreditcard", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nextchargedate": {"name": "nextchargedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "renewaldate": {"name": "renewaldate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoproductscore": {"name": "yotpoproductscore", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pixelversion": {"name": "pixelversion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creditcardlast4digits": {"name": "creditcardlast4digits", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_duplicated_2": {"name": "is_duplicated_2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "segment.page_track", "created_at": 1700082693.7225044}, "source.yoda.infra__segment.identify": {"database": null, "schema": "segment", "name": "identify", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__segment.identify", "fqn": ["yoda", "infra", "source", "infra__segment", "identify"], "source_name": "infra__segment", "source_description": "", "loader": "", "identifier": "identify", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth_0_user_id": {"name": "auth_0_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_internal_user": {"name": "is_internal_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "user_app_key": {"name": "user_app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_created_at": {"name": "user_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_email": {"name": "user_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_is_admin": {"name": "user_is_admin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "user_is_test": {"name": "user_is_test", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "user_org_id": {"name": "user_org_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "user_org_key": {"name": "user_org_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_phone": {"name": "user_phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_role": {"name": "user_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_store_id": {"name": "user_store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin_user_name": {"name": "admin_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_vugc": {"name": "is_vugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyalty_merchant_id": {"name": "loyalty_merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_package": {"name": "loyalty_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_id": {"name": "org_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_key": {"name": "org_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_package": {"name": "reviews_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_package": {"name": "sms_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugc_package": {"name": "vugc_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ht": {"name": "is_ht", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "platform_version": {"name": "platform_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_platform_domain": {"name": "store_platform_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "segment.identify", "created_at": 1700082693.7228012}, "source.yoda.infra__segment.group": {"database": null, "schema": "segment", "name": "group", "resource_type": "source", "package_name": "yoda", "path": "models/infra/source/infra__src.yml", "original_file_path": "models/infra/source/infra__src.yml", "unique_id": "source.yoda.infra__segment.group", "fqn": ["yoda", "infra", "source", "infra__segment", "group"], "source_name": "infra__segment", "source_description": "", "loader": "", "identifier": "group", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth_0_user_id": {"name": "auth_0_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_internal_user": {"name": "is_internal_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_billin_providers": {"name": "org_billin_providers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_created_at": {"name": "org_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_email": {"name": "org_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_industry": {"name": "org_industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_is_loyalty": {"name": "org_is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_is_reviews": {"name": "org_is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_is_sms": {"name": "org_is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_is_test": {"name": "org_is_test", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_is_vugc": {"name": "org_is_vugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "org_loyalty_monthly_price": {"name": "org_loyalty_monthly_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_loyalty_package": {"name": "org_loyalty_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_name": {"name": "org_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_organization_key": {"name": "org_organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_package_extensions": {"name": "org_package_extensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_reviews_monthly_price": {"name": "org_reviews_monthly_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_reviews_package": {"name": "org_reviews_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_signup_country": {"name": "org_signup_country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_signup_utm_campaign": {"name": "org_signup_utm_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_signup_utm_source": {"name": "org_signup_utm_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_sms_monthly_price": {"name": "org_sms_monthly_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_sms_package": {"name": "org_sms_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_store_count": {"name": "org_store_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_store_limit": {"name": "org_store_limit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_vugc_monthly_price": {"name": "org_vugc_monthly_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_vugc_package": {"name": "org_vugc_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_bump_plan": {"name": "sms_bump_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_app_key": {"name": "store_app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_created_at": {"name": "store_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "store_is_test": {"name": "store_is_test", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "store_loyalty_merchant_id": {"name": "store_loyalty_merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_name": {"name": "store_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_org_id": {"name": "store_org_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "store_org_key": {"name": "store_org_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_platform": {"name": "store_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_platform_domain": {"name": "store_platform_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_platform_plan": {"name": "store_platform_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_reviews_is_valid_platform_credentials": {"name": "store_reviews_is_valid_platform_credentials", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "store_sms_user_id": {"name": "store_sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_users_count": {"name": "store_users_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "store_users_limit": {"name": "store_users_limit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "admin_user_name": {"name": "admin_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_vugc": {"name": "is_vugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyalty_merchant_id": {"name": "loyalty_merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalty_package": {"name": "loyalty_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "org_id": {"name": "org_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "org_key": {"name": "org_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_package": {"name": "reviews_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_package": {"name": "sms_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_user_id": {"name": "sms_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugc_package": {"name": "vugc_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_version": {"name": "platform_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ht": {"name": "is_ht", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["infra"]}, "patch_path": null, "unrendered_config": {"tags": ["infra"]}, "relation_name": "segment.group", "created_at": 1700082693.7232542}, "source.yoda.loyalty__default.swell_vip_tiers_settings": {"database": null, "schema": "default", "name": "swell_vip_tiers_settings", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__default.swell_vip_tiers_settings", "fqn": ["yoda", "loyalty", "source", "loyalty__default", "swell_vip_tiers_settings"], "source_name": "loyalty__default", "source_description": "Tables written by Loyalty R&D team", "loader": "", "identifier": "swell_vip_tiers_settings", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "settings of loyalty merchants at VIP tier", "columns": {"merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "default.swell_vip_tiers_settings", "created_at": 1700082693.749495}, "source.yoda.loyalty__default.currency_rates": {"database": null, "schema": "default", "name": "currency_rates", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__default.currency_rates", "fqn": ["yoda", "loyalty", "source", "loyalty__default", "currency_rates"], "source_name": "loyalty__default", "source_description": "Tables written by Loyalty R&D team", "loader": "", "identifier": "currency_rates", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"base": {"name": "base", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "day_of_currency_exchange": {"name": "day_of_currency_exchange", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "default.currency_rates", "created_at": 1700082693.749785}, "source.yoda.loyalty__chainperks.yotpo_platform_accounts": {"database": null, "schema": "chainperks", "name": "yotpo_platform_accounts", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.yotpo_platform_accounts", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "yotpo_platform_accounts"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "yotpo_platform_accounts", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_secret": {"name": "app_secret", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "org_key": {"name": "org_key", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.yotpo_platform_accounts", "created_at": 1700082693.750011}, "source.yoda.loyalty__chainperks.vip_tiers_thresholds": {"database": null, "schema": "chainperks", "name": "vip_tiers_thresholds", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.vip_tiers_thresholds", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "vip_tiers_thresholds"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "vip_tiers_thresholds", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_spent_cents": {"name": "amount_spent_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_completed": {"name": "campaign_completed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchases_made": {"name": "purchases_made", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referrals_completed": {"name": "referrals_completed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "requirements_needed": {"name": "requirements_needed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_id": {"name": "tier_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.vip_tiers_thresholds", "created_at": 1700082693.7502885}, "source.yoda.loyalty__chainperks.vip_tiers": {"database": null, "schema": "chainperks", "name": "vip_tiers", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.vip_tiers", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "vip_tiers"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "vip_tiers", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "earned_title": {"name": "earned_title", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_multiplier": {"name": "points_multiplier", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "rank": {"name": "rank", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_points": {"name": "reward_points", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "should_mirror_entry": {"name": "should_mirror_entry", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "background_image_id": {"name": "background_image_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.vip_tiers", "created_at": 1700082693.7505286}, "source.yoda.loyalty__chainperks.user_agents": {"database": null, "schema": "chainperks", "name": "user_agents", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.user_agents", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "user_agents"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "user_agents", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent_hash": {"name": "user_agent_hash", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent": {"name": "user_agent", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.user_agents", "created_at": 1700082693.7507439}, "source.yoda.loyalty__chainperks.user_actions": {"database": null, "schema": "chainperks", "name": "user_actions", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.user_actions", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "user_actions"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "user_actions", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "applied_to_campaigns": {"name": "applied_to_campaigns", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_swell_user": {"name": "has_swell_user", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "history_title": {"name": "history_title", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ip_address": {"name": "ip_address", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "metadata": {"name": "metadata", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_perk_id": {"name": "parent_perk_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_points": {"name": "reward_points", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synced_to_analytics": {"name": "synced_to_analytics", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent_id": {"name": "user_agent_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_creation_time": {"name": "action_creation_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.user_actions", "created_at": 1700082693.7509906}, "source.yoda.loyalty__chainperks.subscriptions": {"database": null, "schema": "chainperks", "name": "subscriptions", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.subscriptions", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "subscriptions"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "subscriptions", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "base_price_cents": {"name": "base_price_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_provider": {"name": "billing_provider", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current": {"name": "current", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "included_orders": {"name": "included_orders", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_usage_charge_at": {"name": "last_usage_charge_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overdue": {"name": "overdue", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pending": {"name": "pending", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "per_order_price_cents": {"name": "per_order_price_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "percentage_of_redemptions": {"name": "percentage_of_redemptions", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "percentage_of_referrals": {"name": "percentage_of_referrals", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_id": {"name": "plan_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "was_current": {"name": "was_current", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charge_status": {"name": "charge_status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurring_charge_id": {"name": "recurring_charge_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manual_price_cents": {"name": "manual_price_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.subscriptions", "created_at": 1700082693.751278}, "source.yoda.loyalty__chainperks.refunds": {"database": null, "schema": "chainperks", "name": "refunds", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.refunds", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "refunds"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "refunds", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents_in_shopper_currency": {"name": "amount_cents_in_shopper_currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gift_card_amount": {"name": "gift_card_amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "gift_card_cents": {"name": "gift_card_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refund_id": {"name": "refund_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_gift_card_amount": {"name": "swell_gift_card_amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "swell_gift_card_cents": {"name": "swell_gift_card_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_amount": {"name": "total_amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.refunds", "created_at": 1700082693.751491}, "source.yoda.loyalty__chainperks.refund_items": {"database": null, "schema": "chainperks", "name": "refund_items", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.refund_items", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "refund_items"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "refund_items", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "discount_allocation_amount_cents": {"name": "discount_allocation_amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_item_id": {"name": "purchase_item_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "quantity": {"name": "quantity", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refund_id": {"name": "refund_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.refund_items", "created_at": 1700082693.7516856}, "source.yoda.loyalty__chainperks.referrals": {"database": null, "schema": "chainperks", "name": "referrals", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.referrals", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "referrals"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "referrals", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_amount_cents": {"name": "average_amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ip_address": {"name": "ip_address", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_apple_private_relay_ip": {"name": "is_apple_private_relay_ip", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "link_share_type": {"name": "link_share_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_balance": {"name": "points_balance", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent_id": {"name": "user_agent_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referring_host": {"name": "referring_host", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_product_id": {"name": "external_product_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manually_override_status": {"name": "manually_override_status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.referrals", "created_at": 1700082693.7520826}, "source.yoda.loyalty__chainperks.referral_snapshots": {"database": null, "schema": "chainperks", "name": "referral_snapshots", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.referral_snapshots", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "referral_snapshots"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "referral_snapshots", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_amount_cents": {"name": "average_amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "copy_link_shares": {"name": "copy_link_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "day": {"name": "day", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "email_shares": {"name": "email_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emails_sent": {"name": "emails_sent", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emails_viewed": {"name": "emails_viewed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "facebook_messenger_shares": {"name": "facebook_messenger_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "facebook_shares": {"name": "facebook_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_email": {"name": "links_clicked_from_email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_facebook": {"name": "links_clicked_from_facebook", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_twitter": {"name": "links_clicked_from_twitter", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked": {"name": "links_clicked", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "personal_email_shares": {"name": "personal_email_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shares": {"name": "shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_shares": {"name": "sms_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "twitter_shares": {"name": "twitter_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "whatsapp_shares": {"name": "whatsapp_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.referral_snapshots", "created_at": 1700082693.752466}, "source.yoda.loyalty__chainperks.referral_shares": {"database": null, "schema": "chainperks", "name": "referral_shares", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.referral_shares", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "referral_shares"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "referral_shares", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ip_address": {"name": "ip_address", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_agent_id": {"name": "user_agent_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.referral_shares", "created_at": 1700082693.7526965}, "source.yoda.loyalty__chainperks.referral_receipts": {"database": null, "schema": "chainperks", "name": "referral_receipts", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.referral_receipts", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "referral_receipts"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "referral_receipts", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_reversed": {"name": "is_reversed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_customer_id": {"name": "referred_customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signed_up_at": {"name": "signed_up_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source": {"name": "source", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reminder_job_id": {"name": "reminder_job_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_discount_code_id": {"name": "referral_discount_code_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.referral_receipts", "created_at": 1700082693.7529185}, "source.yoda.loyalty__chainperks.referral_discount_codes": {"database": null, "schema": "chainperks", "name": "referral_discount_codes", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.referral_discount_codes", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "referral_discount_codes"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "referral_discount_codes", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount_used_cents": {"name": "amount_used_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_amount_cents": {"name": "average_amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "code": {"name": "code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "third_party_rule_id": {"name": "third_party_rule_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "used": {"name": "used", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "uses": {"name": "uses", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "batch_id": {"name": "batch_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.referral_discount_codes", "created_at": 1700082693.7531362}, "source.yoda.loyalty__chainperks.referral_codes": {"database": null, "schema": "chainperks", "name": "referral_codes", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.referral_codes", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "referral_codes"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "referral_codes", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "average_amount_cents": {"name": "average_amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "clicks": {"name": "clicks", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "code": {"name": "code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "copy_link_shares": {"name": "copy_link_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_shares": {"name": "email_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emails_sent": {"name": "emails_sent", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emails_viewed": {"name": "emails_viewed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expiration_final_reminder_job_id": {"name": "expiration_final_reminder_job_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expiration_reminder_job_id": {"name": "expiration_reminder_job_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expire_job_id": {"name": "expire_job_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expired": {"name": "expired", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expires_at": {"name": "expires_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "facebook_messenger_shares": {"name": "facebook_messenger_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "facebook_shares": {"name": "facebook_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "identity_id": {"name": "identity_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "invalid_clicks": {"name": "invalid_clicks", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_email": {"name": "links_clicked_from_email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_facebook": {"name": "links_clicked_from_facebook", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked_from_twitter": {"name": "links_clicked_from_twitter", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "links_clicked": {"name": "links_clicked", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orders": {"name": "orders", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shares": {"name": "shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sms_shares": {"name": "sms_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "target_referrals": {"name": "target_referrals", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "twitter_shares": {"name": "twitter_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "whatsapp_shares": {"name": "whatsapp_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "personal_email_shares": {"name": "personal_email_shares", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.referral_codes", "created_at": 1700082693.753471}, "source.yoda.loyalty__chainperks.redemption_options": {"database": null, "schema": "chainperks", "name": "redemption_options", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.redemption_options", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "redemption_options"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "redemption_options", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount": {"name": "amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "applies_once": {"name": "applies_once", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "applies_to_any_or_all_attributes": {"name": "applies_to_any_or_all_attributes", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_id": {"name": "applies_to_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_product_type": {"name": "applies_to_product_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_resource": {"name": "applies_to_resource", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "automatically_apply": {"name": "automatically_apply", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "charset": {"name": "charset", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "code_length": {"name": "code_length", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cost_text": {"name": "cost_text", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "coupon_cancellation_url": {"name": "coupon_cancellation_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "coupons_pool_amount": {"name": "coupons_pool_amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "description": {"name": "description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_amount_cents": {"name": "discount_amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_percentage": {"name": "discount_percentage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_rate_cents": {"name": "discount_rate_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_type": {"name": "discount_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_in_admin": {"name": "display_in_admin", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "display_in_popup": {"name": "display_in_popup", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "display_order": {"name": "display_order", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "duration": {"name": "duration", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expires_after": {"name": "expires_after", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_product_cost_cents": {"name": "free_product_cost_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "free_shipping_less_than_cents": {"name": "free_shipping_less_than_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "generic_url": {"name": "generic_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "icon": {"name": "icon", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "image": {"name": "image", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_offline": {"name": "is_offline", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_pos": {"name": "is_pos", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "once_per_customer": {"name": "once_per_customer", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "prefix": {"name": "prefix", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "restrict_to_redeeming_customer": {"name": "restrict_to_redeeming_customer", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_intro": {"name": "reward_intro", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secret": {"name": "secret", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "show_online": {"name": "show_online", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "single_use": {"name": "single_use", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "skip_platform_create": {"name": "skip_platform_create", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usage_limit": {"name": "usage_limit", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "value_cents": {"name": "value_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "background_image_id": {"name": "background_image_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "saved_search_ids": {"name": "saved_search_ids", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_attributes": {"name": "applies_to_attributes", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "applies_to_values": {"name": "applies_to_values", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cart_greater_than_cents": {"name": "cart_greater_than_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_ids": {"name": "customer_ids", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "custom_coupon_cost_cents": {"name": "custom_coupon_cost_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_ids": {"name": "product_ids", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_ids": {"name": "variant_ids", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collection_ids": {"name": "collection_ids", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "segment_ids": {"name": "segment_ids", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_codes_webhook_threshold": {"name": "redemption_codes_webhook_threshold", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "min_amount": {"name": "min_amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_ids": {"name": "group_ids", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.redemption_options", "created_at": 1700082693.7538505}, "source.yoda.loyalty__chainperks.redemption_codes": {"database": null, "schema": "chainperks", "name": "redemption_codes", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.redemption_codes", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "redemption_codes"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "redemption_codes", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_used_cents": {"name": "amount_used_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "code": {"name": "code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "point_redemption_id": {"name": "point_redemption_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "third_party_rule_id": {"name": "third_party_rule_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "used": {"name": "used", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "uses": {"name": "uses", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "recharge_third_party_id": {"name": "recharge_third_party_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.redemption_codes", "created_at": 1700082693.7540538}, "source.yoda.loyalty__chainperks.purchases_with_currency": {"database": null, "schema": "chainperks", "name": "purchases_with_currency", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.purchases_with_currency", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "purchases_with_currency"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "purchases_with_currency", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency_symbol": {"name": "currency_symbol", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_exchange_rate": {"name": "external_exchange_rate", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyalty_exchange_rate": {"name": "loyalty_exchange_rate", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.purchases_with_currency", "created_at": 1700082693.7543058}, "source.yoda.loyalty__chainperks.purchases_redemptions": {"database": null, "schema": "chainperks", "name": "purchases_redemptions", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.purchases_redemptions", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "purchases_redemptions"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "purchases_redemptions", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_id": {"name": "redemption_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.purchases_redemptions", "created_at": 1700082693.7544944}, "source.yoda.loyalty__chainperks.purchases": {"database": null, "schema": "chainperks", "name": "purchases", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.purchases", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "purchases"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "purchases", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "amount_cents": {"name": "amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "applied_to_campaigns": {"name": "applied_to_campaigns", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "avs_postal_match": {"name": "avs_postal_match", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avs_result_code": {"name": "avs_result_code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "avs_street_match": {"name": "avs_street_match", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "before_swellrewards": {"name": "before_swellrewards", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_address1": {"name": "billing_address1", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_address2": {"name": "billing_address2", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_city": {"name": "billing_city", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_country_code": {"name": "billing_country_code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_first_name": {"name": "billing_first_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_last_name": {"name": "billing_last_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_phone": {"name": "billing_phone", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_zip": {"name": "billing_zip", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "browser_country_code": {"name": "browser_country_code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeback_protection": {"name": "chargeback_protection", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "credit_card_bin": {"name": "credit_card_bin", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "credit_card_company": {"name": "credit_card_company", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "credit_card_number": {"name": "credit_card_number", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cvv_result_code": {"name": "cvv_result_code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "eligible_for_vip_tiers": {"name": "eligible_for_vip_tiers", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "fraud_review": {"name": "fraud_review", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gateway": {"name": "gateway", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_swell_user": {"name": "has_swell_user", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ip_address": {"name": "ip_address", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_refunded": {"name": "is_refunded", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_repeat": {"name": "is_repeat", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "landing_site": {"name": "landing_site", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processor_id": {"name": "processor_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_code_id": {"name": "redemption_code_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referring_site": {"name": "referring_site", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sender_email": {"name": "sender_email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_address1": {"name": "shipping_address1", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_address2": {"name": "shipping_address2", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_city": {"name": "shipping_city", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_country_code": {"name": "shipping_country_code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_first_name": {"name": "shipping_first_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_last_name": {"name": "shipping_last_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_phone": {"name": "shipping_phone", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shipping_zip": {"name": "shipping_zip", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_account_id": {"name": "store_account_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_discount_cost_cents": {"name": "swell_discount_cost_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "synced_to_analytics": {"name": "synced_to_analytics", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent_id": {"name": "user_agent_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_agent": {"name": "user_agent", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "fee_amount_cents": {"name": "fee_amount_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transaction_id": {"name": "transaction_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "affiliate_amount": {"name": "affiliate_amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "referral_discount_code_id": {"name": "referral_discount_code_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transaction_hash": {"name": "transaction_hash", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vip_tier_eligibility_job_id": {"name": "vip_tier_eligibility_job_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel_type": {"name": "channel_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_address": {"name": "store_address", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clerk_name": {"name": "clerk_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_city": {"name": "store_city", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_state": {"name": "store_state", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clerk_employee_id": {"name": "clerk_employee_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.purchases", "created_at": 1700082693.7548213}, "source.yoda.loyalty__chainperks.purchase_items": {"database": null, "schema": "chainperks", "name": "purchase_items", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.purchase_items", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "purchase_items"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "purchase_items", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "category_id": {"name": "category_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_cents": {"name": "price_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchase_id": {"name": "purchase_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "quantity": {"name": "quantity", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vendor": {"name": "vendor", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_type": {"name": "product_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.purchase_items", "created_at": 1700082693.755026}, "source.yoda.loyalty__chainperks.processors": {"database": null, "schema": "chainperks", "name": "processors", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.processors", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "processors"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "processors", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "guid": {"name": "guid", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_authorized": {"name": "has_authorized", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "import_completed": {"name": "import_completed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "import_records_processed": {"name": "import_records_processed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "import_started": {"name": "import_started", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "import_total_records": {"name": "import_total_records", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_fetch_at": {"name": "last_fetch_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_page_number": {"name": "last_page_number", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oauth_token_id": {"name": "oauth_token_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "paused": {"name": "paused", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "type": {"name": "type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "permissions": {"name": "permissions", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.processors", "created_at": 1700082693.7552962}, "source.yoda.loyalty__chainperks.point_redemptions": {"database": null, "schema": "chainperks", "name": "point_redemptions", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.point_redemptions", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "point_redemptions"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "point_redemptions", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "approved_at": {"name": "approved_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "approved": {"name": "approved", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "at_checkout": {"name": "at_checkout", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cost_cents": {"name": "cost_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted": {"name": "deleted", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_admin": {"name": "is_admin", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_pos": {"name": "is_pos", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refunded_amount": {"name": "refunded_amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reversed": {"name": "reversed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_text": {"name": "reward_text", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_title": {"name": "reward_title", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value_cents": {"name": "value_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "visible": {"name": "visible", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cart_id": {"name": "cart_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "identity_id": {"name": "identity_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "perk_id": {"name": "perk_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount": {"name": "amount", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_order_id": {"name": "third_party_order_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "point_transactions": {"name": "point_transactions", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "api_version": {"name": "api_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.point_redemptions", "created_at": 1700082693.7555935}, "source.yoda.loyalty__chainperks.perks_user_actions": {"database": null, "schema": "chainperks", "name": "perks_user_actions", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.perks_user_actions", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "perks_user_actions"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "perks_user_actions", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "perk_id": {"name": "perk_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_action_id": {"name": "user_action_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.perks_user_actions", "created_at": 1700082693.755781}, "source.yoda.loyalty__chainperks.perks": {"database": null, "schema": "chainperks", "name": "perks", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.perks", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "perks"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "perks", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "awarded_at": {"name": "awarded_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "original_awarded_at": {"name": "original_awarded_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "completed_at": {"name": "completed_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "admin_only": {"name": "admin_only", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "award_job_id": {"name": "award_job_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "awarded": {"name": "awarded", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "balance_only": {"name": "balance_only", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "completed_action": {"name": "completed_action", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completed": {"name": "completed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expiration_job_id": {"name": "expiration_job_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "expired_at": {"name": "expired_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expired": {"name": "expired", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expires_at": {"name": "expires_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hidden": {"name": "hidden", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "history_title": {"name": "history_title", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "identity_id": {"name": "identity_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pending": {"name": "pending", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redeemable": {"name": "redeemable", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_id": {"name": "referral_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reversed_at": {"name": "reversed_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reversed": {"name": "reversed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_points": {"name": "reward_points", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_multiplier": {"name": "points_multiplier", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "points_transactions": {"name": "points_transactions", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "point_transactions": {"name": "point_transactions", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.perks", "created_at": 1700082693.756031}, "source.yoda.loyalty__chainperks.merchants": {"database": null, "schema": "chainperks", "name": "merchants", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.merchants", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "merchants"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "merchants", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "affiliate_include_shipping": {"name": "affiliate_include_shipping", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "affiliate_order_price_setting": {"name": "affiliate_order_price_setting", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "allow_program_overwrite": {"name": "allow_program_overwrite", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "api_access_enabled": {"name": "api_access_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "api_key": {"name": "api_key", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bricknmortar": {"name": "bricknmortar", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "can_generate_coupons": {"name": "can_generate_coupons", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cash_payout_setting": {"name": "cash_payout_setting", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "code_based_referral_program_on_demand": {"name": "code_based_referral_program_on_demand", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "company_name": {"name": "company_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "completed_onboarding": {"name": "completed_onboarding", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "completed_profile": {"name": "completed_profile", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "contact_email": {"name": "contact_email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cross_origin_store_accounts": {"name": "cross_origin_store_accounts", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_payout_percentage": {"name": "default_payout_percentage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "default_paypal_email_subject": {"name": "default_paypal_email_subject", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delete_used_coupons_enable": {"name": "delete_used_coupons_enable", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_code_based_referral_program_enabled": {"name": "discount_code_based_referral_program_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_code_generation_strategy": {"name": "discount_code_generation_strategy", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_header_width": {"name": "email_header_width", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_layout": {"name": "email_layout", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_customer_tags": {"name": "exclude_customer_tags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "facebook_app_id": {"name": "facebook_app_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "featured": {"name": "featured", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_time_referral_discounts_enable_flag": {"name": "first_time_referral_discounts_enable_flag", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "force_store_accounts": {"name": "force_store_accounts", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "free_products_enabled": {"name": "free_products_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "from_email": {"name": "from_email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_name": {"name": "from_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "guid": {"name": "guid", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_analytics_installed": {"name": "has_analytics_installed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "has_rewards_installed": {"name": "has_rewards_installed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "has_store": {"name": "has_store", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "include_purchases_with_details": {"name": "include_purchases_with_details", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "include_shipping": {"name": "include_shipping", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "include_storefront_css": {"name": "include_storefront_css", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "install_order_volume": {"name": "install_order_volume", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "installed_analytics_at": {"name": "installed_analytics_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "installed_rewards_at": {"name": "installed_rewards_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "invoice_job_id": {"name": "invoice_job_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_approved": {"name": "is_approved", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "limit_redemptions": {"name": "limit_redemptions", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyalty_opt_in_strategy": {"name": "loyalty_opt_in_strategy", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "manual_adjustment_admin_only": {"name": "manual_adjustment_admin_only", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "metafield_namespace": {"name": "metafield_namespace", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oauth_app_id": {"name": "oauth_app_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "on_free_trial": {"name": "on_free_trial", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_price_setting": {"name": "order_price_setting", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan": {"name": "plan", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_per_dollar": {"name": "points_per_dollar", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_reminder_delay_days": {"name": "points_reminder_delay_days", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "process_discounts_webhook": {"name": "process_discounts_webhook", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "process_order_webhook": {"name": "process_order_webhook", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "program_live": {"name": "program_live", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "program_locked": {"name": "program_locked", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_avoid_ip_and_user_agent": {"name": "referral_avoid_ip_and_user_agent", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_opt_in_strategy": {"name": "referral_opt_in_strategy", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_reminder_days": {"name": "referral_reminder_days", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "round_discounts_strategy": {"name": "round_discounts_strategy", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "security_level": {"name": "security_level", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "setup_rewards_page": {"name": "setup_rewards_page", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_billing_information": {"name": "show_billing_information", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "slug": {"name": "slug", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_account_login_url": {"name": "store_account_login_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_account_registration_url": {"name": "store_account_registration_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "swell_redemptions_enabled": {"name": "swell_redemptions_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_fields_with_processor": {"name": "sync_fields_with_processor", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_newsletter_with_platform": {"name": "sync_newsletter_with_platform", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_tiers_with_platform": {"name": "sync_tiers_with_platform", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "test_account": {"name": "test_account", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "third_party_id": {"name": "third_party_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "time_zone": {"name": "time_zone", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value_per_subscriber_cents": {"name": "value_per_subscriber_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "verified_email_domain": {"name": "verified_email_domain", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vip_tiers_job_running": {"name": "vip_tiers_job_running", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "weekly_digest_enabled": {"name": "weekly_digest_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_bg_color": {"name": "widget_bg_color", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_brand_color": {"name": "widget_brand_color", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_distance_from_end": {"name": "widget_distance_from_end", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_enabled": {"name": "widget_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_expanded_by_default": {"name": "widget_expanded_by_default", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_header_text": {"name": "widget_header_text", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_height": {"name": "widget_height", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_location_mobile": {"name": "widget_location_mobile", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_location": {"name": "widget_location", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_mobile": {"name": "widget_mobile", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_rounded": {"name": "widget_rounded", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_text_color": {"name": "widget_text_color", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_text": {"name": "widget_text", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_theme": {"name": "widget_theme", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "logo_url": {"name": "logo_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nav_exclusions": {"name": "nav_exclusions", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_paid_status": {"name": "order_paid_status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "process_order_status": {"name": "process_order_status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stripe_customer_id": {"name": "stripe_customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "webhook_token": {"name": "webhook_token", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "webhook_url": {"name": "webhook_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collection_exclusions": {"name": "collection_exclusions", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_tags": {"name": "customer_tags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_exclusions": {"name": "product_exclusions", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_layout_html": {"name": "email_layout_html", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_header_image_content_type": {"name": "email_header_image_content_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_header_image_file_name": {"name": "email_header_image_file_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_header_image_file_size": {"name": "email_header_image_file_size", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_header_image_updated_at": {"name": "email_header_image_updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usage_charge_job_id": {"name": "usage_charge_job_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uninstalled_analytics_at": {"name": "uninstalled_analytics_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "uninstalled_rewards_at": {"name": "uninstalled_rewards_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_paid_state": {"name": "order_paid_state", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "process_order_state": {"name": "process_order_state", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "used_coupons_delete_after_days": {"name": "used_coupons_delete_after_days", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "process_refund_status": {"name": "process_refund_status", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_trial_expiration_job_id": {"name": "free_trial_expiration_job_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_trial_expires_at": {"name": "free_trial_expires_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_engine": {"name": "platform_engine", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "logo_content_type": {"name": "logo_content_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "logo_file_name": {"name": "logo_file_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "logo_file_size": {"name": "logo_file_size", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "logo_updated_at": {"name": "logo_updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_font_family": {"name": "widget_font_family", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_font_url": {"name": "widget_font_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "custom_chat_group": {"name": "custom_chat_group", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "custom_script_url": {"name": "custom_script_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.merchants", "created_at": 1700082693.7566285}, "source.yoda.loyalty__chainperks.group_customers": {"database": null, "schema": "chainperks", "name": "group_customers", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.group_customers", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "group_customers"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "group_customers", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "last_seen_at": {"name": "last_seen_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email": {"name": "email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_from_reports": {"name": "exclude_from_reports", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_id": {"name": "group_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_balance": {"name": "points_balance", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_earned": {"name": "points_earned", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_expire_at": {"name": "points_expire_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscribed": {"name": "subscribed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.group_customers", "created_at": 1700082693.756836}, "source.yoda.loyalty__chainperks.email_campaign_emails": {"database": null, "schema": "chainperks", "name": "email_campaign_emails", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.email_campaign_emails", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "email_campaign_emails"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "email_campaign_emails", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "bounced": {"name": "bounced", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "clicked": {"name": "clicked", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delayed": {"name": "delayed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_campaign_id": {"name": "email_campaign_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marked_as_spam": {"name": "marked_as_spam", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opened_at": {"name": "opened_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "opened": {"name": "opened", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rejected": {"name": "rejected", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent_at": {"name": "sent_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent": {"name": "sent", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "soft_bounced": {"name": "soft_bounced", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unsubscribed": {"name": "unsubscribed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "clicked_at": {"name": "clicked_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delayed_at": {"name": "delayed_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "bounced_at": {"name": "bounced_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unsubscribed_at": {"name": "unsubscribed_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rejected_at": {"name": "rejected_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marked_as_spam_at": {"name": "marked_as_spam_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.email_campaign_emails", "created_at": 1700082693.7570627}, "source.yoda.loyalty__chainperks.customers_vip_tiers_history": {"database": null, "schema": "chainperks", "name": "customers_vip_tiers_history", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.customers_vip_tiers_history", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "customers_vip_tiers_history"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "customers_vip_tiers_history", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "action": {"name": "action", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expired_at": {"name": "expired_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tier_entry_date": {"name": "tier_entry_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_expiration_date": {"name": "tier_expiration_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_id": {"name": "tier_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.customers_vip_tiers_history", "created_at": 1700082693.7573109}, "source.yoda.loyalty__chainperks.customers_vip_tiers": {"database": null, "schema": "chainperks", "name": "customers_vip_tiers", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.customers_vip_tiers", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "customers_vip_tiers"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "customers_vip_tiers", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "tier_entry_date": {"name": "tier_entry_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tier_expiration_date": {"name": "tier_expiration_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "history_id": {"name": "history_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "state": {"name": "state", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tier_id": {"name": "tier_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.customers_vip_tiers", "created_at": 1700082693.7575111}, "source.yoda.loyalty__chainperks.customers_opt_in": {"database": null, "schema": "chainperks", "name": "customers_opt_in", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.customers_opt_in", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "customers_opt_in"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "customers_opt_in", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "opted_in_at": {"name": "opted_in_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "customer_id": {"name": "customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_type": {"name": "source_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.customers_opt_in", "created_at": 1700082693.7576969}, "source.yoda.loyalty__chainperks.customers": {"database": null, "schema": "chainperks", "name": "customers", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.customers", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "customers"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "customers", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "last_purchase_at": {"name": "last_purchase_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "accepts_marketing": {"name": "accepts_marketing", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_name": {"name": "first_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_customer_id": {"name": "group_customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "has_provided_tax_details": {"name": "has_provided_tax_details", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "identity_id": {"name": "identity_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_locked": {"name": "is_locked", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_member": {"name": "is_member", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_name": {"name": "last_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "perks_redeemed": {"name": "perks_redeemed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone_number": {"name": "phone_number", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processor_id": {"name": "processor_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_code_id": {"name": "referral_code_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_by_customer_id": {"name": "referred_by_customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source": {"name": "source", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_account_id": {"name": "store_account_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_purchases": {"name": "total_purchases", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_spend_cents": {"name": "total_spend_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pos_account_id": {"name": "pos_account_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.customers", "created_at": 1700082693.757933}, "source.yoda.loyalty__chainperks.customer_birthdays": {"database": null, "schema": "chainperks", "name": "customer_birthdays", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.customer_birthdays", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "customer_birthdays"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "customer_birthdays", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "day": {"name": "day", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_customer_id": {"name": "group_customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "month": {"name": "month", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "year": {"name": "year", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_sent": {"name": "last_sent", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.customer_birthdays", "created_at": 1700082693.7581213}, "source.yoda.loyalty__chainperks.campaigns": {"database": null, "schema": "chainperks", "name": "campaigns", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.campaigns", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "campaigns"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "campaigns", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "activated_at": {"name": "activated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active": {"name": "active", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "admin_display_name": {"name": "admin_display_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin_only": {"name": "admin_only", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "already_completed": {"name": "already_completed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "archived": {"name": "archived", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ask_year": {"name": "ask_year", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_codes_count": {"name": "campaign_codes_count", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "cta_text": {"name": "cta_text", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "days_until_next_action": {"name": "days_until_next_action", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_email_subject": {"name": "default_email_subject", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_share_text_header": {"name": "default_share_text_header", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_share_text": {"name": "default_share_text", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_sms_text": {"name": "default_sms_text", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delay_reward_days": {"name": "delay_reward_days", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delay_reward": {"name": "delay_reward", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "details": {"name": "details", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_order": {"name": "display_order", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "exclude_customer_tags": {"name": "exclude_customer_tags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "exclude_order_tags": {"name": "exclude_order_tags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expired": {"name": "expired", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "extra_copy1": {"name": "extra_copy1", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "extra_copy2": {"name": "extra_copy2", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "extra_copy3": {"name": "extra_copy3", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hidden": {"name": "hidden", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hours_until_next_action": {"name": "hours_until_next_action", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "icon": {"name": "icon", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "include_audience_ids": {"name": "include_audience_ids", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "min_actions_required": {"name": "min_actions_required", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "min_spend_cents": {"name": "min_spend_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "must_be_customer": {"name": "must_be_customer", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overflow_enabled": {"name": "overflow_enabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_map_strategy": {"name": "product_map_strategy", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_restrictions_reward": {"name": "product_restrictions_reward", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_auto_apply_coupon": {"name": "referral_auto_apply_coupon", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_host": {"name": "referral_host", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "requires_referral_code": {"name": "requires_referral_code", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_percentage": {"name": "reward_percentage", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_points": {"name": "reward_points", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reward_text": {"name": "reward_text", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_type": {"name": "reward_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "show_in_admin": {"name": "show_in_admin", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "show_in_rewards_popup": {"name": "show_in_rewards_popup", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "use_account_creation_date": {"name": "use_account_creation_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_custom_url": {"name": "use_custom_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_oauth": {"name": "use_oauth", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "max_perks_per_user": {"name": "max_perks_per_user", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "goal_spend_cents": {"name": "goal_spend_cents", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "required_order_comparison": {"name": "required_order_comparison", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_product_id_map": {"name": "reward_product_id_map", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "background_image_id": {"name": "background_image_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_tiers": {"name": "campaign_tiers", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_tags": {"name": "customer_tags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_product_by_types": {"name": "exclude_product_by_types", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_tags": {"name": "order_tags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "require_product_by_ids": {"name": "require_product_by_ids", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "require_product_by_types": {"name": "require_product_by_types", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_name": {"name": "action_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_email_body": {"name": "default_email_body", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_description": {"name": "facebook_description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemption_option_id": {"name": "redemption_option_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_query_params": {"name": "referral_query_params", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_redemption_option_id": {"name": "referral_redemption_option_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referral_redirect_url": {"name": "referral_redirect_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referral_reward_points": {"name": "referral_reward_points", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referred_user_target_campaign_id": {"name": "referred_user_target_campaign_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "referrer_target_campaign_id": {"name": "referrer_target_campaign_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expired_at": {"name": "expired_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "max_perks_total": {"name": "max_perks_total", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "url": {"name": "url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "require_product_by_tags": {"name": "require_product_by_tags", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "goal_purchases": {"name": "goal_purchases", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "entity_id": {"name": "entity_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "username": {"name": "username", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "answer": {"name": "answer", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minutes_between_perks": {"name": "minutes_between_perks", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "question": {"name": "question", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vip_tier_id": {"name": "vip_tier_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "api_key": {"name": "api_key", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reward_media_filter": {"name": "reward_media_filter", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action_filter": {"name": "action_filter", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "share_image_id": {"name": "share_image_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "minutes_between_actions": {"name": "minutes_between_actions", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "custom_url": {"name": "custom_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_id": {"name": "image_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "share_header": {"name": "share_header", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "share_text": {"name": "share_text", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "required_order_count": {"name": "required_order_count", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "api_secret": {"name": "api_secret", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_scanned_review_id": {"name": "last_scanned_review_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exclude_audience_ids": {"name": "exclude_audience_ids", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "receipts_escalation_email": {"name": "receipts_escalation_email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "receipts_notification_email": {"name": "receipts_notification_email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.campaigns", "created_at": 1700082693.7587128}, "source.yoda.loyalty__chainperks.email_campaigns": {"database": null, "schema": "chainperks", "name": "email_campaigns", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.email_campaigns", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "email_campaigns"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "email_campaigns", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "activated_at": {"name": "activated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "active": {"name": "active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "body": {"name": "body", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delay_days": {"name": "delay_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_bounced_count": {"name": "email_bounced_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_clicked_count": {"name": "email_clicked_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_delayed_count": {"name": "email_delayed_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_marked_as_spam_count": {"name": "email_marked_as_spam_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_opened_count": {"name": "email_opened_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_rejected_count": {"name": "email_rejected_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_sent_count": {"name": "email_sent_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_soft_bounced_count": {"name": "email_soft_bounced_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_unsubscribed_count": {"name": "email_unsubscribed_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "layout": {"name": "layout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent_at": {"name": "sent_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sent": {"name": "sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "show_recommendations": {"name": "show_recommendations", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "start_job_id": {"name": "start_job_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "starts_at": {"name": "starts_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subject": {"name": "subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.email_campaigns", "created_at": 1700082693.759004}, "source.yoda.loyalty__chainperks.plans": {"database": null, "schema": "chainperks", "name": "plans", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.plans", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "plans"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "plans", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "base_price_cents": {"name": "base_price_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "capped_amount_cents": {"name": "capped_amount_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "included_orders": {"name": "included_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "per_order_price_cents": {"name": "per_order_price_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.plans", "created_at": 1700082693.7595985}, "source.yoda.loyalty__chainperks.vip_tiers_settings": {"database": null, "schema": "chainperks", "name": "vip_tiers_settings", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.vip_tiers_settings", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "vip_tiers_settings"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "vip_tiers_settings", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "custom_start_date": {"name": "custom_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delay_purchase_eligibility_days": {"name": "delay_purchase_eligibility_days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delay_purchase_eligibility_enabled": {"name": "delay_purchase_eligibility_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "dropping_policy": {"name": "dropping_policy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "entry_fulfillment_timeframe": {"name": "entry_fulfillment_timeframe", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "include_actions_pre_opt_in": {"name": "include_actions_pre_opt_in", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_enabled": {"name": "is_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "last_enabled_type": {"name": "last_enabled_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_to_platform": {"name": "sync_to_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.vip_tiers_settings", "created_at": 1700082693.759902}, "source.yoda.loyalty__chainperks.campaign_activation_histories": {"database": null, "schema": "chainperks", "name": "campaign_activation_histories", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.campaign_activation_histories", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "campaign_activation_histories"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "campaign_activation_histories", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "active": {"name": "active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.campaign_activation_histories", "created_at": 1700082693.7605221}, "source.yoda.loyalty__chainperks.customers_platform_accounts": {"database": null, "schema": "chainperks", "name": "customers_platform_accounts", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__chainperks.customers_platform_accounts", "fqn": ["yoda", "loyalty", "source", "loyalty__chainperks", "customers_platform_accounts"], "source_name": "loyalty__chainperks", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "customers_platform_accounts", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_account_created_at": {"name": "platform_account_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "chainperks.customers_platform_accounts", "created_at": 1700082693.7608101}, "source.yoda.loyalty__communication.store_email_activity": {"database": null, "schema": "communication", "name": "store_email_activity", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__communication.store_email_activity", "fqn": ["yoda", "loyalty", "source", "loyalty__communication", "store_email_activity"], "source_name": "loyalty__communication", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "store_email_activity", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"store_id": {"name": "store_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "start_date": {"name": "start_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaigns_emails_delivered": {"name": "campaigns_emails_delivered", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flows_emails_delivered": {"name": "flows_emails_delivered", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_emails": {"name": "total_emails", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "test_emails": {"name": "test_emails", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_email_delivered": {"name": "last_email_delivered", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "communication.store_email_activity", "created_at": 1700082693.7610607}, "source.yoda.loyalty__segment.uninstall_loyalty": {"database": null, "schema": "segment", "name": "uninstall_loyalty", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__segment.uninstall_loyalty", "fqn": ["yoda", "loyalty", "source", "loyalty__segment", "uninstall_loyalty"], "source_name": "loyalty__segment", "source_description": "Segment events tables", "loader": "", "identifier": "uninstall_loyalty", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "loyalty uninstall events", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_name": {"name": "company_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currentplan": {"name": "currentplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initialbucketnumoforders": {"name": "initialbucketnumoforders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initialnumoforders": {"name": "initialnumoforders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "last30daysbucketorder": {"name": "last30daysbucketorder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last30daysorder": {"name": "last30daysorder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyaltyemail": {"name": "loyaltyemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "segment.uninstall_loyalty", "created_at": 1700082693.761578}, "source.yoda.loyalty__segment.install_loyalty": {"database": null, "schema": "segment", "name": "install_loyalty", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__segment.install_loyalty", "fqn": ["yoda", "loyalty", "source", "loyalty__segment", "install_loyalty"], "source_name": "loyalty__segment", "source_description": "Segment events tables", "loader": "", "identifier": "install_loyalty", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_name": {"name": "company_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currentplan": {"name": "currentplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "initialnumoforders": {"name": "initialnumoforders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltyemail": {"name": "loyaltyemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "segment.install_loyalty", "created_at": 1700082693.7620528}, "source.yoda.loyalty__pixel.onsite_v3": {"database": null, "schema": "pixel", "name": "onsite_v3", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__pixel.onsite_v3", "fqn": ["yoda", "loyalty", "source", "loyalty__pixel", "onsite_v3"], "source_name": "loyalty__pixel", "source_description": "", "loader": "", "identifier": "onsite_v3", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hour": {"name": "hour", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "br_colordepth": {"name": "br_colordepth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_cookies": {"name": "br_cookies", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_family": {"name": "br_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_features_director": {"name": "br_features_director", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_flash": {"name": "br_features_flash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_gears": {"name": "br_features_gears", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_java": {"name": "br_features_java", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_pdf": {"name": "br_features_pdf", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_quicktime": {"name": "br_features_quicktime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_realplayer": {"name": "br_features_realplayer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_silverlight": {"name": "br_features_silverlight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_windowsmedia": {"name": "br_features_windowsmedia", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_lang": {"name": "br_lang", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_major": {"name": "br_major", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_minor": {"name": "br_minor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_viewheight": {"name": "br_viewheight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_viewwidth": {"name": "br_viewwidth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_day": {"name": "collector_day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_epoch": {"name": "collector_epoch", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_month": {"name": "collector_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_year": {"name": "collector_year", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_family": {"name": "device_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_charset": {"name": "doc_charset", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_height": {"name": "doc_height", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "doc_width": {"name": "doc_width", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_sessionidx": {"name": "domain_sessionidx", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dvce_screenheight": {"name": "dvce_screenheight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_screenwidth": {"name": "dvce_screenwidth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_tstamp": {"name": "dvce_tstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_vendor": {"name": "event_vendor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event": {"name": "event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_city": {"name": "geo_city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_country": {"name": "geo_country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_latitude": {"name": "geo_latitude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_longitude": {"name": "geo_longitude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_region": {"name": "geo_region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_zipcode": {"name": "geo_zipcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_campaign": {"name": "mkt_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_content": {"name": "mkt_content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_medium": {"name": "mkt_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_source": {"name": "mkt_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_term": {"name": "mkt_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_family": {"name": "os_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_major": {"name": "os_major", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_minor": {"name": "os_minor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_timezone": {"name": "os_timezone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlfragment": {"name": "page_urlfragment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlhost": {"name": "page_urlhost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlpath": {"name": "page_urlpath", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlport": {"name": "page_urlport", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_urlquery": {"name": "page_urlquery", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlscheme": {"name": "page_urlscheme", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_medium": {"name": "refr_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_source": {"name": "refr_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_term": {"name": "refr_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlfragment": {"name": "refr_urlfragment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlhost": {"name": "refr_urlhost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlpath": {"name": "refr_urlpath", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlport": {"name": "refr_urlport", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_urlquery": {"name": "refr_urlquery", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlscheme": {"name": "refr_urlscheme", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_value": {"name": "se_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "txn_id": {"name": "txn_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_fingerprint": {"name": "user_fingerprint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useragent": {"name": "useragent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_collector": {"name": "v_collector", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_etl": {"name": "v_etl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_tracker": {"name": "v_tracker", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "y_fingerprint": {"name": "y_fingerprint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "pixel.onsite_v3", "created_at": 1700082693.7625473}, "source.yoda.loyalty__sources_loyalty.known_crawlers": {"database": null, "schema": "sources_loyalty", "name": "known_crawlers", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__sources_loyalty.known_crawlers", "fqn": ["yoda", "loyalty", "source", "loyalty__sources_loyalty", "known_crawlers"], "source_name": "loyalty__sources_loyalty", "source_description": "", "loader": "", "identifier": "known_crawlers", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"crawler_name": {"name": "crawler_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(1024)"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "sources_loyalty.known_crawlers", "created_at": 1700082693.762742}, "source.yoda.loyalty__widgetrepodb.instance_versions": {"database": null, "schema": "widgetrepodb", "name": "instance_versions", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__widgetrepodb.instance_versions", "fqn": ["yoda", "loyalty", "source", "loyalty__widgetrepodb", "instance_versions"], "source_name": "loyalty__widgetrepodb", "source_description": "", "loader": "", "identifier": "instance_versions", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "instance_id": {"name": "instance_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "template_id": {"name": "template_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customization_id": {"name": "customization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "css_override_id": {"name": "css_override_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "static_content_id": {"name": "static_content_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "widgetrepodb.instance_versions", "created_at": 1700082693.7629585}, "source.yoda.loyalty__widgetrepodb.instances": {"database": null, "schema": "widgetrepodb", "name": "instances", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__widgetrepodb.instances", "fqn": ["yoda", "loyalty", "source", "loyalty__widgetrepodb", "instances"], "source_name": "loyalty__widgetrepodb", "source_description": "", "loader": "", "identifier": "instances", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "widget_type_id": {"name": "widget_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "guid": {"name": "guid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "parent_instance_id": {"name": "parent_instance_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active": {"name": "active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_update": {"name": "auto_update", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_instance_version_id": {"name": "current_instance_version_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "widgetrepodb.instances", "created_at": 1700082693.7631803}, "source.yoda.loyalty__widgetrepodb.customizations": {"database": null, "schema": "widgetrepodb", "name": "customizations", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__widgetrepodb.customizations", "fqn": ["yoda", "loyalty", "source", "loyalty__widgetrepodb", "customizations"], "source_name": "loyalty__widgetrepodb", "source_description": "", "loader": "", "identifier": "customizations", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "settings_resource_path": {"name": "settings_resource_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "css_resource_path": {"name": "css_resource_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "widgetrepodb.customizations", "created_at": 1700082693.7634537}, "source.yoda.loyalty__widgetrepodb.static_contents": {"database": null, "schema": "widgetrepodb", "name": "static_contents", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__widgetrepodb.static_contents", "fqn": ["yoda", "loyalty", "source", "loyalty__widgetrepodb", "static_contents"], "source_name": "loyalty__widgetrepodb", "source_description": "", "loader": "", "identifier": "static_contents", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "resource_path": {"name": "resource_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "widgetrepodb.static_contents", "created_at": 1700082693.763659}, "source.yoda.loyalty__widgetrepodb.templates": {"database": null, "schema": "widgetrepodb", "name": "templates", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__widgetrepodb.templates", "fqn": ["yoda", "loyalty", "source", "loyalty__widgetrepodb", "templates"], "source_name": "loyalty__widgetrepodb", "source_description": "", "loader": "", "identifier": "templates", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "widget_type_id": {"name": "widget_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "resource_path": {"name": "resource_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customization_schema_path": {"name": "customization_schema_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dependency_group_id": {"name": "dependency_group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "widgetrepodb.templates", "created_at": 1700082693.7639275}, "source.yoda.loyalty__widgetrepodb.widget_types": {"database": null, "schema": "widgetrepodb", "name": "widget_types", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__widgetrepodb.widget_types", "fqn": ["yoda", "loyalty", "source", "loyalty__widgetrepodb", "widget_types"], "source_name": "loyalty__widgetrepodb", "source_description": "", "loader": "", "identifier": "widget_types", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_template_id": {"name": "default_template_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "default_customization_id": {"name": "default_customization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "widgetrepodb.widget_types", "created_at": 1700082693.7641344}, "source.yoda.loyalty__points.config_item": {"database": null, "schema": "points", "name": "config_item", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__points.config_item", "fqn": ["yoda", "loyalty", "source", "loyalty__points", "config_item"], "source_name": "loyalty__points", "source_description": "", "loader": "", "identifier": "config_item", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "cursor_id": {"name": "cursor_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "_class": {"name": "_class", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "data": {"name": "data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tenant_id": {"name": "tenant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tenant_type": {"name": "tenant_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "points.config_item", "created_at": 1700082693.7644496}, "source.yoda.loyalty__points.container_balance_usage": {"database": null, "schema": "points", "name": "container_balance_usage", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__points.container_balance_usage", "fqn": ["yoda", "loyalty", "source", "loyalty__points", "container_balance_usage"], "source_name": "loyalty__points", "source_description": "", "loader": "", "identifier": "container_balance_usage", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "page_cursor": {"name": "page_cursor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "points_transaction_id": {"name": "points_transaction_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_container_expiration_id": {"name": "points_container_expiration_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "used_points": {"name": "used_points", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "points.container_balance_usage", "created_at": 1700082693.764698}, "source.yoda.loyalty__points.points_container_expiration": {"database": null, "schema": "points", "name": "points_container_expiration", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__points.points_container_expiration", "fqn": ["yoda", "loyalty", "source", "loyalty__points", "points_container_expiration"], "source_name": "loyalty__points", "source_description": "", "loader": "", "identifier": "points_container_expiration", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "page_cursor": {"name": "page_cursor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_transaction_id": {"name": "points_transaction_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_customer_id": {"name": "group_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expiration_policy_id": {"name": "expiration_policy_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "available_points": {"name": "available_points", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expiration_date": {"name": "expiration_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usable": {"name": "usable", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "has_points": {"name": "has_points", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "points.points_container_expiration", "created_at": 1700082693.7649662}, "source.yoda.loyalty__points.points_state": {"database": null, "schema": "points", "name": "points_state", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__points.points_state", "fqn": ["yoda", "loyalty", "source", "loyalty__points", "points_state"], "source_name": "loyalty__points", "source_description": "", "loader": "", "identifier": "points_state", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_customer_id": {"name": "group_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "points_earned": {"name": "points_earned", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "points_balance": {"name": "points_balance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "points.points_state", "created_at": 1700082693.7651815}, "source.yoda.loyalty__points.points_transaction": {"database": null, "schema": "points", "name": "points_transaction", "resource_type": "source", "package_name": "yoda", "path": "models/loyalty/source/loyalty__src.yml", "original_file_path": "models/loyalty/source/loyalty__src.yml", "unique_id": "source.yoda.loyalty__points.points_transaction", "fqn": ["yoda", "loyalty", "source", "loyalty__points", "points_transaction"], "source_name": "loyalty__points", "source_description": "", "loader": "", "identifier": "points_transaction", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "page_cursor": {"name": "page_cursor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "group_customer_id": {"name": "group_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caused_in_store_id": {"name": "caused_in_store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transaction_type": {"name": "transaction_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason_type": {"name": "reason_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason_description": {"name": "reason_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_transaction_id": {"name": "original_transaction_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "original_transaction_at": {"name": "original_transaction_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "debug_data": {"name": "debug_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["loyalty"]}, "patch_path": null, "unrendered_config": {"tags": ["loyalty"]}, "relation_name": "points.points_transaction", "created_at": 1700082693.7655487}, "source.yoda.platform__yotpoapiprod.accounts": {"database": null, "schema": "yotpoapiprod", "name": "accounts", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__yotpoapiprod.accounts", "fqn": ["yoda", "platform", "source", "platform__yotpoapiprod", "accounts"], "source_name": "platform__yotpoapiprod", "source_description": "Tables written by yotpo R&D and serve the platform", "loader": "", "identifier": "accounts", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Yotpo's accounts (also known as Stores)", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "domain": {"name": "domain", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_subdomain": {"name": "minisite_subdomain", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_cname": {"name": "minisite_cname", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_website": {"name": "minisite_website", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "minisite_website_name": {"name": "minisite_website_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referal": {"name": "referal", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "active": {"name": "active", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_publish": {"name": "auto_publish", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "minisite_subdomain_active": {"name": "minisite_subdomain_active", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_type_id": {"name": "account_type_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "custom_design": {"name": "custom_design", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_login_popup": {"name": "auto_login_popup", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner_key": {"name": "partner_key", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "support_url": {"name": "support_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "callback_url": {"name": "callback_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secret": {"name": "secret", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_language": {"name": "customer_language", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bottom_line_installed": {"name": "bottom_line_installed", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "install_step": {"name": "install_step", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_social_push": {"name": "auto_social_push", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_mails_sender_name": {"name": "customer_mails_sender_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "slug": {"name": "slug", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_me_account_name": {"name": "reviews_me_account_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_me_account_description": {"name": "reviews_me_account_description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviews_me_crawlable": {"name": "reviews_me_crawlable", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "coupons_expiration_date": {"name": "coupons_expiration_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "map_up_sell_title": {"name": "map_up_sell_title", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "custom_platform_name": {"name": "custom_platform_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_id": {"name": "category_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_test": {"name": "is_test", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "yotpoapiprod.accounts", "created_at": 1700082693.7913094}, "source.yoda.platform__yotpoapiprod.platform_types": {"database": null, "schema": "yotpoapiprod", "name": "platform_types", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__yotpoapiprod.platform_types", "fqn": ["yoda", "platform", "source", "platform__yotpoapiprod", "platform_types"], "source_name": "platform__yotpoapiprod", "source_description": "Tables written by yotpo R&D and serve the platform", "loader": "", "identifier": "platform_types", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Yotpo's supported platforms", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "yotpoapiprod.platform_types", "created_at": 1700082693.805002}, "source.yoda.platform__yotpoapiprod.account_platforms": {"database": null, "schema": "yotpoapiprod", "name": "account_platforms", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__yotpoapiprod.account_platforms", "fqn": ["yoda", "platform", "source", "platform__yotpoapiprod", "account_platforms"], "source_name": "platform__yotpoapiprod", "source_description": "Tables written by yotpo R&D and serve the platform", "loader": "", "identifier": "account_platforms", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Yotpo's supported platforms", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_token": {"name": "shop_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_domain": {"name": "shop_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_type_id": {"name": "platform_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_user_name": {"name": "shop_user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "valid_credentials": {"name": "valid_credentials", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "secondary_recurring_charge_id": {"name": "secondary_recurring_charge_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "secondary_activated_charge_at": {"name": "secondary_activated_charge_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "secondary_cancelled_charge_at": {"name": "secondary_cancelled_charge_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "encrypted_data": {"name": "encrypted_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "failed_attempts": {"name": "failed_attempts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_currency": {"name": "shop_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_shop_domain": {"name": "external_shop_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_account_id": {"name": "external_account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "version": {"name": "version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plugin_version": {"name": "plugin_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "yotpoapiprod.account_platforms", "created_at": 1700082693.8183227}, "source.yoda.platform__yotpoapiprod.organizations": {"database": null, "schema": "yotpoapiprod", "name": "organizations", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__yotpoapiprod.organizations", "fqn": ["yoda", "platform", "source", "platform__yotpoapiprod", "organizations"], "source_name": "platform__yotpoapiprod", "source_description": "Tables written by yotpo R&D and serve the platform", "loader": "", "identifier": "organizations", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_key": {"name": "organization_key", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "yotpoapiprod.organizations", "created_at": 1700082693.8186138}, "source.yoda.platform__yotpoapiprod.apps": {"database": null, "schema": "yotpoapiprod", "name": "apps", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__yotpoapiprod.apps", "fqn": ["yoda", "platform", "source", "platform__yotpoapiprod", "apps"], "source_name": "platform__yotpoapiprod", "source_description": "Tables written by yotpo R&D and serve the platform", "loader": "", "identifier": "apps", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "moderator_role_id": {"name": "moderator_role_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "disabled": {"name": "disabled", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "yotpoapiprod.apps", "created_at": 1700082693.818835}, "source.yoda.platform__yotpoapiprod.features": {"database": null, "schema": "yotpoapiprod", "name": "features", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__yotpoapiprod.features", "fqn": ["yoda", "platform", "source", "platform__yotpoapiprod", "features"], "source_name": "platform__yotpoapiprod", "source_description": "Tables written by yotpo R&D and serve the platform", "loader": "", "identifier": "features", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_type": {"name": "owner_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_user_enabled": {"name": "default_user_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "new": {"name": "new", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "feature_key": {"name": "feature_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "yotpoapiprod.features", "created_at": 1700082693.819052}, "source.yoda.platform__yotpoapiprod.owners_features": {"database": null, "schema": "yotpoapiprod", "name": "owners_features", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__yotpoapiprod.owners_features", "fqn": ["yoda", "platform", "source", "platform__yotpoapiprod", "owners_features"], "source_name": "platform__yotpoapiprod", "source_description": "Tables written by yotpo R&D and serve the platform", "loader": "", "identifier": "owners_features", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "disabled": {"name": "disabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_id": {"name": "feature_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "floating": {"name": "floating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_id": {"name": "owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_type": {"name": "owner_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_enabled": {"name": "user_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "yotpoapiprod.owners_features", "created_at": 1700082693.8196428}, "source.yoda.platform__yotpoapiprod.owner_feature_settings": {"database": null, "schema": "yotpoapiprod", "name": "owner_feature_settings", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__yotpoapiprod.owner_feature_settings", "fqn": ["yoda", "platform", "source", "platform__yotpoapiprod", "owner_feature_settings"], "source_name": "platform__yotpoapiprod", "source_description": "Tables written by yotpo R&D and serve the platform", "loader": "", "identifier": "owner_feature_settings", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "owners_feature_id": {"name": "owners_feature_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "key": {"name": "key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "floating": {"name": "floating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "yotpoapiprod.owner_feature_settings", "created_at": 1700082693.819868}, "source.yoda.platform__yotpoapiprod.users_organizations": {"database": null, "schema": "yotpoapiprod", "name": "users_organizations", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__yotpoapiprod.users_organizations", "fqn": ["yoda", "platform", "source", "platform__yotpoapiprod", "users_organizations"], "source_name": "platform__yotpoapiprod", "source_description": "Tables written by yotpo R&D and serve the platform", "loader": "", "identifier": "users_organizations", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "add_to_future_stores": {"name": "add_to_future_stores", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "default_role_id": {"name": "default_role_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted_from_organization": {"name": "deleted_from_organization", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "invites_counter": {"name": "invites_counter", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "yotpoapiprod.users_organizations", "created_at": 1700082693.820115}, "source.yoda.platform__yotpoapiprod.questions": {"database": null, "schema": "yotpoapiprod", "name": "questions", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__yotpoapiprod.questions", "fqn": ["yoda", "platform", "source", "platform__yotpoapiprod", "questions"], "source_name": "platform__yotpoapiprod", "source_description": "Tables written by yotpo R&D and serve the platform", "loader": "", "identifier": "questions", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "products_app_id": {"name": "products_app_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "content": {"name": "content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "asker_display_name": {"name": "asker_display_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_type": {"name": "user_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "allow_send": {"name": "allow_send", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "archived": {"name": "archived", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_type_id": {"name": "source_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "source_question_id": {"name": "source_question_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "yotpoapiprod.questions", "created_at": 1700082693.8203723}, "source.yoda.platform__packages.owners_packages": {"database": null, "schema": "packages", "name": "owners_packages", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__packages.owners_packages", "fqn": ["yoda", "platform", "source", "platform__packages", "owners_packages"], "source_name": "platform__packages", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "owners_packages", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "owner_id": {"name": "owner_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_id": {"name": "package_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_type": {"name": "owner_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "started_at": {"name": "started_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "packages.owners_packages", "created_at": 1700082693.8205867}, "source.yoda.platform__packages.packages": {"database": null, "schema": "packages", "name": "packages", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__packages.packages", "fqn": ["yoda", "platform", "source", "platform__packages", "packages"], "source_name": "platform__packages", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "packages", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_id": {"name": "category_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "display_name": {"name": "display_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "downgrade_package_id": {"name": "downgrade_package_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "package_key": {"name": "package_key", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_package_id": {"name": "old_package_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "category_priority": {"name": "category_priority", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "packages.packages", "created_at": 1700082693.820803}, "source.yoda.platform__packages.categories": {"database": null, "schema": "packages", "name": "categories", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__packages.categories", "fqn": ["yoda", "platform", "source", "platform__packages", "categories"], "source_name": "platform__packages", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "categories", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "allow_multiple_packages": {"name": "allow_multiple_packages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "packages.categories", "created_at": 1700082693.820991}, "source.yoda.platform__packages.package_tags": {"database": null, "schema": "packages", "name": "package_tags", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__packages.package_tags", "fqn": ["yoda", "platform", "source", "platform__packages", "package_tags"], "source_name": "platform__packages", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "package_tags", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_id": {"name": "package_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "package_tag_type_id": {"name": "package_tag_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "packages.package_tags", "created_at": 1700082693.821244}, "source.yoda.platform__packages.package_tag_types": {"database": null, "schema": "packages", "name": "package_tag_types", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__packages.package_tag_types", "fqn": ["yoda", "platform", "source", "platform__packages", "package_tag_types"], "source_name": "platform__packages", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "package_tag_types", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "tag_type": {"name": "tag_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "packages.package_tag_types", "created_at": 1700082693.8214493}, "source.yoda.platform__packages.owners_package_audits": {"database": null, "schema": "packages", "name": "owners_package_audits", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__packages.owners_package_audits", "fqn": ["yoda", "platform", "source", "platform__packages", "owners_package_audits"], "source_name": "platform__packages", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "owners_package_audits", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "owner_id": {"name": "owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner_type": {"name": "owner_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from_package_id": {"name": "from_package_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "to_package_id": {"name": "to_package_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "action": {"name": "action", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason": {"name": "reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "packages.owners_package_audits", "created_at": 1700082693.821658}, "source.yoda.platform__packages.owners_packages_history": {"database": null, "schema": "packages", "name": "owners_packages_history", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__packages.owners_packages_history", "fqn": ["yoda", "platform", "source", "platform__packages", "owners_packages_history"], "source_name": "platform__packages", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "owners_packages_history", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "owner_id": {"name": "owner_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_id": {"name": "package_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner_type": {"name": "owner_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "started_at": {"name": "started_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "deleted_at": {"name": "deleted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "packages.owners_packages_history", "created_at": 1700082693.8218646}, "source.yoda.platform__packages.package_feature_settings": {"database": null, "schema": "packages", "name": "package_feature_settings", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__packages.package_feature_settings", "fqn": ["yoda", "platform", "source", "platform__packages", "package_feature_settings"], "source_name": "platform__packages", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "package_feature_settings", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_feature_id": {"name": "package_feature_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "key": {"name": "key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "packages.package_feature_settings", "created_at": 1700082693.8220544}, "source.yoda.platform__packages.package_features": {"database": null, "schema": "packages", "name": "package_features", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__packages.package_features", "fqn": ["yoda", "platform", "source", "platform__packages", "package_features"], "source_name": "platform__packages", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "package_features", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_id": {"name": "package_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_key": {"name": "feature_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "promoted": {"name": "promoted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "feature_name": {"name": "feature_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "packages.package_features", "created_at": 1700082693.822319}, "source.yoda.platform__packages.platform_package_features": {"database": null, "schema": "packages", "name": "platform_package_features", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__packages.platform_package_features", "fqn": ["yoda", "platform", "source", "platform__packages", "platform_package_features"], "source_name": "platform__packages", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "platform_package_features", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "platform_name": {"name": "platform_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_id": {"name": "package_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "feature_key": {"name": "feature_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "packages.platform_package_features", "created_at": 1700082693.8226173}, "source.yoda.platform__orders.orders": {"database": null, "schema": "orders", "name": "orders", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__orders.orders", "fqn": ["yoda", "platform", "source", "platform__orders", "orders"], "source_name": "platform__orders", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "orders", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_date": {"name": "order_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "external_order_id": {"name": "external_order_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_type": {"name": "platform_type", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_order_display_name": {"name": "external_order_display_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_update_date": {"name": "order_update_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_sum_order_currency": {"name": "order_sum_order_currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "order_currency_iso": {"name": "order_currency_iso", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_sum_account_currency": {"name": "order_sum_account_currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "account_currency_iso": {"name": "account_currency_iso", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "billing_address_id": {"name": "billing_address_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shipping_address_id": {"name": "shipping_address_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_customer_id": {"name": "external_customer_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "first_name": {"name": "first_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_number": {"name": "phone_number", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price": {"name": "total_price", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "landing_site_url": {"name": "landing_site_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "checkout_token": {"name": "checkout_token", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_method": {"name": "payment_method", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_status_id": {"name": "payment_status_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "buyer_accepts_sms_marketing": {"name": "buyer_accepts_sms_marketing", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "buyer_accepts_email_marketing": {"name": "buyer_accepts_email_marketing", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "custom_properties": {"name": "custom_properties", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "buyer_accepts_marketing": {"name": "buyer_accepts_marketing", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_id": {"name": "external_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "orders.orders", "created_at": 1700082693.8229082}, "source.yoda.platform__orders.fulfillments": {"database": null, "schema": "orders", "name": "fulfillments", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__orders.fulfillments", "fqn": ["yoda", "platform", "source", "platform__orders", "fulfillments"], "source_name": "platform__orders", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "fulfillments", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "external_id": {"name": "external_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "fulfillment_date": {"name": "fulfillment_date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "fulfillment_status_type_id": {"name": "fulfillment_status_type_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shipment_status_type_id": {"name": "shipment_status_type_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "tracking_company": {"name": "tracking_company", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tracking_url": {"name": "tracking_url", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tracking_number": {"name": "tracking_number", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "orders.fulfillments", "created_at": 1700082693.8231635}, "source.yoda.platform__orders.order_lines": {"database": null, "schema": "orders", "name": "order_lines", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__orders.order_lines", "fqn": ["yoda", "platform", "source", "platform__orders", "order_lines"], "source_name": "platform__orders", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "order_lines", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_variant_id": {"name": "external_variant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cost": {"name": "cost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "coupon_used": {"name": "coupon_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "quantity": {"name": "quantity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subtotal_price": {"name": "subtotal_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "custom_properties": {"name": "custom_properties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "coupon_code": {"name": "coupon_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "orders.order_lines", "created_at": 1700082693.8233955}, "source.yoda.platform__default.currency_rates": {"database": null, "schema": "default", "name": "currency_rates", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__default.currency_rates", "fqn": ["yoda", "platform", "source", "platform__default", "currency_rates"], "source_name": "platform__default", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "currency_rates", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"base": {"name": "base", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "day_of_currency_exchange": {"name": "day_of_currency_exchange", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency": {"name": "currency", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "default.currency_rates", "created_at": 1700082693.8235877}, "source.yoda.platform__default.platform__integrationscenter": {"database": null, "schema": "default", "name": "platform__integrationscenter", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__default.platform__integrationscenter", "fqn": ["yoda", "platform", "source", "platform__default", "platform__integrationscenter"], "source_name": "platform__default", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "platform__integrationscenter", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "default.platform__integrationscenter", "created_at": 1700082693.8237572}, "source.yoda.platform__default.dim_calendar": {"database": null, "schema": "default", "name": "dim_calendar", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__default.dim_calendar", "fqn": ["yoda", "platform", "source", "platform__default", "dim_calendar"], "source_name": "platform__default", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "dim_calendar", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "an horizonatl table with calendar dates that can be used by multiple models", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "year": {"name": "year", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "quarter": {"name": "quarter", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "week": {"name": "week", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day_name": {"name": "day_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "month_name": {"name": "month_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "holiday_flag": {"name": "holiday_flag", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "weekend_flag": {"name": "weekend_flag", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "default.dim_calendar", "created_at": 1700082693.8239627}, "source.yoda.platform__integrationscenter.store_applications": {"database": null, "schema": "integrationscenter", "name": "store_applications", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__integrationscenter.store_applications", "fqn": ["yoda", "platform", "source", "platform__integrationscenter", "store_applications"], "source_name": "platform__integrationscenter", "source_description": "TODO: Update Source Description", "loader": "", "identifier": "store_applications", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "TODO: Update Source Description", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "application_id": {"name": "application_id", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "disconnected_at": {"name": "disconnected_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "TODO: Update Source Description", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "integrationscenter.store_applications", "created_at": 1700082693.824255}, "source.yoda.platform__products.products": {"database": null, "schema": "products", "name": "products", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__products.products", "fqn": ["yoda", "platform", "source", "platform__products", "products"], "source_name": "platform__products", "source_description": "", "loader": "", "identifier": "products", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_valid_url_format": {"name": "is_valid_url_format", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price": {"name": "price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "inventory_quantity": {"name": "inventory_quantity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_discontinued": {"name": "is_discontinued", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "handle": {"name": "handle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "group_id": {"name": "group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "custom_properties": {"name": "custom_properties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_created_at": {"name": "external_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "external_updated_at": {"name": "external_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "compare_at_price": {"name": "compare_at_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "sku": {"name": "sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "products.products", "created_at": 1700082693.8245108}, "source.yoda.platform__products.variants": {"database": null, "schema": "products", "name": "variants", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__products.variants", "fqn": ["yoda", "platform", "source", "platform__products", "variants"], "source_name": "platform__products", "source_description": "", "loader": "", "identifier": "variants", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_id": {"name": "external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_valid_url_format": {"name": "is_valid_url_format", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price": {"name": "price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "inventory_quantity": {"name": "inventory_quantity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_discontinued": {"name": "is_discontinued", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "custom_properties": {"name": "custom_properties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_created_at": {"name": "external_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "external_updated_at": {"name": "external_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "compare_at_price": {"name": "compare_at_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "products.variants", "created_at": 1700082693.8248012}, "source.yoda.platform__products.gtins": {"database": null, "schema": "products", "name": "gtins", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__products.gtins", "fqn": ["yoda", "platform", "source", "platform__products", "gtins"], "source_name": "platform__products", "source_description": "", "loader": "", "identifier": "gtins", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "gtinable_type": {"name": "gtinable_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gtinable_id": {"name": "gtinable_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "declared_type": {"name": "declared_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "detected_type": {"name": "detected_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "products.gtins", "created_at": 1700082693.825009}, "source.yoda.platform__products.custom_attributes": {"database": null, "schema": "products", "name": "custom_attributes", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__products.custom_attributes", "fqn": ["yoda", "platform", "source", "platform__products", "custom_attributes"], "source_name": "platform__products", "source_description": "", "loader": "", "identifier": "custom_attributes", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partitioning_time": {"name": "partitioning_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "attributable_id": {"name": "attributable_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "attributable_type": {"name": "attributable_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "boolean_value": {"name": "boolean_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "key": {"name": "key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "namespace": {"name": "namespace", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "string_value": {"name": "string_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "value_type": {"name": "value_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "products.custom_attributes", "created_at": 1700082693.8252754}, "source.yoda.platform__products.attribute_sets": {"database": null, "schema": "products", "name": "attribute_sets", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__products.attribute_sets", "fqn": ["yoda", "platform", "source", "platform__products", "attribute_sets"], "source_name": "platform__products", "source_description": "", "loader": "", "identifier": "attribute_sets", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "attributable_type": {"name": "attributable_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "attributable_id": {"name": "attributable_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "mpn": {"name": "mpn", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "brand": {"name": "brand", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sku": {"name": "sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_sku": {"name": "external_sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "products.attribute_sets", "created_at": 1700082693.825481}, "source.yoda.platform__products.groups": {"database": null, "schema": "products", "name": "groups", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__products.groups", "fqn": ["yoda", "platform", "source", "platform__products", "groups"], "source_name": "platform__products", "source_description": "", "loader": "", "identifier": "groups", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "products.groups", "created_at": 1700082693.8256674}, "source.yoda.platform__static.timezone_country_mapping": {"database": null, "schema": "static", "name": "timezone_country_mapping", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__static.timezone_country_mapping", "fqn": ["yoda", "platform", "source", "platform__static", "timezone_country_mapping"], "source_name": "platform__static", "source_description": "", "loader": "", "identifier": "timezone_country_mapping", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"timezone": {"name": "timezone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_code": {"name": "country_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_name": {"name": "country_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region_name": {"name": "region_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "static.timezone_country_mapping", "created_at": 1700082693.8258576}, "source.yoda.platform__static.pixel_category_mapping": {"database": null, "schema": "static", "name": "pixel_category_mapping", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__static.pixel_category_mapping", "fqn": ["yoda", "platform", "source", "platform__static", "pixel_category_mapping"], "source_name": "platform__static", "source_description": "", "loader": "", "identifier": "pixel_category_mapping", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "static mapping table of pixel categories to product", "columns": {"product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_version_type": {"name": "widget_version_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "category": {"name": "category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "static.pixel_category_mapping", "created_at": 1700082693.8260367}, "source.yoda.platform__static.pixel_action_mapping": {"database": null, "schema": "static", "name": "pixel_action_mapping", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__static.pixel_action_mapping", "fqn": ["yoda", "platform", "source", "platform__static", "pixel_action_mapping"], "source_name": "platform__static", "source_description": "", "loader": "", "identifier": "pixel_action_mapping", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "static mapping table of pixel actions to product", "columns": {"product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "static.pixel_action_mapping", "created_at": 1700082693.8262775}, "source.yoda.platform__static.pixel_duration_mapping": {"database": null, "schema": "static", "name": "pixel_duration_mapping", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__static.pixel_duration_mapping", "fqn": ["yoda", "platform", "source", "platform__static", "pixel_duration_mapping"], "source_name": "platform__static", "source_description": "", "loader": "", "identifier": "pixel_duration_mapping", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "static mapping table of duration seconds pixel object loading into groups", "columns": {"from_seconds": {"name": "from_seconds", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(4,2)"}, "to_seconds": {"name": "to_seconds", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(4,2)"}, "metric": {"name": "metric", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "static.pixel_duration_mapping", "created_at": 1700082693.8264644}, "source.yoda.platform__static.deprecated_packages": {"database": null, "schema": "static", "name": "deprecated_packages", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__static.deprecated_packages", "fqn": ["yoda", "platform", "source", "platform__static", "deprecated_packages"], "source_name": "platform__static", "source_description": "", "loader": "", "identifier": "deprecated_packages", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"dwh_created_at": {"name": "dwh_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_key": {"name": "plan_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_display_name": {"name": "plan_display_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_description": {"name": "plan_description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_plan_id": {"name": "old_plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_id": {"name": "category_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms_annual": {"name": "is_sms_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms_ss": {"name": "is_sms_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms_free": {"name": "is_sms_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sms": {"name": "is_sms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_reviews_annual": {"name": "is_reviews_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_reviews_ss": {"name": "is_reviews_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_reviews_free": {"name": "is_reviews_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_reviews": {"name": "is_reviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_vms_annual": {"name": "is_vms_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_vms_ss": {"name": "is_vms_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_vms_free": {"name": "is_vms_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_vms": {"name": "is_vms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty_annual": {"name": "is_loyalty_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty_ss": {"name": "is_loyalty_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty_free": {"name": "is_loyalty_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_loyalty": {"name": "is_loyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_insights_annual": {"name": "is_insights_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_insights_ss": {"name": "is_insights_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_insights_free": {"name": "is_insights_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_insights": {"name": "is_insights", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_subscriptions_annual": {"name": "is_subscriptions_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_subscriptions_ss": {"name": "is_subscriptions_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_subscriptions_free": {"name": "is_subscriptions_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_subscriptions": {"name": "is_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_annual": {"name": "is_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_growth": {"name": "is_growth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_premium": {"name": "is_premium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ss": {"name": "is_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_free": {"name": "is_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_legacy": {"name": "is_legacy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_prime": {"name": "is_prime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "full_tags": {"name": "full_tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "static.deprecated_packages", "created_at": 1700082693.8267667}, "source.yoda.platform__static.sms_loyalty_synergy_mapping": {"database": null, "schema": "static", "name": "sms_loyalty_synergy_mapping", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__static.sms_loyalty_synergy_mapping", "fqn": ["yoda", "platform", "source", "platform__static", "sms_loyalty_synergy_mapping"], "source_name": "platform__static", "source_description": "", "loader": "", "identifier": "sms_loyalty_synergy_mapping", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"synergy_category_name": {"name": "synergy_category_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "synergy_name": {"name": "synergy_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_value": {"name": "source_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_column_name": {"name": "source_column_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "static.sms_loyalty_synergy_mapping", "created_at": 1700082693.8269563}, "source.yoda.platform__static.pixel_os_family_mobile_mapping": {"database": null, "schema": "static", "name": "pixel_os_family_mobile_mapping", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__static.pixel_os_family_mobile_mapping", "fqn": ["yoda", "platform", "source", "platform__static", "pixel_os_family_mobile_mapping"], "source_name": "platform__static", "source_description": "", "loader": "", "identifier": "pixel_os_family_mobile_mapping", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"os_family_name": {"name": "os_family_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "static.pixel_os_family_mobile_mapping", "created_at": 1700082693.8271985}, "source.yoda.platform__static.phone_code_country_mapping": {"database": null, "schema": "static", "name": "phone_code_country_mapping", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__static.phone_code_country_mapping", "fqn": ["yoda", "platform", "source", "platform__static", "phone_code_country_mapping"], "source_name": "platform__static", "source_description": "", "loader": "", "identifier": "phone_code_country_mapping", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"phone_code": {"name": "phone_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_name": {"name": "country_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "area_code": {"name": "area_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iso_country_code": {"name": "iso_country_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "region_name": {"name": "region_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "static.phone_code_country_mapping", "created_at": 1700082693.8274007}, "source.yoda.platform__static.saas_store_plan_history": {"database": null, "schema": "static", "name": "saas_store_plan_history", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__static.saas_store_plan_history", "fqn": ["yoda", "platform", "source", "platform__static", "saas_store_plan_history"], "source_name": "platform__static", "source_description": "", "loader": "", "identifier": "saas_store_plan_history", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"from_date": {"name": "from_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "to_date": {"name": "to_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_id": {"name": "plan_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "product_name": {"name": "product_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_sales_attributed": {"name": "is_sales_attributed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_core_plan": {"name": "is_core_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_annual": {"name": "is_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_ss": {"name": "is_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_free": {"name": "is_free", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "static.saas_store_plan_history", "created_at": 1700082693.827665}, "source.yoda.platform__static.subscriptions_contract_history": {"database": null, "schema": "static", "name": "subscriptions_contract_history", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__static.subscriptions_contract_history", "fqn": ["yoda", "platform", "source", "platform__static", "subscriptions_contract_history"], "source_name": "platform__static", "source_description": "", "loader": "", "identifier": "subscriptions_contract_history", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"from_time": {"name": "from_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "to_time": {"name": "to_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_id": {"name": "contract_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status_id": {"name": "status_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status_name": {"name": "status_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status_started_at": {"name": "status_started_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "delivery_frequency_interval": {"name": "delivery_frequency_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_frequency_interval_count": {"name": "delivery_frequency_interval_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_frequency_interval_name": {"name": "delivery_frequency_interval_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_frequency_interval": {"name": "billing_frequency_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_frequency_interval_count": {"name": "billing_frequency_interval_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_frequency_interval_name": {"name": "billing_frequency_interval_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_migrated_contract": {"name": "is_migrated_contract", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "is_prepaid": {"name": "is_prepaid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "static.subscriptions_contract_history", "created_at": 1700082693.8278768}, "source.yoda.platform__pixel.onsite_v2": {"database": null, "schema": "pixel", "name": "onsite_v2", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__pixel.onsite_v2", "fqn": ["yoda", "platform", "source", "platform__pixel", "onsite_v2"], "source_name": "platform__pixel", "source_description": "", "loader": "", "identifier": "onsite_v2", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hour": {"name": "hour", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "br_colordepth": {"name": "br_colordepth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_cookies": {"name": "br_cookies", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_family": {"name": "br_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_features_director": {"name": "br_features_director", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_flash": {"name": "br_features_flash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_gears": {"name": "br_features_gears", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_java": {"name": "br_features_java", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_pdf": {"name": "br_features_pdf", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_quicktime": {"name": "br_features_quicktime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_realplayer": {"name": "br_features_realplayer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_silverlight": {"name": "br_features_silverlight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_windowsmedia": {"name": "br_features_windowsmedia", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_lang": {"name": "br_lang", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_major": {"name": "br_major", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_minor": {"name": "br_minor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_viewheight": {"name": "br_viewheight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_viewwidth": {"name": "br_viewwidth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_day": {"name": "collector_day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_epoch": {"name": "collector_epoch", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_month": {"name": "collector_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_year": {"name": "collector_year", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_family": {"name": "device_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_charset": {"name": "doc_charset", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_height": {"name": "doc_height", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "doc_width": {"name": "doc_width", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_sessionidx": {"name": "domain_sessionidx", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dvce_screenheight": {"name": "dvce_screenheight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_screenwidth": {"name": "dvce_screenwidth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_tstamp": {"name": "dvce_tstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_vendor": {"name": "event_vendor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event": {"name": "event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_city": {"name": "geo_city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_country": {"name": "geo_country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_latitude": {"name": "geo_latitude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_longitude": {"name": "geo_longitude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_region": {"name": "geo_region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_zipcode": {"name": "geo_zipcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_campaign": {"name": "mkt_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_content": {"name": "mkt_content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_medium": {"name": "mkt_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_source": {"name": "mkt_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_term": {"name": "mkt_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_family": {"name": "os_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_major": {"name": "os_major", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_minor": {"name": "os_minor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_timezone": {"name": "os_timezone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlfragment": {"name": "page_urlfragment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlhost": {"name": "page_urlhost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlpath": {"name": "page_urlpath", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlport": {"name": "page_urlport", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_urlquery": {"name": "page_urlquery", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlscheme": {"name": "page_urlscheme", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pp_xoffset_max": {"name": "pp_xoffset_max", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_xoffset_min": {"name": "pp_xoffset_min", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_max": {"name": "pp_yoffset_max", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pp_yoffset_min": {"name": "pp_yoffset_min", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_medium": {"name": "refr_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_source": {"name": "refr_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_term": {"name": "refr_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlfragment": {"name": "refr_urlfragment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlhost": {"name": "refr_urlhost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlpath": {"name": "refr_urlpath", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlport": {"name": "refr_urlport", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_urlquery": {"name": "refr_urlquery", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlscheme": {"name": "refr_urlscheme", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_page_sku": {"name": "se_page_sku", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_testing_groups": {"name": "se_testing_groups", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_value": {"name": "se_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_currency": {"name": "tr_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_orderid": {"name": "tr_orderid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tr_total": {"name": "tr_total", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "txn_id": {"name": "txn_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_fingerprint": {"name": "user_fingerprint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useragent": {"name": "useragent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_collector": {"name": "v_collector", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_etl": {"name": "v_etl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_tracker": {"name": "v_tracker", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "y_fingerprint": {"name": "y_fingerprint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "pixel.onsite_v2", "created_at": 1700082693.8283975}, "source.yoda.platform__pixel.onsite_v3": {"database": null, "schema": "pixel", "name": "onsite_v3", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__pixel.onsite_v3", "fqn": ["yoda", "platform", "source", "platform__pixel", "onsite_v3"], "source_name": "platform__pixel", "source_description": "", "loader": "", "identifier": "onsite_v3", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hour": {"name": "hour", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "br_colordepth": {"name": "br_colordepth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_cookies": {"name": "br_cookies", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_family": {"name": "br_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_features_director": {"name": "br_features_director", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_flash": {"name": "br_features_flash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_gears": {"name": "br_features_gears", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_java": {"name": "br_features_java", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_pdf": {"name": "br_features_pdf", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_quicktime": {"name": "br_features_quicktime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_realplayer": {"name": "br_features_realplayer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_silverlight": {"name": "br_features_silverlight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_features_windowsmedia": {"name": "br_features_windowsmedia", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_lang": {"name": "br_lang", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_major": {"name": "br_major", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_minor": {"name": "br_minor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "br_viewheight": {"name": "br_viewheight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "br_viewwidth": {"name": "br_viewwidth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_day": {"name": "collector_day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_epoch": {"name": "collector_epoch", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "collector_month": {"name": "collector_month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_tstamp": {"name": "collector_tstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collector_year": {"name": "collector_year", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "device_family": {"name": "device_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_charset": {"name": "doc_charset", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "doc_height": {"name": "doc_height", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "doc_width": {"name": "doc_width", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_sessionidx": {"name": "domain_sessionidx", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "domain_userid": {"name": "domain_userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dvce_screenheight": {"name": "dvce_screenheight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_screenwidth": {"name": "dvce_screenwidth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dvce_tstamp": {"name": "dvce_tstamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_vendor": {"name": "event_vendor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event": {"name": "event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_city": {"name": "geo_city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_country": {"name": "geo_country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_latitude": {"name": "geo_latitude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_longitude": {"name": "geo_longitude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "geo_region": {"name": "geo_region", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "geo_zipcode": {"name": "geo_zipcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_campaign": {"name": "mkt_campaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_content": {"name": "mkt_content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_medium": {"name": "mkt_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_source": {"name": "mkt_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mkt_term": {"name": "mkt_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_family": {"name": "os_family", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_major": {"name": "os_major", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_minor": {"name": "os_minor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os_timezone": {"name": "os_timezone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlfragment": {"name": "page_urlfragment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlhost": {"name": "page_urlhost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlpath": {"name": "page_urlpath", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlport": {"name": "page_urlport", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "page_urlquery": {"name": "page_urlquery", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_urlscheme": {"name": "page_urlscheme", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_medium": {"name": "refr_medium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_source": {"name": "refr_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_term": {"name": "refr_term", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlfragment": {"name": "refr_urlfragment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlhost": {"name": "refr_urlhost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlpath": {"name": "refr_urlpath", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlport": {"name": "refr_urlport", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "refr_urlquery": {"name": "refr_urlquery", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "refr_urlscheme": {"name": "refr_urlscheme", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_action": {"name": "se_action", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_category": {"name": "se_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_label": {"name": "se_label", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_property": {"name": "se_property", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "se_value": {"name": "se_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "txn_id": {"name": "txn_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_fingerprint": {"name": "user_fingerprint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useragent": {"name": "useragent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_collector": {"name": "v_collector", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_etl": {"name": "v_etl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "v_tracker": {"name": "v_tracker", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "y_fingerprint": {"name": "y_fingerprint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "pixel.onsite_v3", "created_at": 1700082693.8288484}, "source.yoda.platform__billing.subscription_providers": {"database": null, "schema": "billing", "name": "subscription_providers", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.subscription_providers", "fqn": ["yoda", "platform", "source", "platform__billing", "subscription_providers"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "subscription_providers", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provider_type_id": {"name": "provider_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "category_name": {"name": "category_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_status_id": {"name": "subscription_status_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_subscription_metadata": {"name": "external_subscription_metadata", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted_at": {"name": "deleted_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.subscription_providers", "created_at": 1700082693.829067}, "source.yoda.platform__billing.usages": {"database": null, "schema": "billing", "name": "usages", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.usages", "fqn": ["yoda", "platform", "source", "platform__billing", "usages"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "usages", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_name": {"name": "metric_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_name": {"name": "package_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "units": {"name": "units", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usage_external_id": {"name": "usage_external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "backfill": {"name": "backfill", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_pending_usage_id": {"name": "subscription_pending_usage_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.usages", "created_at": 1700082693.8293474}, "source.yoda.platform__billing.usages_history": {"database": null, "schema": "billing", "name": "usages_history", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.usages_history", "fqn": ["yoda", "platform", "source", "platform__billing", "usages_history"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "usages_history", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_name": {"name": "metric_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_name": {"name": "package_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "units": {"name": "units", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usage_external_id": {"name": "usage_external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "backfill": {"name": "backfill", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_pending_usage_id": {"name": "subscription_pending_usage_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_deleted": {"name": "is_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.usages_history", "created_at": 1700082693.829568}, "source.yoda.platform__billing.usages_tiers_settings": {"database": null, "schema": "billing", "name": "usages_tiers_settings", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.usages_tiers_settings", "fqn": ["yoda", "platform", "source", "platform__billing", "usages_tiers_settings"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "usages_tiers_settings", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_usages_setting_id": {"name": "package_usages_setting_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "min_limit": {"name": "min_limit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "max_limit": {"name": "max_limit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "per_unit_price": {"name": "per_unit_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.usages_tiers_settings", "created_at": 1700082693.8297668}, "source.yoda.platform__billing.subscription_statuses": {"database": null, "schema": "billing", "name": "subscription_statuses", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.subscription_statuses", "fqn": ["yoda", "platform", "source", "platform__billing", "subscription_statuses"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "subscription_statuses", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.subscription_statuses", "created_at": 1700082693.8299518}, "source.yoda.platform__billing.subscription_usages_settings": {"database": null, "schema": "billing", "name": "subscription_usages_settings", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.subscription_usages_settings", "fqn": ["yoda", "platform", "source", "platform__billing", "subscription_usages_settings"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "subscription_usages_settings", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_provider_id": {"name": "subscription_provider_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overages_cap": {"name": "overages_cap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "metric_name": {"name": "metric_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.subscription_usages_settings", "created_at": 1700082693.8301868}, "source.yoda.platform__billing.subscription_pending_usages": {"database": null, "schema": "billing", "name": "subscription_pending_usages", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.subscription_pending_usages", "fqn": ["yoda", "platform", "source", "platform__billing", "subscription_pending_usages"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "subscription_pending_usages", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "usages_count": {"name": "usages_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_provider_id": {"name": "subscription_provider_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "package_usages_setting_id": {"name": "package_usages_setting_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "process_started_at": {"name": "process_started_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "process_completed_at": {"name": "process_completed_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "provider_charge_id": {"name": "provider_charge_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "uuid": {"name": "uuid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_usages": {"name": "free_usages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "paid_usages": {"name": "paid_usages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "exceeded_usages": {"name": "exceeded_usages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "paid_amount": {"name": "paid_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.subscription_pending_usages", "created_at": 1700082693.83042}, "source.yoda.platform__billing.subscription_cycle_usages": {"database": null, "schema": "billing", "name": "subscription_cycle_usages", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.subscription_cycle_usages", "fqn": ["yoda", "platform", "source", "platform__billing", "subscription_cycle_usages"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "subscription_cycle_usages", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_provider_id": {"name": "subscription_provider_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_cycle_date": {"name": "billing_cycle_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "usages_count": {"name": "usages_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "overages_cap": {"name": "overages_cap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_usages_setting_id": {"name": "package_usages_setting_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "closed_at": {"name": "closed_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "carried_paid_usages": {"name": "carried_paid_usages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.subscription_cycle_usages", "created_at": 1700082693.8306937}, "source.yoda.platform__billing.provider_types": {"database": null, "schema": "billing", "name": "provider_types", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.provider_types", "fqn": ["yoda", "platform", "source", "platform__billing", "provider_types"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "provider_types", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.provider_types", "created_at": 1700082693.8308947}, "source.yoda.platform__billing.plan_settings": {"database": null, "schema": "billing", "name": "plan_settings", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.plan_settings", "fqn": ["yoda", "platform", "source", "platform__billing", "plan_settings"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "plan_settings", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "setting_type": {"name": "setting_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.plan_settings", "created_at": 1700082693.831087}, "source.yoda.platform__billing.package_usages_settings": {"database": null, "schema": "billing", "name": "package_usages_settings", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.package_usages_settings", "fqn": ["yoda", "platform", "source", "platform__billing", "package_usages_settings"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "package_usages_settings", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "provider_type_id": {"name": "provider_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "package_name": {"name": "package_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metric_name": {"name": "metric_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "per_unit_price": {"name": "per_unit_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "limit": {"name": "limit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "term_text": {"name": "term_text", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.package_usages_settings", "created_at": 1700082693.8313568}, "source.yoda.platform__billing.package_provider_settings": {"database": null, "schema": "billing", "name": "package_provider_settings", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.package_provider_settings", "fqn": ["yoda", "platform", "source", "platform__billing", "package_provider_settings"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "package_provider_settings", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "package_name": {"name": "package_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provider_type_id": {"name": "provider_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "setting_type": {"name": "setting_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.package_provider_settings", "created_at": 1700082693.8315601}, "source.yoda.platform__billing.billing_audits": {"database": null, "schema": "billing", "name": "billing_audits", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__billing.billing_audits", "fqn": ["yoda", "platform", "source", "platform__billing", "billing_audits"], "source_name": "platform__billing", "source_description": "", "loader": "", "identifier": "billing_audits", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category_name": {"name": "category_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_provider_id": {"name": "subscription_provider_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "metadata": {"name": "metadata", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "billing.billing_audits", "created_at": 1700082693.8317642}, "source.yoda.platform__data_science.similar_stores": {"database": null, "schema": "data_science", "name": "similar_stores", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__data_science.similar_stores", "fqn": ["yoda", "platform", "source", "platform__data_science", "similar_stores"], "source_name": "platform__data_science", "source_description": "", "loader": "", "identifier": "similar_stores", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cluster_id": {"name": "cluster_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "domain": {"name": "domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "manual_category": {"name": "manual_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "predicted_category": {"name": "predicted_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "similar_stores": {"name": "similar_stores", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "store_embedding": {"name": "store_embedding", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "data_science.similar_stores", "created_at": 1700082693.8319697}, "source.yoda.platform__data_science.customer_dataset_reduced": {"database": null, "schema": "data_science", "name": "customer_dataset_reduced", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__data_science.customer_dataset_reduced", "fqn": ["yoda", "platform", "source", "platform__data_science", "customer_dataset_reduced"], "source_name": "platform__data_science", "source_description": "", "loader": "", "identifier": "customer_dataset_reduced", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"profileId": {"name": "profileId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeId": {"name": "storeId", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lists": {"name": "lists", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "mergedWith": {"name": "mergedWith", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "systemProperties": {"name": "systemProperties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct>>"}, "properties": {"name": "properties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct,shipping:array>,birthdays:array,createdAt:timestamp,defaultCurrency:string,defaultLanguage:string,email:string,externalCreatedAt:timestamp,externalId:string,externalStatus:string,firstName:string,lastName:string,gender:string,phone:string,platform:string,platformCreatedAt:timestamp,platformCustomerId:string,platformId:string,platformName:string,platformStatus:string,referredByCustomer:boolean,status:string,updatedAt:timestamp,storeId:string,age:bigint,emailSubscriptionSources:array>,smsSubscriptionSources:array>,sms:struct>,initialSource:struct,lastConverted:timestamp,lastEngaged:timestamp,lastSubscribed:timestamp,lastUnsubscribed:timestamp,lists:array>,replies:array>,subscriptionSources:array>,subscriptions:array>,isDeliverable:boolean>,emailMarketing:struct>,flows:array>,lastBounced:timestamp,lastConverted:timestamp,lastDelivered:timestamp,lastDropped:timestamp,lastEngaged:timestamp,lastHardBounced:timestamp,lastOpened:timestamp,lastPromotionalSent:timestamp,lastSent:timestamp,lastSoftBounced:timestamp,lastSpam:timestamp,lastSubscribed:timestamp,lastUnsubscribed:timestamp,lists:array>,subscriptionSources:array>>,emailSuppressed:struct,loyalty:struct>"}, "orderUpdated": {"name": "orderUpdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map,billingAddress:struct>>>>"}, "smsSubscribed": {"name": "smsSubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map>>>"}, "smsPartOfCampaign": {"name": "smsPartOfCampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map>>>"}, "smsEngaged": {"name": "smsEngaged", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map>>>"}, "smsUnsubscribed": {"name": "smsUnsubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map>>>"}, "smsConverted": {"name": "smsConverted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map>>>"}, "reviewCreated": {"name": "reviewCreated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map,content:string,reviewId:bigint,productId:bigint>>>>"}, "loyaltyCampaignStatusChanged": {"name": "loyaltyCampaignStatusChanged", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map>>>>"}, "loyaltyPointsChanged": {"name": "loyaltyPointsChanged", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map>>>"}, "loyaltyTierChanged": {"name": "loyaltyTierChanged", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map>>>"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "data_science.customer_dataset_reduced", "created_at": 1700082693.8322496}, "source.yoda.platform__data_science.churn_prediction": {"database": null, "schema": "data_science", "name": "churn_prediction", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__data_science.churn_prediction", "fqn": ["yoda", "platform", "source", "platform__data_science", "churn_prediction"], "source_name": "platform__data_science", "source_description": "", "loader": "", "identifier": "churn_prediction", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "likely_to_purchase": {"name": "likely_to_purchase", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "likely_to_purchase_rank": {"name": "likely_to_purchase_rank", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "churn_risk": {"name": "churn_risk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "churn_risk_rank": {"name": "churn_risk_rank", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "data_science.churn_prediction", "created_at": 1700082693.832443}, "source.yoda.platform__segment.app_install_completed": {"database": null, "schema": "segment", "name": "app_install_completed", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__segment.app_install_completed", "fqn": ["yoda", "platform", "source", "platform__segment", "app_install_completed"], "source_name": "platform__segment", "source_description": "", "loader": "", "identifier": "app_install_completed", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isht": {"name": "isht", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actioncontext": {"name": "actioncontext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isadditionalaccount": {"name": "isadditionalaccount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "productintent": {"name": "productintent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "context": {"name": "context", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flowtype": {"name": "flowtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "segment.app_install_completed", "created_at": 1700082693.8327906}, "source.yoda.platform__segment.app_uninstalled": {"database": null, "schema": "segment", "name": "app_uninstalled", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__segment.app_uninstalled", "fqn": ["yoda", "platform", "source", "platform__segment", "app_uninstalled"], "source_name": "platform__segment", "source_description": "", "loader": "", "identifier": "app_uninstalled", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isht": {"name": "isht", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountappkey": {"name": "accountappkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appdevelopername": {"name": "appdevelopername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appid": {"name": "appid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appname": {"name": "appname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "segment.app_uninstalled", "created_at": 1700082693.8342233}, "source.yoda.platform__segment.activation_step": {"database": null, "schema": "segment", "name": "activation_step", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__segment.activation_step", "fqn": ["yoda", "platform", "source", "platform__segment", "activation_step"], "source_name": "platform__segment", "source_description": "", "loader": "", "identifier": "activation_step", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stepname": {"name": "stepname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "stepnum": {"name": "stepnum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isskipped": {"name": "isskipped", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofinstagramphotos": {"name": "numofinstagramphotos", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofmanualphotos": {"name": "numofmanualphotos", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofreviewsphotos": {"name": "numofreviewsphotos", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numoftotalphotos": {"name": "numoftotalphotos", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isbuttonupdated": {"name": "isbuttonupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isspacingupdated": {"name": "isspacingupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "layouttype": {"name": "layouttype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numofrowitems": {"name": "numofrowitems", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "objectposition": {"name": "objectposition", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iscodecopy": {"name": "iscodecopy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isscriptcopy": {"name": "isscriptcopy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "placementtype": {"name": "placementtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os20": {"name": "os20", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isdefaultupdated": {"name": "isdefaultupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isoptionsamountchanged": {"name": "isoptionsamountchanged", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "optionnum": {"name": "optionnum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sfchatused": {"name": "sfchatused", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ismailpreviewed": {"name": "ismailpreviewed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issenderemailchanged": {"name": "issenderemailchanged", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issendernamechanged": {"name": "issendernamechanged", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "paymentfailedenabled": {"name": "paymentfailedenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptioncanceledenabled": {"name": "subscriptioncanceledenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionpurchasedenabled": {"name": "subscriptionpurchasedenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "iscolorupdated": {"name": "iscolorupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isfontadded": {"name": "isfontadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isfontupdated": {"name": "isfontupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isproductupdated": {"name": "isproductupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "noresultsareshown": {"name": "noresultsareshown", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ispreviewstore": {"name": "ispreviewstore", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widgetlayout": {"name": "widgetlayout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "selectedindustry": {"name": "selectedindustry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "selectedtemplate": {"name": "selectedtemplate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isautopublishenabled": {"name": "isautopublishenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isdesignupdated": {"name": "isdesignupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isbodyupdated": {"name": "isbodyupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isdomainupdated": {"name": "isdomainupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isenabledmap": {"name": "isenabledmap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isretroactivesend": {"name": "isretroactivesend", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issubjectupdated": {"name": "issubjectupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofdays": {"name": "numofdays", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "endscenario": {"name": "endscenario", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isabandonedcard": {"name": "isabandonedcard", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "iscustomerwinback": {"name": "iscustomerwinback", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ispostpurchaseupsell": {"name": "ispostpurchaseupsell", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isshopify2": {"name": "isshopify2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auth0userid": {"name": "auth0userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isabandonedcart": {"name": "isabandonedcart", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isdiscountincluded": {"name": "isdiscountincluded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "iswidgetv3": {"name": "iswidgetv3", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ismultipleproducts": {"name": "ismultipleproducts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issecondaryemailadded": {"name": "issecondaryemailadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storehasklaviyopopup": {"name": "storehasklaviyopopup", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailactivateenabledsms": {"name": "subscriptionsemailactivateenabledsms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailactivateenabled": {"name": "subscriptionsemailactivateenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailbillingfailedenabledsms": {"name": "subscriptionsemailbillingfailedenabledsms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailbillingfailedenabled": {"name": "subscriptionsemailbillingfailedenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailcancelledenabledsms": {"name": "subscriptionsemailcancelledenabledsms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailcancelledenabled": {"name": "subscriptionsemailcancelledenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailmanagementenabledsms": {"name": "subscriptionsemailmanagementenabledsms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailmanagementenabled": {"name": "subscriptionsemailmanagementenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailupcomingbillingenabledsms": {"name": "subscriptionsemailupcomingbillingenabledsms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionsemailupcomingbillingenabled": {"name": "subscriptionsemailupcomingbillingenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "appstate": {"name": "appstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "redemptionreminder": {"name": "redemptionreminder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "rewardreceived": {"name": "rewardreceived", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "programstrategy": {"name": "programstrategy", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rewardspackage": {"name": "rewardspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newfont": {"name": "newfont", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newcolor": {"name": "newcolor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "onboardingversion": {"name": "onboardingversion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widgetversion": {"name": "widgetversion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "templatetype": {"name": "templatetype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "islogoadded": {"name": "islogoadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isfromnameupdated": {"name": "isfromnameupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "arrnumofdays": {"name": "arrnumofdays", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isenabledarr": {"name": "isenabledarr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "retroactivesentnumofdays": {"name": "retroactivesentnumofdays", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "autoinstallavailable": {"name": "autoinstallavailable", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "installedplatformname": {"name": "installedplatformname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "addedstarrating": {"name": "addedstarrating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isautoinstalled": {"name": "isautoinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ismainwidgetautoinstalledsuccessfully": {"name": "ismainwidgetautoinstalledsuccessfully", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isstarratingautoinstalledsuccessfully": {"name": "isstarratingautoinstalledsuccessfully", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sentemailinstructions": {"name": "sentemailinstructions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ispointsreminder": {"name": "ispointsreminder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isproductreview": {"name": "isproductreview", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isredemptionreminder": {"name": "isredemptionreminder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issubscriptionconfirmation": {"name": "issubscriptionconfirmation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issubscriptionrenewalreminder": {"name": "issubscriptionrenewalreminder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "autoinstallmainwidgetavailable": {"name": "autoinstallmainwidgetavailable", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "autoinstallstarratingavailable": {"name": "autoinstallstarratingavailable", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "segment.activation_step", "created_at": 1700082693.8349874}, "source.yoda.platform__segment.onboarding": {"database": null, "schema": "segment", "name": "onboarding", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__segment.onboarding", "fqn": ["yoda", "platform", "source", "platform__segment", "onboarding"], "source_name": "platform__segment", "source_description": "", "loader": "", "identifier": "onboarding", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_rrmonthlylimit": {"name": "analytics_data_rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_rrssentinbillingcycle": {"name": "analytics_data_rrssentinbillingcycle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_accountid": {"name": "analytics_data_accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_adminname": {"name": "analytics_data_adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_appkey": {"name": "analytics_data_appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_billingprovider": {"name": "analytics_data_billingprovider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_createdat": {"name": "analytics_data_createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_email": {"name": "analytics_data_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_groupid": {"name": "analytics_data_groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_intercomuserhash": {"name": "analytics_data_intercomuserhash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_isautopublishenabled": {"name": "analytics_data_isautopublishenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledcoupons": {"name": "analytics_data_isenabledcoupons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledcustomreviews": {"name": "analytics_data_isenabledcustomreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledgsr": {"name": "analytics_data_isenabledgsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledmap": {"name": "analytics_data_isenabledmap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledpla": {"name": "analytics_data_isenabledpla", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledpromotedproductsemail": {"name": "analytics_data_isenabledpromotedproductsemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledpromotedproductswidget": {"name": "analytics_data_isenabledpromotedproductswidget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledqna": {"name": "analytics_data_isenabledqna", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isenabledrichsnippets": {"name": "analytics_data_isenabledrichsnippets", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasbadge": {"name": "analytics_data_ishasbadge", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishascomments": {"name": "analytics_data_ishascomments", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasconverttositereview": {"name": "analytics_data_ishasconverttositereview", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishascoupons": {"name": "analytics_data_ishascoupons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishascsseditor": {"name": "analytics_data_ishascsseditor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishascustomreviews": {"name": "analytics_data_ishascustomreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasdedicatedpage": {"name": "analytics_data_ishasdedicatedpage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasgsr": {"name": "analytics_data_ishasgsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasnewmainwidgetlayout": {"name": "analytics_data_ishasnewmainwidgetlayout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishaspla": {"name": "analytics_data_ishaspla", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishaspromotedproductsemail": {"name": "analytics_data_ishaspromotedproductsemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishaspromotedproductswidget": {"name": "analytics_data_ishaspromotedproductswidget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasqna": {"name": "analytics_data_ishasqna", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasreviewscarousel": {"name": "analytics_data_ishasreviewscarousel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasreviewstab": {"name": "analytics_data_ishasreviewstab", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasrichsnippets": {"name": "analytics_data_ishasrichsnippets", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassentmai": {"name": "analytics_data_ishassentmai", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassentmas": {"name": "analytics_data_ishassentmas", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassentmap": {"name": "analytics_data_ishassentmap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassentsitereminder": {"name": "analytics_data_ishassentsitereminder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassenttpr": {"name": "analytics_data_ishassenttpr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassenttsr": {"name": "analytics_data_ishassenttsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasshoppableinstagram": {"name": "analytics_data_ishasshoppableinstagram", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishassocialpush": {"name": "analytics_data_ishassocialpush", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishasstarrating": {"name": "analytics_data_ishasstarrating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishastpr": {"name": "analytics_data_ishastpr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_ishastsr": {"name": "analytics_data_ishastsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isinvalidfacebooktoken": {"name": "analytics_data_isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_ismapcustomfieldsenabled": {"name": "analytics_data_ismapcustomfieldsenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isnewslettersubscribed": {"name": "analytics_data_isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isreceivesentimentnotification": {"name": "analytics_data_isreceivesentimentnotification", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isreviewswidgetinstalled": {"name": "analytics_data_isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_issystemnotificationssubscribed": {"name": "analytics_data_issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isuserscountlimitreached": {"name": "analytics_data_isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_isusingpackagesservice": {"name": "analytics_data_isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "analytics_data_name": {"name": "analytics_data_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_packagecategories": {"name": "analytics_data_packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_package": {"name": "analytics_data_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_planname": {"name": "analytics_data_planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_platform": {"name": "analytics_data_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_role": {"name": "analytics_data_role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signupcountry": {"name": "analytics_data_signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signuputmcampaign": {"name": "analytics_data_signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signuputmmedium": {"name": "analytics_data_signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signuputmsource": {"name": "analytics_data_signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_storecount": {"name": "analytics_data_storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_traits_email": {"name": "analytics_data_traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_traits_name": {"name": "analytics_data_traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_traits_plan": {"name": "analytics_data_traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_userid": {"name": "analytics_data_userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_website": {"name": "analytics_data_website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_yotpoip": {"name": "analytics_data_yotpoip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_yotpoproductscorev2": {"name": "analytics_data_yotpoproductscorev2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "category": {"name": "category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phasename": {"name": "phasename", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phase": {"name": "phase", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_daysinvalidfacebooktoken": {"name": "analytics_data_daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_isinvalidfacebooktokendate": {"name": "analytics_data_isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signupmonthlyorderscount": {"name": "analytics_data_signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_chargeid": {"name": "analytics_data_chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_chargeprice": {"name": "analytics_data_chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_nextchargedate": {"name": "analytics_data_nextchargedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_subscriptionstate": {"name": "analytics_data_subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_chargifybalance": {"name": "analytics_data_chargifybalance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_chargifyrevenue": {"name": "analytics_data_chargifyrevenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_daysindunning": {"name": "analytics_data_daysindunning", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_daystorenewal": {"name": "analytics_data_daystorenewal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_isinvalidpinteresttoken": {"name": "analytics_data_isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_isinvalidtwittertoken": {"name": "analytics_data_isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_lastconversionordertime": {"name": "analytics_data_lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_paysvia": {"name": "analytics_data_paysvia", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_pixelversion": {"name": "analytics_data_pixelversion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_recurringpaymentinterval": {"name": "analytics_data_recurringpaymentinterval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_renewaldate": {"name": "analytics_data_renewaldate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagecategory": {"name": "pagecategory", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_phone": {"name": "analytics_data_phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_signupphone": {"name": "analytics_data_signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_daysinvalidpinteresttoken": {"name": "analytics_data_daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_isinvalidpinteresttokendate": {"name": "analytics_data_isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_packageextensions": {"name": "analytics_data_packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_yotpoproductscore": {"name": "analytics_data_yotpoproductscore", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_pendingrrs": {"name": "analytics_data_pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_creditcardtype": {"name": "analytics_data_creditcardtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_nameoncreditcard": {"name": "analytics_data_nameoncreditcard", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_creditcardlast4digits": {"name": "analytics_data_creditcardlast4digits", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_daysinvalidtwittertoken": {"name": "analytics_data_daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "analytics_data_isinvalidtwittertokendate": {"name": "analytics_data_isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_billingproviders": {"name": "analytics_data_billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value1": {"name": "value1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "value2": {"name": "value2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "value3": {"name": "value3", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "ctatext": {"name": "ctatext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isautopublishenabled": {"name": "isautopublishenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isbodyupdated": {"name": "isbodyupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledmap": {"name": "isenabledmap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isprimarycolorupdated": {"name": "isprimarycolorupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ispullpastordersenabled": {"name": "ispullpastordersenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issignatureupdated": {"name": "issignatureupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isstarscolorupdated": {"name": "isstarscolorupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issubjectupdated": {"name": "issubjectupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "iswidgetfontupdated": {"name": "iswidgetfontupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numberorders": {"name": "numberorders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isreferralsselected": {"name": "isreferralsselected", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "accountselectedpoints": {"name": "accountselectedpoints", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "birthdayselectedpoints": {"name": "birthdayselectedpoints", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "purchaseselectedpoints": {"name": "purchaseselectedpoints", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customerpoints": {"name": "customerpoints", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "frienddiscount": {"name": "frienddiscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "iscustomertabclicked": {"name": "iscustomertabclicked", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isfriendtabclicked": {"name": "isfriendtabclicked", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "numofpoints": {"name": "numofpoints", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issecondarycolorupdated": {"name": "issecondarycolorupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "istabpositionupdated": {"name": "istabpositionupdated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "analytics_data_storedomain": {"name": "analytics_data_storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctaname": {"name": "ctaname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iscopycode": {"name": "iscopycode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issendcode": {"name": "issendcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os20": {"name": "os20", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "segment.onboarding", "created_at": 1700082693.8358743}, "source.yoda.platform__segment.b2b": {"database": null, "schema": "segment", "name": "b2b", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__segment.b2b", "fqn": ["yoda", "platform", "source", "platform__segment", "b2b"], "source_name": "platform__segment", "source_description": "", "loader": "", "identifier": "b2b", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_first_time": {"name": "is_first_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "admin": {"name": "admin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "pagecategory": {"name": "pagecategory", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagetitle": {"name": "pagetitle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uiversion": {"name": "uiversion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctatype": {"name": "ctatype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "errortext": {"name": "errortext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "failedreviews": {"name": "failedreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "importedreviews": {"name": "importedreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phasename": {"name": "phasename", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iscompleted": {"name": "iscompleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "tabname": {"name": "tabname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numoftasksdone": {"name": "numoftasksdone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dashboardmetricname": {"name": "dashboardmetricname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dashboardmetricvalue": {"name": "dashboardmetricvalue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numberoftips": {"name": "numberoftips", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dashboardtipname": {"name": "dashboardtipname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth0userid": {"name": "auth0userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctacontext": {"name": "ctacontext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "segment.b2b", "created_at": 1700082693.836454}, "source.yoda.platform__segment.uninstalled_yotpo": {"database": null, "schema": "segment", "name": "uninstalled_yotpo", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__segment.uninstalled_yotpo", "fqn": ["yoda", "platform", "source", "platform__segment", "uninstalled_yotpo"], "source_name": "platform__segment", "source_description": "", "loader": "", "identifier": "uninstalled_yotpo", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "rrssentinbillingcycle": {"name": "rrssentinbillingcycle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingprovider": {"name": "billingprovider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "intercomuserhash": {"name": "intercomuserhash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isautopublishenabled": {"name": "isautopublishenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledcoupons": {"name": "isenabledcoupons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledcustomreviews": {"name": "isenabledcustomreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledgsr": {"name": "isenabledgsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledmap": {"name": "isenabledmap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpla": {"name": "isenabledpla", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpromotedproductsemail": {"name": "isenabledpromotedproductsemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledpromotedproductswidget": {"name": "isenabledpromotedproductswidget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledqna": {"name": "isenabledqna", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isenabledrichsnippets": {"name": "isenabledrichsnippets", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasbadge": {"name": "ishasbadge", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascomments": {"name": "ishascomments", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasconverttositereview": {"name": "ishasconverttositereview", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascoupons": {"name": "ishascoupons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascsseditor": {"name": "ishascsseditor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishascustomreviews": {"name": "ishascustomreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasdedicatedpage": {"name": "ishasdedicatedpage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasgsr": {"name": "ishasgsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasnewmainwidgetlayout": {"name": "ishasnewmainwidgetlayout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspla": {"name": "ishaspla", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspromotedproductsemail": {"name": "ishaspromotedproductsemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishaspromotedproductswidget": {"name": "ishaspromotedproductswidget", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasqna": {"name": "ishasqna", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasreviewscarousel": {"name": "ishasreviewscarousel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasreviewstab": {"name": "ishasreviewstab", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasrichsnippets": {"name": "ishasrichsnippets", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmai": {"name": "ishassentmai", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmas": {"name": "ishassentmas", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentmap": {"name": "ishassentmap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassentsitereminder": {"name": "ishassentsitereminder", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassenttpr": {"name": "ishassenttpr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassenttsr": {"name": "ishassenttsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasshoppableinstagram": {"name": "ishasshoppableinstagram", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishassocialpush": {"name": "ishassocialpush", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishasstarrating": {"name": "ishasstarrating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishastpr": {"name": "ishastpr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ishastsr": {"name": "ishastsr", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "ismapcustomfieldsenabled": {"name": "ismapcustomfieldsenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreceivesentimentnotification": {"name": "isreceivesentimentnotification", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uninstallsource": {"name": "uninstallsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoproductscorev2": {"name": "yotpoproductscorev2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "nextchargedate": {"name": "nextchargedate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pixelversion": {"name": "pixelversion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargifybalance": {"name": "chargifybalance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargifyrevenue": {"name": "chargifyrevenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "creditcardlast4digits": {"name": "creditcardlast4digits", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "creditcardtype": {"name": "creditcardtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysindunning": {"name": "daysindunning", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daystorenewal": {"name": "daystorenewal", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "nameoncreditcard": {"name": "nameoncreditcard", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paysvia": {"name": "paysvia", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recurringpaymentinterval": {"name": "recurringpaymentinterval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "renewaldate": {"name": "renewaldate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoproductscore": {"name": "yotpoproductscore", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "segment.uninstalled_yotpo", "created_at": 1700082693.8369722}, "source.yoda.platform__segment.account_created": {"database": null, "schema": "segment", "name": "account_created", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__segment.account_created", "fqn": ["yoda", "platform", "source", "platform__segment", "account_created"], "source_name": "platform__segment", "source_description": "", "loader": "", "identifier": "account_created", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "productintent": {"name": "productintent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planintent": {"name": "planintent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isfirstaccount": {"name": "isfirstaccount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "segment.account_created", "created_at": 1700082693.8374145}, "source.yoda.platform__segment.product_enabled": {"database": null, "schema": "segment", "name": "product_enabled", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__segment.product_enabled", "fqn": ["yoda", "platform", "source", "platform__segment", "product_enabled"], "source_name": "platform__segment", "source_description": "", "loader": "", "identifier": "product_enabled", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enablementlocation": {"name": "enablementlocation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enablementsource": {"name": "enablementsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isfirstproduct": {"name": "isfirstproduct", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackage": {"name": "newpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrerproduct": {"name": "referrerproduct", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referrercampaign": {"name": "referrercampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "segment.product_enabled", "created_at": 1700082693.8378325}, "source.yoda.platform__segment.popup_displayed": {"database": null, "schema": "segment", "name": "popup_displayed", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__segment.popup_displayed", "fqn": ["yoda", "platform", "source", "platform__segment", "popup_displayed"], "source_name": "platform__segment", "source_description": "", "loader": "", "identifier": "popup_displayed", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "admin": {"name": "admin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctalocation": {"name": "ctalocation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gallerytype": {"name": "gallerytype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "popupcontext": {"name": "popupcontext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "popupname": {"name": "popupname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uiversion": {"name": "uiversion", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "popuplocation": {"name": "popuplocation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "iserror": {"name": "iserror", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numoferrors": {"name": "numoferrors", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofformaterror": {"name": "numofformaterror", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofsizeerror": {"name": "numofsizeerror", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "os20": {"name": "os20", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "producturl": {"name": "producturl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "btncontext": {"name": "btncontext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "btnlocation": {"name": "btnlocation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "btnname": {"name": "btnname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "btntext": {"name": "btntext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company_name": {"name": "company_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "featurename": {"name": "featurename", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltyemail": {"name": "loyaltyemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "merchant_id": {"name": "merchant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pagecontext": {"name": "pagecontext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagename": {"name": "pagename", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagesubcontext": {"name": "pagesubcontext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_plan": {"name": "platform_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tabname": {"name": "tabname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "thirty_day_order_volume": {"name": "thirty_day_order_volume", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "thirty_day_revenue_cents": {"name": "thirty_day_revenue_cents", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "traits_package": {"name": "traits_package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_platform": {"name": "traits_platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actioncontext": {"name": "actioncontext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actionlocation": {"name": "actionlocation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "actiontype": {"name": "actiontype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctaname": {"name": "ctaname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctatext": {"name": "ctatext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ctatype": {"name": "ctatype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "eventtype": {"name": "eventtype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "layout": {"name": "layout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mobiletabposition": {"name": "mobiletabposition", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pagecategory": {"name": "pagecategory", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tabposition": {"name": "tabposition", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaigntype": {"name": "campaigntype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isenabled": {"name": "isenabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "istargeted": {"name": "istargeted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "count": {"name": "count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "field": {"name": "field", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reasons": {"name": "reasons", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "popupsubcontext": {"name": "popupsubcontext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth0userid": {"name": "auth0userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numofformaterrors": {"name": "numofformaterrors", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "numofsizeerrors": {"name": "numofsizeerrors", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "owner": {"name": "owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "installedplatformname": {"name": "installedplatformname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "segment.popup_displayed", "created_at": 1700082693.8384423}, "source.yoda.platform__segment.limit_reached": {"database": null, "schema": "segment", "name": "limit_reached", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__segment.limit_reached", "fqn": ["yoda", "platform", "source", "platform__segment", "limit_reached"], "source_name": "platform__segment", "source_description": "", "loader": "", "identifier": "limit_reached", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "actualcount": {"name": "actualcount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cap": {"name": "cap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gap": {"name": "gap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "limittype": {"name": "limittype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pctreached": {"name": "pctreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpoip": {"name": "yotpoip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isht": {"name": "isht", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "auth0userid": {"name": "auth0userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "segment.limit_reached", "created_at": 1700082693.8388956}, "source.yoda.platform__segment.file_exported": {"database": null, "schema": "segment", "name": "file_exported", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__segment.file_exported", "fqn": ["yoda", "platform", "source", "platform__segment", "file_exported"], "source_name": "platform__segment", "source_description": "", "loader": "", "identifier": "file_exported", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "session_id": {"name": "session_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exportcontext": {"name": "exportcontext", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "exportgroup": {"name": "exportgroup", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fileurl": {"name": "fileurl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "numofrows": {"name": "numofrows", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "totalrows": {"name": "totalrows", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "urldaystimeframe": {"name": "urldaystimeframe", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rrmonthlylimit": {"name": "rrmonthlylimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "accountid": {"name": "accountid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "adminname": {"name": "adminname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdat": {"name": "createdat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidfacebooktoken": {"name": "daysinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "expirationperiodindays": {"name": "expirationperiodindays", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktokendate": {"name": "isinvalidfacebooktokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidfacebooktoken": {"name": "isinvalidfacebooktoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertoken": {"name": "isinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isnewslettersubscribed": {"name": "isnewslettersubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviewswidgetinstalled": {"name": "isreviewswidgetinstalled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issystemnotificationssubscribed": {"name": "issystemnotificationssubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isuserscountlimitreached": {"name": "isuserscountlimitreached", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isusingpackagesservice": {"name": "isusingpackagesservice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pendingrrs": {"name": "pendingrrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "planname": {"name": "planname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupcountry": {"name": "signupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmcampaign": {"name": "signuputmcampaign", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storecount": {"name": "storecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_email": {"name": "traits_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_name": {"name": "traits_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "traits_plan": {"name": "traits_plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "website": {"name": "website", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidtwittertoken": {"name": "daysinvalidtwittertoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidtwittertokendate": {"name": "isinvalidtwittertokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packageextensions": {"name": "packageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "lastconversionordertime": {"name": "lastconversionordertime", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmsource": {"name": "signuputmsource", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signupphone": {"name": "signupphone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "signuputmmedium": {"name": "signuputmmedium", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingproviders": {"name": "billingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "signupmonthlyorderscount": {"name": "signupmonthlyorderscount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "daysinvalidpinteresttoken": {"name": "daysinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinvalidpinteresttokendate": {"name": "isinvalidpinteresttokendate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinvalidpinteresttoken": {"name": "isinvalidpinteresttoken", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "exportformat": {"name": "exportformat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeid": {"name": "chargeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscriptionstate": {"name": "subscriptionstate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "failreason": {"name": "failreason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isempty": {"name": "isempty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isschedule": {"name": "isschedule", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "owner": {"name": "owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reportname": {"name": "reportname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reporttype": {"name": "reporttype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "createdbyemail": {"name": "createdbyemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "recipientemail": {"name": "recipientemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "frequency": {"name": "frequency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reporttimeframe": {"name": "reporttimeframe", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reportweekday": {"name": "reportweekday", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reportmonthday": {"name": "reportmonthday", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_duplicated_2": {"name": "is_duplicated_2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth0userid": {"name": "auth0userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dategranularity": {"name": "dategranularity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "segment.file_exported", "created_at": 1700082693.8394282}, "source.yoda.platform__homescreen.synergies_crud": {"database": null, "schema": "homescreen", "name": "synergies_crud", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__homescreen.synergies_crud", "fqn": ["yoda", "platform", "source", "platform__homescreen", "synergies_crud"], "source_name": "platform__homescreen", "source_description": "", "loader": "", "identifier": "synergies_crud", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "op": {"name": "op", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "widget_id": {"name": "widget_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "homescreen.synergies_crud", "created_at": 1700082693.8396494}, "source.yoda.platform__homescreen.widgets": {"database": null, "schema": "homescreen", "name": "widgets", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__homescreen.widgets", "fqn": ["yoda", "platform", "source", "platform__homescreen", "widgets"], "source_name": "platform__homescreen", "source_description": "", "loader": "", "identifier": "widgets", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "product_line_id": {"name": "product_line_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "section_id": {"name": "section_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_line_section_id": {"name": "product_line_section_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "widget_key": {"name": "widget_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "homescreen.widgets", "created_at": 1700082693.8398533}, "source.yoda.platform__homescreen.sections": {"database": null, "schema": "homescreen", "name": "sections", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__homescreen.sections", "fqn": ["yoda", "platform", "source", "platform__homescreen", "sections"], "source_name": "platform__homescreen", "source_description": "", "loader": "", "identifier": "sections", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "homescreen.sections", "created_at": 1700082693.840051}, "source.yoda.platform__homescreen.widget_configurations": {"database": null, "schema": "homescreen", "name": "widget_configurations", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__homescreen.widget_configurations", "fqn": ["yoda", "platform", "source", "platform__homescreen", "widget_configurations"], "source_name": "platform__homescreen", "source_description": "", "loader": "", "identifier": "widget_configurations", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "widget_id": {"name": "widget_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "configuration_key": {"name": "configuration_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "homescreen.widget_configurations", "created_at": 1700082693.8403168}, "source.yoda.platform__singas.cdp_streaming_events": {"database": null, "schema": "singas", "name": "cdp_streaming_events", "resource_type": "source", "package_name": "yoda", "path": "models/platform/source/platform__src.yml", "original_file_path": "models/platform/source/platform__src.yml", "unique_id": "source.yoda.platform__singas.cdp_streaming_events", "fqn": ["yoda", "platform", "source", "platform__singas", "cdp_streaming_events"], "source_name": "platform__singas", "source_description": "", "loader": "", "identifier": "cdp_streaming_events", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition": {"name": "partition", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "offset": {"name": "offset", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "key": {"name": "key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "value": {"name": "value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "headers": {"name": "headers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "map"}, "mode": {"name": "mode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "topic": {"name": "topic", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["platform"]}, "patch_path": null, "unrendered_config": {"tags": ["platform"]}, "relation_name": "singas.cdp_streaming_events", "created_at": 1700082693.840533}, "source.yoda.sms__sms.apicalls": {"database": null, "schema": "sms", "name": "apicalls", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.apicalls", "fqn": ["yoda", "sms", "source", "sms__sms", "apicalls"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "apicalls", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "request_id": {"name": "request_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "queue_id": {"name": "queue_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_id": {"name": "app_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "apikey": {"name": "apikey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "from": {"name": "from", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "to": {"name": "to", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "media": {"name": "media", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "spot_user_balance": {"name": "spot_user_balance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "vendor_name_used": {"name": "vendor_name_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price_billed": {"name": "price_billed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "price_vendor_cost": {"name": "price_vendor_cost", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "parts": {"name": "parts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_currency": {"name": "price_currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "method": {"name": "method", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_id_int": {"name": "message_id_int", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_uuid": {"name": "message_uuid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip": {"name": "ip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ip_forward": {"name": "ip_forward", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referer": {"name": "referer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sender_type": {"name": "sender_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_iso": {"name": "country_iso", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_notification_type": {"name": "message_notification_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.apicalls", "created_at": 1700082693.8408384}, "source.yoda.sms__sms.bigcommerce_users": {"database": null, "schema": "sms", "name": "bigcommerce_users", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.bigcommerce_users", "fqn": ["yoda", "sms", "source", "sms__sms", "bigcommerce_users"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "bigcommerce_users", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store": {"name": "store", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_hash": {"name": "store_hash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "access_token": {"name": "access_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_data": {"name": "shop_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_data": {"name": "app_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "plan_name": {"name": "plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_level": {"name": "plan_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_reload": {"name": "auto_reload", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_threshold": {"name": "auto_reload_threshold", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_amount": {"name": "auto_reload_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_cap": {"name": "auto_reload_cap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abandoned_checkouts_sent": {"name": "abandoned_checkouts_sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "connected": {"name": "connected", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_enabled": {"name": "sync_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes": {"name": "notes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pinned_navigation": {"name": "pinned_navigation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.bigcommerce_users", "created_at": 1700082693.8411324}, "source.yoda.sms__sms.shopify_users": {"database": null, "schema": "sms", "name": "shopify_users", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.shopify_users", "fqn": ["yoda", "sms", "source", "sms__sms", "shopify_users"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "shopify_users", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store": {"name": "store", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "domain": {"name": "domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "access_token": {"name": "access_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shop_data": {"name": "shop_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_data": {"name": "app_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan": {"name": "plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_store_id": {"name": "shopify_store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "associated_user": {"name": "associated_user", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_reload": {"name": "auto_reload", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_threshold": {"name": "auto_reload_threshold", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_amount": {"name": "auto_reload_amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "auto_reload_cap": {"name": "auto_reload_cap", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abandoned_checkouts_sent": {"name": "abandoned_checkouts_sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "connected": {"name": "connected", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sync_enabled": {"name": "sync_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "back_fill_completed": {"name": "back_fill_completed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes": {"name": "notes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pinned_navigation": {"name": "pinned_navigation", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "consent_webhook_enabled": {"name": "consent_webhook_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.shopify_users", "created_at": 1700082693.8414502}, "source.yoda.sms__sms.users": {"database": null, "schema": "sms", "name": "users", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.users", "fqn": ["yoda", "sms", "source", "sms__sms", "users"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "users", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "parent_id": {"name": "parent_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vendor_id": {"name": "vendor_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "support_level_id": {"name": "support_level_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "balance": {"name": "balance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "bonus_balance": {"name": "bonus_balance", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "credits": {"name": "credits", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "earnings": {"name": "earnings", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "points": {"name": "points", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "role": {"name": "role", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "role_id": {"name": "role_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner": {"name": "partner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "partner_info": {"name": "partner_info", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_nexmo_price_multiply": {"name": "partner_nexmo_price_multiply", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "plan": {"name": "plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_price": {"name": "plan_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "package_id": {"name": "package_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "yotpo_app_key": {"name": "yotpo_app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_app_secret": {"name": "yotpo_app_secret", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_organization_id": {"name": "yotpo_organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "payment_gateway": {"name": "payment_gateway", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "provision_calls_count": {"name": "provision_calls_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform_unique_id": {"name": "platform_unique_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_data": {"name": "discount_data", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_trial_until": {"name": "plan_trial_until", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "discounted_mms_price": {"name": "discounted_mms_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "affiliate_commission": {"name": "affiliate_commission", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amploa": {"name": "amploa", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_is_valid": {"name": "email_is_valid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "password": {"name": "password", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "old_passwords": {"name": "old_passwords", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tfa_enabled": {"name": "tfa_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "preferred_vendor": {"name": "preferred_vendor", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "partner_type": {"name": "partner_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_route": {"name": "delivery_route", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "hash": {"name": "hash", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_number": {"name": "phone_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "main_subscription_list_id": {"name": "main_subscription_list_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "double_opt_in": {"name": "double_opt_in", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "double_opt_in_level": {"name": "double_opt_in_level", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "timezone": {"name": "timezone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dnd": {"name": "dnd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dnd_from": {"name": "dnd_from", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "dnd_to": {"name": "dnd_to", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smart_sending_value": {"name": "smart_sending_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smart_sending_ignore_transac_email": {"name": "smart_sending_ignore_transac_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "strict_marketing_check": {"name": "strict_marketing_check", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_limit_enabled": {"name": "price_limit_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price_limit": {"name": "price_limit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "chat_enabled": {"name": "chat_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "chat_settings": {"name": "chat_settings", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "collect_checkout_subscribers": {"name": "collect_checkout_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countries_limitation_mode": {"name": "countries_limitation_mode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "countries_limitation_values": {"name": "countries_limitation_values", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "city": {"name": "city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zipcode": {"name": "zipcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address": {"name": "address", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vat_number": {"name": "vat_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "paypal_email": {"name": "paypal_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "google_user_id": {"name": "google_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_id": {"name": "facebook_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "facebook_info": {"name": "facebook_info", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gplusurl": {"name": "gplusurl", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "picture": {"name": "picture", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cookie_related_users": {"name": "cookie_related_users", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "all_ip": {"name": "all_ip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_ip": {"name": "last_ip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_available": {"name": "last_available", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "total_logins": {"name": "total_logins", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_downloads": {"name": "total_downloads", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abuser_status": {"name": "abuser_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "abuser_notes": {"name": "abuser_notes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "free_keywords_available_count": {"name": "free_keywords_available_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ban_exclude": {"name": "ban_exclude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_test": {"name": "is_test", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscribed": {"name": "subscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscribed_to_forum": {"name": "subscribed_to_forum", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unsubscribe_reason": {"name": "unsubscribe_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "notes": {"name": "notes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "upload_lists_enabled": {"name": "upload_lists_enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "notes_modified": {"name": "notes_modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "agreed_terms": {"name": "agreed_terms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signed_promo_id": {"name": "signed_promo_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "signup_source": {"name": "signup_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_name": {"name": "contact_card_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_logo": {"name": "contact_card_logo", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_path": {"name": "contact_card_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_card_message": {"name": "contact_card_message", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "system_messages_payer": {"name": "system_messages_payer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "compliance_accepted_date": {"name": "compliance_accepted_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "affiliate_payout_pref": {"name": "affiliate_payout_pref", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "affiliate_payout_email": {"name": "affiliate_payout_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_payout": {"name": "last_payout", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "automatic_transliteration": {"name": "automatic_transliteration", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "use_local_number_for_subscription": {"name": "use_local_number_for_subscription", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "onboarding_completed": {"name": "onboarding_completed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "industry": {"name": "industry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "language": {"name": "language", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "whitelisted": {"name": "whitelisted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shaft_status": {"name": "shaft_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.users", "created_at": 1700082693.8419416}, "source.yoda.sms__sms.events": {"database": null, "schema": "sms", "name": "events", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.events", "fqn": ["yoda", "sms", "source", "sms__sms", "events"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "events", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "webhook": {"name": "webhook", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "settings": {"name": "settings", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.events", "created_at": 1700082693.842216}, "source.yoda.sms__sms.flows": {"database": null, "schema": "sms", "name": "flows", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.flows", "fqn": ["yoda", "sms", "source", "sms__sms", "flows"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "flows", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_trigger": {"name": "flow_trigger", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_settings": {"name": "flow_settings", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "snapshot_id": {"name": "snapshot_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.flows", "created_at": 1700082693.8424947}, "source.yoda.sms__sms.loyalty_flows_data": {"database": null, "schema": "sms", "name": "loyalty_flows_data", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.loyalty_flows_data", "fqn": ["yoda", "sms", "source", "sms__sms", "loyalty_flows_data"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "loyalty_flows_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shortcode": {"name": "shortcode", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "condition": {"name": "condition", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_trigger": {"name": "flow_trigger", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.loyalty_flows_data", "created_at": 1700082693.842701}, "source.yoda.sms__sms.track_flows_adoption": {"database": null, "schema": "sms", "name": "track_flows_adoption", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.track_flows_adoption", "fqn": ["yoda", "sms", "source", "sms__sms", "track_flows_adoption"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "track_flows_adoption", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_type": {"name": "flow_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "flow_trigger": {"name": "flow_trigger", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "changes": {"name": "changes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.track_flows_adoption", "created_at": 1700082693.842906}, "source.yoda.sms__sms.yotpo_organizations": {"database": null, "schema": "sms", "name": "yotpo_organizations", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.yotpo_organizations", "fqn": ["yoda", "sms", "source", "sms__sms", "yotpo_organizations"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "yotpo_organizations", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "organization_key": {"name": "organization_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "organization_name": {"name": "organization_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ac_requests_id": {"name": "ac_requests_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.yotpo_organizations", "created_at": 1700082693.8431067}, "source.yoda.sms__sms.users_events_log": {"database": null, "schema": "sms", "name": "users_events_log", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.users_events_log", "fqn": ["yoda", "sms", "source", "sms__sms", "users_events_log"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "users_events_log", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_user_id": {"name": "platform_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event": {"name": "event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_type": {"name": "event_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_details": {"name": "event_details", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.users_events_log", "created_at": 1700082693.8434906}, "source.yoda.sms__sms.packages": {"database": null, "schema": "sms", "name": "packages", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.packages", "fqn": ["yoda", "sms", "source", "sms__sms", "packages"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "packages", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_key": {"name": "payment_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_key": {"name": "plan_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_title": {"name": "sub_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "period": {"name": "period", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "price": {"name": "price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "bonus_credits": {"name": "bonus_credits", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "visible_app": {"name": "visible_app", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "visible_site": {"name": "visible_site", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.packages", "created_at": 1700082693.8437908}, "source.yoda.sms__sms.campaigns": {"database": null, "schema": "sms", "name": "campaigns", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.campaigns", "fqn": ["yoda", "sms", "source", "sms__sms", "campaigns"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "campaigns", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message": {"name": "message", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "list_id": {"name": "list_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_sent": {"name": "total_sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sent": {"name": "sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_testing_id": {"name": "ab_testing_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "scheduled": {"name": "scheduled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "approved": {"name": "approved", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_repopulated": {"name": "is_repopulated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "request": {"name": "request", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.campaigns", "created_at": 1700082693.8440647}, "source.yoda.sms__sms.purchases": {"database": null, "schema": "sms", "name": "purchases", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.purchases", "fqn": ["yoda", "sms", "source", "sms__sms", "purchases"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "purchases", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number": {"name": "number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason": {"name": "reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gateway": {"name": "gateway", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount_paid": {"name": "amount_paid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "amount_added": {"name": "amount_added", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "notes": {"name": "notes", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchase_info": {"name": "purchase_info", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cart": {"name": "cart", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "discount_code": {"name": "discount_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "invoice": {"name": "invoice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ipnlog": {"name": "ipnlog", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "shopify_charge_response": {"name": "shopify_charge_response", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "affiliate_id": {"name": "affiliate_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vendor_id": {"name": "vendor_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "licenses": {"name": "licenses", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchased_on": {"name": "purchased_on", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_downloaded": {"name": "last_downloaded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "downloads_history": {"name": "downloads_history", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "purchased_from": {"name": "purchased_from", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reminders": {"name": "reminders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "rating": {"name": "rating", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.purchases", "created_at": 1700082693.8447647}, "source.yoda.sms__sms.forms": {"database": null, "schema": "sms", "name": "forms", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.forms", "fqn": ["yoda", "sms", "source", "sms__sms", "forms"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "forms", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "settings": {"name": "settings", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dynamic_popup": {"name": "dynamic_popup", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_script_id": {"name": "platform_script_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.forms", "created_at": 1700082693.845213}, "source.yoda.sms__sms.flow_link_clicks": {"database": null, "schema": "sms", "name": "flow_link_clicks", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.flow_link_clicks", "fqn": ["yoda", "sms", "source", "sms__sms", "flow_link_clicks"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "flow_link_clicks", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number": {"name": "number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicks_count": {"name": "clicks_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "link_id": {"name": "link_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ua": {"name": "ua", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.flow_link_clicks", "created_at": 1700082693.8454738}, "source.yoda.sms__sms.shopify_flows_orders": {"database": null, "schema": "sms", "name": "shopify_flows_orders", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.shopify_flows_orders", "fqn": ["yoda", "sms", "source", "sms__sms", "shopify_flows_orders"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "shopify_flows_orders", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_snapshot_id": {"name": "flow_snapshot_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_entity_id": {"name": "ab_entity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shopify_customer_id": {"name": "shopify_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "recovered": {"name": "recovered", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "conversion_source": {"name": "conversion_source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.shopify_flows_orders", "created_at": 1700082693.8457139}, "source.yoda.sms__sms.campaign_lists": {"database": null, "schema": "sms", "name": "campaign_lists", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.campaign_lists", "fqn": ["yoda", "sms", "source", "sms__sms", "campaign_lists"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "campaign_lists", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "list_id": {"name": "list_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "exclude": {"name": "exclude", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "scheduled": {"name": "scheduled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.campaign_lists", "created_at": 1700082693.8459244}, "source.yoda.sms__sms.lists": {"database": null, "schema": "sms", "name": "lists", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.lists", "fqn": ["yoda", "sms", "source", "sms__sms", "lists"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "lists", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "list_name": {"name": "list_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "count": {"name": "count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "segment_id": {"name": "segment_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_hidden": {"name": "is_hidden", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_email_list": {"name": "is_email_list", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.lists", "created_at": 1700082693.8461375}, "source.yoda.sms__sms.shopify_segments": {"database": null, "schema": "sms", "name": "shopify_segments", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.shopify_segments", "fqn": ["yoda", "sms", "source", "sms__sms", "shopify_segments"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "shopify_segments", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "segment_rules": {"name": "segment_rules", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_updated": {"name": "last_updated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "used_in_unomi": {"name": "used_in_unomi", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.shopify_segments", "created_at": 1700082693.8464637}, "source.yoda.sms__sms.campaign_relations": {"database": null, "schema": "sms", "name": "campaign_relations", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.campaign_relations", "fqn": ["yoda", "sms", "source", "sms__sms", "campaign_relations"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "campaign_relations", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "resource_id": {"name": "resource_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "resource_type": {"name": "resource_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.campaign_relations", "created_at": 1700082693.8466792}, "source.yoda.sms__sms.default_predefined_messages": {"database": null, "schema": "sms", "name": "default_predefined_messages", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.default_predefined_messages", "fqn": ["yoda", "sms", "source", "sms__sms", "default_predefined_messages"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "default_predefined_messages", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "trigger": {"name": "trigger", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_message": {"name": "default_message", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_category": {"name": "sub_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "active": {"name": "active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.default_predefined_messages", "created_at": 1700082693.8468945}, "source.yoda.sms__sms.flow_links": {"database": null, "schema": "sms", "name": "flow_links", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.flow_links", "fqn": ["yoda", "sms", "source", "sms__sms", "flow_links"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "flow_links", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_entity_id": {"name": "ab_entity_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "clicks_count": {"name": "clicks_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "link": {"name": "link", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.flow_links", "created_at": 1700082693.847105}, "source.yoda.sms__sms.shopify_campaign_orders": {"database": null, "schema": "sms", "name": "shopify_campaign_orders", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.shopify_campaign_orders", "fqn": ["yoda", "sms", "source", "sms__sms", "shopify_campaign_orders"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "shopify_campaign_orders", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_campaign_id": {"name": "ab_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.shopify_campaign_orders", "created_at": 1700082693.8474002}, "source.yoda.sms__sms.link_clicks": {"database": null, "schema": "sms", "name": "link_clicks", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.link_clicks", "fqn": ["yoda", "sms", "source", "sms__sms", "link_clicks"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "link_clicks", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "number": {"name": "number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicks_count": {"name": "clicks_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "link_id": {"name": "link_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ua": {"name": "ua", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.link_clicks", "created_at": 1700082693.8476307}, "source.yoda.sms__sms.yotpo_status_updates": {"database": null, "schema": "sms", "name": "yotpo_status_updates", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.yotpo_status_updates", "fqn": ["yoda", "sms", "source", "sms__sms", "yotpo_status_updates"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "yotpo_status_updates", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "queue_id": {"name": "queue_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "from": {"name": "from", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "to": {"name": "to", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uuid": {"name": "uuid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.yotpo_status_updates", "created_at": 1700082693.84796}, "source.yoda.sms__sms.free_credits_logs": {"database": null, "schema": "sms", "name": "free_credits_logs", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.free_credits_logs", "fqn": ["yoda", "sms", "source", "sms__sms", "free_credits_logs"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "free_credits_logs", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "store_name": {"name": "store_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.free_credits_logs", "created_at": 1700082693.848192}, "source.yoda.sms__sms.email_charges": {"database": null, "schema": "sms", "name": "email_charges", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.email_charges", "fqn": ["yoda", "sms", "source", "sms__sms", "email_charges"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "email_charges", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "price": {"name": "price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_emails": {"name": "total_emails", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_email_count": {"name": "campaign_email_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_email_count": {"name": "flow_email_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.email_charges", "created_at": 1700082693.8485286}, "source.yoda.sms__sms.shopify_analytics_orders": {"database": null, "schema": "sms", "name": "shopify_analytics_orders", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.shopify_analytics_orders", "fqn": ["yoda", "sms", "source", "sms__sms", "shopify_analytics_orders"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "shopify_analytics_orders", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "amount": {"name": "amount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "event_id": {"name": "event_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_snapshot_id": {"name": "flow_snapshot_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_campaign_id": {"name": "ab_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "country_iso": {"name": "country_iso", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "type": {"name": "type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "ref_campaign_id": {"name": "ref_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.shopify_analytics_orders", "created_at": 1700082693.8488}, "source.yoda.sms__sms.email_to_sms_campaigns": {"database": null, "schema": "sms", "name": "email_to_sms_campaigns", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.email_to_sms_campaigns", "fqn": ["yoda", "sms", "source", "sms__sms", "email_to_sms_campaigns"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "email_to_sms_campaigns", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sms_campaign_id": {"name": "sms_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_campaign_id": {"name": "email_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.email_to_sms_campaigns", "created_at": 1700082693.8490136}, "source.yoda.sms__sms.shopify_campaign_discount_codes": {"database": null, "schema": "sms", "name": "shopify_campaign_discount_codes", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.shopify_campaign_discount_codes", "fqn": ["yoda", "sms", "source", "sms__sms", "shopify_campaign_discount_codes"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "shopify_campaign_discount_codes", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ab_campaign_id": {"name": "ab_campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_code": {"name": "discount_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auto_generated": {"name": "auto_generated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "modified": {"name": "modified", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.shopify_campaign_discount_codes", "created_at": 1700082693.8492975}, "source.yoda.sms__sms.sms_loyalty_redemptions": {"database": null, "schema": "sms", "name": "sms_loyalty_redemptions", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms.sms_loyalty_redemptions", "fqn": ["yoda", "sms", "source", "sms__sms", "sms_loyalty_redemptions"], "source_name": "sms__sms", "source_description": "", "loader": "", "identifier": "sms_loyalty_redemptions", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "campaign_id": {"name": "campaign_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_id": {"name": "flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "flow_step_id": {"name": "flow_step_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_id": {"name": "redemption_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "redemption_option_id": {"name": "redemption_option_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discount_code": {"name": "discount_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created": {"name": "created", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms.sms_loyalty_redemptions", "created_at": 1700082693.8495362}, "source.yoda.sms__segment.sms_campaign_created": {"database": null, "schema": "segment", "name": "sms_campaign_created", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__segment.sms_campaign_created", "fqn": ["yoda", "sms", "source", "sms__segment", "sms_campaign_created"], "source_name": "sms__segment", "source_description": "", "loader": "", "identifier": "sms_campaign_created", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "audiencesize": {"name": "audiencesize", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "clicktobuyadded": {"name": "clicktobuyadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "contentedited": {"name": "contentedited", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customname": {"name": "customname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discountadded": {"name": "discountadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "emojiadded": {"name": "emojiadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imageadded": {"name": "imageadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isabtesting": {"name": "isabtesting", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isscheduled": {"name": "isscheduled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issmartsending": {"name": "issmartsending", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "istimezonebased": {"name": "istimezonebased", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyalyshortcodeadded": {"name": "loyalyshortcodeadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "path": {"name": "path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewsshortcodeadded": {"name": "reviewsshortcodeadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "targetedaudience": {"name": "targetedaudience", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "texttobuyadded": {"name": "texttobuyadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "auth0userid": {"name": "auth0userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "abtestgroupsize": {"name": "abtestgroupsize", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "abtestperiod": {"name": "abtestperiod", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "abtestingnumberoftestgroups": {"name": "abtestingnumberoftestgroups", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "abwinningmetric": {"name": "abwinningmetric", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "campaignid": {"name": "campaignid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discountcodeadded": {"name": "discountcodeadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discounturladded": {"name": "discounturladded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "discountvalueadded": {"name": "discountvalueadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "excludedaudience": {"name": "excludedaudience", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "firstnameadded": {"name": "firstnameadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "haslists": {"name": "haslists", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "hasloyaltysegments": {"name": "hasloyaltysegments", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "haspredictivesegments": {"name": "haspredictivesegments", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "hasreviewssegments": {"name": "hasreviewssegments", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "lastnameadded": {"name": "lastnameadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sitenameadded": {"name": "sitenameadded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "siteurladded": {"name": "siteurladded", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_activebuyers": {"name": "usedpredefinedsegments_activebuyers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_allemailsubscribers": {"name": "usedpredefinedsegments_allemailsubscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_churnrisk": {"name": "usedpredefinedsegments_churnrisk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_emailconvertedsubscriberslast7days": {"name": "usedpredefinedsegments_emailconvertedsubscriberslast7days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_enagagedemailsubscirberslast30days": {"name": "usedpredefinedsegments_enagagedemailsubscirberslast30days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_haventpurchasetsincelastmonth": {"name": "usedpredefinedsegments_haventpurchasetsincelastmonth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_potentialbuyers": {"name": "usedpredefinedsegments_potentialbuyers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_purchasesbyemailsubscriberslast30days": {"name": "usedpredefinedsegments_purchasesbyemailsubscriberslast30days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_repeatbuyers": {"name": "usedpredefinedsegments_repeatbuyers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_smsconvertedsubscriberslast7days": {"name": "usedpredefinedsegments_smsconvertedsubscriberslast7days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_smsengagedsubscribers": {"name": "usedpredefinedsegments_smsengagedsubscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_softbouncedsubscriberslast7days": {"name": "usedpredefinedsegments_softbouncedsubscriberslast7days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_subscribersnotpurchased": {"name": "usedpredefinedsegments_subscribersnotpurchased", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_textmarketinglist": {"name": "usedpredefinedsegments_textmarketinglist", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_top1sendedrs": {"name": "usedpredefinedsegments_top1sendedrs", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_topsenders": {"name": "usedpredefinedsegments_topsenders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedtemplate": {"name": "usedtemplate", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "usedpredefinedsegments_engagedemailsubscriberslast30days": {"name": "usedpredefinedsegments_engagedemailsubscriberslast30days", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_haventpurchasedsincelastmonth": {"name": "usedpredefinedsegments_haventpurchasedsincelastmonth", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_top1senders": {"name": "usedpredefinedsegments_top1senders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_top1spenders": {"name": "usedpredefinedsegments_top1spenders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "usedpredefinedsegments_topspenders": {"name": "usedpredefinedsegments_topspenders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isdatechanged": {"name": "isdatechanged", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "timechosen": {"name": "timechosen", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "segment.sms_campaign_created", "created_at": 1700082693.8510764}, "source.yoda.sms__sms_shopify.orders": {"database": null, "schema": "sms_shopify", "name": "orders", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms_shopify.orders", "fqn": ["yoda", "sms", "source", "sms__sms_shopify", "orders"], "source_name": "sms__sms_shopify", "source_description": "", "loader": "", "identifier": "orders", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "smsbump_user_id": {"name": "smsbump_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_id": {"name": "order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "closed_at": {"name": "closed_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "number": {"name": "number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "note": {"name": "note", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "token": {"name": "token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gateway": {"name": "gateway", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "test": {"name": "test", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_price": {"name": "total_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "subtotal_price": {"name": "subtotal_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_weight": {"name": "total_weight", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_tax": {"name": "total_tax", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "taxes_included": {"name": "taxes_included", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "currency": {"name": "currency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "financial_status": {"name": "financial_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "confirmed": {"name": "confirmed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_discounts": {"name": "total_discounts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_line_items_price": {"name": "total_line_items_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "cart_token": {"name": "cart_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "buyer_accepts_marketing": {"name": "buyer_accepts_marketing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "referring_site": {"name": "referring_site", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landing_site": {"name": "landing_site", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelled_at": {"name": "cancelled_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "cancel_reason": {"name": "cancel_reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price_usd": {"name": "total_price_usd", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "checkout_token": {"name": "checkout_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reference": {"name": "reference", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "location_id": {"name": "location_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_identifier": {"name": "source_identifier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_url": {"name": "source_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "processed_at": {"name": "processed_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "device_id": {"name": "device_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_formatted": {"name": "phone_formatted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_locale": {"name": "customer_locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_id": {"name": "app_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "browser_ip": {"name": "browser_ip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "landing_site_ref": {"name": "landing_site_ref", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_number": {"name": "order_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_method": {"name": "processing_method", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "checkout_id": {"name": "checkout_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_name": {"name": "source_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "fulfillment_status": {"name": "fulfillment_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tags": {"name": "tags", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contact_email": {"name": "contact_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order_status_url": {"name": "order_status_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms_shopify.orders", "created_at": 1700082693.8515756}, "source.yoda.sms__sms_shopify.customers": {"database": null, "schema": "sms_shopify", "name": "customers", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms_shopify.customers", "fqn": ["yoda", "sms", "source", "sms__sms_shopify", "customers"], "source_name": "sms__sms_shopify", "source_description": "", "loader": "", "identifier": "customers", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "smsbump_user_id": {"name": "smsbump_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "accepts_marketing": {"name": "accepts_marketing", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_name": {"name": "first_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orders_count": {"name": "orders_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "state": {"name": "state", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_spent": {"name": "total_spent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "last_order_id": {"name": "last_order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "verified_email": {"name": "verified_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_formatted": {"name": "phone_formatted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_order_name": {"name": "last_order_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "default_address": {"name": "default_address", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "timezone": {"name": "timezone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms_shopify.customers", "created_at": 1700082693.8518436}, "source.yoda.sms__sms_shopify.customers_addresses": {"database": null, "schema": "sms_shopify", "name": "customers_addresses", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__sms_shopify.customers_addresses", "fqn": ["yoda", "sms", "source", "sms__sms_shopify", "customers_addresses"], "source_name": "sms__sms_shopify", "source_description": "", "loader": "", "identifier": "customers_addresses", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "address1": {"name": "address1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address2": {"name": "address2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "address_id": {"name": "address_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "city": {"name": "city", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "company": {"name": "company", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country": {"name": "country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_code": {"name": "country_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "country_name": {"name": "country_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "default": {"name": "default", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "first_name": {"name": "first_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "phone_formatted": {"name": "phone_formatted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "province": {"name": "province", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "province_code": {"name": "province_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsbump_customer_id": {"name": "smsbump_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "smsbump_user_id": {"name": "smsbump_user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "zip": {"name": "zip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "sms_shopify.customers_addresses", "created_at": 1700082693.8521395}, "source.yoda.sms__default.fact_agg_sms_user_profile_daily": {"database": null, "schema": "default", "name": "fact_agg_sms_user_profile_daily", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__default.fact_agg_sms_user_profile_daily", "fqn": ["yoda", "sms", "source", "sms__default", "fact_agg_sms_user_profile_daily"], "source_name": "sms__default", "source_description": "", "loader": "", "identifier": "fact_agg_sms_user_profile_daily", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_created_at": {"name": "user_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "plan": {"name": "plan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_type": {"name": "plan_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_start_date_cohort": {"name": "user_start_date_cohort", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "user_first_usage_date_cohort": {"name": "user_first_usage_date_cohort", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "total_created_flows": {"name": "total_created_flows", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_active_flows": {"name": "total_active_flows", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_created_automations": {"name": "total_created_automations", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_active_automations": {"name": "total_active_automations", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_created_campaigns": {"name": "total_created_campaigns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_active_campaigns": {"name": "total_active_campaigns", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_subscribers": {"name": "total_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_esp_subscribers": {"name": "total_esp_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_non_esp_subscribers": {"name": "total_non_esp_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_imported_subscribers": {"name": "total_imported_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_new_subscribers": {"name": "total_new_subscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_unsubscribers": {"name": "total_unsubscribers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_customers": {"name": "total_customers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_new_customers": {"name": "total_new_customers", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_messages_sent": {"name": "total_messages_sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_messages_sent_by_carrier": {"name": "total_messages_sent_by_carrier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_sms_sent": {"name": "total_sms_sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_sms_sent_by_carrier": {"name": "total_sms_sent_by_carrier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_mms_sent": {"name": "total_mms_sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_mms_sent_by_carrier": {"name": "total_mms_sent_by_carrier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_automations_messages": {"name": "total_automations_messages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_automations_messages_by_carrier": {"name": "total_automations_messages_by_carrier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_flows_messages": {"name": "total_flows_messages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_flows_messages_by_carrier": {"name": "total_flows_messages_by_carrier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_campaigns_messages": {"name": "total_campaigns_messages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_campaigns_messages_by_carrier": {"name": "total_campaigns_messages_by_carrier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_other_messages": {"name": "total_other_messages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_other_messages_by_carrier": {"name": "total_other_messages_by_carrier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_credits_used": {"name": "total_credits_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_sms_credits_used": {"name": "total_sms_credits_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_mms_credits_used": {"name": "total_mms_credits_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_campaigns_credits_used": {"name": "total_campaigns_credits_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_automations_credits_used": {"name": "total_automations_credits_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_flows_credits_used": {"name": "total_flows_credits_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_other_credits_used": {"name": "total_other_credits_used", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_orders": {"name": "total_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_avg_orders_l3m": {"name": "total_avg_orders_l3m", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_roi_spend": {"name": "total_roi_spend", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_roi_revenue": {"name": "total_roi_revenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_automations_revenue": {"name": "total_automations_revenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_campaigns_revenue": {"name": "total_campaigns_revenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_flows_revenue": {"name": "total_flows_revenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_credits_purchased": {"name": "total_credits_purchased", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_uninstall": {"name": "total_uninstall", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "total_install": {"name": "total_install", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "total_reopened_store": {"name": "total_reopened_store", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "total_closed_store": {"name": "total_closed_store", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "total_phone_verification": {"name": "total_phone_verification", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "total_roi": {"name": "total_roi", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_automations_roi": {"name": "total_automations_roi", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_flows_roi": {"name": "total_flows_roi", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "total_campaigns_roi": {"name": "total_campaigns_roi", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "decimal(12,4)"}, "is_active": {"name": "is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "smallint"}, "year": {"name": "year", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "day": {"name": "day", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "default.fact_agg_sms_user_profile_daily", "created_at": 1700082693.852606}, "source.yoda.sms__communication.comm_analytics_data": {"database": null, "schema": "communication", "name": "comm_analytics_data", "resource_type": "source", "package_name": "yoda", "path": "models/sms/source/sms__src.yml", "original_file_path": "models/sms/source/sms__src.yml", "unique_id": "source.yoda.sms__communication.comm_analytics_data", "fqn": ["yoda", "sms", "source", "sms__communication", "comm_analytics_data"], "source_name": "sms__communication", "source_description": "", "loader": "", "identifier": "comm_analytics_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_status": {"name": "source_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_type": {"name": "source_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_source_type": {"name": "sub_source_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_trigger": {"name": "source_trigger", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_message": {"name": "source_message", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_source_id": {"name": "sub_source_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_name": {"name": "source_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "converted_flow_id": {"name": "converted_flow_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_execution_date": {"name": "source_execution_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "source_creation_date": {"name": "source_creation_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "aggregation_date": {"name": "aggregation_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "total_unsubscribed": {"name": "total_unsubscribed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_sent": {"name": "total_sent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "message_count": {"name": "message_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_spent": {"name": "total_spent", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_clicks": {"name": "total_clicks", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_orders": {"name": "total_orders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_revenue": {"name": "total_revenue", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "total_subscriptions": {"name": "total_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "total_active_subscriptions": {"name": "total_active_subscriptions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_delivered": {"name": "total_delivered", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_processed": {"name": "total_processed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_open": {"name": "total_open", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_deferred": {"name": "total_deferred", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_spam": {"name": "total_spam", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_failed": {"name": "total_failed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_skipped": {"name": "total_skipped", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_smart_sending": {"name": "total_smart_sending", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_restricted": {"name": "total_restricted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_suppressed": {"name": "total_suppressed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_bounce": {"name": "total_bounce", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_soft_bounce": {"name": "total_soft_bounce", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_hard_bounce": {"name": "total_hard_bounce", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "total_drop": {"name": "total_drop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "transactional_messages": {"name": "transactional_messages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "marketing_messages": {"name": "marketing_messages", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["sms"]}, "patch_path": null, "unrendered_config": {"tags": ["sms"]}, "relation_name": "communication.comm_analytics_data", "created_at": 1700082693.8529115}, "source.yoda.subscriptions__subscriptions.subscription_contract": {"database": null, "schema": "subscriptions", "name": "subscription_contract", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.subscription_contract", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "subscription_contract"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "subscription_contract", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval": {"name": "delivery_policy_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivery_policy_interval_count": {"name": "delivery_policy_interval_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval": {"name": "billing_policy_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_policy_interval_count": {"name": "billing_policy_interval_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "original_order_external_id": {"name": "original_order_external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_customer_id": {"name": "external_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "status_last_updated_at": {"name": "status_last_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.subscription_contract", "created_at": 1700082693.8531468}, "source.yoda.subscriptions__subscriptions.status": {"database": null, "schema": "subscriptions", "name": "status", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.status", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "status"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "status", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "num": {"name": "num", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "text": {"name": "text", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.status", "created_at": 1700082693.8534133}, "source.yoda.subscriptions__subscriptions.subscription_contract_order": {"database": null, "schema": "subscriptions", "name": "subscription_contract_order", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.subscription_contract_order", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "subscription_contract_order"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "subscription_contract_order", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_order_id": {"name": "external_order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.subscription_contract_order", "created_at": 1700082693.8536258}, "source.yoda.subscriptions__subscriptions.recurrent_event_rule": {"database": null, "schema": "subscriptions", "name": "recurrent_event_rule", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.recurrent_event_rule", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "recurrent_event_rule"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "recurrent_event_rule", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "obj_id": {"name": "obj_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "obj_type": {"name": "obj_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "next_due_date": {"name": "next_due_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "plan_interval": {"name": "plan_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "interval_count": {"name": "interval_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "is_canceled": {"name": "is_canceled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.recurrent_event_rule", "created_at": 1700082693.8538425}, "source.yoda.subscriptions__subscriptions.subscription_contract_line": {"database": null, "schema": "subscriptions", "name": "subscription_contract_line", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.subscription_contract_line", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "subscription_contract_line"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "subscription_contract_line", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "subscription_contract_id": {"name": "subscription_contract_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_external_id": {"name": "product_external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_external_id": {"name": "variant_external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.subscription_contract_line", "created_at": 1700082693.8540835}, "source.yoda.subscriptions__subscriptions.subscription_creation_request": {"database": null, "schema": "subscriptions", "name": "subscription_creation_request", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.subscription_creation_request", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "subscription_creation_request"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "subscription_creation_request", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "request_status": {"name": "request_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "contract_id": {"name": "contract_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uploaded_file_id": {"name": "uploaded_file_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "line_number": {"name": "line_number", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "idempotency_key": {"name": "idempotency_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "next_billing_date": {"name": "next_billing_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "currency_code": {"name": "currency_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subscription_status": {"name": "subscription_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "selling_plan_name": {"name": "selling_plan_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_price": {"name": "delivery_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "delivery_interval": {"name": "delivery_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivery_interval_count": {"name": "delivery_interval_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "billing_interval": {"name": "billing_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billing_interval_count": {"name": "billing_interval_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shipping_code": {"name": "shipping_code", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_method_id": {"name": "payment_method_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_provider_payment_method_id": {"name": "payment_provider_payment_method_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_provider_customer_id": {"name": "payment_provider_customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "payment_provider_type": {"name": "payment_provider_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.subscription_creation_request", "created_at": 1700082693.854408}, "source.yoda.subscriptions__subscriptions.product": {"database": null, "schema": "subscriptions", "name": "product", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.product", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "product"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "product", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "external_id": {"name": "external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.product", "created_at": 1700082693.8546038}, "source.yoda.subscriptions__subscriptions.selling_plan": {"database": null, "schema": "subscriptions", "name": "selling_plan", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.selling_plan", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "selling_plan"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "selling_plan", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "selling_plan_group_id": {"name": "selling_plan_group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "pricing_policy_adjustment_type": {"name": "pricing_policy_adjustment_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "pricing_policy_value": {"name": "pricing_policy_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "recurring_pricing_policy_after_cycle": {"name": "recurring_pricing_policy_after_cycle", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.selling_plan", "created_at": 1700082693.854801}, "source.yoda.subscriptions__subscriptions.selling_plan_group": {"database": null, "schema": "subscriptions", "name": "selling_plan_group", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.selling_plan_group", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "selling_plan_group"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "selling_plan_group", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "external_id": {"name": "external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "selling_plan_group_status": {"name": "selling_plan_group_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.selling_plan_group", "created_at": 1700082693.8549988}, "source.yoda.subscriptions__subscriptions.selling_plan_group_product": {"database": null, "schema": "subscriptions", "name": "selling_plan_group_product", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.selling_plan_group_product", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "selling_plan_group_product"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "selling_plan_group_product", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "selling_plan_group_id": {"name": "selling_plan_group_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.selling_plan_group_product", "created_at": 1700082693.8552504}, "source.yoda.subscriptions__subscriptions.billing_attempt_response": {"database": null, "schema": "subscriptions", "name": "billing_attempt_response", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.billing_attempt_response", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "billing_attempt_response"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "billing_attempt_response", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_id": {"name": "external_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_order_id": {"name": "external_order_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "idempotency_key": {"name": "idempotency_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ready": {"name": "ready", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "error_message": {"name": "error_message", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "is_logical_deleted": {"name": "is_logical_deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.billing_attempt_response", "created_at": 1700082693.8554704}, "source.yoda.subscriptions__subscriptions.store_customers_exports": {"database": null, "schema": "subscriptions", "name": "store_customers_exports", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.store_customers_exports", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "store_customers_exports"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "store_customers_exports", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"BILLING_INTERVAL_FREQUENCY": {"name": "BILLING_INTERVAL_FREQUENCY", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "BILLING_INTERVAL_UNIT": {"name": "BILLING_INTERVAL_UNIT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "CANCELLED_AT": {"name": "CANCELLED_AT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "CREATED_AT": {"name": "CREATED_AT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "CURRENCY_CODE": {"name": "CURRENCY_CODE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "CUSTOMER_EMAIL": {"name": "CUSTOMER_EMAIL", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "DELIVERY_PRICE": {"name": "DELIVERY_PRICE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "EXPIRES_AFTER_NUM_BILLING_CYCLES": {"name": "EXPIRES_AFTER_NUM_BILLING_CYCLES", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "EXTERNAL_CUSTOMER_ID": {"name": "EXTERNAL_CUSTOMER_ID", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "EXTERNAL_PRODUCT_ID": {"name": "EXTERNAL_PRODUCT_ID", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "EXTERNAL_SUBSCRIPTION_ID": {"name": "EXTERNAL_SUBSCRIPTION_ID", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "EXTERNAL_VARIANT_ID": {"name": "EXTERNAL_VARIANT_ID", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "NEXT_BILLING_DATE": {"name": "NEXT_BILLING_DATE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ORDER_INTERVAL_FREQUENCY": {"name": "ORDER_INTERVAL_FREQUENCY", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "ORDER_INTERVAL_UNIT": {"name": "ORDER_INTERVAL_UNIT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "PRODUCT_TITLE": {"name": "PRODUCT_TITLE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "QUANTITY": {"name": "QUANTITY", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "RECURRING_PRICE": {"name": "RECURRING_PRICE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "float"}, "SHIPPING_ADDRESS_ADDRESS1": {"name": "SHIPPING_ADDRESS_ADDRESS1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_ADDRESS2": {"name": "SHIPPING_ADDRESS_ADDRESS2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_CITY": {"name": "SHIPPING_ADDRESS_CITY", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_COUNTRY": {"name": "SHIPPING_ADDRESS_COUNTRY", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_FIRST_NAME": {"name": "SHIPPING_ADDRESS_FIRST_NAME", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_LAST_NAME": {"name": "SHIPPING_ADDRESS_LAST_NAME", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_PHONE": {"name": "SHIPPING_ADDRESS_PHONE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_PROVINCE_CODE": {"name": "SHIPPING_ADDRESS_PROVINCE_CODE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SHIPPING_ADDRESS_ZIP": {"name": "SHIPPING_ADDRESS_ZIP", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "SKIPPED_PRODUCT": {"name": "SKIPPED_PRODUCT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "SKU": {"name": "SKU", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "STATUS": {"name": "STATUS", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}, "TOTAL_RECURRING_ORDERS": {"name": "TOTAL_RECURRING_ORDERS", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "UPDATED_AT": {"name": "UPDATED_AT", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "VARIANT_TITLE": {"name": "VARIANT_TITLE", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "varchar(255)"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.store_customers_exports", "created_at": 1700082693.8557653}, "source.yoda.subscriptions__subscriptions.subscription_line_action": {"database": null, "schema": "subscriptions", "name": "subscription_line_action", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.subscription_line_action", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "subscription_line_action"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "subscription_line_action", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_subscription_contract_id": {"name": "external_subscription_contract_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_line_id": {"name": "external_line_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "external_variant_id": {"name": "external_variant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_status": {"name": "action_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "quantity": {"name": "quantity", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "total_price": {"name": "total_price", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.subscription_line_action", "created_at": 1700082693.8559873}, "source.yoda.subscriptions__subscriptions.app_webhooks": {"database": null, "schema": "subscriptions", "name": "app_webhooks", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions.app_webhooks", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions", "app_webhooks"], "source_name": "subscriptions__subscriptions", "source_description": "", "loader": "", "identifier": "app_webhooks", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action": {"name": "action", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "message_time": {"name": "message_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions.app_webhooks", "created_at": 1700082693.856354}, "source.yoda.subscriptions__segment.subscription_started_v2": {"database": null, "schema": "segment", "name": "subscription_started_v2", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__segment.subscription_started_v2", "fqn": ["yoda", "subscriptions", "source", "subscriptions__segment", "subscription_started_v2"], "source_name": "subscriptions__segment", "source_description": "", "loader": "", "identifier": "subscription_started_v2", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingprovider": {"name": "billingprovider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargecurrency": {"name": "chargecurrency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackagemonthlyprice": {"name": "newpackagemonthlyprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackage": {"name": "newpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oldpackage": {"name": "oldpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuorasubscriptionname": {"name": "zuorasubscriptionname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "grouptype": {"name": "grouptype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgbillingproviders": {"name": "orgbillingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "orgcreatedat": {"name": "orgcreatedat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgemail": {"name": "orgemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgisreviews": {"name": "orgisreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgissms": {"name": "orgissms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgistest": {"name": "orgistest", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgisvugc": {"name": "orgisvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgloyaltymonthlyprice": {"name": "orgloyaltymonthlyprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgname": {"name": "orgname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgorganizationkey": {"name": "orgorganizationkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgreviewsmonthlyprice": {"name": "orgreviewsmonthlyprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgreviewspackage": {"name": "orgreviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsignupcountry": {"name": "orgsignupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsmsmonthlyprice": {"name": "orgsmsmonthlyprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgstorecount": {"name": "orgstorecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgstorelimit": {"name": "orgstorelimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgvugcmonthlyprice": {"name": "orgvugcmonthlyprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "org_isloyalty": {"name": "org_isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgvugcpackage": {"name": "orgvugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsmspackage": {"name": "orgsmspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgloyaltypackage": {"name": "orgloyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isnewsubscriptionltannual": {"name": "isnewsubscriptionltannual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "segment.subscription_started_v2", "created_at": 1700082693.8567686}, "source.yoda.subscriptions__segment.subscription_ended_v2": {"database": null, "schema": "segment", "name": "subscription_ended_v2", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__segment.subscription_ended_v2", "fqn": ["yoda", "subscriptions", "source", "subscriptions__segment", "subscription_ended_v2"], "source_name": "subscriptions__segment", "source_description": "", "loader": "", "identifier": "subscription_ended_v2", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partition_date": {"name": "partition_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "timestamp": {"name": "timestamp", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "message_id": {"name": "message_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "anonymous_id": {"name": "anonymous_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "channel": {"name": "channel", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "library_name": {"name": "library_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locale": {"name": "locale", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_url": {"name": "page_url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_referrer": {"name": "page_referrer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_title": {"name": "page_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "page_path": {"name": "page_path", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_tablet": {"name": "is_tablet", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_mobile": {"name": "is_mobile", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "is_desktop": {"name": "is_desktop", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "violated_event": {"name": "violated_event", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "event_name": {"name": "event_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "billingprovider": {"name": "billingprovider", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargecurrency": {"name": "chargecurrency", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "chargeprice": {"name": "chargeprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "groupid": {"name": "groupid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackage": {"name": "newpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oldpackagemonthlyprice": {"name": "oldpackagemonthlyprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "oldpackage": {"name": "oldpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "packagecategories": {"name": "packagecategories", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product": {"name": "product", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source": {"name": "source", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "zuorasubscriptionname": {"name": "zuorasubscriptionname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "grouptype": {"name": "grouptype", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgcreatedat": {"name": "orgcreatedat", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgemail": {"name": "orgemail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgisreviews": {"name": "orgisreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgissms": {"name": "orgissms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgistest": {"name": "orgistest", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgisvugc": {"name": "orgisvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgloyaltymonthlyprice": {"name": "orgloyaltymonthlyprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgorganizationkey": {"name": "orgorganizationkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgreviewsmonthlyprice": {"name": "orgreviewsmonthlyprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgreviewspackage": {"name": "orgreviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsmsmonthlyprice": {"name": "orgsmsmonthlyprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgstorecount": {"name": "orgstorecount", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgstorelimit": {"name": "orgstorelimit", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgvugcmonthlyprice": {"name": "orgvugcmonthlyprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "org_isloyalty": {"name": "org_isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "orgname": {"name": "orgname", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsignupcountry": {"name": "orgsignupcountry", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgloyaltypackage": {"name": "orgloyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgbillingproviders": {"name": "orgbillingproviders", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array"}, "orgvugcpackage": {"name": "orgvugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgsmspackage": {"name": "orgsmspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "orgpackageextensions": {"name": "orgpackageextensions", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "adminusername": {"name": "adminusername", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "appkey": {"name": "appkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "category": {"name": "category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "isinternaluser": {"name": "isinternaluser", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isloyalty": {"name": "isloyalty", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isreviews": {"name": "isreviews", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "issms": {"name": "issms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "isvugc": {"name": "isvugc", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "loyaltymerchantid": {"name": "loyaltymerchantid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackageid": {"name": "newpackageid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "oldpackageid": {"name": "oldpackageid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgid": {"name": "orgid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "orgkey": {"name": "orgkey", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platformplan": {"name": "platformplan", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform": {"name": "platform", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewspackage": {"name": "reviewspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smsuserid": {"name": "smsuserid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storedomain": {"name": "storedomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeid": {"name": "storeid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "storeplatformdomain": {"name": "storeplatformdomain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "userid": {"name": "userid", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vugcpackage": {"name": "vugcpackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "loyaltypackage": {"name": "loyaltypackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "smspackage": {"name": "smspackage", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "useremail": {"name": "useremail", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "newpackagemonthlyprice": {"name": "newpackagemonthlyprice", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "isoldsubscriptionltannual": {"name": "isoldsubscriptionltannual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "boolean"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "segment.subscription_ended_v2", "created_at": 1700082693.8572288}, "source.yoda.subscriptions__customer_journey.customer_journey_event": {"database": null, "schema": "customer_journey", "name": "customer_journey_event", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__customer_journey.customer_journey_event", "fqn": ["yoda", "subscriptions", "source", "subscriptions__customer_journey", "customer_journey_event"], "source_name": "subscriptions__customer_journey", "source_description": "", "loader": "", "identifier": "customer_journey_event", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_domain": {"name": "source_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_id": {"name": "source_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "event_type": {"name": "event_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_origin": {"name": "event_origin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_initiator": {"name": "event_initiator", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "event_time": {"name": "event_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "properties": {"name": "properties", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "customer_journey.customer_journey_event", "created_at": 1700082693.8574636}, "source.yoda.subscriptions__subscriptions_retention.cancelation_intent_event": {"database": null, "schema": "subscriptions_retention", "name": "cancelation_intent_event", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions_retention.cancelation_intent_event", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions_retention", "cancelation_intent_event"], "source_name": "subscriptions__subscriptions_retention", "source_description": "", "loader": "", "identifier": "cancelation_intent_event", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "event_origin": {"name": "event_origin", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "cancelation_reason_option_id": {"name": "cancelation_reason_option_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subscription_id": {"name": "subscription_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "variant_id": {"name": "variant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "product_id": {"name": "product_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "customer_id": {"name": "customer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "comment": {"name": "comment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "resolution": {"name": "resolution", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions_retention.cancelation_intent_event", "created_at": 1700082693.8576968}, "source.yoda.subscriptions__subscriptions_retention.cancelation_reason_option": {"database": null, "schema": "subscriptions_retention", "name": "cancelation_reason_option", "resource_type": "source", "package_name": "yoda", "path": "models/subscriptions/source/subscriptions__src.yml", "original_file_path": "models/subscriptions/source/subscriptions__src.yml", "unique_id": "source.yoda.subscriptions__subscriptions_retention.cancelation_reason_option", "fqn": ["yoda", "subscriptions", "source", "subscriptions__subscriptions_retention", "cancelation_reason_option"], "source_name": "subscriptions__subscriptions_retention", "source_description": "", "loader": "", "identifier": "cancelation_reason_option", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason_text": {"name": "reason_text", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_active": {"name": "is_active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["subscriptions"]}, "patch_path": null, "unrendered_config": {"tags": ["subscriptions"]}, "relation_name": "subscriptions_retention.cancelation_reason_option", "created_at": 1700082693.8578985}, "source.yoda.ugc__yotpoapiprod.reviews": {"database": null, "schema": "yotpoapiprod", "name": "reviews", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.reviews", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "reviews"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "reviews", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "source_app_key": {"name": "source_app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reviewer_display_name": {"name": "reviewer_display_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "content": {"name": "content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "score": {"name": "score", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deleted": {"name": "deleted", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "new": {"name": "new", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_type": {"name": "user_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "verified_buyer": {"name": "verified_buyer", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "archived": {"name": "archived", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "shop_owner": {"name": "shop_owner", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "twitter_pushed": {"name": "twitter_pushed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "facebook_pushed": {"name": "facebook_pushed", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_id": {"name": "review_source_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "votes_up": {"name": "votes_up", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "votes_down": {"name": "votes_down", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_type_id": {"name": "review_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_review_id": {"name": "source_review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "sentiment": {"name": "sentiment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "escalated": {"name": "escalated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.reviews", "created_at": 1700082693.8582153}, "source.yoda.ugc__yotpoapiprod.reviews_subjects": {"database": null, "schema": "yotpoapiprod", "name": "reviews_subjects", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.reviews_subjects", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "reviews_subjects"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "reviews_subjects", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subject_entity_type": {"name": "subject_entity_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "subject_id": {"name": "subject_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "deactivated": {"name": "deactivated", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.reviews_subjects", "created_at": 1700082693.858441}, "source.yoda.ugc__yotpoapiprod.images": {"database": null, "schema": "yotpoapiprod", "name": "images", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.images", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "images"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "images", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "image_file_name": {"name": "image_file_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_content_type": {"name": "image_content_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_file_size": {"name": "image_file_size", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "image_updated_at": {"name": "image_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "image_width": {"name": "image_width", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "image_height": {"name": "image_height", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imageable_id": {"name": "imageable_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "imageable_type": {"name": "imageable_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "yotpo_resource_id": {"name": "yotpo_resource_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "kind": {"name": "kind", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_fingerprint": {"name": "image_fingerprint", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "url": {"name": "url", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "published": {"name": "published", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.images", "created_at": 1700082693.8586767}, "source.yoda.ugc__yotpoapiprod.videos": {"database": null, "schema": "yotpoapiprod", "name": "videos", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.videos", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "videos"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "videos", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "videoable_id": {"name": "videoable_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "videoable_type": {"name": "videoable_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "video_key": {"name": "video_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "published": {"name": "published", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.videos", "created_at": 1700082693.8588748}, "source.yoda.ugc__yotpoapiprod.comments": {"database": null, "schema": "yotpoapiprod", "name": "comments", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.comments", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "comments"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "comments", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "commentable_id": {"name": "commentable_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "content": {"name": "content", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "commenter_display_name": {"name": "commenter_display_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "public": {"name": "public", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "source_comment_id": {"name": "source_comment_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "commentable_type": {"name": "commentable_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_type": {"name": "user_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "approved": {"name": "approved", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.comments", "created_at": 1700082693.8590875}, "source.yoda.ugc__yotpoapiprod.moderation_audits": {"database": null, "schema": "yotpoapiprod", "name": "moderation_audits", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.moderation_audits", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "moderation_audits"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "moderation_audits", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "action_type": {"name": "action_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reason": {"name": "reason", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.moderation_audits", "created_at": 1700082693.8593986}, "source.yoda.ugc__yotpoapiprod.votes": {"database": null, "schema": "yotpoapiprod", "name": "votes", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.votes", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "votes"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "votes", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "voteable_id": {"name": "voteable_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "vote": {"name": "vote", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "voteable_type": {"name": "voteable_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.votes", "created_at": 1700082693.8596125}, "source.yoda.ugc__yotpoapiprod.dirty_words": {"database": null, "schema": "yotpoapiprod", "name": "dirty_words", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.dirty_words", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "dirty_words"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "dirty_words", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "model_type": {"name": "model_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "model_id": {"name": "model_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "words": {"name": "words", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.dirty_words", "created_at": 1700082693.8598084}, "source.yoda.ugc__yotpoapiprod.review_contents": {"database": null, "schema": "yotpoapiprod", "name": "review_contents", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.review_contents", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "review_contents"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "review_contents", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_form_field_id": {"name": "review_form_field_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "int_value": {"name": "int_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "string_value": {"name": "string_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "text_value": {"name": "text_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.review_contents", "created_at": 1700082693.860019}, "source.yoda.ugc__yotpoapiprod.review_form_fields": {"database": null, "schema": "yotpoapiprod", "name": "review_form_fields", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.review_form_fields", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "review_form_fields"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "review_form_fields", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "display_variant": {"name": "display_variant", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "guidelines": {"name": "guidelines", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mandatory": {"name": "mandatory", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "options": {"name": "options", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "order": {"name": "order", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_form_field_type_id": {"name": "review_form_field_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_form_id": {"name": "review_form_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "slug": {"name": "slug", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sub_title": {"name": "sub_title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "title": {"name": "title", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.review_form_fields", "created_at": 1700082693.8603141}, "source.yoda.ugc__yotpoapiprod.review_form_field_types": {"database": null, "schema": "yotpoapiprod", "name": "review_form_field_types", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.review_form_field_types", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "review_form_field_types"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "review_form_field_types", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.review_form_field_types", "created_at": 1700082693.8605194}, "source.yoda.ugc__yotpoapiprod.review_types": {"database": null, "schema": "yotpoapiprod", "name": "review_types", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.review_types", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "review_types"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "review_types", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "description": {"name": "description", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.review_types", "created_at": 1700082693.8607123}, "source.yoda.ugc__yotpoapiprod.users": {"database": null, "schema": "yotpoapiprod", "name": "users", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.users", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "users"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "users", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "first_name": {"name": "first_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_name": {"name": "last_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bio": {"name": "bio", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "privilege_type_id": {"name": "privilege_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "active": {"name": "active", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "slug": {"name": "slug", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "temp_email": {"name": "temp_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "featured_image_id": {"name": "featured_image_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "social_image": {"name": "social_image", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "social_score": {"name": "social_score", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "yotpo_score": {"name": "yotpo_score", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "double"}, "company": {"name": "company", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "position": {"name": "position", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "encrypted_password": {"name": "encrypted_password", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reset_password_token": {"name": "reset_password_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "reset_password_sent_at": {"name": "reset_password_sent_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "remember_created_at": {"name": "remember_created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sign_in_count": {"name": "sign_in_count", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "current_sign_in_at": {"name": "current_sign_in_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_sign_in_at": {"name": "last_sign_in_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "current_sign_in_ip": {"name": "current_sign_in_ip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "last_sign_in_ip": {"name": "last_sign_in_ip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "confirmation_token": {"name": "confirmation_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "confirmed_at": {"name": "confirmed_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "confirmation_sent_at": {"name": "confirmation_sent_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "unconfirmed_email": {"name": "unconfirmed_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "failed_attempts": {"name": "failed_attempts", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "unlock_token": {"name": "unlock_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "locked_at": {"name": "locked_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "phone": {"name": "phone", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sign_up_ip": {"name": "sign_up_ip", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sign_up_country": {"name": "sign_up_country", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "masked_pii": {"name": "masked_pii", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "password_updated_at": {"name": "password_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.users", "created_at": 1700082693.861006}, "source.yoda.ugc__yotpoapiprod.anonymous_users": {"database": null, "schema": "yotpoapiprod", "name": "anonymous_users", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.anonymous_users", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "anonymous_users"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "anonymous_users", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "email": {"name": "email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "display_name": {"name": "display_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "token": {"name": "token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_id": {"name": "user_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.anonymous_users", "created_at": 1700082693.8613737}, "source.yoda.ugc__yotpoapiprod.review_source_types": {"database": null, "schema": "yotpoapiprod", "name": "review_source_types", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.review_source_types", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "review_source_types"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "review_source_types", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.review_source_types", "created_at": 1700082693.861631}, "source.yoda.ugc__yotpoapiprod.review_metadatas": {"database": null, "schema": "yotpoapiprod", "name": "review_metadatas", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.review_metadatas", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "review_metadatas"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "review_metadatas", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "metadata_type_id": {"name": "metadata_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "metadata_type_value": {"name": "metadata_type_value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.review_metadatas", "created_at": 1700082693.861882}, "source.yoda.ugc__yotpoapiprod.reminders": {"database": null, "schema": "yotpoapiprod", "name": "reminders", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.reminders", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "reminders"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "reminders", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "days_from_purchase": {"name": "days_from_purchase", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "subject": {"name": "subject", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "body": {"name": "body", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "header": {"name": "header", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "bottom": {"name": "bottom", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mail_interval": {"name": "mail_interval", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "max_products": {"name": "max_products", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "didnt_get_product_link": {"name": "didnt_get_product_link", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "enabled": {"name": "enabled", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_submission_type_id": {"name": "email_submission_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "formless_call_to_action": {"name": "formless_call_to_action", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.reminders", "created_at": 1700082693.8621106}, "source.yoda.ugc__yotpoapiprod.review_order_line": {"database": null, "schema": "yotpoapiprod", "name": "review_order_line", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.review_order_line", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "review_order_line"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "review_order_line", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "order_line_id": {"name": "order_line_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "product_app_variant_id": {"name": "product_app_variant_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.review_order_line", "created_at": 1700082693.8623624}, "source.yoda.ugc__yotpoapiprod.tags_to_reviews": {"database": null, "schema": "yotpoapiprod", "name": "tags_to_reviews", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.tags_to_reviews", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "tags_to_reviews"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "tags_to_reviews", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_tag_id": {"name": "review_tag_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_id": {"name": "review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.tags_to_reviews", "created_at": 1700082693.8625748}, "source.yoda.ugc__yotpoapiprod.review_tags": {"database": null, "schema": "yotpoapiprod", "name": "review_tags", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.review_tags", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "review_tags"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "review_tags", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.review_tags", "created_at": 1700082693.8627703}, "source.yoda.ugc__yotpoapiprod.reviews_incentivized": {"database": null, "schema": "yotpoapiprod", "name": "reviews_incentivized", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.reviews_incentivized", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "reviews_incentivized"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "reviews_incentivized", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reviews_incentivized_type_id": {"name": "reviews_incentivized_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.reviews_incentivized", "created_at": 1700082693.8629696}, "source.yoda.ugc__yotpoapiprod.review_request_tokens": {"database": null, "schema": "yotpoapiprod", "name": "review_request_tokens", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.review_request_tokens", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "review_request_tokens"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "review_request_tokens", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "token": {"name": "token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "caller_type": {"name": "caller_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "caller_id": {"name": "caller_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "repliable_type": {"name": "repliable_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "repliable_identifier": {"name": "repliable_identifier", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_source_type_id": {"name": "review_source_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "review_id": {"name": "review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.review_request_tokens", "created_at": 1700082693.863221}, "source.yoda.ugc__yotpoapiprod.email_authentications": {"database": null, "schema": "yotpoapiprod", "name": "email_authentications", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.email_authentications", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "email_authentications"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "email_authentications", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"partitioning_time": {"name": "partitioning_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "caller_id": {"name": "caller_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_type": {"name": "caller_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "repliable_id": {"name": "repliable_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "repliable_type": {"name": "repliable_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "token": {"name": "token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "users_email_control_id": {"name": "users_email_control_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.email_authentications", "created_at": 1700082693.8634436}, "source.yoda.ugc__yotpoapiprod.users_email_controls": {"database": null, "schema": "yotpoapiprod", "name": "users_email_controls", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.users_email_controls", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "users_email_controls"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "users_email_controls", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_id": {"name": "account_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "user_email": {"name": "user_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_type_id": {"name": "email_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "formless": {"name": "formless", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered_at": {"name": "delivered_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "date_to_deliver": {"name": "date_to_deliver", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "invalidated_at": {"name": "invalidated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "in_progress": {"name": "in_progress", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.users_email_controls", "created_at": 1700082693.8636625}, "source.yoda.ugc__yotpoapiprod.email_types": {"database": null, "schema": "yotpoapiprod", "name": "email_types", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.email_types", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "email_types"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "email_types", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "name": {"name": "name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "require_authentication": {"name": "require_authentication", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "reply_type": {"name": "reply_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "b2c": {"name": "b2c", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "template": {"name": "template", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.email_types", "created_at": 1700082693.8638797}, "source.yoda.ugc__yotpoapiprod.review_request_sms": {"database": null, "schema": "yotpoapiprod", "name": "review_request_sms", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.review_request_sms", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "review_request_sms"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "review_request_sms", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_request_token": {"name": "review_request_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_email": {"name": "user_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "sms_type_id": {"name": "sms_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_id": {"name": "caller_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_type": {"name": "caller_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "delivered_at": {"name": "delivered_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "sms_status_type_id": {"name": "sms_status_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.review_request_sms", "created_at": 1700082693.8640985}, "source.yoda.ugc__yotpoapiprod.review_request_emails": {"database": null, "schema": "yotpoapiprod", "name": "review_request_emails", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__yotpoapiprod.review_request_emails", "fqn": ["yoda", "ugc", "source", "ugc__yotpoapiprod", "review_request_emails"], "source_name": "ugc__yotpoapiprod", "source_description": "", "loader": "", "identifier": "review_request_emails", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_request_token": {"name": "review_request_token", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_name": {"name": "user_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "user_email": {"name": "user_email", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "email_type_id": {"name": "email_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "email_submission_type_id": {"name": "email_submission_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_id": {"name": "caller_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "caller_type": {"name": "caller_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "products_app_id": {"name": "products_app_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "delivered_at": {"name": "delivered_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "date_to_deliver": {"name": "date_to_deliver", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "creation_context": {"name": "creation_context", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "yotpoapiprod.review_request_emails", "created_at": 1700082693.8644533}, "source.yoda.ugc__default.mongo_gallery_media": {"database": null, "schema": "default", "name": "mongo_gallery_media", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__default.mongo_gallery_media", "fqn": ["yoda", "ugc", "source", "ugc__default", "mongo_gallery_media"], "source_name": "ugc__default", "source_description": "", "loader": "", "identifier": "mongo_gallery_media", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"_id": {"name": "_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "entry_id": {"name": "entry_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "gallery_id": {"name": "gallery_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "media_id": {"name": "media_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "media_type": {"name": "media_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "mention": {"name": "mention", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct<_id:string,business_id:string,comment_id:string,media_id:string>"}, "origin_gm_id": {"name": "origin_gm_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "permission_request": {"name": "permission_request", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct<_id:string,user_name:string,approval_hash_tag:string,type:string,request:struct<_id:string,status:string,processed_at:string>,thanks_reply:struct<_id:string,status:string,processed_at:string>>"}, "published_at": {"name": "published_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "review_syndication": {"name": "review_syndication", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "show_in_new": {"name": "show_in_new", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "source_account_app_key": {"name": "source_account_app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "starred": {"name": "starred", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "status": {"name": "status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "syndicated_image_id": {"name": "syndicated_image_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "tagged_products": {"name": "tagged_products", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "array>"}, "text": {"name": "text", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "thumbs_down": {"name": "thumbs_down", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "thumbs_up": {"name": "thumbs_up", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "video": {"name": "video", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "struct<_id:string,duration:string,entry_id:string,hosting_status:string,original_sized_thumbnail_url:string,thumbnail_url:string,url:string>"}, "vms_syndication": {"name": "vms_syndication", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "default.mongo_gallery_media", "created_at": 1700082693.8647134}, "source.yoda.ugc__default.metadata_types": {"database": null, "schema": "default", "name": "metadata_types", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__default.metadata_types", "fqn": ["yoda", "ugc", "source", "ugc__default", "metadata_types"], "source_name": "ugc__default", "source_description": "", "loader": "", "identifier": "metadata_types", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "value": {"name": "value", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "default.metadata_types", "created_at": 1700082693.8649054}, "source.yoda.ugc__default.shares": {"database": null, "schema": "default", "name": "shares", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__default.shares", "fqn": ["yoda", "ugc", "source", "ugc__default", "shares"], "source_name": "ugc__default", "source_description": "", "loader": "", "identifier": "shares", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "review_id": {"name": "review_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "post_id": {"name": "post_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "image_id": {"name": "image_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "social_network_id": {"name": "social_network_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "metric1": {"name": "metric1", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "metric2": {"name": "metric2", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "metric3": {"name": "metric3", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "social_push_type_id": {"name": "social_push_type_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "signature": {"name": "signature", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "default.shares", "created_at": 1700082693.8651655}, "source.yoda.ugc__default.fact_reviews_stores_population_daily": {"database": null, "schema": "default", "name": "fact_reviews_stores_population_daily", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__default.fact_reviews_stores_population_daily", "fqn": ["yoda", "ugc", "source", "ugc__default", "fact_reviews_stores_population_daily"], "source_name": "ugc__default", "source_description": "", "loader": "", "identifier": "fact_reviews_stores_population_daily", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"date": {"name": "date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "month": {"name": "month", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "app_key": {"name": "app_key", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "organization_id": {"name": "organization_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "platform_name": {"name": "platform_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "platform_group": {"name": "platform_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_domain": {"name": "store_domain", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "store_name": {"name": "store_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_cs_segment": {"name": "account_cs_segment", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_main_csm_name": {"name": "account_main_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_main_csm_sf_user_gk": {"name": "account_main_csm_sf_user_gk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "account_csm_name": {"name": "account_csm_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "account_csm_sf_user_gk": {"name": "account_csm_sf_user_gk", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_orders_l365d": {"name": "is_orders_l365d", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "latest_order_date": {"name": "latest_order_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "store_created_date": {"name": "store_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "store_reviews_enablement_date": {"name": "store_reviews_enablement_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "store_reviews_enablement_period": {"name": "store_reviews_enablement_period", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "uninstalled_date": {"name": "uninstalled_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "date"}, "package": {"name": "package", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_group": {"name": "package_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_type": {"name": "package_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "package_category": {"name": "package_category", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "is_ss": {"name": "is_ss", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_annual": {"name": "is_annual", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_created_date": {"name": "is_created_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_reviews_enablement_date": {"name": "is_reviews_enablement_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_uninstalled_date": {"name": "is_uninstalled_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "is_visited_b2b_page": {"name": "is_visited_b2b_page", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "default.fact_reviews_stores_population_daily", "created_at": 1700082693.8654573}, "source.yoda.ugc__static.ugc_plan_group_change_mapping": {"database": null, "schema": "static", "name": "ugc_plan_group_change_mapping", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__static.ugc_plan_group_change_mapping", "fqn": ["yoda", "ugc", "source", "ugc__static", "ugc_plan_group_change_mapping"], "source_name": "ugc__static", "source_description": "", "loader": "", "identifier": "ugc_plan_group_change_mapping", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"previous_day_plan_group": {"name": "previous_day_plan_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "current_day_plan_group": {"name": "current_day_plan_group", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "plan_group_change_type": {"name": "plan_group_change_type", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "dwh_updated_at": {"name": "dwh_updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "static.ugc_plan_group_change_mapping", "created_at": 1700082693.8656542}, "source.yoda.ugc__retailers_syndication.syndicated_accounts": {"database": null, "schema": "retailers_syndication", "name": "syndicated_accounts", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__retailers_syndication.syndicated_accounts", "fqn": ["yoda", "ugc", "source", "ugc__retailers_syndication", "syndicated_accounts"], "source_name": "ugc__retailers_syndication", "source_description": "", "loader": "", "identifier": "syndicated_accounts", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "store_id": {"name": "store_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "retailer_id": {"name": "retailer_id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "last_uploaded_date": {"name": "last_uploaded_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "last_full_feed_date": {"name": "last_full_feed_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "account_status": {"name": "account_status", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "integration_start_date": {"name": "integration_start_date", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "feed_ftp_upload_address": {"name": "feed_ftp_upload_address", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "report_ftp_download_address": {"name": "report_ftp_download_address", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "retailers_syndication.syndicated_accounts", "created_at": 1700082693.8658757}, "source.yoda.ugc__retailers_syndication.retailer": {"database": null, "schema": "retailers_syndication", "name": "retailer", "resource_type": "source", "package_name": "yoda", "path": "models/ugc/source/ugc__src.yml", "original_file_path": "models/ugc/source/ugc__src.yml", "unique_id": "source.yoda.ugc__retailers_syndication.retailer", "fqn": ["yoda", "ugc", "source", "ugc__retailers_syndication", "retailer"], "source_name": "ugc__retailers_syndication", "source_description": "", "loader": "", "identifier": "retailer", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "", "columns": {"upsolver_schema_version": {"name": "upsolver_schema_version", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "int"}, "id": {"name": "id", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "bigint"}, "processing_time": {"name": "processing_time", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "ts_ms": {"name": "ts_ms", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "retailer_name": {"name": "retailer_name", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "file_name_format": {"name": "file_name_format", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "string"}, "created_at": {"name": "created_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}, "updated_at": {"name": "updated_at", "description": "", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": [], "type": "timestamp"}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true, "tags": ["ugc"]}, "patch_path": null, "unrendered_config": {"tags": ["ugc"]}, "relation_name": "retailers_syndication.retailer", "created_at": 1700082693.8660738}}, "macros": {"macro.yoda.generate_schema_name": {"name": "generate_schema_name", "resource_type": "macro", "package_name": "yoda", "path": "macros/generate_schema_name.sql", "original_file_path": "macros/generate_schema_name.sql", "unique_id": "macro.yoda.generate_schema_name", "macro_sql": "{% macro generate_schema_name(custom_schema_name, node) -%}\n {{ dbt_data_applications.generate_schema_name_env(custom_schema_name, node) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.generate_schema_name_env"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.627446, "supported_languages": null}, "macro.yoda.generate_alias_name": {"name": "generate_alias_name", "resource_type": "macro", "package_name": "yoda", "path": "macros/get_custom_alias.sql", "original_file_path": "macros/get_custom_alias.sql", "unique_id": "macro.yoda.generate_alias_name", "macro_sql": "{% macro generate_alias_name(custom_alias_name=none, node=none) -%}\n {{ dbt_data_applications.generate_alias_name_env(custom_alias_name, node) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.generate_alias_name_env"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.628082, "supported_languages": null}, "macro.yoda.msck_repair": {"name": "msck_repair", "resource_type": "macro", "package_name": "yoda", "path": "macros/msck_repair.sql", "original_file_path": "macros/msck_repair.sql", "unique_id": "macro.yoda.msck_repair", "macro_sql": "{% macro msck_repair(tables_list) %}\n {% for table_name in tables_list %}\n {% set command = 'MSCK REPAIR TABLE ' ~ table_name %}\n {{ run_query(command) }}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.6288674, "supported_languages": null}, "macro.yoda.analytics_convert_to_usd": {"name": "analytics_convert_to_usd", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/analytics_convert_to_usd/analytics_convert_to_usd.sql", "original_file_path": "macros/analytics/analytics_convert_to_usd/analytics_convert_to_usd.sql", "unique_id": "macro.yoda.analytics_convert_to_usd", "macro_sql": "{% macro analytics_convert_to_usd(table_name, date, currency_symbol, amount) %}\n\n{{amount}}/(SELECT FIRST(currency_exchange.conversion_rate)\n FROM {{ ref('platform_stg__currency_exchange_rate') }} AS currency_exchange \n WHERE {{table_name}}.{{date}} = currency_exchange.currency_exchange_date \n AND {{table_name}}.{{currency_symbol}} = currency_exchange.to_currency_symbol)\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "A macro that converts a currency amount into USD.", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/analytics/analytics_convert_to_usd/analytics_convert_to_usd.yml", "arguments": [{"name": "table_name", "type": "string", "description": "The table name/alias in the query, from which the date, currency symbol."}, {"name": "date", "type": "date", "description": "column name which includes the exchange rate date."}, {"name": "currency_symbol", "type": "string", "description": "column name which includes the original currency symbol."}, {"name": "amount", "type": "double", "description": "column name which includes the amount in the original currency."}], "created_at": 1700082635.6164742, "supported_languages": null}, "macro.yoda.analytics_selective_merge": {"name": "analytics_selective_merge", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/analytics_selective_merge/analytics_selective_merge.sql", "original_file_path": "macros/analytics/analytics_selective_merge/analytics_selective_merge.sql", "unique_id": "macro.yoda.analytics_selective_merge", "macro_sql": "{% macro analytics_selective_merge(inc_model, full_model, join_key) %}\n\n{%- set join_key_lower = [] -%}\n{%- for col in join_key -%}\n {{- join_key_lower.append(col.lower()) or \"\" -}}\n{%- endfor -%}\n{%- set full_columns = adapter.get_columns_in_relation(ref(full_model)) -%}\n{%- set full_columns_names = full_columns | map(attribute='name') | list -%}\n{%- set inc_columns = adapter.get_columns_in_relation(ref(inc_model)) -%}\n{%- set inc_columns_names = inc_columns | map(attribute='name') | list -%}\n{%- set inc_only_columns_names = [] -%}\n{%- for col in inc_columns_names -%}\n {%- if col not in full_columns_names -%}\n {{- inc_only_columns_names.append(col) or \"\" -}}\n {%- endif -%}\n{%- endfor -%}\n\n\nWITH import_inc_model AS (\n\n SELECT * FROM {{ ref(inc_model) }}\n\n), import_full_model AS (\n\n SELECT * FROM {{ ref(full_model) }}\n\n), selective_merge AS (\n\n SELECT\n {%- for col in join_key_lower %}\n NULLIF(NVL(full_model.{{col}}, inc_model.{{col}}), '') AS {{col}},\n {%- endfor -%}\n {%- for col in full_columns_names %}\n {%- if col not in join_key_lower %}\n NULLIF(full_model.{{col}}, '') AS {{col}},\n {%- endif %}\n {%- endfor -%}\n {%- for col in inc_only_columns_names -%}\n {%- if not loop.last %}\n NULLIF(inc_model.{{col}}, '') AS {{col}},\n {%- else %}\n NULLIF(inc_model.{{col}}, '') AS {{col}}\n {%- endif %}\n {%- endfor %}\n FROM import_inc_model AS inc_model\n FULL JOIN import_full_model AS full_model\n {% for col in join_key_lower -%}\n {%- if loop.index == 1 -%}\n ON\n {%- else %}\n AND\n {%- endif -%}\n {{\" \"}}inc_model.{{col}} = full_model.{{col}}\n {%- endfor %}\n\n),\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "A macro that creates a selective merge for two tables, prioritizing the 'full' table.\nThis macro takes all fields from the 'full' table and all the fields from the 'incremental' table except for those that\nare also in the 'full' table. It perofrms an outer join on the tables based on givven list of keys.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/analytics/analytics_selective_merge/analytics_selective_merge.yml", "arguments": [{"name": "inc_model", "type": "string", "description": "The incremental model name."}, {"name": "full_model", "type": "string", "description": "The full model name."}, {"name": "join_key", "type": "list", "description": "The list of columns to use in the join clause."}], "created_at": 1700082635.6198478, "supported_languages": null}, "macro.yoda.analytics_snapshot_scd": {"name": "analytics_snapshot_scd", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/analytics_snapshot_scd/analytics_snapshot_scd.sql", "original_file_path": "macros/analytics/analytics_snapshot_scd/analytics_snapshot_scd.sql", "unique_id": "macro.yoda.analytics_snapshot_scd", "macro_sql": "{% macro analytics_snapshot_scd(source_model, unique_key, tracked_columns, updated_at, add_dwh_updated_at=True) %}\n\n {{ \n config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append'\n )\n }}\n\n{%- if unique_key is string -%}\n {%- set unique_key = unique_key.split(',') -%}\n{%- endif -%}\n\n{%- if tracked_columns is string -%}\n {%- set tracked_columns = tracked_columns.split(',') -%}\n{%- endif -%}\n\n{% set unique_key_concat = unique_key|join(', ') -%}\n{% set tracked_columns_concat = tracked_columns|join(', ') -%}\n{% set all_columns_concat_source = unique_key_concat ~ ', ' ~ tracked_columns_concat ~ ', ' ~ updated_at -%}\n{% set all_columns_concat_target = unique_key_concat ~ ', ' ~ tracked_columns_concat ~ ', updated_at' -%}\n{% set lst_all_columns_source = all_columns_concat_source.split(', ') -%}\n\n{%- if add_dwh_updated_at -%}\n {%- set dwh_updated_at_col = ',\n CURRENT_TIMESTAMP AS dwh_updated_at ' -%}\n{%- else -%}\n {%- set dwh_updated_at_col = '' -%}\n{%- endif -%}\n\nWITH \n {% if is_incremental() -%}\n version_ranking AS (\n SELECT \n *,\n ROW_NUMBER() OVER (PARTITION BY {{unique_key_concat}} ORDER BY updated_at DESC) AS version_rank\n FROM {{ this }}\n ),\n\n latest_version AS (\n SELECT {{ all_columns_concat_target }}\n FROM version_ranking\n WHERE version_rank = 1\n ),\n {%- endif %}\n\n incremental_calculation AS (\n SELECT \n {% for col in lst_all_columns_source -%}\n {{ 'source_table.'+col+', ' }}\n {%- endfor %}\n {%- if is_incremental() %}\n IF(source_table.{{updated_at}} > NVL(latest_version.updated_at,TIMESTAMP('1900-01-01'))\n AND ({% for col in tracked_columns %}\n {% if loop.index != 1 -%}\n OR\n {%- endif %}\n NVL(source_table.{{col}},'~~') <> NVL(latest_version.{{col}},'~~')\n {%- endfor %}\n ),1,0) AS is_new_update\n {%- else %}\n 1 AS is_new_update\n {%- endif %}\n FROM {{ ref(source_model) }} AS source_table\n {%- if is_incremental() %}\n LEFT JOIN latest_version\n {% for col in unique_key -%}\n {% if loop.index == 1 -%}\n ON\n {%- else %}\n AND\n {%- endif %}\n source_table.{{col}} = latest_version.{{col}}\n {%- endfor %}\n {%- endif %}\n )\n\n SELECT\n {{ all_columns_concat_source }} AS updated_at{{ dwh_updated_at_col }}\n FROM incremental_calculation\n WHERE is_new_update = 1\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental"]}, "description": "A macro that records changes to a mutable table over time (Slowly Changing Dimension - Type 2).\nThis macro inserts new rows to the target table when there is a change for the defined key. \nThe indication of a new row occurs when two conditions are met for the defined key:\n1. The value in the update_at field (the row's last update time) in the source table is greater than its value in the destination table. \n2. At least one of the values of the tracked_columns in the source table is different from its value in the target table.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/analytics/analytics_snapshot_scd/analytics_snapshot_scd.yml", "arguments": [{"name": "source_model", "type": "string", "description": "The source model name."}, {"name": "unique_key", "type": "list", "description": "The unique key columns list."}, {"name": "tracked_columns", "type": "list", "description": "The tracked columns list."}, {"name": "updated_at", "type": "timestamp", "description": "Column name which includes the amount in the row's last update time."}, {"name": "add_dwh_updated_at", "type": "boolean", "description": "An option to add 'dwh_updated_at' column (True) which includes the record's writing timestamp. Default - True."}], "created_at": 1700082635.6241395, "supported_languages": null}, "macro.yoda.analytics_union": {"name": "analytics_union", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/analytics_union/analytics_union.sql", "original_file_path": "macros/analytics/analytics_union/analytics_union.sql", "unique_id": "macro.yoda.analytics_union", "macro_sql": "{% macro analytics_union(models=[], mandatory_columns=[], optional_columns=[], union_all=True, distinct=False, source_col=True, filter='') %}\n{#- preparation variables -#}\n {%- set union_str = 'UNION ALL\\n' if union_all else 'UNION\\n' -%}\n {%- set distinct_str = 'DISTINCT ' if distinct else '' -%}\n {%- set mandatory_columns_concat = mandatory_columns|join(', ') ~ \", \" if mandatory_columns|length > 0 -%}\n {%- set optional_columns_len = optional_columns|length -%}\n{#- query generation from each model -#}\n {%- for source in models -%}\n {%- if optional_columns_len > 0 -%}\n {%- set source_columns = adapter.get_columns_in_relation(ref(source)) -%}\n {%- set source_cols_names = source_columns | map(attribute='name') | list -%}\n {%- set adjusted_optional_cols = [] -%}\n {% for optional_col in optional_columns -%}\n {% if optional_col[0] in source_cols_names %}\n {{ adjusted_optional_cols.append(optional_col[0]) or \"\" }}\n {%- else -%}\n {{ adjusted_optional_cols.append(\"CAST(NULL AS \" + optional_col[1] + \") AS \" + optional_col[0]) or \"\" }}\n {%- endif -%}\n {%- endfor %}\n {% set optional_columns_concat = adjusted_optional_cols|join(', ') ~ \", \" -%}\n {% set all_columns = mandatory_columns_concat ~ optional_columns_concat -%}\n {%- else -%}\n {% set all_columns = mandatory_columns_concat -%}\n {%- endif -%}\n SELECT {{distinct_str}}{{all_columns}}{{\"'\"~source~\"' AS source, \" if source_col}}CURRENT_TIMESTAMP AS dwh_updated_at\n FROM {{ref(source)}}\n {{ filter ~ '\\n' if filter != '' }}\n {{union_str if not loop.last }}\n {%- endfor %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "A macro that unions select queries from a list of models.\nThis macro allows you to enter a list of mandatory columns (must exist in all the selected models), as well as a list of optional columns, in case they do not exist in some of the selected models, a null value will return.\nAlso, the function allows: switching between union and union all, adding DISTINCT to the queries, adding a source column that will contain the name of the record's source model, and an option to filter by writing a where clause.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/analytics/analytics_union/analytics_union.yml", "arguments": [{"name": "models", "type": "list", "description": "List of models (Must enter at least 1)."}, {"name": "mandatory_columns", "type": "list", "description": "List of mandatory columns."}, {"name": "optional_columns", "type": "list", "description": "List of tuples which includes pairs of optional columns and their type. E.g, optional_columns=[(name, type),(name, type)]."}, {"name": "union_all", "type": "boolean", "description": "Switch between 'UNION ALL' (True) and 'UNION' (False). Default - True."}, {"name": "distinct", "type": "boolean", "description": "Option to add 'DISTINCT' (True). Default - False."}, {"name": "source_col", "type": "boolean", "description": "Option to add a source column that will contain the name of the record's source model. Default - True."}, {"name": "filter", "type": "string", "description": "Option to add a SQL where clause."}], "created_at": 1700082635.630194, "supported_languages": null}, "macro.yoda.analytics_unpivot": {"name": "analytics_unpivot", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/analytics_unpivot/analytics_unpivot.sql", "original_file_path": "macros/analytics/analytics_unpivot/analytics_unpivot.sql", "unique_id": "macro.yoda.analytics_unpivot", "macro_sql": "{%- macro analytics_unpivot(source_table, group_by_fields, casting_type, where_clause, extra_fields_names, unpivot_fields_mapping) -%}\n\n {%- set unpivot_columns_list = [] -%}\n {%- for field in unpivot_fields_mapping -%}\n {%- set field_agg = (casting_type ~ '(' ~ field['agg_function'] ~ '(' ~ field['field_name'] ~ '))') -%}\n {%- do unpivot_columns_list.append(([field_agg] + field['extra_fields']) | join(',')) -%}\n {%- endfor -%}\n\n {%- set group_by_numbers_str = range(1,group_by_fields|length+1) | list | join (',') -%}\n\n SELECT\n {{ group_by_fields | join(',\\n ') }},\n STACK({{ unpivot_fields_mapping|length }},\n {{ unpivot_columns_list | join(',\\n ') }})\n AS ({{ extra_fields_names | join(', ') }})\n FROM {{ source_table }}\n {% if where_clause -%}\n {{ where_clause }}\n {%- endif %}\n GROUP BY {{ group_by_numbers_str }}\n \n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "This macro generates SQL snippet for unpivoting a table.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/analytics/analytics_unpivot/analytics_unpivot.yml", "arguments": [{"name": "source_table", "type": "string", "description": "Name of the model to select from, e.g: 'analytics___utils_stg__unit_test_generic'. Mandatory variable."}, {"name": "group_by_fields", "type": "list", "description": "List of fields to group by from the source table, e.g: ['app_key', 'date']. Mandatory variable."}, {"name": "casting_type", "type": "string", "description": "Data type to be used for casting the unpivoted target column, e.g: 'STRING'. Mandatory variable."}, {"name": "where_clause", "type": "string", "description": "Hard coded clause to be added at the before the group by phrase. Optional variable."}, {"name": "extra_fields_names", "type": "list", "description": "List of fields to be added alongside the unpivoted field, e.g: ['product','is_write_to_salesforce']. Mandatory variable - first item is the name of the unpivoted column."}, {"name": "unpivot_fields_mapping", "type": "list", "description": "List of dictionaries, where each dictionary that map a column to be unpivoted from the source table, using 3 keys: 'field_name' - column name is source table, 'agg_function' - aggregation to use for that field, 'extra_fields' - list of values for the non aggregated extra fields, e.g:[{'field_name':'ugc_enablement_date','agg_function':'MAX','extra_fields':['UGC', 1]}]. Mandatory variable."}], "created_at": 1700082635.635499, "supported_languages": null}, "macro.yoda.test_analytics_unpivot": {"name": "test_analytics_unpivot", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/analytics_unpivot/unit_test/test_analytics_unpivot.sql", "original_file_path": "macros/analytics/analytics_unpivot/unit_test/test_analytics_unpivot.sql", "unique_id": "macro.yoda.test_analytics_unpivot", "macro_sql": "{% macro test_analytics_unpivot() %}\n {% do test_analytics_unpivot_general() %}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.test_analytics_unpivot_general"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.651351, "supported_languages": null}, "macro.yoda.test_analytics_unpivot_general": {"name": "test_analytics_unpivot_general", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/analytics_unpivot/unit_test/test_analytics_unpivot.sql", "original_file_path": "macros/analytics/analytics_unpivot/unit_test/test_analytics_unpivot.sql", "unique_id": "macro.yoda.test_analytics_unpivot_general", "macro_sql": "{% macro test_analytics_unpivot_general() -%}\n {% set result = analytics_unpivot(\n source_table = ref('analytics___utils_stg__unit_test_generic'),\n group_by_fields = ['field1','field2'],\n casting_type = 'STRING',\n where_clause = 'WHERE x > 1',\n extra_fields_names = ['value', 'product', 'is_write_to_salesforce'],\n unpivot_fields_mapping = [{'field_name':'field3','agg_function':'MAX','extra_fields':[\"'UGC'\", 1]},\n {'field_name':'field4','agg_function':'MIN','extra_fields':[\"'SMS'\", 0]}]\n ) %}\n {%- set expected_result %}\n\n SELECT\n field1,\n field2,\n STACK(2,\n STRING(MAX(field3)),'UGC',1,\n STRING(MIN(field4)),'SMS',0)\n AS (value, product, is_write_to_salesforce)\n FROM {{ref('analytics___utils_stg__unit_test_generic')}}\n WHERE x > 1\n GROUP BY 1,2\n {%- endset -%}\n {{ dbt_unittest.assert_equals(result, expected_result) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.analytics_unpivot", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.6530468, "supported_languages": null}, "macro.yoda.analytics_wts_daily_diff": {"name": "analytics_wts_daily_diff", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/analytics_wts_daily_diff/analytics_wts_daily_diff.sql", "original_file_path": "macros/analytics/analytics_wts_daily_diff/analytics_wts_daily_diff.sql", "unique_id": "macro.yoda.analytics_wts_daily_diff", "macro_sql": "{% macro analytics_wts_daily_diff(snapshot_model, columns, key_list) %}\n\n{{ config(\n materialized=dbt_data_applications.get_table_materialization('view', 'view'),\n )\n}}\n\nWITH diff_update_rank AS (\n\n SELECT\n *,\n ROW_NUMBER() OVER (PARTITION BY \n {%- for col in key_list -%}\n {%- if not loop.last -%}\n {{\" \"}}{{col}}{{\" \"}},\n {%- else -%}\n {{\" \"}}{{col}}{{\" \"}}\n {%- endif -%}\n {%- endfor -%}\n ORDER BY dwh_updated_at DESC) AS update_rank\n FROM {{ ref(snapshot_model) }}\n WHERE DATE(dwh_updated_at) = CURRENT_DATE\n\n)\n\n SELECT\n {%- for col in columns -%}\n {%- if not loop.last %}\n {{col}},\n {%- else %}\n {{col}}\n {%- endif %}\n {%- endfor %}\n FROM diff_update_rank\n WHERE update_rank = 1\n\n\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization"]}, "description": "A macro that creates a view over write to salesforce snapshot model, and contains the latest version of each ID for the current date.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/analytics/analytics_wts_daily_diff/analytics_wts_daily_diff.yml", "arguments": [{"name": "snapshot_model", "type": "string", "description": "The snapshot model name."}, {"name": "columns", "type": "list", "description": "The list of columns to pull."}, {"name": "key_list", "type": "list", "description": "The list of columns to use as keys for the ranking."}], "created_at": 1700082635.638507, "supported_languages": null}, "macro.yoda.product_metrics_expected_schema": {"name": "product_metrics_expected_schema", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/product_metrics/product_metrics_functions.sql", "original_file_path": "macros/analytics/product_metrics/product_metrics_functions.sql", "unique_id": "macro.yoda.product_metrics_expected_schema", "macro_sql": "{%- macro product_metrics_expected_schema(source_list) -%}\n\n {%- set expected_schema_mapping = [] -%}\n {%- for source in source_list -%} {# map each field with its data type from origin table for casting purposes #}\n {%- set source_field_mapping = column_type_mapping(source['source_table']) -%}\n {%- for source_field, target_field in source['fields_mapping'].items() -%}\n {%- if source_field in source_field_mapping.keys() -%}\n {%- do expected_schema_mapping.append({'source_field': source_field, 'target_field': target_field, 'data_type': source_field_mapping[source_field]}) -%}\n {%- else -%}\n {%- do expected_schema_mapping.append({'source_field': source_field, 'target_field': target_field, 'data_type': 'string'}) -%}\n {%- endif -%}\n {%- endfor -%}\n {%- endfor -%}\n\n {{ return(expected_schema_mapping) }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.yoda.column_type_mapping"]}, "description": "This macro maps product metric fields and type based on their source.\nIt returns a lsit of dictionaries, each dictionary represents a field and holds: 'source_field', 'target_field', 'data_type'.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/analytics/product_metrics/product_metrics_functions.yml", "arguments": [{"name": "source_list", "type": "list", "description": "List of dictionaries where each dictionary represents a source.| Must have key: 'table_name' where the value is the source table name, e.g: 'analytics___cs__store_product_metrics_daily'.| Must have key: 'fields_mapping' where the value is a dictionary with field name from source as keys and desired metrics names as according values, e.g: 'is_map_enabled': 'ugc_is_map_enabled'."}], "created_at": 1700082635.6400652, "supported_languages": null}, "macro.yoda.product_metrics_should_overwrite": {"name": "product_metrics_should_overwrite", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/product_metrics/product_metrics_functions.sql", "original_file_path": "macros/analytics/product_metrics/product_metrics_functions.sql", "unique_id": "macro.yoda.product_metrics_should_overwrite", "macro_sql": "{%- macro product_metrics_should_overwrite(expected_fields) -%}\n\n {%- set current_schema = []-%}\n {%- set table_exists = load_relation(this) is not none -%}\n\n {%- if table_exists -%}\n {%- set current_schema = get_column_names(this) -%}\n {%- set expected_schema = expected_fields + ['dwh_updated_at'] -%}\n {%- set schemas_equal = lists_equal(current_schema, expected_schema, sorted = True) -%}\n {%- endif -%}\n\n {{ return( not (table_exists and schemas_equal) )}}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.load_relation", "macro.yoda.get_column_names", "macro.yoda.lists_equal"]}, "description": "This macro returns table config, 'table' if expected schema is different form current schema, 'incremental' otherwise.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/analytics/product_metrics/product_metrics_functions.yml", "arguments": [{"name": "expected_fields", "type": "list", "description": "List of fields target names in the model."}], "created_at": 1700082635.6413124, "supported_languages": null}, "macro.yoda.get_product_metrics_vars": {"name": "get_product_metrics_vars", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/product_metrics/product_metrics_functions.sql", "original_file_path": "macros/analytics/product_metrics/product_metrics_functions.sql", "unique_id": "macro.yoda.get_product_metrics_vars", "macro_sql": "{%- macro get_product_metrics_vars(date_granularity, expected_schema_mapping) -%}\n\n {%- set vars = {} -%}\n {%- set expected_fields = expected_schema_mapping | map(attribute = 'target_field') | list -%}\n\n {%- if product_metrics_should_overwrite(expected_fields) -%}\n {%- do vars.update({\"table_config\": 'table'}) -%}\n {%- else -%}\n {%- do vars.update({\"table_config\": 'incremental'}) -%}\n {%- endif -%}\n\n {%- if date_granularity == 'day' -%}\n {%- do vars.update({\"incremental_strategy\": 'append'}) -%}\n {%- do vars.update({\"date_subtract\": 0}) -%}\n {%- elif date_granularity == 'month' -%}\n {%- do vars.update({\"incremental_strategy\": 'merge'}) -%}\n {%- do vars.update({\"date_subtract\": 1}) -%}\n {%- endif -%}\n\n {{ return(vars) }}\n \n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.yoda.product_metrics_should_overwrite"]}, "description": "This macro returns dictionary with parameter values for a product metrics table: 'table_config', 'incremental_strategy' and 'date_subtract'.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/analytics/product_metrics/product_metrics_functions.yml", "arguments": [{"name": "date_granularity", "type": "string", "description": "Level of granularity for the model's date field (day/month) ."}, {"name": "expected_schema_mapping", "type": "list", "description": "List of dictionaries with parameters for the target fileds of a product metrics model, each field is represented by with the parameters: 'source_field', 'target_field', 'data_type'."}], "created_at": 1700082635.6445537, "supported_languages": null}, "macro.yoda.product_metrics_unpivot_is_diff": {"name": "product_metrics_unpivot_is_diff", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/product_metrics/product_metrics_functions.sql", "original_file_path": "macros/analytics/product_metrics/product_metrics_functions.sql", "unique_id": "macro.yoda.product_metrics_unpivot_is_diff", "macro_sql": "{%- macro product_metrics_unpivot_is_diff(expected_metrics) -%}\n\n {%- if target.name == 'dev' -%}\n {{ return(False) }}\n {%- endif -%}\n\n {%- set table_exists = load_relation(this) is not none -%}\n \n {%- if table_exists -%}\n {%- set current_metrics_query -%}\n SELECT DISTINCT\n Product_Metrics_Name__c\n FROM {{ this }}\n {%- endset -%}\n {%- set current_metrics = run_query(current_metrics_query).columns[0].values() -%}\n {%- set metrics_lists_euqal = lists_equal(current_metrics, expected_metrics, sorted = True) -%}\n {%- endif -%}\n\n {{ return(table_exists and lists_equal) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.load_relation", "macro.dbt.run_query", "macro.yoda.lists_equal"]}, "description": "This macro returns boolean value to tell if a product metrics unpivot model should show diff between last two runs or take the whole last run.\nTrue value will be returned only if the process' table exists and its distinct metrics list match the expected list.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/analytics/product_metrics/product_metrics_functions.yml", "arguments": [{"name": "expected_metrics", "type": "string", "description": "List of metric names to be compared to current available metrics in the table."}], "created_at": 1700082635.645848, "supported_languages": null}, "macro.yoda.product_metrics_profile": {"name": "product_metrics_profile", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/product_metrics/product_metrics_profile.sql", "original_file_path": "macros/analytics/product_metrics/product_metrics_profile.sql", "unique_id": "macro.yoda.product_metrics_profile", "macro_sql": "{%- macro product_metrics_profile(global_date_field, global_unit_field, source_list, expected_schema_mapping) -%}\n\n{{- config( materialized = 'view' ) -}}\n\n{#- generating the sql code -#}\nWITH product_metrics_union AS (\n{%- set union_all = joiner(' UNION ALL') -%}\n{%- for source in source_list -%}\n {%- set date_field_select = (source['date_field'] ~ ' AS ' ~ global_date_field) -%}\n {%- set unit_field_select = (source['unit_field'] ~ ' AS ' ~ global_unit_field) -%}\n {%- set select_fields_list = [date_field_select, unit_field_select] -%} {# list to hold all fields with castings/aliases/manipulations under the select clause #}\n {%- for expected_field in expected_schema_mapping -%}\n {%- if expected_field['target_field'] in source['fields_mapping'].values() -%}\n {%- do select_fields_list.append(expected_field['source_field'] ~ ' AS ' ~ expected_field['target_field']) -%}\n {%- else -%}\n {%- do select_fields_list.append('CAST(NULL AS ' ~ expected_field['data_type']|upper ~ ') AS ' ~ expected_field['target_field']) -%}\n {%- endif -%}\n {%- endfor %}\n {%- set start_date_condition = (\"WHERE \" ~ source['date_field'] ~ \" >= MAKE_DATE(YEAR(CURRENT_DATE)-2,1,1)\") -%}\n {%- set where_clause_list = [start_date_condition] + source['where_conditions'] -%}\n\n {{ union_all() }}\n\n SELECT\n {{ select_fields_list | join(',\\n ') }}\n FROM {{ source['source_table'] }}\n {{ where_clause_list | join('\\n AND ') }}\n \n{% endfor %}\n\n), product_metrics_res AS (\n\n {%- set select_fields_list = [global_date_field, global_unit_field] -%}\n {%- for expected_field in expected_schema_mapping -%}\n {%- do select_fields_list.append('MAX(' ~ expected_field['target_field'] ~ ') AS ' ~ expected_field['target_field']) -%}\n {%- endfor %}\n\n SELECT \n {{ select_fields_list | join(',\\n ') }}\n FROM product_metrics_union\n GROUP BY 1,2 \n\n)\n\n SELECT *\n FROM product_metrics_res\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.6699517, "supported_languages": null}, "macro.yoda.product_metrics_unpivot_daily": {"name": "product_metrics_unpivot_daily", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/product_metrics/product_metrics_unpivot_daily.sql", "original_file_path": "macros/analytics/product_metrics/product_metrics_unpivot_daily.sql", "unique_id": "macro.yoda.product_metrics_unpivot_daily", "macro_sql": "{%- macro product_metrics_unpivot_daily(source_table, group_by_fields, fields_mapping) -%}\n \n {{ config(\n materialized = dbt_data_applications.get_table_materialization('incremental', 'view'),\n incremental_strategy = 'append',\n partition_by=['metric_date'])\n }}\n \n {% if is_incremental() %}\n {%- set current_metrics_query -%}\n SELECT DISTINCT\n metric_name\n FROM {{ this }}\n {%- endset -%}\n {%- set current_metrics = run_query(current_metrics_query).columns[0].values() -%}\n {% else %}\n {%- set current_metrics = [] -%}\n {% endif %}\n\n {%- set casting_type = 'STRING' -%}\n {%- set extra_fields_names = ['value','products','metric_name','target_field'] -%}\n {%- set current_metrics_where_clause = (\"WHERE metric_date >= (SELECT MAX(metric_date) FROM \" ~ source_table ~ \") - 1\" ) -%}\n {%- set new_metrics_where_clause = '' -%}\n {%- set current_fields_unpivot_mapping = [] -%}\n {%- set new_fields_unpivot_mapping = [] -%}\n {%- for field in fields_mapping -%}\n {%- set field_name = field['source_field'] -%}\n {%- set extra_fields = [field['products'], field['metric_name'], field['target_field']] -%}\n {%- if field['metric_name'] | replace(\"'\",\"\") in current_metrics -%}\n {%- do current_fields_unpivot_mapping.append({'field_name': field_name, 'agg_function': 'MAX', 'extra_fields': extra_fields}) -%}\n {%- else -%}\n {%- do new_fields_unpivot_mapping.append({'field_name': field_name, 'agg_function': 'MAX', 'extra_fields': extra_fields}) -%}\n {%- endif -%}\n {%- endfor -%}\n\n WITH\n \n {%- if current_fields_unpivot_mapping %}\n\n current_metrics_unpivoted AS (\n \n {{ analytics_unpivot(source_table, group_by_fields, casting_type, current_metrics_where_clause, extra_fields_names, current_fields_unpivot_mapping) }}\n\n ),\n\n current_metrics_diff AS (\n\n SELECT * \n FROM current_metrics_unpivoted\n QUALIFY value <> NVL(LAG(value) OVER (PARTITION BY app_key, metric_name ORDER BY metric_date ASC), '')\n AND metric_date = MAX(metric_date) OVER()\n\n ),\n {%- endif %}\n\n {%- if new_fields_unpivot_mapping %}\n\n new_metrics_unpivoted AS (\n \n {{ analytics_unpivot(source_table, group_by_fields, casting_type, new_metrics_where_clause, extra_fields_names, new_fields_unpivot_mapping) }}\n\n ),\n\n new_metrics_diff AS (\n\n SELECT * \n FROM new_metrics_unpivoted\n QUALIFY value <> NVL(LAG(value) OVER (PARTITION BY app_key, metric_name ORDER BY metric_date ASC), '')\n\n ),\n\n new_metrics_diff_latest AS (\n\n SELECT * \n FROM new_metrics_diff\n QUALIFY metric_date = MAX(metric_date) OVER (PARTITION BY app_key, metric_name)\n\n ),\n {%- endif %}\n\n product_metircs_unpivot_daily_diff AS (\n\n {%- if current_fields_unpivot_mapping %}\n SELECT * FROM current_metrics_diff\n {%- endif -%}\n {%- if current_fields_unpivot_mapping and new_fields_unpivot_mapping %}\n UNION ALL\n {%- endif -%}\n {%- if new_fields_unpivot_mapping %}\n SELECT * FROM new_metrics_diff_latest\n {%- endif -%}\n\n )\n\n SELECT *,\n CURRENT_TIMESTAMP AS dwh_updated_at\n FROM product_metircs_unpivot_daily_diff\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_data_applications.get_table_materialization", "macro.dbt.is_incremental", "macro.dbt.run_query", "macro.yoda.analytics_unpivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.6781824, "supported_languages": null}, "macro.yoda.product_metrics_profile_validations": {"name": "product_metrics_profile_validations", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/product_metrics/product_metrics_validations.sql", "original_file_path": "macros/analytics/product_metrics/product_metrics_validations.sql", "unique_id": "macro.yoda.product_metrics_profile_validations", "macro_sql": "{%- macro product_metrics_profile_validations(date_granularity, global_date_field, global_unit_field, source_list) -%}\n\n {%- if not execute -%}\n {{ return(0) }}\n {%- endif -%}\n\n {%- if global_date_field is not string -%}\n {{ exceptions.raise_compiler_error(\"global_date_field supplied is not of 'string' type\") }}\n {%- endif -%}\n \n {%- if global_unit_field is not string -%}\n {{ exceptions.raise_compiler_error(\"global_unit_field supplied is not of 'string' type\") }}\n {%- endif -%}\n\n {%- if date_granularity is not string -%}\n {{ exceptions.raise_compiler_error(\"date_granularity supplied is not of 'string' type\") }}\n {%- endif -%}\n\n {%- if date_granularity not in ['day','month'] -%}\n {{ exceptions.raise_compiler_error(\"date_granularity supplied is not one of (day,month)\") }}\n {%- endif -%}\n\n {%- for source in source_list -%}\n\n {%- if source['date_field'] is not string -%}\n {{ exceptions.raise_compiler_error(\"date_field supplied is not of 'string' type\") }}\n {%- endif -%}\n\n {%- if source['unit_field'] is not string -%}\n {{ exceptions.raise_compiler_error(\"unit_field supplied is not of 'string' type\") }}\n {%- endif -%}\n\n {%- if load_relation(source['source_table']) is none -%}\n {{ exceptions.raise_compiler_error(\"source: \" ~ source['source_table'] ~ \" does not exist\") }}\n {%- endif -%}\n\n {%- set source_columns = get_column_names(source['source_table']) -%}\n\n {%- for source_field, target_field in source['fields_mapping'].items() -%}\n \n {%- if source_field is not string -%}\n {{ exceptions.raise_compiler_error(\"source field: \" ~ source_field ~ \" supplied for source: \" ~ source['source_table'] ~ \" is not of 'string' type\") }}\n {%- endif -%}\n\n {%- if target_field is not string -%}\n {{ exceptions.raise_compiler_error(\"target field: \" ~ target_field ~ \" supplied for source: \" ~ source['source_table'] ~ \" is not of 'string' type\") }}\n {%- endif -%}\n\n {%- endfor -%}\n\n {%- for where_condition in where_conditions -%}\n\n {%- if where_condition is not string -%}\n {{ exceptions.raise_compiler_error(\"where condition: \" ~ where_condition ~ \" supplied for source: \" ~ source['source_table'] ~ \" is not of 'string' type\") }}\n {%- endif -%}\n\n {%- endfor -%}\n\n {%- endfor -%}\n\n {{ return('') }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.load_relation", "macro.yoda.get_column_names"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.693209, "supported_languages": null}, "macro.yoda.product_metrics_unpivot_validations": {"name": "product_metrics_unpivot_validations", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/product_metrics/product_metrics_validations.sql", "original_file_path": "macros/analytics/product_metrics/product_metrics_validations.sql", "unique_id": "macro.yoda.product_metrics_unpivot_validations", "macro_sql": "{%- macro product_metrics_unpivot_validations(source_table, group_by_fields, date_granularity, fields_mapping) -%}\n\n {%- if not execute -%}\n {{ return(0) }}\n {%- endif -%}\n\n {%- for field in group_by_fields -%}\n \n {%- if field is not string -%}\n {{ exceptions.raise_compiler_error(\"group by field: \" ~ field ~ \" supplied is not of 'string' type\") }}\n {%- endif -%}\n\n {%- endfor -%}\n\n {%- if date_granularity is not string -%}\n {{ exceptions.raise_compiler_error(\"date_granularity supplied is not of 'string' type\") }}\n {%- endif -%}\n\n {%- if date_granularity not in ['day','month','snapshot'] -%}\n {{ exceptions.raise_compiler_error(\"date_granularity supplied is not one of (day,month,snapshot)\") }}\n {%- endif -%}\n\n {%- for field in fields_mapping -%}\n \n {%- if field['source_field'] is not string -%}\n {{ exceptions.raise_compiler_error(\"source_field: \" ~ field['source_field'] ~ \" supplied is not of 'string' type\") }}\n {%- endif -%}\n \n {%- if field['products'] is not string -%}\n {{ exceptions.raise_compiler_error(\"products: \" ~ field['products'] ~ \" supplied is not of 'string' type\") }}\n {%- endif -%}\n \n {%- if field['metric_name'] is not string -%}\n {{ exceptions.raise_compiler_error(\"metric_name: \" ~ field['metric_name'] ~ \" supplied is not of 'string' type\") }}\n {%- endif -%}\n \n {%- if field['target_field'] is not string -%}\n {{ exceptions.raise_compiler_error(\"target_field: \" ~ field['target_field'] ~ \" supplied is not of 'string' type\") }}\n {%- endif -%}\n \n {%- if field['source_field'].startswith(\"'\") or field['source_field'].endswith(\"'\") -%}\n {{ exceptions.raise_compiler_error(\"source_fields should not be wrapped with double quotes, you entered: \" ~ field['source_field']) }}\n {%- endif -%}\n \n {%- if not (field['products'].startswith(\"'\") and field['products'].endswith(\"'\")) -%}\n {{ exceptions.raise_compiler_error(\"products should be wrapped with double quotes, you entered: '\" ~ field['products'] ~ \"'\") }}\n {%- endif -%}\n \n {%- if not (field['metric_name'].startswith(\"'\") and field['metric_name'].endswith(\"'\")) -%}\n {{ exceptions.raise_compiler_error(\"metric_name should be wrapped with double quotes, you entered: '\" ~ field['metric_name'] ~ \"'\") }}\n {%- endif -%}\n \n {%- if not (field['target_field'].startswith(\"'\") and field['target_field'].endswith(\"'\")) -%}\n {{ exceptions.raise_compiler_error(\"target_field should be wrapped with double quotes, you entered: '\" ~ field['target_field'] ~ \"'\") }}\n {%- endif -%}\n\n {%- if field['target_field'] not in [\"'Enabled__c'\", \"'Metric_Value__c'\", \"'Quantity__c'\", \"'From_Date__c'\"] -%}\n {{ exceptions.raise_compiler_error(\"target_field: field \" ~ field['target_field'] ~ \" is not one of: ['Enabled__c', 'Metric_Value__c', 'Quantity__c', 'From_Date__c']\") }}\n {%- endif -%}\n\n {%- endfor -%}\n \n {{ return('') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.6993694, "supported_languages": null}, "macro.yoda.test_product_metrics_expected_schema": {"name": "test_product_metrics_expected_schema", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/product_metrics/unit_test/test_product_metrics_expected_schema.sql", "original_file_path": "macros/analytics/product_metrics/unit_test/test_product_metrics_expected_schema.sql", "unique_id": "macro.yoda.test_product_metrics_expected_schema", "macro_sql": "{% macro test_product_metrics_expected_schema() %}\n {% do test_product_metrics_expected_schema_generic_table() %}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.test_product_metrics_expected_schema_generic_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7003415, "supported_languages": null}, "macro.yoda.test_product_metrics_expected_schema_generic_table": {"name": "test_product_metrics_expected_schema_generic_table", "resource_type": "macro", "package_name": "yoda", "path": "macros/analytics/product_metrics/unit_test/test_product_metrics_expected_schema.sql", "original_file_path": "macros/analytics/product_metrics/unit_test/test_product_metrics_expected_schema.sql", "unique_id": "macro.yoda.test_product_metrics_expected_schema_generic_table", "macro_sql": "{% macro test_product_metrics_expected_schema_generic_table() -%}\n {% set result = product_metrics_expected_schema(source_list = [\n {\n 'source_table': ref('analytics___utils_stg__unit_test_generic'),\n 'date_field': 'date_field',\n 'unit_field': 'string_field',\n 'fields_mapping':{\n 'smallint_field': 'smallint_field',\n 'double_field': 'double_field',\n },\n 'where_conditions':[]\n }\n ]) %}\n {{ dbt_unittest.assert_equals(result, [{'source_field': 'smallint_field', 'target_field': 'smallint_field', 'data_type': 'smallint'},\n {'source_field': 'double_field', 'target_field': 'double_field', 'data_type': 'double'}]) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.product_metrics_expected_schema", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.701805, "supported_languages": null}, "macro.yoda.vendor_budget_aggregations": {"name": "vendor_budget_aggregations", "resource_type": "macro", "package_name": "yoda", "path": "macros/infra/budget.sql", "original_file_path": "macros/infra/budget.sql", "unique_id": "macro.yoda.vendor_budget_aggregations", "macro_sql": "{% macro vendor_budget_aggregations(contracts_table = 'infra__vendor_contracts', contracts = []) %}\n\nWITH \n{%- for contracts_entry in contracts -%}\n {%- set vendor = contracts_entry.vendor -%}\n {%- set daily_cost_model = contracts_entry.cost_table -%}\n {%- set cost_column = contracts_entry.cost_column -%}\n\n {{ ' ' ~ vendor ~ '_contract_info'}} AS (\n SELECT\n start_date,\n end_date,\n vendor,\n yearly_budget,\n CAST(MONTHS_BETWEEN(\n DATE_FORMAT(end_date, 'yyyy-MM-01'),\n DATE_FORMAT(start_date, 'yyyy-MM-01')) AS INT) \n AS num_months,\n DATEDIFF(day, start_date, end_date) AS num_days\n FROM \n {{ ref(contracts_table) }}\n WHERE\n vendor = '{{ vendor }}'\n), {{vendor ~ '_months'}} AS (\n SELECT\n MAKE_DATE(YEAR(ADD_MONTHS(d.start_date, t.s)),MONTH(ADD_MONTHS(d.start_date, t.s)), 1) AS date,\n YEAR(ADD_MONTHS(d.start_date, t.s)) AS year,\n MONTH(ADD_MONTHS(d.start_date, t.s)) AS month,\n CASE \n WHEN t.s = 0 THEN DAY(LAST_DAY(d.start_date)) - DAY(d.start_date)\n WHEN t.s = d.num_months THEN DAY(d.end_date)\n ELSE DAY(LAST_DAY(ADD_MONTHS(d.start_date, s)))\n END AS days_in_month\n FROM \n {{vendor ~ '_contract_info'}} AS d\n CROSS JOIN (SELECT EXPLODE(sequence(0, num_months)) AS s, num_months FROM {{vendor ~ '_contract_info'}}) t\n), {{vendor ~ '_months_with_statistics'}} AS (\n SELECT *, \n SUM(1) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS months_count,\n SUM(days_in_month) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS days_count\n FROM {{vendor ~ '_months'}}\n), {{vendor ~ '_months_with_statistics_with_previous'}} AS (\nSELECT *,\n COALESCE(LAG(days_count) OVER (ORDER BY date), 0) AS prev_monthly_days_count,\n seq.num_days - days_count + days_in_month AS days_left_with_current_momth,\n Max(months_count) OVER () AS total_months_count,\n Max(months_count) OVER () - months_count + 1 AS months_left,\n make_date(year,month,1) < make_date(year(now()),month(now()),1) AS is_past_month,\n make_date(year,month,1) = make_date(year(now()),month(now()),1) AS is_current_month,\n make_date(year,month,1) > make_date(year(now()),month(now()),1) AS is_future_month\nFROM {{vendor ~ '_months_with_statistics'}}, {{vendor ~ '_contract_info'}} as seq\n), {{vendor ~ '_avg_burt'}} AS (\n SELECT\n SUM( {{ cost_column }} ) / DATEDIFF(day, ADD_MONTHS(now(), -1) , now()) as avg_spent_last_30_days,\n MAX(date) AS last_processed_date\n FROM \n {{ ref(daily_cost_model) }}\n WHERE \n date between ADD_MONTHS(now(), -1) AND now() \n), {{vendor ~ '_burn'}} AS (\n SELECT \n make_date(year(date), month(date), 1) as date,\n SUM( {{ cost_column }} ) as monthly_cost\n FROM \n {{ ref(daily_cost_model) }}, {{vendor ~ '_contract_info'}} as d\n WHERE\n date BETWEEN d.start_date AND d.end_date\n GROUP BY \n 1\n ), {{vendor ~ '_cost_and_months'}} AS (\n SELECT \n m.*,\n coalesce(b.monthly_cost, 0) as monthly_cost,\n COALESCE(LAG(monthly_cost) OVER (ORDER BY m.date), 0) AS prev_monthly_cost,\n IFF(is_past_month, FALSE, TRUE) as is_closed,\n CASE \n WHEN is_past_month THEN monthly_cost\n WHEN is_current_month THEN monthly_cost + (days_in_month - day(now())) * a.avg_spent_last_30_days\n ELSE days_in_month * a.avg_spent_last_30_days\n END AS burn_rate_with_estimations\n FROM {{vendor ~ '_months_with_statistics_with_previous'}} m, {{vendor ~ '_contract_info'}}, {{vendor ~ '_avg_burt'}} as a\n LEFT JOIN {{vendor ~ '_burn'}} as b\n ON b.date = m.date \n), {{vendor ~ '_prepare_for_forcast'}} AS (\n SELECT \n *,\n SUM(prev_monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_without_current_month,\n SUM(monthly_cost) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_cost_with_current_month,\n SUM(burn_rate_with_estimations) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_estimated_cost_with_current_month\n FROM \n {{vendor ~ '_cost_and_months'}}\n), {{vendor ~ '_agg_data'}} AS (\n SELECT\n p.*,\n a.*,\n CASE \n WHEN is_past_month THEN monthly_cost/days_in_month\n WHEN is_current_month THEN monthly_cost/\n IFF (months_count == 1,\n day(now()) - datediff(day, make_date(year,month,days_in_month), make_date(year,month,DAY(LAST_DAY(a.last_processed_date)))),\n day(now())\n )\n ELSE 0 END\n AS avg_spent_current_month\n FROM {{vendor ~ '_prepare_for_forcast'}} p, {{vendor ~ '_avg_burt'}} as a\n) {% if not loop.last %},{% endif %}\n{%- endfor -%}\n\n\n{%- for contracts_entry in contracts -%}\n SELECT *\n FROM {{ contracts_entry.vendor ~ '_agg_data'}}\n {% if not loop.last %}\n UNION ALL\n {% endif %}\n{%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "This macro creates the burn status on our yearly contract vendors.\nThe macro needs to:\n1. be available in infr__vendor_contracts model\n2. have a daily/month cost model\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/infra/budget.yml", "arguments": [{"name": "contracts_table", "type": "string", "description": "model containing all vendor details"}, {"name": "contracts", "type": "array", "description": "An array of vendors containing their name, their cost model and the cost column within the cost model"}], "created_at": 1700082635.6480916, "supported_languages": null}, "macro.yoda.vendor_budget_estimations": {"name": "vendor_budget_estimations", "resource_type": "macro", "package_name": "yoda", "path": "macros/infra/budget.sql", "original_file_path": "macros/infra/budget.sql", "unique_id": "macro.yoda.vendor_budget_estimations", "macro_sql": "{% macro vendor_budget_estimations(contracts_table = 'infra__contracts_burn_status', contracts = []) %}\n\nWITH \n{%- for contracts_entry in contracts -%}\n {%- set vendor = contracts_entry.vendor -%}\n\n{{ ' ' ~ vendor ~ '_budget'}} AS (\n SELECT \n avg_spent_last_30_days,\n last_processed_date,\n yearly_budget,\n yearly_budget - cumulative_cost_with_current_month AS budget_left,\n DATEDIFF(day, last_processed_date, end_date) AS days_until_end_of_contract,\n INT((yearly_budget - cumulative_cost_with_current_month)/avg_spent_last_30_days) AS estimated_days_until_end_of_contract,\n start_date,\n end_date,\n vendor\n FROM \n {{ ref(contracts_table) }}\n WHERE \n (is_current_month = TRUE OR (date(end_date) < now() AND month(date(end_date)) = month(date)))\n AND vendor = '{{ vendor }}'\n), {{ vendor ~ '_speculative_budget'}} AS (\n SELECT\n *,\n budget_left - days_until_end_of_contract * avg_spent_last_30_days AS speculate_budget_left_at_end_of_contract,\n date_add(now(), estimated_days_until_end_of_contract) AS estimated_end_date\n FROM\n {{ vendor ~ '_budget' }}\n) {% if not loop.last %},{% endif %}\n{%- endfor -%}\n\n{%- for contracts_entry in contracts -%}\n SELECT *\n FROM {{ contracts_entry.vendor ~ '_speculative_budget'}}\n {% if not loop.last %}\n UNION ALL\n {% endif %}\n{%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "This macro that estimates statistics based on infra__contracts_burn_status model\nThe macro needs to:\n1. infra__contracts_burn_status model\n2. vendor lists (has to be present in infra__vendor_contracts)\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/infra/budget.yml", "arguments": [{"name": "contracts_table", "type": "string", "description": "model containing burn status (infra__contracts_burn_status)"}, {"name": "contracts", "type": "array", "description": "An array of vendors"}], "created_at": 1700082635.6501005, "supported_languages": null}, "macro.yoda.resolve_account": {"name": "resolve_account", "resource_type": "macro", "package_name": "yoda", "path": "macros/infra/cost.sql", "original_file_path": "macros/infra/cost.sql", "unique_id": "macro.yoda.resolve_account", "macro_sql": "{% macro resolve_account(account_id_column_name) %}\nCASE \n WHEN {{ account_id_column_name }} = '402837048690' THEN 'Yotpo Ltd'\n WHEN {{ account_id_column_name }} = '140980321741' THEN 'Omri Cohen (Support+RI+MP)'\n WHEN {{ account_id_column_name }} = '368297226064' THEN 'SMSBump'\n WHEN {{ account_id_column_name }} = '067361735412' THEN 'AWS QA (Staging)'\n WHEN {{ account_id_column_name }} = '237698446327' THEN 'Yotpo IT'\n ELSE ''\nEND\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7162313, "supported_languages": null}, "macro.yoda.lists_equal": {"name": "lists_equal", "resource_type": "macro", "package_name": "yoda", "path": "macros/list_functions/list_functions.sql", "original_file_path": "macros/list_functions/list_functions.sql", "unique_id": "macro.yoda.lists_equal", "macro_sql": "{%- macro lists_equal(list_a, list_b, sorted = False) -%}\n {%- if sorted -%}\n {{- return(list_a|sort() == list_b|sort()) -}}\n {%- else -%}\n {{- return(list_a == list_b) -}}\n {%- endif -%}\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "This macro checks if two lists given lists consist of string type items and are equal.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/list_functions/list_functions.yml", "arguments": [{"name": "list_a", "type": "list", "description": "first list to compare"}, {"name": "list_b", "type": "list", "description": "second list to compare"}, {"name": "sorted", "type": "boolean", "description": "boolean parameter that defined if the lists should be sorted before comparison, default value is False"}], "created_at": 1700082635.653326, "supported_languages": null}, "macro.yoda.test_lists_equal": {"name": "test_lists_equal", "resource_type": "macro", "package_name": "yoda", "path": "macros/list_functions/unit_test/test_lists_equal.sql", "original_file_path": "macros/list_functions/unit_test/test_lists_equal.sql", "unique_id": "macro.yoda.test_lists_equal", "macro_sql": "{% macro test_lists_equal() %}\n {% do test_lists_equal_equal_ordered_lists() %}\n {% do test_lists_equal_equal_unordered_lists() %}\n {% do test_lists_equal_equal_unordered_lists_sorted() %}\n {% do test_lists_equal_unequal_lists() %}\n {% do test_lists_equal_one_empty_list() %}\n {% do test_lists_equal_two_empty_lists() %}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.test_lists_equal_equal_ordered_lists", "macro.yoda.test_lists_equal_equal_unordered_lists", "macro.yoda.test_lists_equal_equal_unordered_lists_sorted", "macro.yoda.test_lists_equal_unequal_lists", "macro.yoda.test_lists_equal_one_empty_list", "macro.yoda.test_lists_equal_two_empty_lists"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7190597, "supported_languages": null}, "macro.yoda.test_lists_equal_equal_ordered_lists": {"name": "test_lists_equal_equal_ordered_lists", "resource_type": "macro", "package_name": "yoda", "path": "macros/list_functions/unit_test/test_lists_equal.sql", "original_file_path": "macros/list_functions/unit_test/test_lists_equal.sql", "unique_id": "macro.yoda.test_lists_equal_equal_ordered_lists", "macro_sql": "{% macro test_lists_equal_equal_ordered_lists() -%}\n {% set result = lists_equal(list_a = ['x','y'], list_b = ['x','y']) %}\n {{ dbt_unittest.assert_equals(result, True) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.lists_equal", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7197516, "supported_languages": null}, "macro.yoda.test_lists_equal_equal_unordered_lists": {"name": "test_lists_equal_equal_unordered_lists", "resource_type": "macro", "package_name": "yoda", "path": "macros/list_functions/unit_test/test_lists_equal.sql", "original_file_path": "macros/list_functions/unit_test/test_lists_equal.sql", "unique_id": "macro.yoda.test_lists_equal_equal_unordered_lists", "macro_sql": "{% macro test_lists_equal_equal_unordered_lists() -%}\n {% set result = lists_equal(list_a = ['y','x'], list_b = ['x','y']) %}\n {{ dbt_unittest.assert_equals(result, False) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.lists_equal", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7204244, "supported_languages": null}, "macro.yoda.test_lists_equal_equal_unordered_lists_sorted": {"name": "test_lists_equal_equal_unordered_lists_sorted", "resource_type": "macro", "package_name": "yoda", "path": "macros/list_functions/unit_test/test_lists_equal.sql", "original_file_path": "macros/list_functions/unit_test/test_lists_equal.sql", "unique_id": "macro.yoda.test_lists_equal_equal_unordered_lists_sorted", "macro_sql": "{% macro test_lists_equal_equal_unordered_lists_sorted() -%}\n {% set result = lists_equal(list_a = ['y','x'], list_b = ['x','y'], sorted = True) %}\n {{ dbt_unittest.assert_equals(result, True) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.lists_equal", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7210703, "supported_languages": null}, "macro.yoda.test_lists_equal_unequal_lists": {"name": "test_lists_equal_unequal_lists", "resource_type": "macro", "package_name": "yoda", "path": "macros/list_functions/unit_test/test_lists_equal.sql", "original_file_path": "macros/list_functions/unit_test/test_lists_equal.sql", "unique_id": "macro.yoda.test_lists_equal_unequal_lists", "macro_sql": "{% macro test_lists_equal_unequal_lists() -%}\n {% set result = lists_equal(list_a = ['x','y'], list_b = ['y','z']) %}\n {{ dbt_unittest.assert_equals(result, False) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.lists_equal", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7217202, "supported_languages": null}, "macro.yoda.test_lists_equal_one_empty_list": {"name": "test_lists_equal_one_empty_list", "resource_type": "macro", "package_name": "yoda", "path": "macros/list_functions/unit_test/test_lists_equal.sql", "original_file_path": "macros/list_functions/unit_test/test_lists_equal.sql", "unique_id": "macro.yoda.test_lists_equal_one_empty_list", "macro_sql": "{% macro test_lists_equal_one_empty_list() -%}\n {% set result = lists_equal(list_a = [], list_b = ['x','y','z']) %}\n {{ dbt_unittest.assert_equals(result, False) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.lists_equal", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.722355, "supported_languages": null}, "macro.yoda.test_lists_equal_two_empty_lists": {"name": "test_lists_equal_two_empty_lists", "resource_type": "macro", "package_name": "yoda", "path": "macros/list_functions/unit_test/test_lists_equal.sql", "original_file_path": "macros/list_functions/unit_test/test_lists_equal.sql", "unique_id": "macro.yoda.test_lists_equal_two_empty_lists", "macro_sql": "{% macro test_lists_equal_two_empty_lists() -%}\n {% set result = lists_equal(list_a = [], list_b = []) %}\n {{ dbt_unittest.assert_equals(result, True) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.lists_equal", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.722856, "supported_languages": null}, "macro.yoda.order_date_between": {"name": "order_date_between", "resource_type": "macro", "package_name": "yoda", "path": "macros/order_date/order_date.sql", "original_file_path": "macros/order_date/order_date.sql", "unique_id": "macro.yoda.order_date_between", "macro_sql": "{% macro order_date_between(start, end) %}\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval {{ start }} day AND CURRENT_DATE() - interval {{ end + 1 }} day)\n{% endmacro %}", "depends_on": {"macros": []}, "description": "A macro that yields the sql condition for order being between a start and end dates. This is the platform definition for start and end of order dates. Do note that only complete days are included. For example, if a start of 7 days before now is supplied, the condition will take all orders from the past complete 7 days excluding the orders from today.", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/order_date/order_date.yml", "arguments": [{"name": "start", "type": "number", "description": "The inclusive start of the range expressed in days before current date. Should be greater than 1."}, {"name": "end", "type": "number", "description": "The exclusive end of the range expressed in days before current date."}], "created_at": 1700082635.655561, "supported_languages": null}, "macro.yoda.order_date_from": {"name": "order_date_from", "resource_type": "macro", "package_name": "yoda", "path": "macros/order_date/order_date.sql", "original_file_path": "macros/order_date/order_date.sql", "unique_id": "macro.yoda.order_date_from", "macro_sql": "{% macro order_date_from(start) %}\n (DATE(order_date) BETWEEN CURRENT_DATE() - interval {{ start }} day AND CURRENT_DATE() - interval 1 day)\n{% endmacro %}", "depends_on": {"macros": []}, "description": "A macro that yields the sql condition for order being between a start date and now. Do note that only complete days are included.", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/order_date/order_date.yml", "arguments": [{"name": "start", "type": "number", "description": "The inclusive start of the range expressed in days before current date. Should be greater than 1."}], "created_at": 1700082635.6568878, "supported_languages": null}, "macro.yoda.order_date_from_date": {"name": "order_date_from_date", "resource_type": "macro", "package_name": "yoda", "path": "macros/order_date/order_date.sql", "original_file_path": "macros/order_date/order_date.sql", "unique_id": "macro.yoda.order_date_from_date", "macro_sql": "{% macro order_date_from_date(start, end_date) %}\n (DATE(order_date) BETWEEN DATE({{ end_date }}) - interval {{ start }} day AND DATE({{ end_date }}) - interval 1 day)\n{% endmacro %}", "depends_on": {"macros": []}, "description": "A macro that yields the sql condition for order being between a start date and a specific date. Do note that only complete days are included.", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/order_date/order_date.yml", "arguments": [{"name": "start", "type": "number", "description": "The inclusive start of the range expressed in days before current date. Should be greater than 1."}, {"name": "date", "type": "string", "description": "The exclusive end date of the range."}], "created_at": 1700082635.6589131, "supported_languages": null}, "macro.yoda.avg_per_customer_and_segment": {"name": "avg_per_customer_and_segment", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/avg_sales_per_customer.sql", "original_file_path": "macros/retention_metrics/avg_sales_per_customer.sql", "unique_id": "macro.yoda.avg_per_customer_and_segment", "macro_sql": "{% macro avg_per_customer_and_segment(trend_start, trend_end, segment_column, date_range) %}\n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM {{ ref('platform_stg__retention_metrics_trends_orders') }}\n\n ), avg_per_customer_{{ date_range }} AS (\n SELECT app_key,\n \"{{ date_range }}\" as trend,\n (SUM(CASE WHEN \n ({{ order_date_between(trend_start, trend_end) }}\n AND\n {{ segment_column }} = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN ({{ order_date_between(trend_start, trend_end) }}\n AND\n {{ segment_column }} = \"engaged\") \n THEN external_customer_id END))) AS avg_per_customer_engaged,\n (SUM(CASE WHEN \n ({{ order_date_between(trend_start, trend_end) }}\n AND\n {{ segment_column }} = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN ({{ order_date_between(trend_start, trend_end) }}\n AND\n {{ segment_column }} = \"returning\") \n THEN external_customer_id END))) AS avg_per_customer_returning,\n (SUM(CASE WHEN \n ({{ order_date_between(trend_start, trend_end) }}\n AND\n {{ segment_column }} = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(DISTINCT(CASE WHEN ({{ order_date_between(trend_start, trend_end) }}\n AND\n {{ segment_column }} = \"new\") \n THEN external_customer_id END))) AS avg_per_customer_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_per_customer_{{ date_range }}_non_null AS (\n\n SELECT app_key,\n trend,\n COALESCE(avg_per_customer_engaged, 0) AS avg_per_engaged_customer,\n COALESCE(avg_per_customer_returning, 0) AS avg_per_returning_customer,\n COALESCE(avg_per_customer_new, 0) AS avg_per_new_customer\n FROM avg_per_customer_{{ date_range }}\n\n )\n\n SELECT * FROM avg_per_customer_{{ date_range }}_non_null\n \n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.order_date_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.72804, "supported_languages": null}, "macro.yoda.avg_order_value_per_segment_in_date_range": {"name": "avg_order_value_per_segment_in_date_range", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/current_avg_order_value.sql", "original_file_path": "macros/retention_metrics/current_avg_order_value.sql", "unique_id": "macro.yoda.avg_order_value_per_segment_in_date_range", "macro_sql": "{% macro avg_order_value_per_segment_in_date_range(trend_start) %}\n\nWITH average_order_value_per_app_key_and_date AS (\n\n SELECT * FROM {{ ref('platform__retention_metrics_average_order_value') }}\n\n), average_order_value_in_date_range AS (\n\n SELECT\n app_key,\n \"Last_{{ trend_start }}_days\" AS trend,\n COALESCE(SUM(total_engaged_customers_sales_value_by_date) / SUM(engaged_customers_orders_count_by_date), 0) AS aov_for_engaged_customers,\n COALESCE(SUM(total_returning_customers_sales_value_by_date) / SUM(returning_customers_orders_count_by_date), 0) AS aov_for_returning_customers,\n COALESCE(SUM(total_new_customers_sales_value_by_date) / SUM(new_customers_orders_count_by_date), 0) AS aov_for_new_customers\n\n FROM average_order_value_per_app_key_and_date\n WHERE {{ order_date_from(trend_start) }}\n GROUP BY app_key\n\n)\n\nSELECT * FROM average_order_value_in_date_range\n\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.order_date_from"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7288594, "supported_languages": null}, "macro.yoda.customer_ratio": {"name": "customer_ratio", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/customer_ratio.sql", "original_file_path": "macros/retention_metrics/customer_ratio.sql", "unique_id": "macro.yoda.customer_ratio", "macro_sql": "{% macro customer_ratio(trend_start, trend_end, segment_column, trend) %}\n{% set segments = ['engaged', 'returning', 'new'] %}\n\nWITH filtered_orders AS (\n SELECT \n app_key, \n external_customer_id,\n FIRST(segment) as segment,\n FIRST(segment_7_days_ago) as segment_7_days_ago,\n FIRST(segment_30_days_ago) as segment_30_days_ago,\n FIRST(segment_90_days_ago) as segment_90_days_ago,\n FIRST(segment_365_days_ago) as segment_365_days_ago\n FROM \n {{ ref('platform_stg__retention_metrics_trends_orders') }}\n WHERE \n {{ order_date_between(trend_start, trend_end) }}\n GROUP BY \n app_key, \n external_customer_id\n\n), customer_ratio_{{ trend }} AS (\n SELECT\n app_key,\n \"{{ trend }}\" as trend,\n {% for segment in segments %}\n COALESCE(\n 100 *\n SUM(CASE WHEN {{ segment_column }} = '{{ segment }}' THEN 1 ELSE 0 END) /\n SUM(CASE WHEN {{ segment_column }} IS NOT NULL THEN 1 ELSE 0 END), 0) as {{ segment }}_ratio\n {% if not loop.last %},\n {% endif %}\n {% endfor %}\n FROM filtered_orders\n GROUP BY app_key\n)\n\nSELECT * FROM customer_ratio_{{ trend }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.order_date_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.730961, "supported_languages": null}, "macro.yoda.orders": {"name": "orders", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/orders.sql", "original_file_path": "macros/retention_metrics/orders.sql", "unique_id": "macro.yoda.orders", "macro_sql": "{% macro orders() %}\n {% if target.name == 'dev' %}\n {{ ref('platform_stg__retention_metrics_mock_orders') }}\n {% else %}\n {{ ref('platform_stg__retention_metrics_orders') }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7317624, "supported_languages": null}, "macro.yoda.segment_customers": {"name": "segment_customers", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/retention_segment_customers.sql", "original_file_path": "macros/retention_metrics/retention_segment_customers.sql", "unique_id": "macro.yoda.segment_customers", "macro_sql": "{% macro segment_customers(date_of_segmentation) %}\n WITH customers_with_orders AS (\n\n SELECT\n external_customer_id, \n app_key,\n count(id) AS num_of_orders, \n max(order_date) AS most_recent_order\n\n FROM {{ orders() }}\n WHERE {{ order_date_from_date(365, date_of_segmentation) }}\n AND external_customer_id IS NOT NULL\n GROUP BY external_customer_id, app_key\n\n), retention_metrics_segmented_customers AS (\n\n SELECT \n {{ date_of_segmentation }} AS date_of_segmentation,\n customers_with_orders.app_key,\n customers_with_orders.external_customer_id,\n CASE \n WHEN customers_with_orders.num_of_orders >= 3 THEN 'engaged'\n WHEN customers_with_orders.num_of_orders = 2 THEN 'returning'\n WHEN customers_with_orders.num_of_orders = 1 THEN 'new'\n ELSE 'n/a'\n END AS segment\n FROM customers_with_orders\n)\n\nSELECT * \nFROM retention_metrics_segmented_customers\n\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.orders", "macro.yoda.order_date_from_date"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7328315, "supported_languages": null}, "macro.yoda.total_revenue_segment": {"name": "total_revenue_segment", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/total_revenue_segment.sql", "original_file_path": "macros/retention_metrics/total_revenue_segment.sql", "unique_id": "macro.yoda.total_revenue_segment", "macro_sql": "{% macro total_revenue_segment(trend_start, trend_end, segment_column, trend) %}\n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM {{ ref('platform_stg__retention_metrics_trends_orders') }}\n\n ), total_revenue_segment_{{ trend }} AS (\n SELECT app_key,\n \"{{ trend }}\" as trend,\n (SUM(CASE WHEN\n ({{ order_date_between(trend_start, trend_end) }}\n AND\n {{ segment_column }} = \"engaged\")\n THEN order_total ELSE 0 END)) as total_revenue_engaged,\n (SUM(CASE WHEN\n ({{ order_date_between(trend_start, trend_end) }}\n AND\n {{ segment_column }} = \"returning\")\n THEN order_total ELSE 0 END)) as total_revenue_returning,\n (SUM(CASE WHEN\n ({{ order_date_between(trend_start, trend_end) }}\n AND\n {{ segment_column }} = \"new\")\n THEN order_total ELSE 0 END)) as total_revenue_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n )\n\nSELECT * FROM total_revenue_segment_{{ trend }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.order_date_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.734792, "supported_languages": null}, "macro.yoda.total_yotpo_and_products_revenue_daily": {"name": "total_yotpo_and_products_revenue_daily", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/total_yotpo_and_product_revenue_daily.sql", "original_file_path": "macros/retention_metrics/total_yotpo_and_product_revenue_daily.sql", "unique_id": "macro.yoda.total_yotpo_and_products_revenue_daily", "macro_sql": "{% macro total_yotpo_and_products_revenue_daily() %}\n\nWITH email_attributed_orders AS (\n\n SELECT\n app_key,\n order_id AS external_order_id,\n total_price AS order_total,\n DATE(order_date) AS order_date\n FROM {{ ref('platform_stg__email_shopify_orders_to_shop_currency') }}\n WHERE app_key IS NOT NULL\n\n), sms_attributed_orders AS (\n\n SELECT\n app_key,\n order_id AS external_order_id,\n total_price AS order_total,\n DATE(order_date) AS order_date\n FROM {{ ref('platform_stg__sms_shopify_orders_to_shop_currency') }}\n WHERE app_key IS NOT NULL\n\n), loyalty_attributed_orders AS (\n\n SELECT DISTINCT\n external_order_id,\n app_key,\n order_total,\n order_date\n FROM {{ ref('loyalty__redeemed_purchases') }}\n\n), subscriptions_attributed_orders AS (\n\n SELECT\n app_key,\n external_order_id,\n order_total,\n order_date\n FROM {{ ref('subscriptions__subscriptions_attributed_orders') }}\n\n), reviews_attributed_orders AS (\n\n SELECT\n app_key,\n external_order_id,\n total_price as order_total,\n DATE(order_date) AS order_date\n FROM {{ ref('ugc__partial_reviewed_orders') }}\n\n), products_attributed_orders AS (\n\n SELECT\n COALESCE(subscriptions_attributed_orders.external_order_id,\n loyalty_attributed_orders.external_order_id,\n email_attributed_orders.external_order_id,\n sms_attributed_orders.external_order_id,\n reviews_attributed_orders.external_order_id) AS order_id,\n COALESCE(subscriptions_attributed_orders.order_date,\n loyalty_attributed_orders.order_date,\n email_attributed_orders.order_date,\n sms_attributed_orders.order_date,\n reviews_attributed_orders.order_date) AS order_date,\n COALESCE(subscriptions_attributed_orders.app_key,\n loyalty_attributed_orders.app_key,\n email_attributed_orders.app_key,\n sms_attributed_orders.app_key,\n reviews_attributed_orders.app_key) AS app_key,\n subscriptions_attributed_orders.order_total AS subscriptions_attributed_revenue,\n loyalty_attributed_orders.order_total AS loyalty_attributed_revenue,\n email_attributed_orders.order_total AS email_attributed_revenue,\n sms_attributed_orders.order_total AS sms_attributed_revenue,\n reviews_attributed_orders.order_total AS reviews_attributed_revenue\n FROM\n loyalty_attributed_orders\n FULL JOIN subscriptions_attributed_orders\n ON loyalty_attributed_orders.external_order_id = subscriptions_attributed_orders.external_order_id\n AND loyalty_attributed_orders.app_key = subscriptions_attributed_orders.app_key\n FULL JOIN email_attributed_orders\n ON COALESCE(loyalty_attributed_orders.external_order_id, subscriptions_attributed_orders.external_order_id) = email_attributed_orders.external_order_id\n AND COALESCE(loyalty_attributed_orders.app_key, subscriptions_attributed_orders.app_key) = email_attributed_orders.app_key\n FULL JOIN sms_attributed_orders\n ON COALESCE(loyalty_attributed_orders.external_order_id, subscriptions_attributed_orders.external_order_id, email_attributed_orders.external_order_id) = sms_attributed_orders.external_order_id\n AND COALESCE(loyalty_attributed_orders.app_key, subscriptions_attributed_orders.app_key, email_attributed_orders.app_key) = sms_attributed_orders.app_key\n FULL JOIN reviews_attributed_orders\n ON COALESCE(loyalty_attributed_orders.external_order_id, subscriptions_attributed_orders.external_order_id, email_attributed_orders.external_order_id, sms_attributed_orders.external_order_id) = reviews_attributed_orders.external_order_id\n AND COALESCE(loyalty_attributed_orders.app_key, subscriptions_attributed_orders.app_key, email_attributed_orders.app_key, sms_attributed_orders.app_key) = reviews_attributed_orders.app_key\n\n), total_yotpo_and_products_revenue AS (\n SELECT\n app_key,\n order_date,\n COUNT(IF(subscriptions_attributed_revenue > 0,order_id,0)) AS daily_subscriptions_attributed_orders,\n COUNT(IF(loyalty_attributed_revenue > 0,order_id,0)) AS daily_loyalty_attributed_orders,\n COUNT(IF(email_attributed_revenue > 0,order_id,0)) AS daily_email_attributed_orders,\n COUNT(IF(sms_attributed_revenue > 0,order_id,0)) AS daily_sms_attributed_orders,\n COUNT(IF(reviews_attributed_revenue > 0,order_id,0)) AS daily_reviews_attributed_orders,\n COUNT(IF(subscriptions_attributed_revenue > 0 OR loyalty_attributed_revenue > 0 OR email_attributed_revenue > 0 OR sms_attributed_revenue > 0,order_id,NULL)) AS total_orders,\n SUM(subscriptions_attributed_revenue) AS daily_subscriptions_attributed_revenue,\n SUM(loyalty_attributed_revenue) AS daily_loyalty_attributed_revenue,\n SUM(email_attributed_revenue) AS daily_email_attributed_revenue,\n SUM(sms_attributed_revenue) AS daily_sms_attributed_revenue,\n SUM(reviews_attributed_revenue) AS daily_reviews_attributed_revenue,\n SUM(GREATEST(subscriptions_attributed_revenue, loyalty_attributed_revenue, email_attributed_revenue, sms_attributed_revenue)) AS total_revenue -- Total revenue is currently calculated without reviews\n FROM products_attributed_orders\n GROUP BY app_key, order_date\n)\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7379785, "supported_languages": null}, "macro.yoda.trend_avg_order_value_per_segment": {"name": "trend_avg_order_value_per_segment", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/trend_avg_order_value.sql", "original_file_path": "macros/retention_metrics/trend_avg_order_value.sql", "unique_id": "macro.yoda.trend_avg_order_value_per_segment", "macro_sql": "{% macro trend_avg_order_value_per_segment(trend_start, trend_end) %}\n WITH retention_metrics_trends_orders AS (\n\n SELECT * FROM {{ ref('platform_stg__retention_metrics_trends_orders') }}\n\n ), avg_order_value_last_{{ trend_end }}_days AS (\n SELECT app_key,\n \"Previous_{{ trend_end }}_days\" AS trend,\n (SUM(CASE WHEN \n ({{ order_date_between(trend_start, trend_end) }}\n AND\n segment_{{ trend_end }}_days_ago = \"engaged\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n ({{ order_date_between(trend_start, trend_end) }}\n AND\n segment_{{ trend_end }}_days_ago = \"engaged\") THEN external_customer_id END)) AS aov_for_customers_engaged,\n (SUM(CASE WHEN \n ({{ order_date_between(trend_start, trend_end) }}\n AND\n segment_{{ trend_end }}_days_ago = \"returning\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n ({{ order_date_between(trend_start, trend_end) }}\n AND\n segment_{{ trend_end }}_days_ago = \"returning\") THEN external_customer_id END)) AS aov_for_customers_returning,\n (SUM(CASE WHEN \n ({{ order_date_between(trend_start, trend_end) }}\n AND\n segment_{{ trend_end }}_days_ago = \"new\")\n THEN order_total ELSE 0 END)\n / \n COUNT(CASE WHEN \n ({{ order_date_between(trend_start, trend_end) }}\n AND\n segment_{{ trend_end }}_days_ago = \"new\") THEN external_customer_id END)) AS aov_for_customers_new\n FROM retention_metrics_trends_orders\n GROUP BY app_key\n ), avg_order_value_last_{{ trend_end }}_days_non_null AS (\n \n SELECT \n app_key,\n trend,\n COALESCE(aov_for_customers_engaged, 0) AS aov_for_engaged_customers,\n COALESCE(aov_for_customers_returning, 0) AS aov_for_returning_customers,\n COALESCE(aov_for_customers_new, 0) AS aov_for_new_customers\n FROM avg_order_value_last_{{ trend_end }}_days\n \n )\n\n SELECT * FROM avg_order_value_last_{{ trend_end }}_days_non_null\n\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.order_date_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.741902, "supported_languages": null}, "macro.yoda.average_sales_per_customer_test": {"name": "average_sales_per_customer_test", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/test/average_sales_per_customer.sql", "original_file_path": "macros/retention_metrics/test/average_sales_per_customer.sql", "unique_id": "macro.yoda.average_sales_per_customer_test", "macro_sql": "{% macro average_sales_per_customer_test() %}\n -- Average Sales Per customer\n ----------------------------------------------------------------------------------------------------------------\n -- New\n {{ insert_order_record(100, 123, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '1' DAY\") }}\n UNION ALL\n {{ insert_order_record(0, 321, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '1' DAY\") }}\n UNION ALL\n -- Returning\n {{ insert_order_record(100, 1234, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '10' DAY\") }}\n UNION ALL\n {{ insert_order_record(200, 1234, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '11' DAY\") }}\n UNION ALL\n {{ insert_order_record(300, 4321, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '11' DAY\") }}\n UNION ALL\n {{ insert_order_record(400, 4321, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '11' DAY\") }}\n -- Engaged\n UNION ALL\n {{ insert_order_record(100, 12345, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '34' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '10' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '91' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '91' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '34' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '10' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '91' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '91' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'average_sales_per_customer_app_key', \"current_date() - INTERVAL '370' DAY\") }}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.insert_order_record"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7497516, "supported_languages": null}, "macro.yoda.barchart_current_month_test": {"name": "barchart_current_month_test", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/test/barchart_current_month.sql", "original_file_path": "macros/retention_metrics/test/barchart_current_month.sql", "unique_id": "macro.yoda.barchart_current_month_test", "macro_sql": "{% macro barchart_current_month_test() %}\n -- Barchart current month\n -- New\n {{ insert_order_record(100, 123, 'bar_chart_current_month_app_key', \"current_date() - INTERVAL '29' DAY\") }}\n UNION ALL\n {{ insert_order_record(50, 321, 'bar_chart_current_month_app_key', \"current_date() - INTERVAL '28' DAY\") }}\n UNION ALL\n {{ insert_order_record(200, 4321, 'bar_chart_current_month_app_key', \"current_date() - INTERVAL '23' DAY\") }}\n UNION ALL\n -- Returning\n {{ insert_order_record(100, 1234, 'bar_chart_current_month_app_key', \"current_date() - INTERVAL '22' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 1234, 'bar_chart_current_month_app_key', \"current_date() - INTERVAL '11' DAY\") }}\n -- Engaged\n UNION ALL\n {{ insert_order_record(100, 12345, 'bar_chart_current_month_app_key', \"current_date() - INTERVAL '10' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'bar_chart_current_month_app_key', \"current_date() - INTERVAL '3' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'bar_chart_current_month_app_key', \"current_date() - INTERVAL '2' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'bar_chart_current_month_app_key', \"current_date() - INTERVAL '6' DAY\") }}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.insert_order_record"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7525005, "supported_languages": null}, "macro.yoda.barchart_previous_month_test": {"name": "barchart_previous_month_test", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/test/barchart_previous_month.sql", "original_file_path": "macros/retention_metrics/test/barchart_previous_month.sql", "unique_id": "macro.yoda.barchart_previous_month_test", "macro_sql": "{% macro barchart_previous_month_test() %}\n -- New customers\n {{ insert_order_record(100, 123, 'bar_chart_previous_month_app_key', \"current_date() - INTERVAL '31' DAY\") }}\n UNION ALL\n {{ insert_order_record(50, 321, 'bar_chart_previous_month_app_key', \"current_date() - INTERVAL '31' DAY\") }}\n UNION ALL\n {{ insert_order_record(200, 4321, 'bar_chart_previous_month_app_key', \"current_date() - INTERVAL '31' DAY\") }}\n UNION ALL\n -- Returning customers\n {{ insert_order_record(100, 1234, 'bar_chart_previous_month_app_key', \"current_date() - INTERVAL '31' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 1234, 'bar_chart_previous_month_app_key', \"current_date() - INTERVAL '31' DAY\") }}\n -- Engaged customers\n UNION ALL\n {{ insert_order_record(100, 12345, 'bar_chart_previous_month_app_key', \"current_date() - INTERVAL '31' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'bar_chart_previous_month_app_key', \"current_date() - INTERVAL '31' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'bar_chart_previous_month_app_key', \"current_date() - INTERVAL '31' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'bar_chart_previous_month_app_key', \"current_date() - INTERVAL '31' DAY\") }}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.insert_order_record"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7552097, "supported_languages": null}, "macro.yoda.customer_segment_ratio_test": {"name": "customer_segment_ratio_test", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/test/customer_segment_ratio.sql", "original_file_path": "macros/retention_metrics/test/customer_segment_ratio.sql", "unique_id": "macro.yoda.customer_segment_ratio_test", "macro_sql": "{% macro customer_segment_ratio_test() %}\n -- Customer segmentation ratio\n -- New\n {{ insert_order_record(100, 123, 'customer_segment_ratio_app_key', \"current_date() - INTERVAL '1' DAY\") }}\n UNION ALL\n -- Returning\n {{ insert_order_record(100, 1234, 'customer_segment_ratio_app_key', \"current_date() - INTERVAL '10' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 1234, 'customer_segment_ratio_app_key', \"current_date() - INTERVAL '11' DAY\") }}\n -- Engaged\n UNION ALL\n {{ insert_order_record(100, 12345, 'customer_segment_ratio_app_key', \"current_date() - INTERVAL '34' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'customer_segment_ratio_app_key', \"current_date() - INTERVAL '10' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'customer_segment_ratio_app_key', \"current_date() - INTERVAL '91' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'customer_segment_ratio_app_key', \"current_date() - INTERVAL '91' DAY\") }} \n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.insert_order_record"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7575014, "supported_languages": null}, "macro.yoda.insert_order_record": {"name": "insert_order_record", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/test/insert_order_record.sql", "original_file_path": "macros/retention_metrics/test/insert_order_record.sql", "unique_id": "macro.yoda.insert_order_record", "macro_sql": "{% macro insert_order_record(amount, cust_id, app_key, order_date) %}\n\nSELECT\n uuid() AS id,\n null AS order_sum_account_currency,\n null AS order_sum_order_currency,\n null AS order_currency_iso,\n '{{ amount }}' AS total_price, \n '{{ cust_id }}' AS external_customer_id,\n '{{ app_key }}' AS app_key, DATE({{order_date}}) AS order_date\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.758219, "supported_languages": null}, "macro.yoda.repeating_customers_test": {"name": "repeating_customers_test", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/test/repeating_customers.sql", "original_file_path": "macros/retention_metrics/test/repeating_customers.sql", "unique_id": "macro.yoda.repeating_customers_test", "macro_sql": "{% macro repeating_customers_test() %}\n -- Repeating customers \n -- Customer has to have two different orders in the last 7 days and in the past year to be considered repeating\n ----------------------------------------------------------------------------------------------------------------\n {{ insert_order_record(100, 123, 'repeat_customer_app_key', \"current_date() - INTERVAL '1' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 123, 'repeat_customer_app_key', \"current_date() - INTERVAL '89' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 1234, 'repeat_customer_app_key', \"current_date() - INTERVAL '3' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'repeat_customer_app_key', \"current_date() - INTERVAL '6' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 321, 'repeat_customer_app_key', \"current_date() - INTERVAL '8' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 321, 'repeat_customer_app_key', \"current_date() - INTERVAL '9' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 4321, 'repeat_customer_app_key', \"current_date() - INTERVAL '10' DAY\") }}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.insert_order_record"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7602305, "supported_languages": null}, "macro.yoda.total_sales_and_total_customers_test": {"name": "total_sales_and_total_customers_test", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/test/total_sales_and_total_customers.sql", "original_file_path": "macros/retention_metrics/test/total_sales_and_total_customers.sql", "unique_id": "macro.yoda.total_sales_and_total_customers_test", "macro_sql": "{% macro total_sales_and_total_customers_test() %}\n -- Total Sales\n -- Last 7 Days\n {{ insert_order_record(100, 123, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '1' DAY\") }}\n UNION ALL\n {{ insert_order_record(0, 321, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '1' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 1234, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '2' DAY\") }}\n UNION ALL\n {{ insert_order_record(200, 1234, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '3' DAY\") }}\n UNION ALL\n {{ insert_order_record(300, 4321, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '4' DAY\") }}\n -- Last 30 Days \n UNION ALL\n {{ insert_order_record(400, 4321, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '11' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '16' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '29' DAY\") }}\n -- Last 90 Days\n UNION ALL\n {{ insert_order_record(100, 12345, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '89' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '89' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '65' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '43' DAY\") }}\n -- Last 365 Days\n UNION ALL\n {{ insert_order_record(1000, 54321, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '110' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'total_sales_and_total_customers_app_key', \"current_date() - INTERVAL '130' DAY\") }}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.insert_order_record"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7646267, "supported_languages": null}, "macro.yoda.total_sales_per_customer_test": {"name": "total_sales_per_customer_test", "resource_type": "macro", "package_name": "yoda", "path": "macros/retention_metrics/test/total_sales_per_customer.sql", "original_file_path": "macros/retention_metrics/test/total_sales_per_customer.sql", "unique_id": "macro.yoda.total_sales_per_customer_test", "macro_sql": "{% macro total_sales_per_customer_test() %}\n -- Total Sales\n ----------------------------------------------------------------------------------------------------------------\n -- New\n {{ insert_order_record(100, 123, 'total_sales_app_key', \"current_date() - INTERVAL '1' DAY\") }}\n UNION ALL\n {{ insert_order_record(0, 321, 'total_sales_app_key', \"current_date() - INTERVAL '1' DAY\") }}\n UNION ALL\n -- Returning\n {{ insert_order_record(100, 1234, 'total_sales_app_key', \"current_date() - INTERVAL '10' DAY\") }}\n UNION ALL\n {{ insert_order_record(200, 1234, 'total_sales_app_key', \"current_date() - INTERVAL '11' DAY\") }}\n UNION ALL\n {{ insert_order_record(300, 4321, 'total_sales_app_key', \"current_date() - INTERVAL '4' DAY\") }}\n UNION ALL\n {{ insert_order_record(400, 4321, 'total_sales_app_key', \"current_date() - INTERVAL '11' DAY\") }}\n -- Engaged\n UNION ALL\n {{ insert_order_record(100, 12345, 'total_sales_app_key', \"current_date() - INTERVAL '34' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'total_sales_app_key', \"current_date() - INTERVAL '10' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'total_sales_app_key', \"current_date() - INTERVAL '91' DAY\") }}\n UNION ALL\n {{ insert_order_record(100, 12345, 'total_sales_app_key', \"current_date() - INTERVAL '91' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'total_sales_app_key', \"current_date() - INTERVAL '5' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'total_sales_app_key', \"current_date() - INTERVAL '10' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'total_sales_app_key', \"current_date() - INTERVAL '91' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'total_sales_app_key', \"current_date() - INTERVAL '91' DAY\") }}\n UNION ALL\n {{ insert_order_record(1000, 54321, 'total_sales_app_key', \"current_date() - INTERVAL '370' DAY\") }}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.insert_order_record"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7690892, "supported_languages": null}, "macro.yoda.select_table": {"name": "select_table", "resource_type": "macro", "package_name": "yoda", "path": "macros/select_table/select_table.sql", "original_file_path": "macros/select_table/select_table.sql", "unique_id": "macro.yoda.select_table", "macro_sql": "{% macro select_table(model_table, unit_test_table, should_mock_data) %}\n\n {% if should_mock_data == true %}\n\n {{ return(unit_test_table) }}\n\n {% else %}\n\n {{ return(model_table) }}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "A macro created to mock data for unit testing. It checks if current run is dedicated for unit test and replacing source / reference to the object which is a mock (created as DBT seed).", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/select_table/select_table.yml", "arguments": [{"name": "model_table", "type": "DBT ref / source", "description": "Name of the DBT reference / source object that should be used when current run is not related with unit testing"}, {"name": "unit_test_table", "type": "DBT ref / source", "description": "Name of the mocked DBT seed object that should be used when current run is related with unit testing"}, {"name": "should_mock_data", "type": "Boolean", "description": "Boolean flag if data should be mocked (for test run) or not (production run)"}], "created_at": 1700082635.6621387, "supported_languages": null}, "macro.yoda.test_select_table": {"name": "test_select_table", "resource_type": "macro", "package_name": "yoda", "path": "macros/select_table/unit_test/test_select_table.sql", "original_file_path": "macros/select_table/unit_test/test_select_table.sql", "unique_id": "macro.yoda.test_select_table", "macro_sql": "{% macro test_select_table() %}\n {% do test_mock_run() %}\n {% do test_no_mock_run() %}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.test_mock_run", "macro.yoda.test_no_mock_run"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7707593, "supported_languages": null}, "macro.yoda.test_mock_run": {"name": "test_mock_run", "resource_type": "macro", "package_name": "yoda", "path": "macros/select_table/unit_test/test_select_table.sql", "original_file_path": "macros/select_table/unit_test/test_select_table.sql", "unique_id": "macro.yoda.test_mock_run", "macro_sql": "{% macro test_mock_run() %}\n {% set result = select_table(model_table = ref('analytics___utils_stg__calendar'), unit_test_table = ref('analytics___utils_stg__unit_test_generic'), should_mock_data = true ) %}\n {{ dbt_unittest.assert_equals(result, ref('analytics___utils_stg__unit_test_generic')) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.select_table", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.771539, "supported_languages": null}, "macro.yoda.test_no_mock_run": {"name": "test_no_mock_run", "resource_type": "macro", "package_name": "yoda", "path": "macros/select_table/unit_test/test_select_table.sql", "original_file_path": "macros/select_table/unit_test/test_select_table.sql", "unique_id": "macro.yoda.test_no_mock_run", "macro_sql": "{% macro test_no_mock_run() %}\n {% set result = select_table(model_table = ref('analytics___utils_stg__calendar'), unit_test_table = ref('analytics___utils_stg__unit_test_generic'), should_mock_data = false ) %}\n {{ dbt_unittest.assert_equals(result, ref('analytics___utils_stg__calendar')) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.select_table", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7723389, "supported_languages": null}, "macro.yoda.get_column_names": {"name": "get_column_names", "resource_type": "macro", "package_name": "yoda", "path": "macros/table_structure_functions/table_structure_functions.sql", "original_file_path": "macros/table_structure_functions/table_structure_functions.sql", "unique_id": "macro.yoda.get_column_names", "macro_sql": "{%- macro get_column_names(source_table_ref) -%}\n {{ return(adapter.get_columns_in_relation(source_table_ref) | map(attribute='name') | list) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "This macro returns a list of column names from a given source table.\nWill throw an expception when a called with non-existing table.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/table_structure_functions/table_structure_functions.yml", "arguments": [{"name": "source", "type": "string", "description": "reference of the source table, e.g: ref('analytics___salesforce_stg__mc_conversion_rate')"}], "created_at": 1700082635.6636097, "supported_languages": null}, "macro.yoda.column_type_mapping": {"name": "column_type_mapping", "resource_type": "macro", "package_name": "yoda", "path": "macros/table_structure_functions/table_structure_functions.sql", "original_file_path": "macros/table_structure_functions/table_structure_functions.sql", "unique_id": "macro.yoda.column_type_mapping", "macro_sql": "{%- macro column_type_mapping(source_table_ref) -%}\n {%- set column_names = get_column_names(source_table_ref) -%}\n {%- set column_types = (adapter.get_columns_in_relation(source_table_ref) | map(attribute='data_type') | list ) -%}\n {%- set column_mapping = dict(zip(column_names, column_types)) -%}\n {{ return(column_mapping) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.yoda.get_column_names"]}, "description": "This macro returns a mapping of column names and their data type from a given source table.\nWill throw an expception when a called with non-existing table.\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/table_structure_functions/table_structure_functions.yml", "arguments": [{"name": "source", "type": "string", "description": "reference of the source table, e.g: ref('analytics___salesforce_stg__mc_conversion_rate')"}], "created_at": 1700082635.664906, "supported_languages": null}, "macro.yoda.test_column_type_mapping": {"name": "test_column_type_mapping", "resource_type": "macro", "package_name": "yoda", "path": "macros/table_structure_functions/unit_test/test_column_type_mapping.sql", "original_file_path": "macros/table_structure_functions/unit_test/test_column_type_mapping.sql", "unique_id": "macro.yoda.test_column_type_mapping", "macro_sql": "{% macro test_column_type_mapping() %}\n {% do test_column_type_mapping_existing_table() %}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.test_column_type_mapping_existing_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7747169, "supported_languages": null}, "macro.yoda.test_column_type_mapping_existing_table": {"name": "test_column_type_mapping_existing_table", "resource_type": "macro", "package_name": "yoda", "path": "macros/table_structure_functions/unit_test/test_column_type_mapping.sql", "original_file_path": "macros/table_structure_functions/unit_test/test_column_type_mapping.sql", "unique_id": "macro.yoda.test_column_type_mapping_existing_table", "macro_sql": "{% macro test_column_type_mapping_existing_table() -%}\n {% set result = column_type_mapping(source_table_ref = ref('analytics___utils_stg__unit_test_generic')) %}\n {{ dbt_unittest.assert_equals(result, ['date_field','timestamp_field','string_field','boolean_field','tinyint_field','smallint_field','int_field','float_field','double_field']) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.column_type_mapping", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7755, "supported_languages": null}, "macro.yoda.test_get_column_names": {"name": "test_get_column_names", "resource_type": "macro", "package_name": "yoda", "path": "macros/table_structure_functions/unit_test/test_get_column_names.sql", "original_file_path": "macros/table_structure_functions/unit_test/test_get_column_names.sql", "unique_id": "macro.yoda.test_get_column_names", "macro_sql": "{% macro test_get_column_names() %}\n {% do test_get_column_names_existing_table() %}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.test_get_column_names_existing_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7761064, "supported_languages": null}, "macro.yoda.test_get_column_names_existing_table": {"name": "test_get_column_names_existing_table", "resource_type": "macro", "package_name": "yoda", "path": "macros/table_structure_functions/unit_test/test_get_column_names.sql", "original_file_path": "macros/table_structure_functions/unit_test/test_get_column_names.sql", "unique_id": "macro.yoda.test_get_column_names_existing_table", "macro_sql": "{% macro test_get_column_names_existing_table() %}\n {% set result = get_column_names(source_table_ref = ref('analytics___utils_stg__unit_test_generic')) %}\n {{ dbt_unittest.assert_equals(result, {'date_field': 'date', 'timestamp_field': 'timestamp', 'string_field': 'string', 'boolean_field': 'boolean', 'tinyint_field': 'tinyint', 'smallint_field': 'smallint', 'int_field': 'int', 'float_field': 'float', 'double_field': 'double'}) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.get_column_names", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7772326, "supported_languages": null}, "macro.yoda.get_pixel_data": {"name": "get_pixel_data", "resource_type": "macro", "package_name": "yoda", "path": "macros/ugc/pixel.sql", "original_file_path": "macros/ugc/pixel.sql", "unique_id": "macro.yoda.get_pixel_data", "macro_sql": "{% macro get_pixel_data(\n source_table, \n is_incremental, \n with_widgets=True,\n source_table_date_column='date') -%}\n\n {% set bots = '\\'(?i)bot|spider|facebookexternalhit|simplepie|yahooseeker|embedly|quora link preview|outbrain|vkshare|monit|Pingability|Monitoring|WinHttpRequest|Apache-HttpClient|getprismatic.com|python-requests|Twurly|yandex|browserproxy|Monitoring|crawler|Qwantify|Yahoo! Slurp\\'' %}\n\nWITH \nv3_widgets AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n domain_userid AS domain_user_id,\n{% if with_widgets %} \n se_category,\n{% endif %} \n SUM(CASE WHEN se_action in ('shown', 'clicked_on') THEN 1 ELSE 0 END) > 0 as is_interacted_user\n FROM \n {{ ref('infra__pixel_onsite_v3') }}\n WHERE \n (\n (se_category in (\"questions-and-answers-widget\", \"reviews-main-widget\", \"reviews-seo-page\") AND se_action = \"shown\" AND se_label = \"app\")\n OR (se_category in(\"star-ratings-widget\",\"reviews-tab\",\"reviews-carousel-widget\", \"promoted-products-widget\") AND se_action = \"clicked_on\")\n OR (se_action = \"loaded\" AND se_label = \"widget\" AND se_category IN (\"promoted-products-widget\",\"reviews-seo-page\",\"reviews-carousel-widget\",\"reviews-main-widget\",\"questions-and-answers-widget\",\"star-ratings-widget\",\"reviews-tab\",\"\"))\n ) \n AND useragent NOT REGEXP {{ bots }}\n{% if is_incremental %} \n AND partition_date > (SELECT MAX({{ source_table_date_column }}) FROM {{ source_table }}) AND partition_date < CURRENT_DATE()\n{% else %}\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n{% endif %}\n GROUP BY \n date,\n app_key,\n domain_user_id\n{% if with_widgets %} \n ,se_category\n{% endif %} \n\n),\nv2_widgets AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n domain_userid AS domain_user_id,\n{% if with_widgets %} \n se_category,\n{% endif %} \n SUM(CASE WHEN se_action in ('shown', 'clicked_on') THEN 1 ELSE 0 END) > 0 as is_interacted_user\n FROM \n {{ ref('infra__pixel_onsite_v2') }}\n WHERE \n (\n (se_category IN (\"reviews\",\"questions_widget\",\"pictures_widget\",\"reviews_dedicated_page\") AND se_action IN (\"loaded\", \"shown\"))\n OR (se_category IN (\"pictures_widget_popup\",\"carousel\", \"star_rating\",\"Reviews_Badge\",\"tab\",\"promoted_products\") AND se_action IN (\"loaded\", \"clicked_on\"))\n ) \n AND useragent NOT REGEXP {{ bots }}\n{% if is_incremental %} \n AND partition_date > (SELECT MAX({{ source_table_date_column }}) FROM {{ source_table }}) AND partition_date < CURRENT_DATE()\n{% else %}\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n{% endif %}\n GROUP BY \n date,\n app_key,\n domain_user_id\n{% if with_widgets %} \n ,se_category\n{% endif %} \n),\norders AS (\n SELECT\n partition_date AS date,\n se_value AS app_key,\n tr_orderid,\n MIN(domain_userid) AS domain_user_id,\n FIRST(tr_currency) as currency, \n AVG(tr_total) as tr_total\n FROM \n {{ ref('infra__pixel_onsite_v2') }}\n WHERE \n tr_orderid IS NOT NULL \n AND useragent NOT REGEXP {{ bots }}\n{% if is_incremental %} \n AND partition_date > (SELECT MAX({{ source_table_date_column }}) FROM {{ source_table }}) AND partition_date < CURRENT_DATE()\n{% else %}\n AND partition_date = date_sub(CURRENT_DATE(), 1)\n{% endif %}\n GROUP BY \n date,\n app_key,\n tr_orderid\n)\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.7818148, "supported_languages": null}, "macro.yoda.incremental_condition": {"name": "incremental_condition", "resource_type": "macro", "package_name": "yoda", "path": "macros/yoda_utils/incremental_condition/incremental_condition.sql", "original_file_path": "macros/yoda_utils/incremental_condition/incremental_condition.sql", "unique_id": "macro.yoda.incremental_condition", "macro_sql": "{%- macro incremental_condition(data_type,\n destination_condition_column,\n query_condition_column,\n min_lower_bound,\n max_upper_bound,\n subtract,\n max_days_per_run,\n is_incremental_run,\n destination_table,\n sql_condition_key_word='WHERE'\n ) -%}\n\n{#- +++++++++++++++++ 1 - input control +++++++++++++++ -#}\n\n {%- if not data_type -%}\n {{ exceptions.raise_compiler_error(\"The 'data_type' is a mandatory variable\") }}\n {%- elif not destination_condition_column -%}\n {{ exceptions.raise_compiler_error(\"'The 'destination_condition_column' is a mandatory variable\") }}\n {%- elif not data_type.upper() in ['DATE','TIMESTAMP','INT','BIGINT'] -%}\n {{ exceptions.raise_compiler_error(\"Invalid `data_type`. Got: \" ~ data_type) }}\n {%- elif (min_lower_bound) and (max_upper_bound) and (min_lower_bound >= max_upper_bound) -%}\n {{ exceptions.raise_compiler_error(\"The 'min_lower_bound' value must be less than 'max_upper_bound' value\") }}\n {%- endif -%}\n\n{#- ++++++++++++++ 2 - adjusted variables +++++++++++++ -#}\n\n {%- set conditions_list = [] -%}\n\n {%- set data_type = data_type.upper() -%}\n\n {%- if not query_condition_column -%}\n {%- set query_condition_column = data_type ~ '(' ~ destination_condition_column ~ ')' -%}\n {%- else -%}\n {%- set query_condition_column = data_type ~ '(' ~ query_condition_column ~ ')' -%}\n {%- endif -%}\n\n {%- if this is defined -%}\n {%- if not is_incremental_run -%}\n {%- set is_incremental_run = is_incremental() -%}\n {%- endif -%}\n\n {%- if not destination_table -%}\n {%- set destination_table = this -%}\n {%- endif -%}\n {%- endif -%}\n\n {%- if max_days_per_run -%}\n {%- set adjusted_max_days_per_run = max_days_per_run - 1 -%}\n {%- endif -%}\n\n {%- set sql_condition_key_word = sql_condition_key_word.upper() ~ ' ' -%}\n\n{#- ++++++++++++ 3 - lower bound condition ++++++++++++ -#}\n\n {%- if min_lower_bound -%}\n {%- if (data_type in ['DATE','TIMESTAMP']) and (min_lower_bound[0] in '0123456789') -%}\n {%- set min_lower_bound = data_type ~ \"('\" ~ min_lower_bound ~ \"')\" -%}\n {%- else -%}\n {%- set min_lower_bound = data_type ~ '(' ~ min_lower_bound ~ ')' -%}\n {%- endif -%}\n {%- set lower_bound_condition = query_condition_column ~ ' >= ' ~ min_lower_bound -%}\n {{- conditions_list.append(lower_bound_condition) or '' -}}\n {%- endif -%}\n\n{#- ++++++++++++ 4 - upper bound condition ++++++++++++ -#}\n\n {%- if max_upper_bound -%}\n {%- if data_type in ['DATE','TIMESTAMP'] and (max_upper_bound[0] in '0123456789') -%}\n {%- set max_upper_bound = data_type ~ \"('\" ~ max_upper_bound ~ \"')\" -%}\n {%- else -%}\n {%- set max_upper_bound = data_type ~ '(' ~ max_upper_bound ~ ')' -%}\n {%- endif -%}\n {%- elif data_type in ['DATE','TIMESTAMP'] -%}\n {%- set max_upper_bound = 'DATE_SUB(CURRENT_DATE,1)' -%}\n {%- endif -%}\n\n {%- if max_upper_bound -%} \n {%- set upper_bound_condition = query_condition_column ~ ' <= ' ~ max_upper_bound -%}\n {{- conditions_list.append(upper_bound_condition) or '' -}}\n {%- endif -%}\n \n{#- +++++++++++++++ 5 - incremental condition ++++++++++++++ -#}\n\n {%- if is_incremental_run -%}\n {%- set subquery_min_lower_bound = 'MAX(' ~ destination_condition_column ~ ')' -%}\n {%- if subtract -%}\n {%- if data_type in ['DATE','TIMESTAMP'] -%}\n {%- set subquery_min_lower_bound = 'DATE_SUB(' ~ subquery_min_lower_bound ~ ',' ~ subtract ~ ')' -%}\n {%- else -%}\n {%- set subquery_min_lower_bound = '(' ~ subquery_min_lower_bound ~ ' - ' ~ subtract ~ ')' -%}\n {%- endif -%}\n {%- endif -%}\n {%- set subquery_from_target = 'SELECT ' ~ subquery_min_lower_bound ~ ' FROM ' ~ destination_table -%}\n {%- set incremental_condition = query_condition_column ~ ' > ' ~ '(' ~ subquery_from_target ~ ')' -%}\n {{- conditions_list.append(incremental_condition) or '' -}}\n\n {%- endif -%}\n\n{#- ++++++++++++++ 6 - maximum days per run +++++++++++++ -#}\n\n {%- if (max_days_per_run) and (data_type in ['DATE','TIMESTAMP']) and ((min_lower_bound) or (subquery_min_lower_bound))-%}\n\n {#- ++++++++++ 6a - minimum_date calculation ++++++++++ -#}\n\n {%- set min_date_conditions_list = [] -%}\n\n {%- if min_lower_bound -%}\n {%- set q_min_lower_bound = min_lower_bound -%}\n {{- min_date_conditions_list.append(q_min_lower_bound) or '' -}}\n {%- endif -%}\n\n {%- if subquery_min_lower_bound -%}\n {%- set q_min_date_incremental = '(SELECT DATE_ADD(' ~ subquery_min_lower_bound ~ ',1) AS minimum_date FROM ' ~ destination_table ~ ')' -%}\n {{- min_date_conditions_list.append(q_min_date_incremental) or '' -}}\n {%- endif -%}\n\n {% if min_date_conditions_list|length == 2 %}\n {%- set q_minimum_date = '(SELECT GREATEST(' ~ q_min_lower_bound ~ ',' ~ q_min_date_incremental ~ ') AS minimum_date)' -%}\n {% elif min_lower_bound %}\n {%- set q_minimum_date = '(SELECT ' ~ min_lower_bound ~ ' AS minimum_date)' -%}\n {% elif subquery_min_lower_bound %}\n {%- set q_minimum_date = q_min_date_incremental -%}\n {%- endif -%}\n\n {#- ++++++++++ 6b - maximum_date calculation ++++++++++ -#}\n\n {%- if max_upper_bound -%}\n {%- set q_maximum_date = '(SELECT ' ~ max_upper_bound ~ ' AS maximum_date)' -%}\n {%- else -%}\n {%- set q_maximum_date = '(SELECT CURRENT_DATE AS maximum_date)' -%}\n {%- endif -%}\n\n {#- ++++++++++ 6c - date diff calculation ++++++++++ -#}\n\n {%- set q_days_cnt = 'SELECT DATEDIFF(' ~ q_maximum_date ~ ',' ~ q_minimum_date ~ ') AS days_cnt' -%}\n {%- set result_q_days_cnt = run_query(q_days_cnt) -%}\n {% if execute %}\n {%- set days_cnt = result_q_days_cnt.columns[0].values()[0] | int -%}\n {% else %}\n {%- set days_cnt = 0 -%}\n {% endif %}\n\n {#- ++++++++++ 6d - dates comparison ++++++++++ -#}\n\n {%- if days_cnt > adjusted_max_days_per_run -%}\n {%- set result_q_minimum_date = run_query(q_minimum_date) -%}\n {% if execute %}\n {%- set minimum_date_before_clean = result_q_minimum_date.columns[0].values() -%}\n {%- set minimum_date_after_clean = minimum_date_before_clean | replace(\"(datetime.date(\",\"\") | replace(\"),)\",\"\") -%}\n {%- set minimum_date_list = minimum_date_after_clean.split(',') -%}\n {%- set minimum_date_year = minimum_date_list[0] | trim() -%}\n {%- set minimum_date_month_before_clean = '0' ~ minimum_date_list[1] | trim() -%}\n {%- set minimum_date_month = minimum_date_month_before_clean[-2:] -%}\n {%- set minimum_date_day_before_clean = '0' ~ minimum_date_list[2] | trim() -%}\n {%- set minimum_date_day = minimum_date_day_before_clean[-2:] -%}\n {%- set minimum_date = \"DATE('\" ~ minimum_date_year ~ '-' ~ minimum_date_month ~ '-' ~ minimum_date_day ~ \"')\" -%}\n {%- set maximum_date = 'DATE_ADD(' ~ minimum_date ~ ',' ~ adjusted_max_days_per_run ~ ')' -%}\n {%- set alternative_condition = query_condition_column ~ ' BETWEEN ' ~ minimum_date ~ ' AND ' ~ maximum_date -%}\n {%- set conditions_list = [alternative_condition] -%}\n {% endif %}\n {%- endif -%}\n\n {%- endif -%}\n{#- ++++++++++++++ 7 - result +++++++++++++ -#}\n\n{{- sql_condition_key_word ~ conditions_list|join(' AND ') if conditions_list|length > 0 else '' -}}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.is_incremental", "macro.dbt.run_query"]}, "description": "This macro enables users to write incremental model conditions in a user-friendly manner.\nTo apply a condition, specify the data type and column(s) on which it should be based.\nIt is also possible to limit the range of the query data result by setting a minimum lower bound and a maximum upper bound.\nIn addition, it is possible to enter a number to subtract (days number or integer number, depending on the data_type value) from the max value of the target table column (useful in merge incremental strategy).\nAdditionally, It is possible to define a maximum number of days for the data range of the query in advance.\n\n# Example 1:\n\ndata_type='DATE'\ndestination_condition_column='date'\ndestination_table='public_analytics.example_table'\n\n## Compiled Code At The First RUN:\n```\n```\n\n## Compiled Code From The Second RUN (Incremental Run):\n```\nWHERE DATE(date) > (SELECT MAX(date) FROM public_analytics.example_table)\n```\n\n# Example 2:\n\ndata_type='DATE'\ndestination_condition_column='date'\nsubtract=7\nmin_lower_bound='2022-01-01'\nmax_upper_bound='2022-12-31'\ndestination_table='public_analytics.example_table'\n\n## Compiled Code At The First RUN:\n```\nWHERE DATE(date) >= DATE('2022-01-01') AND DATE(date) <= DATE('2022-12-31')\n```\n\n## Compiled Code From The Second RUN (Incremental Run):\n```\nWHERE DATE(date) >= DATE('2022-01-01') AND DATE(date) <= DATE('2022-12-31') AND DATE(date) > (SELECT DATE_SUB(MAX(date),7) FROM public_analytics.example_table)\n```\n", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "yoda://macros/yoda_utils/incremental_condition/incremental_condition.yml", "arguments": [{"name": "data_type", "type": "string", "description": "The condition column data type. | Mandatory | possible values: date, timestamp, int, bigint."}, {"name": "destination_condition_column", "type": "string", "description": "The target table's (this) column that is used for the incremental condition. | Mandatory"}, {"name": "query_condition_column", "type": "string", "description": "The query column that is used for the incremental condition. | Optional | Default: same value as the destination_condition_column."}, {"name": "min_lower_bound", "type": "string", "description": "The minimum start date to retrieve from the query. Useful in cases when it is the first run of the model, and we would like to limit the lower bound of the data. | Optional | Default: None"}, {"name": "max_upper_bound", "type": "string", "description": "The maximum upper bound to retrieve from the query. Useful in cases when we would like to limit the upper bound of the data (e.g., preventing an insert of current date partial data). | Optional | Default value (only in case where data_type = 'date'/'timestamp'): yesterday's date, DATE_SUB(CURRENT_DATE,1)"}, {"name": "subtract", "type": "integer", "description": "A number to subtract (days number or integer number, depending on the data_type value) from the max value of the target table column. | Optional | Default: None"}, {"name": "max_days_per_run", "type": "integer", "description": "The maximum possible number of days for a single run (effective only if data_type = 'date'/'timestamp' and only when at least one of the following 2 cases are met: 1 - min_lower_bound was defined, 2 - it's an incremental run.). In case the original time range exceeds this number of days, the upper bound of the query time range will be limited. | Optional | Default: None"}, {"name": "is_incremental_run", "type": "bool", "description": "Whether the run in incremental or not | Optional | Default: is_incremental() macro result"}, {"name": "destination_table", "type": "string", "description": "The destination table which will be populated by the incremental logic | Optional | Default: dbt this variable value (model's target table)"}, {"name": "sql_condition_key_word", "type": "bool", "description": "The SQL condition key word | Optional | Default: 'WHERE'"}], "created_at": 1700082635.6727438, "supported_languages": null}, "macro.yoda.test_incremental_condition": {"name": "test_incremental_condition", "resource_type": "macro", "package_name": "yoda", "path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "original_file_path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "unique_id": "macro.yoda.test_incremental_condition", "macro_sql": "{% macro test_incremental_condition() %}\n {% do test_incremental_condition_date() %}\n {% do test_incremental_condition_int() %}\n {% do test_incremental_condition_date_and_query_condition_column() %}\n {% do test_incremental_condition_date_non_incremental() %}\n {% do test_incremental_condition_date_min_lower_bound_max_upper_bound_and_subtract() %}\n {% do test_incremental_condition_int_min_lower_bound_and_max_upper_bound_less_than_subtract() %}\n {% do test_incremental_condition_date_max_days_per_run_non_incremental() %}\n {% do test_incremental_condition_date_min_lower_bound_max_upper_bound_subtract_and_max_days_per_run_non_incremental() %}\n {% do test_incremental_condition_date_and_sql_key_word() %}\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.test_incremental_condition_date", "macro.yoda.test_incremental_condition_int", "macro.yoda.test_incremental_condition_date_and_query_condition_column", "macro.yoda.test_incremental_condition_date_non_incremental", "macro.yoda.test_incremental_condition_date_min_lower_bound_max_upper_bound_and_subtract", "macro.yoda.test_incremental_condition_int_min_lower_bound_and_max_upper_bound_less_than_subtract", "macro.yoda.test_incremental_condition_date_max_days_per_run_non_incremental", "macro.yoda.test_incremental_condition_date_min_lower_bound_max_upper_bound_subtract_and_max_days_per_run_non_incremental", "macro.yoda.test_incremental_condition_date_and_sql_key_word"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8114073, "supported_languages": null}, "macro.yoda.test_incremental_condition_date": {"name": "test_incremental_condition_date", "resource_type": "macro", "package_name": "yoda", "path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "original_file_path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "unique_id": "macro.yoda.test_incremental_condition_date", "macro_sql": "{% macro test_incremental_condition_date() -%}\n {% set result = incremental_condition(data_type='DATE',\n destination_condition_column='date',\n is_incremental_run=True,\n destination_table='destination_table') %}\n {{ dbt_unittest.assert_equals(result, \"WHERE DATE(date) <= DATE_SUB(CURRENT_DATE,1) AND DATE(date) > (SELECT MAX(date) FROM destination_table)\") }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.incremental_condition", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8120687, "supported_languages": null}, "macro.yoda.test_incremental_condition_int": {"name": "test_incremental_condition_int", "resource_type": "macro", "package_name": "yoda", "path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "original_file_path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "unique_id": "macro.yoda.test_incremental_condition_int", "macro_sql": "{% macro test_incremental_condition_int() -%}\n {% set result = incremental_condition(data_type='INT',\n destination_condition_column='id',\n is_incremental_run=True,\n destination_table='destination_table') %}\n {{ dbt_unittest.assert_equals(result, \"WHERE INT(id) > (SELECT MAX(id) FROM destination_table)\") }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.incremental_condition", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.812778, "supported_languages": null}, "macro.yoda.test_incremental_condition_date_and_query_condition_column": {"name": "test_incremental_condition_date_and_query_condition_column", "resource_type": "macro", "package_name": "yoda", "path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "original_file_path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "unique_id": "macro.yoda.test_incremental_condition_date_and_query_condition_column", "macro_sql": "{% macro test_incremental_condition_date_and_query_condition_column() -%}\n {% set result = incremental_condition(data_type='DATE',\n destination_condition_column='date',\n query_condition_column='created_date',\n is_incremental_run=True,\n destination_table='destination_table') %}\n {{ dbt_unittest.assert_equals(result, \"WHERE DATE(created_date) <= DATE_SUB(CURRENT_DATE,1) AND DATE(created_date) > (SELECT MAX(date) FROM destination_table)\") }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.incremental_condition", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8135004, "supported_languages": null}, "macro.yoda.test_incremental_condition_date_non_incremental": {"name": "test_incremental_condition_date_non_incremental", "resource_type": "macro", "package_name": "yoda", "path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "original_file_path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "unique_id": "macro.yoda.test_incremental_condition_date_non_incremental", "macro_sql": "{% macro test_incremental_condition_date_non_incremental() -%}\n {% set result = incremental_condition(data_type='DATE',\n destination_condition_column='date',\n is_incremental_run=False,\n destination_table='destination_table') %}\n {{ dbt_unittest.assert_equals(result, \"WHERE DATE(date) <= DATE_SUB(CURRENT_DATE,1)\") }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.incremental_condition", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8141236, "supported_languages": null}, "macro.yoda.test_incremental_condition_date_min_lower_bound_max_upper_bound_and_subtract": {"name": "test_incremental_condition_date_min_lower_bound_max_upper_bound_and_subtract", "resource_type": "macro", "package_name": "yoda", "path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "original_file_path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "unique_id": "macro.yoda.test_incremental_condition_date_min_lower_bound_max_upper_bound_and_subtract", "macro_sql": "{% macro test_incremental_condition_date_min_lower_bound_max_upper_bound_and_subtract() -%}\n {% set result = incremental_condition(data_type='DATE',\n destination_condition_column='date',\n min_lower_bound='2022-01-01',\n max_upper_bound='2022-12-31',\n subtract=7,\n is_incremental_run=True,\n destination_table='protected_platform.dim_calendar') %}\n {{ dbt_unittest.assert_equals(result, \"WHERE DATE(date) >= DATE('2022-01-01') AND DATE(date) <= DATE('2022-12-31') AND DATE(date) > (SELECT DATE_SUB(MAX(date),7) FROM protected_platform.dim_calendar)\") }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.incremental_condition", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8148668, "supported_languages": null}, "macro.yoda.test_incremental_condition_int_min_lower_bound_and_max_upper_bound_less_than_subtract": {"name": "test_incremental_condition_int_min_lower_bound_and_max_upper_bound_less_than_subtract", "resource_type": "macro", "package_name": "yoda", "path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "original_file_path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "unique_id": "macro.yoda.test_incremental_condition_int_min_lower_bound_and_max_upper_bound_less_than_subtract", "macro_sql": "{% macro test_incremental_condition_int_min_lower_bound_and_max_upper_bound_less_than_subtract() -%}\n {% set result = incremental_condition(data_type='INT',\n destination_condition_column='id',\n min_lower_bound=10,\n max_upper_bound=11,\n subtract=12,\n is_incremental_run=True,\n destination_table='destination_table') %}\n {{ dbt_unittest.assert_equals(result, \"WHERE INT(id) >= INT(10) AND INT(id) <= INT(11) AND INT(id) > (SELECT (MAX(id) - 12) FROM destination_table)\") }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.incremental_condition", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8156726, "supported_languages": null}, "macro.yoda.test_incremental_condition_date_max_days_per_run_non_incremental": {"name": "test_incremental_condition_date_max_days_per_run_non_incremental", "resource_type": "macro", "package_name": "yoda", "path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "original_file_path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "unique_id": "macro.yoda.test_incremental_condition_date_max_days_per_run_non_incremental", "macro_sql": "{% macro test_incremental_condition_date_max_days_per_run_non_incremental() -%}\n {% set result = incremental_condition(data_type='DATE',\n destination_condition_column='date',\n is_incremental_run=False,\n max_days_per_run=30,\n destination_table='protected_platform.dim_calendar') %}\n {{ dbt_unittest.assert_equals(result, \"WHERE DATE(date) <= DATE_SUB(CURRENT_DATE,1)\") }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.incremental_condition", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8167822, "supported_languages": null}, "macro.yoda.test_incremental_condition_date_min_lower_bound_max_upper_bound_subtract_and_max_days_per_run_non_incremental": {"name": "test_incremental_condition_date_min_lower_bound_max_upper_bound_subtract_and_max_days_per_run_non_incremental", "resource_type": "macro", "package_name": "yoda", "path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "original_file_path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "unique_id": "macro.yoda.test_incremental_condition_date_min_lower_bound_max_upper_bound_subtract_and_max_days_per_run_non_incremental", "macro_sql": "{% macro test_incremental_condition_date_min_lower_bound_max_upper_bound_subtract_and_max_days_per_run_non_incremental() -%}\n {% set result = incremental_condition(data_type='DATE',\n destination_condition_column='date',\n min_lower_bound='2022-01-01',\n max_upper_bound='2022-12-31',\n subtract=7,\n is_incremental_run=False,\n max_days_per_run=30,\n destination_table='protected_platform.dim_calendar') %}\n {{ dbt_unittest.assert_equals(result, \"WHERE DATE(date) BETWEEN DATE('2022-01-01') AND DATE_ADD(DATE('2022-01-01'),29)\") }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.incremental_condition", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8192832, "supported_languages": null}, "macro.yoda.test_incremental_condition_date_and_sql_key_word": {"name": "test_incremental_condition_date_and_sql_key_word", "resource_type": "macro", "package_name": "yoda", "path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "original_file_path": "macros/yoda_utils/incremental_condition/unit_test/test_incremental_condition.sql", "unique_id": "macro.yoda.test_incremental_condition_date_and_sql_key_word", "macro_sql": "{% macro test_incremental_condition_date_and_sql_key_word() -%}\n {% set result = incremental_condition(data_type='DATE',\n destination_condition_column='date',\n sql_condition_key_word='AND',\n is_incremental_run=True,\n destination_table='destination_table') %}\n {{ dbt_unittest.assert_equals(result, \"AND DATE(date) <= DATE_SUB(CURRENT_DATE,1) AND DATE(date) > (SELECT MAX(date) FROM destination_table)\") }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.incremental_condition", "macro.dbt_unittest.assert_equals"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.820713, "supported_languages": null}, "macro.yoda.test_not_null": {"name": "test_not_null", "resource_type": "macro", "package_name": "yoda", "path": "tests/generic/not_null.sql", "original_file_path": "tests/generic/not_null.sql", "unique_id": "macro.yoda.test_not_null", "macro_sql": "{% test not_null(model) %}\n\n {% set column_name = kwargs.get('column_name', kwargs.get('arg')) %}\n {% set test_in_env = kwargs.get('env') %}\n\n {#- Perform test if: target name matches given env configuration OR env not given in yml -#}\n {%- if test_in_env is none or target.name == test_in_env -%}\n select * from {{ model }} where {{ column_name }} is null\n {%- else -%}\n {% do log('Test not_null for model ' ~ model ~ ' is not configured to execute in ' ~ target.name ~ ' environment -> Passing.', info=True) %}\n {{ config(fail_calc = \"sum(validation_errors)\") }}\n\n select 0 as validation_errors\n {%- endif -%}\n\n{% endtest %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8240795, "supported_languages": null}, "macro.yoda.test_unique": {"name": "test_unique", "resource_type": "macro", "package_name": "yoda", "path": "tests/generic/unique.sql", "original_file_path": "tests/generic/unique.sql", "unique_id": "macro.yoda.test_unique", "macro_sql": "{% test unique(model) %}\n\n {% set column_name = kwargs.get('column_name', kwargs.get('arg')) %}\n {% set test_in_env = kwargs.get('env') %}\n\n {#- Perform test if: target name matches given env configuration OR env not given in yml -#}\n {%- if test_in_env is none or target.name == test_in_env -%}\n {{ config(fail_calc = \"sum(n_records)\") }}\n\n select count(*) as n_records from (\n select {{ column_name }} from {{ model }} where {{ column_name }} is not null group by {{ column_name }} having count(*) > 1\n )\n {%- else -%}\n {% do log('Test unique for model ' ~ model ~ ' is not configured to execute in ' ~ target.name ~ ' environment -> Passing.', info=True) %}\n {{ config(fail_calc = \"sum(validation_errors)\") }}\n\n select 0 as validation_errors\n {%- endif -%}\n\n{% endtest %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8268468, "supported_languages": null}, "macro.dbt_spark.dbt_spark_tblproperties_clause": {"name": "dbt_spark_tblproperties_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.dbt_spark_tblproperties_clause", "macro_sql": "{% macro dbt_spark_tblproperties_clause() -%}\n {%- set tblproperties = config.get('tblproperties') -%}\n {%- if tblproperties is not none %}\n tblproperties (\n {%- for prop in tblproperties -%}\n '{{ prop }}' = '{{ tblproperties[prop] }}' {% if not loop.last %}, {% endif %}\n {%- endfor %}\n )\n {%- endif %}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.855011, "supported_languages": null}, "macro.dbt_spark.file_format_clause": {"name": "file_format_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.file_format_clause", "macro_sql": "{% macro file_format_clause() %}\n {{ return(adapter.dispatch('file_format_clause', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__file_format_clause"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8555264, "supported_languages": null}, "macro.dbt_spark.spark__file_format_clause": {"name": "spark__file_format_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__file_format_clause", "macro_sql": "{% macro spark__file_format_clause() %}\n {%- set file_format = config.get('file_format', validator=validation.any[basestring]) -%}\n {%- if file_format is not none %}\n using {{ file_format }}\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8562038, "supported_languages": null}, "macro.dbt_spark.location_clause": {"name": "location_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.location_clause", "macro_sql": "{% macro location_clause() %}\n {{ return(adapter.dispatch('location_clause', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__location_clause"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8565896, "supported_languages": null}, "macro.dbt_spark.spark__location_clause": {"name": "spark__location_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__location_clause", "macro_sql": "{% macro spark__location_clause() %}\n {%- set location_root = config.get('location_root', validator=validation.any[basestring]) -%}\n {%- set identifier = model['alias'] -%}\n {%- if location_root is not none %}\n location '{{ location_root }}/{{ identifier }}'\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8582966, "supported_languages": null}, "macro.dbt_spark.options_clause": {"name": "options_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.options_clause", "macro_sql": "{% macro options_clause() -%}\n {{ return(adapter.dispatch('options_clause', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__options_clause"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8587716, "supported_languages": null}, "macro.dbt_spark.spark__options_clause": {"name": "spark__options_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__options_clause", "macro_sql": "{% macro spark__options_clause() -%}\n {%- set options = config.get('options') -%}\n {%- if config.get('file_format') == 'hudi' -%}\n {%- set unique_key = config.get('unique_key') -%}\n {%- if unique_key is not none and options is none -%}\n {%- set options = {'primaryKey': config.get('unique_key')} -%}\n {%- elif unique_key is not none and options is not none and 'primaryKey' not in options -%}\n {%- set _ = options.update({'primaryKey': config.get('unique_key')}) -%}\n {%- elif options is not none and 'primaryKey' in options and options['primaryKey'] != unique_key -%}\n {{ exceptions.raise_compiler_error(\"unique_key and options('primaryKey') should be the same column(s).\") }}\n {%- endif %}\n {%- endif %}\n\n {%- if options is not none %}\n options (\n {%- for option in options -%}\n {{ option }} \"{{ options[option] }}\" {% if not loop.last %}, {% endif %}\n {%- endfor %}\n )\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8614693, "supported_languages": null}, "macro.dbt_spark.comment_clause": {"name": "comment_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.comment_clause", "macro_sql": "{% macro comment_clause() %}\n {{ return(adapter.dispatch('comment_clause', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__comment_clause"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8619955, "supported_languages": null}, "macro.dbt_spark.spark__comment_clause": {"name": "spark__comment_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__comment_clause", "macro_sql": "{% macro spark__comment_clause() %}\n {%- set raw_persist_docs = config.get('persist_docs', {}) -%}\n\n {%- if raw_persist_docs is mapping -%}\n {%- set raw_relation = raw_persist_docs.get('relation', false) -%}\n {%- if raw_relation -%}\n comment '{{ model.description | replace(\"'\", \"\\\\'\") }}'\n {% endif %}\n {%- elif raw_persist_docs -%}\n {{ exceptions.raise_compiler_error(\"Invalid value provided for 'persist_docs'. Expected dict but got value: \" ~ raw_persist_docs) }}\n {% endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8632638, "supported_languages": null}, "macro.dbt_spark.partition_cols": {"name": "partition_cols", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.partition_cols", "macro_sql": "{% macro partition_cols(label, required=false) %}\n {{ return(adapter.dispatch('partition_cols', 'dbt')(label, required)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__partition_cols"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8638198, "supported_languages": null}, "macro.dbt_spark.spark__partition_cols": {"name": "spark__partition_cols", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__partition_cols", "macro_sql": "{% macro spark__partition_cols(label, required=false) %}\n {%- set cols = config.get('partition_by', validator=validation.any[list, basestring]) -%}\n {%- if cols is not none %}\n {%- if cols is string -%}\n {%- set cols = [cols] -%}\n {%- endif -%}\n {{ label }} (\n {%- for item in cols -%}\n {{ item }}\n {%- if not loop.last -%},{%- endif -%}\n {%- endfor -%}\n )\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8653982, "supported_languages": null}, "macro.dbt_spark.clustered_cols": {"name": "clustered_cols", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.clustered_cols", "macro_sql": "{% macro clustered_cols(label, required=false) %}\n {{ return(adapter.dispatch('clustered_cols', 'dbt')(label, required)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__clustered_cols"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.866925, "supported_languages": null}, "macro.dbt_spark.spark__clustered_cols": {"name": "spark__clustered_cols", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__clustered_cols", "macro_sql": "{% macro spark__clustered_cols(label, required=false) %}\n {%- set cols = config.get('clustered_by', validator=validation.any[list, basestring]) -%}\n {%- set buckets = config.get('buckets', validator=validation.any[int]) -%}\n {%- if (cols is not none) and (buckets is not none) %}\n {%- if cols is string -%}\n {%- set cols = [cols] -%}\n {%- endif -%}\n {{ label }} (\n {%- for item in cols -%}\n {{ item }}\n {%- if not loop.last -%},{%- endif -%}\n {%- endfor -%}\n ) into {{ buckets }} buckets\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8693924, "supported_languages": null}, "macro.dbt_spark.fetch_tbl_properties": {"name": "fetch_tbl_properties", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.fetch_tbl_properties", "macro_sql": "{% macro fetch_tbl_properties(relation) -%}\n {% call statement('list_properties', fetch_result=True) -%}\n SHOW TBLPROPERTIES {{ relation }}\n {% endcall %}\n {% do return(load_result('list_properties').table) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8701768, "supported_languages": null}, "macro.dbt_spark.create_temporary_view": {"name": "create_temporary_view", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.create_temporary_view", "macro_sql": "{% macro create_temporary_view(relation, compiled_code) -%}\n {{ return(adapter.dispatch('create_temporary_view', 'dbt')(relation, compiled_code)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__create_temporary_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8707678, "supported_languages": null}, "macro.dbt_spark.spark__create_temporary_view": {"name": "spark__create_temporary_view", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__create_temporary_view", "macro_sql": "{% macro spark__create_temporary_view(relation, compiled_code) -%}\n create temporary view {{ relation }} as\n {{ compiled_code }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8710785, "supported_languages": null}, "macro.dbt_spark.spark__create_table_as": {"name": "spark__create_table_as", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__create_table_as", "macro_sql": "{%- macro spark__create_table_as(temporary, relation, compiled_code, language='sql') -%}\n {%- if language == 'sql' -%}\n {%- if temporary -%}\n {{ create_temporary_view(relation, compiled_code) }}\n {%- else -%}\n {% if config.get('file_format', validator=validation.any[basestring]) in ['delta', 'iceberg'] %}\n create or replace table {{ relation }}\n {% else %}\n create table {{ relation }}\n {% endif %}\n {%- set contract_config = config.get('contract') -%}\n {%- if contract_config.enforced -%}\n {{ get_assert_columns_equivalent(compiled_code) }}\n {%- set compiled_code = get_select_subquery(compiled_code) %}\n {% endif %}\n {{ file_format_clause() }}\n {{ options_clause() }}\n {{ partition_cols(label=\"partitioned by\") }}\n {{ clustered_cols(label=\"clustered by\") }}\n {{ location_clause() }}\n {{ comment_clause() }}\n as\n {{ compiled_code }}\n {%- endif -%}\n {%- elif language == 'python' -%}\n {#--\n N.B. Python models _can_ write to temp views HOWEVER they use a different session\n and have already expired by the time they need to be used (I.E. in merges for incremental models)\n\n TODO: Deep dive into spark sessions to see if we can reuse a single session for an entire\n dbt invocation.\n --#}\n {{ py_write_table(compiled_code=compiled_code, target_relation=relation) }}\n {%- endif -%}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt_spark.create_temporary_view", "macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_select_subquery", "macro.dbt_spark.file_format_clause", "macro.dbt_spark.options_clause", "macro.dbt_spark.partition_cols", "macro.dbt_spark.clustered_cols", "macro.dbt_spark.location_clause", "macro.dbt_spark.comment_clause", "macro.dbt_spark.py_write_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8737006, "supported_languages": null}, "macro.dbt_spark.persist_constraints": {"name": "persist_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.persist_constraints", "macro_sql": "{% macro persist_constraints(relation, model) %}\n {{ return(adapter.dispatch('persist_constraints', 'dbt')(relation, model)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__persist_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.874288, "supported_languages": null}, "macro.dbt_spark.spark__persist_constraints": {"name": "spark__persist_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__persist_constraints", "macro_sql": "{% macro spark__persist_constraints(relation, model) %}\n {%- set contract_config = config.get('contract') -%}\n {% if contract_config.enforced and config.get('file_format', 'delta') == 'delta' %}\n {% do alter_table_add_constraints(relation, model.columns) %}\n {% do alter_column_set_constraints(relation, model.columns) %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.alter_table_add_constraints", "macro.dbt_spark.alter_column_set_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8753903, "supported_languages": null}, "macro.dbt_spark.alter_table_add_constraints": {"name": "alter_table_add_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.alter_table_add_constraints", "macro_sql": "{% macro alter_table_add_constraints(relation, constraints) %}\n {{ return(adapter.dispatch('alter_table_add_constraints', 'dbt')(relation, constraints)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__alter_table_add_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8759046, "supported_languages": null}, "macro.dbt_spark.spark__alter_table_add_constraints": {"name": "spark__alter_table_add_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__alter_table_add_constraints", "macro_sql": "{% macro spark__alter_table_add_constraints(relation, column_dict) %}\n\n {% for column_name in column_dict %}\n {% set constraints = column_dict[column_name]['constraints'] %}\n {% for constraint in constraints %}\n {% if constraint.type == 'check' and not is_incremental() %}\n {%- set constraint_hash = local_md5(column_name ~ \";\" ~ constraint.expression ~ \";\" ~ loop.index) -%}\n {% call statement() %}\n alter table {{ relation }} add constraint {{ constraint_hash }} check {{ constraint.expression }};\n {% endcall %}\n {% endif %}\n {% endfor %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.is_incremental", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8775308, "supported_languages": null}, "macro.dbt_spark.alter_column_set_constraints": {"name": "alter_column_set_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.alter_column_set_constraints", "macro_sql": "{% macro alter_column_set_constraints(relation, column_dict) %}\n {{ return(adapter.dispatch('alter_column_set_constraints', 'dbt')(relation, column_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__alter_column_set_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8781576, "supported_languages": null}, "macro.dbt_spark.spark__alter_column_set_constraints": {"name": "spark__alter_column_set_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__alter_column_set_constraints", "macro_sql": "{% macro spark__alter_column_set_constraints(relation, column_dict) %}\n {% for column_name in column_dict %}\n {% set constraints = column_dict[column_name]['constraints'] %}\n {% for constraint in constraints %}\n {% if constraint.type != 'not_null' %}\n {{ exceptions.warn('Invalid constraint for column ' ~ column_name ~ '. Only `not_null` is supported.') }}\n {% else %}\n {% set quoted_name = adapter.quote(column_name) if column_dict[column_name]['quote'] else column_name %}\n {% call statement() %}\n alter table {{ relation }} change column {{ quoted_name }} set not null {{ constraint.expression or \"\" }};\n {% endcall %}\n {% endif %}\n {% endfor %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8802, "supported_languages": null}, "macro.dbt_spark.spark__create_view_as": {"name": "spark__create_view_as", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__create_view_as", "macro_sql": "{% macro spark__create_view_as(relation, sql) -%}\n create or replace view {{ relation }}\n {{ comment_clause() }}\n {%- set contract_config = config.get('contract') -%}\n {%- if contract_config.enforced -%}\n {{ get_assert_columns_equivalent(sql) }}\n {%- endif %}\n as\n {{ sql }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.comment_clause", "macro.dbt.get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8810234, "supported_languages": null}, "macro.dbt_spark.spark__create_schema": {"name": "spark__create_schema", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__create_schema", "macro_sql": "{% macro spark__create_schema(relation) -%}\n {%- call statement('create_schema') -%}\n create schema if not exists {{relation}}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8814917, "supported_languages": null}, "macro.dbt_spark.spark__drop_schema": {"name": "spark__drop_schema", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__drop_schema", "macro_sql": "{% macro spark__drop_schema(relation) -%}\n {%- call statement('drop_schema') -%}\n drop schema if exists {{ relation }} cascade\n {%- endcall -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8819382, "supported_languages": null}, "macro.dbt_spark.get_columns_in_relation_raw": {"name": "get_columns_in_relation_raw", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.get_columns_in_relation_raw", "macro_sql": "{% macro get_columns_in_relation_raw(relation) -%}\n {{ return(adapter.dispatch('get_columns_in_relation_raw', 'dbt')(relation)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__get_columns_in_relation_raw"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8824592, "supported_languages": null}, "macro.dbt_spark.spark__get_columns_in_relation_raw": {"name": "spark__get_columns_in_relation_raw", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__get_columns_in_relation_raw", "macro_sql": "{% macro spark__get_columns_in_relation_raw(relation) -%}\n {% call statement('get_columns_in_relation_raw', fetch_result=True) %}\n describe extended {{ relation }}\n {% endcall %}\n {% do return(load_result('get_columns_in_relation_raw').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.883154, "supported_languages": null}, "macro.dbt_spark.spark__get_columns_in_relation": {"name": "spark__get_columns_in_relation", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__get_columns_in_relation", "macro_sql": "{% macro spark__get_columns_in_relation(relation) -%}\n {% call statement('get_columns_in_relation', fetch_result=True) %}\n describe extended {{ relation.include(schema=(schema is not none)) }}\n {% endcall %}\n {% do return(load_result('get_columns_in_relation').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8840044, "supported_languages": null}, "macro.dbt_spark.spark__list_relations_without_caching": {"name": "spark__list_relations_without_caching", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__list_relations_without_caching", "macro_sql": "{% macro spark__list_relations_without_caching(relation) %}\n {% call statement('list_relations_without_caching', fetch_result=True) -%}\n show table extended in {{ relation }} like '*'\n {% endcall %}\n\n {% do return(load_result('list_relations_without_caching').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8846812, "supported_languages": null}, "macro.dbt_spark.list_relations_show_tables_without_caching": {"name": "list_relations_show_tables_without_caching", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.list_relations_show_tables_without_caching", "macro_sql": "{% macro list_relations_show_tables_without_caching(schema_relation) %}\n {#-- Spark with iceberg tables don't work with show table extended for #}\n {#-- V2 iceberg tables #}\n {#-- https://issues.apache.org/jira/browse/SPARK-33393 #}\n {% call statement('list_relations_without_caching_show_tables', fetch_result=True) -%}\n show tables in {{ schema_relation }} like '*'\n {% endcall %}\n\n {% do return(load_result('list_relations_without_caching_show_tables').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8856902, "supported_languages": null}, "macro.dbt_spark.describe_table_extended_without_caching": {"name": "describe_table_extended_without_caching", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.describe_table_extended_without_caching", "macro_sql": "{% macro describe_table_extended_without_caching(table_name) %}\n {#-- Spark with iceberg tables don't work with show table extended for #}\n {#-- V2 iceberg tables #}\n {#-- https://issues.apache.org/jira/browse/SPARK-33393 #}\n {% call statement('describe_table_extended_without_caching', fetch_result=True) -%}\n describe extended {{ table_name }}\n {% endcall %}\n {% do return(load_result('describe_table_extended_without_caching').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8866022, "supported_languages": null}, "macro.dbt_spark.spark__list_schemas": {"name": "spark__list_schemas", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__list_schemas", "macro_sql": "{% macro spark__list_schemas(database) -%}\n {% call statement('list_schemas', fetch_result=True, auto_begin=False) %}\n show databases\n {% endcall %}\n {{ return(load_result('list_schemas').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.887312, "supported_languages": null}, "macro.dbt_spark.spark__rename_relation": {"name": "spark__rename_relation", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__rename_relation", "macro_sql": "{% macro spark__rename_relation(from_relation, to_relation) -%}\n {% call statement('rename_relation') -%}\n {% if not from_relation.type %}\n {% do exceptions.raise_database_error(\"Cannot rename a relation with a blank type: \" ~ from_relation.identifier) %}\n {% elif from_relation.type in ('table') %}\n alter table {{ from_relation }} rename to {{ to_relation }}\n {% elif from_relation.type == 'view' %}\n alter view {{ from_relation }} rename to {{ to_relation }}\n {% else %}\n {% do exceptions.raise_database_error(\"Unknown type '\" ~ from_relation.type ~ \"' for relation: \" ~ from_relation.identifier) %}\n {% endif %}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.888862, "supported_languages": null}, "macro.dbt_spark.spark__drop_relation": {"name": "spark__drop_relation", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__drop_relation", "macro_sql": "{% macro spark__drop_relation(relation) -%}\n {% call statement('drop_relation', auto_begin=False) -%}\n drop {{ relation.type }} if exists {{ relation }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8895335, "supported_languages": null}, "macro.dbt_spark.spark__generate_database_name": {"name": "spark__generate_database_name", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__generate_database_name", "macro_sql": "{% macro spark__generate_database_name(custom_database_name=none, node=none) -%}\n {% do return(None) %}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8899398, "supported_languages": null}, "macro.dbt_spark.spark__persist_docs": {"name": "spark__persist_docs", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__persist_docs", "macro_sql": "{% macro spark__persist_docs(relation, model, for_relation, for_columns) -%}\n {% if for_columns and config.persist_column_docs() and model.columns %}\n {% do alter_column_comment(relation, model.columns) %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.890762, "supported_languages": null}, "macro.dbt_spark.spark__alter_column_comment": {"name": "spark__alter_column_comment", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__alter_column_comment", "macro_sql": "{% macro spark__alter_column_comment(relation, column_dict) %}\n {% if config.get('file_format', validator=validation.any[basestring]) in ['delta', 'hudi', 'iceberg'] %}\n {% for column_name in column_dict %}\n {% set comment = column_dict[column_name]['description'] %}\n {% set escaped_comment = comment | replace('\\'', '\\\\\\'') %}\n {% set comment_query %}\n {% if relation.is_iceberg %}\n alter table {{ relation }} alter column\n {{ adapter.quote(column_name) if column_dict[column_name]['quote'] else column_name }}\n comment '{{ escaped_comment }}';\n {% else %}\n alter table {{ relation }} change column\n {{ adapter.quote(column_name) if column_dict[column_name]['quote'] else column_name }}\n comment '{{ escaped_comment }}';\n {% endif %}\n {% endset %}\n {% do run_query(comment_query) %}\n {% endfor %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.893919, "supported_languages": null}, "macro.dbt_spark.spark__make_temp_relation": {"name": "spark__make_temp_relation", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__make_temp_relation", "macro_sql": "{% macro spark__make_temp_relation(base_relation, suffix) %}\n {% set tmp_identifier = base_relation.identifier ~ suffix %}\n {% set tmp_relation = base_relation.incorporate(path = {\n \"identifier\": tmp_identifier\n }) -%}\n\n {% do return(tmp_relation) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8950136, "supported_languages": null}, "macro.dbt_spark.spark__alter_column_type": {"name": "spark__alter_column_type", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__alter_column_type", "macro_sql": "{% macro spark__alter_column_type(relation, column_name, new_column_type) -%}\n {% call statement('alter_column_type') %}\n alter table {{ relation }} alter column {{ column_name }} type {{ new_column_type }};\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.8956673, "supported_languages": null}, "macro.dbt_spark.spark__alter_relation_add_remove_columns": {"name": "spark__alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__alter_relation_add_remove_columns", "macro_sql": "{% macro spark__alter_relation_add_remove_columns(relation, add_columns, remove_columns) %}\n\n {% if remove_columns %}\n {% if relation.is_delta %}\n {% set platform_name = 'Delta Lake' %}\n {% elif relation.is_iceberg %}\n {% set platform_name = 'Iceberg' %}\n {% else %}\n {% set platform_name = 'Apache Spark' %}\n {% endif %}\n {{ exceptions.raise_compiler_error(platform_name + ' does not support dropping columns from tables') }}\n {% endif %}\n\n {% if add_columns is none %}\n {% set add_columns = [] %}\n {% endif %}\n\n {% set sql -%}\n\n alter {{ relation.type }} {{ relation }}\n\n {% if add_columns %} add columns {% endif %}\n {% for column in add_columns %}\n {{ column.name }} {{ column.data_type }}{{ ',' if not loop.last }}\n {% endfor %}\n\n {%- endset -%}\n\n {% do run_query(sql) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.899603, "supported_languages": null}, "macro.dbt_spark.spark__copy_grants": {"name": "spark__copy_grants", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/apply_grants.sql", "original_file_path": "macros/apply_grants.sql", "unique_id": "macro.dbt_spark.spark__copy_grants", "macro_sql": "{% macro spark__copy_grants() %}\n\n {% if config.materialized == 'view' %}\n {#-- Spark views don't copy grants when they're replaced --#}\n {{ return(False) }}\n\n {% else %}\n {#-- This depends on how we're replacing the table, which depends on its file format\n -- Just play it safe by assuming that grants have been copied over, and need to be checked / possibly revoked\n -- We can make this more efficient in the future\n #}\n {{ return(True) }}\n\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9011688, "supported_languages": null}, "macro.dbt_spark.spark__get_grant_sql": {"name": "spark__get_grant_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/apply_grants.sql", "original_file_path": "macros/apply_grants.sql", "unique_id": "macro.dbt_spark.spark__get_grant_sql", "macro_sql": "\n\n\n{%- macro spark__get_grant_sql(relation, privilege, grantees) -%}\n grant {{ privilege }} on {{ relation }} to {{ adapter.quote(grantees[0]) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9016857, "supported_languages": null}, "macro.dbt_spark.spark__get_revoke_sql": {"name": "spark__get_revoke_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/apply_grants.sql", "original_file_path": "macros/apply_grants.sql", "unique_id": "macro.dbt_spark.spark__get_revoke_sql", "macro_sql": "\n\n\n{%- macro spark__get_revoke_sql(relation, privilege, grantees) -%}\n revoke {{ privilege }} on {{ relation }} from {{ adapter.quote(grantees[0]) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9021564, "supported_languages": null}, "macro.dbt_spark.spark__support_multiple_grantees_per_dcl_statement": {"name": "spark__support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/apply_grants.sql", "original_file_path": "macros/apply_grants.sql", "unique_id": "macro.dbt_spark.spark__support_multiple_grantees_per_dcl_statement", "macro_sql": "\n\n\n{%- macro spark__support_multiple_grantees_per_dcl_statement() -%}\n {{ return(False) }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9024825, "supported_languages": null}, "macro.dbt_spark.spark__call_dcl_statements": {"name": "spark__call_dcl_statements", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/apply_grants.sql", "original_file_path": "macros/apply_grants.sql", "unique_id": "macro.dbt_spark.spark__call_dcl_statements", "macro_sql": "{% macro spark__call_dcl_statements(dcl_statement_list) %}\n {% for dcl_statement in dcl_statement_list %}\n {% call statement('grant_or_revoke') %}\n {{ dcl_statement }}\n {% endcall %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.903025, "supported_languages": null}, "macro.dbt_spark.spark__snapshot_hash_arguments": {"name": "spark__snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark__snapshot_hash_arguments", "macro_sql": "{% macro spark__snapshot_hash_arguments(args) -%}\n md5({%- for arg in args -%}\n coalesce(cast({{ arg }} as string ), '')\n {% if not loop.last %} || '|' || {% endif %}\n {%- endfor -%})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9158654, "supported_languages": null}, "macro.dbt_spark.spark__snapshot_string_as_time": {"name": "spark__snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark__snapshot_string_as_time", "macro_sql": "{% macro spark__snapshot_string_as_time(timestamp) -%}\n {%- set result = \"to_timestamp('\" ~ timestamp ~ \"')\" -%}\n {{ return(result) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9164252, "supported_languages": null}, "macro.dbt_spark.spark__snapshot_merge_sql": {"name": "spark__snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark__snapshot_merge_sql", "macro_sql": "{% macro spark__snapshot_merge_sql(target, source, insert_cols) -%}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n {% if target.is_iceberg %}\n {# create view only supports a name (no catalog, or schema) #}\n using {{ source.identifier }} as DBT_INTERNAL_SOURCE\n {% else %}\n using {{ source }} as DBT_INTERNAL_SOURCE\n {% endif %}\n on DBT_INTERNAL_SOURCE.dbt_scd_id = DBT_INTERNAL_DEST.dbt_scd_id\n when matched\n and DBT_INTERNAL_DEST.dbt_valid_to is null\n and DBT_INTERNAL_SOURCE.dbt_change_type in ('update', 'delete')\n then update\n set dbt_valid_to = DBT_INTERNAL_SOURCE.dbt_valid_to\n\n when not matched\n and DBT_INTERNAL_SOURCE.dbt_change_type = 'insert'\n then insert *\n ;\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.917061, "supported_languages": null}, "macro.dbt_spark.spark_build_snapshot_staging_table": {"name": "spark_build_snapshot_staging_table", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark_build_snapshot_staging_table", "macro_sql": "{% macro spark_build_snapshot_staging_table(strategy, sql, target_relation) %}\n {% set tmp_identifier = target_relation.identifier ~ '__dbt_tmp' %}\n\n {% if target_relation.is_iceberg %}\n {# iceberg catalog does not support create view, but regular spark does. We removed the catalog and schema #}\n {%- set tmp_relation = api.Relation.create(identifier=tmp_identifier,\n schema=none,\n database=none,\n type='view') -%}\n {% else %}\n {%- set tmp_relation = api.Relation.create(identifier=tmp_identifier,\n schema=target_relation.schema,\n database=none,\n type='view') -%}\n {% endif %}\n\n {% set select = snapshot_staging_table(strategy, sql, target_relation) %}\n\n {# needs to be a non-temp view so that its columns can be ascertained via `describe` #}\n {% call statement('build_snapshot_staging_relation') %}\n {{ create_view_as(tmp_relation, select) }}\n {% endcall %}\n\n {% do return(tmp_relation) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_staging_table", "macro.dbt.statement", "macro.dbt.create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9189687, "supported_languages": null}, "macro.dbt_spark.spark__post_snapshot": {"name": "spark__post_snapshot", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark__post_snapshot", "macro_sql": "{% macro spark__post_snapshot(staging_relation) %}\n {% do adapter.drop_relation(staging_relation) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.919369, "supported_languages": null}, "macro.dbt_spark.spark__create_columns": {"name": "spark__create_columns", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark__create_columns", "macro_sql": "{% macro spark__create_columns(relation, columns) %}\n {% if columns|length > 0 %}\n {% call statement() %}\n alter table {{ relation }} add columns (\n {% for column in columns %}\n `{{ column.name }}` {{ column.data_type }} {{- ',' if not loop.last -}}\n {% endfor %}\n );\n {% endcall %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9203544, "supported_languages": null}, "macro.dbt_spark.materialization_snapshot_spark": {"name": "materialization_snapshot_spark", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.materialization_snapshot_spark", "macro_sql": "{% materialization snapshot, adapter='spark' %}\n {%- set config = model['config'] -%}\n\n {%- set target_table = model.get('alias', model.get('name')) -%}\n\n {%- set strategy_name = config.get('strategy') -%}\n {%- set unique_key = config.get('unique_key') %}\n {%- set file_format = config.get('file_format', 'parquet') -%}\n {%- set grant_config = config.get('grants') -%}\n\n {% set target_relation_exists, target_relation = get_or_create_relation(\n database=none,\n schema=model.schema,\n identifier=target_table,\n type='table') -%}\n\n {%- if file_format not in ['delta', 'iceberg', 'hudi'] -%}\n {% set invalid_format_msg -%}\n Invalid file format: {{ file_format }}\n Snapshot functionality requires file_format be set to 'delta' or 'iceberg' or 'hudi'\n {%- endset %}\n {% do exceptions.raise_compiler_error(invalid_format_msg) %}\n {% endif %}\n\n {%- if target_relation_exists -%}\n {%- if not target_relation.is_delta and not target_relation.is_iceberg and not target_relation.is_hudi -%}\n {% set invalid_format_msg -%}\n The existing table {{ model.schema }}.{{ target_table }} is in another format than 'delta' or 'iceberg' or 'hudi'\n {%- endset %}\n {% do exceptions.raise_compiler_error(invalid_format_msg) %}\n {% endif %}\n {% endif %}\n\n {% if not adapter.check_schema_exists(model.database, model.schema) %}\n {% do create_schema(model.schema) %}\n {% endif %}\n\n {%- if not target_relation.is_table -%}\n {% do exceptions.relation_wrong_type(target_relation, 'table') %}\n {%- endif -%}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set strategy_macro = strategy_dispatch(strategy_name) %}\n {% set strategy = strategy_macro(model, \"snapshotted_data\", \"source_data\", config, target_relation_exists) %}\n\n {% if not target_relation_exists %}\n\n {% set build_sql = build_snapshot_table(strategy, model['compiled_code']) %}\n {% set final_sql = create_table_as(False, target_relation, build_sql) %}\n\n {% else %}\n\n {{ adapter.valid_snapshot_target(target_relation) }}\n\n {% set staging_table = spark_build_snapshot_staging_table(strategy, sql, target_relation) %}\n\n -- this may no-op if the database does not require column expansion\n {% do adapter.expand_target_column_types(from_relation=staging_table,\n to_relation=target_relation) %}\n\n {% set missing_columns = adapter.get_missing_columns(staging_table, target_relation)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% do create_columns(target_relation, missing_columns) %}\n\n {% set source_columns = adapter.get_columns_in_relation(staging_table)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% set quoted_source_columns = [] %}\n {% for column in source_columns %}\n {% do quoted_source_columns.append(adapter.quote(column.name)) %}\n {% endfor %}\n\n {% set final_sql = snapshot_merge_sql(\n target = target_relation,\n source = staging_table,\n insert_cols = quoted_source_columns\n )\n %}\n\n {% endif %}\n\n {% call statement('main') %}\n {{ final_sql }}\n {% endcall %}\n\n {% set should_revoke = should_revoke(target_relation_exists, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {% if staging_table is defined %}\n {% do post_snapshot(staging_table) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.get_or_create_relation", "macro.dbt.create_schema", "macro.dbt.run_hooks", "macro.dbt.strategy_dispatch", "macro.dbt.build_snapshot_table", "macro.dbt.create_table_as", "macro.dbt_spark.spark_build_snapshot_staging_table", "macro.dbt.create_columns", "macro.dbt.snapshot_merge_sql", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9310172, "supported_languages": ["sql"]}, "macro.dbt_spark.materialization_table_spark": {"name": "materialization_table_spark", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/table.sql", "original_file_path": "macros/materializations/table.sql", "unique_id": "macro.dbt_spark.materialization_table_spark", "macro_sql": "{% materialization table, adapter = 'spark', supported_languages=['sql', 'python'] %}\n {%- set language = model['language'] -%}\n {%- set identifier = model['alias'] -%}\n {%- set grant_config = config.get('grants') -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n {%- set target_relation = api.Relation.create(identifier=identifier,\n schema=schema,\n database=database,\n type='table') -%}\n\n {{ run_hooks(pre_hooks) }}\n\n -- setup: if the target relation already exists, drop it\n -- in case if the existing and future table is delta or iceberg, we want to do a\n -- create or replace table instead of dropping, so we don't have the table unavailable\n {% if old_relation is not none %}\n {% set is_delta = (old_relation.is_delta and config.get('file_format', validator=validation.any[basestring]) == 'delta') %}\n {% set is_iceberg = (old_relation.is_iceberg and config.get('file_format', validator=validation.any[basestring]) == 'iceberg') %}\n {% set old_relation_type = old_relation.type %}\n {% else %}\n {% set is_delta = false %}\n {% set is_iceberg = false %}\n {% set old_relation_type = target_relation.type %}\n {% endif %}\n\n {% if not is_delta and not is_iceberg %}\n {% set existing_relation = target_relation %}\n {{ adapter.drop_relation(existing_relation.incorporate(type=old_relation_type)) }}\n {% endif %}\n\n -- build model\n {%- call statement('main', language=language) -%}\n {{ create_table_as(False, target_relation, compiled_code, language) }}\n {%- endcall -%}\n\n {% set should_revoke = should_revoke(old_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% do persist_constraints(target_relation, model) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]})}}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.create_table_as", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt_spark.persist_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9395769, "supported_languages": ["sql", "python"]}, "macro.dbt_spark.py_write_table": {"name": "py_write_table", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/table.sql", "original_file_path": "macros/materializations/table.sql", "unique_id": "macro.dbt_spark.py_write_table", "macro_sql": "{% macro py_write_table(compiled_code, target_relation) %}\n{{ compiled_code }}\n# --- Autogenerated dbt materialization code. --- #\ndbt = dbtObj(spark.table)\ndf = model(dbt, spark)\n\n# make sure pyspark exists in the namepace, for 7.3.x-scala2.12 it does not exist\nimport pyspark\n# make sure pandas exists before using it\ntry:\n import pandas\n pandas_available = True\nexcept ImportError:\n pandas_available = False\n\n# make sure pyspark.pandas exists before using it\ntry:\n import pyspark.pandas\n pyspark_pandas_api_available = True\nexcept ImportError:\n pyspark_pandas_api_available = False\n\n# make sure databricks.koalas exists before using it\ntry:\n import databricks.koalas\n koalas_available = True\nexcept ImportError:\n koalas_available = False\n\n# preferentially convert pandas DataFrames to pandas-on-Spark or Koalas DataFrames first\n# since they know how to convert pandas DataFrames better than `spark.createDataFrame(df)`\n# and converting from pandas-on-Spark to Spark DataFrame has no overhead\nif pyspark_pandas_api_available and pandas_available and isinstance(df, pandas.core.frame.DataFrame):\n df = pyspark.pandas.frame.DataFrame(df)\nelif koalas_available and pandas_available and isinstance(df, pandas.core.frame.DataFrame):\n df = databricks.koalas.frame.DataFrame(df)\n\n# convert to pyspark.sql.dataframe.DataFrame\nif isinstance(df, pyspark.sql.dataframe.DataFrame):\n pass # since it is already a Spark DataFrame\nelif pyspark_pandas_api_available and isinstance(df, pyspark.pandas.frame.DataFrame):\n df = df.to_spark()\nelif koalas_available and isinstance(df, databricks.koalas.frame.DataFrame):\n df = df.to_spark()\nelif pandas_available and isinstance(df, pandas.core.frame.DataFrame):\n df = spark.createDataFrame(df)\nelse:\n msg = f\"{type(df)} is not a supported type for dbt Python materialization\"\n raise Exception(msg)\n\ndf.write.mode(\"overwrite\").format(\"delta\").option(\"overwriteSchema\", \"true\").saveAsTable(\"{{ target_relation }}\")\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9402127, "supported_languages": null}, "macro.dbt_spark.py_script_comment": {"name": "py_script_comment", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/table.sql", "original_file_path": "macros/materializations/table.sql", "unique_id": "macro.dbt_spark.py_script_comment", "macro_sql": "{%macro py_script_comment()%}\n# how to execute python model in notebook\n# dbt = dbtObj(spark.table)\n# df = model(dbt, spark)\n{%endmacro%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.940418, "supported_languages": null}, "macro.dbt_spark.materialization_view_spark": {"name": "materialization_view_spark", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/view.sql", "original_file_path": "macros/materializations/view.sql", "unique_id": "macro.dbt_spark.materialization_view_spark", "macro_sql": "{% materialization view, adapter='spark' -%}\n {{ return(create_or_replace_view()) }}\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt.create_or_replace_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9408584, "supported_languages": ["sql"]}, "macro.dbt_spark.spark__get_binding_char": {"name": "spark__get_binding_char", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "unique_id": "macro.dbt_spark.spark__get_binding_char", "macro_sql": "{% macro spark__get_binding_char() %}\n {{ return('?' if target.method == 'odbc' else '%s') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9437795, "supported_languages": null}, "macro.dbt_spark.spark__reset_csv_table": {"name": "spark__reset_csv_table", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "unique_id": "macro.dbt_spark.spark__reset_csv_table", "macro_sql": "{% macro spark__reset_csv_table(model, full_refresh, old_relation, agate_table) %}\n {% if old_relation %}\n {{ adapter.drop_relation(old_relation) }}\n {% endif %}\n {% set sql = create_csv_table(model, agate_table) %}\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9446347, "supported_languages": null}, "macro.dbt_spark.spark__load_csv_rows": {"name": "spark__load_csv_rows", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "unique_id": "macro.dbt_spark.spark__load_csv_rows", "macro_sql": "{% macro spark__load_csv_rows(model, agate_table) %}\n\n {% set batch_size = get_batch_size() %}\n {% set column_override = model['config'].get('column_types', {}) %}\n\n {% set statements = [] %}\n\n {% for chunk in agate_table.rows | batch(batch_size) %}\n {% set bindings = [] %}\n\n {% for row in chunk %}\n {% do bindings.extend(row) %}\n {% endfor %}\n\n {% set sql %}\n insert into {{ this.render() }} values\n {% for row in chunk -%}\n ({%- for col_name in agate_table.column_names -%}\n {%- set inferred_type = adapter.convert_type(agate_table, loop.index0) -%}\n {%- set type = column_override.get(col_name, inferred_type) -%}\n cast({{ get_binding_char() }} as {{type}})\n {%- if not loop.last%},{%- endif %}\n {%- endfor -%})\n {%- if not loop.last%},{%- endif %}\n {%- endfor %}\n {% endset %}\n\n {% do adapter.add_query(sql, bindings=bindings, abridge_sql_log=True) %}\n\n {% if loop.index0 == 0 %}\n {% do statements.append(sql) %}\n {% endif %}\n {% endfor %}\n\n {# Return SQL so we can render it out into the compiled files #}\n {{ return(statements[0]) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_batch_size", "macro.dbt.get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9480228, "supported_languages": null}, "macro.dbt_spark.spark__create_csv_table": {"name": "spark__create_csv_table", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "unique_id": "macro.dbt_spark.spark__create_csv_table", "macro_sql": "{% macro spark__create_csv_table(model, agate_table) %}\n {%- set column_override = model['config'].get('column_types', {}) -%}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n\n {% set sql %}\n create table {{ this.render() }} (\n {%- for col_name in agate_table.column_names -%}\n {%- set inferred_type = adapter.convert_type(agate_table, loop.index0) -%}\n {%- set type = column_override.get(col_name, inferred_type) -%}\n {%- set column_name = (col_name | string) -%}\n {{ adapter.quote_seed_column(column_name, quote_seed_column) }} {{ type }} {%- if not loop.last -%}, {%- endif -%}\n {%- endfor -%}\n )\n {{ file_format_clause() }}\n {{ partition_cols(label=\"partitioned by\") }}\n {{ clustered_cols(label=\"clustered by\") }}\n {{ location_clause() }}\n {{ comment_clause() }}\n {% endset %}\n\n {% call statement('_') -%}\n {{ sql }}\n {%- endcall %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.file_format_clause", "macro.dbt_spark.partition_cols", "macro.dbt_spark.clustered_cols", "macro.dbt_spark.location_clause", "macro.dbt_spark.comment_clause", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.950818, "supported_languages": null}, "macro.dbt_spark.spark__get_merge_update_columns": {"name": "spark__get_merge_update_columns", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/column_helpers.sql", "original_file_path": "macros/materializations/incremental/column_helpers.sql", "unique_id": "macro.dbt_spark.spark__get_merge_update_columns", "macro_sql": "{% macro spark__get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {%- set default_cols = None -%}\n\n {%- if merge_update_columns and merge_exclude_columns -%}\n {{ exceptions.raise_compiler_error(\n 'Model cannot specify merge_update_columns and merge_exclude_columns. Please update model to use only one config'\n )}}\n {%- elif merge_update_columns -%}\n {%- set update_columns = merge_update_columns -%}\n {%- elif merge_exclude_columns -%}\n {%- set update_columns = [] -%}\n {%- for column in dest_columns -%}\n {% if column.column | lower not in merge_exclude_columns | map(\"lower\") | list %}\n {%- do update_columns.append(column.quoted) -%}\n {% endif %}\n {%- endfor -%}\n {%- else -%}\n {%- set update_columns = default_cols -%}\n {%- endif -%}\n\n {{ return(update_columns) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9533377, "supported_languages": null}, "macro.dbt_spark.materialization_incremental_spark": {"name": "materialization_incremental_spark", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/incremental.sql", "original_file_path": "macros/materializations/incremental/incremental.sql", "unique_id": "macro.dbt_spark.materialization_incremental_spark", "macro_sql": "{% materialization incremental, adapter='spark', supported_languages=['sql', 'python'] -%}\n {#-- Validate early so we don't run SQL if the file_format + strategy combo is invalid --#}\n {%- set raw_file_format = config.get('file_format', default='parquet') -%}\n {%- set raw_strategy = config.get('incremental_strategy') or 'append' -%}\n {%- set grant_config = config.get('grants') -%}\n\n {%- set file_format = dbt_spark_validate_get_file_format(raw_file_format) -%}\n {%- set strategy = dbt_spark_validate_get_incremental_strategy(raw_strategy, file_format) -%}\n\n {#-- Set vars --#}\n\n {%- set unique_key = config.get('unique_key', none) -%}\n {%- set partition_by = config.get('partition_by', none) -%}\n {%- set language = model['language'] -%}\n {%- set on_schema_change = incremental_validate_on_schema_change(config.get('on_schema_change'), default='ignore') -%}\n {%- set incremental_predicates = config.get('predicates', none) or config.get('incremental_predicates', none) -%}\n {%- set target_relation = this -%}\n {%- set existing_relation = load_relation(this) -%}\n {%- set tmp_relation = make_temp_relation(this) -%}\n\n {#-- for SQL model we will create temp view that doesn't have database and schema --#}\n {%- if language == 'sql'-%}\n {%- set tmp_relation = tmp_relation.include(database=false, schema=false) -%}\n {%- endif -%}\n\n {#-- Set Overwrite Mode --#}\n {%- if strategy == 'insert_overwrite' and partition_by -%}\n {%- call statement() -%}\n set spark.sql.sources.partitionOverwriteMode = DYNAMIC\n {%- endcall -%}\n {%- endif -%}\n\n {#-- Run pre-hooks --#}\n {{ run_hooks(pre_hooks) }}\n\n {#-- Incremental run logic --#}\n {%- if existing_relation is none -%}\n {#-- Relation must be created --#}\n {%- call statement('main', language=language) -%}\n {{ create_table_as(False, target_relation, compiled_code, language) }}\n {%- endcall -%}\n {% do persist_constraints(target_relation, model) %}\n {%- elif existing_relation.is_view or should_full_refresh() -%}\n {#-- Relation must be dropped & recreated --#}\n {% set is_delta = (file_format == 'delta' and existing_relation.is_delta) %}\n {% if not is_delta %} {#-- If Delta, we will `create or replace` below, so no need to drop --#}\n {% do adapter.drop_relation(existing_relation) %}\n {% endif %}\n {%- call statement('main', language=language) -%}\n {{ create_table_as(False, target_relation, compiled_code, language) }}\n {%- endcall -%}\n {% do persist_constraints(target_relation, model) %}\n {%- else -%}\n {#-- Relation must be merged --#}\n {%- call statement('create_tmp_relation', language=language) -%}\n {{ create_table_as(True, tmp_relation, compiled_code, language) }}\n {%- endcall -%}\n {%- do process_schema_changes(on_schema_change, tmp_relation, existing_relation) -%}\n {%- call statement('main') -%}\n {{ dbt_spark_get_incremental_sql(strategy, tmp_relation, target_relation, existing_relation, unique_key, incremental_predicates) }}\n {%- endcall -%}\n {%- if language == 'python' -%}\n {#--\n This is yucky.\n See note in dbt-spark/dbt/include/spark/macros/adapters.sql\n re: python models and temporary views.\n\n Also, why do neither drop_relation or adapter.drop_relation work here?!\n --#}\n {% call statement('drop_relation') -%}\n drop table if exists {{ tmp_relation }}\n {%- endcall %}\n {%- endif -%}\n {%- endif -%}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt_spark.dbt_spark_validate_get_file_format", "macro.dbt_spark.dbt_spark_validate_get_incremental_strategy", "macro.dbt.incremental_validate_on_schema_change", "macro.dbt.load_relation", "macro.dbt.make_temp_relation", "macro.dbt.statement", "macro.dbt.run_hooks", "macro.dbt.create_table_as", "macro.dbt_spark.persist_constraints", "macro.dbt.should_full_refresh", "macro.dbt.process_schema_changes", "macro.dbt_spark.dbt_spark_get_incremental_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9617991, "supported_languages": ["sql", "python"]}, "macro.dbt_spark.get_insert_overwrite_sql": {"name": "get_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_spark.get_insert_overwrite_sql", "macro_sql": "{% macro get_insert_overwrite_sql(source_relation, target_relation, existing_relation) %}\n\n {%- set dest_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set dest_cols_csv = dest_columns | map(attribute='quoted') | join(', ') -%}\n {% if existing_relation.is_iceberg %}\n {# removed table from statement for iceberg #}\n insert overwrite {{ target_relation }}\n {# removed partition_cols for iceberg as well #}\n {% else %}\n insert overwrite table {{ target_relation }}\n {{ partition_cols(label=\"partition\") }}\n {% endif %}\n select {{dest_cols_csv}} from {{ source_relation }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.partition_cols"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9658453, "supported_languages": null}, "macro.dbt_spark.get_insert_into_sql": {"name": "get_insert_into_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_spark.get_insert_into_sql", "macro_sql": "{% macro get_insert_into_sql(source_relation, target_relation) %}\n\n {%- set dest_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set dest_cols_csv = dest_columns | map(attribute='quoted') | join(', ') -%}\n insert into table {{ target_relation }}\n select {{dest_cols_csv}} from {{ source_relation }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9667933, "supported_languages": null}, "macro.dbt_spark.spark__get_merge_sql": {"name": "spark__get_merge_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_spark.spark__get_merge_sql", "macro_sql": "{% macro spark__get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) %}\n {# need dest_columns for merge_exclude_columns, default to use \"*\" #}\n {%- set predicates = [] if incremental_predicates is none else [] + incremental_predicates -%}\n {%- set dest_columns = adapter.get_columns_in_relation(target) -%}\n {%- set merge_update_columns = config.get('merge_update_columns') -%}\n {%- set merge_exclude_columns = config.get('merge_exclude_columns') -%}\n {%- set update_columns = get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not mapping and unique_key is not string %}\n {% for key in unique_key %}\n {% set this_key_match %}\n DBT_INTERNAL_SOURCE.{{ key }} = DBT_INTERNAL_DEST.{{ key }}\n {% endset %}\n {% do predicates.append(this_key_match) %}\n {% endfor %}\n {% else %}\n {% set unique_key_match %}\n DBT_INTERNAL_SOURCE.{{ unique_key }} = DBT_INTERNAL_DEST.{{ unique_key }}\n {% endset %}\n {% do predicates.append(unique_key_match) %}\n {% endif %}\n {% else %}\n {% do predicates.append('FALSE') %}\n {% endif %}\n\n {{ sql_header if sql_header is not none }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on {{ predicates | join(' and ') }}\n\n when matched then update set\n {% if update_columns -%}{%- for column_name in update_columns %}\n {{ column_name }} = DBT_INTERNAL_SOURCE.{{ column_name }}\n {%- if not loop.last %}, {%- endif %}\n {%- endfor %}\n {%- else %} * {% endif %}\n\n when not matched then insert *\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.970621, "supported_languages": null}, "macro.dbt_spark.dbt_spark_get_incremental_sql": {"name": "dbt_spark_get_incremental_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_spark.dbt_spark_get_incremental_sql", "macro_sql": "{% macro dbt_spark_get_incremental_sql(strategy, source, target, existing, unique_key, incremental_predicates) %}\n {%- if strategy == 'append' -%}\n {#-- insert new records into existing table, without updating or overwriting #}\n {{ get_insert_into_sql(source, target) }}\n {%- elif strategy == 'insert_overwrite' -%}\n {#-- insert statements don't like CTEs, so support them via a temp view #}\n {{ get_insert_overwrite_sql(source, target, existing) }}\n {%- elif strategy == 'merge' -%}\n {#-- merge all columns for datasources which implement MERGE INTO (e.g. databricks, iceberg) - schema changes are handled for us #}\n {{ get_merge_sql(target, source, unique_key, dest_columns=none, incremental_predicates=incremental_predicates) }}\n {%- else -%}\n {% set no_sql_for_strategy_msg -%}\n No known SQL for the incremental strategy provided: {{ strategy }}\n {%- endset %}\n {%- do exceptions.raise_compiler_error(no_sql_for_strategy_msg) -%}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.get_insert_into_sql", "macro.dbt_spark.get_insert_overwrite_sql", "macro.dbt.get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9723067, "supported_languages": null}, "macro.dbt_spark.dbt_spark_validate_get_file_format": {"name": "dbt_spark_validate_get_file_format", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/validate.sql", "original_file_path": "macros/materializations/incremental/validate.sql", "unique_id": "macro.dbt_spark.dbt_spark_validate_get_file_format", "macro_sql": "{% macro dbt_spark_validate_get_file_format(raw_file_format) %}\n {#-- Validate the file format #}\n\n {% set accepted_formats = ['text', 'csv', 'json', 'jdbc', 'parquet', 'orc', 'hive', 'delta', 'iceberg', 'libsvm', 'hudi'] %}\n\n {% set invalid_file_format_msg -%}\n Invalid file format provided: {{ raw_file_format }}\n Expected one of: {{ accepted_formats | join(', ') }}\n {%- endset %}\n\n {% if raw_file_format not in accepted_formats %}\n {% do exceptions.raise_compiler_error(invalid_file_format_msg) %}\n {% endif %}\n\n {% do return(raw_file_format) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9750695, "supported_languages": null}, "macro.dbt_spark.dbt_spark_validate_get_incremental_strategy": {"name": "dbt_spark_validate_get_incremental_strategy", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/validate.sql", "original_file_path": "macros/materializations/incremental/validate.sql", "unique_id": "macro.dbt_spark.dbt_spark_validate_get_incremental_strategy", "macro_sql": "{% macro dbt_spark_validate_get_incremental_strategy(raw_strategy, file_format) %}\n {#-- Validate the incremental strategy #}\n\n {% set invalid_strategy_msg -%}\n Invalid incremental strategy provided: {{ raw_strategy }}\n Expected one of: 'append', 'merge', 'insert_overwrite'\n {%- endset %}\n\n {% set invalid_merge_msg -%}\n Invalid incremental strategy provided: {{ raw_strategy }}\n You can only choose this strategy when file_format is set to 'delta' or 'iceberg' or 'hudi'\n {%- endset %}\n\n {% set invalid_insert_overwrite_delta_msg -%}\n Invalid incremental strategy provided: {{ raw_strategy }}\n You cannot use this strategy when file_format is set to 'delta' or 'iceberg'\n Use the 'append' or 'merge' strategy instead\n {%- endset %}\n\n {% set invalid_insert_overwrite_endpoint_msg -%}\n Invalid incremental strategy provided: {{ raw_strategy }}\n You cannot use this strategy when connecting via endpoint\n Use the 'append' or 'merge' strategy instead\n {%- endset %}\n\n {% if raw_strategy not in ['append', 'merge', 'insert_overwrite'] %}\n {% do exceptions.raise_compiler_error(invalid_strategy_msg) %}\n {%-else %}\n {% if raw_strategy == 'merge' and file_format not in ['delta', 'iceberg', 'hudi'] %}\n {% do exceptions.raise_compiler_error(invalid_merge_msg) %}\n {% endif %}\n {% if raw_strategy == 'insert_overwrite' and file_format == 'delta' %}\n {% do exceptions.raise_compiler_error(invalid_insert_overwrite_delta_msg) %}\n {% endif %}\n {% if raw_strategy == 'insert_overwrite' and target.endpoint %}\n {% do exceptions.raise_compiler_error(invalid_insert_overwrite_endpoint_msg) %}\n {% endif %}\n {% endif %}\n\n {% do return(raw_strategy) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9779058, "supported_languages": null}, "macro.dbt_spark.spark__dateadd": {"name": "spark__dateadd", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt_spark.spark__dateadd", "macro_sql": "{% macro spark__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n {%- set clock_component -%}\n {# make sure the dates + timestamps are real, otherwise raise an error asap #}\n to_unix_timestamp({{ assert_not_null('to_timestamp', from_date_or_timestamp) }})\n - to_unix_timestamp({{ assert_not_null('date', from_date_or_timestamp) }})\n {%- endset -%}\n\n {%- if datepart in ['day', 'week'] -%}\n\n {%- set multiplier = 7 if datepart == 'week' else 1 -%}\n\n to_timestamp(\n to_unix_timestamp(\n date_add(\n {{ assert_not_null('date', from_date_or_timestamp) }},\n cast({{interval}} * {{multiplier}} as int)\n )\n ) + {{clock_component}}\n )\n\n {%- elif datepart in ['month', 'quarter', 'year'] -%}\n\n {%- set multiplier -%}\n {%- if datepart == 'month' -%} 1\n {%- elif datepart == 'quarter' -%} 3\n {%- elif datepart == 'year' -%} 12\n {%- endif -%}\n {%- endset -%}\n\n to_timestamp(\n to_unix_timestamp(\n add_months(\n {{ assert_not_null('date', from_date_or_timestamp) }},\n cast({{interval}} * {{multiplier}} as int)\n )\n ) + {{clock_component}}\n )\n\n {%- elif datepart in ('hour', 'minute', 'second', 'millisecond', 'microsecond') -%}\n\n {%- set multiplier -%}\n {%- if datepart == 'hour' -%} 3600\n {%- elif datepart == 'minute' -%} 60\n {%- elif datepart == 'second' -%} 1\n {%- elif datepart == 'millisecond' -%} (1/1000000)\n {%- elif datepart == 'microsecond' -%} (1/1000000)\n {%- endif -%}\n {%- endset -%}\n\n to_timestamp(\n {{ assert_not_null('to_unix_timestamp', from_date_or_timestamp) }}\n + cast({{interval}} * {{multiplier}} as int)\n )\n\n {%- else -%}\n\n {{ exceptions.raise_compiler_error(\"macro dateadd not implemented for datepart ~ '\" ~ datepart ~ \"' ~ on Spark\") }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9836464, "supported_languages": null}, "macro.dbt_spark.spark__current_timestamp": {"name": "spark__current_timestamp", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/timestamps.sql", "original_file_path": "macros/utils/timestamps.sql", "unique_id": "macro.dbt_spark.spark__current_timestamp", "macro_sql": "{% macro spark__current_timestamp() -%}\n current_timestamp()\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9840214, "supported_languages": null}, "macro.dbt_spark.spark__datediff": {"name": "spark__datediff", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt_spark.spark__datediff", "macro_sql": "{% macro spark__datediff(first_date, second_date, datepart) %}\n\n {%- if datepart in ['day', 'week', 'month', 'quarter', 'year'] -%}\n\n {# make sure the dates are real, otherwise raise an error asap #}\n {% set first_date = assert_not_null('date', first_date) %}\n {% set second_date = assert_not_null('date', second_date) %}\n\n {%- endif -%}\n\n {%- if datepart == 'day' -%}\n\n datediff({{second_date}}, {{first_date}})\n\n {%- elif datepart == 'week' -%}\n\n case when {{first_date}} < {{second_date}}\n then floor(datediff({{second_date}}, {{first_date}})/7)\n else ceil(datediff({{second_date}}, {{first_date}})/7)\n end\n\n -- did we cross a week boundary (Sunday)?\n + case\n when {{first_date}} < {{second_date}} and dayofweek({{second_date}}) < dayofweek({{first_date}}) then 1\n when {{first_date}} > {{second_date}} and dayofweek({{second_date}}) > dayofweek({{first_date}}) then -1\n else 0 end\n\n {%- elif datepart == 'month' -%}\n\n case when {{first_date}} < {{second_date}}\n then floor(months_between(date({{second_date}}), date({{first_date}})))\n else ceil(months_between(date({{second_date}}), date({{first_date}})))\n end\n\n -- did we cross a month boundary?\n + case\n when {{first_date}} < {{second_date}} and dayofmonth({{second_date}}) < dayofmonth({{first_date}}) then 1\n when {{first_date}} > {{second_date}} and dayofmonth({{second_date}}) > dayofmonth({{first_date}}) then -1\n else 0 end\n\n {%- elif datepart == 'quarter' -%}\n\n case when {{first_date}} < {{second_date}}\n then floor(months_between(date({{second_date}}), date({{first_date}}))/3)\n else ceil(months_between(date({{second_date}}), date({{first_date}}))/3)\n end\n\n -- did we cross a quarter boundary?\n + case\n when {{first_date}} < {{second_date}} and (\n (dayofyear({{second_date}}) - (quarter({{second_date}}) * 365/4))\n < (dayofyear({{first_date}}) - (quarter({{first_date}}) * 365/4))\n ) then 1\n when {{first_date}} > {{second_date}} and (\n (dayofyear({{second_date}}) - (quarter({{second_date}}) * 365/4))\n > (dayofyear({{first_date}}) - (quarter({{first_date}}) * 365/4))\n ) then -1\n else 0 end\n\n {%- elif datepart == 'year' -%}\n\n year({{second_date}}) - year({{first_date}})\n\n {%- elif datepart in ('hour', 'minute', 'second', 'millisecond', 'microsecond') -%}\n\n {%- set divisor -%}\n {%- if datepart == 'hour' -%} 3600\n {%- elif datepart == 'minute' -%} 60\n {%- elif datepart == 'second' -%} 1\n {%- elif datepart == 'millisecond' -%} (1/1000)\n {%- elif datepart == 'microsecond' -%} (1/1000000)\n {%- endif -%}\n {%- endset -%}\n\n case when {{first_date}} < {{second_date}}\n then ceil((\n {# make sure the timestamps are real, otherwise raise an error asap #}\n {{ assert_not_null('to_unix_timestamp', assert_not_null('to_timestamp', second_date)) }}\n - {{ assert_not_null('to_unix_timestamp', assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n else floor((\n {{ assert_not_null('to_unix_timestamp', assert_not_null('to_timestamp', second_date)) }}\n - {{ assert_not_null('to_unix_timestamp', assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n end\n\n {% if datepart == 'millisecond' %}\n + cast(date_format({{second_date}}, 'SSS') as int)\n - cast(date_format({{first_date}}, 'SSS') as int)\n {% endif %}\n\n {% if datepart == 'microsecond' %}\n {% set capture_str = '[0-9]{4}-[0-9]{2}-[0-9]{2}.[0-9]{2}:[0-9]{2}:[0-9]{2}.([0-9]{6})' %}\n -- Spark doesn't really support microseconds, so this is a massive hack!\n -- It will only work if the timestamp-string is of the format\n -- 'yyyy-MM-dd-HH mm.ss.SSSSSS'\n + cast(regexp_extract({{second_date}}, '{{capture_str}}', 1) as int)\n - cast(regexp_extract({{first_date}}, '{{capture_str}}', 1) as int)\n {% endif %}\n\n {%- else -%}\n\n {{ exceptions.raise_compiler_error(\"macro datediff not implemented for datepart ~ '\" ~ datepart ~ \"' ~ on Spark\") }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9972718, "supported_languages": null}, "macro.dbt_spark.spark__array_concat": {"name": "spark__array_concat", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt_spark.spark__array_concat", "macro_sql": "{% macro spark__array_concat(array_1, array_2) -%}\n concat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9977794, "supported_languages": null}, "macro.dbt_spark.spark__array_construct": {"name": "spark__array_construct", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt_spark.spark__array_construct", "macro_sql": "{% macro spark__array_construct(inputs, data_type) -%}\n array( {{ inputs|join(' , ') }} )\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9982932, "supported_languages": null}, "macro.dbt_spark.spark__bool_or": {"name": "spark__bool_or", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt_spark.spark__bool_or", "macro_sql": "{% macro spark__bool_or(expression) -%}\n\n max({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.9986465, "supported_languages": null}, "macro.dbt_spark.spark__escape_single_quotes": {"name": "spark__escape_single_quotes", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt_spark.spark__escape_single_quotes", "macro_sql": "{% macro spark__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\",\"\\\\'\") }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082600.999114, "supported_languages": null}, "macro.dbt_spark.spark__split_part": {"name": "spark__split_part", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt_spark.spark__split_part", "macro_sql": "{% macro spark__split_part(string_text, delimiter_text, part_number) %}\n\n {% set delimiter_expr %}\n\n -- escape if starts with a special character\n case when regexp_extract({{ delimiter_text }}, '([^A-Za-z0-9])(.*)', 1) != '_'\n then concat('\\\\', {{ delimiter_text }})\n else {{ delimiter_text }} end\n\n {% endset %}\n\n {% set split_part_expr %}\n\n split(\n {{ string_text }},\n {{ delimiter_expr }}\n )[({{ part_number - 1 }})]\n\n {% endset %}\n\n {{ return(split_part_expr) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0003345, "supported_languages": null}, "macro.dbt_spark.spark__listagg": {"name": "spark__listagg", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt_spark.spark__listagg", "macro_sql": "{% macro spark__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n {% if order_by_clause %}\n {{ exceptions.warn(\"order_by_clause is not supported for listagg on Spark/Databricks\") }}\n {% endif %}\n\n {% set collect_list %} collect_list({{ measure }}) {% endset %}\n\n {% set limited %} slice({{ collect_list }}, 1, {{ limit_num }}) {% endset %}\n\n {% set collected = limited if limit_num else collect_list %}\n\n {% set final %} array_join({{ collected }}, {{ delimiter_text }}) {% endset %}\n\n {% do return(final) %}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0023417, "supported_languages": null}, "macro.dbt_spark.spark__array_append": {"name": "spark__array_append", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt_spark.spark__array_append", "macro_sql": "{% macro spark__array_append(array, new_element) -%}\n {{ array_concat(array, array_construct([new_element])) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.array_concat", "macro.dbt_utils.array_construct"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.002935, "supported_languages": null}, "macro.dbt_spark.spark__any_value": {"name": "spark__any_value", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt_spark.spark__any_value", "macro_sql": "{% macro spark__any_value(expression) -%}\n {#-- return any value (non-deterministic) --#}\n first({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.003385, "supported_languages": null}, "macro.dbt_spark.spark__concat": {"name": "spark__concat", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt_spark.spark__concat", "macro_sql": "{% macro spark__concat(fields) -%}\n concat({{ fields|join(', ') }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0037756, "supported_languages": null}, "macro.dbt_spark.assert_not_null": {"name": "assert_not_null", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/assert_not_null.sql", "original_file_path": "macros/utils/assert_not_null.sql", "unique_id": "macro.dbt_spark.assert_not_null", "macro_sql": "{% macro assert_not_null(function, arg) -%}\n {{ return(adapter.dispatch('assert_not_null', 'dbt')(function, arg)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0044913, "supported_languages": null}, "macro.dbt_spark.spark__assert_not_null": {"name": "spark__assert_not_null", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/assert_not_null.sql", "original_file_path": "macros/utils/assert_not_null.sql", "unique_id": "macro.dbt_spark.spark__assert_not_null", "macro_sql": "{% macro spark__assert_not_null(function, arg) %}\n\n coalesce({{function}}({{arg}}), nvl2({{function}}({{arg}}), assert_true({{function}}({{arg}}) is not null), null))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.004977, "supported_languages": null}, "macro.dbt.generate_alias_name": {"name": "generate_alias_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "unique_id": "macro.dbt.generate_alias_name", "macro_sql": "{% macro generate_alias_name(custom_alias_name=none, node=none) -%}\n {% do return(adapter.dispatch('generate_alias_name', 'dbt')(custom_alias_name, node)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_alias_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0058956, "supported_languages": null}, "macro.dbt.default__generate_alias_name": {"name": "default__generate_alias_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "unique_id": "macro.dbt.default__generate_alias_name", "macro_sql": "{% macro default__generate_alias_name(custom_alias_name=none, node=none) -%}\n\n {%- if custom_alias_name -%}\n\n {{ custom_alias_name | trim }}\n\n {%- elif node.version -%}\n\n {{ return(node.name ~ \"_v\" ~ (node.version | replace(\".\", \"_\"))) }}\n\n {%- else -%}\n\n {{ node.name }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.006822, "supported_languages": null}, "macro.dbt.generate_schema_name": {"name": "generate_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.generate_schema_name", "macro_sql": "{% macro generate_schema_name(custom_schema_name=none, node=none) -%}\n {{ return(adapter.dispatch('generate_schema_name', 'dbt')(custom_schema_name, node)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0079126, "supported_languages": null}, "macro.dbt.default__generate_schema_name": {"name": "default__generate_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.default__generate_schema_name", "macro_sql": "{% macro default__generate_schema_name(custom_schema_name, node) -%}\n\n {%- set default_schema = target.schema -%}\n {%- if custom_schema_name is none -%}\n\n {{ default_schema }}\n\n {%- else -%}\n\n {{ default_schema }}_{{ custom_schema_name | trim }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0085964, "supported_languages": null}, "macro.dbt.generate_schema_name_for_env": {"name": "generate_schema_name_for_env", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.generate_schema_name_for_env", "macro_sql": "{% macro generate_schema_name_for_env(custom_schema_name, node) -%}\n\n {%- set default_schema = target.schema -%}\n {%- if target.name == 'prod' and custom_schema_name is not none -%}\n\n {{ custom_schema_name | trim }}\n\n {%- else -%}\n\n {{ default_schema }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0093045, "supported_languages": null}, "macro.dbt.generate_database_name": {"name": "generate_database_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "unique_id": "macro.dbt.generate_database_name", "macro_sql": "{% macro generate_database_name(custom_database_name=none, node=none) -%}\n {% do return(adapter.dispatch('generate_database_name', 'dbt')(custom_database_name, node)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__generate_database_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.010171, "supported_languages": null}, "macro.dbt.default__generate_database_name": {"name": "default__generate_database_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "unique_id": "macro.dbt.default__generate_database_name", "macro_sql": "{% macro default__generate_database_name(custom_database_name=none, node=none) -%}\n {%- set default_database = target.database -%}\n {%- if custom_database_name is none -%}\n\n {{ default_database }}\n\n {%- else -%}\n\n {{ custom_database_name }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0107663, "supported_languages": null}, "macro.dbt.resolve_model_name": {"name": "resolve_model_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.resolve_model_name", "macro_sql": "{% macro resolve_model_name(input_model_name) %}\n {{ return(adapter.dispatch('resolve_model_name', 'dbt')(input_model_name)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0135949, "supported_languages": null}, "macro.dbt.default__resolve_model_name": {"name": "default__resolve_model_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.default__resolve_model_name", "macro_sql": "\n\n{%- macro default__resolve_model_name(input_model_name) -%}\n {{ input_model_name | string | replace('\"', '\\\"') }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0141385, "supported_languages": null}, "macro.dbt.build_ref_function": {"name": "build_ref_function", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_ref_function", "macro_sql": "{% macro build_ref_function(model) %}\n\n {%- set ref_dict = {} -%}\n {%- for _ref in model.refs -%}\n {% set _ref_args = [_ref.get('package'), _ref['name']] if _ref.get('package') else [_ref['name'],] %}\n {%- set resolved = ref(*_ref_args, v=_ref.get('version')) -%}\n {%- if _ref.get('version') -%}\n {% do _ref_args.extend([\"v\" ~ _ref['version']]) %}\n {%- endif -%}\n {%- do ref_dict.update({_ref_args | join('.'): resolve_model_name(resolved)}) -%}\n {%- endfor -%}\n\ndef ref(*args, **kwargs):\n refs = {{ ref_dict | tojson }}\n key = '.'.join(args)\n version = kwargs.get(\"v\") or kwargs.get(\"version\")\n if version:\n key += f\".v{version}\"\n dbt_load_df_function = kwargs.get(\"dbt_load_df_function\")\n return dbt_load_df_function(refs[key])\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0160248, "supported_languages": null}, "macro.dbt.build_source_function": {"name": "build_source_function", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_source_function", "macro_sql": "{% macro build_source_function(model) %}\n\n {%- set source_dict = {} -%}\n {%- for _source in model.sources -%}\n {%- set resolved = source(*_source) -%}\n {%- do source_dict.update({_source | join('.'): resolve_model_name(resolved)}) -%}\n {%- endfor -%}\n\ndef source(*args, dbt_load_df_function):\n sources = {{ source_dict | tojson }}\n key = '.'.join(args)\n return dbt_load_df_function(sources[key])\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0169868, "supported_languages": null}, "macro.dbt.build_config_dict": {"name": "build_config_dict", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_config_dict", "macro_sql": "{% macro build_config_dict(model) %}\n {%- set config_dict = {} -%}\n {% set config_dbt_used = zip(model.config.config_keys_used, model.config.config_keys_defaults) | list %}\n {%- for key, default in config_dbt_used -%}\n {# weird type testing with enum, would be much easier to write this logic in Python! #}\n {%- if key == \"language\" -%}\n {%- set value = \"python\" -%}\n {%- endif -%}\n {%- set value = model.config.get(key, default) -%}\n {%- do config_dict.update({key: value}) -%}\n {%- endfor -%}\nconfig_dict = {{ config_dict }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.018455, "supported_languages": null}, "macro.dbt.py_script_postfix": {"name": "py_script_postfix", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.py_script_postfix", "macro_sql": "{% macro py_script_postfix(model) %}\n# This part is user provided model code\n# you will need to copy the next section to run the code\n# COMMAND ----------\n# this part is dbt logic for get ref work, do not modify\n\n{{ build_ref_function(model ) }}\n{{ build_source_function(model ) }}\n{{ build_config_dict(model) }}\n\nclass config:\n def __init__(self, *args, **kwargs):\n pass\n\n @staticmethod\n def get(key, default=None):\n return config_dict.get(key, default)\n\nclass this:\n \"\"\"dbt.this() or dbt.this.identifier\"\"\"\n database = \"{{ this.database }}\"\n schema = \"{{ this.schema }}\"\n identifier = \"{{ this.identifier }}\"\n {% set this_relation_name = resolve_model_name(this) %}\n def __repr__(self):\n return '{{ this_relation_name }}'\n\n\nclass dbtObj:\n def __init__(self, load_df_function) -> None:\n self.source = lambda *args: source(*args, dbt_load_df_function=load_df_function)\n self.ref = lambda *args, **kwargs: ref(*args, **kwargs, dbt_load_df_function=load_df_function)\n self.config = config\n self.this = this()\n self.is_incremental = {{ is_incremental() }}\n\n# COMMAND ----------\n{{py_script_comment()}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.build_ref_function", "macro.dbt.build_source_function", "macro.dbt.build_config_dict", "macro.dbt.resolve_model_name", "macro.dbt.is_incremental", "macro.dbt.py_script_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.019546, "supported_languages": null}, "macro.dbt.py_script_comment": {"name": "py_script_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.py_script_comment", "macro_sql": "{%macro py_script_comment()%}\n{%endmacro%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.019734, "supported_languages": null}, "macro.dbt.set_sql_header": {"name": "set_sql_header", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.set_sql_header", "macro_sql": "{% macro set_sql_header(config) -%}\n {{ config.set('sql_header', caller()) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.020571, "supported_languages": null}, "macro.dbt.should_full_refresh": {"name": "should_full_refresh", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.should_full_refresh", "macro_sql": "{% macro should_full_refresh() %}\n {% set config_full_refresh = config.get('full_refresh') %}\n {% if config_full_refresh is none %}\n {% set config_full_refresh = flags.FULL_REFRESH %}\n {% endif %}\n {% do return(config_full_refresh) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0213265, "supported_languages": null}, "macro.dbt.should_store_failures": {"name": "should_store_failures", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.should_store_failures", "macro_sql": "{% macro should_store_failures() %}\n {% set config_store_failures = config.get('store_failures') %}\n {% if config_store_failures is none %}\n {% set config_store_failures = flags.STORE_FAILURES %}\n {% endif %}\n {% do return(config_store_failures) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0220175, "supported_languages": null}, "macro.dbt.run_hooks": {"name": "run_hooks", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.run_hooks", "macro_sql": "{% macro run_hooks(hooks, inside_transaction=True) %}\n {% for hook in hooks | selectattr('transaction', 'equalto', inside_transaction) %}\n {% if not inside_transaction and loop.first %}\n {% call statement(auto_begin=inside_transaction) %}\n commit;\n {% endcall %}\n {% endif %}\n {% set rendered = render(hook.get('sql')) | trim %}\n {% if (rendered | length) > 0 %}\n {% call statement(auto_begin=inside_transaction) %}\n {{ rendered }}\n {% endcall %}\n {% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.024366, "supported_languages": null}, "macro.dbt.make_hook_config": {"name": "make_hook_config", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.make_hook_config", "macro_sql": "{% macro make_hook_config(sql, inside_transaction) %}\n {{ tojson({\"sql\": sql, \"transaction\": inside_transaction}) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0248218, "supported_languages": null}, "macro.dbt.before_begin": {"name": "before_begin", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.before_begin", "macro_sql": "{% macro before_begin(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.025206, "supported_languages": null}, "macro.dbt.in_transaction": {"name": "in_transaction", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.in_transaction", "macro_sql": "{% macro in_transaction(sql) %}\n {{ make_hook_config(sql, inside_transaction=True) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0255315, "supported_languages": null}, "macro.dbt.after_commit": {"name": "after_commit", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.after_commit", "macro_sql": "{% macro after_commit(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0258572, "supported_languages": null}, "macro.dbt.materialization_seed_default": {"name": "materialization_seed_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/seed.sql", "original_file_path": "macros/materializations/seeds/seed.sql", "unique_id": "macro.dbt.materialization_seed_default", "macro_sql": "{% materialization seed, default %}\n\n {%- set identifier = model['alias'] -%}\n {%- set full_refresh_mode = (should_full_refresh()) -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n\n {%- set exists_as_table = (old_relation is not none and old_relation.is_table) -%}\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {%- set grant_config = config.get('grants') -%}\n {%- set agate_table = load_agate_table() -%}\n -- grab current tables grants config for comparision later on\n\n {%- do store_result('agate_table', response='OK', agate_table=agate_table) -%}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% set create_table_sql = \"\" %}\n {% if exists_as_view %}\n {{ exceptions.raise_compiler_error(\"Cannot seed to '{}', it is a view\".format(old_relation)) }}\n {% elif exists_as_table %}\n {% set create_table_sql = reset_csv_table(model, full_refresh_mode, old_relation, agate_table) %}\n {% else %}\n {% set create_table_sql = create_csv_table(model, agate_table) %}\n {% endif %}\n\n {% set code = 'CREATE' if full_refresh_mode else 'INSERT' %}\n {% set rows_affected = (agate_table.rows | length) %}\n {% set sql = load_csv_rows(model, agate_table) %}\n\n {% call noop_statement('main', code ~ ' ' ~ rows_affected, code, rows_affected) %}\n {{ get_csv_sql(create_table_sql, sql) }};\n {% endcall %}\n\n {% set target_relation = this.incorporate(type='table') %}\n\n {% set should_revoke = should_revoke(old_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if full_refresh_mode or not exists_as_table %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n -- `COMMIT` happens here\n {{ adapter.commit() }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh", "macro.dbt.run_hooks", "macro.dbt.reset_csv_table", "macro.dbt.create_csv_table", "macro.dbt.load_csv_rows", "macro.dbt.noop_statement", "macro.dbt.get_csv_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0330608, "supported_languages": ["sql"]}, "macro.dbt.create_csv_table": {"name": "create_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.create_csv_table", "macro_sql": "{% macro create_csv_table(model, agate_table) -%}\n {{ adapter.dispatch('create_csv_table', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.040843, "supported_languages": null}, "macro.dbt.default__create_csv_table": {"name": "default__create_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__create_csv_table", "macro_sql": "{% macro default__create_csv_table(model, agate_table) %}\n {%- set column_override = model['config'].get('column_types', {}) -%}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n\n {% set sql %}\n create table {{ this.render() }} (\n {%- for col_name in agate_table.column_names -%}\n {%- set inferred_type = adapter.convert_type(agate_table, loop.index0) -%}\n {%- set type = column_override.get(col_name, inferred_type) -%}\n {%- set column_name = (col_name | string) -%}\n {{ adapter.quote_seed_column(column_name, quote_seed_column) }} {{ type }} {%- if not loop.last -%}, {%- endif -%}\n {%- endfor -%}\n )\n {% endset %}\n\n {% call statement('_') -%}\n {{ sql }}\n {%- endcall %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0431092, "supported_languages": null}, "macro.dbt.reset_csv_table": {"name": "reset_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.reset_csv_table", "macro_sql": "{% macro reset_csv_table(model, full_refresh, old_relation, agate_table) -%}\n {{ adapter.dispatch('reset_csv_table', 'dbt')(model, full_refresh, old_relation, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__reset_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0437176, "supported_languages": null}, "macro.dbt.default__reset_csv_table": {"name": "default__reset_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__reset_csv_table", "macro_sql": "{% macro default__reset_csv_table(model, full_refresh, old_relation, agate_table) %}\n {% set sql = \"\" %}\n {% if full_refresh %}\n {{ adapter.drop_relation(old_relation) }}\n {% set sql = create_csv_table(model, agate_table) %}\n {% else %}\n {{ adapter.truncate_relation(old_relation) }}\n {% set sql = \"truncate table \" ~ old_relation %}\n {% endif %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0453053, "supported_languages": null}, "macro.dbt.get_csv_sql": {"name": "get_csv_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_csv_sql", "macro_sql": "{% macro get_csv_sql(create_or_truncate_sql, insert_sql) %}\n {{ adapter.dispatch('get_csv_sql', 'dbt')(create_or_truncate_sql, insert_sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_csv_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0459034, "supported_languages": null}, "macro.dbt.default__get_csv_sql": {"name": "default__get_csv_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_csv_sql", "macro_sql": "{% macro default__get_csv_sql(create_or_truncate_sql, insert_sql) %}\n {{ create_or_truncate_sql }};\n -- dbt seed --\n {{ insert_sql }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0463073, "supported_languages": null}, "macro.dbt.get_binding_char": {"name": "get_binding_char", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_binding_char", "macro_sql": "{% macro get_binding_char() -%}\n {{ adapter.dispatch('get_binding_char', 'dbt')() }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0466444, "supported_languages": null}, "macro.dbt.default__get_binding_char": {"name": "default__get_binding_char", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_binding_char", "macro_sql": "{% macro default__get_binding_char() %}\n {{ return('%s') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0469186, "supported_languages": null}, "macro.dbt.get_batch_size": {"name": "get_batch_size", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_batch_size", "macro_sql": "{% macro get_batch_size() -%}\n {{ return(adapter.dispatch('get_batch_size', 'dbt')()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_batch_size"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.047355, "supported_languages": null}, "macro.dbt.default__get_batch_size": {"name": "default__get_batch_size", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_batch_size", "macro_sql": "{% macro default__get_batch_size() %}\n {{ return(10000) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0476322, "supported_languages": null}, "macro.dbt.get_seed_column_quoted_csv": {"name": "get_seed_column_quoted_csv", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_seed_column_quoted_csv", "macro_sql": "{% macro get_seed_column_quoted_csv(model, column_names) %}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n {% set quoted = [] %}\n {% for col in column_names -%}\n {%- do quoted.append(adapter.quote_seed_column(col, quote_seed_column)) -%}\n {%- endfor %}\n\n {%- set dest_cols_csv = quoted | join(', ') -%}\n {{ return(dest_cols_csv) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.049198, "supported_languages": null}, "macro.dbt.load_csv_rows": {"name": "load_csv_rows", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.load_csv_rows", "macro_sql": "{% macro load_csv_rows(model, agate_table) -%}\n {{ adapter.dispatch('load_csv_rows', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__load_csv_rows"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0496519, "supported_languages": null}, "macro.dbt.default__load_csv_rows": {"name": "default__load_csv_rows", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__load_csv_rows", "macro_sql": "{% macro default__load_csv_rows(model, agate_table) %}\n\n {% set batch_size = get_batch_size() %}\n\n {% set cols_sql = get_seed_column_quoted_csv(model, agate_table.column_names) %}\n {% set bindings = [] %}\n\n {% set statements = [] %}\n\n {% for chunk in agate_table.rows | batch(batch_size) %}\n {% set bindings = [] %}\n\n {% for row in chunk %}\n {% do bindings.extend(row) %}\n {% endfor %}\n\n {% set sql %}\n insert into {{ this.render() }} ({{ cols_sql }}) values\n {% for row in chunk -%}\n ({%- for column in agate_table.column_names -%}\n {{ get_binding_char() }}\n {%- if not loop.last%},{%- endif %}\n {%- endfor -%})\n {%- if not loop.last%},{%- endif %}\n {%- endfor %}\n {% endset %}\n\n {% do adapter.add_query(sql, bindings=bindings, abridge_sql_log=True) %}\n\n {% if loop.index0 == 0 %}\n {% do statements.append(sql) %}\n {% endif %}\n {% endfor %}\n\n {# Return SQL so we can render it out into the compiled files #}\n {{ return(statements[0]) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_batch_size", "macro.dbt.get_seed_column_quoted_csv", "macro.dbt.get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0533447, "supported_languages": null}, "macro.dbt.get_where_subquery": {"name": "get_where_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "unique_id": "macro.dbt.get_where_subquery", "macro_sql": "{% macro get_where_subquery(relation) -%}\n {% do return(adapter.dispatch('get_where_subquery', 'dbt')(relation)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_where_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.054275, "supported_languages": null}, "macro.dbt.default__get_where_subquery": {"name": "default__get_where_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "unique_id": "macro.dbt.default__get_where_subquery", "macro_sql": "{% macro default__get_where_subquery(relation) -%}\n {% set where = config.get('where', '') %}\n {% if where %}\n {%- set filtered -%}\n (select * from {{ relation }} where {{ where }}) dbt_subquery\n {%- endset -%}\n {% do return(filtered) %}\n {%- else -%}\n {% do return(relation) %}\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0552208, "supported_languages": null}, "macro.dbt.materialization_test_default": {"name": "materialization_test_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/test.sql", "original_file_path": "macros/materializations/tests/test.sql", "unique_id": "macro.dbt.materialization_test_default", "macro_sql": "{%- materialization test, default -%}\n\n {% set relations = [] %}\n\n {% if should_store_failures() %}\n\n {% set identifier = model['alias'] %}\n {% set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) %}\n {% set target_relation = api.Relation.create(\n identifier=identifier, schema=schema, database=database, type='table') -%} %}\n\n {% if old_relation %}\n {% do adapter.drop_relation(old_relation) %}\n {% endif %}\n\n {% call statement(auto_begin=True) %}\n {{ create_table_as(False, target_relation, sql) }}\n {% endcall %}\n\n {% do relations.append(target_relation) %}\n\n {% set main_sql %}\n select *\n from {{ target_relation }}\n {% endset %}\n\n {{ adapter.commit() }}\n\n {% else %}\n\n {% set main_sql = sql %}\n\n {% endif %}\n\n {% set limit = config.get('limit') %}\n {% set fail_calc = config.get('fail_calc') %}\n {% set warn_if = config.get('warn_if') %}\n {% set error_if = config.get('error_if') %}\n\n {% call statement('main', fetch_result=True) -%}\n\n {{ get_test_sql(main_sql, fail_calc, warn_if, error_if, limit)}}\n\n {%- endcall %}\n\n {{ return({'relations': relations}) }}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.should_store_failures", "macro.dbt.statement", "macro.dbt.create_table_as", "macro.dbt.get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0598938, "supported_languages": ["sql"]}, "macro.dbt.get_test_sql": {"name": "get_test_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "unique_id": "macro.dbt.get_test_sql", "macro_sql": "{% macro get_test_sql(main_sql, fail_calc, warn_if, error_if, limit) -%}\n {{ adapter.dispatch('get_test_sql', 'dbt')(main_sql, fail_calc, warn_if, error_if, limit) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0612917, "supported_languages": null}, "macro.dbt.default__get_test_sql": {"name": "default__get_test_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "unique_id": "macro.dbt.default__get_test_sql", "macro_sql": "{% macro default__get_test_sql(main_sql, fail_calc, warn_if, error_if, limit) -%}\n select\n {{ fail_calc }} as failures,\n {{ fail_calc }} {{ warn_if }} as should_warn,\n {{ fail_calc }} {{ error_if }} as should_error\n from (\n {{ main_sql }}\n {{ \"limit \" ~ limit if limit != none }}\n ) dbt_internal_test\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0620654, "supported_languages": null}, "macro.dbt.materialization_snapshot_default": {"name": "materialization_snapshot_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot.sql", "original_file_path": "macros/materializations/snapshots/snapshot.sql", "unique_id": "macro.dbt.materialization_snapshot_default", "macro_sql": "{% materialization snapshot, default %}\n {%- set config = model['config'] -%}\n\n {%- set target_table = model.get('alias', model.get('name')) -%}\n\n {%- set strategy_name = config.get('strategy') -%}\n {%- set unique_key = config.get('unique_key') %}\n -- grab current tables grants config for comparision later on\n {%- set grant_config = config.get('grants') -%}\n\n {% set target_relation_exists, target_relation = get_or_create_relation(\n database=model.database,\n schema=model.schema,\n identifier=target_table,\n type='table') -%}\n\n {%- if not target_relation.is_table -%}\n {% do exceptions.relation_wrong_type(target_relation, 'table') %}\n {%- endif -%}\n\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set strategy_macro = strategy_dispatch(strategy_name) %}\n {% set strategy = strategy_macro(model, \"snapshotted_data\", \"source_data\", config, target_relation_exists) %}\n\n {% if not target_relation_exists %}\n\n {% set build_sql = build_snapshot_table(strategy, model['compiled_code']) %}\n {% set final_sql = create_table_as(False, target_relation, build_sql) %}\n\n {% else %}\n\n {{ adapter.valid_snapshot_target(target_relation) }}\n\n {% set staging_table = build_snapshot_staging_table(strategy, sql, target_relation) %}\n\n -- this may no-op if the database does not require column expansion\n {% do adapter.expand_target_column_types(from_relation=staging_table,\n to_relation=target_relation) %}\n\n {% set missing_columns = adapter.get_missing_columns(staging_table, target_relation)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% do create_columns(target_relation, missing_columns) %}\n\n {% set source_columns = adapter.get_columns_in_relation(staging_table)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% set quoted_source_columns = [] %}\n {% for column in source_columns %}\n {% do quoted_source_columns.append(adapter.quote(column.name)) %}\n {% endfor %}\n\n {% set final_sql = snapshot_merge_sql(\n target = target_relation,\n source = staging_table,\n insert_cols = quoted_source_columns\n )\n %}\n\n {% endif %}\n\n {% call statement('main') %}\n {{ final_sql }}\n {% endcall %}\n\n {% set should_revoke = should_revoke(target_relation_exists, full_refresh_mode=False) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if not target_relation_exists %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {% if staging_table is defined %}\n {% do post_snapshot(staging_table) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.get_or_create_relation", "macro.dbt.run_hooks", "macro.dbt.strategy_dispatch", "macro.dbt.build_snapshot_table", "macro.dbt.create_table_as", "macro.dbt.build_snapshot_staging_table", "macro.dbt.create_columns", "macro.dbt.snapshot_merge_sql", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes", "macro.dbt.post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0745862, "supported_languages": ["sql"]}, "macro.dbt.strategy_dispatch": {"name": "strategy_dispatch", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.strategy_dispatch", "macro_sql": "{% macro strategy_dispatch(name) -%}\n{% set original_name = name %}\n {% if '.' in name %}\n {% set package_name, name = name.split(\".\", 1) %}\n {% else %}\n {% set package_name = none %}\n {% endif %}\n\n {% if package_name is none %}\n {% set package_context = context %}\n {% elif package_name in context %}\n {% set package_context = context[package_name] %}\n {% else %}\n {% set error_msg %}\n Could not find package '{{package_name}}', called with '{{original_name}}'\n {% endset %}\n {{ exceptions.raise_compiler_error(error_msg | trim) }}\n {% endif %}\n\n {%- set search_name = 'snapshot_' ~ name ~ '_strategy' -%}\n\n {% if search_name not in package_context %}\n {% set error_msg %}\n The specified strategy macro '{{name}}' was not found in package '{{ package_name }}'\n {% endset %}\n {{ exceptions.raise_compiler_error(error_msg | trim) }}\n {% endif %}\n {{ return(package_context[search_name]) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0815322, "supported_languages": null}, "macro.dbt.snapshot_hash_arguments": {"name": "snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_hash_arguments", "macro_sql": "{% macro snapshot_hash_arguments(args) -%}\n {{ adapter.dispatch('snapshot_hash_arguments', 'dbt')(args) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.082261, "supported_languages": null}, "macro.dbt.default__snapshot_hash_arguments": {"name": "default__snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.default__snapshot_hash_arguments", "macro_sql": "{% macro default__snapshot_hash_arguments(args) -%}\n md5({%- for arg in args -%}\n coalesce(cast({{ arg }} as varchar ), '')\n {% if not loop.last %} || '|' || {% endif %}\n {%- endfor -%})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0828402, "supported_languages": null}, "macro.dbt.snapshot_timestamp_strategy": {"name": "snapshot_timestamp_strategy", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_timestamp_strategy", "macro_sql": "{% macro snapshot_timestamp_strategy(node, snapshotted_rel, current_rel, config, target_exists) %}\n {% set primary_key = config['unique_key'] %}\n {% set updated_at = config['updated_at'] %}\n {% set invalidate_hard_deletes = config.get('invalidate_hard_deletes', false) %}\n\n {#/*\n The snapshot relation might not have an {{ updated_at }} value if the\n snapshot strategy is changed from `check` to `timestamp`. We\n should use a dbt-created column for the comparison in the snapshot\n table instead of assuming that the user-supplied {{ updated_at }}\n will be present in the historical data.\n\n See https://github.com/dbt-labs/dbt-core/issues/2350\n */ #}\n {% set row_changed_expr -%}\n ({{ snapshotted_rel }}.dbt_valid_from < {{ current_rel }}.{{ updated_at }})\n {%- endset %}\n\n {% set scd_id_expr = snapshot_hash_arguments([primary_key, updated_at]) %}\n\n {% do return({\n \"unique_key\": primary_key,\n \"updated_at\": updated_at,\n \"row_changed\": row_changed_expr,\n \"scd_id\": scd_id_expr,\n \"invalidate_hard_deletes\": invalidate_hard_deletes\n }) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0845668, "supported_languages": null}, "macro.dbt.snapshot_string_as_time": {"name": "snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_string_as_time", "macro_sql": "{% macro snapshot_string_as_time(timestamp) -%}\n {{ adapter.dispatch('snapshot_string_as_time', 'dbt')(timestamp) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__snapshot_string_as_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0849543, "supported_languages": null}, "macro.dbt.default__snapshot_string_as_time": {"name": "default__snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.default__snapshot_string_as_time", "macro_sql": "{% macro default__snapshot_string_as_time(timestamp) %}\n {% do exceptions.raise_not_implemented(\n 'snapshot_string_as_time macro not implemented for adapter '+adapter.type()\n ) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0854182, "supported_languages": null}, "macro.dbt.snapshot_check_all_get_existing_columns": {"name": "snapshot_check_all_get_existing_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_check_all_get_existing_columns", "macro_sql": "{% macro snapshot_check_all_get_existing_columns(node, target_exists, check_cols_config) -%}\n {%- if not target_exists -%}\n {#-- no table yet -> return whatever the query does --#}\n {{ return((false, query_columns)) }}\n {%- endif -%}\n\n {#-- handle any schema changes --#}\n {%- set target_relation = adapter.get_relation(database=node.database, schema=node.schema, identifier=node.alias) -%}\n\n {% if check_cols_config == 'all' %}\n {%- set query_columns = get_columns_in_query(node['compiled_code']) -%}\n\n {% elif check_cols_config is iterable and (check_cols_config | length) > 0 %}\n {#-- query for proper casing/quoting, to support comparison below --#}\n {%- set select_check_cols_from_target -%}\n {#-- N.B. The whitespace below is necessary to avoid edge case issue with comments --#}\n {#-- See: https://github.com/dbt-labs/dbt-core/issues/6781 --#}\n select {{ check_cols_config | join(', ') }} from (\n {{ node['compiled_code'] }}\n ) subq\n {%- endset -%}\n {% set query_columns = get_columns_in_query(select_check_cols_from_target) %}\n\n {% else %}\n {% do exceptions.raise_compiler_error(\"Invalid value for 'check_cols': \" ~ check_cols_config) %}\n {% endif %}\n\n {%- set existing_cols = adapter.get_columns_in_relation(target_relation) | map(attribute = 'name') | list -%}\n {%- set ns = namespace() -%} {#-- handle for-loop scoping with a namespace --#}\n {%- set ns.column_added = false -%}\n\n {%- set intersection = [] -%}\n {%- for col in query_columns -%}\n {%- if col in existing_cols -%}\n {%- do intersection.append(adapter.quote(col)) -%}\n {%- else -%}\n {% set ns.column_added = true %}\n {%- endif -%}\n {%- endfor -%}\n {{ return((ns.column_added, intersection)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0887055, "supported_languages": null}, "macro.dbt.snapshot_check_strategy": {"name": "snapshot_check_strategy", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_check_strategy", "macro_sql": "{% macro snapshot_check_strategy(node, snapshotted_rel, current_rel, config, target_exists) %}\n {% set check_cols_config = config['check_cols'] %}\n {% set primary_key = config['unique_key'] %}\n {% set invalidate_hard_deletes = config.get('invalidate_hard_deletes', false) %}\n {% set updated_at = config.get('updated_at', snapshot_get_time()) %}\n\n {% set column_added = false %}\n\n {% set column_added, check_cols = snapshot_check_all_get_existing_columns(node, target_exists, check_cols_config) %}\n\n {%- set row_changed_expr -%}\n (\n {%- if column_added -%}\n {{ get_true_sql() }}\n {%- else -%}\n {%- for col in check_cols -%}\n {{ snapshotted_rel }}.{{ col }} != {{ current_rel }}.{{ col }}\n or\n (\n (({{ snapshotted_rel }}.{{ col }} is null) and not ({{ current_rel }}.{{ col }} is null))\n or\n ((not {{ snapshotted_rel }}.{{ col }} is null) and ({{ current_rel }}.{{ col }} is null))\n )\n {%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n {%- endif -%}\n )\n {%- endset %}\n\n {% set scd_id_expr = snapshot_hash_arguments([primary_key, updated_at]) %}\n\n {% do return({\n \"unique_key\": primary_key,\n \"updated_at\": updated_at,\n \"row_changed\": row_changed_expr,\n \"scd_id\": scd_id_expr,\n \"invalidate_hard_deletes\": invalidate_hard_deletes\n }) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_get_time", "macro.dbt.snapshot_check_all_get_existing_columns", "macro.dbt.get_true_sql", "macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0919309, "supported_languages": null}, "macro.dbt.snapshot_merge_sql": {"name": "snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "unique_id": "macro.dbt.snapshot_merge_sql", "macro_sql": "{% macro snapshot_merge_sql(target, source, insert_cols) -%}\n {{ adapter.dispatch('snapshot_merge_sql', 'dbt')(target, source, insert_cols) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__snapshot_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.0929227, "supported_languages": null}, "macro.dbt.default__snapshot_merge_sql": {"name": "default__snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "unique_id": "macro.dbt.default__snapshot_merge_sql", "macro_sql": "{% macro default__snapshot_merge_sql(target, source, insert_cols) -%}\n {%- set insert_cols_csv = insert_cols | join(', ') -%}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on DBT_INTERNAL_SOURCE.dbt_scd_id = DBT_INTERNAL_DEST.dbt_scd_id\n\n when matched\n and DBT_INTERNAL_DEST.dbt_valid_to is null\n and DBT_INTERNAL_SOURCE.dbt_change_type in ('update', 'delete')\n then update\n set dbt_valid_to = DBT_INTERNAL_SOURCE.dbt_valid_to\n\n when not matched\n and DBT_INTERNAL_SOURCE.dbt_change_type = 'insert'\n then insert ({{ insert_cols_csv }})\n values ({{ insert_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.093593, "supported_languages": null}, "macro.dbt.create_columns": {"name": "create_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.create_columns", "macro_sql": "{% macro create_columns(relation, columns) %}\n {{ adapter.dispatch('create_columns', 'dbt')(relation, columns) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__create_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1001484, "supported_languages": null}, "macro.dbt.default__create_columns": {"name": "default__create_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__create_columns", "macro_sql": "{% macro default__create_columns(relation, columns) %}\n {% for column in columns %}\n {% call statement() %}\n alter table {{ relation }} add column \"{{ column.name }}\" {{ column.data_type }};\n {% endcall %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1008632, "supported_languages": null}, "macro.dbt.post_snapshot": {"name": "post_snapshot", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.post_snapshot", "macro_sql": "{% macro post_snapshot(staging_relation) %}\n {{ adapter.dispatch('post_snapshot', 'dbt')(staging_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1014447, "supported_languages": null}, "macro.dbt.default__post_snapshot": {"name": "default__post_snapshot", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__post_snapshot", "macro_sql": "{% macro default__post_snapshot(staging_relation) %}\n {# no-op #}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1017406, "supported_languages": null}, "macro.dbt.get_true_sql": {"name": "get_true_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.get_true_sql", "macro_sql": "{% macro get_true_sql() %}\n {{ adapter.dispatch('get_true_sql', 'dbt')() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_true_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1023016, "supported_languages": null}, "macro.dbt.default__get_true_sql": {"name": "default__get_true_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__get_true_sql", "macro_sql": "{% macro default__get_true_sql() %}\n {{ return('TRUE') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1026115, "supported_languages": null}, "macro.dbt.snapshot_staging_table": {"name": "snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.snapshot_staging_table", "macro_sql": "{% macro snapshot_staging_table(strategy, source_sql, target_relation) -%}\n {{ adapter.dispatch('snapshot_staging_table', 'dbt')(strategy, source_sql, target_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__snapshot_staging_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1031349, "supported_languages": null}, "macro.dbt.default__snapshot_staging_table": {"name": "default__snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__snapshot_staging_table", "macro_sql": "{% macro default__snapshot_staging_table(strategy, source_sql, target_relation) -%}\n\n with snapshot_query as (\n\n {{ source_sql }}\n\n ),\n\n snapshotted_data as (\n\n select *,\n {{ strategy.unique_key }} as dbt_unique_key\n\n from {{ target_relation }}\n where dbt_valid_to is null\n\n ),\n\n insertions_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}) as dbt_valid_to,\n {{ strategy.scd_id }} as dbt_scd_id\n\n from snapshot_query\n ),\n\n updates_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n {{ strategy.updated_at }} as dbt_valid_to\n\n from snapshot_query\n ),\n\n {%- if strategy.invalidate_hard_deletes %}\n\n deletes_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key\n from snapshot_query\n ),\n {% endif %}\n\n insertions as (\n\n select\n 'insert' as dbt_change_type,\n source_data.*\n\n from insertions_source_data as source_data\n left outer join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where snapshotted_data.dbt_unique_key is null\n or (\n snapshotted_data.dbt_unique_key is not null\n and (\n {{ strategy.row_changed }}\n )\n )\n\n ),\n\n updates as (\n\n select\n 'update' as dbt_change_type,\n source_data.*,\n snapshotted_data.dbt_scd_id\n\n from updates_source_data as source_data\n join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where (\n {{ strategy.row_changed }}\n )\n )\n\n {%- if strategy.invalidate_hard_deletes -%}\n ,\n\n deletes as (\n\n select\n 'delete' as dbt_change_type,\n source_data.*,\n {{ snapshot_get_time() }} as dbt_valid_from,\n {{ snapshot_get_time() }} as dbt_updated_at,\n {{ snapshot_get_time() }} as dbt_valid_to,\n snapshotted_data.dbt_scd_id\n\n from snapshotted_data\n left join deletes_source_data as source_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where source_data.dbt_unique_key is null\n )\n {%- endif %}\n\n select * from insertions\n union all\n select * from updates\n {%- if strategy.invalidate_hard_deletes %}\n union all\n select * from deletes\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1051934, "supported_languages": null}, "macro.dbt.build_snapshot_table": {"name": "build_snapshot_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.build_snapshot_table", "macro_sql": "{% macro build_snapshot_table(strategy, sql) -%}\n {{ adapter.dispatch('build_snapshot_table', 'dbt')(strategy, sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__build_snapshot_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1056428, "supported_languages": null}, "macro.dbt.default__build_snapshot_table": {"name": "default__build_snapshot_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__build_snapshot_table", "macro_sql": "{% macro default__build_snapshot_table(strategy, sql) %}\n\n select *,\n {{ strategy.scd_id }} as dbt_scd_id,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}) as dbt_valid_to\n from (\n {{ sql }}\n ) sbq\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.106315, "supported_languages": null}, "macro.dbt.build_snapshot_staging_table": {"name": "build_snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.build_snapshot_staging_table", "macro_sql": "{% macro build_snapshot_staging_table(strategy, sql, target_relation) %}\n {% set temp_relation = make_temp_relation(target_relation) %}\n\n {% set select = snapshot_staging_table(strategy, sql, target_relation) %}\n\n {% call statement('build_snapshot_staging_relation') %}\n {{ create_table_as(True, temp_relation, select) }}\n {% endcall %}\n\n {% do return(temp_relation) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_temp_relation", "macro.dbt.snapshot_staging_table", "macro.dbt.statement", "macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1073556, "supported_languages": null}, "macro.dbt.materialization_table_default": {"name": "materialization_table_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/table.sql", "original_file_path": "macros/materializations/models/table/table.sql", "unique_id": "macro.dbt.materialization_table_default", "macro_sql": "{% materialization table, default %}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='table') %}\n {%- set intermediate_relation = make_intermediate_relation(target_relation) -%}\n -- the intermediate_relation should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) -%}\n /*\n See ../view/view.sql for more information about this relation.\n */\n {%- set backup_relation_type = 'table' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_table_as_sql(False, intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n {% if existing_relation is not none %}\n /* Do the equivalent of rename_if_exists */\n {% set existing_relation = load_cached_relation(existing_relation) %}\n {% if existing_relation is not none %}\n {{ adapter.rename_relation(existing_relation, backup_relation) }}\n {% endif %}\n {% endif %}\n\n {{ adapter.rename_relation(intermediate_relation, target_relation) }}\n\n {% do create_indexes(target_relation) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n -- `COMMIT` happens here\n {{ adapter.commit() }}\n\n -- finally, drop the existing/backup relation after the commit\n {{ drop_relation_if_exists(backup_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.get_create_table_as_sql", "macro.dbt.create_indexes", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1135354, "supported_languages": ["sql"]}, "macro.dbt.get_create_table_as_sql": {"name": "get_create_table_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.get_create_table_as_sql", "macro_sql": "{% macro get_create_table_as_sql(temporary, relation, sql) -%}\n {{ adapter.dispatch('get_create_table_as_sql', 'dbt')(temporary, relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_table_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1157455, "supported_languages": null}, "macro.dbt.default__get_create_table_as_sql": {"name": "default__get_create_table_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__get_create_table_as_sql", "macro_sql": "{% macro default__get_create_table_as_sql(temporary, relation, sql) -%}\n {{ return(create_table_as(temporary, relation, sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1162581, "supported_languages": null}, "macro.dbt.create_table_as": {"name": "create_table_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.create_table_as", "macro_sql": "{% macro create_table_as(temporary, relation, compiled_code, language='sql') -%}\n {# backward compatibility for create_table_as that does not support language #}\n {% if language == \"sql\" %}\n {{ adapter.dispatch('create_table_as', 'dbt')(temporary, relation, compiled_code)}}\n {% else %}\n {{ adapter.dispatch('create_table_as', 'dbt')(temporary, relation, compiled_code, language) }}\n {% endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1174214, "supported_languages": null}, "macro.dbt.default__create_table_as": {"name": "default__create_table_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__create_table_as", "macro_sql": "{% macro default__create_table_as(temporary, relation, sql) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n\n create {% if temporary: -%}temporary{%- endif %} table\n {{ relation.include(database=(not temporary), schema=(not temporary)) }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {{ get_table_columns_and_constraints() }}\n {%- set sql = get_select_subquery(sql) %}\n {% endif %}\n as (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_table_columns_and_constraints", "macro.dbt.get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1190674, "supported_languages": null}, "macro.dbt.default__get_column_names": {"name": "default__get_column_names", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__get_column_names", "macro_sql": "{% macro default__get_column_names() %}\n {#- loop through user_provided_columns to get column names -#}\n {%- set user_provided_columns = model['columns'] -%}\n {%- for i in user_provided_columns %}\n {%- set col = user_provided_columns[i] -%}\n {%- set col_name = adapter.quote(col['name']) if col.get('quote') else col['name'] -%}\n {{ col_name }}{{ \", \" if not loop.last }}\n {%- endfor -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1202037, "supported_languages": null}, "macro.dbt.get_select_subquery": {"name": "get_select_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.get_select_subquery", "macro_sql": "{% macro get_select_subquery(sql) %}\n {{ return(adapter.dispatch('get_select_subquery', 'dbt')(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1206505, "supported_languages": null}, "macro.dbt.default__get_select_subquery": {"name": "default__get_select_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__get_select_subquery", "macro_sql": "{% macro default__get_select_subquery(sql) %}\n select {{ adapter.dispatch('get_column_names', 'dbt')() }}\n from (\n {{ sql }}\n ) as model_subq\n{%- endmacro %}", "depends_on": {"macros": ["macro.yoda.get_column_names", "macro.dbt.default__get_column_names"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1210632, "supported_languages": null}, "macro.dbt.get_table_columns_and_constraints": {"name": "get_table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.get_table_columns_and_constraints", "macro_sql": "{%- macro get_table_columns_and_constraints() -%}\n {{ adapter.dispatch('get_table_columns_and_constraints', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__get_table_columns_and_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.123011, "supported_languages": null}, "macro.dbt.default__get_table_columns_and_constraints": {"name": "default__get_table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__get_table_columns_and_constraints", "macro_sql": "{% macro default__get_table_columns_and_constraints() -%}\n {{ return(table_columns_and_constraints()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.table_columns_and_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1233478, "supported_languages": null}, "macro.dbt.table_columns_and_constraints": {"name": "table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.table_columns_and_constraints", "macro_sql": "{% macro table_columns_and_constraints() %}\n {# loop through user_provided_columns to create DDL with data types and constraints #}\n {%- set raw_column_constraints = adapter.render_raw_columns_constraints(raw_columns=model['columns']) -%}\n {%- set raw_model_constraints = adapter.render_raw_model_constraints(raw_constraints=model['constraints']) -%}\n (\n {% for c in raw_column_constraints -%}\n {{ c }}{{ \",\" if not loop.last or raw_model_constraints }}\n {% endfor %}\n {% for c in raw_model_constraints -%}\n {{ c }}{{ \",\" if not loop.last }}\n {% endfor -%}\n )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1246395, "supported_languages": null}, "macro.dbt.get_assert_columns_equivalent": {"name": "get_assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.get_assert_columns_equivalent", "macro_sql": "\n\n{%- macro get_assert_columns_equivalent(sql) -%}\n {{ adapter.dispatch('get_assert_columns_equivalent', 'dbt')(sql) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1250215, "supported_languages": null}, "macro.dbt.default__get_assert_columns_equivalent": {"name": "default__get_assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__get_assert_columns_equivalent", "macro_sql": "{% macro default__get_assert_columns_equivalent(sql) -%}\n {{ return(assert_columns_equivalent(sql)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1253812, "supported_languages": null}, "macro.dbt.assert_columns_equivalent": {"name": "assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.assert_columns_equivalent", "macro_sql": "{% macro assert_columns_equivalent(sql) %}\n\n {#-- First ensure the user has defined 'columns' in yaml specification --#}\n {%- set user_defined_columns = model['columns'] -%}\n {%- if not user_defined_columns -%}\n {{ exceptions.raise_contract_error([], []) }}\n {%- endif -%}\n\n {#-- Obtain the column schema provided by sql file. #}\n {%- set sql_file_provided_columns = get_column_schema_from_query(sql, config.get('sql_header', none)) -%}\n {#--Obtain the column schema provided by the schema file by generating an 'empty schema' query from the model's columns. #}\n {%- set schema_file_provided_columns = get_column_schema_from_query(get_empty_schema_sql(user_defined_columns)) -%}\n\n {#-- create dictionaries with name and formatted data type and strings for exception #}\n {%- set sql_columns = format_columns(sql_file_provided_columns) -%}\n {%- set yaml_columns = format_columns(schema_file_provided_columns) -%}\n\n {%- if sql_columns|length != yaml_columns|length -%}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n\n {%- for sql_col in sql_columns -%}\n {%- set yaml_col = [] -%}\n {%- for this_col in yaml_columns -%}\n {%- if this_col['name'] == sql_col['name'] -%}\n {%- do yaml_col.append(this_col) -%}\n {%- break -%}\n {%- endif -%}\n {%- endfor -%}\n {%- if not yaml_col -%}\n {#-- Column with name not found in yaml #}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n {%- if sql_col['formatted'] != yaml_col[0]['formatted'] -%}\n {#-- Column data types don't match #}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n {%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_column_schema_from_query", "macro.dbt.get_empty_schema_sql", "macro.dbt.format_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1286871, "supported_languages": null}, "macro.dbt.format_columns": {"name": "format_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.format_columns", "macro_sql": "{% macro format_columns(columns) %}\n {% set formatted_columns = [] %}\n {% for column in columns %}\n {%- set formatted_column = adapter.dispatch('format_column', 'dbt')(column) -%}\n {%- do formatted_columns.append(formatted_column) -%}\n {% endfor %}\n {{ return(formatted_columns) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__format_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1299555, "supported_languages": null}, "macro.dbt.default__format_column": {"name": "default__format_column", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__format_column", "macro_sql": "{% macro default__format_column(column) -%}\n {% set data_type = column.dtype %}\n {% set formatted = column.column.lower() ~ \" \" ~ data_type %}\n {{ return({'name': column.name, 'data_type': data_type, 'formatted': formatted}) }}\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1308472, "supported_languages": null}, "macro.dbt.get_quoted_csv": {"name": "get_quoted_csv", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.get_quoted_csv", "macro_sql": "{% macro get_quoted_csv(column_names) %}\n\n {% set quoted = [] %}\n {% for col in column_names -%}\n {%- do quoted.append(adapter.quote(col)) -%}\n {%- endfor %}\n\n {%- set dest_cols_csv = quoted | join(', ') -%}\n {{ return(dest_cols_csv) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1342387, "supported_languages": null}, "macro.dbt.diff_columns": {"name": "diff_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.diff_columns", "macro_sql": "{% macro diff_columns(source_columns, target_columns) %}\n\n {% set result = [] %}\n {% set source_names = source_columns | map(attribute = 'column') | list %}\n {% set target_names = target_columns | map(attribute = 'column') | list %}\n\n {# --check whether the name attribute exists in the target - this does not perform a data type check #}\n {% for sc in source_columns %}\n {% if sc.name not in target_names %}\n {{ result.append(sc) }}\n {% endif %}\n {% endfor %}\n\n {{ return(result) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.13561, "supported_languages": null}, "macro.dbt.diff_column_data_types": {"name": "diff_column_data_types", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.diff_column_data_types", "macro_sql": "{% macro diff_column_data_types(source_columns, target_columns) %}\n\n {% set result = [] %}\n {% for sc in source_columns %}\n {% set tc = target_columns | selectattr(\"name\", \"equalto\", sc.name) | list | first %}\n {% if tc %}\n {% if sc.data_type != tc.data_type and not sc.can_expand_to(other_column=tc) %}\n {{ result.append( { 'column_name': tc.name, 'new_type': sc.data_type } ) }}\n {% endif %}\n {% endif %}\n {% endfor %}\n\n {{ return(result) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1374588, "supported_languages": null}, "macro.dbt.get_merge_update_columns": {"name": "get_merge_update_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.get_merge_update_columns", "macro_sql": "{% macro get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {{ return(adapter.dispatch('get_merge_update_columns', 'dbt')(merge_update_columns, merge_exclude_columns, dest_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.13807, "supported_languages": null}, "macro.dbt.default__get_merge_update_columns": {"name": "default__get_merge_update_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.default__get_merge_update_columns", "macro_sql": "{% macro default__get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {%- set default_cols = dest_columns | map(attribute=\"quoted\") | list -%}\n\n {%- if merge_update_columns and merge_exclude_columns -%}\n {{ exceptions.raise_compiler_error(\n 'Model cannot specify merge_update_columns and merge_exclude_columns. Please update model to use only one config'\n )}}\n {%- elif merge_update_columns -%}\n {%- set update_columns = merge_update_columns -%}\n {%- elif merge_exclude_columns -%}\n {%- set update_columns = [] -%}\n {%- for column in dest_columns -%}\n {% if column.column | lower not in merge_exclude_columns | map(\"lower\") | list %}\n {%- do update_columns.append(column.quoted) -%}\n {% endif %}\n {%- endfor -%}\n {%- else -%}\n {%- set update_columns = default_cols -%}\n {%- endif -%}\n\n {{ return(update_columns) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.139814, "supported_languages": null}, "macro.dbt.materialization_incremental_default": {"name": "materialization_incremental_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/incremental.sql", "original_file_path": "macros/materializations/models/incremental/incremental.sql", "unique_id": "macro.dbt.materialization_incremental_default", "macro_sql": "{% materialization incremental, default -%}\n\n -- relations\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='table') -%}\n {%- set temp_relation = make_temp_relation(target_relation)-%}\n {%- set intermediate_relation = make_intermediate_relation(target_relation)-%}\n {%- set backup_relation_type = 'table' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n\n -- configs\n {%- set unique_key = config.get('unique_key') -%}\n {%- set full_refresh_mode = (should_full_refresh() or existing_relation.is_view) -%}\n {%- set on_schema_change = incremental_validate_on_schema_change(config.get('on_schema_change'), default='ignore') -%}\n\n -- the temp_ and backup_ relations should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation. This has to happen before\n -- BEGIN, in a separate transaction\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation)-%}\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set to_drop = [] %}\n\n {% if existing_relation is none %}\n {% set build_sql = get_create_table_as_sql(False, target_relation, sql) %}\n {% elif full_refresh_mode %}\n {% set build_sql = get_create_table_as_sql(False, intermediate_relation, sql) %}\n {% set need_swap = true %}\n {% else %}\n {% do run_query(get_create_table_as_sql(True, temp_relation, sql)) %}\n {% do adapter.expand_target_column_types(\n from_relation=temp_relation,\n to_relation=target_relation) %}\n {#-- Process schema changes. Returns dict of changes if successful. Use source columns for upserting/merging --#}\n {% set dest_columns = process_schema_changes(on_schema_change, temp_relation, existing_relation) %}\n {% if not dest_columns %}\n {% set dest_columns = adapter.get_columns_in_relation(existing_relation) %}\n {% endif %}\n\n {#-- Get the incremental_strategy, the macro to use for the strategy, and build the sql --#}\n {% set incremental_strategy = config.get('incremental_strategy') or 'default' %}\n {% set incremental_predicates = config.get('predicates', none) or config.get('incremental_predicates', none) %}\n {% set strategy_sql_macro_func = adapter.get_incremental_strategy_macro(context, incremental_strategy) %}\n {% set strategy_arg_dict = ({'target_relation': target_relation, 'temp_relation': temp_relation, 'unique_key': unique_key, 'dest_columns': dest_columns, 'incremental_predicates': incremental_predicates }) %}\n {% set build_sql = strategy_sql_macro_func(strategy_arg_dict) %}\n\n {% endif %}\n\n {% call statement(\"main\") %}\n {{ build_sql }}\n {% endcall %}\n\n {% if need_swap %}\n {% do adapter.rename_relation(target_relation, backup_relation) %}\n {% do adapter.rename_relation(intermediate_relation, target_relation) %}\n {% do to_drop.append(backup_relation) %}\n {% endif %}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if existing_relation is none or existing_relation.is_view or should_full_refresh() %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n -- `COMMIT` happens here\n {% do adapter.commit() %}\n\n {% for rel in to_drop %}\n {% do adapter.drop_relation(rel) %}\n {% endfor %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_temp_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.should_full_refresh", "macro.dbt.incremental_validate_on_schema_change", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks", "macro.dbt.get_create_table_as_sql", "macro.dbt.run_query", "macro.dbt.process_schema_changes", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1513393, "supported_languages": ["sql"]}, "macro.dbt.get_merge_sql": {"name": "get_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_merge_sql", "macro_sql": "{% macro get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates=none) -%}\n -- back compat for old kwarg name\n {% set incremental_predicates = kwargs.get('predicates', incremental_predicates) %}\n {{ adapter.dispatch('get_merge_sql', 'dbt')(target, source, unique_key, dest_columns, incremental_predicates) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.160749, "supported_languages": null}, "macro.dbt.default__get_merge_sql": {"name": "default__get_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_merge_sql", "macro_sql": "{% macro default__get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates=none) -%}\n {%- set predicates = [] if incremental_predicates is none else [] + incremental_predicates -%}\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n {%- set merge_update_columns = config.get('merge_update_columns') -%}\n {%- set merge_exclude_columns = config.get('merge_exclude_columns') -%}\n {%- set update_columns = get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not mapping and unique_key is not string %}\n {% for key in unique_key %}\n {% set this_key_match %}\n DBT_INTERNAL_SOURCE.{{ key }} = DBT_INTERNAL_DEST.{{ key }}\n {% endset %}\n {% do predicates.append(this_key_match) %}\n {% endfor %}\n {% else %}\n {% set unique_key_match %}\n DBT_INTERNAL_SOURCE.{{ unique_key }} = DBT_INTERNAL_DEST.{{ unique_key }}\n {% endset %}\n {% do predicates.append(unique_key_match) %}\n {% endif %}\n {% else %}\n {% do predicates.append('FALSE') %}\n {% endif %}\n\n {{ sql_header if sql_header is not none }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on {{\"(\" ~ predicates | join(\") and (\") ~ \")\"}}\n\n {% if unique_key %}\n when matched then update set\n {% for column_name in update_columns -%}\n {{ column_name }} = DBT_INTERNAL_SOURCE.{{ column_name }}\n {%- if not loop.last %}, {%- endif %}\n {%- endfor %}\n {% endif %}\n\n when not matched then insert\n ({{ dest_cols_csv }})\n values\n ({{ dest_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv", "macro.dbt.get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1647928, "supported_languages": null}, "macro.dbt.get_delete_insert_merge_sql": {"name": "get_delete_insert_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_delete_insert_merge_sql", "macro_sql": "{% macro get_delete_insert_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) -%}\n {{ adapter.dispatch('get_delete_insert_merge_sql', 'dbt')(target, source, unique_key, dest_columns, incremental_predicates) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1655135, "supported_languages": null}, "macro.dbt.default__get_delete_insert_merge_sql": {"name": "default__get_delete_insert_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_delete_insert_merge_sql", "macro_sql": "{% macro default__get_delete_insert_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) -%}\n\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not string %}\n delete from {{target }}\n using {{ source }}\n where (\n {% for key in unique_key %}\n {{ source }}.{{ key }} = {{ target }}.{{ key }}\n {{ \"and \" if not loop.last}}\n {% endfor %}\n {% if incremental_predicates %}\n {% for predicate in incremental_predicates %}\n and {{ predicate }}\n {% endfor %}\n {% endif %}\n );\n {% else %}\n delete from {{ target }}\n where (\n {{ unique_key }}) in (\n select ({{ unique_key }})\n from {{ source }}\n )\n {%- if incremental_predicates %}\n {% for predicate in incremental_predicates %}\n and {{ predicate }}\n {% endfor %}\n {%- endif -%};\n\n {% endif %}\n {% endif %}\n\n insert into {{ target }} ({{ dest_cols_csv }})\n (\n select {{ dest_cols_csv }}\n from {{ source }}\n )\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1679163, "supported_languages": null}, "macro.dbt.get_insert_overwrite_merge_sql": {"name": "get_insert_overwrite_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_insert_overwrite_merge_sql", "macro_sql": "{% macro get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header=false) -%}\n {{ adapter.dispatch('get_insert_overwrite_merge_sql', 'dbt')(target, source, dest_columns, predicates, include_sql_header) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1685805, "supported_languages": null}, "macro.dbt.default__get_insert_overwrite_merge_sql": {"name": "default__get_insert_overwrite_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_insert_overwrite_merge_sql", "macro_sql": "{% macro default__get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header) -%}\n {#-- The only time include_sql_header is True: --#}\n {#-- BigQuery + insert_overwrite strategy + \"static\" partitions config --#}\n {#-- We should consider including the sql header at the materialization level instead --#}\n\n {%- set predicates = [] if predicates is none else [] + predicates -%}\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none and include_sql_header }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on FALSE\n\n when not matched by source\n {% if predicates %} and {{ predicates | join(' and ') }} {% endif %}\n then delete\n\n when not matched then insert\n ({{ dest_cols_csv }})\n values\n ({{ dest_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1700907, "supported_languages": null}, "macro.dbt.get_incremental_append_sql": {"name": "get_incremental_append_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_append_sql", "macro_sql": "{% macro get_incremental_append_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_append_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1719725, "supported_languages": null}, "macro.dbt.default__get_incremental_append_sql": {"name": "default__get_incremental_append_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_append_sql", "macro_sql": "{% macro default__get_incremental_append_sql(arg_dict) %}\n\n {% do return(get_insert_into_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"dest_columns\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_insert_into_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1726134, "supported_languages": null}, "macro.dbt.get_incremental_delete_insert_sql": {"name": "get_incremental_delete_insert_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_delete_insert_sql", "macro_sql": "{% macro get_incremental_delete_insert_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_delete_insert_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_delete_insert_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1730504, "supported_languages": null}, "macro.dbt.default__get_incremental_delete_insert_sql": {"name": "default__get_incremental_delete_insert_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_delete_insert_sql", "macro_sql": "{% macro default__get_incremental_delete_insert_sql(arg_dict) %}\n\n {% do return(get_delete_insert_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"unique_key\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1738727, "supported_languages": null}, "macro.dbt.get_incremental_merge_sql": {"name": "get_incremental_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_merge_sql", "macro_sql": "{% macro get_incremental_merge_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_merge_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.174406, "supported_languages": null}, "macro.dbt.default__get_incremental_merge_sql": {"name": "default__get_incremental_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_merge_sql", "macro_sql": "{% macro default__get_incremental_merge_sql(arg_dict) %}\n\n {% do return(get_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"unique_key\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1750722, "supported_languages": null}, "macro.dbt.get_incremental_insert_overwrite_sql": {"name": "get_incremental_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_insert_overwrite_sql", "macro_sql": "{% macro get_incremental_insert_overwrite_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_insert_overwrite_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_insert_overwrite_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1755397, "supported_languages": null}, "macro.dbt.default__get_incremental_insert_overwrite_sql": {"name": "default__get_incremental_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_insert_overwrite_sql", "macro_sql": "{% macro default__get_incremental_insert_overwrite_sql(arg_dict) %}\n\n {% do return(get_insert_overwrite_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1761165, "supported_languages": null}, "macro.dbt.get_incremental_default_sql": {"name": "get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_default_sql", "macro_sql": "{% macro get_incremental_default_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_default_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_default_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1765745, "supported_languages": null}, "macro.dbt.default__get_incremental_default_sql": {"name": "default__get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_default_sql", "macro_sql": "{% macro default__get_incremental_default_sql(arg_dict) %}\n\n {% do return(get_incremental_append_sql(arg_dict)) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.176908, "supported_languages": null}, "macro.dbt.get_insert_into_sql": {"name": "get_insert_into_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_insert_into_sql", "macro_sql": "{% macro get_insert_into_sql(target_relation, temp_relation, dest_columns) %}\n\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n\n insert into {{ target_relation }} ({{ dest_cols_csv }})\n (\n select {{ dest_cols_csv }}\n from {{ temp_relation }}\n )\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1776476, "supported_languages": null}, "macro.dbt.incremental_validate_on_schema_change": {"name": "incremental_validate_on_schema_change", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.incremental_validate_on_schema_change", "macro_sql": "{% macro incremental_validate_on_schema_change(on_schema_change, default='ignore') %}\n\n {% if on_schema_change not in ['sync_all_columns', 'append_new_columns', 'fail', 'ignore'] %}\n\n {% set log_message = 'Invalid value for on_schema_change (%s) specified. Setting default value of %s.' % (on_schema_change, default) %}\n {% do log(log_message) %}\n\n {{ return(default) }}\n\n {% else %}\n\n {{ return(on_schema_change) }}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.186854, "supported_languages": null}, "macro.dbt.check_for_schema_changes": {"name": "check_for_schema_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.check_for_schema_changes", "macro_sql": "{% macro check_for_schema_changes(source_relation, target_relation) %}\n\n {% set schema_changed = False %}\n\n {%- set source_columns = adapter.get_columns_in_relation(source_relation) -%}\n {%- set target_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set source_not_in_target = diff_columns(source_columns, target_columns) -%}\n {%- set target_not_in_source = diff_columns(target_columns, source_columns) -%}\n\n {% set new_target_types = diff_column_data_types(source_columns, target_columns) %}\n\n {% if source_not_in_target != [] %}\n {% set schema_changed = True %}\n {% elif target_not_in_source != [] or new_target_types != [] %}\n {% set schema_changed = True %}\n {% elif new_target_types != [] %}\n {% set schema_changed = True %}\n {% endif %}\n\n {% set changes_dict = {\n 'schema_changed': schema_changed,\n 'source_not_in_target': source_not_in_target,\n 'target_not_in_source': target_not_in_source,\n 'source_columns': source_columns,\n 'target_columns': target_columns,\n 'new_target_types': new_target_types\n } %}\n\n {% set msg %}\n In {{ target_relation }}:\n Schema changed: {{ schema_changed }}\n Source columns not in target: {{ source_not_in_target }}\n Target columns not in source: {{ target_not_in_source }}\n New column types: {{ new_target_types }}\n {% endset %}\n\n {% do log(msg) %}\n\n {{ return(changes_dict) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.diff_columns", "macro.dbt.diff_column_data_types"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1898885, "supported_languages": null}, "macro.dbt.sync_column_schemas": {"name": "sync_column_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.sync_column_schemas", "macro_sql": "{% macro sync_column_schemas(on_schema_change, target_relation, schema_changes_dict) %}\n\n {%- set add_to_target_arr = schema_changes_dict['source_not_in_target'] -%}\n\n {%- if on_schema_change == 'append_new_columns'-%}\n {%- if add_to_target_arr | length > 0 -%}\n {%- do alter_relation_add_remove_columns(target_relation, add_to_target_arr, none) -%}\n {%- endif -%}\n\n {% elif on_schema_change == 'sync_all_columns' %}\n {%- set remove_from_target_arr = schema_changes_dict['target_not_in_source'] -%}\n {%- set new_target_types = schema_changes_dict['new_target_types'] -%}\n\n {% if add_to_target_arr | length > 0 or remove_from_target_arr | length > 0 %}\n {%- do alter_relation_add_remove_columns(target_relation, add_to_target_arr, remove_from_target_arr) -%}\n {% endif %}\n\n {% if new_target_types != [] %}\n {% for ntt in new_target_types %}\n {% set column_name = ntt['column_name'] %}\n {% set new_type = ntt['new_type'] %}\n {% do alter_column_type(target_relation, column_name, new_type) %}\n {% endfor %}\n {% endif %}\n\n {% endif %}\n\n {% set schema_change_message %}\n In {{ target_relation }}:\n Schema change approach: {{ on_schema_change }}\n Columns added: {{ add_to_target_arr }}\n Columns removed: {{ remove_from_target_arr }}\n Data types changed: {{ new_target_types }}\n {% endset %}\n\n {% do log(schema_change_message) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.alter_relation_add_remove_columns", "macro.dbt.alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.1931477, "supported_languages": null}, "macro.dbt.process_schema_changes": {"name": "process_schema_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.process_schema_changes", "macro_sql": "{% macro process_schema_changes(on_schema_change, source_relation, target_relation) %}\n\n {% if on_schema_change == 'ignore' %}\n\n {{ return({}) }}\n\n {% else %}\n\n {% set schema_changes_dict = check_for_schema_changes(source_relation, target_relation) %}\n\n {% if schema_changes_dict['schema_changed'] %}\n\n {% if on_schema_change == 'fail' %}\n\n {% set fail_msg %}\n The source and target schemas on this incremental model are out of sync!\n They can be reconciled in several ways:\n - set the `on_schema_change` config to either append_new_columns or sync_all_columns, depending on your situation.\n - Re-run the incremental model with `full_refresh: True` to update the target schema.\n - update the schema manually and re-run the process.\n\n Additional troubleshooting context:\n Source columns not in target: {{ schema_changes_dict['source_not_in_target'] }}\n Target columns not in source: {{ schema_changes_dict['target_not_in_source'] }}\n New column types: {{ schema_changes_dict['new_target_types'] }}\n {% endset %}\n\n {% do exceptions.raise_compiler_error(fail_msg) %}\n\n {# -- unless we ignore, run the sync operation per the config #}\n {% else %}\n\n {% do sync_column_schemas(on_schema_change, target_relation, schema_changes_dict) %}\n\n {% endif %}\n\n {% endif %}\n\n {{ return(schema_changes_dict['source_columns']) }}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.check_for_schema_changes", "macro.dbt.sync_column_schemas"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.195269, "supported_languages": null}, "macro.dbt.is_incremental": {"name": "is_incremental", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/is_incremental.sql", "original_file_path": "macros/materializations/models/incremental/is_incremental.sql", "unique_id": "macro.dbt.is_incremental", "macro_sql": "{% macro is_incremental() %}\n {#-- do not run introspective queries in parsing #}\n {% if not execute %}\n {{ return(False) }}\n {% else %}\n {% set relation = adapter.get_relation(this.database, this.schema, this.table) %}\n {{ return(relation is not none\n and relation.type == 'table'\n and model.config.materialized == 'incremental'\n and not should_full_refresh()) }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.196724, "supported_languages": null}, "macro.dbt.materialization_view_default": {"name": "materialization_view_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/view.sql", "original_file_path": "macros/materializations/models/view/view.sql", "unique_id": "macro.dbt.materialization_view_default", "macro_sql": "{%- materialization view, default -%}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='view') -%}\n {%- set intermediate_relation = make_intermediate_relation(target_relation) -%}\n\n -- the intermediate_relation should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) -%}\n /*\n This relation (probably) doesn't exist yet. If it does exist, it's a leftover from\n a previous run, and we're going to try to drop it immediately. At the end of this\n materialization, we're going to rename the \"existing_relation\" to this identifier,\n and then we're going to drop it. In order to make sure we run the correct one of:\n - drop view ...\n - drop table ...\n\n We need to set the type of this relation to be the type of the existing_relation, if it exists,\n or else \"view\" as a sane default if it does not. Note that if the existing_relation does not\n exist, then there is nothing to move out of the way and subsequentally drop. In that case,\n this relation will be effectively unused.\n */\n {%- set backup_relation_type = 'view' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_view_as_sql(intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n -- move the existing view out of the way\n {% if existing_relation is not none %}\n /* Do the equivalent of rename_if_exists */\n {% set existing_relation = load_cached_relation(existing_relation) %}\n {% if existing_relation is not none %}\n {{ adapter.rename_relation(existing_relation, backup_relation) }}\n {% endif %}\n {% endif %}\n {{ adapter.rename_relation(intermediate_relation, target_relation) }}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {{ drop_relation_if_exists(backup_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.run_hooks", "macro.dbt.drop_relation_if_exists", "macro.dbt.statement", "macro.dbt.get_create_view_as_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.203302, "supported_languages": ["sql"]}, "macro.dbt.get_create_view_as_sql": {"name": "get_create_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.get_create_view_as_sql", "macro_sql": "{% macro get_create_view_as_sql(relation, sql) -%}\n {{ adapter.dispatch('get_create_view_as_sql', 'dbt')(relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2048275, "supported_languages": null}, "macro.dbt.default__get_create_view_as_sql": {"name": "default__get_create_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.default__get_create_view_as_sql", "macro_sql": "{% macro default__get_create_view_as_sql(relation, sql) -%}\n {{ return(create_view_as(relation, sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2054281, "supported_languages": null}, "macro.dbt.create_view_as": {"name": "create_view_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.create_view_as", "macro_sql": "{% macro create_view_as(relation, sql) -%}\n {{ adapter.dispatch('create_view_as', 'dbt')(relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.20589, "supported_languages": null}, "macro.dbt.default__create_view_as": {"name": "default__create_view_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.default__create_view_as", "macro_sql": "{% macro default__create_view_as(relation, sql) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n create view {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {%- endif %}\n as (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2070973, "supported_languages": null}, "macro.dbt.create_or_replace_view": {"name": "create_or_replace_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_or_replace_view.sql", "original_file_path": "macros/materializations/models/view/create_or_replace_view.sql", "unique_id": "macro.dbt.create_or_replace_view", "macro_sql": "{% macro create_or_replace_view() %}\n {%- set identifier = model['alias'] -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {%- set target_relation = api.Relation.create(\n identifier=identifier, schema=schema, database=database,\n type='view') -%}\n {% set grant_config = config.get('grants') %}\n\n {{ run_hooks(pre_hooks) }}\n\n -- If there's a table with the same name and we weren't told to full refresh,\n -- that's an error. If we were told to full refresh, drop it. This behavior differs\n -- for Snowflake and BigQuery, so multiple dispatch is used.\n {%- if old_relation is not none and old_relation.is_table -%}\n {{ handle_existing_table(should_full_refresh(), old_relation) }}\n {%- endif -%}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_view_as_sql(target_relation, sql) }}\n {%- endcall %}\n\n {% set should_revoke = should_revoke(exists_as_view, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.handle_existing_table", "macro.dbt.should_full_refresh", "macro.dbt.statement", "macro.dbt.get_create_view_as_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2106616, "supported_languages": null}, "macro.dbt.handle_existing_table": {"name": "handle_existing_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/helpers.sql", "original_file_path": "macros/materializations/models/view/helpers.sql", "unique_id": "macro.dbt.handle_existing_table", "macro_sql": "{% macro handle_existing_table(full_refresh, old_relation) %}\n {{ adapter.dispatch('handle_existing_table', 'dbt')(full_refresh, old_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__handle_existing_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2115948, "supported_languages": null}, "macro.dbt.default__handle_existing_table": {"name": "default__handle_existing_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/helpers.sql", "original_file_path": "macros/materializations/models/view/helpers.sql", "unique_id": "macro.dbt.default__handle_existing_table", "macro_sql": "{% macro default__handle_existing_table(full_refresh, old_relation) %}\n {{ log(\"Dropping relation \" ~ old_relation ~ \" because it is of type \" ~ old_relation.type) }}\n {{ adapter.drop_relation(old_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2122595, "supported_languages": null}, "macro.dbt.alter_column_comment": {"name": "alter_column_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.alter_column_comment", "macro_sql": "{% macro alter_column_comment(relation, column_dict) -%}\n {{ return(adapter.dispatch('alter_column_comment', 'dbt')(relation, column_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2136385, "supported_languages": null}, "macro.dbt.default__alter_column_comment": {"name": "default__alter_column_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__alter_column_comment", "macro_sql": "{% macro default__alter_column_comment(relation, column_dict) -%}\n {{ exceptions.raise_not_implemented(\n 'alter_column_comment macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2140503, "supported_languages": null}, "macro.dbt.alter_relation_comment": {"name": "alter_relation_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.alter_relation_comment", "macro_sql": "{% macro alter_relation_comment(relation, relation_comment) -%}\n {{ return(adapter.dispatch('alter_relation_comment', 'dbt')(relation, relation_comment)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__alter_relation_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2146158, "supported_languages": null}, "macro.dbt.default__alter_relation_comment": {"name": "default__alter_relation_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__alter_relation_comment", "macro_sql": "{% macro default__alter_relation_comment(relation, relation_comment) -%}\n {{ exceptions.raise_not_implemented(\n 'alter_relation_comment macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2150178, "supported_languages": null}, "macro.dbt.persist_docs": {"name": "persist_docs", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.persist_docs", "macro_sql": "{% macro persist_docs(relation, model, for_relation=true, for_columns=true) -%}\n {{ return(adapter.dispatch('persist_docs', 'dbt')(relation, model, for_relation, for_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2157485, "supported_languages": null}, "macro.dbt.default__persist_docs": {"name": "default__persist_docs", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__persist_docs", "macro_sql": "{% macro default__persist_docs(relation, model, for_relation, for_columns) -%}\n {% if for_relation and config.persist_relation_docs() and model.description %}\n {% do run_query(alter_relation_comment(relation, model.description)) %}\n {% endif %}\n\n {% if for_columns and config.persist_column_docs() and model.columns %}\n {% do run_query(alter_column_comment(relation, model.columns)) %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.alter_relation_comment", "macro.dbt.alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2169132, "supported_languages": null}, "macro.dbt.make_intermediate_relation": {"name": "make_intermediate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_intermediate_relation", "macro_sql": "{% macro make_intermediate_relation(base_relation, suffix='__dbt_tmp') %}\n {{ return(adapter.dispatch('make_intermediate_relation', 'dbt')(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__make_intermediate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2225242, "supported_languages": null}, "macro.dbt.default__make_intermediate_relation": {"name": "default__make_intermediate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_intermediate_relation", "macro_sql": "{% macro default__make_intermediate_relation(base_relation, suffix) %}\n {{ return(default__make_temp_relation(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.222923, "supported_languages": null}, "macro.dbt.make_temp_relation": {"name": "make_temp_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_temp_relation", "macro_sql": "{% macro make_temp_relation(base_relation, suffix='__dbt_tmp') %}\n {{ return(adapter.dispatch('make_temp_relation', 'dbt')(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2236338, "supported_languages": null}, "macro.dbt.default__make_temp_relation": {"name": "default__make_temp_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_temp_relation", "macro_sql": "{% macro default__make_temp_relation(base_relation, suffix) %}\n {%- set temp_identifier = base_relation.identifier ~ suffix -%}\n {%- set temp_relation = base_relation.incorporate(\n path={\"identifier\": temp_identifier}) -%}\n\n {{ return(temp_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2243516, "supported_languages": null}, "macro.dbt.make_backup_relation": {"name": "make_backup_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_backup_relation", "macro_sql": "{% macro make_backup_relation(base_relation, backup_relation_type, suffix='__dbt_backup') %}\n {{ return(adapter.dispatch('make_backup_relation', 'dbt')(base_relation, backup_relation_type, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__make_backup_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.224894, "supported_languages": null}, "macro.dbt.default__make_backup_relation": {"name": "default__make_backup_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_backup_relation", "macro_sql": "{% macro default__make_backup_relation(base_relation, backup_relation_type, suffix) %}\n {%- set backup_identifier = base_relation.identifier ~ suffix -%}\n {%- set backup_relation = base_relation.incorporate(\n path={\"identifier\": backup_identifier},\n type=backup_relation_type\n ) -%}\n {{ return(backup_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2256808, "supported_languages": null}, "macro.dbt.drop_relation": {"name": "drop_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.drop_relation", "macro_sql": "{% macro drop_relation(relation) -%}\n {{ return(adapter.dispatch('drop_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__drop_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2261515, "supported_languages": null}, "macro.dbt.default__drop_relation": {"name": "default__drop_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__drop_relation", "macro_sql": "{% macro default__drop_relation(relation) -%}\n {% call statement('drop_relation', auto_begin=False) -%}\n drop {{ relation.type }} if exists {{ relation }} cascade\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.22665, "supported_languages": null}, "macro.dbt.truncate_relation": {"name": "truncate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.truncate_relation", "macro_sql": "{% macro truncate_relation(relation) -%}\n {{ return(adapter.dispatch('truncate_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__truncate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2270482, "supported_languages": null}, "macro.dbt.default__truncate_relation": {"name": "default__truncate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__truncate_relation", "macro_sql": "{% macro default__truncate_relation(relation) -%}\n {% call statement('truncate_relation') -%}\n truncate table {{ relation }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2274814, "supported_languages": null}, "macro.dbt.rename_relation": {"name": "rename_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.rename_relation", "macro_sql": "{% macro rename_relation(from_relation, to_relation) -%}\n {{ return(adapter.dispatch('rename_relation', 'dbt')(from_relation, to_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__rename_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.227928, "supported_languages": null}, "macro.dbt.default__rename_relation": {"name": "default__rename_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__rename_relation", "macro_sql": "{% macro default__rename_relation(from_relation, to_relation) -%}\n {% set target_name = adapter.quote_as_configured(to_relation.identifier, 'identifier') %}\n {% call statement('rename_relation') -%}\n alter table {{ from_relation }} rename to {{ target_name }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2286153, "supported_languages": null}, "macro.dbt.get_or_create_relation": {"name": "get_or_create_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.get_or_create_relation", "macro_sql": "{% macro get_or_create_relation(database, schema, identifier, type) -%}\n {{ return(adapter.dispatch('get_or_create_relation', 'dbt')(database, schema, identifier, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_or_create_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2292151, "supported_languages": null}, "macro.dbt.default__get_or_create_relation": {"name": "default__get_or_create_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__get_or_create_relation", "macro_sql": "{% macro default__get_or_create_relation(database, schema, identifier, type) %}\n {%- set target_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) %}\n\n {% if target_relation %}\n {% do return([true, target_relation]) %}\n {% endif %}\n\n {%- set new_relation = api.Relation.create(\n database=database,\n schema=schema,\n identifier=identifier,\n type=type\n ) -%}\n {% do return([false, new_relation]) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2305212, "supported_languages": null}, "macro.dbt.load_cached_relation": {"name": "load_cached_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.load_cached_relation", "macro_sql": "{% macro load_cached_relation(relation) %}\n {% do return(adapter.get_relation(\n database=relation.database,\n schema=relation.schema,\n identifier=relation.identifier\n )) -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2310193, "supported_languages": null}, "macro.dbt.load_relation": {"name": "load_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.load_relation", "macro_sql": "{% macro load_relation(relation) %}\n {{ return(load_cached_relation(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2314198, "supported_languages": null}, "macro.dbt.drop_relation_if_exists": {"name": "drop_relation_if_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.drop_relation_if_exists", "macro_sql": "{% macro drop_relation_if_exists(relation) %}\n {% if relation is not none %}\n {{ adapter.drop_relation(relation) }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2318656, "supported_languages": null}, "macro.dbt.current_timestamp": {"name": "current_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp", "macro_sql": "{%- macro current_timestamp() -%}\n {{ adapter.dispatch('current_timestamp', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2329228, "supported_languages": null}, "macro.dbt.default__current_timestamp": {"name": "default__current_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp", "macro_sql": "{% macro default__current_timestamp() -%}\n {{ exceptions.raise_not_implemented(\n 'current_timestamp macro not implemented for adapter ' + adapter.type()) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2333617, "supported_languages": null}, "macro.dbt.snapshot_get_time": {"name": "snapshot_get_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.snapshot_get_time", "macro_sql": "\n\n{%- macro snapshot_get_time() -%}\n {{ adapter.dispatch('snapshot_get_time', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.233733, "supported_languages": null}, "macro.dbt.default__snapshot_get_time": {"name": "default__snapshot_get_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__snapshot_get_time", "macro_sql": "{% macro default__snapshot_get_time() %}\n {{ current_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2339964, "supported_languages": null}, "macro.dbt.current_timestamp_backcompat": {"name": "current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp_backcompat", "macro_sql": "{% macro current_timestamp_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__current_timestamp_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2344434, "supported_languages": null}, "macro.dbt.default__current_timestamp_backcompat": {"name": "default__current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp_backcompat", "macro_sql": "{% macro default__current_timestamp_backcompat() %}\n current_timestamp::timestamp\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.23463, "supported_languages": null}, "macro.dbt.current_timestamp_in_utc_backcompat": {"name": "current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp_in_utc_backcompat", "macro_sql": "{% macro current_timestamp_in_utc_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_in_utc_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__current_timestamp_in_utc_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2352412, "supported_languages": null}, "macro.dbt.default__current_timestamp_in_utc_backcompat": {"name": "default__current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp_in_utc_backcompat", "macro_sql": "{% macro default__current_timestamp_in_utc_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp_backcompat", "macro.dbt.default__current_timestamp_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2356253, "supported_languages": null}, "macro.dbt.copy_grants": {"name": "copy_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.copy_grants", "macro_sql": "{% macro copy_grants() %}\n {{ return(adapter.dispatch('copy_grants', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2386575, "supported_languages": null}, "macro.dbt.default__copy_grants": {"name": "default__copy_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__copy_grants", "macro_sql": "{% macro default__copy_grants() %}\n {{ return(True) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2389386, "supported_languages": null}, "macro.dbt.support_multiple_grantees_per_dcl_statement": {"name": "support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.support_multiple_grantees_per_dcl_statement", "macro_sql": "{% macro support_multiple_grantees_per_dcl_statement() %}\n {{ return(adapter.dispatch('support_multiple_grantees_per_dcl_statement', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2393773, "supported_languages": null}, "macro.dbt.default__support_multiple_grantees_per_dcl_statement": {"name": "default__support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__support_multiple_grantees_per_dcl_statement", "macro_sql": "\n\n{%- macro default__support_multiple_grantees_per_dcl_statement() -%}\n {{ return(True) }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2396364, "supported_languages": null}, "macro.dbt.should_revoke": {"name": "should_revoke", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.should_revoke", "macro_sql": "{% macro should_revoke(existing_relation, full_refresh_mode=True) %}\n\n {% if not existing_relation %}\n {#-- The table doesn't already exist, so no grants to copy over --#}\n {{ return(False) }}\n {% elif full_refresh_mode %}\n {#-- The object is being REPLACED -- whether grants are copied over depends on the value of user config --#}\n {{ return(copy_grants()) }}\n {% else %}\n {#-- The table is being merged/upserted/inserted -- grants will be carried over --#}\n {{ return(True) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2404883, "supported_languages": null}, "macro.dbt.get_show_grant_sql": {"name": "get_show_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_show_grant_sql", "macro_sql": "{% macro get_show_grant_sql(relation) %}\n {{ return(adapter.dispatch(\"get_show_grant_sql\", \"dbt\")(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_show_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.240972, "supported_languages": null}, "macro.dbt.default__get_show_grant_sql": {"name": "default__get_show_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_show_grant_sql", "macro_sql": "{% macro default__get_show_grant_sql(relation) %}\n show grants on {{ relation }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2412786, "supported_languages": null}, "macro.dbt.get_grant_sql": {"name": "get_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_grant_sql", "macro_sql": "{% macro get_grant_sql(relation, privilege, grantees) %}\n {{ return(adapter.dispatch('get_grant_sql', 'dbt')(relation, privilege, grantees)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__get_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2417874, "supported_languages": null}, "macro.dbt.default__get_grant_sql": {"name": "default__get_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_grant_sql", "macro_sql": "\n\n{%- macro default__get_grant_sql(relation, privilege, grantees) -%}\n grant {{ privilege }} on {{ relation }} to {{ grantees | join(', ') }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.242294, "supported_languages": null}, "macro.dbt.get_revoke_sql": {"name": "get_revoke_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_revoke_sql", "macro_sql": "{% macro get_revoke_sql(relation, privilege, grantees) %}\n {{ return(adapter.dispatch('get_revoke_sql', 'dbt')(relation, privilege, grantees)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__get_revoke_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.242822, "supported_languages": null}, "macro.dbt.default__get_revoke_sql": {"name": "default__get_revoke_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_revoke_sql", "macro_sql": "\n\n{%- macro default__get_revoke_sql(relation, privilege, grantees) -%}\n revoke {{ privilege }} on {{ relation }} from {{ grantees | join(', ') }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2433364, "supported_languages": null}, "macro.dbt.get_dcl_statement_list": {"name": "get_dcl_statement_list", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_dcl_statement_list", "macro_sql": "{% macro get_dcl_statement_list(relation, grant_config, get_dcl_macro) %}\n {{ return(adapter.dispatch('get_dcl_statement_list', 'dbt')(relation, grant_config, get_dcl_macro)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_dcl_statement_list"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2438624, "supported_languages": null}, "macro.dbt.default__get_dcl_statement_list": {"name": "default__get_dcl_statement_list", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_dcl_statement_list", "macro_sql": "\n\n{%- macro default__get_dcl_statement_list(relation, grant_config, get_dcl_macro) -%}\n {#\n -- Unpack grant_config into specific privileges and the set of users who need them granted/revoked.\n -- Depending on whether this database supports multiple grantees per statement, pass in the list of\n -- all grantees per privilege, or (if not) template one statement per privilege-grantee pair.\n -- `get_dcl_macro` will be either `get_grant_sql` or `get_revoke_sql`\n #}\n {%- set dcl_statements = [] -%}\n {%- for privilege, grantees in grant_config.items() %}\n {%- if support_multiple_grantees_per_dcl_statement() and grantees -%}\n {%- set dcl = get_dcl_macro(relation, privilege, grantees) -%}\n {%- do dcl_statements.append(dcl) -%}\n {%- else -%}\n {%- for grantee in grantees -%}\n {% set dcl = get_dcl_macro(relation, privilege, [grantee]) %}\n {%- do dcl_statements.append(dcl) -%}\n {% endfor -%}\n {%- endif -%}\n {%- endfor -%}\n {{ return(dcl_statements) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2456713, "supported_languages": null}, "macro.dbt.call_dcl_statements": {"name": "call_dcl_statements", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.call_dcl_statements", "macro_sql": "{% macro call_dcl_statements(dcl_statement_list) %}\n {{ return(adapter.dispatch(\"call_dcl_statements\", \"dbt\")(dcl_statement_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2462606, "supported_languages": null}, "macro.dbt.default__call_dcl_statements": {"name": "default__call_dcl_statements", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__call_dcl_statements", "macro_sql": "{% macro default__call_dcl_statements(dcl_statement_list) %}\n {#\n -- By default, supply all grant + revoke statements in a single semicolon-separated block,\n -- so that they're all processed together.\n\n -- Some databases do not support this. Those adapters will need to override this macro\n -- to run each statement individually.\n #}\n {% call statement('grants') %}\n {% for dcl_statement in dcl_statement_list %}\n {{ dcl_statement }};\n {% endfor %}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2468445, "supported_languages": null}, "macro.dbt.apply_grants": {"name": "apply_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.apply_grants", "macro_sql": "{% macro apply_grants(relation, grant_config, should_revoke) %}\n {{ return(adapter.dispatch(\"apply_grants\", \"dbt\")(relation, grant_config, should_revoke)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.24742, "supported_languages": null}, "macro.dbt.default__apply_grants": {"name": "default__apply_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__apply_grants", "macro_sql": "{% macro default__apply_grants(relation, grant_config, should_revoke=True) %}\n {#-- If grant_config is {} or None, this is a no-op --#}\n {% if grant_config %}\n {% if should_revoke %}\n {#-- We think previous grants may have carried over --#}\n {#-- Show current grants and calculate diffs --#}\n {% set current_grants_table = run_query(get_show_grant_sql(relation)) %}\n {% set current_grants_dict = adapter.standardize_grants_dict(current_grants_table) %}\n {% set needs_granting = diff_of_two_dicts(grant_config, current_grants_dict) %}\n {% set needs_revoking = diff_of_two_dicts(current_grants_dict, grant_config) %}\n {% if not (needs_granting or needs_revoking) %}\n {{ log('On ' ~ relation ~': All grants are in place, no revocation or granting needed.')}}\n {% endif %}\n {% else %}\n {#-- We don't think there's any chance of previous grants having carried over. --#}\n {#-- Jump straight to granting what the user has configured. --#}\n {% set needs_revoking = {} %}\n {% set needs_granting = grant_config %}\n {% endif %}\n {% if needs_granting or needs_revoking %}\n {% set revoke_statement_list = get_dcl_statement_list(relation, needs_revoking, get_revoke_sql) %}\n {% set grant_statement_list = get_dcl_statement_list(relation, needs_granting, get_grant_sql) %}\n {% set dcl_statement_list = revoke_statement_list + grant_statement_list %}\n {% if dcl_statement_list %}\n {{ call_dcl_statements(dcl_statement_list) }}\n {% endif %}\n {% endif %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.get_show_grant_sql", "macro.dbt.get_dcl_statement_list", "macro.dbt.call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.250517, "supported_languages": null}, "macro.dbt.collect_freshness": {"name": "collect_freshness", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "unique_id": "macro.dbt.collect_freshness", "macro_sql": "{% macro collect_freshness(source, loaded_at_field, filter) %}\n {{ return(adapter.dispatch('collect_freshness', 'dbt')(source, loaded_at_field, filter))}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2515123, "supported_languages": null}, "macro.dbt.default__collect_freshness": {"name": "default__collect_freshness", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "unique_id": "macro.dbt.default__collect_freshness", "macro_sql": "{% macro default__collect_freshness(source, loaded_at_field, filter) %}\n {% call statement('collect_freshness', fetch_result=True, auto_begin=False) -%}\n select\n max({{ loaded_at_field }}) as max_loaded_at,\n {{ current_timestamp() }} as snapshotted_at\n from {{ source }}\n {% if filter %}\n where {{ filter }}\n {% endif %}\n {% endcall %}\n {{ return(load_result('collect_freshness')) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2525458, "supported_languages": null}, "macro.dbt.get_columns_in_relation": {"name": "get_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_columns_in_relation", "macro_sql": "{% macro get_columns_in_relation(relation) -%}\n {{ return(adapter.dispatch('get_columns_in_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__get_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2563474, "supported_languages": null}, "macro.dbt.default__get_columns_in_relation": {"name": "default__get_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_columns_in_relation", "macro_sql": "{% macro default__get_columns_in_relation(relation) -%}\n {{ exceptions.raise_not_implemented(\n 'get_columns_in_relation macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2567558, "supported_languages": null}, "macro.dbt.sql_convert_columns_in_relation": {"name": "sql_convert_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.sql_convert_columns_in_relation", "macro_sql": "{% macro sql_convert_columns_in_relation(table) -%}\n {% set columns = [] %}\n {% for row in table %}\n {% do columns.append(api.Column(*row)) %}\n {% endfor %}\n {{ return(columns) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2575457, "supported_languages": null}, "macro.dbt.get_empty_subquery_sql": {"name": "get_empty_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_empty_subquery_sql", "macro_sql": "{% macro get_empty_subquery_sql(select_sql, select_sql_header=none) -%}\n {{ return(adapter.dispatch('get_empty_subquery_sql', 'dbt')(select_sql, select_sql_header)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2580895, "supported_languages": null}, "macro.dbt.default__get_empty_subquery_sql": {"name": "default__get_empty_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_empty_subquery_sql", "macro_sql": "{% macro default__get_empty_subquery_sql(select_sql, select_sql_header=none) %}\n {%- if select_sql_header is not none -%}\n {{ select_sql_header }}\n {%- endif -%}\n select * from (\n {{ select_sql }}\n ) as __dbt_sbq\n where false\n limit 0\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.258572, "supported_languages": null}, "macro.dbt.get_empty_schema_sql": {"name": "get_empty_schema_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_empty_schema_sql", "macro_sql": "{% macro get_empty_schema_sql(columns) -%}\n {{ return(adapter.dispatch('get_empty_schema_sql', 'dbt')(columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_empty_schema_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2589784, "supported_languages": null}, "macro.dbt.default__get_empty_schema_sql": {"name": "default__get_empty_schema_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_empty_schema_sql", "macro_sql": "{% macro default__get_empty_schema_sql(columns) %}\n {%- set col_err = [] -%}\n select\n {% for i in columns %}\n {%- set col = columns[i] -%}\n {%- if col['data_type'] is not defined -%}\n {{ col_err.append(col['name']) }}\n {%- endif -%}\n {% set col_name = adapter.quote(col['name']) if col.get('quote') else col['name'] %}\n cast(null as {{ col['data_type'] }}) as {{ col_name }}{{ \", \" if not loop.last }}\n {%- endfor -%}\n {%- if (col_err | length) > 0 -%}\n {{ exceptions.column_type_missing(column_names=col_err) }}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2608058, "supported_languages": null}, "macro.dbt.get_column_schema_from_query": {"name": "get_column_schema_from_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_column_schema_from_query", "macro_sql": "{% macro get_column_schema_from_query(select_sql, select_sql_header=none) -%}\n {% set columns = [] %}\n {# -- Using an 'empty subquery' here to get the same schema as the given select_sql statement, without necessitating a data scan.#}\n {% set sql = get_empty_subquery_sql(select_sql, select_sql_header) %}\n {% set column_schema = adapter.get_column_schema_from_query(sql) %}\n {{ return(column_schema) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2616632, "supported_languages": null}, "macro.dbt.get_columns_in_query": {"name": "get_columns_in_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_columns_in_query", "macro_sql": "{% macro get_columns_in_query(select_sql) -%}\n {{ return(adapter.dispatch('get_columns_in_query', 'dbt')(select_sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2620747, "supported_languages": null}, "macro.dbt.default__get_columns_in_query": {"name": "default__get_columns_in_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_columns_in_query", "macro_sql": "{% macro default__get_columns_in_query(select_sql) %}\n {% call statement('get_columns_in_query', fetch_result=True, auto_begin=False) -%}\n {{ get_empty_subquery_sql(select_sql) }}\n {% endcall %}\n {{ return(load_result('get_columns_in_query').table.columns | map(attribute='name') | list) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.262955, "supported_languages": null}, "macro.dbt.alter_column_type": {"name": "alter_column_type", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.alter_column_type", "macro_sql": "{% macro alter_column_type(relation, column_name, new_column_type) -%}\n {{ return(adapter.dispatch('alter_column_type', 'dbt')(relation, column_name, new_column_type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2635307, "supported_languages": null}, "macro.dbt.default__alter_column_type": {"name": "default__alter_column_type", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__alter_column_type", "macro_sql": "{% macro default__alter_column_type(relation, column_name, new_column_type) -%}\n {#\n 1. Create a new column (w/ temp name and correct type)\n 2. Copy data over to it\n 3. Drop the existing column (cascade!)\n 4. Rename the new column to existing column\n #}\n {%- set tmp_column = column_name + \"__dbt_alter\" -%}\n\n {% call statement('alter_column_type') %}\n alter table {{ relation }} add column {{ adapter.quote(tmp_column) }} {{ new_column_type }};\n update {{ relation }} set {{ adapter.quote(tmp_column) }} = {{ adapter.quote(column_name) }};\n alter table {{ relation }} drop column {{ adapter.quote(column_name) }} cascade;\n alter table {{ relation }} rename column {{ adapter.quote(tmp_column) }} to {{ adapter.quote(column_name) }}\n {% endcall %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2649286, "supported_languages": null}, "macro.dbt.alter_relation_add_remove_columns": {"name": "alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.alter_relation_add_remove_columns", "macro_sql": "{% macro alter_relation_add_remove_columns(relation, add_columns = none, remove_columns = none) -%}\n {{ return(adapter.dispatch('alter_relation_add_remove_columns', 'dbt')(relation, add_columns, remove_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__alter_relation_add_remove_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2655725, "supported_languages": null}, "macro.dbt.default__alter_relation_add_remove_columns": {"name": "default__alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__alter_relation_add_remove_columns", "macro_sql": "{% macro default__alter_relation_add_remove_columns(relation, add_columns, remove_columns) %}\n\n {% if add_columns is none %}\n {% set add_columns = [] %}\n {% endif %}\n {% if remove_columns is none %}\n {% set remove_columns = [] %}\n {% endif %}\n\n {% set sql -%}\n\n alter {{ relation.type }} {{ relation }}\n\n {% for column in add_columns %}\n add column {{ column.name }} {{ column.data_type }}{{ ',' if not loop.last }}\n {% endfor %}{{ ',' if add_columns and remove_columns }}\n\n {% for column in remove_columns %}\n drop column {{ column.name }}{{ ',' if not loop.last }}\n {% endfor %}\n\n {%- endset -%}\n\n {% do run_query(sql) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2676277, "supported_languages": null}, "macro.dbt.get_catalog": {"name": "get_catalog", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.get_catalog", "macro_sql": "{% macro get_catalog(information_schema, schemas) -%}\n {{ return(adapter.dispatch('get_catalog', 'dbt')(information_schema, schemas)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_catalog"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2703888, "supported_languages": null}, "macro.dbt.default__get_catalog": {"name": "default__get_catalog", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__get_catalog", "macro_sql": "{% macro default__get_catalog(information_schema, schemas) -%}\n\n {% set typename = adapter.type() %}\n {% set msg -%}\n get_catalog not implemented for {{ typename }}\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2709932, "supported_languages": null}, "macro.dbt.information_schema_name": {"name": "information_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.information_schema_name", "macro_sql": "{% macro information_schema_name(database) %}\n {{ return(adapter.dispatch('information_schema_name', 'dbt')(database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__information_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2714713, "supported_languages": null}, "macro.dbt.default__information_schema_name": {"name": "default__information_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__information_schema_name", "macro_sql": "{% macro default__information_schema_name(database) -%}\n {%- if database -%}\n {{ database }}.INFORMATION_SCHEMA\n {%- else -%}\n INFORMATION_SCHEMA\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2718341, "supported_languages": null}, "macro.dbt.list_schemas": {"name": "list_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.list_schemas", "macro_sql": "{% macro list_schemas(database) -%}\n {{ return(adapter.dispatch('list_schemas', 'dbt')(database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__list_schemas"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.272308, "supported_languages": null}, "macro.dbt.default__list_schemas": {"name": "default__list_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__list_schemas", "macro_sql": "{% macro default__list_schemas(database) -%}\n {% set sql %}\n select distinct schema_name\n from {{ information_schema_name(database) }}.SCHEMATA\n where catalog_name ilike '{{ database }}'\n {% endset %}\n {{ return(run_query(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.information_schema_name", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2728689, "supported_languages": null}, "macro.dbt.check_schema_exists": {"name": "check_schema_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.check_schema_exists", "macro_sql": "{% macro check_schema_exists(information_schema, schema) -%}\n {{ return(adapter.dispatch('check_schema_exists', 'dbt')(information_schema, schema)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__check_schema_exists"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2733798, "supported_languages": null}, "macro.dbt.default__check_schema_exists": {"name": "default__check_schema_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__check_schema_exists", "macro_sql": "{% macro default__check_schema_exists(information_schema, schema) -%}\n {% set sql -%}\n select count(*)\n from {{ information_schema.replace(information_schema_view='SCHEMATA') }}\n where catalog_name='{{ information_schema.database }}'\n and schema_name='{{ schema }}'\n {%- endset %}\n {{ return(run_query(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.replace", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2740488, "supported_languages": null}, "macro.dbt.list_relations_without_caching": {"name": "list_relations_without_caching", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.list_relations_without_caching", "macro_sql": "{% macro list_relations_without_caching(schema_relation) %}\n {{ return(adapter.dispatch('list_relations_without_caching', 'dbt')(schema_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__list_relations_without_caching"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2745132, "supported_languages": null}, "macro.dbt.default__list_relations_without_caching": {"name": "default__list_relations_without_caching", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__list_relations_without_caching", "macro_sql": "{% macro default__list_relations_without_caching(schema_relation) %}\n {{ exceptions.raise_not_implemented(\n 'list_relations_without_caching macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.274876, "supported_languages": null}, "macro.dbt.create_schema": {"name": "create_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.create_schema", "macro_sql": "{% macro create_schema(relation) -%}\n {{ adapter.dispatch('create_schema', 'dbt')(relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__create_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2757187, "supported_languages": null}, "macro.dbt.default__create_schema": {"name": "default__create_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.default__create_schema", "macro_sql": "{% macro default__create_schema(relation) -%}\n {%- call statement('create_schema') -%}\n create schema if not exists {{ relation.without_identifier() }}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2761931, "supported_languages": null}, "macro.dbt.drop_schema": {"name": "drop_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.drop_schema", "macro_sql": "{% macro drop_schema(relation) -%}\n {{ adapter.dispatch('drop_schema', 'dbt')(relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__drop_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2765682, "supported_languages": null}, "macro.dbt.default__drop_schema": {"name": "default__drop_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.default__drop_schema", "macro_sql": "{% macro default__drop_schema(relation) -%}\n {%- call statement('drop_schema') -%}\n drop schema if exists {{ relation.without_identifier() }} cascade\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2769802, "supported_languages": null}, "macro.dbt.get_create_index_sql": {"name": "get_create_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.get_create_index_sql", "macro_sql": "{% macro get_create_index_sql(relation, index_dict) -%}\n {{ return(adapter.dispatch('get_create_index_sql', 'dbt')(relation, index_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2779484, "supported_languages": null}, "macro.dbt.default__get_create_index_sql": {"name": "default__get_create_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__get_create_index_sql", "macro_sql": "{% macro default__get_create_index_sql(relation, index_dict) -%}\n {% do return(None) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2783265, "supported_languages": null}, "macro.dbt.create_indexes": {"name": "create_indexes", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.create_indexes", "macro_sql": "{% macro create_indexes(relation) -%}\n {{ adapter.dispatch('create_indexes', 'dbt')(relation) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.278693, "supported_languages": null}, "macro.dbt.default__create_indexes": {"name": "default__create_indexes", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__create_indexes", "macro_sql": "{% macro default__create_indexes(relation) -%}\n {%- set _indexes = config.get('indexes', default=[]) -%}\n\n {% for _index_dict in _indexes %}\n {% set create_index_sql = get_create_index_sql(relation, _index_dict) %}\n {% if create_index_sql %}\n {% do run_query(create_index_sql) %}\n {% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_create_index_sql", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2798266, "supported_languages": null}, "macro.dbt.hash": {"name": "hash", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "unique_id": "macro.dbt.hash", "macro_sql": "{% macro hash(field) -%}\n {{ return(adapter.dispatch('hash', 'dbt') (field)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__hash"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2804613, "supported_languages": null}, "macro.dbt.default__hash": {"name": "default__hash", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "unique_id": "macro.dbt.default__hash", "macro_sql": "{% macro default__hash(field) -%}\n md5(cast({{ field }} as {{ api.Column.translate_type('string') }}))\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2808292, "supported_languages": null}, "macro.dbt.dateadd": {"name": "dateadd", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt.dateadd", "macro_sql": "{% macro dateadd(datepart, interval, from_date_or_timestamp) %}\n {{ return(adapter.dispatch('dateadd', 'dbt')(datepart, interval, from_date_or_timestamp)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2816286, "supported_languages": null}, "macro.dbt.default__dateadd": {"name": "default__dateadd", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt.default__dateadd", "macro_sql": "{% macro default__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n dateadd(\n {{ datepart }},\n {{ interval }},\n {{ from_date_or_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2820222, "supported_languages": null}, "macro.dbt.replace": {"name": "replace", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "unique_id": "macro.dbt.replace", "macro_sql": "{% macro replace(field, old_chars, new_chars) -%}\n {{ return(adapter.dispatch('replace', 'dbt') (field, old_chars, new_chars)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__replace"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2827754, "supported_languages": null}, "macro.dbt.default__replace": {"name": "default__replace", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "unique_id": "macro.dbt.default__replace", "macro_sql": "{% macro default__replace(field, old_chars, new_chars) %}\n\n replace(\n {{ field }},\n {{ old_chars }},\n {{ new_chars }}\n )\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2831922, "supported_languages": null}, "macro.dbt.right": {"name": "right", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "unique_id": "macro.dbt.right", "macro_sql": "{% macro right(string_text, length_expression) -%}\n {{ return(adapter.dispatch('right', 'dbt') (string_text, length_expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__right"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.283822, "supported_languages": null}, "macro.dbt.default__right": {"name": "default__right", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "unique_id": "macro.dbt.default__right", "macro_sql": "{% macro default__right(string_text, length_expression) %}\n\n right(\n {{ string_text }},\n {{ length_expression }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2841797, "supported_languages": null}, "macro.dbt.datediff": {"name": "datediff", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt.datediff", "macro_sql": "{% macro datediff(first_date, second_date, datepart) %}\n {{ return(adapter.dispatch('datediff', 'dbt')(first_date, second_date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.284877, "supported_languages": null}, "macro.dbt.default__datediff": {"name": "default__datediff", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt.default__datediff", "macro_sql": "{% macro default__datediff(first_date, second_date, datepart) -%}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.285314, "supported_languages": null}, "macro.dbt.intersect": {"name": "intersect", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "unique_id": "macro.dbt.intersect", "macro_sql": "{% macro intersect() %}\n {{ return(adapter.dispatch('intersect', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__intersect"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2857952, "supported_languages": null}, "macro.dbt.default__intersect": {"name": "default__intersect", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "unique_id": "macro.dbt.default__intersect", "macro_sql": "{% macro default__intersect() %}\n\n intersect\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.28597, "supported_languages": null}, "macro.dbt.array_concat": {"name": "array_concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt.array_concat", "macro_sql": "{% macro array_concat(array_1, array_2) -%}\n {{ return(adapter.dispatch('array_concat', 'dbt')(array_1, array_2)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__array_concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.286613, "supported_languages": null}, "macro.dbt.default__array_concat": {"name": "default__array_concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt.default__array_concat", "macro_sql": "{% macro default__array_concat(array_1, array_2) -%}\n array_cat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2869139, "supported_languages": null}, "macro.dbt.position": {"name": "position", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "unique_id": "macro.dbt.position", "macro_sql": "{% macro position(substring_text, string_text) -%}\n {{ return(adapter.dispatch('position', 'dbt') (substring_text, string_text)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__position"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2875836, "supported_languages": null}, "macro.dbt.default__position": {"name": "default__position", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "unique_id": "macro.dbt.default__position", "macro_sql": "{% macro default__position(substring_text, string_text) %}\n\n position(\n {{ substring_text }} in {{ string_text }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.287915, "supported_languages": null}, "macro.dbt.array_construct": {"name": "array_construct", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt.array_construct", "macro_sql": "{% macro array_construct(inputs=[], data_type=api.Column.translate_type('integer')) -%}\n {{ return(adapter.dispatch('array_construct', 'dbt')(inputs, data_type)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__array_construct"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2887747, "supported_languages": null}, "macro.dbt.default__array_construct": {"name": "default__array_construct", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt.default__array_construct", "macro_sql": "{% macro default__array_construct(inputs, data_type) -%}\n {% if inputs|length > 0 %}\n array[ {{ inputs|join(' , ') }} ]\n {% else %}\n array[]::{{data_type}}[]\n {% endif %}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2895386, "supported_languages": null}, "macro.dbt.type_string": {"name": "type_string", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_string", "macro_sql": "\n\n{%- macro type_string() -%}\n {{ return(adapter.dispatch('type_string', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2913895, "supported_languages": null}, "macro.dbt.default__type_string": {"name": "default__type_string", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_string", "macro_sql": "{% macro default__type_string() %}\n {{ return(api.Column.translate_type(\"string\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.291753, "supported_languages": null}, "macro.dbt.type_timestamp": {"name": "type_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_timestamp", "macro_sql": "\n\n{%- macro type_timestamp() -%}\n {{ return(adapter.dispatch('type_timestamp', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2921872, "supported_languages": null}, "macro.dbt.default__type_timestamp": {"name": "default__type_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_timestamp", "macro_sql": "{% macro default__type_timestamp() %}\n {{ return(api.Column.translate_type(\"timestamp\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2925508, "supported_languages": null}, "macro.dbt.type_float": {"name": "type_float", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_float", "macro_sql": "\n\n{%- macro type_float() -%}\n {{ return(adapter.dispatch('type_float', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_float"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2929158, "supported_languages": null}, "macro.dbt.default__type_float": {"name": "default__type_float", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_float", "macro_sql": "{% macro default__type_float() %}\n {{ return(api.Column.translate_type(\"float\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2933366, "supported_languages": null}, "macro.dbt.type_numeric": {"name": "type_numeric", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_numeric", "macro_sql": "\n\n{%- macro type_numeric() -%}\n {{ return(adapter.dispatch('type_numeric', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2937033, "supported_languages": null}, "macro.dbt.default__type_numeric": {"name": "default__type_numeric", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_numeric", "macro_sql": "{% macro default__type_numeric() %}\n {{ return(api.Column.numeric_type(\"numeric\", 28, 6)) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2941473, "supported_languages": null}, "macro.dbt.type_bigint": {"name": "type_bigint", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_bigint", "macro_sql": "\n\n{%- macro type_bigint() -%}\n {{ return(adapter.dispatch('type_bigint', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2945814, "supported_languages": null}, "macro.dbt.default__type_bigint": {"name": "default__type_bigint", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_bigint", "macro_sql": "{% macro default__type_bigint() %}\n {{ return(api.Column.translate_type(\"bigint\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2949748, "supported_languages": null}, "macro.dbt.type_int": {"name": "type_int", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_int", "macro_sql": "\n\n{%- macro type_int() -%}\n {{ return(adapter.dispatch('type_int', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2953928, "supported_languages": null}, "macro.dbt.default__type_int": {"name": "default__type_int", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_int", "macro_sql": "{%- macro default__type_int() -%}\n {{ return(api.Column.translate_type(\"integer\")) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2957213, "supported_languages": null}, "macro.dbt.type_boolean": {"name": "type_boolean", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_boolean", "macro_sql": "\n\n{%- macro type_boolean() -%}\n {{ return(adapter.dispatch('type_boolean', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_boolean"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2961347, "supported_languages": null}, "macro.dbt.default__type_boolean": {"name": "default__type_boolean", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_boolean", "macro_sql": "{%- macro default__type_boolean() -%}\n {{ return(api.Column.translate_type(\"boolean\")) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2964807, "supported_languages": null}, "macro.dbt.bool_or": {"name": "bool_or", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt.bool_or", "macro_sql": "{% macro bool_or(expression) -%}\n {{ return(adapter.dispatch('bool_or', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__bool_or"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2970521, "supported_languages": null}, "macro.dbt.default__bool_or": {"name": "default__bool_or", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt.default__bool_or", "macro_sql": "{% macro default__bool_or(expression) -%}\n\n bool_or({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2973561, "supported_languages": null}, "macro.dbt.escape_single_quotes": {"name": "escape_single_quotes", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt.escape_single_quotes", "macro_sql": "{% macro escape_single_quotes(expression) %}\n {{ return(adapter.dispatch('escape_single_quotes', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__escape_single_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2979267, "supported_languages": null}, "macro.dbt.default__escape_single_quotes": {"name": "default__escape_single_quotes", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt.default__escape_single_quotes", "macro_sql": "{% macro default__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\",\"''\") }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.298308, "supported_languages": null}, "macro.dbt.split_part": {"name": "split_part", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt.split_part", "macro_sql": "{% macro split_part(string_text, delimiter_text, part_number) %}\n {{ return(adapter.dispatch('split_part', 'dbt') (string_text, delimiter_text, part_number)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.2993317, "supported_languages": null}, "macro.dbt.default__split_part": {"name": "default__split_part", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt.default__split_part", "macro_sql": "{% macro default__split_part(string_text, delimiter_text, part_number) %}\n\n split_part(\n {{ string_text }},\n {{ delimiter_text }},\n {{ part_number }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.299854, "supported_languages": null}, "macro.dbt._split_part_negative": {"name": "_split_part_negative", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt._split_part_negative", "macro_sql": "{% macro _split_part_negative(string_text, delimiter_text, part_number) %}\n\n split_part(\n {{ string_text }},\n {{ delimiter_text }},\n length({{ string_text }})\n - length(\n replace({{ string_text }}, {{ delimiter_text }}, '')\n ) + 2 {{ part_number }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3004162, "supported_languages": null}, "macro.dbt.length": {"name": "length", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "unique_id": "macro.dbt.length", "macro_sql": "{% macro length(expression) -%}\n {{ return(adapter.dispatch('length', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__length"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3009713, "supported_languages": null}, "macro.dbt.default__length": {"name": "default__length", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "unique_id": "macro.dbt.default__length", "macro_sql": "{% macro default__length(expression) %}\n\n length(\n {{ expression }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3013077, "supported_languages": null}, "macro.dbt.listagg": {"name": "listagg", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt.listagg", "macro_sql": "{% macro listagg(measure, delimiter_text=\"','\", order_by_clause=none, limit_num=none) -%}\n {{ return(adapter.dispatch('listagg', 'dbt') (measure, delimiter_text, order_by_clause, limit_num)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__listagg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3025844, "supported_languages": null}, "macro.dbt.default__listagg": {"name": "default__listagg", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt.default__listagg", "macro_sql": "{% macro default__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n {% if limit_num -%}\n array_to_string(\n array_slice(\n array_agg(\n {{ measure }}\n ){% if order_by_clause -%}\n within group ({{ order_by_clause }})\n {%- endif %}\n ,0\n ,{{ limit_num }}\n ),\n {{ delimiter_text }}\n )\n {%- else %}\n listagg(\n {{ measure }},\n {{ delimiter_text }}\n )\n {% if order_by_clause -%}\n within group ({{ order_by_clause }})\n {%- endif %}\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3035896, "supported_languages": null}, "macro.dbt.array_append": {"name": "array_append", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt.array_append", "macro_sql": "{% macro array_append(array, new_element) -%}\n {{ return(adapter.dispatch('array_append', 'dbt')(array, new_element)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__array_append"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3042712, "supported_languages": null}, "macro.dbt.default__array_append": {"name": "default__array_append", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt.default__array_append", "macro_sql": "{% macro default__array_append(array, new_element) -%}\n array_append({{ array }}, {{ new_element }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3045816, "supported_languages": null}, "macro.dbt.any_value": {"name": "any_value", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt.any_value", "macro_sql": "{% macro any_value(expression) -%}\n {{ return(adapter.dispatch('any_value', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__any_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3051531, "supported_languages": null}, "macro.dbt.default__any_value": {"name": "default__any_value", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt.default__any_value", "macro_sql": "{% macro default__any_value(expression) -%}\n\n any_value({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3054075, "supported_languages": null}, "macro.dbt.string_literal": {"name": "string_literal", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "unique_id": "macro.dbt.string_literal", "macro_sql": "{%- macro string_literal(value) -%}\n {{ return(adapter.dispatch('string_literal', 'dbt') (value)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__string_literal"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3059337, "supported_languages": null}, "macro.dbt.default__string_literal": {"name": "default__string_literal", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "unique_id": "macro.dbt.default__string_literal", "macro_sql": "{% macro default__string_literal(value) -%}\n '{{ value }}'\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3062305, "supported_languages": null}, "macro.dbt.safe_cast": {"name": "safe_cast", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "unique_id": "macro.dbt.safe_cast", "macro_sql": "{% macro safe_cast(field, type) %}\n {{ return(adapter.dispatch('safe_cast', 'dbt') (field, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__safe_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3068428, "supported_languages": null}, "macro.dbt.default__safe_cast": {"name": "default__safe_cast", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "unique_id": "macro.dbt.default__safe_cast", "macro_sql": "{% macro default__safe_cast(field, type) %}\n {# most databases don't support this function yet\n so we just need to use cast #}\n cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3072197, "supported_languages": null}, "macro.dbt.concat": {"name": "concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt.concat", "macro_sql": "{% macro concat(fields) -%}\n {{ return(adapter.dispatch('concat', 'dbt')(fields)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3077438, "supported_languages": null}, "macro.dbt.default__concat": {"name": "default__concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt.default__concat", "macro_sql": "{% macro default__concat(fields) -%}\n {{ fields|join(' || ') }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3080263, "supported_languages": null}, "macro.dbt.cast_bool_to_text": {"name": "cast_bool_to_text", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "unique_id": "macro.dbt.cast_bool_to_text", "macro_sql": "{% macro cast_bool_to_text(field) %}\n {{ adapter.dispatch('cast_bool_to_text', 'dbt') (field) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3086073, "supported_languages": null}, "macro.dbt.default__cast_bool_to_text": {"name": "default__cast_bool_to_text", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "unique_id": "macro.dbt.default__cast_bool_to_text", "macro_sql": "{% macro default__cast_bool_to_text(field) %}\n cast({{ field }} as {{ api.Column.translate_type('string') }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.308984, "supported_languages": null}, "macro.dbt.last_day": {"name": "last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.last_day", "macro_sql": "{% macro last_day(date, datepart) %}\n {{ return(adapter.dispatch('last_day', 'dbt') (date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3097484, "supported_languages": null}, "macro.dbt.default_last_day": {"name": "default_last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.default_last_day", "macro_sql": "\n\n{%- macro default_last_day(date, datepart) -%}\n cast(\n {{dbt.dateadd('day', '-1',\n dbt.dateadd(datepart, '1', dbt.date_trunc(datepart, date))\n )}}\n as date)\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3105414, "supported_languages": null}, "macro.dbt.default__last_day": {"name": "default__last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.default__last_day", "macro_sql": "{% macro default__last_day(date, datepart) -%}\n {{dbt.default_last_day(date, datepart)}}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.310889, "supported_languages": null}, "macro.dbt.date_trunc": {"name": "date_trunc", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "unique_id": "macro.dbt.date_trunc", "macro_sql": "{% macro date_trunc(datepart, date) -%}\n {{ return(adapter.dispatch('date_trunc', 'dbt') (datepart, date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3115468, "supported_languages": null}, "macro.dbt.default__date_trunc": {"name": "default__date_trunc", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "unique_id": "macro.dbt.default__date_trunc", "macro_sql": "{% macro default__date_trunc(datepart, date) -%}\n date_trunc('{{datepart}}', {{date}})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3118525, "supported_languages": null}, "macro.dbt.except": {"name": "except", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "unique_id": "macro.dbt.except", "macro_sql": "{% macro except() %}\n {{ return(adapter.dispatch('except', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.312427, "supported_languages": null}, "macro.dbt.default__except": {"name": "default__except", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "unique_id": "macro.dbt.default__except", "macro_sql": "{% macro default__except() %}\n\n except\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.312609, "supported_languages": null}, "macro.dbt.statement": {"name": "statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.statement", "macro_sql": "\n{%- macro statement(name=None, fetch_result=False, auto_begin=True, language='sql') -%}\n {%- if execute: -%}\n {%- set compiled_code = caller() -%}\n\n {%- if name == 'main' -%}\n {{ log('Writing runtime {} for node \"{}\"'.format(language, model['unique_id'])) }}\n {{ write(compiled_code) }}\n {%- endif -%}\n {%- if language == 'sql'-%}\n {%- set res, table = adapter.execute(compiled_code, auto_begin=auto_begin, fetch=fetch_result) -%}\n {%- elif language == 'python' -%}\n {%- set res = submit_python_job(model, compiled_code) -%}\n {#-- TODO: What should table be for python models? --#}\n {%- set table = None -%}\n {%- else -%}\n {% do exceptions.raise_compiler_error(\"statement macro didn't get supported language\") %}\n {%- endif -%}\n\n {%- if name is not none -%}\n {{ store_result(name, response=res, agate_table=table) }}\n {%- endif -%}\n\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3158894, "supported_languages": null}, "macro.dbt.noop_statement": {"name": "noop_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.noop_statement", "macro_sql": "{% macro noop_statement(name=None, message=None, code=None, rows_affected=None, res=None) -%}\n {%- set sql = caller() -%}\n\n {%- if name == 'main' -%}\n {{ log('Writing runtime SQL for node \"{}\"'.format(model['unique_id'])) }}\n {{ write(sql) }}\n {%- endif -%}\n\n {%- if name is not none -%}\n {{ store_raw_result(name, message=message, code=code, rows_affected=rows_affected, agate_table=res) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3173194, "supported_languages": null}, "macro.dbt.run_query": {"name": "run_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.run_query", "macro_sql": "{% macro run_query(sql) %}\n {% call statement(\"run_query_statement\", fetch_result=true, auto_begin=false) %}\n {{ sql }}\n {% endcall %}\n\n {% do return(load_result(\"run_query_statement\").table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.317996, "supported_languages": null}, "macro.dbt.convert_datetime": {"name": "convert_datetime", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.convert_datetime", "macro_sql": "{% macro convert_datetime(date_str, date_fmt) %}\n\n {% set error_msg -%}\n The provided partition date '{{ date_str }}' does not match the expected format '{{ date_fmt }}'\n {%- endset %}\n\n {% set res = try_or_compiler_error(error_msg, modules.datetime.datetime.strptime, date_str.strip(), date_fmt) %}\n {{ return(res) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3212461, "supported_languages": null}, "macro.dbt.dates_in_range": {"name": "dates_in_range", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.dates_in_range", "macro_sql": "{% macro dates_in_range(start_date_str, end_date_str=none, in_fmt=\"%Y%m%d\", out_fmt=\"%Y%m%d\") %}\n {% set end_date_str = start_date_str if end_date_str is none else end_date_str %}\n\n {% set start_date = convert_datetime(start_date_str, in_fmt) %}\n {% set end_date = convert_datetime(end_date_str, in_fmt) %}\n\n {% set day_count = (end_date - start_date).days %}\n {% if day_count < 0 %}\n {% set msg -%}\n Partiton start date is after the end date ({{ start_date }}, {{ end_date }})\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg, model) }}\n {% endif %}\n\n {% set date_list = [] %}\n {% for i in range(0, day_count + 1) %}\n {% set the_date = (modules.datetime.timedelta(days=i) + start_date) %}\n {% if not out_fmt %}\n {% set _ = date_list.append(the_date) %}\n {% else %}\n {% set _ = date_list.append(the_date.strftime(out_fmt)) %}\n {% endif %}\n {% endfor %}\n\n {{ return(date_list) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.convert_datetime"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3241374, "supported_languages": null}, "macro.dbt.partition_range": {"name": "partition_range", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.partition_range", "macro_sql": "{% macro partition_range(raw_partition_date, date_fmt='%Y%m%d') %}\n {% set partition_range = (raw_partition_date | string).split(\",\") %}\n\n {% if (partition_range | length) == 1 %}\n {% set start_date = partition_range[0] %}\n {% set end_date = none %}\n {% elif (partition_range | length) == 2 %}\n {% set start_date = partition_range[0] %}\n {% set end_date = partition_range[1] %}\n {% else %}\n {{ exceptions.raise_compiler_error(\"Invalid partition time. Expected format: {Start Date}[,{End Date}]. Got: \" ~ raw_partition_date) }}\n {% endif %}\n\n {{ return(dates_in_range(start_date, end_date, in_fmt=date_fmt)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dates_in_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.326074, "supported_languages": null}, "macro.dbt.py_current_timestring": {"name": "py_current_timestring", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.py_current_timestring", "macro_sql": "{% macro py_current_timestring() %}\n {% set dt = modules.datetime.datetime.now() %}\n {% do return(dt.strftime(\"%Y%m%d%H%M%S%f\")) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.326618, "supported_languages": null}, "macro.dbt.default__test_not_null": {"name": "default__test_not_null", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/not_null.sql", "original_file_path": "macros/generic_test_sql/not_null.sql", "unique_id": "macro.dbt.default__test_not_null", "macro_sql": "{% macro default__test_not_null(model, column_name) %}\n\n{% set column_list = '*' if should_store_failures() else column_name %}\n\nselect {{ column_list }}\nfrom {{ model }}\nwhere {{ column_name }} is null\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3273623, "supported_languages": null}, "macro.dbt.default__test_unique": {"name": "default__test_unique", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/unique.sql", "original_file_path": "macros/generic_test_sql/unique.sql", "unique_id": "macro.dbt.default__test_unique", "macro_sql": "{% macro default__test_unique(model, column_name) %}\n\nselect\n {{ column_name }} as unique_field,\n count(*) as n_records\n\nfrom {{ model }}\nwhere {{ column_name }} is not null\ngroup by {{ column_name }}\nhaving count(*) > 1\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3279436, "supported_languages": null}, "macro.dbt.default__test_accepted_values": {"name": "default__test_accepted_values", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/accepted_values.sql", "original_file_path": "macros/generic_test_sql/accepted_values.sql", "unique_id": "macro.dbt.default__test_accepted_values", "macro_sql": "{% macro default__test_accepted_values(model, column_name, values, quote=True) %}\n\nwith all_values as (\n\n select\n {{ column_name }} as value_field,\n count(*) as n_records\n\n from {{ model }}\n group by {{ column_name }}\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n {% for value in values -%}\n {% if quote -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {%- endfor %}\n)\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.329597, "supported_languages": null}, "macro.dbt.default__test_relationships": {"name": "default__test_relationships", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/relationships.sql", "original_file_path": "macros/generic_test_sql/relationships.sql", "unique_id": "macro.dbt.default__test_relationships", "macro_sql": "{% macro default__test_relationships(model, column_name, to, field) %}\n\nwith child as (\n select {{ column_name }} as from_field\n from {{ model }}\n where {{ column_name }} is not null\n),\n\nparent as (\n select {{ field }} as to_field\n from {{ to }}\n)\n\nselect\n from_field\n\nfrom child\nleft join parent\n on child.from_field = parent.to_field\n\nwhere parent.to_field is null\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.330468, "supported_languages": null}, "macro.dbt.test_unique": {"name": "test_unique", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_unique", "macro_sql": "{% test unique(model, column_name) %}\n {% set macro = adapter.dispatch('test_unique', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_unique"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3315516, "supported_languages": null}, "macro.dbt.test_not_null": {"name": "test_not_null", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_not_null", "macro_sql": "{% test not_null(model, column_name) %}\n {% set macro = adapter.dispatch('test_not_null', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3321648, "supported_languages": null}, "macro.dbt.test_accepted_values": {"name": "test_accepted_values", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_accepted_values", "macro_sql": "{% test accepted_values(model, column_name, values, quote=True) %}\n {% set macro = adapter.dispatch('test_accepted_values', 'dbt') %}\n {{ macro(model, column_name, values, quote) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3328507, "supported_languages": null}, "macro.dbt.test_relationships": {"name": "test_relationships", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_relationships", "macro_sql": "{% test relationships(model, column_name, to, field) %}\n {% set macro = adapter.dispatch('test_relationships', 'dbt') %}\n {{ macro(model, column_name, to, field) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_relationships"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3335445, "supported_languages": null}, "macro.dbt_data_applicaion.db_source": {"name": "db_source", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/db_source.sql", "original_file_path": "macros/db_source.sql", "unique_id": "macro.dbt_data_applicaion.db_source", "macro_sql": "{% macro db_source(source_name, table_name) %}\n\n{% if target.name != 'prod' %}\n {{ source('dbt_seed', table_name)}}\n{% else %}\n {{ source(source_name, table_name)}}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3344655, "supported_languages": null}, "macro.dbt_data_applicaion.clean_db": {"name": "clean_db", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/databricks/clean_db.sql", "original_file_path": "macros/databricks/clean_db.sql", "unique_id": "macro.dbt_data_applicaion.clean_db", "macro_sql": "{% macro clean_db(db_name,bucket,location_name,sub_dir) %}\n{% set sql %}\n DROP DATABASE IF EXISTS {{ db_name }} CASCADE;\n{% endset %}\n{% do run_query(sql) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) ~ '/dbt' %}\n{% do log('clean db: ' ~ db_name ~ ', s3 path: ' ~ s3_path, info=True) %}\n\n\n{% set sql %}\n CREATE DATABASE IF NOT EXISTS {{ db_name }} LOCATION '{{ s3_path }}';\n{% endset %}\n{% do run_query(sql) %}\n\n-- add meta\n{% set sql %}\n DROP DATABASE IF EXISTS {{ db_name }}_meta CASCADE;\n{% endset %}\n{% do run_query(sql) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) ~ '/meta' %}\n{% do log('clean db: ' ~ db_name ~ '_meta, s3 path: ' ~ s3_path, info=True) %}\n\n\n{% set sql %}\n CREATE DATABASE IF NOT EXISTS {{ db_name }}_meta LOCATION '{{ s3_path }}';\n{% endset %}\n{% do run_query(sql) %}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt_data_applicaion.build_s3_path"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.337506, "supported_languages": null}, "macro.dbt_data_applicaion.clean_db_lakefs": {"name": "clean_db_lakefs", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/databricks/clean_db_lakefs.sql", "original_file_path": "macros/databricks/clean_db_lakefs.sql", "unique_id": "macro.dbt_data_applicaion.clean_db_lakefs", "macro_sql": "{% macro clean_db_lakefs(db_name, repo, branch) %}\n{% set sql %}\n DROP DATABASE IF EXISTS {{ db_name }} CASCADE;\n{% endset %}\n{% do run_query(sql) %}\n\n{% set s3_path = 'lakefs://' ~ repo ~ '/' ~ branch ~ '/dbt' %}\n{% do log('clean db: ' ~ db_name ~ ' s3 path: ' ~ s3_path, info=True) %}\n\n\n{% set sql %}\n CREATE DATABASE IF NOT EXISTS {{ db_name }} LOCATION '{{ s3_path }}';\n{% endset %}\n{% do run_query(sql) %}\n\n-- add meta\n{% set sql %}\n DROP DATABASE IF EXISTS {{ db_name }}_meta CASCADE;\n{% endset %}\n{% do run_query(sql) %}\n\n{% set s3_path = 'lakefs://' ~ repo ~ '/' ~ branch ~ '/meta' %}\n{% do log('clean db: ' ~ db_name ~ ' s3 path: ' ~ s3_path, info=True) %}\n\n{% set sql %}\n CREATE DATABASE IF NOT EXISTS {{ db_name }}_meta LOCATION '{{ s3_path }}';\n{% endset %}\n{% do run_query(sql) %}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3404834, "supported_languages": null}, "macro.dbt_data_applicaion.clean_s3": {"name": "clean_s3", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/databricks/clean_s3.sql", "original_file_path": "macros/databricks/clean_s3.sql", "unique_id": "macro.dbt_data_applicaion.clean_s3", "macro_sql": "{% macro clean_s3(db_name,bucket, location_name,sub_dir) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) ~ '/dbt' %}\n{% do log('s3 path: ' ~ s3_path, info=True) %}\n\n{{ dbutils.fs.rm(s3_path, true) }}\n\n\n{% do log(\"clean_s3: \" + db_name, info=True) %}\n{{ dbt_utils.log_info(\"clean_s3: \" + db_name) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applicaion.build_s3_path", "macro.dbt_utils.log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3418512, "supported_languages": null}, "macro.dbt_data_applicaion.create_db": {"name": "create_db", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/databricks/create_db.sql", "original_file_path": "macros/databricks/create_db.sql", "unique_id": "macro.dbt_data_applicaion.create_db", "macro_sql": "{% macro create_db(db_name,bucket,location_name,sub_dir) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) ~ '/dbt' %}\n\n{% set sql %}\n CREATE DATABASE IF NOT EXISTS {{ db_name }} LOCATION '{{ s3_path }}';\n{% endset %}\n{% do run_query(sql) %}\n\n\n-- meta\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) ~ '/meta' %}\n\n{% set sql %}\n CREATE DATABASE IF NOT EXISTS {{ db_name }}_meta LOCATION '{{ s3_path }}';\n{% endset %}\n{% do run_query(sql) %}\n\n\n{% do log(\"create_db: \" + db_name, info=True) %}\n{{ dbt_utils.log_info(\"create_db: \" + db_name) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applicaion.build_s3_path", "macro.dbt.run_query", "macro.dbt_utils.log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3439496, "supported_languages": null}, "macro.dbt_data_applicaion.delete_db": {"name": "delete_db", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/databricks/delete_db.sql", "original_file_path": "macros/databricks/delete_db.sql", "unique_id": "macro.dbt_data_applicaion.delete_db", "macro_sql": "{% macro delete_db(db_name,bucket,location_name,sub_dir) %}\n{% set sql %}\n DROP DATABASE IF EXISTS {{ db_name }} CASCADE;\n{% endset %}\n{% do run_query(sql) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) ~ '/dbt' %}\ndbutils.fs.rm(s3_path, true)\n\n-- meta\n{% set sql %}\n DROP DATABASE IF EXISTS {{ db_name }}_meta CASCADE;\n{% endset %}\n{% do run_query(sql) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) ~ '/meta' %}\ndbutils.fs.rm(s3_path, true)\n\n\n{% do log(\"delete_db: \" + db_name, info=True) %}\n{{ dbt_utils.log_info(\"delete_db: \" + db_name) }}\n{{ dbt_utils.log_info(s3_path) }}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt_data_applicaion.build_s3_path", "macro.dbt_utils.log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3460972, "supported_languages": null}, "macro.dbt_data_applicaion.build_s3_path": {"name": "build_s3_path", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/databricks/utils.sql", "original_file_path": "macros/databricks/utils.sql", "unique_id": "macro.dbt_data_applicaion.build_s3_path", "macro_sql": "{% macro build_s3_path(bucket,location_name,sub_dir) %}\n\n{% if sub_dir is none %} \n {% set s3_path = 's3://' ~ bucket ~ '/' ~ location_name %}\n{% else %}\n {% set s3_path = 's3://' ~ bucket ~ '/' ~ location_name ~ '/' ~ sub_dir %}\n{%endif %}\n{{ return(s3_path) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3473876, "supported_languages": null}, "macro.dbt_data_applicaion.display_s3_path": {"name": "display_s3_path", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/databricks/utils.sql", "original_file_path": "macros/databricks/utils.sql", "unique_id": "macro.dbt_data_applicaion.display_s3_path", "macro_sql": "{% macro display_s3_path(bucket,location_name,sub_dir) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) ~ 'dbt' %}\n{% do log('s3 path: ' ~ s3_path, info=True) %}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applicaion.build_s3_path"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3480456, "supported_languages": null}, "macro.dbt_data_applicaion.salesforce_name_alignment": {"name": "salesforce_name_alignment", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/salesforce/salesforce_name_alignment.sql", "original_file_path": "macros/salesforce/salesforce_name_alignment.sql", "unique_id": "macro.dbt_data_applicaion.salesforce_name_alignment", "macro_sql": "{%- macro salesforce_name_alignment(field_list) -%}\n {{ return(adapter.dispatch('salesforce_name_alignment', 'dbt_data_applicaion')(field_list, *varargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applicaion.default__salesforce_name_alignment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3699112, "supported_languages": null}, "macro.dbt_data_applicaion.default__salesforce_name_alignment": {"name": "default__salesforce_name_alignment", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/salesforce/salesforce_name_alignment.sql", "original_file_path": "macros/salesforce/salesforce_name_alignment.sql", "unique_id": "macro.dbt_data_applicaion.default__salesforce_name_alignment", "macro_sql": "\n\n{%- macro default__salesforce_name_alignment(field_list) -%}\n\n\n{%- if varargs|length >= 1 or field_list is string %}\n\n {%- set error_message = '\n Warning: the `salesforce_name_alignment` macro now takes a single list argument instead of \\\n multiple string arguments. Support for multiple string arguments will be \\\n deprecated in a future release of dbt-utils. The {}.{} model triggered this warning. \\\n '.format(model.package_name, model.name) -%}\n\n {%- do exceptions.warn(error_message) -%}\n\n{%- endif -%}\n\n\n{%- set fields = [] -%}\n{%- set col_final_name =\n {\n 'isdeleted': 'is_deleted',\n 'isprimary': 'is_primary',\n 'contactid': 'contact_id',\n 'createdbyid': 'created_by_id',\n 'createddate': 'created_date',\n 'lastmodifiedbyid': 'last_modified_by_id',\n 'lastmodifieddate': 'last_modified_date',\n 'opportunityid': 'opportunity_id',\n 'currencyisocode': 'currency_iso_code',\n 'accountid': 'account_id',\n 'campaignid': 'campaign_id',\n 'closedate': 'close_date',\n 'expectedrevenue': 'expected_revenue',\n 'fiscalquarter': 'fiscal_quarter',\n 'fiscalyear': 'fiscal_year',\n 'forecastcategoryname': 'forecast_category_name',\n 'forecastcategory': 'forecast_category',\n 'hasopenactivity': 'has_open_activity',\n 'hasopportunitylineitem': 'has_opportunity_line_item',\n 'hasoverduetask': 'has_overdue_task',\n 'isclosed': 'is_closed',\n 'isprivate': 'is_private',\n 'iswon': 'is_won',\n 'nextstep': 'next_step',\n 'ownerid': 'owner_id',\n 'pricebook2id': 'pricebook_2_id',\n 'recordtypeid': 'record_type_id',\n 'stagename': 'stage_name',\n 'totalopportunityquantity': 'total_opportunity_quantity',\n 'lastreferenceddate': 'last_referenced_date',\n 'lastvieweddate': 'last_viewed_date',\n 'contactid': 'contact_id',\n 'lastamountchangedhistoryid': 'last_amount_changed_history_id',\n 'lastclosedatechangedhistoryid': 'last_close_date_changed_history_id',\n 'laststagechangedate': 'last_stage_change_date',\n 'syncedquoteid': 'synced_quote_id',\n 'isstandard': 'is_standard',\n 'isactive': 'is_active',\n 'isarchived': 'is_archived',\n 'convertedaccountid': 'converted_account_id',\n 'convertedcontactid': 'converted_contact_id',\n 'converteddate': 'converted_date',\n 'convertedopportunityid': 'converted_opportunity_id',\n 'countrycode': 'country_code',\n 'donotcall': 'do_not_call',\n 'firstname': 'first_name',\n 'lastname': 'last_name',\n 'hasoptedoutofemail': 'has_opted_out_of_email',\n 'hasoptedoutoffax': 'has_opted_out_of_fax',\n 'isconverted': 'is_converted',\n 'isunreadbyowner': 'is_unread_by_owner',\n 'lasttransferdate': 'last_transfer_date',\n 'mobilephone': 'mobile_phone',\n 'numberofemployees': 'number_of_employees',\n 'photourl': 'photo_url',\n 'postalcode': 'postal_code',\n 'statecode': 'state_code',\n 'emailbounceddate': 'email_bounced_date',\n 'emailbouncedreason': 'email_bounced_reason',\n 'partneraccountid': 'partner_account_id',\n 'jigsawcontactid': 'jigsaw_contact_id',\n 'masterrecordid': 'master_record_id',\n 'leadsource': 'lead_source',\n 'annualrevenue': 'annual_revenue',\n 'lastactivitydate': 'last_activity_date',\n 'probability': 'probability',\n 'acv_expectancy__c': 'acv_expectancy',\n 'orders_included__c': 'CAST(NVL(orders_included__c, 0) AS INTEGER) AS orders_included',\n 'acv__c': 'acv',\n 'start_date__c': 'start_date',\n 'close_date__c': 'close_date',\n 'last_activity_date__c': 'last_activity_date__c',\n 'winback_date__c': 'winback_date',\n 'expiration_date__c': 'expiration_date',\n 'renewal_opportunity_acv__c': 'renewal_opportunity_acv',\n 'end_of_contract_extension_month__c': 'CASE WHEN COALESCE(end_of_contract_extension_month__c, \\'\\') <> \\'\\' THEN CAST(end_of_contract_extension_month__c AS DECIMAL(10,2))\n ELSE NULL END AS end_of_contract_extension_month',\n 'contract_duration_months': 'contract_duration_months',\n 'end_date__c': 'end_date',\n 'tcv__c': 'tcv',\n 'total_discount__c': 'total_discount',\n 'estimated_review_requests_per_month__c': 'estimated_review_requests_per_month',\n 'per_installment__c': 'per_installment',\n 'new_acv__c': 'new_acv',\n 'ps_cost__c': 'ps_cost',\n 'cancellation_date__c': 'cancellation_date',\n 'actual_contract_duration__c': 'actual_contract_duration',\n 'no_dedicated_csm__c': 'no_dedicated_csm',\n 'combined_opportunities_acv__c': 'combined_opportunities_acv',\n 'swell_acv__c': 'swell_acv',\n 'actual_end_date_new__c': 'actual_end_date_new',\n 'current_contract__c': 'CAST(CASE WHEN current_contract__c = true THEN 1 ELSE 0 END AS SMALLINT) AS current_contract',\n 'contract_renewal_date__c': 'contract_renewal_date',\n 'of_won_child_opps__c': 'of_won_child_opps',\n 'total_yotpo_acv__c': 'total_yotpo_acv',\n 'x2_months_contract_renewal_prediction__c': 'x2_months_contract_renewal_prediction',\n 'x2_months_acv_prediction__c': 'x2_months_acv_prediction',\n 'x4_months_acv_prediction': 'x4_months_acv_prediction',\n 'x4_months_contract_renewal_prediction': 'x4_months_contract_renewal_prediction',\n 'swell_orders__c': 'swell_orders',\n 'deal_type__c': 'deal_type',\n 'winback_opportunity__c': 'winback_opportunity',\n 'new_acv_yotpo__c': 'new_acv_yotpo',\n 'most_recent_assignment_reason__c': 'most_recent_assignment_reason',\n 'most_recent_assignment_sub_reason__c': 'most_recent_assignment_sub_reason',\n 'original_referrer__c' : 'original_referrer',\n 'account_referrer__c' : 'account_referrer',\n 'referrer_owner__c' : 'referrer_owner',\n 'original_owner_role__c' : 'original_owner_role',\n 'sales_enginieer__c' : 'sales_enginieer',\n 'loss_to_syndication__c': 'CAST((CASE WHEN loss_to_syndication__c THEN 1 ELSE 0 END) AS SMALLINT) AS loss_to_syndication',\n 'new_acv_swell__c': 'new_acv_swell',\n 'actual_duration_new__c': 'actual_duration_new',\n 'acv_renewal_prediction_dynamic__c': 'acv_renewal_prediction_dynamic',\n 'created_from_cs_lead__c': 'created_from_cs_lead',\n 'attribution_channel__c': 'attribution_channel',\n 'sales_region__c': 'sales_region',\n 'auto_closed_by_ar__c': 'auto_closed_by_ar',\n 'entered_discovery__c': 'entered_discovery',\n 'entered_demo__c': 'entered_demo',\n 'entered_evaluation__c': 'entered_evaluation',\n 'entered_propose__c': 'entered_propose',\n 'entered_contracting__c': 'entered_contracting',\n 'entered_contract_signed__c': 'entered_contract_signed',\n 'entered_closed__c': 'entered_closed',\n 'entered_to_renewal_assist_process_date__c': 'entered_to_renewal_assist_process_date',\n 'entered_to_auto_renewal_process_date__c': 'entered_to_auto_renewal_process_date',\n 'contains_dedicated_csm__c': 'CAST(contains_dedicated_csm__c AS VARCHAR(50)) AS contains_dedicated_csm',\n 'sms_acv__c': 'sms_acv',\n 'cs_comp_paid__c': 'cs_comp_paid',\n 'days_in_current_stage__c': 'days_in_current_stage',\n 'scsm_deal__c': 'scsm_deal',\n 'csm_free_months_value__c': 'csm_free_months_value',\n 'excluded_from_comp_on__c': 'excluded_from_comp_on',\n 'vms_acv__c': 'vms_acv',\n 'retention_csm_free_months__c': 'CASE WHEN COALESCE(retention_csm_free_months__c, \\'\\') <> \\'\\' THEN CAST(retention_csm_free_months__c AS VARCHAR(255))\n ELSE NULL END AS retention_csm_free_months',\n 'main_product_families__c': 'main_product_families',\n 'overlay_ae__c': 'overlay_ae',\n 'partner_referral__c': 'partner_referral',\n 'platform__c': 'platform',\n 'earr_usd__c': 'earr_usd',\n 'signed_with_auto_renewal_clause__c': 'CAST(CASE WHEN signed_with_auto_renewal_clause__c THEN 1 ELSE 0 END AS SMALLINT) AS signed_with_auto_renewal_clause',\n 'sms_usage_cancellation_date__c': 'sms_usage_cancellation_date',\n 'type': 'type',\n 'sales_segment__c': 'sales_segment',\n 'sdr__c': 'sdr',\n 'referral_type__c': 'referral_type',\n 'sdr_role__c': 'sdr_role'\n }\n%}\n\n{%- set col_transformation =\n {\n 'isprimary': 'smallint',\n 'createddate': 'timestamp',\n 'lastmodifieddate': 'timestamp',\n 'iswon': 'smallint',\n 'lastactivitydate': 'timestamp',\n 'last_activity_date__c': 'timestamp',\n 'probability': 'decimal',\n 'acv_expectancy__c': 'decimal',\n 'acv__c': 'decimal',\n 'start_date__c': 'date',\n 'close_date__c': 'date',\n 'winback_date__c': 'date',\n 'expiration_date__c': 'date',\n 'renewal_opportunity_acv__c': 'decimal',\n 'end_date__c': 'date',\n 'tcv__c': 'decimal',\n 'total_discount__c': 'decimal',\n 'per_installment__c': 'decimal',\n 'new_acv__c': 'decimal',\n 'ps_cost__c': 'decimal',\n 'combined_opportunities_acv__c': 'decimal',\n 'swell_acv__c': 'decimal',\n 'total_yotpo_acv__c': 'decimal',\n 'x2_months_acv_prediction__c': 'decimal',\n 'x4_months_acv_prediction': 'decimal',\n 'x2_months_contract_renewal_prediction__c': 'varchar100',\n 'winback_opportunity__c': 'varchar100',\n 'deal_type__c': 'varchar255',\n 'x4_months_contract_renewal_prediction': 'varchar100',\n 'swell_orders__c': 'int',\n 'of_won_child_opps__c': 'int',\n 'actual_end_date_new__c': 'date_no_coalesce',\n 'contract_renewal_date__c': 'date_no_coalesce',\n 'actual_contract_duration__c': 'int',\n 'no_dedicated_csm__c': 'int',\n 'contract_duration_months': 'int',\n 'cancellation_date__c': 'date_no_coalesce',\n 'estimated_review_requests_per_month__c': 'int',\n 'new_acv_yotpo__c': 'decimal',\n 'most_recent_assignment_reason__c': 'varchar1000',\n 'most_recent_assignment_sub_reason__c': 'varchar1000',\n 'original_referrer__c': 'varchar100',\n 'account_referrer__c': 'varchar100',\n 'referrer_owner__c': 'varchar100',\n 'original_owner_role__c': 'varchar100',\n 'sales_enginieer__c': 'varchar100',\n 'new_acv_swell': 'decimal',\n 'actual_duration_new__c': 'decimal',\n 'acv_renewal_prediction_dynamic__c': 'decimal',\n 'created_from_cs_lead__c': 'varchar100',\n 'attribution_channel__c': 'varchar100',\n 'sales_region__c': 'varchar100',\n 'auto_closed_by_ar__c': 'smallint',\n 'entered_discovery__c': 'date_no_coalesce',\n 'entered_demo__c': 'date_no_coalesce',\n 'entered_evaluation__c': 'date_no_coalesce',\n 'entered_propose__c': 'date_no_coalesce',\n 'entered_contracting__c': 'date_no_coalesce',\n 'entered_contract_signed__c': 'date_no_coalesce',\n 'entered_closed__c': 'date_no_coalesce',\n 'entered_to_renewal_assist_process_date__c': 'date_no_coalesce',\n 'entered_to_auto_renewal_process_date__c': 'date_no_coalesce',\n 'sms_acv__c': 'decimal',\n 'cs_comp_paid__c': 'date_no_coalesce',\n 'days_in_current_stage__c': 'int',\n 'scsm_deal__c': 'smallint',\n 'csm_free_months_value__c': 'decimal',\n 'excluded_from_comp_on__c': 'smallint',\n 'vms_acv__c': 'decimal',\n 'main_product_families__c': 'varchar255',\n 'overlay_ae__c': 'varchar100',\n 'partner_referral__c': 'varchar100',\n 'platform__c': 'varchar100',\n 'earr_usd__c': 'int',\n 'sms_usage_cancellation_date__c': 'date_no_coalesce',\n 'stagename': 'lower',\n 'type': 'lower',\n 'sales_segment__c': 'lower',\n 'attribution_channel__c': 'lower',\n 'sdr__c': 'lower',\n 'referral_type__c': 'lower',\n 'sdr_role__c': 'lower'\n }\n%}\n\n{%- for field in field_list -%}\n {%- if field in col_final_name %}\n {%- if field in col_transformation %}\n {%- if col_transformation[field] == 'smallint' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS SMALLINT) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'timestamp' %}\n {%- set _ = fields.append(\n 'CASE WHEN COALESCE(' ~ field ~ ', \\'\\') <> \\'\\' THEN CAST(' ~ field ~ ' AS TIMESTAMP) END AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'decimal' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS DECIMAL(10,2)) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'date' %}\n {%- set _ = fields.append(\n 'CASE WHEN COALESCE(' ~ field ~ ', \\'\\') <> \\'\\' THEN CAST(' ~ field ~ ' AS DATE) END AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'varchar100' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS VARCHAR(100)) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'varchar255' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS VARCHAR(255)) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'varchar1000' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS VARCHAR(1000)) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'int' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS INT) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'date_no_coalesce' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS DATE) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'lower' %}\n {%- set _ = fields.append(\n 'LOWER(' ~ field ~ ') AS ' ~ col_final_name[field]\n ) -%}\n {%- endif -%}\n {%- elif 'CAST' in col_final_name[field] or 'COALESCE' in col_final_name[field] %}\n {%- set _ = fields.append(\n col_final_name[field]\n ) -%}\n {%- else %}\n {%- set _ = fields.append(\n field ~ \" AS \" ~ col_final_name[field]\n ) -%}\n {%- endif -%}\n {%- elif field.endswith('__c') %}\n {%- if field[:-3].replace('_', '') in col_final_name %}\n {%- set _ = fields.append(\n field\n ) -%}\n {%- else %}\n {%- set _ = fields.append(\n field ~ \" AS \" ~ field[:-3]\n ) -%}\n {%- endif -%}\n {%- else %}\n {%- set _ = fields.append(\n field\n ) -%}\n {%- endif -%}\n\n{%- endfor -%}\n\n{{ fields|join(',\\n ') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.392099, "supported_languages": null}, "macro.dbt_data_applicaion.spark__assert_not_null": {"name": "spark__assert_not_null", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/spark_utils/etc/assert_not_null.sql", "original_file_path": "macros/spark_utils/etc/assert_not_null.sql", "unique_id": "macro.dbt_data_applicaion.spark__assert_not_null", "macro_sql": "{% macro spark__assert_not_null(function, arg) %}\n\n {{function}}({{arg}})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.3927028, "supported_languages": null}, "macro.dbt_data_applicaion.aggregate_union": {"name": "aggregate_union", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/yotpo_utils/aggregate_union.sql", "original_file_path": "macros/yotpo_utils/aggregate_union.sql", "unique_id": "macro.dbt_data_applicaion.aggregate_union", "macro_sql": "{% macro aggregate_union(facts, dimension_table=none, dimension_attributes=none, add_calendar=false, lower_calendar_limit=none) -%}\n {{ return(adapter.dispatch('aggregate_union', 'dbt_data_applicaion')(facts,dimension_table,dimension_attributes,add_calendar,lower_calendar_limit)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applicaion.default__aggregate_union"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.405793, "supported_languages": null}, "macro.dbt_data_applicaion.default__aggregate_union": {"name": "default__aggregate_union", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/yotpo_utils/aggregate_union.sql", "original_file_path": "macros/yotpo_utils/aggregate_union.sql", "unique_id": "macro.dbt_data_applicaion.default__aggregate_union", "macro_sql": "\n\n{%- macro default__aggregate_union(facts, dimension_table=none, dimension_attributes=none, add_calendar=false, lower_calendar_limit=none) -%}\n\n{%- if dimension_table is none and dimension_attributes is not none -%}\n {{ exceptions.raise_compiler_error(\"dimension_table and dimension_attributes must be used together\") }}\n{%- endif -%}\n\n{{ config(materialized='view') }}\n\n{%- set ns = namespace(foreign_key_name=none, ref_key=none) -%} \n{%- set facts_metrics = [] -%}\n{%- set facts_dimensions = [] -%}\n\n{%- set metric_prefix = \"metric.\" ~ ref.config.project_name -%}\n{%- set model_prefix = \"model.\" ~ ref.config.project_name -%}\n{%- set dimension_node_name = dimension_table | replace(env_var('USER_SCHEMA'),model_prefix) -%}\n{%- set dimension_table_name = dimension_node_name | replace(model_prefix ~ \".\",\"\") -%}\n\n{% if add_calendar==true %}\n {% if lower_calendar_limit is not defined %}\n {{ exceptions.raise_compiler_error(\"lower_calendar_limit is not definied\") }}\n {% endif %}\n{% endif %}\n\n\n{%- if execute -%} \n {#- inside an execute block because graph nodes aren''t well-defined during parsing -#}\n\n {#- lookup information for dimension_table table -#} \n {% if dimension_table is not none %}\n {%- set dimention_meta = dbt_data_applicaion.get_meta_from_node(dimension_node_name) -%}\n {%- set dimention_primary_key = dbt_data_applicaion.get_config_property(dimension_node_name,dimention_meta,\"primary-key\") -%}\n {%- endif -%}\n\n {#- lookup all metrics that are definied on facts -#}\n {%- set metrics = graph.metrics.values() -%}\n\n {%- for fact in facts -%} \n {%- for metric_name in fact.metrics -%}\n {%- set full_metric_name = metric_prefix ~ \".\" ~ metric_name -%} \n {% set metric_node = (metrics | selectattr('name', 'equalto', metric_name) | list).pop() %}\n {%- if metric_node is not defined -%}\n {{ exceptions.raise_compiler_error(\"metric: \" ~ metric_name ~ \" , does not exist\") }}\n {%- endif -%}\n {%- set fact_source = fact.source | replace(env_var('USER_SCHEMA') ~ '.','') -%}\n {%- do facts_metrics.append({'metric': metric_node, 'table_name': fact_source}) -%}\n {%- endfor -%}\n {%- endfor -%}\n\n\n {%- set ref_time = \"ref_time\" -%}\n {%- set foreign_key = \"foreign_key\" -%}\n {%- set include_columns = [] -%}\n {%- set view_columns = [] -%}\n\n WITH facts_union AS (\n {#- build union of all facts -#}\n {#- collect all date column name to rename -#}\n \n {%- set rename_date_columns = {} -%}\n {%- for metric_info in facts_metrics -%} \n {%- set agg_field_name = dbt_data_applicaion.get_config_property(metric_info.table_name,metric_info.metric,\"sql\") -%} \n {%- set meta = dbt_data_applicaion.get_meta_from_node(model_prefix ~ \".\" ~ metric_info.table_name) -%}\n \n {%- set foreign_keys = dbt_data_applicaion.get_config_property(metric_info.table_name,meta,\"foreign-keys\") -%}\n {%- for foreign_key in foreign_keys -%}\n {%- set ref_table = dbt_data_applicaion.get_config_property(metric_info.table_name,foreign_key,\"ref-table\") -%}\n {%- if ref_table == dimension_table_name -%}\n {%- set ns.foreign_key_name = dbt_data_applicaion.get_config_property(metric_info.table_name,foreign_key,\"foreign-key\") -%}\n {%- set ns.ref_key = dbt_data_applicaion.get_config_property(metric_info.table_name,foreign_key,\"ref-key\") -%}\n\n {%- set dimentions = dbt_data_applicaion.get_config_property(metric_info.table_name,metric_info.metric,\"dimensions\") -%}\n {% if dimentions is defined %}\n {%- for dimension in dimentions -%}\n {% if dimension not in facts_dimensions %}\n {%- do facts_dimensions.append(dimension) -%}\n {%- endif -%}\n {%- endfor -%}\n {%- endif -%}\n {%- endif -%}\n {%- endfor -%}\n\n {%- set _ = rename_date_columns.update({metric_info.metric.timestamp: ref_time}) -%}\n {%- set _ = rename_date_columns.update({ns.foreign_key_name: foreign_key}) -%}\n \n {% if metric_info.metric.timestamp not in include_columns %}\n {%- do include_columns.append(metric_info.metric.timestamp) -%}\n {%- endif -%}\n {% if ns.foreign_key_name not in include_columns %}\n {%- do include_columns.append(ns.foreign_key_name) -%}\n {%- endif -%}\n {%- do include_columns.append(agg_field_name) -%}\n {%- do view_columns.append(agg_field_name) -%}\n {%- endfor -%}\n {%- for dimention in facts_dimensions -%}\n {%- do include_columns.append(dimention) -%}\n {%- endfor -%}\n \n {% if ref_time not in include_columns %}\n {%- do include_columns.append(ref_time) -%}\n {%- endif -%}\n {% if foreign_key not in include_columns %}\n {%- do include_columns.append(foreign_key) -%}\n {%- endif -%}\n {%- set fact_sources = [] -%} \n {%- for fact in facts -%}\n {%- do fact_sources.append(fact.source) -%}\n {%- endfor -%}\n\n {{ dbt_data_applicaion.union_relations_ex(relations=fact_sources, rename_columns=rename_date_columns, include=include_columns) }}\n )\n {% if dimension_attributes is not none %}\n , dimension_tbl AS (\n \n SELECT \n {%- set comma = joiner(\",\") %}\n \n {% if dimention_primary_key not in dimension_attributes %} \n {{ comma() }} {{ dimention_primary_key }} \n {%- endif %}\n\n {% if dimention_primary_key != ns.ref_key %}\n {{ comma() }} {{ ns.ref_key }} \n {%- endif %}\n \n {% if lower_calendar_limit is defined %}\n {{ comma() }} {{ lower_calendar_limit }}\n {%- endif %}\n {%- for column in dimension_attributes -%}\n {{ comma() }}{{ column }}\n {%- endfor %}\n \n FROM {{ dimension_table }}\n )\n {%- endif %}\n\n , facts_union_group AS (\n SELECT \n {%- set comma = joiner(\",\") %}\n {{ comma() }} facts_union.foreign_key\n {{ comma() }} facts_union.ref_time\n {%- for column in view_columns %}\n {{ comma() }} MAX(facts_union.{{ column }}) as {{ column }}\n {%- endfor %}\n \n FROM facts_union \n GROUP BY facts_union.foreign_key,facts_union.ref_time \n )\n\n SELECT \n\n {%- set comma = joiner(\",\") %}\n {%- if dimension_attributes is not none -%}\n {{ comma() }} dimension_tbl.{{ lower_calendar_limit }}\n {%- for column in dimension_attributes %}\n {{ comma() }} dimension_tbl.{{ column }}\n {%- endfor %}\n {%- endif %}\n\n {{ comma() }} facts_union_group.foreign_key\n {%- if add_calendar==true %}\n {{ comma() }} dim_calendar.date\n {%- else -%}\n {{ comma() }} facts_union_group.ref_time\n {%- endif %}\n \n {%- for column in view_columns %}\n {{ comma() }} facts_union_group.{{ column }}\n {%- endfor %}\n\n \n from facts_union_group\n \n {%- if dimension_attributes is not none %} \n INNER JOIN dimension_tbl\n ON foreign_key = dimension_tbl.{{ ns.ref_key }}\n {%- endif -%}\n\n {%- if add_calendar==true %}\n LEFT JOIN dim_calendar\n ON dim_calendar.date BETWEEN CAST(dimension_tbl.{{ lower_calendar_limit }} AS DATE) AND CURRENT_DATE()\n {%- endif %}\n\n{%- endif -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applicaion.get_meta_from_node", "macro.dbt_data_applicaion.get_config_property", "macro.dbt_data_applicaion.union_relations_ex"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.420287, "supported_languages": null}, "macro.dbt_data_applicaion.dwh_updated_column": {"name": "dwh_updated_column", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/yotpo_utils/dwh_updated_column.sql", "original_file_path": "macros/yotpo_utils/dwh_updated_column.sql", "unique_id": "macro.dbt_data_applicaion.dwh_updated_column", "macro_sql": "{% macro dwh_updated_column() %}\n CURRENT_TIMESTAMP AS dwh_updated_at\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4207084, "supported_languages": null}, "macro.dbt_data_applicaion.get_meta_from_node": {"name": "get_meta_from_node", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/yotpo_utils/graph_utils.sql", "original_file_path": "macros/yotpo_utils/graph_utils.sql", "unique_id": "macro.dbt_data_applicaion.get_meta_from_node", "macro_sql": "{%- macro get_meta_from_node(node_name) -%}\n {%- set nodes = (graph.nodes.values() | selectattr('resource_type', 'equalto', \"model\") \n | selectattr('unique_id', 'equalto', node_name) | list) -%}\n {%- if nodes|length >0 -%}\n {%- set check_node = nodes.pop() -%}\n {% if check_node.config.meta is defined %}\n {{ return(check_node.config.meta) }}\n {%- else -%}\n {% do log(\"node \" ~ node_name ~ \" missing meta \", info=true) %}\n {%- endif -%}\n {%- else -%}\n {% do log(\"node \" ~ node_name ~ \" missing\", info=true) %}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4242637, "supported_languages": null}, "macro.dbt_data_applicaion.get_config_property": {"name": "get_config_property", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/yotpo_utils/graph_utils.sql", "original_file_path": "macros/yotpo_utils/graph_utils.sql", "unique_id": "macro.dbt_data_applicaion.get_config_property", "macro_sql": "\n\n\n{%- macro get_config_property(node_name, config_node, property) -%}\n {% if config_node[property] is defined %}\n {{ return(config_node[property]) }}\n {%- else -%}\n {% do log(property ~ \" missing on \" ~ node_name, info=true) %}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.425037, "supported_languages": null}, "macro.dbt_data_applicaion.get_metric": {"name": "get_metric", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/yotpo_utils/graph_utils.sql", "original_file_path": "macros/yotpo_utils/graph_utils.sql", "unique_id": "macro.dbt_data_applicaion.get_metric", "macro_sql": "\n\n\n{%- macro get_metric(metric_name) -%}\n {%- set metrics=graph.metrics.values() -%}\n {%- if metrics|length ==0 -%}\n {{ exceptions.raise_compiler_error(\"metrics missing, please run dbt compile -f\") }}\n {%- endif -%}\n\n \n {%- set metric_name_s = metric_name | string() -%}\n {%- set pos = metric_name_s.index('.') -%}\n {%- set table_name = \"ref('\" ~ metric_name_s[pos+1:] ~ \"')\" -%}\n \n {%- set metric_nodes = (metrics | selectattr('model', 'equalto', table_name) | list) -%}\n {%- if metric_nodes|length >0 -%}\n {%- set found_metric_nodes = [] -%}\n {%- for metric_node in metric_nodes -%} \n {%- do found_metric_nodes.append({'metric': metric_node, 'table_name': metric_name_s[pos+1:]}) -%}\n {%- endfor -%}\n {{ return(found_metric_nodes) }}\n {%- else -%}\n {% do log(\"model: \" ~ metric_name_s ~ \" missing metric definition\", info=true) %}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4274347, "supported_languages": null}, "macro.dbt_data_applicaion.are_metrics_valid": {"name": "are_metrics_valid", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/yotpo_utils/graph_utils.sql", "original_file_path": "macros/yotpo_utils/graph_utils.sql", "unique_id": "macro.dbt_data_applicaion.are_metrics_valid", "macro_sql": "\n\n{%- macro are_metrics_valid(metric_name) -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4276693, "supported_languages": null}, "macro.dbt_data_applicaion.incremental_column": {"name": "incremental_column", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/yotpo_utils/incremental_column.sql", "original_file_path": "macros/yotpo_utils/incremental_column.sql", "unique_id": "macro.dbt_data_applicaion.incremental_column", "macro_sql": "{% macro incremental_column() %}\n {% if is_incremental() %} \"incremental\" {% else %} \"full\" {% endif %} as build_source \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.is_incremental"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4282367, "supported_languages": null}, "macro.dbt_data_applicaion.incremental_table_columns": {"name": "incremental_table_columns", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/yotpo_utils/incremental_table_columns.sql", "original_file_path": "macros/yotpo_utils/incremental_table_columns.sql", "unique_id": "macro.dbt_data_applicaion.incremental_table_columns", "macro_sql": "{% macro incremental_table_columns() %}\n {{ incremental_column() }},\n {{ dwh_updated_column() }} \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applicaion.incremental_column", "macro.dbt_data_applicaion.dwh_updated_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.428681, "supported_languages": null}, "macro.dbt_data_applicaion.union_relations_ex": {"name": "union_relations_ex", "resource_type": "macro", "package_name": "dbt_data_applicaion", "path": "macros/yotpo_utils/union.sql", "original_file_path": "macros/yotpo_utils/union.sql", "unique_id": "macro.dbt_data_applicaion.union_relations_ex", "macro_sql": "{%- macro union_relations_ex(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', rename_columns=none) -%}\n\n{%- if exclude and include -%}\n {{ exceptions.raise_compiler_error(\"Both an exclude and include list were provided to the `union` macro. Only one is allowed\") }}\n {%- endif -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. -#}\n {%- if not execute %}\n {{ return('') }}\n {% endif -%}\n\n {%- set column_override = column_override if column_override is not none else {} -%}\n {%- set rename_columns = rename_columns if rename_columns is not none else {} -%}\n\n {%- set relation_columns = {} -%}\n {%- set column_superset = {} -%}\n\n {%- for relation in relations -%}\n\n {%- do relation_columns.update({relation: {}}) -%}\n\n {%- do dbt_utils._is_relation(relation, 'union_relations') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'union_relations') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) -%}\n {%- for col in cols -%}\n\n {#- If an exclude list was provided and the column is in the list, do nothing -#}\n {%- if exclude and col.column in exclude -%}\n\n {#- If an include list was provided and the column is not in the list, do nothing -#}\n {%- elif include and col.column not in include -%}\n\n {#- Otherwise add the column to the column superset -#}\n {%- else -%}\n\n {#- update the list of columns in this relation -#}\n {%- set rename_col = rename_columns[col.column]|default(col.column) -%}\n \n {%- do relation_columns[relation].update({rename_col: col}) -%}\n\n {%- if rename_col in column_superset -%}\n\n {%- set stored = column_superset[rename_col] -%}\n {%- if col.is_string() and stored.is_string() and col.string_size() > stored.string_size() -%}\n\n {%- do column_superset.update({rename_col: col}) -%}\n\n {%- endif %}\n\n {%- else -%}\n\n {%- do column_superset.update({rename_col: col}) -%}\n\n {%- endif -%}\n\n {%- endif -%}\n\n {%- endfor -%}\n {%- endfor -%}\n\n {%- set ordered_column_names = column_superset.keys() -%}\n\n {%- for relation in relations %}\n\n (\n select\n\n cast({{ dbt_utils.string_literal(relation) }} as {{ dbt_utils.type_string() }}) as {{ source_column_name }},\n {% for col_name in ordered_column_names -%}\n {%- set col = column_superset[col_name] %}\n {%- set col_type = column_override.get(col.column, col.data_type) %}\n {%- set col_name_quote = adapter.quote(col_name) %}\n {%- set orig_col_name = adapter.quote(relation_columns[relation][col_name].column) if col_name in relation_columns[relation] else 'null' %}\n cast({{ orig_col_name }} as {{ col_type }}) as {{ col_name_quote }} {% if not loop.last %},{% endif -%}\n\n {%- endfor %}\n\n from {{ relation }}\n )\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.string_literal", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4375174, "supported_languages": null}, "macro.dbt_data_applications.db_source": {"name": "db_source", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/db_source.sql", "original_file_path": "macros/db_source.sql", "unique_id": "macro.dbt_data_applications.db_source", "macro_sql": "{% macro db_source(source_name, table_name) %}\n\n{% if target.name != 'prod' %}\n {{ source('dbt_seed', table_name)}}\n{% else %}\n {{ source(source_name, table_name)}}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4385126, "supported_languages": null}, "macro.dbt_data_applications.clean_db_lakefs": {"name": "clean_db_lakefs", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/databricks/clean_db_lakefs.sql", "original_file_path": "macros/databricks/clean_db_lakefs.sql", "unique_id": "macro.dbt_data_applications.clean_db_lakefs", "macro_sql": "{% macro clean_db_lakefs(db_name, repo, branch) %}\n{% set sql %}\n DROP DATABASE IF EXISTS {{ db_name }} CASCADE;\n{% endset %}\n{% do run_query(sql) %}\n\n{% set s3_path = 'lakefs://' ~ repo ~ '/' ~ branch ~ '/dbt' %}\n{% do log('clean db: ' ~ db_name ~ ' s3 path: ' ~ s3_path, info=True) %}\n\n\n{% set sql %}\n CREATE DATABASE IF NOT EXISTS {{ db_name }} LOCATION '{{ s3_path }}';\n{% endset %}\n{% do run_query(sql) %}\n\n-- add meta\n{% set sql %}\n DROP DATABASE IF EXISTS {{ db_name }}_meta CASCADE;\n{% endset %}\n{% do run_query(sql) %}\n\n{% set s3_path = 'lakefs://' ~ repo ~ '/' ~ branch ~ '/meta' %}\n{% do log('clean db: ' ~ db_name ~ ' s3 path: ' ~ s3_path, info=True) %}\n\n{% set sql %}\n CREATE DATABASE IF NOT EXISTS {{ db_name }}_meta LOCATION '{{ s3_path }}';\n{% endset %}\n{% do run_query(sql) %}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4414911, "supported_languages": null}, "macro.dbt_data_applications.clean_s3": {"name": "clean_s3", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/databricks/clean_s3.sql", "original_file_path": "macros/databricks/clean_s3.sql", "unique_id": "macro.dbt_data_applications.clean_s3", "macro_sql": "{% macro clean_s3(db_name,bucket, location_name,sub_dir) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) ~ '/dbt' %}\n{% do log('s3 path: ' ~ s3_path, info=True) %}\n\n{{ dbutils.fs.rm(s3_path, true) }}\n\n\n{% do log(\"clean_s3: \" + db_name, info=True) %}\n{{ dbt_utils.log_info(\"clean_s3: \" + db_name) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.build_s3_path", "macro.dbt_utils.log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4428382, "supported_languages": null}, "macro.dbt_data_applications.create_db": {"name": "create_db", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/databricks/create_db.sql", "original_file_path": "macros/databricks/create_db.sql", "unique_id": "macro.dbt_data_applications.create_db", "macro_sql": "{% macro create_db(db_name,bucket,location_name,sub_dir) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) %}\n\n{% set sql %}\n CREATE DATABASE IF NOT EXISTS {{ db_name }} LOCATION '{{ s3_path }}';\n{% endset %}\n{% do run_query(sql) %}\n\n{% do log(\"create_db: \" + db_name, info=True) %}\n{{ dbt_utils.log_info(\"create_db: \" + db_name) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.build_s3_path", "macro.dbt.run_query", "macro.dbt_utils.log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4441829, "supported_languages": null}, "macro.dbt_data_applications.delete_db": {"name": "delete_db", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/databricks/delete_db.sql", "original_file_path": "macros/databricks/delete_db.sql", "unique_id": "macro.dbt_data_applications.delete_db", "macro_sql": "{% macro delete_db(db_name,bucket,location_name,sub_dir) %}\n{% set sql %}\n DROP DATABASE IF EXISTS {{ db_name }} CASCADE;\n{% endset %}\n{% do run_query(sql) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) ~ '/dbt' %}\ndbutils.fs.rm(s3_path, true)\n\n-- meta\n{% set sql %}\n DROP DATABASE IF EXISTS {{ db_name }}_meta CASCADE;\n{% endset %}\n{% do run_query(sql) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) ~ '/meta' %}\ndbutils.fs.rm(s3_path, true)\n\n\n{% do log(\"delete_db: \" + db_name, info=True) %}\n{{ dbt_utils.log_info(\"delete_db: \" + db_name) }}\n{{ dbt_utils.log_info(s3_path) }}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt_data_applications.build_s3_path", "macro.dbt_utils.log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4462984, "supported_languages": null}, "macro.dbt_data_applications.build_s3_path": {"name": "build_s3_path", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/databricks/utils.sql", "original_file_path": "macros/databricks/utils.sql", "unique_id": "macro.dbt_data_applications.build_s3_path", "macro_sql": "{% macro build_s3_path(bucket,location_name,sub_dir) %}\n{% if sub_dir is none or sub_dir=='None' %}\n {% set s3_path = 's3://' ~ bucket ~ '/' ~ location_name %}\n{% else %}\n {% set s3_path = 's3://' ~ bucket ~ '/' ~ location_name ~ '/' ~ sub_dir %}\n{%endif %}\n{{ return(s3_path) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.447624, "supported_languages": null}, "macro.dbt_data_applications.display_s3_path": {"name": "display_s3_path", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/databricks/utils.sql", "original_file_path": "macros/databricks/utils.sql", "unique_id": "macro.dbt_data_applications.display_s3_path", "macro_sql": "{% macro display_s3_path(bucket,location_name,sub_dir) %}\n\n{% set s3_path = build_s3_path(bucket,location_name,sub_dir) %}\n{% do log('s3 path: ' ~ s3_path, info=True) %}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.build_s3_path"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.448306, "supported_languages": null}, "macro.dbt_data_applications.salesforce_name_alignment": {"name": "salesforce_name_alignment", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/salesforce/salesforce_name_alignment.sql", "original_file_path": "macros/salesforce/salesforce_name_alignment.sql", "unique_id": "macro.dbt_data_applications.salesforce_name_alignment", "macro_sql": "{%- macro salesforce_name_alignment(field_list) -%}\n {{ return(adapter.dispatch('salesforce_name_alignment', 'dbt_data_applications')(field_list, *varargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.default__salesforce_name_alignment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4702914, "supported_languages": null}, "macro.dbt_data_applications.default__salesforce_name_alignment": {"name": "default__salesforce_name_alignment", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/salesforce/salesforce_name_alignment.sql", "original_file_path": "macros/salesforce/salesforce_name_alignment.sql", "unique_id": "macro.dbt_data_applications.default__salesforce_name_alignment", "macro_sql": "\n\n{%- macro default__salesforce_name_alignment(field_list) -%}\n\n\n{%- if varargs|length >= 1 or field_list is string %}\n\n {%- set error_message = '\n Warning: the `salesforce_name_alignment` macro now takes a single list argument instead of \\\n multiple string arguments. Support for multiple string arguments will be \\\n deprecated in a future release of dbt-utils. The {}.{} model triggered this warning. \\\n '.format(model.package_name, model.name) -%}\n\n {%- do exceptions.warn(error_message) -%}\n\n{%- endif -%}\n\n\n{%- set fields = [] -%}\n{%- set col_final_name =\n {\n 'isdeleted': 'is_deleted',\n 'isprimary': 'is_primary',\n 'contactid': 'contact_id',\n 'createdbyid': 'created_by_id',\n 'createddate': 'created_date',\n 'lastmodifiedbyid': 'last_modified_by_id',\n 'lastmodifieddate': 'last_modified_date',\n 'opportunityid': 'opportunity_id',\n 'currencyisocode': 'currency_iso_code',\n 'accountid': 'account_id',\n 'campaignid': 'campaign_id',\n 'closedate': 'close_date',\n 'expectedrevenue': 'expected_revenue',\n 'fiscalquarter': 'fiscal_quarter',\n 'fiscalyear': 'fiscal_year',\n 'forecastcategoryname': 'forecast_category_name',\n 'forecastcategory': 'forecast_category',\n 'hasopenactivity': 'has_open_activity',\n 'hasopportunitylineitem': 'has_opportunity_line_item',\n 'hasoverduetask': 'has_overdue_task',\n 'isclosed': 'is_closed',\n 'isprivate': 'is_private',\n 'iswon': 'is_won',\n 'nextstep': 'next_step',\n 'ownerid': 'owner_id',\n 'pricebook2id': 'pricebook_2_id',\n 'recordtypeid': 'record_type_id',\n 'stagename': 'stage_name',\n 'totalopportunityquantity': 'total_opportunity_quantity',\n 'lastreferenceddate': 'last_referenced_date',\n 'lastvieweddate': 'last_viewed_date',\n 'contactid': 'contact_id',\n 'lastamountchangedhistoryid': 'last_amount_changed_history_id',\n 'lastclosedatechangedhistoryid': 'last_close_date_changed_history_id',\n 'laststagechangedate': 'last_stage_change_date',\n 'syncedquoteid': 'synced_quote_id',\n 'isstandard': 'is_standard',\n 'isactive': 'is_active',\n 'isarchived': 'is_archived',\n 'convertedaccountid': 'converted_account_id',\n 'convertedcontactid': 'converted_contact_id',\n 'converteddate': 'converted_date',\n 'convertedopportunityid': 'converted_opportunity_id',\n 'countrycode': 'country_code',\n 'donotcall': 'do_not_call',\n 'firstname': 'first_name',\n 'lastname': 'last_name',\n 'hasoptedoutofemail': 'has_opted_out_of_email',\n 'hasoptedoutoffax': 'has_opted_out_of_fax',\n 'isconverted': 'is_converted',\n 'isunreadbyowner': 'is_unread_by_owner',\n 'lasttransferdate': 'last_transfer_date',\n 'mobilephone': 'mobile_phone',\n 'numberofemployees': 'number_of_employees',\n 'photourl': 'photo_url',\n 'postalcode': 'postal_code',\n 'statecode': 'state_code',\n 'emailbounceddate': 'email_bounced_date',\n 'emailbouncedreason': 'email_bounced_reason',\n 'partneraccountid': 'partner_account_id',\n 'jigsawcontactid': 'jigsaw_contact_id',\n 'masterrecordid': 'master_record_id',\n 'leadsource': 'lead_source',\n 'annualrevenue': 'annual_revenue',\n 'lastactivitydate': 'last_activity_date',\n 'probability': 'probability',\n 'acv_expectancy__c': 'acv_expectancy',\n 'orders_included__c': 'CAST(NVL(orders_included__c, 0) AS INTEGER) AS orders_included',\n 'acv__c': 'acv',\n 'start_date__c': 'start_date',\n 'close_date__c': 'close_date',\n 'last_activity_date__c': 'last_activity_date__c',\n 'winback_date__c': 'winback_date',\n 'expiration_date__c': 'expiration_date',\n 'renewal_opportunity_acv__c': 'renewal_opportunity_acv',\n 'end_of_contract_extension_month__c': 'CASE WHEN COALESCE(end_of_contract_extension_month__c, \\'\\') <> \\'\\' THEN CAST(end_of_contract_extension_month__c AS DECIMAL(10,2))\n ELSE NULL END AS end_of_contract_extension_month',\n 'contract_duration_months': 'contract_duration_months',\n 'end_date__c': 'end_date',\n 'tcv__c': 'tcv',\n 'total_discount__c': 'total_discount',\n 'estimated_review_requests_per_month__c': 'estimated_review_requests_per_month',\n 'per_installment__c': 'per_installment',\n 'new_acv__c': 'new_acv',\n 'ps_cost__c': 'ps_cost',\n 'cancellation_date__c': 'cancellation_date',\n 'actual_contract_duration__c': 'actual_contract_duration',\n 'no_dedicated_csm__c': 'no_dedicated_csm',\n 'combined_opportunities_acv__c': 'combined_opportunities_acv',\n 'swell_acv__c': 'swell_acv',\n 'actual_end_date_new__c': 'actual_end_date_new',\n 'current_contract__c': 'CAST(CASE WHEN current_contract__c = true THEN 1 ELSE 0 END AS SMALLINT) AS current_contract',\n 'contract_renewal_date__c': 'contract_renewal_date',\n 'of_won_child_opps__c': 'of_won_child_opps',\n 'total_yotpo_acv__c': 'total_yotpo_acv',\n 'x2_months_contract_renewal_prediction__c': 'x2_months_contract_renewal_prediction',\n 'x2_months_acv_prediction__c': 'x2_months_acv_prediction',\n 'x4_months_acv_prediction': 'x4_months_acv_prediction',\n 'x4_months_contract_renewal_prediction': 'x4_months_contract_renewal_prediction',\n 'swell_orders__c': 'swell_orders',\n 'deal_type__c': 'deal_type',\n 'winback_opportunity__c': 'winback_opportunity',\n 'new_acv_yotpo__c': 'new_acv_yotpo',\n 'most_recent_assignment_reason__c': 'most_recent_assignment_reason',\n 'most_recent_assignment_sub_reason__c': 'most_recent_assignment_sub_reason',\n 'original_referrer__c' : 'original_referrer',\n 'account_referrer__c' : 'account_referrer',\n 'referrer_owner__c' : 'referrer_owner',\n 'original_owner_role__c' : 'original_owner_role',\n 'sales_enginieer__c' : 'sales_enginieer',\n 'loss_to_syndication__c': 'CAST((CASE WHEN loss_to_syndication__c THEN 1 ELSE 0 END) AS SMALLINT) AS loss_to_syndication',\n 'new_acv_swell__c': 'new_acv_swell',\n 'actual_duration_new__c': 'actual_duration_new',\n 'acv_renewal_prediction_dynamic__c': 'acv_renewal_prediction_dynamic',\n 'created_from_cs_lead__c': 'created_from_cs_lead',\n 'attribution_channel__c': 'attribution_channel',\n 'sales_region__c': 'sales_region',\n 'auto_closed_by_ar__c': 'auto_closed_by_ar',\n 'entered_discovery__c': 'entered_discovery',\n 'entered_demo__c': 'entered_demo',\n 'entered_evaluation__c': 'entered_evaluation',\n 'entered_propose__c': 'entered_propose',\n 'entered_contracting__c': 'entered_contracting',\n 'entered_contract_signed__c': 'entered_contract_signed',\n 'entered_closed__c': 'entered_closed',\n 'entered_to_renewal_assist_process_date__c': 'entered_to_renewal_assist_process_date',\n 'entered_to_auto_renewal_process_date__c': 'entered_to_auto_renewal_process_date',\n 'contains_dedicated_csm__c': 'CAST(contains_dedicated_csm__c AS VARCHAR(50)) AS contains_dedicated_csm',\n 'sms_acv__c': 'sms_acv',\n 'cs_comp_paid__c': 'cs_comp_paid',\n 'days_in_current_stage__c': 'days_in_current_stage',\n 'scsm_deal__c': 'scsm_deal',\n 'csm_free_months_value__c': 'csm_free_months_value',\n 'excluded_from_comp_on__c': 'excluded_from_comp_on',\n 'vms_acv__c': 'vms_acv',\n 'retention_csm_free_months__c': 'CASE WHEN COALESCE(retention_csm_free_months__c, \\'\\') <> \\'\\' THEN CAST(retention_csm_free_months__c AS VARCHAR(255))\n ELSE NULL END AS retention_csm_free_months',\n 'main_product_families__c': 'main_product_families',\n 'overlay_ae__c': 'overlay_ae',\n 'partner_referral__c': 'partner_referral',\n 'platform__c': 'platform',\n 'earr_usd__c': 'earr_usd',\n 'signed_with_auto_renewal_clause__c': 'CAST(CASE WHEN signed_with_auto_renewal_clause__c THEN 1 ELSE 0 END AS SMALLINT) AS signed_with_auto_renewal_clause',\n 'sms_usage_cancellation_date__c': 'sms_usage_cancellation_date',\n 'type': 'type',\n 'sales_segment__c': 'sales_segment',\n 'sdr__c': 'sdr',\n 'referral_type__c': 'referral_type',\n 'sdr_role__c': 'sdr_role'\n }\n%}\n\n{%- set col_transformation =\n {\n 'isprimary': 'smallint',\n 'createddate': 'timestamp',\n 'lastmodifieddate': 'timestamp',\n 'iswon': 'smallint',\n 'lastactivitydate': 'timestamp',\n 'last_activity_date__c': 'timestamp',\n 'probability': 'decimal',\n 'acv_expectancy__c': 'decimal',\n 'acv__c': 'decimal',\n 'start_date__c': 'date',\n 'close_date__c': 'date',\n 'winback_date__c': 'date',\n 'expiration_date__c': 'date',\n 'renewal_opportunity_acv__c': 'decimal',\n 'end_date__c': 'date',\n 'tcv__c': 'decimal',\n 'total_discount__c': 'decimal',\n 'per_installment__c': 'decimal',\n 'new_acv__c': 'decimal',\n 'ps_cost__c': 'decimal',\n 'combined_opportunities_acv__c': 'decimal',\n 'swell_acv__c': 'decimal',\n 'total_yotpo_acv__c': 'decimal',\n 'x2_months_acv_prediction__c': 'decimal',\n 'x4_months_acv_prediction': 'decimal',\n 'x2_months_contract_renewal_prediction__c': 'varchar100',\n 'winback_opportunity__c': 'varchar100',\n 'deal_type__c': 'varchar255',\n 'x4_months_contract_renewal_prediction': 'varchar100',\n 'swell_orders__c': 'int',\n 'of_won_child_opps__c': 'int',\n 'actual_end_date_new__c': 'date_no_coalesce',\n 'contract_renewal_date__c': 'date_no_coalesce',\n 'actual_contract_duration__c': 'int',\n 'no_dedicated_csm__c': 'int',\n 'contract_duration_months': 'int',\n 'cancellation_date__c': 'date_no_coalesce',\n 'estimated_review_requests_per_month__c': 'int',\n 'new_acv_yotpo__c': 'decimal',\n 'most_recent_assignment_reason__c': 'varchar1000',\n 'most_recent_assignment_sub_reason__c': 'varchar1000',\n 'original_referrer__c': 'varchar100',\n 'account_referrer__c': 'varchar100',\n 'referrer_owner__c': 'varchar100',\n 'original_owner_role__c': 'varchar100',\n 'sales_enginieer__c': 'varchar100',\n 'new_acv_swell': 'decimal',\n 'actual_duration_new__c': 'decimal',\n 'acv_renewal_prediction_dynamic__c': 'decimal',\n 'created_from_cs_lead__c': 'varchar100',\n 'attribution_channel__c': 'varchar100',\n 'sales_region__c': 'varchar100',\n 'auto_closed_by_ar__c': 'smallint',\n 'entered_discovery__c': 'date_no_coalesce',\n 'entered_demo__c': 'date_no_coalesce',\n 'entered_evaluation__c': 'date_no_coalesce',\n 'entered_propose__c': 'date_no_coalesce',\n 'entered_contracting__c': 'date_no_coalesce',\n 'entered_contract_signed__c': 'date_no_coalesce',\n 'entered_closed__c': 'date_no_coalesce',\n 'entered_to_renewal_assist_process_date__c': 'date_no_coalesce',\n 'entered_to_auto_renewal_process_date__c': 'date_no_coalesce',\n 'sms_acv__c': 'decimal',\n 'cs_comp_paid__c': 'date_no_coalesce',\n 'days_in_current_stage__c': 'int',\n 'scsm_deal__c': 'smallint',\n 'csm_free_months_value__c': 'decimal',\n 'excluded_from_comp_on__c': 'smallint',\n 'vms_acv__c': 'decimal',\n 'main_product_families__c': 'varchar255',\n 'overlay_ae__c': 'varchar100',\n 'partner_referral__c': 'varchar100',\n 'platform__c': 'varchar100',\n 'earr_usd__c': 'int',\n 'sms_usage_cancellation_date__c': 'date_no_coalesce',\n 'stagename': 'lower',\n 'type': 'lower',\n 'sales_segment__c': 'lower',\n 'attribution_channel__c': 'lower',\n 'sdr__c': 'lower',\n 'referral_type__c': 'lower',\n 'sdr_role__c': 'lower'\n }\n%}\n\n{%- for field in field_list -%}\n {%- if field in col_final_name %}\n {%- if field in col_transformation %}\n {%- if col_transformation[field] == 'smallint' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS SMALLINT) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'timestamp' %}\n {%- set _ = fields.append(\n 'CASE WHEN COALESCE(' ~ field ~ ', \\'\\') <> \\'\\' THEN CAST(' ~ field ~ ' AS TIMESTAMP) END AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'decimal' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS DECIMAL(10,2)) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'date' %}\n {%- set _ = fields.append(\n 'CASE WHEN COALESCE(' ~ field ~ ', \\'\\') <> \\'\\' THEN CAST(' ~ field ~ ' AS DATE) END AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'varchar100' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS VARCHAR(100)) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'varchar255' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS VARCHAR(255)) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'varchar1000' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS VARCHAR(1000)) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'int' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS INT) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'date_no_coalesce' %}\n {%- set _ = fields.append(\n 'CAST(' ~ field ~ ' AS DATE) AS ' ~ col_final_name[field]\n ) -%}\n {%- elif col_transformation[field] == 'lower' %}\n {%- set _ = fields.append(\n 'LOWER(' ~ field ~ ') AS ' ~ col_final_name[field]\n ) -%}\n {%- endif -%}\n {%- elif 'CAST' in col_final_name[field] or 'COALESCE' in col_final_name[field] %}\n {%- set _ = fields.append(\n col_final_name[field]\n ) -%}\n {%- else %}\n {%- set _ = fields.append(\n field ~ \" AS \" ~ col_final_name[field]\n ) -%}\n {%- endif -%}\n {%- elif field.endswith('__c') %}\n {%- if field[:-3].replace('_', '') in col_final_name %}\n {%- set _ = fields.append(\n field\n ) -%}\n {%- else %}\n {%- set _ = fields.append(\n field ~ \" AS \" ~ field[:-3]\n ) -%}\n {%- endif -%}\n {%- else %}\n {%- set _ = fields.append(\n field\n ) -%}\n {%- endif -%}\n\n{%- endfor -%}\n\n{{ fields|join(',\\n ') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4931824, "supported_languages": null}, "macro.dbt_data_applications.spark__assert_not_null": {"name": "spark__assert_not_null", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/spark_utils/etc/assert_not_null.sql", "original_file_path": "macros/spark_utils/etc/assert_not_null.sql", "unique_id": "macro.dbt_data_applications.spark__assert_not_null", "macro_sql": "{% macro spark__assert_not_null(function, arg) %}\n\n {{function}}({{arg}})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4938307, "supported_languages": null}, "macro.dbt_data_applications.aggregate_calendar_profile": {"name": "aggregate_calendar_profile", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/aggregate_calendar_profile.sql", "original_file_path": "macros/yotpo_utils/aggregate_calendar_profile.sql", "unique_id": "macro.dbt_data_applications.aggregate_calendar_profile", "macro_sql": "{% macro aggregate_calendar_profile(sources, keys=none, calendar=none, custom_columns=[], sql_extra=none) -%}\n {{ return(adapter.dispatch('aggregate_calendar_profile', 'dbt_data_applications')(sources, keys, calendar, custom_columns, sql_extra)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.default__aggregate_calendar_profile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.4963017, "supported_languages": null}, "macro.dbt_data_applications.default__aggregate_calendar_profile": {"name": "default__aggregate_calendar_profile", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/aggregate_calendar_profile.sql", "original_file_path": "macros/yotpo_utils/aggregate_calendar_profile.sql", "unique_id": "macro.dbt_data_applications.default__aggregate_calendar_profile", "macro_sql": "\n\n{%- macro default__aggregate_calendar_profile(sources, keys=none, calendar=none, custom_columns=[], sql_extra=none) -%}\n\n {% if custom_columns is none %}\n {%- set custom_columns = [] -%} \n {%- endif -%}\n\n {% if calendar is defined and calendar.add_calendar == True%}\n {% if calendar.column_time_frame_key_name is not defined %}\n {{ exceptions.raise_compiler_error(\"column_time_frame_key_name is not defined\") }}\n {% endif %}\n {% if calendar.lower_calendar_limit is not defined %}\n {{ exceptions.raise_compiler_error(\"lower_calendar_limit is not defined\") }}\n {% endif %}\n {% if calendar.calendar_name is not defined %}\n {{ exceptions.raise_compiler_error(\"calendar_name is not defined\") }}\n {% endif %}\n {% if calendar.date_field is not defined %}\n {{ exceptions.raise_compiler_error(\"date_field is not defined\") }}\n {% endif %}\n {% endif %}\n\n {%- if execute -%} \n\n {% if calendar is defined and calendar.add_calendar == True %}\n {%- do custom_columns.append(calendar.calendar_name ~ \".\" ~ calendar.date_field) -%}\n {% endif %} \n\n {{ dbt_data_applications.base_profile(sources, keys, custom_columns, sql_extra) }}\n\n {% if calendar is defined and calendar.add_calendar == True %}\n\n {%- set calendar_join_sql = \"RIGHT JOIN \" ~ calendar.calendar_name ~ \" ON \" ~ \n \"sources_union_grouped.\" ~ calendar.column_time_frame_key_name ~ \"=\" ~ calendar.calendar_name ~ \".\" ~ calendar.date_field ~ \n \" WHERE \" ~ calendar.calendar_name ~ \".\" ~ calendar.date_field ~ \" BETWEEN CAST('\" ~ calendar.lower_calendar_limit ~ \"' AS DATE) AND CURRENT_DATE()\" -%}\n\n {{ calendar_join_sql }}\n {% endif %} \n\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.base_profile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.499711, "supported_languages": null}, "macro.dbt_data_applications.aggregate_daily_profile": {"name": "aggregate_daily_profile", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/aggregate_daily_profile.sql", "original_file_path": "macros/yotpo_utils/aggregate_daily_profile.sql", "unique_id": "macro.dbt_data_applications.aggregate_daily_profile", "macro_sql": "{% macro aggregate_daily_profile(sources, keys=none, calendar=none, custom_columns=none, sql_extra=none) -%}\n {{ return(adapter.dispatch('aggregate_daily_profile', 'dbt_data_applications')(sources, keys, calendar, custom_columns, sql_extra)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.default__aggregate_daily_profile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5008636, "supported_languages": null}, "macro.dbt_data_applications.default__aggregate_daily_profile": {"name": "default__aggregate_daily_profile", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/aggregate_daily_profile.sql", "original_file_path": "macros/yotpo_utils/aggregate_daily_profile.sql", "unique_id": "macro.dbt_data_applications.default__aggregate_daily_profile", "macro_sql": "\n\n{%- macro default__aggregate_daily_profile(sources, keys=none, calendar=none, custom_columns=none, sql_extra=none) -%}\n\n {% set calendar_name = var('daily_calendar_table', 'dim_calendar') %}\n {% set date_field = var('daily_calendar_field', 'date') %}\n\n {% if calendar is defined and calendar.add_calendar == True %}\n {% do calendar.update({'calendar_name': 'dim_calendar', 'date_field': date_field}) %}\n {% endif %}\n\n {{ dbt_data_applications.aggregate_calendar_profile(sources, keys, calendar, custom_columns, sql_extra) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.aggregate_calendar_profile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5023386, "supported_languages": null}, "macro.dbt_data_applications.base_profile": {"name": "base_profile", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/base_profile.sql", "original_file_path": "macros/yotpo_utils/base_profile.sql", "unique_id": "macro.dbt_data_applications.base_profile", "macro_sql": "{% macro base_profile(sources, keys=none, custom_columns=[], sql_extra=none) -%}\n {{ return(adapter.dispatch('base_profile', 'dbt_data_applications')(sources, keys, custom_columns, sql_extra)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.default__base_profile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5053258, "supported_languages": null}, "macro.dbt_data_applications.default__base_profile": {"name": "default__base_profile", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/base_profile.sql", "original_file_path": "macros/yotpo_utils/base_profile.sql", "unique_id": "macro.dbt_data_applications.default__base_profile", "macro_sql": "\n\n{%- macro default__base_profile(sources, keys, custom_columns, sql_extra) -%}\n\n{%- if execute -%} \n {{ config(materialized='view') }}\n\n {%- set rename_columns = {} -%}\n {%- set union_columns = [] -%}\n {%- set include_columns = [] -%} \n {%- for key in keys -%}\n {%- do include_columns.append(key) -%}\n {%- endfor -%}\n {%- set sources_ref = [] -%} \n\n {% if custom_columns is none %}\n {%- set custom_columns = [] -%} \n {%- endif -%}\n\n {%- for source_entry in sources -%}\n {#- include_columns - combination of all columns -#}\n {%- for field in source_entry.fields -%}\n {% if field not in union_columns %}\n {%- do union_columns.append(field) -%} \n {%- endif -%}\n {% if field not in include_columns %}\n {%- do include_columns.append(field) -%}\n {%- endif -%}\n {%- endfor -%}\n\n {#- foreign_key_mappings - add to all columns, and rename collection if needed -#}\n \n {%- for key_mappings_key in source_entry.foreign_key_mappings -%}\n {% if key_mappings_key is defined and source_entry.foreign_key_mappings[key_mappings_key] is defined%}\n {%- set key_mappings_value = source_entry.foreign_key_mappings[key_mappings_key] -%}\n {% if key_mappings_value not in keys %}\n {{ exceptions.raise_compiler_error(key_mappings_value ~ \" not defined in keys\") }}\n {%- endif -%}\n {%- do include_columns.append(key_mappings_key) -%}\n {% if key_mappings_key != key_mappings_value %}\n {%- set _ = rename_columns.update({key_mappings_key: key_mappings_value}) -%}\n {%- endif -%}\n {%- endif -%}\n {%- endfor -%}\n\n {#- column to specify from which original table the data came from -#}\n {%- do sources_ref.append(source_entry.source) -%}\n {%- endfor -%}\n\n\n WITH sources_union AS (\n {#- build union of all sources -#}\n \n {# {% do dbt_data_applications.yoda_log(\"relations \" ~ sources_ref) %}\n {% do dbt_data_applications.yoda_log(\"include_columns \" ~ include_columns) %}\n {% do dbt_data_applications.yoda_log(\"rename_columns \" ~ rename_columns) %} #}\n {{ dbt_data_applications.union_relations_ex(relations=sources_ref, rename_columns=rename_columns, include=include_columns) }}\n )\n , sources_union_grouped AS (\n SELECT \n {%- set comma = joiner(\",\") %}\n {%- for foreign_key_name in keys -%}\n {{ comma() }} sources_union.{{ foreign_key_name }} as {{ foreign_key_name }}\n {%- endfor -%}\n {%- for column in union_columns %}\n {{ comma() }} MAX(sources_union.{{ column }}) as {{ column }}\n {%- endfor %}\n \n FROM sources_union \n GROUP BY \n {%- set comma = joiner(\",\") %}\n {%- for foreign_key_name in keys -%}\n {{ comma() }} sources_union.{{ foreign_key_name }}\n {%- endfor -%}\n )\n\n\n SELECT \n {%- set comma = joiner(\",\") %}\n \n {%- for foreign_key_name in keys -%}\n {{ comma() }} {{ foreign_key_name }}\n {%- endfor -%}\n {#- add union of all columns -#}\n {%- for column in union_columns %}\n {{ comma() }} {{ column }}\n {%- endfor %}\n\n {%- for column in custom_columns %}\n {{ comma() }} {{ column }}\n {%- endfor %}\n \n FROM sources_union_grouped \n\n {% if sql_extra is not none %}\n {{ sql_extra }}\n {%- endif -%}\n\n{%- endif -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.union_relations_ex"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5115392, "supported_languages": null}, "macro.dbt_data_applications.dwh_updated_column": {"name": "dwh_updated_column", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/dwh_updated_column.sql", "original_file_path": "macros/yotpo_utils/dwh_updated_column.sql", "unique_id": "macro.dbt_data_applications.dwh_updated_column", "macro_sql": "{% macro dwh_updated_column() %}\n CURRENT_TIMESTAMP AS dwh_updated_at\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5119548, "supported_languages": null}, "macro.dbt_data_applications.execute_only_on_production": {"name": "execute_only_on_production", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/execute_only_on_production.sql", "original_file_path": "macros/yotpo_utils/execute_only_on_production.sql", "unique_id": "macro.dbt_data_applications.execute_only_on_production", "macro_sql": "{% macro execute_only_on_production(code_to_execute) -%}\n {%- if target.name == \"prod\" -%}\n {{code_to_execute}}\n {%- endif -%} \n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5125148, "supported_languages": null}, "macro.dbt_data_applications.generate_alias_name_env": {"name": "generate_alias_name_env", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/generate_alias_name_env.sql", "original_file_path": "macros/yotpo_utils/generate_alias_name_env.sql", "unique_id": "macro.dbt_data_applications.generate_alias_name_env", "macro_sql": "{% macro generate_alias_name_env(custom_alias_name=none, node=none) -%}\n {% do return(adapter.dispatch('generate_alias_name_env', 'dbt_data_applications')(custom_alias_name, node)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.default__generate_alias_name_env"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5139813, "supported_languages": null}, "macro.dbt_data_applications.default__generate_alias_name_env": {"name": "default__generate_alias_name_env", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/generate_alias_name_env.sql", "original_file_path": "macros/yotpo_utils/generate_alias_name_env.sql", "unique_id": "macro.dbt_data_applications.default__generate_alias_name_env", "macro_sql": "{% macro default__generate_alias_name_env(custom_alias_name=none, node=none) -%}\n {%- if (target.name == \"prod\" or target.name == \"staging\") and node[\"resource_type\"]==\"model\" -%}\n {%- if custom_alias_name is none -%} \n {%- if \"___\" in node.name -%} \n {% set table_parts = node.name.split('___') %}\n {% set table_parts_no_domain = table_parts[1].split('__') %}\n {% set subdomain = table_parts_no_domain[0].replace(\"_stg\" ,\"\") %}\n {% set node_name = subdomain+\"_\"+table_parts_no_domain[1] %}\n {%- else -%}\n {% set table_parts = node.name.split('__') %}\n {% set node_name = table_parts[1] %}\n {%- endif -%}\n {{ node_name }} \n {%- else -%}\n\n {{ custom_alias_name | trim }}\n\n {%- endif -%}\n {%- else -%}\n {%- if custom_alias_name is none -%}\n\n {{ node.name }}\n\n {%- else -%}\n\n {{ custom_alias_name | trim }}\n\n {%- endif -%}\n\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5164804, "supported_languages": null}, "macro.dbt_data_applications.generate_schema_name_env": {"name": "generate_schema_name_env", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/generate_schema_name_env.sql", "original_file_path": "macros/yotpo_utils/generate_schema_name_env.sql", "unique_id": "macro.dbt_data_applications.generate_schema_name_env", "macro_sql": "{% macro generate_schema_name_env(custom_schema_name, node) -%}\n {{ return(adapter.dispatch('generate_schema_name_env', 'dbt_data_applications')(custom_schema_name, node)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.default__generate_schema_name_env"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.518425, "supported_languages": null}, "macro.dbt_data_applications.default__generate_schema_name_env": {"name": "default__generate_schema_name_env", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/generate_schema_name_env.sql", "original_file_path": "macros/yotpo_utils/generate_schema_name_env.sql", "unique_id": "macro.dbt_data_applications.default__generate_schema_name_env", "macro_sql": "{% macro default__generate_schema_name_env(custom_schema_name, node) -%}\n {%- set default_schema = target.schema -%}\n {# example path: loyalty/marts/loyalty__fact_campaigns.sql #}\n {# example fqn: ['yoda', 'loyalty', 'marts', 'loyalty__fact_campaigns'] #}\n {%- if (target.name == \"prod\" or target.name == \"staging\") and node[\"resource_type\"]==\"model\" -%}\n {% set dir_path = node[\"path\"].split('/') %}\n {% set model_name = node[\"name\"] %}\n {%- if \"_stg__\" in model_name -%}\n {% set model_type = \"staging\" %}\n {%- else -%}\n {% set model_type = \"marts\" %}\n {%- endif -%}\n {% set domain = node[\"fqn\"][1] %}\n {%- if model_type == \"marts\" -%}\n {%- if target.name == \"prod\" -%}\n {%- set default_schema = \"public_\" ~ domain -%}\n {%- else -%}\n {%- set default_schema = \"staging_public_\" ~ domain -%}\n {%- endif -%} \n {% elif model_type == \"staging\" -%}\n {%- if target.name == \"prod\" -%}\n {%- set default_schema = \"protected_\" ~ domain -%}\n {%- else -%}\n {%- set default_schema = \"staging_protected_\" ~ domain -%}\n {%- endif -%} \n {%- else -%}\n {{ exceptions.raise_compiler_error(\"No such model type (marts, staging): \" ~ model_type) }}\n {%- endif -%} \n {{ default_schema }}\n {%- else -%}\n {%- if custom_schema_name is none -%}\n\n {{ default_schema }}\n\n {%- else -%}\n\n {{ default_schema }}_{{ custom_schema_name | trim }}\n\n {%- endif -%}\n {% endif %} \n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.52152, "supported_languages": null}, "macro.dbt_data_applications.get_table_materialization": {"name": "get_table_materialization", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/get_table_materialization.sql", "original_file_path": "macros/yotpo_utils/get_table_materialization.sql", "unique_id": "macro.dbt_data_applications.get_table_materialization", "macro_sql": "{% macro get_table_materialization(materialized, dev_materialized=none,supported_languages=['sql', 'python']) -%}\n {{ return(adapter.dispatch('get_table_materialization', 'dbt_data_applications')(materialized, dev_materialized ,supported_languages )) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.default__get_table_materialization"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5227003, "supported_languages": ["sql", "python"]}, "macro.dbt_data_applications.default__get_table_materialization": {"name": "default__get_table_materialization", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/get_table_materialization.sql", "original_file_path": "macros/yotpo_utils/get_table_materialization.sql", "unique_id": "macro.dbt_data_applications.default__get_table_materialization", "macro_sql": "{% macro default__get_table_materialization(materialized, dev_materialized=none,supported_languages=['sql', 'python']) -%}\n {%- set dbt_materialize_table = var('dbt_materialize_table') | as_bool -%} \n\n {% if materialized != 'view' and materialized != 'table' and materialized != 'incremental' and materialized != 'ephemeral'%}\n {{ exceptions.raise_compiler_error(\"Materialized values are: view, table, incremental, ephemeral\") }}\n {%- endif -%} \n\n {# \n dbt_materialize_table -> dbt var to notifiy if to materialize\n priority of materializing:\n 1. production\n 2. pass option via cli in vars (dbt_materialize_table)\n 3. option in sql config block of model (dev_materialized)\n #}\n {% if target.name == 'prod' %}\n {{ return(materialized) }}\n {%- endif -%} \n\n {% if dbt_materialize_table %}\n {{ return(materialized) }}\n {%- endif -%} \n\n {% if dev_materialized is not none %}\n {{ return(dev_materialized) }}\n {%- endif -%}\n\n {{ return('view') }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5244362, "supported_languages": ["sql", "python"]}, "macro.dbt_data_applications.get_meta_from_node": {"name": "get_meta_from_node", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/graph_utils.sql", "original_file_path": "macros/yotpo_utils/graph_utils.sql", "unique_id": "macro.dbt_data_applications.get_meta_from_node", "macro_sql": "{%- macro get_meta_from_node(node_name) -%}\n {%- set nodes = (graph.nodes.values() | selectattr('resource_type', 'equalto', \"model\") \n | selectattr('unique_id', 'equalto', node_name) | list) -%}\n {%- if nodes|length >0 -%}\n {%- set check_node = nodes.pop() -%}\n {% if check_node.config.meta is defined %}\n {{ return(check_node.config.meta) }}\n {%- else -%}\n {% do dbt_data_applications.yoda_log(\"node \" ~ node_name ~ \" is missing meta \") %}\n {%- endif -%}\n {%- else -%}\n {% do dbt_data_applications.yoda_log(\"node \" ~ node_name ~ \" is missing\") %}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.yoda_log"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.528098, "supported_languages": null}, "macro.dbt_data_applications.get_config_property": {"name": "get_config_property", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/graph_utils.sql", "original_file_path": "macros/yotpo_utils/graph_utils.sql", "unique_id": "macro.dbt_data_applications.get_config_property", "macro_sql": "\n\n\n{%- macro get_config_property(node_name, config_node, property) -%}\n {% if config_node[property] is defined %}\n {{ return(config_node[property]) }}\n {%- else -%}\n {% do dbt_data_applications.yoda_log(property ~ \" missing on \" ~ node_name) %}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.yoda_log"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5289917, "supported_languages": null}, "macro.dbt_data_applications.get_metric": {"name": "get_metric", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/graph_utils.sql", "original_file_path": "macros/yotpo_utils/graph_utils.sql", "unique_id": "macro.dbt_data_applications.get_metric", "macro_sql": "\n\n\n{%- macro get_metric(metric_name) -%}\n {%- set metrics=graph.metrics.values() -%}\n {%- if metrics|length ==0 -%}\n {{ exceptions.raise_compiler_error(\"metrics missing, please run dbt compile -f\") }}\n {%- endif -%}\n\n \n {%- set metric_name_s = metric_name | string() -%}\n {%- set pos = metric_name_s.index('.') -%}\n {%- set table_name = \"ref('\" ~ metric_name_s[pos+1:] ~ \"')\" -%}\n \n {%- set metric_nodes = (metrics | selectattr('model', 'equalto', table_name) | list) -%}\n {%- if metric_nodes|length >0 -%}\n {%- set found_metric_nodes = [] -%}\n {%- for metric_node in metric_nodes -%} \n {%- do found_metric_nodes.append({'metric': metric_node, 'table_name': metric_name_s[pos+1:]}) -%}\n {%- endfor -%}\n {{ return(found_metric_nodes) }}\n {%- else -%}\n {% do dbt_data_applications.yoda_log(\"model: \" ~ metric_name_s ~ \" missing metric definition\") %}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.yoda_log"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5314252, "supported_languages": null}, "macro.dbt_data_applications.are_metrics_valid": {"name": "are_metrics_valid", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/graph_utils.sql", "original_file_path": "macros/yotpo_utils/graph_utils.sql", "unique_id": "macro.dbt_data_applications.are_metrics_valid", "macro_sql": "\n\n{%- macro are_metrics_valid(metric_name) -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.531683, "supported_languages": null}, "macro.dbt_data_applications.incremental_column": {"name": "incremental_column", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/incremental_column.sql", "original_file_path": "macros/yotpo_utils/incremental_column.sql", "unique_id": "macro.dbt_data_applications.incremental_column", "macro_sql": "{% macro incremental_column() %}\n {% if is_incremental() %} \"incremental\" {% else %} \"full\" {% endif %} as build_source \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.is_incremental"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5322342, "supported_languages": null}, "macro.dbt_data_applications.incremental_table_columns": {"name": "incremental_table_columns", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/incremental_table_columns.sql", "original_file_path": "macros/yotpo_utils/incremental_table_columns.sql", "unique_id": "macro.dbt_data_applications.incremental_table_columns", "macro_sql": "{% macro incremental_table_columns() %}\n {{ incremental_column() }},\n {{ dwh_updated_column() }} \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.incremental_column", "macro.dbt_data_applications.dwh_updated_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.532629, "supported_languages": null}, "macro.dbt_data_applications.profile": {"name": "profile", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/profile.sql", "original_file_path": "macros/yotpo_utils/profile.sql", "unique_id": "macro.dbt_data_applications.profile", "macro_sql": "{% macro profile(sources, keys=none, custom_columns=none, sql_extra=none) -%}\n {{ return(adapter.dispatch('profile', 'dbt_data_applications')(sources, keys, custom_columns, sql_extra)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.default__profile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.533454, "supported_languages": null}, "macro.dbt_data_applications.default__profile": {"name": "default__profile", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/profile.sql", "original_file_path": "macros/yotpo_utils/profile.sql", "unique_id": "macro.dbt_data_applications.default__profile", "macro_sql": "\n\n{%- macro default__profile(sources, keys, custom_columns, sql_extra) -%}\n\n{{ dbt_data_applications.base_profile(sources, keys, custom_columns, sql_extra) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_data_applications.base_profile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5338933, "supported_languages": null}, "macro.dbt_data_applications.recreate_cicd_views": {"name": "recreate_cicd_views", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/recreate_cicd_views.sql", "original_file_path": "macros/yotpo_utils/recreate_cicd_views.sql", "unique_id": "macro.dbt_data_applications.recreate_cicd_views", "macro_sql": "{% macro recreate_cicd_views() %}\n {# \n this macro is used in cicd flows to recreate views in dev and staging environments.\n The original query the views were generated by dbt is replaced ( running as a post action)\n with a view on top of null values casted to the view coulmns types.\n The macro calls dbt.get_columns_in_relation_raw that perfroms describe extended table on the relation.\n #}\n {% if env_var('CI_CD_MODE' , 'False') == 'True' and (target.name == \"staging\" or target.name == \"dev\") %}\n {% set describe_result = dbt.get_columns_in_relation_raw(this) %}\n {% set all_columns = [] %}\n {% set ns = namespace(is_col = true) %}\n {% for col in describe_result %}\n {# describe extended table has a blank row that seperates the columns description and other table metadata.\n When meeting this black line the loops over the results is not populating the columns list\n #}\n {% if ns.is_col and col[0]!=\"\" %}\n {{ all_columns.append({\"name\" : col[0] , \"data_type\" : col[1] }) or \"\" }}\n {% else %}\n {% set ns.is_col = false %}\n {% endif %}\n {% endfor %}\n {% if all_columns|length >= 1 %}\n {% do dbt_data_applications.yoda_log(\"executing views recreation for relation: \" ~ this.schema +\".\" ~ this.name) %}\n {{ \"create or replace view \"+this.schema +\".\"+this.name+\" (\"}}\n {% for col in all_columns %}\n {{ \" \" + col.name }}\n {% if not loop.last %}\n {{ \",\" }}\n {% endif %}\n {% endfor %}\n {{\") as select \"}}\n {% for col in all_columns %}\n {% set data_type = modules.re.sub('\\\\b\\w+-\\w+\\\\b', '`\\g<0>`', col.data_type) %}\n {{\"cast(null as \" + data_type + \") \"+ col.name}}\n {% if not loop.last %}\n {{ \",\" }}\n {% endif %}\n {% endfor %}\n \n \n {% endif %}\n {% endif %}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.get_columns_in_relation_raw", "macro.dbt_data_applications.yoda_log"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5395036, "supported_languages": null}, "macro.dbt_data_applications.union_relations_ex": {"name": "union_relations_ex", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/union.sql", "original_file_path": "macros/yotpo_utils/union.sql", "unique_id": "macro.dbt_data_applications.union_relations_ex", "macro_sql": "{%- macro union_relations_ex(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', rename_columns=none) -%}\n\n{%- if exclude and include -%}\n {{ exceptions.raise_compiler_error(\"Both an exclude and include list were provided to the `union` macro. Only one is allowed\") }}\n {%- endif -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. -#}\n {%- if not execute %}\n {{ return('') }}\n {% endif -%}\n\n {%- set column_override = column_override if column_override is not none else {} -%}\n {%- set rename_columns = rename_columns if rename_columns is not none else {} -%}\n\n {%- set relation_columns = {} -%}\n {%- set column_superset = {} -%}\n\n {%- for relation in relations -%}\n\n {%- do relation_columns.update({relation: {}}) -%}\n\n {%- do dbt_utils._is_relation(relation, 'union_relations') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'union_relations') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) -%}\n {%- for col in cols -%}\n\n {#- If an exclude list was provided and the column is in the list, do nothing -#}\n {%- if exclude and col.column in exclude -%}\n\n {#- If an include list was provided and the column is not in the list, do nothing -#}\n {%- elif include and col.column not in include -%}\n\n {#- Otherwise add the column to the column superset -#}\n {%- else -%}\n\n {#- update the list of columns in this relation -#}\n {%- set rename_col = rename_columns[col.column]|default(col.column) -%}\n \n {%- do relation_columns[relation].update({rename_col: col}) -%}\n\n {%- if rename_col in column_superset -%}\n\n {%- set stored = column_superset[rename_col] -%}\n {%- if col.is_string() and stored.is_string() and col.string_size() > stored.string_size() -%}\n\n {%- do column_superset.update({rename_col: col}) -%}\n\n {%- endif %}\n\n {%- else -%}\n\n {%- do column_superset.update({rename_col: col}) -%}\n\n {%- endif -%}\n\n {%- endif -%}\n\n {%- endfor -%}\n {%- endfor -%}\n\n {%- set ordered_column_names = column_superset.keys() -%}\n\n {%- for relation in relations %}\n\n (\n select\n\n cast({{ string_literal(relation) }} as {{ type_string() }}) as {{ source_column_name }},\n {% for col_name in ordered_column_names -%}\n {%- set col = column_superset[col_name] %}\n {%- set col_type = column_override.get(col.column, col.data_type) %}\n {%- set col_name_quote = adapter.quote(col_name) %}\n {%- set orig_col_name = adapter.quote(relation_columns[relation][col_name].column) if col_name in relation_columns[relation] else 'null' %}\n cast({{ orig_col_name }} as {{ col_type }}) as {{ col_name_quote }} {% if not loop.last %},{% endif -%}\n\n {%- endfor %}\n\n from {{ relation }}\n )\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.string_literal", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5479653, "supported_languages": null}, "macro.dbt_data_applications.yoda_log": {"name": "yoda_log", "resource_type": "macro", "package_name": "dbt_data_applications", "path": "macros/yotpo_utils/yoda_log.sql", "original_file_path": "macros/yotpo_utils/yoda_log.sql", "unique_id": "macro.dbt_data_applications.yoda_log", "macro_sql": "{%- macro yoda_log(text) -%}\n {% do log(\"[yoda] \" ~ text, info=true) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5486062, "supported_languages": null}, "macro.dbt_datamocktool.get_unit_test_sql": {"name": "get_unit_test_sql", "resource_type": "macro", "package_name": "dbt_datamocktool", "path": "macros/dmt_get_test_sql.sql", "original_file_path": "macros/dmt_get_test_sql.sql", "unique_id": "macro.dbt_datamocktool.get_unit_test_sql", "macro_sql": "{% macro get_unit_test_sql(model, input_mapping, depends_on) %}\r\n {% set dbt_command=var('dbt_command') %}\r\n {% set ns=namespace(\r\n test_sql=\"(select 1) raw_sql\",\r\n rendered_keys={}\r\n ) %}\r\n\r\n {% for k in input_mapping.keys() %}\r\n {# doing this outside the execute block allows dbt to infer the proper dependencies #}\r\n {% do ns.rendered_keys.update({k: render(\"{{ \" + k + \" }}\")}) %}\r\n {% endfor %}\r\n\r\n {% if execute and dbt_command == 'test'%}\r\n {# inside an execute block because graph nodes aren't well-defined during parsing #}\r\n {% set graph_model = graph.nodes[\"model.\" + project_name + \".\" + model.name] %}\r\n {% set ns.test_sql = graph_model.raw_sql %}\r\n\r\n {% for k,v in input_mapping.items() %}\r\n {# render the original sql and replacement key before replacing because v is already rendered when it is passed to this test #}\r\n {% set ns.test_sql = render(ns.test_sql)|replace(ns.rendered_keys[k], v) %}\r\n {% endfor %}\r\n\r\n {# SQL Server requires us to specify a table type because it calls `drop_relation_script()` from `create_table_as()`.\r\n I'd prefer to use something like RelationType.table, but can't find a way to access the relation types #}\r\n {% do adapter.create_schema(api.Relation.create(database=model.database, schema=model.schema)) %}\r\n {% set mock_model_relation = make_temp_relation(dbt_datamocktool._get_model_to_mock(model), suffix=('_dmt_' ~ modules.datetime.datetime.now().strftime(\"%S%f\"))) %}\r\n\r\n {% do run_query(create_table_as(true, mock_model_relation, ns.test_sql)) %}\r\n {% endif %}\r\n\r\n\r\n {{ mock_model_relation }}\r\n\r\n {% for k in depends_on %}\r\n -- depends_on: {{ k }}\r\n {% endfor %}\r\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_temp_relation", "macro.dbt_datamocktool._get_model_to_mock", "macro.dbt.run_query", "macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5527878, "supported_languages": null}, "macro.dbt_datamocktool._get_model_to_mock": {"name": "_get_model_to_mock", "resource_type": "macro", "package_name": "dbt_datamocktool", "path": "macros/dmt_get_test_sql.sql", "original_file_path": "macros/dmt_get_test_sql.sql", "unique_id": "macro.dbt_datamocktool._get_model_to_mock", "macro_sql": "{% macro _get_model_to_mock(model) %}\r\n {{ return(adapter.dispatch('_get_model_to_mock', 'dbt_datamocktool')(model)) }}\r\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_datamocktool.spark___get_model_to_mock"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5533113, "supported_languages": null}, "macro.dbt_datamocktool.default___get_model_to_mock": {"name": "default___get_model_to_mock", "resource_type": "macro", "package_name": "dbt_datamocktool", "path": "macros/dmt_get_test_sql.sql", "original_file_path": "macros/dmt_get_test_sql.sql", "unique_id": "macro.dbt_datamocktool.default___get_model_to_mock", "macro_sql": "{% macro default___get_model_to_mock(model) %}\r\n {{ return(model.incorporate(type='table')) }}\r\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5536904, "supported_languages": null}, "macro.dbt_datamocktool.spark___get_model_to_mock": {"name": "spark___get_model_to_mock", "resource_type": "macro", "package_name": "dbt_datamocktool", "path": "macros/dmt_get_test_sql.sql", "original_file_path": "macros/dmt_get_test_sql.sql", "unique_id": "macro.dbt_datamocktool.spark___get_model_to_mock", "macro_sql": "{% macro spark___get_model_to_mock(model) %}\r\n {{ return(model.incorporate(type='table').include(schema=False)) }}\r\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5541563, "supported_languages": null}, "macro.dbt_datamocktool.test_unit_test": {"name": "test_unit_test", "resource_type": "macro", "package_name": "dbt_datamocktool", "path": "macros/dmt_unit_test.sql", "original_file_path": "macros/dmt_unit_test.sql", "unique_id": "macro.dbt_datamocktool.test_unit_test", "macro_sql": "{% test unit_test(model, input_mapping, expected_output, depends_on, name, description, compare_columns, env) %}\n {%- if not env or target.name == env -%}\n {% set test_sql = dbt_datamocktool.get_unit_test_sql(model, input_mapping, depends_on) %}\n {% do return(dbt_utils.test_equality(expected_output, compare_model=test_sql, compare_columns=compare_columns)) %}\n {%- else -%}\n {% do log('Unit test for model ' ~ name ~ ' configured not to run in ' ~ target.name ~ ' environment -> Skipping.', info=True) %}\n {{ config(fail_calc = \"sum(validation_errors)\") }}\n select 0 as validation_errors\n {%- endif -%}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_datamocktool.get_unit_test_sql", "macro.dbt_utils.test_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5558796, "supported_languages": null}, "macro.dbt_datamocktool.test_assert_mock_eq": {"name": "test_assert_mock_eq", "resource_type": "macro", "package_name": "dbt_datamocktool", "path": "macros/dmt_unit_test.sql", "original_file_path": "macros/dmt_unit_test.sql", "unique_id": "macro.dbt_datamocktool.test_assert_mock_eq", "macro_sql": "{% test assert_mock_eq(model, input_mapping, expected_output) %}\n {% do return(test_unit_test(model, input_mapping, expected_output)) %}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_datamocktool.test_unit_test"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5563755, "supported_languages": null}, "macro.dbt_date.get_base_dates": {"name": "get_base_dates", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/get_base_dates.sql", "original_file_path": "macros/get_base_dates.sql", "unique_id": "macro.dbt_date.get_base_dates", "macro_sql": "{% macro get_base_dates(start_date=None, end_date=None, n_dateparts=None, datepart=\"day\") %}\n {{ adapter.dispatch('get_base_dates', 'dbt_date') (start_date, end_date, n_dateparts, datepart) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_date.default__get_base_dates"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.558203, "supported_languages": null}, "macro.dbt_date.default__get_base_dates": {"name": "default__get_base_dates", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/get_base_dates.sql", "original_file_path": "macros/get_base_dates.sql", "unique_id": "macro.dbt_date.default__get_base_dates", "macro_sql": "{% macro default__get_base_dates(start_date, end_date, n_dateparts, datepart) %}\n\n{%- if start_date and end_date -%}\n{%- set start_date=\"cast('\" ~ start_date ~ \"' as \" ~ type_timestamp() ~ \")\" -%}\n{%- set end_date=\"cast('\" ~ end_date ~ \"' as \" ~ type_timestamp() ~ \")\" -%}\n\n{%- elif n_dateparts and datepart -%}\n\n{%- set start_date = dateadd(datepart, -1 * n_dateparts, dbt_date.today()) -%}\n{%- set end_date = dbt_date.tomorrow() -%}\n{%- endif -%}\n\nwith date_spine as\n(\n\n {{ dbt_utils.date_spine(\n datepart=datepart,\n start_date=start_date,\n end_date=end_date,\n )\n }}\n\n)\nselect\n cast(d.date_{{ datepart }} as {{ type_timestamp() }}) as date_{{ datepart }}\nfrom\n date_spine d\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.dateadd", "macro.dbt_date.today", "macro.dbt_date.tomorrow", "macro.dbt_utils.date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5598376, "supported_languages": null}, "macro.dbt_date.bigquery__get_base_dates": {"name": "bigquery__get_base_dates", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/get_base_dates.sql", "original_file_path": "macros/get_base_dates.sql", "unique_id": "macro.dbt_date.bigquery__get_base_dates", "macro_sql": "{% macro bigquery__get_base_dates(start_date, end_date, n_dateparts, datepart) %}\n\n{%- if start_date and end_date -%}\n{%- set start_date=\"cast('\" ~ start_date ~ \"' as date )\" -%}\n{%- set end_date=\"cast('\" ~ end_date ~ \"' as date )\" -%}\n\n{%- elif n_dateparts and datepart -%}\n\n{%- set start_date = dateadd(datepart, -1 * n_dateparts, dbt_date.today()) -%}\n{%- set end_date = dbt_date.tomorrow() -%}\n{%- endif -%}\n\nwith date_spine as\n(\n\n {{ dbt_utils.date_spine(\n datepart=datepart,\n start_date=start_date,\n end_date=end_date,\n )\n }}\n\n)\nselect\n cast(d.date_{{ datepart }} as {{ type_timestamp() }}) as date_{{ datepart }}\nfrom\n date_spine d\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.dateadd", "macro.dbt_date.today", "macro.dbt_date.tomorrow", "macro.dbt_utils.date_spine", "macro.dbt_utils.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5614493, "supported_languages": null}, "macro.dbt_date.get_date_dimension": {"name": "get_date_dimension", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/get_date_dimension.sql", "original_file_path": "macros/get_date_dimension.sql", "unique_id": "macro.dbt_date.get_date_dimension", "macro_sql": "{% macro get_date_dimension(start_date, end_date) %}\n {{ adapter.dispatch('get_date_dimension', 'dbt_date') (start_date, end_date) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_date.default__get_date_dimension"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5738761, "supported_languages": null}, "macro.dbt_date.default__get_date_dimension": {"name": "default__get_date_dimension", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/get_date_dimension.sql", "original_file_path": "macros/get_date_dimension.sql", "unique_id": "macro.dbt_date.default__get_date_dimension", "macro_sql": "{% macro default__get_date_dimension(start_date, end_date) %}\nwith base_dates as (\n {{ dbt_date.get_base_dates(start_date, end_date) }}\n),\ndates_with_prior_year_dates as (\n\n select\n cast(d.date_day as date) as date_day,\n cast({{ dateadd('year', -1 , 'd.date_day') }} as date) as prior_year_date_day,\n cast({{ dateadd('day', -364 , 'd.date_day') }} as date) as prior_year_over_year_date_day\n from\n \tbase_dates d\n\n)\nselect\n d.date_day,\n {{ dbt_date.yesterday('d.date_day') }} as prior_date_day,\n {{ dbt_date.tomorrow('d.date_day') }} as next_date_day,\n d.prior_year_date_day as prior_year_date_day,\n d.prior_year_over_year_date_day,\n {{ dbt_date.day_of_week('d.date_day', isoweek=false) }} as day_of_week,\n {{ dbt_date.day_of_week('d.date_day', isoweek=true) }} as day_of_week_iso,\n {{ dbt_date.day_name('d.date_day', short=false) }} as day_of_week_name,\n {{ dbt_date.day_name('d.date_day', short=true) }} as day_of_week_name_short,\n {{ dbt_date.day_of_month('d.date_day') }} as day_of_month,\n {{ dbt_date.day_of_year('d.date_day') }} as day_of_year,\n\n {{ dbt_date.week_start('d.date_day') }} as week_start_date,\n {{ dbt_date.week_end('d.date_day') }} as week_end_date,\n {{ dbt_date.week_start('d.prior_year_over_year_date_day') }} as prior_year_week_start_date,\n {{ dbt_date.week_end('d.prior_year_over_year_date_day') }} as prior_year_week_end_date,\n {{ dbt_date.week_of_year('d.date_day') }} as week_of_year,\n\n {{ dbt_date.iso_week_start('d.date_day') }} as iso_week_start_date,\n {{ dbt_date.iso_week_end('d.date_day') }} as iso_week_end_date,\n {{ dbt_date.iso_week_start('d.prior_year_over_year_date_day') }} as prior_year_iso_week_start_date,\n {{ dbt_date.iso_week_end('d.prior_year_over_year_date_day') }} as prior_year_iso_week_end_date,\n {{ dbt_date.iso_week_of_year('d.date_day') }} as iso_week_of_year,\n\n {{ dbt_date.week_of_year('d.prior_year_over_year_date_day') }} as prior_year_week_of_year,\n {{ dbt_date.iso_week_of_year('d.prior_year_over_year_date_day') }} as prior_year_iso_week_of_year,\n\n cast({{ dbt_date.date_part('month', 'd.date_day') }} as {{ type_int() }}) as month_of_year,\n {{ dbt_date.month_name('d.date_day', short=false) }} as month_name,\n {{ dbt_date.month_name('d.date_day', short=true) }} as month_name_short,\n\n cast({{ date_trunc('month', 'd.date_day') }} as date) as month_start_date,\n cast({{ last_day('d.date_day', 'month') }} as date) as month_end_date,\n\n cast({{ date_trunc('month', 'd.prior_year_date_day') }} as date) as prior_year_month_start_date,\n cast({{ last_day('d.prior_year_date_day', 'month') }} as date) as prior_year_month_end_date,\n\n cast({{ dbt_date.date_part('quarter', 'd.date_day') }} as {{ type_int() }}) as quarter_of_year,\n cast({{ date_trunc('quarter', 'd.date_day') }} as date) as quarter_start_date,\n cast({{ last_day('d.date_day', 'quarter') }} as date) as quarter_end_date,\n\n cast({{ dbt_date.date_part('year', 'd.date_day') }} as {{ type_int() }}) as year_number,\n cast({{ date_trunc('year', 'd.date_day') }} as date) as year_start_date,\n cast({{ last_day('d.date_day', 'year') }} as date) as year_end_date\nfrom\n dates_with_prior_year_dates d\norder by 1\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_date.get_base_dates", "macro.dbt_utils.dateadd", "macro.dbt_date.yesterday", "macro.dbt_date.tomorrow", "macro.dbt_date.day_of_week", "macro.dbt_date.day_name", "macro.dbt_date.day_of_month", "macro.dbt_date.day_of_year", "macro.dbt_date.week_start", "macro.dbt_date.week_end", "macro.dbt_date.week_of_year", "macro.dbt_date.iso_week_start", "macro.dbt_date.iso_week_end", "macro.dbt_date.iso_week_of_year", "macro.dbt_date.date_part", "macro.dbt_utils.type_int", "macro.dbt_date.month_name", "macro.dbt_utils.date_trunc", "macro.dbt_utils.last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.579093, "supported_languages": null}, "macro.dbt_date.postgres__get_date_dimension": {"name": "postgres__get_date_dimension", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/get_date_dimension.sql", "original_file_path": "macros/get_date_dimension.sql", "unique_id": "macro.dbt_date.postgres__get_date_dimension", "macro_sql": "{% macro postgres__get_date_dimension(start_date, end_date) %}\nwith base_dates as (\n {{ dbt_date.get_base_dates(start_date, end_date) }}\n),\ndates_with_prior_year_dates as (\n\n select\n cast(d.date_day as date) as date_day,\n cast({{ dateadd('year', -1 , 'd.date_day') }} as date) as prior_year_date_day,\n cast({{ dateadd('day', -364 , 'd.date_day') }} as date) as prior_year_over_year_date_day\n from\n \tbase_dates d\n\n)\nselect\n d.date_day,\n {{ dbt_date.yesterday('d.date_day') }} as prior_date_day,\n {{ dbt_date.tomorrow('d.date_day') }} as next_date_day,\n d.prior_year_date_day as prior_year_date_day,\n d.prior_year_over_year_date_day,\n {{ dbt_date.day_of_week('d.date_day', isoweek=true) }} as day_of_week,\n\n {{ dbt_date.day_name('d.date_day', short=false) }} as day_of_week_name,\n {{ dbt_date.day_name('d.date_day', short=true) }} as day_of_week_name_short,\n {{ dbt_date.day_of_month('d.date_day') }} as day_of_month,\n {{ dbt_date.day_of_year('d.date_day') }} as day_of_year,\n\n {{ dbt_date.week_start('d.date_day') }} as week_start_date,\n {{ dbt_date.week_end('d.date_day') }} as week_end_date,\n {{ dbt_date.week_start('d.prior_year_over_year_date_day') }} as prior_year_week_start_date,\n {{ dbt_date.week_end('d.prior_year_over_year_date_day') }} as prior_year_week_end_date,\n {{ dbt_date.week_of_year('d.date_day') }} as week_of_year,\n\n {{ dbt_date.iso_week_start('d.date_day') }} as iso_week_start_date,\n {{ dbt_date.iso_week_end('d.date_day') }} as iso_week_end_date,\n {{ dbt_date.iso_week_start('d.prior_year_over_year_date_day') }} as prior_year_iso_week_start_date,\n {{ dbt_date.iso_week_end('d.prior_year_over_year_date_day') }} as prior_year_iso_week_end_date,\n {{ dbt_date.iso_week_of_year('d.date_day') }} as iso_week_of_year,\n\n {{ dbt_date.week_of_year('d.prior_year_over_year_date_day') }} as prior_year_week_of_year,\n {{ dbt_date.iso_week_of_year('d.prior_year_over_year_date_day') }} as prior_year_iso_week_of_year,\n\n cast({{ dbt_date.date_part('month', 'd.date_day') }} as {{ type_int() }}) as month_of_year,\n {{ dbt_date.month_name('d.date_day', short=false) }} as month_name,\n {{ dbt_date.month_name('d.date_day', short=true) }} as month_name_short,\n\n cast({{ date_trunc('month', 'd.date_day') }} as date) as month_start_date,\n cast({{ last_day('d.date_day', 'month') }} as date) as month_end_date,\n\n cast({{ date_trunc('month', 'd.prior_year_date_day') }} as date) as prior_year_month_start_date,\n cast({{ last_day('d.prior_year_date_day', 'month') }} as date) as prior_year_month_end_date,\n\n cast({{ dbt_date.date_part('quarter', 'd.date_day') }} as {{ type_int() }}) as quarter_of_year,\n cast({{ date_trunc('quarter', 'd.date_day') }} as date) as quarter_start_date,\n {# last_day does not support quarter because postgresql does not support quarter interval. #}\n cast({{dateadd('day', '-1', dateadd('month', '3', date_trunc('quarter', 'd.date_day')))}} as date) as quarter_end_date,\n\n cast({{ dbt_date.date_part('year', 'd.date_day') }} as {{ type_int() }}) as year_number,\n cast({{ date_trunc('year', 'd.date_day') }} as date) as year_start_date,\n cast({{ last_day('d.date_day', 'year') }} as date) as year_end_date\nfrom\n dates_with_prior_year_dates d\norder by 1\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_date.get_base_dates", "macro.dbt_utils.dateadd", "macro.dbt_date.yesterday", "macro.dbt_date.tomorrow", "macro.dbt_date.day_of_week", "macro.dbt_date.day_name", "macro.dbt_date.day_of_month", "macro.dbt_date.day_of_year", "macro.dbt_date.week_start", "macro.dbt_date.week_end", "macro.dbt_date.week_of_year", "macro.dbt_date.iso_week_start", "macro.dbt_date.iso_week_end", "macro.dbt_date.iso_week_of_year", "macro.dbt_date.date_part", "macro.dbt_utils.type_int", "macro.dbt_date.month_name", "macro.dbt_utils.date_trunc", "macro.dbt_utils.last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5841546, "supported_languages": null}, "macro.dbt_date.convert_timezone": {"name": "convert_timezone", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/convert_timezone.sql", "original_file_path": "macros/calendar_date/convert_timezone.sql", "unique_id": "macro.dbt_date.convert_timezone", "macro_sql": "{%- macro convert_timezone(column, target_tz=None, source_tz=None) -%}\n{%- set source_tz = \"UTC\" if not source_tz else source_tz -%}\n{%- set target_tz = var(\"dbt_date:time_zone\") if not target_tz else target_tz -%}\n{{ adapter.dispatch('convert_timezone', 'dbt_date') (column, target_tz, source_tz) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_date.spark__convert_timezone"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5860078, "supported_languages": null}, "macro.dbt_date.default__convert_timezone": {"name": "default__convert_timezone", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/convert_timezone.sql", "original_file_path": "macros/calendar_date/convert_timezone.sql", "unique_id": "macro.dbt_date.default__convert_timezone", "macro_sql": "{% macro default__convert_timezone(column, target_tz, source_tz) -%}\nconvert_timezone('{{ source_tz }}', '{{ target_tz }}',\n cast({{ column }} as {{ type_timestamp() }})\n)\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5865073, "supported_languages": null}, "macro.dbt_date.bigquery__convert_timezone": {"name": "bigquery__convert_timezone", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/convert_timezone.sql", "original_file_path": "macros/calendar_date/convert_timezone.sql", "unique_id": "macro.dbt_date.bigquery__convert_timezone", "macro_sql": "{%- macro bigquery__convert_timezone(column, target_tz, source_tz=None) -%}\ntimestamp(datetime({{ column }}, '{{ target_tz}}'))\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5868475, "supported_languages": null}, "macro.dbt_date.spark__convert_timezone": {"name": "spark__convert_timezone", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/convert_timezone.sql", "original_file_path": "macros/calendar_date/convert_timezone.sql", "unique_id": "macro.dbt_date.spark__convert_timezone", "macro_sql": "{%- macro spark__convert_timezone(column, target_tz, source_tz) -%}\nfrom_utc_timestamp(\n to_utc_timestamp({{ column }}, '{{ source_tz }}'),\n '{{ target_tz }}'\n )\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5872633, "supported_languages": null}, "macro.dbt_date.postgres__convert_timezone": {"name": "postgres__convert_timezone", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/convert_timezone.sql", "original_file_path": "macros/calendar_date/convert_timezone.sql", "unique_id": "macro.dbt_date.postgres__convert_timezone", "macro_sql": "{% macro postgres__convert_timezone(column, target_tz, source_tz) -%}\ncast(\n cast({{ column }} as {{ type_timestamp() }})\n at time zone '{{ source_tz }}' at time zone '{{ target_tz }}' as {{ type_timestamp() }}\n)\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5877843, "supported_languages": null}, "macro.dbt_date.redshift__convert_timezone": {"name": "redshift__convert_timezone", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/convert_timezone.sql", "original_file_path": "macros/calendar_date/convert_timezone.sql", "unique_id": "macro.dbt_date.redshift__convert_timezone", "macro_sql": "{%- macro redshift__convert_timezone(column, target_tz, source_tz) -%}\n{{ return(dbt_date.default__convert_timezone(column, target_tz, source_tz)) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.default__convert_timezone"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5882347, "supported_languages": null}, "macro.dbt_date.date_part": {"name": "date_part", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/date_part.sql", "original_file_path": "macros/calendar_date/date_part.sql", "unique_id": "macro.dbt_date.date_part", "macro_sql": "{% macro date_part(datepart, date) -%}\n {{ adapter.dispatch('date_part', 'dbt_date') (datepart, date) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.default__date_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5888712, "supported_languages": null}, "macro.dbt_date.default__date_part": {"name": "default__date_part", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/date_part.sql", "original_file_path": "macros/calendar_date/date_part.sql", "unique_id": "macro.dbt_date.default__date_part", "macro_sql": "{% macro default__date_part(datepart, date) -%}\n date_part('{{ datepart }}', {{ date }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5892272, "supported_languages": null}, "macro.dbt_date.bigquery__date_part": {"name": "bigquery__date_part", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/date_part.sql", "original_file_path": "macros/calendar_date/date_part.sql", "unique_id": "macro.dbt_date.bigquery__date_part", "macro_sql": "{% macro bigquery__date_part(datepart, date) -%}\n extract({{ datepart }} from {{ date }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5895183, "supported_languages": null}, "macro.dbt_date.day_name": {"name": "day_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_name.sql", "original_file_path": "macros/calendar_date/day_name.sql", "unique_id": "macro.dbt_date.day_name", "macro_sql": "{%- macro day_name(date, short=True) -%}\n {{ adapter.dispatch('day_name', 'dbt_date') (date, short) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.default__day_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5906708, "supported_languages": null}, "macro.dbt_date.default__day_name": {"name": "default__day_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_name.sql", "original_file_path": "macros/calendar_date/day_name.sql", "unique_id": "macro.dbt_date.default__day_name", "macro_sql": "\n\n{%- macro default__day_name(date, short) -%}\n{%- set f = 'Dy' if short else 'Day' -%}\n to_char({{ date }}, '{{ f }}')\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5911517, "supported_languages": null}, "macro.dbt_date.snowflake__day_name": {"name": "snowflake__day_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_name.sql", "original_file_path": "macros/calendar_date/day_name.sql", "unique_id": "macro.dbt_date.snowflake__day_name", "macro_sql": "\n\n{%- macro snowflake__day_name(date, short) -%}\n {%- if short -%}\n dayname({{ date }})\n {%- else -%}\n -- long version not implemented on Snowflake so we're doing it manually :/\n case dayname({{ date }})\n when 'Mon' then 'Monday'\n when 'Tue' then 'Tuesday'\n when 'Wed' then 'Wednesday'\n when 'Thu' then 'Thursday'\n when 'Fri' then 'Friday'\n when 'Sat' then 'Saturday'\n when 'Sun' then 'Sunday'\n end\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5916033, "supported_languages": null}, "macro.dbt_date.bigquery__day_name": {"name": "bigquery__day_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_name.sql", "original_file_path": "macros/calendar_date/day_name.sql", "unique_id": "macro.dbt_date.bigquery__day_name", "macro_sql": "\n\n{%- macro bigquery__day_name(date, short) -%}\n{%- set f = '%a' if short else '%A' -%}\n format_date('{{ f }}', cast({{ date }} as date))\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5920422, "supported_languages": null}, "macro.dbt_date.postgres__day_name": {"name": "postgres__day_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_name.sql", "original_file_path": "macros/calendar_date/day_name.sql", "unique_id": "macro.dbt_date.postgres__day_name", "macro_sql": "\n\n{%- macro postgres__day_name(date, short) -%}\n{# FM = Fill mode, which suppresses padding blanks #}\n{%- set f = 'FMDy' if short else 'FMDay' -%}\n to_char({{ date }}, '{{ f }}')\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5925379, "supported_languages": null}, "macro.dbt_date.day_of_month": {"name": "day_of_month", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_month.sql", "original_file_path": "macros/calendar_date/day_of_month.sql", "unique_id": "macro.dbt_date.day_of_month", "macro_sql": "{%- macro day_of_month(date) -%}\n{{ dbt_date.date_part('day', date) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5929956, "supported_languages": null}, "macro.dbt_date.redshift__day_of_month": {"name": "redshift__day_of_month", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_month.sql", "original_file_path": "macros/calendar_date/day_of_month.sql", "unique_id": "macro.dbt_date.redshift__day_of_month", "macro_sql": "\n\n{%- macro redshift__day_of_month(date) -%}\ncast({{ dbt_date.date_part('day', date) }} as {{ type_bigint() }})\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part", "macro.dbt_utils.type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5934336, "supported_languages": null}, "macro.dbt_date.day_of_week": {"name": "day_of_week", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_week.sql", "original_file_path": "macros/calendar_date/day_of_week.sql", "unique_id": "macro.dbt_date.day_of_week", "macro_sql": "{%- macro day_of_week(date, isoweek=true) -%}\n{{ adapter.dispatch('day_of_week', 'dbt_date') (date, isoweek) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.default__day_of_week"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.596259, "supported_languages": null}, "macro.dbt_date.default__day_of_week": {"name": "default__day_of_week", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_week.sql", "original_file_path": "macros/calendar_date/day_of_week.sql", "unique_id": "macro.dbt_date.default__day_of_week", "macro_sql": "\n\n{%- macro default__day_of_week(date, isoweek) -%}\n\n {%- set dow = dbt_date.date_part('dayofweek', date) -%}\n\n {%- if isoweek -%}\n case\n -- Shift start of week from Sunday (0) to Monday (1)\n when {{ dow }} = 0 then 7\n else {{ dow }}\n end\n {%- else -%}\n {{ dow }} + 1\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5969174, "supported_languages": null}, "macro.dbt_date.snowflake__day_of_week": {"name": "snowflake__day_of_week", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_week.sql", "original_file_path": "macros/calendar_date/day_of_week.sql", "unique_id": "macro.dbt_date.snowflake__day_of_week", "macro_sql": "\n\n{%- macro snowflake__day_of_week(date, isoweek) -%}\n\n {%- if isoweek -%}\n {%- set dow_part = 'dayofweekiso' -%}\n {{ dbt_date.date_part(dow_part, date) }}\n {%- else -%}\n {%- set dow_part = 'dayofweek' -%}\n case\n when {{ dbt_date.date_part(dow_part, date) }} = 7 then 1\n else {{ dbt_date.date_part(dow_part, date) }} + 1\n end\n {%- endif -%}\n\n\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5980356, "supported_languages": null}, "macro.dbt_date.bigquery__day_of_week": {"name": "bigquery__day_of_week", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_week.sql", "original_file_path": "macros/calendar_date/day_of_week.sql", "unique_id": "macro.dbt_date.bigquery__day_of_week", "macro_sql": "\n\n{%- macro bigquery__day_of_week(date, isoweek) -%}\n\n {%- set dow = dbt_date.date_part('dayofweek', date) -%}\n\n {%- if isoweek -%}\n case\n -- Shift start of week from Sunday (1) to Monday (2)\n when {{ dow }} = 1 then 7\n else {{ dow }} - 1\n end\n {%- else -%}\n {{ dow }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5988905, "supported_languages": null}, "macro.dbt_date.postgres__day_of_week": {"name": "postgres__day_of_week", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_week.sql", "original_file_path": "macros/calendar_date/day_of_week.sql", "unique_id": "macro.dbt_date.postgres__day_of_week", "macro_sql": "\n\n\n{%- macro postgres__day_of_week(date, isoweek) -%}\n\n {%- if isoweek -%}\n {%- set dow_part = 'isodow' -%}\n -- Monday(1) to Sunday (7)\n cast({{ dbt_date.date_part(dow_part, date) }} as {{ type_int() }})\n {%- else -%}\n {%- set dow_part = 'dow' -%}\n -- Sunday(1) to Saturday (7)\n cast({{ dbt_date.date_part(dow_part, date) }} + 1 as {{ type_int() }})\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part", "macro.dbt_utils.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.5999384, "supported_languages": null}, "macro.dbt_date.redshift__day_of_week": {"name": "redshift__day_of_week", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_week.sql", "original_file_path": "macros/calendar_date/day_of_week.sql", "unique_id": "macro.dbt_date.redshift__day_of_week", "macro_sql": "\n\n\n{%- macro redshift__day_of_week(date, isoweek) -%}\n\n {%- set dow = dbt_date.date_part('dayofweek', date) -%}\n\n {%- if isoweek -%}\n case\n -- Shift start of week from Sunday (0) to Monday (1)\n when {{ dow }} = 0 then 7\n else cast({{ dow }} as {{ type_bigint() }})\n end\n {%- else -%}\n cast({{ dow }} + 1 as {{ type_bigint() }})\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part", "macro.dbt_utils.type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6007926, "supported_languages": null}, "macro.dbt_date.day_of_year": {"name": "day_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_year.sql", "original_file_path": "macros/calendar_date/day_of_year.sql", "unique_id": "macro.dbt_date.day_of_year", "macro_sql": "{%- macro day_of_year(date) -%}\n{{ adapter.dispatch('day_of_year', 'dbt_date') (date) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.default__day_of_year"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6015468, "supported_languages": null}, "macro.dbt_date.default__day_of_year": {"name": "default__day_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_year.sql", "original_file_path": "macros/calendar_date/day_of_year.sql", "unique_id": "macro.dbt_date.default__day_of_year", "macro_sql": "\n\n{%- macro default__day_of_year(date) -%}\n {{ dbt_date.date_part('dayofyear', date) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.601867, "supported_languages": null}, "macro.dbt_date.postgres__day_of_year": {"name": "postgres__day_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_year.sql", "original_file_path": "macros/calendar_date/day_of_year.sql", "unique_id": "macro.dbt_date.postgres__day_of_year", "macro_sql": "\n\n{%- macro postgres__day_of_year(date) -%}\n {{ dbt_date.date_part('doy', date) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6022189, "supported_languages": null}, "macro.dbt_date.redshift__day_of_year": {"name": "redshift__day_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/day_of_year.sql", "original_file_path": "macros/calendar_date/day_of_year.sql", "unique_id": "macro.dbt_date.redshift__day_of_year", "macro_sql": "\n\n{%- macro redshift__day_of_year(date) -%}\n cast({{ dbt_date.date_part('dayofyear', date) }} as {{ type_bigint() }})\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part", "macro.dbt_utils.type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.60261, "supported_languages": null}, "macro.dbt_date.from_unixtimestamp": {"name": "from_unixtimestamp", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/from_unixtimestamp.sql", "original_file_path": "macros/calendar_date/from_unixtimestamp.sql", "unique_id": "macro.dbt_date.from_unixtimestamp", "macro_sql": "{%- macro from_unixtimestamp(epochs, format=\"seconds\") -%}\n {{ adapter.dispatch('from_unixtimestamp', 'dbt_date') (epochs, format) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.default__from_unixtimestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6047032, "supported_languages": null}, "macro.dbt_date.default__from_unixtimestamp": {"name": "default__from_unixtimestamp", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/from_unixtimestamp.sql", "original_file_path": "macros/calendar_date/from_unixtimestamp.sql", "unique_id": "macro.dbt_date.default__from_unixtimestamp", "macro_sql": "\n\n{%- macro default__from_unixtimestamp(epochs, format=\"seconds\") -%}\n {%- if format != \"seconds\" -%}\n {{ exceptions.raise_compiler_error(\n \"value \" ~ format ~ \" for `format` for from_unixtimestamp is not supported.\"\n )\n }}\n {% endif -%}\n to_timestamp({{ epochs }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6053553, "supported_languages": null}, "macro.dbt_date.postgres__from_unixtimestamp": {"name": "postgres__from_unixtimestamp", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/from_unixtimestamp.sql", "original_file_path": "macros/calendar_date/from_unixtimestamp.sql", "unique_id": "macro.dbt_date.postgres__from_unixtimestamp", "macro_sql": "\n\n{%- macro postgres__from_unixtimestamp(epochs, format=\"seconds\") -%}\n {%- if format != \"seconds\" -%}\n {{ exceptions.raise_compiler_error(\n \"value \" ~ format ~ \" for `format` for from_unixtimestamp is not supported.\"\n )\n }}\n {% endif -%}\n cast(to_timestamp({{ epochs }}) at time zone 'UTC' as timestamp)\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.60595, "supported_languages": null}, "macro.dbt_date.snowflake__from_unixtimestamp": {"name": "snowflake__from_unixtimestamp", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/from_unixtimestamp.sql", "original_file_path": "macros/calendar_date/from_unixtimestamp.sql", "unique_id": "macro.dbt_date.snowflake__from_unixtimestamp", "macro_sql": "\n\n{%- macro snowflake__from_unixtimestamp(epochs, format) -%}\n {%- if format == \"seconds\" -%}\n {%- set scale = 0 -%}\n {%- elif format == \"milliseconds\" -%}\n {%- set scale = 3 -%}\n {%- elif format == \"microseconds\" -%}\n {%- set scale = 6 -%}\n {%- else -%}\n {{ exceptions.raise_compiler_error(\n \"value \" ~ format ~ \" for `format` for from_unixtimestamp is not supported.\"\n )\n }}\n {% endif -%}\n to_timestamp_ntz({{ epochs }}, {{ scale }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6070614, "supported_languages": null}, "macro.dbt_date.bigquery__from_unixtimestamp": {"name": "bigquery__from_unixtimestamp", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/from_unixtimestamp.sql", "original_file_path": "macros/calendar_date/from_unixtimestamp.sql", "unique_id": "macro.dbt_date.bigquery__from_unixtimestamp", "macro_sql": "\n\n{%- macro bigquery__from_unixtimestamp(epochs, format) -%}\n {%- if format == \"seconds\" -%}\n timestamp_seconds({{ epochs }})\n {%- elif format == \"milliseconds\" -%}\n timestamp_millis({{ epochs }})\n {%- elif format == \"microseconds\" -%}\n timestamp_micros({{ epochs }})\n {%- else -%}\n {{ exceptions.raise_compiler_error(\n \"value \" ~ format ~ \" for `format` for from_unixtimestamp is not supported.\"\n )\n }}\n {% endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6080134, "supported_languages": null}, "macro.dbt_date.iso_week_end": {"name": "iso_week_end", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_end.sql", "original_file_path": "macros/calendar_date/iso_week_end.sql", "unique_id": "macro.dbt_date.iso_week_end", "macro_sql": "{%- macro iso_week_end(date=None, tz=None) -%}\n{%-set dt = date if date else dbt_date.today(tz) -%}\n{{ adapter.dispatch('iso_week_end', 'dbt_date') (dt) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_date.today", "macro.dbt_date.default__iso_week_end"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6091263, "supported_languages": null}, "macro.dbt_date._iso_week_end": {"name": "_iso_week_end", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_end.sql", "original_file_path": "macros/calendar_date/iso_week_end.sql", "unique_id": "macro.dbt_date._iso_week_end", "macro_sql": "{%- macro _iso_week_end(date, week_type) -%}\n{%- set dt = dbt_date.iso_week_start(date) -%}\n{{ dbt_date.n_days_away(6, dt) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.iso_week_start", "macro.dbt_date.n_days_away"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6096075, "supported_languages": null}, "macro.dbt_date.default__iso_week_end": {"name": "default__iso_week_end", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_end.sql", "original_file_path": "macros/calendar_date/iso_week_end.sql", "unique_id": "macro.dbt_date.default__iso_week_end", "macro_sql": "\n\n{%- macro default__iso_week_end(date) -%}\n{{ dbt_date._iso_week_end(date, 'isoweek') }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date._iso_week_end"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.60992, "supported_languages": null}, "macro.dbt_date.snowflake__iso_week_end": {"name": "snowflake__iso_week_end", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_end.sql", "original_file_path": "macros/calendar_date/iso_week_end.sql", "unique_id": "macro.dbt_date.snowflake__iso_week_end", "macro_sql": "\n\n{%- macro snowflake__iso_week_end(date) -%}\n{{ dbt_date._iso_week_end(date, 'weekiso') }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date._iso_week_end"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6102848, "supported_languages": null}, "macro.dbt_date.iso_week_of_year": {"name": "iso_week_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_of_year.sql", "original_file_path": "macros/calendar_date/iso_week_of_year.sql", "unique_id": "macro.dbt_date.iso_week_of_year", "macro_sql": "{%- macro iso_week_of_year(date=None, tz=None) -%}\n{%-set dt = date if date else dbt_date.today(tz) -%}\n{{ adapter.dispatch('iso_week_of_year', 'dbt_date') (dt) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_date.today", "macro.dbt_date.default__iso_week_of_year"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6113932, "supported_languages": null}, "macro.dbt_date._iso_week_of_year": {"name": "_iso_week_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_of_year.sql", "original_file_path": "macros/calendar_date/iso_week_of_year.sql", "unique_id": "macro.dbt_date._iso_week_of_year", "macro_sql": "{%- macro _iso_week_of_year(date, week_type) -%}\ncast({{ dbt_date.date_part(week_type, date) }} as {{ type_int() }})\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part", "macro.dbt_utils.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.611811, "supported_languages": null}, "macro.dbt_date.default__iso_week_of_year": {"name": "default__iso_week_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_of_year.sql", "original_file_path": "macros/calendar_date/iso_week_of_year.sql", "unique_id": "macro.dbt_date.default__iso_week_of_year", "macro_sql": "\n\n{%- macro default__iso_week_of_year(date) -%}\n{{ dbt_date._iso_week_of_year(date, 'isoweek') }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date._iso_week_of_year"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6121697, "supported_languages": null}, "macro.dbt_date.snowflake__iso_week_of_year": {"name": "snowflake__iso_week_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_of_year.sql", "original_file_path": "macros/calendar_date/iso_week_of_year.sql", "unique_id": "macro.dbt_date.snowflake__iso_week_of_year", "macro_sql": "\n\n{%- macro snowflake__iso_week_of_year(date) -%}\n{{ dbt_date._iso_week_of_year(date, 'weekiso') }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date._iso_week_of_year"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.612482, "supported_languages": null}, "macro.dbt_date.postgres__iso_week_of_year": {"name": "postgres__iso_week_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_of_year.sql", "original_file_path": "macros/calendar_date/iso_week_of_year.sql", "unique_id": "macro.dbt_date.postgres__iso_week_of_year", "macro_sql": "\n\n{%- macro postgres__iso_week_of_year(date) -%}\n-- postgresql week is isoweek, the first week of a year containing January 4 of that year.\n{{ dbt_date._iso_week_of_year(date, 'week') }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date._iso_week_of_year"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6128128, "supported_languages": null}, "macro.dbt_date.iso_week_start": {"name": "iso_week_start", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_start.sql", "original_file_path": "macros/calendar_date/iso_week_start.sql", "unique_id": "macro.dbt_date.iso_week_start", "macro_sql": "{%- macro iso_week_start(date=None, tz=None) -%}\n{%-set dt = date if date else dbt_date.today(tz) -%}\n{{ adapter.dispatch('iso_week_start', 'dbt_date') (dt) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_date.today", "macro.dbt_date.default__iso_week_start"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6139948, "supported_languages": null}, "macro.dbt_date._iso_week_start": {"name": "_iso_week_start", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_start.sql", "original_file_path": "macros/calendar_date/iso_week_start.sql", "unique_id": "macro.dbt_date._iso_week_start", "macro_sql": "{%- macro _iso_week_start(date, week_type) -%}\ncast({{ date_trunc(week_type, date) }} as date)\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6144195, "supported_languages": null}, "macro.dbt_date.default__iso_week_start": {"name": "default__iso_week_start", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_start.sql", "original_file_path": "macros/calendar_date/iso_week_start.sql", "unique_id": "macro.dbt_date.default__iso_week_start", "macro_sql": "\n\n{%- macro default__iso_week_start(date) -%}\n{{ dbt_date._iso_week_start(date, 'isoweek') }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date._iso_week_start"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6147394, "supported_languages": null}, "macro.dbt_date.snowflake__iso_week_start": {"name": "snowflake__iso_week_start", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_start.sql", "original_file_path": "macros/calendar_date/iso_week_start.sql", "unique_id": "macro.dbt_date.snowflake__iso_week_start", "macro_sql": "\n\n{%- macro snowflake__iso_week_start(date) -%}\n{{ dbt_date._iso_week_start(date, 'week') }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date._iso_week_start"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6150417, "supported_languages": null}, "macro.dbt_date.postgres__iso_week_start": {"name": "postgres__iso_week_start", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/iso_week_start.sql", "original_file_path": "macros/calendar_date/iso_week_start.sql", "unique_id": "macro.dbt_date.postgres__iso_week_start", "macro_sql": "\n\n{%- macro postgres__iso_week_start(date) -%}\n{{ dbt_date._iso_week_start(date, 'week') }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date._iso_week_start"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.615415, "supported_languages": null}, "macro.dbt_date.last_month": {"name": "last_month", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/last_month.sql", "original_file_path": "macros/calendar_date/last_month.sql", "unique_id": "macro.dbt_date.last_month", "macro_sql": "{%- macro last_month(tz=None) -%}\n{{ dbt_date.n_months_ago(1, tz) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.n_months_ago"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6158257, "supported_languages": null}, "macro.dbt_date.last_month_name": {"name": "last_month_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/last_month_name.sql", "original_file_path": "macros/calendar_date/last_month_name.sql", "unique_id": "macro.dbt_date.last_month_name", "macro_sql": "{%- macro last_month_name(short=True, tz=None) -%}\n{{ dbt_date.month_name(dbt_date.last_month(1, tz), short=short) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.month_name", "macro.dbt_date.last_month"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6164362, "supported_languages": null}, "macro.dbt_date.last_month_number": {"name": "last_month_number", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/last_month_number.sql", "original_file_path": "macros/calendar_date/last_month_number.sql", "unique_id": "macro.dbt_date.last_month_number", "macro_sql": "{%- macro last_month_number(tz=None) -%}\n{{ dbt_date.date_part('month', dbt_date.last_month(1, tz)) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.date_part", "macro.dbt_date.last_month"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6169264, "supported_languages": null}, "macro.dbt_date.last_week": {"name": "last_week", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/last_week.sql", "original_file_path": "macros/calendar_date/last_week.sql", "unique_id": "macro.dbt_date.last_week", "macro_sql": "{%- macro last_week(tz=None) -%}\n{{ dbt_date.n_weeks_ago(1, tz) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.n_weeks_ago"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6173692, "supported_languages": null}, "macro.dbt_date.month_name": {"name": "month_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/month_name.sql", "original_file_path": "macros/calendar_date/month_name.sql", "unique_id": "macro.dbt_date.month_name", "macro_sql": "{%- macro month_name(date, short=True) -%}\n {{ adapter.dispatch('month_name', 'dbt_date') (date, short) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.default__month_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6183333, "supported_languages": null}, "macro.dbt_date.default__month_name": {"name": "default__month_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/month_name.sql", "original_file_path": "macros/calendar_date/month_name.sql", "unique_id": "macro.dbt_date.default__month_name", "macro_sql": "\n\n{%- macro default__month_name(date, short) -%}\n{%- set f = 'MON' if short else 'MONTH' -%}\n to_char({{ date }}, '{{ f }}')\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6188054, "supported_languages": null}, "macro.dbt_date.bigquery__month_name": {"name": "bigquery__month_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/month_name.sql", "original_file_path": "macros/calendar_date/month_name.sql", "unique_id": "macro.dbt_date.bigquery__month_name", "macro_sql": "\n\n{%- macro bigquery__month_name(date, short) -%}\n{%- set f = '%b' if short else '%B' -%}\n format_date('{{ f }}', cast({{ date }} as date))\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.619294, "supported_languages": null}, "macro.dbt_date.snowflake__month_name": {"name": "snowflake__month_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/month_name.sql", "original_file_path": "macros/calendar_date/month_name.sql", "unique_id": "macro.dbt_date.snowflake__month_name", "macro_sql": "\n\n{%- macro snowflake__month_name(date, short) -%}\n{%- set f = 'MON' if short else 'MMMM' -%}\n to_char({{ date }}, '{{ f }}')\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.619728, "supported_languages": null}, "macro.dbt_date.postgres__month_name": {"name": "postgres__month_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/month_name.sql", "original_file_path": "macros/calendar_date/month_name.sql", "unique_id": "macro.dbt_date.postgres__month_name", "macro_sql": "\n\n{%- macro postgres__month_name(date, short) -%}\n{# FM = Fill mode, which suppresses padding blanks #}\n{%- set f = 'FMMon' if short else 'FMMonth' -%}\n to_char({{ date }}, '{{ f }}')\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6202142, "supported_languages": null}, "macro.dbt_date.n_days_ago": {"name": "n_days_ago", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/n_days_ago.sql", "original_file_path": "macros/calendar_date/n_days_ago.sql", "unique_id": "macro.dbt_date.n_days_ago", "macro_sql": "{%- macro n_days_ago(n, date=None, tz=None) -%}\n{%-set dt = date if date else dbt_date.today(tz) -%}\n{%- set n = n|int -%}\ncast({{ dateadd('day', -1 * n, dt) }} as date)\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.today", "macro.dbt_utils.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6211362, "supported_languages": null}, "macro.dbt_date.n_days_away": {"name": "n_days_away", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/n_days_away.sql", "original_file_path": "macros/calendar_date/n_days_away.sql", "unique_id": "macro.dbt_date.n_days_away", "macro_sql": "{%- macro n_days_away(n, date=None, tz=None) -%}\n{{ dbt_date.n_days_ago(-1 * n, date, tz) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.n_days_ago"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6216655, "supported_languages": null}, "macro.dbt_date.n_months_ago": {"name": "n_months_ago", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/n_months_ago.sql", "original_file_path": "macros/calendar_date/n_months_ago.sql", "unique_id": "macro.dbt_date.n_months_ago", "macro_sql": "{%- macro n_months_ago(n, tz=None) -%}\n{%- set n = n|int -%}\n{{ date_trunc('month',\n dateadd('month', -1 * n,\n dbt_date.today(tz)\n )\n ) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.date_trunc", "macro.dbt_utils.dateadd", "macro.dbt_date.today"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6224468, "supported_languages": null}, "macro.dbt_date.n_months_away": {"name": "n_months_away", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/n_months_away.sql", "original_file_path": "macros/calendar_date/n_months_away.sql", "unique_id": "macro.dbt_date.n_months_away", "macro_sql": "{%- macro n_months_away(n, tz=None) -%}\n{%- set n = n|int -%}\n{{ date_trunc('month',\n dateadd('month', n,\n dbt_date.today(tz)\n )\n ) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.date_trunc", "macro.dbt_utils.dateadd", "macro.dbt_date.today"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6231906, "supported_languages": null}, "macro.dbt_date.n_weeks_ago": {"name": "n_weeks_ago", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/n_weeks_ago.sql", "original_file_path": "macros/calendar_date/n_weeks_ago.sql", "unique_id": "macro.dbt_date.n_weeks_ago", "macro_sql": "{%- macro n_weeks_ago(n, tz=None) -%}\n{%- set n = n|int -%}\n{{ date_trunc('week',\n dateadd('week', -1 * n,\n dbt_date.today(tz)\n )\n ) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.date_trunc", "macro.dbt_utils.dateadd", "macro.dbt_date.today"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6239088, "supported_languages": null}, "macro.dbt_date.n_weeks_away": {"name": "n_weeks_away", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/n_weeks_away.sql", "original_file_path": "macros/calendar_date/n_weeks_away.sql", "unique_id": "macro.dbt_date.n_weeks_away", "macro_sql": "{%- macro n_weeks_away(n, tz=None) -%}\n{%- set n = n|int -%}\n{{ date_trunc('week',\n dateadd('week', n,\n dbt_date.today(tz)\n )\n ) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.date_trunc", "macro.dbt_utils.dateadd", "macro.dbt_date.today"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6246386, "supported_languages": null}, "macro.dbt_date.next_month": {"name": "next_month", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/next_month.sql", "original_file_path": "macros/calendar_date/next_month.sql", "unique_id": "macro.dbt_date.next_month", "macro_sql": "{%- macro next_month(tz=None) -%}\n{{ dbt_date.n_months_away(1, tz) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.n_months_away"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6250236, "supported_languages": null}, "macro.dbt_date.next_month_name": {"name": "next_month_name", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/next_month_name.sql", "original_file_path": "macros/calendar_date/next_month_name.sql", "unique_id": "macro.dbt_date.next_month_name", "macro_sql": "{%- macro next_month_name(short=True, tz=None) -%}\n{{ dbt_date.month_name(dbt_date.next_month(1, tz), short=short) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.month_name", "macro.dbt_date.next_month"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6257725, "supported_languages": null}, "macro.dbt_date.next_month_number": {"name": "next_month_number", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/next_month_number.sql", "original_file_path": "macros/calendar_date/next_month_number.sql", "unique_id": "macro.dbt_date.next_month_number", "macro_sql": "{%- macro next_month_number(tz=None) -%}\n{{ dbt_date.date_part('month', dbt_date.next_month(1, tz)) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.date_part", "macro.dbt_date.next_month"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6263223, "supported_languages": null}, "macro.dbt_date.next_week": {"name": "next_week", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/next_week.sql", "original_file_path": "macros/calendar_date/next_week.sql", "unique_id": "macro.dbt_date.next_week", "macro_sql": "{%- macro next_week(tz=None) -%}\n{{ dbt_date.n_weeks_away(1, tz) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.n_weeks_away"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6267116, "supported_languages": null}, "macro.dbt_date.now": {"name": "now", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/now.sql", "original_file_path": "macros/calendar_date/now.sql", "unique_id": "macro.dbt_date.now", "macro_sql": "{%- macro now(tz=None) -%}\n{{ dbt_date.convert_timezone(current_timestamp(), tz) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.convert_timezone", "macro.dbt_utils.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6271102, "supported_languages": null}, "macro.dbt_date.periods_since": {"name": "periods_since", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/periods_since.sql", "original_file_path": "macros/calendar_date/periods_since.sql", "unique_id": "macro.dbt_date.periods_since", "macro_sql": "{%- macro periods_since(date_col, period_name='day', tz=None) -%}\n{{ datediff(date_col, dbt_date.now(tz), period_name) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.datediff", "macro.dbt_date.now"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6277056, "supported_languages": null}, "macro.dbt_date.round_timestamp": {"name": "round_timestamp", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/round_timestamp.sql", "original_file_path": "macros/calendar_date/round_timestamp.sql", "unique_id": "macro.dbt_date.round_timestamp", "macro_sql": "{% macro round_timestamp(timestamp) %}\n {{ date_trunc(\"day\", dateadd(\"hour\", 12, timestamp)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.date_trunc", "macro.dbt_utils.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6282375, "supported_languages": null}, "macro.dbt_date.to_unixtimestamp": {"name": "to_unixtimestamp", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/to_unixtimestamp.sql", "original_file_path": "macros/calendar_date/to_unixtimestamp.sql", "unique_id": "macro.dbt_date.to_unixtimestamp", "macro_sql": "{%- macro to_unixtimestamp(timestamp) -%}\n {{ adapter.dispatch('to_unixtimestamp', 'dbt_date') (timestamp) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.default__to_unixtimestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6288764, "supported_languages": null}, "macro.dbt_date.default__to_unixtimestamp": {"name": "default__to_unixtimestamp", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/to_unixtimestamp.sql", "original_file_path": "macros/calendar_date/to_unixtimestamp.sql", "unique_id": "macro.dbt_date.default__to_unixtimestamp", "macro_sql": "\n\n{%- macro default__to_unixtimestamp(timestamp) -%}\n {{ dbt_date.date_part('epoch', timestamp) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.62925, "supported_languages": null}, "macro.dbt_date.snowflake__to_unixtimestamp": {"name": "snowflake__to_unixtimestamp", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/to_unixtimestamp.sql", "original_file_path": "macros/calendar_date/to_unixtimestamp.sql", "unique_id": "macro.dbt_date.snowflake__to_unixtimestamp", "macro_sql": "\n\n{%- macro snowflake__to_unixtimestamp(timestamp) -%}\n {{ dbt_date.date_part('epoch_seconds', timestamp) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.629563, "supported_languages": null}, "macro.dbt_date.bigquery__to_unixtimestamp": {"name": "bigquery__to_unixtimestamp", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/to_unixtimestamp.sql", "original_file_path": "macros/calendar_date/to_unixtimestamp.sql", "unique_id": "macro.dbt_date.bigquery__to_unixtimestamp", "macro_sql": "\n\n{%- macro bigquery__to_unixtimestamp(timestamp) -%}\n unix_seconds({{ timestamp }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6297927, "supported_languages": null}, "macro.dbt_date.today": {"name": "today", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/today.sql", "original_file_path": "macros/calendar_date/today.sql", "unique_id": "macro.dbt_date.today", "macro_sql": "{%- macro today(tz=None) -%}\ncast({{ dbt_date.now(tz) }} as date)\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.now"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6302292, "supported_languages": null}, "macro.dbt_date.tomorrow": {"name": "tomorrow", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/tomorrow.sql", "original_file_path": "macros/calendar_date/tomorrow.sql", "unique_id": "macro.dbt_date.tomorrow", "macro_sql": "{%- macro tomorrow(date=None, tz=None) -%}\n{{ dbt_date.n_days_away(1, date, tz) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.n_days_away"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6306958, "supported_languages": null}, "macro.dbt_date.week_end": {"name": "week_end", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/week_end.sql", "original_file_path": "macros/calendar_date/week_end.sql", "unique_id": "macro.dbt_date.week_end", "macro_sql": "{%- macro week_end(date=None, tz=None) -%}\n{%-set dt = date if date else dbt_date.today(tz) -%}\n{{ adapter.dispatch('week_end', 'dbt_date') (dt) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_date.today", "macro.dbt_date.default__week_end"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6317475, "supported_languages": null}, "macro.dbt_date.default__week_end": {"name": "default__week_end", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/week_end.sql", "original_file_path": "macros/calendar_date/week_end.sql", "unique_id": "macro.dbt_date.default__week_end", "macro_sql": "{%- macro default__week_end(date) -%}\n{{ last_day(date, 'week') }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.632252, "supported_languages": null}, "macro.dbt_date.snowflake__week_end": {"name": "snowflake__week_end", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/week_end.sql", "original_file_path": "macros/calendar_date/week_end.sql", "unique_id": "macro.dbt_date.snowflake__week_end", "macro_sql": "\n\n{%- macro snowflake__week_end(date) -%}\n{%- set dt = dbt_date.week_start(date) -%}\n{{ dbt_date.n_days_away(6, dt) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.week_start", "macro.dbt_date.n_days_away"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.632796, "supported_languages": null}, "macro.dbt_date.postgres__week_end": {"name": "postgres__week_end", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/week_end.sql", "original_file_path": "macros/calendar_date/week_end.sql", "unique_id": "macro.dbt_date.postgres__week_end", "macro_sql": "\n\n{%- macro postgres__week_end(date) -%}\n{%- set dt = dbt_date.week_start(date) -%}\n{{ dbt_date.n_days_away(6, dt) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.week_start", "macro.dbt_date.n_days_away"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6334555, "supported_languages": null}, "macro.dbt_date.week_of_year": {"name": "week_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/week_of_year.sql", "original_file_path": "macros/calendar_date/week_of_year.sql", "unique_id": "macro.dbt_date.week_of_year", "macro_sql": "{%- macro week_of_year(date=None, tz=None) -%}\n{%-set dt = date if date else dbt_date.today(tz) -%}\n{{ adapter.dispatch('week_of_year', 'dbt_date') (dt) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_date.today", "macro.dbt_date.default__week_of_year"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6346054, "supported_languages": null}, "macro.dbt_date.default__week_of_year": {"name": "default__week_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/week_of_year.sql", "original_file_path": "macros/calendar_date/week_of_year.sql", "unique_id": "macro.dbt_date.default__week_of_year", "macro_sql": "{%- macro default__week_of_year(date) -%}\ncast({{ dbt_date.date_part('week', date) }} as {{ type_int() }})\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.date_part", "macro.dbt_utils.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6350331, "supported_languages": null}, "macro.dbt_date.postgres__week_of_year": {"name": "postgres__week_of_year", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/week_of_year.sql", "original_file_path": "macros/calendar_date/week_of_year.sql", "unique_id": "macro.dbt_date.postgres__week_of_year", "macro_sql": "\n\n{%- macro postgres__week_of_year(date) -%}\n{# postgresql 'week' returns isoweek. Use to_char instead.\n WW = the first week starts on the first day of the year #}\ncast(to_char({{ date }}, 'WW') as {{ type_int() }})\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.635401, "supported_languages": null}, "macro.dbt_date.week_start": {"name": "week_start", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/week_start.sql", "original_file_path": "macros/calendar_date/week_start.sql", "unique_id": "macro.dbt_date.week_start", "macro_sql": "{%- macro week_start(date=None, tz=None) -%}\n{%-set dt = date if date else dbt_date.today(tz) -%}\n{{ adapter.dispatch('week_start', 'dbt_date') (dt) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_date.today", "macro.dbt_date.default__week_start"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6364088, "supported_languages": null}, "macro.dbt_date.default__week_start": {"name": "default__week_start", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/week_start.sql", "original_file_path": "macros/calendar_date/week_start.sql", "unique_id": "macro.dbt_date.default__week_start", "macro_sql": "{%- macro default__week_start(date) -%}\ncast({{ date_trunc('week', date) }} as date)\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.636867, "supported_languages": null}, "macro.dbt_date.snowflake__week_start": {"name": "snowflake__week_start", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/week_start.sql", "original_file_path": "macros/calendar_date/week_start.sql", "unique_id": "macro.dbt_date.snowflake__week_start", "macro_sql": "\n\n{%- macro snowflake__week_start(date) -%}\n {#\n Get the day of week offset: e.g. if the date is a Sunday,\n dbt_date.day_of_week returns 1, so we subtract 1 to get a 0 offset\n #}\n {% set off_set = dbt_date.day_of_week(date, isoweek=False) ~ \" - 1\" %}\n cast({{ dateadd(\"day\", \"-1 * (\" ~ off_set ~ \")\", date) }} as date)\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_date.day_of_week", "macro.dbt_utils.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.63756, "supported_languages": null}, "macro.dbt_date.postgres__week_start": {"name": "postgres__week_start", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/week_start.sql", "original_file_path": "macros/calendar_date/week_start.sql", "unique_id": "macro.dbt_date.postgres__week_start", "macro_sql": "\n\n{%- macro postgres__week_start(date) -%}\n-- Sunday as week start date\ncast({{ dateadd('day', -1, date_trunc('week', dateadd('day', 1, date))) }} as date)\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.dateadd", "macro.dbt_utils.date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6380763, "supported_languages": null}, "macro.dbt_date.yesterday": {"name": "yesterday", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/calendar_date/yesterday.sql", "original_file_path": "macros/calendar_date/yesterday.sql", "unique_id": "macro.dbt_date.yesterday", "macro_sql": "{%- macro yesterday(date=None, tz=None) -%}\n{{ dbt_date.n_days_ago(1, date, tz) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_date.n_days_ago"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.63862, "supported_languages": null}, "macro.dbt_date.get_fiscal_periods": {"name": "get_fiscal_periods", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/fiscal_date/get_fiscal_periods.sql", "original_file_path": "macros/fiscal_date/get_fiscal_periods.sql", "unique_id": "macro.dbt_date.get_fiscal_periods", "macro_sql": "{% macro get_fiscal_periods(dates, year_end_month, week_start_day, shift_year=1) %}\n{#\nThis macro requires you to pass in a ref to a date dimension, created via\ndbt_date.get_date_dimension()s\n#}\nwith fscl_year_dates_for_periods as (\n {{ dbt_date.get_fiscal_year_dates(dates, year_end_month, week_start_day, shift_year) }}\n),\nfscl_year_w13 as (\n\n select\n f.*,\n -- We count the weeks in a 13 week period\n -- and separate the 4-5-4 week sequences\n mod(cast(\n (f.fiscal_week_of_year-1) as {{ type_int() }}\n ), 13) as w13_number,\n -- Chop weeks into 13 week merch quarters\n cast(\n least(\n floor((f.fiscal_week_of_year-1)/13.0)\n , 3)\n as {{ type_int() }}) as quarter_number\n from\n fscl_year_dates_for_periods f\n\n),\nfscl_periods as (\n\n select\n f.date_day,\n f.fiscal_year_number,\n f.week_start_date,\n f.week_end_date,\n f.fiscal_week_of_year,\n case\n -- we move week 53 into the 3rd period of the quarter\n when f.fiscal_week_of_year = 53 then 3\n when f.w13_number between 0 and 3 then 1\n when f.w13_number between 4 and 8 then 2\n when f.w13_number between 9 and 12 then 3\n end as period_of_quarter,\n f.quarter_number\n from\n fscl_year_w13 f\n\n),\nfscl_periods_quarters as (\n\n select\n f.*,\n cast((\n (f.quarter_number * 3) + f.period_of_quarter\n ) as {{ type_int() }}) as fiscal_period_number\n from\n fscl_periods f\n\n)\nselect\n date_day,\n fiscal_year_number,\n week_start_date,\n week_end_date,\n fiscal_week_of_year,\n dense_rank() over(partition by fiscal_period_number order by fiscal_week_of_year) as fiscal_week_of_period,\n fiscal_period_number,\n quarter_number+1 as fiscal_quarter_number,\n period_of_quarter as fiscal_period_of_quarter\nfrom\n fscl_periods_quarters\norder by 1,2\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_date.get_fiscal_year_dates", "macro.dbt_utils.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.64016, "supported_languages": null}, "macro.dbt_date.get_fiscal_year_dates": {"name": "get_fiscal_year_dates", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/fiscal_date/get_fiscal_year_dates.sql", "original_file_path": "macros/fiscal_date/get_fiscal_year_dates.sql", "unique_id": "macro.dbt_date.get_fiscal_year_dates", "macro_sql": "{% macro get_fiscal_year_dates(dates, year_end_month=12, week_start_day=1, shift_year=1) %}\n{{ adapter.dispatch('get_fiscal_year_dates', 'dbt_date') (dates, year_end_month, week_start_day, shift_year) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_date.default__get_fiscal_year_dates"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6426916, "supported_languages": null}, "macro.dbt_date.default__get_fiscal_year_dates": {"name": "default__get_fiscal_year_dates", "resource_type": "macro", "package_name": "dbt_date", "path": "macros/fiscal_date/get_fiscal_year_dates.sql", "original_file_path": "macros/fiscal_date/get_fiscal_year_dates.sql", "unique_id": "macro.dbt_date.default__get_fiscal_year_dates", "macro_sql": "{% macro default__get_fiscal_year_dates(dates, year_end_month, week_start_day, shift_year) %}\n-- this gets all the dates within a fiscal year\n-- determined by the given year-end-month\n-- ending on the saturday closest to that month's end date\nwith date_dimension as (\n select * from {{ dates }}\n),\nyear_month_end as (\n\n select\n d.year_number - {{ shift_year }} as fiscal_year_number,\n d.month_end_date\n from\n date_dimension d\n where\n d.month_of_year = {{ year_end_month }}\n group by 1,2\n\n),\nweeks as (\n\n select\n d.year_number,\n d.month_of_year,\n d.date_day as week_start_date,\n cast({{ dateadd('day', 6, 'd.date_day') }} as date) as week_end_date\n from\n date_dimension d\n where\n d.day_of_week = {{ week_start_day }}\n\n),\n-- get all the weeks that start in the month the year ends\nyear_week_ends as (\n\n select\n d.year_number - {{ shift_year }} as fiscal_year_number,\n d.week_end_date\n from\n weeks d\n where\n d.month_of_year = {{ year_end_month }}\n group by\n 1,2\n\n),\n-- then calculate which Saturday is closest to month end\nweeks_at_month_end as (\n\n select\n d.fiscal_year_number,\n d.week_end_date,\n m.month_end_date,\n rank() over\n (partition by d.fiscal_year_number\n order by\n abs({{ datediff('d.week_end_date', 'm.month_end_date', 'day') }})\n\n ) as closest_to_month_end\n from\n year_week_ends d\n join\n year_month_end m on d.fiscal_year_number = m.fiscal_year_number\n),\nfiscal_year_range as (\n\n select\n w.fiscal_year_number,\n cast(\n {{ dateadd('day', 1,\n 'lag(w.week_end_date) over(order by w.week_end_date)') }}\n as date) as fiscal_year_start_date,\n w.week_end_date as fiscal_year_end_date\n from\n weeks_at_month_end w\n where\n w.closest_to_month_end = 1\n\n),\nfiscal_year_dates as (\n\n select\n d.date_day,\n m.fiscal_year_number,\n m.fiscal_year_start_date,\n m.fiscal_year_end_date,\n w.week_start_date,\n w.week_end_date,\n -- we reset the weeks of the year starting with the merch year start date\n dense_rank()\n over(\n partition by m.fiscal_year_number\n order by w.week_start_date\n ) as fiscal_week_of_year\n from\n date_dimension d\n join\n fiscal_year_range m on d.date_day between m.fiscal_year_start_date and m.fiscal_year_end_date\n join\n weeks w on d.date_day between w.week_start_date and w.week_end_date\n\n)\nselect * from fiscal_year_dates order by 1\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.dateadd", "macro.dbt_utils.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6439145, "supported_languages": null}, "macro.dbt_expectations.log_natural": {"name": "log_natural", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/log_natural.sql", "original_file_path": "macros/math/log_natural.sql", "unique_id": "macro.dbt_expectations.log_natural", "macro_sql": "{% macro log_natural(x) -%}\n {{ adapter.dispatch('log_natural', 'dbt_expectations') (x) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.default__log_natural"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6449158, "supported_languages": null}, "macro.dbt_expectations.default__log_natural": {"name": "default__log_natural", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/log_natural.sql", "original_file_path": "macros/math/log_natural.sql", "unique_id": "macro.dbt_expectations.default__log_natural", "macro_sql": "{% macro default__log_natural(x) %}\n\n ln({{ x }})\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6453543, "supported_languages": null}, "macro.dbt_expectations.bigquery__log_natural": {"name": "bigquery__log_natural", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/log_natural.sql", "original_file_path": "macros/math/log_natural.sql", "unique_id": "macro.dbt_expectations.bigquery__log_natural", "macro_sql": "{% macro bigquery__log_natural(x) %}\n\n ln({{ x }})\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.645618, "supported_languages": null}, "macro.dbt_expectations.snowflake__log_natural": {"name": "snowflake__log_natural", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/log_natural.sql", "original_file_path": "macros/math/log_natural.sql", "unique_id": "macro.dbt_expectations.snowflake__log_natural", "macro_sql": "{% macro snowflake__log_natural(x) %}\n\n ln({{ x }})\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6458523, "supported_languages": null}, "macro.dbt_expectations.median": {"name": "median", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/median.sql", "original_file_path": "macros/math/median.sql", "unique_id": "macro.dbt_expectations.median", "macro_sql": "{% macro median(field) %}\n{{ dbt_expectations.percentile_cont(field, 0.5) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.percentile_cont"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6463814, "supported_languages": null}, "macro.dbt_expectations.percentile_cont": {"name": "percentile_cont", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/percentile_cont.sql", "original_file_path": "macros/math/percentile_cont.sql", "unique_id": "macro.dbt_expectations.percentile_cont", "macro_sql": "{% macro percentile_cont(field, quantile, partition=None) %}\n {{ adapter.dispatch('quantile', 'dbt_expectations') (field, quantile, partition) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.default__quantile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6472874, "supported_languages": null}, "macro.dbt_expectations.default__quantile": {"name": "default__quantile", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/percentile_cont.sql", "original_file_path": "macros/math/percentile_cont.sql", "unique_id": "macro.dbt_expectations.default__quantile", "macro_sql": "{% macro default__quantile(field, quantile, partition) -%}\n percentile_cont({{ quantile }}) within group (order by {{ field }})\n {%- if partition %}over(partition by {{ partition }}){% endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6477754, "supported_languages": null}, "macro.dbt_expectations.bigquery__quantile": {"name": "bigquery__quantile", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/percentile_cont.sql", "original_file_path": "macros/math/percentile_cont.sql", "unique_id": "macro.dbt_expectations.bigquery__quantile", "macro_sql": "{% macro bigquery__quantile(field, quantile, partition) %}\n percentile_cont({{ field }}, {{ quantile }})\n over({%- if partition %}partition by {{ partition }}{% endif -%})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.648324, "supported_languages": null}, "macro.dbt_expectations.rand": {"name": "rand", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/rand.sql", "original_file_path": "macros/math/rand.sql", "unique_id": "macro.dbt_expectations.rand", "macro_sql": "{% macro rand() -%}\n {{ adapter.dispatch('rand', 'dbt_expectations') () }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.default__rand"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.648987, "supported_languages": null}, "macro.dbt_expectations.default__rand": {"name": "default__rand", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/rand.sql", "original_file_path": "macros/math/rand.sql", "unique_id": "macro.dbt_expectations.default__rand", "macro_sql": "{% macro default__rand() %}\n\n rand()\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6492436, "supported_languages": null}, "macro.dbt_expectations.bigquery__rand": {"name": "bigquery__rand", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/rand.sql", "original_file_path": "macros/math/rand.sql", "unique_id": "macro.dbt_expectations.bigquery__rand", "macro_sql": "{% macro bigquery__rand() %}\n\n rand()\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6494231, "supported_languages": null}, "macro.dbt_expectations.snowflake__rand": {"name": "snowflake__rand", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/rand.sql", "original_file_path": "macros/math/rand.sql", "unique_id": "macro.dbt_expectations.snowflake__rand", "macro_sql": "{% macro snowflake__rand(seed) %}\n\n uniform(0::float, 1::float, random())\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6496136, "supported_languages": null}, "macro.dbt_expectations.postgres__rand": {"name": "postgres__rand", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/rand.sql", "original_file_path": "macros/math/rand.sql", "unique_id": "macro.dbt_expectations.postgres__rand", "macro_sql": "{% macro postgres__rand() %}\n\n random()\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.649786, "supported_languages": null}, "macro.dbt_expectations.redshift__rand": {"name": "redshift__rand", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/math/rand.sql", "original_file_path": "macros/math/rand.sql", "unique_id": "macro.dbt_expectations.redshift__rand", "macro_sql": "{% macro redshift__rand() %}\n\n random()\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6499503, "supported_languages": null}, "macro.dbt_expectations.regexp_instr": {"name": "regexp_instr", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/regex/regexp_instr.sql", "original_file_path": "macros/regex/regexp_instr.sql", "unique_id": "macro.dbt_expectations.regexp_instr", "macro_sql": "{% macro regexp_instr(source_value, regexp, position=1, occurrence=1, is_raw=False) %}\n\n {{ adapter.dispatch('regexp_instr', 'dbt_expectations')(\n source_value, regexp, position, occurrence, is_raw\n ) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.default__regexp_instr"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6514757, "supported_languages": null}, "macro.dbt_expectations.default__regexp_instr": {"name": "default__regexp_instr", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/regex/regexp_instr.sql", "original_file_path": "macros/regex/regexp_instr.sql", "unique_id": "macro.dbt_expectations.default__regexp_instr", "macro_sql": "{% macro default__regexp_instr(source_value, regexp, position, occurrence, is_raw) %}\nregexp_instr({{ source_value }}, '{{ regexp }}', {{ position }}, {{ occurrence }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6519349, "supported_languages": null}, "macro.dbt_expectations.snowflake__regexp_instr": {"name": "snowflake__regexp_instr", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/regex/regexp_instr.sql", "original_file_path": "macros/regex/regexp_instr.sql", "unique_id": "macro.dbt_expectations.snowflake__regexp_instr", "macro_sql": "{% macro snowflake__regexp_instr(source_value, regexp, position, occurrence, is_raw) %}\n{%- set regexp = \"$$\" ~ regexp ~ \"$$\" if is_raw else \"'\" ~ regexp ~ \"'\" -%}\nregexp_instr({{ source_value }}, {{ regexp }}, {{ position }}, {{ occurrence }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6526778, "supported_languages": null}, "macro.dbt_expectations.bigquery__regexp_instr": {"name": "bigquery__regexp_instr", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/regex/regexp_instr.sql", "original_file_path": "macros/regex/regexp_instr.sql", "unique_id": "macro.dbt_expectations.bigquery__regexp_instr", "macro_sql": "{% macro bigquery__regexp_instr(source_value, regexp, position, occurrence, is_raw) %}\n{%- set regexp = \"r'\" ~ regexp ~ \"'\" if is_raw else \"'\" ~ regexp ~ \"'\" -%}\nregexp_instr({{ source_value }}, {{ regexp }}, {{ position }}, {{ occurrence }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6534128, "supported_languages": null}, "macro.dbt_expectations.postgres__regexp_instr": {"name": "postgres__regexp_instr", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/regex/regexp_instr.sql", "original_file_path": "macros/regex/regexp_instr.sql", "unique_id": "macro.dbt_expectations.postgres__regexp_instr", "macro_sql": "{% macro postgres__regexp_instr(source_value, regexp, position, occurrence, is_raw) %}\narray_length((select regexp_matches({{ source_value }}, '{{ regexp }}')), 1)\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.653777, "supported_languages": null}, "macro.dbt_expectations.redshift__regexp_instr": {"name": "redshift__regexp_instr", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/regex/regexp_instr.sql", "original_file_path": "macros/regex/regexp_instr.sql", "unique_id": "macro.dbt_expectations.redshift__regexp_instr", "macro_sql": "{% macro redshift__regexp_instr(source_value, regexp, position, occurrence, is_raw) %}\nregexp_instr({{ source_value }}, '{{ regexp }}', {{ position }}, {{ occurrence }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6542945, "supported_languages": null}, "macro.dbt_expectations.truth_expression": {"name": "truth_expression", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/_generalized/_truth_expression.sql", "original_file_path": "macros/schema_tests/_generalized/_truth_expression.sql", "unique_id": "macro.dbt_expectations.truth_expression", "macro_sql": "{% macro truth_expression(expression) %}\n {{ adapter.dispatch('truth_expression', 'dbt_expectations') (expression) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.default__truth_expression"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6548312, "supported_languages": null}, "macro.dbt_expectations.default__truth_expression": {"name": "default__truth_expression", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/_generalized/_truth_expression.sql", "original_file_path": "macros/schema_tests/_generalized/_truth_expression.sql", "unique_id": "macro.dbt_expectations.default__truth_expression", "macro_sql": "{% macro default__truth_expression(expression) %}\n {{ expression }} as expression\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.655066, "supported_languages": null}, "macro.dbt_expectations.get_select": {"name": "get_select", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/_generalized/equal_expression.sql", "original_file_path": "macros/schema_tests/_generalized/equal_expression.sql", "unique_id": "macro.dbt_expectations.get_select", "macro_sql": "{% macro get_select(model, expression, row_condition, group_by) -%}\n {{ adapter.dispatch('get_select', 'dbt_expectations') (model, expression, row_condition, group_by) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.default__get_select"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6625762, "supported_languages": null}, "macro.dbt_expectations.default__get_select": {"name": "default__get_select", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/_generalized/equal_expression.sql", "original_file_path": "macros/schema_tests/_generalized/equal_expression.sql", "unique_id": "macro.dbt_expectations.default__get_select", "macro_sql": "\n\n{%- macro default__get_select(model, expression, row_condition, group_by) %}\n select\n {% if group_by %}\n {% for g in group_by -%}\n {{ g }} as col_{{ loop.index }},\n {% endfor -%}\n {% endif %}\n {{ expression }} as expression\n from\n {{ model }}\n {%- if row_condition %}\n where\n {{ row_condition }}\n {% endif %}\n {% if group_by %}\n group by\n {% for g in group_by -%}\n {{ loop.index }}{% if not loop.last %},{% endif %}\n {% endfor %}\n {% endif %}\n{% endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6639726, "supported_languages": null}, "macro.dbt_expectations.test_equal_expression": {"name": "test_equal_expression", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/_generalized/equal_expression.sql", "original_file_path": "macros/schema_tests/_generalized/equal_expression.sql", "unique_id": "macro.dbt_expectations.test_equal_expression", "macro_sql": "{% test equal_expression(model, expression,\n compare_model=None,\n compare_expression=None,\n group_by=None,\n compare_group_by=None,\n row_condition=None,\n compare_row_condition=None,\n tolerance=0.0,\n tolerance_percent=None\n ) -%}\n\n {{ adapter.dispatch('test_equal_expression', 'dbt_expectations') (\n model,\n expression,\n compare_model,\n compare_expression,\n group_by,\n compare_group_by,\n row_condition,\n compare_row_condition,\n tolerance,\n tolerance_percent) }}\n{%- endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.default__test_equal_expression"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6653588, "supported_languages": null}, "macro.dbt_expectations.default__test_equal_expression": {"name": "default__test_equal_expression", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/_generalized/equal_expression.sql", "original_file_path": "macros/schema_tests/_generalized/equal_expression.sql", "unique_id": "macro.dbt_expectations.default__test_equal_expression", "macro_sql": "\n\n{%- macro default__test_equal_expression(\n model,\n expression,\n compare_model,\n compare_expression,\n group_by,\n compare_group_by,\n row_condition,\n compare_row_condition,\n tolerance,\n tolerance_percent) -%}\n\n {%- set compare_model = model if not compare_model else compare_model -%}\n {%- set compare_expression = expression if not compare_expression else compare_expression -%}\n {%- set compare_row_condition = row_condition if not compare_row_condition else compare_row_condition -%}\n {%- set compare_group_by = group_by if not compare_group_by else compare_group_by -%}\n\n {%- set n_cols = (group_by|length) if group_by else 0 %}\n with a as (\n {{ dbt_expectations.get_select(model, expression, row_condition, group_by) }}\n ),\n b as (\n {{ dbt_expectations.get_select(compare_model, compare_expression, compare_row_condition, compare_group_by) }}\n ),\n final as (\n\n select\n {% for i in range(1, n_cols + 1) -%}\n coalesce(a.col_{{ i }}, b.col_{{ i }}) as col_{{ i }},\n {% endfor %}\n a.expression,\n b.expression as compare_expression,\n abs(coalesce(a.expression, 0) - coalesce(b.expression, 0)) as expression_difference,\n abs(coalesce(a.expression, 0) - coalesce(b.expression, 0))/\n nullif(a.expression * 1.0, 0) as expression_difference_percent\n from\n {% if n_cols > 0 %}\n a\n full outer join\n b on\n {% for i in range(1, n_cols + 1) -%}\n a.col_{{ i }} = b.col_{{ i }} {% if not loop.last %}and{% endif %}\n {% endfor -%}\n {% else %}\n a cross join b\n {% endif %}\n )\n -- DEBUG:\n -- select * from final\n select\n *\n from final\n where\n {% if tolerance_percent %}\n expression_difference_percent > {{ tolerance_percent }}\n {% else %}\n expression_difference > {{ tolerance }}\n {% endif %}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_expectations.get_select"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6683457, "supported_languages": null}, "macro.dbt_expectations.test_expression_between": {"name": "test_expression_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/_generalized/expression_between.sql", "original_file_path": "macros/schema_tests/_generalized/expression_between.sql", "unique_id": "macro.dbt_expectations.test_expression_between", "macro_sql": "{% test expression_between(model,\n expression,\n min_value=None,\n max_value=None,\n group_by_columns=None,\n row_condition=None,\n strictly=False\n ) %}\n\n {{ dbt_expectations.expression_between(model, expression, min_value, max_value, group_by_columns, row_condition, strictly) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6704502, "supported_languages": null}, "macro.dbt_expectations.expression_between": {"name": "expression_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/_generalized/expression_between.sql", "original_file_path": "macros/schema_tests/_generalized/expression_between.sql", "unique_id": "macro.dbt_expectations.expression_between", "macro_sql": "{% macro expression_between(model,\n expression,\n min_value,\n max_value,\n group_by_columns,\n row_condition,\n strictly\n ) %}\n\n{%- if min_value is none and max_value is none -%}\n{{ exceptions.raise_compiler_error(\n \"You have to provide either a min_value, max_value or both.\"\n) }}\n{%- endif -%}\n\n{%- set strict_operator = \"\" if strictly else \"=\" -%}\n\n{% set expression_min_max %}\n( 1=1\n{%- if min_value is not none %} and {{ expression | trim }} >{{ strict_operator }} {{ min_value }}{% endif %}\n{%- if max_value is not none %} and {{ expression | trim }} <{{ strict_operator }} {{ max_value }}{% endif %}\n)\n{% endset %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression_min_max,\n group_by_columns=group_by_columns,\n row_condition=row_condition)\n }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.67221, "supported_languages": null}, "macro.dbt_expectations.test_expression_is_true": {"name": "test_expression_is_true", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/_generalized/expression_is_true.sql", "original_file_path": "macros/schema_tests/_generalized/expression_is_true.sql", "unique_id": "macro.dbt_expectations.test_expression_is_true", "macro_sql": "{% test expression_is_true(model,\n expression,\n test_condition=\"= true\",\n group_by_columns=None,\n row_condition=None\n ) %}\n\n {{ dbt_expectations.expression_is_true(model, expression, test_condition, group_by_columns, row_condition) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.673887, "supported_languages": null}, "macro.dbt_expectations.expression_is_true": {"name": "expression_is_true", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/_generalized/expression_is_true.sql", "original_file_path": "macros/schema_tests/_generalized/expression_is_true.sql", "unique_id": "macro.dbt_expectations.expression_is_true", "macro_sql": "{% macro expression_is_true(model,\n expression,\n test_condition=\"= true\",\n group_by_columns=None,\n row_condition=None\n ) %}\n {{ adapter.dispatch('expression_is_true', 'dbt_expectations') (model, expression, test_condition, group_by_columns, row_condition) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.default__expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.674601, "supported_languages": null}, "macro.dbt_expectations.default__expression_is_true": {"name": "default__expression_is_true", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/_generalized/expression_is_true.sql", "original_file_path": "macros/schema_tests/_generalized/expression_is_true.sql", "unique_id": "macro.dbt_expectations.default__expression_is_true", "macro_sql": "{% macro default__expression_is_true(model, expression, test_condition, group_by_columns, row_condition) -%}\nwith grouped_expression as (\n select\n {% if group_by_columns %}\n {% for group_by_column in group_by_columns -%}\n {{ group_by_column }} as col_{{ loop.index }},\n {% endfor -%}\n {% endif %}\n {{ dbt_expectations.truth_expression(expression) }}\n from {{ model }}\n {%- if row_condition %}\n where\n {{ row_condition }}\n {% endif %}\n {% if group_by_columns %}\n group by\n {% for group_by_column in group_by_columns -%}\n {{ group_by_column }}{% if not loop.last %},{% endif %}\n {% endfor %}\n {% endif %}\n\n),\nvalidation_errors as (\n\n select\n *\n from\n grouped_expression\n where\n not(expression {{ test_condition }})\n\n)\n\nselect *\nfrom validation_errors\n\n\n{% endmacro -%}", "depends_on": {"macros": ["macro.dbt_expectations.truth_expression"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6760125, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_distinct_count_to_be_greater_than": {"name": "test_expect_column_distinct_count_to_be_greater_than", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_distinct_count_to_be_greater_than.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_distinct_count_to_be_greater_than.sql", "unique_id": "macro.dbt_expectations.test_expect_column_distinct_count_to_be_greater_than", "macro_sql": "{% test expect_column_distinct_count_to_be_greater_than(model,\n column_name,\n value,\n quote_values=False,\n group_by=None,\n row_condition=None\n ) %}\n{% set expression %}\ncount(distinct {{ column_name }}) > {{ value }}\n{% endset %}\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=group_by,\n row_condition=row_condition)\n }}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.677348, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_distinct_count_to_be_less_than": {"name": "test_expect_column_distinct_count_to_be_less_than", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_distinct_count_to_be_less_than.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_distinct_count_to_be_less_than.sql", "unique_id": "macro.dbt_expectations.test_expect_column_distinct_count_to_be_less_than", "macro_sql": "{% test expect_column_distinct_count_to_be_less_than(model,\n column_name,\n value,\n quote_values=False,\n group_by=None,\n row_condition=None\n ) %}\n{% set expression %}\ncount(distinct {{ column_name }}) < {{ value }}\n{% endset %}\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=group_by,\n row_condition=row_condition)\n }}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6787984, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_distinct_count_to_equal": {"name": "test_expect_column_distinct_count_to_equal", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_distinct_count_to_equal.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_distinct_count_to_equal.sql", "unique_id": "macro.dbt_expectations.test_expect_column_distinct_count_to_equal", "macro_sql": "{% test expect_column_distinct_count_to_equal(model,\n column_name,\n value,\n quote_values=False,\n group_by=None,\n row_condition=None\n ) %}\n{% set expression %}\ncount(distinct {{ column_name }}) = {{ value }}\n{% endset %}\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=group_by,\n row_condition=row_condition)\n }}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6800797, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_distinct_count_to_equal_other_table": {"name": "test_expect_column_distinct_count_to_equal_other_table", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_distinct_count_to_equal_other_table.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_distinct_count_to_equal_other_table.sql", "unique_id": "macro.dbt_expectations.test_expect_column_distinct_count_to_equal_other_table", "macro_sql": "{% test expect_column_distinct_count_to_equal_other_table(model,\n compare_model,\n column_name,\n compare_column_name,\n row_condition=None,\n compare_row_condition=None\n ) %}\n{%- set expression -%}\ncount(distinct {{ column_name }})\n{%- endset -%}\n{%- set compare_expression -%}\n{%- if compare_column_name -%}\ncount(distinct {{ compare_column_name }})\n{%- else -%}\n{{ expression }}\n{%- endif -%}\n{%- endset -%}\n{{ dbt_expectations.test_equal_expression(\n model,\n expression=expression,\n compare_model=compare_model,\n compare_expression=compare_expression,\n row_condition=row_condition,\n compare_row_condition=compare_row_condition\n) }}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations.test_equal_expression"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.68211, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_distinct_values_to_be_in_set": {"name": "test_expect_column_distinct_values_to_be_in_set", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_distinct_values_to_be_in_set.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_distinct_values_to_be_in_set.sql", "unique_id": "macro.dbt_expectations.test_expect_column_distinct_values_to_be_in_set", "macro_sql": "{% test expect_column_distinct_values_to_be_in_set(model, column_name,\n value_set,\n quote_values=False,\n row_condition=None\n ) %}\n\nwith all_values as (\n\n select distinct\n {{ column_name }} as value_field\n\n from {{ model }}\n {% if row_condition %}\n where {{ row_condition }}\n {% endif %}\n\n),\nset_values as (\n\n {% for value in value_set -%}\n select\n {% if quote_values -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif %} as value_field\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n\n),\nunique_set_values as (\n\n select distinct value_field\n from\n set_values\n\n),\nvalidation_errors as (\n -- values from the model that are not in the set\n select\n v.value_field\n from\n all_values v\n left join\n unique_set_values s on v.value_field = s.value_field\n where\n s.value_field is null\n\n)\n\nselect *\nfrom validation_errors\n\n{% endtest %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6838923, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_distinct_values_to_contain_set": {"name": "test_expect_column_distinct_values_to_contain_set", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_distinct_values_to_contain_set.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_distinct_values_to_contain_set.sql", "unique_id": "macro.dbt_expectations.test_expect_column_distinct_values_to_contain_set", "macro_sql": "{% test expect_column_distinct_values_to_contain_set(model, column_name,\n value_set,\n quote_values=True,\n row_condition=None\n ) %}\n\nwith all_values as (\n\n select distinct\n {{ column_name }} as value_field\n\n from {{ model }}\n {% if row_condition %}\n where {{ row_condition }}\n {% endif %}\n\n),\nset_values as (\n\n {% for value in value_set -%}\n select\n {% if quote_values -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif %} as value_field\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n\n),\nunique_set_values as (\n\n select distinct value_field\n from\n set_values\n\n),\nvalidation_errors as (\n -- values in set that are not in the list of values from the model\n select\n s.value_field\n from\n unique_set_values s\n left join\n all_values v on s.value_field = v.value_field\n where\n v.value_field is null\n\n)\n\nselect *\nfrom validation_errors\n\n{% endtest %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6857417, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_distinct_values_to_equal_set": {"name": "test_expect_column_distinct_values_to_equal_set", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_distinct_values_to_equal_set.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_distinct_values_to_equal_set.sql", "unique_id": "macro.dbt_expectations.test_expect_column_distinct_values_to_equal_set", "macro_sql": "{% test expect_column_distinct_values_to_equal_set(model, column_name,\n value_set,\n quote_values=True,\n row_condition=None\n ) %}\n\nwith all_values as (\n\n select distinct\n {{ column_name }} as column_value\n\n from {{ model }}\n {% if row_condition %}\n where {{ row_condition }}\n {% endif %}\n\n),\nset_values as (\n\n {% for value in value_set -%}\n select\n {% if quote_values -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif %} as value_field\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n\n),\nunique_set_values as (\n\n select distinct value_field\n from\n set_values\n\n),\nvalidation_errors as (\n\n select\n *\n from\n all_values v\n full outer join\n unique_set_values s on v.column_value = s.value_field\n where\n v.column_value is null or\n s.value_field is null\n\n)\n\nselect *\nfrom validation_errors\n\n{% endtest %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6875682, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_max_to_be_between": {"name": "test_expect_column_max_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_max_to_be_between.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_max_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_column_max_to_be_between", "macro_sql": "{% test expect_column_max_to_be_between(model, column_name,\n min_value=None,\n max_value=None,\n group_by=None,\n row_condition=None,\n strictly=False\n ) %}\n{% set expression %}\nmax({{ column_name }})\n{% endset %}\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=group_by,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6890252, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_mean_to_be_between": {"name": "test_expect_column_mean_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_mean_to_be_between.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_mean_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_column_mean_to_be_between", "macro_sql": "{% test expect_column_mean_to_be_between(model, column_name,\n min_value=None,\n max_value=None,\n group_by=None,\n row_condition=None,\n strictly=False\n ) %}\n{% set expression %}\navg({{ column_name }})\n{% endset %}\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=group_by,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6905417, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_median_to_be_between": {"name": "test_expect_column_median_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_median_to_be_between.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_median_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_column_median_to_be_between", "macro_sql": "{% test expect_column_median_to_be_between(model, column_name,\n min_value=None,\n max_value=None,\n group_by=None,\n row_condition=None,\n strictly=False\n ) %}\n\n{% set expression %}\n{{ dbt_expectations.median(column_name) }}\n{% endset %}\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=group_by,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.median", "macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6920278, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_min_to_be_between": {"name": "test_expect_column_min_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_min_to_be_between.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_min_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_column_min_to_be_between", "macro_sql": "{% test expect_column_min_to_be_between(model, column_name,\n min_value=None,\n max_value=None,\n group_by=None,\n row_condition=None,\n strictly=False\n ) %}\n{% set expression %}\nmin({{ column_name }})\n{% endset %}\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=group_by,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6935375, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_most_common_value_to_be_in_set": {"name": "test_expect_column_most_common_value_to_be_in_set", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_most_common_value_to_be_in_set.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_most_common_value_to_be_in_set.sql", "unique_id": "macro.dbt_expectations.test_expect_column_most_common_value_to_be_in_set", "macro_sql": "{% test expect_column_most_common_value_to_be_in_set(model, column_name,\n value_set,\n top_n,\n quote_values=False,\n data_type=\"decimal\",\n row_condition=None\n ) -%}\n {{ adapter.dispatch('test_expect_column_most_common_value_to_be_in_set', 'dbt_expectations') (model, column_name, value_set, top_n, quote_values, data_type, row_condition) }}\n{%- endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.default__test_expect_column_most_common_value_to_be_in_set"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6963356, "supported_languages": null}, "macro.dbt_expectations.default__test_expect_column_most_common_value_to_be_in_set": {"name": "default__test_expect_column_most_common_value_to_be_in_set", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_most_common_value_to_be_in_set.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_most_common_value_to_be_in_set.sql", "unique_id": "macro.dbt_expectations.default__test_expect_column_most_common_value_to_be_in_set", "macro_sql": "{% macro default__test_expect_column_most_common_value_to_be_in_set(model, column_name,\n value_set,\n top_n,\n quote_values,\n data_type,\n row_condition\n ) %}\n\nwith value_counts as (\n\n select\n {% if quote_values -%}\n {{ column_name }}\n {%- else -%}\n cast({{ column_name }} as {{ data_type }})\n {%- endif %} as value_field,\n count(*) as value_count\n\n from {{ model }}\n {% if row_condition %}\n where {{ row_condition }}\n {% endif %}\n\n group by {% if quote_values -%}\n {{ column_name }}\n {%- else -%}\n cast({{ column_name }} as {{ data_type }})\n {%- endif %}\n\n),\nvalue_counts_ranked as (\n\n select\n *,\n row_number() over(order by value_count desc) as value_count_rank\n from\n value_counts\n\n),\nvalue_count_top_n as (\n\n select\n value_field\n from\n value_counts_ranked\n where\n value_count_rank = {{ top_n }}\n\n),\nset_values as (\n\n {% for value in value_set -%}\n select\n {% if quote_values -%}\n '{{ value }}'\n {%- else -%}\n cast({{ value }} as {{ data_type }})\n {%- endif %} as value_field\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n\n),\nunique_set_values as (\n\n select distinct value_field\n from\n set_values\n\n),\nvalidation_errors as (\n -- values from the model that are not in the set\n select\n value_field\n from\n value_count_top_n\n where\n value_field not in (select value_field from unique_set_values)\n\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6982114, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_proportion_of_unique_values_to_be_between": {"name": "test_expect_column_proportion_of_unique_values_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_proportion_of_unique_values_to_be_between.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_proportion_of_unique_values_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_column_proportion_of_unique_values_to_be_between", "macro_sql": "{% test expect_column_proportion_of_unique_values_to_be_between(model, column_name,\n min_value=None,\n max_value=None,\n group_by=None,\n row_condition=None,\n strictly=False\n ) %}\n{% set expression %}\ncount(distinct {{ column_name }})/count({{ column_name }})\n{% endset %}\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=group_by,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.6998556, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_quantile_values_to_be_between": {"name": "test_expect_column_quantile_values_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_quantile_values_to_be_between.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_quantile_values_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_column_quantile_values_to_be_between", "macro_sql": "{% test expect_column_quantile_values_to_be_between(model, column_name,\n quantile,\n min_value=None,\n max_value=None,\n group_by=None,\n row_condition=None,\n strictly=False\n ) %}\n\n{% set expression %}\n{{ dbt_expectations.percentile_cont(column_name, quantile) }}\n{% endset %}\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=group_by,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.percentile_cont", "macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7015164, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_stdev_to_be_between": {"name": "test_expect_column_stdev_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_stdev_to_be_between.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_stdev_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_column_stdev_to_be_between", "macro_sql": "{% test expect_column_stdev_to_be_between(model, column_name,\n min_value=None,\n max_value=None,\n group_by=None,\n row_condition=None,\n strictly=False\n ) -%}\n {{ adapter.dispatch('test_expect_column_stdev_to_be_between', 'dbt_expectations') (\n model, column_name,\n min_value,\n max_value,\n group_by,\n row_condition,\n strictly\n ) }}\n{%- endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.default__test_expect_column_stdev_to_be_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7036934, "supported_languages": null}, "macro.dbt_expectations.default__test_expect_column_stdev_to_be_between": {"name": "default__test_expect_column_stdev_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_stdev_to_be_between.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_stdev_to_be_between.sql", "unique_id": "macro.dbt_expectations.default__test_expect_column_stdev_to_be_between", "macro_sql": "{% macro default__test_expect_column_stdev_to_be_between(\n model, column_name,\n min_value,\n max_value,\n group_by,\n row_condition,\n strictly\n ) %}\n\n{% set expression %}\nstddev({{ column_name }})\n{% endset %}\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=group_by,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.704649, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_sum_to_be_between": {"name": "test_expect_column_sum_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_sum_to_be_between.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_sum_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_column_sum_to_be_between", "macro_sql": "{% test expect_column_sum_to_be_between(model, column_name,\n min_value=None,\n max_value=None,\n group_by=None,\n row_condition=None,\n strictly=False\n ) %}\n{% set expression %}\nsum({{ column_name }})\n{% endset %}\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=group_by,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7061543, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_unique_value_count_to_be_between": {"name": "test_expect_column_unique_value_count_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/aggregate_functions/expect_column_unique_value_count_to_be_between.sql", "original_file_path": "macros/schema_tests/aggregate_functions/expect_column_unique_value_count_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_column_unique_value_count_to_be_between", "macro_sql": "{% test expect_column_unique_value_count_to_be_between(model, column_name,\n min_value=None,\n max_value=None,\n group_by=None,\n row_condition=None,\n strictly=False\n ) %}\n{% set expression %}\ncount(distinct {{ column_name }})\n{% endset %}\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=group_by,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7076507, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_be_between": {"name": "test_expect_column_values_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_between.sql", "original_file_path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_be_between", "macro_sql": "{% test expect_column_values_to_be_between(model, column_name,\n min_value=None,\n max_value=None,\n row_condition=None,\n strictly=False\n ) %}\n\n{% set expression %}\n{{ column_name }}\n{% endset %}\n\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=None,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7090938, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_be_decreasing": {"name": "test_expect_column_values_to_be_decreasing", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_decreasing.sql", "original_file_path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_decreasing.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_be_decreasing", "macro_sql": "{% test expect_column_values_to_be_decreasing(model, column_name,\n sort_column=None,\n strictly=True,\n row_condition=None,\n group_by=None) %}\n\n{%- set sort_column = column_name if not sort_column else sort_column -%}\n{%- set operator = \"<\" if strictly else \"<=\" %}\nwith all_values as (\n\n select\n {{ sort_column }} as sort_column,\n {%- if group_by -%}\n {{ group_by | join(\", \") }},\n {%- endif %}\n {{ column_name }} as value_field\n from {{ model }}\n {% if row_condition %}\n where {{ row_condition }}\n {% endif %}\n\n),\nadd_lag_values as (\n\n select\n sort_column,\n value_field,\n lag(value_field) over\n {%- if not group_by -%}\n (order by sort_column)\n {%- else -%}\n (partition by {{ group_by | join(\", \") }} order by sort_column)\n {%- endif %} as value_field_lag\n from\n all_values\n\n),\nvalidation_errors as (\n\n select\n *\n from\n add_lag_values\n where\n value_field_lag is not null\n and\n not (value_field {{ operator }} value_field_lag)\n\n)\nselect *\nfrom validation_errors\n{% endtest %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.711692, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_be_in_set": {"name": "test_expect_column_values_to_be_in_set", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_in_set.sql", "original_file_path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_in_set.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_be_in_set", "macro_sql": "{% test expect_column_values_to_be_in_set(model, column_name,\n value_set,\n quote_values=True,\n row_condition=None\n ) %}\n\nwith all_values as (\n\n select\n {{ column_name }} as value_field\n\n from {{ model }}\n {% if row_condition %}\n where {{ row_condition }}\n {% endif %}\n\n),\nset_values as (\n\n {% for value in value_set -%}\n select\n {% if quote_values -%}\n cast('{{ value }}' as {{ type_string() }})\n {%- else -%}\n {{ value }}\n {%- endif %} as value_field\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n),\nvalidation_errors as (\n -- values from the model that are not in the set\n select\n v.value_field\n from\n all_values v\n left join\n set_values s on v.value_field = s.value_field\n where\n s.value_field is null\n\n)\n\nselect *\nfrom validation_errors\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7135265, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_be_in_type_list": {"name": "test_expect_column_values_to_be_in_type_list", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_in_type_list.sql", "original_file_path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_in_type_list.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_be_in_type_list", "macro_sql": "{%- test expect_column_values_to_be_in_type_list(model, column_name, column_type_list) -%}\n{%- if execute -%}\n\n {%- set column_name = column_name | upper -%}\n {%- set columns_in_relation = adapter.get_columns_in_relation(model) -%}\n {%- set column_type_list = column_type_list| map(\"upper\") | list -%}\n with relation_columns as (\n\n {% for column in columns_in_relation %}\n select\n cast('{{ column.name | upper }}' as {{ type_string() }}) as relation_column,\n cast('{{ column.dtype | upper }}' as {{ type_string() }}) as relation_column_type\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n ),\n test_data as (\n\n select\n *\n from\n relation_columns\n where\n relation_column = '{{ column_name }}'\n and\n relation_column_type not in ('{{ column_type_list | join(\"', '\") }}')\n\n )\n select *\n from test_data\n\n{%- endif -%}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7157087, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_be_increasing": {"name": "test_expect_column_values_to_be_increasing", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_increasing.sql", "original_file_path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_increasing.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_be_increasing", "macro_sql": "{% test expect_column_values_to_be_increasing(model, column_name,\n sort_column=None,\n strictly=True,\n row_condition=None,\n group_by=None) %}\n\n{%- set sort_column = column_name if not sort_column else sort_column -%}\n{%- set operator = \">\" if strictly else \">=\" -%}\nwith all_values as (\n\n select\n {{ sort_column }} as sort_column,\n {%- if group_by -%}\n {{ group_by | join(\", \") }},\n {%- endif %}\n {{ column_name }} as value_field\n from {{ model }}\n {% if row_condition %}\n where {{ row_condition }}\n {% endif %}\n\n),\nadd_lag_values as (\n\n select\n sort_column,\n {%- if group_by -%}\n {{ group_by | join(\", \") }},\n {%- endif %}\n value_field,\n lag(value_field) over\n {%- if not group_by -%}\n (order by sort_column)\n {%- else -%}\n (partition by {{ group_by | join(\", \") }} order by sort_column)\n {%- endif %} as value_field_lag\n from\n all_values\n\n),\nvalidation_errors as (\n select\n *\n from\n add_lag_values\n where\n value_field_lag is not null\n and\n not (value_field {{ operator }} value_field_lag)\n\n)\nselect *\nfrom validation_errors\n{% endtest %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7184513, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_be_null": {"name": "test_expect_column_values_to_be_null", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_null.sql", "original_file_path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_null.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_be_null", "macro_sql": "{% test expect_column_values_to_be_null(model, column_name, row_condition=None) %}\n\n{% set expression = column_name ~ \" is null\" %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7193978, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_be_of_type": {"name": "test_expect_column_values_to_be_of_type", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_of_type.sql", "original_file_path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_of_type.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_be_of_type", "macro_sql": "{%- test expect_column_values_to_be_of_type(model, column_name, column_type) -%}\n{{ dbt_expectations.test_expect_column_values_to_be_in_type_list(model, column_name, [column_type]) }}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations.test_expect_column_values_to_be_in_type_list"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7198818, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_be_unique": {"name": "test_expect_column_values_to_be_unique", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_unique.sql", "original_file_path": "macros/schema_tests/column_values_basic/expect_column_values_to_be_unique.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_be_unique", "macro_sql": "{% test expect_column_values_to_be_unique(model, column_name, row_condition=None) %}\n{{ dbt_expectations.test_expect_compound_columns_to_be_unique(model, [column_name], row_condition=row_condition) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.test_expect_compound_columns_to_be_unique"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7204766, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_have_consistent_casing": {"name": "test_expect_column_values_to_have_consistent_casing", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/column_values_basic/expect_column_values_to_have_consistent_casing.sql", "original_file_path": "macros/schema_tests/column_values_basic/expect_column_values_to_have_consistent_casing.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_have_consistent_casing", "macro_sql": "{% test expect_column_values_to_have_consistent_casing(model, column_name, display_inconsistent_columns=False) %}\n\nwith test_data as (\n\n select\n distinct {{ column_name }} as distinct_values\n from\n {{ model }}\n\n ),\n {% if display_inconsistent_columns %}\n validation_errors as (\n\n select\n lower(distinct_values) as inconsistent_columns,\n count(distinct_values) as set_count_case_insensitive\n from\n test_data\n group by 1\n having\n count(distinct_values) > 1\n\n )\n select * from validation_errors\n {% else %}\n validation_errors as (\n\n select\n count(1) as set_count,\n count(distinct lower(distinct_values)) as set_count_case_insensitive\n from\n test_data\n\n )\n select *\n from\n validation_errors\n where\n set_count != set_count_case_insensitive\n {% endif %}\n {%- endtest -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7213576, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_not_be_in_set": {"name": "test_expect_column_values_to_not_be_in_set", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/column_values_basic/expect_column_values_to_not_be_in_set.sql", "original_file_path": "macros/schema_tests/column_values_basic/expect_column_values_to_not_be_in_set.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_not_be_in_set", "macro_sql": "{% test expect_column_values_to_not_be_in_set(model, column_name,\n value_set,\n quote_values=True,\n row_condition=None\n ) %}\n\nwith all_values as (\n\n select\n {{ column_name }} as value_field\n\n from {{ model }}\n {% if row_condition %}\n where {{ row_condition }}\n {% endif %}\n\n),\nset_values as (\n\n {% for value in value_set -%}\n select\n {% if quote_values -%}\n cast('{{ value }}' as {{ type_string() }})\n {%- else -%}\n {{ value }}\n {%- endif %} as value_field\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n),\nvalidation_errors as (\n -- values from the model that match the set\n select\n v.value_field\n from\n all_values v\n join\n set_values s on v.value_field = s.value_field\n\n)\n\nselect *\nfrom validation_errors\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7231295, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_not_be_null": {"name": "test_expect_column_values_to_not_be_null", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/column_values_basic/expect_column_values_to_not_be_null.sql", "original_file_path": "macros/schema_tests/column_values_basic/expect_column_values_to_not_be_null.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_not_be_null", "macro_sql": "{% test expect_column_values_to_not_be_null(model, column_name, row_condition=None) %}\n\n{% set expression = column_name ~ \" is not null\" %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7240481, "supported_languages": null}, "macro.dbt_expectations._get_metric_expression": {"name": "_get_metric_expression", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/distributional/expect_column_values_to_be_within_n_moving_stdevs.sql", "original_file_path": "macros/schema_tests/distributional/expect_column_values_to_be_within_n_moving_stdevs.sql", "unique_id": "macro.dbt_expectations._get_metric_expression", "macro_sql": "{%- macro _get_metric_expression(metric_column, take_logs) -%}\n\n{%- if take_logs %}\n{%- set expr = \"nullif(\" ~ metric_column ~ \", 0)\" -%}\ncoalesce({{ dbt_expectations.log_natural(expr) }}, 0)\n{%- else -%}\ncoalesce({{ metric_column }}, 0)\n{%- endif %}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_expectations.log_natural"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7303536, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_be_within_n_moving_stdevs": {"name": "test_expect_column_values_to_be_within_n_moving_stdevs", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/distributional/expect_column_values_to_be_within_n_moving_stdevs.sql", "original_file_path": "macros/schema_tests/distributional/expect_column_values_to_be_within_n_moving_stdevs.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_be_within_n_moving_stdevs", "macro_sql": "{% test expect_column_values_to_be_within_n_moving_stdevs(model,\n column_name,\n date_column_name,\n group_by=None,\n period='day',\n lookback_periods=1,\n trend_periods=7,\n test_periods=14,\n sigma_threshold=3,\n sigma_threshold_upper=None,\n sigma_threshold_lower=None,\n take_diffs=true,\n take_logs=true\n ) -%}\n {{ adapter.dispatch('test_expect_column_values_to_be_within_n_moving_stdevs', 'dbt_expectations') (model,\n column_name,\n date_column_name,\n group_by,\n period,\n lookback_periods,\n trend_periods,\n test_periods,\n sigma_threshold,\n sigma_threshold_upper,\n sigma_threshold_lower,\n take_diffs,\n take_logs\n ) }}\n{%- endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.default__test_expect_column_values_to_be_within_n_moving_stdevs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7316487, "supported_languages": null}, "macro.dbt_expectations.default__test_expect_column_values_to_be_within_n_moving_stdevs": {"name": "default__test_expect_column_values_to_be_within_n_moving_stdevs", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/distributional/expect_column_values_to_be_within_n_moving_stdevs.sql", "original_file_path": "macros/schema_tests/distributional/expect_column_values_to_be_within_n_moving_stdevs.sql", "unique_id": "macro.dbt_expectations.default__test_expect_column_values_to_be_within_n_moving_stdevs", "macro_sql": "{% macro default__test_expect_column_values_to_be_within_n_moving_stdevs(model,\n column_name,\n date_column_name,\n group_by,\n period,\n lookback_periods,\n trend_periods,\n test_periods,\n sigma_threshold,\n sigma_threshold_upper,\n sigma_threshold_lower,\n take_diffs,\n take_logs\n ) %}\n\n{%- set sigma_threshold_upper = sigma_threshold_upper if sigma_threshold_upper else sigma_threshold -%}\n{%- set sigma_threshold_lower = sigma_threshold_lower if sigma_threshold_lower else -1 * sigma_threshold -%}\n{%- set partition_by = \"partition by \" ~ (group_by | join(\",\")) if group_by -%}\n{%- set group_by_length = (group_by | length ) if group_by else 0 -%}\n\nwith metric_values as (\n\n with grouped_metric_values as (\n\n select\n {{ dbt_utils.date_trunc(period, date_column_name) }} as metric_period,\n {{ group_by | join(\",\") ~ \",\" if group_by }}\n sum({{ column_name }}) as agg_metric_value\n from\n {{ model }}\n {{ dbt_utils.group_by(1 + group_by_length) }}\n\n )\n {%- if take_diffs %}\n , grouped_metric_values_with_priors as (\n\n select\n *,\n lag(agg_metric_value, {{ lookback_periods }}) over(\n {{ partition_by }}\n order by metric_period) as prior_agg_metric_value\n from\n grouped_metric_values d\n\n )\n select\n *,\n {{ dbt_expectations._get_metric_expression(\"agg_metric_value\", take_logs) }}\n -\n {{ dbt_expectations._get_metric_expression(\"prior_agg_metric_value\", take_logs) }}\n as metric_test_value\n from\n grouped_metric_values_with_priors d\n\n {%- else %}\n\n select\n *,\n {{ dbt_expectations._get_metric_expression(\"agg_metric_value\", take_logs) }}\n as metric_test_value\n from\n grouped_metric_values\n\n {%- endif %}\n\n),\nmetric_moving_calcs as (\n\n select\n *,\n avg(metric_test_value)\n over({{ partition_by }}\n order by metric_period rows\n between {{ trend_periods }} preceding and 1 preceding) as metric_test_rolling_average,\n stddev(metric_test_value)\n over({{ partition_by }}\n order by metric_period rows\n between {{ trend_periods }} preceding and 1 preceding) as metric_test_rolling_stddev\n from\n metric_values\n\n),\nmetric_sigma as (\n\n select\n *,\n (metric_test_value - metric_test_rolling_average) as metric_test_delta,\n (metric_test_value - metric_test_rolling_average)/nullif(metric_test_rolling_stddev, 0) as metric_test_sigma\n from\n metric_moving_calcs\n\n)\nselect\n *\nfrom\n metric_sigma\nwhere\n\n metric_period >= cast(\n {{ dateadd(period, -test_periods, date_trunc(period, dbt_date.now())) }}\n as {{ type_timestamp() }})\n and\n metric_period < {{ date_trunc(period, dbt_date.now()) }}\n and\n\n not (\n metric_test_sigma >= {{ sigma_threshold_lower }} and\n metric_test_sigma <= {{ sigma_threshold_upper }}\n )\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.date_trunc", "macro.dbt_utils.group_by", "macro.dbt_expectations._get_metric_expression", "macro.dbt_utils.dateadd", "macro.dbt_date.now", "macro.dbt_expectations.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7352185, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_be_within_n_stdevs": {"name": "test_expect_column_values_to_be_within_n_stdevs", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/distributional/expect_column_values_to_be_within_n_stdevs.sql", "original_file_path": "macros/schema_tests/distributional/expect_column_values_to_be_within_n_stdevs.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_be_within_n_stdevs", "macro_sql": "{% test expect_column_values_to_be_within_n_stdevs(model,\n column_name,\n group_by=None,\n sigma_threshold=3\n ) -%}\n {{ adapter.dispatch('test_expect_column_values_to_be_within_n_stdevs', 'dbt_expectations') (model, column_name, group_by, sigma_threshold) }}\n{%- endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.default__test_expect_column_values_to_be_within_n_stdevs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7371187, "supported_languages": null}, "macro.dbt_expectations.default__test_expect_column_values_to_be_within_n_stdevs": {"name": "default__test_expect_column_values_to_be_within_n_stdevs", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/distributional/expect_column_values_to_be_within_n_stdevs.sql", "original_file_path": "macros/schema_tests/distributional/expect_column_values_to_be_within_n_stdevs.sql", "unique_id": "macro.dbt_expectations.default__test_expect_column_values_to_be_within_n_stdevs", "macro_sql": "{% macro default__test_expect_column_values_to_be_within_n_stdevs(model,\n column_name,\n group_by,\n sigma_threshold\n ) %}\nwith metric_values as (\n\n {% if group_by -%}\n select\n {{ group_by }} as metric_date,\n sum({{ column_name }}) as {{ column_name }}\n from\n {{ model }}\n group by\n 1\n {%- else -%}\n select\n {{ column_name }} as {{ column_name }}\n from\n {{ model }}\n {%- endif %}\n\n),\nmetric_values_with_statistics as (\n\n select\n *,\n avg({{ column_name }}) over() as {{ column_name }}_average,\n stddev({{ column_name }}) over() as {{ column_name }}_stddev\n from\n metric_values\n\n),\nmetric_values_z_scores as (\n\n select\n *,\n ({{ column_name }} - {{ column_name }}_average)/{{ column_name }}_stddev as {{ column_name }}_sigma\n from\n metric_values_with_statistics\n\n)\nselect\n *\nfrom\n metric_values_z_scores\nwhere\n abs({{ column_name }}_sigma) > {{ sigma_threshold }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7383902, "supported_languages": null}, "macro.dbt_expectations.test_expect_row_values_to_have_data_for_every_n_datepart": {"name": "test_expect_row_values_to_have_data_for_every_n_datepart", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/distributional/expect_row_values_to_have_data_for_every_n_datepart.sql", "original_file_path": "macros/schema_tests/distributional/expect_row_values_to_have_data_for_every_n_datepart.sql", "unique_id": "macro.dbt_expectations.test_expect_row_values_to_have_data_for_every_n_datepart", "macro_sql": "{%- test expect_row_values_to_have_data_for_every_n_datepart(model,\n date_col,\n date_part=\"day\",\n interval=None,\n row_condition=None,\n exclusion_condition=None,\n test_start_date=None,\n test_end_date=None) -%}\n{% if not execute %}\n {{ return('') }}\n{% endif %}\n\n{% if not test_start_date or not test_end_date %}\n {% set sql %}\n\n select\n min({{ date_col }}) as start_{{ date_part }},\n max({{ date_col }}) as end_{{ date_part }}\n from {{ model }}\n {% if row_condition %}\n where {{ row_condition }}\n {% endif %}\n\n {% endset %}\n\n {%- set dr = run_query(sql) -%}\n {%- set db_start_date = dr.columns[0].values()[0].strftime('%Y-%m-%d') -%}\n {%- set db_end_date = dr.columns[1].values()[0].strftime('%Y-%m-%d') -%}\n\n{% endif %}\n\n{% if not test_start_date %}\n{% set start_date = db_start_date %}\n{% else %}\n{% set start_date = test_start_date %}\n{% endif %}\n\n\n{% if not test_end_date %}\n{% set end_date = db_end_date %}\n{% else %}\n{% set end_date = test_end_date %}\n{% endif %}\nwith base_dates as (\n\n {{ dbt_date.get_base_dates(start_date=start_date, end_date=end_date, datepart=date_part) }}\n {% if interval %}\n {#\n Filter the date spine created above down to the interval granularity using a modulo operation.\n The number of date_parts after the start_date divided by the integer interval will produce no remainder for the desired intervals,\n e.g. for 2-day interval from a starting Jan 1, 2020:\n params: start_date = '2020-01-01', date_part = 'day', interval = 2\n date spine created above: [2020-01-01, 2020-01-02, 2020-01-03, 2020-01-04, 2020-01-05, ...]\n The first parameter to the `mod` function would be the number of days between the start_date and the spine date, i.e. [0, 1, 2, 3, 4 ...]\n The second parameter to the `mod` function would be the integer interval, i.e. 2\n This modulo operation produces the following remainders: [0, 1, 0, 1, 0, ...]\n Filtering the spine only where this remainder == 0 will return a spine with every other day as desired, i.e. [2020-01-01, 2020-01-03, 2020-01-05, ...]\n #}\n where mod(\n cast({{ datediff(\"'\" ~ start_date ~ \"'\", 'date_' ~ date_part, date_part) }} as {{ type_int() }}),\n cast({{interval}} as {{ type_int() }})\n ) = 0\n {% endif %}\n\n),\nmodel_data as (\n\n select\n {% if not interval %}\n\n cast({{ date_trunc(date_part, date_col) }} as {{ dbt_expectations.type_datetime() }}) as date_{{ date_part }},\n\n {% else %}\n {#\n Use a modulo operator to determine the number of intervals that a date_col is away from the interval-date spine\n and subtracts that amount to effectively slice each date_col record into its corresponding spine bucket,\n e.g. given a date_col of with records [2020-01-01, 2020-01-02, 2020-01-03, 2020-01-11, 2020-01-12]\n if we want to slice these dates into their 2-day buckets starting Jan 1, 2020 (start_date = '2020-01-01', date_part='day', interval=2),\n the modulo operation described above will produce these remainders: [0, 1, 0, 0, 1]\n subtracting that number of days from the observations will produce records [2020-01-01, 2020-01-01, 2020-01-03, 2020-01-11, 2020-01-11],\n all of which align with records from the interval-date spine\n #}\n {{dateadd(\n date_part,\n \"mod(\n cast(\" ~ datediff(\"'\" ~ start_date ~ \"'\", date_col, date_part) ~ \" as \" ~ type_int() ~ \" ),\n cast(\" ~ interval ~ \" as \" ~ type_int() ~ \" )\n ) * (-1)\",\n \"cast( \" ~ date_trunc(date_part, date_col) ~ \" as \" ~ dbt_expectations.type_datetime() ~ \")\"\n )}} as date_{{ date_part }},\n\n {% endif %}\n\n count(*) as row_cnt\n from\n {{ model }} f\n {% if row_condition %}\n where {{ row_condition }}\n {% endif %}\n group by\n date_{{date_part}}\n\n),\n\nfinal as (\n\n select\n cast(d.date_{{ date_part }} as {{ dbt_expectations.type_datetime() }}) as date_{{ date_part }},\n case when f.date_{{ date_part }} is null then true else false end as is_missing,\n coalesce(f.row_cnt, 0) as row_cnt\n from\n base_dates d\n left join\n model_data f on cast(d.date_{{ date_part }} as {{ dbt_expectations.type_datetime() }}) = f.date_{{ date_part }}\n)\nselect\n *\nfrom final\nwhere row_cnt = 0\n{% if exclusion_condition %}\n and {{ exclusion_condition }}\n{% endif %}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt_date.get_base_dates", "macro.dbt_utils.datediff", "macro.dbt_utils.type_int", "macro.dbt_utils.date_trunc", "macro.dbt_expectations.type_datetime", "macro.dbt_utils.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7486157, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_pair_values_A_to_be_greater_than_B": {"name": "test_expect_column_pair_values_A_to_be_greater_than_B", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/multi-column/expect_column_pair_values_A_to_be_greater_than_B.sql", "original_file_path": "macros/schema_tests/multi-column/expect_column_pair_values_A_to_be_greater_than_B.sql", "unique_id": "macro.dbt_expectations.test_expect_column_pair_values_A_to_be_greater_than_B", "macro_sql": "{% test expect_column_pair_values_A_to_be_greater_than_B(model,\n column_A,\n column_B,\n or_equal=False,\n row_condition=None\n ) %}\n\n{% set operator = \">=\" if or_equal else \">\" %}\n{% set expression = column_A ~ \" \" ~ operator ~ \" \" ~ column_B %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7503262, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_pair_values_to_be_equal": {"name": "test_expect_column_pair_values_to_be_equal", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/multi-column/expect_column_pair_values_to_be_equal.sql", "original_file_path": "macros/schema_tests/multi-column/expect_column_pair_values_to_be_equal.sql", "unique_id": "macro.dbt_expectations.test_expect_column_pair_values_to_be_equal", "macro_sql": "{% test expect_column_pair_values_to_be_equal(model,\n column_A,\n column_B,\n row_condition=None\n ) %}\n\n{% set operator = \"=\" %}\n{% set expression = column_A ~ \" \" ~ operator ~ \" \" ~ column_B %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7518125, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_pair_values_to_be_in_set": {"name": "test_expect_column_pair_values_to_be_in_set", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/multi-column/expect_column_pair_values_to_be_in_set.sql", "original_file_path": "macros/schema_tests/multi-column/expect_column_pair_values_to_be_in_set.sql", "unique_id": "macro.dbt_expectations.test_expect_column_pair_values_to_be_in_set", "macro_sql": "{% test expect_column_pair_values_to_be_in_set(model,\n column_A,\n column_B,\n value_pairs_set,\n row_condition=None\n ) %}\n\n{% set expression %}\n{% for pair in value_pairs_set %}\n{%- if (pair | length) == 2 %}\n({{ column_A }} = {{ pair[0] }} and {{ column_B }} = {{ pair[1] }}){% if not loop.last %} or {% endif %}\n{% else %}\n{{ exceptions.raise_compiler_error(\n \"`value_pairs_set` argument for expect_column_pair_values_to_be_in_set test cannot have more than 2 item per element.\n Got: '\" ~ pair ~ \"'.'\"\n ) }}\n{% endif %}\n{% endfor %}\n{% endset %}\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7546134, "supported_languages": null}, "macro.dbt_expectations.test_expect_compound_columns_to_be_unique": {"name": "test_expect_compound_columns_to_be_unique", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/multi-column/expect_compound_columns_to_be_unique.sql", "original_file_path": "macros/schema_tests/multi-column/expect_compound_columns_to_be_unique.sql", "unique_id": "macro.dbt_expectations.test_expect_compound_columns_to_be_unique", "macro_sql": "{% test expect_compound_columns_to_be_unique(model,\n column_list,\n quote_columns=False,\n ignore_row_if=\"all_values_are_missing\",\n row_condition=None\n ) %}\n{% if not column_list %}\n {{ exceptions.raise_compiler_error(\n \"`column_list` must be specified as a list of columns. Got: '\" ~ column_list ~\"'.'\"\n ) }}\n{% endif %}\n{% if not quote_columns %}\n {%- set columns=column_list %}\n{% elif quote_columns %}\n {%- set columns=[] %}\n {% for column in column_list -%}\n {% set columns = columns.append( adapter.quote(column) ) %}\n {%- endfor %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`quote_columns` argument for expect_compound_columns_to_be_unique test must be one of [True, False] Got: '\" ~ quote_columns ~\"'.'\"\n ) }}\n{% endif %}\n\n{%- set row_condition_ext -%}\n\n{%- if row_condition %}\n {{ row_condition }} and\n{% endif -%}\n\n{%- if ignore_row_if == \"all_values_are_missing\" %}\n (\n {% for column in columns -%}\n {{ column }} is not null{% if not loop.last %} and {% endif %}\n {% endfor %}\n )\n{%- elif ignore_row_if == \"any_value_is_missing\" %}\n (\n {% for column in columns -%}\n {{ column }} is not null{% if not loop.last %} or {% endif %}\n {% endfor %}\n )\n{%- endif -%}\n{%- endset -%}\n\nwith validation_errors as (\n\n select\n {% for column in columns -%}\n {{ column }}{% if not loop.last %},{% endif %}\n {%- endfor %}\n from {{ model }}\n where\n 1=1\n {%- if row_condition_ext %}\n and {{ row_condition_ext }}\n {% endif %}\n group by\n {% for column in columns -%}\n {{ column }}{% if not loop.last %},{% endif %}\n {%- endfor %}\n having count(*) > 1\n\n)\nselect * from validation_errors\n{% endtest %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7603884, "supported_languages": null}, "macro.dbt_expectations.test_expect_multicolumn_sum_to_equal": {"name": "test_expect_multicolumn_sum_to_equal", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/multi-column/expect_multicolumn_sum_to_equal.sql", "original_file_path": "macros/schema_tests/multi-column/expect_multicolumn_sum_to_equal.sql", "unique_id": "macro.dbt_expectations.test_expect_multicolumn_sum_to_equal", "macro_sql": "{% test expect_multicolumn_sum_to_equal(model,\n column_list,\n sum_total,\n group_by=None,\n row_condition=None\n ) %}\n\n{% set expression %}\n{% for column in column_list %}\nsum({{ column }}){% if not loop.last %} + {% endif %}\n{% endfor %} = {{ sum_total }}\n{% endset %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=group_by,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.762431, "supported_languages": null}, "macro.dbt_expectations.test_expect_select_column_values_to_be_unique_within_record": {"name": "test_expect_select_column_values_to_be_unique_within_record", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/multi-column/expect_select_column_values_to_be_unique_within_record.sql", "original_file_path": "macros/schema_tests/multi-column/expect_select_column_values_to_be_unique_within_record.sql", "unique_id": "macro.dbt_expectations.test_expect_select_column_values_to_be_unique_within_record", "macro_sql": "{% test expect_select_column_values_to_be_unique_within_record(model,\n column_list,\n quote_columns=False,\n ignore_row_if=\"all_values_are_missing\",\n row_condition=None\n ) -%}\n {{ adapter.dispatch('test_expect_select_column_values_to_be_unique_within_record', 'dbt_expectations') (model, column_list, quote_columns, ignore_row_if, row_condition) }}\n{%- endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.default__test_expect_select_column_values_to_be_unique_within_record"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.765672, "supported_languages": null}, "macro.dbt_expectations.default__test_expect_select_column_values_to_be_unique_within_record": {"name": "default__test_expect_select_column_values_to_be_unique_within_record", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/multi-column/expect_select_column_values_to_be_unique_within_record.sql", "original_file_path": "macros/schema_tests/multi-column/expect_select_column_values_to_be_unique_within_record.sql", "unique_id": "macro.dbt_expectations.default__test_expect_select_column_values_to_be_unique_within_record", "macro_sql": "{% macro default__test_expect_select_column_values_to_be_unique_within_record(model,\n column_list,\n quote_columns,\n ignore_row_if,\n row_condition\n ) %}\n\n{% if not quote_columns %}\n {%- set columns=column_list %}\n{% elif quote_columns %}\n {%- set columns=[] %}\n {% for column in column_list -%}\n {% set columns = columns.append( adapter.quote(column) ) %}\n {%- endfor %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`quote_columns` argument for unique_combination_of_columns test must be one of [True, False] Got: '\" ~ quote_columns ~\"'.'\"\n ) }}\n{% endif %}\n\nwith column_values as (\n\n select\n row_number() over(order by 1) as row_index,\n {% for column in columns -%}\n {{ column }}{% if not loop.last %},{% endif %}\n {%- endfor %}\n from {{ model }}\n where 1=1\n {% if row_condition %}\n and {{ row_condition }}\n {% endif %}\n {% if ignore_row_if == \"all_values_are_missing\" %}\n and\n (\n {% for column in columns -%}\n {{ column }} is not null{% if not loop.last %} and {% endif %}\n {%- endfor %}\n )\n {% elif ignore_row_if == \"any_value_is_missing\" %}\n and\n (\n {% for column in columns -%}\n {{ column }} is not null{% if not loop.last %} or {% endif %}\n {%- endfor %}\n )\n {% endif %}\n\n),\nunpivot_columns as (\n\n {% for column in columns %}\n select row_index, '{{ column }}' as column_name, {{ column }} as column_value from column_values\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n),\nvalidation_errors as (\n\n select\n row_index,\n count(distinct column_value) as column_values\n from unpivot_columns\n group by 1\n having count(distinct column_value) < {{ columns | length }}\n\n)\nselect * from validation_errors\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7688084, "supported_languages": null}, "macro.dbt_expectations._get_like_pattern_expression": {"name": "_get_like_pattern_expression", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/string_matching/_get_like_pattern_expression.sql", "original_file_path": "macros/schema_tests/string_matching/_get_like_pattern_expression.sql", "unique_id": "macro.dbt_expectations._get_like_pattern_expression", "macro_sql": "{% macro _get_like_pattern_expression(column_name, like_pattern, positive) %}\n{{ column_name }} {{ \"not\" if not positive else \"\" }} like '{{ like_pattern }}'\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.769492, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_value_lengths_to_be_between": {"name": "test_expect_column_value_lengths_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/string_matching/expect_column_value_lengths_to_be_between.sql", "original_file_path": "macros/schema_tests/string_matching/expect_column_value_lengths_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_column_value_lengths_to_be_between", "macro_sql": "{% test expect_column_value_lengths_to_be_between(model, column_name,\n min_value=None,\n max_value=None,\n row_condition=None,\n strictly=False\n ) %}\n{% set expression %}\n{{ length(column_name) }}\n{% endset %}\n\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=None,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.length", "macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.770976, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_value_lengths_to_equal": {"name": "test_expect_column_value_lengths_to_equal", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/string_matching/expect_column_value_lengths_to_equal.sql", "original_file_path": "macros/schema_tests/string_matching/expect_column_value_lengths_to_equal.sql", "unique_id": "macro.dbt_expectations.test_expect_column_value_lengths_to_equal", "macro_sql": "{% test expect_column_value_lengths_to_equal(model, column_name,\n value,\n row_condition=None\n ) %}\n\n{% set expression = length(column_name) ~ \" = \" ~ value %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.length", "macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7720022, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_match_like_pattern": {"name": "test_expect_column_values_to_match_like_pattern", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/string_matching/expect_column_values_to_match_like_pattern.sql", "original_file_path": "macros/schema_tests/string_matching/expect_column_values_to_match_like_pattern.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_match_like_pattern", "macro_sql": "{% test expect_column_values_to_match_like_pattern(model, column_name,\n like_pattern,\n row_condition=None\n ) %}\n\n{% set expression = dbt_expectations._get_like_pattern_expression(column_name, like_pattern, positive=True) %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations._get_like_pattern_expression", "macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7730868, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_match_like_pattern_list": {"name": "test_expect_column_values_to_match_like_pattern_list", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/string_matching/expect_column_values_to_match_like_pattern_list.sql", "original_file_path": "macros/schema_tests/string_matching/expect_column_values_to_match_like_pattern_list.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_match_like_pattern_list", "macro_sql": "{% test expect_column_values_to_match_like_pattern_list(model, column_name,\n like_pattern_list,\n match_on=\"any\",\n row_condition=None\n ) %}\n\n{% set expression %}\n {% for like_pattern in like_pattern_list %}\n {{ dbt_expectations._get_like_pattern_expression(column_name, like_pattern, positive=True) }}\n {%- if not loop.last %}\n {{ \" and \" if match_on == \"all\" else \" or \"}}\n {% endif -%}\n {% endfor %}\n{% endset %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations._get_like_pattern_expression", "macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7750144, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_match_regex": {"name": "test_expect_column_values_to_match_regex", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/string_matching/expect_column_values_to_match_regex.sql", "original_file_path": "macros/schema_tests/string_matching/expect_column_values_to_match_regex.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_match_regex", "macro_sql": "{% test expect_column_values_to_match_regex(model, column_name,\n regex,\n row_condition=None,\n is_raw=False\n ) %}\n\n{% set expression %}\n{{ dbt_expectations.regexp_instr(column_name, regex, is_raw=is_raw) }} > 0\n{% endset %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.regexp_instr", "macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.776362, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_match_regex_list": {"name": "test_expect_column_values_to_match_regex_list", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/string_matching/expect_column_values_to_match_regex_list.sql", "original_file_path": "macros/schema_tests/string_matching/expect_column_values_to_match_regex_list.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_match_regex_list", "macro_sql": "{% test expect_column_values_to_match_regex_list(model, column_name,\n regex_list,\n match_on=\"any\",\n row_condition=None,\n is_raw=False\n ) %}\n\n{% set expression %}\n {% for regex in regex_list %}\n {{ dbt_expectations.regexp_instr(column_name, regex, is_raw=is_raw) }} > 0\n {%- if not loop.last %}\n {{ \" and \" if match_on == \"all\" else \" or \"}}\n {% endif -%}\n {% endfor %}\n{% endset %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.regexp_instr", "macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.778572, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_not_match_like_pattern": {"name": "test_expect_column_values_to_not_match_like_pattern", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/string_matching/expect_column_values_to_not_match_like_pattern.sql", "original_file_path": "macros/schema_tests/string_matching/expect_column_values_to_not_match_like_pattern.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_not_match_like_pattern", "macro_sql": "{% test expect_column_values_to_not_match_like_pattern(model, column_name,\n like_pattern,\n row_condition=None\n ) %}\n\n{% set expression = dbt_expectations._get_like_pattern_expression(column_name, like_pattern, positive=False) %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations._get_like_pattern_expression", "macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7796657, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_not_match_like_pattern_list": {"name": "test_expect_column_values_to_not_match_like_pattern_list", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/string_matching/expect_column_values_to_not_match_like_pattern_list.sql", "original_file_path": "macros/schema_tests/string_matching/expect_column_values_to_not_match_like_pattern_list.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_not_match_like_pattern_list", "macro_sql": "{% test expect_column_values_to_not_match_like_pattern_list(model, column_name,\n like_pattern_list,\n match_on=\"any\",\n row_condition=None\n ) %}\n\n{% set expression %}\n {% for like_pattern in like_pattern_list %}\n {{ dbt_expectations._get_like_pattern_expression(column_name, like_pattern, positive=False) }}\n {%- if not loop.last %}\n {{ \" and \" if match_on == \"all\" else \" or \"}}\n {% endif -%}\n {% endfor %}\n{% endset %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations._get_like_pattern_expression", "macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7817287, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_not_match_regex": {"name": "test_expect_column_values_to_not_match_regex", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/string_matching/expect_column_values_to_not_match_regex.sql", "original_file_path": "macros/schema_tests/string_matching/expect_column_values_to_not_match_regex.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_not_match_regex", "macro_sql": "{% test expect_column_values_to_not_match_regex(model, column_name,\n regex,\n row_condition=None,\n is_raw=False\n ) %}\n\n{% set expression %}\n{{ dbt_expectations.regexp_instr(column_name, regex, is_raw=is_raw) }} = 0\n{% endset %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.regexp_instr", "macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7830164, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_values_to_not_match_regex_list": {"name": "test_expect_column_values_to_not_match_regex_list", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/string_matching/expect_column_values_to_not_match_regex_list.sql", "original_file_path": "macros/schema_tests/string_matching/expect_column_values_to_not_match_regex_list.sql", "unique_id": "macro.dbt_expectations.test_expect_column_values_to_not_match_regex_list", "macro_sql": "{% test expect_column_values_to_not_match_regex_list(model, column_name,\n regex_list,\n match_on=\"any\",\n row_condition=None,\n is_raw=False\n ) %}\n\n{% set expression %}\n{% for regex in regex_list %}\n{{ dbt_expectations.regexp_instr(column_name, regex, is_raw=is_raw) }} = 0\n{%- if not loop.last %}\n{{ \" and \" if match_on == \"all\" else \" or \"}}\n{% endif -%}\n{% endfor %}\n{% endset %}\n\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=None,\n row_condition=row_condition\n )\n }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.regexp_instr", "macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7849872, "supported_languages": null}, "macro.dbt_expectations._get_column_list": {"name": "_get_column_list", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/_get_column_list.sql", "original_file_path": "macros/schema_tests/table_shape/_get_column_list.sql", "unique_id": "macro.dbt_expectations._get_column_list", "macro_sql": "{%- macro _get_column_list(model, transform=\"upper\") -%}\n{%- set relation_columns = adapter.get_columns_in_relation(model) -%}\n{%- set relation_column_names = relation_columns | map(attribute=\"name\") | map(transform) | list -%}\n{%- do return(relation_column_names) -%}\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.785885, "supported_languages": null}, "macro.dbt_expectations._list_intersect": {"name": "_list_intersect", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/_list_intersect.sql", "original_file_path": "macros/schema_tests/table_shape/_list_intersect.sql", "unique_id": "macro.dbt_expectations._list_intersect", "macro_sql": "{%- macro _list_intersect(list1, list2) -%}\n{%- set matching_items = [] -%}\n{%- for itm in list1 -%}\n {%- if itm in list2 -%}\n {%- do matching_items.append(itm) -%}\n {%- endif -%}\n{%- endfor -%}\n{%- do return(matching_items) -%}\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.786804, "supported_languages": null}, "macro.dbt_expectations.test_expect_column_to_exist": {"name": "test_expect_column_to_exist", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_column_to_exist.sql", "original_file_path": "macros/schema_tests/table_shape/expect_column_to_exist.sql", "unique_id": "macro.dbt_expectations.test_expect_column_to_exist", "macro_sql": "{%- test expect_column_to_exist(model, column_name, column_index=None, transform=\"upper\") -%}\n{%- if execute -%}\n\n {%- set column_name = column_name | map(transform) | join -%}\n {%- set relation_column_names = dbt_expectations._get_column_list(model, transform) -%}\n\n {%- set matching_column_index = relation_column_names.index(column_name) if column_name in relation_column_names else -1 %}\n\n {%- if column_index -%}\n\n {%- set column_index_0 = column_index - 1 if column_index > 0 else 0 -%}\n\n {%- set column_index_matches = true if matching_column_index == column_index_0 else false %}\n\n {%- else -%}\n\n {%- set column_index_matches = true -%}\n\n {%- endif %}\n\n with test_data as (\n\n select\n cast('{{ column_name }}' as {{ type_string() }}) as column_name,\n {{ matching_column_index }} as matching_column_index,\n {{ column_index_matches }} as column_index_matches\n\n )\n select *\n from test_data\n where\n not(matching_column_index >= 0 and column_index_matches)\n\n{%- endif -%}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations._get_column_list", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7892694, "supported_languages": null}, "macro.dbt_expectations.test_expect_grouped_row_values_to_have_recent_data": {"name": "test_expect_grouped_row_values_to_have_recent_data", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_grouped_row_values_to_have_recent_data.sql", "original_file_path": "macros/schema_tests/table_shape/expect_grouped_row_values_to_have_recent_data.sql", "unique_id": "macro.dbt_expectations.test_expect_grouped_row_values_to_have_recent_data", "macro_sql": "{% test expect_grouped_row_values_to_have_recent_data(model,\n group_by,\n timestamp_column,\n datepart,\n interval,\n row_condition=None) %}\n\n {{ adapter.dispatch('test_expect_grouped_row_values_to_have_recent_data', 'dbt_expectations') (model,\n group_by,\n timestamp_column,\n datepart,\n interval,\n row_condition) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.default__test_expect_grouped_row_values_to_have_recent_data"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7925587, "supported_languages": null}, "macro.dbt_expectations.default__test_expect_grouped_row_values_to_have_recent_data": {"name": "default__test_expect_grouped_row_values_to_have_recent_data", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_grouped_row_values_to_have_recent_data.sql", "original_file_path": "macros/schema_tests/table_shape/expect_grouped_row_values_to_have_recent_data.sql", "unique_id": "macro.dbt_expectations.default__test_expect_grouped_row_values_to_have_recent_data", "macro_sql": "{% macro default__test_expect_grouped_row_values_to_have_recent_data(model,\n group_by,\n timestamp_column,\n datepart,\n interval,\n row_condition) %}\nwith latest_grouped_timestamps as (\n\n select\n {%- for g in group_by %}\n {{ g }},\n {%- endfor %}\n max(1) as join_key,\n max(cast({{ timestamp_column }} as {{ type_timestamp() }})) as latest_timestamp_column\n from\n {{ model }}\n where\n -- to exclude erroneous future dates\n cast({{ timestamp_column }} as {{ type_timestamp() }}) <= {{ dbt_date.now() }}\n {% if row_condition %}\n and {{ row_condition }}\n {% endif %}\n\n {{ dbt_utils.group_by(group_by | length )}}\n\n),\ntotal_row_counts as (\n\n select\n max(1) as join_key,\n count(*) as row_count\n from\n latest_grouped_timestamps\n\n),\noutdated_grouped_timestamps as (\n\n select *\n from\n latest_grouped_timestamps\n where\n -- are the max timestamps per group older than the specified cutoff?\n latest_timestamp_column <\n cast(\n {{ dateadd(datepart, interval * -1, dbt_date.now()) }}\n as {{ type_timestamp() }}\n )\n\n),\nvalidation_errors as (\n\n select\n r.row_count,\n t.*\n from\n total_row_counts r\n left join\n outdated_grouped_timestamps t\n on r.join_key = t.join_key\n where\n -- fail if either no rows were returned due to row_condition,\n -- or the recency test returned failed rows\n r.row_count = 0\n or\n t.join_key is not null\n\n)\nselect * from validation_errors\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.type_timestamp", "macro.dbt_date.now", "macro.dbt_utils.group_by", "macro.dbt_utils.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.79413, "supported_languages": null}, "macro.dbt_expectations.test_expect_row_values_to_have_recent_data": {"name": "test_expect_row_values_to_have_recent_data", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_row_values_to_have_recent_data.sql", "original_file_path": "macros/schema_tests/table_shape/expect_row_values_to_have_recent_data.sql", "unique_id": "macro.dbt_expectations.test_expect_row_values_to_have_recent_data", "macro_sql": "{% test expect_row_values_to_have_recent_data(model,\n column_name,\n datepart,\n interval,\n row_condition=None) %}\n\n {{ adapter.dispatch('test_expect_row_values_to_have_recent_data', 'dbt_expectations') (model,\n column_name,\n datepart,\n interval,\n row_condition) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.default__test_expect_row_values_to_have_recent_data"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7959926, "supported_languages": null}, "macro.dbt_expectations.default__test_expect_row_values_to_have_recent_data": {"name": "default__test_expect_row_values_to_have_recent_data", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_row_values_to_have_recent_data.sql", "original_file_path": "macros/schema_tests/table_shape/expect_row_values_to_have_recent_data.sql", "unique_id": "macro.dbt_expectations.default__test_expect_row_values_to_have_recent_data", "macro_sql": "{% macro default__test_expect_row_values_to_have_recent_data(model, column_name, datepart, interval, row_condition) %}\n{%- set default_start_date = '1970-01-01' -%}\nwith max_recency as (\n\n select max(cast({{ column_name }} as {{ type_timestamp() }})) as max_timestamp\n from\n {{ model }}\n where\n -- to exclude erroneous future dates\n cast({{ column_name }} as {{ type_timestamp() }}) <= {{ dbt_date.now() }}\n {% if row_condition %}\n and {{ row_condition }}\n {% endif %}\n)\nselect\n *\nfrom\n max_recency\nwhere\n -- if the row_condition excludes all rows, we need to compare against a default date\n -- to avoid false negatives\n coalesce(max_timestamp, cast('{{ default_start_date }}' as {{ type_timestamp() }}))\n <\n cast({{ dateadd(datepart, interval * -1, dbt_date.now()) }} as {{ type_timestamp() }})\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.type_timestamp", "macro.dbt_date.now", "macro.dbt_utils.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.7973638, "supported_languages": null}, "macro.dbt_expectations.test_expect_table_column_count_to_be_between": {"name": "test_expect_table_column_count_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_column_count_to_be_between.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_column_count_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_table_column_count_to_be_between", "macro_sql": "{%- test expect_table_column_count_to_be_between(model,\n min_value=None,\n max_value=None\n ) -%}\n{%- if min_value is none and max_value is none -%}\n{{ exceptions.raise_compiler_error(\n \"You have to provide either a min_value, max_value or both.\"\n) }}\n{%- endif -%}\n{%- if execute -%}\n{%- set number_actual_columns = (adapter.get_columns_in_relation(model) | length) -%}\n\n{%- set expression %}\n( 1=1\n{%- if min_value %} and number_actual_columns >= min_value{% endif %}\n{%- if max_value %} and number_actual_columns <= max_value{% endif %}\n)\n{% endset -%}\n\nwith test_data as (\n\n select\n {{ number_actual_columns }} as number_actual_columns,\n {{ min_value if min_value else 0 }} as min_value,\n {{ max_value if max_value else 0 }} as max_value\n\n)\nselect *\nfrom test_data\nwhere\n not {{ expression }}\n{%- endif -%}\n{%- endtest -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.799414, "supported_languages": null}, "macro.dbt_expectations.test_expect_table_column_count_to_equal": {"name": "test_expect_table_column_count_to_equal", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_column_count_to_equal.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_column_count_to_equal.sql", "unique_id": "macro.dbt_expectations.test_expect_table_column_count_to_equal", "macro_sql": "{%- test expect_table_column_count_to_equal(model, value) -%}\n{%- if execute -%}\n{%- set number_actual_columns = (adapter.get_columns_in_relation(model) | length) -%}\nwith test_data as (\n\n select\n {{ number_actual_columns }} as number_actual_columns,\n {{ value }} as value\n\n)\nselect *\nfrom test_data\nwhere\n number_actual_columns != value\n{%- endif -%}\n{%- endtest -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.800272, "supported_languages": null}, "macro.dbt_expectations.test_expect_table_column_count_to_equal_other_table": {"name": "test_expect_table_column_count_to_equal_other_table", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_column_count_to_equal_other_table.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_column_count_to_equal_other_table.sql", "unique_id": "macro.dbt_expectations.test_expect_table_column_count_to_equal_other_table", "macro_sql": "{%- test expect_table_column_count_to_equal_other_table(model, compare_model) -%}\n{%- if execute -%}\n{%- set number_columns = (adapter.get_columns_in_relation(model) | length) -%}\n{%- set compare_number_columns = (adapter.get_columns_in_relation(compare_model) | length) -%}\nwith test_data as (\n\n select\n {{ number_columns }} as number_columns,\n {{ compare_number_columns }} as compare_number_columns\n\n)\nselect *\nfrom test_data\nwhere\n number_columns != compare_number_columns\n{%- endif -%}\n{%- endtest -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8013139, "supported_languages": null}, "macro.dbt_expectations.test_expect_table_columns_to_contain_set": {"name": "test_expect_table_columns_to_contain_set", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_columns_to_contain_set.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_columns_to_contain_set.sql", "unique_id": "macro.dbt_expectations.test_expect_table_columns_to_contain_set", "macro_sql": "{%- test expect_table_columns_to_contain_set(model, column_list, transform=\"upper\") -%}\n{%- if execute -%}\n {%- set column_list = column_list | map(transform) | list -%}\n {%- set relation_column_names = dbt_expectations._get_column_list(model, transform) -%}\n {%- set matching_columns = dbt_expectations._list_intersect(column_list, relation_column_names) -%}\n with relation_columns as (\n\n {% for col_name in relation_column_names %}\n select cast('{{ col_name }}' as {{ type_string() }}) as relation_column\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n ),\n input_columns as (\n\n {% for col_name in column_list %}\n select cast('{{ col_name }}' as {{ type_string() }}) as input_column\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n )\n select *\n from\n input_columns i\n left join\n relation_columns r on r.relation_column = i.input_column\n where\n -- catch any column in input list that is not in the list of table columns\n r.relation_column is null\n{%- endif -%}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations._get_column_list", "macro.dbt_expectations._list_intersect", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8037026, "supported_languages": null}, "macro.dbt_expectations.test_expect_table_columns_to_match_ordered_list": {"name": "test_expect_table_columns_to_match_ordered_list", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_columns_to_match_ordered_list.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_columns_to_match_ordered_list.sql", "unique_id": "macro.dbt_expectations.test_expect_table_columns_to_match_ordered_list", "macro_sql": "{%- test expect_table_columns_to_match_ordered_list(model, column_list, transform=\"upper\") -%}\n{%- if execute -%}\n {%- set column_list = column_list | map(transform) | list -%}\n {%- set relation_column_names = dbt_expectations._get_column_list(model, transform) -%}\n {%- set matching_columns = dbt_expectations._list_intersect(column_list, relation_column_names) -%}\n with relation_columns as (\n\n {% for col_name in relation_column_names %}\n select\n {{ loop.index }} as relation_column_idx,\n cast('{{ col_name }}' as {{ type_string() }}) as relation_column\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n ),\n input_columns as (\n\n {% for col_name in column_list %}\n select\n {{ loop.index }} as input_column_idx,\n cast('{{ col_name }}' as {{ type_string() }}) as input_column\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n )\n select *\n from\n relation_columns r\n full outer join\n input_columns i on r.relation_column = i.input_column and r.relation_column_idx = i.input_column_idx\n where\n -- catch any column in input list that is not in the sequence of table columns\n -- or any table column that is not in the input sequence\n r.relation_column is null or\n i.input_column is null\n\n{%- endif -%}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations._get_column_list", "macro.dbt_expectations._list_intersect", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.806461, "supported_languages": null}, "macro.dbt_expectations.test_expect_table_columns_to_match_set": {"name": "test_expect_table_columns_to_match_set", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_columns_to_match_set.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_columns_to_match_set.sql", "unique_id": "macro.dbt_expectations.test_expect_table_columns_to_match_set", "macro_sql": "{%- test expect_table_columns_to_match_set(model, column_list, transform=\"upper\") -%}\n{%- if execute -%}\n {%- set column_list = column_list | map(transform) | list -%}\n {%- set relation_column_names = dbt_expectations._get_column_list(model, transform) -%}\n {%- set matching_columns = dbt_expectations._list_intersect(column_list, relation_column_names) -%}\n with relation_columns as (\n\n {% for col_name in relation_column_names %}\n select cast('{{ col_name }}' as {{ type_string() }}) as relation_column\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n ),\n input_columns as (\n\n {% for col_name in column_list %}\n select cast('{{ col_name }}' as {{ type_string() }}) as input_column\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n )\n select *\n from\n relation_columns r\n full outer join\n input_columns i on r.relation_column = i.input_column\n where\n -- catch any column in input list that is not in the list of table columns\n -- or any table column that is not in the input list\n r.relation_column is null or\n i.input_column is null\n\n{%- endif -%}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations._get_column_list", "macro.dbt_expectations._list_intersect", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.809038, "supported_languages": null}, "macro.dbt_expectations.test_expect_table_columns_to_not_contain_set": {"name": "test_expect_table_columns_to_not_contain_set", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_columns_to_not_contain_set.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_columns_to_not_contain_set.sql", "unique_id": "macro.dbt_expectations.test_expect_table_columns_to_not_contain_set", "macro_sql": "{%- test expect_table_columns_to_not_contain_set(model, column_list, transform=\"upper\") -%}\n{%- if execute -%}\n {%- set column_list = column_list | map(transform) | list -%}\n {%- set relation_column_names = dbt_expectations._get_column_list(model, transform) -%}\n {%- set matching_columns = dbt_expectations._list_intersect(column_list, relation_column_names) -%}\n with relation_columns as (\n\n {% for col_name in relation_column_names %}\n select cast('{{ col_name }}' as {{ type_string() }}) as relation_column\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n ),\n input_columns as (\n\n {% for col_name in column_list %}\n select cast('{{ col_name }}' as {{ type_string() }}) as input_column\n {% if not loop.last %}union all{% endif %}\n {% endfor %}\n )\n -- catch any column in input list that is in the list of table columns\n select *\n from\n input_columns i\n inner join\n relation_columns r on r.relation_column = i.input_column\n\n{%- endif -%}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations._get_column_list", "macro.dbt_expectations._list_intersect", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8116193, "supported_languages": null}, "macro.dbt_expectations.test_expect_table_row_count_to_be_between": {"name": "test_expect_table_row_count_to_be_between", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_row_count_to_be_between.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_row_count_to_be_between.sql", "unique_id": "macro.dbt_expectations.test_expect_table_row_count_to_be_between", "macro_sql": "{%- test expect_table_row_count_to_be_between(model,\n min_value=None,\n max_value=None,\n group_by=None,\n row_condition=None,\n strictly=False\n ) -%}\n{% set expression %}\ncount(*)\n{% endset %}\n{{ dbt_expectations.expression_between(model,\n expression=expression,\n min_value=min_value,\n max_value=max_value,\n group_by_columns=group_by,\n row_condition=row_condition,\n strictly=strictly\n ) }}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations.expression_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8130193, "supported_languages": null}, "macro.dbt_expectations.test_expect_table_row_count_to_equal": {"name": "test_expect_table_row_count_to_equal", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_row_count_to_equal.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_row_count_to_equal.sql", "unique_id": "macro.dbt_expectations.test_expect_table_row_count_to_equal", "macro_sql": "{%- test expect_table_row_count_to_equal(model,\n value,\n group_by=None,\n row_condition=None\n ) -%}\n {{ adapter.dispatch('test_expect_table_row_count_to_equal',\n 'dbt_expectations') (model,\n value,\n group_by,\n row_condition\n ) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_expectations.default__test_expect_table_row_count_to_equal"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8146727, "supported_languages": null}, "macro.dbt_expectations.default__test_expect_table_row_count_to_equal": {"name": "default__test_expect_table_row_count_to_equal", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_row_count_to_equal.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_row_count_to_equal.sql", "unique_id": "macro.dbt_expectations.default__test_expect_table_row_count_to_equal", "macro_sql": "\n\n\n\n{%- macro default__test_expect_table_row_count_to_equal(model,\n value,\n group_by,\n row_condition\n ) -%}\n{% set expression %}\ncount(*) = {{ value }}\n{% endset %}\n{{ dbt_expectations.expression_is_true(model,\n expression=expression,\n group_by_columns=group_by,\n row_condition=row_condition)\n }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_expectations.expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8153756, "supported_languages": null}, "macro.dbt_expectations.test_expect_table_row_count_to_equal_other_table": {"name": "test_expect_table_row_count_to_equal_other_table", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_row_count_to_equal_other_table.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_row_count_to_equal_other_table.sql", "unique_id": "macro.dbt_expectations.test_expect_table_row_count_to_equal_other_table", "macro_sql": "{%- test expect_table_row_count_to_equal_other_table(model, compare_model, factor=1, row_condition=None, compare_row_condition=None) -%}\n{{ dbt_expectations.test_equal_expression(model, \"count(*)\",\n compare_model=compare_model,\n compare_expression=\"count(*) * \" + factor|string,\n row_condition=row_condition,\n compare_row_condition=compare_row_condition\n) }}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations.test_equal_expression"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8162389, "supported_languages": null}, "macro.dbt_expectations.test_expect_table_row_count_to_equal_other_table_times_factor": {"name": "test_expect_table_row_count_to_equal_other_table_times_factor", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/schema_tests/table_shape/expect_table_row_count_to_equal_other_table_times_factor.sql", "original_file_path": "macros/schema_tests/table_shape/expect_table_row_count_to_equal_other_table_times_factor.sql", "unique_id": "macro.dbt_expectations.test_expect_table_row_count_to_equal_other_table_times_factor", "macro_sql": "{%- test expect_table_row_count_to_equal_other_table_times_factor(model, compare_model, factor, row_condition=None, compare_row_condition=None) -%}\n{{ dbt_expectations.test_expect_table_row_count_to_equal_other_table(model, compare_model,\n factor=factor,\n row_condition=row_condition,\n compare_row_condition=compare_row_condition\n) }}\n{%- endtest -%}", "depends_on": {"macros": ["macro.dbt_expectations.test_expect_table_row_count_to_equal_other_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.816895, "supported_languages": null}, "macro.dbt_expectations.type_timestamp": {"name": "type_timestamp", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/utils/datatypes.sql", "original_file_path": "macros/utils/datatypes.sql", "unique_id": "macro.dbt_expectations.type_timestamp", "macro_sql": "\n{%- macro type_timestamp() -%}\n {{ return(adapter.dispatch('type_timestamp', 'dbt_expectations')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_expectations.default__type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8176694, "supported_languages": null}, "macro.dbt_expectations.default__type_timestamp": {"name": "default__type_timestamp", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/utils/datatypes.sql", "original_file_path": "macros/utils/datatypes.sql", "unique_id": "macro.dbt_expectations.default__type_timestamp", "macro_sql": "{% macro default__type_timestamp() -%}\n timestamp\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8178523, "supported_languages": null}, "macro.dbt_expectations.snowflake__type_timestamp": {"name": "snowflake__type_timestamp", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/utils/datatypes.sql", "original_file_path": "macros/utils/datatypes.sql", "unique_id": "macro.dbt_expectations.snowflake__type_timestamp", "macro_sql": "{% macro snowflake__type_timestamp() -%}\n timestamp_ntz\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8180196, "supported_languages": null}, "macro.dbt_expectations.postgres__type_timestamp": {"name": "postgres__type_timestamp", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/utils/datatypes.sql", "original_file_path": "macros/utils/datatypes.sql", "unique_id": "macro.dbt_expectations.postgres__type_timestamp", "macro_sql": "{% macro postgres__type_timestamp() -%}\n timestamp without time zone\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8182368, "supported_languages": null}, "macro.dbt_expectations.type_datetime": {"name": "type_datetime", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/utils/datatypes.sql", "original_file_path": "macros/utils/datatypes.sql", "unique_id": "macro.dbt_expectations.type_datetime", "macro_sql": "{% macro type_datetime() -%}\n {{ return(adapter.dispatch('type_datetime', 'dbt_expectations')()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_expectations.default__type_datetime"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.818592, "supported_languages": null}, "macro.dbt_expectations.default__type_datetime": {"name": "default__type_datetime", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/utils/datatypes.sql", "original_file_path": "macros/utils/datatypes.sql", "unique_id": "macro.dbt_expectations.default__type_datetime", "macro_sql": "{% macro default__type_datetime() -%}\n datetime\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.818763, "supported_languages": null}, "macro.dbt_expectations.snowflake__type_datetime": {"name": "snowflake__type_datetime", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/utils/datatypes.sql", "original_file_path": "macros/utils/datatypes.sql", "unique_id": "macro.dbt_expectations.snowflake__type_datetime", "macro_sql": "{% macro snowflake__type_datetime() -%}\n timestamp_ntz\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.818927, "supported_languages": null}, "macro.dbt_expectations.postgres__type_datetime": {"name": "postgres__type_datetime", "resource_type": "macro", "package_name": "dbt_expectations", "path": "macros/utils/datatypes.sql", "original_file_path": "macros/utils/datatypes.sql", "unique_id": "macro.dbt_expectations.postgres__type_datetime", "macro_sql": "{% macro postgres__type_datetime() -%}\n timestamp without time zone\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8191383, "supported_languages": null}, "macro.dbt_external_tables.create_external_schema": {"name": "create_external_schema", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/create_external_schema.sql", "original_file_path": "macros/common/create_external_schema.sql", "unique_id": "macro.dbt_external_tables.create_external_schema", "macro_sql": "{%- macro create_external_schema(source_node) -%}\n {{ adapter.dispatch('create_external_schema', 'dbt_external_tables')(source_node) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_external_tables.default__create_external_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8198533, "supported_languages": null}, "macro.dbt_external_tables.default__create_external_schema": {"name": "default__create_external_schema", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/create_external_schema.sql", "original_file_path": "macros/common/create_external_schema.sql", "unique_id": "macro.dbt_external_tables.default__create_external_schema", "macro_sql": "{%- macro default__create_external_schema(source_node) -%}\n {%- set fqn -%}\n {%- if source_node.database -%}\n {{ source_node.database }}.{{ source_node.schema }}\n {%- else -%}\n {{ source_node.schema }}\n {%- endif -%}\n {%- endset -%}\n\n {%- set ddl -%}\n create schema if not exists {{ fqn }}\n {%- endset -%}\n\n {{ return(ddl) }}\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8207161, "supported_languages": null}, "macro.dbt_external_tables.create_external_table": {"name": "create_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/create_external_table.sql", "original_file_path": "macros/common/create_external_table.sql", "unique_id": "macro.dbt_external_tables.create_external_table", "macro_sql": "{% macro create_external_table(source_node) %}\n {{ adapter.dispatch('create_external_table', 'dbt_external_tables')(source_node) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.spark__create_external_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8213236, "supported_languages": null}, "macro.dbt_external_tables.default__create_external_table": {"name": "default__create_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/create_external_table.sql", "original_file_path": "macros/common/create_external_table.sql", "unique_id": "macro.dbt_external_tables.default__create_external_table", "macro_sql": "{% macro default__create_external_table(source_node) %}\n {{ exceptions.raise_compiler_error(\"External table creation is not implemented for the default adapter\") }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8216448, "supported_languages": null}, "macro.dbt_external_tables.get_external_build_plan": {"name": "get_external_build_plan", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/get_external_build_plan.sql", "original_file_path": "macros/common/get_external_build_plan.sql", "unique_id": "macro.dbt_external_tables.get_external_build_plan", "macro_sql": "{% macro get_external_build_plan(source_node) %}\n {{ return(adapter.dispatch('get_external_build_plan', 'dbt_external_tables')(source_node)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.spark__get_external_build_plan"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8222673, "supported_languages": null}, "macro.dbt_external_tables.default__get_external_build_plan": {"name": "default__get_external_build_plan", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/get_external_build_plan.sql", "original_file_path": "macros/common/get_external_build_plan.sql", "unique_id": "macro.dbt_external_tables.default__get_external_build_plan", "macro_sql": "{% macro default__get_external_build_plan(source_node) %}\n {{ exceptions.raise_compiler_error(\"Staging external sources is not implemented for the default adapter\") }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.822717, "supported_languages": null}, "macro.dbt_external_tables.refresh_external_table": {"name": "refresh_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/refresh_external_table.sql", "original_file_path": "macros/common/refresh_external_table.sql", "unique_id": "macro.dbt_external_tables.refresh_external_table", "macro_sql": "{% macro refresh_external_table(source_node) %}\n {{ return(adapter.dispatch('refresh_external_table', 'dbt_external_tables')(source_node)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.spark__refresh_external_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8233216, "supported_languages": null}, "macro.dbt_external_tables.default__refresh_external_table": {"name": "default__refresh_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/refresh_external_table.sql", "original_file_path": "macros/common/refresh_external_table.sql", "unique_id": "macro.dbt_external_tables.default__refresh_external_table", "macro_sql": "{% macro default__refresh_external_table(source_node) %}\n {% do return([]) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8236308, "supported_languages": null}, "macro.dbt_external_tables.stage_external_sources": {"name": "stage_external_sources", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/stage_external_sources.sql", "original_file_path": "macros/common/stage_external_sources.sql", "unique_id": "macro.dbt_external_tables.stage_external_sources", "macro_sql": "{% macro stage_external_sources(select=none) %}\n\n {% set sources_to_stage = [] %}\n \n {% set source_nodes = graph.sources.values() if graph.sources else [] %}\n \n {% for node in source_nodes %}\n {% if node.external %}\n \n {% if select %}\n \n {% for src in select.split(' ') %}\n \n {% if '.' in src %}\n {% set src_s = src.split('.') %}\n {% if src_s[0] == node.source_name and src_s[1] == node.name %}\n {% do sources_to_stage.append(node) %}\n {% endif %}\n {% else %}\n {% if src == node.source_name %}\n {% do sources_to_stage.append(node) %}\n {% endif %}\n {% endif %}\n \n {% endfor %}\n \n {% else %}\n \n {% do sources_to_stage.append(node) %}\n \n {% endif %}\n {% endif %}\n \n {% endfor %}\n \n {% if sources_to_stage|length == 0 %}\n {% do log('No external sources selected', info = true) %}\n {% endif %}\n \n {% for node in sources_to_stage %}\n\n {% set loop_label = loop.index ~ ' of ' ~ loop.length %}\n\n {% do log(loop_label ~ ' START external source ' ~ node.schema ~ '.' ~ node.identifier, info = true) -%}\n \n {% set run_queue = dbt_external_tables.get_external_build_plan(node) %}\n \n {% do log(loop_label ~ ' SKIP', info = true) if run_queue == [] %}\n {% set width = flags.PRINTER_WIDTH %}\n \n {% for q in run_queue %}\n \n {% set q_msg = q|replace('\\n','')|replace('begin;','')|trim %}\n {% set q_log = q_msg[:width] ~ '... ' if q_msg|length > width else q_msg %}\n \n {% do log(loop_label ~ ' (' ~ loop.index ~ ') ' ~ q_log, info = true) %}\n {% set exit_txn = dbt_external_tables.exit_transaction() %}\n \n {% call statement('runner', fetch_result = True, auto_begin = False) %}\n {{ exit_txn }} {{ q }}\n {% endcall %}\n \n {% set runner = load_result('runner') %}\n {% set log_msg = runner['response'] if 'response' in runner.keys() else runner['status'] %}\n {% do log(loop_label ~ ' (' ~ loop.index ~ ') ' ~ log_msg, info = true) %}\n \n {% endfor %}\n \n {% endfor %}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.get_external_build_plan", "macro.dbt_external_tables.exit_transaction", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.834001, "supported_languages": null}, "macro.dbt_external_tables.dropif": {"name": "dropif", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/helpers/dropif.sql", "original_file_path": "macros/common/helpers/dropif.sql", "unique_id": "macro.dbt_external_tables.dropif", "macro_sql": "{% macro dropif(node) %}\n {{ adapter.dispatch('dropif', 'dbt_external_tables')(node) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.spark__dropif"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.834756, "supported_languages": null}, "macro.dbt_external_tables.default__dropif": {"name": "default__dropif", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/helpers/dropif.sql", "original_file_path": "macros/common/helpers/dropif.sql", "unique_id": "macro.dbt_external_tables.default__dropif", "macro_sql": "{% macro default__dropif() %}\n {{ exceptions.raise_compiler_error(\n \"Dropping external tables is not implemented for the default adapter\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8350663, "supported_languages": null}, "macro.dbt_external_tables.exit_transaction": {"name": "exit_transaction", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/helpers/transaction.sql", "original_file_path": "macros/common/helpers/transaction.sql", "unique_id": "macro.dbt_external_tables.exit_transaction", "macro_sql": "{% macro exit_transaction() %}\n {{ return(adapter.dispatch('exit_transaction', 'dbt_external_tables')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.default__exit_transaction"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8356411, "supported_languages": null}, "macro.dbt_external_tables.default__exit_transaction": {"name": "default__exit_transaction", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/common/helpers/transaction.sql", "original_file_path": "macros/common/helpers/transaction.sql", "unique_id": "macro.dbt_external_tables.default__exit_transaction", "macro_sql": "{% macro default__exit_transaction() %}\n {{ return('') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8359056, "supported_languages": null}, "macro.dbt_external_tables.bigquery__create_external_schema": {"name": "bigquery__create_external_schema", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/bigquery/create_external_schema.sql", "original_file_path": "macros/plugins/bigquery/create_external_schema.sql", "unique_id": "macro.dbt_external_tables.bigquery__create_external_schema", "macro_sql": "{%- macro bigquery__create_external_schema(source_node) -%}\n {%- set fqn -%}\n {%- if source_node.database -%}\n `{{ source_node.database }}`.{{ source_node.schema }}\n {%- else -%}\n {{ source_node.schema }}\n {%- endif -%}\n {%- endset -%}\n\n {%- set ddl -%}\n create schema if not exists {{ fqn }}\n {%- endset -%}\n\n {{ return(ddl) }}\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.836993, "supported_languages": null}, "macro.dbt_external_tables.bigquery__create_external_table": {"name": "bigquery__create_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/bigquery/create_external_table.sql", "original_file_path": "macros/plugins/bigquery/create_external_table.sql", "unique_id": "macro.dbt_external_tables.bigquery__create_external_table", "macro_sql": "{% macro bigquery__create_external_table(source_node) %}\n\n {%- set columns = source_node.columns.values() -%}\n {%- set external = source_node.external -%}\n {%- set partitions = external.partitions -%}\n {%- set options = external.options -%}\n \n {%- set uris = [] -%}\n {%- if options is mapping and options.get('uris', none) -%}\n {%- set uris = external.options.get('uris') -%}\n {%- else -%}\n {%- set uris = [external.location] -%}\n {%- endif -%}\n\n create or replace external table {{source(source_node.source_name, source_node.name)}}\n {%- if columns -%}(\n {% for column in columns %}\n {%- set column_quoted = adapter.quote(column.name) if column.quote else column.name %}\n {{column_quoted}} {{column.data_type}} {{- ',' if not loop.last -}}\n {%- endfor -%}\n )\n {% endif %}\n {% if options and options.get('hive_partition_uri_prefix', none) %}\n with partition columns {%- if partitions %} (\n {%- for partition in partitions %}\n {{partition.name}} {{partition.data_type}}{{',' if not loop.last}}\n {%- endfor -%}\n ) {% endif -%}\n {% endif %}\n options (\n uris = [{%- for uri in uris -%} '{{uri}}' {{- \",\" if not loop.last}} {%- endfor -%}]\n {%- if options is mapping -%}\n {%- for key, value in options.items() if key != 'uris' %}\n {%- if value is string -%}\n , {{key}} = '{{value}}'\n {%- else -%}\n , {{key}} = {{value}}\n {%- endif -%}\n {%- endfor -%}\n {%- endif -%}\n )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8427577, "supported_languages": null}, "macro.dbt_external_tables.bigquery__get_external_build_plan": {"name": "bigquery__get_external_build_plan", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/bigquery/get_external_build_plan.sql", "original_file_path": "macros/plugins/bigquery/get_external_build_plan.sql", "unique_id": "macro.dbt_external_tables.bigquery__get_external_build_plan", "macro_sql": "{% macro bigquery__get_external_build_plan(source_node) %}\n\n {% set build_plan = [] %}\n \n {% set old_relation = adapter.get_relation(\n database = source_node.database,\n schema = source_node.schema,\n identifier = source_node.identifier\n ) %}\n \n {% set create_or_replace = (old_relation is none or var('ext_full_refresh', false)) %}\n\n {% if create_or_replace %}\n {% set build_plan = build_plan + [\n dbt_external_tables.create_external_schema(source_node),\n dbt_external_tables.create_external_table(source_node)\n ] %}\n {% else %}\n {% set build_plan = build_plan + dbt_external_tables.refresh_external_table(source_node) %}\n {% endif %}\n\n {% do return(build_plan) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.create_external_schema", "macro.dbt_external_tables.create_external_table", "macro.dbt_external_tables.refresh_external_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8448129, "supported_languages": null}, "macro.dbt_external_tables.redshift__create_external_table": {"name": "redshift__create_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/redshift/create_external_table.sql", "original_file_path": "macros/plugins/redshift/create_external_table.sql", "unique_id": "macro.dbt_external_tables.redshift__create_external_table", "macro_sql": "{% macro redshift__create_external_table(source_node) %}\n\n {%- set columns = source_node.columns.values() -%}\n {%- set external = source_node.external -%}\n {%- set partitions = external.partitions -%}\n\n{# https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_EXTERNAL_TABLE.html #}\n{# This assumes you have already created an external schema #}\n\n create external table {{source(source_node.source_name, source_node.name)}} (\n {% for column in columns %}\n {{adapter.quote(column.name)}} {{column.data_type}}\n {{- ',' if not loop.last -}}\n {% endfor %}\n )\n {% if partitions -%} partitioned by (\n {%- for partition in partitions -%}\n {{adapter.quote(partition.name)}} {{partition.data_type}}{{', ' if not loop.last}}\n {%- endfor -%}\n ) {%- endif %}\n {% if external.row_format -%} row format {{external.row_format}} {%- endif %}\n {% if external.file_format -%} stored as {{external.file_format}} {%- endif %}\n {% if external.location -%} location '{{external.location}}' {%- endif %}\n {% if external.table_properties -%} table properties {{external.table_properties}} {%- endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.848031, "supported_languages": null}, "macro.dbt_external_tables.redshift__get_external_build_plan": {"name": "redshift__get_external_build_plan", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/redshift/get_external_build_plan.sql", "original_file_path": "macros/plugins/redshift/get_external_build_plan.sql", "unique_id": "macro.dbt_external_tables.redshift__get_external_build_plan", "macro_sql": "{% macro redshift__get_external_build_plan(source_node) %}\n\n {% set build_plan = [] %}\n \n {% set create_or_replace = (var('ext_full_refresh', false) or not dbt_external_tables.redshift_is_ext_tbl(source_node)) %}\n \n {% if create_or_replace %}\n\n {% set build_plan = [\n dbt_external_tables.dropif(source_node),\n dbt_external_tables.create_external_table(source_node)\n ] + dbt_external_tables.refresh_external_table(source_node) \n %}\n \n {% else %}\n \n {% set build_plan = dbt_external_tables.refresh_external_table(source_node) %}\n \n {% endif %}\n \n {% do return(build_plan) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.redshift_is_ext_tbl", "macro.dbt_external_tables.dropif", "macro.dbt_external_tables.create_external_table", "macro.dbt_external_tables.refresh_external_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8498485, "supported_languages": null}, "macro.dbt_external_tables.redshift__refresh_external_table": {"name": "redshift__refresh_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/redshift/refresh_external_table.sql", "original_file_path": "macros/plugins/redshift/refresh_external_table.sql", "unique_id": "macro.dbt_external_tables.redshift__refresh_external_table", "macro_sql": "{% macro redshift__refresh_external_table(source_node) %}\n\n {%- set partitions = source_node.external.get('partitions',[]) -%}\n\n {%- if partitions -%}\n \n {%- set part_len = partitions|length -%}\n \n {%- set get_partitions_sql -%}\n \n select * from\n \n {%- for partition in partitions %} (\n \n {%- set part_num = loop.index -%}\n \n {%- if partition.vals.macro -%}\n {%- set vals = dbt_external_tables.render_from_context(partition.vals.macro, **partition.vals.args) -%}\n {%- elif partition.vals is string -%}\n {%- set vals = [partition.vals] -%}\n {%- else -%}\n {%- set vals = partition.vals -%}\n {%- endif -%}\n \n {%- for val in vals %}\n \n select\n '\"{{ partition.name }}\"' as name_{{ part_num }},\n '\"{{ val }}\"' as val_{{ part_num }},\n '\"{{ dbt_external_tables.render_from_context(partition.path_macro, partition.name, val) }}\"' as path_{{ part_num }}\n \n {{ 'union all' if not loop.last else ') ' }}\n \n {%- endfor -%}\n \n {{ 'cross join' if not loop.last }}\n \n {%- endfor -%}\n \n {%- endset -%}\n \n {%- set finals = [] -%}\n \n {%- if execute -%}\n {%- set results = run_query(get_partitions_sql) -%}\n {%- for row in results -%}\n \n {%- set partition_parts = [] -%}\n {%- set path_parts = [] -%}\n \n {%- for i in range(0, part_len) -%}\n {%- do partition_parts.append({\n 'name': row[i * 3][1:-1],\n 'value': row[i * 3 + 1][1:-1]\n }) -%}\n {%- do path_parts.append(row[i * 3 + 2][1:-1]) -%}\n {%- endfor -%}\n \n {%- set construct = {\n 'partition_by': partition_parts,\n 'path': path_parts | join('/')\n } -%}\n \n {% do finals.append(construct) %}\n {%- endfor -%}\n {%- endif -%}\n \n {%- set ddl = dbt_external_tables.redshift_alter_table_add_partitions(source_node, finals) -%}\n {{ return(ddl) }}\n \n {% else %}\n \n {% do return([]) %}\n \n {% endif %}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.render_from_context", "macro.dbt.run_query", "macro.dbt_external_tables.redshift_alter_table_add_partitions"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8589091, "supported_languages": null}, "macro.dbt_external_tables.redshift_alter_table_add_partitions": {"name": "redshift_alter_table_add_partitions", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/redshift/helpers/add_partitions.sql", "original_file_path": "macros/plugins/redshift/helpers/add_partitions.sql", "unique_id": "macro.dbt_external_tables.redshift_alter_table_add_partitions", "macro_sql": "{% macro redshift_alter_table_add_partitions(source_node, partitions) %}\n\n {{ log(\"Generating ADD PARTITION statement for partition set between \" \n ~ partitions[0]['path'] ~ \" and \" ~ (partitions|last)['path']) }}\n\n {% set ddl = [] %}\n \n {% if partitions|length > 0 %}\n \n {% set alter_table_add %}\n alter table {{source(source_node.source_name, source_node.name)}} add if not exists \n {% endset %}\n \n {%- set alters -%}\n\n {{ alter_table_add }}\n\n {%- for partition in partitions -%}\n\n {%- if loop.index0 != 0 and loop.index0 % 100 == 0 -%}\n\n ; {{ alter_table_add }}\n\n {%- endif -%}\n\n partition ({%- for part in partition.partition_by -%}{{ part.name }}='{{ part.value }}'{{', ' if not loop.last}}{%- endfor -%})\n location '{{ source_node.external.location }}/{{ partition.path }}/'\n\n {% endfor -%}\n \n {%- endset -%}\n \n {% set ddl = ddl + alters.split(';') %}\n\n {% else %}\n\n {{ log(\"No partitions to be added\") }}\n\n {% endif %}\n \n {% do return(ddl) %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8628652, "supported_languages": null}, "macro.dbt_external_tables.redshift__dropif": {"name": "redshift__dropif", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/redshift/helpers/dropif.sql", "original_file_path": "macros/plugins/redshift/helpers/dropif.sql", "unique_id": "macro.dbt_external_tables.redshift__dropif", "macro_sql": "{% macro redshift__dropif(node) %}\n \n {% set ddl %}\n drop table if exists {{source(node.source_name, node.name)}} cascade\n {% endset %}\n \n {{return(ddl)}}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8637097, "supported_languages": null}, "macro.dbt_external_tables.redshift_is_ext_tbl": {"name": "redshift_is_ext_tbl", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/redshift/helpers/is_ext_tbl.sql", "original_file_path": "macros/plugins/redshift/helpers/is_ext_tbl.sql", "unique_id": "macro.dbt_external_tables.redshift_is_ext_tbl", "macro_sql": "{% macro redshift_is_ext_tbl(node) %}\n\n {% set existing_relation = load_relation(node) %}\n \n {# external tables don't appear in information_schema.tables,\n so dbt doesn't cache them #}\n {% if existing_relation is none %}\n\n {% set find_ext_tbl %}\n \n select count(*) from svv_external_tables\n where schemaname = '{{node.schema}}'\n and tablename = '{{node.identifier}}'\n \n {% endset %}\n \n {% if execute %}\n {% set result = run_query(find_ext_tbl)[0][0] %}\n {% else %}\n {% set result = 0 %}\n {% endif %}\n\n {% set is_ext_tbl = (result > 0) %}\n {% do return(is_ext_tbl) %}\n \n {% else %}\n \n {% do return(false) %}\n \n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.load_relation", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8658588, "supported_languages": null}, "macro.dbt_external_tables.year_month_day": {"name": "year_month_day", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/redshift/helpers/paths.sql", "original_file_path": "macros/plugins/redshift/helpers/paths.sql", "unique_id": "macro.dbt_external_tables.year_month_day", "macro_sql": "{% macro year_month_day(name, value) %}\n {% set path = value.replace('-','/') %}\n {{return(path)}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.replace"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.866669, "supported_languages": null}, "macro.dbt_external_tables.key_value": {"name": "key_value", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/redshift/helpers/paths.sql", "original_file_path": "macros/plugins/redshift/helpers/paths.sql", "unique_id": "macro.dbt_external_tables.key_value", "macro_sql": "{% macro key_value(name, value) %}\n {% set path = name ~ '=' ~ value %}\n {{return(path)}}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8671536, "supported_languages": null}, "macro.dbt_external_tables.value_only": {"name": "value_only", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/redshift/helpers/paths.sql", "original_file_path": "macros/plugins/redshift/helpers/paths.sql", "unique_id": "macro.dbt_external_tables.value_only", "macro_sql": "{% macro value_only(name, value) %}\n {% set path = value %}\n {{return(path)}}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.867549, "supported_languages": null}, "macro.dbt_external_tables.render_from_context": {"name": "render_from_context", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/redshift/helpers/render_macro.sql", "original_file_path": "macros/plugins/redshift/helpers/render_macro.sql", "unique_id": "macro.dbt_external_tables.render_from_context", "macro_sql": "{% macro render_from_context(name) -%}\n{% set original_name = name %}\n {% if '.' in name %}\n {% set package_name, name = name.split(\".\", 1) %}\n {% else %}\n {% set package_name = none %}\n {% endif %}\n\n {% if package_name is none %}\n {% set package_context = context %}\n {% elif package_name in context %}\n {% set package_context = context[package_name] %}\n {% else %}\n {% set error_msg %}\n Could not find package '{{package_name}}', called by macro '{{original_name}}'\n {% endset %}\n {{ exceptions.raise_compiler_error(error_msg | trim) }}\n {% endif %}\n \n {{ return(package_context[name](*varargs, **kwargs)) }}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.869873, "supported_languages": null}, "macro.dbt_external_tables.redshift__exit_transaction": {"name": "redshift__exit_transaction", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/redshift/helpers/transaction.sql", "original_file_path": "macros/plugins/redshift/helpers/transaction.sql", "unique_id": "macro.dbt_external_tables.redshift__exit_transaction", "macro_sql": "{% macro redshift__exit_transaction() %}\n {{ return('begin; commit;') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.870319, "supported_languages": null}, "macro.dbt_external_tables.snowflake__create_external_table": {"name": "snowflake__create_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/snowflake/create_external_table.sql", "original_file_path": "macros/plugins/snowflake/create_external_table.sql", "unique_id": "macro.dbt_external_tables.snowflake__create_external_table", "macro_sql": "{% macro snowflake__create_external_table(source_node) %}\n\n {%- set columns = source_node.columns.values() -%}\n {%- set external = source_node.external -%}\n {%- set partitions = external.partitions -%}\n {%- set infer_schema = external.infer_schema -%}\n\n {% if infer_schema %}\n {% set query_infer_schema %}\n select * from table( infer_schema( location=>'{{external.location}}', file_format=>'{{external.file_format}}') )\n {% endset %}\n {% if execute %}\n {% set columns_infer = run_query(query_infer_schema) %}\n {% endif %}\n {% endif %}\n\n {%- set is_csv = dbt_external_tables.is_csv(external.file_format) -%}\n\n{# https://docs.snowflake.net/manuals/sql-reference/sql/create-external-table.html #}\n{# This assumes you have already created an external stage #}\n create or replace external table {{source(source_node.source_name, source_node.name)}}\n {%- if columns or partitions or infer_schema -%}\n (\n {%- if partitions -%}{%- for partition in partitions %}\n {{partition.name}} {{partition.data_type}} as {{partition.expression}}{{- ',' if not loop.last or columns|length > 0 or infer_schema -}}\n {%- endfor -%}{%- endif -%}\n {%- if not infer_schema -%}\n {%- for column in columns %}\n {%- set column_quoted = adapter.quote(column.name) if column.quote else column.name %}\n {%- set col_expression -%}\n {%- set col_id = 'value:c' ~ loop.index if is_csv else 'value:' ~ column_quoted -%}\n (case when is_null_value({{col_id}}) or lower({{col_id}}) = 'null' then null else {{col_id}} end)\n {%- endset %}\n {{column_quoted}} {{column.data_type}} as ({{col_expression}}::{{column.data_type}})\n {{- ',' if not loop.last -}}\n {% endfor %}\n {% else %}\n {%- for column in columns_infer %}\n {%- set col_expression -%}\n {%- set col_id = 'value:' ~ column[0] -%}\n (case when is_null_value({{col_id}}) or lower({{col_id}}) = 'null' then null else {{col_id}} end)\n {%- endset %}\n {{column[0]}} {{column[1]}} as ({{col_expression}}::{{column[1]}})\n {{- ',' if not loop.last -}}\n {% endfor %}\n {%- endif -%}\n )\n {%- endif -%}\n {% if partitions %} partition by ({{partitions|map(attribute='name')|join(', ')}}) {% endif %}\n location = {{external.location}} {# stage #}\n {% if external.auto_refresh in (true, false) -%}\n auto_refresh = {{external.auto_refresh}}\n {%- endif %}\n {% if external.pattern -%} pattern = '{{external.pattern}}' {%- endif %}\n {% if external.integration -%} integration = '{{external.integration}}' {%- endif %}\n file_format = {{external.file_format}}\n {% if external.table_format -%} table_format = '{{external.table_format}}' {%- endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt_external_tables.is_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.878877, "supported_languages": null}, "macro.dbt_external_tables.snowflake__get_external_build_plan": {"name": "snowflake__get_external_build_plan", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/snowflake/get_external_build_plan.sql", "original_file_path": "macros/plugins/snowflake/get_external_build_plan.sql", "unique_id": "macro.dbt_external_tables.snowflake__get_external_build_plan", "macro_sql": "{% macro snowflake__get_external_build_plan(source_node) %}\n\n {% set build_plan = [] %}\n \n {% set old_relation = adapter.get_relation(\n database = source_node.database,\n schema = source_node.schema,\n identifier = source_node.identifier\n ) %}\n \n {% set create_or_replace = (old_relation is none or var('ext_full_refresh', false)) %}\n\n {% if source_node.external.get('snowpipe', none) is not none %}\n \n {% if create_or_replace %}\n {% set build_plan = build_plan + [\n dbt_external_tables.create_external_schema(source_node),\n dbt_external_tables.snowflake_create_empty_table(source_node),\n dbt_external_tables.snowflake_get_copy_sql(source_node, explicit_transaction=true),\n dbt_external_tables.snowflake_create_snowpipe(source_node)\n ] %}\n {% else %}\n {% set build_plan = build_plan + dbt_external_tables.snowflake_refresh_snowpipe(source_node) %}\n {% endif %}\n \n {% else %}\n \n {% if create_or_replace %}\n {% set build_plan = build_plan + [\n dbt_external_tables.create_external_schema(source_node),\n dbt_external_tables.create_external_table(source_node)\n ] %}\n {% else %}\n {% set build_plan = build_plan + dbt_external_tables.refresh_external_table(source_node) %}\n {% endif %}\n \n {% endif %}\n\n {% do return(build_plan) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.create_external_schema", "macro.dbt_external_tables.snowflake_create_empty_table", "macro.dbt_external_tables.snowflake_get_copy_sql", "macro.dbt_external_tables.snowflake_create_snowpipe", "macro.dbt_external_tables.snowflake_refresh_snowpipe", "macro.dbt_external_tables.create_external_table", "macro.dbt_external_tables.refresh_external_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8827226, "supported_languages": null}, "macro.dbt_external_tables.snowflake__refresh_external_table": {"name": "snowflake__refresh_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/snowflake/refresh_external_table.sql", "original_file_path": "macros/plugins/snowflake/refresh_external_table.sql", "unique_id": "macro.dbt_external_tables.snowflake__refresh_external_table", "macro_sql": "{% macro snowflake__refresh_external_table(source_node) %}\n\n {% set external = source_node.external %}\n {% set snowpipe = source_node.external.get('snowpipe', none) %}\n \n {% set auto_refresh = external.get('auto_refresh', false) %}\n {% set partitions = external.get('partitions', none) %}\n \n {% set manual_refresh = (partitions and not auto_refresh) %}\n \n {% if manual_refresh %}\n\n {% set ddl %}\n begin;\n alter external table {{source(source_node.source_name, source_node.name)}} refresh;\n commit;\n {% endset %}\n \n {% do return([ddl]) %}\n \n {% else %}\n \n {% do return([]) %}\n \n {% endif %}\n \n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8849676, "supported_languages": null}, "macro.dbt_external_tables.is_csv": {"name": "is_csv", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/snowflake/helpers/is_csv.sql", "original_file_path": "macros/plugins/snowflake/helpers/is_csv.sql", "unique_id": "macro.dbt_external_tables.is_csv", "macro_sql": "{% macro is_csv(file_format) %}\n\n{# From https://docs.snowflake.net/manuals/sql-reference/sql/create-external-table.html:\n\nImportant: The external table does not inherit the file format, if any, in the \nstage definition. You must explicitly specify any file format options for the \nexternal table using the FILE_FORMAT parameter.\n\nNote: FORMAT_NAME and TYPE are mutually exclusive; to avoid unintended behavior, \nyou should only specify one or the other when creating an external table.\n\n#}\n\n {% set ff_ltrimmed = file_format|lower|replace(' ','') %}\n\n {% if 'type=' in ff_ltrimmed %}\n \n {% if 'type=csv' in ff_ltrimmed %}\n\n {{return(true)}}\n\n {% else %}\n\n {{return(false)}}\n \n {% endif %}\n \n {% else %}\n \n {% set ff_standardized = ff_ltrimmed\n | replace('(','') | replace(')','')\n | replace('format_name=','') %}\n {% set fqn = ff_standardized.split('.') %}\n \n {% if fqn | length == 3 %}\n {% set ff_database, ff_schema, ff_identifier = fqn[0], fqn[1], fqn[2] %}\n {% elif fqn | length == 2 %}\n {% set ff_database, ff_schema, ff_identifier = target.database, fqn[0], fqn[1] %}\n {% else %}\n {% set ff_database, ff_schema, ff_identifier = target.database, target.schema, fqn[0] %}\n {% endif %}\n \n {% call statement('get_file_format', fetch_result = True) %}\n show file formats in {{ff_database}}.{{ff_schema}}\n {% endcall %}\n \n {% set ffs = load_result('get_file_format').table %}\n \n {% for ff in ffs %}\n \n {% if ff['name']|lower == ff_identifier and ff['type']|lower == 'csv' %}\n \n {{return(true)}}\n \n {% endif %}\n \n {% endfor %}\n \n {{return(false)}} \n \n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8905063, "supported_languages": null}, "macro.dbt_external_tables.snowflake_create_empty_table": {"name": "snowflake_create_empty_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/snowflake/snowpipe/create_empty_table.sql", "original_file_path": "macros/plugins/snowflake/snowpipe/create_empty_table.sql", "unique_id": "macro.dbt_external_tables.snowflake_create_empty_table", "macro_sql": "{% macro snowflake_create_empty_table(source_node) %}\n\n {%- set columns = source_node.columns.values() %}\n\n create or replace table {{source(source_node.source_name, source_node.name)}} (\n {% if columns|length == 0 %}\n value variant,\n {% else -%}\n {%- for column in columns -%}\n {{column.name}} {{column.data_type}},\n {% endfor -%}\n {% endif %}\n metadata_filename varchar,\n metadata_file_row_number bigint,\n _dbt_copied_at timestamp\n );\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8919, "supported_languages": null}, "macro.dbt_external_tables.snowflake_create_snowpipe": {"name": "snowflake_create_snowpipe", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/snowflake/snowpipe/create_snowpipe.sql", "original_file_path": "macros/plugins/snowflake/snowpipe/create_snowpipe.sql", "unique_id": "macro.dbt_external_tables.snowflake_create_snowpipe", "macro_sql": "{% macro snowflake_create_snowpipe(source_node) %}\n\n {%- set external = source_node.external -%}\n {%- set snowpipe = external.snowpipe -%}\n\n{# https://docs.snowflake.com/en/sql-reference/sql/create-pipe.html #}\n create or replace pipe {{source(source_node.source_name, source_node.name)}}\n {% if snowpipe.auto_ingest -%} auto_ingest = {{snowpipe.auto_ingest}} {%- endif %}\n {% if snowpipe.aws_sns_topic -%} aws_sns_topic = '{{snowpipe.aws_sns_topic}}' {%- endif %}\n {% if snowpipe.integration -%} integration = '{{snowpipe.integration}}' {%- endif %}\n {% if snowpipe.error_integration -%} error_integration = '{{snowpipe.error_integration}}' {%- endif %}\n as {{ dbt_external_tables.snowflake_get_copy_sql(source_node) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.snowflake_get_copy_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.893756, "supported_languages": null}, "macro.dbt_external_tables.snowflake_get_copy_sql": {"name": "snowflake_get_copy_sql", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/snowflake/snowpipe/get_copy_sql.sql", "original_file_path": "macros/plugins/snowflake/snowpipe/get_copy_sql.sql", "unique_id": "macro.dbt_external_tables.snowflake_get_copy_sql", "macro_sql": "{% macro snowflake_get_copy_sql(source_node, explicit_transaction=false) %}\n{# This assumes you have already created an external stage #}\n\n {%- set columns = source_node.columns.values() -%}\n {%- set external = source_node.external -%}\n {%- set is_csv = dbt_external_tables.is_csv(external.file_format) %}\n {%- set copy_options = external.snowpipe.get('copy_options', none) -%}\n \n {%- if explicit_transaction -%} begin; {%- endif %}\n \n copy into {{source(source_node.source_name, source_node.name)}}\n from ( \n select\n {% if columns|length == 0 %}\n $1::variant as value,\n {% else -%}\n {%- for column in columns -%}\n {%- set col_expression -%}\n {%- if is_csv -%}nullif(${{loop.index}},''){# special case: get columns by ordinal position #}\n {%- else -%}nullif($1:{{column.name}},''){# standard behavior: get columns by name #}\n {%- endif -%}\n {%- endset -%}\n {{col_expression}}::{{column.data_type}} as {{column.name}},\n {% endfor -%}\n {% endif %}\n metadata$filename::varchar as metadata_filename,\n metadata$file_row_number::bigint as metadata_file_row_number,\n current_timestamp::timestamp as _dbt_copied_at\n from {{external.location}} {# stage #}\n )\n file_format = {{external.file_format}}\n {% if external.pattern -%} pattern = '{{external.pattern}}' {%- endif %}\n {% if copy_options %} {{copy_options}} {% endif %};\n \n {% if explicit_transaction -%} commit; {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.is_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8973272, "supported_languages": null}, "macro.dbt_external_tables.snowflake_refresh_snowpipe": {"name": "snowflake_refresh_snowpipe", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/snowflake/snowpipe/refresh_snowpipe.sql", "original_file_path": "macros/plugins/snowflake/snowpipe/refresh_snowpipe.sql", "unique_id": "macro.dbt_external_tables.snowflake_refresh_snowpipe", "macro_sql": "{% macro snowflake_refresh_snowpipe(source_node) %}\n\n {% set snowpipe = source_node.external.snowpipe %}\n {% set auto_ingest = snowpipe.get('auto_ingest', false) if snowpipe is mapping %}\n \n {% if auto_ingest is true %}\n \n {% do return([]) %}\n \n {% else %}\n \n {% set ddl %}\n alter pipe {{source(source_node.source_name, source_node.name)}} refresh\n {% endset %}\n \n {{ return([ddl]) }}\n \n {% endif %}\n \n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.8990493, "supported_languages": null}, "macro.dbt_external_tables.spark__create_external_table": {"name": "spark__create_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/spark/create_external_table.sql", "original_file_path": "macros/plugins/spark/create_external_table.sql", "unique_id": "macro.dbt_external_tables.spark__create_external_table", "macro_sql": "{% macro spark__create_external_table(source_node) %}\n\n {%- set columns = source_node.columns.values() -%}\n {%- set external = source_node.external -%}\n {%- set partitions = external.partitions -%}\n {%- set options = external.options -%}\n\n {%- set columns_and_partitions = columns | list -%}\n {%- if partitions -%}\n {%- for i in partitions -%}\n {%- if i.name not in columns_and_partitions | list | map(attribute='name') -%}\n {%- do columns_and_partitions.append(i) -%}\n {%- endif -%}\n {%- endfor -%}\n {%- endif -%}\n\n{# https://spark.apache.org/docs/latest/sql-data-sources-hive-tables.html #}\n create table {{source(source_node.source_name, source_node.name)}} \n {%- if columns | length > 0 %} (\n {% for column in columns_and_partitions %}\n {{column.name}} {{column.data_type}}\n {{- ',' if not loop.last -}}\n {% endfor %}\n ) {% endif -%}\n {% if external.using %} using {{external.using}} {%- endif %}\n {% if options -%} options (\n {%- for key, value in options.items() -%}\n '{{ key }}' = '{{value}}' {{- ', \\n' if not loop.last -}}\n {%- endfor -%}\n ) {%- endif %}\n {% if partitions -%} partitioned by (\n {%- for partition in partitions -%}\n {{partition.name}}{{', ' if not loop.last}}\n {%- endfor -%}\n ) {%- endif %}\n {% if external.row_format -%} row format {{external.row_format}} {%- endif %}\n {% if external.file_format -%} stored as {{external.file_format}} {%- endif %}\n {% if external.location -%} location '{{external.location}}' {%- endif %}\n {% if external.table_properties -%} tblproperties {{ external.table_properties }} {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.904263, "supported_languages": null}, "macro.dbt_external_tables.spark__get_external_build_plan": {"name": "spark__get_external_build_plan", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/spark/get_external_build_plan.sql", "original_file_path": "macros/plugins/spark/get_external_build_plan.sql", "unique_id": "macro.dbt_external_tables.spark__get_external_build_plan", "macro_sql": "{% macro spark__get_external_build_plan(source_node) %}\n\n {% set build_plan = [] %}\n\n {% set old_relation = adapter.get_relation(\n database = none,\n schema = source_node.schema,\n identifier = source_node.identifier\n ) %}\n\n {% set create_or_replace = (old_relation is none or var('ext_full_refresh', false)) %}\n\n {% if create_or_replace %}\n {% set build_plan = build_plan + [\n dbt_external_tables.create_external_schema(source_node),\n dbt_external_tables.dropif(source_node), \n dbt_external_tables.create_external_table(source_node)\n ] %}\n {% else %}\n {% set build_plan = build_plan + dbt_external_tables.refresh_external_table(source_node) %}\n {% endif %}\n\n {% set recover_partitions = dbt_external_tables.recover_partitions(source_node) %}\n {% if recover_partitions %}\n {% set build_plan = build_plan + [\n recover_partitions\n ] %}\n {% endif %}\n\n {% do return(build_plan) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.create_external_schema", "macro.dbt_external_tables.dropif", "macro.dbt_external_tables.create_external_table", "macro.dbt_external_tables.refresh_external_table", "macro.dbt_external_tables.recover_partitions"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9068751, "supported_languages": null}, "macro.dbt_external_tables.spark__refresh_external_table": {"name": "spark__refresh_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/spark/refresh_external_table.sql", "original_file_path": "macros/plugins/spark/refresh_external_table.sql", "unique_id": "macro.dbt_external_tables.spark__refresh_external_table", "macro_sql": "{% macro spark__refresh_external_table(source_node) %}\n \n {% set refresh %}\n refresh table {{source(source_node.source_name, source_node.name)}}\n {% endset %}\n \n {% do return([refresh]) %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9076602, "supported_languages": null}, "macro.dbt_external_tables.spark__dropif": {"name": "spark__dropif", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/spark/helpers/dropif.sql", "original_file_path": "macros/plugins/spark/helpers/dropif.sql", "unique_id": "macro.dbt_external_tables.spark__dropif", "macro_sql": "{% macro spark__dropif(node) %}\n \n {% set ddl %}\n drop table if exists {{source(node.source_name, node.name)}}\n {% endset %}\n \n {{return(ddl)}}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9083943, "supported_languages": null}, "macro.dbt_external_tables.spark__recover_partitions": {"name": "spark__recover_partitions", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/spark/helpers/recover_partitions.sql", "original_file_path": "macros/plugins/spark/helpers/recover_partitions.sql", "unique_id": "macro.dbt_external_tables.spark__recover_partitions", "macro_sql": "{% macro spark__recover_partitions(source_node) %}\n {# https://docs.databricks.com/sql/language-manual/sql-ref-syntax-ddl-alter-table.html #}\n\n {%- if source_node.external.partitions and source_node.external.using and source_node.external.using|lower != 'delta' -%}\n {% set ddl %}\n ALTER TABLE {{ source(source_node.source_name, source_node.name) }} RECOVER PARTITIONS\n {% endset %}\n {%- else -%}\n {% set ddl = none %}\n {%- endif -%}\n\n {{return(ddl)}}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9097795, "supported_languages": null}, "macro.dbt_external_tables.recover_partitions": {"name": "recover_partitions", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/spark/helpers/recover_partitions.sql", "original_file_path": "macros/plugins/spark/helpers/recover_partitions.sql", "unique_id": "macro.dbt_external_tables.recover_partitions", "macro_sql": "{% macro recover_partitions(source_node) %}\n {{ return(adapter.dispatch('recover_partitions', 'dbt_external_tables')(source_node)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.spark__recover_partitions"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9102774, "supported_languages": null}, "macro.dbt_external_tables.default__recover_partitions": {"name": "default__recover_partitions", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/spark/helpers/recover_partitions.sql", "original_file_path": "macros/plugins/spark/helpers/recover_partitions.sql", "unique_id": "macro.dbt_external_tables.default__recover_partitions", "macro_sql": "{% macro default__recover_partitions(source_node) %}\n /*{# \n We're dispatching this macro so that users can override it if required on other adapters\n but this will work for spark/databricks. \n #}*/\n\n {{ exceptions.raise_not_implemented('recover_partitions macro not implemented for adapter ' + adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9106898, "supported_languages": null}, "macro.dbt_external_tables.sqlserver__create_external_schema": {"name": "sqlserver__create_external_schema", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/sqlserver/create_external_schema.sql", "original_file_path": "macros/plugins/sqlserver/create_external_schema.sql", "unique_id": "macro.dbt_external_tables.sqlserver__create_external_schema", "macro_sql": "{% macro sqlserver__create_external_schema(source_node) %}\n {# https://learn.microsoft.com/en-us/sql/t-sql/statements/create-schema-transact-sql?view=sql-server-ver16 #}\n\n {% set ddl %}\n IF NOT EXISTS (SELECT * FROM sys.schemas WHERE name = '{{ source_node.schema }}')\n BEGIN\n EXEC('CREATE SCHEMA [{{ source_node.schema }}]')\n END \n {% endset %}\n\n {{return(ddl)}}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9114325, "supported_languages": null}, "macro.dbt_external_tables.sqlserver__create_external_table": {"name": "sqlserver__create_external_table", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/sqlserver/create_external_table.sql", "original_file_path": "macros/plugins/sqlserver/create_external_table.sql", "unique_id": "macro.dbt_external_tables.sqlserver__create_external_table", "macro_sql": "{% macro sqlserver__create_external_table(source_node) %}\n\n {%- set columns = source_node.columns.values() -%}\n {%- set external = source_node.external -%}\n\n {% if external.ansi_nulls is true -%} SET ANSI_NULLS ON; {%- endif %}\n {% if external.quoted_identifier is true -%} SET QUOTED_IDENTIFIER ON; {%- endif %}\n\n create external table {{source(source_node.source_name, source_node.name)}} (\n {% for column in columns %}\n {# TODO set nullity based on schema tests?? #}\n {%- set nullity = 'NOT NULL' if 'not_null' in columns.tests else 'NULL'-%}\n {{adapter.quote(column.name)}} {{column.data_type}} {{nullity}}\n {{- ',' if not loop.last -}}\n {% endfor %}\n )\n WITH (\n {# remove keys that are None (i.e. not defined for a given source) #}\n {%- for key, value in external.items() if value is not none and key not in ['ansi_nulls', 'quoted_identifier'] -%}\n {{key}} = \n {%- if key in [\"location\", \"schema_name\", \"object_name\"] -%}\n '{{value}}'\n {% elif key in [\"data_source\",\"file_format\"] -%}\n [{{value}}]\n {% else -%}\n {{value}}\n {%- endif -%}\n {{- ',' if not loop.last -}}\n {%- endfor -%}\n )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9149215, "supported_languages": null}, "macro.dbt_external_tables.sqlserver__get_external_build_plan": {"name": "sqlserver__get_external_build_plan", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/sqlserver/get_external_build_plan.sql", "original_file_path": "macros/plugins/sqlserver/get_external_build_plan.sql", "unique_id": "macro.dbt_external_tables.sqlserver__get_external_build_plan", "macro_sql": "{% macro sqlserver__get_external_build_plan(source_node) %}\n\n {% set build_plan = [] %}\n\n {% set old_relation = adapter.get_relation(\n database = source_node.database,\n schema = source_node.schema,\n identifier = source_node.identifier\n ) %}\n\n {% set create_or_replace = (old_relation is none or var('ext_full_refresh', false)) %}\n\n {% if create_or_replace %}\n {% set build_plan = build_plan + [ \n dbt_external_tables.create_external_schema(source_node),\n dbt_external_tables.dropif(source_node), \n dbt_external_tables.create_external_table(source_node)\n ] %}\n {% else %}\n {% set build_plan = build_plan + dbt_external_tables.refresh_external_table(source_node) %}\n {% endif %}\n {% do return(build_plan) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_external_tables.create_external_schema", "macro.dbt_external_tables.dropif", "macro.dbt_external_tables.create_external_table", "macro.dbt_external_tables.refresh_external_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9170306, "supported_languages": null}, "macro.dbt_external_tables.sqlserver__dropif": {"name": "sqlserver__dropif", "resource_type": "macro", "package_name": "dbt_external_tables", "path": "macros/plugins/sqlserver/helpers/dropif.sql", "original_file_path": "macros/plugins/sqlserver/helpers/dropif.sql", "unique_id": "macro.dbt_external_tables.sqlserver__dropif", "macro_sql": "{% macro sqlserver__dropif(node) %}\n \n {% set ddl %}\n if object_id ('{{source(node.source_name, node.name)}}') is not null\n begin\n drop external table {{source(node.source_name, node.name)}}\n end\n {% endset %}\n \n {{return(ddl)}}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9179387, "supported_languages": null}, "macro.dbt_unittest.assert_dict_equals": {"name": "assert_dict_equals", "resource_type": "macro", "package_name": "dbt_unittest", "path": "macros/assert_dict_equals.sql", "original_file_path": "macros/assert_dict_equals.sql", "unique_id": "macro.dbt_unittest.assert_dict_equals", "macro_sql": "{% macro assert_dict_equals(value, expected) %}\n {% if value is not mapping %}\n {% do exceptions.raise_compiler_error(\"FAILED: 1st argument \" ~ value ~ \" is not a mapping.\") %}\n {% endif %}\n {% if expected is not mapping %}\n {% do exceptions.raise_compiler_error(\"FAILED: 2nd argument \" ~ expected ~ \" is not a mapping.\") %}\n {% endif %}\n\n {% for k, v in value.items() %}\n {% if k not in expected %}\n {% do exceptions.raise_compiler_error(\"FAILED: key \" ~ k ~ \" of 1st argument is not in \" ~ expected ~ \".\") %}\n {% endif %}\n\n {% if v is none and expected[k] is not none %}\n {% do exceptions.raise_compiler_error(\"FAILED: values on the key \" ~ k ~ \" are not same.\") %}\n {% endif %}\n\n {% if v != expected[k] %}\n {% do exceptions.raise_compiler_error(\"FAILED: values on the key \" ~ k ~ \" are not same.\") %}\n {% endif %}\n {% endfor %}\n\n {% for k, v in expected.items() %}\n {% if k not in value %}\n {% do exceptions.raise_compiler_error(\"FAILED: key \" ~ k ~ \" of 2nd argument is not in \" ~ value ~ \".\") %}\n {% endif %}\n\n {% if v is none and value[k] is not none %}\n {% do exceptions.raise_compiler_error(\"FAILED: values on the key \" ~ k ~ \" are not same.\") %}\n {% endif %}\n\n {% if v != value[k] %}\n {% do exceptions.raise_compiler_error(\"FAILED: values on the key \" ~ k ~ \" are not same.\") %}\n {% endif %}\n {% endfor %}\n\n {% do log(\"SUCCESS\") %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9227562, "supported_languages": null}, "macro.dbt_unittest.assert_equals": {"name": "assert_equals", "resource_type": "macro", "package_name": "dbt_unittest", "path": "macros/assert_equals.sql", "original_file_path": "macros/assert_equals.sql", "unique_id": "macro.dbt_unittest.assert_equals", "macro_sql": "{% macro assert_equals(value, expected) %}\n {% if value == expected %}\n {% do log(\"SUCCESS\") %}\n {% else %}\n {% do exceptions.raise_compiler_error(\"FAILED: \" ~ value ~ \" is not equal to \" ~ expected ~ \".\") %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9237366, "supported_languages": null}, "macro.dbt_unittest.assert_false": {"name": "assert_false", "resource_type": "macro", "package_name": "dbt_unittest", "path": "macros/assert_false.sql", "original_file_path": "macros/assert_false.sql", "unique_id": "macro.dbt_unittest.assert_false", "macro_sql": "{% macro assert_false(value) %}\n {% if value is not boolean %}\n {% do exceptions.raise_compiler_error(\"FAILED: \" ~ value ~ \" is not boolean.\") %}\n {% endif %}\n\n {% if value is false %}\n {% do log(\"SUCCESS\") %}\n {% else %}\n {% do exceptions.raise_compiler_error(\"FAILED: value \" ~ value ~ \" is not false.\") %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9249566, "supported_languages": null}, "macro.dbt_unittest.assert_in": {"name": "assert_in", "resource_type": "macro", "package_name": "dbt_unittest", "path": "macros/assert_in.sql", "original_file_path": "macros/assert_in.sql", "unique_id": "macro.dbt_unittest.assert_in", "macro_sql": "{% macro assert_in(value, expected) %}\n {% if value in expected %}\n {% do log(\"SUCCESS\") %}\n {% else %}\n {% do exceptions.raise_compiler_error(\"FAILED: value \" ~ value ~ \" is not in \" ~ expected ~ \".\") %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9258928, "supported_languages": null}, "macro.dbt_unittest.assert_is_none": {"name": "assert_is_none", "resource_type": "macro", "package_name": "dbt_unittest", "path": "macros/assert_is_none.sql", "original_file_path": "macros/assert_is_none.sql", "unique_id": "macro.dbt_unittest.assert_is_none", "macro_sql": "{% macro assert_is_none(value) %}\n {% if value is none %}\n {% do log(\"SUCCESS\") %}\n {% else %}\n {% do exceptions.raise_compiler_error(\"FAILED: value \" ~ value ~ \" is not none.\") %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9267251, "supported_languages": null}, "macro.dbt_unittest.assert_is_not_none": {"name": "assert_is_not_none", "resource_type": "macro", "package_name": "dbt_unittest", "path": "macros/assert_is_not_none.sql", "original_file_path": "macros/assert_is_not_none.sql", "unique_id": "macro.dbt_unittest.assert_is_not_none", "macro_sql": "{% macro assert_is_not_none(value) %}\n {% if value is not none %}\n {% do log(\"SUCCESS\") %}\n {% else %}\n {% do exceptions.raise_compiler_error(\"FAILED: value \" ~ value ~ \" is none.\") %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9275687, "supported_languages": null}, "macro.dbt_unittest.assert_list_equals": {"name": "assert_list_equals", "resource_type": "macro", "package_name": "dbt_unittest", "path": "macros/assert_list_equals.sql", "original_file_path": "macros/assert_list_equals.sql", "unique_id": "macro.dbt_unittest.assert_list_equals", "macro_sql": "{% macro assert_list_equals(value, expected) %}\n {% if value is not iterable %}\n {% do exceptions.raise_compiler_error(\"FAILED: 1st argument \" ~ value ~ \" is not iterable.\") %}\n {% endif %}\n {% if expected is not iterable %}\n {% do exceptions.raise_compiler_error(\"FAILED: 2nd argument \" ~ expected ~ \" is not iterable.\") %}\n {% endif %}\n\n {% set length_of_1st_arg = value | length %}\n {% set length_of_2nd_arg = expected | length %}\n\n {% if length_of_1st_arg != length_of_2nd_arg %}\n {% do exceptions.raise_compiler_error(\"FAILED: lengths of the two are not equal.\") %}\n {% endif %}\n\n {% for i in range(length_of_1st_arg) %}\n {% if value[i] != expected[i] %}\n {% do exceptions.raise_compiler_error(\"FAILED: values at the index {{ i }} is not equal.\") %}\n {% endif %}\n {% endfor %}\n\n {% do log(\"SUCCESS\") %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.930283, "supported_languages": null}, "macro.dbt_unittest.assert_not_equals": {"name": "assert_not_equals", "resource_type": "macro", "package_name": "dbt_unittest", "path": "macros/assert_not_equals.sql", "original_file_path": "macros/assert_not_equals.sql", "unique_id": "macro.dbt_unittest.assert_not_equals", "macro_sql": "{% macro assert_not_equals(value, expected) %}\n {% if value != expected %}\n {% do log(\"SUCCESS\") %}\n {% else %}\n {% do exceptions.raise_compiler_error(\"FAILED: \" ~ value ~ \" is equal to \" ~ expected ~ \".\") %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9312797, "supported_languages": null}, "macro.dbt_unittest.assert_not_in": {"name": "assert_not_in", "resource_type": "macro", "package_name": "dbt_unittest", "path": "macros/assert_not_in.sql", "original_file_path": "macros/assert_not_in.sql", "unique_id": "macro.dbt_unittest.assert_not_in", "macro_sql": "{% macro assert_not_in(value, expected) %}\n {% if value not in expected %}\n {% do log(\"SUCCESS\") %}\n {% else %}\n {% do exceptions.raise_compiler_error(\"FAILED: value \" ~ value ~ \" is in \" ~ expected ~ \".\") %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.93222, "supported_languages": null}, "macro.dbt_unittest.assert_true": {"name": "assert_true", "resource_type": "macro", "package_name": "dbt_unittest", "path": "macros/assert_true.sql", "original_file_path": "macros/assert_true.sql", "unique_id": "macro.dbt_unittest.assert_true", "macro_sql": "{% macro assert_true(value) %}\n {% if value is not boolean %}\n {% do exceptions.raise_compiler_error(\"FAILED: \" ~ value ~ \" is not boolean.\") %}\n {% endif %}\n\n {% if value is true %}\n {% do log(\"SUCCESS\") %}\n {% else %}\n {% do exceptions.raise_compiler_error(\"FAILED: value \" ~ value ~ \" is not true.\") %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.933435, "supported_languages": null}, "macro.dbt_utils.array_append": {"name": "array_append", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_append.sql", "original_file_path": "macros/cross_db_utils/array_append.sql", "unique_id": "macro.dbt_utils.array_append", "macro_sql": "{% macro array_append(array, new_element) -%}\n {% do dbt_utils.xdb_deprecation_warning_without_replacement('array_append', model.package_name, model.name) %}\n {{ return(adapter.dispatch('array_append', 'dbt_utils')(array, new_element)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning_without_replacement", "macro.dbt_utils.default__array_append"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9344754, "supported_languages": null}, "macro.dbt_utils.default__array_append": {"name": "default__array_append", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_append.sql", "original_file_path": "macros/cross_db_utils/array_append.sql", "unique_id": "macro.dbt_utils.default__array_append", "macro_sql": "{% macro default__array_append(array, new_element) -%}\n array_append({{ array }}, {{ new_element }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9347847, "supported_languages": null}, "macro.dbt_utils.bigquery__array_append": {"name": "bigquery__array_append", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_append.sql", "original_file_path": "macros/cross_db_utils/array_append.sql", "unique_id": "macro.dbt_utils.bigquery__array_append", "macro_sql": "{% macro bigquery__array_append(array, new_element) -%}\n {{ dbt_utils.array_concat(array, dbt_utils.array_construct([new_element])) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.array_concat", "macro.dbt_utils.array_construct"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9352474, "supported_languages": null}, "macro.dbt_utils.redshift__array_append": {"name": "redshift__array_append", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_append.sql", "original_file_path": "macros/cross_db_utils/array_append.sql", "unique_id": "macro.dbt_utils.redshift__array_append", "macro_sql": "{% macro redshift__array_append(array, new_element) -%}\n {{ dbt_utils.array_concat(array, dbt_utils.array_construct([new_element])) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.array_concat", "macro.dbt_utils.array_construct"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9356668, "supported_languages": null}, "macro.dbt_utils.array_concat": {"name": "array_concat", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_concat.sql", "original_file_path": "macros/cross_db_utils/array_concat.sql", "unique_id": "macro.dbt_utils.array_concat", "macro_sql": "{% macro array_concat(array_1, array_2) -%}\n {% do dbt_utils.xdb_deprecation_warning_without_replacement('array_concat', model.package_name, model.name) %}\n {{ return(adapter.dispatch('array_concat', 'dbt_utils')(array_1, array_2)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning_without_replacement", "macro.dbt_utils.default__array_concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9367187, "supported_languages": null}, "macro.dbt_utils.default__array_concat": {"name": "default__array_concat", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_concat.sql", "original_file_path": "macros/cross_db_utils/array_concat.sql", "unique_id": "macro.dbt_utils.default__array_concat", "macro_sql": "{% macro default__array_concat(array_1, array_2) -%}\n array_cat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.937026, "supported_languages": null}, "macro.dbt_utils.bigquery__array_concat": {"name": "bigquery__array_concat", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_concat.sql", "original_file_path": "macros/cross_db_utils/array_concat.sql", "unique_id": "macro.dbt_utils.bigquery__array_concat", "macro_sql": "{% macro bigquery__array_concat(array_1, array_2) -%}\n array_concat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9373636, "supported_languages": null}, "macro.dbt_utils.redshift__array_concat": {"name": "redshift__array_concat", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_concat.sql", "original_file_path": "macros/cross_db_utils/array_concat.sql", "unique_id": "macro.dbt_utils.redshift__array_concat", "macro_sql": "{% macro redshift__array_concat(array_1, array_2) -%}\n array_concat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.937784, "supported_languages": null}, "macro.dbt_utils.array_construct": {"name": "array_construct", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_construct.sql", "original_file_path": "macros/cross_db_utils/array_construct.sql", "unique_id": "macro.dbt_utils.array_construct", "macro_sql": "{% macro array_construct(inputs = [], data_type = api.Column.translate_type('integer')) -%}\n {% do dbt_utils.xdb_deprecation_warning_without_replacement('array_construct', model.package_name, model.name) %}\n {{ return(adapter.dispatch('array_construct', 'dbt_utils')(inputs, data_type)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning_without_replacement", "macro.dbt_utils.default__array_construct"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9391232, "supported_languages": null}, "macro.dbt_utils.default__array_construct": {"name": "default__array_construct", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_construct.sql", "original_file_path": "macros/cross_db_utils/array_construct.sql", "unique_id": "macro.dbt_utils.default__array_construct", "macro_sql": "{% macro default__array_construct(inputs, data_type) -%}\n {% if inputs|length > 0 %}\n array[ {{ inputs|join(' , ') }} ]\n {% else %}\n array[]::{{data_type}}[]\n {% endif %}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9396782, "supported_languages": null}, "macro.dbt_utils.snowflake__array_construct": {"name": "snowflake__array_construct", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_construct.sql", "original_file_path": "macros/cross_db_utils/array_construct.sql", "unique_id": "macro.dbt_utils.snowflake__array_construct", "macro_sql": "{% macro snowflake__array_construct(inputs, data_type) -%}\n array_construct( {{ inputs|join(' , ') }} )\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9399972, "supported_languages": null}, "macro.dbt_utils.redshift__array_construct": {"name": "redshift__array_construct", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_construct.sql", "original_file_path": "macros/cross_db_utils/array_construct.sql", "unique_id": "macro.dbt_utils.redshift__array_construct", "macro_sql": "{% macro redshift__array_construct(inputs, data_type) -%}\n array( {{ inputs|join(' , ') }} )\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.940392, "supported_languages": null}, "macro.dbt_utils.bigquery__array_construct": {"name": "bigquery__array_construct", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/array_construct.sql", "original_file_path": "macros/cross_db_utils/array_construct.sql", "unique_id": "macro.dbt_utils.bigquery__array_construct", "macro_sql": "{% macro bigquery__array_construct(inputs, data_type) -%}\n [ {{ inputs|join(' , ') }} ]\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9409351, "supported_languages": null}, "macro.dbt_utils.cast_array_to_string": {"name": "cast_array_to_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/cast_array_to_string.sql", "original_file_path": "macros/cross_db_utils/cast_array_to_string.sql", "unique_id": "macro.dbt_utils.cast_array_to_string", "macro_sql": "{% macro cast_array_to_string(array) %}\n {% do dbt_utils.xdb_deprecation_warning_without_replacement('cast_array_to_string', model.package_name, model.name) %}\n {{ adapter.dispatch('cast_array_to_string', 'dbt_utils') (array) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning_without_replacement", "macro.dbt_utils.default__cast_array_to_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.942324, "supported_languages": null}, "macro.dbt_utils.default__cast_array_to_string": {"name": "default__cast_array_to_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/cast_array_to_string.sql", "original_file_path": "macros/cross_db_utils/cast_array_to_string.sql", "unique_id": "macro.dbt_utils.default__cast_array_to_string", "macro_sql": "{% macro default__cast_array_to_string(array) %}\n cast({{ array }} as {{ type_string() }})\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9426885, "supported_languages": null}, "macro.dbt_utils.postgres__cast_array_to_string": {"name": "postgres__cast_array_to_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/cast_array_to_string.sql", "original_file_path": "macros/cross_db_utils/cast_array_to_string.sql", "unique_id": "macro.dbt_utils.postgres__cast_array_to_string", "macro_sql": "{% macro postgres__cast_array_to_string(array) %}\n {%- set array_as_string -%}cast({{ array }} as {{ type_string() }}){%- endset -%}\n {{ replace(replace(array_as_string,\"'}'\",\"']'\"),\"'{'\",\"'['\") }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.type_string", "macro.dbt_utils.replace"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9437096, "supported_languages": null}, "macro.dbt_utils.redshift__cast_array_to_string": {"name": "redshift__cast_array_to_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/cast_array_to_string.sql", "original_file_path": "macros/cross_db_utils/cast_array_to_string.sql", "unique_id": "macro.dbt_utils.redshift__cast_array_to_string", "macro_sql": "{% macro redshift__cast_array_to_string(array) %}\n cast({{ array }} as {{ type_string() }})\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9442682, "supported_languages": null}, "macro.dbt_utils.bigquery__cast_array_to_string": {"name": "bigquery__cast_array_to_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/cast_array_to_string.sql", "original_file_path": "macros/cross_db_utils/cast_array_to_string.sql", "unique_id": "macro.dbt_utils.bigquery__cast_array_to_string", "macro_sql": "{% macro bigquery__cast_array_to_string(array) %}\n '['||(select string_agg(cast(element as string), ',') from unnest({{ array }}) element)||']'\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9445913, "supported_languages": null}, "macro.dbt_utils.current_timestamp": {"name": "current_timestamp", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "unique_id": "macro.dbt_utils.current_timestamp", "macro_sql": "{% macro current_timestamp() -%}\n {% do dbt_utils.xdb_deprecation_warning_without_replacement('current_timestamp', model.package_name, model.name) %}\n {{ return(adapter.dispatch('current_timestamp', 'dbt_utils')()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning_without_replacement", "macro.spark_utils.spark__current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.946252, "supported_languages": null}, "macro.dbt_utils.default__current_timestamp": {"name": "default__current_timestamp", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "unique_id": "macro.dbt_utils.default__current_timestamp", "macro_sql": "{% macro default__current_timestamp() %}\n current_timestamp::{{ type_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9465592, "supported_languages": null}, "macro.dbt_utils.redshift__current_timestamp": {"name": "redshift__current_timestamp", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "unique_id": "macro.dbt_utils.redshift__current_timestamp", "macro_sql": "{% macro redshift__current_timestamp() %}\n getdate()\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9467354, "supported_languages": null}, "macro.dbt_utils.bigquery__current_timestamp": {"name": "bigquery__current_timestamp", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "unique_id": "macro.dbt_utils.bigquery__current_timestamp", "macro_sql": "{% macro bigquery__current_timestamp() %}\n current_timestamp\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9469357, "supported_languages": null}, "macro.dbt_utils.current_timestamp_in_utc": {"name": "current_timestamp_in_utc", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "unique_id": "macro.dbt_utils.current_timestamp_in_utc", "macro_sql": "{% macro current_timestamp_in_utc() -%}\n {% do dbt_utils.xdb_deprecation_warning_without_replacement('current_timestamp_in_utc', model.package_name, model.name) %}\n {{ return(adapter.dispatch('current_timestamp_in_utc', 'dbt_utils')()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning_without_replacement", "macro.spark_utils.spark__current_timestamp_in_utc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9476948, "supported_languages": null}, "macro.dbt_utils.default__current_timestamp_in_utc": {"name": "default__current_timestamp_in_utc", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "unique_id": "macro.dbt_utils.default__current_timestamp_in_utc", "macro_sql": "{% macro default__current_timestamp_in_utc() %}\n {{ dbt_utils.current_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9481905, "supported_languages": null}, "macro.dbt_utils.snowflake__current_timestamp_in_utc": {"name": "snowflake__current_timestamp_in_utc", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "unique_id": "macro.dbt_utils.snowflake__current_timestamp_in_utc", "macro_sql": "{% macro snowflake__current_timestamp_in_utc() %}\n convert_timezone('UTC', {{ dbt_utils.current_timestamp() }})::{{ type_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.current_timestamp", "macro.dbt_utils.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.94861, "supported_languages": null}, "macro.dbt_utils.postgres__current_timestamp_in_utc": {"name": "postgres__current_timestamp_in_utc", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "unique_id": "macro.dbt_utils.postgres__current_timestamp_in_utc", "macro_sql": "{% macro postgres__current_timestamp_in_utc() %}\n (current_timestamp at time zone 'utc')::{{ type_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9489164, "supported_languages": null}, "macro.dbt_utils.redshift__current_timestamp_in_utc": {"name": "redshift__current_timestamp_in_utc", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "unique_id": "macro.dbt_utils.redshift__current_timestamp_in_utc", "macro_sql": "{% macro redshift__current_timestamp_in_utc() %}\n {{ return(dbt_utils.default__current_timestamp_in_utc()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__current_timestamp_in_utc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9494462, "supported_languages": null}, "macro.dbt_utils.any_value": {"name": "any_value", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/any_value.sql", "original_file_path": "macros/cross_db_utils/deprecated/any_value.sql", "unique_id": "macro.dbt_utils.any_value", "macro_sql": "{% macro any_value(expression) -%}\n {{ return(adapter.dispatch('any_value', 'dbt_utils') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__any_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9501996, "supported_languages": null}, "macro.dbt_utils.default__any_value": {"name": "default__any_value", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/any_value.sql", "original_file_path": "macros/cross_db_utils/deprecated/any_value.sql", "unique_id": "macro.dbt_utils.default__any_value", "macro_sql": "{% macro default__any_value(expression) -%}\n {% do dbt_utils.xdb_deprecation_warning('any_value', model.package_name, model.name) %}\n {{ return(adapter.dispatch('any_value', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.any_value", "macro.dbt_spark.spark__any_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.951286, "supported_languages": null}, "macro.dbt_utils.bool_or": {"name": "bool_or", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/bool_or.sql", "original_file_path": "macros/cross_db_utils/deprecated/bool_or.sql", "unique_id": "macro.dbt_utils.bool_or", "macro_sql": "{% macro bool_or(expression) -%}\n {{ return(adapter.dispatch('bool_or', 'dbt_utils') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__bool_or"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9529839, "supported_languages": null}, "macro.dbt_utils.default__bool_or": {"name": "default__bool_or", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/bool_or.sql", "original_file_path": "macros/cross_db_utils/deprecated/bool_or.sql", "unique_id": "macro.dbt_utils.default__bool_or", "macro_sql": "{% macro default__bool_or(expression) -%}\n {% do dbt_utils.xdb_deprecation_warning('bool_or', model.package_name, model.name) %}\n {{ return(adapter.dispatch('bool_or', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.bool_or", "macro.dbt_spark.spark__bool_or"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9538267, "supported_languages": null}, "macro.dbt_utils.cast_bool_to_text": {"name": "cast_bool_to_text", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/cast_bool_to_text.sql", "original_file_path": "macros/cross_db_utils/deprecated/cast_bool_to_text.sql", "unique_id": "macro.dbt_utils.cast_bool_to_text", "macro_sql": "{% macro cast_bool_to_text(field) %}\n {{ adapter.dispatch('cast_bool_to_text', 'dbt_utils') (field) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9544919, "supported_languages": null}, "macro.dbt_utils.default__cast_bool_to_text": {"name": "default__cast_bool_to_text", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/cast_bool_to_text.sql", "original_file_path": "macros/cross_db_utils/deprecated/cast_bool_to_text.sql", "unique_id": "macro.dbt_utils.default__cast_bool_to_text", "macro_sql": "{% macro default__cast_bool_to_text(field) %}\n {% do dbt_utils.xdb_deprecation_warning('cast_bool_to_text', model.package_name, model.name) %}\n {{ adapter.dispatch('cast_bool_to_text', 'dbt') (field) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.cast_bool_to_text", "macro.dbt.default__cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.955128, "supported_languages": null}, "macro.dbt_utils.concat": {"name": "concat", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/concat.sql", "original_file_path": "macros/cross_db_utils/deprecated/concat.sql", "unique_id": "macro.dbt_utils.concat", "macro_sql": "{% macro concat(fields) -%}\n {{ return(adapter.dispatch('concat', 'dbt_utils')(fields)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9557304, "supported_languages": null}, "macro.dbt_utils.default__concat": {"name": "default__concat", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/concat.sql", "original_file_path": "macros/cross_db_utils/deprecated/concat.sql", "unique_id": "macro.dbt_utils.default__concat", "macro_sql": "{% macro default__concat(fields) -%}\n {% do dbt_utils.xdb_deprecation_warning('concat', model.package_name, model.name) %}\n {{ return(adapter.dispatch('concat', 'dbt')(fields)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.concat", "macro.dbt_spark.spark__concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9563887, "supported_languages": null}, "macro.dbt_utils.type_string": {"name": "type_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.type_string", "macro_sql": "\n\n{%- macro type_string() -%}\n {{ return(adapter.dispatch('type_string', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.default__type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9577186, "supported_languages": null}, "macro.dbt_utils.default__type_string": {"name": "default__type_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.default__type_string", "macro_sql": "{% macro default__type_string() %}\n {% do dbt_utils.xdb_deprecation_warning('type_string', model.package_name, model.name) %}\n {{ return(adapter.dispatch('type_string', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.type_string", "macro.dbt.default__type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.958359, "supported_languages": null}, "macro.dbt_utils.type_timestamp": {"name": "type_timestamp", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.type_timestamp", "macro_sql": "\n\n{%- macro type_timestamp() -%}\n {{ return(adapter.dispatch('type_timestamp', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.default__type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9587264, "supported_languages": null}, "macro.dbt_utils.default__type_timestamp": {"name": "default__type_timestamp", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.default__type_timestamp", "macro_sql": "{% macro default__type_timestamp() %}\n {% do dbt_utils.xdb_deprecation_warning('type_timestamp', model.package_name, model.name) %}\n {{ return(adapter.dispatch('type_timestamp', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.type_timestamp", "macro.dbt.default__type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9593592, "supported_languages": null}, "macro.dbt_utils.type_float": {"name": "type_float", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.type_float", "macro_sql": "\n\n{%- macro type_float() -%}\n {{ return(adapter.dispatch('type_float', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.default__type_float"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9597435, "supported_languages": null}, "macro.dbt_utils.default__type_float": {"name": "default__type_float", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.default__type_float", "macro_sql": "{% macro default__type_float() %}\n {% do dbt_utils.xdb_deprecation_warning('type_float', model.package_name, model.name) %}\n {{ return(adapter.dispatch('type_float', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.type_float", "macro.dbt.default__type_float"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9604, "supported_languages": null}, "macro.dbt_utils.type_numeric": {"name": "type_numeric", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.type_numeric", "macro_sql": "\n\n{%- macro type_numeric() -%}\n {{ return(adapter.dispatch('type_numeric', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.spark_utils.spark__type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.960767, "supported_languages": null}, "macro.dbt_utils.default__type_numeric": {"name": "default__type_numeric", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.default__type_numeric", "macro_sql": "{% macro default__type_numeric() %}\n {% do dbt_utils.xdb_deprecation_warning('type_numeric', model.package_name, model.name) %}\n {{ return(adapter.dispatch('type_numeric', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.type_numeric", "macro.dbt.default__type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9614305, "supported_languages": null}, "macro.dbt_utils.type_bigint": {"name": "type_bigint", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.type_bigint", "macro_sql": "\n\n{%- macro type_bigint() -%}\n {{ return(adapter.dispatch('type_bigint', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.default__type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9618275, "supported_languages": null}, "macro.dbt_utils.default__type_bigint": {"name": "default__type_bigint", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.default__type_bigint", "macro_sql": "{% macro default__type_bigint() %}\n {% do dbt_utils.xdb_deprecation_warning('type_bigint', model.package_name, model.name) %}\n {{ return(adapter.dispatch('type_bigint', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.type_bigint", "macro.dbt.default__type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9628153, "supported_languages": null}, "macro.dbt_utils.type_int": {"name": "type_int", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.type_int", "macro_sql": "\n\n{%- macro type_int() -%}\n {{ return(adapter.dispatch('type_int', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.default__type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9631798, "supported_languages": null}, "macro.dbt_utils.default__type_int": {"name": "default__type_int", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datatypes.sql", "original_file_path": "macros/cross_db_utils/deprecated/datatypes.sql", "unique_id": "macro.dbt_utils.default__type_int", "macro_sql": "{% macro default__type_int() %}\n {% do dbt_utils.xdb_deprecation_warning('type_int', model.package_name, model.name) %}\n {{ return(adapter.dispatch('type_int', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.type_int", "macro.dbt.default__type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9638152, "supported_languages": null}, "macro.dbt_utils.date_trunc": {"name": "date_trunc", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/date_trunc.sql", "original_file_path": "macros/cross_db_utils/deprecated/date_trunc.sql", "unique_id": "macro.dbt_utils.date_trunc", "macro_sql": "{% macro date_trunc(datepart, date) -%}\n {{ return(adapter.dispatch('date_trunc', 'dbt_utils') (datepart, date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9645007, "supported_languages": null}, "macro.dbt_utils.default__date_trunc": {"name": "default__date_trunc", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/date_trunc.sql", "original_file_path": "macros/cross_db_utils/deprecated/date_trunc.sql", "unique_id": "macro.dbt_utils.default__date_trunc", "macro_sql": "{% macro default__date_trunc(datepart, date) -%}\n {% do dbt_utils.xdb_deprecation_warning('date_trunc', model.package_name, model.name) %}\n {{ return(adapter.dispatch('date_trunc', 'dbt') (datepart, date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.date_trunc", "macro.dbt.default__date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9651845, "supported_languages": null}, "macro.dbt_utils.dateadd": {"name": "dateadd", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/dateadd.sql", "original_file_path": "macros/cross_db_utils/deprecated/dateadd.sql", "unique_id": "macro.dbt_utils.dateadd", "macro_sql": "{% macro dateadd(datepart, interval, from_date_or_timestamp) %}\n {{ return(adapter.dispatch('dateadd', 'dbt_utils')(datepart, interval, from_date_or_timestamp)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9660375, "supported_languages": null}, "macro.dbt_utils.default__dateadd": {"name": "default__dateadd", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/dateadd.sql", "original_file_path": "macros/cross_db_utils/deprecated/dateadd.sql", "unique_id": "macro.dbt_utils.default__dateadd", "macro_sql": "{% macro default__dateadd(datepart, interval, from_date_or_timestamp) %}\n {% do dbt_utils.xdb_deprecation_warning('dateadd', model.package_name, model.name) %}\n {{ return(adapter.dispatch('dateadd', 'dbt')(datepart, interval, from_date_or_timestamp)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.dateadd", "macro.dbt_spark.spark__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9668326, "supported_languages": null}, "macro.dbt_utils.datediff": {"name": "datediff", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datediff.sql", "original_file_path": "macros/cross_db_utils/deprecated/datediff.sql", "unique_id": "macro.dbt_utils.datediff", "macro_sql": "{% macro datediff(first_date, second_date, datepart) %}\n {{ return(adapter.dispatch('datediff', 'dbt_utils')(first_date, second_date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9676142, "supported_languages": null}, "macro.dbt_utils.default__datediff": {"name": "default__datediff", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/datediff.sql", "original_file_path": "macros/cross_db_utils/deprecated/datediff.sql", "unique_id": "macro.dbt_utils.default__datediff", "macro_sql": "{% macro default__datediff(first_date, second_date, datepart) %}\n {% do dbt_utils.xdb_deprecation_warning('datediff', model.package_name, model.name) %}\n {{ return(adapter.dispatch('datediff', 'dbt')(first_date, second_date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.datediff", "macro.dbt_spark.spark__datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9684472, "supported_languages": null}, "macro.dbt_utils.escape_single_quotes": {"name": "escape_single_quotes", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/escape_single_quotes.sql", "original_file_path": "macros/cross_db_utils/deprecated/escape_single_quotes.sql", "unique_id": "macro.dbt_utils.escape_single_quotes", "macro_sql": "{% macro escape_single_quotes(expression) %}\n {{ return(adapter.dispatch('escape_single_quotes', 'dbt_utils') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__escape_single_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9690976, "supported_languages": null}, "macro.dbt_utils.default__escape_single_quotes": {"name": "default__escape_single_quotes", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/escape_single_quotes.sql", "original_file_path": "macros/cross_db_utils/deprecated/escape_single_quotes.sql", "unique_id": "macro.dbt_utils.default__escape_single_quotes", "macro_sql": "{% macro default__escape_single_quotes(expression) %}\n {% do dbt_utils.xdb_deprecation_warning('escape_single_quotes', model.package_name, model.name) %}\n {{ return(adapter.dispatch('escape_single_quotes', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.escape_single_quotes", "macro.dbt_spark.spark__escape_single_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9697704, "supported_languages": null}, "macro.dbt_utils.except": {"name": "except", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/except.sql", "original_file_path": "macros/cross_db_utils/deprecated/except.sql", "unique_id": "macro.dbt_utils.except", "macro_sql": "{% macro except() %}\n {{ return(adapter.dispatch('except', 'dbt_utils')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9703507, "supported_languages": null}, "macro.dbt_utils.default__except": {"name": "default__except", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/except.sql", "original_file_path": "macros/cross_db_utils/deprecated/except.sql", "unique_id": "macro.dbt_utils.default__except", "macro_sql": "{% macro default__except() %}\n {% do dbt_utils.xdb_deprecation_warning('except', model.package_name, model.name) %}\n {{ return(adapter.dispatch('except', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.except", "macro.dbt.default__except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9709353, "supported_languages": null}, "macro.dbt_utils.hash": {"name": "hash", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/hash.sql", "original_file_path": "macros/cross_db_utils/deprecated/hash.sql", "unique_id": "macro.dbt_utils.hash", "macro_sql": "{% macro hash(field) -%}\n {{ return(adapter.dispatch('hash', 'dbt_utils') (field)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__hash"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.971555, "supported_languages": null}, "macro.dbt_utils.default__hash": {"name": "default__hash", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/hash.sql", "original_file_path": "macros/cross_db_utils/deprecated/hash.sql", "unique_id": "macro.dbt_utils.default__hash", "macro_sql": "{% macro default__hash(field) -%}\n {% do dbt_utils.xdb_deprecation_warning('hash', model.package_name, model.name) %}\n {{ return(adapter.dispatch('hash', 'dbt') (field)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.hash", "macro.dbt.default__hash"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9722047, "supported_languages": null}, "macro.dbt_utils.identifier": {"name": "identifier", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/identifier.sql", "original_file_path": "macros/cross_db_utils/deprecated/identifier.sql", "unique_id": "macro.dbt_utils.identifier", "macro_sql": "{% macro identifier(value) %}\t\n {%- set error_message = '\n Warning: the `identifier` macro is no longer supported and will be deprecated in a future release of dbt-utils. \\\n Use `adapter.quote` instead. The {}.{} model triggered this warning. \\\n '.format(model.package_name, model.name) -%}\n {%- do exceptions.warn(error_message) -%}\n {{ return(adapter.dispatch('identifier', 'dbt_utils') (value)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__identifier"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9731863, "supported_languages": null}, "macro.dbt_utils.default__identifier": {"name": "default__identifier", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/identifier.sql", "original_file_path": "macros/cross_db_utils/deprecated/identifier.sql", "unique_id": "macro.dbt_utils.default__identifier", "macro_sql": "{% macro default__identifier(value) -%}\t\n \"{{ value }}\"\t\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9734273, "supported_languages": null}, "macro.dbt_utils.bigquery__identifier": {"name": "bigquery__identifier", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/identifier.sql", "original_file_path": "macros/cross_db_utils/deprecated/identifier.sql", "unique_id": "macro.dbt_utils.bigquery__identifier", "macro_sql": "{% macro bigquery__identifier(value) -%}\t\n `{{ value }}`\t\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.973669, "supported_languages": null}, "macro.dbt_utils.intersect": {"name": "intersect", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/intersect.sql", "original_file_path": "macros/cross_db_utils/deprecated/intersect.sql", "unique_id": "macro.dbt_utils.intersect", "macro_sql": "{% macro intersect() %}\n {{ return(adapter.dispatch('intersect', 'dbt_utils')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__intersect"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9742627, "supported_languages": null}, "macro.dbt_utils.default__intersect": {"name": "default__intersect", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/intersect.sql", "original_file_path": "macros/cross_db_utils/deprecated/intersect.sql", "unique_id": "macro.dbt_utils.default__intersect", "macro_sql": "{% macro default__intersect() %}\n {% do dbt_utils.xdb_deprecation_warning('intersect', model.package_name, model.name) %}\n {{ return(adapter.dispatch('intersect', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.intersect", "macro.dbt.default__intersect"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.974855, "supported_languages": null}, "macro.dbt_utils.last_day": {"name": "last_day", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/last_day.sql", "original_file_path": "macros/cross_db_utils/deprecated/last_day.sql", "unique_id": "macro.dbt_utils.last_day", "macro_sql": "{% macro last_day(date, datepart) %}\n {{ return(adapter.dispatch('last_day', 'dbt_utils') (date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9755466, "supported_languages": null}, "macro.dbt_utils.default__last_day": {"name": "default__last_day", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/last_day.sql", "original_file_path": "macros/cross_db_utils/deprecated/last_day.sql", "unique_id": "macro.dbt_utils.default__last_day", "macro_sql": "{% macro default__last_day(date, datepart) %}\n {% do dbt_utils.xdb_deprecation_warning('last_day', model.package_name, model.name) %}\n {{ return(adapter.dispatch('last_day', 'dbt') (date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.last_day", "macro.dbt.default__last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9764252, "supported_languages": null}, "macro.dbt_utils.length": {"name": "length", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/length.sql", "original_file_path": "macros/cross_db_utils/deprecated/length.sql", "unique_id": "macro.dbt_utils.length", "macro_sql": "{% macro length(expression) -%}\n {{ return(adapter.dispatch('length', 'dbt_utils') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__length"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9770143, "supported_languages": null}, "macro.dbt_utils.default__length": {"name": "default__length", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/length.sql", "original_file_path": "macros/cross_db_utils/deprecated/length.sql", "unique_id": "macro.dbt_utils.default__length", "macro_sql": "{% macro default__length(expression) -%}\n {% do dbt_utils.xdb_deprecation_warning('length', model.package_name, model.name) %}\n {{ return(adapter.dispatch('length', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.length", "macro.dbt.default__length"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9777148, "supported_languages": null}, "macro.dbt_utils.listagg": {"name": "listagg", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/listagg.sql", "original_file_path": "macros/cross_db_utils/deprecated/listagg.sql", "unique_id": "macro.dbt_utils.listagg", "macro_sql": "{% macro listagg(measure, delimiter_text=\"','\", order_by_clause=none, limit_num=none) -%}\n {{ return(adapter.dispatch('listagg', 'dbt_utils') (measure, delimiter_text, order_by_clause, limit_num)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__listagg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9786253, "supported_languages": null}, "macro.dbt_utils.default__listagg": {"name": "default__listagg", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/listagg.sql", "original_file_path": "macros/cross_db_utils/deprecated/listagg.sql", "unique_id": "macro.dbt_utils.default__listagg", "macro_sql": "{% macro default__listagg(measure, delimiter_text=\"','\", order_by_clause=none, limit_num=none) -%}\n {% do dbt_utils.xdb_deprecation_warning('listagg', model.package_name, model.name) %}\n {{ return(adapter.dispatch('listagg', 'dbt') (measure, delimiter_text, order_by_clause, limit_num)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.listagg", "macro.dbt_spark.spark__listagg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9794946, "supported_languages": null}, "macro.dbt_utils.string_literal": {"name": "string_literal", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/literal.sql", "original_file_path": "macros/cross_db_utils/deprecated/literal.sql", "unique_id": "macro.dbt_utils.string_literal", "macro_sql": "{%- macro string_literal(value) -%}\n {{ return(adapter.dispatch('string_literal', 'dbt_utils') (value)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.default__string_literal"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9800622, "supported_languages": null}, "macro.dbt_utils.default__string_literal": {"name": "default__string_literal", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/literal.sql", "original_file_path": "macros/cross_db_utils/deprecated/literal.sql", "unique_id": "macro.dbt_utils.default__string_literal", "macro_sql": "{%- macro default__string_literal(value) -%}\n {% do dbt_utils.xdb_deprecation_warning('string_literal', model.package_name, model.name) %}\n {{ return(adapter.dispatch('string_literal', 'dbt') (value)) }}\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.string_literal", "macro.dbt.default__string_literal"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9807196, "supported_languages": null}, "macro.dbt_utils.position": {"name": "position", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/position.sql", "original_file_path": "macros/cross_db_utils/deprecated/position.sql", "unique_id": "macro.dbt_utils.position", "macro_sql": "{% macro position(substring_text, string_text) -%}\n {{ return(adapter.dispatch('position', 'dbt_utils') (substring_text, string_text)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__position"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9814072, "supported_languages": null}, "macro.dbt_utils.default__position": {"name": "default__position", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/position.sql", "original_file_path": "macros/cross_db_utils/deprecated/position.sql", "unique_id": "macro.dbt_utils.default__position", "macro_sql": "{% macro default__position(substring_text, string_text) -%}\n {% do dbt_utils.xdb_deprecation_warning('position', model.package_name, model.name) %}\n {{ return(adapter.dispatch('position', 'dbt') (substring_text, string_text)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.position", "macro.dbt.default__position"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9821424, "supported_languages": null}, "macro.dbt_utils.replace": {"name": "replace", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/replace.sql", "original_file_path": "macros/cross_db_utils/deprecated/replace.sql", "unique_id": "macro.dbt_utils.replace", "macro_sql": "{% macro replace(field, old_chars, new_chars) -%}\n {{ return(adapter.dispatch('replace', 'dbt_utils') (field, old_chars, new_chars)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__replace"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9828653, "supported_languages": null}, "macro.dbt_utils.default__replace": {"name": "default__replace", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/replace.sql", "original_file_path": "macros/cross_db_utils/deprecated/replace.sql", "unique_id": "macro.dbt_utils.default__replace", "macro_sql": "{% macro default__replace(field, old_chars, new_chars) -%}\n {% do dbt_utils.xdb_deprecation_warning('replace', model.package_name, model.name) %}\n {{ return(adapter.dispatch('replace', 'dbt') (field, old_chars, new_chars)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.replace", "macro.dbt.default__replace"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9836257, "supported_languages": null}, "macro.dbt_utils.right": {"name": "right", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/right.sql", "original_file_path": "macros/cross_db_utils/deprecated/right.sql", "unique_id": "macro.dbt_utils.right", "macro_sql": "{% macro right(string_text, length_expression) -%}\n {{ return(adapter.dispatch('right', 'dbt_utils') (string_text, length_expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__right"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9843166, "supported_languages": null}, "macro.dbt_utils.default__right": {"name": "default__right", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/right.sql", "original_file_path": "macros/cross_db_utils/deprecated/right.sql", "unique_id": "macro.dbt_utils.default__right", "macro_sql": "{% macro default__right(string_text, length_expression) -%}\n {% do dbt_utils.xdb_deprecation_warning('right', model.package_name, model.name) %}\n {{ return(adapter.dispatch('right', 'dbt') (string_text, length_expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.right", "macro.dbt.default__right"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.98496, "supported_languages": null}, "macro.dbt_utils.safe_cast": {"name": "safe_cast", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/safe_cast.sql", "original_file_path": "macros/cross_db_utils/deprecated/safe_cast.sql", "unique_id": "macro.dbt_utils.safe_cast", "macro_sql": "{% macro safe_cast(field, type) %}\n {{ return(adapter.dispatch('safe_cast', 'dbt_utils') (field, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9856417, "supported_languages": null}, "macro.dbt_utils.default__safe_cast": {"name": "default__safe_cast", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/safe_cast.sql", "original_file_path": "macros/cross_db_utils/deprecated/safe_cast.sql", "unique_id": "macro.dbt_utils.default__safe_cast", "macro_sql": "{% macro default__safe_cast(field, type) %}\n {% do dbt_utils.xdb_deprecation_warning('safe_cast', model.package_name, model.name) %}\n {{ return(adapter.dispatch('safe_cast', 'dbt') (field, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.safe_cast", "macro.dbt.default__safe_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9863567, "supported_languages": null}, "macro.dbt_utils.split_part": {"name": "split_part", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/split_part.sql", "original_file_path": "macros/cross_db_utils/deprecated/split_part.sql", "unique_id": "macro.dbt_utils.split_part", "macro_sql": "{% macro split_part(string_text, delimiter_text, part_number) %}\n {{ return(adapter.dispatch('split_part', 'dbt_utils') (string_text, delimiter_text, part_number)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.987085, "supported_languages": null}, "macro.dbt_utils.default__split_part": {"name": "default__split_part", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/split_part.sql", "original_file_path": "macros/cross_db_utils/deprecated/split_part.sql", "unique_id": "macro.dbt_utils.default__split_part", "macro_sql": "{% macro default__split_part(string_text, delimiter_text, part_number) %}\n {% do dbt_utils.xdb_deprecation_warning('split_part', model.package_name, model.name) %}\n {{ return(adapter.dispatch('split_part', 'dbt') (string_text, delimiter_text, part_number)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.xdb_deprecation_warning", "macro.dbt_utils.split_part", "macro.dbt_spark.spark__split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9878666, "supported_languages": null}, "macro.dbt_utils.xdb_deprecation_warning": {"name": "xdb_deprecation_warning", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/xdb_deprecation_warning.sql", "original_file_path": "macros/cross_db_utils/deprecated/xdb_deprecation_warning.sql", "unique_id": "macro.dbt_utils.xdb_deprecation_warning", "macro_sql": "{% macro xdb_deprecation_warning(macro, package, model) %}\n {%- set error_message = \"Warning: the `\" ~ macro ~\"` macro is now provided in dbt Core. It is no longer available in dbt_utils and backwards compatibility will be removed in a future version of the package. Use `\" ~ macro ~ \"` (no prefix) instead. The \" ~ package ~ \".\" ~ model ~ \" model triggered this warning.\" -%}\n {%- do exceptions.warn(error_message) -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.988803, "supported_languages": null}, "macro.dbt_utils.xdb_deprecation_warning_without_replacement": {"name": "xdb_deprecation_warning_without_replacement", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/cross_db_utils/deprecated/xdb_deprecation_warning.sql", "original_file_path": "macros/cross_db_utils/deprecated/xdb_deprecation_warning.sql", "unique_id": "macro.dbt_utils.xdb_deprecation_warning_without_replacement", "macro_sql": "{% macro xdb_deprecation_warning_without_replacement(macro, package, model) %}\n {%- set error_message = \"Warning: the `\" ~ macro ~\"` macro is deprecated and will be removed in a future version of the package, once equivalent functionality is implemented in dbt Core. The \" ~ package ~ \".\" ~ model ~ \" model triggered this warning.\" -%}\n {%- do exceptions.warn(error_message) -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9894073, "supported_languages": null}, "macro.dbt_utils.test_accepted_range": {"name": "test_accepted_range", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "unique_id": "macro.dbt_utils.test_accepted_range", "macro_sql": "{% test accepted_range(model, column_name, min_value=none, max_value=none, inclusive=true) %}\n {{ return(adapter.dispatch('test_accepted_range', 'dbt_utils')(model, column_name, min_value, max_value, inclusive)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_accepted_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9907856, "supported_languages": null}, "macro.dbt_utils.default__test_accepted_range": {"name": "default__test_accepted_range", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "unique_id": "macro.dbt_utils.default__test_accepted_range", "macro_sql": "{% macro default__test_accepted_range(model, column_name, min_value=none, max_value=none, inclusive=true) %}\n\nwith meet_condition as(\n select *\n from {{ model }}\n),\n\nvalidation_errors as (\n select *\n from meet_condition\n where\n -- never true, defaults to an empty result set. Exists to ensure any combo of the `or` clauses below succeeds\n 1 = 2\n\n {%- if min_value is not none %}\n -- records with a value >= min_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not {{ column_name }} > {{- \"=\" if inclusive }} {{ min_value }}\n {%- endif %}\n\n {%- if max_value is not none %}\n -- records with a value <= max_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not {{ column_name }} < {{- \"=\" if inclusive }} {{ max_value }}\n {%- endif %}\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9919226, "supported_languages": null}, "macro.dbt_utils.test_at_least_one": {"name": "test_at_least_one", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "unique_id": "macro.dbt_utils.test_at_least_one", "macro_sql": "{% test at_least_one(model, column_name) %}\n {{ return(adapter.dispatch('test_at_least_one', 'dbt_utils')(model, column_name)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_at_least_one"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9926505, "supported_languages": null}, "macro.dbt_utils.default__test_at_least_one": {"name": "default__test_at_least_one", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "unique_id": "macro.dbt_utils.default__test_at_least_one", "macro_sql": "{% macro default__test_at_least_one(model, column_name) %}\n\nselect *\nfrom (\n select\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n count({{ column_name }}) as filler_column\n\n from {{ model }}\n\n having count({{ column_name }}) = 0\n\n) validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9930406, "supported_languages": null}, "macro.dbt_utils.test_cardinality_equality": {"name": "test_cardinality_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "unique_id": "macro.dbt_utils.test_cardinality_equality", "macro_sql": "{% test cardinality_equality(model, column_name, to, field) %}\n {{ return(adapter.dispatch('test_cardinality_equality', 'dbt_utils')(model, column_name, to, field)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_cardinality_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9940693, "supported_languages": null}, "macro.dbt_utils.default__test_cardinality_equality": {"name": "default__test_cardinality_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "unique_id": "macro.dbt_utils.default__test_cardinality_equality", "macro_sql": "{% macro default__test_cardinality_equality(model, column_name, to, field) %}\n\n{# T-SQL does not let you use numbers as aliases for columns #}\n{# Thus, no \"GROUP BY 1\" #}\n\nwith table_a as (\nselect\n {{ column_name }},\n count(*) as num_rows\nfrom {{ model }}\ngroup by {{ column_name }}\n),\n\ntable_b as (\nselect\n {{ field }},\n count(*) as num_rows\nfrom {{ to }}\ngroup by {{ field }}\n),\n\nexcept_a as (\n select *\n from table_a\n {{ except() }}\n select *\n from table_b\n),\n\nexcept_b as (\n select *\n from table_b\n {{ except() }}\n select *\n from table_a\n),\n\nunioned as (\n select *\n from except_a\n union all\n select *\n from except_b\n)\n\nselect *\nfrom unioned\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.994834, "supported_languages": null}, "macro.dbt_utils.test_equal_rowcount": {"name": "test_equal_rowcount", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "unique_id": "macro.dbt_utils.test_equal_rowcount", "macro_sql": "{% test equal_rowcount(model, compare_model) %}\n {{ return(adapter.dispatch('test_equal_rowcount', 'dbt_utils')(model, compare_model)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_equal_rowcount"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.995643, "supported_languages": null}, "macro.dbt_utils.default__test_equal_rowcount": {"name": "default__test_equal_rowcount", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "unique_id": "macro.dbt_utils.default__test_equal_rowcount", "macro_sql": "{% macro default__test_equal_rowcount(model, compare_model) %}\n\n{#-- Needs to be set at parse time, before we return '' below --#}\n{{ config(fail_calc = 'coalesce(diff_count, 0)') }}\n\n{#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n{%- if not execute -%}\n {{ return('') }}\n{% endif %}\n\nwith a as (\n\n select count(*) as count_a from {{ model }}\n\n),\nb as (\n\n select count(*) as count_b from {{ compare_model }}\n\n),\nfinal as (\n\n select\n count_a,\n count_b,\n abs(count_a - count_b) as diff_count\n from a\n cross join b\n\n)\n\nselect * from final\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9963615, "supported_languages": null}, "macro.dbt_utils.test_equality": {"name": "test_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "unique_id": "macro.dbt_utils.test_equality", "macro_sql": "{% test equality(model, compare_model, compare_columns=None) %}\n {{ return(adapter.dispatch('test_equality', 'dbt_utils')(model, compare_model, compare_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.9978206, "supported_languages": null}, "macro.dbt_utils.default__test_equality": {"name": "default__test_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "unique_id": "macro.dbt_utils.default__test_equality", "macro_sql": "{% macro default__test_equality(model, compare_model, compare_columns=None) %}\n\n{% set set_diff %}\n count(*) + coalesce(abs(\n sum(case when which_diff = 'a_minus_b' then 1 else 0 end) -\n sum(case when which_diff = 'b_minus_a' then 1 else 0 end)\n ), 0)\n{% endset %}\n\n{#-- Needs to be set at parse time, before we return '' below --#}\n{{ config(fail_calc = set_diff) }}\n\n{#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n{%- if not execute -%}\n {{ return('') }}\n{% endif %}\n\n-- setup\n{%- do dbt_utils._is_relation(model, 'test_equality') -%}\n\n{#-\nIf the compare_cols arg is provided, we can run this test without querying the\ninformation schema\u00a0\u2014 this allows the model to be an ephemeral model\n-#}\n\n{%- if not compare_columns -%}\n {%- do dbt_utils._is_ephemeral(model, 'test_equality') -%}\n {%- set compare_columns = adapter.get_columns_in_relation(model) | map(attribute='quoted') -%}\n{%- endif -%}\n\n{% set compare_cols_csv = compare_columns | join(', ') %}\n\nwith a as (\n\n select * from {{ model }}\n\n),\n\nb as (\n\n select * from {{ compare_model }}\n\n),\n\na_minus_b as (\n\n select {{compare_cols_csv}} from a\n {{ except() }}\n select {{compare_cols_csv}} from b\n\n),\n\nb_minus_a as (\n\n select {{compare_cols_csv}} from b\n {{ except() }}\n select {{compare_cols_csv}} from a\n\n),\n\nunioned as (\n\n select 'a_minus_b' as which_diff, a_minus_b.* from a_minus_b\n union all\n select 'b_minus_a' as which_diff, b_minus_a.* from b_minus_a\n\n)\n\nselect * from unioned\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082601.999893, "supported_languages": null}, "macro.dbt_utils.test_expression_is_true": {"name": "test_expression_is_true", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "unique_id": "macro.dbt_utils.test_expression_is_true", "macro_sql": "{% test expression_is_true(model, expression, column_name=None, condition='1=1') %}\n{# T-SQL has no boolean data type so we use 1=1 which returns TRUE #}\n{# ref https://stackoverflow.com/a/7170753/3842610 #}\n {{ return(adapter.dispatch('test_expression_is_true', 'dbt_utils')(model, expression, column_name, condition)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.000907, "supported_languages": null}, "macro.dbt_utils.default__test_expression_is_true": {"name": "default__test_expression_is_true", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "unique_id": "macro.dbt_utils.default__test_expression_is_true", "macro_sql": "{% macro default__test_expression_is_true(model, expression, column_name, condition) %}\n\nwith meet_condition as (\n select * from {{ model }} where {{ condition }}\n)\n\nselect\n *\nfrom meet_condition\n{% if column_name is none %}\nwhere not({{ expression }})\n{%- else %}\nwhere not({{ column_name }} {{ expression }})\n{%- endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0017312, "supported_languages": null}, "macro.dbt_utils.test_fewer_rows_than": {"name": "test_fewer_rows_than", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "unique_id": "macro.dbt_utils.test_fewer_rows_than", "macro_sql": "{% test fewer_rows_than(model, compare_model) %}\n {{ return(adapter.dispatch('test_fewer_rows_than', 'dbt_utils')(model, compare_model)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_fewer_rows_than"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0027802, "supported_languages": null}, "macro.dbt_utils.default__test_fewer_rows_than": {"name": "default__test_fewer_rows_than", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "unique_id": "macro.dbt_utils.default__test_fewer_rows_than", "macro_sql": "{% macro default__test_fewer_rows_than(model, compare_model) %}\n\n{{ config(fail_calc = 'coalesce(row_count_delta, 0)') }}\n\nwith a as (\n\n select count(*) as count_our_model from {{ model }}\n\n),\nb as (\n\n select count(*) as count_comparison_model from {{ compare_model }}\n\n),\ncounts as (\n\n select\n count_our_model,\n count_comparison_model\n from a\n cross join b\n\n),\nfinal as (\n\n select *,\n case\n -- fail the test if we have more rows than the reference model and return the row count delta\n when count_our_model > count_comparison_model then (count_our_model - count_comparison_model)\n -- fail the test if they are the same number\n when count_our_model = count_comparison_model then 1\n -- pass the test if the delta is positive (i.e. return the number 0)\n else 0\n end as row_count_delta\n from counts\n\n)\n\nselect * from final\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.003323, "supported_languages": null}, "macro.dbt_utils.test_mutually_exclusive_ranges": {"name": "test_mutually_exclusive_ranges", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "unique_id": "macro.dbt_utils.test_mutually_exclusive_ranges", "macro_sql": "{% test mutually_exclusive_ranges(model, lower_bound_column, upper_bound_column, partition_by=None, gaps='allowed', zero_length_range_allowed=False) %}\n {{ return(adapter.dispatch('test_mutually_exclusive_ranges', 'dbt_utils')(model, lower_bound_column, upper_bound_column, partition_by, gaps, zero_length_range_allowed)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_mutually_exclusive_ranges"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0085828, "supported_languages": null}, "macro.dbt_utils.default__test_mutually_exclusive_ranges": {"name": "default__test_mutually_exclusive_ranges", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "unique_id": "macro.dbt_utils.default__test_mutually_exclusive_ranges", "macro_sql": "{% macro default__test_mutually_exclusive_ranges(model, lower_bound_column, upper_bound_column, partition_by=None, gaps='allowed', zero_length_range_allowed=False) %}\n{% if gaps == 'not_allowed' %}\n {% set allow_gaps_operator='=' %}\n {% set allow_gaps_operator_in_words='equal_to' %}\n{% elif gaps == 'allowed' %}\n {% set allow_gaps_operator='<=' %}\n {% set allow_gaps_operator_in_words='less_than_or_equal_to' %}\n{% elif gaps == 'required' %}\n {% set allow_gaps_operator='<' %}\n {% set allow_gaps_operator_in_words='less_than' %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`gaps` argument for mutually_exclusive_ranges test must be one of ['not_allowed', 'allowed', 'required'] Got: '\" ~ gaps ~\"'.'\"\n ) }}\n{% endif %}\n{% if not zero_length_range_allowed %}\n {% set allow_zero_length_operator='<' %}\n {% set allow_zero_length_operator_in_words='less_than' %}\n{% elif zero_length_range_allowed %}\n {% set allow_zero_length_operator='<=' %}\n {% set allow_zero_length_operator_in_words='less_than_or_equal_to' %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`zero_length_range_allowed` argument for mutually_exclusive_ranges test must be one of [true, false] Got: '\" ~ zero_length_range_allowed ~\"'.'\"\n ) }}\n{% endif %}\n\n{% set partition_clause=\"partition by \" ~ partition_by if partition_by else '' %}\n\nwith window_functions as (\n\n select\n {% if partition_by %}\n {{ partition_by }} as partition_by_col,\n {% endif %}\n {{ lower_bound_column }} as lower_bound,\n {{ upper_bound_column }} as upper_bound,\n\n lead({{ lower_bound_column }}) over (\n {{ partition_clause }}\n order by {{ lower_bound_column }}, {{ upper_bound_column }}\n ) as next_lower_bound,\n\n row_number() over (\n {{ partition_clause }}\n order by {{ lower_bound_column }} desc, {{ upper_bound_column }} desc\n ) = 1 as is_last_record\n\n from {{ model }}\n\n),\n\ncalc as (\n -- We want to return records where one of our assumptions fails, so we'll use\n -- the `not` function with `and` statements so we can write our assumptions nore cleanly\n select\n *,\n\n -- For each record: lower_bound should be < upper_bound.\n -- Coalesce it to return an error on the null case (implicit assumption\n -- these columns are not_null)\n coalesce(\n lower_bound {{ allow_zero_length_operator }} upper_bound,\n false\n ) as lower_bound_{{ allow_zero_length_operator_in_words }}_upper_bound,\n\n -- For each record: upper_bound {{ allow_gaps_operator }} the next lower_bound.\n -- Coalesce it to handle null cases for the last record.\n coalesce(\n upper_bound {{ allow_gaps_operator }} next_lower_bound,\n is_last_record,\n false\n ) as upper_bound_{{ allow_gaps_operator_in_words }}_next_lower_bound\n\n from window_functions\n\n),\n\nvalidation_errors as (\n\n select\n *\n from calc\n\n where not(\n -- THE FOLLOWING SHOULD BE TRUE --\n lower_bound_{{ allow_zero_length_operator_in_words }}_upper_bound\n and upper_bound_{{ allow_gaps_operator_in_words }}_next_lower_bound\n )\n)\n\nselect * from validation_errors\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0128243, "supported_languages": null}, "macro.dbt_utils.test_not_accepted_values": {"name": "test_not_accepted_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "unique_id": "macro.dbt_utils.test_not_accepted_values", "macro_sql": "{% test not_accepted_values(model, column_name, values, quote=True) %}\n {{ return(adapter.dispatch('test_not_accepted_values', 'dbt_utils')(model, column_name, values, quote)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0140996, "supported_languages": null}, "macro.dbt_utils.default__test_not_accepted_values": {"name": "default__test_not_accepted_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "unique_id": "macro.dbt_utils.default__test_not_accepted_values", "macro_sql": "{% macro default__test_not_accepted_values(model, column_name, values, quote=True) %}\nwith all_values as (\n\n select distinct\n {{ column_name }} as value_field\n\n from {{ model }}\n\n),\n\nvalidation_errors as (\n\n select\n value_field\n\n from all_values\n where value_field in (\n {% for value in values -%}\n {% if quote -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {%- endfor %}\n )\n\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0150757, "supported_languages": null}, "macro.dbt_utils.test_not_constant": {"name": "test_not_constant", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "unique_id": "macro.dbt_utils.test_not_constant", "macro_sql": "{% test not_constant(model, column_name) %}\n {{ return(adapter.dispatch('test_not_constant', 'dbt_utils')(model, column_name)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_constant"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0157955, "supported_languages": null}, "macro.dbt_utils.default__test_not_constant": {"name": "default__test_not_constant", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "unique_id": "macro.dbt_utils.default__test_not_constant", "macro_sql": "{% macro default__test_not_constant(model, column_name) %}\n\n\nselect\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n count(distinct {{ column_name }}) as filler_column\n\nfrom {{ model }}\n\nhaving count(distinct {{ column_name }}) = 1\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0162566, "supported_languages": null}, "macro.dbt_utils.test_not_null_proportion": {"name": "test_not_null_proportion", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "unique_id": "macro.dbt_utils.test_not_null_proportion", "macro_sql": "{% macro test_not_null_proportion(model) %}\n {{ return(adapter.dispatch('test_not_null_proportion', 'dbt_utils')(model, **kwargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_null_proportion"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0170798, "supported_languages": null}, "macro.dbt_utils.default__test_not_null_proportion": {"name": "default__test_not_null_proportion", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "unique_id": "macro.dbt_utils.default__test_not_null_proportion", "macro_sql": "{% macro default__test_not_null_proportion(model) %}\n\n{% set column_name = kwargs.get('column_name', kwargs.get('arg')) %}\n{% set at_least = kwargs.get('at_least', kwargs.get('arg')) %}\n{% set at_most = kwargs.get('at_most', kwargs.get('arg', 1)) %}\n\nwith validation as (\n select\n sum(case when {{ column_name }} is null then 0 else 1 end) / cast(count(*) as numeric) as not_null_proportion\n from {{ model }}\n),\nvalidation_errors as (\n select\n not_null_proportion\n from validation\n where not_null_proportion < {{ at_least }} or not_null_proportion > {{ at_most }}\n)\nselect\n *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0183067, "supported_languages": null}, "macro.dbt_utils.test_recency": {"name": "test_recency", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "unique_id": "macro.dbt_utils.test_recency", "macro_sql": "{% test recency(model, field, datepart, interval) %}\n {{ return(adapter.dispatch('test_recency', 'dbt_utils')(model, field, datepart, interval)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_recency"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0191453, "supported_languages": null}, "macro.dbt_utils.default__test_recency": {"name": "default__test_recency", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "unique_id": "macro.dbt_utils.default__test_recency", "macro_sql": "{% macro default__test_recency(model, field, datepart, interval) %}\n\n{% set threshold = dateadd(datepart, interval * -1, current_timestamp()) %}\n\nwith recency as (\n\n select max({{field}}) as most_recent\n from {{ model }}\n\n)\n\nselect\n\n most_recent,\n {{ threshold }} as threshold\n\nfrom recency\nwhere most_recent < {{ threshold }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.dateadd", "macro.dbt_utils.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0198307, "supported_languages": null}, "macro.dbt_utils.test_relationships_where": {"name": "test_relationships_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "unique_id": "macro.dbt_utils.test_relationships_where", "macro_sql": "{% test relationships_where(model, column_name, to, field, from_condition=\"1=1\", to_condition=\"1=1\") %}\n {{ return(adapter.dispatch('test_relationships_where', 'dbt_utils')(model, column_name, to, field, from_condition, to_condition)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_relationships_where"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.021094, "supported_languages": null}, "macro.dbt_utils.default__test_relationships_where": {"name": "default__test_relationships_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "unique_id": "macro.dbt_utils.default__test_relationships_where", "macro_sql": "{% macro default__test_relationships_where(model, column_name, to, field, from_condition=\"1=1\", to_condition=\"1=1\") %}\n\n{# T-SQL has no boolean data type so we use 1=1 which returns TRUE #}\n{# ref https://stackoverflow.com/a/7170753/3842610 #}\n\nwith left_table as (\n\n select\n {{column_name}} as id\n\n from {{model}}\n\n where {{column_name}} is not null\n and {{from_condition}}\n\n),\n\nright_table as (\n\n select\n {{field}} as id\n\n from {{to}}\n\n where {{field}} is not null\n and {{to_condition}}\n\n),\n\nexceptions as (\n\n select\n left_table.id,\n right_table.id as right_id\n\n from left_table\n\n left join right_table\n on left_table.id = right_table.id\n\n where right_table.id is null\n\n)\n\nselect * from exceptions\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0218422, "supported_languages": null}, "macro.dbt_utils.test_sequential_values": {"name": "test_sequential_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "unique_id": "macro.dbt_utils.test_sequential_values", "macro_sql": "{% test sequential_values(model, column_name, interval=1, datepart=None) %}\n\n {{ return(adapter.dispatch('test_sequential_values', 'dbt_utils')(model, column_name, interval, datepart)) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_sequential_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.023117, "supported_languages": null}, "macro.dbt_utils.default__test_sequential_values": {"name": "default__test_sequential_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "unique_id": "macro.dbt_utils.default__test_sequential_values", "macro_sql": "{% macro default__test_sequential_values(model, column_name, interval=1, datepart=None) %}\n\n{% set previous_column_name = \"previous_\" ~ dbt_utils.slugify(column_name) %}\n\nwith windowed as (\n\n select\n {{ column_name }},\n lag({{ column_name }}) over (\n order by {{ column_name }}\n ) as {{ previous_column_name }}\n from {{ model }}\n),\n\nvalidation_errors as (\n select\n *\n from windowed\n {% if datepart %}\n where not(cast({{ column_name }} as {{ type_timestamp() }})= cast({{ dateadd(datepart, interval, previous_column_name) }} as {{ type_timestamp() }}))\n {% else %}\n where not({{ column_name }} = {{ previous_column_name }} + {{ interval }})\n {% endif %}\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.slugify", "macro.dbt_utils.type_timestamp", "macro.dbt_utils.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0244894, "supported_languages": null}, "macro.dbt_utils.test_not_null_where": {"name": "test_not_null_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/test_not_null_where.sql", "original_file_path": "macros/generic_tests/test_not_null_where.sql", "unique_id": "macro.dbt_utils.test_not_null_where", "macro_sql": "{% test not_null_where(model, column_name) %}\r\n {%- set deprecation_warning = '\r\n Warning: `dbt_utils.not_null_where` is no longer supported.\r\n Starting in dbt v0.20.0, the built-in `not_null` test supports a `where` config.\r\n ' -%}\r\n {%- do exceptions.warn(deprecation_warning) -%}\r\n {{ return(adapter.dispatch('test_not_null_where', 'dbt_utils')(model, column_name)) }}\r\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_null_where"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0254025, "supported_languages": null}, "macro.dbt_utils.default__test_not_null_where": {"name": "default__test_not_null_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/test_not_null_where.sql", "original_file_path": "macros/generic_tests/test_not_null_where.sql", "unique_id": "macro.dbt_utils.default__test_not_null_where", "macro_sql": "{% macro default__test_not_null_where(model, column_name) %}\r\n {{ return(test_not_null(model, column_name)) }}\r\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.test_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0257723, "supported_languages": null}, "macro.dbt_utils.test_unique_where": {"name": "test_unique_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/test_unique_where.sql", "original_file_path": "macros/generic_tests/test_unique_where.sql", "unique_id": "macro.dbt_utils.test_unique_where", "macro_sql": "{% test unique_where(model, column_name) %}\r\n {%- set deprecation_warning = '\r\n Warning: `dbt_utils.unique_where` is no longer supported.\r\n Starting in dbt v0.20.0, the built-in `unique` test supports a `where` config.\r\n ' -%}\r\n {%- do exceptions.warn(deprecation_warning) -%}\r\n {{ return(adapter.dispatch('test_unique_where', 'dbt_utils')(model, column_name)) }}\r\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_unique_where"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0266697, "supported_languages": null}, "macro.dbt_utils.default__test_unique_where": {"name": "default__test_unique_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/test_unique_where.sql", "original_file_path": "macros/generic_tests/test_unique_where.sql", "unique_id": "macro.dbt_utils.default__test_unique_where", "macro_sql": "{% macro default__test_unique_where(model, column_name) %}\r\n {{ return(test_unique(model, column_name)) }}\r\n{% endmacro %}", "depends_on": {"macros": ["macro.yoda.test_unique"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0270386, "supported_languages": null}, "macro.dbt_utils.test_unique_combination_of_columns": {"name": "test_unique_combination_of_columns", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "unique_id": "macro.dbt_utils.test_unique_combination_of_columns", "macro_sql": "{% test unique_combination_of_columns(model, combination_of_columns, quote_columns=false) %}\n {{ return(adapter.dispatch('test_unique_combination_of_columns', 'dbt_utils')(model, combination_of_columns, quote_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_unique_combination_of_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0282555, "supported_languages": null}, "macro.dbt_utils.default__test_unique_combination_of_columns": {"name": "default__test_unique_combination_of_columns", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "unique_id": "macro.dbt_utils.default__test_unique_combination_of_columns", "macro_sql": "{% macro default__test_unique_combination_of_columns(model, combination_of_columns, quote_columns=false) %}\n\n{% if not quote_columns %}\n {%- set column_list=combination_of_columns %}\n{% elif quote_columns %}\n {%- set column_list=[] %}\n {% for column in combination_of_columns -%}\n {% set column_list = column_list.append( adapter.quote(column) ) %}\n {%- endfor %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`quote_columns` argument for unique_combination_of_columns test must be one of [True, False] Got: '\" ~ quote ~\"'.'\"\n ) }}\n{% endif %}\n\n{%- set columns_csv=column_list | join(', ') %}\n\n\nwith validation_errors as (\n\n select\n {{ columns_csv }}\n from {{ model }}\n group by {{ columns_csv }}\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.029898, "supported_languages": null}, "macro.dbt_utils._is_ephemeral": {"name": "_is_ephemeral", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/_is_ephemeral.sql", "original_file_path": "macros/jinja_helpers/_is_ephemeral.sql", "unique_id": "macro.dbt_utils._is_ephemeral", "macro_sql": "{% macro _is_ephemeral(obj, macro) %}\n {%- if obj.is_cte -%}\n {% set ephemeral_prefix = api.Relation.add_ephemeral_prefix('') %}\n {% if obj.name.startswith(ephemeral_prefix) %}\n {% set model_name = obj.name[(ephemeral_prefix|length):] %}\n {% else %}\n {% set model_name = obj.name %}\n {%- endif -%}\n {% set error_message %}\nThe `{{ macro }}` macro cannot be used with ephemeral models, as it relies on the information schema.\n\n`{{ model_name }}` is an ephemeral model. Consider making it a view or table instead.\n {% endset %}\n {%- do exceptions.raise_compiler_error(error_message) -%}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0316997, "supported_languages": null}, "macro.dbt_utils._is_relation": {"name": "_is_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/_is_relation.sql", "original_file_path": "macros/jinja_helpers/_is_relation.sql", "unique_id": "macro.dbt_utils._is_relation", "macro_sql": "{% macro _is_relation(obj, macro) %}\n {%- if not (obj is mapping and obj.get('metadata', {}).get('type', '').endswith('Relation')) -%}\n {%- do exceptions.raise_compiler_error(\"Macro \" ~ macro ~ \" expected a Relation but received the value: \" ~ obj) -%}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0327237, "supported_languages": null}, "macro.dbt_utils.log_info": {"name": "log_info", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "unique_id": "macro.dbt_utils.log_info", "macro_sql": "{% macro log_info(message) %}\n {{ return(adapter.dispatch('log_info', 'dbt_utils')(message)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0333316, "supported_languages": null}, "macro.dbt_utils.default__log_info": {"name": "default__log_info", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "unique_id": "macro.dbt_utils.default__log_info", "macro_sql": "{% macro default__log_info(message) %}\n {{ log(dbt_utils.pretty_log_format(message), info=True) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0337203, "supported_languages": null}, "macro.dbt_utils.pretty_log_format": {"name": "pretty_log_format", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "unique_id": "macro.dbt_utils.pretty_log_format", "macro_sql": "{% macro pretty_log_format(message) %}\n {{ return(adapter.dispatch('pretty_log_format', 'dbt_utils')(message)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0343134, "supported_languages": null}, "macro.dbt_utils.default__pretty_log_format": {"name": "default__pretty_log_format", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "unique_id": "macro.dbt_utils.default__pretty_log_format", "macro_sql": "{% macro default__pretty_log_format(message) %}\n {{ return( dbt_utils.pretty_time() ~ ' + ' ~ message) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0346837, "supported_languages": null}, "macro.dbt_utils.pretty_time": {"name": "pretty_time", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "unique_id": "macro.dbt_utils.pretty_time", "macro_sql": "{% macro pretty_time(format='%H:%M:%S') %}\n {{ return(adapter.dispatch('pretty_time', 'dbt_utils')(format)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.035309, "supported_languages": null}, "macro.dbt_utils.default__pretty_time": {"name": "default__pretty_time", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "unique_id": "macro.dbt_utils.default__pretty_time", "macro_sql": "{% macro default__pretty_time(format='%H:%M:%S') %}\n {{ return(modules.datetime.datetime.now().strftime(format)) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.035732, "supported_languages": null}, "macro.dbt_utils.slugify": {"name": "slugify", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/slugify.sql", "original_file_path": "macros/jinja_helpers/slugify.sql", "unique_id": "macro.dbt_utils.slugify", "macro_sql": "{% macro slugify(string) %}\n\n{#- Lower case the string -#}\n{% set string = string | lower %}\n{#- Replace spaces and dashes with underscores -#}\n{% set string = modules.re.sub('[ -]+', '_', string) %}\n{#- Only take letters, numbers, and underscores -#}\n{% set string = modules.re.sub('[^a-z0-9_]+', '', string) %}\n\n{{ return(string) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.03675, "supported_languages": null}, "macro.dbt_utils.get_period_boundaries": {"name": "get_period_boundaries", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/materializations/insert_by_period_materialization.sql", "original_file_path": "macros/materializations/insert_by_period_materialization.sql", "unique_id": "macro.dbt_utils.get_period_boundaries", "macro_sql": "{% macro get_period_boundaries(target_schema, target_table, timestamp_field, start_date, stop_date, period) -%}\n {{ return(adapter.dispatch('get_period_boundaries', 'dbt_utils')(target_schema, target_table, timestamp_field, start_date, stop_date, period)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_period_boundaries"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0466814, "supported_languages": null}, "macro.dbt_utils.default__get_period_boundaries": {"name": "default__get_period_boundaries", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/materializations/insert_by_period_materialization.sql", "original_file_path": "macros/materializations/insert_by_period_materialization.sql", "unique_id": "macro.dbt_utils.default__get_period_boundaries", "macro_sql": "{% macro default__get_period_boundaries(target_schema, target_table, timestamp_field, start_date, stop_date, period) -%}\n\n {% call statement('period_boundaries', fetch_result=True) -%}\n with data as (\n select\n coalesce(max(\"{{timestamp_field}}\"), '{{start_date}}')::timestamp as start_timestamp,\n coalesce(\n {{ dateadd('millisecond',\n -1,\n \"nullif('\" ~ stop_date ~ \"','')::timestamp\") }},\n {{ dbt_utils.current_timestamp() }}\n ) as stop_timestamp\n from \"{{target_schema}}\".\"{{target_table}}\"\n )\n\n select\n start_timestamp,\n stop_timestamp,\n {{ datediff('start_timestamp',\n 'stop_timestamp',\n period) }} + 1 as num_periods\n from data\n {%- endcall %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.dateadd", "macro.dbt_utils.current_timestamp", "macro.dbt_utils.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0478847, "supported_languages": null}, "macro.dbt_utils.get_period_sql": {"name": "get_period_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/materializations/insert_by_period_materialization.sql", "original_file_path": "macros/materializations/insert_by_period_materialization.sql", "unique_id": "macro.dbt_utils.get_period_sql", "macro_sql": "{% macro get_period_sql(target_cols_csv, sql, timestamp_field, period, start_timestamp, stop_timestamp, offset) -%}\n {{ return(adapter.dispatch('get_period_sql', 'dbt_utils')(target_cols_csv, sql, timestamp_field, period, start_timestamp, stop_timestamp, offset)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_period_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0486674, "supported_languages": null}, "macro.dbt_utils.default__get_period_sql": {"name": "default__get_period_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/materializations/insert_by_period_materialization.sql", "original_file_path": "macros/materializations/insert_by_period_materialization.sql", "unique_id": "macro.dbt_utils.default__get_period_sql", "macro_sql": "{% macro default__get_period_sql(target_cols_csv, sql, timestamp_field, period, start_timestamp, stop_timestamp, offset) -%}\n\n {%- set period_filter -%}\n (\"{{timestamp_field}}\" > '{{start_timestamp}}'::timestamp + interval '{{offset}} {{period}}' and\n \"{{timestamp_field}}\" <= '{{start_timestamp}}'::timestamp + interval '{{offset}} {{period}}' + interval '1 {{period}}' and\n \"{{timestamp_field}}\" < '{{stop_timestamp}}'::timestamp)\n {%- endset -%}\n\n {%- set filtered_sql = sql | replace(\"__PERIOD_FILTER__\", period_filter) -%}\n\n select\n {{target_cols_csv}}\n from (\n {{filtered_sql}}\n )\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0498338, "supported_languages": null}, "macro.dbt_utils.materialization_insert_by_period_default": {"name": "materialization_insert_by_period_default", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/materializations/insert_by_period_materialization.sql", "original_file_path": "macros/materializations/insert_by_period_materialization.sql", "unique_id": "macro.dbt_utils.materialization_insert_by_period_default", "macro_sql": "{% materialization insert_by_period, default -%}\n {%- set timestamp_field = config.require('timestamp_field') -%}\n {%- set start_date = config.require('start_date') -%}\n {%- set stop_date = config.get('stop_date') or '' -%}\n {%- set period = config.get('period') or 'week' -%}\n\n {%- set deprecation_warning = \"Warning: the `insert_by_period` materialization will be removed from dbt_utils in version 1.0.0. Install from dbt-labs/dbt-labs-experimental-features instead (see https://github.com/dbt-labs/dbt-utils/discussions/487). The \" ~ package ~ \".\" ~ model ~ \" model triggered this warning.\" -%}\n {%- do exceptions.warn(deprecation_warning) -%}\n\n {%- if sql.find('__PERIOD_FILTER__') == -1 -%}\n {%- set error_message -%}\n Model '{{ model.unique_id }}' does not include the required string '__PERIOD_FILTER__' in its sql\n {%- endset -%}\n {{ exceptions.raise_compiler_error(error_message) }}\n {%- endif -%}\n\n {%- set identifier = model['name'] -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n {%- set target_relation = api.Relation.create(identifier=identifier, schema=schema, type='table') -%}\n\n {%- set non_destructive_mode = (flags.NON_DESTRUCTIVE == True) -%}\n {%- set full_refresh_mode = (flags.FULL_REFRESH == True) -%}\n\n {%- set exists_as_table = (old_relation is not none and old_relation.is_table) -%}\n {%- set exists_not_as_table = (old_relation is not none and not old_relation.is_table) -%}\n\n {%- set should_truncate = (non_destructive_mode and full_refresh_mode and exists_as_table) -%}\n {%- set should_drop = (not should_truncate and (full_refresh_mode or exists_not_as_table)) -%}\n {%- set force_create = (flags.FULL_REFRESH and not flags.NON_DESTRUCTIVE) -%}\n\n -- setup\n {% if old_relation is none -%}\n -- noop\n {%- elif should_truncate -%}\n {{adapter.truncate_relation(old_relation)}}\n {%- elif should_drop -%}\n {{adapter.drop_relation(old_relation)}}\n {%- set old_relation = none -%}\n {%- endif %}\n\n {{run_hooks(pre_hooks, inside_transaction=False)}}\n\n -- `begin` happens here, so `commit` after it to finish the transaction\n {{run_hooks(pre_hooks, inside_transaction=True)}}\n {% call statement() -%}\n begin; -- make extra sure we've closed out the transaction\n commit;\n {%- endcall %}\n\n -- build model\n {% if force_create or old_relation is none -%}\n {# Create an empty target table -#}\n {% call statement('main') -%}\n {%- set empty_sql = sql | replace(\"__PERIOD_FILTER__\", 'false') -%}\n {{create_table_as(False, target_relation, empty_sql)}}\n {%- endcall %}\n {%- endif %}\n\n {% set _ = dbt_utils.get_period_boundaries(schema,\n identifier,\n timestamp_field,\n start_date,\n stop_date,\n period) %}\n {%- set start_timestamp = load_result('period_boundaries')['data'][0][0] | string -%}\n {%- set stop_timestamp = load_result('period_boundaries')['data'][0][1] | string -%}\n {%- set num_periods = load_result('period_boundaries')['data'][0][2] | int -%}\n\n {% set target_columns = adapter.get_columns_in_relation(target_relation) %}\n {%- set target_cols_csv = target_columns | map(attribute='quoted') | join(', ') -%}\n {%- set loop_vars = {'sum_rows_inserted': 0} -%}\n\n -- commit each period as a separate transaction\n {% for i in range(num_periods) -%}\n {%- set msg = \"Running for \" ~ period ~ \" \" ~ (i + 1) ~ \" of \" ~ (num_periods) -%}\n {{ dbt_utils.log_info(msg) }}\n\n {%- set tmp_identifier = model['name'] ~ '__dbt_incremental_period' ~ i ~ '_tmp' -%}\n {%- set tmp_relation = api.Relation.create(identifier=tmp_identifier,\n schema=schema, type='table') -%}\n {% call statement() -%}\n {% set tmp_table_sql = dbt_utils.get_period_sql(target_cols_csv,\n sql,\n timestamp_field,\n period,\n start_timestamp,\n stop_timestamp,\n i) %}\n {{dbt.create_table_as(True, tmp_relation, tmp_table_sql)}}\n {%- endcall %}\n\n {{adapter.expand_target_column_types(from_relation=tmp_relation,\n to_relation=target_relation)}}\n {%- set name = 'main-' ~ i -%}\n {% call statement(name, fetch_result=True) -%}\n insert into {{target_relation}} ({{target_cols_csv}})\n (\n select\n {{target_cols_csv}}\n from {{tmp_relation.include(schema=False)}}\n );\n {%- endcall %}\n {% set result = load_result('main-' ~ i) %}\n {% if 'response' in result.keys() %} {# added in v0.19.0 #}\n {% set rows_inserted = result['response']['rows_affected'] %}\n {% else %} {# older versions #}\n {% set rows_inserted = result['status'].split(\" \")[2] | int %}\n {% endif %}\n\n {%- set sum_rows_inserted = loop_vars['sum_rows_inserted'] + rows_inserted -%}\n {%- if loop_vars.update({'sum_rows_inserted': sum_rows_inserted}) %} {% endif -%}\n\n {%- set msg = \"Ran for \" ~ period ~ \" \" ~ (i + 1) ~ \" of \" ~ (num_periods) ~ \"; \" ~ rows_inserted ~ \" records inserted\" -%}\n {{ dbt_utils.log_info(msg) }}\n\n {%- endfor %}\n\n {% call statement() -%}\n begin;\n {%- endcall %}\n\n {{run_hooks(post_hooks, inside_transaction=True)}}\n\n {% call statement() -%}\n commit;\n {%- endcall %}\n\n {{run_hooks(post_hooks, inside_transaction=False)}}\n\n {%- set status_string = \"INSERT \" ~ loop_vars['sum_rows_inserted'] -%}\n\n {% call noop_statement('main', status_string) -%}\n -- no-op\n {%- endcall %}\n\n -- Return the relations created in this materialization\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.create_table_as", "macro.dbt_utils.get_period_boundaries", "macro.dbt_utils.log_info", "macro.dbt_utils.get_period_sql", "macro.dbt.noop_statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0619361, "supported_languages": ["sql"]}, "macro.dbt_utils.get_intervals_between": {"name": "get_intervals_between", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.get_intervals_between", "macro_sql": "{% macro get_intervals_between(start_date, end_date, datepart) -%}\n {{ return(adapter.dispatch('get_intervals_between', 'dbt_utils')(start_date, end_date, datepart)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_intervals_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0634623, "supported_languages": null}, "macro.dbt_utils.default__get_intervals_between": {"name": "default__get_intervals_between", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.default__get_intervals_between", "macro_sql": "{% macro default__get_intervals_between(start_date, end_date, datepart) -%}\n {%- call statement('get_intervals_between', fetch_result=True) %}\n\n select {{ datediff(start_date, end_date, datepart) }}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_intervals_between') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values[0]) }}\n {%- else -%}\n {{ return(1) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.064828, "supported_languages": null}, "macro.dbt_utils.date_spine": {"name": "date_spine", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.date_spine", "macro_sql": "{% macro date_spine(datepart, start_date, end_date) %}\n {{ return(adapter.dispatch('date_spine', 'dbt_utils')(datepart, start_date, end_date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0654073, "supported_languages": null}, "macro.dbt_utils.default__date_spine": {"name": "default__date_spine", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.default__date_spine", "macro_sql": "{% macro default__date_spine(datepart, start_date, end_date) %}\n\n\n{# call as follows:\n\ndate_spine(\n \"day\",\n \"to_date('01/01/2016', 'mm/dd/yyyy')\",\n \"dateadd(week, 1, current_date)\"\n) #}\n\n\nwith rawdata as (\n\n {{dbt_utils.generate_series(\n dbt_utils.get_intervals_between(start_date, end_date, datepart)\n )}}\n\n),\n\nall_periods as (\n\n select (\n {{\n dateadd(\n datepart,\n \"row_number() over (order by 1) - 1\",\n start_date\n )\n }}\n ) as date_{{datepart}}\n from rawdata\n\n),\n\nfiltered as (\n\n select *\n from all_periods\n where date_{{datepart}} <= {{ end_date }}\n\n)\n\nselect * from filtered\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.generate_series", "macro.dbt_utils.get_intervals_between", "macro.dbt_utils.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0662506, "supported_languages": null}, "macro.dbt_utils.deduplicate": {"name": "deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.deduplicate", "macro_sql": "{%- macro deduplicate(relation, partition_by, order_by=none, relation_alias=none) -%}\n\n {%- set error_message_group_by -%}\nWarning: the `group_by` parameter of the `deduplicate` macro is no longer supported and will be deprecated in a future release of dbt-utils.\nUse `partition_by` instead.\nThe {{ model.package_name }}.{{ model.name }} model triggered this warning.\n {%- endset -%}\n\n {% if kwargs.get('group_by') %}\n {%- do exceptions.warn(error_message_group_by) -%}\n {%- endif -%}\n\n {%- set error_message_order_by -%}\nWarning: `order_by` as an optional parameter of the `deduplicate` macro is no longer supported and will be deprecated in a future release of dbt-utils.\nSupply a non-null value for `order_by` instead.\nThe {{ model.package_name }}.{{ model.name }} model triggered this warning.\n {%- endset -%}\n\n {% if not order_by %}\n {%- do exceptions.warn(error_message_order_by) -%}\n {%- endif -%}\n\n {%- set error_message_alias -%}\nWarning: the `relation_alias` parameter of the `deduplicate` macro is no longer supported and will be deprecated in a future release of dbt-utils.\nIf you were using `relation_alias` to point to a CTE previously then you can now pass the alias directly to `relation` instead.\nThe {{ model.package_name }}.{{ model.name }} model triggered this warning.\n {%- endset -%}\n\n {% if relation_alias %}\n {%- do exceptions.warn(error_message_alias) -%}\n {%- endif -%}\n\n {% set partition_by = partition_by or kwargs.get('group_by') %}\n {% set relation = relation_alias or relation %}\n {% set order_by = order_by or \"'1'\" %}\n\n {{ return(adapter.dispatch('deduplicate', 'dbt_utils')(relation, partition_by, order_by)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0708435, "supported_languages": null}, "macro.dbt_utils.default__deduplicate": {"name": "default__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.default__deduplicate", "macro_sql": "\n\n{%- macro default__deduplicate(relation, partition_by, order_by) -%}\n\n with row_numbered as (\n select\n _inner.*,\n row_number() over (\n partition by {{ partition_by }}\n order by {{ order_by }}\n ) as rn\n from {{ relation }} as _inner\n )\n\n select\n distinct data.*\n from {{ relation }} as data\n {#\n -- Not all DBs will support natural joins but the ones that do include:\n -- Oracle, MySQL, SQLite, Redshift, Teradata, Materialize, Databricks\n -- Apache Spark, SingleStore, Vertica\n -- Those that do not appear to support natural joins include:\n -- SQLServer, Trino, Presto, Rockset, Athena\n #}\n natural join row_numbered\n where row_numbered.rn = 1\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0714052, "supported_languages": null}, "macro.dbt_utils.redshift__deduplicate": {"name": "redshift__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.redshift__deduplicate", "macro_sql": "{% macro redshift__deduplicate(relation, partition_by, order_by) -%}\n\n {{ return(dbt_utils.default__deduplicate(relation, partition_by, order_by=order_by)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.071852, "supported_languages": null}, "macro.dbt_utils.postgres__deduplicate": {"name": "postgres__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.postgres__deduplicate", "macro_sql": "\n{%- macro postgres__deduplicate(relation, partition_by, order_by) -%}\n\n select\n distinct on ({{ partition_by }}) *\n from {{ relation }}\n order by {{ partition_by }}{{ ',' ~ order_by }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0723565, "supported_languages": null}, "macro.dbt_utils.snowflake__deduplicate": {"name": "snowflake__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.snowflake__deduplicate", "macro_sql": "\n{%- macro snowflake__deduplicate(relation, partition_by, order_by) -%}\n\n select *\n from {{ relation }}\n qualify\n row_number() over (\n partition by {{ partition_by }}\n order by {{ order_by }}\n ) = 1\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0727265, "supported_languages": null}, "macro.dbt_utils.bigquery__deduplicate": {"name": "bigquery__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.bigquery__deduplicate", "macro_sql": "\n{%- macro bigquery__deduplicate(relation, partition_by, order_by) -%}\n\n select unique.*\n from (\n select\n array_agg (\n original\n order by {{ order_by }}\n limit 1\n )[offset(0)] unique\n from {{ relation }} original\n group by {{ partition_by }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0731282, "supported_languages": null}, "macro.dbt_utils.get_powers_of_two": {"name": "get_powers_of_two", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.get_powers_of_two", "macro_sql": "{% macro get_powers_of_two(upper_bound) %}\n {{ return(adapter.dispatch('get_powers_of_two', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.074662, "supported_languages": null}, "macro.dbt_utils.default__get_powers_of_two": {"name": "default__get_powers_of_two", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.default__get_powers_of_two", "macro_sql": "{% macro default__get_powers_of_two(upper_bound) %}\n\n {% if upper_bound <= 0 %}\n {{ exceptions.raise_compiler_error(\"upper bound must be positive\") }}\n {% endif %}\n\n {% for _ in range(1, 100) %}\n {% if upper_bound <= 2 ** loop.index %}{{ return(loop.index) }}{% endif %}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0756402, "supported_languages": null}, "macro.dbt_utils.generate_series": {"name": "generate_series", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.generate_series", "macro_sql": "{% macro generate_series(upper_bound) %}\n {{ return(adapter.dispatch('generate_series', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__generate_series"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0760489, "supported_languages": null}, "macro.dbt_utils.default__generate_series": {"name": "default__generate_series", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.default__generate_series", "macro_sql": "{% macro default__generate_series(upper_bound) %}\n\n {% set n = dbt_utils.get_powers_of_two(upper_bound) %}\n\n with p as (\n select 0 as generated_number union all select 1\n ), unioned as (\n\n select\n\n {% for i in range(n) %}\n p{{i}}.generated_number * power(2, {{i}})\n {% if not loop.last %} + {% endif %}\n {% endfor %}\n + 1\n as generated_number\n\n from\n\n {% for i in range(n) %}\n p as p{{i}}\n {% if not loop.last %} cross join {% endif %}\n {% endfor %}\n\n )\n\n select *\n from unioned\n where generated_number <= {{upper_bound}}\n order by generated_number\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0772543, "supported_languages": null}, "macro.dbt_utils.get_column_values": {"name": "get_column_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "unique_id": "macro.dbt_utils.get_column_values", "macro_sql": "{% macro get_column_values(table, column, order_by='count(*) desc', max_records=none, default=none, where=none) -%}\n {{ return(adapter.dispatch('get_column_values', 'dbt_utils')(table, column, order_by, max_records, default, where)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_column_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.079298, "supported_languages": null}, "macro.dbt_utils.default__get_column_values": {"name": "default__get_column_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "unique_id": "macro.dbt_utils.default__get_column_values", "macro_sql": "{% macro default__get_column_values(table, column, order_by='count(*) desc', max_records=none, default=none, where=none) -%}\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n {%- if not execute -%}\n {% set default = [] if not default %}\n {{ return(default) }}\n {% endif %}\n\n {%- do dbt_utils._is_ephemeral(table, 'get_column_values') -%}\n\n {# Not all relations are tables. Renaming for internal clarity without breaking functionality for anyone using named arguments #}\n {# TODO: Change the method signature in a future 0.x.0 release #}\n {%- set target_relation = table -%}\n\n {# adapter.load_relation is a convenience wrapper to avoid building a Relation when we already have one #}\n {% set relation_exists = (load_relation(target_relation)) is not none %}\n\n {%- call statement('get_column_values', fetch_result=true) %}\n\n {%- if not relation_exists and default is none -%}\n\n {{ exceptions.raise_compiler_error(\"In get_column_values(): relation \" ~ target_relation ~ \" does not exist and no default value was provided.\") }}\n\n {%- elif not relation_exists and default is not none -%}\n\n {{ log(\"Relation \" ~ target_relation ~ \" does not exist. Returning the default value: \" ~ default) }}\n\n {{ return(default) }}\n\n {%- else -%}\n\n\n select\n {{ column }} as value\n\n from {{ target_relation }}\n\n {% if where is not none %}\n where {{ where }}\n {% endif %}\n\n group by {{ column }}\n order by {{ order_by }}\n\n {% if max_records is not none %}\n limit {{ max_records }}\n {% endif %}\n\n {% endif %}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_column_values') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values) }}\n {%- else -%}\n {{ return(default) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_ephemeral", "macro.dbt.load_relation", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0829873, "supported_languages": null}, "macro.dbt_utils.get_filtered_columns_in_relation": {"name": "get_filtered_columns_in_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "unique_id": "macro.dbt_utils.get_filtered_columns_in_relation", "macro_sql": "{% macro get_filtered_columns_in_relation(from, except=[]) -%}\n {{ return(adapter.dispatch('get_filtered_columns_in_relation', 'dbt_utils')(from, except)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_filtered_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0840328, "supported_languages": null}, "macro.dbt_utils.default__get_filtered_columns_in_relation": {"name": "default__get_filtered_columns_in_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "unique_id": "macro.dbt_utils.default__get_filtered_columns_in_relation", "macro_sql": "{% macro default__get_filtered_columns_in_relation(from, except=[]) -%}\n {%- do dbt_utils._is_relation(from, 'get_filtered_columns_in_relation') -%}\n {%- do dbt_utils._is_ephemeral(from, 'get_filtered_columns_in_relation') -%}\n\n {# -- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n {%- if not execute -%}\n {{ return('') }}\n {% endif %}\n\n {%- set include_cols = [] %}\n {%- set cols = adapter.get_columns_in_relation(from) -%}\n {%- set except = except | map(\"lower\") | list %}\n {%- for col in cols -%}\n {%- if col.column|lower not in except -%}\n {% do include_cols.append(col.column) %}\n {%- endif %}\n {%- endfor %}\n\n {{ return(include_cols) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0857413, "supported_languages": null}, "macro.dbt_utils.get_query_results_as_dict": {"name": "get_query_results_as_dict", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "unique_id": "macro.dbt_utils.get_query_results_as_dict", "macro_sql": "{% macro get_query_results_as_dict(query) %}\n {{ return(adapter.dispatch('get_query_results_as_dict', 'dbt_utils')(query)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_query_results_as_dict"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0865748, "supported_languages": null}, "macro.dbt_utils.default__get_query_results_as_dict": {"name": "default__get_query_results_as_dict", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "unique_id": "macro.dbt_utils.default__get_query_results_as_dict", "macro_sql": "{% macro default__get_query_results_as_dict(query) %}\n\n{# This macro returns a dictionary of the form {column_name: (tuple_of_results)} #}\n\n {%- call statement('get_query_results', fetch_result=True,auto_begin=false) -%}\n\n {{ query }}\n\n {%- endcall -%}\n\n {% set sql_results={} %}\n\n {%- if execute -%}\n {% set sql_results_table = load_result('get_query_results').table.columns %}\n {% for column_name, column in sql_results_table.items() %}\n {% do sql_results.update({column_name: column.values()}) %}\n {% endfor %}\n {%- endif -%}\n\n {{ return(sql_results) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0879166, "supported_languages": null}, "macro.dbt_utils.get_relations_by_pattern": {"name": "get_relations_by_pattern", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "unique_id": "macro.dbt_utils.get_relations_by_pattern", "macro_sql": "{% macro get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_relations_by_pattern', 'dbt_utils')(schema_pattern, table_pattern, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.089231, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_pattern": {"name": "default__get_relations_by_pattern", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "unique_id": "macro.dbt_utils.default__get_relations_by_pattern", "macro_sql": "{% macro default__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n {{ dbt_utils.get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude, database) }}\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=database,\n schema=row.table_schema,\n identifier=row.table_name,\n type=row.table_type\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0911539, "supported_languages": null}, "macro.dbt_utils.get_relations_by_prefix": {"name": "get_relations_by_prefix", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "unique_id": "macro.dbt_utils.get_relations_by_prefix", "macro_sql": "{% macro get_relations_by_prefix(schema, prefix, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_relations_by_prefix', 'dbt_utils')(schema, prefix, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_prefix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0924778, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_prefix": {"name": "default__get_relations_by_prefix", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "unique_id": "macro.dbt_utils.default__get_relations_by_prefix", "macro_sql": "{% macro default__get_relations_by_prefix(schema, prefix, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n {{ dbt_utils.get_tables_by_prefix_sql(schema, prefix, exclude, database) }}\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=database,\n schema=row.table_schema,\n identifier=row.table_name,\n type=row.table_type\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.094429, "supported_languages": null}, "macro.dbt_utils.get_table_types_sql": {"name": "get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.get_table_types_sql", "macro_sql": "{%- macro get_table_types_sql() -%}\n {{ return(adapter.dispatch('get_table_types_sql', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.default__get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.095218, "supported_languages": null}, "macro.dbt_utils.default__get_table_types_sql": {"name": "default__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.default__get_table_types_sql", "macro_sql": "{% macro default__get_table_types_sql() %}\n case table_type\n when 'BASE TABLE' then 'table'\n when 'EXTERNAL TABLE' then 'external'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0955338, "supported_languages": null}, "macro.dbt_utils.postgres__get_table_types_sql": {"name": "postgres__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.postgres__get_table_types_sql", "macro_sql": "{% macro postgres__get_table_types_sql() %}\n case table_type\n when 'BASE TABLE' then 'table'\n when 'FOREIGN' then 'external'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0958304, "supported_languages": null}, "macro.dbt_utils.get_tables_by_pattern_sql": {"name": "get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.get_tables_by_pattern_sql", "macro_sql": "{% macro get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_tables_by_pattern_sql', 'dbt_utils')\n (schema_pattern, table_pattern, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0987062, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_pattern_sql": {"name": "default__get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.default__get_tables_by_pattern_sql", "macro_sql": "{% macro default__get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n select distinct\n table_schema as {{ adapter.quote('table_schema') }},\n table_name as {{ adapter.quote('table_name') }},\n {{ dbt_utils.get_table_types_sql() }}\n from {{ database }}.information_schema.tables\n where table_schema ilike '{{ schema_pattern }}'\n and table_name ilike '{{ table_pattern }}'\n and table_name not ilike '{{ exclude }}'\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.0995808, "supported_languages": null}, "macro.dbt_utils.bigquery__get_tables_by_pattern_sql": {"name": "bigquery__get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.bigquery__get_tables_by_pattern_sql", "macro_sql": "{% macro bigquery__get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {% if '%' in schema_pattern %}\n {% set schemata=dbt_utils._bigquery__get_matching_schemata(schema_pattern, database) %}\n {% else %}\n {% set schemata=[schema_pattern] %}\n {% endif %}\n\n {% set sql %}\n {% for schema in schemata %}\n select distinct\n table_schema,\n table_name,\n {{ dbt_utils.get_table_types_sql() }}\n\n from {{ adapter.quote(database) }}.{{ schema }}.INFORMATION_SCHEMA.TABLES\n where lower(table_name) like lower ('{{ table_pattern }}')\n and lower(table_name) not like lower ('{{ exclude }}')\n\n {% if not loop.last %} union all {% endif %}\n\n {% endfor %}\n {% endset %}\n\n {{ return(sql) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._bigquery__get_matching_schemata", "macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1012864, "supported_languages": null}, "macro.dbt_utils._bigquery__get_matching_schemata": {"name": "_bigquery__get_matching_schemata", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils._bigquery__get_matching_schemata", "macro_sql": "{% macro _bigquery__get_matching_schemata(schema_pattern, database) %}\n {% if execute %}\n\n {% set sql %}\n select schema_name from {{ adapter.quote(database) }}.INFORMATION_SCHEMA.SCHEMATA\n where lower(schema_name) like lower('{{ schema_pattern }}')\n {% endset %}\n\n {% set results=run_query(sql) %}\n\n {% set schemata=results.columns['schema_name'].values() %}\n\n {{ return(schemata) }}\n\n {% else %}\n\n {{ return([]) }}\n\n {% endif %}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1026378, "supported_languages": null}, "macro.dbt_utils.get_tables_by_prefix_sql": {"name": "get_tables_by_prefix_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "unique_id": "macro.dbt_utils.get_tables_by_prefix_sql", "macro_sql": "{% macro get_tables_by_prefix_sql(schema, prefix, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_tables_by_prefix_sql', 'dbt_utils')(schema, prefix, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1035554, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_prefix_sql": {"name": "default__get_tables_by_prefix_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "unique_id": "macro.dbt_utils.default__get_tables_by_prefix_sql", "macro_sql": "{% macro default__get_tables_by_prefix_sql(schema, prefix, exclude='', database=target.database) %}\n\n {{ dbt_utils.get_tables_by_pattern_sql(\n schema_pattern = schema,\n table_pattern = prefix ~ '%',\n exclude = exclude,\n database = database\n ) }}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1042185, "supported_languages": null}, "macro.dbt_utils.group_by": {"name": "group_by", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "unique_id": "macro.dbt_utils.group_by", "macro_sql": "{%- macro group_by(n) -%}\n {{ return(adapter.dispatch('group_by', 'dbt_utils')(n)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__group_by"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1048088, "supported_languages": null}, "macro.dbt_utils.default__group_by": {"name": "default__group_by", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "unique_id": "macro.dbt_utils.default__group_by", "macro_sql": "\n\n{%- macro default__group_by(n) -%}\n\n group by {% for i in range(1, n + 1) -%}\n {{ i }}{{ ',' if not loop.last }} \n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1054664, "supported_languages": null}, "macro.dbt_utils.degrees_to_radians": {"name": "degrees_to_radians", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.degrees_to_radians", "macro_sql": "{% macro degrees_to_radians(degrees) -%}\n acos(-1) * {{degrees}} / 180\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1073232, "supported_languages": null}, "macro.dbt_utils.haversine_distance": {"name": "haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.haversine_distance", "macro_sql": "{% macro haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n {{ return(adapter.dispatch('haversine_distance', 'dbt_utils')(lat1,lon1,lat2,lon2,unit)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__haversine_distance"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.10794, "supported_languages": null}, "macro.dbt_utils.default__haversine_distance": {"name": "default__haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.default__haversine_distance", "macro_sql": "{% macro default__haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n{%- if unit == 'mi' %}\n {% set conversion_rate = 1 %}\n{% elif unit == 'km' %}\n {% set conversion_rate = 1.60934 %}\n{% else %}\n {{ exceptions.raise_compiler_error(\"unit input must be one of 'mi' or 'km'. Got \" ~ unit) }}\n{% endif %}\n\n 2 * 3961 * asin(sqrt(power((sin(radians(({{ lat2 }} - {{ lat1 }}) / 2))), 2) +\n cos(radians({{lat1}})) * cos(radians({{lat2}})) *\n power((sin(radians(({{ lon2 }} - {{ lon1 }}) / 2))), 2))) * {{ conversion_rate }}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.109264, "supported_languages": null}, "macro.dbt_utils.bigquery__haversine_distance": {"name": "bigquery__haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.bigquery__haversine_distance", "macro_sql": "{% macro bigquery__haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n{% set radians_lat1 = dbt_utils.degrees_to_radians(lat1) %}\n{% set radians_lat2 = dbt_utils.degrees_to_radians(lat2) %}\n{% set radians_lon1 = dbt_utils.degrees_to_radians(lon1) %}\n{% set radians_lon2 = dbt_utils.degrees_to_radians(lon2) %}\n{%- if unit == 'mi' %}\n {% set conversion_rate = 1 %}\n{% elif unit == 'km' %}\n {% set conversion_rate = 1.60934 %}\n{% else %}\n {{ exceptions.raise_compiler_error(\"unit input must be one of 'mi' or 'km'. Got \" ~ unit) }}\n{% endif %}\n 2 * 3961 * asin(sqrt(power(sin(({{ radians_lat2 }} - {{ radians_lat1 }}) / 2), 2) +\n cos({{ radians_lat1 }}) * cos({{ radians_lat2 }}) *\n power(sin(({{ radians_lon2 }} - {{ radians_lon1 }}) / 2), 2))) * {{ conversion_rate }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.degrees_to_radians"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1111453, "supported_languages": null}, "macro.dbt_utils.nullcheck": {"name": "nullcheck", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "unique_id": "macro.dbt_utils.nullcheck", "macro_sql": "{% macro nullcheck(cols) %}\n {{ return(adapter.dispatch('nullcheck', 'dbt_utils')(cols)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.11187, "supported_languages": null}, "macro.dbt_utils.default__nullcheck": {"name": "default__nullcheck", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "unique_id": "macro.dbt_utils.default__nullcheck", "macro_sql": "{% macro default__nullcheck(cols) %}\n{%- for col in cols %}\n\n {% if col.is_string() -%}\n\n nullif({{col.name}},'') as {{col.name}}\n\n {%- else -%}\n\n {{col.name}}\n\n {%- endif -%}\n\n{%- if not loop.last -%} , {%- endif -%}\n\n{%- endfor -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.112685, "supported_languages": null}, "macro.dbt_utils.nullcheck_table": {"name": "nullcheck_table", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "unique_id": "macro.dbt_utils.nullcheck_table", "macro_sql": "{% macro nullcheck_table(relation) %}\n {{ return(adapter.dispatch('nullcheck_table', 'dbt_utils')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1134048, "supported_languages": null}, "macro.dbt_utils.default__nullcheck_table": {"name": "default__nullcheck_table", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "unique_id": "macro.dbt_utils.default__nullcheck_table", "macro_sql": "{% macro default__nullcheck_table(relation) %}\n\n {%- do dbt_utils._is_relation(relation, 'nullcheck_table') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'nullcheck_table') -%}\n {% set cols = adapter.get_columns_in_relation(relation) %}\n\n select {{ dbt_utils.nullcheck(cols) }}\n from {{relation}}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1142042, "supported_languages": null}, "macro.dbt_utils.pivot": {"name": "pivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "unique_id": "macro.dbt_utils.pivot", "macro_sql": "{% macro pivot(column,\n values,\n alias=True,\n agg='sum',\n cmp='=',\n prefix='',\n suffix='',\n then_value=1,\n else_value=0,\n quote_identifiers=True,\n distinct=False) %}\n {{ return(adapter.dispatch('pivot', 'dbt_utils')(column, values, alias, agg, cmp, prefix, suffix, then_value, else_value, quote_identifiers, distinct)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1161966, "supported_languages": null}, "macro.dbt_utils.default__pivot": {"name": "default__pivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "unique_id": "macro.dbt_utils.default__pivot", "macro_sql": "{% macro default__pivot(column,\n values,\n alias=True,\n agg='sum',\n cmp='=',\n prefix='',\n suffix='',\n then_value=1,\n else_value=0,\n quote_identifiers=True,\n distinct=False) %}\n {% for value in values %}\n {{ agg }}(\n {% if distinct %} distinct {% endif %}\n case\n when {{ column }} {{ cmp }} '{{ dbt_utils.escape_single_quotes(value) }}'\n then {{ then_value }}\n else {{ else_value }}\n end\n )\n {% if alias %}\n {% if quote_identifiers %}\n as {{ adapter.quote(prefix ~ value ~ suffix) }}\n {% else %}\n as {{ dbt_utils.slugify(prefix ~ value ~ suffix) }}\n {% endif %}\n {% endif %}\n {% if not loop.last %},{% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.escape_single_quotes", "macro.dbt_utils.slugify"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1182857, "supported_languages": null}, "macro.dbt_utils.safe_add": {"name": "safe_add", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "unique_id": "macro.dbt_utils.safe_add", "macro_sql": "{%- macro safe_add() -%}\n {# needed for safe_add to allow for non-keyword arguments see SO post #}\n {# https://stackoverflow.com/questions/13944751/args-kwargs-in-jinja2-macros #}\n {% set frustrating_jinja_feature = varargs %}\n {{ return(adapter.dispatch('safe_add', 'dbt_utils')(*varargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_add"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1191645, "supported_languages": null}, "macro.dbt_utils.default__safe_add": {"name": "default__safe_add", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "unique_id": "macro.dbt_utils.default__safe_add", "macro_sql": "\n\n{%- macro default__safe_add() -%}\n\n{% set fields = [] %}\n\n{%- for field in varargs -%}\n\n {% do fields.append(\"coalesce(\" ~ field ~ \", 0)\") %}\n\n{%- endfor -%}\n\n{{ fields|join(' +\\n ') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1198106, "supported_languages": null}, "macro.dbt_utils.star": {"name": "star", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "unique_id": "macro.dbt_utils.star", "macro_sql": "{% macro star(from, relation_alias=False, except=[], prefix='', suffix='') -%}\n {{ return(adapter.dispatch('star', 'dbt_utils')(from, relation_alias, except, prefix, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__star"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.121195, "supported_languages": null}, "macro.dbt_utils.default__star": {"name": "default__star", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "unique_id": "macro.dbt_utils.default__star", "macro_sql": "{% macro default__star(from, relation_alias=False, except=[], prefix='', suffix='') -%}\n {%- do dbt_utils._is_relation(from, 'star') -%}\n {%- do dbt_utils._is_ephemeral(from, 'star') -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n {%- if not execute -%}\n {{ return('*') }}\n {%- endif -%}\n\n {% set cols = dbt_utils.get_filtered_columns_in_relation(from, except) %}\n\n {%- if cols|length <= 0 -%}\n {{- return('*') -}}\n {%- else -%}\n {%- for col in cols %}\n {%- if relation_alias %}{{ relation_alias }}.{% else %}{%- endif -%}{{ adapter.quote(col)|trim }} {%- if prefix!='' or suffix!='' %} as {{ adapter.quote(prefix ~ col ~ suffix)|trim }} {%- endif -%}\n {%- if not loop.last %},{{ '\\n ' }}{% endif %}\n {%- endfor -%}\n {% endif %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.get_filtered_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.123485, "supported_languages": null}, "macro.dbt_utils.surrogate_key": {"name": "surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "unique_id": "macro.dbt_utils.surrogate_key", "macro_sql": "{%- macro surrogate_key(field_list) -%}\n {# needed for safe_add to allow for non-keyword arguments see SO post #}\n {# https://stackoverflow.com/questions/13944751/args-kwargs-in-jinja2-macros #}\n {% set frustrating_jinja_feature = varargs %}\n {{ return(adapter.dispatch('surrogate_key', 'dbt_utils')(field_list, *varargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1246884, "supported_languages": null}, "macro.dbt_utils.default__surrogate_key": {"name": "default__surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "unique_id": "macro.dbt_utils.default__surrogate_key", "macro_sql": "\n\n{%- macro default__surrogate_key(field_list) -%}\n\n{%- if varargs|length >= 1 or field_list is string %}\n\n{%- set error_message = '\nWarning: the `surrogate_key` macro now takes a single list argument instead of \\\nmultiple string arguments. Support for multiple string arguments will be \\\ndeprecated in a future release of dbt-utils. The {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.warn(error_message) -%}\n\n{# first argument is not included in varargs, so add first element to field_list_xf #}\n{%- set field_list_xf = [field_list] -%}\n\n{%- for field in varargs %}\n{%- set _ = field_list_xf.append(field) -%}\n{%- endfor -%}\n\n{%- else -%}\n\n{# if using list, just set field_list_xf as field_list #}\n{%- set field_list_xf = field_list -%}\n\n{%- endif -%}\n\n\n{%- set fields = [] -%}\n\n{%- for field in field_list_xf -%}\n\n {%- set _ = fields.append(\n \"coalesce(cast(\" ~ field ~ \" as \" ~ type_string() ~ \"), '')\"\n ) -%}\n\n {%- if not loop.last %}\n {%- set _ = fields.append(\"'-'\") -%}\n {%- endif -%}\n\n{%- endfor -%}\n\n{{ hash(concat(fields)) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.type_string", "macro.dbt_utils.hash", "macro.dbt_utils.concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.126791, "supported_languages": null}, "macro.dbt_utils.union_relations": {"name": "union_relations", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "unique_id": "macro.dbt_utils.union_relations", "macro_sql": "{%- macro union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}\n {{ return(adapter.dispatch('union_relations', 'dbt_utils')(relations, column_override, include, exclude, source_column_name, where)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1312776, "supported_languages": null}, "macro.dbt_utils.default__union_relations": {"name": "default__union_relations", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "unique_id": "macro.dbt_utils.default__union_relations", "macro_sql": "\n\n{%- macro default__union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}\n\n {%- if exclude and include -%}\n {{ exceptions.raise_compiler_error(\"Both an exclude and include list were provided to the `union` macro. Only one is allowed\") }}\n {%- endif -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. -#}\n {%- if not execute %}\n {{ return('') }}\n {% endif -%}\n\n {%- set column_override = column_override if column_override is not none else {} -%}\n\n {%- set relation_columns = {} -%}\n {%- set column_superset = {} -%}\n\n {%- for relation in relations -%}\n\n {%- do relation_columns.update({relation: []}) -%}\n\n {%- do dbt_utils._is_relation(relation, 'union_relations') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'union_relations') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) -%}\n {%- for col in cols -%}\n\n {#- If an exclude list was provided and the column is in the list, do nothing -#}\n {%- if exclude and col.column in exclude -%}\n\n {#- If an include list was provided and the column is not in the list, do nothing -#}\n {%- elif include and col.column not in include -%}\n\n {#- Otherwise add the column to the column superset -#}\n {%- else -%}\n\n {#- update the list of columns in this relation -#}\n {%- do relation_columns[relation].append(col.column) -%}\n\n {%- if col.column in column_superset -%}\n\n {%- set stored = column_superset[col.column] -%}\n {%- if col.is_string() and stored.is_string() and col.string_size() > stored.string_size() -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif %}\n\n {%- else -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif -%}\n\n {%- endif -%}\n\n {%- endfor -%}\n {%- endfor -%}\n\n {%- set ordered_column_names = column_superset.keys() -%}\n {%- set dbt_command = flags.WHICH -%}\n\n\n {% if dbt_command in ['run', 'build'] %}\n {% if (include | length > 0 or exclude | length > 0) and not column_superset.keys() %}\n {%- set relations_string -%}\n {%- for relation in relations -%}\n {{ relation.name }}\n {%- if not loop.last %}, {% endif -%}\n {%- endfor -%}\n {%- endset -%}\n\n {%- set error_message -%}\n There were no columns found to union for relations {{ relations_string }}\n {%- endset -%}\n\n {{ exceptions.raise_compiler_error(error_message) }}\n {%- endif -%}\n {%- endif -%}\n\n {%- for relation in relations %}\n\n (\n select\n\n {%- if source_column_name is not none %}\n cast({{ string_literal(relation) }} as {{ type_string() }}) as {{ source_column_name }},\n {%- endif %}\n\n {% for col_name in ordered_column_names -%}\n\n {%- set col = column_superset[col_name] %}\n {%- set col_type = column_override.get(col.column, col.data_type) %}\n {%- set col_name = adapter.quote(col_name) if col_name in relation_columns[relation] else 'null' %}\n cast({{ col_name }} as {{ col_type }}) as {{ col.quoted }} {% if not loop.last %},{% endif -%}\n\n {%- endfor %}\n\n from {{ relation }}\n\n {% if where -%}\n where {{ where }}\n {%- endif %}\n )\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.string_literal", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1384442, "supported_languages": null}, "macro.dbt_utils.unpivot": {"name": "unpivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "unique_id": "macro.dbt_utils.unpivot", "macro_sql": "{% macro unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value', table=none) -%}\n {{ return(adapter.dispatch('unpivot', 'dbt_utils')(relation, cast_to, exclude, remove, field_name, value_name, table)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__unpivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1417222, "supported_languages": null}, "macro.dbt_utils.default__unpivot": {"name": "default__unpivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "unique_id": "macro.dbt_utils.default__unpivot", "macro_sql": "{% macro default__unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value', table=none) -%}\n\n {% if table %}\n {%- set error_message = '\n Warning: the `unpivot` macro no longer accepts a `table` parameter. \\\n This parameter will be deprecated in a future release of dbt-utils. Use the `relation` parameter instead. \\\n The {}.{} model triggered this warning. \\\n '.format(model.package_name, model.name) -%}\n {%- do exceptions.warn(error_message) -%}\n {% endif %}\n\n {% if relation and table %}\n {{ exceptions.raise_compiler_error(\"Error: both the `relation` and `table` parameters were provided to `unpivot` macro. Choose one only (we recommend `relation`).\") }}\n {% elif not relation and table %}\n {% set relation=table %}\n {% elif not relation and not table %}\n {{ exceptions.raise_compiler_error(\"Error: argument `relation` is required for `unpivot` macro.\") }}\n {% endif %}\n\n {%- set exclude = exclude if exclude is not none else [] %}\n {%- set remove = remove if remove is not none else [] %}\n\n {%- set include_cols = [] %}\n\n {%- set table_columns = {} %}\n\n {%- do table_columns.update({relation: []}) %}\n\n {%- do dbt_utils._is_relation(relation, 'unpivot') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'unpivot') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) %}\n\n {%- for col in cols -%}\n {%- if col.column.lower() not in remove|map('lower') and col.column.lower() not in exclude|map('lower') -%}\n {% do include_cols.append(col) %}\n {%- endif %}\n {%- endfor %}\n\n\n {%- for col in include_cols -%}\n select\n {%- for exclude_col in exclude %}\n {{ exclude_col }},\n {%- endfor %}\n\n cast('{{ col.column }}' as {{ type_string() }}) as {{ field_name }},\n cast( {% if col.data_type == 'boolean' %}\n {{ cast_bool_to_text(col.column) }}\n {% else %}\n {{ col.column }}\n {% endif %}\n as {{ cast_to }}) as {{ value_name }}\n\n from {{ relation }}\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n {%- endfor -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.type_string", "macro.dbt_utils.cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1466222, "supported_languages": null}, "macro.dbt_utils.width_bucket": {"name": "width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.width_bucket", "macro_sql": "{% macro width_bucket(expr, min_value, max_value, num_buckets) %}\n {{ return(adapter.dispatch('width_bucket', 'dbt_utils') (expr, min_value, max_value, num_buckets)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__width_bucket"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1491244, "supported_languages": null}, "macro.dbt_utils.default__width_bucket": {"name": "default__width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.default__width_bucket", "macro_sql": "{% macro default__width_bucket(expr, min_value, max_value, num_buckets) -%}\n\n {% set bin_size -%}\n (( {{ max_value }} - {{ min_value }} ) / {{ num_buckets }} )\n {%- endset %}\n (\n -- to break ties when the amount is eaxtly at the bucket egde\n case\n when\n mod(\n {{ dbt.safe_cast(expr, type_numeric() ) }},\n {{ dbt.safe_cast(bin_size, type_numeric() ) }}\n ) = 0\n then 1\n else 0\n end\n ) +\n -- Anything over max_value goes the N+1 bucket\n least(\n ceil(\n ({{ expr }} - {{ min_value }})/{{ bin_size }}\n ),\n {{ num_buckets }} + 1\n )\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.safe_cast", "macro.dbt_utils.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1501744, "supported_languages": null}, "macro.dbt_utils.redshift__width_bucket": {"name": "redshift__width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.redshift__width_bucket", "macro_sql": "{% macro redshift__width_bucket(expr, min_value, max_value, num_buckets) -%}\n\n {% set bin_size -%}\n (( {{ max_value }} - {{ min_value }} ) / {{ num_buckets }} )\n {%- endset %}\n (\n -- to break ties when the amount is exactly at the bucket edge\n case\n when\n {{ dbt.safe_cast(expr, type_numeric() ) }} %\n {{ dbt.safe_cast(bin_size, type_numeric() ) }}\n = 0\n then 1\n else 0\n end\n ) +\n -- Anything over max_value goes the N+1 bucket\n least(\n ceil(\n ({{ expr }} - {{ min_value }})/{{ bin_size }}\n ),\n {{ num_buckets }} + 1\n )\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.safe_cast", "macro.dbt_utils.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1511912, "supported_languages": null}, "macro.dbt_utils.snowflake__width_bucket": {"name": "snowflake__width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.snowflake__width_bucket", "macro_sql": "{% macro snowflake__width_bucket(expr, min_value, max_value, num_buckets) %}\n width_bucket({{ expr }}, {{ min_value }}, {{ max_value }}, {{ num_buckets }} )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1516218, "supported_languages": null}, "macro.dbt_utils.get_url_host": {"name": "get_url_host", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "unique_id": "macro.dbt_utils.get_url_host", "macro_sql": "{% macro get_url_host(field) -%}\n {{ return(adapter.dispatch('get_url_host', 'dbt_utils')(field)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_host"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1523964, "supported_languages": null}, "macro.dbt_utils.default__get_url_host": {"name": "default__get_url_host", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "unique_id": "macro.dbt_utils.default__get_url_host", "macro_sql": "{% macro default__get_url_host(field) -%}\n\n{%- set parsed =\n split_part(\n split_part(\n replace(\n replace(\n replace(field, \"'android-app://'\", \"''\"\n ), \"'http://'\", \"''\"\n ), \"'https://'\", \"''\"\n ), \"'/'\", 1\n ), \"'?'\", 1\n )\n\n-%}\n\n\n {{ dbt.safe_cast(\n parsed,\n type_string()\n )}}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.split_part", "macro.dbt_utils.replace", "macro.dbt.safe_cast", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1533477, "supported_languages": null}, "macro.dbt_utils.get_url_parameter": {"name": "get_url_parameter", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "unique_id": "macro.dbt_utils.get_url_parameter", "macro_sql": "{% macro get_url_parameter(field, url_parameter) -%}\n {{ return(adapter.dispatch('get_url_parameter', 'dbt_utils')(field, url_parameter)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_parameter"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1539924, "supported_languages": null}, "macro.dbt_utils.default__get_url_parameter": {"name": "default__get_url_parameter", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "unique_id": "macro.dbt_utils.default__get_url_parameter", "macro_sql": "{% macro default__get_url_parameter(field, url_parameter) -%}\n\n{%- set formatted_url_parameter = \"'\" + url_parameter + \"='\" -%}\n\n{%- set split = split_part(split_part(field, formatted_url_parameter, 2), \"'&'\", 1) -%}\n\nnullif({{ split }},'')\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1547294, "supported_languages": null}, "macro.dbt_utils.get_url_path": {"name": "get_url_path", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "unique_id": "macro.dbt_utils.get_url_path", "macro_sql": "{% macro get_url_path(field) -%}\n {{ return(adapter.dispatch('get_url_path', 'dbt_utils')(field)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_path"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.155631, "supported_languages": null}, "macro.dbt_utils.default__get_url_path": {"name": "default__get_url_path", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "unique_id": "macro.dbt_utils.default__get_url_path", "macro_sql": "{% macro default__get_url_path(field) -%}\n\n {%- set stripped_url =\n replace(\n replace(field, \"'http://'\", \"''\"), \"'https://'\", \"''\")\n -%}\n\n {%- set first_slash_pos -%}\n coalesce(\n nullif({{ position(\"'/'\", stripped_url) }}, 0),\n {{ position(\"'?'\", stripped_url) }} - 1\n )\n {%- endset -%}\n\n {%- set parsed_path =\n split_part(\n right(\n stripped_url,\n length(stripped_url) ~ \"-\" ~ first_slash_pos\n ),\n \"'?'\", 1\n )\n -%}\n\n {{ safe_cast(\n parsed_path,\n type_string()\n )}}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.replace", "macro.dbt_utils.position", "macro.dbt_utils.split_part", "macro.dbt_utils.right", "macro.dbt_utils.length", "macro.dbt_utils.safe_cast", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1569672, "supported_languages": null}, "macro.spark_utils.get_tables": {"name": "get_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.get_tables", "macro_sql": "{% macro get_tables(table_regex_pattern='.*') %}\n\n {% set tables = [] %}\n {% for database in spark__list_schemas('not_used') %}\n {% for table in spark__list_relations_without_caching(database[0]) %}\n {% set db_tablename = database[0] ~ \".\" ~ table[1] %}\n {% set is_match = modules.re.match(table_regex_pattern, db_tablename) %}\n {% if is_match %}\n {% call statement('table_detail', fetch_result=True) -%}\n describe extended {{ db_tablename }}\n {% endcall %}\n\n {% set table_type = load_result('table_detail').table|reverse|selectattr(0, 'in', ('type', 'TYPE', 'Type'))|first %}\n {% if table_type[1]|lower != 'view' %}\n {{ tables.append(db_tablename) }}\n {% endif %}\n {% endif %}\n {% endfor %}\n {% endfor %}\n {{ return(tables) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__list_schemas", "macro.dbt_spark.spark__list_relations_without_caching", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1660528, "supported_languages": null}, "macro.spark_utils.get_delta_tables": {"name": "get_delta_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.get_delta_tables", "macro_sql": "{% macro get_delta_tables(table_regex_pattern='.*') %}\n\n {% set delta_tables = [] %}\n {% for db_tablename in get_tables(table_regex_pattern) %}\n {% call statement('table_detail', fetch_result=True) -%}\n describe extended {{ db_tablename }}\n {% endcall %}\n\n {% set table_type = load_result('table_detail').table|reverse|selectattr(0, 'in', ('provider', 'PROVIDER', 'Provider'))|first %}\n {% if table_type[1]|lower == 'delta' %}\n {{ delta_tables.append(db_tablename) }}\n {% endif %}\n {% endfor %}\n {{ return(delta_tables) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_tables", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.167872, "supported_languages": null}, "macro.spark_utils.get_statistic_columns": {"name": "get_statistic_columns", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.get_statistic_columns", "macro_sql": "{% macro get_statistic_columns(table) %}\n\n {% call statement('input_columns', fetch_result=True) %}\n SHOW COLUMNS IN {{ table }}\n {% endcall %}\n {% set input_columns = load_result('input_columns').table %}\n\n {% set output_columns = [] %}\n {% for column in input_columns %}\n {% call statement('column_information', fetch_result=True) %}\n DESCRIBE TABLE {{ table }} `{{ column[0] }}`\n {% endcall %}\n {% if not load_result('column_information').table[1][1].startswith('struct') and not load_result('column_information').table[1][1].startswith('array') %}\n {{ output_columns.append('`' ~ column[0] ~ '`') }}\n {% endif %}\n {% endfor %}\n {{ return(output_columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.169962, "supported_languages": null}, "macro.spark_utils.spark_optimize_delta_tables": {"name": "spark_optimize_delta_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.spark_optimize_delta_tables", "macro_sql": "{% macro spark_optimize_delta_tables(table_regex_pattern='.*') %}\n\n {% for table in get_delta_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Optimizing \" ~ table) }}\n {% do run_query(\"optimize \" ~ table) %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_delta_tables", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.171688, "supported_languages": null}, "macro.spark_utils.spark_vacuum_delta_tables": {"name": "spark_vacuum_delta_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.spark_vacuum_delta_tables", "macro_sql": "{% macro spark_vacuum_delta_tables(table_regex_pattern='.*') %}\n\n {% for table in get_delta_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Vacuuming \" ~ table) }}\n {% do run_query(\"vacuum \" ~ table) %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_delta_tables", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1734304, "supported_languages": null}, "macro.spark_utils.spark_analyze_tables": {"name": "spark_analyze_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.spark_analyze_tables", "macro_sql": "{% macro spark_analyze_tables(table_regex_pattern='.*') %}\n\n {% for table in get_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set columns = get_statistic_columns(table) | join(',') %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Analyzing \" ~ table) }}\n {% if columns != '' %}\n {% do run_query(\"analyze table \" ~ table ~ \" compute statistics for columns \" ~ columns) %}\n {% endif %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_tables", "macro.spark_utils.get_statistic_columns", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1755016, "supported_languages": null}, "macro.spark_utils.spark__concat": {"name": "spark__concat", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/concat.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/concat.sql", "unique_id": "macro.spark_utils.spark__concat", "macro_sql": "{% macro spark__concat(fields) -%}\n concat({{ fields|join(', ') }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1759331, "supported_languages": null}, "macro.spark_utils.spark__current_timestamp": {"name": "spark__current_timestamp", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "unique_id": "macro.spark_utils.spark__current_timestamp", "macro_sql": "{% macro spark__current_timestamp() %}\n current_timestamp()\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1762576, "supported_languages": null}, "macro.spark_utils.spark__current_timestamp_in_utc": {"name": "spark__current_timestamp_in_utc", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "unique_id": "macro.spark_utils.spark__current_timestamp_in_utc", "macro_sql": "{% macro spark__current_timestamp_in_utc() %}\n unix_timestamp()\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.176431, "supported_languages": null}, "macro.spark_utils.spark__type_numeric": {"name": "spark__type_numeric", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/datatypes.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/datatypes.sql", "unique_id": "macro.spark_utils.spark__type_numeric", "macro_sql": "{% macro spark__type_numeric() %}\n decimal(28, 6)\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1766603, "supported_languages": null}, "macro.spark_utils.spark__dateadd": {"name": "spark__dateadd", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/dateadd.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/dateadd.sql", "unique_id": "macro.spark_utils.spark__dateadd", "macro_sql": "{% macro spark__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n {%- set clock_component -%}\n {# make sure the dates + timestamps are real, otherwise raise an error asap #}\n to_unix_timestamp({{ spark_utils.assert_not_null('to_timestamp', from_date_or_timestamp) }})\n - to_unix_timestamp({{ spark_utils.assert_not_null('date', from_date_or_timestamp) }})\n {%- endset -%}\n\n {%- if datepart in ['day', 'week'] -%}\n \n {%- set multiplier = 7 if datepart == 'week' else 1 -%}\n\n to_timestamp(\n to_unix_timestamp(\n date_add(\n {{ spark_utils.assert_not_null('date', from_date_or_timestamp) }},\n cast({{interval}} * {{multiplier}} as int)\n )\n ) + {{clock_component}}\n )\n\n {%- elif datepart in ['month', 'quarter', 'year'] -%}\n \n {%- set multiplier -%} \n {%- if datepart == 'month' -%} 1\n {%- elif datepart == 'quarter' -%} 3\n {%- elif datepart == 'year' -%} 12\n {%- endif -%}\n {%- endset -%}\n\n to_timestamp(\n to_unix_timestamp(\n add_months(\n {{ spark_utils.assert_not_null('date', from_date_or_timestamp) }},\n cast({{interval}} * {{multiplier}} as int)\n )\n ) + {{clock_component}}\n )\n\n {%- elif datepart in ('hour', 'minute', 'second', 'millisecond', 'microsecond') -%}\n \n {%- set multiplier -%} \n {%- if datepart == 'hour' -%} 3600\n {%- elif datepart == 'minute' -%} 60\n {%- elif datepart == 'second' -%} 1\n {%- elif datepart == 'millisecond' -%} (1/1000000)\n {%- elif datepart == 'microsecond' -%} (1/1000000)\n {%- endif -%}\n {%- endset -%}\n\n to_timestamp(\n {{ spark_utils.assert_not_null('to_unix_timestamp', from_date_or_timestamp) }}\n + cast({{interval}} * {{multiplier}} as int)\n )\n\n {%- else -%}\n\n {{ exceptions.raise_compiler_error(\"macro dateadd not implemented for datepart ~ '\" ~ datepart ~ \"' ~ on Spark\") }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1822758, "supported_languages": null}, "macro.spark_utils.spark__datediff": {"name": "spark__datediff", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/datediff.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/datediff.sql", "unique_id": "macro.spark_utils.spark__datediff", "macro_sql": "{% macro spark__datediff(first_date, second_date, datepart) %}\n\n {%- if datepart in ['day', 'week', 'month', 'quarter', 'year'] -%}\n \n {# make sure the dates are real, otherwise raise an error asap #}\n {% set first_date = spark_utils.assert_not_null('date', first_date) %}\n {% set second_date = spark_utils.assert_not_null('date', second_date) %}\n \n {%- endif -%}\n \n {%- if datepart == 'day' -%}\n \n datediff({{second_date}}, {{first_date}})\n \n {%- elif datepart == 'week' -%}\n \n case when {{first_date}} < {{second_date}}\n then floor(datediff({{second_date}}, {{first_date}})/7)\n else ceil(datediff({{second_date}}, {{first_date}})/7)\n end\n \n -- did we cross a week boundary (Sunday)?\n + case\n when {{first_date}} < {{second_date}} and dayofweek({{second_date}}) < dayofweek({{first_date}}) then 1\n when {{first_date}} > {{second_date}} and dayofweek({{second_date}}) > dayofweek({{first_date}}) then -1\n else 0 end\n\n {%- elif datepart == 'month' -%}\n\n case when {{first_date}} < {{second_date}}\n then floor(months_between(date({{second_date}}), date({{first_date}})))\n else ceil(months_between(date({{second_date}}), date({{first_date}})))\n end\n \n -- did we cross a month boundary?\n + case\n when {{first_date}} < {{second_date}} and dayofmonth({{second_date}}) < dayofmonth({{first_date}}) then 1\n when {{first_date}} > {{second_date}} and dayofmonth({{second_date}}) > dayofmonth({{first_date}}) then -1\n else 0 end\n \n {%- elif datepart == 'quarter' -%}\n \n case when {{first_date}} < {{second_date}}\n then floor(months_between(date({{second_date}}), date({{first_date}}))/3)\n else ceil(months_between(date({{second_date}}), date({{first_date}}))/3)\n end\n \n -- did we cross a quarter boundary?\n + case\n when {{first_date}} < {{second_date}} and (\n (dayofyear({{second_date}}) - (quarter({{second_date}}) * 365/4))\n < (dayofyear({{first_date}}) - (quarter({{first_date}}) * 365/4))\n ) then 1\n when {{first_date}} > {{second_date}} and (\n (dayofyear({{second_date}}) - (quarter({{second_date}}) * 365/4))\n > (dayofyear({{first_date}}) - (quarter({{first_date}}) * 365/4))\n ) then -1\n else 0 end\n\n {%- elif datepart == 'year' -%}\n \n year({{second_date}}) - year({{first_date}})\n\n {%- elif datepart in ('hour', 'minute', 'second', 'millisecond', 'microsecond') -%}\n \n {%- set divisor -%} \n {%- if datepart == 'hour' -%} 3600\n {%- elif datepart == 'minute' -%} 60\n {%- elif datepart == 'second' -%} 1\n {%- elif datepart == 'millisecond' -%} (1/1000)\n {%- elif datepart == 'microsecond' -%} (1/1000000)\n {%- endif -%}\n {%- endset -%}\n\n case when {{first_date}} < {{second_date}}\n then ceil((\n {# make sure the timestamps are real, otherwise raise an error asap #}\n {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', second_date)) }}\n - {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n else floor((\n {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', second_date)) }}\n - {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n end\n \n {% if datepart == 'millisecond' %}\n + cast(date_format({{second_date}}, 'SSS') as int)\n - cast(date_format({{first_date}}, 'SSS') as int)\n {% endif %}\n \n {% if datepart == 'microsecond' %} \n {% set capture_str = '[0-9]{4}-[0-9]{2}-[0-9]{2}.[0-9]{2}:[0-9]{2}:[0-9]{2}.([0-9]{6})' %}\n -- Spark doesn't really support microseconds, so this is a massive hack!\n -- It will only work if the timestamp-string is of the format\n -- 'yyyy-MM-dd-HH mm.ss.SSSSSS'\n + cast(regexp_extract({{second_date}}, '{{capture_str}}', 1) as int)\n - cast(regexp_extract({{first_date}}, '{{capture_str}}', 1) as int) \n {% endif %}\n\n {%- else -%}\n\n {{ exceptions.raise_compiler_error(\"macro datediff not implemented for datepart ~ '\" ~ datepart ~ \"' ~ on Spark\") }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1957242, "supported_languages": null}, "macro.spark_utils.spark__split_part": {"name": "spark__split_part", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/split_part.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/split_part.sql", "unique_id": "macro.spark_utils.spark__split_part", "macro_sql": "{% macro spark__split_part(string_text, delimiter_text, part_number) %}\n\n {% set delimiter_expr %}\n \n -- escape if starts with a special character\n case when regexp_extract({{ delimiter_text }}, '([^A-Za-z0-9])(.*)', 1) != '_'\n then concat('\\\\', {{ delimiter_text }})\n else {{ delimiter_text }} end\n \n {% endset %}\n\n {% set split_part_expr %}\n \n split(\n {{ string_text }},\n {{ delimiter_expr }}\n )[({{ part_number - 1 }})]\n \n {% endset %}\n \n {{ return(split_part_expr) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.1970053, "supported_languages": null}, "macro.spark_utils.spark__get_relations_by_pattern": {"name": "spark__get_relations_by_pattern", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_relations_by_pattern", "macro_sql": "{% macro spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n show table extended in {{ schema_pattern }} like '{{ table_pattern }}'\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=None,\n schema=row[0],\n identifier=row[1],\n type=('view' if 'Type: VIEW' in row[3] else 'table')\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.200288, "supported_languages": null}, "macro.spark_utils.spark__get_relations_by_prefix": {"name": "spark__get_relations_by_prefix", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_relations_by_prefix", "macro_sql": "{% macro spark__get_relations_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {% set table_pattern = table_pattern ~ '*' %}\n {{ return(spark_utils.spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.2010443, "supported_languages": null}, "macro.spark_utils.spark__get_tables_by_pattern": {"name": "spark__get_tables_by_pattern", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_tables_by_pattern", "macro_sql": "{% macro spark__get_tables_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(spark_utils.spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.2018056, "supported_languages": null}, "macro.spark_utils.spark__get_tables_by_prefix": {"name": "spark__get_tables_by_prefix", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_tables_by_prefix", "macro_sql": "{% macro spark__get_tables_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(spark_utils.spark__get_relations_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_prefix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.202505, "supported_languages": null}, "macro.spark_utils.assert_not_null": {"name": "assert_not_null", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/etc/assert_not_null.sql", "original_file_path": "macros/etc/assert_not_null.sql", "unique_id": "macro.spark_utils.assert_not_null", "macro_sql": "{% macro assert_not_null(function, arg) -%}\n {{ return(adapter.dispatch('assert_not_null', 'spark_utils')(function, arg)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.spark_utils.default__assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.2032523, "supported_languages": null}, "macro.spark_utils.default__assert_not_null": {"name": "default__assert_not_null", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/etc/assert_not_null.sql", "original_file_path": "macros/etc/assert_not_null.sql", "unique_id": "macro.spark_utils.default__assert_not_null", "macro_sql": "{% macro default__assert_not_null(function, arg) %}\n\n coalesce({{function}}({{arg}}), nvl2({{function}}({{arg}}), assert_true({{function}}({{arg}}) is not null), null))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.2037122, "supported_languages": null}, "macro.spark_utils.spark__convert_timezone": {"name": "spark__convert_timezone", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/snowplow/convert_timezone.sql", "original_file_path": "macros/snowplow/convert_timezone.sql", "unique_id": "macro.spark_utils.spark__convert_timezone", "macro_sql": "{% macro spark__convert_timezone(in_tz, out_tz, in_timestamp) %}\n from_utc_timestamp(to_utc_timestamp({{in_timestamp}}, {{in_tz}}), {{out_tz}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1700082602.2042296, "supported_languages": null}}, "docs": {"doc.yoda.communication__sms": {"name": "communication__sms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__sms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__sms_shopify": {"name": "communication__sms_shopify", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__sms_shopify", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls": {"name": "communication__apicalls", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_apikey": {"name": "communication__apicalls_apikey", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_apikey", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_app_id": {"name": "communication__apicalls_app_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_app_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_campaign_id": {"name": "communication__apicalls_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_campaign_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_created": {"name": "communication__apicalls_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_event_id": {"name": "communication__apicalls_event_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_event_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_flow_id": {"name": "communication__apicalls_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_flow_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_flow_step_id": {"name": "communication__apicalls_flow_step_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_flow_step_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_from": {"name": "communication__apicalls_from", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_from", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_id": {"name": "communication__apicalls_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_ip": {"name": "communication__apicalls_ip", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_ip", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_ip_forward": {"name": "communication__apicalls_ip_forward", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_ip_forward", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_is_logical_deleted": {"name": "communication__apicalls_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_media": {"name": "communication__apicalls_media", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_media", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_message": {"name": "communication__apicalls_message", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_message", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_message_id": {"name": "communication__apicalls_message_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_message_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_message_id_int": {"name": "communication__apicalls_message_id_int", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_message_id_int", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_message_uuid": {"name": "communication__apicalls_message_uuid", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_message_uuid", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_method": {"name": "communication__apicalls_method", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_method", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_modified": {"name": "communication__apicalls_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_parts": {"name": "communication__apicalls_parts", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_parts", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_platform": {"name": "communication__apicalls_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_platform", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_price_billed": {"name": "communication__apicalls_price_billed", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_price_billed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_price_currency": {"name": "communication__apicalls_price_currency", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_price_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_price_vendor_cost": {"name": "communication__apicalls_price_vendor_cost", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_price_vendor_cost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_processing_time": {"name": "communication__apicalls_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_queue_id": {"name": "communication__apicalls_queue_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_queue_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_referer": {"name": "communication__apicalls_referer", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_referer", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_request_id": {"name": "communication__apicalls_request_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_request_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_sender_type": {"name": "communication__apicalls_sender_type", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_sender_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_spot_user_balance": {"name": "communication__apicalls_spot_user_balance", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_spot_user_balance", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_status": {"name": "communication__apicalls_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_to": {"name": "communication__apicalls_to", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_to", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_ts_ms": {"name": "communication__apicalls_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_type": {"name": "communication__apicalls_type", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_upsolver_schema_version": {"name": "communication__apicalls_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_user_id": {"name": "communication__apicalls_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__apicalls_vendor_name_used": {"name": "communication__apicalls_vendor_name_used", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__apicalls_vendor_name_used", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns": {"name": "communication__campaigns", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_ab_testing_id": {"name": "communication__campaigns_ab_testing_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_ab_testing_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_approved": {"name": "communication__campaigns_approved", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_approved", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_channel": {"name": "communication__campaigns_channel", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_channel", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_created": {"name": "communication__campaigns_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_id": {"name": "communication__campaigns_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_is_logical_deleted": {"name": "communication__campaigns_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_is_repopulated": {"name": "communication__campaigns_is_repopulated", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_is_repopulated", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_list_id": {"name": "communication__campaigns_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_list_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_message": {"name": "communication__campaigns_message", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_message", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_modified": {"name": "communication__campaigns_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_processing_time": {"name": "communication__campaigns_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_request": {"name": "communication__campaigns_request", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_request", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_scheduled": {"name": "communication__campaigns_scheduled", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_scheduled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_sent": {"name": "communication__campaigns_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_sent", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_status": {"name": "communication__campaigns_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_title": {"name": "communication__campaigns_title", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_title", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_total_sent": {"name": "communication__campaigns_total_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_total_sent", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_ts_ms": {"name": "communication__campaigns_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_upsolver_schema_version": {"name": "communication__campaigns_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__campaigns_user_id": {"name": "communication__campaigns_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__campaigns_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events": {"name": "communication__events", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_created": {"name": "communication__events_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_id": {"name": "communication__events_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_is_logical_deleted": {"name": "communication__events_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_modified": {"name": "communication__events_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_name": {"name": "communication__events_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_platform": {"name": "communication__events_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_platform", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_processing_time": {"name": "communication__events_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_settings": {"name": "communication__events_settings", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_settings", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_status": {"name": "communication__events_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_ts_ms": {"name": "communication__events_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_upsolver_schema_version": {"name": "communication__events_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_user_id": {"name": "communication__events_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__events_webhook": {"name": "communication__events_webhook", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__events_webhook", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows": {"name": "communication__flows", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_created": {"name": "communication__flows_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_flow_settings": {"name": "communication__flows_flow_settings", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_flow_settings", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_flow_trigger": {"name": "communication__flows_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_flow_trigger", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_id": {"name": "communication__flows_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_is_logical_deleted": {"name": "communication__flows_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_modified": {"name": "communication__flows_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_name": {"name": "communication__flows_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_platform": {"name": "communication__flows_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_platform", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_processing_time": {"name": "communication__flows_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_snapshot_id": {"name": "communication__flows_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_snapshot_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_status": {"name": "communication__flows_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_ts_ms": {"name": "communication__flows_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_upsolver_schema_version": {"name": "communication__flows_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__flows_user_id": {"name": "communication__flows_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__flows_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms": {"name": "communication__forms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_created": {"name": "communication__forms_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_dynamic_popup": {"name": "communication__forms_dynamic_popup", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_dynamic_popup", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_event_id": {"name": "communication__forms_event_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_event_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_flow_id": {"name": "communication__forms_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_flow_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_id": {"name": "communication__forms_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_is_logical_deleted": {"name": "communication__forms_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_modified": {"name": "communication__forms_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_name": {"name": "communication__forms_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_platform": {"name": "communication__forms_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_platform", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_platform_script_id": {"name": "communication__forms_platform_script_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_platform_script_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_processing_time": {"name": "communication__forms_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_settings": {"name": "communication__forms_settings", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_settings", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_status": {"name": "communication__forms_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_ts_ms": {"name": "communication__forms_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_type": {"name": "communication__forms_type", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_upsolver_schema_version": {"name": "communication__forms_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__forms_user_id": {"name": "communication__forms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__forms_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords": {"name": "communication__list_keywords", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_charge_attempts": {"name": "communication__list_keywords_charge_attempts", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_charge_attempts", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_created": {"name": "communication__list_keywords_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_display_name": {"name": "communication__list_keywords_display_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_display_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_event_id": {"name": "communication__list_keywords_event_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_event_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_id": {"name": "communication__list_keywords_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_is_logical_deleted": {"name": "communication__list_keywords_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_keyword": {"name": "communication__list_keywords_keyword", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_keyword", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_last_billed": {"name": "communication__list_keywords_last_billed", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_last_billed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_list_id": {"name": "communication__list_keywords_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_list_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_max_messages": {"name": "communication__list_keywords_max_messages", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_max_messages", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_modified": {"name": "communication__list_keywords_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_price": {"name": "communication__list_keywords_price", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_price", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_processing_time": {"name": "communication__list_keywords_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_status": {"name": "communication__list_keywords_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_subscription_status": {"name": "communication__list_keywords_subscription_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_subscription_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_ts_ms": {"name": "communication__list_keywords_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_upsolver_schema_version": {"name": "communication__list_keywords_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__list_keywords_user_id": {"name": "communication__list_keywords_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__list_keywords_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders": {"name": "communication__orders", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_app_id": {"name": "communication__orders_app_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_app_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_browser_ip": {"name": "communication__orders_browser_ip", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_browser_ip", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_buyer_accepts_marketing": {"name": "communication__orders_buyer_accepts_marketing", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_buyer_accepts_marketing", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_cancel_reason": {"name": "communication__orders_cancel_reason", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_cancel_reason", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_cancelled_at": {"name": "communication__orders_cancelled_at", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_cancelled_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_cart_token": {"name": "communication__orders_cart_token", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_cart_token", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_checkout_id": {"name": "communication__orders_checkout_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_checkout_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_checkout_token": {"name": "communication__orders_checkout_token", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_checkout_token", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_closed_at": {"name": "communication__orders_closed_at", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_closed_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_confirmed": {"name": "communication__orders_confirmed", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_confirmed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_contact_email": {"name": "communication__orders_contact_email", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_contact_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_created_at": {"name": "communication__orders_created_at", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_currency": {"name": "communication__orders_currency", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_customer_id": {"name": "communication__orders_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_customer_locale": {"name": "communication__orders_customer_locale", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_customer_locale", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_device_id": {"name": "communication__orders_device_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_device_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_email": {"name": "communication__orders_email", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_financial_status": {"name": "communication__orders_financial_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_financial_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_fulfillment_status": {"name": "communication__orders_fulfillment_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_fulfillment_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_gateway": {"name": "communication__orders_gateway", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_gateway", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_id": {"name": "communication__orders_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_is_logical_deleted": {"name": "communication__orders_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_landing_site": {"name": "communication__orders_landing_site", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_landing_site", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_landing_site_ref": {"name": "communication__orders_landing_site_ref", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_landing_site_ref", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_location_id": {"name": "communication__orders_location_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_location_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_name": {"name": "communication__orders_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_note": {"name": "communication__orders_note", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_note", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_number": {"name": "communication__orders_number", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_number", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_order_id": {"name": "communication__orders_order_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_order_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_order_number": {"name": "communication__orders_order_number", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_order_number", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_order_status_url": {"name": "communication__orders_order_status_url", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_order_status_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_phone": {"name": "communication__orders_phone", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_phone", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_phone_formatted": {"name": "communication__orders_phone_formatted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_phone_formatted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_processed_at": {"name": "communication__orders_processed_at", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_processed_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_processing_method": {"name": "communication__orders_processing_method", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_processing_method", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_processing_time": {"name": "communication__orders_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_reference": {"name": "communication__orders_reference", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_reference", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_referring_site": {"name": "communication__orders_referring_site", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_referring_site", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_smsbump_user_id": {"name": "communication__orders_smsbump_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_smsbump_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_source_identifier": {"name": "communication__orders_source_identifier", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_source_identifier", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_source_name": {"name": "communication__orders_source_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_source_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_source_url": {"name": "communication__orders_source_url", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_source_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_subtotal_price": {"name": "communication__orders_subtotal_price", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_subtotal_price", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_tags": {"name": "communication__orders_tags", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_tags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_taxes_included": {"name": "communication__orders_taxes_included", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_taxes_included", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_test": {"name": "communication__orders_test", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_test", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_token": {"name": "communication__orders_token", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_token", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_total_discounts": {"name": "communication__orders_total_discounts", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_total_discounts", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_total_line_items_price": {"name": "communication__orders_total_line_items_price", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_total_line_items_price", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_total_price": {"name": "communication__orders_total_price", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_total_price", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_total_price_usd": {"name": "communication__orders_total_price_usd", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_total_price_usd", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_total_tax": {"name": "communication__orders_total_tax", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_total_tax", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_total_weight": {"name": "communication__orders_total_weight", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_total_weight", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_ts_ms": {"name": "communication__orders_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_updated_at": {"name": "communication__orders_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_upsolver_schema_version": {"name": "communication__orders_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__orders_user_id": {"name": "communication__orders_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__orders_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages": {"name": "communication__packages", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_bonus_credits": {"name": "communication__packages_bonus_credits", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_bonus_credits", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_created": {"name": "communication__packages_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_description": {"name": "communication__packages_description", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_display_name": {"name": "communication__packages_display_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_display_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_id": {"name": "communication__packages_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_is_logical_deleted": {"name": "communication__packages_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_modified": {"name": "communication__packages_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_name": {"name": "communication__packages_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_payment_key": {"name": "communication__packages_payment_key", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_payment_key", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_period": {"name": "communication__packages_period", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_period", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_plan_key": {"name": "communication__packages_plan_key", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_plan_key", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_platform": {"name": "communication__packages_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_platform", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_price": {"name": "communication__packages_price", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_price", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_processing_time": {"name": "communication__packages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_status": {"name": "communication__packages_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_sub_title": {"name": "communication__packages_sub_title", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_sub_title", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_ts_ms": {"name": "communication__packages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_type": {"name": "communication__packages_type", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_upsolver_schema_version": {"name": "communication__packages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_visible_app": {"name": "communication__packages_visible_app", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_visible_app", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__packages_visible_site": {"name": "communication__packages_visible_site", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__packages_visible_site", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list": {"name": "communication__phone_to_list", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_created": {"name": "communication__phone_to_list_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_id": {"name": "communication__phone_to_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_is_logical_deleted": {"name": "communication__phone_to_list_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_list_id": {"name": "communication__phone_to_list_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_list_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_modified": {"name": "communication__phone_to_list_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_phone_id": {"name": "communication__phone_to_list_phone_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_phone_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_phone_meta_id": {"name": "communication__phone_to_list_phone_meta_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_phone_meta_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_processing_time": {"name": "communication__phone_to_list_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_source": {"name": "communication__phone_to_list_source", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_source", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_status": {"name": "communication__phone_to_list_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_ts_ms": {"name": "communication__phone_to_list_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_upsolver_schema_version": {"name": "communication__phone_to_list_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phone_to_list_user_id": {"name": "communication__phone_to_list_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phone_to_list_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones": {"name": "communication__phones", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_country_iso": {"name": "communication__phones_country_iso", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_country_iso", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_created": {"name": "communication__phones_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_failed_count": {"name": "communication__phones_failed_count", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_failed_count", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_id": {"name": "communication__phones_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_is_logical_deleted": {"name": "communication__phones_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_is_subscriber": {"name": "communication__phones_is_subscriber", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_is_subscriber", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_landline": {"name": "communication__phones_landline", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_landline", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta": {"name": "communication__phones_meta", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_birth_date": {"name": "communication__phones_meta_birth_date", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_birth_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_created": {"name": "communication__phones_meta_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_email": {"name": "communication__phones_meta_email", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_external_id": {"name": "communication__phones_meta_external_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_external_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_first_name": {"name": "communication__phones_meta_first_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_first_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_gender": {"name": "communication__phones_meta_gender", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_gender", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_id": {"name": "communication__phones_meta_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_initial_source": {"name": "communication__phones_meta_initial_source", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_initial_source", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_is_logical_deleted": {"name": "communication__phones_meta_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_is_subscriber": {"name": "communication__phones_meta_is_subscriber", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_is_subscriber", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_last_name": {"name": "communication__phones_meta_last_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_last_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_modified": {"name": "communication__phones_meta_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_phone_id": {"name": "communication__phones_meta_phone_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_phone_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_platform": {"name": "communication__phones_meta_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_platform", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_processing_time": {"name": "communication__phones_meta_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_timezone": {"name": "communication__phones_meta_timezone", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_timezone", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_ts_ms": {"name": "communication__phones_meta_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_upsolver_schema_version": {"name": "communication__phones_meta_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_meta_user_id": {"name": "communication__phones_meta_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_meta_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_modified": {"name": "communication__phones_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_network": {"name": "communication__phones_network", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_network", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_phone": {"name": "communication__phones_phone", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_phone", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_processing_time": {"name": "communication__phones_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_ts_ms": {"name": "communication__phones_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__phones_upsolver_schema_version": {"name": "communication__phones_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__phones_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages": {"name": "communication__shopify_subscription_list_pages", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_created": {"name": "communication__shopify_subscription_list_pages_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_handle": {"name": "communication__shopify_subscription_list_pages_handle", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_handle", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_id": {"name": "communication__shopify_subscription_list_pages_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_link_clicks": {"name": "communication__shopify_subscription_list_pages_link_clicks", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_link_clicks", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_link_subscribed": {"name": "communication__shopify_subscription_list_pages_link_subscribed", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_link_subscribed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_list_id": {"name": "communication__shopify_subscription_list_pages_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_list_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_modified": {"name": "communication__shopify_subscription_list_pages_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_page_id": {"name": "communication__shopify_subscription_list_pages_page_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_page_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_page_short_loyalty_url": {"name": "communication__shopify_subscription_list_pages_page_short_loyalty_url", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_page_short_loyalty_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_page_short_url": {"name": "communication__shopify_subscription_list_pages_page_short_url", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_page_short_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_page_url": {"name": "communication__shopify_subscription_list_pages_page_url", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_page_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_processing_time": {"name": "communication__shopify_subscription_list_pages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_source": {"name": "communication__shopify_subscription_list_pages_source", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_source", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_ts_ms": {"name": "communication__shopify_subscription_list_pages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_upsolver_schema_version": {"name": "communication__shopify_subscription_list_pages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_subscription_list_pages_user_id": {"name": "communication__shopify_subscription_list_pages_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_subscription_list_pages_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_user_integrations": {"name": "communication__shopify_user_integrations", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_user_integrations", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_user_integrations_created": {"name": "communication__shopify_user_integrations_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_user_integrations_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_user_integrations_id": {"name": "communication__shopify_user_integrations_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_user_integrations_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_user_integrations_integration_id": {"name": "communication__shopify_user_integrations_integration_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_user_integrations_integration_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_user_integrations_is_logical_deleted": {"name": "communication__shopify_user_integrations_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_user_integrations_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_user_integrations_modified": {"name": "communication__shopify_user_integrations_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_user_integrations_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_user_integrations_processing_time": {"name": "communication__shopify_user_integrations_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_user_integrations_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_user_integrations_status": {"name": "communication__shopify_user_integrations_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_user_integrations_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_user_integrations_ts_ms": {"name": "communication__shopify_user_integrations_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_user_integrations_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_user_integrations_upsolver_schema_version": {"name": "communication__shopify_user_integrations_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_user_integrations_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_user_integrations_user_id": {"name": "communication__shopify_user_integrations_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_user_integrations_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users": {"name": "communication__shopify_users", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_abandoned_checkouts_sent": {"name": "communication__shopify_users_abandoned_checkouts_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_abandoned_checkouts_sent", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_access_token": {"name": "communication__shopify_users_access_token", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_access_token", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_app_data": {"name": "communication__shopify_users_app_data", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_app_data", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_associated_user": {"name": "communication__shopify_users_associated_user", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_associated_user", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_auto_reload": {"name": "communication__shopify_users_auto_reload", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_auto_reload", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_auto_reload_amount": {"name": "communication__shopify_users_auto_reload_amount", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_auto_reload_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_auto_reload_cap": {"name": "communication__shopify_users_auto_reload_cap", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_auto_reload_cap", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_auto_reload_threshold": {"name": "communication__shopify_users_auto_reload_threshold", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_auto_reload_threshold", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_back_fill_completed": {"name": "communication__shopify_users_back_fill_completed", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_back_fill_completed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_connected": {"name": "communication__shopify_users_connected", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_connected", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_consent_webhook_enabled": {"name": "communication__shopify_users_consent_webhook_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_consent_webhook_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_created": {"name": "communication__shopify_users_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_domain": {"name": "communication__shopify_users_domain", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_domain", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_id": {"name": "communication__shopify_users_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_is_logical_deleted": {"name": "communication__shopify_users_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_modified": {"name": "communication__shopify_users_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_notes": {"name": "communication__shopify_users_notes", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_notes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_pinned_navigation": {"name": "communication__shopify_users_pinned_navigation", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_pinned_navigation", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_plan": {"name": "communication__shopify_users_plan", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_plan", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_platform": {"name": "communication__shopify_users_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_platform", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_processing_time": {"name": "communication__shopify_users_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_shop_data": {"name": "communication__shopify_users_shop_data", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_shop_data", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_shopify_store_id": {"name": "communication__shopify_users_shopify_store_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_shopify_store_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_store": {"name": "communication__shopify_users_store", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_store", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_sync_enabled": {"name": "communication__shopify_users_sync_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_sync_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_ts_ms": {"name": "communication__shopify_users_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_upsolver_schema_version": {"name": "communication__shopify_users_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__shopify_users_user_id": {"name": "communication__shopify_users_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__shopify_users_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users": {"name": "communication__users", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_abuser_notes": {"name": "communication__users_abuser_notes", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_abuser_notes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_abuser_status": {"name": "communication__users_abuser_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_abuser_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_address": {"name": "communication__users_address", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_address", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_affiliate_commission": {"name": "communication__users_affiliate_commission", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_affiliate_commission", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_affiliate_payout_email": {"name": "communication__users_affiliate_payout_email", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_affiliate_payout_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_affiliate_payout_pref": {"name": "communication__users_affiliate_payout_pref", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_affiliate_payout_pref", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_agreed_terms": {"name": "communication__users_agreed_terms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_agreed_terms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_all_ip": {"name": "communication__users_all_ip", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_all_ip", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_amploa": {"name": "communication__users_amploa", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_amploa", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_automatic_transliteration": {"name": "communication__users_automatic_transliteration", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_automatic_transliteration", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_balance": {"name": "communication__users_balance", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_balance", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_ban_exclude": {"name": "communication__users_ban_exclude", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_ban_exclude", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_bonus_balance": {"name": "communication__users_bonus_balance", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_bonus_balance", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_chat_enabled": {"name": "communication__users_chat_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_chat_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_chat_settings": {"name": "communication__users_chat_settings", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_chat_settings", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_city": {"name": "communication__users_city", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_city", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_collect_checkout_subscribers": {"name": "communication__users_collect_checkout_subscribers", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_collect_checkout_subscribers", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_compliance_accepted_date": {"name": "communication__users_compliance_accepted_date", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_compliance_accepted_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_contact_card_logo": {"name": "communication__users_contact_card_logo", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_contact_card_logo", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_contact_card_message": {"name": "communication__users_contact_card_message", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_contact_card_message", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_contact_card_name": {"name": "communication__users_contact_card_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_contact_card_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_contact_card_path": {"name": "communication__users_contact_card_path", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_contact_card_path", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_cookie_related_users": {"name": "communication__users_cookie_related_users", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_cookie_related_users", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_countries_limitation_mode": {"name": "communication__users_countries_limitation_mode", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_countries_limitation_mode", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_countries_limitation_values": {"name": "communication__users_countries_limitation_values", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_countries_limitation_values", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_country": {"name": "communication__users_country", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_country", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_created": {"name": "communication__users_created", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_created", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_credits": {"name": "communication__users_credits", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_credits", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_delivery_route": {"name": "communication__users_delivery_route", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_delivery_route", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_discount_data": {"name": "communication__users_discount_data", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_discount_data", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_discounted_mms_price": {"name": "communication__users_discounted_mms_price", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_discounted_mms_price", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_dnd": {"name": "communication__users_dnd", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_dnd", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_dnd_from": {"name": "communication__users_dnd_from", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_dnd_from", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_dnd_to": {"name": "communication__users_dnd_to", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_dnd_to", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_double_opt_in": {"name": "communication__users_double_opt_in", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_double_opt_in", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_double_opt_in_level": {"name": "communication__users_double_opt_in_level", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_double_opt_in_level", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_earnings": {"name": "communication__users_earnings", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_earnings", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_email": {"name": "communication__users_email", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_email_is_valid": {"name": "communication__users_email_is_valid", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_email_is_valid", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_facebook_id": {"name": "communication__users_facebook_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_facebook_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_facebook_info": {"name": "communication__users_facebook_info", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_facebook_info", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_free_keywords_available_count": {"name": "communication__users_free_keywords_available_count", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_free_keywords_available_count", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_google_user_id": {"name": "communication__users_google_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_google_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_gplusurl": {"name": "communication__users_gplusurl", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_gplusurl", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_hash": {"name": "communication__users_hash", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_hash", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_id": {"name": "communication__users_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_industry": {"name": "communication__users_industry", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_industry", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_is_logical_deleted": {"name": "communication__users_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_is_logical_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_is_test": {"name": "communication__users_is_test", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_is_test", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_language": {"name": "communication__users_language", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_language", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_last_available": {"name": "communication__users_last_available", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_last_available", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_last_ip": {"name": "communication__users_last_ip", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_last_ip", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_last_payout": {"name": "communication__users_last_payout", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_last_payout", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_main_subscription_list_id": {"name": "communication__users_main_subscription_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_main_subscription_list_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_modified": {"name": "communication__users_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_name": {"name": "communication__users_name", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_notes": {"name": "communication__users_notes", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_notes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_notes_modified": {"name": "communication__users_notes_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_notes_modified", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_old_passwords": {"name": "communication__users_old_passwords", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_old_passwords", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_onboarding_completed": {"name": "communication__users_onboarding_completed", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_onboarding_completed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_package_id": {"name": "communication__users_package_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_package_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_parent_id": {"name": "communication__users_parent_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_parent_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_partner": {"name": "communication__users_partner", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_partner", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_partner_info": {"name": "communication__users_partner_info", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_partner_info", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_partner_nexmo_price_multiply": {"name": "communication__users_partner_nexmo_price_multiply", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_partner_nexmo_price_multiply", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_partner_type": {"name": "communication__users_partner_type", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_partner_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_password": {"name": "communication__users_password", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_password", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_payment_gateway": {"name": "communication__users_payment_gateway", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_payment_gateway", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_paypal_email": {"name": "communication__users_paypal_email", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_paypal_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_phone_number": {"name": "communication__users_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_phone_number", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_picture": {"name": "communication__users_picture", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_picture", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_plan": {"name": "communication__users_plan", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_plan", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_plan_price": {"name": "communication__users_plan_price", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_plan_price", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_plan_trial_until": {"name": "communication__users_plan_trial_until", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_plan_trial_until", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_platform": {"name": "communication__users_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_platform", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_platform_unique_id": {"name": "communication__users_platform_unique_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_platform_unique_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_points": {"name": "communication__users_points", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_points", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_preferred_vendor": {"name": "communication__users_preferred_vendor", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_preferred_vendor", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_price_limit": {"name": "communication__users_price_limit", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_price_limit", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_price_limit_enabled": {"name": "communication__users_price_limit_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_price_limit_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_processing_time": {"name": "communication__users_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_provision_calls_count": {"name": "communication__users_provision_calls_count", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_provision_calls_count", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_role": {"name": "communication__users_role", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_role", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_role_id": {"name": "communication__users_role_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_role_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_shaft_status": {"name": "communication__users_shaft_status", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_shaft_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_signed_promo_id": {"name": "communication__users_signed_promo_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_signed_promo_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_signup_source": {"name": "communication__users_signup_source", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_signup_source", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_smart_sending_ignore_transac_email": {"name": "communication__users_smart_sending_ignore_transac_email", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_smart_sending_ignore_transac_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_smart_sending_value": {"name": "communication__users_smart_sending_value", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_smart_sending_value", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_state": {"name": "communication__users_state", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_state", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_store_id": {"name": "communication__users_store_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_store_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_strict_marketing_check": {"name": "communication__users_strict_marketing_check", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_strict_marketing_check", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_subscribed": {"name": "communication__users_subscribed", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_subscribed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_subscribed_to_forum": {"name": "communication__users_subscribed_to_forum", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_subscribed_to_forum", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_support_level_id": {"name": "communication__users_support_level_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_support_level_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_system_messages_payer": {"name": "communication__users_system_messages_payer", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_system_messages_payer", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_tfa_enabled": {"name": "communication__users_tfa_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_tfa_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_timezone": {"name": "communication__users_timezone", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_timezone", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_total_downloads": {"name": "communication__users_total_downloads", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_total_downloads", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_total_logins": {"name": "communication__users_total_logins", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_total_logins", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_ts_ms": {"name": "communication__users_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_unsubscribe_reason": {"name": "communication__users_unsubscribe_reason", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_unsubscribe_reason", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_upload_lists_enabled": {"name": "communication__users_upload_lists_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_upload_lists_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_upsolver_schema_version": {"name": "communication__users_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_use_local_number_for_subscription": {"name": "communication__users_use_local_number_for_subscription", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_use_local_number_for_subscription", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_vat_number": {"name": "communication__users_vat_number", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_vat_number", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_vendor_id": {"name": "communication__users_vendor_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_vendor_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_whitelisted": {"name": "communication__users_whitelisted", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_whitelisted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_yotpo_app_key": {"name": "communication__users_yotpo_app_key", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_yotpo_app_key", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_yotpo_app_secret": {"name": "communication__users_yotpo_app_secret", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_yotpo_app_secret", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_yotpo_organization_id": {"name": "communication__users_yotpo_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_yotpo_organization_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.communication__users_zipcode": {"name": "communication__users_zipcode", "resource_type": "doc", "package_name": "yoda", "path": "communication.md", "original_file_path": "docs/communication.md", "unique_id": "doc.yoda.communication__users_zipcode", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw": {"name": "infra__aws_billing_report_raw", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_bill_bill_type": {"name": "infra__aws_billing_report_raw_bill_bill_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_bill_bill_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_bill_billing_entity": {"name": "infra__aws_billing_report_raw_bill_billing_entity", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_bill_billing_entity", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_bill_billing_period_end_date": {"name": "infra__aws_billing_report_raw_bill_billing_period_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_bill_billing_period_end_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_bill_billing_period_start_date": {"name": "infra__aws_billing_report_raw_bill_billing_period_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_bill_billing_period_start_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_bill_invoice_id": {"name": "infra__aws_billing_report_raw_bill_invoice_id", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_bill_invoice_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_bill_payer_account_id": {"name": "infra__aws_billing_report_raw_bill_payer_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_bill_payer_account_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_discount_edp_discount": {"name": "infra__aws_billing_report_raw_discount_edp_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_discount_edp_discount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_discount_private_rate_discount": {"name": "infra__aws_billing_report_raw_discount_private_rate_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_discount_private_rate_discount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_discount_total_discount": {"name": "infra__aws_billing_report_raw_discount_total_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_discount_total_discount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_identity_line_item_id": {"name": "infra__aws_billing_report_raw_identity_line_item_id", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_identity_line_item_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_identity_time_interval": {"name": "infra__aws_billing_report_raw_identity_time_interval", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_identity_time_interval", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_availability_zone": {"name": "infra__aws_billing_report_raw_line_item_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_availability_zone", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_blended_cost": {"name": "infra__aws_billing_report_raw_line_item_blended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_blended_cost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_blended_rate": {"name": "infra__aws_billing_report_raw_line_item_blended_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_blended_rate", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_currency_code": {"name": "infra__aws_billing_report_raw_line_item_currency_code", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_currency_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_legal_entity": {"name": "infra__aws_billing_report_raw_line_item_legal_entity", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_legal_entity", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_line_item_description": {"name": "infra__aws_billing_report_raw_line_item_line_item_description", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_line_item_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_line_item_type": {"name": "infra__aws_billing_report_raw_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_line_item_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_net_unblended_cost": {"name": "infra__aws_billing_report_raw_line_item_net_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_net_unblended_cost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_net_unblended_rate": {"name": "infra__aws_billing_report_raw_line_item_net_unblended_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_net_unblended_rate", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_normalization_factor": {"name": "infra__aws_billing_report_raw_line_item_normalization_factor", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_normalization_factor", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_normalized_usage_amount": {"name": "infra__aws_billing_report_raw_line_item_normalized_usage_amount", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_normalized_usage_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_operation": {"name": "infra__aws_billing_report_raw_line_item_operation", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_operation", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_product_code": {"name": "infra__aws_billing_report_raw_line_item_product_code", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_product_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_resource_id": {"name": "infra__aws_billing_report_raw_line_item_resource_id", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_resource_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_tax_type": {"name": "infra__aws_billing_report_raw_line_item_tax_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_tax_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_unblended_cost": {"name": "infra__aws_billing_report_raw_line_item_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_unblended_cost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_unblended_rate": {"name": "infra__aws_billing_report_raw_line_item_unblended_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_unblended_rate", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_usage_account_id": {"name": "infra__aws_billing_report_raw_line_item_usage_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_usage_account_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_usage_amount": {"name": "infra__aws_billing_report_raw_line_item_usage_amount", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_usage_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_usage_end_date": {"name": "infra__aws_billing_report_raw_line_item_usage_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_usage_end_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_usage_start_date": {"name": "infra__aws_billing_report_raw_line_item_usage_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_usage_start_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_line_item_usage_type": {"name": "infra__aws_billing_report_raw_line_item_usage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_line_item_usage_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_month": {"name": "infra__aws_billing_report_raw_month", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_month", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_pricing_currency": {"name": "infra__aws_billing_report_raw_pricing_currency", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_pricing_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_pricing_lease_contract_length": {"name": "infra__aws_billing_report_raw_pricing_lease_contract_length", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_pricing_lease_contract_length", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_pricing_offering_class": {"name": "infra__aws_billing_report_raw_pricing_offering_class", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_pricing_offering_class", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_pricing_public_on_demand_cost": {"name": "infra__aws_billing_report_raw_pricing_public_on_demand_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_pricing_public_on_demand_cost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_pricing_public_on_demand_rate": {"name": "infra__aws_billing_report_raw_pricing_public_on_demand_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_pricing_public_on_demand_rate", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_pricing_purchase_option": {"name": "infra__aws_billing_report_raw_pricing_purchase_option", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_pricing_purchase_option", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_pricing_rate_code": {"name": "infra__aws_billing_report_raw_pricing_rate_code", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_pricing_rate_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_pricing_rate_id": {"name": "infra__aws_billing_report_raw_pricing_rate_id", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_pricing_rate_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_pricing_term": {"name": "infra__aws_billing_report_raw_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_pricing_term", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_pricing_unit": {"name": "infra__aws_billing_report_raw_pricing_unit", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_pricing_unit", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_alarm_type": {"name": "infra__aws_billing_report_raw_product_alarm_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_alarm_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_availability": {"name": "infra__aws_billing_report_raw_product_availability", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_availability", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_availability_zone": {"name": "infra__aws_billing_report_raw_product_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_availability_zone", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_bundle": {"name": "infra__aws_billing_report_raw_product_bundle", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_bundle", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_bundle_description": {"name": "infra__aws_billing_report_raw_product_bundle_description", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_bundle_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_bundle_group": {"name": "infra__aws_billing_report_raw_product_bundle_group", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_bundle_group", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_cache_engine": {"name": "infra__aws_billing_report_raw_product_cache_engine", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_cache_engine", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_capacitystatus": {"name": "infra__aws_billing_report_raw_product_capacitystatus", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_capacitystatus", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_category": {"name": "infra__aws_billing_report_raw_product_category", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_category", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_clock_speed": {"name": "infra__aws_billing_report_raw_product_clock_speed", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_clock_speed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_component": {"name": "infra__aws_billing_report_raw_product_component", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_component", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_compute_family": {"name": "infra__aws_billing_report_raw_product_compute_family", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_compute_family", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_compute_type": {"name": "infra__aws_billing_report_raw_product_compute_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_compute_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_concurrencyscalingfreeusage": {"name": "infra__aws_billing_report_raw_product_concurrencyscalingfreeusage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_concurrencyscalingfreeusage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_counts_against_quota": {"name": "infra__aws_billing_report_raw_product_counts_against_quota", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_counts_against_quota", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_cputype": {"name": "infra__aws_billing_report_raw_product_cputype", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_cputype", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_current_generation": {"name": "infra__aws_billing_report_raw_product_current_generation", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_current_generation", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_data": {"name": "infra__aws_billing_report_raw_product_data", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_data", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_data_transfer_quota": {"name": "infra__aws_billing_report_raw_product_data_transfer_quota", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_data_transfer_quota", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_database_engine": {"name": "infra__aws_billing_report_raw_product_database_engine", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_database_engine", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_datastore_storagetype": {"name": "infra__aws_billing_report_raw_product_datastore_storagetype", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_datastore_storagetype", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_dedicated_ebs_throughput": {"name": "infra__aws_billing_report_raw_product_dedicated_ebs_throughput", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_dedicated_ebs_throughput", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_deployment_option": {"name": "infra__aws_billing_report_raw_product_deployment_option", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_deployment_option", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_description": {"name": "infra__aws_billing_report_raw_product_description", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_durability": {"name": "infra__aws_billing_report_raw_product_durability", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_durability", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_ecu": {"name": "infra__aws_billing_report_raw_product_ecu", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_ecu", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_endpoint": {"name": "infra__aws_billing_report_raw_product_endpoint", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_endpoint", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_endpoint_type": {"name": "infra__aws_billing_report_raw_product_endpoint_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_endpoint_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_engine_code": {"name": "infra__aws_billing_report_raw_product_engine_code", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_engine_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_enhanced_networking_supported": {"name": "infra__aws_billing_report_raw_product_enhanced_networking_supported", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_enhanced_networking_supported", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_event_type": {"name": "infra__aws_billing_report_raw_product_event_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_event_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_execution_frequency": {"name": "infra__aws_billing_report_raw_product_execution_frequency", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_execution_frequency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_execution_location": {"name": "infra__aws_billing_report_raw_product_execution_location", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_execution_location", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_fee_code": {"name": "infra__aws_billing_report_raw_product_fee_code", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_fee_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_fee_description": {"name": "infra__aws_billing_report_raw_product_fee_description", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_fee_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_free_overage": {"name": "infra__aws_billing_report_raw_product_free_overage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_free_overage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_frequency_mode": {"name": "infra__aws_billing_report_raw_product_frequency_mode", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_frequency_mode", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_from_location": {"name": "infra__aws_billing_report_raw_product_from_location", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_from_location", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_from_location_type": {"name": "infra__aws_billing_report_raw_product_from_location_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_from_location_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_gpu": {"name": "infra__aws_billing_report_raw_product_gpu", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_gpu", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_gpu_memory": {"name": "infra__aws_billing_report_raw_product_gpu_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_gpu_memory", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_granularity": {"name": "infra__aws_billing_report_raw_product_granularity", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_granularity", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_group": {"name": "infra__aws_billing_report_raw_product_group", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_group", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_group_description": {"name": "infra__aws_billing_report_raw_product_group_description", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_group_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_insightstype": {"name": "infra__aws_billing_report_raw_product_insightstype", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_insightstype", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_instance_family": {"name": "infra__aws_billing_report_raw_product_instance_family", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_instance_family", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_instance_name": {"name": "infra__aws_billing_report_raw_product_instance_name", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_instance_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_instance_type": {"name": "infra__aws_billing_report_raw_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_instance_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_instance_type_family": {"name": "infra__aws_billing_report_raw_product_instance_type_family", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_instance_type_family", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_intel_avx2_available": {"name": "infra__aws_billing_report_raw_product_intel_avx2_available", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_intel_avx2_available", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_intel_avx_available": {"name": "infra__aws_billing_report_raw_product_intel_avx_available", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_intel_avx_available", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_intel_turbo_available": {"name": "infra__aws_billing_report_raw_product_intel_turbo_available", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_intel_turbo_available", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_io": {"name": "infra__aws_billing_report_raw_product_io", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_io", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_license": {"name": "infra__aws_billing_report_raw_product_license", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_license", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_license_model": {"name": "infra__aws_billing_report_raw_product_license_model", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_license_model", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_location": {"name": "infra__aws_billing_report_raw_product_location", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_location", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_location_type": {"name": "infra__aws_billing_report_raw_product_location_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_location_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_logs_destination": {"name": "infra__aws_billing_report_raw_product_logs_destination", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_logs_destination", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_max_iops_burst_performance": {"name": "infra__aws_billing_report_raw_product_max_iops_burst_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_max_iops_burst_performance", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_max_iopsvolume": {"name": "infra__aws_billing_report_raw_product_max_iopsvolume", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_max_iopsvolume", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_max_throughputvolume": {"name": "infra__aws_billing_report_raw_product_max_throughputvolume", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_max_throughputvolume", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_max_volume_size": {"name": "infra__aws_billing_report_raw_product_max_volume_size", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_max_volume_size", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_maximum_extended_storage": {"name": "infra__aws_billing_report_raw_product_maximum_extended_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_maximum_extended_storage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_memory": {"name": "infra__aws_billing_report_raw_product_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_memory", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_memory_gib": {"name": "infra__aws_billing_report_raw_product_memory_gib", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_memory_gib", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_memorytype": {"name": "infra__aws_billing_report_raw_product_memorytype", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_memorytype", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_message_delivery_frequency": {"name": "infra__aws_billing_report_raw_product_message_delivery_frequency", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_message_delivery_frequency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_message_delivery_order": {"name": "infra__aws_billing_report_raw_product_message_delivery_order", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_message_delivery_order", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_min_volume_size": {"name": "infra__aws_billing_report_raw_product_min_volume_size", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_min_volume_size", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_network_performance": {"name": "infra__aws_billing_report_raw_product_network_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_network_performance", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_normalization_size_factor": {"name": "infra__aws_billing_report_raw_product_normalization_size_factor", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_normalization_size_factor", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_operating_system": {"name": "infra__aws_billing_report_raw_product_operating_system", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_operating_system", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_operation": {"name": "infra__aws_billing_report_raw_product_operation", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_operation", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_overage_type": {"name": "infra__aws_billing_report_raw_product_overage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_overage_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_physical_cpu": {"name": "infra__aws_billing_report_raw_product_physical_cpu", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_physical_cpu", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_physical_gpu": {"name": "infra__aws_billing_report_raw_product_physical_gpu", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_physical_gpu", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_physical_processor": {"name": "infra__aws_billing_report_raw_product_physical_processor", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_physical_processor", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_pre_installed_sw": {"name": "infra__aws_billing_report_raw_product_pre_installed_sw", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_pre_installed_sw", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_pricing_unit": {"name": "infra__aws_billing_report_raw_product_pricing_unit", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_pricing_unit", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_processor_architecture": {"name": "infra__aws_billing_report_raw_product_processor_architecture", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_processor_architecture", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_processor_features": {"name": "infra__aws_billing_report_raw_product_processor_features", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_processor_features", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_product_family": {"name": "infra__aws_billing_report_raw_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_product_family", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_product_name": {"name": "infra__aws_billing_report_raw_product_product_name", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_product_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_purchase_option": {"name": "infra__aws_billing_report_raw_product_purchase_option", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_purchase_option", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_purchaseterm": {"name": "infra__aws_billing_report_raw_product_purchaseterm", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_purchaseterm", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_queue_type": {"name": "infra__aws_billing_report_raw_product_queue_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_queue_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_ratetype": {"name": "infra__aws_billing_report_raw_product_ratetype", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_ratetype", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_region": {"name": "infra__aws_billing_report_raw_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_region", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_request_description": {"name": "infra__aws_billing_report_raw_product_request_description", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_request_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_request_type": {"name": "infra__aws_billing_report_raw_product_request_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_request_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_resource_endpoint": {"name": "infra__aws_billing_report_raw_product_resource_endpoint", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_resource_endpoint", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_resource_type": {"name": "infra__aws_billing_report_raw_product_resource_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_resource_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_rootvolume": {"name": "infra__aws_billing_report_raw_product_rootvolume", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_rootvolume", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_routing_target": {"name": "infra__aws_billing_report_raw_product_routing_target", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_routing_target", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_routing_type": {"name": "infra__aws_billing_report_raw_product_routing_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_routing_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_running_mode": {"name": "infra__aws_billing_report_raw_product_running_mode", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_running_mode", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_servicecode": {"name": "infra__aws_billing_report_raw_product_servicecode", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_servicecode", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_servicename": {"name": "infra__aws_billing_report_raw_product_servicename", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_servicename", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_sku": {"name": "infra__aws_billing_report_raw_product_sku", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_sku", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_software_included": {"name": "infra__aws_billing_report_raw_product_software_included", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_software_included", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_software_type": {"name": "infra__aws_billing_report_raw_product_software_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_software_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_standard_storage_retention_included": {"name": "infra__aws_billing_report_raw_product_standard_storage_retention_included", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_standard_storage_retention_included", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_storage": {"name": "infra__aws_billing_report_raw_product_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_storage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_storage_class": {"name": "infra__aws_billing_report_raw_product_storage_class", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_storage_class", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_storage_family": {"name": "infra__aws_billing_report_raw_product_storage_family", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_storage_family", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_storage_media": {"name": "infra__aws_billing_report_raw_product_storage_media", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_storage_media", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_storage_type": {"name": "infra__aws_billing_report_raw_product_storage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_storage_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_tenancy": {"name": "infra__aws_billing_report_raw_product_tenancy", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_tenancy", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_tiertype": {"name": "infra__aws_billing_report_raw_product_tiertype", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_tiertype", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_to_location": {"name": "infra__aws_billing_report_raw_product_to_location", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_to_location", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_to_location_type": {"name": "infra__aws_billing_report_raw_product_to_location_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_to_location_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_transfer_type": {"name": "infra__aws_billing_report_raw_product_transfer_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_transfer_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_type": {"name": "infra__aws_billing_report_raw_product_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_usage_family": {"name": "infra__aws_billing_report_raw_product_usage_family", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_usage_family", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_usagetype": {"name": "infra__aws_billing_report_raw_product_usagetype", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_usagetype", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_uservolume": {"name": "infra__aws_billing_report_raw_product_uservolume", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_uservolume", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_vcpu": {"name": "infra__aws_billing_report_raw_product_vcpu", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_vcpu", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_version": {"name": "infra__aws_billing_report_raw_product_version", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_volume_api_name": {"name": "infra__aws_billing_report_raw_product_volume_api_name", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_volume_api_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_volume_type": {"name": "infra__aws_billing_report_raw_product_volume_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_volume_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_product_with_active_users": {"name": "infra__aws_billing_report_raw_product_with_active_users", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_product_with_active_users", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_amortized_upfront_cost_for_usage": {"name": "infra__aws_billing_report_raw_reservation_amortized_upfront_cost_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_amortized_upfront_cost_for_usage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_amortized_upfront_fee_for_billing_period": {"name": "infra__aws_billing_report_raw_reservation_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_effective_cost": {"name": "infra__aws_billing_report_raw_reservation_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_effective_cost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_end_time": {"name": "infra__aws_billing_report_raw_reservation_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_end_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_modification_status": {"name": "infra__aws_billing_report_raw_reservation_modification_status", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_modification_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_net_amortized_upfront_cost_for_usage": {"name": "infra__aws_billing_report_raw_reservation_net_amortized_upfront_cost_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_net_amortized_upfront_cost_for_usage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_net_amortized_upfront_fee_for_billing_period": {"name": "infra__aws_billing_report_raw_reservation_net_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_net_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_net_effective_cost": {"name": "infra__aws_billing_report_raw_reservation_net_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_net_effective_cost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_net_recurring_fee_for_usage": {"name": "infra__aws_billing_report_raw_reservation_net_recurring_fee_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_net_recurring_fee_for_usage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_net_unused_amortized_upfront_fee_for_billing_period": {"name": "infra__aws_billing_report_raw_reservation_net_unused_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_net_unused_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_net_unused_recurring_fee": {"name": "infra__aws_billing_report_raw_reservation_net_unused_recurring_fee", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_net_unused_recurring_fee", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_net_upfront_value": {"name": "infra__aws_billing_report_raw_reservation_net_upfront_value", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_net_upfront_value", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_normalized_units_per_reservation": {"name": "infra__aws_billing_report_raw_reservation_normalized_units_per_reservation", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_normalized_units_per_reservation", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_number_of_reservations": {"name": "infra__aws_billing_report_raw_reservation_number_of_reservations", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_number_of_reservations", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_recurring_fee_for_usage": {"name": "infra__aws_billing_report_raw_reservation_recurring_fee_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_recurring_fee_for_usage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_reservation_a_r_n": {"name": "infra__aws_billing_report_raw_reservation_reservation_a_r_n", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_reservation_a_r_n", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_start_time": {"name": "infra__aws_billing_report_raw_reservation_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_start_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_subscription_id": {"name": "infra__aws_billing_report_raw_reservation_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_subscription_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_total_reserved_normalized_units": {"name": "infra__aws_billing_report_raw_reservation_total_reserved_normalized_units", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_total_reserved_normalized_units", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_total_reserved_units": {"name": "infra__aws_billing_report_raw_reservation_total_reserved_units", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_total_reserved_units", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_units_per_reservation": {"name": "infra__aws_billing_report_raw_reservation_units_per_reservation", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_units_per_reservation", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_unused_amortized_upfront_fee_for_billing_period": {"name": "infra__aws_billing_report_raw_reservation_unused_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_unused_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_unused_normalized_unit_quantity": {"name": "infra__aws_billing_report_raw_reservation_unused_normalized_unit_quantity", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_unused_normalized_unit_quantity", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_unused_quantity": {"name": "infra__aws_billing_report_raw_reservation_unused_quantity", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_unused_quantity", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_unused_recurring_fee": {"name": "infra__aws_billing_report_raw_reservation_unused_recurring_fee", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_unused_recurring_fee", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_reservation_upfront_value": {"name": "infra__aws_billing_report_raw_reservation_upfront_value", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_reservation_upfront_value", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_aws_created_by": {"name": "infra__aws_billing_report_raw_resource_tags_aws_created_by", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_aws_created_by", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_instance_group_role": {"name": "infra__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_instance_group_role", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_instance_group_role", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_job_flow_id": {"name": "infra__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_job_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_job_flow_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_account": {"name": "infra__aws_billing_report_raw_resource_tags_user_account", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_account", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_asg": {"name": "infra__aws_billing_report_raw_resource_tags_user_asg", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_asg", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_cluster_name": {"name": "infra__aws_billing_report_raw_resource_tags_user_cluster_name", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_cluster_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_component": {"name": "infra__aws_billing_report_raw_resource_tags_user_component", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_component", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_databricks_instance_pool_id": {"name": "infra__aws_billing_report_raw_resource_tags_user_databricks_instance_pool_id", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_databricks_instance_pool_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_docker_compose": {"name": "infra__aws_billing_report_raw_resource_tags_user_docker_compose", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_docker_compose", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_environment": {"name": "infra__aws_billing_report_raw_resource_tags_user_environment", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_environment", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_name": {"name": "infra__aws_billing_report_raw_resource_tags_user_name", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_product_line": {"name": "infra__aws_billing_report_raw_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_product_line", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_service": {"name": "infra__aws_billing_report_raw_resource_tags_user_service", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_service", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_sub_componenet": {"name": "infra__aws_billing_report_raw_resource_tags_user_sub_componenet", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_sub_componenet", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_sub_component": {"name": "infra__aws_billing_report_raw_resource_tags_user_sub_component", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_resource_tags_user_sub_component", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_amortized_upfront_commitment_for_billing_period": {"name": "infra__aws_billing_report_raw_savings_plan_amortized_upfront_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_amortized_upfront_commitment_for_billing_period", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_end_time": {"name": "infra__aws_billing_report_raw_savings_plan_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_end_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_instance_type_family": {"name": "infra__aws_billing_report_raw_savings_plan_instance_type_family", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_instance_type_family", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_net_amortized_upfront_commitment_for_billing_period": {"name": "infra__aws_billing_report_raw_savings_plan_net_amortized_upfront_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_net_amortized_upfront_commitment_for_billing_period", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_net_recurring_commitment_for_billing_period": {"name": "infra__aws_billing_report_raw_savings_plan_net_recurring_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_net_recurring_commitment_for_billing_period", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_net_savings_plan_effective_cost": {"name": "infra__aws_billing_report_raw_savings_plan_net_savings_plan_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_net_savings_plan_effective_cost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_offering_type": {"name": "infra__aws_billing_report_raw_savings_plan_offering_type", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_offering_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_payment_option": {"name": "infra__aws_billing_report_raw_savings_plan_payment_option", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_payment_option", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_purchase_term": {"name": "infra__aws_billing_report_raw_savings_plan_purchase_term", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_purchase_term", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_recurring_commitment_for_billing_period": {"name": "infra__aws_billing_report_raw_savings_plan_recurring_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_recurring_commitment_for_billing_period", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_region": {"name": "infra__aws_billing_report_raw_savings_plan_region", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_region", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_savings_plan_a_r_n": {"name": "infra__aws_billing_report_raw_savings_plan_savings_plan_a_r_n", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_savings_plan_a_r_n", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_savings_plan_effective_cost": {"name": "infra__aws_billing_report_raw_savings_plan_savings_plan_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_savings_plan_effective_cost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_savings_plan_rate": {"name": "infra__aws_billing_report_raw_savings_plan_savings_plan_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_savings_plan_rate", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_start_time": {"name": "infra__aws_billing_report_raw_savings_plan_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_start_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_total_commitment_to_date": {"name": "infra__aws_billing_report_raw_savings_plan_total_commitment_to_date", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_total_commitment_to_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_savings_plan_used_commitment": {"name": "infra__aws_billing_report_raw_savings_plan_used_commitment", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_savings_plan_used_commitment", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__aws_billing_report_raw_year": {"name": "infra__aws_billing_report_raw_year", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__aws_billing_report_raw_year", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__costpo": {"name": "infra__costpo", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__costpo", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw": {"name": "infra__databricks_cost_raw", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_clustercustomtags": {"name": "infra__databricks_cost_raw_clustercustomtags", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_clustercustomtags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_clusterid": {"name": "infra__databricks_cost_raw_clusterid", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_clusterid", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_clustername": {"name": "infra__databricks_cost_raw_clustername", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_clustername", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_clusternodetype": {"name": "infra__databricks_cost_raw_clusternodetype", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_clusternodetype", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_clusterowneruserid": {"name": "infra__databricks_cost_raw_clusterowneruserid", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_clusterowneruserid", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_clusterownerusername": {"name": "infra__databricks_cost_raw_clusterownerusername", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_clusterownerusername", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_dbus": {"name": "infra__databricks_cost_raw_dbus", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_dbus", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_machinehours": {"name": "infra__databricks_cost_raw_machinehours", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_machinehours", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_sku": {"name": "infra__databricks_cost_raw_sku", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_sku", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_tags": {"name": "infra__databricks_cost_raw_tags", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_tags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_timestamp": {"name": "infra__databricks_cost_raw_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_timestamp", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__databricks_cost_raw_workspaceid": {"name": "infra__databricks_cost_raw_workspaceid", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__databricks_cost_raw_workspaceid", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw": {"name": "infra__kubecost_raw", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_cpucorehours": {"name": "infra__kubecost_raw_cpucorehours", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_cpucorehours", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_cpucorerequestaverage": {"name": "infra__kubecost_raw_cpucorerequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_cpucorerequestaverage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_cpucores": {"name": "infra__kubecost_raw_cpucores", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_cpucores", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_cpucoreusageaverage": {"name": "infra__kubecost_raw_cpucoreusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_cpucoreusageaverage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_cpucost": {"name": "infra__kubecost_raw_cpucost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_cpucost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_cpucostadjustment": {"name": "infra__kubecost_raw_cpucostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_cpucostadjustment", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_cpuefficiency": {"name": "infra__kubecost_raw_cpuefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_cpuefficiency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_day": {"name": "infra__kubecost_raw_day", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_day", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_end": {"name": "infra__kubecost_raw_end", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_end", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_externalcost": {"name": "infra__kubecost_raw_externalcost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_externalcost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_gpucost": {"name": "infra__kubecost_raw_gpucost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_gpucost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_gpucostadjustment": {"name": "infra__kubecost_raw_gpucostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_gpucostadjustment", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_gpucount": {"name": "infra__kubecost_raw_gpucount", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_gpucount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_gpuhours": {"name": "infra__kubecost_raw_gpuhours", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_gpuhours", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_loadbalancercost": {"name": "infra__kubecost_raw_loadbalancercost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_loadbalancercost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_loadbalancercostadjustment": {"name": "infra__kubecost_raw_loadbalancercostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_loadbalancercostadjustment", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_minutes": {"name": "infra__kubecost_raw_minutes", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_minutes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_month": {"name": "infra__kubecost_raw_month", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_month", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_name": {"name": "infra__kubecost_raw_name", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_networkcost": {"name": "infra__kubecost_raw_networkcost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_networkcost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_networkcostadjustment": {"name": "infra__kubecost_raw_networkcostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_networkcostadjustment", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_networkreceivebytes": {"name": "infra__kubecost_raw_networkreceivebytes", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_networkreceivebytes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_networktransferbytes": {"name": "infra__kubecost_raw_networktransferbytes", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_networktransferbytes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_properties": {"name": "infra__kubecost_raw_properties", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_properties", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_pvbytehours": {"name": "infra__kubecost_raw_pvbytehours", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_pvbytehours", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_pvbytes": {"name": "infra__kubecost_raw_pvbytes", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_pvbytes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_pvcost": {"name": "infra__kubecost_raw_pvcost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_pvcost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_pvcostadjustment": {"name": "infra__kubecost_raw_pvcostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_pvcostadjustment", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_pvs": {"name": "infra__kubecost_raw_pvs", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_pvs", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_rambytehours": {"name": "infra__kubecost_raw_rambytehours", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_rambytehours", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_rambyterequestaverage": {"name": "infra__kubecost_raw_rambyterequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_rambyterequestaverage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_rambytes": {"name": "infra__kubecost_raw_rambytes", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_rambytes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_rambyteusageaverage": {"name": "infra__kubecost_raw_rambyteusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_rambyteusageaverage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_ramcost": {"name": "infra__kubecost_raw_ramcost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_ramcost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_ramcostadjustment": {"name": "infra__kubecost_raw_ramcostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_ramcostadjustment", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_ramefficiency": {"name": "infra__kubecost_raw_ramefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_ramefficiency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_rawallocationonly": {"name": "infra__kubecost_raw_rawallocationonly", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_rawallocationonly", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_sharedcost": {"name": "infra__kubecost_raw_sharedcost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_sharedcost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_start": {"name": "infra__kubecost_raw_start", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_start", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_totalcost": {"name": "infra__kubecost_raw_totalcost", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_totalcost", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_totalefficiency": {"name": "infra__kubecost_raw_totalefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_totalefficiency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_window": {"name": "infra__kubecost_raw_window", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_window", "block_contents": "TODO: Update Source Description"}, "doc.yoda.infra__kubecost_raw_year": {"name": "infra__kubecost_raw_year", "resource_type": "doc", "package_name": "yoda", "path": "infra.md", "original_file_path": "docs/infra.md", "unique_id": "doc.yoda.infra__kubecost_raw_year", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns": {"name": "loyalty__campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_action_filter": {"name": "loyalty__campaigns_action_filter", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_action_filter", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_action_name": {"name": "loyalty__campaigns_action_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_action_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_activated_at": {"name": "loyalty__campaigns_activated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_activated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_active": {"name": "loyalty__campaigns_active", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_active", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_admin_display_name": {"name": "loyalty__campaigns_admin_display_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_admin_display_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_admin_only": {"name": "loyalty__campaigns_admin_only", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_admin_only", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_already_completed": {"name": "loyalty__campaigns_already_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_already_completed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_answer": {"name": "loyalty__campaigns_answer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_answer", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_api_key": {"name": "loyalty__campaigns_api_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_api_key", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_api_secret": {"name": "loyalty__campaigns_api_secret", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_api_secret", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_archived": {"name": "loyalty__campaigns_archived", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_archived", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_ask_year": {"name": "loyalty__campaigns_ask_year", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_ask_year", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_background_image_id": {"name": "loyalty__campaigns_background_image_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_background_image_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_campaign_codes_count": {"name": "loyalty__campaigns_campaign_codes_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_campaign_codes_count", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_campaign_tiers": {"name": "loyalty__campaigns_campaign_tiers", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_campaign_tiers", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_created_at": {"name": "loyalty__campaigns_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_cta_text": {"name": "loyalty__campaigns_cta_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_cta_text", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_currency": {"name": "loyalty__campaigns_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_custom_url": {"name": "loyalty__campaigns_custom_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_custom_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_customer_tags": {"name": "loyalty__campaigns_customer_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_customer_tags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_days_until_next_action": {"name": "loyalty__campaigns_days_until_next_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_days_until_next_action", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_default_email_body": {"name": "loyalty__campaigns_default_email_body", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_default_email_body", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_default_email_subject": {"name": "loyalty__campaigns_default_email_subject", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_default_email_subject", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_default_share_text": {"name": "loyalty__campaigns_default_share_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_default_share_text", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_default_share_text_header": {"name": "loyalty__campaigns_default_share_text_header", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_default_share_text_header", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_default_sms_text": {"name": "loyalty__campaigns_default_sms_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_default_sms_text", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_delay_reward": {"name": "loyalty__campaigns_delay_reward", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_delay_reward", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_delay_reward_days": {"name": "loyalty__campaigns_delay_reward_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_delay_reward_days", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_details": {"name": "loyalty__campaigns_details", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_details", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_display_order": {"name": "loyalty__campaigns_display_order", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_display_order", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_entity_id": {"name": "loyalty__campaigns_entity_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_entity_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_exclude_audience_ids": {"name": "loyalty__campaigns_exclude_audience_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_exclude_audience_ids", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_exclude_customer_tags": {"name": "loyalty__campaigns_exclude_customer_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_exclude_customer_tags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_exclude_order_tags": {"name": "loyalty__campaigns_exclude_order_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_exclude_order_tags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_exclude_product_by_types": {"name": "loyalty__campaigns_exclude_product_by_types", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_exclude_product_by_types", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_expired": {"name": "loyalty__campaigns_expired", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_expired", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_expired_at": {"name": "loyalty__campaigns_expired_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_expired_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_extra_copy1": {"name": "loyalty__campaigns_extra_copy1", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_extra_copy1", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_extra_copy2": {"name": "loyalty__campaigns_extra_copy2", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_extra_copy2", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_extra_copy3": {"name": "loyalty__campaigns_extra_copy3", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_extra_copy3", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_facebook_description": {"name": "loyalty__campaigns_facebook_description", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_facebook_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_goal_purchases": {"name": "loyalty__campaigns_goal_purchases", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_goal_purchases", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_goal_spend_cents": {"name": "loyalty__campaigns_goal_spend_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_goal_spend_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_hidden": {"name": "loyalty__campaigns_hidden", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_hidden", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_hours_until_next_action": {"name": "loyalty__campaigns_hours_until_next_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_hours_until_next_action", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_icon": {"name": "loyalty__campaigns_icon", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_icon", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_id": {"name": "loyalty__campaigns_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_image_id": {"name": "loyalty__campaigns_image_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_image_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_include_audience_ids": {"name": "loyalty__campaigns_include_audience_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_include_audience_ids", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_last_scanned_review_id": {"name": "loyalty__campaigns_last_scanned_review_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_last_scanned_review_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_max_perks_per_user": {"name": "loyalty__campaigns_max_perks_per_user", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_max_perks_per_user", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_max_perks_total": {"name": "loyalty__campaigns_max_perks_total", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_max_perks_total", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_merchant_id": {"name": "loyalty__campaigns_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_min_actions_required": {"name": "loyalty__campaigns_min_actions_required", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_min_actions_required", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_min_spend_cents": {"name": "loyalty__campaigns_min_spend_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_min_spend_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_minutes_between_actions": {"name": "loyalty__campaigns_minutes_between_actions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_minutes_between_actions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_minutes_between_perks": {"name": "loyalty__campaigns_minutes_between_perks", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_minutes_between_perks", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_must_be_customer": {"name": "loyalty__campaigns_must_be_customer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_must_be_customer", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_order_tags": {"name": "loyalty__campaigns_order_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_order_tags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_overflow_enabled": {"name": "loyalty__campaigns_overflow_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_overflow_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_product_map_strategy": {"name": "loyalty__campaigns_product_map_strategy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_product_map_strategy", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_product_restrictions_reward": {"name": "loyalty__campaigns_product_restrictions_reward", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_product_restrictions_reward", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_question": {"name": "loyalty__campaigns_question", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_question", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_receipts_escalation_email": {"name": "loyalty__campaigns_receipts_escalation_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_receipts_escalation_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_receipts_notification_email": {"name": "loyalty__campaigns_receipts_notification_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_receipts_notification_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_redemption_option_id": {"name": "loyalty__campaigns_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_redemption_option_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_referral_auto_apply_coupon": {"name": "loyalty__campaigns_referral_auto_apply_coupon", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_referral_auto_apply_coupon", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_referral_host": {"name": "loyalty__campaigns_referral_host", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_referral_host", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_referral_query_params": {"name": "loyalty__campaigns_referral_query_params", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_referral_query_params", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_referral_redemption_option_id": {"name": "loyalty__campaigns_referral_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_referral_redemption_option_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_referral_redirect_url": {"name": "loyalty__campaigns_referral_redirect_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_referral_redirect_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_referral_reward_points": {"name": "loyalty__campaigns_referral_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_referral_reward_points", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_referred_user_target_campaign_id": {"name": "loyalty__campaigns_referred_user_target_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_referred_user_target_campaign_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_referrer_target_campaign_id": {"name": "loyalty__campaigns_referrer_target_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_referrer_target_campaign_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_require_product_by_ids": {"name": "loyalty__campaigns_require_product_by_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_require_product_by_ids", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_require_product_by_tags": {"name": "loyalty__campaigns_require_product_by_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_require_product_by_tags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_require_product_by_types": {"name": "loyalty__campaigns_require_product_by_types", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_require_product_by_types", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_required_order_comparison": {"name": "loyalty__campaigns_required_order_comparison", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_required_order_comparison", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_required_order_count": {"name": "loyalty__campaigns_required_order_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_required_order_count", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_requires_referral_code": {"name": "loyalty__campaigns_requires_referral_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_requires_referral_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_reward_media_filter": {"name": "loyalty__campaigns_reward_media_filter", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_reward_media_filter", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_reward_percentage": {"name": "loyalty__campaigns_reward_percentage", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_reward_percentage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_reward_points": {"name": "loyalty__campaigns_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_reward_points", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_reward_product_id_map": {"name": "loyalty__campaigns_reward_product_id_map", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_reward_product_id_map", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_reward_text": {"name": "loyalty__campaigns_reward_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_reward_text", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_reward_type": {"name": "loyalty__campaigns_reward_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_reward_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_share_header": {"name": "loyalty__campaigns_share_header", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_share_header", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_share_image_id": {"name": "loyalty__campaigns_share_image_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_share_image_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_share_text": {"name": "loyalty__campaigns_share_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_share_text", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_show_in_admin": {"name": "loyalty__campaigns_show_in_admin", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_show_in_admin", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_show_in_rewards_popup": {"name": "loyalty__campaigns_show_in_rewards_popup", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_show_in_rewards_popup", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_title": {"name": "loyalty__campaigns_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_title", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_type": {"name": "loyalty__campaigns_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_updated_at": {"name": "loyalty__campaigns_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_upsolver_schema_version": {"name": "loyalty__campaigns_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_url": {"name": "loyalty__campaigns_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_use_account_creation_date": {"name": "loyalty__campaigns_use_account_creation_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_use_account_creation_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_use_custom_url": {"name": "loyalty__campaigns_use_custom_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_use_custom_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_use_oauth": {"name": "loyalty__campaigns_use_oauth", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_use_oauth", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_username": {"name": "loyalty__campaigns_username", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_username", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__campaigns_vip_tier_id": {"name": "loyalty__campaigns_vip_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__campaigns_vip_tier_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__chainperks": {"name": "loyalty__chainperks", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__chainperks", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__communication": {"name": "loyalty__communication", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__communication", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__currency_rates": {"name": "loyalty__currency_rates", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__currency_rates", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__currency_rates_base": {"name": "loyalty__currency_rates_base", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__currency_rates_base", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__currency_rates_country": {"name": "loyalty__currency_rates_country", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__currency_rates_country", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__currency_rates_currency": {"name": "loyalty__currency_rates_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__currency_rates_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__currency_rates_date": {"name": "loyalty__currency_rates_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__currency_rates_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__currency_rates_day_of_currency_exchange": {"name": "loyalty__currency_rates_day_of_currency_exchange", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__currency_rates_day_of_currency_exchange", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customer_birthdays": {"name": "loyalty__customer_birthdays", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customer_birthdays", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customer_birthdays_created_at": {"name": "loyalty__customer_birthdays_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customer_birthdays_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customer_birthdays_day": {"name": "loyalty__customer_birthdays_day", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customer_birthdays_day", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customer_birthdays_group_customer_id": {"name": "loyalty__customer_birthdays_group_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customer_birthdays_group_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customer_birthdays_id": {"name": "loyalty__customer_birthdays_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customer_birthdays_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customer_birthdays_last_sent": {"name": "loyalty__customer_birthdays_last_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customer_birthdays_last_sent", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customer_birthdays_month": {"name": "loyalty__customer_birthdays_month", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customer_birthdays_month", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customer_birthdays_updated_at": {"name": "loyalty__customer_birthdays_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customer_birthdays_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customer_birthdays_upsolver_schema_version": {"name": "loyalty__customer_birthdays_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customer_birthdays_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customer_birthdays_year": {"name": "loyalty__customer_birthdays_year", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customer_birthdays_year", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers": {"name": "loyalty__customers", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_accepts_marketing": {"name": "loyalty__customers_accepts_marketing", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_accepts_marketing", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_created_at": {"name": "loyalty__customers_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_currency": {"name": "loyalty__customers_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_first_name": {"name": "loyalty__customers_first_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_first_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_group_customer_id": {"name": "loyalty__customers_group_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_group_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_has_provided_tax_details": {"name": "loyalty__customers_has_provided_tax_details", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_has_provided_tax_details", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_id": {"name": "loyalty__customers_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_identity_id": {"name": "loyalty__customers_identity_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_identity_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_is_locked": {"name": "loyalty__customers_is_locked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_is_locked", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_is_member": {"name": "loyalty__customers_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_is_member", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_last_name": {"name": "loyalty__customers_last_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_last_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_last_purchase_at": {"name": "loyalty__customers_last_purchase_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_last_purchase_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_merchant_id": {"name": "loyalty__customers_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_name": {"name": "loyalty__customers_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_opt_in": {"name": "loyalty__customers_opt_in", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_opt_in", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_opt_in_created_at": {"name": "loyalty__customers_opt_in_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_opt_in_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_opt_in_customer_id": {"name": "loyalty__customers_opt_in_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_opt_in_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_opt_in_id": {"name": "loyalty__customers_opt_in_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_opt_in_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_opt_in_merchant_id": {"name": "loyalty__customers_opt_in_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_opt_in_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_opt_in_opted_in_at": {"name": "loyalty__customers_opt_in_opted_in_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_opt_in_opted_in_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_opt_in_source_type": {"name": "loyalty__customers_opt_in_source_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_opt_in_source_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_opt_in_updated_at": {"name": "loyalty__customers_opt_in_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_opt_in_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_opt_in_upsolver_schema_version": {"name": "loyalty__customers_opt_in_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_opt_in_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_perks_redeemed": {"name": "loyalty__customers_perks_redeemed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_perks_redeemed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_phone_number": {"name": "loyalty__customers_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_phone_number", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_pos_account_id": {"name": "loyalty__customers_pos_account_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_pos_account_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_processor_id": {"name": "loyalty__customers_processor_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_processor_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_referral_code_id": {"name": "loyalty__customers_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_referral_code_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_referred_by_customer_id": {"name": "loyalty__customers_referred_by_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_referred_by_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_source": {"name": "loyalty__customers_source", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_source", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_store_account_id": {"name": "loyalty__customers_store_account_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_store_account_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_tags": {"name": "loyalty__customers_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_tags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_total_purchases": {"name": "loyalty__customers_total_purchases", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_total_purchases", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_total_spend_cents": {"name": "loyalty__customers_total_spend_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_total_spend_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_updated_at": {"name": "loyalty__customers_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_upsolver_schema_version": {"name": "loyalty__customers_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_user_id": {"name": "loyalty__customers_user_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers": {"name": "loyalty__customers_vip_tiers", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_created_at": {"name": "loyalty__customers_vip_tiers_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_customer_id": {"name": "loyalty__customers_vip_tiers_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history": {"name": "loyalty__customers_vip_tiers_history", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history_action": {"name": "loyalty__customers_vip_tiers_history_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history_action", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history_created_at": {"name": "loyalty__customers_vip_tiers_history_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history_customer_id": {"name": "loyalty__customers_vip_tiers_history_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history_expired_at": {"name": "loyalty__customers_vip_tiers_history_expired_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history_expired_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history_id": {"name": "loyalty__customers_vip_tiers_history_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history_merchant_id": {"name": "loyalty__customers_vip_tiers_history_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history_tier_entry_date": {"name": "loyalty__customers_vip_tiers_history_tier_entry_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history_tier_entry_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history_tier_expiration_date": {"name": "loyalty__customers_vip_tiers_history_tier_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history_tier_expiration_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history_tier_id": {"name": "loyalty__customers_vip_tiers_history_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history_tier_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history_updated_at": {"name": "loyalty__customers_vip_tiers_history_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_history_upsolver_schema_version": {"name": "loyalty__customers_vip_tiers_history_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_history_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_id": {"name": "loyalty__customers_vip_tiers_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_merchant_id": {"name": "loyalty__customers_vip_tiers_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_state": {"name": "loyalty__customers_vip_tiers_state", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_state", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_tier_entry_date": {"name": "loyalty__customers_vip_tiers_tier_entry_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_tier_entry_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_tier_expiration_date": {"name": "loyalty__customers_vip_tiers_tier_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_tier_expiration_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_tier_id": {"name": "loyalty__customers_vip_tiers_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_tier_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_updated_at": {"name": "loyalty__customers_vip_tiers_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__customers_vip_tiers_upsolver_schema_version": {"name": "loyalty__customers_vip_tiers_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__customers_vip_tiers_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails": {"name": "loyalty__email_campaign_emails", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_bounced": {"name": "loyalty__email_campaign_emails_bounced", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_bounced", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_bounced_at": {"name": "loyalty__email_campaign_emails_bounced_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_bounced_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_clicked": {"name": "loyalty__email_campaign_emails_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_clicked", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_clicked_at": {"name": "loyalty__email_campaign_emails_clicked_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_clicked_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_created_at": {"name": "loyalty__email_campaign_emails_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_customer_id": {"name": "loyalty__email_campaign_emails_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_delayed": {"name": "loyalty__email_campaign_emails_delayed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_delayed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_delayed_at": {"name": "loyalty__email_campaign_emails_delayed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_delayed_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_email_campaign_id": {"name": "loyalty__email_campaign_emails_email_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_email_campaign_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_id": {"name": "loyalty__email_campaign_emails_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_marked_as_spam": {"name": "loyalty__email_campaign_emails_marked_as_spam", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_marked_as_spam", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_marked_as_spam_at": {"name": "loyalty__email_campaign_emails_marked_as_spam_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_marked_as_spam_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_merchant_id": {"name": "loyalty__email_campaign_emails_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_opened": {"name": "loyalty__email_campaign_emails_opened", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_opened", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_opened_at": {"name": "loyalty__email_campaign_emails_opened_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_opened_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_rejected": {"name": "loyalty__email_campaign_emails_rejected", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_rejected", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_rejected_at": {"name": "loyalty__email_campaign_emails_rejected_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_rejected_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_sent": {"name": "loyalty__email_campaign_emails_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_sent", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_sent_at": {"name": "loyalty__email_campaign_emails_sent_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_sent_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_soft_bounced": {"name": "loyalty__email_campaign_emails_soft_bounced", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_soft_bounced", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_unsubscribed": {"name": "loyalty__email_campaign_emails_unsubscribed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_unsubscribed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_unsubscribed_at": {"name": "loyalty__email_campaign_emails_unsubscribed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_unsubscribed_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_updated_at": {"name": "loyalty__email_campaign_emails_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__email_campaign_emails_upsolver_schema_version": {"name": "loyalty__email_campaign_emails_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__email_campaign_emails_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers": {"name": "loyalty__group_customers", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_created_at": {"name": "loyalty__group_customers_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_email": {"name": "loyalty__group_customers_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_exclude_from_reports": {"name": "loyalty__group_customers_exclude_from_reports", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_exclude_from_reports", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_group_id": {"name": "loyalty__group_customers_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_group_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_id": {"name": "loyalty__group_customers_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_last_seen_at": {"name": "loyalty__group_customers_last_seen_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_last_seen_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_points_balance": {"name": "loyalty__group_customers_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_points_balance", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_points_earned": {"name": "loyalty__group_customers_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_points_earned", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_points_expire_at": {"name": "loyalty__group_customers_points_expire_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_points_expire_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_subscribed": {"name": "loyalty__group_customers_subscribed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_subscribed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_updated_at": {"name": "loyalty__group_customers_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__group_customers_upsolver_schema_version": {"name": "loyalty__group_customers_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__group_customers_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants": {"name": "loyalty__merchants", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_affiliate_include_shipping": {"name": "loyalty__merchants_affiliate_include_shipping", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_affiliate_include_shipping", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_affiliate_order_price_setting": {"name": "loyalty__merchants_affiliate_order_price_setting", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_affiliate_order_price_setting", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_allow_program_overwrite": {"name": "loyalty__merchants_allow_program_overwrite", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_allow_program_overwrite", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_api_access_enabled": {"name": "loyalty__merchants_api_access_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_api_access_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_api_key": {"name": "loyalty__merchants_api_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_api_key", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_bricknmortar": {"name": "loyalty__merchants_bricknmortar", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_bricknmortar", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_can_generate_coupons": {"name": "loyalty__merchants_can_generate_coupons", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_can_generate_coupons", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_cash_payout_setting": {"name": "loyalty__merchants_cash_payout_setting", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_cash_payout_setting", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_code_based_referral_program_on_demand": {"name": "loyalty__merchants_code_based_referral_program_on_demand", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_code_based_referral_program_on_demand", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_collection_exclusions": {"name": "loyalty__merchants_collection_exclusions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_collection_exclusions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_company_name": {"name": "loyalty__merchants_company_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_company_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_completed_onboarding": {"name": "loyalty__merchants_completed_onboarding", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_completed_onboarding", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_completed_profile": {"name": "loyalty__merchants_completed_profile", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_completed_profile", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_contact_email": {"name": "loyalty__merchants_contact_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_contact_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_created_at": {"name": "loyalty__merchants_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_cross_origin_store_accounts": {"name": "loyalty__merchants_cross_origin_store_accounts", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_cross_origin_store_accounts", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_currency": {"name": "loyalty__merchants_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_custom_chat_group": {"name": "loyalty__merchants_custom_chat_group", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_custom_chat_group", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_custom_script_url": {"name": "loyalty__merchants_custom_script_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_custom_script_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_customer_tags": {"name": "loyalty__merchants_customer_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_customer_tags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_default_payout_percentage": {"name": "loyalty__merchants_default_payout_percentage", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_default_payout_percentage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_default_paypal_email_subject": {"name": "loyalty__merchants_default_paypal_email_subject", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_default_paypal_email_subject", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_delete_used_coupons_enable": {"name": "loyalty__merchants_delete_used_coupons_enable", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_delete_used_coupons_enable", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_description": {"name": "loyalty__merchants_description", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_discount_code_based_referral_program_enabled": {"name": "loyalty__merchants_discount_code_based_referral_program_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_discount_code_based_referral_program_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_discount_code_generation_strategy": {"name": "loyalty__merchants_discount_code_generation_strategy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_discount_code_generation_strategy", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_email_header_image_content_type": {"name": "loyalty__merchants_email_header_image_content_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_email_header_image_content_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_email_header_image_file_name": {"name": "loyalty__merchants_email_header_image_file_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_email_header_image_file_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_email_header_image_file_size": {"name": "loyalty__merchants_email_header_image_file_size", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_email_header_image_file_size", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_email_header_image_updated_at": {"name": "loyalty__merchants_email_header_image_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_email_header_image_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_email_header_width": {"name": "loyalty__merchants_email_header_width", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_email_header_width", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_email_layout": {"name": "loyalty__merchants_email_layout", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_email_layout", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_email_layout_html": {"name": "loyalty__merchants_email_layout_html", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_email_layout_html", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_exclude_customer_tags": {"name": "loyalty__merchants_exclude_customer_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_exclude_customer_tags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_facebook_app_id": {"name": "loyalty__merchants_facebook_app_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_facebook_app_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_featured": {"name": "loyalty__merchants_featured", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_featured", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_first_time_referral_discounts_enable_flag": {"name": "loyalty__merchants_first_time_referral_discounts_enable_flag", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_first_time_referral_discounts_enable_flag", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_force_store_accounts": {"name": "loyalty__merchants_force_store_accounts", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_force_store_accounts", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_free_products_enabled": {"name": "loyalty__merchants_free_products_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_free_products_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_free_trial_expiration_job_id": {"name": "loyalty__merchants_free_trial_expiration_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_free_trial_expiration_job_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_free_trial_expires_at": {"name": "loyalty__merchants_free_trial_expires_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_free_trial_expires_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_from_email": {"name": "loyalty__merchants_from_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_from_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_from_name": {"name": "loyalty__merchants_from_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_from_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_group_id": {"name": "loyalty__merchants_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_group_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_guid": {"name": "loyalty__merchants_guid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_guid", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_has_analytics_installed": {"name": "loyalty__merchants_has_analytics_installed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_has_analytics_installed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_has_rewards_installed": {"name": "loyalty__merchants_has_rewards_installed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_has_rewards_installed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_has_store": {"name": "loyalty__merchants_has_store", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_has_store", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_id": {"name": "loyalty__merchants_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_include_purchases_with_details": {"name": "loyalty__merchants_include_purchases_with_details", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_include_purchases_with_details", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_include_shipping": {"name": "loyalty__merchants_include_shipping", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_include_shipping", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_include_storefront_css": {"name": "loyalty__merchants_include_storefront_css", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_include_storefront_css", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_install_order_volume": {"name": "loyalty__merchants_install_order_volume", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_install_order_volume", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_installed_analytics_at": {"name": "loyalty__merchants_installed_analytics_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_installed_analytics_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_installed_rewards_at": {"name": "loyalty__merchants_installed_rewards_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_installed_rewards_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_invoice_job_id": {"name": "loyalty__merchants_invoice_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_invoice_job_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_is_approved": {"name": "loyalty__merchants_is_approved", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_is_approved", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_limit_redemptions": {"name": "loyalty__merchants_limit_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_limit_redemptions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_logo_content_type": {"name": "loyalty__merchants_logo_content_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_logo_content_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_logo_file_name": {"name": "loyalty__merchants_logo_file_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_logo_file_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_logo_file_size": {"name": "loyalty__merchants_logo_file_size", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_logo_file_size", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_logo_updated_at": {"name": "loyalty__merchants_logo_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_logo_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_logo_url": {"name": "loyalty__merchants_logo_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_logo_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_loyalty_opt_in_strategy": {"name": "loyalty__merchants_loyalty_opt_in_strategy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_loyalty_opt_in_strategy", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_manual_adjustment_admin_only": {"name": "loyalty__merchants_manual_adjustment_admin_only", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_manual_adjustment_admin_only", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_metafield_namespace": {"name": "loyalty__merchants_metafield_namespace", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_metafield_namespace", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_nav_exclusions": {"name": "loyalty__merchants_nav_exclusions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_nav_exclusions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_oauth_app_id": {"name": "loyalty__merchants_oauth_app_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_oauth_app_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_on_free_trial": {"name": "loyalty__merchants_on_free_trial", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_on_free_trial", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_order_paid_state": {"name": "loyalty__merchants_order_paid_state", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_order_paid_state", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_order_paid_status": {"name": "loyalty__merchants_order_paid_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_order_paid_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_order_price_setting": {"name": "loyalty__merchants_order_price_setting", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_order_price_setting", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_owner_id": {"name": "loyalty__merchants_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_owner_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_plan": {"name": "loyalty__merchants_plan", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_plan", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_platform": {"name": "loyalty__merchants_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_platform", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_platform_engine": {"name": "loyalty__merchants_platform_engine", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_platform_engine", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_points_per_dollar": {"name": "loyalty__merchants_points_per_dollar", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_points_per_dollar", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_points_reminder_delay_days": {"name": "loyalty__merchants_points_reminder_delay_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_points_reminder_delay_days", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_process_discounts_webhook": {"name": "loyalty__merchants_process_discounts_webhook", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_process_discounts_webhook", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_process_order_state": {"name": "loyalty__merchants_process_order_state", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_process_order_state", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_process_order_status": {"name": "loyalty__merchants_process_order_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_process_order_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_process_order_webhook": {"name": "loyalty__merchants_process_order_webhook", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_process_order_webhook", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_process_refund_status": {"name": "loyalty__merchants_process_refund_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_process_refund_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_product_exclusions": {"name": "loyalty__merchants_product_exclusions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_product_exclusions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_program_live": {"name": "loyalty__merchants_program_live", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_program_live", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_program_locked": {"name": "loyalty__merchants_program_locked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_program_locked", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_referral_avoid_ip_and_user_agent": {"name": "loyalty__merchants_referral_avoid_ip_and_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_referral_avoid_ip_and_user_agent", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_referral_opt_in_strategy": {"name": "loyalty__merchants_referral_opt_in_strategy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_referral_opt_in_strategy", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_referral_reminder_days": {"name": "loyalty__merchants_referral_reminder_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_referral_reminder_days", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_round_discounts_strategy": {"name": "loyalty__merchants_round_discounts_strategy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_round_discounts_strategy", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_security_level": {"name": "loyalty__merchants_security_level", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_security_level", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_setup_rewards_page": {"name": "loyalty__merchants_setup_rewards_page", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_setup_rewards_page", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_show_billing_information": {"name": "loyalty__merchants_show_billing_information", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_show_billing_information", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_slug": {"name": "loyalty__merchants_slug", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_slug", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_source": {"name": "loyalty__merchants_source", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_source", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_store_account_login_url": {"name": "loyalty__merchants_store_account_login_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_store_account_login_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_store_account_registration_url": {"name": "loyalty__merchants_store_account_registration_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_store_account_registration_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_store_id": {"name": "loyalty__merchants_store_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_store_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_stripe_customer_id": {"name": "loyalty__merchants_stripe_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_stripe_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_swell_redemptions_enabled": {"name": "loyalty__merchants_swell_redemptions_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_swell_redemptions_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_sync_fields_with_processor": {"name": "loyalty__merchants_sync_fields_with_processor", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_sync_fields_with_processor", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_sync_newsletter_with_platform": {"name": "loyalty__merchants_sync_newsletter_with_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_sync_newsletter_with_platform", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_sync_tiers_with_platform": {"name": "loyalty__merchants_sync_tiers_with_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_sync_tiers_with_platform", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_test_account": {"name": "loyalty__merchants_test_account", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_test_account", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_third_party_id": {"name": "loyalty__merchants_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_third_party_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_time_zone": {"name": "loyalty__merchants_time_zone", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_time_zone", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_uninstalled_analytics_at": {"name": "loyalty__merchants_uninstalled_analytics_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_uninstalled_analytics_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_uninstalled_rewards_at": {"name": "loyalty__merchants_uninstalled_rewards_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_uninstalled_rewards_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_updated_at": {"name": "loyalty__merchants_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_upsolver_schema_version": {"name": "loyalty__merchants_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_usage_charge_job_id": {"name": "loyalty__merchants_usage_charge_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_usage_charge_job_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_used_coupons_delete_after_days": {"name": "loyalty__merchants_used_coupons_delete_after_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_used_coupons_delete_after_days", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_value_per_subscriber_cents": {"name": "loyalty__merchants_value_per_subscriber_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_value_per_subscriber_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_verified_email_domain": {"name": "loyalty__merchants_verified_email_domain", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_verified_email_domain", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_vip_tiers_job_running": {"name": "loyalty__merchants_vip_tiers_job_running", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_vip_tiers_job_running", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_webhook_token": {"name": "loyalty__merchants_webhook_token", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_webhook_token", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_webhook_url": {"name": "loyalty__merchants_webhook_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_webhook_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_website": {"name": "loyalty__merchants_website", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_website", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_weekly_digest_enabled": {"name": "loyalty__merchants_weekly_digest_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_weekly_digest_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_bg_color": {"name": "loyalty__merchants_widget_bg_color", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_bg_color", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_brand_color": {"name": "loyalty__merchants_widget_brand_color", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_brand_color", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_distance_from_end": {"name": "loyalty__merchants_widget_distance_from_end", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_distance_from_end", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_enabled": {"name": "loyalty__merchants_widget_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_enabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_expanded_by_default": {"name": "loyalty__merchants_widget_expanded_by_default", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_expanded_by_default", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_font_family": {"name": "loyalty__merchants_widget_font_family", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_font_family", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_font_url": {"name": "loyalty__merchants_widget_font_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_font_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_header_text": {"name": "loyalty__merchants_widget_header_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_header_text", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_height": {"name": "loyalty__merchants_widget_height", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_height", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_location": {"name": "loyalty__merchants_widget_location", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_location", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_location_mobile": {"name": "loyalty__merchants_widget_location_mobile", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_location_mobile", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_mobile": {"name": "loyalty__merchants_widget_mobile", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_mobile", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_rounded": {"name": "loyalty__merchants_widget_rounded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_rounded", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_text": {"name": "loyalty__merchants_widget_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_text", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_text_color": {"name": "loyalty__merchants_widget_text_color", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_text_color", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__merchants_widget_theme": {"name": "loyalty__merchants_widget_theme", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__merchants_widget_theme", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks": {"name": "loyalty__perks", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_admin_only": {"name": "loyalty__perks_admin_only", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_admin_only", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_award_job_id": {"name": "loyalty__perks_award_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_award_job_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_awarded": {"name": "loyalty__perks_awarded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_awarded", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_awarded_at": {"name": "loyalty__perks_awarded_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_awarded_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_balance_only": {"name": "loyalty__perks_balance_only", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_balance_only", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_campaign_id": {"name": "loyalty__perks_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_campaign_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_completed": {"name": "loyalty__perks_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_completed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_completed_action": {"name": "loyalty__perks_completed_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_completed_action", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_completed_at": {"name": "loyalty__perks_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_completed_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_created_at": {"name": "loyalty__perks_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_currency": {"name": "loyalty__perks_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_customer_id": {"name": "loyalty__perks_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_expiration_job_id": {"name": "loyalty__perks_expiration_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_expiration_job_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_expired": {"name": "loyalty__perks_expired", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_expired", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_expired_at": {"name": "loyalty__perks_expired_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_expired_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_expires_at": {"name": "loyalty__perks_expires_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_expires_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_hidden": {"name": "loyalty__perks_hidden", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_hidden", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_history_title": {"name": "loyalty__perks_history_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_history_title", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_id": {"name": "loyalty__perks_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_identity_id": {"name": "loyalty__perks_identity_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_identity_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_merchant_id": {"name": "loyalty__perks_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_original_awarded_at": {"name": "loyalty__perks_original_awarded_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_original_awarded_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_pending": {"name": "loyalty__perks_pending", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_pending", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_point_transactions": {"name": "loyalty__perks_point_transactions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_point_transactions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_points_multiplier": {"name": "loyalty__perks_points_multiplier", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_points_multiplier", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_points_transactions": {"name": "loyalty__perks_points_transactions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_points_transactions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_redeemable": {"name": "loyalty__perks_redeemable", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_redeemable", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_redemption_option_id": {"name": "loyalty__perks_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_redemption_option_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_referral_id": {"name": "loyalty__perks_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_referral_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_reversed": {"name": "loyalty__perks_reversed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_reversed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_reversed_at": {"name": "loyalty__perks_reversed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_reversed_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_reward_points": {"name": "loyalty__perks_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_reward_points", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_updated_at": {"name": "loyalty__perks_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_upsolver_schema_version": {"name": "loyalty__perks_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_user_actions": {"name": "loyalty__perks_user_actions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_user_actions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_user_actions_created_at": {"name": "loyalty__perks_user_actions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_user_actions_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_user_actions_perk_id": {"name": "loyalty__perks_user_actions_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_user_actions_perk_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_user_actions_updated_at": {"name": "loyalty__perks_user_actions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_user_actions_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_user_actions_upsolver_schema_version": {"name": "loyalty__perks_user_actions_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_user_actions_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__perks_user_actions_user_action_id": {"name": "loyalty__perks_user_actions_user_action_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__perks_user_actions_user_action_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions": {"name": "loyalty__point_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_amount": {"name": "loyalty__point_redemptions_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_api_version": {"name": "loyalty__point_redemptions_api_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_api_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_approved": {"name": "loyalty__point_redemptions_approved", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_approved", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_approved_at": {"name": "loyalty__point_redemptions_approved_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_approved_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_at_checkout": {"name": "loyalty__point_redemptions_at_checkout", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_at_checkout", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_cart_id": {"name": "loyalty__point_redemptions_cart_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_cart_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_cost_cents": {"name": "loyalty__point_redemptions_cost_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_cost_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_created_at": {"name": "loyalty__point_redemptions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_currency": {"name": "loyalty__point_redemptions_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_customer_id": {"name": "loyalty__point_redemptions_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_deleted": {"name": "loyalty__point_redemptions_deleted", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_id": {"name": "loyalty__point_redemptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_identity_id": {"name": "loyalty__point_redemptions_identity_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_identity_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_is_admin": {"name": "loyalty__point_redemptions_is_admin", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_is_admin", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_is_pos": {"name": "loyalty__point_redemptions_is_pos", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_is_pos", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_merchant_id": {"name": "loyalty__point_redemptions_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_perk_id": {"name": "loyalty__point_redemptions_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_perk_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_point_transactions": {"name": "loyalty__point_redemptions_point_transactions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_point_transactions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_redemption_option_id": {"name": "loyalty__point_redemptions_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_redemption_option_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_referral_id": {"name": "loyalty__point_redemptions_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_referral_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_refunded_amount": {"name": "loyalty__point_redemptions_refunded_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_refunded_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_reversed": {"name": "loyalty__point_redemptions_reversed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_reversed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_reward_text": {"name": "loyalty__point_redemptions_reward_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_reward_text", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_reward_title": {"name": "loyalty__point_redemptions_reward_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_reward_title", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_third_party_order_id": {"name": "loyalty__point_redemptions_third_party_order_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_third_party_order_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_updated_at": {"name": "loyalty__point_redemptions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_upsolver_schema_version": {"name": "loyalty__point_redemptions_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_value_cents": {"name": "loyalty__point_redemptions_value_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_value_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__point_redemptions_visible": {"name": "loyalty__point_redemptions_visible", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__point_redemptions_visible", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors": {"name": "loyalty__processors", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_created_at": {"name": "loyalty__processors_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_guid": {"name": "loyalty__processors_guid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_guid", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_has_authorized": {"name": "loyalty__processors_has_authorized", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_has_authorized", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_id": {"name": "loyalty__processors_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_import_completed": {"name": "loyalty__processors_import_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_import_completed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_import_records_processed": {"name": "loyalty__processors_import_records_processed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_import_records_processed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_import_started": {"name": "loyalty__processors_import_started", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_import_started", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_import_total_records": {"name": "loyalty__processors_import_total_records", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_import_total_records", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_last_fetch_at": {"name": "loyalty__processors_last_fetch_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_last_fetch_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_last_page_number": {"name": "loyalty__processors_last_page_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_last_page_number", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_merchant_id": {"name": "loyalty__processors_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_name": {"name": "loyalty__processors_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_oauth_token_id": {"name": "loyalty__processors_oauth_token_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_oauth_token_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_paused": {"name": "loyalty__processors_paused", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_paused", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_permissions": {"name": "loyalty__processors_permissions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_permissions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_type": {"name": "loyalty__processors_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_updated_at": {"name": "loyalty__processors_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__processors_upsolver_schema_version": {"name": "loyalty__processors_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__processors_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items": {"name": "loyalty__purchase_items", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_category_id": {"name": "loyalty__purchase_items_category_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_category_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_created_at": {"name": "loyalty__purchase_items_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_currency": {"name": "loyalty__purchase_items_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_id": {"name": "loyalty__purchase_items_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_price_cents": {"name": "loyalty__purchase_items_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_price_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_product_id": {"name": "loyalty__purchase_items_product_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_product_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_product_type": {"name": "loyalty__purchase_items_product_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_product_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_purchase_id": {"name": "loyalty__purchase_items_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_purchase_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_quantity": {"name": "loyalty__purchase_items_quantity", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_quantity", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_tags": {"name": "loyalty__purchase_items_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_tags", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_third_party_id": {"name": "loyalty__purchase_items_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_third_party_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_title": {"name": "loyalty__purchase_items_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_title", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_updated_at": {"name": "loyalty__purchase_items_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_upsolver_schema_version": {"name": "loyalty__purchase_items_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchase_items_vendor": {"name": "loyalty__purchase_items_vendor", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchase_items_vendor", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases": {"name": "loyalty__purchases", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_affiliate_amount": {"name": "loyalty__purchases_affiliate_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_affiliate_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_amount_cents": {"name": "loyalty__purchases_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_applied_to_campaigns": {"name": "loyalty__purchases_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_applied_to_campaigns", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_avs_postal_match": {"name": "loyalty__purchases_avs_postal_match", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_avs_postal_match", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_avs_result_code": {"name": "loyalty__purchases_avs_result_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_avs_result_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_avs_street_match": {"name": "loyalty__purchases_avs_street_match", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_avs_street_match", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_before_swellrewards": {"name": "loyalty__purchases_before_swellrewards", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_before_swellrewards", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_billing_address1": {"name": "loyalty__purchases_billing_address1", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_billing_address1", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_billing_address2": {"name": "loyalty__purchases_billing_address2", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_billing_address2", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_billing_city": {"name": "loyalty__purchases_billing_city", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_billing_city", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_billing_country_code": {"name": "loyalty__purchases_billing_country_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_billing_country_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_billing_first_name": {"name": "loyalty__purchases_billing_first_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_billing_first_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_billing_last_name": {"name": "loyalty__purchases_billing_last_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_billing_last_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_billing_phone": {"name": "loyalty__purchases_billing_phone", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_billing_phone", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_billing_zip": {"name": "loyalty__purchases_billing_zip", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_billing_zip", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_browser_country_code": {"name": "loyalty__purchases_browser_country_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_browser_country_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_channel_type": {"name": "loyalty__purchases_channel_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_channel_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_chargeback_protection": {"name": "loyalty__purchases_chargeback_protection", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_chargeback_protection", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_clerk_employee_id": {"name": "loyalty__purchases_clerk_employee_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_clerk_employee_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_clerk_name": {"name": "loyalty__purchases_clerk_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_clerk_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_created_at": {"name": "loyalty__purchases_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_credit_card_bin": {"name": "loyalty__purchases_credit_card_bin", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_credit_card_bin", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_credit_card_company": {"name": "loyalty__purchases_credit_card_company", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_credit_card_company", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_credit_card_number": {"name": "loyalty__purchases_credit_card_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_credit_card_number", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_currency": {"name": "loyalty__purchases_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_customer_id": {"name": "loyalty__purchases_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_cvv_result_code": {"name": "loyalty__purchases_cvv_result_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_cvv_result_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_eligible_for_vip_tiers": {"name": "loyalty__purchases_eligible_for_vip_tiers", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_eligible_for_vip_tiers", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_fee_amount_cents": {"name": "loyalty__purchases_fee_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_fee_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_fraud_review": {"name": "loyalty__purchases_fraud_review", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_fraud_review", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_gateway": {"name": "loyalty__purchases_gateway", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_gateway", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_has_swell_user": {"name": "loyalty__purchases_has_swell_user", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_has_swell_user", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_id": {"name": "loyalty__purchases_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_ip_address": {"name": "loyalty__purchases_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_ip_address", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_is_refunded": {"name": "loyalty__purchases_is_refunded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_is_refunded", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_is_repeat": {"name": "loyalty__purchases_is_repeat", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_is_repeat", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_landing_site": {"name": "loyalty__purchases_landing_site", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_landing_site", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_merchant_id": {"name": "loyalty__purchases_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_order_id": {"name": "loyalty__purchases_order_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_order_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_processor_id": {"name": "loyalty__purchases_processor_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_processor_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_redemption_code_id": {"name": "loyalty__purchases_redemption_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_redemption_code_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_redemptions": {"name": "loyalty__purchases_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_redemptions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_redemptions_created_at": {"name": "loyalty__purchases_redemptions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_redemptions_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_redemptions_id": {"name": "loyalty__purchases_redemptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_redemptions_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_redemptions_purchase_id": {"name": "loyalty__purchases_redemptions_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_redemptions_purchase_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_redemptions_redemption_id": {"name": "loyalty__purchases_redemptions_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_redemptions_redemption_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_redemptions_updated_at": {"name": "loyalty__purchases_redemptions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_redemptions_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_redemptions_upsolver_schema_version": {"name": "loyalty__purchases_redemptions_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_redemptions_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_referral_discount_code_id": {"name": "loyalty__purchases_referral_discount_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_referral_discount_code_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_referral_id": {"name": "loyalty__purchases_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_referral_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_referring_site": {"name": "loyalty__purchases_referring_site", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_referring_site", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_sender_email": {"name": "loyalty__purchases_sender_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_sender_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_shipping_address1": {"name": "loyalty__purchases_shipping_address1", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_shipping_address1", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_shipping_address2": {"name": "loyalty__purchases_shipping_address2", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_shipping_address2", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_shipping_city": {"name": "loyalty__purchases_shipping_city", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_shipping_city", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_shipping_country_code": {"name": "loyalty__purchases_shipping_country_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_shipping_country_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_shipping_first_name": {"name": "loyalty__purchases_shipping_first_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_shipping_first_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_shipping_last_name": {"name": "loyalty__purchases_shipping_last_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_shipping_last_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_shipping_phone": {"name": "loyalty__purchases_shipping_phone", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_shipping_phone", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_shipping_zip": {"name": "loyalty__purchases_shipping_zip", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_shipping_zip", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_store_account_id": {"name": "loyalty__purchases_store_account_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_store_account_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_store_address": {"name": "loyalty__purchases_store_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_store_address", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_store_city": {"name": "loyalty__purchases_store_city", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_store_city", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_store_state": {"name": "loyalty__purchases_store_state", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_store_state", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_swell_discount_cost_cents": {"name": "loyalty__purchases_swell_discount_cost_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_swell_discount_cost_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_synced_to_analytics": {"name": "loyalty__purchases_synced_to_analytics", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_synced_to_analytics", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_transaction_hash": {"name": "loyalty__purchases_transaction_hash", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_transaction_hash", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_transaction_id": {"name": "loyalty__purchases_transaction_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_transaction_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_updated_at": {"name": "loyalty__purchases_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_upsolver_schema_version": {"name": "loyalty__purchases_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_user_agent": {"name": "loyalty__purchases_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_user_agent", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_user_agent_id": {"name": "loyalty__purchases_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_user_agent_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_user_id": {"name": "loyalty__purchases_user_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_vip_tier_eligibility_job_id": {"name": "loyalty__purchases_vip_tier_eligibility_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_vip_tier_eligibility_job_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_with_currency": {"name": "loyalty__purchases_with_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_with_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_with_currency_amount_cents": {"name": "loyalty__purchases_with_currency_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_with_currency_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_with_currency_created_at": {"name": "loyalty__purchases_with_currency_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_with_currency_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_with_currency_currency_symbol": {"name": "loyalty__purchases_with_currency_currency_symbol", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_with_currency_currency_symbol", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_with_currency_external_exchange_rate": {"name": "loyalty__purchases_with_currency_external_exchange_rate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_with_currency_external_exchange_rate", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_with_currency_id": {"name": "loyalty__purchases_with_currency_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_with_currency_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_with_currency_loyalty_exchange_rate": {"name": "loyalty__purchases_with_currency_loyalty_exchange_rate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_with_currency_loyalty_exchange_rate", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_with_currency_merchant_id": {"name": "loyalty__purchases_with_currency_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_with_currency_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_with_currency_purchase_id": {"name": "loyalty__purchases_with_currency_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_with_currency_purchase_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_with_currency_updated_at": {"name": "loyalty__purchases_with_currency_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_with_currency_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__purchases_with_currency_upsolver_schema_version": {"name": "loyalty__purchases_with_currency_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__purchases_with_currency_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes": {"name": "loyalty__redemption_codes", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_amount_used_cents": {"name": "loyalty__redemption_codes_amount_used_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_amount_used_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_code": {"name": "loyalty__redemption_codes_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_created_at": {"name": "loyalty__redemption_codes_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_id": {"name": "loyalty__redemption_codes_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_merchant_id": {"name": "loyalty__redemption_codes_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_point_redemption_id": {"name": "loyalty__redemption_codes_point_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_point_redemption_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_recharge_third_party_id": {"name": "loyalty__redemption_codes_recharge_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_recharge_third_party_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_redemption_option_id": {"name": "loyalty__redemption_codes_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_redemption_option_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_third_party_id": {"name": "loyalty__redemption_codes_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_third_party_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_third_party_rule_id": {"name": "loyalty__redemption_codes_third_party_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_third_party_rule_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_updated_at": {"name": "loyalty__redemption_codes_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_upsolver_schema_version": {"name": "loyalty__redemption_codes_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_used": {"name": "loyalty__redemption_codes_used", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_used", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_codes_uses": {"name": "loyalty__redemption_codes_uses", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_codes_uses", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options": {"name": "loyalty__redemption_options", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_amount": {"name": "loyalty__redemption_options_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_applies_once": {"name": "loyalty__redemption_options_applies_once", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_applies_once", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_applies_to_any_or_all_attributes": {"name": "loyalty__redemption_options_applies_to_any_or_all_attributes", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_applies_to_any_or_all_attributes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_applies_to_attributes": {"name": "loyalty__redemption_options_applies_to_attributes", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_applies_to_attributes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_applies_to_id": {"name": "loyalty__redemption_options_applies_to_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_applies_to_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_applies_to_product_type": {"name": "loyalty__redemption_options_applies_to_product_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_applies_to_product_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_applies_to_resource": {"name": "loyalty__redemption_options_applies_to_resource", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_applies_to_resource", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_applies_to_values": {"name": "loyalty__redemption_options_applies_to_values", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_applies_to_values", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_automatically_apply": {"name": "loyalty__redemption_options_automatically_apply", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_automatically_apply", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_background_image_id": {"name": "loyalty__redemption_options_background_image_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_background_image_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_cart_greater_than_cents": {"name": "loyalty__redemption_options_cart_greater_than_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_cart_greater_than_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_charset": {"name": "loyalty__redemption_options_charset", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_charset", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_code_length": {"name": "loyalty__redemption_options_code_length", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_code_length", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_collection_ids": {"name": "loyalty__redemption_options_collection_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_collection_ids", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_cost_text": {"name": "loyalty__redemption_options_cost_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_cost_text", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_coupon_cancellation_url": {"name": "loyalty__redemption_options_coupon_cancellation_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_coupon_cancellation_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_coupons_pool_amount": {"name": "loyalty__redemption_options_coupons_pool_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_coupons_pool_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_created_at": {"name": "loyalty__redemption_options_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_currency": {"name": "loyalty__redemption_options_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_custom_coupon_cost_cents": {"name": "loyalty__redemption_options_custom_coupon_cost_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_custom_coupon_cost_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_customer_ids": {"name": "loyalty__redemption_options_customer_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_customer_ids", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_deleted": {"name": "loyalty__redemption_options_deleted", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_deleted", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_description": {"name": "loyalty__redemption_options_description", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_discount_amount_cents": {"name": "loyalty__redemption_options_discount_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_discount_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_discount_percentage": {"name": "loyalty__redemption_options_discount_percentage", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_discount_percentage", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_discount_rate_cents": {"name": "loyalty__redemption_options_discount_rate_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_discount_rate_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_discount_type": {"name": "loyalty__redemption_options_discount_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_discount_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_display_in_admin": {"name": "loyalty__redemption_options_display_in_admin", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_display_in_admin", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_display_in_popup": {"name": "loyalty__redemption_options_display_in_popup", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_display_in_popup", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_display_order": {"name": "loyalty__redemption_options_display_order", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_display_order", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_duration": {"name": "loyalty__redemption_options_duration", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_duration", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_expires_after": {"name": "loyalty__redemption_options_expires_after", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_expires_after", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_free_product_cost_cents": {"name": "loyalty__redemption_options_free_product_cost_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_free_product_cost_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_free_shipping_less_than_cents": {"name": "loyalty__redemption_options_free_shipping_less_than_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_free_shipping_less_than_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_generic_url": {"name": "loyalty__redemption_options_generic_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_generic_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_group_ids": {"name": "loyalty__redemption_options_group_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_group_ids", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_icon": {"name": "loyalty__redemption_options_icon", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_icon", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_id": {"name": "loyalty__redemption_options_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_image": {"name": "loyalty__redemption_options_image", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_image", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_is_offline": {"name": "loyalty__redemption_options_is_offline", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_is_offline", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_is_pos": {"name": "loyalty__redemption_options_is_pos", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_is_pos", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_merchant_id": {"name": "loyalty__redemption_options_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_min_amount": {"name": "loyalty__redemption_options_min_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_min_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_name": {"name": "loyalty__redemption_options_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_once_per_customer": {"name": "loyalty__redemption_options_once_per_customer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_once_per_customer", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_prefix": {"name": "loyalty__redemption_options_prefix", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_prefix", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_product_ids": {"name": "loyalty__redemption_options_product_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_product_ids", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_quantity": {"name": "loyalty__redemption_options_quantity", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_quantity", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_redemption_codes_webhook_threshold": {"name": "loyalty__redemption_options_redemption_codes_webhook_threshold", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_redemption_codes_webhook_threshold", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_restrict_to_redeeming_customer": {"name": "loyalty__redemption_options_restrict_to_redeeming_customer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_restrict_to_redeeming_customer", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_reward_intro": {"name": "loyalty__redemption_options_reward_intro", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_reward_intro", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_saved_search_ids": {"name": "loyalty__redemption_options_saved_search_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_saved_search_ids", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_secret": {"name": "loyalty__redemption_options_secret", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_secret", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_segment_ids": {"name": "loyalty__redemption_options_segment_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_segment_ids", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_show_online": {"name": "loyalty__redemption_options_show_online", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_show_online", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_single_use": {"name": "loyalty__redemption_options_single_use", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_single_use", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_skip_platform_create": {"name": "loyalty__redemption_options_skip_platform_create", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_skip_platform_create", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_third_party_id": {"name": "loyalty__redemption_options_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_third_party_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_title": {"name": "loyalty__redemption_options_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_title", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_type": {"name": "loyalty__redemption_options_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_updated_at": {"name": "loyalty__redemption_options_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_upsolver_schema_version": {"name": "loyalty__redemption_options_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_usage_limit": {"name": "loyalty__redemption_options_usage_limit", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_usage_limit", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_value_cents": {"name": "loyalty__redemption_options_value_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_value_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__redemption_options_variant_ids": {"name": "loyalty__redemption_options_variant_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__redemption_options_variant_ids", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes": {"name": "loyalty__referral_codes", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_amount_cents": {"name": "loyalty__referral_codes_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_average_amount_cents": {"name": "loyalty__referral_codes_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_average_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_campaign_id": {"name": "loyalty__referral_codes_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_campaign_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_clicks": {"name": "loyalty__referral_codes_clicks", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_clicks", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_code": {"name": "loyalty__referral_codes_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_copy_link_shares": {"name": "loyalty__referral_codes_copy_link_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_copy_link_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_customer_id": {"name": "loyalty__referral_codes_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_email_shares": {"name": "loyalty__referral_codes_email_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_email_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_emails_sent": {"name": "loyalty__referral_codes_emails_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_emails_sent", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_emails_viewed": {"name": "loyalty__referral_codes_emails_viewed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_emails_viewed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_expiration_final_reminder_job_id": {"name": "loyalty__referral_codes_expiration_final_reminder_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_expiration_final_reminder_job_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_expiration_reminder_job_id": {"name": "loyalty__referral_codes_expiration_reminder_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_expiration_reminder_job_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_expire_job_id": {"name": "loyalty__referral_codes_expire_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_expire_job_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_expired": {"name": "loyalty__referral_codes_expired", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_expired", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_expires_at": {"name": "loyalty__referral_codes_expires_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_expires_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_facebook_messenger_shares": {"name": "loyalty__referral_codes_facebook_messenger_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_facebook_messenger_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_facebook_shares": {"name": "loyalty__referral_codes_facebook_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_facebook_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_id": {"name": "loyalty__referral_codes_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_identity_id": {"name": "loyalty__referral_codes_identity_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_identity_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_invalid_clicks": {"name": "loyalty__referral_codes_invalid_clicks", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_invalid_clicks", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_links_clicked": {"name": "loyalty__referral_codes_links_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_links_clicked", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_links_clicked_from_email": {"name": "loyalty__referral_codes_links_clicked_from_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_links_clicked_from_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_links_clicked_from_facebook": {"name": "loyalty__referral_codes_links_clicked_from_facebook", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_links_clicked_from_facebook", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_links_clicked_from_twitter": {"name": "loyalty__referral_codes_links_clicked_from_twitter", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_links_clicked_from_twitter", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_merchant_id": {"name": "loyalty__referral_codes_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_orders": {"name": "loyalty__referral_codes_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_orders", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_personal_email_shares": {"name": "loyalty__referral_codes_personal_email_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_personal_email_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_shares": {"name": "loyalty__referral_codes_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_sms_shares": {"name": "loyalty__referral_codes_sms_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_sms_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_target_referrals": {"name": "loyalty__referral_codes_target_referrals", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_target_referrals", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_twitter_shares": {"name": "loyalty__referral_codes_twitter_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_twitter_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_updated_at": {"name": "loyalty__referral_codes_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_upsolver_schema_version": {"name": "loyalty__referral_codes_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_codes_whatsapp_shares": {"name": "loyalty__referral_codes_whatsapp_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_codes_whatsapp_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes": {"name": "loyalty__referral_discount_codes", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_amount_cents": {"name": "loyalty__referral_discount_codes_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_amount_used_cents": {"name": "loyalty__referral_discount_codes_amount_used_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_amount_used_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_average_amount_cents": {"name": "loyalty__referral_discount_codes_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_average_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_batch_id": {"name": "loyalty__referral_discount_codes_batch_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_batch_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_campaign_id": {"name": "loyalty__referral_discount_codes_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_campaign_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_code": {"name": "loyalty__referral_discount_codes_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_code", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_created_at": {"name": "loyalty__referral_discount_codes_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_customer_id": {"name": "loyalty__referral_discount_codes_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_id": {"name": "loyalty__referral_discount_codes_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_merchant_id": {"name": "loyalty__referral_discount_codes_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_orders": {"name": "loyalty__referral_discount_codes_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_orders", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_redemption_option_id": {"name": "loyalty__referral_discount_codes_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_redemption_option_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_third_party_id": {"name": "loyalty__referral_discount_codes_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_third_party_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_third_party_rule_id": {"name": "loyalty__referral_discount_codes_third_party_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_third_party_rule_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_updated_at": {"name": "loyalty__referral_discount_codes_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_upsolver_schema_version": {"name": "loyalty__referral_discount_codes_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_used": {"name": "loyalty__referral_discount_codes_used", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_used", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_discount_codes_uses": {"name": "loyalty__referral_discount_codes_uses", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_discount_codes_uses", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts": {"name": "loyalty__referral_receipts", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_completed_at": {"name": "loyalty__referral_receipts_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_completed_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_created_at": {"name": "loyalty__referral_receipts_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_customer_id": {"name": "loyalty__referral_receipts_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_email": {"name": "loyalty__referral_receipts_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_id": {"name": "loyalty__referral_receipts_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_is_reversed": {"name": "loyalty__referral_receipts_is_reversed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_is_reversed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_merchant_id": {"name": "loyalty__referral_receipts_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_referral_code_id": {"name": "loyalty__referral_receipts_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_referral_code_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_referral_discount_code_id": {"name": "loyalty__referral_receipts_referral_discount_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_referral_discount_code_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_referral_id": {"name": "loyalty__referral_receipts_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_referral_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_referred_customer_id": {"name": "loyalty__referral_receipts_referred_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_referred_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_reminder_job_id": {"name": "loyalty__referral_receipts_reminder_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_reminder_job_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_signed_up_at": {"name": "loyalty__referral_receipts_signed_up_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_signed_up_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_source": {"name": "loyalty__referral_receipts_source", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_source", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_updated_at": {"name": "loyalty__referral_receipts_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_receipts_upsolver_schema_version": {"name": "loyalty__referral_receipts_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_receipts_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_shares": {"name": "loyalty__referral_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_shares_created_at": {"name": "loyalty__referral_shares_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_shares_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_shares_customer_id": {"name": "loyalty__referral_shares_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_shares_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_shares_id": {"name": "loyalty__referral_shares_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_shares_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_shares_ip_address": {"name": "loyalty__referral_shares_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_shares_ip_address", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_shares_merchant_id": {"name": "loyalty__referral_shares_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_shares_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_shares_referral_code_id": {"name": "loyalty__referral_shares_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_shares_referral_code_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_shares_type": {"name": "loyalty__referral_shares_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_shares_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_shares_updated_at": {"name": "loyalty__referral_shares_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_shares_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_shares_upsolver_schema_version": {"name": "loyalty__referral_shares_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_shares_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_shares_user_agent_id": {"name": "loyalty__referral_shares_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_shares_user_agent_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots": {"name": "loyalty__referral_snapshots", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_amount_cents": {"name": "loyalty__referral_snapshots_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_average_amount_cents": {"name": "loyalty__referral_snapshots_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_average_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_copy_link_shares": {"name": "loyalty__referral_snapshots_copy_link_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_copy_link_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_created_at": {"name": "loyalty__referral_snapshots_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_day": {"name": "loyalty__referral_snapshots_day", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_day", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_email_shares": {"name": "loyalty__referral_snapshots_email_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_email_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_emails_sent": {"name": "loyalty__referral_snapshots_emails_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_emails_sent", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_emails_viewed": {"name": "loyalty__referral_snapshots_emails_viewed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_emails_viewed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_facebook_messenger_shares": {"name": "loyalty__referral_snapshots_facebook_messenger_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_facebook_messenger_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_facebook_shares": {"name": "loyalty__referral_snapshots_facebook_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_facebook_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_id": {"name": "loyalty__referral_snapshots_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_links_clicked": {"name": "loyalty__referral_snapshots_links_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_links_clicked", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_links_clicked_from_email": {"name": "loyalty__referral_snapshots_links_clicked_from_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_links_clicked_from_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_links_clicked_from_facebook": {"name": "loyalty__referral_snapshots_links_clicked_from_facebook", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_links_clicked_from_facebook", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_links_clicked_from_twitter": {"name": "loyalty__referral_snapshots_links_clicked_from_twitter", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_links_clicked_from_twitter", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_merchant_id": {"name": "loyalty__referral_snapshots_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_orders": {"name": "loyalty__referral_snapshots_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_orders", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_personal_email_shares": {"name": "loyalty__referral_snapshots_personal_email_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_personal_email_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_shares": {"name": "loyalty__referral_snapshots_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_sms_shares": {"name": "loyalty__referral_snapshots_sms_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_sms_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_twitter_shares": {"name": "loyalty__referral_snapshots_twitter_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_twitter_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_updated_at": {"name": "loyalty__referral_snapshots_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_upsolver_schema_version": {"name": "loyalty__referral_snapshots_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referral_snapshots_whatsapp_shares": {"name": "loyalty__referral_snapshots_whatsapp_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referral_snapshots_whatsapp_shares", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals": {"name": "loyalty__referrals", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_amount_cents": {"name": "loyalty__referrals_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_average_amount_cents": {"name": "loyalty__referrals_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_average_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_campaign_id": {"name": "loyalty__referrals_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_campaign_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_completed_at": {"name": "loyalty__referrals_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_completed_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_created_at": {"name": "loyalty__referrals_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_currency": {"name": "loyalty__referrals_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_customer_id": {"name": "loyalty__referrals_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_external_product_id": {"name": "loyalty__referrals_external_product_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_external_product_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_id": {"name": "loyalty__referrals_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_ip_address": {"name": "loyalty__referrals_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_ip_address", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_is_apple_private_relay_ip": {"name": "loyalty__referrals_is_apple_private_relay_ip", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_is_apple_private_relay_ip", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_link_share_type": {"name": "loyalty__referrals_link_share_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_link_share_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_manually_override_status": {"name": "loyalty__referrals_manually_override_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_manually_override_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_merchant_id": {"name": "loyalty__referrals_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_orders": {"name": "loyalty__referrals_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_orders", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_points_balance": {"name": "loyalty__referrals_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_points_balance", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_points_earned": {"name": "loyalty__referrals_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_points_earned", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_referral_code_id": {"name": "loyalty__referrals_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_referral_code_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_referring_host": {"name": "loyalty__referrals_referring_host", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_referring_host", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_updated_at": {"name": "loyalty__referrals_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_upsolver_schema_version": {"name": "loyalty__referrals_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__referrals_user_agent_id": {"name": "loyalty__referrals_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__referrals_user_agent_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refund_items": {"name": "loyalty__refund_items", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refund_items", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refund_items_created_at": {"name": "loyalty__refund_items_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refund_items_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refund_items_discount_allocation_amount_cents": {"name": "loyalty__refund_items_discount_allocation_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refund_items_discount_allocation_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refund_items_id": {"name": "loyalty__refund_items_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refund_items_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refund_items_purchase_item_id": {"name": "loyalty__refund_items_purchase_item_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refund_items_purchase_item_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refund_items_quantity": {"name": "loyalty__refund_items_quantity", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refund_items_quantity", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refund_items_refund_id": {"name": "loyalty__refund_items_refund_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refund_items_refund_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refund_items_third_party_id": {"name": "loyalty__refund_items_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refund_items_third_party_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refund_items_updated_at": {"name": "loyalty__refund_items_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refund_items_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refund_items_upsolver_schema_version": {"name": "loyalty__refund_items_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refund_items_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds": {"name": "loyalty__refunds", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_amount_cents": {"name": "loyalty__refunds_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_amount_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_amount_cents_in_shopper_currency": {"name": "loyalty__refunds_amount_cents_in_shopper_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_amount_cents_in_shopper_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_created_at": {"name": "loyalty__refunds_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_currency": {"name": "loyalty__refunds_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_gift_card_amount": {"name": "loyalty__refunds_gift_card_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_gift_card_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_gift_card_cents": {"name": "loyalty__refunds_gift_card_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_gift_card_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_id": {"name": "loyalty__refunds_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_purchase_id": {"name": "loyalty__refunds_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_purchase_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_refund_id": {"name": "loyalty__refunds_refund_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_refund_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_swell_gift_card_amount": {"name": "loyalty__refunds_swell_gift_card_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_swell_gift_card_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_swell_gift_card_cents": {"name": "loyalty__refunds_swell_gift_card_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_swell_gift_card_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_total_amount": {"name": "loyalty__refunds_total_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_total_amount", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_updated_at": {"name": "loyalty__refunds_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__refunds_upsolver_schema_version": {"name": "loyalty__refunds_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__refunds_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__store_email_activity": {"name": "loyalty__store_email_activity", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__store_email_activity", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__store_email_activity_campaigns_emails_delivered": {"name": "loyalty__store_email_activity_campaigns_emails_delivered", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__store_email_activity_campaigns_emails_delivered", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__store_email_activity_flows_emails_delivered": {"name": "loyalty__store_email_activity_flows_emails_delivered", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__store_email_activity_flows_emails_delivered", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__store_email_activity_last_email_delivered": {"name": "loyalty__store_email_activity_last_email_delivered", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__store_email_activity_last_email_delivered", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__store_email_activity_name": {"name": "loyalty__store_email_activity_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__store_email_activity_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__store_email_activity_start_date": {"name": "loyalty__store_email_activity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__store_email_activity_start_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__store_email_activity_store_id": {"name": "loyalty__store_email_activity_store_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__store_email_activity_store_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__store_email_activity_test_emails": {"name": "loyalty__store_email_activity_test_emails", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__store_email_activity_test_emails", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__store_email_activity_total_emails": {"name": "loyalty__store_email_activity_total_emails", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__store_email_activity_total_emails", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions": {"name": "loyalty__subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_base_price_cents": {"name": "loyalty__subscriptions_base_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_base_price_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_billing_provider": {"name": "loyalty__subscriptions_billing_provider", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_billing_provider", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_charge_status": {"name": "loyalty__subscriptions_charge_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_charge_status", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_created_at": {"name": "loyalty__subscriptions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_current": {"name": "loyalty__subscriptions_current", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_current", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_id": {"name": "loyalty__subscriptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_included_orders": {"name": "loyalty__subscriptions_included_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_included_orders", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_last_usage_charge_at": {"name": "loyalty__subscriptions_last_usage_charge_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_last_usage_charge_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_manual_price_cents": {"name": "loyalty__subscriptions_manual_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_manual_price_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_merchant_id": {"name": "loyalty__subscriptions_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_overdue": {"name": "loyalty__subscriptions_overdue", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_overdue", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_pending": {"name": "loyalty__subscriptions_pending", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_pending", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_per_order_price_cents": {"name": "loyalty__subscriptions_per_order_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_per_order_price_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_percentage_of_redemptions": {"name": "loyalty__subscriptions_percentage_of_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_percentage_of_redemptions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_percentage_of_referrals": {"name": "loyalty__subscriptions_percentage_of_referrals", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_percentage_of_referrals", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_plan_id": {"name": "loyalty__subscriptions_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_plan_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_recurring_charge_id": {"name": "loyalty__subscriptions_recurring_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_recurring_charge_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_updated_at": {"name": "loyalty__subscriptions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_upsolver_schema_version": {"name": "loyalty__subscriptions_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__subscriptions_was_current": {"name": "loyalty__subscriptions_was_current", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__subscriptions_was_current", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions": {"name": "loyalty__user_actions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_action_creation_time": {"name": "loyalty__user_actions_action_creation_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_action_creation_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_applied_to_campaigns": {"name": "loyalty__user_actions_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_applied_to_campaigns", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_campaign_id": {"name": "loyalty__user_actions_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_campaign_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_created_at": {"name": "loyalty__user_actions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_customer_id": {"name": "loyalty__user_actions_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_email": {"name": "loyalty__user_actions_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_has_swell_user": {"name": "loyalty__user_actions_has_swell_user", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_has_swell_user", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_history_title": {"name": "loyalty__user_actions_history_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_history_title", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_id": {"name": "loyalty__user_actions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_ip_address": {"name": "loyalty__user_actions_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_ip_address", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_merchant_id": {"name": "loyalty__user_actions_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_metadata": {"name": "loyalty__user_actions_metadata", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_metadata", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_name": {"name": "loyalty__user_actions_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_parent_perk_id": {"name": "loyalty__user_actions_parent_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_parent_perk_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_referral_id": {"name": "loyalty__user_actions_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_referral_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_reward_points": {"name": "loyalty__user_actions_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_reward_points", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_synced_to_analytics": {"name": "loyalty__user_actions_synced_to_analytics", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_synced_to_analytics", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_third_party_id": {"name": "loyalty__user_actions_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_third_party_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_type": {"name": "loyalty__user_actions_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_updated_at": {"name": "loyalty__user_actions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_upsolver_schema_version": {"name": "loyalty__user_actions_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_user_agent_id": {"name": "loyalty__user_actions_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_user_agent_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_actions_user_id": {"name": "loyalty__user_actions_user_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_actions_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_agents": {"name": "loyalty__user_agents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_agents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_agents_created_at": {"name": "loyalty__user_agents_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_agents_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_agents_id": {"name": "loyalty__user_agents_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_agents_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_agents_updated_at": {"name": "loyalty__user_agents_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_agents_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_agents_upsolver_schema_version": {"name": "loyalty__user_agents_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_agents_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_agents_user_agent": {"name": "loyalty__user_agents_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_agents_user_agent", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__user_agents_user_agent_hash": {"name": "loyalty__user_agents_user_agent_hash", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__user_agents_user_agent_hash", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers": {"name": "loyalty__vip_tiers", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_background_image_id": {"name": "loyalty__vip_tiers_background_image_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_background_image_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_created_at": {"name": "loyalty__vip_tiers_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_currency": {"name": "loyalty__vip_tiers_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_description": {"name": "loyalty__vip_tiers_description", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_earned_title": {"name": "loyalty__vip_tiers_earned_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_earned_title", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_id": {"name": "loyalty__vip_tiers_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_merchant_id": {"name": "loyalty__vip_tiers_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_name": {"name": "loyalty__vip_tiers_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_points_multiplier": {"name": "loyalty__vip_tiers_points_multiplier", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_points_multiplier", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_rank": {"name": "loyalty__vip_tiers_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_rank", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_redemption_option_id": {"name": "loyalty__vip_tiers_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_redemption_option_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_reward_points": {"name": "loyalty__vip_tiers_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_reward_points", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_should_mirror_entry": {"name": "loyalty__vip_tiers_should_mirror_entry", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_should_mirror_entry", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds": {"name": "loyalty__vip_tiers_thresholds", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_amount_spent_cents": {"name": "loyalty__vip_tiers_thresholds_amount_spent_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_amount_spent_cents", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_campaign_completed": {"name": "loyalty__vip_tiers_thresholds_campaign_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_campaign_completed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_created_at": {"name": "loyalty__vip_tiers_thresholds_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_id": {"name": "loyalty__vip_tiers_thresholds_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_merchant_id": {"name": "loyalty__vip_tiers_thresholds_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_points_earned": {"name": "loyalty__vip_tiers_thresholds_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_points_earned", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_purchases_made": {"name": "loyalty__vip_tiers_thresholds_purchases_made", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_purchases_made", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_referrals_completed": {"name": "loyalty__vip_tiers_thresholds_referrals_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_referrals_completed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_requirements_needed": {"name": "loyalty__vip_tiers_thresholds_requirements_needed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_requirements_needed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_tier_id": {"name": "loyalty__vip_tiers_thresholds_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_tier_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_type": {"name": "loyalty__vip_tiers_thresholds_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_updated_at": {"name": "loyalty__vip_tiers_thresholds_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_thresholds_upsolver_schema_version": {"name": "loyalty__vip_tiers_thresholds_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_thresholds_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_type": {"name": "loyalty__vip_tiers_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_updated_at": {"name": "loyalty__vip_tiers_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__vip_tiers_upsolver_schema_version": {"name": "loyalty__vip_tiers_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__vip_tiers_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__yotpo_platform_accounts": {"name": "loyalty__yotpo_platform_accounts", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__yotpo_platform_accounts", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__yotpo_platform_accounts_app_key": {"name": "loyalty__yotpo_platform_accounts_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__yotpo_platform_accounts_app_key", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__yotpo_platform_accounts_app_secret": {"name": "loyalty__yotpo_platform_accounts_app_secret", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__yotpo_platform_accounts_app_secret", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__yotpo_platform_accounts_created_at": {"name": "loyalty__yotpo_platform_accounts_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__yotpo_platform_accounts_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__yotpo_platform_accounts_id": {"name": "loyalty__yotpo_platform_accounts_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__yotpo_platform_accounts_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__yotpo_platform_accounts_merchant_id": {"name": "loyalty__yotpo_platform_accounts_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__yotpo_platform_accounts_merchant_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__yotpo_platform_accounts_org_key": {"name": "loyalty__yotpo_platform_accounts_org_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__yotpo_platform_accounts_org_key", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__yotpo_platform_accounts_updated_at": {"name": "loyalty__yotpo_platform_accounts_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__yotpo_platform_accounts_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.loyalty__yotpo_platform_accounts_upsolver_schema_version": {"name": "loyalty__yotpo_platform_accounts_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty.md", "original_file_path": "docs/loyalty.md", "unique_id": "doc.yoda.loyalty__yotpo_platform_accounts_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__default": {"name": "platform__default", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__default", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_account_type_id": {"name": "platform__accounts_account_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_account_type_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_active": {"name": "platform__accounts_active", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_active", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_auto_login_popup": {"name": "platform__accounts_auto_login_popup", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_auto_login_popup", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_auto_publish": {"name": "platform__accounts_auto_publish", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_auto_publish", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_auto_social_push": {"name": "platform__accounts_auto_social_push", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_auto_social_push", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_bottom_line_installed": {"name": "platform__accounts_bottom_line_installed", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_bottom_line_installed", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_callback_url": {"name": "platform__accounts_callback_url", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_callback_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_category_id": {"name": "platform__accounts_category_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_category_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_coupons_expiration_date": {"name": "platform__accounts_coupons_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_coupons_expiration_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_created_at": {"name": "platform__accounts_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_custom_design": {"name": "platform__accounts_custom_design", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_custom_design", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_custom_platform_name": {"name": "platform__accounts_custom_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_custom_platform_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_customer_language": {"name": "platform__accounts_customer_language", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_customer_language", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_customer_mails_sender_name": {"name": "platform__accounts_customer_mails_sender_name", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_customer_mails_sender_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_domain": {"name": "platform__accounts_domain", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_domain", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_install_step": {"name": "platform__accounts_install_step", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_install_step", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_is_test": {"name": "platform__accounts_is_test", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_is_test", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_map_up_sell_title": {"name": "platform__accounts_map_up_sell_title", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_map_up_sell_title", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_minisite_cname": {"name": "platform__accounts_minisite_cname", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_minisite_cname", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_minisite_subdomain": {"name": "platform__accounts_minisite_subdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_minisite_subdomain", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_minisite_subdomain_active": {"name": "platform__accounts_minisite_subdomain_active", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_minisite_subdomain_active", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_minisite_website": {"name": "platform__accounts_minisite_website", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_minisite_website", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_minisite_website_name": {"name": "platform__accounts_minisite_website_name", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_minisite_website_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_name": {"name": "platform__accounts_name", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_organization_id": {"name": "platform__accounts_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_organization_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_partner_key": {"name": "platform__accounts_partner_key", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_partner_key", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_processing_time": {"name": "platform__accounts_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_referal": {"name": "platform__accounts_referal", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_referal", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_reviews_me_account_description": {"name": "platform__accounts_reviews_me_account_description", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_reviews_me_account_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_reviews_me_account_name": {"name": "platform__accounts_reviews_me_account_name", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_reviews_me_account_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_reviews_me_crawlable": {"name": "platform__accounts_reviews_me_crawlable", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_reviews_me_crawlable", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_secret": {"name": "platform__accounts_secret", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_secret", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_slug": {"name": "platform__accounts_slug", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_slug", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_support_url": {"name": "platform__accounts_support_url", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_support_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_ts_ms": {"name": "platform__accounts_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_updated_at": {"name": "platform__accounts_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_upsolver_schema_version": {"name": "platform__accounts_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__accounts_url": {"name": "platform__accounts_url", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__accounts_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__apps": {"name": "platform__apps", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__apps", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__apps_account_id": {"name": "platform__apps_account_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__apps_account_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__apps_created_at": {"name": "platform__apps_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__apps_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__apps_disabled": {"name": "platform__apps_disabled", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__apps_disabled", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__apps_id": {"name": "platform__apps_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__apps_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__apps_moderator_role_id": {"name": "platform__apps_moderator_role_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__apps_moderator_role_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__apps_processing_time": {"name": "platform__apps_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__apps_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__apps_ts_ms": {"name": "platform__apps_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__apps_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__apps_updated_at": {"name": "platform__apps_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__apps_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__apps_upsolver_schema_version": {"name": "platform__apps_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__apps_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__apps_user_id": {"name": "platform__apps_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__apps_user_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__currency_rates": {"name": "platform__currency_rates", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__currency_rates", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__currency_rates_base": {"name": "platform__currency_rates_base", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__currency_rates_base", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__currency_rates_country": {"name": "platform__currency_rates_country", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__currency_rates_country", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__currency_rates_currency": {"name": "platform__currency_rates_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__currency_rates_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__currency_rates_date": {"name": "platform__currency_rates_date", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__currency_rates_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__currency_rates_day_of_currency_exchange": {"name": "platform__currency_rates_day_of_currency_exchange", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__currency_rates_day_of_currency_exchange", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments": {"name": "platform__fulfillments", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_created_at": {"name": "platform__fulfillments_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_external_id": {"name": "platform__fulfillments_external_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_external_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_fulfillment_date": {"name": "platform__fulfillments_fulfillment_date", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_fulfillment_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_fulfillment_status_type_id": {"name": "platform__fulfillments_fulfillment_status_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_fulfillment_status_type_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_id": {"name": "platform__fulfillments_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_order_id": {"name": "platform__fulfillments_order_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_order_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_processing_time": {"name": "platform__fulfillments_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_shipment_status_type_id": {"name": "platform__fulfillments_shipment_status_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_shipment_status_type_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_tracking_company": {"name": "platform__fulfillments_tracking_company", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_tracking_company", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_tracking_number": {"name": "platform__fulfillments_tracking_number", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_tracking_number", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_tracking_url": {"name": "platform__fulfillments_tracking_url", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_tracking_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_ts_ms": {"name": "platform__fulfillments_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_updated_at": {"name": "platform__fulfillments_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__fulfillments_upsolver_schema_version": {"name": "platform__fulfillments_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__fulfillments_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__integrationscenter": {"name": "platform__integrationscenter", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__integrationscenter", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders": {"name": "platform__orders", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_account_currency_iso": {"name": "platform__orders_account_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_account_currency_iso", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_app_key": {"name": "platform__orders_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_app_key", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_billing_address_id": {"name": "platform__orders_billing_address_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_billing_address_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_buyer_accepts_email_marketing": {"name": "platform__orders_buyer_accepts_email_marketing", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_buyer_accepts_email_marketing", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_buyer_accepts_marketing": {"name": "platform__orders_buyer_accepts_marketing", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_buyer_accepts_marketing", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_buyer_accepts_sms_marketing": {"name": "platform__orders_buyer_accepts_sms_marketing", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_buyer_accepts_sms_marketing", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_checkout_token": {"name": "platform__orders_checkout_token", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_checkout_token", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_created_at": {"name": "platform__orders_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_custom_properties": {"name": "platform__orders_custom_properties", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_custom_properties", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_email": {"name": "platform__orders_email", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_email", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_external_customer_id": {"name": "platform__orders_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_external_customer_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_external_id": {"name": "platform__orders_external_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_external_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_external_order_display_name": {"name": "platform__orders_external_order_display_name", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_external_order_display_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_external_order_id": {"name": "platform__orders_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_external_order_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_first_name": {"name": "platform__orders_first_name", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_first_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_id": {"name": "platform__orders_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_landing_site_url": {"name": "platform__orders_landing_site_url", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_landing_site_url", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_last_name": {"name": "platform__orders_last_name", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_last_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_order_currency_iso": {"name": "platform__orders_order_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_order_currency_iso", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_order_date": {"name": "platform__orders_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_order_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_order_sum_account_currency": {"name": "platform__orders_order_sum_account_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_order_sum_account_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_order_sum_order_currency": {"name": "platform__orders_order_sum_order_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_order_sum_order_currency", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_order_update_date": {"name": "platform__orders_order_update_date", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_order_update_date", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_payment_method": {"name": "platform__orders_payment_method", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_payment_method", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_payment_status_id": {"name": "platform__orders_payment_status_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_payment_status_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_phone_number": {"name": "platform__orders_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_phone_number", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_platform_type": {"name": "platform__orders_platform_type", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_platform_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_processing_time": {"name": "platform__orders_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_shipping_address_id": {"name": "platform__orders_shipping_address_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_shipping_address_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_source": {"name": "platform__orders_source", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_source", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_total_price": {"name": "platform__orders_total_price", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_total_price", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_ts_ms": {"name": "platform__orders_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_updated_at": {"name": "platform__orders_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__orders_upsolver_schema_version": {"name": "platform__orders_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__orders_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__organizations": {"name": "platform__organizations", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__organizations", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__organizations_created_at": {"name": "platform__organizations_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__organizations_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__organizations_id": {"name": "platform__organizations_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__organizations_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__organizations_name": {"name": "platform__organizations_name", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__organizations_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__organizations_organization_key": {"name": "platform__organizations_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__organizations_organization_key", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__organizations_processing_time": {"name": "platform__organizations_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__organizations_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__organizations_ts_ms": {"name": "platform__organizations_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__organizations_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__organizations_updated_at": {"name": "platform__organizations_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__organizations_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__organizations_upsolver_schema_version": {"name": "platform__organizations_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__organizations_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__owners_packages": {"name": "platform__owners_packages", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__owners_packages", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__owners_packages_created_at": {"name": "platform__owners_packages_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__owners_packages_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__owners_packages_id": {"name": "platform__owners_packages_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__owners_packages_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__owners_packages_owner_id": {"name": "platform__owners_packages_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__owners_packages_owner_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__owners_packages_owner_type": {"name": "platform__owners_packages_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__owners_packages_owner_type", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__owners_packages_package_id": {"name": "platform__owners_packages_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__owners_packages_package_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__owners_packages_processing_time": {"name": "platform__owners_packages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__owners_packages_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__owners_packages_started_at": {"name": "platform__owners_packages_started_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__owners_packages_started_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__owners_packages_ts_ms": {"name": "platform__owners_packages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__owners_packages_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__owners_packages_updated_at": {"name": "platform__owners_packages_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__owners_packages_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__owners_packages_upsolver_schema_version": {"name": "platform__owners_packages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__owners_packages_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages": {"name": "platform__packages", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_category_id": {"name": "platform__packages_category_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_category_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_category_priority": {"name": "platform__packages_category_priority", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_category_priority", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_description": {"name": "platform__packages_description", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_description", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_display_name": {"name": "platform__packages_display_name", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_display_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_downgrade_package_id": {"name": "platform__packages_downgrade_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_downgrade_package_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_id": {"name": "platform__packages_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_name": {"name": "platform__packages_name", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_name", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_old_package_id": {"name": "platform__packages_old_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_old_package_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_package_key": {"name": "platform__packages_package_key", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_package_key", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_processing_time": {"name": "platform__packages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_ts_ms": {"name": "platform__packages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__packages_upsolver_schema_version": {"name": "platform__packages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__packages_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__store_applications": {"name": "platform__store_applications", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__store_applications", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__store_applications_application_id": {"name": "platform__store_applications_application_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__store_applications_application_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__store_applications_created_at": {"name": "platform__store_applications_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__store_applications_created_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__store_applications_disconnected_at": {"name": "platform__store_applications_disconnected_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__store_applications_disconnected_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__store_applications_id": {"name": "platform__store_applications_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__store_applications_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__store_applications_processing_time": {"name": "platform__store_applications_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__store_applications_processing_time", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__store_applications_store_id": {"name": "platform__store_applications_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__store_applications_store_id", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__store_applications_ts_ms": {"name": "platform__store_applications_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__store_applications_ts_ms", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__store_applications_updated_at": {"name": "platform__store_applications_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__store_applications_updated_at", "block_contents": "TODO: Update Source Description"}, "doc.yoda.platform__store_applications_upsolver_schema_version": {"name": "platform__store_applications_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform.md", "original_file_path": "docs/platform.md", "unique_id": "doc.yoda.platform__store_applications_upsolver_schema_version", "block_contents": "TODO: Update Source Description"}, "doc.yoda.analytics___cs__account_acv_metrics_daily": {"name": "analytics___cs__account_acv_metrics_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily", "block_contents": "Daily aggregated table for account won sale opportunities daily. \nCalculate contracts acv per product line & product family.\nGranularity: date|account_id"}, "doc.yoda.analytics___cs__account_acv_metrics_daily_account_id": {"name": "analytics___cs__account_acv_metrics_daily_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_account_id", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_cs_segment": {"name": "analytics___cs__account_acv_metrics_daily_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_cs_segment", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_date": {"name": "analytics___cs__account_acv_metrics_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_date", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_insights_acv_in_usd_sum": {"name": "analytics___cs__account_acv_metrics_daily_insights_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_insights_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_is_insights": {"name": "analytics___cs__account_acv_metrics_daily_is_insights", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_is_insights", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_is_loyalty": {"name": "analytics___cs__account_acv_metrics_daily_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_is_reviews": {"name": "analytics___cs__account_acv_metrics_daily_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_is_reviews", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_is_sms": {"name": "analytics___cs__account_acv_metrics_daily_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_is_sms", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_is_subscriptions": {"name": "analytics___cs__account_acv_metrics_daily_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_is_ugc": {"name": "analytics___cs__account_acv_metrics_daily_is_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_is_ugc", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_is_vms": {"name": "analytics___cs__account_acv_metrics_daily_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_is_vms", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_loyalty_acv_in_usd_sum": {"name": "analytics___cs__account_acv_metrics_daily_loyalty_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_loyalty_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_order_sales_segment": {"name": "analytics___cs__account_acv_metrics_daily_order_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_order_sales_segment", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_organization_id": {"name": "analytics___cs__account_acv_metrics_daily_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_organization_id", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_organization_key": {"name": "analytics___cs__account_acv_metrics_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_product_family_cnt": {"name": "analytics___cs__account_acv_metrics_daily_product_family_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_product_family_cnt", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_reviews_acv_in_usd_sum": {"name": "analytics___cs__account_acv_metrics_daily_reviews_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_reviews_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_sms_acv_in_usd_sum": {"name": "analytics___cs__account_acv_metrics_daily_sms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_sms_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_subscriptions_acv_in_usd_sum": {"name": "analytics___cs__account_acv_metrics_daily_subscriptions_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_subscriptions_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_total_acv_in_usd_sum": {"name": "analytics___cs__account_acv_metrics_daily_total_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_total_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_ugc_acv_in_usd_sum": {"name": "analytics___cs__account_acv_metrics_daily_ugc_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_ugc_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_ugc_product_lines_cnt": {"name": "analytics___cs__account_acv_metrics_daily_ugc_product_lines_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_ugc_product_lines_cnt", "block_contents": ""}, "doc.yoda.analytics___cs__account_acv_metrics_daily_vms_acv_in_usd_sum": {"name": "analytics___cs__account_acv_metrics_daily_vms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__account_acv_metrics_daily/analytics___cs__account_acv_metrics_daily.md", "unique_id": "doc.yoda.analytics___cs__account_acv_metrics_daily_vms_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project": {"name": "analytics___cs__onboarding_project", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project", "block_contents": "Modeled table of CS onboarding projects, contains stages dates | PK and granularity: onboarding project ID"}, "doc.yoda.analytics___cs__onboarding_project_account_id": {"name": "analytics___cs__onboarding_project_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_account_id", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_account_industry": {"name": "analytics___cs__onboarding_project_account_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_account_industry", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_account_name": {"name": "analytics___cs__onboarding_project_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_account_name", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_account_platform": {"name": "analytics___cs__onboarding_project_account_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_account_platform", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_account_product_id": {"name": "analytics___cs__onboarding_project_account_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_account_product_id", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_account_time_zone": {"name": "analytics___cs__onboarding_project_account_time_zone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_account_time_zone", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_account_total_acv": {"name": "analytics___cs__onboarding_project_account_total_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_account_total_acv", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_admin_configured_min_completion_date": {"name": "analytics___cs__onboarding_project_admin_configured_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_admin_configured_min_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_country": {"name": "analytics___cs__onboarding_project_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_country", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_cs_segment": {"name": "analytics___cs__onboarding_project_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_cs_segment", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_due_date": {"name": "analytics___cs__onboarding_project_due_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_due_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_dwh_updated_at": {"name": "analytics___cs__onboarding_project_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_emails_min_completion_date": {"name": "analytics___cs__onboarding_project_emails_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_emails_min_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_framework_min_completion_date": {"name": "analytics___cs__onboarding_project_framework_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_framework_min_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_integrations_min_completion_date": {"name": "analytics___cs__onboarding_project_integrations_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_integrations_min_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_is_current_contract": {"name": "analytics___cs__onboarding_project_is_current_contract", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_is_current_contract", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_is_customer_care_project": {"name": "analytics___cs__onboarding_project_is_customer_care_project", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_is_customer_care_project", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_is_headless_platform": {"name": "analytics___cs__onboarding_project_is_headless_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_is_headless_platform", "block_contents": "a type of store that requires different attention"}, "doc.yoda.analytics___cs__onboarding_project_is_multi_store": {"name": "analytics___cs__onboarding_project_is_multi_store", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_is_multi_store", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_is_se_needed": {"name": "analytics___cs__onboarding_project_is_se_needed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_is_se_needed", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_koc_date": {"name": "analytics___cs__onboarding_project_koc_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_koc_date", "block_contents": "kick off call date"}, "doc.yoda.analytics___cs__onboarding_project_modules_min_completion_date": {"name": "analytics___cs__onboarding_project_modules_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_modules_min_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_actual_duration_gross_days": {"name": "analytics___cs__onboarding_project_onboarding_actual_duration_gross_days", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_actual_duration_gross_days", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_actual_duration_net": {"name": "analytics___cs__onboarding_project_onboarding_actual_duration_net", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_actual_duration_net", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_complexity_score": {"name": "analytics___cs__onboarding_project_onboarding_complexity_score", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_complexity_score", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_csm_email": {"name": "analytics___cs__onboarding_project_onboarding_csm_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_csm_email", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_csm_name": {"name": "analytics___cs__onboarding_project_onboarding_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_csm_name", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_customization_level": {"name": "analytics___cs__onboarding_project_onboarding_customization_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_customization_level", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_domain_cnt": {"name": "analytics___cs__onboarding_project_onboarding_domain_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_domain_cnt", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_manager": {"name": "analytics___cs__onboarding_project_onboarding_manager", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_manager", "block_contents": "this indicates who is the onboarding manager if the onboarding is closed or who is the csm if open"}, "doc.yoda.analytics___cs__onboarding_project_onboarding_manager_team": {"name": "analytics___cs__onboarding_project_onboarding_manager_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_manager_team", "block_contents": "this indicates what is the onboarding manager team if the onboarding is closed or what is the csm team if open"}, "doc.yoda.analytics___cs__onboarding_project_onboarding_net_duration": {"name": "analytics___cs__onboarding_project_onboarding_net_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_net_duration", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_paused_duration": {"name": "analytics___cs__onboarding_project_onboarding_paused_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_paused_duration", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_planned_duration_days": {"name": "analytics___cs__onboarding_project_onboarding_planned_duration_days", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_planned_duration_days", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_project_id": {"name": "analytics___cs__onboarding_project_onboarding_project_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_project_id", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_project_name": {"name": "analytics___cs__onboarding_project_onboarding_project_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_project_name", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_reason": {"name": "analytics___cs__onboarding_project_onboarding_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_reason", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_red_flag_bucket": {"name": "analytics___cs__onboarding_project_onboarding_red_flag_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_red_flag_bucket", "block_contents": "the bucket of risk the account is in within the onboarding project, the CSM will fill this when risk spotted."}, "doc.yoda.analytics___cs__onboarding_project_onboarding_red_flag_date": {"name": "analytics___cs__onboarding_project_onboarding_red_flag_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_red_flag_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_red_flag_notes": {"name": "analytics___cs__onboarding_project_onboarding_red_flag_notes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_red_flag_notes", "block_contents": "CSM comments on the red flag that they are raising"}, "doc.yoda.analytics___cs__onboarding_project_onboarding_red_flag_reason": {"name": "analytics___cs__onboarding_project_onboarding_red_flag_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_red_flag_reason", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_stage": {"name": "analytics___cs__onboarding_project_onboarding_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_stage", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_start_date": {"name": "analytics___cs__onboarding_project_onboarding_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_start_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_onboarding_total_score": {"name": "analytics___cs__onboarding_project_onboarding_total_score", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_onboarding_total_score", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_opportunity_id": {"name": "analytics___cs__onboarding_project_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_opportunity_renewal_date": {"name": "analytics___cs__onboarding_project_opportunity_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_opportunity_renewal_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_opportunity_start_date": {"name": "analytics___cs__onboarding_project_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_opportunity_start_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_opportunity_type": {"name": "analytics___cs__onboarding_project_opportunity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_opportunity_type", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_organization_key": {"name": "analytics___cs__onboarding_project_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_organization_key", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_points_import_min_completion_date": {"name": "analytics___cs__onboarding_project_points_import_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_points_import_min_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_process_paused_date": {"name": "analytics___cs__onboarding_project_process_paused_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_process_paused_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_process_resumed_date": {"name": "analytics___cs__onboarding_project_process_resumed_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_process_resumed_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_product_acv": {"name": "analytics___cs__onboarding_project_product_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_product_acv", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_product_initial_won_date": {"name": "analytics___cs__onboarding_project_product_initial_won_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_product_initial_won_date", "block_contents": "when this product was first won"}, "doc.yoda.analytics___cs__onboarding_project_product_line": {"name": "analytics___cs__onboarding_project_product_line", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_product_line", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_product_live_date": {"name": "analytics___cs__onboarding_project_product_live_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_product_live_date", "block_contents": "unique product indication to indicate the product is live. \nREVIEWS - the date when reviews widget/ star-rating widget was first loaded \nVMS - the date when any VMS gallery was first loaded SMS - the date when $3 of credit were used \nLOYALTY - the date when there was a redemption of points by 10+ customers"}, "doc.yoda.analytics___cs__onboarding_project_product_onboarding_completion_date": {"name": "analytics___cs__onboarding_project_product_onboarding_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_product_onboarding_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_product_onboarding_completion_status": {"name": "analytics___cs__onboarding_project_product_onboarding_completion_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_product_onboarding_completion_status", "block_contents": "csm filled indication for the completion of the onboarding"}, "doc.yoda.analytics___cs__onboarding_project_product_onboarding_project_cnt": {"name": "analytics___cs__onboarding_project_product_onboarding_project_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_product_onboarding_project_cnt", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_product_onboarding_project_stage": {"name": "analytics___cs__onboarding_project_product_onboarding_project_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_product_onboarding_project_stage", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_product_stage": {"name": "analytics___cs__onboarding_project_product_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_product_stage", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_project_completion_date": {"name": "analytics___cs__onboarding_project_project_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_project_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_project_created_at": {"name": "analytics___cs__onboarding_project_project_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_project_created_at", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_project_start_date": {"name": "analytics___cs__onboarding_project_project_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_project_start_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_qa_min_completion_date": {"name": "analytics___cs__onboarding_project_qa_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_qa_min_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_reset_Admin_min_completion_date": {"name": "analytics___cs__onboarding_project_reset_Admin_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_reset_Admin_min_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_reset_admin_min_completion_date": {"name": "analytics___cs__onboarding_project_reset_admin_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_reset_admin_min_completion_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___cs__onboarding_project_speedy_bb_Form_min_completion_date": {"name": "analytics___cs__onboarding_project_speedy_bb_Form_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_speedy_bb_Form_min_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_speedy_bb_form_min_completion_date": {"name": "analytics___cs__onboarding_project_speedy_bb_form_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_speedy_bb_form_min_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__onboarding_project_target_launch_date": {"name": "analytics___cs__onboarding_project_target_launch_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_target_launch_date", "block_contents": "when the account wants to launch the product, will influence prioritization"}, "doc.yoda.analytics___cs__onboarding_project_tier_recalc_min_completion_date": {"name": "analytics___cs__onboarding_project_tier_recalc_min_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__onboarding_project/analytics___cs__onboarding_project.md", "unique_id": "doc.yoda.analytics___cs__onboarding_project_tier_recalc_min_completion_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_main_product_change": {"name": "analytics___cs__opportunity_main_product_change", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change", "block_contents": "Modeled Table of salesforce opportunity changes - Include pre add post opportunity HT products indicators and lists | \nPK & Granularity: opportunity_id | Main Products: reviews, loyalty, sms, subscriptions"}, "doc.yoda.analytics___cs__opportunity_main_product_change_churned_product_list": {"name": "analytics___cs__opportunity_main_product_change_churned_product_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_churned_product_list", "block_contents": "Lost product list : can include reviews, loyslty, sms, subscriptions"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_loyalty_post_opp": {"name": "analytics___cs__opportunity_main_product_change_is_annual_loyalty_post_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_loyalty_post_opp", "block_contents": "If the account had loyalty HT post opportunity = 1 else 0"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_loyalty_pre_opp": {"name": "analytics___cs__opportunity_main_product_change_is_annual_loyalty_pre_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_loyalty_pre_opp", "block_contents": "If the account had loyalty HT the day prior to the opportunity start date = 1 else 0"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_reviews_post_opp": {"name": "analytics___cs__opportunity_main_product_change_is_annual_reviews_post_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_reviews_post_opp", "block_contents": "If the account had Reviews HT post opportunity = 1 else 0"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_reviews_pre_opp": {"name": "analytics___cs__opportunity_main_product_change_is_annual_reviews_pre_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_reviews_pre_opp", "block_contents": "If the account had Reviews HT the day prior to the opportunity start date = 1 else 0"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_sms_post_opp": {"name": "analytics___cs__opportunity_main_product_change_is_annual_sms_post_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_sms_post_opp", "block_contents": "If the account had SMS HT post opportunity = 1 else 0"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_sms_pre_opp": {"name": "analytics___cs__opportunity_main_product_change_is_annual_sms_pre_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_sms_pre_opp", "block_contents": "If the account had SMS HT the day prior to the opportunity start date = 1 else 0"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_subscriptions_post_opp": {"name": "analytics___cs__opportunity_main_product_change_is_annual_subscriptions_post_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_subscriptions_post_opp", "block_contents": "If the account had Subscriptions HT post opportunity = 1 else 0"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_subscriptions_pre_opp": {"name": "analytics___cs__opportunity_main_product_change_is_annual_subscriptions_pre_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_subscriptions_pre_opp", "block_contents": "If the account had Subscriptions HT the day prior to the opportunity start date = 1 else 0"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_ugc_post_opp": {"name": "analytics___cs__opportunity_main_product_change_is_annual_ugc_post_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_ugc_post_opp", "block_contents": "If the account had UGC HT post opportunity = 1 else 0"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_ugc_pre_opp": {"name": "analytics___cs__opportunity_main_product_change_is_annual_ugc_pre_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_ugc_pre_opp", "block_contents": "If the account had UGC HT the day prior to the opportunity start date = 1 else 0"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_vms_pre_opp": {"name": "analytics___cs__opportunity_main_product_change_is_annual_vms_pre_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_annual_vms_pre_opp", "block_contents": "If the account had VMS HT the day prior to the opportunity start date = 1 else 0"}, "doc.yoda.analytics___cs__opportunity_main_product_change_is_multi_product_pre_opp": {"name": "analytics___cs__opportunity_main_product_change_is_multi_product_pre_opp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_is_multi_product_pre_opp", "block_contents": "Did the account had more than one of the following products: reviews, loyslty, sms, subscriptions"}, "doc.yoda.analytics___cs__opportunity_main_product_change_opportunity_id": {"name": "analytics___cs__opportunity_main_product_change_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_main_product_change_post_opp_ht_core_product_cnt": {"name": "analytics___cs__opportunity_main_product_change_post_opp_ht_core_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_post_opp_ht_core_product_cnt", "block_contents": "Number of products post opportunity from the following: reviews, loyslty, sms, subscriptions"}, "doc.yoda.analytics___cs__opportunity_main_product_change_post_opp_ht_core_product_list": {"name": "analytics___cs__opportunity_main_product_change_post_opp_ht_core_product_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_post_opp_ht_core_product_list", "block_contents": "Products post opportunity from the following: reviews, loyslty, sms, subscriptions"}, "doc.yoda.analytics___cs__opportunity_main_product_change_pre_opp_ht_core_product_cnt": {"name": "analytics___cs__opportunity_main_product_change_pre_opp_ht_core_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_pre_opp_ht_core_product_cnt", "block_contents": "Number of products prior to the opportunity from the following: reviews, loyslty, sms, subscriptions"}, "doc.yoda.analytics___cs__opportunity_main_product_change_pre_opp_ht_core_product_list": {"name": "analytics___cs__opportunity_main_product_change_pre_opp_ht_core_product_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_pre_opp_ht_core_product_list", "block_contents": "Products prior to the opportunity from the following: reviews, loyslty, sms, subscriptions"}, "doc.yoda.analytics___cs__opportunity_main_product_change_won_product_list": {"name": "analytics___cs__opportunity_main_product_change_won_product_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_main_product_change/analytics___cs__opportunity_main_product_change.md", "unique_id": "doc.yoda.analytics___cs__opportunity_main_product_change_won_product_list", "block_contents": "Opportunity won products list from the following: reviews, loyslty, sms, subscriptions"}, "doc.yoda.analytics___cs__opportunity_product": {"name": "analytics___cs__opportunity_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product", "block_contents": "Modeled Table CS opportunities - present data from opportunity and deal summary level - include only End term renewal, In term renewal, Upsell, Winback | PK & Granularity: opportunity_id, product line"}, "doc.yoda.analytics___cs__opportunity_product_actual_end_date": {"name": "analytics___cs__opportunity_product_actual_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_actual_end_date", "block_contents": "Opportunity actual end date"}, "doc.yoda.analytics___cs__opportunity_product_close_date": {"name": "analytics___cs__opportunity_product_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_close_date", "block_contents": "Opportunity close date"}, "doc.yoda.analytics___cs__opportunity_product_contract_actual_duration_months": {"name": "analytics___cs__opportunity_product_contract_actual_duration_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_contract_actual_duration_months", "block_contents": "contract duration + free months + csm extention months, actual duration is NULL unless in opportunity is closed"}, "doc.yoda.analytics___cs__opportunity_product_contract_duration_with_extension_months": {"name": "analytics___cs__opportunity_product_contract_duration_with_extension_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_contract_duration_with_extension_months", "block_contents": "Number of months between contract renewal date and start date"}, "doc.yoda.analytics___cs__opportunity_product_contract_renewal_date": {"name": "analytics___cs__opportunity_product_contract_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_contract_renewal_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_contract_start_date": {"name": "analytics___cs__opportunity_product_contract_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_contract_start_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_cs_comp_paid_date": {"name": "analytics___cs__opportunity_product_cs_comp_paid_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_cs_comp_paid_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_current_acv_controlling_in_usd": {"name": "analytics___cs__opportunity_product_current_acv_controlling_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_current_acv_controlling_in_usd", "block_contents": "Prediction of current acv controlling currency rate:\n(current_acv_original_currency / previous_acv_original_currency) * previous_acv"}, "doc.yoda.analytics___cs__opportunity_product_downgrade_acv_in_usd": {"name": "analytics___cs__opportunity_product_downgrade_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_downgrade_acv_in_usd", "block_contents": "Reflect the ACV If an account downgraded to self service plan in the period of month prior the opportunity and two month after"}, "doc.yoda.analytics___cs__opportunity_product_downgraded_to": {"name": "analytics___cs__opportunity_product_downgraded_to", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_downgraded_to", "block_contents": "Reflect the self service plan If an account downgraded to self service plan in the period of month prior the opportunity and two month after"}, "doc.yoda.analytics___cs__opportunity_product_dwh_updated_at": {"name": "analytics___cs__opportunity_product_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_is_actual_duration_over_6_months": {"name": "analytics___cs__opportunity_product_is_actual_duration_over_6_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_is_actual_duration_over_6_months", "block_contents": "If Opportunity type = 'end term renewal' and contract duration with extension month < 6 --> False\nElse --> True"}, "doc.yoda.analytics___cs__opportunity_product_is_closed": {"name": "analytics___cs__opportunity_product_is_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_is_closed", "block_contents": "An opportunity will be closed if the stage is one of the following: Won - Sale, Lost After Won, Lost"}, "doc.yoda.analytics___cs__opportunity_product_is_staggered_contract": {"name": "analytics___cs__opportunity_product_is_staggered_contract", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_is_staggered_contract", "block_contents": "If the opportunity contains staggered contract -> 1 else 0"}, "doc.yoda.analytics___cs__opportunity_product_is_won_opportunity": {"name": "analytics___cs__opportunity_product_is_won_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_is_won_opportunity", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_l12m_usage_pre_opp_start_date": {"name": "analytics___cs__opportunity_product_l12m_usage_pre_opp_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_l12m_usage_pre_opp_start_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_l3m_usage_pre_opp_start_date": {"name": "analytics___cs__opportunity_product_l3m_usage_pre_opp_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_l3m_usage_pre_opp_start_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_l6m_usage_pre_opp_start_date": {"name": "analytics___cs__opportunity_product_l6m_usage_pre_opp_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_l6m_usage_pre_opp_start_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_last_12_to_24_months_usage_pre_opp_start_date": {"name": "analytics___cs__opportunity_product_last_12_to_24_months_usage_pre_opp_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_last_12_to_24_months_usage_pre_opp_start_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_lost_reason": {"name": "analytics___cs__opportunity_product_lost_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_lost_reason", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_lost_sub_reason": {"name": "analytics___cs__opportunity_product_lost_sub_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_lost_sub_reason", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_num_of_csm_extension_month": {"name": "analytics___cs__opportunity_product_num_of_csm_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_num_of_csm_extension_month", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_num_of_end_of_contract_extension_month": {"name": "analytics___cs__opportunity_product_num_of_end_of_contract_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_num_of_end_of_contract_extension_month", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_opp_based_cs_segment": {"name": "analytics___cs__opportunity_product_opp_based_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opp_based_cs_segment", "block_contents": "opportunity cs segment based on the primary CSM team upon close.\nIF primary csm team = MM team --> MM\nELSE --> SMB"}, "doc.yoda.analytics___cs__opportunity_product_opp_rate_in_original_currency": {"name": "analytics___cs__opportunity_product_opp_rate_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opp_rate_in_original_currency", "block_contents": "IF current ACV = 0 --> churn, \nIF delta acv between -500 and 500 --> same rate\nIF current acv - previous acv > 500 --> upsell\nIF current acv - previous acv < -500 --> downgrade"}, "doc.yoda.analytics___cs__opportunity_product_opp_rate_in_usd": {"name": "analytics___cs__opportunity_product_opp_rate_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opp_rate_in_usd", "block_contents": "IF current ACV = 0 --> churn, \nIF delta acv between -$500 and $500 --> same rate\nIF current acv - previous acv > $500 --> upsell\nIF current acv - previous acv < -$500 --> downgrade"}, "doc.yoda.analytics___cs__opportunity_product_opportunity_id": {"name": "analytics___cs__opportunity_product_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_opportunity_loyalty_csm_name_upon_closed": {"name": "analytics___cs__opportunity_product_opportunity_loyalty_csm_name_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opportunity_loyalty_csm_name_upon_closed", "block_contents": "loyalty csm name upon closed - from opportunity level"}, "doc.yoda.analytics___cs__opportunity_product_opportunity_name": {"name": "analytics___cs__opportunity_product_opportunity_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opportunity_name", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_opportunity_owner_name": {"name": "analytics___cs__opportunity_product_opportunity_owner_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opportunity_owner_name", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_opportunity_owner_role": {"name": "analytics___cs__opportunity_product_opportunity_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opportunity_owner_role", "block_contents": "n"}, "doc.yoda.analytics___cs__opportunity_product_opportunity_primary_csm_name_upon_closed": {"name": "analytics___cs__opportunity_product_opportunity_primary_csm_name_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opportunity_primary_csm_name_upon_closed", "block_contents": "primary csm name upon closed - from opportunity level"}, "doc.yoda.analytics___cs__opportunity_product_opportunity_record_type": {"name": "analytics___cs__opportunity_product_opportunity_record_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opportunity_record_type", "block_contents": "opportunity record type: Standart, Self service, Enterprise"}, "doc.yoda.analytics___cs__opportunity_product_opportunity_sales_segment": {"name": "analytics___cs__opportunity_product_opportunity_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opportunity_sales_segment", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_opportunity_sf_url": {"name": "analytics___cs__opportunity_product_opportunity_sf_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opportunity_sf_url", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_opportunity_sms_csm_name_upon_closed": {"name": "analytics___cs__opportunity_product_opportunity_sms_csm_name_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opportunity_sms_csm_name_upon_closed", "block_contents": "sms csm name upon closed - from opportunity level"}, "doc.yoda.analytics___cs__opportunity_product_opportunity_ugc_csm_name_upon_closed": {"name": "analytics___cs__opportunity_product_opportunity_ugc_csm_name_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_opportunity_ugc_csm_name_upon_closed", "block_contents": "UGC csm name upon closed - from opportunity level"}, "doc.yoda.analytics___cs__opportunity_product_order_bucket": {"name": "analytics___cs__opportunity_product_order_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_order_bucket", "block_contents": "Order bucket based on avg 12 month prior to opportunity start date"}, "doc.yoda.analytics___cs__opportunity_product_orders_12_months_prior_opp_start_date": {"name": "analytics___cs__opportunity_product_orders_12_months_prior_opp_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_orders_12_months_prior_opp_start_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_orders_3_months_prior_opp_start_date": {"name": "analytics___cs__opportunity_product_orders_3_months_prior_opp_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_orders_3_months_prior_opp_start_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_pre_opp_ht_product_list": {"name": "analytics___cs__opportunity_product_pre_opp_ht_product_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_pre_opp_ht_product_list", "block_contents": "list of all HT products prior to the opportunity start date - From SF"}, "doc.yoda.analytics___cs__opportunity_product_prediction_certainty": {"name": "analytics___cs__opportunity_product_prediction_certainty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_prediction_certainty", "block_contents": "a field that is changed by the CSM to express the certainty level in the prediction"}, "doc.yoda.analytics___cs__opportunity_product_prediction_current_acv": {"name": "analytics___cs__opportunity_product_prediction_current_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_prediction_current_acv", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_prediction_current_hedged_acv": {"name": "analytics___cs__opportunity_product_prediction_current_hedged_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_prediction_current_hedged_acv", "block_contents": "We use a hedging formula to take into consideration the certainty level: \n0% certainty->acv*0.2\n25% certainty->acv*0.5 \n50% certainty->acv*0.8 \n75% certainty and above ->acv*1"}, "doc.yoda.analytics___cs__opportunity_product_prediction_predicted_acv": {"name": "analytics___cs__opportunity_product_prediction_predicted_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_prediction_predicted_acv", "block_contents": "the csm prediction of ACV - if it is open, if closed-> shows the actual closed acv"}, "doc.yoda.analytics___cs__opportunity_product_prediction_previous_acv": {"name": "analytics___cs__opportunity_product_prediction_previous_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_prediction_previous_acv", "block_contents": "the renewal ACV of the product line"}, "doc.yoda.analytics___cs__opportunity_product_prediction_risk_buckets": {"name": "analytics___cs__opportunity_product_prediction_risk_buckets", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_prediction_risk_buckets", "block_contents": "this field is used to bucket accounts that are within risk buckets such as 'not responsive' 'change in business' etc"}, "doc.yoda.analytics___cs__opportunity_product_primary_csm_name_upon_closed": {"name": "analytics___cs__opportunity_product_primary_csm_name_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_primary_csm_name_upon_closed", "block_contents": "If primary csm name upon closed from opportunity level is not null --> primary csm name upon closed from opportunity level\nELSE --> primary csm name upon closed from daily tracking table"}, "doc.yoda.analytics___cs__opportunity_product_primary_csm_team_upon_closed": {"name": "analytics___cs__opportunity_product_primary_csm_team_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_primary_csm_team_upon_closed", "block_contents": "If primary csm team upon closed from opportunity level is not null --> primary csm team upon closed from opportunity level\nELSE --> primary csm team upon closed from daily tracking table"}, "doc.yoda.analytics___cs__opportunity_product_product_csm_name_upon_close": {"name": "analytics___cs__opportunity_product_product_csm_name_upon_close", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_product_csm_name_upon_close", "block_contents": "If product csm name upon closed from opportunity level is not null --> product csm name upon closed from opportunity level\nELSE --> product csm name upon closed from daily tracking table"}, "doc.yoda.analytics___cs__opportunity_product_product_csm_team_upon_close": {"name": "analytics___cs__opportunity_product_product_csm_team_upon_close", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_product_csm_team_upon_close", "block_contents": "If product csm team upon closed from opportunity level is not null --> product csm team upon closed from opportunity level\nELSE --> product csm team upon closed from daily tracking table"}, "doc.yoda.analytics___cs__opportunity_product_product_family_group": {"name": "analytics___cs__opportunity_product_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_product_family_group", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_product_line": {"name": "analytics___cs__opportunity_product_product_line", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_product_line", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_product_renewals_cnt": {"name": "analytics___cs__opportunity_product_product_renewals_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_product_renewals_cnt", "block_contents": "Number of renewal the account had per product prior to the opportunity"}, "doc.yoda.analytics___cs__opportunity_product_product_tenure": {"name": "analytics___cs__opportunity_product_product_tenure", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_product_tenure", "block_contents": "Number of years between the product first Won opportunity start date and current opportunity start date"}, "doc.yoda.analytics___cs__opportunity_product_sms_delta_earr": {"name": "analytics___cs__opportunity_product_sms_delta_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_sms_delta_earr", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_stage": {"name": "analytics___cs__opportunity_product_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_stage", "block_contents": "Opportunity Stage"}, "doc.yoda.analytics___cs__opportunity_product_start_date": {"name": "analytics___cs__opportunity_product_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_start_date", "block_contents": "Opportunity Start date"}, "doc.yoda.analytics___cs__opportunity_product_start_month": {"name": "analytics___cs__opportunity_product_start_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_start_month", "block_contents": "Opportunity Start Month"}, "doc.yoda.analytics___cs__opportunity_product_subscriptions_delta_earr": {"name": "analytics___cs__opportunity_product_subscriptions_delta_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_subscriptions_delta_earr", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_product_type": {"name": "analytics___cs__opportunity_product_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_product/analytics___cs__opportunity_product.md", "unique_id": "doc.yoda.analytics___cs__opportunity_product_type", "block_contents": "Opportunity type"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date": {"name": "analytics___cs__opportunity_won_product_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date", "block_contents": "Modeled table of won sale opportunity group by product group family and product start date.\nGranularity: opportunity_id | product_family_group | line_item_start_date | line_item_end_date"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_product_start_date_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_acv_in_usd_sum", "block_contents": "sum all opportunity line item price_in_usd"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_dwh_updated_at": {"name": "analytics___cs__opportunity_won_product_start_date_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_dwh_updated_at", "block_contents": "table update timestamp"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_insights_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_product_start_date_insights_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_insights_acv_in_usd_sum", "block_contents": "sum insights opportunity line item price_in_usd"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_is_current_contract": {"name": "analytics___cs__opportunity_won_product_start_date_is_current_contract", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_is_current_contract", "block_contents": "if year(line_item_end_date) = 2999.\nsee line_item_end_date Description"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_is_ugc": {"name": "analytics___cs__opportunity_won_product_start_date_is_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_is_ugc", "block_contents": "if product_family = vms or reviews or insights"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_line_item_end_date": {"name": "analytics___cs__opportunity_won_product_start_date_line_item_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_line_item_end_date", "block_contents": "if opportunity product = ht_self_service end date will be calculated from revenue churn events\nelse NVL(opportunity.actual_end_date, opportunity.contract_renewal_date).\nfor is_current_contract = 1 line_item_end_date = '2999-01-01'\nopportunity with line_item_end_date = null will be excluded"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_line_item_start_date": {"name": "analytics___cs__opportunity_won_product_start_date_line_item_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_line_item_start_date", "block_contents": "taking first line_item's contract_start_date and if does not exists opportunity_start_date"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_loyalty_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_product_start_date_loyalty_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_loyalty_acv_in_usd_sum", "block_contents": "sum loyalty opportunity line item price_in_usd"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_opportunity_cs_segment": {"name": "analytics___cs__opportunity_won_product_start_date_opportunity_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_opportunity_cs_segment", "block_contents": "based on opportunity's primary_csm_team_upon_closed LIKE '% mm%' ---> 'MM' else 'SMB'"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_opportunity_id": {"name": "analytics___cs__opportunity_won_product_start_date_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_organization_id": {"name": "analytics___cs__opportunity_won_product_start_date_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_organization_id", "block_contents": "FK: platform_organization"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_organization_key": {"name": "analytics___cs__opportunity_won_product_start_date_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_organization_key", "block_contents": "FK: platform_organization"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_product_cnt": {"name": "analytics___cs__opportunity_won_product_start_date_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_product_cnt", "block_contents": "total product count"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_product_family_group": {"name": "analytics___cs__opportunity_won_product_start_date_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_product_family_group", "block_contents": "if product_family = vms or reviews or insights THEN 'UGC' ELSE product_family"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_reviews_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_product_start_date_reviews_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_reviews_acv_in_usd_sum", "block_contents": "sum reviews opportunity line item price_in_usd"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_sf_account_id": {"name": "analytics___cs__opportunity_won_product_start_date_sf_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_sf_account_id", "block_contents": "FK: salesforce_account"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_sms_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_product_start_date_sms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_sms_acv_in_usd_sum", "block_contents": "sum sms opportunity line item price_in_usd"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_subscriptions_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_product_start_date_subscriptions_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_subscriptions_acv_in_usd_sum", "block_contents": "sum subscriptions opportunity line item price_in_usd"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_ugc_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_product_start_date_ugc_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_ugc_acv_in_usd_sum", "block_contents": "sum reviews + insights + vms opportunity line item price_in_usdn"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_ugc_products_cnt": {"name": "analytics___cs__opportunity_won_product_start_date_ugc_products_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_ugc_products_cnt", "block_contents": "count of ugc products reviews + insights + vms"}, "doc.yoda.analytics___cs__opportunity_won_product_start_date_vms_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_product_start_date_vms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_product_start_date/analytics___cs__opportunity_won_product_start_date.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_product_start_date_vms_acv_in_usd_sum", "block_contents": "sum vms opportunity line item price_in_usd"}, "doc.yoda.analytics___cs__opportunity_won_sale_daily": {"name": "analytics___cs__opportunity_won_sale_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily", "block_contents": "Daily aggregated table for account won sale opportunities daily divided to contract start date. Granularity: date|opportunity_id|contract start date"}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_account_id": {"name": "analytics___cs__opportunity_won_sale_daily_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_account_id", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_close_date": {"name": "analytics___cs__opportunity_won_sale_daily_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_close_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_contract_start_date": {"name": "analytics___cs__opportunity_won_sale_daily_contract_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_contract_start_date", "block_contents": "contract start date, when the opportunity contains multiple contract will be different from opportunity start date"}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_cs_segment": {"name": "analytics___cs__opportunity_won_sale_daily_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_cs_segment", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_date": {"name": "analytics___cs__opportunity_won_sale_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_deal_type_list": {"name": "analytics___cs__opportunity_won_sale_daily_deal_type_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_deal_type_list", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_end_date": {"name": "analytics___cs__opportunity_won_sale_daily_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_end_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_insights_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_sale_daily_insights_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_insights_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_insights": {"name": "analytics___cs__opportunity_won_sale_daily_is_insights", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_insights", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_loyalty": {"name": "analytics___cs__opportunity_won_sale_daily_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_reviews": {"name": "analytics___cs__opportunity_won_sale_daily_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_reviews", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_sms": {"name": "analytics___cs__opportunity_won_sale_daily_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_sms", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_subscriptions": {"name": "analytics___cs__opportunity_won_sale_daily_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_ugc": {"name": "analytics___cs__opportunity_won_sale_daily_is_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_ugc", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_vms": {"name": "analytics___cs__opportunity_won_sale_daily_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_is_vms", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_loyalty_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_sale_daily_loyalty_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_loyalty_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_num_of_csm_extension_month": {"name": "analytics___cs__opportunity_won_sale_daily_num_of_csm_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_num_of_csm_extension_month", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_num_of_end_of_contract_extension_month": {"name": "analytics___cs__opportunity_won_sale_daily_num_of_end_of_contract_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_num_of_end_of_contract_extension_month", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_opportunity_id": {"name": "analytics___cs__opportunity_won_sale_daily_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_opportunity_name": {"name": "analytics___cs__opportunity_won_sale_daily_opportunity_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_opportunity_name", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_opportunity_start_date": {"name": "analytics___cs__opportunity_won_sale_daily_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_opportunity_start_date", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_opportunity_type": {"name": "analytics___cs__opportunity_won_sale_daily_opportunity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_opportunity_type", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_order_sales_segment": {"name": "analytics___cs__opportunity_won_sale_daily_order_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_order_sales_segment", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_organization_id": {"name": "analytics___cs__opportunity_won_sale_daily_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_organization_id", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_organization_key": {"name": "analytics___cs__opportunity_won_sale_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_previous_renewals_cnt": {"name": "analytics___cs__opportunity_won_sale_daily_previous_renewals_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_previous_renewals_cnt", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_product_cnt": {"name": "analytics___cs__opportunity_won_sale_daily_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_product_cnt", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_reviews_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_sale_daily_reviews_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_reviews_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_sms_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_sale_daily_sms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_sms_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_subscriptions_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_sale_daily_subscriptions_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_subscriptions_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_total_acv_in_usd": {"name": "analytics___cs__opportunity_won_sale_daily_total_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_total_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_total_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_sale_daily_total_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_total_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_ugc_acv_in_usd": {"name": "analytics___cs__opportunity_won_sale_daily_ugc_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_ugc_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_ugc_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_sale_daily_ugc_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_ugc_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_ugc_products_cnt": {"name": "analytics___cs__opportunity_won_sale_daily_ugc_products_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_ugc_products_cnt", "block_contents": ""}, "doc.yoda.analytics___cs__opportunity_won_sale_daily_vms_acv_in_usd_sum": {"name": "analytics___cs__opportunity_won_sale_daily_vms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__opportunity_won_sale_daily/analytics___cs__opportunity_won_sale_daily.md", "unique_id": "doc.yoda.analytics___cs__opportunity_won_sale_daily_vms_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___cs__organization_first_ht_opportunity": {"name": "analytics___cs__organization_first_ht_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "unique_id": "doc.yoda.analytics___cs__organization_first_ht_opportunity", "block_contents": "PK [organization_key]\n\nTable that stores for each organization it's first HT opportunity segments."}, "doc.yoda.analytics___cs__organization_first_ht_opportunity_dwh_updated_at": {"name": "analytics___cs__organization_first_ht_opportunity_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "unique_id": "doc.yoda.analytics___cs__organization_first_ht_opportunity_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___cs__organization_first_ht_opportunity_opportunity_id": {"name": "analytics___cs__organization_first_ht_opportunity_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "unique_id": "doc.yoda.analytics___cs__organization_first_ht_opportunity_opportunity_id", "block_contents": "opportunity_id of the first_ht_opportunity"}, "doc.yoda.analytics___cs__organization_first_ht_opportunity_opportunity_start_date": {"name": "analytics___cs__organization_first_ht_opportunity_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "unique_id": "doc.yoda.analytics___cs__organization_first_ht_opportunity_opportunity_start_date", "block_contents": "opportunity_start_date of the first_ht_opportunity"}, "doc.yoda.analytics___cs__organization_first_ht_opportunity_order_sales_segment": {"name": "analytics___cs__organization_first_ht_opportunity_order_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "unique_id": "doc.yoda.analytics___cs__organization_first_ht_opportunity_order_sales_segment", "block_contents": "order_sales_segment of the first_ht_opportunity"}, "doc.yoda.analytics___cs__organization_first_ht_opportunity_organization_key": {"name": "analytics___cs__organization_first_ht_opportunity_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "unique_id": "doc.yoda.analytics___cs__organization_first_ht_opportunity_organization_key", "block_contents": "PK: organization unique identifier"}, "doc.yoda.analytics___cs__organization_first_ht_opportunity_sales_region": {"name": "analytics___cs__organization_first_ht_opportunity_sales_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "original_file_path": "models/analytics/cs/marts/analytics___cs__organization_first_ht_opportunity/analytics___cs__organization_first_ht_opportunity.md", "unique_id": "doc.yoda.analytics___cs__organization_first_ht_opportunity_sales_region", "block_contents": "sales_region of the first_ht_opportunity"}, "doc.yoda.analytics___delivery__organization_customer_care_over_time": {"name": "analytics___delivery__organization_customer_care_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "original_file_path": "models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "unique_id": "doc.yoda.analytics___delivery__organization_customer_care_over_time", "block_contents": "Modeled Table of yotpo's customer care organizations over time.\nGranularity: orgnization_key| product_family_group | from_date | to_date"}, "doc.yoda.analytics___delivery__organization_customer_care_over_time_dwh_updated_at": {"name": "analytics___delivery__organization_customer_care_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "original_file_path": "models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "unique_id": "doc.yoda.analytics___delivery__organization_customer_care_over_time_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___delivery__organization_customer_care_over_time_from_date": {"name": "analytics___delivery__organization_customer_care_over_time_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "original_file_path": "models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "unique_id": "doc.yoda.analytics___delivery__organization_customer_care_over_time_from_date", "block_contents": "customer care start date"}, "doc.yoda.analytics___delivery__organization_customer_care_over_time_is_current": {"name": "analytics___delivery__organization_customer_care_over_time_is_current", "resource_type": "doc", "package_name": "yoda", "path": "analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "original_file_path": "models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "unique_id": "doc.yoda.analytics___delivery__organization_customer_care_over_time_is_current", "block_contents": "is this line relevan"}, "doc.yoda.analytics___delivery__organization_customer_care_over_time_is_customer_care": {"name": "analytics___delivery__organization_customer_care_over_time_is_customer_care", "resource_type": "doc", "package_name": "yoda", "path": "analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "original_file_path": "models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "unique_id": "doc.yoda.analytics___delivery__organization_customer_care_over_time_is_customer_care", "block_contents": "= 1 table containg only customer care time range"}, "doc.yoda.analytics___delivery__organization_customer_care_over_time_organization_key": {"name": "analytics___delivery__organization_customer_care_over_time_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "original_file_path": "models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "unique_id": "doc.yoda.analytics___delivery__organization_customer_care_over_time_organization_key", "block_contents": ""}, "doc.yoda.analytics___delivery__organization_customer_care_over_time_product_family_group": {"name": "analytics___delivery__organization_customer_care_over_time_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "original_file_path": "models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "unique_id": "doc.yoda.analytics___delivery__organization_customer_care_over_time_product_family_group", "block_contents": ""}, "doc.yoda.analytics___delivery__organization_customer_care_over_time_to_date": {"name": "analytics___delivery__organization_customer_care_over_time_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "original_file_path": "models/analytics/delivery/marts/analytics___delivery__organization_customer_care_over_time/analytics___delivery__organization_customer_care_over_time.md", "unique_id": "doc.yoda.analytics___delivery__organization_customer_care_over_time_to_date", "block_contents": "The end date for customer care is the subscription_end_date from finance__organization_product_revenue_metrics_monthly where is_lost = 1"}, "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly": {"name": "analytics___finance__communication_organization_product_usage_revenue_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly", "block_contents": "Aggragated Table to calculate sms and email recognized revenue from usage after deducting free credits.\nAggregated from analytics___finance__communication_store_product_usage_revenue_monthly.\nContains SMS and Email calculation.\nGranularity: month | organization | product_family\n\nIn the link below you can find an illustration of the usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191"}, "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_dwh_updated_at": {"name": "analytics___finance__communication_organization_product_usage_revenue_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_is_free": {"name": "analytics___finance__communication_organization_product_usage_revenue_monthly_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_is_free", "block_contents": "Indicates if the plan is free (of SaaS fees) plan or not"}, "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_is_full_service": {"name": "analytics___finance__communication_organization_product_usage_revenue_monthly_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_is_full_service", "block_contents": "Indicates if the plan is full service plan or not"}, "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_is_self_service": {"name": "analytics___finance__communication_organization_product_usage_revenue_monthly_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_is_self_service", "block_contents": "Indicates if the plan is self service plan or not"}, "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_month": {"name": "analytics___finance__communication_organization_product_usage_revenue_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_month", "block_contents": "aggregation month"}, "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_organization_key": {"name": "analytics___finance__communication_organization_product_usage_revenue_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_organization_key", "block_contents": "PK: analytics___platform__organization"}, "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_plan_name": {"name": "analytics___finance__communication_organization_product_usage_revenue_monthly_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_plan_name", "block_contents": ""}, "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_product_family": {"name": "analytics___finance__communication_organization_product_usage_revenue_monthly_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_organization_product_usage_revenue_monthly/analytics___finance__communication_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly_product_family", "block_contents": "SMS | Email"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly", "block_contents": "Aggragated Table to calculate sms and email recognized revenue from usage after deducting free credits.\nContains SMS and Email calculation.\nGranularity: month | app_key | product_family\n\nIn the link below you can find an illustration of the usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_app_key": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_app_key", "block_contents": ""}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_cumulative_free_credit": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_cumulative_free_credit", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_cumulative_free_credit", "block_contents": "total (cumulative) free credits given until this month (including)"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_cumulative_usage": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_cumulative_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_cumulative_usage", "block_contents": "total (cumulative) usage from sms and email until this month (including)"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_dwh_updated_at": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_free_credit_sum": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_free_credit_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_free_credit_sum", "block_contents": "free credit given this month"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_is_email": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_is_email", "block_contents": ""}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_is_free_credit": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_is_free_credit", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_is_free_credit", "block_contents": "indicator = 1 when free credits were given this month"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_is_sms": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_is_sms", "block_contents": ""}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_is_usage": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_is_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_is_usage", "block_contents": "indicator = 1 if charge is not free credits"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_month": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_month", "block_contents": "aggregation month"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_net_cumulative_usage": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_net_cumulative_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_net_cumulative_usage", "block_contents": "cumulative_usage - cumulative_free_credit"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_net_usage": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_net_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_net_usage", "block_contents": "usage_sum - greatest(free_credit_sum,0)"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_organization_key": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_product_family": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_product_family", "block_contents": "SMS | Email"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_product_recognized_usage_in_usd": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_product_recognized_usage_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_product_recognized_usage_in_usd", "block_contents": "product recognized usage after free credit deducation (cannot be < 0)"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_product_usage_in_usd": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_product_usage_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_product_usage_in_usd", "block_contents": "usage before free credit deducation"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_product_usage_precent": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_product_usage_precent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_product_usage_precent", "block_contents": "product usage/total month store usage"}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_sms_user_id": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_sms_user_id", "block_contents": ""}, "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_usage_sum": {"name": "analytics___finance__communication_store_product_usage_revenue_monthly_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__communication_store_product_usage_revenue_monthly/analytics___finance__communication_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__communication_store_product_usage_revenue_monthly_usage_sum", "block_contents": "usage from sms and email this month"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "block_contents": "PK [month, organization_key, product_family_group] OR [organization_product_month_id]\n\nThis table contains all the relevant fields for the MoM MRR cycle dashboard."}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_annual_billing": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_annual_billing", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_full_service": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_full_service", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_full_service_organization": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_full_service_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_full_service_organization", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_ht_self_service": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_ht_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_ht_self_service", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_paid_product": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_paid_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_paid_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_paying_organization": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_paying_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_paying_organization", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_self_service": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_self_service", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_self_service_organization": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_self_service_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_is_self_service_organization", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_mrr_in_usd": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_mrr_in_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_plan_group": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_plan_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_plan_name": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_saas_mrr_in_usd": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_saas_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_saas_mrr_in_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_usage_mrr_in_usd": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_usage_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_closing_usage_mrr_in_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_communications_delta_l12m_usage": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_communications_delta_l12m_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_communications_delta_l12m_usage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_communications_delta_l12m_utilized_free_credits": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_communications_delta_l12m_utilized_free_credits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_communications_delta_l12m_utilized_free_credits", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_consolidated_new_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_consolidated_new_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_consolidated_new_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_country_name": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_country_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_country_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_cross_sell_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_cross_sell_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_cross_sell_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_saas_delta_free_month_mrr_impact": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_saas_delta_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_saas_delta_free_month_mrr_impact", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_same_service_delta_original_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_same_service_delta_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_same_service_delta_original_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_service_change_delta_original_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_service_change_delta_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_decreased_service_change_delta_original_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_dwh_updated_at": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_end_term_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_end_term_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_end_term_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_closing_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_closing_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_closing_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_closing_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_closing_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_closing_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_closing_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_closing_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_closing_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_communications_delta_l12m_usage": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_communications_delta_l12m_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_communications_delta_l12m_usage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_communications_delta_l12m_utilized_free_credits": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_communications_delta_l12m_utilized_free_credits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_communications_delta_l12m_utilized_free_credits", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_communications_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_communications_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_communications_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_cross_sell_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_cross_sell_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_cross_sell_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_decreased_saas_delta_free_month_mrr_impact": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_decreased_saas_delta_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_decreased_saas_delta_free_month_mrr_impact", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_decreased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_decreased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_decreased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_end_term_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_end_term_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_end_term_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_in_term_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_in_term_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_in_term_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_increased_saas_delta_free_month_mrr_impact": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_increased_saas_delta_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_increased_saas_delta_free_month_mrr_impact", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_increased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_increased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_increased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_law_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_law_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_law_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_migration_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_migration_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_migration_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_migration_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_migration_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_migration_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_migration_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_migration_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_migration_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_negative_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_negative_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_negative_overages_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_new_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_new_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_new_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_opening_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_opening_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_opening_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_opening_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_opening_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_opening_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_opening_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_opening_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_opening_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_overages_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_positive_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_positive_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_positive_overages_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_subscriptions_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_subscriptions_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_subscriptions_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_total_new_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_total_new_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_total_new_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_usage_products_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_usage_products_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_usage_products_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_winback_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_winback_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_full_service_winback_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_in_term_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_in_term_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_in_term_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_saas_delta_free_month_mrr_impact": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_saas_delta_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_saas_delta_free_month_mrr_impact", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_same_service_delta_original_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_same_service_delta_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_same_service_delta_original_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_service_change_delta_original_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_service_change_delta_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_increased_service_change_delta_original_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_industry": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_industry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_initial_sales_segment": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_initial_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_initial_sales_segment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_initial_sales_segment_group": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_initial_sales_segment_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_initial_sales_segment_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_fs_mrr_cycle": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_fs_mrr_cycle", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_fs_mrr_cycle", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_ht_self_service": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_ht_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_ht_self_service", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_shopify": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_shopify", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_shopify", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_ss_mrr_cycle": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_ss_mrr_cycle", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_is_ss_mrr_cycle", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_law_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_law_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_law_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_month": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_negative_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_negative_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_negative_overages_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_new_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_new_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_new_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_annual_billing": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_annual_billing", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_full_service": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_full_service", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_full_service_organization": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_full_service_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_full_service_organization", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_ht_self_service": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_ht_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_ht_self_service", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_paid_product": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_paid_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_paid_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_paying_organization": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_paying_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_paying_organization", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_self_service": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_self_service", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_self_service_organization": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_self_service_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_is_self_service_organization", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_mrr_in_usd": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_mrr_in_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_plan_group": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_plan_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_plan_name": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_saas_mrr_in_usd": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_saas_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_saas_mrr_in_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_usage_mrr_in_usd": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_usage_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_opening_usage_mrr_in_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_key": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_name": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_overages_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_platform_name": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_platform_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_positive_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_positive_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_positive_overages_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_product_family_group": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_product_family_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_full_service_decreased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_full_service_decreased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_full_service_decreased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_full_service_increased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_full_service_increased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_full_service_increased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_self_service_decreased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_self_service_decreased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_self_service_decreased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_self_service_increased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_self_service_increased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_remain_self_service_increased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_closing_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_closing_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_closing_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_closing_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_closing_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_closing_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_closing_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_closing_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_closing_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_communications_delta_l12m_usage": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_communications_delta_l12m_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_communications_delta_l12m_usage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_communications_delta_l12m_utilized_free_credits": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_communications_delta_l12m_utilized_free_credits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_communications_delta_l12m_utilized_free_credits", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_communications_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_communications_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_communications_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_cross_sell_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_cross_sell_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_cross_sell_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_decreased_saas_delta_free_month_mrr_impact": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_decreased_saas_delta_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_decreased_saas_delta_free_month_mrr_impact", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_decreased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_decreased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_decreased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_end_term_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_end_term_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_end_term_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_in_term_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_in_term_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_in_term_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_increased_saas_delta_free_month_mrr_impact": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_increased_saas_delta_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_increased_saas_delta_free_month_mrr_impact", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_increased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_increased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_increased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_law_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_law_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_law_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_lost_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_lost_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_migration_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_migration_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_migration_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_migration_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_migration_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_migration_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_migration_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_migration_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_migration_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_negative_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_negative_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_negative_overages_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_new_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_new_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_new_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_opening_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_opening_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_opening_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_opening_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_opening_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_opening_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_opening_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_opening_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_opening_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_overages_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_positive_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_positive_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_positive_overages_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_subscriptions_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_subscriptions_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_subscriptions_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_total_new_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_total_new_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_total_new_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_usage_products_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_usage_products_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_usage_products_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_winback_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_winback_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_self_service_winback_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_subscription_end_date": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_subscription_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_subscription_end_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_subscription_start_date": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_subscription_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_subscription_start_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_subscriptions_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_subscriptions_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_subscriptions_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_full_service_decreased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_full_service_decreased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_full_service_decreased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_full_service_increased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_full_service_increased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_full_service_increased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_self_service_decreased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_self_service_decreased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_self_service_decreased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_self_service_increased_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_self_service_increased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_upgrade_to_self_service_increased_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_usage_products_delta_usage_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_usage_products_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_usage_products_delta_usage_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_winback_saas_mrr": {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard_winback_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_mom_mrr_cycle_dashboard/analytics___finance__organization_product_mom_mrr_cycle_dashboard.md", "unique_id": "doc.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard_winback_saas_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly": {"name": "analytics___finance__organization_product_recurring_revenue_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly", "block_contents": "Aggregated Table of yotpo total monthly recurring revenue from shopify and zuora.\ngranularity: mrr_month, product_family_group, organization_key\nPK: organization_product_month_id"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_adjusted_revenue_in_usd": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_adjusted_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_adjusted_revenue_in_usd", "block_contents": "sum of all sources mrr_in_usd * (number of days subscribed/total month days)."}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_is_annual_billing": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_closing_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_is_annual_billing", "block_contents": "indicator from zuora tables.\nindicator = 1 when plan is billed annually."}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_is_full_service": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_closing_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_is_full_service", "block_contents": "opposite of is_self_service"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_is_self_service": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_closing_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_is_self_service", "block_contents": "closing_is_main_plan_self_service from zuora and shopify tables.\npriority for values coming from zuora."}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_mrr_in_usd": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_closing_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_mrr_in_usd", "block_contents": "sum of zuora closing_mrr_in_usd and shopify closing_mrr_in_usd"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_plan_name": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_closing_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_plan_name", "block_contents": "End of month main plan name.\nclosing_main_plan from zuora and shopify tables.\npriority for values coming from zuora."}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_zuora_original_mrr_in_usd": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_closing_zuora_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_closing_zuora_original_mrr_in_usd", "block_contents": "End of month mrr_in_usd from zuora"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_dwh_updated_at": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_is_shopify_billing_source": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_is_shopify_billing_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_is_shopify_billing_source", "block_contents": "indicator = 1 when closing or opening mrr from analytics___finance__shopify_billing_organization_product_mrr_monthly"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_is_terminated_subscription": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_is_terminated_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_is_terminated_subscription", "block_contents": "opening_mrr_in_usd > 0 and closing_mrr_in_usd <= 0"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_is_terminated_subscription_within_first_month": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_is_terminated_subscription_within_first_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_is_terminated_subscription_within_first_month", "block_contents": "organization started and ended product plan in the same month.\nopening_mrr_in_usd <= 0 and closing_mrr_in_usd <= 0"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_is_zuora_source": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_is_zuora_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_is_zuora_source", "block_contents": "indicator = 1 when closing or opening mrr from analytics___finance__zuora_organization_product_group_mrr_monthly"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_month": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_month", "block_contents": "aggregation month PK: 1/3"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_opening_is_annual_billing": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_opening_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_opening_is_annual_billing", "block_contents": "closing_is_annual_billing of previous month"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_opening_is_full_service": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_opening_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_opening_is_full_service", "block_contents": "opposite of opening_is_self_service"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_opening_is_self_service": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_opening_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_opening_is_self_service", "block_contents": "closing_is_self_service of previous month"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_opening_mrr_in_usd": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_opening_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_opening_mrr_in_usd", "block_contents": "closing_mrr_in_usd of previous month"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_opening_plan_name": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_opening_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_opening_plan_name", "block_contents": "closing_plan_name of previous month"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_organization_key": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_organization_key", "block_contents": "PK: 2/3"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id", "block_contents": "TABLE PK: combination of month|organization_key|product_family_group"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_product_family_group": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_product_family_group", "block_contents": "PK: 2/3 product_family_group (reviews+vms+insights = UGC)"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_renewal_date": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_renewal_date", "block_contents": "The contract renewal date. (only relevant to HT)"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_subscription_end_date": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_subscription_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_subscription_end_date", "block_contents": "The subscription end date.\n 1. For active subscriptions the end date is 2999-01-01\n 2. For cancelled subscriptions the end date will be the cancelled date\n 3. In case we get subscriptions from both Zuora and Shopify billing (not supposed to happen) under the same org at the same time the end date will be the max between them"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_subscription_start_date": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_subscription_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_subscription_start_date", "block_contents": "The subscription start date.\n 1. In case we get subscriptions from both Zuora and Shopify billing (not supposed to happen) under the same org at the same time the start date will be the max between them"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_within_month_is_annual_billing": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_within_month_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_within_month_is_annual_billing", "block_contents": "indicator from zuora tables for subscription started and ended in the same month.\nindicator = 1 when plan is billed annually."}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_within_month_is_full_service": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_within_month_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_within_month_is_full_service", "block_contents": "opposite of within_month_is_self_service"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_within_month_is_self_service": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_within_month_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_within_month_is_self_service", "block_contents": "closing_is_main_plan_self_service from zuora and shopify tables for subscription started and ended in the same month.\npriority for values coming from zuora."}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_within_month_mrr_in_usd": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_within_month_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_within_month_mrr_in_usd", "block_contents": "sum of zuora within_month_mrr_in_usd and shopify within_month_mrr_in_usd"}, "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_within_month_plan_name": {"name": "analytics___finance__organization_product_recurring_revenue_monthly_within_month_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_recurring_revenue_monthly/analytics___finance__organization_product_recurring_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_recurring_revenue_monthly_within_month_plan_name", "block_contents": "subscription started and ended in the same month main plan name.\nmonthly_within_main_plan from zuora and shopify tables.\npriority for values coming from zuora."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly": {"name": "analytics___finance__organization_product_revenue_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly", "block_contents": "PK [month, organization_key, product_family_group] OR [organization_product_month_id]\n\nThis table contains metrics (components) that categorize changes in revenue/MRR for a specific organization,product and month.\nMain components:\n 1. Lost\n 2. New\n 3. Cross-Sell \n 4. Winback \n 5. Increase/Decrease\n 6. upgrade/downgrade to Self/Full Service\n\nThe table is built in the structure of cycles:\n 1. opening balance\n 2. components (Lost, New, Cross-Sell, etc.)\n 3. closing balance\n\n Where: opening balance + SUM(components) = closing balance\n\nThe table calculate cycles for the three main revenue metrics:\n 1. MRR\n 2. Revenue\n 3. Pro-Rated MRR\n\n Plus, for each metric we calculate:\n 1. Total cycle\n 2. SaaS only cycle\n 3. Usage only cycle\n\nAfter the cycles columns, you can find the flags we used to categorize the components (is_new, is_lost etc.)\nIn the link below you can find the logic flow chart:\n https://lucid.app/lucidchart/7b7ce889-77f5-44e5-82ca-a34db9c98ec0/edit?invitationId=inv_ea5fc020-8000-48b2-a0a3-f6ed7b669b4e&page=A8EhpEQkFJ9j#"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_closing_original_saas_mrr_in_usd": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_closing_original_saas_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_closing_original_saas_mrr_in_usd", "block_contents": "The original SaaS MRR (W/O taking into account free months impact)\n closing_original_saas_mrr = closing_saas_mrr - closing_free_months_mrr_impact"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_communications_delta_l12m_usage": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_communications_delta_l12m_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_communications_delta_l12m_usage", "block_contents": "only relevant to SMS & Email: \n (closing_l12m_avg_usage_in_usd - opening_l12m_avg_usage_in_usd)*12"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_communications_delta_l12m_utilized_free_credits": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_communications_delta_l12m_utilized_free_credits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_communications_delta_l12m_utilized_free_credits", "block_contents": "only relevant to SMS & Email: \n (closing_l12m_avg_utilized_free_credits - opening_l12m_avg_utilized_free_credits)*12"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_mrr", "block_contents": "The SUM of the new MRR components including:\n 1. New MRR\n 2. Winback MRR\n 3. LAW Lost MRR"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_pro_rated_mrr", "block_contents": "The SUM of the new pro-rated MRR components including:\n 1. New pro-rated MRR\n 2. Winback pro-rated MRR\n 3. LAW Lost pro-rated MRR"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_revenue", "block_contents": "The SUM of the new Revenue components including:\n 1. New Revenue\n 2. Winback Revenue\n 3. LAW Lost Revenue"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_saas_mrr", "block_contents": "The SUM of the new SaaS MRR components including:\n 1. New SaaS MRR\n 2. Winback SaaS MRR\n 3. LAW Lost SaaS MRR"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_usage_mrr", "block_contents": "The SUM of the new Usage MRR components including:\n 1. New Usage MRR\n 2. Winback Usage MRR"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_usage_pro_rated_mrr", "block_contents": "The SUM of the new Usage pro-rated MRR components including:\n 1. New Usage pro-rated MRR\n 2. Winback Usage pro-rated MRR"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_consolidated_new_usage_revenue", "block_contents": "The SUM of the new Usage Revenue components including:\n 1. New Usage Revenue\n 2. Winback Usage Revenue"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_mrr", "block_contents": "IF is_cross_sell = 1:\n cross_sell_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n cross_sell_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_pro_rated_mrr", "block_contents": "IF is_cross_sell = 1:\n cross_sell_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n cross_sell_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_revenue", "block_contents": "IF is_cross_sell = 1:\n cross_sell_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n cross_sell_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_saas_mrr", "block_contents": "IF is_cross_sell = 1:\n cross_sell_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n cross_sell_saas_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_usage_mrr", "block_contents": "IF is_cross_sell = 1:\n cross_sell_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n cross_sell_usage_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_usage_pro_rated_mrr", "block_contents": "IF is_cross_sell = 1:\n cross_sell_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n cross_sell_usage_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_cross_sell_usage_revenue", "block_contents": "IF is_cross_sell = 1:\n cross_sell_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n cross_sell_usage_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_free_month_mrr_impact": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_free_month_mrr_impact", "block_contents": "IF is_decreased_free_month_mrr_impact = 1:\n decreased_free_month_mrr_impact = delta_free_month_mrr_impact (closing_free_month_mrr_impact-opening_free_month_mrr_impact)\nELSE\n decreased_free_month_mrr_impact = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_mrr", "block_contents": "IF is_decreased_mrr = 1:\n decreased_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n decreased_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_original_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_original_saas_mrr", "block_contents": "IF is_decreased_original_saas_mrr = 1:\n decreased_original_saas_mrr = delta_original_saas_mrr (closing_original_saas_mrr-opening_original_saas_mrr)\nELSE\n decreased_original_saas_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_pro_rated_mrr", "block_contents": "IF is_decreased_pro_rated_mrr = 1:\n decreased_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n decreased_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_revenue", "block_contents": "IF is_decreased_revenue = 1:\n decreased_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n decreased_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_saas_delta_free_month_mrr_impact": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_saas_delta_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_saas_delta_free_month_mrr_impact", "block_contents": "The delta free months MRR impact of records where the total SaaS MRR decreased MoM"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_saas_mrr", "block_contents": "IF is_decreased_saas_mrr = 1:\n decreased_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n decreased_saas_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_same_service_delta_original_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_same_service_delta_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_same_service_delta_original_saas_mrr", "block_contents": "The delta original SaaS MRR impact of records where:\n 1. The total SaaS MRR decreased MoM\n 2. The service level did not change MoM"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_service_change_delta_original_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_service_change_delta_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_service_change_delta_original_saas_mrr", "block_contents": "The delta original SaaS MRR impact of records where:\n 1. The total SaaS MRR decreased MoM\n 2. The service level changed MoM"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_usage_mrr", "block_contents": "IF is_decreased_usage_mrr = 1:\n decreased_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n decreased_usage_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_usage_pro_rated_mrr", "block_contents": "IF is_decreased_usage_pro_rated_mrr = 1:\n decreased_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n decreased_usage_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_decreased_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_decreased_usage_revenue", "block_contents": "IF is_decreased_usage_revenue = 1:\n decreased_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n decreased_usage_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_l12m_avg_usage": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_l12m_avg_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_l12m_avg_usage", "block_contents": "delta_l12m_avg_usage = closing_l12m_avg_usage - opening_l12m_avg_usage"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_l12m_avg_utilized_free_credits": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_l12m_avg_utilized_free_credits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_l12m_avg_utilized_free_credits", "block_contents": "delta_l12m_avg_utilized_free_credits = closing_l12m_avg_utilized_free_credits - opening_l12m_avg_utilized_free_credits"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_mrr", "block_contents": "delta_mrr = closing_mrr - opening_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_original_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_original_saas_mrr", "block_contents": "delta_original_saas_mrr = closing_original_saas_mrr - opening_original_saas_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_pro_rated_mrr", "block_contents": "delta_pro_rated_mrr = closing_pro_rated_mrr - opening_pro_rated_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_revenue", "block_contents": "delta_revenue = closing_revenue - opening_revenue"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_saas_mrr", "block_contents": "delta_saas_mrr = closing_saas_mrr - opening_saas_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_usage": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_usage", "block_contents": "delta_usage = closing_usage - opening_usage"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_usage_mrr", "block_contents": "delta_usage_mrr = closing_usage_mrr - opening_usage_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_usage_pro_rated_mrr", "block_contents": "delta_usage_pro_rated_mrr = closing_usage_pro_rated_mrr - opening_usage_pro_rated_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_usage_revenue", "block_contents": "delta_usage_revenue = closing_usage_revenue - opening_usage_revenue"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_utilized_free_credits": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_delta_utilized_free_credits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_delta_utilized_free_credits", "block_contents": "delta_utilized_free_credits = closing_utilized_free_credits - opening_utilized_free_credits"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_mrr", "block_contents": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n downgrade_to_self_service_delta_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_pro_rated_mrr", "block_contents": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n downgrade_to_self_service_delta_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_revenue", "block_contents": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n downgrade_to_self_service_delta_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_saas_mrr", "block_contents": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n downgrade_to_self_service_delta_saas_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_usage_mrr", "block_contents": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n downgrade_to_self_service_delta_usage_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_usage_pro_rated_mrr", "block_contents": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n downgrade_to_self_service_delta_usage_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_delta_usage_revenue", "block_contents": "The change made during the downgrade.\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_delta_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n downgrade_to_self_service_delta_usage_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_mrr_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_mrr_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_mrr_movement", "block_contents": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_mrr_movement = opening_mrr\nELSE\n downgrade_to_self_service_mrr_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_pro_rated_mrr_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_pro_rated_mrr_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_pro_rated_mrr_movement", "block_contents": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_pro_rated_mrr_movement = opening_pro_rated_mrr\nELSE\n downgrade_to_self_service_pro_rated_mrr_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_revenue_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_revenue_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_revenue_movement", "block_contents": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_revenue_movement = opening_revenue\nELSE\n downgrade_to_self_service_revenue_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_saas_mrr_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_saas_mrr_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_saas_mrr_movement", "block_contents": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_saas_mrr_movement = opening_saas_mrr\nELSE\n downgrade_to_self_service_saas_mrr_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_usage_mrr_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_usage_mrr_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_usage_mrr_movement", "block_contents": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_usage_mrr_movement = opening_usage_mrr\nELSE\n downgrade_to_self_service_usage_mrr_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_usage_pro_rated_mrr_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_usage_pro_rated_mrr_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_usage_pro_rated_mrr_movement", "block_contents": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_usage_pro_rated_mrr_movement = opening_usage_pro_rated_mrr\nELSE\n downgrade_to_self_service_usage_pro_rated_mrr_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_usage_revenue_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_usage_revenue_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_downgrade_to_self_service_usage_revenue_movement", "block_contents": "The amount that was classified as full-service last month and moved to self-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_downgrade_to_self_service = 1:\n downgrade_to_self_service_usage_revenue_movement = opening_usage_revenue\nELSE\n downgrade_to_self_service_usage_revenue_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_dwh_updated_at": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_dwh_updated_at", "block_contents": "table update timestamp"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_end_term_lost_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_end_term_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_end_term_lost_saas_mrr", "block_contents": "The lost_saas_mrr where is_in_term_renewal = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_communications_delta_l12m_usage": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_fs_communications_delta_l12m_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_communications_delta_l12m_usage", "block_contents": "Full-service ARR cycle helper:\n communications_delta_l12m_usage = delta_l12m_avg_usage*12\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_communications_delta_l12m_utilized_free_credits": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_fs_communications_delta_l12m_utilized_free_credits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_communications_delta_l12m_utilized_free_credits", "block_contents": "Full-service ARR cycle helper:\n communications_delta_l12m_utilized_free_credits = delta_l12m_avg_utilized_free_credits*12\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_communications_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_fs_communications_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_communications_delta_usage_mrr", "block_contents": "Full-service ARR cycle helper:\n communications_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_fs_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_delta_usage_mrr", "block_contents": "full-service ARR cycle helper:\n delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_migration_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_fs_migration_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_migration_mrr", "block_contents": "Full-service ARR cycle helper:\nMRR that moved into and out of the segment."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_migration_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_fs_migration_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_migration_saas_mrr", "block_contents": "full-service ARR cycle helper:\nSaaS MRR that moved into and out of the segment."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_migration_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_fs_migration_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_migration_usage_mrr", "block_contents": "full-service ARR cycle helper:\nUsage MRR that moved into and out of the segment."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_negative_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_fs_negative_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_negative_overages_delta_usage_mrr", "block_contents": "full-service ARR cycle helper:\n negative_overages_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = UGC or Loyalty\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)\n 3. delta_usage_mrr < 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_fs_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_overages_delta_usage_mrr", "block_contents": "full-service ARR cycle helper:\n overages_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = UGC or Loyalty\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_subscriptions_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_fs_subscriptions_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_subscriptions_delta_usage_mrr", "block_contents": "Full-service ARR cycle helper:\n subscriptions_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = Subscriptions\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_usage_products_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_fs_usage_products_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_fs_usage_products_delta_usage_mrr", "block_contents": "full-service ARR cycle helper:\n usage_products_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = SMS or Email or Subscriptions\n 2. closing_is_full_service = 1 OR (opening_is_full_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_in_term_lost_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_in_term_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_in_term_lost_saas_mrr", "block_contents": "The lost_saas_mrr where is_in_term_renewal = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_free_month_mrr_impact": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_free_month_mrr_impact", "block_contents": "IF is_increased_free_month_mrr_impact = 1:\n increased_free_month_mrr_impact = delta_free_month_mrr_impact (closing_free_month_mrr_impact-opening_free_month_mrr_impact)\nELSE\n increased_free_month_mrr_impact = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_mrr", "block_contents": "IF is_increased_mrr = 1:\n increased_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n increased_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_original_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_original_saas_mrr", "block_contents": "IF is_increased_original_saas_mrr = 1:\n increased_original_saas_mrr = delta_original_saas_mrr (closing_original_saas_mrr-opening_original_saas_mrr)\nELSE\n increased_original_saas_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_pro_rated_mrr", "block_contents": "IF is_increased_pro_rated_mrr = 1:\nincreased_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\nincreased_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_revenue", "block_contents": "IF is_increased_revenue = 1:\n increased_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n increased_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_saas_delta_free_month_mrr_impact": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_saas_delta_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_saas_delta_free_month_mrr_impact", "block_contents": "The delta free months MRR impact of records where the total SaaS MRR increased MoM"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_saas_mrr", "block_contents": "IF is_increased_saas_mrr = 1:\n increased_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n increased_saas_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_same_service_delta_original_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_same_service_delta_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_same_service_delta_original_saas_mrr", "block_contents": "The delta original SaaS MRR impact of records where:\n 1. The total SaaS MRR increased MoM\n 2. The service level did not change MoM"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_service_change_delta_original_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_service_change_delta_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_service_change_delta_original_saas_mrr", "block_contents": "The delta original SaaS MRR impact of records where:\n 1. The total SaaS MRR increased MoM\n 2. The service level changed MoM"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_usage_mrr", "block_contents": "IF is_increased_usage_mrr = 1:\n increased_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n increased_usage_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_usage_pro_rated_mrr", "block_contents": "IF is_increased_usage_pro_rated_mrr = 1:\n increased_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n increased_usage_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_increased_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_increased_usage_revenue", "block_contents": "IF is_increased_usage_revenue = 1:\n increased_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n increased_usage_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_cross_sell": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_cross_sell", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_cross_sell", "block_contents": "If product is classified as Cross Sell, it means that the customer was already yotpo's paying customer last month (paid for another products)\nand this month he started paying for the new product, under the condition that this product is not a winback (see is_winback description for more info).\nIn more technical terms, product is categorized as Cross Sell (is_cross_sell = 1) if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts = 0\n AND\n 3. It's the customer's first ever month with the product OR months_since_last_paying_month > 6 (not winback)\n AND\n 4. The customer had opening_revenue_for_cohorts for at least one other product (was Yotpo's customer last month)\n AND\n 5. It's not part of staggered subscription"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_free_month_mrr_impact": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_free_month_mrr_impact", "block_contents": "Indicates if the impact of free months decreased MoM (causing the SaaS MRR to increase).\nThis can mainly happens during renewals and can help us understand if the SaaS MRR of a customer\nhas increased because he was upgraded or just because he renewed to a contract w/o free months\nFor example:\n let's say a customer renewed (at the same rate) a 12 month contract worth $12k and during the expired contract\n he got 2 free months unlike the renewed contract where he got none.\n The SaaS MRR of the expired contract is $875 = $12K/(12+2); Free month MRR impact = -$125\n while the SaaS MRR of the new contract is $1000 = $12K/(12); Free month MRR impact = $0\n Therefore the SaaS MRR increased by $125 because the free months impact decreased by $125.\n In that case the indicator will be equal to 1."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_mrr", "block_contents": "Indicates if the MRR (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_mrr < opening_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_original_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_original_saas_mrr", "block_contents": "Indicates if the original SaaS MRR (SaaS MRR W/O free months impact) decreased MoM.\nSaaS MRR W/O free months impact is basically the contractual SaaS MRR.\nThis can mainly happens during renewals and can help us understand if the SaaS MRR of a customer\nhas decreased because he was downgraded or just because he renewed to a contract with higher free months impact.\nFor example:\n let's say a customer renewed a contract with the following details:\n Expired contract: 12 month contract worth $12k + 2 free months.\n Renewed contract: 12 month contract worth $11k w/o free months.\n The SaaS MRR of the expired contract is $875 = $12K/(12+2); Free month MRR impact = -$125\n while the SaaS MRR of the new contract is $917 = $11K/(12); Free month MRR impact = $0\n Therefore:\n 1.The original SaaS MRR decreased by -$83 = $917 - $1000\n 2.The free months impact decreased (positive) by $125 = $0-(-$125)\n 3.The SaaS MRR increased by $42 = $917 - $875 because the free months impact decreased more than the original SaaS MRR decreased.\n In that case the indicator will be equal to 1."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_pro_rated_mrr", "block_contents": "Indicates if the pro-rated MRR (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_pro_rated_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_pro_rated_mrr < opening_pro_rated_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_revenue", "block_contents": "Indicates if the revenue (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_revenue = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_revenue < opening_revenue"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_saas_mrr", "block_contents": "Indicates if the SaaS MRR (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_saas_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_saas_mrr < opening_saas_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_usage_mrr", "block_contents": "Indicates if the usage MRR (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_usage_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_mrr < opening_usage_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_usage_pro_rated_mrr", "block_contents": "Indicates if the usage pro-rated MRR (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_usage_pro_rated_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_pro_rated_mrr < opening_usage_pro_rated_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_decreased_usage_revenue", "block_contents": "Indicates if the usage revenue (of existing paying customers) decreased MoM.\nIn more technical terms, is_decreased_usage_revenue = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_revenue < opening_usage_revenue"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_downgrade_to_self_service": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_downgrade_to_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_downgrade_to_self_service", "block_contents": "Indicates if a customer started the month with full service plan (on product level) and finished with self service plan.\nIn more technical terms, is_downgrade_to_self_service = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. opening_is_full_service = 1\n AND\n 4. closing_is_full_service = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_fs_mrr_cycle": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_fs_mrr_cycle", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_fs_mrr_cycle", "block_contents": "Indicates if the record needs to be included in the full-service MRR cycle.\nFor a record to be included in the full-service MRR cycle, it must meet at least one of the following criteria:\n 1. opening_is_full_service = 1 AND opening_mrr > 0\n OR\n 2. closing_is_full_service = 1 AND closing_mrr > 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_fs_revenue_cycle": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_fs_revenue_cycle", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_fs_revenue_cycle", "block_contents": "Indicates if the record needs to be included in the full-service Revenue cycle.\nFor a record to be included in the full-service revenue cycle, it must meet at least one of the following criteria:\n 1. opening_is_full_service = 1 AND opening_revenue > 0\n OR\n 2. closing_is_full_service = 1 AND closing_revenue > 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_free_month_mrr_impact": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_increased_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_free_month_mrr_impact", "block_contents": "Indicates if the impact of free months increased MoM (causing the SaaS MRR to decrease).\nThis can mainly happens when a customer get free months in the middle of a contract or during renewals\nand can help us understand if the SaaS MRR of a customer has decreased because he was downgraded or due to free months.\nFor example:\n let's say a customer renewed (at the same rate) a 12 month contract worth $12k and during the renewal contract\n he got 2 free months unlike the expired contract where he got none.\n The SaaS MRR of the expired contract is $1000 = $12K/(12); Free month MRR impact = $0\n while the SaaS MRR of the new contract is $875 = $12K/(12+2); Free month MRR impact = -$125\n Therefore the SaaS MRR decreased by $125 because the free months impact increased by -$125.\n In that case the indicator will be equal to 1."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_increased_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_mrr", "block_contents": "Indicates if the MRR (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_mrr > opening_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_original_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_increased_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_original_saas_mrr", "block_contents": "Indicates if the original SaaS MRR (SaaS MRR W/O free months impact) increased MoM.\nSaaS MRR W/O free months impact is basically the contractual SaaS MRR.\nThis can mainly happens during renewals and can help us understand if the SaaS MRR of a customer\nhas increased because he was upgraded or just because he renewed to a contract with lower free months impact.\nFor example:\n let's say a customer renewed a contract with the following details:\n Expired contract: 12 month contract worth $11k w/o free months.\n Renewed contract: 12 month contract worth $12k + 2 free months.\n The SaaS MRR of the expired contract is $917 = $11K/(12); Free month MRR impact = $0\n while the SaaS MRR of the new contract is $875 = $12K/(12+2); Free month MRR impact = -$125\n Therefore:\n 1.The original SaaS MRR increased by $83 = $1000 - $917\n 2.The free months impact increased (negative) by -$125 = -$125 - $0\n 3.The SaaS MRR decreased by -$42 = $875 - $917 because the free months impact increased more than the original SaaS MRR increased.\n In that case the indicator will be equal to 1."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_increased_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_pro_rated_mrr", "block_contents": "Indicates if the pro-rated MRR (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_pro_rated_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_pro_rated_mrr > opening_pro_rated_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_increased_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_revenue", "block_contents": "Indicates if the revenue (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_revenue = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_revenue > opening_revenue"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_increased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_saas_mrr", "block_contents": "Indicates if the SaaS MRR (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_saas_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_saas_mrr > opening_saas_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_increased_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_usage_mrr", "block_contents": "Indicates if the usage MRR (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_usage_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_mrr > opening_usage_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_increased_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_usage_pro_rated_mrr", "block_contents": "Indicates if the usage pro-rated MRR (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_usage_pro_rated_mrr = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_pro_rated_mrr > opening_usage_pro_rated_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_increased_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_increased_usage_revenue", "block_contents": "Indicates if the usage revenue (of existing paying customers) increased MoM.\nIn more technical terms, is_increased_usage_revenue = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. closing_usage_revenue > opening_usage_revenue"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_inflow_fs": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_inflow_fs", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_inflow_fs", "block_contents": "Indicates if opening_is_full_service = 0 AND closing_is_full_service = 1"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_inflow_ss": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_inflow_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_inflow_ss", "block_contents": "Indicates if opening_is_self_service = 0 AND closing_is_self_service = 1"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_law_lost": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_law_lost", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_law_lost", "block_contents": "If product is classified as LAW Lost, it means that we recognized revenue for the customer last month and stopped recognizing this month due to LAW.\nIn more technical terms, product is categorized as Lost (is_law_lost = 1) if:\n 1. closing_revenue_for_cohorts = 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. is_lost_after_won = 1"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_lost": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_lost", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_lost", "block_contents": "If product is classified as Lost, it means that the customer paid for the product last month and stopped this month.\nIn more technical terms, product is categorized as Lost (is_lost = 1) if:\n 1. closing_revenue_for_cohorts = 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. is_lost_after_won = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_lost_usage_leftover": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_lost_usage_leftover", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_lost_usage_leftover", "block_contents": "Lost usage leftovers can be caused for 2 reasons:\n 1. UGC/Loyalty overages during cancelation month:\n UGC/Loyalty customers are considered lost if they stopped paying SaaS fees, but there are cases where customers \n reached their limit and paid for overages during their cancelation month causing the closing usage revenue to be positive.\n In the following month the opening revenue will be positive while the closing will be zero, therefore creating a negative delta.\n We classify this MoM change as \"lost_usage_leftover\".\n 2. Usage MRR calculation method:\n Since we are calculate usage MRR by the last 12 months moving average with no regard if the customer had usage revenue\n in a specific month or not, it cause cases where we keep recognizing usage MRR for already lost customers.\n In those cases, the MRR will decline gradually (until there will be 12 months stright w/o usage revenue). We classify this\n MoM change as \"lost_usage_leftover\".\nIn more technical terms, is_lost_usage_leftover = 1 if:\n 1. closing_revenue_for_cohorts = 0\n AND\n 2. opening_revenue_for_cohorts = 0\n AND\n 3. delta_usage_revenue <> 0 OR delta_usage_mrr <> 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_new": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_new", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_new", "block_contents": "If product is classified as New, it means that the customer wasn't yotpo's paying customer last month at all (or if it's part of staggered subscription)\nand this month he started paying for the new product, under the condition that this product is not a winback (see is_winback description for more info).\nIn more technical terms, product is categorized as New (is_new = 1) if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts = 0\n AND\n 3. It's the customer's first ever month with the product OR months_since_last_paying_month > 6 (not winback)\n AND\n 4. The customer didn't have opening_revenue_for_cohorts for any product (wasn't Yotpo's paying customer last month)\n OR\n It's part of staggered subscription"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_outflow_fs": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_outflow_fs", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_outflow_fs", "block_contents": "Indicates if opening_is_full_service = 1 and closing_is_full_service = 1 or the product was lost"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_outflow_ss": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_outflow_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_outflow_ss", "block_contents": "Indicates if opening_is_self_service = 1 AND closing_is_self_service = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_remain_fs": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_remain_fs", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_remain_fs", "block_contents": "Indicates if opening_is_full_service = 1 AND closing_is_full_service = 1"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_remain_ss": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_remain_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_remain_ss", "block_contents": "Indicates if opening_is_self_service = 1 AND closing_is_self_service = 1"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_same_service": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_same_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_same_service", "block_contents": "Indicates if customer kept his service level MoM (must be paying customer last month and current month).\nIn more technical terms, is_same_service = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. opening_is_full_service = closing_is_full_service"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_ss_mrr_cycle": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_ss_mrr_cycle", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_ss_mrr_cycle", "block_contents": "Indicates if the record needs to be included in the self-service MRR cycle.\nFor a record to be included in the self-service MRR cycle, it must meet at least one of the following criteria:\n 1. opening_is_self_service = 1 AND opening_mrr > 0\n OR\n 2. closing_is_self_service = 1 AND closing_mrr > 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_ss_revenue_cycle": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_ss_revenue_cycle", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_ss_revenue_cycle", "block_contents": "Indicates if the record needs to be included in the self-service revenue cycle.\nFor a record to be included in the self-service revenue cycle, it must meet at least one of the following criteria:\n 1. opening_is_self_service = 1 AND opening_revenue > 0\n OR\n 2. closing_is_self_service = 1 AND closing_revenue > 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_free_month_mrr_impact": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_free_month_mrr_impact", "block_contents": "Indicates if the free_month_mrr_impact remained the same MoM.\nIn more technical terms, is_unchanged_free_month_mrr_impact = 1 if:\n 1. closing_free_month_mrr_impact = opening_free_month_mrr_impact"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_mrr", "block_contents": "Indicates if the MRR remained the same MoM.\nIn more technical terms, is_unchanged_mrr = 1 if:\n 1. closing_mrr = opening_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_original_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_original_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_original_saas_mrr", "block_contents": "Indicates if the original_saas_mrr remained the same MoM.\nIn more technical terms, is_unchanged_original_saas_mrr = 1 if:\n 1. closing_original_saas_mrr = opening_original_saas_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_pro_rated_mrr", "block_contents": "Indicates if the pro_rated_mrr remained the same MoM.\nIn more technical terms, is_unchanged_pro_rated_mrr = 1 if:\n 1. closing_pro_rated_mrr = opening_pro_rated_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_revenue", "block_contents": "Indicates if the revenue remained the same MoM.\nIn more technical terms, is_unchanged_revenue = 1 if:\n 1. closing_revenue = opening_revenue"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_saas_mrr", "block_contents": "Indicates if the saas_mrr remained the same MoM.\nIn more technical terms, is_unchanged_saas_mrr = 1 if:\n 1. closing_saas_mrr = opening_saas_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_usage_mrr", "block_contents": "Indicates if the usage_mrr remained the same MoM.\nIn more technical terms, is_unchanged_usage_mrr = 1 if:\n 1. closing_usage_mrr = opening_usage_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_usage_pro_rated_mrr", "block_contents": "Indicates if the usage_pro_rated_mrr remained the same MoM.\nIn more technical terms, is_unchanged_usage_pro_rated_mrr = 1 if:\n 1. closing_usage_pro_rated_mrr = opening_usage_pro_rated_mrr"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_unchanged_usage_revenue", "block_contents": "Indicates if the usage_revenue remained the same MoM.\nIn more technical terms, is_unchanged_usage_revenue = 1 if:\n 1. closing_usage_revenue = opening_usage_revenue"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_upgrade_to_full_service": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_upgrade_to_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_upgrade_to_full_service", "block_contents": "Indicates if a customer started the month with self service plan (on product level) and finished with full service plan.\nIn more technical terms, is_downgrade_to_self_service = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts > 0\n AND\n 3. opening_is_full_service = 0\n AND\n 4. closing_is_full_service = 1"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_winback": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_is_winback", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_is_winback", "block_contents": "If product is classified as Winback, it means that the customer didn't pay for the product last month but\ndid pay in the last 6 months (this threshold is controlled by the winback_threshold at the start of the SQL query).\nIn more technical terms, product is categorized as Winback (is_winback = 1) if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. opening_revenue_for_cohorts = 0\n AND\n 3. months_since_last_paying_month <= 6 (winback_threshold)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_law_lost_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_law_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_law_lost_saas_mrr", "block_contents": "IF is_law_lost = 1:\n law_lost_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n law_lost_saas_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_lost_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_mrr", "block_contents": "IF is_lost = 1:\n lost_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n lost_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_lost_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_pro_rated_mrr", "block_contents": "IF is_lost = 1:\n lost_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n lost_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_lost_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_revenue", "block_contents": "IF is_lost = 1:\n lost_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n lost_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_lost_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_saas_mrr", "block_contents": "IF is_lost = 1:\n lost_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n lost_saas_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_leftover_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_leftover_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_leftover_mrr", "block_contents": "IF is_lost_usage_leftover = 1:\n lost_usage_leftover_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n lost_usage_leftover_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_leftover_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_leftover_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_leftover_pro_rated_mrr", "block_contents": "IF is_lost_usage_leftover = 1:\n lost_usage_leftover_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n lost_usage_leftover_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_leftover_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_leftover_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_leftover_revenue", "block_contents": "IF is_lost_usage_leftover = 1:\n lost_usage_leftover_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n lost_usage_leftover_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_mrr", "block_contents": "IF is_lost = 1:\n lost_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n lost_usage_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_pro_rated_mrr", "block_contents": "IF is_lost = 1:\n lost_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n lost_usage_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_lost_usage_revenue", "block_contents": "IF is_lost = 1:\n lost_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n lost_usage_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_negative_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_negative_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_negative_overages_delta_usage_mrr", "block_contents": "Only relevant to UGC & Loyalty. \nIt's basically the delta_usage_mrr where the delta is negative, having it as seperate column will just make the cycle build more clean."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_new_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_mrr", "block_contents": "IF is_new = 1:\n new_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n new_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_new_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_pro_rated_mrr", "block_contents": "IF is_new = 1:\n new_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n new_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_new_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_revenue", "block_contents": "IF is_new = 1:\n new_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n new_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_new_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_saas_mrr", "block_contents": "IF is_new = 1:\n new_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n new_saas_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_new_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_usage_mrr", "block_contents": "IF is_new = 1:\n new_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n new_usage_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_new_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_usage_pro_rated_mrr", "block_contents": "IF is_new = 1:\n new_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n new_usage_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_new_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_new_usage_revenue", "block_contents": "IF is_new = 1:\n new_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n new_usage_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_opening_original_saas_mrr_in_usd": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_opening_original_saas_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_opening_original_saas_mrr_in_usd", "block_contents": "The original SaaS MRR (W/O taking into account free months impact)\n opening_original_saas_mrr = opening_saas_mrr - opening_free_months_mrr_impact"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_overages_delta_usage_mrr", "block_contents": "Only relevant to UGC & Loyalty. \nIt's basically the delta_usage_mrr, having it as seperate column will just make the cycle build more clean."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_positive_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_positive_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_positive_overages_delta_usage_mrr", "block_contents": "Only relevant to UGC & Loyalty. \nIt's basically the delta_usage_mrr where the delta is positive, having it as seperate column will just make the cycle build more clean."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_mrr", "block_contents": "IF(is_decreased_mrr = 1 AND is_same_service = 1,delta_mrr,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_pro_rated_mrr", "block_contents": "IF(is_decreased_pro_rated_mrr = 1 AND is_same_service = 1,delta_pro_rated_mrr,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_revenue", "block_contents": "IF(is_decreased_revenue = 1 AND is_same_service = 1,delta_revenue,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_saas_mrr", "block_contents": "IF(is_decreased_saas_mrr = 1 AND is_same_service = 1,delta_saas_mrr,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_usage_mrr", "block_contents": "IF(is_decreased_usage_mrr = 1 AND is_same_service = 1,delta_usage_mrr,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_usage_pro_rated_mrr", "block_contents": "IF(is_decreased_usage_pro_rated_mrr = 1 AND is_same_service = 1,delta_usage_pro_rated_mrr,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_decreased_usage_revenue", "block_contents": "IF(is_decreased_usage_revenue = 1 AND is_same_service = 1,delta_usage_revenue,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_mrr", "block_contents": "IF(is_increased_mrr = 1 AND is_same_service = 1,delta_mrr,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_pro_rated_mrr", "block_contents": "IF(is_increased_pro_rated_mrr = 1 AND is_same_service = 1,delta_pro_rated_mrr,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_revenue", "block_contents": "IF(is_increased_revenue = 1 AND is_same_service = 1,delta_revenue,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_saas_mrr", "block_contents": "IF(is_increased_saas_mrr = 1 AND is_same_service = 1,delta_saas_mrr,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_usage_mrr", "block_contents": "IF(is_increased_usage_mrr = 1 AND is_same_service = 1,delta_usage_mrr,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_usage_pro_rated_mrr", "block_contents": "IF(is_increased_usage_pro_rated_mrr = 1 AND is_same_service = 1,delta_usage_pro_rated_mrr,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_same_service_increased_usage_revenue", "block_contents": "IF(is_increased_usage_revenue = 1 AND is_same_service = 1,delta_usage_revenue,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_communications_delta_l12m_usage": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_ss_communications_delta_l12m_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_communications_delta_l12m_usage", "block_contents": "Self-service ARR cycle helper:\n communications_delta_l12m_usage = delta_l12m_avg_usage*12\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_communications_delta_l12m_utilized_free_credits": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_ss_communications_delta_l12m_utilized_free_credits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_communications_delta_l12m_utilized_free_credits", "block_contents": "self-service ARR cycle helper:\n communications_delta_l12m_utilized_free_credits = delta_l12m_avg_utilized_free_credits*12\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_communications_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_ss_communications_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_communications_delta_usage_mrr", "block_contents": "self-service ARR cycle helper:\n communications_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = SMS or Email\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_ss_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_delta_usage_mrr", "block_contents": "self-service ARR cycle helper:\n delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_migration_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_ss_migration_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_migration_mrr", "block_contents": "self-service ARR cycle helper:\nMRR that moved into and out of the segment."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_migration_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_ss_migration_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_migration_saas_mrr", "block_contents": "self-service ARR cycle helper:\nSaaS MRR that moved into and out of the segment."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_migration_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_ss_migration_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_migration_usage_mrr", "block_contents": "self-service ARR cycle helper:\nUsage MRR that moved into and out of the segment."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_negative_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_ss_negative_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_negative_overages_delta_usage_mrr", "block_contents": "self-service ARR cycle helper:\n negative_overages_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = UGC or Loyalty\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)\n 3. delta_usage_mrr < 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_overages_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_ss_overages_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_overages_delta_usage_mrr", "block_contents": "self-service ARR cycle helper:\n overages_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = UGC or Loyalty\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_subscriptions_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_ss_subscriptions_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_subscriptions_delta_usage_mrr", "block_contents": "self-service ARR cycle helper:\n subscriptions_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = Subscriptions\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_usage_products_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_ss_usage_products_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_ss_usage_products_delta_usage_mrr", "block_contents": "self-service ARR cycle helper:\n usage_products_delta_usage_mrr = delta_usage_mrr\n For records where:\n 1. product_family_group = SMS or Email or Subscriptions\n 2. closing_is_self_service = 1 OR (opening_is_self_service = 1 AND is_lost = 1)"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_subscriptions_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_subscriptions_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_subscriptions_delta_usage_mrr", "block_contents": "Only relevant to subscriptions.\nIt's basically the delta_usage_mrr, having it as seperate column will just make the cycle build more clean."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_mrr", "block_contents": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n upgrade_to_full_service_delta_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_pro_rated_mrr", "block_contents": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n upgrade_to_full_service_delta_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_revenue", "block_contents": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n upgrade_to_full_service_delta_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_saas_mrr", "block_contents": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n upgrade_to_full_service_delta_saas_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_usage_mrr", "block_contents": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n upgrade_to_full_service_delta_usage_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_usage_pro_rated_mrr", "block_contents": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n upgrade_to_full_service_delta_usage_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_delta_usage_revenue", "block_contents": "The change made during the upgrade.\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_delta_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n upgrade_to_full_service_delta_usage_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_mrr_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_mrr_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_mrr_movement", "block_contents": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_mrr_movement = opening_mrr\nELSE\n upgrade_to_full_service_mrr_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_pro_rated_mrr_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_pro_rated_mrr_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_pro_rated_mrr_movement", "block_contents": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_pro_rated_mrr_movement = opening_pro_rated_mrr\nELSE\n upgrade_to_full_service_pro_rated_mrr_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_revenue_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_revenue_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_revenue_movement", "block_contents": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_revenue_movement = opening_revenue\nELSE\n upgrade_to_full_service_revenue_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_saas_mrr_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_saas_mrr_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_saas_mrr_movement", "block_contents": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_saas_mrr_movement = opening_saas_mrr\nELSE\n upgrade_to_full_service_saas_mrr_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_usage_mrr_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_usage_mrr_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_usage_mrr_movement", "block_contents": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_usage_mrr_movement = opening_usage_mrr\nELSE\n upgrade_to_full_service_usage_mrr_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_usage_pro_rated_mrr_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_usage_pro_rated_mrr_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_usage_pro_rated_mrr_movement", "block_contents": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_usage_pro_rated_mrr_movement = opening_usage_pro_rated_mrr\nELSE\n upgrade_to_full_service_usage_pro_rated_mrr_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_usage_revenue_movement": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_usage_revenue_movement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_upgrade_to_full_service_usage_revenue_movement", "block_contents": "The amount that was classified as self-service last month and moved to full-service this month.\nIn order to close the cycle of a specific segment (full/self-service) we need to know the opening amount that was classified under the other segment.\nFormula:\nIF is_upgrade_to_full_service = 1:\n upgrade_to_full_service_usage_revenue_movement = opening_usage_revenue\nELSE\n upgrade_to_full_service_usage_revenue_movement = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_usage_products_delta_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_usage_products_delta_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_usage_products_delta_usage_mrr", "block_contents": "Only relevant to SMS, Email & Subscriptions. \nIt's basically the delta_usage_mrr, having it as seperate column will just make the cycle build more clean."}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_winback_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_mrr", "block_contents": "IF is_winback = 1:\n winback_mrr = delta_mrr (closing_mrr-opening_mrr)\nELSE\n winback_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_winback_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_pro_rated_mrr", "block_contents": "IF is_winback = 1:\n winback_pro_rated_mrr = delta_pro_rated_mrr (closing_pro_rated_mrr-opening_pro_rated_mrr)\nELSE\n winback_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_winback_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_revenue", "block_contents": "IF is_winback = 1:\n winback_revenue = delta_revenue (closing_revenue-opening_revenue)\nELSE\n winback_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_saas_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_winback_saas_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_saas_mrr", "block_contents": "IF is_winback = 1:\n winback_saas_mrr = delta_saas_mrr (closing_saas_mrr-opening_saas_mrr)\nELSE\n winback_saas_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_usage_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_winback_usage_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_usage_mrr", "block_contents": "IF is_winback = 1:\n winback_usage_mrr = delta_usage_mrr (closing_usage_mrr-opening_usage_mrr)\nELSE\n winback_usage_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_usage_pro_rated_mrr": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_winback_usage_pro_rated_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_usage_pro_rated_mrr", "block_contents": "IF is_winback = 1:\n winback_usage_pro_rated_mrr = delta_usage_pro_rated_mrr (closing_usage_pro_rated_mrr-opening_usage_pro_rated_mrr)\nELSE\n winback_usage_pro_rated_mrr = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_usage_revenue": {"name": "analytics___finance__organization_product_revenue_metrics_monthly_winback_usage_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_metrics_monthly/analytics___finance__organization_product_revenue_metrics_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_metrics_monthly_winback_usage_revenue", "block_contents": "IF is_winback = 1:\n winback_usage_revenue = delta_usage_revenue (closing_usage_revenue-opening_usage_revenue)\nELSE\n winback_usage_revenue = 0"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly": {"name": "analytics___finance__organization_product_revenue_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly", "block_contents": "PK [month, organization_key, product_family_group] OR [organization_product_month_id]\n\nThis table stores monthly revenue data related to organizations and their products.\n\nIt includes various metrics and indicators to analyze revenue trends.\n\nThe general table structure is as follows:\n\n 1. opening state - the state at the begining of the month (end of previous month) \n 2. closing state - the state at the end of the month \n 3. within month state - for organizations that subscribed to a product and churned in the same month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_adjusted_revenue_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_adjusted_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_adjusted_revenue_in_usd", "block_contents": "adjusted_revenue = SaaS_adjusted_revenue + Usage_adjusted_revenue\n 1. SaaS_adjusted_revenue = SaaS revenue X number of days subscribed\n 2. Usage_adjusted_revenue = usage_revenue"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_annual_billing": {"name": "analytics___finance__organization_product_revenue_monthly_closing_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_annual_billing", "block_contents": "Indicates if the plan was billed annually at the end of the month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_full_service": {"name": "analytics___finance__organization_product_revenue_monthly_closing_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_full_service", "block_contents": "Indicates if the plan was full-service at the end of the month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_full_service_organization": {"name": "analytics___finance__organization_product_revenue_monthly_closing_is_full_service_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_full_service_organization", "block_contents": "Indicates if the organization had at least one full-service product at the end of the month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_paid_product": {"name": "analytics___finance__organization_product_revenue_monthly_closing_is_paid_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_paid_product", "block_contents": "Indicates if the organization paid for the specific product at the end of the month.\n\nIF(closing_revenue_for_cohorts > 0,1,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_paying_organization": {"name": "analytics___finance__organization_product_revenue_monthly_closing_is_paying_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_paying_organization", "block_contents": "Indicates if the organization paid for at least one product at the end of the month.\n\nIF(closing_organization_revenue_for_cohorts > 0,1,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_self_service": {"name": "analytics___finance__organization_product_revenue_monthly_closing_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_self_service", "block_contents": "Indicates if the plan was self-service at the end of the month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_self_service_organization": {"name": "analytics___finance__organization_product_revenue_monthly_closing_is_self_service_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_is_self_service_organization", "block_contents": "Indicates if the organization had no full-service product and at least one self-service product at the end of the month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_mrr_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_closing_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_mrr_in_usd", "block_contents": "The Monthly Recurring Revenue (MRR) at the end of the month in USD.\n\nContains two types:\n\n 1. SaaS MRR - for:\n\n 1.1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 1.2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)\n\n 2. Usage MRR - for:\n\n 2.1 Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2.2 ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n\n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_organization_revenue_for_cohorts": {"name": "analytics___finance__organization_product_revenue_monthly_closing_organization_revenue_for_cohorts", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_organization_revenue_for_cohorts", "block_contents": "SUM of all the products revenue under the organization"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_plan_group": {"name": "analytics___finance__organization_product_revenue_monthly_closing_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_plan_group", "block_contents": "The group of the closing plan.\n\nFor example, the group of both \"Reviews Growth 50\" and \"Reviews Growth 100\" is \"Growth\"."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_plan_name": {"name": "analytics___finance__organization_product_revenue_monthly_closing_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_plan_name", "block_contents": "The name of the plan at the end of the month.\n\nCould be an organization have more than one plan but in order to keep the granularity and simplify things, we chose the higher plan in those cases."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_pro_rated_mrr_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_closing_pro_rated_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_pro_rated_mrr_in_usd", "block_contents": "The pro-rated Monthly Recurring Revenue (MRR) at the end of the month in USD.\n\nContains two types:\n\n 1. SaaS MRR (same as the regular MRR) - for:\n\n 1.1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 1.2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)\n\n 2. Usage MRR - for:\n\n 2.1 Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2.2 ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_revenue_for_cohorts": {"name": "analytics___finance__organization_product_revenue_monthly_closing_revenue_for_cohorts", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_revenue_for_cohorts", "block_contents": "In order to determine the paid cohorts we are using different revenue types for different products:\n\n 1. Loyalty & UGC - we are using only the SaaS revenue, since customer can't be paying customer for these products w/o SaaS fees.\n\n 2. SMS, Email & Subscriptions - we are using the total revenue (SaaS+usage), since customer can be paying customer for these products w/o SaaS fees."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_revenue_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_closing_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_revenue_in_usd", "block_contents": "closing_revenue = closing_usage_revenue + closing_saas_MRR"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_saas_mrr_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_closing_saas_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_saas_mrr_in_usd", "block_contents": "Only the SaaS component of the MRR at the end of the month in USD.\n\n SaaS MRR - for:\n\n 1 Self Service - the MRR is baisically the monthly SaaS revenue.\n\n 2 Full Service - We are factoring in free months, so that, if a customer is paying $12k for 12 months contract, and got 2 free months (actual duration of 14 months) then the MRR will be:\n\n MRR = $12K/(12+2) = $857 \n\n The MRR is not being updated retroactively so that, if a customer is paying $12k for 12 months contract starting Jan 23, and got 2 free months during March 23,\n\n the MRR of Jan and Feb will remain $1k = $12k/12 and from March the MRR will decrease to $875 = $12K/(12+2)"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_usage_mrr_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_closing_usage_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_closing_usage_mrr_in_usd", "block_contents": ""}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_dwh_updated_at": {"name": "analytics___finance__organization_product_revenue_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_dwh_updated_at", "block_contents": "The timestamp indicating when the record was last updated in the data warehouse."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_email": {"name": "analytics___finance__organization_product_revenue_monthly_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_email", "block_contents": "Indicates if the record's product is Email."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_loyalty": {"name": "analytics___finance__organization_product_revenue_monthly_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_loyalty", "block_contents": "Indicates if the record's product is Loyalty."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_saas_source": {"name": "analytics___finance__organization_product_revenue_monthly_is_saas_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_saas_source", "block_contents": "Indicates if revenue data is sourced from SaaS."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_sms": {"name": "analytics___finance__organization_product_revenue_monthly_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_sms", "block_contents": "Indicates if the record's product is SMS."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_staggered_subscription": {"name": "analytics___finance__organization_product_revenue_monthly_is_staggered_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_staggered_subscription", "block_contents": "Indicates if the subscription is staggered (different start dates for different products under the same subscription)."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_subscriptions": {"name": "analytics___finance__organization_product_revenue_monthly_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_subscriptions", "block_contents": "Indicates if the record's product is Subscriptions."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_terminated_subscription_within_first_month": {"name": "analytics___finance__organization_product_revenue_monthly_is_terminated_subscription_within_first_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_terminated_subscription_within_first_month", "block_contents": "Indicates if the subscription was terminated within the first month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_ugc": {"name": "analytics___finance__organization_product_revenue_monthly_is_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_ugc", "block_contents": "Indicates if the record's product is UGC."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_usage_source": {"name": "analytics___finance__organization_product_revenue_monthly_is_usage_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_is_usage_source", "block_contents": "Indicates if revenue data is sourced from usage."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_month": {"name": "analytics___finance__organization_product_revenue_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_month", "block_contents": "PK 1/3\n\nThe month associated with the revenue data."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_annual_billing": {"name": "analytics___finance__organization_product_revenue_monthly_opening_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_annual_billing", "block_contents": "Indicates if the plan was billed annually at the beginning of the month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_full_service": {"name": "analytics___finance__organization_product_revenue_monthly_opening_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_full_service", "block_contents": "Indicates if the plan was full-service at the beginning of the month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_full_service_organization": {"name": "analytics___finance__organization_product_revenue_monthly_opening_is_full_service_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_full_service_organization", "block_contents": "Indicates if the organization had at least one full-service product at the end of previous month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_paid_product": {"name": "analytics___finance__organization_product_revenue_monthly_opening_is_paid_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_paid_product", "block_contents": "Indicates if the organization is considered as paying customer for the specific product at the end of the previous month.\n\nIF(opening_revenue_for_cohorts > 0,1,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_paying_organization": {"name": "analytics___finance__organization_product_revenue_monthly_opening_is_paying_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_paying_organization", "block_contents": "Indicates if the organization paid for at least one product at the end of previous month.\n\nIF(opening_organization_revenue_for_cohorts > 0,1,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_self_service": {"name": "analytics___finance__organization_product_revenue_monthly_opening_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_self_service", "block_contents": "Indicates if the plan was self-service at the beginning of the month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_self_service_organization": {"name": "analytics___finance__organization_product_revenue_monthly_opening_is_self_service_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_is_self_service_organization", "block_contents": "Indicates if the organization had no full-service product and at least one self-service product at the end of previous month."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_mrr_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_opening_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_mrr_in_usd", "block_contents": "The Monthly Recurring Revenue (MRR) at the beginning of the month in USD.\n\nFor more info go to the closing_mrr_in_usd description"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_organization_revenue_for_cohorts": {"name": "analytics___finance__organization_product_revenue_monthly_opening_organization_revenue_for_cohorts", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_organization_revenue_for_cohorts", "block_contents": "Indicates if the organization paid for at least one product at the end of previous month.\n\nIF(opening_organization_revenue_for_cohorts > 0,1,0)"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_plan_group": {"name": "analytics___finance__organization_product_revenue_monthly_opening_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_plan_group", "block_contents": "The group of the opening plan.\n\nFor example, the group of both \"Reviews Growth 50\" and \"Reviews Growth 100\" is \"Growth\"."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_plan_name": {"name": "analytics___finance__organization_product_revenue_monthly_opening_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_plan_name", "block_contents": "The name of the plan at the beginning of the month.\n\nCould be an organization have more than one plan but in order to keep the granularity and simplify things, we chose the higher plan in those cases."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_pro_rated_mrr_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_opening_pro_rated_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_pro_rated_mrr_in_usd", "block_contents": "The pro-rated Monthly Recurring Revenue (MRR) at the beginning of the month in USD.\n\nFor more info go to the closing_pro_rated_mrr_in_usd"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_revenue_for_cohorts": {"name": "analytics___finance__organization_product_revenue_monthly_opening_revenue_for_cohorts", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_revenue_for_cohorts", "block_contents": "In order to determine the paid cohorts we are using different revenue types for different products:\n\n 1. Loyalty & UGC - we are using only the SaaS revenue, since customer can't be paying customer for these products w/o SaaS fees.\n\n 2. SMS, Email & Subscriptions - we are using the total revenue (SaaS+usage), since customer can be paying customer for these products w/o SaaS fees."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_revenue_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_opening_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_revenue_in_usd", "block_contents": "opening_revenue = opening_usage_revenue + opening_saas_MRR"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_saas_mrr_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_opening_saas_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_saas_mrr_in_usd", "block_contents": "Only the SaaS component of the MRR at the beginning of the month in USD.\n\nFor more info go to the closing_saas_mrr_in_usd"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_usage_mrr_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_opening_usage_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_opening_usage_mrr_in_usd", "block_contents": ""}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_cohort_number": {"name": "analytics___finance__organization_product_revenue_monthly_organization_cohort_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_cohort_number", "block_contents": "The paid cohort number of the organization (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the organization.\n * First month gets 0."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_key": {"name": "analytics___finance__organization_product_revenue_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_key", "block_contents": "PK 2/3\n\nThe unique identifier for each organization."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_month_number_since_current_cohort": {"name": "analytics___finance__organization_product_revenue_monthly_organization_month_number_since_current_cohort", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_month_number_since_current_cohort", "block_contents": "The number of months since the current organization paid cohort started (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the organization.\n * First month gets 0."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_month_number_since_first_cohort": {"name": "analytics___finance__organization_product_revenue_monthly_organization_month_number_since_first_cohort", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_month_number_since_first_cohort", "block_contents": "The number of months since the first organization paid cohort started (based on closing_revenue_for_cohorts).\n * First month gets 0."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_months_since_last_paid_month": {"name": "analytics___finance__organization_product_revenue_monthly_organization_months_since_last_paid_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_months_since_last_paid_month", "block_contents": "Number of months since last paid month (on organization level), based on closing_revenue_for_cohorts.\n 1. For first ever paid month OR months w/o closing_revenue_for_cohorts the value will be NULL\n 2. For new cohort's first month the value will be greater than 1 and will tell us how many months passed since the previous cohort ended."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_months_since_last_paying_month": {"name": "analytics___finance__organization_product_revenue_monthly_organization_months_since_last_paying_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_months_since_last_paying_month", "block_contents": ""}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_product_month_id": {"name": "analytics___finance__organization_product_revenue_monthly_organization_product_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_organization_product_month_id", "block_contents": "ID of the combination: [month, organization_key, product_family_group]"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_cohort_number": {"name": "analytics___finance__organization_product_revenue_monthly_product_cohort_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_cohort_number", "block_contents": "The paid cohort number of the product (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the product.\n * First month gets 0."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_family_group": {"name": "analytics___finance__organization_product_revenue_monthly_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_family_group", "block_contents": "PK 3/3\n\nContains 5 distinct values:\n 1. UGC (Including Reviews, VMS, Insights)\n 2. Loyalty\n 3. SMS\n 4. Email\n 5. Subscriptions"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_first_paid_month": {"name": "analytics___finance__organization_product_revenue_monthly_product_first_paid_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_first_paid_month", "block_contents": "The first ever paid month for the specific organization and product_family_group"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_month_number_since_current_cohort": {"name": "analytics___finance__organization_product_revenue_monthly_product_month_number_since_current_cohort", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_month_number_since_current_cohort", "block_contents": "The number of months since the current product paid cohort started (based on closing_revenue_for_cohorts).\n * NULL if there is no revenue for the product.\n * First month gets 0."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_month_number_since_first_cohort": {"name": "analytics___finance__organization_product_revenue_monthly_product_month_number_since_first_cohort", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_month_number_since_first_cohort", "block_contents": "The number of months since the first product paid cohort started (based on closing_revenue_for_cohorts).\n * First month gets 0."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_months_since_last_paid_month": {"name": "analytics___finance__organization_product_revenue_monthly_product_months_since_last_paid_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_product_months_since_last_paid_month", "block_contents": "Number of months since last paid month (on product level), based on closing_revenue_for_cohorts.\n 1. For first ever paid month OR months w/o closing_revenue_for_cohorts the value will be NULL\n 2. For new cohort's first month the value will be greater than 1 and will tell us how many months passed since the previous cohort ended."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_saas_adjusted_revenue_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_saas_adjusted_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_saas_adjusted_revenue_in_usd", "block_contents": "SaaS_adjusted_revenue = SaaS revenue X number of days subscribed"}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_saas_is_shopify_billing_source": {"name": "analytics___finance__organization_product_revenue_monthly_saas_is_shopify_billing_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_saas_is_shopify_billing_source", "block_contents": "Indicates if SaaS revenue data is sourced from Shopify billing."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_saas_is_zuora_source": {"name": "analytics___finance__organization_product_revenue_monthly_saas_is_zuora_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_saas_is_zuora_source", "block_contents": "Indicates if SaaS revenue data is sourced from Zuora."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_saas_shopify_charge_id_array": {"name": "analytics___finance__organization_product_revenue_monthly_saas_shopify_charge_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_saas_shopify_charge_id_array", "block_contents": "An array containing SaaS Shopify charge IDs associated with the revenue data."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_sf_account_id_array": {"name": "analytics___finance__organization_product_revenue_monthly_sf_account_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_sf_account_id_array", "block_contents": "An array containing Salesforce account IDs associated with the revenue data."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_sf_opportunity_id_array": {"name": "analytics___finance__organization_product_revenue_monthly_sf_opportunity_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_sf_opportunity_id_array", "block_contents": "An array containing Salesforce opportunity IDs associated with the revenue data."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_usage_is_chargify_source": {"name": "analytics___finance__organization_product_revenue_monthly_usage_is_chargify_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_usage_is_chargify_source", "block_contents": "Indicates if usage revenue data is sourced from Chargify."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_usage_is_communication_source": {"name": "analytics___finance__organization_product_revenue_monthly_usage_is_communication_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_usage_is_communication_source", "block_contents": "Indicates if usage revenue data is sourced from communication."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_usage_is_shopify_billing_source": {"name": "analytics___finance__organization_product_revenue_monthly_usage_is_shopify_billing_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_usage_is_shopify_billing_source", "block_contents": "Indicates if usage revenue data is sourced from Shopify billing."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_usage_is_zuora_source": {"name": "analytics___finance__organization_product_revenue_monthly_usage_is_zuora_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_usage_is_zuora_source", "block_contents": "Indicates if usage revenue data is sourced from Zuora."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_is_annual_billing": {"name": "analytics___finance__organization_product_revenue_monthly_within_month_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_is_annual_billing", "block_contents": "Indicates if the plan was billed annually within the month (for organizations that subscribed to a product and churned in the same month)."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_is_full_service": {"name": "analytics___finance__organization_product_revenue_monthly_within_month_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_is_full_service", "block_contents": "Indicates if the plan was full-service within the month (for organizations that subscribed to a product and churned in the same month)."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_is_self_service": {"name": "analytics___finance__organization_product_revenue_monthly_within_month_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_is_self_service", "block_contents": "Indicates if the plan was self-service within the month (for organizations that subscribed to a product and churned in the same month)."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_mrr_in_usd": {"name": "analytics___finance__organization_product_revenue_monthly_within_month_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_mrr_in_usd", "block_contents": "The MRR within the month in USD (for organizations that subscribed to a product and churned in the same month).\n\n* Only SaaS MRR. if there is usage MRR it will be under closing MRR."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_plan_group": {"name": "analytics___finance__organization_product_revenue_monthly_within_month_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_plan_group", "block_contents": "The group of the within month plan.\n\nFor example, the group of both \"Reviews Growth 50\" and \"Reviews Growth 100\" is \"Growth\"."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_plan_name": {"name": "analytics___finance__organization_product_revenue_monthly_within_month_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_within_month_plan_name", "block_contents": "The name of the plan within the month (for organizations that subscribed to a product and churned in the same month).\n\nCould be an organization have more than one plan but in order to keep the granularity and simplify things, we chose the higher plan in those cases."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_zuora_account_id_array": {"name": "analytics___finance__organization_product_revenue_monthly_zuora_account_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_zuora_account_id_array", "block_contents": "An array containing Zuora account IDs associated with the revenue data."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_zuora_subscription_name_and_version_array": {"name": "analytics___finance__organization_product_revenue_monthly_zuora_subscription_name_and_version_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly/analytics___finance__organization_product_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_zuora_subscription_name_and_version_array", "block_contents": "An array containing Zuora subscription names and versions associated with the revenue data."}, "doc.yoda.analytics___finance__organization_product_revenue_monthly_lean": {"name": "analytics___finance__organization_product_revenue_monthly_lean", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_revenue_monthly_lean/analytics___finance__organization_product_revenue_monthly_lean.md", "unique_id": "doc.yoda.analytics___finance__organization_product_revenue_monthly_lean", "block_contents": "PK [month, organization_key, product_family_group] OR [organization_product_month_id]\n\nThis table stores monthly revenue data related to organizations and their products,\nand is a lean version of organization_product_revenue_monthly.\nIt includes various metrics and indicators to analyze revenue trends.\nThe general table structure is based on the closing state - the state at the end of the month."}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly": {"name": "analytics___finance__organization_product_usage_revenue_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly", "block_contents": "Modeled table of total monthly revenue (shopify_billing, zuora and communication) at organization and product level | PK and granularity: revenue_month, product_family, organization_key"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_additional_orders_cnt": {"name": "analytics___finance__organization_product_usage_revenue_monthly_additional_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_additional_orders_cnt", "block_contents": "*currently relevant only for shopify*\n\nThe additional orders that exceeded the store plan limit.\n\nThis is the number of orders the store is paying for.\n\nRelevant only for Loyalty and Reviews (UGC)."}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_chargify_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_chargify_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_chargify_usage_revenue_in_usd", "block_contents": "usage revenue in usd from chargify"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_is_free": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_is_free", "block_contents": "Indicates if the plan is free (of SaaS fees) plan or not"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_is_full_service": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_is_full_service", "block_contents": "Indicates if the plan is full service plan or not"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_is_self_service": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_is_self_service", "block_contents": "Indicates if the plan is self service plan or not"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_l12m_avg_usage_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_l12m_avg_usage_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_l12m_avg_usage_in_usd", "block_contents": "Last 12 months average of closing_usage_in_usd"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_l12m_avg_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_l12m_avg_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_l12m_avg_usage_revenue_in_usd", "block_contents": "The last 12 months usage revenue average.\n\nFormula: SUM(usage revenue of L12M)/12\n\nFor example, if a customer generated only $100 in Jan and $200 in Feb, the L12M avg will be (100+20)/12 = $10"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_l12m_avg_utilized_free_credits_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_l12m_avg_utilized_free_credits_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_l12m_avg_utilized_free_credits_in_usd", "block_contents": "Last 12 months average of closing_utilized_free_credits_in_usd"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_plan_name": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_plan_name", "block_contents": "The current plan name"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_pro_rated_l12m_avg_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_pro_rated_l12m_avg_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_pro_rated_l12m_avg_usage_revenue_in_usd", "block_contents": "The pro-rated last 12 months usage revenue average.\n\nFormula: IF the usage revenue is 0 or null THEN 0 \n\n ELSE SUM(usage revenue of L12M)/MONTHS_BETWEEN(the specific month and earliest paying month in the last 12 months)\n\nFor example, if a customer generated only $100 in Jan and $200 in Feb, the L12M avg will be (100+20)/2 = $60"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_usage_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_usage_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_usage_in_usd", "block_contents": "The usage at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage amount w/o takeing into account free credits."}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_usage_mrr_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_usage_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_usage_mrr_in_usd", "block_contents": "Only the Usage component of the MRR at the end of the month in USD. Usage MRR - for:\n \n 1. Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n \n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_usage_pro_rated_mrr_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_usage_pro_rated_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_usage_pro_rated_mrr_in_usd", "block_contents": "Only the Usage component of the pro-rated MRR at the end of the month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_usage_revenue_in_usd", "block_contents": "The usage-based revenue at the end of the month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_utilized_free_credits_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_closing_utilized_free_credits_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_closing_utilized_free_credits_in_usd", "block_contents": "Estimated utilized free credits at the end of month (relevant only to SMS & Email).\n\n utilized_free_credits = usage_revenue-usage"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_communication_free_credit_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_communication_free_credit_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_communication_free_credit_in_usd", "block_contents": "usage free credit in usd from communication"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_communication_usage_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_communication_usage_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_communication_usage_in_usd", "block_contents": "usage revenue before free credit in usd from communication"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_communication_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_communication_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_communication_usage_revenue_in_usd", "block_contents": "usage revenue in usd from communication"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_dwh_updated_at": {"name": "analytics___finance__organization_product_usage_revenue_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_is_chargify_source": {"name": "analytics___finance__organization_product_usage_revenue_monthly_is_chargify_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_is_chargify_source", "block_contents": "Indicates if the record is sourced in chargify"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_is_communication_source": {"name": "analytics___finance__organization_product_usage_revenue_monthly_is_communication_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_is_communication_source", "block_contents": "Indicates if the record is sourced in communication"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_is_exploded": {"name": "analytics___finance__organization_product_usage_revenue_monthly_is_exploded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_is_exploded", "block_contents": "Indicates if the record is exploded or not. (exploded means it's artificialy created in order to see the L12M avg for records w/o usage revenue)"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_is_shopify_billing_source": {"name": "analytics___finance__organization_product_usage_revenue_monthly_is_shopify_billing_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_is_shopify_billing_source", "block_contents": "Indicates if the record is sourced in Shopify billing"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_is_zuora_source": {"name": "analytics___finance__organization_product_usage_revenue_monthly_is_zuora_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_is_zuora_source", "block_contents": "Indicates if the record is sourced in Zuora"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_l12m_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_l12m_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_l12m_usage_revenue_in_usd", "block_contents": "The sum of usage revenue in the last 12 months"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_is_free": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_is_free", "block_contents": "Indicates if the plan was free (of SaaS fees) plan or not at the end of previous month"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_is_full_service": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_is_full_service", "block_contents": "Indicates if the plan was full service plan or not at the end of previous month"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_is_self_service": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_is_self_service", "block_contents": "Indicates if the plan was self service plan or not at the end of previous month"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_l12m_avg_usage_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_l12m_avg_usage_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_l12m_avg_usage_in_usd", "block_contents": "Last 12 months average of opening_usage_in_usd"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_l12m_avg_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_l12m_avg_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_l12m_avg_usage_revenue_in_usd", "block_contents": "The last 12 months usage revenue average.\n\nFormula: SUM(usage revenue of L12M)/12\n\nFor example, if a customer generated only $100 in Jan and $200 in Feb, the L12M avg will be (100+20)/12 = $10"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_l12m_avg_utilized_free_credits_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_l12m_avg_utilized_free_credits_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_l12m_avg_utilized_free_credits_in_usd", "block_contents": "Last 12 months average of opening_utilized_free_credits_in_usd"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_plan_name": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_plan_name", "block_contents": "the plan name at the end of previous month"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_pro_rated_l12m_avg_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_pro_rated_l12m_avg_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_pro_rated_l12m_avg_usage_revenue_in_usd", "block_contents": "The pro-rated last 12 months usage revenue average.\n\nFormula: IF the usage revenue is 0 or null THEN 0 \n\n ELSE SUM(usage revenue of L12M)/MONTHS_BETWEEN(the specific month and earliest paying month in the last 12 months)\n\nFor example, if a customer generated only $100 in Jan and $200 in Feb, the L12M avg will be (100+20)/2 = $60"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_usage_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_usage_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_usage_in_usd", "block_contents": "The usage at the end of previous month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage amount w/o takeing into account free credits."}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_usage_mrr_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_usage_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_usage_mrr_in_usd", "block_contents": "Only the Usage component of the MRR at the end of previous month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n important notes:\n\n 2.1 We are always deviding the sum of the L12M usage revenue by 12, regardless of the customer tenure and the current month usage revenue.\n\n It can cause missalignment between the usage revenue and usage MRR (usage revenue = 0 while usage MRR > 0).\n\n and under recognition of new customers (for example, if a customer spend $12k in his first month, the MRR will be $12k/12 = $1k)"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_usage_pro_rated_mrr_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_usage_pro_rated_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_usage_pro_rated_mrr_in_usd", "block_contents": "Only the Usage component of the pro-rated MRR at the end of previous month in USD. Usage MRR - for:\n\n 1. Subscriptions Usage MRR (same as the regular MRR) - we are basically taking the usage revenue since it's less prone to seasonality by nature.\n\n 2. ALL the rest Usage MRR (different than the regular MRR) - we are smoothing the usage revenue using last 12 months moving average since it's prone to seasonality.\n\n Unlike the regular MRR:\n\n 2.1 If the usage revenue = 0 then the usage MRR will also be equal to 0 (even if there was revenue in the last 12 months)\n\n 2.2 If we have less than 12 months, the MA will use the months we have\n\n The above two diffrances makes the pro-rated MRR more aligned to revenue and a better fit (than the regular usage MRR) for analysis and capturing business trends"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_usage_revenue_in_usd", "block_contents": "The usage-based revenue at the end of previous month in USD.\n\n 1. Loyalty & UGC - overages amount (only relevat to self-service)\n\n 2. Subscriptions - the rev-share on their GMV (generated using our product)\n\n 3. SMS & Email - the usage revenue based on our revenue recognition model that also takes into account free credits.\n\nIn the link below you can find an illustration of the SMS & Email usage recognition model:\nhttps://docs.google.com/spreadsheets/d/1kH-AzNwzN_PQg9tIoxaWFio7Sk89f_hWT5lmgZ1YSmw/edit#gid=39347191"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_utilized_free_credits_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_opening_utilized_free_credits_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_opening_utilized_free_credits_in_usd", "block_contents": "Estimated utilized free credits at the end of previous month (relevant only to SMS & Email).\n\n utilized_free_credits = usage_revenue-usage"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_organization_key": {"name": "analytics___finance__organization_product_usage_revenue_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_organization_key", "block_contents": "yotpo organization unique key - primary key 3/3"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id": {"name": "analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id", "block_contents": "TABLE PK: combination of month|organization_key|product_family"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_pro_rated_l12m_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_pro_rated_l12m_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_pro_rated_l12m_usage_revenue_in_usd", "block_contents": "The pro-rated last 12 months usage revenue.\n\nFormula: IF the usage revenue is 0 or null THEN 0 \n\n ELSE SUM(usage revenue of L12M)"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_pro_rated_months_in_range_cnt": {"name": "analytics___finance__organization_product_usage_revenue_monthly_pro_rated_months_in_range_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_pro_rated_months_in_range_cnt", "block_contents": "The amount of months between the specific month and earliest paying month in the last 12 months"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_product_family": {"name": "analytics___finance__organization_product_usage_revenue_monthly_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_product_family", "block_contents": "product family: UGC, Loyalty, SMS, Subscriptions - primary key 2/3"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_revenue_month": {"name": "analytics___finance__organization_product_usage_revenue_monthly_revenue_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_revenue_month", "block_contents": "revenue month - primary key 1/3"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_shopify_billing_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_shopify_billing_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_shopify_billing_usage_revenue_in_usd", "block_contents": "usage revenue in usd from shopify billing"}, "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_zuora_usage_revenue_in_usd": {"name": "analytics___finance__organization_product_usage_revenue_monthly_zuora_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_product_usage_revenue_monthly/analytics___finance__organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_product_usage_revenue_monthly_zuora_usage_revenue_in_usd", "block_contents": "usage revenue in usd from zuora"}, "doc.yoda.analytics___finance__organization_revenue_monthly": {"name": "analytics___finance__organization_revenue_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly", "block_contents": "PK [month, organization_key] OR [organization_month_id]\n\nThis table stores monthly revenue data on organization level aggregated across all products.\nIt includes various metrics and indicators to analyze revenue trends.\nThe general table structure is as follows:\n 1. opening state - the state at the begining of the month (end of previous month) \n 2. closing state - the state at the end of the month"}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_annual_billing": {"name": "analytics___finance__organization_revenue_monthly_closing_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_annual_billing", "block_contents": "MAX is_annual_billing across all plans at the end of the month."}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_full_service": {"name": "analytics___finance__organization_revenue_monthly_closing_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_full_service", "block_contents": "MAX is_full_service across all plans at the end of the month."}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paid_email": {"name": "analytics___finance__organization_revenue_monthly_closing_is_paid_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paid_email", "block_contents": "Indicates if the organization has paid for Email this month.\n\nIn more technical terms, closing_is_paid_email = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Email'"}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paid_loyalty": {"name": "analytics___finance__organization_revenue_monthly_closing_is_paid_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paid_loyalty", "block_contents": "Indicates if the organization has paid for Loyalty this month.\n\nIn more technical terms, closing_is_paid_loyalty = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Loyalty'"}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paid_sms": {"name": "analytics___finance__organization_revenue_monthly_closing_is_paid_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paid_sms", "block_contents": "Indicates if the organization has paid for SMS this month.\n\nIn more technical terms, closing_is_paid_sms = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'SMS'"}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paid_subscriptions": {"name": "analytics___finance__organization_revenue_monthly_closing_is_paid_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paid_subscriptions", "block_contents": "Indicates if the organization has paid for Subscriptions this month.\n\nIn more technical terms, closing_is_paid_subscriptions = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Subscriptions'"}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paid_ugc": {"name": "analytics___finance__organization_revenue_monthly_closing_is_paid_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paid_ugc", "block_contents": "Indicates if the organization has paid for UGC this month.\n\nIn more technical terms, closing_is_paid_ugc = 1 if:\n 1. closing_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'UGC'"}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paying_customer": {"name": "analytics___finance__organization_revenue_monthly_closing_is_paying_customer", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_paying_customer", "block_contents": "Indicates if the organization is considered as paying customer at the end of the month.\n\nIF(closing_revenue_for_cohorts > 0,1,0)"}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_self_service": {"name": "analytics___finance__organization_revenue_monthly_closing_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_is_self_service", "block_contents": "MIN is_self_service across all plans at the end of the month."}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_number_of_paid_product": {"name": "analytics___finance__organization_revenue_monthly_closing_number_of_paid_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_number_of_paid_product", "block_contents": "Counting the number of products the organization has paid for this month.\nproducts that had closing_revenue_for_cohorts > 0"}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_plan_group_list": {"name": "analytics___finance__organization_revenue_monthly_closing_plan_group_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_plan_group_list", "block_contents": "list of closing_plan_group"}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_plan_name_list": {"name": "analytics___finance__organization_revenue_monthly_closing_plan_name_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_plan_name_list", "block_contents": "list of closing_plan_names"}, "doc.yoda.analytics___finance__organization_revenue_monthly_closing_product_family_group_list": {"name": "analytics___finance__organization_revenue_monthly_closing_product_family_group_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_closing_product_family_group_list", "block_contents": "list of organization's paid products at the end of month.\nproducts that had closing_revenue_for_cohorts > 0"}, "doc.yoda.analytics___finance__organization_revenue_monthly_dwh_updated_at": {"name": "analytics___finance__organization_revenue_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_dwh_updated_at", "block_contents": "table update timestamp"}, "doc.yoda.analytics___finance__organization_revenue_monthly_is_lost_after_won": {"name": "analytics___finance__organization_revenue_monthly_is_lost_after_won", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_is_lost_after_won", "block_contents": "MIN is_lost_after_won across all products"}, "doc.yoda.analytics___finance__organization_revenue_monthly_is_staggered_subscription": {"name": "analytics___finance__organization_revenue_monthly_is_staggered_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_is_staggered_subscription", "block_contents": "MAX is_staggered_subscription across all products"}, "doc.yoda.analytics___finance__organization_revenue_monthly_max_subscription_end_date": {"name": "analytics___finance__organization_revenue_monthly_max_subscription_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_max_subscription_end_date", "block_contents": "MAX subscription end date across all products"}, "doc.yoda.analytics___finance__organization_revenue_monthly_min_subscription_start_date": {"name": "analytics___finance__organization_revenue_monthly_min_subscription_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_min_subscription_start_date", "block_contents": "MIN subscription start date across all products"}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_annual_billing": {"name": "analytics___finance__organization_revenue_monthly_opening_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_annual_billing", "block_contents": "MAX is_annual_billing across all plans at the beginning of the month."}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_full_service": {"name": "analytics___finance__organization_revenue_monthly_opening_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_full_service", "block_contents": "MAX is_full_service across all plans at the beginning of the month."}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paid_email": {"name": "analytics___finance__organization_revenue_monthly_opening_is_paid_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paid_email", "block_contents": "Indicates if the organization has paid for Email last month.\n\nIn more technical terms, opening_is_paid_email = 1 if:\n 1. opening_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Email'"}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paid_loyalty": {"name": "analytics___finance__organization_revenue_monthly_opening_is_paid_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paid_loyalty", "block_contents": "Indicates if the organization has paid for Loyalty last month.\n\nIn more technical terms, opening_is_paid_loyalty = 1 if:\n 1. opening_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Loyalty'"}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paid_sms": {"name": "analytics___finance__organization_revenue_monthly_opening_is_paid_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paid_sms", "block_contents": "Indicates if the organization has paid for SMS last month.\n\nIn more technical terms, opening_is_paid_sms = 1 if:\n 1. opening_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'SMS'"}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paid_subscriptions": {"name": "analytics___finance__organization_revenue_monthly_opening_is_paid_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paid_subscriptions", "block_contents": "Indicates if the organization has paid for Subscriptions last month.\n\nIn more technical terms, opening_is_paid_subscriptions = 1 if:\n 1. opening_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'Subscriptions'"}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paid_ugc": {"name": "analytics___finance__organization_revenue_monthly_opening_is_paid_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paid_ugc", "block_contents": "Indicates if the organization has paid for UGC last month.\n\nIn more technical terms, opening_is_paid_ugc = 1 if:\n 1. opening_revenue_for_cohorts > 0\n AND\n 2. product_family_group = 'UGC'"}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paying_customer": {"name": "analytics___finance__organization_revenue_monthly_opening_is_paying_customer", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_paying_customer", "block_contents": "Indicates if the organization is considered as paying customer at the end of the previous month.\n\nIF(opening_revenue_for_cohorts > 0,1,0)"}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_self_service": {"name": "analytics___finance__organization_revenue_monthly_opening_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_is_self_service", "block_contents": "MIN is_self_service across all plans at the beginning of the month."}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_number_of_paid_product": {"name": "analytics___finance__organization_revenue_monthly_opening_number_of_paid_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_number_of_paid_product", "block_contents": "Counting the number of products the organization has paid for last month.\n\nproducts that had opening_revenue_for_cohorts > 0"}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_plan_group_list": {"name": "analytics___finance__organization_revenue_monthly_opening_plan_group_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_plan_group_list", "block_contents": "list of opening_plan_group"}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_plan_name_list": {"name": "analytics___finance__organization_revenue_monthly_opening_plan_name_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_plan_name_list", "block_contents": "list of opening_plan_name"}, "doc.yoda.analytics___finance__organization_revenue_monthly_opening_product_family_group_list": {"name": "analytics___finance__organization_revenue_monthly_opening_product_family_group_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_opening_product_family_group_list", "block_contents": "list of organization's paid products at the beginning of month.\nproducts that had opening_revenue_for_cohorts > 0"}, "doc.yoda.analytics___finance__organization_revenue_monthly_organization_month_id": {"name": "analytics___finance__organization_revenue_monthly_organization_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_organization_month_id", "block_contents": "ID of the combination: [month, organization_key]"}, "doc.yoda.analytics___finance__organization_revenue_monthly_organization_months_since_last_paid_month": {"name": "analytics___finance__organization_revenue_monthly_organization_months_since_last_paid_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__organization_revenue_monthly/analytics___finance__organization_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__organization_revenue_monthly_organization_months_since_last_paid_month", "block_contents": "Number of months since last paid month (on organization level), based on closing_revenue_for_cohorts.\n 1. For first ever paid month OR months w/o closing_revenue_for_cohorts the value will be NULL\n 2. For new cohort's first month the value will be greater than 1 and will tell us how many months passed since the previous cohort ended."}, "doc.yoda.analytics___finance__rate_plan_mrr_details": {"name": "analytics___finance__rate_plan_mrr_details", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details", "block_contents": "Aggregated TABLE of mrr per rateplan. Contains only is_deleted = 0.\nGranularity: subscription_name, subscription_id,product_id,rateplan_id,"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_account_id": {"name": "analytics___finance__rate_plan_mrr_details_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_account_id", "block_contents": "FK: zuora_account"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_actual_contract_duration": {"name": "analytics___finance__rate_plan_mrr_details_actual_contract_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_actual_contract_duration", "block_contents": "contract duration per subscription version"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_amendment_type": {"name": "analytics___finance__rate_plan_mrr_details_amendment_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_amendment_type", "block_contents": "Does not include \"RemoveProduct\""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_conversion_rate": {"name": "analytics___finance__rate_plan_mrr_details_conversion_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_conversion_rate", "block_contents": "conversion rate from salesforce_stg__mc_conversion_rate accourding to effective start date"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_csm_extension_months": {"name": "analytics___finance__rate_plan_mrr_details_csm_extension_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_csm_extension_months", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_currency": {"name": "analytics___finance__rate_plan_mrr_details_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_currency", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_discount_in_original_currency": {"name": "analytics___finance__rate_plan_mrr_details_discount_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_discount_in_original_currency", "block_contents": "discount_percentage * price_in_original_currency"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_discount_percentage": {"name": "analytics___finance__rate_plan_mrr_details_discount_percentage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_discount_percentage", "block_contents": "Discount on recurring charge in precentage"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_dwh_updated_at": {"name": "analytics___finance__rate_plan_mrr_details_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_effective_end_date": {"name": "analytics___finance__rate_plan_mrr_details_effective_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_effective_end_date", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_effective_start_date": {"name": "analytics___finance__rate_plan_mrr_details_effective_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_effective_start_date", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_end_of_contract_extension_month": {"name": "analytics___finance__rate_plan_mrr_details_end_of_contract_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_end_of_contract_extension_month", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_is_change_csm_extension_months": {"name": "analytics___finance__rate_plan_mrr_details_is_change_csm_extension_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_is_change_csm_extension_months", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_is_change_end_of_contract_extension_month": {"name": "analytics___finance__rate_plan_mrr_details_is_change_end_of_contract_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_is_change_end_of_contract_extension_month", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_is_change_term_type": {"name": "analytics___finance__rate_plan_mrr_details_is_change_term_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_is_change_term_type", "block_contents": "indicates if the currect subscription's version term type was changed. This heppens when an annual SS subscription is cancelled."}, "doc.yoda.analytics___finance__rate_plan_mrr_details_is_expired_subscription": {"name": "analytics___finance__rate_plan_mrr_details_is_expired_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_is_expired_subscription", "block_contents": "Indicates if the subscription is expired or not.\nExpaired subscription indicates late renewal"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_is_latest_version": {"name": "analytics___finance__rate_plan_mrr_details_is_latest_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_is_latest_version", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_is_provision_required": {"name": "analytics___finance__rate_plan_mrr_details_is_provision_required", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_is_provision_required", "block_contents": "is core product indicator"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_is_staggered_subscription": {"name": "analytics___finance__rate_plan_mrr_details_is_staggered_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_is_staggered_subscription", "block_contents": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_is_subscription_change_term_type": {"name": "analytics___finance__rate_plan_mrr_details_is_subscription_change_term_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_is_subscription_change_term_type", "block_contents": "indicates if the subscription had a term type change."}, "doc.yoda.analytics___finance__rate_plan_mrr_details_last_version_csm_extension_months": {"name": "analytics___finance__rate_plan_mrr_details_last_version_csm_extension_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_last_version_csm_extension_months", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_last_version_end_of_contract_extension_month": {"name": "analytics___finance__rate_plan_mrr_details_last_version_end_of_contract_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_last_version_end_of_contract_extension_month", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_mrr_in_original_currency": {"name": "analytics___finance__rate_plan_mrr_details_mrr_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_mrr_in_original_currency", "block_contents": "product monthly price * units in original currency"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_mrr_in_usd": {"name": "analytics___finance__rate_plan_mrr_details_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_mrr_in_usd", "block_contents": "product monthly (price * units) / (coverstion rate to USD)"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_next_effective_start_date_per_plan": {"name": "analytics___finance__rate_plan_mrr_details_next_effective_start_date_per_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_next_effective_start_date_per_plan", "block_contents": "effective_start_date of the next version partitioned by plan"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_next_from_date": {"name": "analytics___finance__rate_plan_mrr_details_next_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_next_from_date", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_next_from_date_per_product_family": {"name": "analytics___finance__rate_plan_mrr_details_next_from_date_per_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_next_from_date_per_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_next_from_date_per_product_id": {"name": "analytics___finance__rate_plan_mrr_details_next_from_date_per_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_next_from_date_per_product_id", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_organization_key": {"name": "analytics___finance__rate_plan_mrr_details_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_original_contract_duration": {"name": "analytics___finance__rate_plan_mrr_details_original_contract_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_original_contract_duration", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_plan_name": {"name": "analytics___finance__rate_plan_mrr_details_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_plan_name", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_price_after_discount_in_original_currency": {"name": "analytics___finance__rate_plan_mrr_details_price_after_discount_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_price_after_discount_in_original_currency", "block_contents": "price_in_original_currency * (100- discount_percentage)/100"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_price_in_original_currency": {"name": "analytics___finance__rate_plan_mrr_details_price_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_price_in_original_currency", "block_contents": "Price of recurring charge per unit (quantity) in original currency"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_product_family": {"name": "analytics___finance__rate_plan_mrr_details_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_product_id": {"name": "analytics___finance__rate_plan_mrr_details_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_product_id", "block_contents": "FK: zuora_product"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_product_rateplan_charge_id": {"name": "analytics___finance__rate_plan_mrr_details_product_rateplan_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_product_rateplan_charge_id", "block_contents": "FK: zuora_product_rateplan_charge"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_product_rateplan_id": {"name": "analytics___finance__rate_plan_mrr_details_product_rateplan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_product_rateplan_id", "block_contents": "FK: zuora_product_rateplan"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_provisioned_plan_name": {"name": "analytics___finance__rate_plan_mrr_details_provisioned_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_provisioned_plan_name", "block_contents": "FK: plan_name in analytics___platform__plan"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_rateplan_charge_id": {"name": "analytics___finance__rate_plan_mrr_details_rateplan_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_rateplan_charge_id", "block_contents": "FK: zuora_rateplan_charge"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_rateplan_charge_name": {"name": "analytics___finance__rate_plan_mrr_details_rateplan_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_rateplan_charge_name", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_rateplan_charge_tier_id": {"name": "analytics___finance__rate_plan_mrr_details_rateplan_charge_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_rateplan_charge_tier_id", "block_contents": "FK: zuora_rateplan_charge_tier"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_rateplan_id": {"name": "analytics___finance__rate_plan_mrr_details_rateplan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_rateplan_id", "block_contents": "FK: zuora_rateplan"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_rateplan_name": {"name": "analytics___finance__rate_plan_mrr_details_rateplan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_rateplan_name", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_sf_account_id": {"name": "analytics___finance__rate_plan_mrr_details_sf_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_sf_account_id", "block_contents": "FK: sf_account"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_sf_opportunity_id": {"name": "analytics___finance__rate_plan_mrr_details_sf_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_sf_opportunity_id", "block_contents": "FK: salesforce__opportunity"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_subscription_cancelled_at": {"name": "analytics___finance__rate_plan_mrr_details_subscription_cancelled_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_subscription_cancelled_at", "block_contents": "subscription cancelled_at"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_subscription_cancelled_date": {"name": "analytics___finance__rate_plan_mrr_details_subscription_cancelled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_subscription_cancelled_date", "block_contents": "subscription cancelled_date"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_subscription_id": {"name": "analytics___finance__rate_plan_mrr_details_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_subscription_id", "block_contents": "FK: zuora_subscription"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_subscription_name": {"name": "analytics___finance__rate_plan_mrr_details_subscription_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_subscription_name", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_subscription_status": {"name": "analytics___finance__rate_plan_mrr_details_subscription_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_subscription_status", "block_contents": "The subscription status from Zuora (Active/Cancelled/Expired)"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_term_type": {"name": "analytics___finance__rate_plan_mrr_details_term_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_term_type", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_termed_to_date": {"name": "analytics___finance__rate_plan_mrr_details_termed_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_termed_to_date", "block_contents": "Preperation for the over time model.\nThis field is only relevant for TERMED type subscriptions.\nFor:\n 1. latest versions:\n If the subscription got cancelled, the value will be the subscription cancelled date else it will be '2999-01-01'\n\n 2. earlier versions:\n 2.1 If the effective start date did not change between the version and the following version,\n the value will be equal to the effective start date (from date will be equal to to date causing the version to be irrelevant)\n 2.2 If the effective start date did change between the version and the following version,\n the value will be equal to the effective start date of the next version (allowing us to show the data of the version up until the start of the new version)"}, "doc.yoda.analytics___finance__rate_plan_mrr_details_version": {"name": "analytics___finance__rate_plan_mrr_details_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_version", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_version_created_at": {"name": "analytics___finance__rate_plan_mrr_details_version_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_version_created_at", "block_contents": ""}, "doc.yoda.analytics___finance__rate_plan_mrr_details_version_created_date": {"name": "analytics___finance__rate_plan_mrr_details_version_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__rate_plan_mrr_details/analytics___finance__rate_plan_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__rate_plan_mrr_details_version_created_date", "block_contents": ""}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time": {"name": "analytics___finance__sf_opportunity_free_month_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time", "block_contents": "This table shows the amount of free months that was given to an account under a specific opportunity over time.\nPK: {opportunity_id,\n field_name,\n from_date}\nThere are two kinds of free months:\n 1. CSM\n 2. Sales\nOpportunity can get free months from both CSM & Sales, only one of them or none at all,\neither way, every opportunity have at least one record for each type, if the opportunity was never assosiated with a type of free months,\nit will still get a record for that type with the value of zero."}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_created_by_sf_user_id": {"name": "analytics___finance__sf_opportunity_free_month_over_time_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_created_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_dwh_updated_at": {"name": "analytics___finance__sf_opportunity_free_month_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_event_type": {"name": "analytics___finance__sf_opportunity_free_month_over_time_event_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_event_type", "block_contents": "The type of the event the record was based on.\nCan get two values:\n 1. \"SF Event\" - Where the event is taken from \"analytics___salesforce_stg__mc_opportunity_field_history\"\n 2. \"Artificial initial free months event\" - Where the event was created from \"analytics___finance__zuora_subscription\"\n\nThe artificial events were necessary because SF does not always trigger events for the initial value so we are taking the\nvalue from the corresponding Zuora subscription's first version."}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_field_name": {"name": "analytics___finance__sf_opportunity_free_month_over_time_field_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_field_name", "block_contents": "The field name in SF\nCan get two values:\n 1. \"Retention_CSM_Free_Months__c\" - For CSM free months\n 2. \"End_Of_Contract_Extension_Month__c\" - For Sales free months"}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_field_value": {"name": "analytics___finance__sf_opportunity_free_month_over_time_field_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_field_value", "block_contents": "The amount of free months that corresponeds to the opportunity, field and date range"}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_from_date": {"name": "analytics___finance__sf_opportunity_free_month_over_time_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_from_date", "block_contents": ""}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_from_month": {"name": "analytics___finance__sf_opportunity_free_month_over_time_from_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_from_month", "block_contents": ""}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_is_csm_free_months": {"name": "analytics___finance__sf_opportunity_free_month_over_time_is_csm_free_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_is_csm_free_months", "block_contents": "Indicates if the field_name = \"Retention_CSM_Free_Months__c\""}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_is_sales_free_months": {"name": "analytics___finance__sf_opportunity_free_month_over_time_is_sales_free_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_is_sales_free_months", "block_contents": "Indicates if the field_name = \"End_Of_Contract_Extension_Month__c\""}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_is_sf_event": {"name": "analytics___finance__sf_opportunity_free_month_over_time_is_sf_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_is_sf_event", "block_contents": "Indicates if the event_type = \"SF Event\""}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_opportunity_id": {"name": "analytics___finance__sf_opportunity_free_month_over_time_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_sf_event_id": {"name": "analytics___finance__sf_opportunity_free_month_over_time_sf_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_sf_event_id", "block_contents": "FK: analytics___salesforce_stg__mc_opportunity_field_history"}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_to_date": {"name": "analytics___finance__sf_opportunity_free_month_over_time_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_to_date", "block_contents": ""}, "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_to_month": {"name": "analytics___finance__sf_opportunity_free_month_over_time_to_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__sf_opportunity_free_month_over_time/analytics___finance__sf_opportunity_free_month_over_time.md", "unique_id": "doc.yoda.analytics___finance__sf_opportunity_free_month_over_time_to_month", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_event": {"name": "analytics___finance__shopify_billing_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_event", "block_contents": "PK: [shopify_shop_id, charge_id, event_type, product_family, created_at]\nModeled table of shopify billing events.\nThe table contains events on actions related to shopify stores and yotpo's apps (products).\nThe table exclude test stores based on the is_test field from analytics___platform__store"}, "doc.yoda.analytics___finance__shopify_billing_event_app_key": {"name": "analytics___finance__shopify_billing_event_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_event_app_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_event_dwh_updated_at": {"name": "analytics___finance__shopify_billing_event_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_event_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___finance__shopify_billing_event_is_none_app_key": {"name": "analytics___finance__shopify_billing_event_is_none_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_event_is_none_app_key", "block_contents": "Indicates if none app key was found for the shopify shop id"}, "doc.yoda.analytics___finance__shopify_billing_event_organization_key": {"name": "analytics___finance__shopify_billing_event_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_event_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_event_shopify_shop_id": {"name": "analytics___finance__shopify_billing_event_shopify_shop_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_event/analytics___finance__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_event_shopify_shop_id", "block_contents": "unique store identifier from shopify"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily", "block_contents": "Modeled table of organiztion product family mrr based on shopify billing events at a daily level | PK and granularity: mrr_date, product_family, organization_key"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_app_id": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_app_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_app_id", "block_contents": "generated app identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_app_key_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_app_key_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_app_key_array", "block_contents": "array of yotpo store unique identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_charge_id_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_charge_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_charge_id_array", "block_contents": "array of all charge identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_charge_id_cnt": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_charge_id_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_charge_id_cnt", "block_contents": "number of charge identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_charge_name_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_charge_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_charge_name_array", "block_contents": "array of all charge names"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_dwh_updated_at": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_deactivated": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_deactivated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_deactivated", "block_contents": "at least one deactivated store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_free": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_free", "block_contents": "at least one free store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_full_service": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_full_service", "block_contents": "at least one full service store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_loyalty": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_loyalty", "block_contents": "at least one loyalty store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_self_service": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_self_service", "block_contents": "at least one self service store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_sms": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_sms", "block_contents": "at least one sms store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_sms_multi_product": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_sms_multi_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_sms_multi_product", "block_contents": "at least one sms multi product store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_subscriptions": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_subscriptions", "block_contents": "at least one subscriptions store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_ugc": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_ugc", "block_contents": "at least one ugcs store indicator: 0/1 (UGC can be Reviews or VMS or both)"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_ugc_multi_product": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_ugc_multi_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_ugc_multi_product", "block_contents": "at least one ugc multi product store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_uninstalled": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_uninstalled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_is_at_least_one_store_uninstalled", "block_contents": "at least one uninstalled store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_loyalty_plan_id_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_loyalty_plan_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_loyalty_plan_id_array", "block_contents": "array of all loyalty plan identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date", "block_contents": "mrr date - primary key 1/3"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_in_usd", "block_contents": "Monthly Recurring Revenue in usd which doesn't include deactivated stores"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_organization_key": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_organization_key", "block_contents": "yotpo organization unique key - primary key 3/3"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_original_mrr_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_original_mrr_in_usd", "block_contents": "Monthly Recurring Revenue in usd"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_paying_app_key_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_paying_app_key_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_paying_app_key_array", "block_contents": "array of paying stores under the organization"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_paying_app_key_cnt": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_paying_app_key_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_paying_app_key_cnt", "block_contents": "count of paying stores under the organization"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_plan_id_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_plan_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_plan_id_array", "block_contents": "array of all plan identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_plan_name_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_plan_name_array", "block_contents": "array of all plan names"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_plan_name_cnt": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_plan_name_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_plan_name_cnt", "block_contents": "number of plan names"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_product_family": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_product_family", "block_contents": "product family: UGC, Loyalty, SMS, Subscriptions - primary key 2/3"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_shopify_shop_id_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_shopify_shop_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_shopify_shop_id_array", "block_contents": "array of shopify generated shop identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_sms_plan_id_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_sms_plan_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_sms_plan_id_array", "block_contents": "array of all sms plan identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_sms_plan_name_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_sms_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_sms_plan_name_array", "block_contents": "array of all the store's sms (SMS & Email) plans"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_subscription_end_date": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_subscription_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_subscription_end_date", "block_contents": "MAX of all the stores subscription end date.\nFor active subscriptions the value will be '2999-01-01'"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_subscription_start_date": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_subscription_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_subscription_start_date", "block_contents": "MIN of all the stores the subscription start date."}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_ugc_plan_name_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily_ugc_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_daily/analytics___finance__shopify_billing_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily_ugc_plan_name_array", "block_contents": "array of all the store's ugc (Reviews & VMS) plans"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly", "block_contents": "Modeled table of organiztion product family mrr based on shopify billing events at a monthly level | PK and granularity: mrr_month, product_family, organization_key"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_adjusted_revenue_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_adjusted_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_adjusted_revenue_in_usd", "block_contents": "sum of all stores adjusted revenue (if an organization had an opening or a closing mrr within_month adjusted revenue will not be counted)"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_app_id": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_app_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_app_id", "block_contents": "generated app identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_app_key_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_app_key_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_app_key_array", "block_contents": "array of yotpo store unique identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_charge_id_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_charge_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_charge_id_array", "block_contents": "array of all charge identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_charge_id_cnt": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_charge_id_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_charge_id_cnt", "block_contents": "number of charge identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_charge_name_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_charge_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_charge_name_array", "block_contents": "array of all charge names"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_is_main_plan_free": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_is_main_plan_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_is_main_plan_free", "block_contents": "indicator = 1 when closing_main_plan is_free = 1 main_plan chosen by higests mrr"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_is_main_plan_full_service": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_is_main_plan_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_is_main_plan_full_service", "block_contents": "indicator = 1 when closing_main_plan is_full_service = 1 main_plan chosen by highest mrr"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_is_main_plan_self_service": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_is_main_plan_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_is_main_plan_self_service", "block_contents": "indicator = 1 when closing_main_plan is_self_service = 1 main_plan chosen by highest mrr"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_main_charge_name": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_main_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_main_charge_name", "block_contents": "indicator = 1 when closing_main_charge_name main_charge_name chosen by highest mrr"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_main_plan_name": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_main_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_main_plan_name", "block_contents": "indicator = 1 when closing_main_plan_name main_plan_name chosen by highest mrr"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_mrr_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_mrr_in_usd", "block_contents": "sum of all stores end of month mrr_in_usd"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_original_mrr_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_original_mrr_in_usd", "block_contents": "sum of all stores end of month original_mrr_in_usd"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_paying_app_key_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_paying_app_key_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_paying_app_key_array", "block_contents": "array of paying stores under the organization at the end of the month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_paying_app_key_cnt": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_paying_app_key_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_closing_paying_app_key_cnt", "block_contents": "count of paying stores under the organization at the end of the month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_dwh_updated_at": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_deactivated": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_deactivated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_deactivated", "block_contents": "at least one deactivated store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_free": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_free", "block_contents": "at least one free store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_full_service": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_full_service", "block_contents": "at least one full service store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_self_service": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_self_service", "block_contents": "at least one self service store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_uninstalled": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_uninstalled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_at_least_one_store_uninstalled", "block_contents": "at least one uninstalled store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_terminated_subscription": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_is_terminated_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_terminated_subscription", "block_contents": "indicator = 1 organization started month with positive mrr and finishes with 0"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_terminated_subscription_within_first_month": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_is_terminated_subscription_within_first_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_is_terminated_subscription_within_first_month", "block_contents": "indicator = 1 organization started and ended charge in the same month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_in_usd", "block_contents": "Monthly Recurring Revenue in usd which doesn't include deactivated stores"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month", "block_contents": "mrr month - primary key 1/3"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_is_main_plan_free": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_is_main_plan_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_is_main_plan_free", "block_contents": "closing_is_main_plan_free of previous month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_is_main_plan_full_service": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_is_main_plan_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_is_main_plan_full_service", "block_contents": "closing_is_main_plan_full_service of previous month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_is_main_plan_self_service": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_is_main_plan_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_is_main_plan_self_service", "block_contents": "closing_is_main_plan_self_service of previous month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_main_charge_name": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_main_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_main_charge_name", "block_contents": "closing_main_charge_name of previous month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_main_plan_name": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_main_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_main_plan_name", "block_contents": "closing_main_plan_name of previous month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_mrr_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_mrr_in_usd", "block_contents": "closing_mrr_in_usd of previous month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_original_mrr_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_original_mrr_in_usd", "block_contents": "closing_original_mrr_in_usd of previous month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_paying_app_key_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_paying_app_key_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_paying_app_key_array", "block_contents": "array of paying stores under the organization at the begining of the month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_paying_app_key_cnt": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_paying_app_key_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_opening_paying_app_key_cnt", "block_contents": "count of paying stores under the organization at the begining of the month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_key": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_key", "block_contents": "yotpo organization unique key - primary key 3/3"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id", "block_contents": "TABLE PK: combination of month|organization_key|product_family_group"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_original_mrr_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_original_mrr_in_usd", "block_contents": "Monthly Recurring Revenue in usd"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_original_subscribe_days_cnt": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_original_subscribe_days_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_original_subscribe_days_cnt", "block_contents": "number of subscription days"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_plan_name_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_plan_name_array", "block_contents": "array of all plan names"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_product_family": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_product_family", "block_contents": "product family: UGC, Loyalty, SMS, Subscriptions - primary key 2/3"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_shopify_shop_id_array": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_shopify_shop_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_shopify_shop_id_array", "block_contents": "array of shopify generated shop identifiers"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_subscribe_days_cnt": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_subscribe_days_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_subscribe_days_cnt", "block_contents": "number of subscription days which doesn't include deactivated stores"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_subscription_end_date": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_subscription_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_subscription_end_date", "block_contents": "MAX of all the stores subscription end date.\nFor active subscriptions the value will be '2999-01-01'"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_subscription_start_date": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_subscription_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_subscription_start_date", "block_contents": "MIN of all the stores the subscription start date."}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_is_main_plan_free": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_is_main_plan_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_is_main_plan_free", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_free = is_free of the main_plan"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_is_main_plan_full_service": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_is_main_plan_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_is_main_plan_full_service", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_full_service = is_full_service of the main_plan"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_is_main_plan_self_service": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_is_main_plan_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_is_main_plan_self_service", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_self_service = is_self_service of the main_plan"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_main_charge_name": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_main_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_main_charge_name", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_main_charge_name = charge_name of the main_plan"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_main_plan_name": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_main_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_main_plan_name", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_main_plan_name = plan_name of the main_plan"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_mrr_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_mrr_in_usd", "block_contents": "mrr_in_usd sum of all organization's stores that had charges that started and ended in the same month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_original_mrr_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_mrr_monthly/analytics___finance__shopify_billing_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly_within_month_original_mrr_in_usd", "block_contents": "original_mrr_in_usd sum of all organization's stores that had charges that started and ended in the same month"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "block_contents": "PK: [organization_key, date, product_family]\nModel of the usage revenue from shopify billing events.\nThere are three types of usage revenue:\n 1. Loyalty and Reviews Overages\n Relevant only for Loyalty and Reviews (UGC).\n The amount is being paid by the store for additional orders that exceeded their plan limit.\n\n 2. Subscriptions Rev Share\n Relevant only for Subscriptions.\n The store is paying us X% of the revenue generated using the product\n\n 3. SMS Usage Charge\n Relevant only for SMS.\n There are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_additional_orders_cnt": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily_additional_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_additional_orders_cnt", "block_contents": "Sum of all the additional orders that exceeded the stores plan limit (under the organization).\nThis is the number of orders the organization is paying for.\nRelevant only for Loyalty and Reviews (UGC)."}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_date": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_date", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_dwh_updated_at": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_product_family": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_revenue_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_daily/analytics___finance__shopify_billing_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily_revenue_in_usd", "block_contents": "The amount paid by the organization for a specific product usage"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "block_contents": "PK: [organization_key, month, product_family]\nModel of the usage revenue from shopify billing events.\nThere are three types of usage revenue:\n 1. Loyalty and Reviews Overages\n Relevant only for Loyalty and Reviews (UGC).\n The amount is being paid by the store for additional orders that exceeded their plan limit.\n\n 2. Subscriptions Rev Share\n Relevant only for Subscriptions.\n The store is paying us X% of the revenue generated using the product\n\n 3. SMS Usage Charge\n Relevant only for SMS.\n There are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_additional_orders_cnt": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_additional_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_additional_orders_cnt", "block_contents": "Sum of all the additional orders that exceeded the stores plan limit (under the organization).\nThis is the number of orders the organization is paying for.\nRelevant only for Loyalty and Reviews (UGC)."}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_dwh_updated_at": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_communication": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_communication", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_communication", "block_contents": "indicator = 1 when product_family = SMS or Email"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_free": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_free", "block_contents": "Indicates if the plan is free (of SaaS fees) plan or not"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_full_service": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_full_service", "block_contents": "Indicates if the plan is full service plan or not"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_self_service": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_is_self_service", "block_contents": "Indicates if the plan is self service plan or not"}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_month": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_month", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_plan_name": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_plan_name", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_product_family": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_revenue_in_usd": {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly/analytics___finance__shopify_billing_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_revenue_in_usd", "block_contents": "The amount paid by the organization for a specific product usage"}, "doc.yoda.analytics___finance__shopify_billing_store_mapping": {"name": "analytics___finance__shopify_billing_store_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_mapping", "block_contents": "Mapping table between shopify shop_id and yotpo app_key.\nshop_id's with 0 OR more there 1 app_keys are EXCLUDED.\nPK: shopify_shop_id | app_key"}, "doc.yoda.analytics___finance__shopify_billing_store_mapping_app_key": {"name": "analytics___finance__shopify_billing_store_mapping_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_mapping_app_key", "block_contents": "FK: platform_store"}, "doc.yoda.analytics___finance__shopify_billing_store_mapping_dwh_updated_at": {"name": "analytics___finance__shopify_billing_store_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_mapping_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_mapping_organization_key": {"name": "analytics___finance__shopify_billing_store_mapping_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_mapping_organization_key", "block_contents": "FK: platform_organization"}, "doc.yoda.analytics___finance__shopify_billing_store_mapping_shopify_shop_domain": {"name": "analytics___finance__shopify_billing_store_mapping_shopify_shop_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_mapping_shopify_shop_domain", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_mapping_shopify_shop_id": {"name": "analytics___finance__shopify_billing_store_mapping_shopify_shop_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_mapping_shopify_shop_id", "block_contents": "FK: external_account_id in table analytics___platform_stg__account_platform"}, "doc.yoda.analytics___finance__shopify_billing_store_mapping_store_id": {"name": "analytics___finance__shopify_billing_store_mapping_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_mapping/analytics___finance__shopify_billing_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_mapping_store_id", "block_contents": "FK: platform_store"}, "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time": {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time", "block_contents": "PK: [shopify_shop_id, product_family, deactivated_at]\nIn Shopify, stores can get their apps (Yotpo's products) deactivated and they will not pay for the product until they reactivate.\nThis table shows the periods of deactivations for each store and product over time. Important to know:\n 1. deactivated_at - the beginning of the deactivation period\n 2. reactivated_at - the end of the deactivation period"}, "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_app_key": {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_app_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_at": {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_at", "block_contents": "The beginning of the deactivation period"}, "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_date": {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_date", "block_contents": "The beginning (date) of the deactivation period"}, "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_dwh_updated_at": {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_organization_key": {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_product_family": {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_reactivated_at": {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time_reactivated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_reactivated_at", "block_contents": "The end of the deactivation period\nNULL means the product is still deactivated"}, "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_reactivated_date": {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time_reactivated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_reactivated_date", "block_contents": "The end (date) of the deactivation period\nNULL means the product is still deactivated"}, "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_shop_id": {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time_shop_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_deactivated_over_time/analytics___finance__shopify_billing_store_product_deactivated_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time_shop_id", "block_contents": "The shopify shop id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily", "block_contents": "| PK and granularity: mrr_date, product_family, shopify_shop_id\nModeled table of store and product family mrr based on shopify billing events at a daily level \n*Including stores we couldn't match app_key to them (eventually we are not reporting them)"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_app_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_app_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_app_id", "block_contents": "shopify generated app identifier"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_app_key": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_charge_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_charge_id", "block_contents": "shopify generated charge_id similar to zuora subscription_id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_charge_id_array": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_charge_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_charge_id_array", "block_contents": "array of all charge identifiers"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_charge_id_cnt": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_charge_id_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_charge_id_cnt", "block_contents": "number of charge identifiers"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_charge_name": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_charge_name", "block_contents": "charge name"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_charge_name_array": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_charge_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_charge_name_array", "block_contents": "array of all charge names"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_dwh_updated_at": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_deactivated": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_is_deactivated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_deactivated", "block_contents": "deactivated store indicator: 0/1. \nif the diffrence between date and deactivation_date <= 30 days we will flag the store as activated (is_deactivated = 0)."}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_free": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_free", "block_contents": "free plan indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_full_service": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_full_service", "block_contents": "full service plan indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_main_organization_plan": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_is_main_organization_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_main_organization_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_self_service": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_self_service", "block_contents": "self service plan indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_single_app_key": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_is_single_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_single_app_key", "block_contents": "single store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_sms_multi_product": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_is_sms_multi_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_sms_multi_product", "block_contents": "sms multi product indicator (SMS & Email): 1/0"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_ugc_multi_product": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_is_ugc_multi_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_ugc_multi_product", "block_contents": "ugc multi product indicator (Reviews & VMS): 1/0"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_uninstalled": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_is_uninstalled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_is_uninstalled", "block_contents": "uninstalled store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_loyalty_plan_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_loyalty_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_loyalty_plan_id", "block_contents": "loyalty plan id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date", "block_contents": "mrr date - primary key 1/3"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_mrr_in_usd": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_mrr_in_usd", "block_contents": "Monthly Recurring Revenue in usd which doesn't include deactivated stores"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_organization_key": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_organization_plan_rank": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_organization_plan_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_organization_plan_rank", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_original_mrr_in_usd": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_original_mrr_in_usd", "block_contents": "Monthly Recurring Revenue in usd"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_plan_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_plan_id", "block_contents": "product plan id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_plan_name": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_plan_name", "block_contents": "product plan name (can be null if no plan found in store_plan_daily OR chrage_name cannot be identified as plan )"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_product_family": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_product_family", "block_contents": "product_family: UGC, Loyalty, SMS, Subscriptions - primary key 2/3"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_shopify_shop_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_shopify_shop_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_shopify_shop_id", "block_contents": "shopify generated shop identifier - primary key 3/3"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_sms_plan_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_sms_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_sms_plan_id", "block_contents": "sms plan id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_sms_plan_name_array": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_sms_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_sms_plan_name_array", "block_contents": "array of all the store's sms (SMS & Email) plans"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_subscription_end_date": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_subscription_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_subscription_end_date", "block_contents": "The store subscription end date.\nFor active subscriptions the value will be '2999-01-01'"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_subscription_start_date": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_subscription_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_subscription_start_date", "block_contents": "shopify_billing_subscription_mrr_over_time from_date"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_ugc_plan_name_array": {"name": "analytics___finance__shopify_billing_store_product_mrr_daily_ugc_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_daily/analytics___finance__shopify_billing_store_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_daily_ugc_plan_name_array", "block_contents": "array of all the store's ugc (Reviews & VMS) plans"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly", "block_contents": "| PK and granularity: mrr_month, product_family, shopify_shop_id\nModeled table of store and product family mrr based on shopify billing events at a monthly level \n*Including stores we couldn't match app_key to them (eventually we are not reporting them)"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_adjusted_revenue_in_usd": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_adjusted_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_adjusted_revenue_in_usd", "block_contents": "original_mrr_in_usd * numbers of days active and installed / total numbers of days in month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_app_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_app_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_app_id", "block_contents": "shopify generated app identifier"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_app_key": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_charge_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_charge_id", "block_contents": "shopify generated charge_id similar to zuora subscription_id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_charge_id_array": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_charge_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_charge_id_array", "block_contents": "array of all charge identifiers"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_charge_id_cnt": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_charge_id_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_charge_id_cnt", "block_contents": "number of charge identifiers"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_charge_name": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_charge_name", "block_contents": "charge name"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_charge_name_array": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_charge_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_charge_name_array", "block_contents": "array of all charge names"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_charge_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_closing_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_charge_id", "block_contents": "End of month charge_id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_charge_name": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_closing_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_charge_name", "block_contents": "End of month charge_name"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_deactivated": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_deactivated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_deactivated", "block_contents": "End of month is_deactivated"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_free": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_free", "block_contents": "End of month is_free"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_full_service": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_full_service", "block_contents": "End of month is_full_service"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_main_organization_plan": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_main_organization_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_main_organization_plan", "block_contents": "indicator = 1 when stores's plan is the organization main plan based on mrr_in_usd"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_self_service": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_self_service", "block_contents": "End of month is_self_service"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_uninstalled": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_uninstalled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_is_uninstalled", "block_contents": "End of month is_uninstalled"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_mrr_in_usd": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_closing_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_mrr_in_usd", "block_contents": "End of month mrr_in_usd (Monthly Recurring Revenue in usd which doesn't include deactivated stores)"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_original_mrr_in_usd": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_closing_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_original_mrr_in_usd", "block_contents": "End of month original_mrr_in_usd (Monthly Recurring Revenue in usd which include deactivated stores)"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_plan_name": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_closing_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_closing_plan_name", "block_contents": "End of month plan_name"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_dwh_updated_at": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_deactivated": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_is_deactivated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_deactivated", "block_contents": "deactivated store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_free": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_free", "block_contents": "free plan indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_full_service": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_full_service", "block_contents": "full service plan indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_org_terminated_subscription_within_first_month": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_is_org_terminated_subscription_within_first_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_org_terminated_subscription_within_first_month", "block_contents": "indicator = 1 when all organization's store charges started and ended in the same month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_self_service": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_self_service", "block_contents": "self service plan indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_single_app_key": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_is_single_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_single_app_key", "block_contents": "single store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_terminated_subscription_within_first_month": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_is_terminated_subscription_within_first_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_terminated_subscription_within_first_month", "block_contents": "indicator = 1 when store charges started and ended in the same month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_uninstalled": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_is_uninstalled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_is_uninstalled", "block_contents": "uninstalled store indicator: 0/1"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_latest_charge_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_latest_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_latest_charge_id", "block_contents": "Latest found charge_id coalesce(closing,opening,within_month)"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_loyalty_plan_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_loyalty_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_loyalty_plan_id", "block_contents": "loyalty plan id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_in_usd": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_in_usd", "block_contents": "Monthly Recurring Revenue in usd which doesn't include deactivated stores"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month", "block_contents": "mrr month - primary key 1/3"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_charge_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_opening_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_charge_id", "block_contents": "closing_charge_id of previous month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_charge_name": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_opening_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_charge_name", "block_contents": "closing_charge_name of previous month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_deactivated": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_deactivated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_deactivated", "block_contents": "closing_is_deactivated of previous month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_free": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_free", "block_contents": "closing_is_free of previous month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_full_service": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_full_service", "block_contents": "closing_is_full_service of previous month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_main_organization_plan": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_main_organization_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_main_organization_plan", "block_contents": "closing_is_main_organization_plan of previous month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_self_service": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_self_service", "block_contents": "closing_is_self_service of previous month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_uninstalled": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_uninstalled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_is_uninstalled", "block_contents": "closing_is_uninstalled of previous month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_mrr_in_usd": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_opening_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_mrr_in_usd", "block_contents": "closing_mrr_in_usd of previous month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_original_mrr_in_usd": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_opening_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_original_mrr_in_usd", "block_contents": "closing_original_mrr_in_usd of previous month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_plan_name": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_opening_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_opening_plan_name", "block_contents": "closing_plan_name of previous month"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_organization_key": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_original_mrr_in_usd": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_original_mrr_in_usd", "block_contents": "Monthly Recurring Revenue in usd"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_original_subscribe_days_cnt": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_original_subscribe_days_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_original_subscribe_days_cnt", "block_contents": "number of subscription days"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_plan_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_plan_id", "block_contents": "product plan id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_plan_name": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_plan_name", "block_contents": "product plan name"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_product_family": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_product_family", "block_contents": "product_family: UGC, Loyalty, SMS, Subscriptions - primary key 2/3"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_shopify_shop_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_shopify_shop_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_shopify_shop_id", "block_contents": "shopify generated shop identifier - primary key 3/3"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_sms_plan_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_sms_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_sms_plan_id", "block_contents": "sms plan id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_sms_plan_name_array": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_sms_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_sms_plan_name_array", "block_contents": "array of all the store's sms (SMS & Email) plans"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_subscribe_days_cnt": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_subscribe_days_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_subscribe_days_cnt", "block_contents": "number of subscription days which doesn't include deactivated stores"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_subscription_end_date": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_subscription_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_subscription_end_date", "block_contents": "The store subscription end date.\nFor active subscriptions the value will be '2999-01-01'"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_subscription_start_date": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_subscription_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_subscription_start_date", "block_contents": "The store subscription start date."}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_ugc_plan_name_array": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_ugc_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_ugc_plan_name_array", "block_contents": "array of all the store's ugc (Reviews & VMS) plans"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_charge_id": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_charge_id", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_charge_id = charge_id.\nif there were multiple charges in the same month the latest will show here"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_charge_name": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_charge_name", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_charge_name = charge_name"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_deactivated": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_deactivated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_deactivated", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_is_deactivated = is_deactivated"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_free": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_free", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_is_free = is_free"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_full_service": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_full_service", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_is_full_service = is_full_service"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_main_organization_plan": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_main_organization_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_main_organization_plan", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_organization_plan = is_main_organization_plan"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_self_service": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_self_service", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_is_self_service = is_self_service"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_uninstalled": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_uninstalled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_is_uninstalled", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_is_uninstalled = is_uninstalled"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_mrr_in_usd": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_mrr_in_usd", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_mrr_in_usd = mrr_in_usd"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_original_mrr_in_usd": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_original_mrr_in_usd", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_original_mrr_in_usd = original_mrr_in_usd"}, "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_plan_name": {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_mrr_monthly/analytics___finance__shopify_billing_store_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly_within_month_plan_name", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_plan_name = plan_name"}, "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time": {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "block_contents": "PK: [shopify_shop_id, product_family, uninstalled_at]\nIn Shopify, stores can uninstall their apps (Yotpo's products).\nThis table shows the periods of uninstallation for each store and product over time. Important to know:\n 1. uninstalled_at - The time when the store uninstalled the app\n 2. reinstalled_at - The time when the store reinstalled the app (must be after uninstallation)"}, "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_app_key": {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_app_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_dwh_updated_at": {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_organization_key": {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_product_family": {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_reinstalled_at": {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time_reinstalled_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_reinstalled_at", "block_contents": "The time when the store reinstalled the app (must be after uninstallation)\nNULL means the product is yet to be reinstalled"}, "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_reinstalled_date": {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time_reinstalled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_reinstalled_date", "block_contents": "The date when the store reinstalled the app (must be after uninstallation)\nNULL means the product is yet to be reinstalled"}, "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id": {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id", "block_contents": "The shopify shop id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_at": {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_at", "block_contents": "The time when the store uninstalled the app"}, "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_date": {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_uninstalled_over_time/analytics___finance__shopify_billing_store_product_uninstalled_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_date", "block_contents": "The date when the store uninstalled the app"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge": {"name": "analytics___finance__shopify_billing_store_product_usage_charge", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge", "block_contents": "PK: [shopify_shop_id,charge_id]\nModel of the usage revenue from shopify billing events.\nThere are three types of usage revenue:\n 1. Loyalty and Reviews Overages\n Relevant only for Loyalty and Reviews (UGC).\n The amount is being paid by the store for additional orders that exceeded their plan limit.\n\n 2. Subscriptions Rev Share\n Relevant only for Subscriptions.\n The store is paying us X% of the revenue generated using the product\n\n 3. SMS Usage Charge\n Relevant only for SMS.\n There are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_additional_orders_cnt": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_additional_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_additional_orders_cnt", "block_contents": "The additional orders that exceeded the store plan limit.\nThis is the number of orders the store is paying for.\nRelevant only for Loyalty and Reviews (UGC)."}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_app_key": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_app_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_charge_id": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_charge_id", "block_contents": "shopify charge id"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_charge_name": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_charge_name", "block_contents": "shopify charge name"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_date": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_date", "block_contents": "shopify charge date"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_dwh_updated_at": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_is_free": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_is_free", "block_contents": "Indicates if the plan is free (of SaaS fees) plan or not"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_is_full_service": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_is_full_service", "block_contents": "Indicates if the plan is full service plan or not"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_is_self_service": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_is_self_service", "block_contents": "Indicates if the plan is self service plan or not"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_organization_key": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_plan_name": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_plan_name", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_product_family": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_revenue_in_usd": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_revenue_in_usd", "block_contents": "The amount paid in the specific charge."}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_sms_usage_charge_type": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_sms_usage_charge_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_sms_usage_charge_type", "block_contents": "Relevant only for SMS.\nThere are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_subscriptions_rev_share_ratio": {"name": "analytics___finance__shopify_billing_store_product_usage_charge_subscriptions_rev_share_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_charge/analytics___finance__shopify_billing_store_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_charge_subscriptions_rev_share_ratio", "block_contents": "Relevant only for Subscriptions.\nThe store is paying us X% of the revenue generated using the product.\n NOTE: 1 = 100%, 0.5 = 50% ..."}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "block_contents": "PK: [shopify_shop_id, date, product_family]\nModel of the usage revenue from shopify billing events.\nThere are three types of usage revenue:\n 1. Loyalty and Reviews Overages\n Relevant only for Loyalty and Reviews (UGC).\n The amount is being paid by the store for additional orders that exceeded their plan limit.\n\n 2. Subscriptions Rev Share\n Relevant only for Subscriptions.\n The store is paying us X% of the revenue generated using the product\n\n 3. SMS Usage Charge\n Relevant only for SMS.\n There are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_additional_orders_cnt": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily_additional_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_additional_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_app_key": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_app_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_date": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_date", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_dwh_updated_at": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_organization_key": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_product_family": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_revenue_in_usd": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_daily/analytics___finance__shopify_billing_store_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily_revenue_in_usd", "block_contents": "The amount paid by the store for a specific product usage"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "block_contents": "PK: [shopify_shop_id, month, product_family]\nModel of the usage revenue from shopify billing events.\nThere are three types of usage revenue:\n 1. Loyalty and Reviews Overages\n Relevant only for Loyalty and Reviews (UGC).\n The amount is being paid by the store for additional orders that exceeded their plan limit.\n\n 2. Subscriptions Rev Share\n Relevant only for Subscriptions.\n The store is paying us X% of the revenue generated using the product\n\n 3. SMS Usage Charge\n Relevant only for SMS.\n There are three types of SMS usage charges:\n a. Auto Reload\n b. Campaigns\n c. Keyword"}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_additional_orders_cnt": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly_additional_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_additional_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_app_key": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_app_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_dwh_updated_at": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_month": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_month", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_organization_key": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_product_family": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_revenue_in_usd": {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_store_product_usage_revenue_monthly/analytics___finance__shopify_billing_store_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly_revenue_in_usd", "block_contents": "The amount paid by the store for a specific product usage"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time", "block_contents": "Calculated TABLE from shopify_billing_events of recurring revenue over time"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_app_key": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_dwh_updated_at": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_dwh_updated_at", "block_contents": "table last updated at"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_from_date": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_from_date", "block_contents": "subscription from_date"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_from_time": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_from_time", "block_contents": "subscription from_time"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_is_single_app_key": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time_is_single_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_is_single_app_key", "block_contents": "single store indicator: 0/1.\nmeaning: does it a shop_id (shopify) with one store (1) or not (0)"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_mrr_in_usd": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_mrr_in_usd", "block_contents": "Monthly Recurring Revenue in usd"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_organization_key": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_shopify_shop_id": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time_shopify_shop_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_shopify_shop_id", "block_contents": "shopify generated shop identifier"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_to_date": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_to_date", "block_contents": "subscription to_date (if null = 2999-01-01)"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_to_event_action": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time_to_event_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_to_event_action", "block_contents": "The action that ended the subscription time period"}, "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_to_time": {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_billing_subscription_mrr_over_time/analytics___finance__shopify_billing_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time_to_time", "block_contents": "subscription to_time (if null = 2999-01-01)"}, "doc.yoda.analytics___finance__shopify_store_mapping": {"name": "analytics___finance__shopify_store_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping", "block_contents": "PK: shopify_shop_id\nMapping table between shopify shop_id and yotpo app_key.\nImportant notes:\n1. If multiple app_keys found and only one of them has valid credentials we are choosing the valid credentials app_key.\n2. If multiple app_keys found and more than one of them has valid credentials we are choosing the first valid credentials app_key.\n3. shop_id's with 0 app_keys are EXCLUDED.\n4. Test stores are EXCLUDED"}, "doc.yoda.analytics___finance__shopify_store_mapping_app_key": {"name": "analytics___finance__shopify_store_mapping_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_app_key", "block_contents": "FK: platform_store"}, "doc.yoda.analytics___finance__shopify_store_mapping_app_key_array": {"name": "analytics___finance__shopify_store_mapping_app_key_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_app_key_array", "block_contents": "Array of app keys (will contain more than 1 in case multiple app keys were found per the shopify shop id)"}, "doc.yoda.analytics___finance__shopify_store_mapping_app_key_cnt": {"name": "analytics___finance__shopify_store_mapping_app_key_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_app_key_cnt", "block_contents": "Count of app keys (will be more than 1 in case multiple app keys were found per the shopify shop id)"}, "doc.yoda.analytics___finance__shopify_store_mapping_dwh_updated_at": {"name": "analytics___finance__shopify_store_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_store_mapping_is_multiple_app_key": {"name": "analytics___finance__shopify_store_mapping_is_multiple_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_is_multiple_app_key", "block_contents": "indicates if more than 1 app keys were found"}, "doc.yoda.analytics___finance__shopify_store_mapping_is_multiple_valid_cred_app_key": {"name": "analytics___finance__shopify_store_mapping_is_multiple_valid_cred_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_is_multiple_valid_cred_app_key", "block_contents": "indicates if more than 1 app keys with valid credentials were found."}, "doc.yoda.analytics___finance__shopify_store_mapping_is_single_app_key": {"name": "analytics___finance__shopify_store_mapping_is_single_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_is_single_app_key", "block_contents": "indicates if exactly 1 app key was found"}, "doc.yoda.analytics___finance__shopify_store_mapping_is_single_valid_cred_app_key": {"name": "analytics___finance__shopify_store_mapping_is_single_valid_cred_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_is_single_valid_cred_app_key", "block_contents": "indicates if exactly 1 app key with valid credentials were found."}, "doc.yoda.analytics___finance__shopify_store_mapping_organization_key": {"name": "analytics___finance__shopify_store_mapping_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_organization_key", "block_contents": "FK: platform_organization"}, "doc.yoda.analytics___finance__shopify_store_mapping_shopify_shop_domain": {"name": "analytics___finance__shopify_store_mapping_shopify_shop_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_shopify_shop_domain", "block_contents": ""}, "doc.yoda.analytics___finance__shopify_store_mapping_shopify_shop_id": {"name": "analytics___finance__shopify_store_mapping_shopify_shop_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_shopify_shop_id", "block_contents": "FK: external_account_id in table analytics___platform_stg__account_platform"}, "doc.yoda.analytics___finance__shopify_store_mapping_store_id": {"name": "analytics___finance__shopify_store_mapping_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_store_id", "block_contents": "FK: platform_store"}, "doc.yoda.analytics___finance__shopify_store_mapping_valid_cred_app_key_cnt": {"name": "analytics___finance__shopify_store_mapping_valid_cred_app_key_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_valid_cred_app_key_cnt", "block_contents": "Count of app keys with valid credentials."}, "doc.yoda.analytics___finance__shopify_store_mapping_valid_cred_app_key_array": {"name": "analytics___finance__shopify_store_mapping_valid_cred_app_key_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__shopify_store_mapping/analytics___finance__shopify_store_mapping.md", "unique_id": "doc.yoda.analytics___finance__shopify_store_mapping_valid_cred_app_key_array", "block_contents": "Array of app keys with valid credentials."}, "doc.yoda.analytics___finance__zuora_account": {"name": "analytics___finance__zuora_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.md", "unique_id": "doc.yoda.analytics___finance__zuora_account", "block_contents": "Modeled TABLE over zuora_account view"}, "doc.yoda.analytics___finance__zuora_account_dwh_updated_at": {"name": "analytics___finance__zuora_account_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.md", "unique_id": "doc.yoda.analytics___finance__zuora_account_dwh_updated_at", "block_contents": "Table last saved at"}, "doc.yoda.analytics___finance__zuora_account_organization_id": {"name": "analytics___finance__zuora_account_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_account/analytics___finance__zuora_account.md", "unique_id": "doc.yoda.analytics___finance__zuora_account_organization_id", "block_contents": "FK: Taken from analytics___platform_stg__organization"}, "doc.yoda.analytics___finance__zuora_invoice": {"name": "analytics___finance__zuora_invoice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance__zuora_invoice_account_currency": {"name": "analytics___finance__zuora_invoice_account_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_account_currency", "block_contents": "The account currency symbol.\nThe invoice charge amount is always in the account currency"}, "doc.yoda.analytics___finance__zuora_invoice_account_id": {"name": "analytics___finance__zuora_invoice_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_amount_in_original_currency": {"name": "analytics___finance__zuora_invoice_amount_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_amount_in_original_currency", "block_contents": "The invoice amount in original currency as it appears in Zuora"}, "doc.yoda.analytics___finance__zuora_invoice_amount_in_usd": {"name": "analytics___finance__zuora_invoice_amount_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_amount_in_usd", "block_contents": "The invoice amount converted to USD using the account currency, invoice date and this table: analytics___salesforce_stg__mc_conversion_rate"}, "doc.yoda.analytics___finance__zuora_invoice_balance_in_original_currency": {"name": "analytics___finance__zuora_invoice_balance_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_balance_in_original_currency", "block_contents": "The invoice balance in original currency as it appears in Zuora"}, "doc.yoda.analytics___finance__zuora_invoice_balance_in_usd": {"name": "analytics___finance__zuora_invoice_balance_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_balance_in_usd", "block_contents": "The invoice balance converted to USD using the account currency, invoice date and this table: analytics___salesforce_stg__mc_conversion_rate"}, "doc.yoda.analytics___finance__zuora_invoice_created_at": {"name": "analytics___finance__zuora_invoice_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_due_date": {"name": "analytics___finance__zuora_invoice_due_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_due_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_dwh_updated_at": {"name": "analytics___finance__zuora_invoice_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_invoice_invoice_date": {"name": "analytics___finance__zuora_invoice_invoice_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_invoice_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_invoice_id": {"name": "analytics___finance__zuora_invoice_invoice_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_invoice_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_invoice_month": {"name": "analytics___finance__zuora_invoice_invoice_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_invoice_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_invoice_number": {"name": "analytics___finance__zuora_invoice_invoice_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_invoice_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_is_deleted": {"name": "analytics___finance__zuora_invoice_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_is_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_is_reversed": {"name": "analytics___finance__zuora_invoice_is_reversed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_is_reversed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_is_status_posted": {"name": "analytics___finance__zuora_invoice_is_status_posted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_is_status_posted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_is_zero_balance": {"name": "analytics___finance__zuora_invoice_is_zero_balance", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_is_zero_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_payment_amount_in_original_currency": {"name": "analytics___finance__zuora_invoice_payment_amount_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_payment_amount_in_original_currency", "block_contents": "The invoice payment amount in original currency as it appears in Zuora"}, "doc.yoda.analytics___finance__zuora_invoice_payment_amount_in_usd": {"name": "analytics___finance__zuora_invoice_payment_amount_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_payment_amount_in_usd", "block_contents": "The invoice payment amount converted to USD using the account currency, invoice date and this table: analytics___salesforce_stg__mc_conversion_rate"}, "doc.yoda.analytics___finance__zuora_invoice_posted_at": {"name": "analytics___finance__zuora_invoice_posted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_posted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_posted_date": {"name": "analytics___finance__zuora_invoice_posted_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_posted_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_status": {"name": "analytics___finance__zuora_invoice_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_updated_at": {"name": "analytics___finance__zuora_invoice_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__zuora_invoice_usd_conversion_rate": {"name": "analytics___finance__zuora_invoice_usd_conversion_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice/analytics___finance__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_usd_conversion_rate", "block_contents": "The relevant conversion rate based on zuora account currency and invoice date"}, "doc.yoda.analytics___finance__zuora_invoice_item": {"name": "analytics___finance__zuora_invoice_item", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_item", "block_contents": "PK: invoice_item_id\nModeled View of zuora invoice_item object."}, "doc.yoda.analytics___finance__zuora_invoice_item_charge_amount_in_original_currency": {"name": "analytics___finance__zuora_invoice_item_charge_amount_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_item_charge_amount_in_original_currency", "block_contents": "The invoice item charge amount in original currency as it appears in Zuora"}, "doc.yoda.analytics___finance__zuora_invoice_item_charge_amount_in_usd": {"name": "analytics___finance__zuora_invoice_item_charge_amount_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_item_charge_amount_in_usd", "block_contents": "The invoice item charge amount converted to USD using the account currency, invoice date and this table: analytics___salesforce_stg__mc_conversion_rate"}, "doc.yoda.analytics___finance__zuora_invoice_item_dwh_updated_at": {"name": "analytics___finance__zuora_invoice_item_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_invoice_item/analytics___finance__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance__zuora_invoice_item_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details": {"name": "analytics___finance__zuora_order_mrr_details", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details", "block_contents": "Modeled TABLE over order_mrr view. Contains only is_deleted = 0"}, "doc.yoda.analytics___finance__zuora_order_mrr_details_account_id": {"name": "analytics___finance__zuora_order_mrr_details_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_account_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_order_action_created_at": {"name": "analytics___finance__zuora_order_mrr_details_order_action_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_order_action_created_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_order_action_id": {"name": "analytics___finance__zuora_order_mrr_details_order_action_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_order_action_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_order_action_type": {"name": "analytics___finance__zuora_order_mrr_details_order_action_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_order_action_type", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_order_mrr_created_at": {"name": "analytics___finance__zuora_order_mrr_details_order_mrr_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_order_mrr_created_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_order_mrr_id": {"name": "analytics___finance__zuora_order_mrr_details_order_mrr_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_order_mrr_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_order_mrr_start_date": {"name": "analytics___finance__zuora_order_mrr_details_order_mrr_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_order_mrr_start_date", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_order_mrr_type": {"name": "analytics___finance__zuora_order_mrr_details_order_mrr_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_order_mrr_type", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_order_mrr_value": {"name": "analytics___finance__zuora_order_mrr_details_order_mrr_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_order_mrr_value", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_product_id": {"name": "analytics___finance__zuora_order_mrr_details_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_product_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_product_rate_plan_id": {"name": "analytics___finance__zuora_order_mrr_details_product_rate_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_product_rate_plan_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_rate_plan_id": {"name": "analytics___finance__zuora_order_mrr_details_rate_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_rate_plan_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_order_mrr_details_subscription_id": {"name": "analytics___finance__zuora_order_mrr_details_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_order_mrr_details/analytics___finance__zuora_order_mrr_details.md", "unique_id": "doc.yoda.analytics___finance__zuora_order_mrr_details_subscription_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily": {"name": "analytics___finance__zuora_organization_plan_rank_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily", "block_contents": "Aggregated daily table over zuora_subscription_mrr_over_time. \nWe are currently only showing is_core_plan = 1\nGranularity: date|organization_key|product_family|is_core_plan|plan_rank"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_date": {"name": "analytics___finance__zuora_organization_plan_rank_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_date", "block_contents": "table date"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_dwh_updated_at": {"name": "analytics___finance__zuora_organization_plan_rank_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_from_date": {"name": "analytics___finance__zuora_organization_plan_rank_daily_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_from_date", "block_contents": "plan start date"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_is_core_plan": {"name": "analytics___finance__zuora_organization_plan_rank_daily_is_core_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_is_core_plan", "block_contents": "indicator = 1 if plan was found in platform__plan and category is not 'extensions'"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_is_free": {"name": "analytics___finance__zuora_organization_plan_rank_daily_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_is_free", "block_contents": "based on platform__plan"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_is_ss": {"name": "analytics___finance__zuora_organization_plan_rank_daily_is_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_is_ss", "block_contents": "based on platform__plan"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_opportunity_id_array": {"name": "analytics___finance__zuora_organization_plan_rank_daily_opportunity_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_opportunity_id_array", "block_contents": "array of all opportunities associated to this plan"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_organization_key": {"name": "analytics___finance__zuora_organization_plan_rank_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_plan_id": {"name": "analytics___finance__zuora_organization_plan_rank_daily_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_plan_id", "block_contents": "FK: platform__plan"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_plan_name": {"name": "analytics___finance__zuora_organization_plan_rank_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_plan_name", "block_contents": "based on platform__plan"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_plan_name_array": {"name": "analytics___finance__zuora_organization_plan_rank_daily_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_plan_name_array", "block_contents": "array of all plans order by rank that have been registered for this date,app_key,product_family"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_plan_rank": {"name": "analytics___finance__zuora_organization_plan_rank_daily_plan_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_plan_rank", "block_contents": "the rank is between plans with the same is_core_plan indicator.\nORDER BY mrr_in_usd DESC, plan_name"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_product_family": {"name": "analytics___finance__zuora_organization_plan_rank_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_product_family", "block_contents": "Reviews,SMS,ect"}, "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_to_date": {"name": "analytics___finance__zuora_organization_plan_rank_daily_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_plan_rank_daily/analytics___finance__zuora_organization_plan_rank_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_plan_rank_daily_to_date", "block_contents": "plan end date (if no end date then '2999-01-01' )"}, "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly": {"name": "analytics___finance__zuora_organization_product_group_mrr_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly", "block_contents": "PK: organization_product_month_id\naggregated table over zuora_organization_product_mrr_monthly of the recurring revenue from Zuora on an organization product family group monthly level.\nproduct_family_group = [Subscriptions|UGC|Email|SMS|Loyalty] UGC includes Reviews,VMS,Insignts"}, "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_from_date": {"name": "analytics___finance__zuora_organization_product_group_mrr_monthly_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_from_date", "block_contents": "MIN of all the products from_date\nThe subscription start date\n* In extreme cases it could also be a specific subscription version start date (if the subscription changed in the middle of the contract)"}, "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id": {"name": "analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id", "block_contents": "TABLE PK: combination of month|organization_key|product_family_group"}, "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_and_original_contract_duration": {"name": "analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_and_original_contract_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_and_original_contract_duration", "block_contents": "array of product_family and original_contract_duration"}, "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_group": {"name": "analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_group", "block_contents": "product_family_group = [Subscriptions|UGC|Email|SMS|Loyalty] - UGC includes Reviews,VMS,Insignts"}, "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_renewal_date": {"name": "analytics___finance__zuora_organization_product_group_mrr_monthly_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_renewal_date", "block_contents": "MAX of all the products renewal_date\nrenewal_date = effective_end_date for HT subscriptions (term_type = 'TERMED' in Zuora)\nrenewal_date = NULL for all other cases"}, "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_to_date": {"name": "analytics___finance__zuora_organization_product_group_mrr_monthly_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_group_mrr_monthly/analytics___finance__zuora_organization_product_group_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly_to_date", "block_contents": "MAX of all the products to_date\nThe subscription end date\n* For active subscriptions it will be '2999-01-01'\n** In extreme cases it could also be a specific subscription version end date (if the subscription changed in the middle of the contract)"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily": {"name": "analytics___finance__zuora_organization_product_mrr_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily", "block_contents": "PK: [date, organization_key, product_family]\nModeled table of the recurring revenue from Zuora on a daily level."}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_account_id_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_account_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_account_id_array", "block_contents": "Array of Zuora account ids"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_date": {"name": "analytics___finance__zuora_organization_product_mrr_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_date", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_dwh_updated_at": {"name": "analytics___finance__zuora_organization_product_mrr_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_is_annual_billing_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_is_annual_billing_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_is_annual_billing_array", "block_contents": "Array of is_annual_billing"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_is_lost_after_won_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_is_lost_after_won_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_is_lost_after_won_array", "block_contents": "Array of is_lost_after_won"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_is_self_service_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_is_self_service_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_is_self_service_array", "block_contents": "Array of is_self_service"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_lost_after_won_effective_mrr_in_usd": {"name": "analytics___finance__zuora_organization_product_mrr_daily_lost_after_won_effective_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_lost_after_won_effective_mrr_in_usd", "block_contents": "If the subscription is LAW then the lost_after_won_effective_mrr = effective_mrr else zero"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_organization_key": {"name": "analytics___finance__zuora_organization_product_mrr_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_original_mrr_in_usd": {"name": "analytics___finance__zuora_organization_product_mrr_daily_original_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_original_mrr_in_usd", "block_contents": "The original MRR (before the free month adjustment)\n original_mrr_in_usd = effective_mrr_in_usd - free_month_mrr_impact"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_plan_name_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_plan_name_array", "block_contents": "Array of plan_name"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_product_family": {"name": "analytics___finance__zuora_organization_product_mrr_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_provisioned_plan_name_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_provisioned_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_provisioned_plan_name_array", "block_contents": "Array of provisioned_plan_name"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_sf_account_id_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_sf_account_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_sf_account_id_array", "block_contents": "Array of sf_account_id"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_and_csm_free_month_cnt_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_and_csm_free_month_cnt_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_and_csm_free_month_cnt_array", "block_contents": "Array of sf_opportunity_id_and_csm_free_month_cnt"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_and_free_month_cnt_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_and_free_month_cnt_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_and_free_month_cnt_array", "block_contents": "Array of sf_opportunity_id_and_free_month_cnt"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_and_sales_free_month_cnt_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_and_sales_free_month_cnt_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_and_sales_free_month_cnt_array", "block_contents": "Array of sf_opportunity_id_and_sales_free_month_cnt"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_sf_opportunity_id_array", "block_contents": "Array of sf_opportunity_id"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_id_and_product_id_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_subscription_id_and_product_id_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_id_and_product_id_array", "block_contents": "Array of subscription_id_and_product_id"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_is_expired_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_is_expired_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_is_expired_array", "block_contents": "Array of subscription_name_and_is_expired"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_is_law_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_is_law_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_is_law_array", "block_contents": "Array of subscription_name_and_is_law"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_is_staggered_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_is_staggered_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_is_staggered_array", "block_contents": "Array of subscription_name_and_is_staggered"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_law_reason_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_law_reason_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_law_reason_array", "block_contents": "Array of subscription_name_and_law_reason"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_status_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_status_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_status_array", "block_contents": "Array of subscription_name_and_status"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_version_array": {"name": "analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_version_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_daily/analytics___finance__zuora_organization_product_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_daily_subscription_name_and_version_array", "block_contents": "Array of subscription_name_and_version"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly": {"name": "analytics___finance__zuora_organization_product_mrr_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly", "block_contents": "PK: [month, organization_key, product_family]\naggregated table over zuora_subscription_mrr_monthly of the recurring revenue from Zuora on an organization product family monthly level."}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_dwh_updated_at": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_from_date": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_from_date", "block_contents": "MIN of all the subscriptions from_date\nThe subscription start date\n* In extreme cases it could also be a specific subscription version start date (if the subscription changed in the middle of the contract)"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_email": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_email", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_insights": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_is_insights", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_insights", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_loyalty": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_product_group_terminated_within_month": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_is_product_group_terminated_within_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_product_group_terminated_within_month", "block_contents": "MIN over is_terminated_subscription_within_first_month for all products in product group (UGC).\nthis is used to determine for the product group aggregation - to terermine if to exclude or include within_month rows.\nexample: if reviews is_terminated_subscription_within_first_month = 1 and vms is is_terminated_subscription_within_first_month = 0\nwe will exclude to within_month rows of reviews since we still have vms mrr."}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_reviews": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_reviews", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_sms": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_sms", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_subscriptions": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_terminated_subscription": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_is_terminated_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_terminated_subscription", "block_contents": "indicator = 1 if the organization started the month with effective_mrr_in_usd > 0\nand ended the month with effective_mrr_in_usd = 0"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_ugc": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_is_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_ugc", "block_contents": "is_reviews = 1 OR is_vms = 1 OR is_insights = 1"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_vms": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_is_vms", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_product_group_rank": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_product_group_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_product_group_rank", "block_contents": "rank of product_family in product_group (UGC). this is used to determine the main plan for the product group aggregation.\nfor UGC we will take reviews if not available vms if not available insignt"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_renewal_date": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_renewal_date", "block_contents": "MAX of all the subscriptions renewal_date\nrenewal_date = effective_end_date for HT subscriptions (term_type = 'TERMED' in Zuora)\nrenewal_date = NULL for all other cases"}, "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_to_date": {"name": "analytics___finance__zuora_organization_product_mrr_monthly_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_mrr_monthly/analytics___finance__zuora_organization_product_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_mrr_monthly_to_date", "block_contents": "MAX of all the subscriptions to_date\nThe subscription end date\n* For active subscriptions it will be '2999-01-01'\n** In extreme cases it could also be a specific subscription version end date (if the subscription changed in the middle of the contract)"}, "doc.yoda.analytics___finance__zuora_organization_product_usage_charge": {"name": "analytics___finance__zuora_organization_product_usage_charge", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_charge", "block_contents": "PK: {invoice_number, product_family}\nTable for usage charges from Zuora.\nMainly for Reviews overages but will also capture manual charges since we are taking the information from zuora invoice."}, "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_charge_amount_in_usd": {"name": "analytics___finance__zuora_organization_product_usage_charge_charge_amount_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_charge_amount_in_usd", "block_contents": "The invoice amount charged for the specific product usage"}, "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_date": {"name": "analytics___finance__zuora_organization_product_usage_charge_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_date", "block_contents": "Zuora invoice date"}, "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_dwh_updated_at": {"name": "analytics___finance__zuora_organization_product_usage_charge_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_invoice_number": {"name": "analytics___finance__zuora_organization_product_usage_charge_invoice_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_invoice_number", "block_contents": "Zuora invoice number"}, "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_is_self_service": {"name": "analytics___finance__zuora_organization_product_usage_charge_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_is_self_service", "block_contents": "Indicates if the plan is self service plan or not"}, "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_organization_key": {"name": "analytics___finance__zuora_organization_product_usage_charge_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_plan_name": {"name": "analytics___finance__zuora_organization_product_usage_charge_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_plan_name", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_product_family": {"name": "analytics___finance__zuora_organization_product_usage_charge_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_charge/analytics___finance__zuora_organization_product_usage_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_charge_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily": {"name": "analytics___finance__zuora_organization_product_usage_revenue_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily", "block_contents": "PK: {date, organization_key, product_family}\nAggregated table for usage charges from Zuora.\nMainly for Reviews overages but will also capture manual charges since we are taking the information from zuora invoice."}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_charge_amount_in_usd": {"name": "analytics___finance__zuora_organization_product_usage_revenue_daily_charge_amount_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_charge_amount_in_usd", "block_contents": "The amount charged from the organization on a product usage"}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_date": {"name": "analytics___finance__zuora_organization_product_usage_revenue_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_date", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_dwh_updated_at": {"name": "analytics___finance__zuora_organization_product_usage_revenue_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_is_self_service": {"name": "analytics___finance__zuora_organization_product_usage_revenue_daily_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_is_self_service", "block_contents": "Indicates if the plan is self service plan or not"}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_organization_key": {"name": "analytics___finance__zuora_organization_product_usage_revenue_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_plan_name": {"name": "analytics___finance__zuora_organization_product_usage_revenue_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_plan_name", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_product_family": {"name": "analytics___finance__zuora_organization_product_usage_revenue_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_daily/analytics___finance__zuora_organization_product_usage_revenue_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly": {"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly", "block_contents": "PK: {month, organization_key, product_family}\nAggregated table for usage charges from Zuora.\nMainly for Reviews overages but will also capture manual charges since we are taking the information from zuora invoice."}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_charge_amount_in_usd": {"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly_charge_amount_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_charge_amount_in_usd", "block_contents": "The amount charged from the organization on a product usage"}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_dwh_updated_at": {"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_is_communication": {"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly_is_communication", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_is_communication", "block_contents": "indicator = 1 when product_family = SMS or Email"}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_is_self_service": {"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_is_self_service", "block_contents": "Indicates if the plan is self service plan or not"}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_month": {"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_month", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_organization_key": {"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_plan_name": {"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_plan_name", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_product_family": {"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_organization_product_usage_revenue_monthly/analytics___finance__zuora_organization_product_usage_revenue_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_parent_organization": {"name": "analytics___finance__zuora_parent_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "unique_id": "doc.yoda.analytics___finance__zuora_parent_organization", "block_contents": "Mapping table between child organizations and their corresponding parent organization.\nPK: organization_key"}, "doc.yoda.analytics___finance__zuora_parent_organization_dwh_updated_at": {"name": "analytics___finance__zuora_parent_organization_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "unique_id": "doc.yoda.analytics___finance__zuora_parent_organization_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_parent_organization_grand_parent_organization_id": {"name": "analytics___finance__zuora_parent_organization_grand_parent_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "unique_id": "doc.yoda.analytics___finance__zuora_parent_organization_grand_parent_organization_id", "block_contents": "The organization_id of the grand parent organization"}, "doc.yoda.analytics___finance__zuora_parent_organization_grand_parent_organization_key": {"name": "analytics___finance__zuora_parent_organization_grand_parent_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "unique_id": "doc.yoda.analytics___finance__zuora_parent_organization_grand_parent_organization_key", "block_contents": "The organization_key of the grand parent organization"}, "doc.yoda.analytics___finance__zuora_parent_organization_grand_parent_organization_name_array": {"name": "analytics___finance__zuora_parent_organization_grand_parent_organization_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "unique_id": "doc.yoda.analytics___finance__zuora_parent_organization_grand_parent_organization_name_array", "block_contents": "The organization name of the grand parent organization"}, "doc.yoda.analytics___finance__zuora_parent_organization_organization_id": {"name": "analytics___finance__zuora_parent_organization_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "unique_id": "doc.yoda.analytics___finance__zuora_parent_organization_organization_id", "block_contents": "The organization_id of the child organization"}, "doc.yoda.analytics___finance__zuora_parent_organization_organization_key": {"name": "analytics___finance__zuora_parent_organization_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "unique_id": "doc.yoda.analytics___finance__zuora_parent_organization_organization_key", "block_contents": "The organization_key of the child organization"}, "doc.yoda.analytics___finance__zuora_parent_organization_organization_name_array": {"name": "analytics___finance__zuora_parent_organization_organization_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "unique_id": "doc.yoda.analytics___finance__zuora_parent_organization_organization_name_array", "block_contents": "The organization name of the child organization"}, "doc.yoda.analytics___finance__zuora_parent_organization_parent_organization_id": {"name": "analytics___finance__zuora_parent_organization_parent_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "unique_id": "doc.yoda.analytics___finance__zuora_parent_organization_parent_organization_id", "block_contents": "The organization_id of the parent organization"}, "doc.yoda.analytics___finance__zuora_parent_organization_parent_organization_key": {"name": "analytics___finance__zuora_parent_organization_parent_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "unique_id": "doc.yoda.analytics___finance__zuora_parent_organization_parent_organization_key", "block_contents": "The organization_key of the parent organization"}, "doc.yoda.analytics___finance__zuora_parent_organization_parent_organization_name_array": {"name": "analytics___finance__zuora_parent_organization_parent_organization_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_parent_organization/analytics___finance__zuora_parent_organization.md", "unique_id": "doc.yoda.analytics___finance__zuora_parent_organization_parent_organization_name_array", "block_contents": "The organization name of the parent organization"}, "doc.yoda.analytics___finance__zuora_product": {"name": "analytics___finance__zuora_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "unique_id": "doc.yoda.analytics___finance__zuora_product", "block_contents": "Modeled TABLE over zuora_product view"}, "doc.yoda.analytics___finance__zuora_product_created_at": {"name": "analytics___finance__zuora_product_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "unique_id": "doc.yoda.analytics___finance__zuora_product_created_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_product_dwh_updated_at": {"name": "analytics___finance__zuora_product_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "unique_id": "doc.yoda.analytics___finance__zuora_product_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_product_is_deleted": {"name": "analytics___finance__zuora_product_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "unique_id": "doc.yoda.analytics___finance__zuora_product_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_product_is_provision_required": {"name": "analytics___finance__zuora_product_is_provision_required", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "unique_id": "doc.yoda.analytics___finance__zuora_product_is_provision_required", "block_contents": "is core plan indicator"}, "doc.yoda.analytics___finance__zuora_product_product_category": {"name": "analytics___finance__zuora_product_product_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "unique_id": "doc.yoda.analytics___finance__zuora_product_product_category", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_product_product_id": {"name": "analytics___finance__zuora_product_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "unique_id": "doc.yoda.analytics___finance__zuora_product_product_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_product_product_name": {"name": "analytics___finance__zuora_product_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "unique_id": "doc.yoda.analytics___finance__zuora_product_product_name", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_product_provisioned_package_name": {"name": "analytics___finance__zuora_product_provisioned_package_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "unique_id": "doc.yoda.analytics___finance__zuora_product_provisioned_package_name", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_product_sku": {"name": "analytics___finance__zuora_product_sku", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "unique_id": "doc.yoda.analytics___finance__zuora_product_sku", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_product_updated_at": {"name": "analytics___finance__zuora_product_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_product/analytics___finance__zuora_product.md", "unique_id": "doc.yoda.analytics___finance__zuora_product_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_rateplan_charge": {"name": "analytics___finance__zuora_rateplan_charge", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_rateplan_charge", "block_contents": "Modeled Table of source analytics___finance_stg__zuora_rateplan_charge"}, "doc.yoda.analytics___finance__zuora_rateplan_charge_dwh_updated_at": {"name": "analytics___finance__zuora_rateplan_charge_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_rateplan_charge_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_rateplan_charge_is_one_time_charge_type": {"name": "analytics___finance__zuora_rateplan_charge_is_one_time_charge_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_rateplan_charge_is_one_time_charge_type", "block_contents": "indicator = 1 if charge_type = 'onetime'"}, "doc.yoda.analytics___finance__zuora_rateplan_charge_is_recurring_charge_type": {"name": "analytics___finance__zuora_rateplan_charge_is_recurring_charge_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_rateplan_charge_is_recurring_charge_type", "block_contents": "indicator = 1 if charge_type = 'recurring'"}, "doc.yoda.analytics___finance__zuora_rateplan_charge_is_tier_join_original_rateplan_charge_id": {"name": "analytics___finance__zuora_rateplan_charge_is_tier_join_original_rateplan_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_rateplan_charge_is_tier_join_original_rateplan_charge_id", "block_contents": "indicator = 1 \nif rateplan_charge_id does not connect to zuora_rateplan_charge_tier on rateplan_charge_id and does connect on original_rateplan_charge_id"}, "doc.yoda.analytics___finance__zuora_rateplan_charge_is_usage_charge_type": {"name": "analytics___finance__zuora_rateplan_charge_is_usage_charge_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_rateplan_charge_is_usage_charge_type", "block_contents": "indicator = 1 if charge_type = 'usage'"}, "doc.yoda.analytics___finance__zuora_rateplan_charge_tier_join_rateplan_charge_id": {"name": "analytics___finance__zuora_rateplan_charge_tier_join_rateplan_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_rateplan_charge/analytics___finance__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance__zuora_rateplan_charge_tier_join_rateplan_charge_id", "block_contents": "helper column to join with zuora_rateplan_charge_tier. \nwhen is_tier_join_original_rateplan_charge_id = 0 this field is populated with rateplan_charge_id.\nwhen is_tier_join_original_rateplan_charge_id = 1 this field is populated with original_rateplan_charge_id."}, "doc.yoda.analytics___finance__zuora_subscription": {"name": "analytics___finance__zuora_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription", "block_contents": "Modeled TABLE over zuora_subscription view"}, "doc.yoda.analytics___finance__zuora_subscription_account_id": {"name": "analytics___finance__zuora_subscription_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_account_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_actual_contract_duration": {"name": "analytics___finance__zuora_subscription_actual_contract_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_actual_contract_duration", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_cancelled_at": {"name": "analytics___finance__zuora_subscription_cancelled_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_cancelled_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_created_at": {"name": "analytics___finance__zuora_subscription_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_created_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_csm_extension_months": {"name": "analytics___finance__zuora_subscription_csm_extension_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_csm_extension_months", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_dwh_updated_at": {"name": "analytics___finance__zuora_subscription_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_end_of_contract_extension_month": {"name": "analytics___finance__zuora_subscription_end_of_contract_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_end_of_contract_extension_month", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_exclude_from_dunning_end_date": {"name": "analytics___finance__zuora_subscription_exclude_from_dunning_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_exclude_from_dunning_end_date", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_is_deleted": {"name": "analytics___finance__zuora_subscription_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_is_downgraded": {"name": "analytics___finance__zuora_subscription_is_downgraded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_is_downgraded", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_is_exclude_from_dashboards": {"name": "analytics___finance__zuora_subscription_is_exclude_from_dashboards", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_is_exclude_from_dashboards", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_is_migration_subscription": {"name": "analytics___finance__zuora_subscription_is_migration_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_is_migration_subscription", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_is_staggered_subscription": {"name": "analytics___finance__zuora_subscription_is_staggered_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_is_staggered_subscription", "block_contents": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products"}, "doc.yoda.analytics___finance__zuora_subscription_last_version_csm_extension_months": {"name": "analytics___finance__zuora_subscription_last_version_csm_extension_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_last_version_csm_extension_months", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_last_version_end_of_contract_extension_month": {"name": "analytics___finance__zuora_subscription_last_version_end_of_contract_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_last_version_end_of_contract_extension_month", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_latest_version": {"name": "analytics___finance__zuora_subscription_latest_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_latest_version", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_original_contract_duration": {"name": "analytics___finance__zuora_subscription_original_contract_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_original_contract_duration", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_original_created_at": {"name": "analytics___finance__zuora_subscription_original_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_original_created_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_original_id": {"name": "analytics___finance__zuora_subscription_original_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_original_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_previous_subscription_id": {"name": "analytics___finance__zuora_subscription_previous_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_previous_subscription_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_renewal_from_subscription": {"name": "analytics___finance__zuora_subscription_renewal_from_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_renewal_from_subscription", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_renewal_setting": {"name": "analytics___finance__zuora_subscription_renewal_setting", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_renewal_setting", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_segment": {"name": "analytics___finance__zuora_subscription_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_segment", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_sf_opportunity_id": {"name": "analytics___finance__zuora_subscription_sf_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_sf_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_status": {"name": "analytics___finance__zuora_subscription_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_status", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_subscription_end_at": {"name": "analytics___finance__zuora_subscription_subscription_end_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_subscription_end_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_subscription_id": {"name": "analytics___finance__zuora_subscription_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_subscription_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_subscription_name": {"name": "analytics___finance__zuora_subscription_subscription_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_subscription_name", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_subscription_start_at": {"name": "analytics___finance__zuora_subscription_subscription_start_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_subscription_start_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_term_end_date": {"name": "analytics___finance__zuora_subscription_term_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_term_end_date", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_term_start_date": {"name": "analytics___finance__zuora_subscription_term_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_term_start_date", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_term_type": {"name": "analytics___finance__zuora_subscription_term_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_term_type", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_total_price": {"name": "analytics___finance__zuora_subscription_total_price", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_total_price", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_updated_at": {"name": "analytics___finance__zuora_subscription_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_version": {"name": "analytics___finance__zuora_subscription_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription/analytics___finance__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_version", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily": {"name": "analytics___finance__zuora_subscription_mrr_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily", "block_contents": "PK: [date, subscription_id, product_id]\nModeled table of the Zuora subscriptions MRR on a daily level."}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_csm_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_daily_csm_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_csm_free_month_cnt", "block_contents": "The CSM free months that where given to the customer for the specific subscription up until the date."}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_csm_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_daily_csm_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_csm_free_month_mrr_impact", "block_contents": "The amount of MRR that changed due to CSM free months"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_date": {"name": "analytics___finance__zuora_subscription_mrr_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_date", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_effective_mrr": {"name": "analytics___finance__zuora_subscription_mrr_daily_effective_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_effective_mrr", "block_contents": "MRR that takes into account the free months effect.\nThe formula goes as follows:\n 1. IF free months = 0 THEN no change\n 2. IF free months > 0 THEN Effective MRR = MRR*(Original Contract Duration/(Original Contract Duration + Free Months))"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_daily_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_free_month_cnt", "block_contents": "The total free months that where given to the customer for the specific subscription up until the date."}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_daily_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_free_month_mrr_impact", "block_contents": "The amount of MRR that changed due to free months"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_is_lost_after_won_per_org_product": {"name": "analytics___finance__zuora_subscription_mrr_daily_is_lost_after_won_per_org_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_is_lost_after_won_per_org_product", "block_contents": "indicates if the organization have a none lost after won subscription"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_is_main_plan_annual_billing": {"name": "analytics___finance__zuora_subscription_mrr_daily_is_main_plan_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_is_main_plan_annual_billing", "block_contents": "Indicates if the main plan is annual billing (see the description of main_plan_name for more details)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_is_main_plan_self_service": {"name": "analytics___finance__zuora_subscription_mrr_daily_is_main_plan_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_is_main_plan_self_service", "block_contents": "Indicates if the main plan is self service or full service (see the description of main_plan_name for more details)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_main_plan_name": {"name": "analytics___finance__zuora_subscription_mrr_daily_main_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_main_plan_name", "block_contents": "In Zuora, each product family can have several plans in each subscription (for example, 'Reviews - Enterprise' and 'Extra Seats (UGC)').\nWe will build an aggregated model on top of this table that will be on the level of [date, organization_key, product_family] and we will still want to be able to attach a single plan to each product family.\nThis field basically tells us what is the main plan for that organization_key and product_family in a specific date.\nThis is the order we used to determine the main plan:\n 1. provisioned plans before none provisioned plans\n 2. full service plans before self service plans\n 3. non extension plans before extension plans\n 4. Higher MRR"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_main_plan_platform_category_name": {"name": "analytics___finance__zuora_subscription_mrr_daily_main_plan_platform_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_main_plan_platform_category_name", "block_contents": "Tells us what is the category (from analytics___platform__plan) of the main plan (see the description of main_plan_name for more details)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_sales_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_daily_sales_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_sales_free_month_cnt", "block_contents": "The sales free months that where given to the customer for the specific subscription up until the date."}, "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_sales_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_daily_sales_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_daily/analytics___finance__zuora_subscription_mrr_daily.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_daily_sales_free_month_mrr_impact", "block_contents": "The amount of MRR that changed due to sales free months"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly": {"name": "analytics___finance__zuora_subscription_mrr_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly", "block_contents": "PK: [month, subscription_id, product_id]\nModeled table of the Zuora subscriptions MRR on a monthly level."}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_adjusted_revenue_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_adjusted_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_adjusted_revenue_in_usd", "block_contents": "effective_mrr X number of subscription days in month. \nHere effective_mrr = COALESCE(opening,closing,within_month)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_approximate_revenue_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_approximate_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_approximate_revenue_in_usd", "block_contents": "The approximate revenue is mainly for FP&A to try and bridge between our revenue numbers and accounting revenue numbers.\napproximate_revenue = adjusted_revenue + catch_up_revenue"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_catch_up_revenue_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_catch_up_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_catch_up_revenue_in_usd", "block_contents": "free_month_catch_up_revenue + lost_after_won_catch_up_revenue"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_csm_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_csm_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_csm_free_month_cnt", "block_contents": "Number of csm_free_months related to the opportunity at the end of the month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_csm_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_csm_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_csm_free_month_mrr_impact", "block_contents": "End of month MRR that changed due to CSM free months"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_effective_mrr_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_effective_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_effective_mrr_in_usd", "block_contents": "End of month MRR that takes into account the free months effect.\nThe formula goes as follows:\n 1. IF free months = 0 THEN no change\n 2. IF free months > 0 THEN Effective MRR = MRR*(Original Contract Duration/(Original Contract Duration + Free Months))"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_free_month_cnt", "block_contents": "Number of free_months related to the opportunity at the end of the month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_free_month_mrr_impact", "block_contents": "End of month sales_free_month_mrr_impact + csm_free_month_mrr_impact"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_is_main_plan_annual_billing": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_is_main_plan_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_is_main_plan_annual_billing", "block_contents": "End of month : \nIndicates if the main plan is annual billing (see the description of main_plan_name for more details)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_is_main_plan_self_service": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_is_main_plan_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_is_main_plan_self_service", "block_contents": "End of month : \nIndicates if the main plan is self service or full service (see the description of main_plan_name for more details)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_lost_after_won_effective_mrr": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_lost_after_won_effective_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_lost_after_won_effective_mrr", "block_contents": "if is_lost_after_won = 1 then closing_lost_after_won_effective_mrr = effective_mrr"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_main_plan_name": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_main_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_main_plan_name", "block_contents": "End of month : \nIn Zuora, each product family can have several plans in each subscription (for example, 'Reviews - Enterprise' and 'Extra Seats (UGC)').\nWe will build an aggregated model on top of this table that will be on the level of [date, organization_key, product_family] and we will still want to be able to attach a single plan to each product family.\nThis field basically tells us what is the main plan for that organization_key and product_family in a specific date.\nThis is the order we used to determine the main plan:\n 1. provisioned plans before none provisioned plans\n 2. full service plans before self service plans\n 3. non extension plans before extension plans\n 4. Higher MRR"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_main_plan_platform_category_name": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_main_plan_platform_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_main_plan_platform_category_name", "block_contents": "End of month :\nTells us what is the category (from analytics___platform__plan) of the main plan (see the description of main_plan_name for more details)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_mrr_in_original_currency": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_mrr_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_mrr_in_original_currency", "block_contents": "End of month product monthly price after discount in original currency devided by billing_unit (monthly=1, yearly=12)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_mrr_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_mrr_in_usd", "block_contents": "End of month product mrr_in_original_currency / (coverstion rate to USD)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_sales_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_sales_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_sales_free_month_cnt", "block_contents": "Number of sales_free_months related to the opportunity at the end of the month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_sales_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_sales_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_sales_free_month_mrr_impact", "block_contents": "End of month MRR that changed due to sales free months"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_tcv_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_closing_tcv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_closing_tcv_in_usd", "block_contents": "Total Contract Value (TCV) = original_MRR * original_contract_duration"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_conversion_rate": {"name": "analytics___finance__zuora_subscription_mrr_monthly_conversion_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_conversion_rate", "block_contents": "Latest found conversion_rate coalesce(closing,opening,within_month)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_csm_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_csm_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_csm_free_month_cnt", "block_contents": "Latest found csm_free_month_cnt coalesce(closing,opening,within_month)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_currency": {"name": "analytics___finance__zuora_subscription_mrr_monthly_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_currency", "block_contents": "Latest found currency coalesce(closing,opening,within_month)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_csm_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_delta_csm_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_csm_free_month_cnt", "block_contents": "delta_csm_free_month_cnt = closing_csm_free_month_cnt - opening_csm_free_month_cnt"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_csm_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_monthly_delta_csm_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_csm_free_month_mrr_impact", "block_contents": "closing - opening csm_free_month_mrr_impact"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_effective_mrr": {"name": "analytics___finance__zuora_subscription_mrr_monthly_delta_effective_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_effective_mrr", "block_contents": "closing - opening effective_mrr_in_usd"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_delta_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_free_month_cnt", "block_contents": "delta_free_month_cnt = closing_free_month_cnt - opening_free_month_cnt"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_monthly_delta_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_free_month_mrr_impact", "block_contents": "closing - opening free_month_mrr_impact"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_lost_after_won_effective_mrr": {"name": "analytics___finance__zuora_subscription_mrr_monthly_delta_lost_after_won_effective_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_lost_after_won_effective_mrr", "block_contents": "closing - opening lost_after_won_effective_mrr"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_sales_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_delta_sales_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_sales_free_month_cnt", "block_contents": "delta_sales_free_month_cnt = closing_sales_free_month_cnt - opening_sales_free_month_cnt"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_sales_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_monthly_delta_sales_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_delta_sales_free_month_mrr_impact", "block_contents": "closing - opening sales_free_month_mrr_impact"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_distinct_subscribe_days_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_distinct_subscribe_days_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_distinct_subscribe_days_cnt", "block_contents": "number of subscription days in month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_dwh_updated_at": {"name": "analytics___finance__zuora_subscription_mrr_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_free_month_catch_up_revenue_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_free_month_catch_up_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_free_month_catch_up_revenue_in_usd", "block_contents": "Because we are not fixing the MRR retroactively, the given free months only affect the revenue from the grant month on.\nIn order to catch the entire free months impact, we do a catch-up calculation:\n free_month_catch_up_revenue = delta_free_month_mrr_impact X months between subscription start month and month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_free_month_cnt", "block_contents": "Latest found free_month_cnt (csm_free_month_cnt + sales_free_month_cnt) coalesce(closing,opening,within_month)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_from_date_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_from_date_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_from_date_month_cnt", "block_contents": "months bwtween subscription start month and month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_granted_csm_free_months_value": {"name": "analytics___finance__zuora_subscription_mrr_monthly_granted_csm_free_months_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_granted_csm_free_months_value", "block_contents": "The $ value of the CSM free months granted this month.\n\n granted_csm_free_months_value = (csm_free_months_cnt/free_months_cnt) * granted_free_months_value"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_granted_free_months_value": {"name": "analytics___finance__zuora_subscription_mrr_monthly_granted_free_months_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_granted_free_months_value", "block_contents": "The $ value of the free months granted this month.\n\n granted_free_months_value = TCV*(delta_free_month_cnt/(original_contract_duration+closing_free_month_cnt))\n\nExample can be found in the following google sheet: https://docs.google.com/spreadsheets/d/1GO4utFHcI9daGWZ0cGBduvZTpO_uAO7gb_lgST_nBSQ/edit#gid=0"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_granted_sales_free_months_value": {"name": "analytics___finance__zuora_subscription_mrr_monthly_granted_sales_free_months_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_granted_sales_free_months_value", "block_contents": "The $ value of the Sales free months granted this month.\n\n granted_sales_free_months_value = (sales_free_months_cnt/free_months_cnt) * granted_free_months_value"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_email": {"name": "analytics___finance__zuora_subscription_mrr_monthly_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_email", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_expired_subscription": {"name": "analytics___finance__zuora_subscription_mrr_monthly_is_expired_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_expired_subscription", "block_contents": "Latest found is_expired_subscription coalesce(closing,opening,within_month)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_insights": {"name": "analytics___finance__zuora_subscription_mrr_monthly_is_insights", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_insights", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_loyalty": {"name": "analytics___finance__zuora_subscription_mrr_monthly_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_redundant_within_month": {"name": "analytics___finance__zuora_subscription_mrr_monthly_is_redundant_within_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_redundant_within_month", "block_contents": "indicator = 1 if within_month mrr is not null and closing or opening mrr exists is not null.\nIn this case we will ignore the within_month row. within_month mrr will only be included when there are not opening or closing mrr."}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_reviews": {"name": "analytics___finance__zuora_subscription_mrr_monthly_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_reviews", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_sms": {"name": "analytics___finance__zuora_subscription_mrr_monthly_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_sms", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_subscriptions": {"name": "analytics___finance__zuora_subscription_mrr_monthly_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_terminated_subscription_within_first_month": {"name": "analytics___finance__zuora_subscription_mrr_monthly_is_terminated_subscription_within_first_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_terminated_subscription_within_first_month", "block_contents": "subscription that started and ended in the same month and will not have opening or closing values"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_ugc": {"name": "analytics___finance__zuora_subscription_mrr_monthly_is_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_ugc", "block_contents": "is_reviews = 1 OR is_vms = 1 OR is_insights = 1"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_vms": {"name": "analytics___finance__zuora_subscription_mrr_monthly_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_is_vms", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_lost_after_won_catch_up_revenue_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_lost_after_won_catch_up_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_lost_after_won_catch_up_revenue_in_usd", "block_contents": "Because we are not fixing the MRR retroactively, the LAW only affect the revenue from the LAW recognition month on.\nIn order to catch the entire LAW impact, we do a catch-up calculation:\n lost_after_won_catch_up_revenue = delta_lost_after_won_effective_mrr X months between subscription start month and month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_lost_after_won_within_month_effective_mrr": {"name": "analytics___finance__zuora_subscription_mrr_monthly_lost_after_won_within_month_effective_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_lost_after_won_within_month_effective_mrr", "block_contents": "IF is_terminated_subscription_within_first_month = 1 AND is_lost_after_won = 1 THEN lost_after_won_within_month_effective_mrr = within_month_effective_mrr"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_month": {"name": "analytics___finance__zuora_subscription_mrr_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_month", "block_contents": "aggregation month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_csm_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_csm_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_csm_free_month_cnt", "block_contents": "Number of csm_free_months related to the opportunity at the end of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_csm_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_csm_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_csm_free_month_mrr_impact", "block_contents": "closing_csm_free_month_mrr_impact of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_effective_mrr_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_effective_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_effective_mrr_in_usd", "block_contents": "closing_effective_mrr of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_free_month_cnt", "block_contents": "Number of free_months related to the opportunity at the end of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_free_month_mrr_impact", "block_contents": "closing_free_month_mrr_impact of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_is_main_plan_annual_billing": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_is_main_plan_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_is_main_plan_annual_billing", "block_contents": "closing_is_main_plan_annual_billing of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_is_main_plan_self_service": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_is_main_plan_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_is_main_plan_self_service", "block_contents": "closing_is_main_plan_self_service of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_lost_after_won_effective_mrr": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_lost_after_won_effective_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_lost_after_won_effective_mrr", "block_contents": "closing_lost_after_won_effective_mrr of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_main_plan_name": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_main_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_main_plan_name", "block_contents": "closing_main_plan_name of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_main_plan_platform_category_name": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_main_plan_platform_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_main_plan_platform_category_name", "block_contents": "closing_main_plan_platform_category_name of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_mrr_in_original_currency": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_mrr_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_mrr_in_original_currency", "block_contents": "closing_mrr_in_original_currency of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_mrr_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_mrr_in_usd", "block_contents": "closing_mrr_in_usd of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_sales_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_sales_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_sales_free_month_cnt", "block_contents": "Number of sales_free_months related to the opportunity at the end of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_sales_free_month_mrr_impact": {"name": "analytics___finance__zuora_subscription_mrr_monthly_opening_sales_free_month_mrr_impact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_opening_sales_free_month_mrr_impact", "block_contents": "closing_sales_free_month_mrr_impact of previous month"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_sales_free_month_cnt": {"name": "analytics___finance__zuora_subscription_mrr_monthly_sales_free_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_sales_free_month_cnt", "block_contents": "The sales free months that where given to the customer for the specific subscription up until the date."}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_subscription_status": {"name": "analytics___finance__zuora_subscription_mrr_monthly_subscription_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_subscription_status", "block_contents": "Latest found subscription_status coalesce(closing,opening,within_month)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_version": {"name": "analytics___finance__zuora_subscription_mrr_monthly_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_version", "block_contents": "Latest found version coalesce(closing,opening,within_month)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_effective_mrr_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_within_month_effective_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_effective_mrr_in_usd", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_effective_mrr = effective_mrr"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_is_main_plan_annual_billing": {"name": "analytics___finance__zuora_subscription_mrr_monthly_within_month_is_main_plan_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_is_main_plan_annual_billing", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_annual_billing = is_main_plan_annual_billing"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_is_main_plan_self_service": {"name": "analytics___finance__zuora_subscription_mrr_monthly_within_month_is_main_plan_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_is_main_plan_self_service", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_is_main_plan_self_service = is_main_plan_self_service"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_main_plan_name": {"name": "analytics___finance__zuora_subscription_mrr_monthly_within_month_main_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_main_plan_name", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_main_plan_name = main_plan_name"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_main_plan_platform_category_name": {"name": "analytics___finance__zuora_subscription_mrr_monthly_within_month_main_plan_platform_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_main_plan_platform_category_name", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_main_plan_platform_category_name = main_plan_platform_category_name"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_mrr_in_original_currency": {"name": "analytics___finance__zuora_subscription_mrr_monthly_within_month_mrr_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_mrr_in_original_currency", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_mrr_in_original_currency = mrr_in_original_currency"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_mrr_in_usd": {"name": "analytics___finance__zuora_subscription_mrr_monthly_within_month_mrr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_mrr_in_usd", "block_contents": "IF is_terminated_subscription_within_first_month = 1 within_month_mrr_in_usd = mrr_in_usd"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_rank": {"name": "analytics___finance__zuora_subscription_mrr_monthly_within_month_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_monthly/analytics___finance__zuora_subscription_mrr_monthly.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_monthly_within_month_rank", "block_contents": "In case of multiple subscriptions (per organization per month) which were terminated within first month this rank \n indicates the lastest subscription.\n For organization product aggregation we will take include only within_month_rank = 1.\n If within_month_rank is NULL is_terminated_subscription_within_first_month = 0."}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time": {"name": "analytics___finance__zuora_subscription_mrr_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time", "block_contents": "Calculated TABLE of zuora recurring revenue over time"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_account_id": {"name": "analytics___finance__zuora_subscription_mrr_over_time_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_account_id", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_currency": {"name": "analytics___finance__zuora_subscription_mrr_over_time_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_currency", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_dwh_updated_at": {"name": "analytics___finance__zuora_subscription_mrr_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_from_date": {"name": "analytics___finance__zuora_subscription_mrr_over_time_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_from_date", "block_contents": "plan affective start date"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_annual_billing": {"name": "analytics___finance__zuora_subscription_mrr_over_time_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_annual_billing", "block_contents": "Indicates if the billing period is annual.\nFor HT it will always be 1, for LT it will be 1 if the customer subscribed to annual package."}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_expired_subscription": {"name": "analytics___finance__zuora_subscription_mrr_over_time_is_expired_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_expired_subscription", "block_contents": "Indicates if the subscription is expired or not.\nExpaired subscription indicates late renewal"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_in_term_renewal": {"name": "analytics___finance__zuora_subscription_mrr_over_time_is_in_term_renewal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_in_term_renewal", "block_contents": "Indicates if the renewal_opportunity_type = 'In Term Renewal'"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_lost_after_won": {"name": "analytics___finance__zuora_subscription_mrr_over_time_is_lost_after_won", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_lost_after_won", "block_contents": "indicates if the subscription is lost after won or not."}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_self_service": {"name": "analytics___finance__zuora_subscription_mrr_over_time_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_self_service", "block_contents": "term type = EVERGREEN (will remain =1 if subscription chanes to TERMED)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_staggered_subscription": {"name": "analytics___finance__zuora_subscription_mrr_over_time_is_staggered_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_is_staggered_subscription", "block_contents": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_lost_after_won_date": {"name": "analytics___finance__zuora_subscription_mrr_over_time_lost_after_won_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_lost_after_won_date", "block_contents": "The date in which the lost after won occured. null if the subscription is not lost after won"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_lost_after_won_reason": {"name": "analytics___finance__zuora_subscription_mrr_over_time_lost_after_won_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_lost_after_won_reason", "block_contents": "the reason for the lost after won from salesforce. null if the subscription is not lost after won"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_organization_key": {"name": "analytics___finance__zuora_subscription_mrr_over_time_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_original_contract_duration": {"name": "analytics___finance__zuora_subscription_mrr_over_time_original_contract_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_original_contract_duration", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_plan_name": {"name": "analytics___finance__zuora_subscription_mrr_over_time_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_plan_name", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_product_family": {"name": "analytics___finance__zuora_subscription_mrr_over_time_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_product_family", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_product_id": {"name": "analytics___finance__zuora_subscription_mrr_over_time_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_product_id", "block_contents": "FK: finance_stg__zuora_product"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_provisioned_plan_name": {"name": "analytics___finance__zuora_subscription_mrr_over_time_provisioned_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_provisioned_plan_name", "block_contents": "FK: plan_name in analytics___platform__plan"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_renewal_date": {"name": "analytics___finance__zuora_subscription_mrr_over_time_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_renewal_date", "block_contents": "IF:\n 1. term_type = 'TERMED' THEN renewal_date = effective_end_date\n 2. term_type = 'EVERGREEN' THEN renewal_date = NULL (there is no one renewal_date for subscription)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_renewal_opportunity_id": {"name": "analytics___finance__zuora_subscription_mrr_over_time_renewal_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_renewal_opportunity_id", "block_contents": "The opportunity_id of the latest renewal opportunity"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_renewal_opportunity_stage": {"name": "analytics___finance__zuora_subscription_mrr_over_time_renewal_opportunity_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_renewal_opportunity_stage", "block_contents": "The opportunity_stage of the latest renewal opportunity"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_renewal_opportunity_type": {"name": "analytics___finance__zuora_subscription_mrr_over_time_renewal_opportunity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_renewal_opportunity_type", "block_contents": "The opportunity_type of the latest renewal opportunity"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_sf_account_id": {"name": "analytics___finance__zuora_subscription_mrr_over_time_sf_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_sf_account_id", "block_contents": "FK: sf account"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_sf_opportunity_id": {"name": "analytics___finance__zuora_subscription_mrr_over_time_sf_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_sf_opportunity_id", "block_contents": "FK: salesforce__opportunity"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_sf_opportunity_stage": {"name": "analytics___finance__zuora_subscription_mrr_over_time_sf_opportunity_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_sf_opportunity_stage", "block_contents": "Stage of the corresponding sf_opportunity_id"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_sf_opportunity_type": {"name": "analytics___finance__zuora_subscription_mrr_over_time_sf_opportunity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_sf_opportunity_type", "block_contents": "Type of the corresponding sf_opportunity_id"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_subscription_name": {"name": "analytics___finance__zuora_subscription_mrr_over_time_subscription_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_subscription_name", "block_contents": ""}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_subscription_status": {"name": "analytics___finance__zuora_subscription_mrr_over_time_subscription_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_subscription_status", "block_contents": "The subscription status from Zuora (Active/Cancelled/Expired)"}, "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_to_date": {"name": "analytics___finance__zuora_subscription_mrr_over_time_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "original_file_path": "models/analytics/finance/marts/analytics___finance__zuora_subscription_mrr_over_time/analytics___finance__zuora_subscription_mrr_over_time.md", "unique_id": "doc.yoda.analytics___finance__zuora_subscription_mrr_over_time_to_date", "block_contents": "The to_date is based on different fields depending on the term type (EVERGREEN/TERMED):\n\nFor EVERGREEN subscriptions there are two cases:\n 1. latest versions:\n If there is effective_end_date, the value will be the effective_end_date else it will be '2999-01-01'\n\n 2. earlier versions:\n the value will be equal to the effective start date of the next version (per product family)\n\nFor TERMED subscriptions there are three cases:\n 1. latest versions:\n If the subscription got cancelled, the value will be the subscription cancelled date else it will be '2999-01-01'\n\n 2. earlier versions:\n 2.1 If the effective start date did not change between the version and the following version,\n the value will be equal to the effective start date (from date will be equal to to date causing the version to be irrelevant)\n 2.2 If the effective start date did change between the version and the following version,\n the value will be equal to the effective start date of the next version (allowing us to show the data of the version up until the start of the new version)\n 3. lost after won:\n If the subscription is lost after won, the to_date will be the date in which the lost after won occured (will prevent retroactive changes)"}, "doc.yoda.analytics___finance__base_account": {"name": "analytics___finance__base_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance__base_account", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__account_accountnumber": {"name": "analytics___finance_stg__account_accountnumber", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_accountnumber", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_additionalemailaddresses": {"name": "analytics___finance_stg__account_additionalemailaddresses", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_additionalemailaddresses", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_allowinvoiceedit": {"name": "analytics___finance_stg__account_allowinvoiceedit", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_allowinvoiceedit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_appkey_c": {"name": "analytics___finance_stg__account_appkey_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_appkey_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_autopay": {"name": "analytics___finance_stg__account_autopay", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_autopay", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_balance": {"name": "analytics___finance_stg__account_balance", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_batch": {"name": "analytics___finance_stg__account_batch", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_batch", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_bcdsettingoption": {"name": "analytics___finance_stg__account_bcdsettingoption", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_bcdsettingoption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_billcycleday": {"name": "analytics___finance_stg__account_billcycleday", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_billcycleday", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_billtocontactid": {"name": "analytics___finance_stg__account_billtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_billtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_class_ns": {"name": "analytics___finance_stg__account_class_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_class_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_communicationprofileid": {"name": "analytics___finance_stg__account_communicationprofileid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_communicationprofileid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_createdbyid": {"name": "analytics___finance_stg__account_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_createddate": {"name": "analytics___finance_stg__account_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_creditbalance": {"name": "analytics___finance_stg__account_creditbalance", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_creditbalance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_crmid": {"name": "analytics___finance_stg__account_crmid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_crmid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_currency": {"name": "analytics___finance_stg__account_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_customerid_ns": {"name": "analytics___finance_stg__account_customerid_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_customerid_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_customerservicerepname": {"name": "analytics___finance_stg__account_customerservicerepname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_customerservicerepname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_customertype_ns": {"name": "analytics___finance_stg__account_customertype_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_customertype_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_defaultpaymentmethodid": {"name": "analytics___finance_stg__account_defaultpaymentmethodid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_defaultpaymentmethodid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_deleted": {"name": "analytics___finance_stg__account_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_department_ns": {"name": "analytics___finance_stg__account_department_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_department_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_id": {"name": "analytics___finance_stg__account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_integrationid_ns": {"name": "analytics___finance_stg__account_integrationid_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_integrationid_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_integrationstatus_ns": {"name": "analytics___finance_stg__account_integrationstatus_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_integrationstatus_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_intercompany_c": {"name": "analytics___finance_stg__account_intercompany_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_intercompany_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_invoicedeliveryprefsemail": {"name": "analytics___finance_stg__account_invoicedeliveryprefsemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_invoicedeliveryprefsemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_invoicedeliveryprefsprint": {"name": "analytics___finance_stg__account_invoicedeliveryprefsprint", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_invoicedeliveryprefsprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_invoicetemplateid": {"name": "analytics___finance_stg__account_invoicetemplateid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_invoicetemplateid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_lastinvoicedate": {"name": "analytics___finance_stg__account_lastinvoicedate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_lastinvoicedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_legalentity_c": {"name": "analytics___finance_stg__account_legalentity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_legalentity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_location_ns": {"name": "analytics___finance_stg__account_location_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_location_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_merchantid_c": {"name": "analytics___finance_stg__account_merchantid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_merchantid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_mrr": {"name": "analytics___finance_stg__account_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_name": {"name": "analytics___finance_stg__account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_notes": {"name": "analytics___finance_stg__account_notes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_notes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_organisationkey_c": {"name": "analytics___finance_stg__account_organisationkey_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_organisationkey_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_parentaccount_c": {"name": "analytics___finance_stg__account_parentaccount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_parentaccount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_parentaccountid": {"name": "analytics___finance_stg__account_parentaccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_parentaccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_parentid": {"name": "analytics___finance_stg__account_parentid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_parentid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_paymentgateway": {"name": "analytics___finance_stg__account_paymentgateway", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_paymentgateway", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_paymentterm": {"name": "analytics___finance_stg__account_paymentterm", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_paymentterm", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_purchaseordernumber": {"name": "analytics___finance_stg__account_purchaseordernumber", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_purchaseordernumber", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_referrer_c": {"name": "analytics___finance_stg__account_referrer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_referrer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_salesrepname": {"name": "analytics___finance_stg__account_salesrepname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_salesrepname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_segment_c": {"name": "analytics___finance_stg__account_segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_sequencesetid": {"name": "analytics___finance_stg__account_sequencesetid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_sequencesetid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_sf_accountid_c": {"name": "analytics___finance_stg__account_sf_accountid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_sf_accountid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_soldtocontactid": {"name": "analytics___finance_stg__account_soldtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_soldtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_status": {"name": "analytics___finance_stg__account_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_subsidiary_ns": {"name": "analytics___finance_stg__account_subsidiary_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_subsidiary_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_syncdate_ns": {"name": "analytics___finance_stg__account_syncdate_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_syncdate_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_synctonetsuite_ns": {"name": "analytics___finance_stg__account_synctonetsuite_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_synctonetsuite_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_taxcompanycode": {"name": "analytics___finance_stg__account_taxcompanycode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_taxcompanycode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_taxexemptcertificateid": {"name": "analytics___finance_stg__account_taxexemptcertificateid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_taxexemptcertificateid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_taxexemptcertificatetype": {"name": "analytics___finance_stg__account_taxexemptcertificatetype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_taxexemptcertificatetype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_taxexemptdescription": {"name": "analytics___finance_stg__account_taxexemptdescription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_taxexemptdescription", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_taxexemptentityusecode": {"name": "analytics___finance_stg__account_taxexemptentityusecode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_taxexemptentityusecode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_taxexemptissuingjurisdiction": {"name": "analytics___finance_stg__account_taxexemptissuingjurisdiction", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_taxexemptissuingjurisdiction", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_taxexemptstatus": {"name": "analytics___finance_stg__account_taxexemptstatus", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_taxexemptstatus", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_testaccount_c": {"name": "analytics___finance_stg__account_testaccount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_testaccount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_totaldebitmemobalance": {"name": "analytics___finance_stg__account_totaldebitmemobalance", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_totaldebitmemobalance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_totalinvoicebalance": {"name": "analytics___finance_stg__account_totalinvoicebalance", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_totalinvoicebalance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_unappliedbalance": {"name": "analytics___finance_stg__account_unappliedbalance", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_unappliedbalance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_unappliedcreditmemoamount": {"name": "analytics___finance_stg__account_unappliedcreditmemoamount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_unappliedcreditmemoamount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_updatedbyid": {"name": "analytics___finance_stg__account_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_updateddate": {"name": "analytics___finance_stg__account_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__account_vatid": {"name": "analytics___finance_stg__account_vatid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__account/analytics___finance_stg__account.md", "unique_id": "doc.yoda.analytics___finance_stg__account_vatid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__contact": {"name": "analytics___finance_stg__contact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__contact/analytics___finance_stg__contact.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__contact/analytics___finance_stg__contact.md", "unique_id": "doc.yoda.analytics___finance_stg__contact", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance__base_invoice": {"name": "analytics___finance__base_invoice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance__base_invoice", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__invoice_accountid": {"name": "analytics___finance_stg__invoice_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_adjustmentamount": {"name": "analytics___finance_stg__invoice_adjustmentamount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_adjustmentamount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_amount": {"name": "analytics___finance_stg__invoice_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_amountwithouttax": {"name": "analytics___finance_stg__invoice_amountwithouttax", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_amountwithouttax", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_autopay": {"name": "analytics___finance_stg__invoice_autopay", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_autopay", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_balance": {"name": "analytics___finance_stg__invoice_balance", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_billtocontactid": {"name": "analytics___finance_stg__invoice_billtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_billtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_billtocontactsnapshotid": {"name": "analytics___finance_stg__invoice_billtocontactsnapshotid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_billtocontactsnapshotid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_comments": {"name": "analytics___finance_stg__invoice_comments", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_comments", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_createdbyid": {"name": "analytics___finance_stg__invoice_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_createddate": {"name": "analytics___finance_stg__invoice_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_creditbalanceadjustmentamount": {"name": "analytics___finance_stg__invoice_creditbalanceadjustmentamount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_creditbalanceadjustmentamount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_defaultpaymentmethodid": {"name": "analytics___finance_stg__invoice_defaultpaymentmethodid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_defaultpaymentmethodid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_deleted": {"name": "analytics___finance_stg__invoice_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_duedate": {"name": "analytics___finance_stg__invoice_duedate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_duedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_id": {"name": "analytics___finance_stg__invoice_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_includesonetime": {"name": "analytics___finance_stg__invoice_includesonetime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_includesonetime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_includesrecurring": {"name": "analytics___finance_stg__invoice_includesrecurring", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_includesrecurring", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_includesusage": {"name": "analytics___finance_stg__invoice_includesusage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_includesusage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_integrationid_ns": {"name": "analytics___finance_stg__invoice_integrationid_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_integrationid_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_integrationstatus_ns": {"name": "analytics___finance_stg__invoice_integrationstatus_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_integrationstatus_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_invoiceconversionamount_c": {"name": "analytics___finance_stg__invoice_invoiceconversionamount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_invoiceconversionamount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_invoiceconversionamountbeforetax_c": {"name": "analytics___finance_stg__invoice_invoiceconversionamountbeforetax_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_invoiceconversionamountbeforetax_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_invoiceconversioncurrency_c": {"name": "analytics___finance_stg__invoice_invoiceconversioncurrency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_invoiceconversioncurrency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_invoiceconversionrate_c": {"name": "analytics___finance_stg__invoice_invoiceconversionrate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_invoiceconversionrate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_invoicedate": {"name": "analytics___finance_stg__invoice_invoicedate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_invoicedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_invoicenumber": {"name": "analytics___finance_stg__invoice_invoicenumber", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_invoicenumber", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_lastemailsentdate": {"name": "analytics___finance_stg__invoice_lastemailsentdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_lastemailsentdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_parentaccountid": {"name": "analytics___finance_stg__invoice_parentaccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_parentaccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_paymentamount": {"name": "analytics___finance_stg__invoice_paymentamount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_paymentamount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_postedby": {"name": "analytics___finance_stg__invoice_postedby", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_postedby", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_posteddate": {"name": "analytics___finance_stg__invoice_posteddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_posteddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_refundamount": {"name": "analytics___finance_stg__invoice_refundamount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_refundamount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_reversed": {"name": "analytics___finance_stg__invoice_reversed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_reversed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_soldtocontactid": {"name": "analytics___finance_stg__invoice_soldtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_soldtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_soldtocontactsnapshotid": {"name": "analytics___finance_stg__invoice_soldtocontactsnapshotid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_soldtocontactsnapshotid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_source": {"name": "analytics___finance_stg__invoice_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_sourceid": {"name": "analytics___finance_stg__invoice_sourceid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_sourceid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_status": {"name": "analytics___finance_stg__invoice_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_syncdate_ns": {"name": "analytics___finance_stg__invoice_syncdate_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_syncdate_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_targetdate": {"name": "analytics___finance_stg__invoice_targetdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_targetdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_taxamount": {"name": "analytics___finance_stg__invoice_taxamount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_taxamount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_taxexemptamount": {"name": "analytics___finance_stg__invoice_taxexemptamount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_taxexemptamount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_taxmessage": {"name": "analytics___finance_stg__invoice_taxmessage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_taxmessage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_taxstatus": {"name": "analytics___finance_stg__invoice_taxstatus", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_taxstatus", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_transferredtoaccounting": {"name": "analytics___finance_stg__invoice_transferredtoaccounting", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_transferredtoaccounting", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_updatedbyid": {"name": "analytics___finance_stg__invoice_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoice_updateddate": {"name": "analytics___finance_stg__invoice_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoice/analytics___finance_stg__invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__invoice_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem": {"name": "analytics___finance_stg__invoiceitem", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__invoiceitem__sdc_batched_at": {"name": "analytics___finance_stg__invoiceitem__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem__sdc_extracted_at": {"name": "analytics___finance_stg__invoiceitem__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem__sdc_received_at": {"name": "analytics___finance_stg__invoiceitem__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem__sdc_sequence": {"name": "analytics___finance_stg__invoiceitem__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem__sdc_table_version": {"name": "analytics___finance_stg__invoiceitem__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_accountid": {"name": "analytics___finance_stg__invoiceitem_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_accountingcode": {"name": "analytics___finance_stg__invoiceitem_accountingcode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_accountingcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_accountingperiodid": {"name": "analytics___finance_stg__invoiceitem_accountingperiodid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_accountingperiodid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_accountreceivableaccountingcodeid": {"name": "analytics___finance_stg__invoiceitem_accountreceivableaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_accountreceivableaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_amendmentid": {"name": "analytics___finance_stg__invoiceitem_amendmentid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_amendmentid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_appliedtoinvoiceitemid": {"name": "analytics___finance_stg__invoiceitem_appliedtoinvoiceitemid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_appliedtoinvoiceitemid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_balance": {"name": "analytics___finance_stg__invoiceitem_balance", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_billtocontactid": {"name": "analytics___finance_stg__invoiceitem_billtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_billtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_billtocontactsnapshotid": {"name": "analytics___finance_stg__invoiceitem_billtocontactsnapshotid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_billtocontactsnapshotid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_chargeamount": {"name": "analytics___finance_stg__invoiceitem_chargeamount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_chargeamount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_chargedate": {"name": "analytics___finance_stg__invoiceitem_chargedate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_chargedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_chargename": {"name": "analytics___finance_stg__invoiceitem_chargename", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_chargename", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_createdbyid": {"name": "analytics___finance_stg__invoiceitem_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_createddate": {"name": "analytics___finance_stg__invoiceitem_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_d": {"name": "analytics___finance_stg__invoiceitem_d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_d", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_defaultpaymentmethodid": {"name": "analytics___finance_stg__invoiceitem_defaultpaymentmethodid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_defaultpaymentmethodid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_deferredrevenueaccountingcodeid": {"name": "analytics___finance_stg__invoiceitem_deferredrevenueaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_deferredrevenueaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_deleted": {"name": "analytics___finance_stg__invoiceitem_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_id": {"name": "analytics___finance_stg__invoiceitem_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_integrationid_ns": {"name": "analytics___finance_stg__invoiceitem_integrationid_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_integrationid_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_integrationstatus_ns": {"name": "analytics___finance_stg__invoiceitem_integrationstatus_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_integrationstatus_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_invoiceid": {"name": "analytics___finance_stg__invoiceitem_invoiceid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_invoiceid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_journalentryid": {"name": "analytics___finance_stg__invoiceitem_journalentryid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_journalentryid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_journalrunid": {"name": "analytics___finance_stg__invoiceitem_journalrunid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_journalrunid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_parentaccountid": {"name": "analytics___finance_stg__invoiceitem_parentaccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_parentaccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_processing_time": {"name": "analytics___finance_stg__invoiceitem_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_processingtype": {"name": "analytics___finance_stg__invoiceitem_processingtype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_processingtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_productid": {"name": "analytics___finance_stg__invoiceitem_productid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_productid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_productrateplanchargeid": {"name": "analytics___finance_stg__invoiceitem_productrateplanchargeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_productrateplanchargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_productrateplanid": {"name": "analytics___finance_stg__invoiceitem_productrateplanid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_productrateplanid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_quantity": {"name": "analytics___finance_stg__invoiceitem_quantity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_rateplanchargeid": {"name": "analytics___finance_stg__invoiceitem_rateplanchargeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_rateplanchargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_rateplanid": {"name": "analytics___finance_stg__invoiceitem_rateplanid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_rateplanid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_recognizedrevenueaccountingcodeid": {"name": "analytics___finance_stg__invoiceitem_recognizedrevenueaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_recognizedrevenueaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_serviceenddate": {"name": "analytics___finance_stg__invoiceitem_serviceenddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_serviceenddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_servicestartdate": {"name": "analytics___finance_stg__invoiceitem_servicestartdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_servicestartdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_sku": {"name": "analytics___finance_stg__invoiceitem_sku", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_soldtocontactid": {"name": "analytics___finance_stg__invoiceitem_soldtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_soldtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_soldtocontactsnapshotid": {"name": "analytics___finance_stg__invoiceitem_soldtocontactsnapshotid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_soldtocontactsnapshotid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_subscriptionid": {"name": "analytics___finance_stg__invoiceitem_subscriptionid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_subscriptionid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_syncdate_ns": {"name": "analytics___finance_stg__invoiceitem_syncdate_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_syncdate_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_taxamount": {"name": "analytics___finance_stg__invoiceitem_taxamount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_taxamount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_taxcode": {"name": "analytics___finance_stg__invoiceitem_taxcode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_taxcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_taxexemptamount": {"name": "analytics___finance_stg__invoiceitem_taxexemptamount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_taxexemptamount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_taxmode": {"name": "analytics___finance_stg__invoiceitem_taxmode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_taxmode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_unitprice": {"name": "analytics___finance_stg__invoiceitem_unitprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_unitprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_uom": {"name": "analytics___finance_stg__invoiceitem_uom", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_uom", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_updatedbyid": {"name": "analytics___finance_stg__invoiceitem_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_updateddate": {"name": "analytics___finance_stg__invoiceitem_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__invoiceitem_upsolver_schema_version": {"name": "analytics___finance_stg__invoiceitem_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__invoiceitem/analytics___finance_stg__invoiceitem.md", "unique_id": "doc.yoda.analytics___finance_stg__invoiceitem_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__base_order": {"name": "analytics___finance__base_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance__base_order", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__order_accountid": {"name": "analytics___finance_stg__order_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_billtocontactid": {"name": "analytics___finance_stg__order_billtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_billtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_createdbyid": {"name": "analytics___finance_stg__order_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_createddate": {"name": "analytics___finance_stg__order_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_defaultpaymentmethodid": {"name": "analytics___finance_stg__order_defaultpaymentmethodid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_defaultpaymentmethodid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_deleted": {"name": "analytics___finance_stg__order_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_description": {"name": "analytics___finance_stg__order_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_id": {"name": "analytics___finance_stg__order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_orderdate": {"name": "analytics___finance_stg__order_orderdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_orderdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_ordernumber": {"name": "analytics___finance_stg__order_ordernumber", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_ordernumber", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_parentaccountid": {"name": "analytics___finance_stg__order_parentaccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_parentaccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_provisiondate_c": {"name": "analytics___finance_stg__order_provisiondate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_provisiondate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_soldtocontactid": {"name": "analytics___finance_stg__order_soldtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_soldtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_updatedbyid": {"name": "analytics___finance_stg__order_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__order_updateddate": {"name": "analytics___finance_stg__order_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__order/analytics___finance_stg__order.md", "unique_id": "doc.yoda.analytics___finance_stg__order_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__base_orderaction": {"name": "analytics___finance__base_orderaction", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance__base_orderaction", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__orderaction_accountid": {"name": "analytics___finance_stg__orderaction_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_billtocontactid": {"name": "analytics___finance_stg__orderaction_billtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_billtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_contracteffectivedate": {"name": "analytics___finance_stg__orderaction_contracteffectivedate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_contracteffectivedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_createdbyid": {"name": "analytics___finance_stg__orderaction_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_createddate": {"name": "analytics___finance_stg__orderaction_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_customeracceptancedate": {"name": "analytics___finance_stg__orderaction_customeracceptancedate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_customeracceptancedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_defaultpaymentmethodid": {"name": "analytics___finance_stg__orderaction_defaultpaymentmethodid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_defaultpaymentmethodid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_deleted": {"name": "analytics___finance_stg__orderaction_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_downgradedpackage_c": {"name": "analytics___finance_stg__orderaction_downgradedpackage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_downgradedpackage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_id": {"name": "analytics___finance_stg__orderaction_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_orderid": {"name": "analytics___finance_stg__orderaction_orderid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_orderid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_parentaccountid": {"name": "analytics___finance_stg__orderaction_parentaccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_parentaccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_provisiondone_c": {"name": "analytics___finance_stg__orderaction_provisiondone_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_provisiondone_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_serviceactivation_c": {"name": "analytics___finance_stg__orderaction_serviceactivation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_serviceactivation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_serviceactivationdate": {"name": "analytics___finance_stg__orderaction_serviceactivationdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_serviceactivationdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_soldtocontactid": {"name": "analytics___finance_stg__orderaction_soldtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_soldtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_subscriptionid": {"name": "analytics___finance_stg__orderaction_subscriptionid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_subscriptionid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_subscriptionversionamendmentid": {"name": "analytics___finance_stg__orderaction_subscriptionversionamendmentid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_subscriptionversionamendmentid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_type": {"name": "analytics___finance_stg__orderaction_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_updatedbyid": {"name": "analytics___finance_stg__orderaction_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__orderaction_updateddate": {"name": "analytics___finance_stg__orderaction_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__orderaction/analytics___finance_stg__orderaction.md", "unique_id": "doc.yoda.analytics___finance_stg__orderaction_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__base_ordermrr": {"name": "analytics___finance__base_ordermrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance__base_ordermrr", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__ordermrr_accountid": {"name": "analytics___finance_stg__ordermrr_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_amendmentid": {"name": "analytics___finance_stg__ordermrr_amendmentid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_amendmentid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_billtocontactid": {"name": "analytics___finance_stg__ordermrr_billtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_billtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_createdbyid": {"name": "analytics___finance_stg__ordermrr_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_createddate": {"name": "analytics___finance_stg__ordermrr_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_defaultpaymentmethodid": {"name": "analytics___finance_stg__ordermrr_defaultpaymentmethodid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_defaultpaymentmethodid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_deleted": {"name": "analytics___finance_stg__ordermrr_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_discountchargeid": {"name": "analytics___finance_stg__ordermrr_discountchargeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_discountchargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_enddate": {"name": "analytics___finance_stg__ordermrr_enddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_enddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_id": {"name": "analytics___finance_stg__ordermrr_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_invoiceownerid": {"name": "analytics___finance_stg__ordermrr_invoiceownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_invoiceownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_orderactionid": {"name": "analytics___finance_stg__ordermrr_orderactionid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_orderactionid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_orderid": {"name": "analytics___finance_stg__ordermrr_orderid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_orderid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_parentaccountid": {"name": "analytics___finance_stg__ordermrr_parentaccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_parentaccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_productid": {"name": "analytics___finance_stg__ordermrr_productid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_productid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_productrateplanchargeid": {"name": "analytics___finance_stg__ordermrr_productrateplanchargeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_productrateplanchargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_productrateplanid": {"name": "analytics___finance_stg__ordermrr_productrateplanid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_productrateplanid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_rateplanchargeid": {"name": "analytics___finance_stg__ordermrr_rateplanchargeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_rateplanchargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_rateplanid": {"name": "analytics___finance_stg__ordermrr_rateplanid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_rateplanid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_soldtocontactid": {"name": "analytics___finance_stg__ordermrr_soldtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_soldtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_startdate": {"name": "analytics___finance_stg__ordermrr_startdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_startdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_subscriptionid": {"name": "analytics___finance_stg__ordermrr_subscriptionid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_subscriptionid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_subscriptionownerid": {"name": "analytics___finance_stg__ordermrr_subscriptionownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_subscriptionownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_subscriptionversionamendmentid": {"name": "analytics___finance_stg__ordermrr_subscriptionversionamendmentid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_subscriptionversionamendmentid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_term": {"name": "analytics___finance_stg__ordermrr_term", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_type": {"name": "analytics___finance_stg__ordermrr_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_updatedbyid": {"name": "analytics___finance_stg__ordermrr_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_updateddate": {"name": "analytics___finance_stg__ordermrr_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__ordermrr_value": {"name": "analytics___finance_stg__ordermrr_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__ordermrr/analytics___finance_stg__ordermrr.md", "unique_id": "doc.yoda.analytics___finance_stg__ordermrr_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__base_product": {"name": "analytics___finance__base_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance__base_product", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__product_allowfeaturechanges": {"name": "analytics___finance_stg__product_allowfeaturechanges", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_allowfeaturechanges", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_category": {"name": "analytics___finance_stg__product_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_corepackage_c": {"name": "analytics___finance_stg__product_corepackage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_corepackage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_createdbyid": {"name": "analytics___finance_stg__product_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_createddate": {"name": "analytics___finance_stg__product_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_deleted": {"name": "analytics___finance_stg__product_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_description": {"name": "analytics___finance_stg__product_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_effectiveenddate": {"name": "analytics___finance_stg__product_effectiveenddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_effectiveenddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_effectivestartdate": {"name": "analytics___finance_stg__product_effectivestartdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_effectivestartdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_id": {"name": "analytics___finance_stg__product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_integrationid_ns": {"name": "analytics___finance_stg__product_integrationid_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_integrationid_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_integrationstatus_ns": {"name": "analytics___finance_stg__product_integrationstatus_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_integrationstatus_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_itemtype_ns": {"name": "analytics___finance_stg__product_itemtype_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_itemtype_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_name": {"name": "analytics___finance_stg__product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_plan_metadata_c": {"name": "analytics___finance_stg__product_plan_metadata_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_plan_metadata_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_productfamily_c": {"name": "analytics___finance_stg__product_productfamily_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_productfamily_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_provisioned_package_c": {"name": "analytics___finance_stg__product_provisioned_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_provisioned_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_provisionrequired_c": {"name": "analytics___finance_stg__product_provisionrequired_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_provisionrequired_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_sku": {"name": "analytics___finance_stg__product_sku", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_syncdate_ns": {"name": "analytics___finance_stg__product_syncdate_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_syncdate_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_taxengine_c": {"name": "analytics___finance_stg__product_taxengine_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_taxengine_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_updatedbyid": {"name": "analytics___finance_stg__product_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__product_updateddate": {"name": "analytics___finance_stg__product_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__product/analytics___finance_stg__product.md", "unique_id": "doc.yoda.analytics___finance_stg__product_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan": {"name": "analytics___finance_stg__productrateplan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__productrateplan_billingperiod_ns": {"name": "analytics___finance_stg__productrateplan_billingperiod_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_billingperiod_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_class_ns": {"name": "analytics___finance_stg__productrateplan_class_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_class_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_createdbyid": {"name": "analytics___finance_stg__productrateplan_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_createddate": {"name": "analytics___finance_stg__productrateplan_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_deleted": {"name": "analytics___finance_stg__productrateplan_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_department_ns": {"name": "analytics___finance_stg__productrateplan_department_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_department_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_description": {"name": "analytics___finance_stg__productrateplan_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_effectiveenddate": {"name": "analytics___finance_stg__productrateplan_effectiveenddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_effectiveenddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_effectivestartdate": {"name": "analytics___finance_stg__productrateplan_effectivestartdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_effectivestartdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_id": {"name": "analytics___finance_stg__productrateplan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_includechildren_ns": {"name": "analytics___finance_stg__productrateplan_includechildren_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_includechildren_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_integrationid_ns": {"name": "analytics___finance_stg__productrateplan_integrationid_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_integrationid_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_integrationstatus_ns": {"name": "analytics___finance_stg__productrateplan_integrationstatus_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_integrationstatus_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_itemtype_ns": {"name": "analytics___finance_stg__productrateplan_itemtype_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_itemtype_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_location_ns": {"name": "analytics___finance_stg__productrateplan_location_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_location_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_multicurrencyprice_ns": {"name": "analytics___finance_stg__productrateplan_multicurrencyprice_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_multicurrencyprice_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_name": {"name": "analytics___finance_stg__productrateplan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_price_ns": {"name": "analytics___finance_stg__productrateplan_price_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_price_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_productid": {"name": "analytics___finance_stg__productrateplan_productid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_productid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_subsidiary_ns": {"name": "analytics___finance_stg__productrateplan_subsidiary_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_subsidiary_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_syncdate_ns": {"name": "analytics___finance_stg__productrateplan_syncdate_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_syncdate_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_taxcode_ns": {"name": "analytics___finance_stg__productrateplan_taxcode_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_taxcode_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_updatedbyid": {"name": "analytics___finance_stg__productrateplan_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplan_updateddate": {"name": "analytics___finance_stg__productrateplan_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplan/analytics___finance_stg__productrateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplan_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge": {"name": "analytics___finance_stg__productrateplancharge", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__productrateplancharge_accountingcode": {"name": "analytics___finance_stg__productrateplancharge_accountingcode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_accountingcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_accountreceivableaccountingcodeid": {"name": "analytics___finance_stg__productrateplancharge_accountreceivableaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_accountreceivableaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_adjustmentliabilityaccountingcodeid": {"name": "analytics___finance_stg__productrateplancharge_adjustmentliabilityaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_adjustmentliabilityaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_adjustmentrevenueaccountingcodeid": {"name": "analytics___finance_stg__productrateplancharge_adjustmentrevenueaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_adjustmentrevenueaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_allocationeligible_zrev_c": {"name": "analytics___finance_stg__productrateplancharge_allocationeligible_zrev_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_allocationeligible_zrev_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_applydiscountto": {"name": "analytics___finance_stg__productrateplancharge_applydiscountto", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_applydiscountto", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_billcycleday": {"name": "analytics___finance_stg__productrateplancharge_billcycleday", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_billcycleday", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_billcycletype": {"name": "analytics___finance_stg__productrateplancharge_billcycletype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_billcycletype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_billingperiod": {"name": "analytics___finance_stg__productrateplancharge_billingperiod", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_billingperiod", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_billingperiodalignment": {"name": "analytics___finance_stg__productrateplancharge_billingperiodalignment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_billingperiodalignment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_billingtiming": {"name": "analytics___finance_stg__productrateplancharge_billingtiming", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_billingtiming", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_chargemodel": {"name": "analytics___finance_stg__productrateplancharge_chargemodel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_chargemodel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_chargetype": {"name": "analytics___finance_stg__productrateplancharge_chargetype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_chargetype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_class_ns": {"name": "analytics___finance_stg__productrateplancharge_class_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_class_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_contractassetaccountingcodeid": {"name": "analytics___finance_stg__productrateplancharge_contractassetaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_contractassetaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_contractliabilityaccountingcodeid": {"name": "analytics___finance_stg__productrateplancharge_contractliabilityaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_contractliabilityaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_contractrecognizedrevenueaccountingcodeid": {"name": "analytics___finance_stg__productrateplancharge_contractrecognizedrevenueaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_contractrecognizedrevenueaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_createdbyid": {"name": "analytics___finance_stg__productrateplancharge_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_createddate": {"name": "analytics___finance_stg__productrateplancharge_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_defaultquantity": {"name": "analytics___finance_stg__productrateplancharge_defaultquantity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_defaultquantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_deferredrevaccount_ns": {"name": "analytics___finance_stg__productrateplancharge_deferredrevaccount_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_deferredrevaccount_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_deferredrevenueaccount": {"name": "analytics___finance_stg__productrateplancharge_deferredrevenueaccount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_deferredrevenueaccount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_deferredrevenueaccountingcodeid": {"name": "analytics___finance_stg__productrateplancharge_deferredrevenueaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_deferredrevenueaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_deleted": {"name": "analytics___finance_stg__productrateplancharge_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_department_ns": {"name": "analytics___finance_stg__productrateplancharge_department_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_department_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_description": {"name": "analytics___finance_stg__productrateplancharge_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_discountclassid": {"name": "analytics___finance_stg__productrateplancharge_discountclassid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_discountclassid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_discountlevel": {"name": "analytics___finance_stg__productrateplancharge_discountlevel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_discountlevel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_enddatecondition": {"name": "analytics___finance_stg__productrateplancharge_enddatecondition", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_enddatecondition", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_excludefromrevenue_c": {"name": "analytics___finance_stg__productrateplancharge_excludefromrevenue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_excludefromrevenue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_excludeitembillingfromrevenueaccounting": {"name": "analytics___finance_stg__productrateplancharge_excludeitembillingfromrevenueaccounting", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_excludeitembillingfromrevenueaccounting", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_excludeitembookingfromrevenueaccounting": {"name": "analytics___finance_stg__productrateplancharge_excludeitembookingfromrevenueaccounting", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_excludeitembookingfromrevenueaccounting", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_id": {"name": "analytics___finance_stg__productrateplancharge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_includechildren_ns": {"name": "analytics___finance_stg__productrateplancharge_includechildren_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_includechildren_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_includedunits": {"name": "analytics___finance_stg__productrateplancharge_includedunits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_includedunits", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_integrationid_ns": {"name": "analytics___finance_stg__productrateplancharge_integrationid_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_integrationid_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_integrationstatus_ns": {"name": "analytics___finance_stg__productrateplancharge_integrationstatus_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_integrationstatus_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_itemtype_ns": {"name": "analytics___finance_stg__productrateplancharge_itemtype_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_itemtype_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_legacyrevenuereporting": {"name": "analytics___finance_stg__productrateplancharge_legacyrevenuereporting", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_legacyrevenuereporting", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_listpricebase": {"name": "analytics___finance_stg__productrateplancharge_listpricebase", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_listpricebase", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_location_ns": {"name": "analytics___finance_stg__productrateplancharge_location_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_location_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_name": {"name": "analytics___finance_stg__productrateplancharge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_numberofperiod": {"name": "analytics___finance_stg__productrateplancharge_numberofperiod", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_numberofperiod", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_overagecalculationoption": {"name": "analytics___finance_stg__productrateplancharge_overagecalculationoption", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_overagecalculationoption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_overageunusedunitscreditoption": {"name": "analytics___finance_stg__productrateplancharge_overageunusedunitscreditoption", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_overageunusedunitscreditoption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_pobidentifier_zrev_c": {"name": "analytics___finance_stg__productrateplancharge_pobidentifier_zrev_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_pobidentifier_zrev_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_pricechangeoption": {"name": "analytics___finance_stg__productrateplancharge_pricechangeoption", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_pricechangeoption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_priceincreasepercentage": {"name": "analytics___finance_stg__productrateplancharge_priceincreasepercentage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_priceincreasepercentage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_productid": {"name": "analytics___finance_stg__productrateplancharge_productid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_productid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_productrateplanid": {"name": "analytics___finance_stg__productrateplancharge_productrateplanid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_productrateplanid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_ratinggroup": {"name": "analytics___finance_stg__productrateplancharge_ratinggroup", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_ratinggroup", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_recognizedrevaccount_ns": {"name": "analytics___finance_stg__productrateplancharge_recognizedrevaccount_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_recognizedrevaccount_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_recognizedrevenueaccount": {"name": "analytics___finance_stg__productrateplancharge_recognizedrevenueaccount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_recognizedrevenueaccount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_recognizedrevenueaccountingcodeid": {"name": "analytics___finance_stg__productrateplancharge_recognizedrevenueaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_recognizedrevenueaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_revenuerecognitionrulename": {"name": "analytics___finance_stg__productrateplancharge_revenuerecognitionrulename", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_revenuerecognitionrulename", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_revreccode": {"name": "analytics___finance_stg__productrateplancharge_revreccode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_revreccode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_revrecend_ns": {"name": "analytics___finance_stg__productrateplancharge_revrecend_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_revrecend_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_revrecstart_ns": {"name": "analytics___finance_stg__productrateplancharge_revrecstart_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_revrecstart_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_revrectemplatetype_ns": {"name": "analytics___finance_stg__productrateplancharge_revrectemplatetype_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_revrectemplatetype_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_revrectriggercondition": {"name": "analytics___finance_stg__productrateplancharge_revrectriggercondition", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_revrectriggercondition", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_smoothingmodel": {"name": "analytics___finance_stg__productrateplancharge_smoothingmodel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_smoothingmodel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_subsidiary_ns": {"name": "analytics___finance_stg__productrateplancharge_subsidiary_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_subsidiary_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_syncdate_ns": {"name": "analytics___finance_stg__productrateplancharge_syncdate_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_syncdate_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_taxable": {"name": "analytics___finance_stg__productrateplancharge_taxable", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_taxable", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_taxcode": {"name": "analytics___finance_stg__productrateplancharge_taxcode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_taxcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_taxmode": {"name": "analytics___finance_stg__productrateplancharge_taxmode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_taxmode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_triggerevent": {"name": "analytics___finance_stg__productrateplancharge_triggerevent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_triggerevent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_unbilledreceivablesaccountingcodeid": {"name": "analytics___finance_stg__productrateplancharge_unbilledreceivablesaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_unbilledreceivablesaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_uom": {"name": "analytics___finance_stg__productrateplancharge_uom", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_uom", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_updatedbyid": {"name": "analytics___finance_stg__productrateplancharge_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_updateddate": {"name": "analytics___finance_stg__productrateplancharge_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_uptoperiodstype": {"name": "analytics___finance_stg__productrateplancharge_uptoperiodstype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_uptoperiodstype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_usagerecordratingoption": {"name": "analytics___finance_stg__productrateplancharge_usagerecordratingoption", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_usagerecordratingoption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_usediscountspecificaccountingcode": {"name": "analytics___finance_stg__productrateplancharge_usediscountspecificaccountingcode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_usediscountspecificaccountingcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_usetenantdefaultforpricechange": {"name": "analytics___finance_stg__productrateplancharge_usetenantdefaultforpricechange", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_usetenantdefaultforpricechange", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_vceligible_zrev_c": {"name": "analytics___finance_stg__productrateplancharge_vceligible_zrev_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_vceligible_zrev_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__productrateplancharge_weeklybillcycleday": {"name": "analytics___finance_stg__productrateplancharge_weeklybillcycleday", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__productrateplancharge/analytics___finance_stg__productrateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__productrateplancharge_weeklybillcycleday", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__base_rateplan": {"name": "analytics___finance__base_rateplan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance__base_rateplan", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__rateplan_accountid": {"name": "analytics___finance_stg__rateplan_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_amendmentid": {"name": "analytics___finance_stg__rateplan_amendmentid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_amendmentid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_amendmenttype": {"name": "analytics___finance_stg__rateplan_amendmenttype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_amendmenttype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_billtocontactid": {"name": "analytics___finance_stg__rateplan_billtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_billtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_createdbyid": {"name": "analytics___finance_stg__rateplan_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_createddate": {"name": "analytics___finance_stg__rateplan_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_defaultpaymentmethodid": {"name": "analytics___finance_stg__rateplan_defaultpaymentmethodid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_defaultpaymentmethodid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_deleted": {"name": "analytics___finance_stg__rateplan_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_id": {"name": "analytics___finance_stg__rateplan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_name": {"name": "analytics___finance_stg__rateplan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_parentaccountid": {"name": "analytics___finance_stg__rateplan_parentaccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_parentaccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_product_family_c": {"name": "analytics___finance_stg__rateplan_product_family_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_product_family_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_productid": {"name": "analytics___finance_stg__rateplan_productid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_productid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_productrateplanid": {"name": "analytics___finance_stg__rateplan_productrateplanid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_productrateplanid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_soldtocontactid": {"name": "analytics___finance_stg__rateplan_soldtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_soldtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_subscriptionid": {"name": "analytics___finance_stg__rateplan_subscriptionid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_subscriptionid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_subscriptionversionamendmentid": {"name": "analytics___finance_stg__rateplan_subscriptionversionamendmentid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_subscriptionversionamendmentid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_total_price_c": {"name": "analytics___finance_stg__rateplan_total_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_total_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_updatedbyid": {"name": "analytics___finance_stg__rateplan_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplan_updateddate": {"name": "analytics___finance_stg__rateplan_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplan/analytics___finance_stg__rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplan_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge": {"name": "analytics___finance_stg__rateplancharge", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__rateplancharge_accountid": {"name": "analytics___finance_stg__rateplancharge_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_accountingcode": {"name": "analytics___finance_stg__rateplancharge_accountingcode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_accountingcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_accountreceivableaccountingcodeid": {"name": "analytics___finance_stg__rateplancharge_accountreceivableaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_accountreceivableaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_amendedbyorderon": {"name": "analytics___finance_stg__rateplancharge_amendedbyorderon", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_amendedbyorderon", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_amendmentid": {"name": "analytics___finance_stg__rateplancharge_amendmentid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_amendmentid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_applydiscountto": {"name": "analytics___finance_stg__rateplancharge_applydiscountto", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_applydiscountto", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_billcycleday": {"name": "analytics___finance_stg__rateplancharge_billcycleday", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_billcycleday", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_billcycletype": {"name": "analytics___finance_stg__rateplancharge_billcycletype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_billcycletype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_billingperiod": {"name": "analytics___finance_stg__rateplancharge_billingperiod", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_billingperiod", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_billingperiodalignment": {"name": "analytics___finance_stg__rateplancharge_billingperiodalignment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_billingperiodalignment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_billingtiming": {"name": "analytics___finance_stg__rateplancharge_billingtiming", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_billingtiming", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_billtocontactid": {"name": "analytics___finance_stg__rateplancharge_billtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_billtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_bundlename_c": {"name": "analytics___finance_stg__rateplancharge_bundlename_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_bundlename_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_bundlesku_c": {"name": "analytics___finance_stg__rateplancharge_bundlesku_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_bundlesku_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_bundleyesno_c": {"name": "analytics___finance_stg__rateplancharge_bundleyesno_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_bundleyesno_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_bundleyn_c": {"name": "analytics___finance_stg__rateplancharge_bundleyn_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_bundleyn_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_chargedthroughdate": {"name": "analytics___finance_stg__rateplancharge_chargedthroughdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_chargedthroughdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_chargemodel": {"name": "analytics___finance_stg__rateplancharge_chargemodel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_chargemodel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_chargenumber": {"name": "analytics___finance_stg__rateplancharge_chargenumber", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_chargenumber", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_chargetype": {"name": "analytics___finance_stg__rateplancharge_chargetype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_chargetype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_createdbyid": {"name": "analytics___finance_stg__rateplancharge_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_createddate": {"name": "analytics___finance_stg__rateplancharge_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_defaultpaymentmethodid": {"name": "analytics___finance_stg__rateplancharge_defaultpaymentmethodid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_defaultpaymentmethodid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_deferredrevenueaccountingcodeid": {"name": "analytics___finance_stg__rateplancharge_deferredrevenueaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_deferredrevenueaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_deleted": {"name": "analytics___finance_stg__rateplancharge_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_description": {"name": "analytics___finance_stg__rateplancharge_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_discountlevel": {"name": "analytics___finance_stg__rateplancharge_discountlevel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_discountlevel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_dmrc": {"name": "analytics___finance_stg__rateplancharge_dmrc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_dmrc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_dtcv": {"name": "analytics___finance_stg__rateplancharge_dtcv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_dtcv", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_effectiveenddate": {"name": "analytics___finance_stg__rateplancharge_effectiveenddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_effectiveenddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_effectivestartdate": {"name": "analytics___finance_stg__rateplancharge_effectivestartdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_effectivestartdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_enddatecondition": {"name": "analytics___finance_stg__rateplancharge_enddatecondition", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_enddatecondition", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_excludeitembillingfromrevenueaccounting": {"name": "analytics___finance_stg__rateplancharge_excludeitembillingfromrevenueaccounting", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_excludeitembillingfromrevenueaccounting", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_excludeitembookingfromrevenueaccounting": {"name": "analytics___finance_stg__rateplancharge_excludeitembookingfromrevenueaccounting", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_excludeitembookingfromrevenueaccounting", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_freedayschargeflag_c": {"name": "analytics___finance_stg__rateplancharge_freedayschargeflag_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_freedayschargeflag_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_id": {"name": "analytics___finance_stg__rateplancharge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_islastsegment": {"name": "analytics___finance_stg__rateplancharge_islastsegment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_islastsegment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_isprepaid": {"name": "analytics___finance_stg__rateplancharge_isprepaid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_isprepaid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_isprocessed": {"name": "analytics___finance_stg__rateplancharge_isprocessed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_isprocessed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_listpricebase": {"name": "analytics___finance_stg__rateplancharge_listpricebase", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_listpricebase", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_mrr": {"name": "analytics___finance_stg__rateplancharge_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_mrr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_name": {"name": "analytics___finance_stg__rateplancharge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_numberofperiods": {"name": "analytics___finance_stg__rateplancharge_numberofperiods", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_numberofperiods", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_optoutduration_c": {"name": "analytics___finance_stg__rateplancharge_optoutduration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_optoutduration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_originalid": {"name": "analytics___finance_stg__rateplancharge_originalid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_originalid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_originalorderdate": {"name": "analytics___finance_stg__rateplancharge_originalorderdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_originalorderdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_overagecalculationoption": {"name": "analytics___finance_stg__rateplancharge_overagecalculationoption", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_overagecalculationoption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_overageunusedunitscreditoption": {"name": "analytics___finance_stg__rateplancharge_overageunusedunitscreditoption", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_overageunusedunitscreditoption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_parentaccountid": {"name": "analytics___finance_stg__rateplancharge_parentaccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_parentaccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_prepaidoperationtype": {"name": "analytics___finance_stg__rateplancharge_prepaidoperationtype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_prepaidoperationtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_prepaiduom": {"name": "analytics___finance_stg__rateplancharge_prepaiduom", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_prepaiduom", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_pricechangeoption": {"name": "analytics___finance_stg__rateplancharge_pricechangeoption", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_pricechangeoption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_priceincreasepercentage": {"name": "analytics___finance_stg__rateplancharge_priceincreasepercentage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_priceincreasepercentage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_processedthroughdate": {"name": "analytics___finance_stg__rateplancharge_processedthroughdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_processedthroughdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_productid": {"name": "analytics___finance_stg__rateplancharge_productid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_productid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_productrateplanchargeid": {"name": "analytics___finance_stg__rateplancharge_productrateplanchargeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_productrateplanchargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_productrateplanid": {"name": "analytics___finance_stg__rateplancharge_productrateplanid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_productrateplanid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_quantity": {"name": "analytics___finance_stg__rateplancharge_quantity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_rateplanid": {"name": "analytics___finance_stg__rateplancharge_rateplanid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_rateplanid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_ratinggroup": {"name": "analytics___finance_stg__rateplancharge_ratinggroup", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_ratinggroup", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_recognizedrevenueaccountingcodeid": {"name": "analytics___finance_stg__rateplancharge_recognizedrevenueaccountingcodeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_recognizedrevenueaccountingcodeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_revenuerecognitionrulename": {"name": "analytics___finance_stg__rateplancharge_revenuerecognitionrulename", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_revenuerecognitionrulename", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_revreccode": {"name": "analytics___finance_stg__rateplancharge_revreccode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_revreccode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_revrectriggercondition": {"name": "analytics___finance_stg__rateplancharge_revrectriggercondition", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_revrectriggercondition", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_segment": {"name": "analytics___finance_stg__rateplancharge_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_segment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_soldtocontactid": {"name": "analytics___finance_stg__rateplancharge_soldtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_soldtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_subscriptionid": {"name": "analytics___finance_stg__rateplancharge_subscriptionid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_subscriptionid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_tcv": {"name": "analytics___finance_stg__rateplancharge_tcv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_tcv", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_triggerevent": {"name": "analytics___finance_stg__rateplancharge_triggerevent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_triggerevent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_uom": {"name": "analytics___finance_stg__rateplancharge_uom", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_uom", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_updatedbyid": {"name": "analytics___finance_stg__rateplancharge_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_updateddate": {"name": "analytics___finance_stg__rateplancharge_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_uptoperiodstype": {"name": "analytics___finance_stg__rateplancharge_uptoperiodstype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_uptoperiodstype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_validityperiodtype": {"name": "analytics___finance_stg__rateplancharge_validityperiodtype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_validityperiodtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_version": {"name": "analytics___finance_stg__rateplancharge_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplancharge_weeklybillcycleday": {"name": "analytics___finance_stg__rateplancharge_weeklybillcycleday", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplancharge/analytics___finance_stg__rateplancharge.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplancharge_weeklybillcycleday", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier": {"name": "analytics___finance_stg__rateplanchargetier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_amendmentid": {"name": "analytics___finance_stg__rateplanchargetier_amendmentid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_amendmentid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_createdbyid": {"name": "analytics___finance_stg__rateplanchargetier_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_createddate": {"name": "analytics___finance_stg__rateplanchargetier_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_currency": {"name": "analytics___finance_stg__rateplanchargetier_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_deleted": {"name": "analytics___finance_stg__rateplanchargetier_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_discountpercentage": {"name": "analytics___finance_stg__rateplanchargetier_discountpercentage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_discountpercentage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_id": {"name": "analytics___finance_stg__rateplanchargetier_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_includedunits": {"name": "analytics___finance_stg__rateplanchargetier_includedunits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_includedunits", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_overageprice": {"name": "analytics___finance_stg__rateplanchargetier_overageprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_overageprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_price": {"name": "analytics___finance_stg__rateplanchargetier_price", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_priceformat": {"name": "analytics___finance_stg__rateplanchargetier_priceformat", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_priceformat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_productid": {"name": "analytics___finance_stg__rateplanchargetier_productid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_productid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_productrateplanchargeid": {"name": "analytics___finance_stg__rateplanchargetier_productrateplanchargeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_productrateplanchargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_productrateplanid": {"name": "analytics___finance_stg__rateplanchargetier_productrateplanid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_productrateplanid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_rateplanchargeid": {"name": "analytics___finance_stg__rateplanchargetier_rateplanchargeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_rateplanchargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_rateplanid": {"name": "analytics___finance_stg__rateplanchargetier_rateplanid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_rateplanid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_subscriptionid": {"name": "analytics___finance_stg__rateplanchargetier_subscriptionid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_subscriptionid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_tier": {"name": "analytics___finance_stg__rateplanchargetier_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_tier", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_updatedbyid": {"name": "analytics___finance_stg__rateplanchargetier_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__rateplanchargetier_updateddate": {"name": "analytics___finance_stg__rateplanchargetier_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__rateplanchargetier/analytics___finance_stg__rateplanchargetier.md", "unique_id": "doc.yoda.analytics___finance_stg__rateplanchargetier_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events": {"name": "analytics___finance_stg__shopify_billing_events", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_amount": {"name": "analytics___finance_stg__shopify_billing_events_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_appid": {"name": "analytics___finance_stg__shopify_billing_events_appid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_appid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_billedon": {"name": "analytics___finance_stg__shopify_billing_events_billedon", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_billedon", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_chargeid": {"name": "analytics___finance_stg__shopify_billing_events_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_chargename": {"name": "analytics___finance_stg__shopify_billing_events_chargename", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_chargename", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_eventtype": {"name": "analytics___finance_stg__shopify_billing_events_eventtype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_eventtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_occurredat": {"name": "analytics___finance_stg__shopify_billing_events_occurredat", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_occurredat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_platformtypename": {"name": "analytics___finance_stg__shopify_billing_events_platformtypename", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_platformtypename", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_processing_time": {"name": "analytics___finance_stg__shopify_billing_events_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_shopid": {"name": "analytics___finance_stg__shopify_billing_events_shopid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_shopid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_shopifydomain": {"name": "analytics___finance_stg__shopify_billing_events_shopifydomain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_shopifydomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_shopname": {"name": "analytics___finance_stg__shopify_billing_events_shopname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_shopname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_events_upsolver_schema_version": {"name": "analytics___finance_stg__shopify_billing_events_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__shopify_billing_events/analytics___finance_stg__shopify_billing_events.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_events_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance__base_subscription": {"name": "analytics___finance__base_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance__base_subscription", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___finance_stg__subscription_accountid": {"name": "analytics___finance_stg__subscription_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_actual_contract_duration_c": {"name": "analytics___finance_stg__subscription_actual_contract_duration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_actual_contract_duration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_autorenew": {"name": "analytics___finance_stg__subscription_autorenew", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_autorenew", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_billtocontactid": {"name": "analytics___finance_stg__subscription_billtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_billtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_cancelleddate": {"name": "analytics___finance_stg__subscription_cancelleddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_cancelleddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_contractacceptancedate": {"name": "analytics___finance_stg__subscription_contractacceptancedate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_contractacceptancedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_contracteffectivedate": {"name": "analytics___finance_stg__subscription_contracteffectivedate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_contracteffectivedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_cpqbundlejsonid_qt": {"name": "analytics___finance_stg__subscription_cpqbundlejsonid_qt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_cpqbundlejsonid_qt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_createdbyid": {"name": "analytics___finance_stg__subscription_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_createddate": {"name": "analytics___finance_stg__subscription_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_creatoraccountid": {"name": "analytics___finance_stg__subscription_creatoraccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_creatoraccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_creatorinvoiceownerid": {"name": "analytics___finance_stg__subscription_creatorinvoiceownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_creatorinvoiceownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_csm_extension_months_c": {"name": "analytics___finance_stg__subscription_csm_extension_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_csm_extension_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_currentterm": {"name": "analytics___finance_stg__subscription_currentterm", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_currentterm", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_currenttermperiodtype": {"name": "analytics___finance_stg__subscription_currenttermperiodtype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_currenttermperiodtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_defaultpaymentmethodid": {"name": "analytics___finance_stg__subscription_defaultpaymentmethodid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_defaultpaymentmethodid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_deleted": {"name": "analytics___finance_stg__subscription_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_downgraded_c": {"name": "analytics___finance_stg__subscription_downgraded_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_downgraded_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_end_of_contract_extension_month_c": {"name": "analytics___finance_stg__subscription_end_of_contract_extension_month_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_end_of_contract_extension_month_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_exclude_from_dunning_until_c": {"name": "analytics___finance_stg__subscription_exclude_from_dunning_until_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_exclude_from_dunning_until_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_excludefromdashboards_c": {"name": "analytics___finance_stg__subscription_excludefromdashboards_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_excludefromdashboards_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_id": {"name": "analytics___finance_stg__subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_includeinpastduefile_c": {"name": "analytics___finance_stg__subscription_includeinpastduefile_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_includeinpastduefile_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_initialterm": {"name": "analytics___finance_stg__subscription_initialterm", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_initialterm", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_initialtermperiodtype": {"name": "analytics___finance_stg__subscription_initialtermperiodtype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_initialtermperiodtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_integrationid_ns": {"name": "analytics___finance_stg__subscription_integrationid_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_integrationid_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_integrationstatus_ns": {"name": "analytics___finance_stg__subscription_integrationstatus_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_integrationstatus_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_invoiceownerid": {"name": "analytics___finance_stg__subscription_invoiceownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_invoiceownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_isinvoiceseparate": {"name": "analytics___finance_stg__subscription_isinvoiceseparate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_isinvoiceseparate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_ismigrationsubscription_c": {"name": "analytics___finance_stg__subscription_ismigrationsubscription_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_ismigrationsubscription_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_isstaggered_c": {"name": "analytics___finance_stg__subscription_isstaggered_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_isstaggered_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_name": {"name": "analytics___finance_stg__subscription_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_notes": {"name": "analytics___finance_stg__subscription_notes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_notes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_opportunityname_qt": {"name": "analytics___finance_stg__subscription_opportunityname_qt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_opportunityname_qt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_original_contract_duration_c": {"name": "analytics___finance_stg__subscription_original_contract_duration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_original_contract_duration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_originalcreateddate": {"name": "analytics___finance_stg__subscription_originalcreateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_originalcreateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_originalid": {"name": "analytics___finance_stg__subscription_originalid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_originalid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_originalrenewaldate_c": {"name": "analytics___finance_stg__subscription_originalrenewaldate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_originalrenewaldate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_parentaccountid": {"name": "analytics___finance_stg__subscription_parentaccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_parentaccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_previoussubscriptionid": {"name": "analytics___finance_stg__subscription_previoussubscriptionid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_previoussubscriptionid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_project_ns": {"name": "analytics___finance_stg__subscription_project_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_project_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_quotebusinesstype_qt": {"name": "analytics___finance_stg__subscription_quotebusinesstype_qt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_quotebusinesstype_qt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_quotenumber_qt": {"name": "analytics___finance_stg__subscription_quotenumber_qt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_quotenumber_qt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_quotetype_qt": {"name": "analytics___finance_stg__subscription_quotetype_qt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_quotetype_qt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_renewalfromsubscription_c": {"name": "analytics___finance_stg__subscription_renewalfromsubscription_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_renewalfromsubscription_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_renewalsetting": {"name": "analytics___finance_stg__subscription_renewalsetting", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_renewalsetting", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_renewalterm": {"name": "analytics___finance_stg__subscription_renewalterm", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_renewalterm", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_renewaltermperiodtype": {"name": "analytics___finance_stg__subscription_renewaltermperiodtype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_renewaltermperiodtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_salesorder_ns": {"name": "analytics___finance_stg__subscription_salesorder_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_salesorder_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_segment_c": {"name": "analytics___finance_stg__subscription_segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_serviceactivationdate": {"name": "analytics___finance_stg__subscription_serviceactivationdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_serviceactivationdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_sf_opportunityid_c": {"name": "analytics___finance_stg__subscription_sf_opportunityid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_sf_opportunityid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_soldtocontactid": {"name": "analytics___finance_stg__subscription_soldtocontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_soldtocontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_status": {"name": "analytics___finance_stg__subscription_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_subscriptionenddate": {"name": "analytics___finance_stg__subscription_subscriptionenddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_subscriptionenddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_subscriptionstartdate": {"name": "analytics___finance_stg__subscription_subscriptionstartdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_subscriptionstartdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_subscriptionversionamendmentid": {"name": "analytics___finance_stg__subscription_subscriptionversionamendmentid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_subscriptionversionamendmentid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_syncdate_ns": {"name": "analytics___finance_stg__subscription_syncdate_ns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_syncdate_ns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_termenddate": {"name": "analytics___finance_stg__subscription_termenddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_termenddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_termstartdate": {"name": "analytics___finance_stg__subscription_termstartdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_termstartdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_termtype": {"name": "analytics___finance_stg__subscription_termtype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_termtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_total_price_c": {"name": "analytics___finance_stg__subscription_total_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_total_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_trialsubscription": {"name": "analytics___finance_stg__subscription_trialsubscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_trialsubscription", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_updatedbyid": {"name": "analytics___finance_stg__subscription_updatedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_updatedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_updateddate": {"name": "analytics___finance_stg__subscription_updateddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_updateddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_upsctpcode_c": {"name": "analytics___finance_stg__subscription_upsctpcode_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_upsctpcode_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__subscription_version": {"name": "analytics___finance_stg__subscription_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "original_file_path": "models/analytics/finance/staging/base/analytics___finance_stg__subscription/analytics___finance_stg__subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__subscription_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___finance_stg__shopify_billing_event": {"name": "analytics___finance_stg__shopify_billing_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event", "block_contents": "Modeled View over shopify_billing_events"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_amount": {"name": "analytics___finance_stg__shopify_billing_event_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_amount", "block_contents": "amount = revenue"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_app_id": {"name": "analytics___finance_stg__shopify_billing_event_app_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_app_id", "block_contents": "internal id for product family"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_charge_id": {"name": "analytics___finance_stg__shopify_billing_event_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_charge_id", "block_contents": "shopify generated charge_id similar to zuora subscription_id"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_charge_name": {"name": "analytics___finance_stg__shopify_billing_event_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_charge_name", "block_contents": "shopify charge name (DO NOT RELY for plan name)"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_created_at": {"name": "analytics___finance_stg__shopify_billing_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_created_at", "block_contents": "event created at"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_created_date": {"name": "analytics___finance_stg__shopify_billing_event_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_created_date", "block_contents": "event created date"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_event_action": {"name": "analytics___finance_stg__shopify_billing_event_event_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_event_action", "block_contents": "action of the event category (i.e DECLINED, ACTIVATED, UNFROZEN, ACCEPTED)"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_event_category": {"name": "analytics___finance_stg__shopify_billing_event_event_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_event_category", "block_contents": "USAGE_CHARGE|SUBSCRIPTION_CHARGE|ONE_TIME_CHARGE|RELATIONSHIP|CREDIT"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_event_type": {"name": "analytics___finance_stg__shopify_billing_event_event_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_event_type", "block_contents": "category + action"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_is_active_unfrozen": {"name": "analytics___finance_stg__shopify_billing_event_is_active_unfrozen", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_is_active_unfrozen", "block_contents": "event_action LIKE '%ACTIVATED%' OR event_action LIKE '%UNFROZEN%'"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_is_cancel_frozen": {"name": "analytics___finance_stg__shopify_billing_event_is_cancel_frozen", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_is_cancel_frozen", "block_contents": "event_action LIKE '%CANCELED%' OR event_action LIKE '%FROZEN%'"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_is_loyalty": {"name": "analytics___finance_stg__shopify_billing_event_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_is_loyalty", "block_contents": "indicatore = 1 if app_id = 902876 (product_family = Loyalty)"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_is_sms": {"name": "analytics___finance_stg__shopify_billing_event_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_is_sms", "block_contents": "indicatore = 1 if app_id = 740217 (product_family can be SMS or Email or both)"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_is_subscription_charge": {"name": "analytics___finance_stg__shopify_billing_event_is_subscription_charge", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_is_subscription_charge", "block_contents": "indicator = 1 when event_category = 'SUBSCRIPTION_CHARGE'"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_is_subscriptions": {"name": "analytics___finance_stg__shopify_billing_event_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_is_subscriptions", "block_contents": "indicatore = 1 if app_id = 4818605 (product_family = Subscriptions)"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_is_ugc": {"name": "analytics___finance_stg__shopify_billing_event_is_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_is_ugc", "block_contents": "indicatore = 1 if app_id = 70132 (product can be Reviews or VMS or both)"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_is_usage": {"name": "analytics___finance_stg__shopify_billing_event_is_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_is_usage", "block_contents": "indicator = 1 when event_category = 'USAGE_CHARGE'"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_product_family": {"name": "analytics___finance_stg__shopify_billing_event_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_product_family", "block_contents": "comtains: UGC,SMS,Loyalty,Subscriptions"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_shop_id": {"name": "analytics___finance_stg__shopify_billing_event_shop_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_shop_id", "block_contents": "shopify generated shop_id"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_shop_name": {"name": "analytics___finance_stg__shopify_billing_event_shop_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_shop_name", "block_contents": "shop name in shopify. multiple name per shop_id since shop owner can change shop name"}, "doc.yoda.analytics___finance_stg__shopify_billing_event_shopify_domain": {"name": "analytics___finance_stg__shopify_billing_event_shopify_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__shopify_billing_event/analytics___finance_stg__shopify_billing_event.md", "unique_id": "doc.yoda.analytics___finance_stg__shopify_billing_event_shopify_domain", "block_contents": "shop domain in shopify. multiple domains per shop_id since shop owner can change shop domain"}, "doc.yoda.analytics___finance_stg__zuora_account": {"name": "analytics___finance_stg__zuora_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account", "block_contents": "Modeled VIEW of zuora account object"}, "doc.yoda.analytics___finance_stg__zuora_account_account_currency": {"name": "analytics___finance_stg__zuora_account_account_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_account_currency", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_account_id": {"name": "analytics___finance_stg__zuora_account_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_account_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_account_name": {"name": "analytics___finance_stg__zuora_account_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_account_name", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_account_number": {"name": "analytics___finance_stg__zuora_account_account_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_account_number", "block_contents": "Organization_key + addition"}, "doc.yoda.analytics___finance_stg__zuora_account_account_segment": {"name": "analytics___finance_stg__zuora_account_account_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_account_segment", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_account_status": {"name": "analytics___finance_stg__zuora_account_account_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_account_status", "block_contents": "Status: Active, Canceled"}, "doc.yoda.analytics___finance_stg__zuora_account_bill_to_contact_id": {"name": "analytics___finance_stg__zuora_account_bill_to_contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_bill_to_contact_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_child_organization_key": {"name": "analytics___finance_stg__zuora_account_child_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_child_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_communication_profile_id": {"name": "analytics___finance_stg__zuora_account_communication_profile_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_communication_profile_id", "block_contents": "Account's communication Profile (VIP/Self-Service/ Regular)"}, "doc.yoda.analytics___finance_stg__zuora_account_created_at": {"name": "analytics___finance_stg__zuora_account_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_default_payment_method_id": {"name": "analytics___finance_stg__zuora_account_default_payment_method_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_default_payment_method_id", "block_contents": "Default payment method ID (connects to zuora_payment_method)"}, "doc.yoda.analytics___finance_stg__zuora_account_dwh_updated_at": {"name": "analytics___finance_stg__zuora_account_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_is_deleted": {"name": "analytics___finance_stg__zuora_account_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_is_parent_account": {"name": "analytics___finance_stg__zuora_account_is_parent_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_is_parent_account", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_is_test_account": {"name": "analytics___finance_stg__zuora_account_is_test_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_is_test_account", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_organization_key": {"name": "analytics___finance_stg__zuora_account_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_parent_organization_key": {"name": "analytics___finance_stg__zuora_account_parent_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_parent_organization_key", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_payment_terms": {"name": "analytics___finance_stg__zuora_account_payment_terms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_payment_terms", "block_contents": "payment term (Net 30/45/60/etc.)"}, "doc.yoda.analytics___finance_stg__zuora_account_sf_account_id": {"name": "analytics___finance_stg__zuora_account_sf_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_sf_account_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_updated_at": {"name": "analytics___finance_stg__zuora_account_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_account_yotpo_legal_entity": {"name": "analytics___finance_stg__zuora_account_yotpo_legal_entity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_account/analytics___finance_stg__zuora_account.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_account_yotpo_legal_entity", "block_contents": "Which Yotpo Legal entity is responsible for this account \n( Yotpo Inc. || Yotpo LTD. || Yotpo UK.)"}, "doc.yoda.analytics___finance_stg__zuora_contact": {"name": "analytics___finance_stg__zuora_contact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact", "block_contents": "Modeled VIEW of zuora invoice object.\nPK: contact_id"}, "doc.yoda.analytics___finance_stg__zuora_contact_account_id": {"name": "analytics___finance_stg__zuora_contact_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_account_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_address1": {"name": "analytics___finance_stg__zuora_contact_address1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_address1", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_address2": {"name": "analytics___finance_stg__zuora_contact_address2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_address2", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_city": {"name": "analytics___finance_stg__zuora_contact_city", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_city", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_contact_id": {"name": "analytics___finance_stg__zuora_contact_contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_contact_id", "block_contents": "PK"}, "doc.yoda.analytics___finance_stg__zuora_contact_country": {"name": "analytics___finance_stg__zuora_contact_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_country", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_created_at": {"name": "analytics___finance_stg__zuora_contact_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_created_by_id": {"name": "analytics___finance_stg__zuora_contact_created_by_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_created_by_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_first_name": {"name": "analytics___finance_stg__zuora_contact_first_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_first_name", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_is_deleted": {"name": "analytics___finance_stg__zuora_contact_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_last_name": {"name": "analytics___finance_stg__zuora_contact_last_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_last_name", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_personal_email": {"name": "analytics___finance_stg__zuora_contact_personal_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_personal_email", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_postal_code": {"name": "analytics___finance_stg__zuora_contact_postal_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_postal_code", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_state": {"name": "analytics___finance_stg__zuora_contact_state", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_state", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_tax_region": {"name": "analytics___finance_stg__zuora_contact_tax_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_tax_region", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_updated_at": {"name": "analytics___finance_stg__zuora_contact_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_updated_by_id": {"name": "analytics___finance_stg__zuora_contact_updated_by_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_updated_by_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_work_email": {"name": "analytics___finance_stg__zuora_contact_work_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_work_email", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_contact_work_phone_number": {"name": "analytics___finance_stg__zuora_contact_work_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_contact/analytics___finance_stg__zuora_contact.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_contact_work_phone_number", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice": {"name": "analytics___finance_stg__zuora_invoice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice", "block_contents": "Modeled VIEW of zuora invoice object"}, "doc.yoda.analytics___finance_stg__zuora_invoice_account_id": {"name": "analytics___finance_stg__zuora_invoice_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_account_id", "block_contents": "Internal zuora account_id"}, "doc.yoda.analytics___finance_stg__zuora_invoice_amount": {"name": "analytics___finance_stg__zuora_invoice_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_amount", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_balance": {"name": "analytics___finance_stg__zuora_invoice_balance", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_balance", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_created_at": {"name": "analytics___finance_stg__zuora_invoice_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_due_date": {"name": "analytics___finance_stg__zuora_invoice_due_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_due_date", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_invoice_date": {"name": "analytics___finance_stg__zuora_invoice_invoice_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_invoice_date", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_invoice_id": {"name": "analytics___finance_stg__zuora_invoice_invoice_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_invoice_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_invoice_month": {"name": "analytics___finance_stg__zuora_invoice_invoice_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_invoice_month", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_invoice_number": {"name": "analytics___finance_stg__zuora_invoice_invoice_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_invoice_number", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_is_deleted": {"name": "analytics___finance_stg__zuora_invoice_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_is_reversed": {"name": "analytics___finance_stg__zuora_invoice_is_reversed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_is_reversed", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_is_status_posted": {"name": "analytics___finance_stg__zuora_invoice_is_status_posted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_is_status_posted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_is_zero_balance": {"name": "analytics___finance_stg__zuora_invoice_is_zero_balance", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_is_zero_balance", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_payment_amount": {"name": "analytics___finance_stg__zuora_invoice_payment_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_payment_amount", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_posted_at": {"name": "analytics___finance_stg__zuora_invoice_posted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_posted_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_posted_date": {"name": "analytics___finance_stg__zuora_invoice_posted_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_posted_date", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_status": {"name": "analytics___finance_stg__zuora_invoice_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_status", "block_contents": "Invoice status (Canceled,Draft,Posted)"}, "doc.yoda.analytics___finance_stg__zuora_invoice_updated_at": {"name": "analytics___finance_stg__zuora_invoice_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice/analytics___finance_stg__zuora_invoice.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_item": {"name": "analytics___finance_stg__zuora_invoice_item", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item", "block_contents": "Modeled View of zuora invoice_item object.\nPK: invoice_item_id"}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_account_id": {"name": "analytics___finance_stg__zuora_invoice_item_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_account_id", "block_contents": "FK: analytics___finance_zuora_account"}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_charge_amount": {"name": "analytics___finance_stg__zuora_invoice_item_charge_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_charge_amount", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_charge_at": {"name": "analytics___finance_stg__zuora_invoice_item_charge_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_charge_at", "block_contents": "charge timestamp"}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_charge_name": {"name": "analytics___finance_stg__zuora_invoice_item_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_charge_name", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_created_at": {"name": "analytics___finance_stg__zuora_invoice_item_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_created_at", "block_contents": "invoice_item created timestamp"}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_created_by_id": {"name": "analytics___finance_stg__zuora_invoice_item_created_by_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_created_by_id", "block_contents": "invoice_item created by id"}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_invoice_id": {"name": "analytics___finance_stg__zuora_invoice_item_invoice_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_invoice_id", "block_contents": "FK: analytics___finance_stg__zuora_invoice"}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_invoice_item_id": {"name": "analytics___finance_stg__zuora_invoice_item_invoice_item_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_invoice_item_id", "block_contents": "PK"}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_is_deleted": {"name": "analytics___finance_stg__zuora_invoice_item_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_product_id": {"name": "analytics___finance_stg__zuora_invoice_item_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_product_id", "block_contents": "FK: analytics___finance__zuora_product"}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_rateplan_charge_id": {"name": "analytics___finance_stg__zuora_invoice_item_rateplan_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_rateplan_charge_id", "block_contents": "FK: analytics___finance__zuora_rateplan_charge"}, "doc.yoda.analytics___finance_stg__zuora_invoice_item_subscription_id": {"name": "analytics___finance_stg__zuora_invoice_item_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_invoice_item/analytics___finance_stg__zuora_invoice_item.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_invoice_item_subscription_id", "block_contents": "FK: analytics___finance__zuora_subscription"}, "doc.yoda.analytics___finance_stg__zuora_order": {"name": "analytics___finance_stg__zuora_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order", "block_contents": "Modeled VIEW of zuora order object"}, "doc.yoda.analytics___finance_stg__zuora_order_account_id": {"name": "analytics___finance_stg__zuora_order_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_account_id", "block_contents": "Internal zuora account_id"}, "doc.yoda.analytics___finance_stg__zuora_order_created_at": {"name": "analytics___finance_stg__zuora_order_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_dwh_updated_at": {"name": "analytics___finance_stg__zuora_order_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_is_deleted": {"name": "analytics___finance_stg__zuora_order_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_order_date": {"name": "analytics___finance_stg__zuora_order_order_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_order_date", "block_contents": "The date the order is scheduled to"}, "doc.yoda.analytics___finance_stg__zuora_order_order_id": {"name": "analytics___finance_stg__zuora_order_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order/analytics___finance_stg__zuora_order.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_order_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_action": {"name": "analytics___finance_stg__zuora_order_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_action", "block_contents": "Modeled VIEW of zuora order action object"}, "doc.yoda.analytics___finance_stg__zuora_order_action_account_id": {"name": "analytics___finance_stg__zuora_order_action_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_action_account_id", "block_contents": "Internal zuora account_id"}, "doc.yoda.analytics___finance_stg__zuora_order_action_created_at": {"name": "analytics___finance_stg__zuora_order_action_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_action_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_action_dwh_updated_at": {"name": "analytics___finance_stg__zuora_order_action_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_action_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_action_is_deleted": {"name": "analytics___finance_stg__zuora_order_action_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_action_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_action_order_action_id": {"name": "analytics___finance_stg__zuora_order_action_order_action_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_action_order_action_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_action_order_action_type": {"name": "analytics___finance_stg__zuora_order_action_order_action_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_action_order_action_type", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_action_order_id": {"name": "analytics___finance_stg__zuora_order_action_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_action_order_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_action_subscription_id": {"name": "analytics___finance_stg__zuora_order_action_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_action_subscription_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_action_updated_at": {"name": "analytics___finance_stg__zuora_order_action_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_action/analytics___finance_stg__zuora_order_action.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_action_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr": {"name": "analytics___finance_stg__zuora_order_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr", "block_contents": "Modeled VIEW of zuora order mrr object"}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_account_id": {"name": "analytics___finance_stg__zuora_order_mrr_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_account_id", "block_contents": "Internal zuora account_id"}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_created_at": {"name": "analytics___finance_stg__zuora_order_mrr_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_dwh_updated_at": {"name": "analytics___finance_stg__zuora_order_mrr_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_end_date": {"name": "analytics___finance_stg__zuora_order_mrr_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_end_date", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_is_deleted": {"name": "analytics___finance_stg__zuora_order_mrr_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_order_action_id": {"name": "analytics___finance_stg__zuora_order_mrr_order_action_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_order_action_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_order_id": {"name": "analytics___finance_stg__zuora_order_mrr_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_order_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_order_mrr_id": {"name": "analytics___finance_stg__zuora_order_mrr_order_mrr_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_order_mrr_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_order_mrr_type": {"name": "analytics___finance_stg__zuora_order_mrr_order_mrr_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_order_mrr_type", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_order_mrr_value": {"name": "analytics___finance_stg__zuora_order_mrr_order_mrr_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_order_mrr_value", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_product_id": {"name": "analytics___finance_stg__zuora_order_mrr_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_product_id", "block_contents": "Internal zuora product_id"}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_product_rate_plan_id": {"name": "analytics___finance_stg__zuora_order_mrr_product_rate_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_product_rate_plan_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_rate_plan_id": {"name": "analytics___finance_stg__zuora_order_mrr_rate_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_rate_plan_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_start_date": {"name": "analytics___finance_stg__zuora_order_mrr_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_start_date", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_subscription_id": {"name": "analytics___finance_stg__zuora_order_mrr_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_subscription_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_order_mrr_updated_at": {"name": "analytics___finance_stg__zuora_order_mrr_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_order_mrr/analytics___finance_stg__zuora_order_mrr.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_order_mrr_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product": {"name": "analytics___finance_stg__zuora_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product", "block_contents": "Modeled VIEW of zuora product object"}, "doc.yoda.analytics___finance_stg__zuora_product_created_at": {"name": "analytics___finance_stg__zuora_product_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_dwh_updated_at": {"name": "analytics___finance_stg__zuora_product_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_is_core_plan": {"name": "analytics___finance_stg__zuora_product_is_core_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_is_core_plan", "block_contents": "core plan indicator is usually used in full service accounts where a subscription includes one main plan per product (core plan) + extensions (ie. syndication, extra seats,insights).\nfor extensions indicator = 0.\nfield is populated by the creator of the plan in zuora."}, "doc.yoda.analytics___finance_stg__zuora_product_is_deleted": {"name": "analytics___finance_stg__zuora_product_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_is_provision_required": {"name": "analytics___finance_stg__zuora_product_is_provision_required", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_is_provision_required", "block_contents": "is core plan indicator (TO BE DEPRECATED)"}, "doc.yoda.analytics___finance_stg__zuora_product_product_category": {"name": "analytics___finance_stg__zuora_product_product_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_product_category", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_product_family": {"name": "analytics___finance_stg__zuora_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_product_family", "block_contents": "product family with 'Loyalty' instead of 'Loyalty & referals'"}, "doc.yoda.analytics___finance_stg__zuora_product_product_family_original_name": {"name": "analytics___finance_stg__zuora_product_product_family_original_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_product_family_original_name", "block_contents": "product family shown in zuora"}, "doc.yoda.analytics___finance_stg__zuora_product_product_id": {"name": "analytics___finance_stg__zuora_product_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_product_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_product_name": {"name": "analytics___finance_stg__zuora_product_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_product_name", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_provisioned_package_name": {"name": "analytics___finance_stg__zuora_product_provisioned_package_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_provisioned_package_name", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_sku": {"name": "analytics___finance_stg__zuora_product_sku", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_sku", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_updated_at": {"name": "analytics___finance_stg__zuora_product_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product/analytics___finance_stg__zuora_product.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan": {"name": "analytics___finance_stg__zuora_product_rateplan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan", "block_contents": "Modeled VIEW of zuora product rate plan object\nPK: zuora_product_rateplan_id"}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_created_at": {"name": "analytics___finance_stg__zuora_product_rateplan_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_is_deleted": {"name": "analytics___finance_stg__zuora_product_rateplan_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_product_id": {"name": "analytics___finance_stg__zuora_product_rateplan_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_product_id", "block_contents": "FK: connects to zuora_product"}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_product_rateplan_id": {"name": "analytics___finance_stg__zuora_product_rateplan_product_rateplan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_product_rateplan_id", "block_contents": "PK"}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_product_rateplan_name": {"name": "analytics___finance_stg__zuora_product_rateplan_product_rateplan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_product_rateplan_name", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_updated_at": {"name": "analytics___finance_stg__zuora_product_rateplan_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan/analytics___finance_stg__zuora_product_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge": {"name": "analytics___finance_stg__zuora_product_rateplan_charge", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge", "block_contents": "Modeled VIEW of zuora product rateplan charge object.\nPK: rateplan_charge_id"}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_charge_name": {"name": "analytics___finance_stg__zuora_product_rateplan_charge_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_charge_name", "block_contents": "product rateplan charge name"}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_created_at": {"name": "analytics___finance_stg__zuora_product_rateplan_charge_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_description": {"name": "analytics___finance_stg__zuora_product_rateplan_charge_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_description", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_is_deleted": {"name": "analytics___finance_stg__zuora_product_rateplan_charge_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_number_of_period": {"name": "analytics___finance_stg__zuora_product_rateplan_charge_number_of_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_number_of_period", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id": {"name": "analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id", "block_contents": "PK"}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_id": {"name": "analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_id", "block_contents": "FK: zuora_product_rateplan"}, "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_updated_at": {"name": "analytics___finance_stg__zuora_product_rateplan_charge_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_product_rateplan_charge/analytics___finance_stg__zuora_product_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_product_rateplan_charge_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan": {"name": "analytics___finance_stg__zuora_rateplan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan", "block_contents": "Modeled VIEW of zuora rateplan object"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_account_id": {"name": "analytics___finance_stg__zuora_rateplan_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_account_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_amendment_type": {"name": "analytics___finance_stg__zuora_rateplan_amendment_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_amendment_type", "block_contents": "amendment type: (NewProduct,UpdateProduct,RemoveProduct)"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_created_at": {"name": "analytics___finance_stg__zuora_rateplan_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_dwh_updated_at": {"name": "analytics___finance_stg__zuora_rateplan_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_is_deleted": {"name": "analytics___finance_stg__zuora_rateplan_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_parent_account_id": {"name": "analytics___finance_stg__zuora_rateplan_parent_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_parent_account_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_product_id": {"name": "analytics___finance_stg__zuora_rateplan_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_product_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_product_rateplan_id": {"name": "analytics___finance_stg__zuora_rateplan_product_rateplan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_product_rateplan_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_rateplan_id": {"name": "analytics___finance_stg__zuora_rateplan_rateplan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_rateplan_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_rateplan_name": {"name": "analytics___finance_stg__zuora_rateplan_rateplan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_rateplan_name", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_subscription_id": {"name": "analytics___finance_stg__zuora_rateplan_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_subscription_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_total_price_usd": {"name": "analytics___finance_stg__zuora_rateplan_total_price_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_total_price_usd", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_updated_at": {"name": "analytics___finance_stg__zuora_rateplan_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan/analytics___finance_stg__zuora_rateplan.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge": {"name": "analytics___finance_stg__zuora_rateplan_charge", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge", "block_contents": "Modeled VIEW of zuora rateplan charge object.\nPK: rateplan_charge_id"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_account_id": {"name": "analytics___finance_stg__zuora_rateplan_charge_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_account_id", "block_contents": "zuora account id"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_apply_discount_charge_type": {"name": "analytics___finance_stg__zuora_rateplan_charge_apply_discount_charge_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_apply_discount_charge_type", "block_contents": "the type of chrage the discount is applied to (onetime,recurring,usage,all)"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_billing_period": {"name": "analytics___finance_stg__zuora_rateplan_charge_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_billing_period", "block_contents": "Annual|Eighteen Months|Month|null|Semi-Annual|Quarter"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_charge_model": {"name": "analytics___finance_stg__zuora_rateplan_charge_charge_model", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_charge_model", "block_contents": "Overage Pricing|Per Unit Pricing|Discount-Percentage|Flat Fee Pricing"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_charge_number": {"name": "analytics___finance_stg__zuora_rateplan_charge_charge_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_charge_number", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_charge_type": {"name": "analytics___finance_stg__zuora_rateplan_charge_charge_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_charge_type", "block_contents": "OneTime|Usage|Recurring"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_created_at": {"name": "analytics___finance_stg__zuora_rateplan_charge_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_dmrc": {"name": "analytics___finance_stg__zuora_rateplan_charge_dmrc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_dmrc", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_dtcv": {"name": "analytics___finance_stg__zuora_rateplan_charge_dtcv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_dtcv", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_effective_end_date": {"name": "analytics___finance_stg__zuora_rateplan_charge_effective_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_effective_end_date", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_effective_start_date": {"name": "analytics___finance_stg__zuora_rateplan_charge_effective_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_effective_start_date", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_is_deleted": {"name": "analytics___finance_stg__zuora_rateplan_charge_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_is_exclude_billing": {"name": "analytics___finance_stg__zuora_rateplan_charge_is_exclude_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_is_exclude_billing", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_is_exclude_booking": {"name": "analytics___finance_stg__zuora_rateplan_charge_is_exclude_booking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_is_exclude_booking", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_is_processed": {"name": "analytics___finance_stg__zuora_rateplan_charge_is_processed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_is_processed", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_is_repaid": {"name": "analytics___finance_stg__zuora_rateplan_charge_is_repaid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_is_repaid", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_list_price_base": {"name": "analytics___finance_stg__zuora_rateplan_charge_list_price_base", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_list_price_base", "block_contents": "Per Billing Period|Per Month"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_mrr": {"name": "analytics___finance_stg__zuora_rateplan_charge_mrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_mrr", "block_contents": "does not include discount mrr"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_original_rateplan_charge_id": {"name": "analytics___finance_stg__zuora_rateplan_charge_original_rateplan_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_original_rateplan_charge_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_processed_through_date": {"name": "analytics___finance_stg__zuora_rateplan_charge_processed_through_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_processed_through_date", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_product_id": {"name": "analytics___finance_stg__zuora_rateplan_charge_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_product_id", "block_contents": "FK: zuora_product"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_product_rateplan_charge_id": {"name": "analytics___finance_stg__zuora_rateplan_charge_product_rateplan_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_product_rateplan_charge_id", "block_contents": "FK: zuora_product_rateplan_charge"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_product_rateplan_id": {"name": "analytics___finance_stg__zuora_rateplan_charge_product_rateplan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_product_rateplan_id", "block_contents": "FK: zuora_product_rateplan"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_quantity": {"name": "analytics___finance_stg__zuora_rateplan_charge_quantity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_quantity", "block_contents": "number of units per charge"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id": {"name": "analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id", "block_contents": "PK"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_name": {"name": "analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_name", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_rateplan_id": {"name": "analytics___finance_stg__zuora_rateplan_charge_rateplan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_rateplan_id", "block_contents": "FK: zuora_rateplan"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_subscription_id": {"name": "analytics___finance_stg__zuora_rateplan_charge_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_subscription_id", "block_contents": "FK: zuora_subscription"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tcv": {"name": "analytics___finance_stg__zuora_rateplan_charge_tcv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tcv", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_updated_at": {"name": "analytics___finance_stg__zuora_rateplan_charge_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_version": {"name": "analytics___finance_stg__zuora_rateplan_charge_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge/analytics___finance_stg__zuora_rateplan_charge.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_version", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier", "block_contents": "Modeled VIEW of zuora rateplan charge object.\nPK: rateplan_charge_tier_id"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_amendment_id": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_amendment_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_amendment_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_created_at": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_currency": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_currency", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_discount_percentage": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_discount_percentage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_discount_percentage", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_is_deleted": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_overage_price": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_overage_price", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_overage_price", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_price_format": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_price_format", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_price_format", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_price_in_original_currency": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_price_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_price_in_original_currency", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_id": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_id", "block_contents": "FK: zuora_rateplan_charge"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id", "block_contents": "PK"}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_tier": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_tier", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_updated_at": {"name": "analytics___finance_stg__zuora_rateplan_charge_tier_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_rateplan_charge_tier/analytics___finance_stg__zuora_rateplan_charge_tier.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_rateplan_charge_tier_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription": {"name": "analytics___finance_stg__zuora_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription", "block_contents": "Modeled VIEW of zuora subscription object"}, "doc.yoda.analytics___finance_stg__zuora_subscription_account_id": {"name": "analytics___finance_stg__zuora_subscription_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_account_id", "block_contents": "Internal zuora account_id"}, "doc.yoda.analytics___finance_stg__zuora_subscription_actual_contract_duration": {"name": "analytics___finance_stg__zuora_subscription_actual_contract_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_actual_contract_duration", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_cancelled_at": {"name": "analytics___finance_stg__zuora_subscription_cancelled_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_cancelled_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_created_at": {"name": "analytics___finance_stg__zuora_subscription_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_csm_extension_months": {"name": "analytics___finance_stg__zuora_subscription_csm_extension_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_csm_extension_months", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_dwh_updated_at": {"name": "analytics___finance_stg__zuora_subscription_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_end_of_contract_extension_month": {"name": "analytics___finance_stg__zuora_subscription_end_of_contract_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_end_of_contract_extension_month", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_exclude_from_dunning_end_date": {"name": "analytics___finance_stg__zuora_subscription_exclude_from_dunning_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_exclude_from_dunning_end_date", "block_contents": "Until which date to exclude from dunning"}, "doc.yoda.analytics___finance_stg__zuora_subscription_is_deleted": {"name": "analytics___finance_stg__zuora_subscription_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_is_deleted", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_is_downgraded": {"name": "analytics___finance_stg__zuora_subscription_is_downgraded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_is_downgraded", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_is_exclude_from_dashboards": {"name": "analytics___finance_stg__zuora_subscription_is_exclude_from_dashboards", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_is_exclude_from_dashboards", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_is_migration_subscription": {"name": "analytics___finance_stg__zuora_subscription_is_migration_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_is_migration_subscription", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_is_staggered_subscription": {"name": "analytics___finance_stg__zuora_subscription_is_staggered_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_is_staggered_subscription", "block_contents": "Staggered subscriptions are multi product subscriptions where at least one of the products starts later than the other products"}, "doc.yoda.analytics___finance_stg__zuora_subscription_is_trial_subscription": {"name": "analytics___finance_stg__zuora_subscription_is_trial_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_is_trial_subscription", "block_contents": "indicator on subscription level from zuora = 1 when trial(test) subscription"}, "doc.yoda.analytics___finance_stg__zuora_subscription_latest_version": {"name": "analytics___finance_stg__zuora_subscription_latest_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_latest_version", "block_contents": "Max version over subscription name"}, "doc.yoda.analytics___finance_stg__zuora_subscription_original_contract_duration": {"name": "analytics___finance_stg__zuora_subscription_original_contract_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_original_contract_duration", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_original_created_at": {"name": "analytics___finance_stg__zuora_subscription_original_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_original_created_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_original_id": {"name": "analytics___finance_stg__zuora_subscription_original_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_original_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_previous_subscription_id": {"name": "analytics___finance_stg__zuora_subscription_previous_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_previous_subscription_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_renewal_from_subscription": {"name": "analytics___finance_stg__zuora_subscription_renewal_from_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_renewal_from_subscription", "block_contents": "Renewal from subscription name"}, "doc.yoda.analytics___finance_stg__zuora_subscription_renewal_setting": {"name": "analytics___finance_stg__zuora_subscription_renewal_setting", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_renewal_setting", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_segment": {"name": "analytics___finance_stg__zuora_subscription_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_segment", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_sf_opportunity_id": {"name": "analytics___finance_stg__zuora_subscription_sf_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_sf_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_status": {"name": "analytics___finance_stg__zuora_subscription_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_status", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_subscription_end_at": {"name": "analytics___finance_stg__zuora_subscription_subscription_end_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_subscription_end_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_subscription_id": {"name": "analytics___finance_stg__zuora_subscription_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_subscription_id", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_subscription_name": {"name": "analytics___finance_stg__zuora_subscription_subscription_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_subscription_name", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_subscription_start_at": {"name": "analytics___finance_stg__zuora_subscription_subscription_start_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_subscription_start_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_term_end_date": {"name": "analytics___finance_stg__zuora_subscription_term_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_term_end_date", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_term_start_date": {"name": "analytics___finance_stg__zuora_subscription_term_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_term_start_date", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_term_type": {"name": "analytics___finance_stg__zuora_subscription_term_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_term_type", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_total_price": {"name": "analytics___finance_stg__zuora_subscription_total_price", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_total_price", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_updated_at": {"name": "analytics___finance_stg__zuora_subscription_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_updated_at", "block_contents": ""}, "doc.yoda.analytics___finance_stg__zuora_subscription_version": {"name": "analytics___finance_stg__zuora_subscription_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "original_file_path": "models/analytics/finance/staging/marts_compatible/analytics___finance_stg__zuora_subscription/analytics___finance_stg__zuora_subscription.md", "unique_id": "doc.yoda.analytics___finance_stg__zuora_subscription_version", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily": {"name": "analytics___gtm__acv_goal_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily", "block_contents": "A modeled table conencting each date from the calendar to its ACV goals | PK: goal_id | Granularity: date, deal_type, revenue_stream, segment, region, demand_gen_channel, product"}, "doc.yoda.analytics___gtm__acv_goal_daily_closing_date": {"name": "analytics___gtm__acv_goal_daily_closing_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_closing_date", "block_contents": "date of the closest working day"}, "doc.yoda.analytics___gtm__acv_goal_daily_date": {"name": "analytics___gtm__acv_goal_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_date", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily_deal_type": {"name": "analytics___gtm__acv_goal_daily_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_deal_type", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily_demand_gen_channel": {"name": "analytics___gtm__acv_goal_daily_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_demand_gen_channel", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily_forecast_acv_goal": {"name": "analytics___gtm__acv_goal_daily_forecast_acv_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_forecast_acv_goal", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily_goal_id": {"name": "analytics___gtm__acv_goal_daily_goal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_goal_id", "block_contents": "PK"}, "doc.yoda.analytics___gtm__acv_goal_daily_goal_process_demand_gen_channel": {"name": "analytics___gtm__acv_goal_daily_goal_process_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_goal_process_demand_gen_channel", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily_goal_process_internal_id": {"name": "analytics___gtm__acv_goal_daily_goal_process_internal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_goal_process_internal_id", "block_contents": "Concatenation of fields used to join the goals from this process to the performance"}, "doc.yoda.analytics___gtm__acv_goal_daily_monthly_acv_goal": {"name": "analytics___gtm__acv_goal_daily_monthly_acv_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_monthly_acv_goal", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily_product": {"name": "analytics___gtm__acv_goal_daily_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_product", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily_product_family": {"name": "analytics___gtm__acv_goal_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_product_family", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily_region": {"name": "analytics___gtm__acv_goal_daily_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_region", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily_revenue_stream": {"name": "analytics___gtm__acv_goal_daily_revenue_stream", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_revenue_stream", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily_segment": {"name": "analytics___gtm__acv_goal_daily_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_segment", "block_contents": ""}, "doc.yoda.analytics___gtm__acv_goal_daily_working_day_no": {"name": "analytics___gtm__acv_goal_daily_working_day_no", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__acv_goal_daily/analytics___gtm__acv_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__acv_goal_daily_working_day_no", "block_contents": "working day number (1/2/.../31)"}, "doc.yoda.analytics___gtm__crossell_opportunity_attribution": {"name": "analytics___gtm__crossell_opportunity_attribution", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__crossell_opportunity_attribution", "block_contents": "A table holding attribution channels for crossell/upsell oportunities| PK & Granularity: opportunity_id"}, "doc.yoda.analytics___gtm__crossell_opportunity_attribution_attribution_channel": {"name": "analytics___gtm__crossell_opportunity_attribution_attribution_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__crossell_opportunity_attribution_attribution_channel", "block_contents": ""}, "doc.yoda.analytics___gtm__crossell_opportunity_attribution_opportunity_id": {"name": "analytics___gtm__crossell_opportunity_attribution_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__crossell_opportunity_attribution/analytics___gtm__crossell_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__crossell_opportunity_attribution_opportunity_id", "block_contents": "PK"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution": {"name": "analytics___gtm__new_sale_opportunity_attribution", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution", "block_contents": "A table that holds opportunity attirbution channels and its attirbution related actions | PK & Granularity: opportunity_id, action_name, action_time"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_account_id": {"name": "analytics___gtm__new_sale_opportunity_attribution_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_account_id", "block_contents": "sf account id"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_name": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_name", "block_contents": "PK 2/3"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_time": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_time", "block_contents": "PK 3/3"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_attribution_channel": {"name": "analytics___gtm__new_sale_opportunity_attribution_attribution_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_attribution_channel", "block_contents": "Attribution channel including only channels for payment"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_delta_acv_in_usd": {"name": "analytics___gtm__new_sale_opportunity_attribution_delta_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_delta_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_dwh_updated_at": {"name": "analytics___gtm__new_sale_opportunity_attribution_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_entered_demo_date": {"name": "analytics___gtm__new_sale_opportunity_attribution_entered_demo_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_entered_demo_date", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_estimated_arr_in_usd": {"name": "analytics___gtm__new_sale_opportunity_attribution_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_gold_estimated_arr_in_usd": {"name": "analytics___gtm__new_sale_opportunity_attribution_gold_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_gold_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_opportunity_close_date": {"name": "analytics___gtm__new_sale_opportunity_attribution_opportunity_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_opportunity_close_date", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_opportunity_created_at": {"name": "analytics___gtm__new_sale_opportunity_attribution_opportunity_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_opportunity_created_at", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_opportunity_id": {"name": "analytics___gtm__new_sale_opportunity_attribution_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_opportunity_id", "block_contents": "PK 1/3"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_opportunity_stage": {"name": "analytics___gtm__new_sale_opportunity_attribution_opportunity_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_opportunity_stage", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_order_sales_segment": {"name": "analytics___gtm__new_sale_opportunity_attribution_order_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_order_sales_segment", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_prime_estimated_arr_in_usd": {"name": "analytics___gtm__new_sale_opportunity_attribution_prime_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_prime_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_sub_attribution_channel": {"name": "analytics___gtm__new_sale_opportunity_attribution_sub_attribution_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution/analytics___gtm__new_sale_opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_sub_attribution_channel", "block_contents": "Attribution channel including all affecting channels"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action": {"name": "analytics___gtm__new_sale_opportunity_attribution_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "block_contents": "A table that connects a new sale opportunity to all its actions that affects its attirbution | PK & Granularity: opportunity_id, action_name, action_time"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_account_id": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_account_id", "block_contents": "sf account id"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_action_name": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_action_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_action_name", "block_contents": "PK 2/3"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_action_time": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_action_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_action_time", "block_contents": "PK 3/3"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_delta_acv_in_usd": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_delta_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_delta_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_dwh_updated_at": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_entered_demo_date": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_entered_demo_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_entered_demo_date", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_estimated_arr_in_usd": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_first_action_timeframe": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_first_action_timeframe", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_first_action_timeframe", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_gold_estimated_arr_in_usd": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_gold_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_gold_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_opportunity_close_date": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_opportunity_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_opportunity_close_date", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_opportunity_created_at": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_opportunity_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_opportunity_created_at", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id", "block_contents": "PK 1/3"}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_opportunity_stage": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_opportunity_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_opportunity_stage", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_order_sales_segment": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_order_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_order_sales_segment", "block_contents": ""}, "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_prime_estimated_arr_in_usd": {"name": "analytics___gtm__new_sale_opportunity_attribution_action_prime_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__new_sale_opportunity_attribution_action/analytics___gtm__new_sale_opportunity_attribution_action.md", "unique_id": "doc.yoda.analytics___gtm__new_sale_opportunity_attribution_action_prime_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_attribution": {"name": "analytics___gtm__opportunity_attribution", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_attribution", "block_contents": "A view combining attribution channels for new sales and crossells, this model's data is injected to Salesforce opportunity object | PK & Granularity: opportunity_id"}, "doc.yoda.analytics___gtm__opportunity_attribution_attribution_channel": {"name": "analytics___gtm__opportunity_attribution_attribution_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_attribution_attribution_channel", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_attribution_opportunity_id": {"name": "analytics___gtm__opportunity_attribution_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_attribution/analytics___gtm__opportunity_attribution.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_attribution_opportunity_id", "block_contents": "PK"}, "doc.yoda.analytics___gtm__opportunity_goal": {"name": "analytics___gtm__opportunity_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal", "block_contents": "A modeled table holding new sale/migration to annual opportunitis, exploded on each opportunity's attribution channels and products.|\nEach opportuntiy also holds the according performance goals (acv/sal) including totals (no overlap) goals in columns.|\nIn case a goal doesn't meet any opportunity with the same parameters (month, region, order_bucket...) it will have its own line in the table w/o opporutnity details.|\nPK: opportunity_goal_id | Granulatiry: opportunity_id, acv_goal_id, sal_goal_id, product_family_group, attribution_channel"}, "doc.yoda.analytics___gtm__opportunity_goal_account_id": {"name": "analytics___gtm__opportunity_goal_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_account_id", "block_contents": "opportunity's salesforce account id"}, "doc.yoda.analytics___gtm__opportunity_goal_acv_goal_id": {"name": "analytics___gtm__opportunity_goal_acv_goal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_acv_goal_id", "block_contents": "Granulatiry 2/5"}, "doc.yoda.analytics___gtm__opportunity_goal_attribution_channel": {"name": "analytics___gtm__opportunity_goal_attribution_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_attribution_channel", "block_contents": "Granulatiry 5/5 - single (exploded) attribution channel from the opportunity's attribution channels"}, "doc.yoda.analytics___gtm__opportunity_goal_attribution_channel_overlap": {"name": "analytics___gtm__opportunity_goal_attribution_channel_overlap", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_attribution_channel_overlap", "block_contents": "All related attribution channels for the opportunity"}, "doc.yoda.analytics___gtm__opportunity_goal_close_date": {"name": "analytics___gtm__opportunity_goal_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_close_date", "block_contents": "opportunity's close date"}, "doc.yoda.analytics___gtm__opportunity_goal_close_month": {"name": "analytics___gtm__opportunity_goal_close_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_close_month", "block_contents": "close month for opportunity/acv goal (coalesced)"}, "doc.yoda.analytics___gtm__opportunity_goal_deal_type": {"name": "analytics___gtm__opportunity_goal_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_deal_type", "block_contents": "deal type for opportunity/acv goal/sal goal (coalesced)"}, "doc.yoda.analytics___gtm__opportunity_goal_dg_overlap_forecast_acv_goal": {"name": "analytics___gtm__opportunity_goal_dg_overlap_forecast_acv_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_dg_overlap_forecast_acv_goal", "block_contents": "forecast acv goal for all attribution channel - post overlap"}, "doc.yoda.analytics___gtm__opportunity_goal_dg_overlap_forecast_sal_goal": {"name": "analytics___gtm__opportunity_goal_dg_overlap_forecast_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_dg_overlap_forecast_sal_goal", "block_contents": "forecast sal goal for all attribution channel - post overlap"}, "doc.yoda.analytics___gtm__opportunity_goal_dg_overlap_monthly_acv_goal": {"name": "analytics___gtm__opportunity_goal_dg_overlap_monthly_acv_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_dg_overlap_monthly_acv_goal", "block_contents": "monthly acv goal for all attribution channel - post overlap"}, "doc.yoda.analytics___gtm__opportunity_goal_dg_overlap_monthly_sal_goal": {"name": "analytics___gtm__opportunity_goal_dg_overlap_monthly_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_dg_overlap_monthly_sal_goal", "block_contents": "monthly sal goal for all attribution channel - post overlap"}, "doc.yoda.analytics___gtm__opportunity_goal_dwh_updated_at": {"name": "analytics___gtm__opportunity_goal_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_goal_entered_demo_date": {"name": "analytics___gtm__opportunity_goal_entered_demo_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_entered_demo_date", "block_contents": "opportunity's demo date"}, "doc.yoda.analytics___gtm__opportunity_goal_forecast_acv_goal": {"name": "analytics___gtm__opportunity_goal_forecast_acv_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_forecast_acv_goal", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_goal_forecast_sal_goal": {"name": "analytics___gtm__opportunity_goal_forecast_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_forecast_sal_goal", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_goal_is_gold": {"name": "analytics___gtm__opportunity_goal_is_gold", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_is_gold", "block_contents": "if product is loyalty and deal type is self-service"}, "doc.yoda.analytics___gtm__opportunity_goal_is_prime": {"name": "analytics___gtm__opportunity_goal_is_prime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_is_prime", "block_contents": "if product is reviews and deal type is self-service"}, "doc.yoda.analytics___gtm__opportunity_goal_monthly_acv_goal": {"name": "analytics___gtm__opportunity_goal_monthly_acv_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_monthly_acv_goal", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_goal_monthly_sal_goal": {"name": "analytics___gtm__opportunity_goal_monthly_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_monthly_sal_goal", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_goal_opportunity_created_date": {"name": "analytics___gtm__opportunity_goal_opportunity_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_opportunity_created_date", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_goal_opportunity_goal_id": {"name": "analytics___gtm__opportunity_goal_opportunity_goal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_opportunity_goal_id", "block_contents": "Designated id made of granularity fields combinataion using sha2 hashing"}, "doc.yoda.analytics___gtm__opportunity_goal_opportunity_id": {"name": "analytics___gtm__opportunity_goal_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_opportunity_id", "block_contents": "Granulatiry 1/5"}, "doc.yoda.analytics___gtm__opportunity_goal_opportunity_order_bucket": {"name": "analytics___gtm__opportunity_goal_opportunity_order_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_opportunity_order_bucket", "block_contents": "opportunity's order bucket"}, "doc.yoda.analytics___gtm__opportunity_goal_opportunity_stage": {"name": "analytics___gtm__opportunity_goal_opportunity_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_opportunity_stage", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_goal_order_bucket_group": {"name": "analytics___gtm__opportunity_goal_order_bucket_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_order_bucket_group", "block_contents": "order bucket group for opportunity/acv goal/sal goal (coalesced)"}, "doc.yoda.analytics___gtm__opportunity_goal_pipeline_usd": {"name": "analytics___gtm__opportunity_goal_pipeline_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_pipeline_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_goal_platform": {"name": "analytics___gtm__opportunity_goal_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_platform", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_goal_product_acv": {"name": "analytics___gtm__opportunity_goal_product_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_product_acv", "block_contents": "line item product's acv"}, "doc.yoda.analytics___gtm__opportunity_goal_product_estimated_arr": {"name": "analytics___gtm__opportunity_goal_product_estimated_arr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_product_estimated_arr", "block_contents": "line item product's earr"}, "doc.yoda.analytics___gtm__opportunity_goal_product_family_group": {"name": "analytics___gtm__opportunity_goal_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_product_family_group", "block_contents": "Granulatiry 4/5"}, "doc.yoda.analytics___gtm__opportunity_goal_product_overlap_forecast_sal_goal": {"name": "analytics___gtm__opportunity_goal_product_overlap_forecast_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_product_overlap_forecast_sal_goal", "block_contents": "forecast sal goal for all products - post overlap"}, "doc.yoda.analytics___gtm__opportunity_goal_product_overlap_monthly_sal_goal": {"name": "analytics___gtm__opportunity_goal_product_overlap_monthly_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_product_overlap_monthly_sal_goal", "block_contents": "monthly sal goal for all products - post overlap"}, "doc.yoda.analytics___gtm__opportunity_goal_product_pipeline_usd": {"name": "analytics___gtm__opportunity_goal_product_pipeline_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_product_pipeline_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__opportunity_goal_revenue_stream": {"name": "analytics___gtm__opportunity_goal_revenue_stream", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_revenue_stream", "block_contents": "revenue stream for opportunity/acv goal/sal goal (coalesced)"}, "doc.yoda.analytics___gtm__opportunity_goal_sal_goal_id": {"name": "analytics___gtm__opportunity_goal_sal_goal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_sal_goal_id", "block_contents": "Granulatiry 3/5"}, "doc.yoda.analytics___gtm__opportunity_goal_sal_month": {"name": "analytics___gtm__opportunity_goal_sal_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_sal_month", "block_contents": "sal (demo) month for opportunity/sal goal (coalesced)"}, "doc.yoda.analytics___gtm__opportunity_goal_sales_region": {"name": "analytics___gtm__opportunity_goal_sales_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opportunity_goal/analytics___gtm__opportunity_goal.md", "unique_id": "doc.yoda.analytics___gtm__opportunity_goal_sales_region", "block_contents": "sales region for opportunity/acv goal/sal goal (coalesced)"}, "doc.yoda.analytics___gtm__opporunity_dg_funnel": {"name": "analytics___gtm__opporunity_dg_funnel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel", "block_contents": "A modeled table of the demang generation channel to opporunity funnel, connecting between top of the funnel entities (PE/MQL) to opportunities.\nsql_date, sal_date and close_date indicates the funnel stages.\nEach opportunity is exploded by its products and attribution channels.\nPK & Granularity: opportunity_id,first_stage_id, product_family_group, attribution_channel"}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_attribution_channel": {"name": "analytics___gtm__opporunity_dg_funnel_attribution_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_attribution_channel", "block_contents": "PK 4/4"}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_close_date": {"name": "analytics___gtm__opporunity_dg_funnel_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_close_date", "block_contents": "Opportunity's close date."}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_first_stage_date": {"name": "analytics___gtm__opporunity_dg_funnel_first_stage_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_first_stage_date", "block_contents": "Top of funnel entity creation date."}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_first_stage_id": {"name": "analytics___gtm__opporunity_dg_funnel_first_stage_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_first_stage_id", "block_contents": "sf if of top of funnel entity."}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_first_stage_name": {"name": "analytics___gtm__opporunity_dg_funnel_first_stage_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_first_stage_name", "block_contents": ""}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_funnel_type": {"name": "analytics___gtm__opporunity_dg_funnel_funnel_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_funnel_type", "block_contents": "Funnel type based on top of the funnel action."}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_opportunity_id": {"name": "analytics___gtm__opporunity_dg_funnel_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_opportunity_id", "block_contents": "PK 1/4"}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_pipeline_usd": {"name": "analytics___gtm__opporunity_dg_funnel_pipeline_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_pipeline_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_platform": {"name": "analytics___gtm__opporunity_dg_funnel_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_platform", "block_contents": ""}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_product_acv": {"name": "analytics___gtm__opporunity_dg_funnel_product_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_product_acv", "block_contents": "acv for the product in the according row."}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_product_estimated_arr": {"name": "analytics___gtm__opporunity_dg_funnel_product_estimated_arr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_product_estimated_arr", "block_contents": "earr for the product in the according row."}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_product_family_group": {"name": "analytics___gtm__opporunity_dg_funnel_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_product_family_group", "block_contents": "PK 3/4"}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_product_interest": {"name": "analytics___gtm__opporunity_dg_funnel_product_interest", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_product_interest", "block_contents": "interest in products at top of funnel creation"}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_product_pipeline_usd": {"name": "analytics___gtm__opporunity_dg_funnel_product_pipeline_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_product_pipeline_usd", "block_contents": ""}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_sal_date": {"name": "analytics___gtm__opporunity_dg_funnel_sal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_sal_date", "block_contents": "Opportunity's demo date - indicated SAL stage for funnel."}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_sql_date": {"name": "analytics___gtm__opporunity_dg_funnel_sql_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_sql_date", "block_contents": "Opportunity's creation date - indicated SQL stage for funnel."}, "doc.yoda.analytics___gtm__opporunity_dg_funnel_won_date": {"name": "analytics___gtm__opporunity_dg_funnel_won_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__opporunity_dg_funnel/analytics___gtm__opporunity_dg_funnel.md", "unique_id": "doc.yoda.analytics___gtm__opporunity_dg_funnel_won_date", "block_contents": "Opportunity's close date in case it is won."}, "doc.yoda.analytics___gtm__sal_goal_daily": {"name": "analytics___gtm__sal_goal_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily", "block_contents": "A modeled table conencting each date from the calendar to its SAL goals | PK: goal_id | Granularity: date, deal_type, revenue_stream, segment, region, demand_gen_channel, product"}, "doc.yoda.analytics___gtm__sal_goal_daily_closing_date": {"name": "analytics___gtm__sal_goal_daily_closing_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_closing_date", "block_contents": "date of the closest working day"}, "doc.yoda.analytics___gtm__sal_goal_daily_date": {"name": "analytics___gtm__sal_goal_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_date", "block_contents": ""}, "doc.yoda.analytics___gtm__sal_goal_daily_deal_type": {"name": "analytics___gtm__sal_goal_daily_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_deal_type", "block_contents": ""}, "doc.yoda.analytics___gtm__sal_goal_daily_demand_gen_channel": {"name": "analytics___gtm__sal_goal_daily_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_demand_gen_channel", "block_contents": ""}, "doc.yoda.analytics___gtm__sal_goal_daily_forecast_sal_goal": {"name": "analytics___gtm__sal_goal_daily_forecast_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_forecast_sal_goal", "block_contents": ""}, "doc.yoda.analytics___gtm__sal_goal_daily_goal_id": {"name": "analytics___gtm__sal_goal_daily_goal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_goal_id", "block_contents": "PK"}, "doc.yoda.analytics___gtm__sal_goal_daily_goal_process_demand_gen_channel": {"name": "analytics___gtm__sal_goal_daily_goal_process_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_goal_process_demand_gen_channel", "block_contents": ""}, "doc.yoda.analytics___gtm__sal_goal_daily_goal_process_internal_id": {"name": "analytics___gtm__sal_goal_daily_goal_process_internal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_goal_process_internal_id", "block_contents": "Concatenation of fields used to join the goals from this process to the performance"}, "doc.yoda.analytics___gtm__sal_goal_daily_monthly_sal_goal": {"name": "analytics___gtm__sal_goal_daily_monthly_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_monthly_sal_goal", "block_contents": ""}, "doc.yoda.analytics___gtm__sal_goal_daily_product": {"name": "analytics___gtm__sal_goal_daily_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_product", "block_contents": ""}, "doc.yoda.analytics___gtm__sal_goal_daily_product_family": {"name": "analytics___gtm__sal_goal_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_product_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm__sal_goal_daily_region": {"name": "analytics___gtm__sal_goal_daily_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_region", "block_contents": ""}, "doc.yoda.analytics___gtm__sal_goal_daily_revenue_stream": {"name": "analytics___gtm__sal_goal_daily_revenue_stream", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_revenue_stream", "block_contents": ""}, "doc.yoda.analytics___gtm__sal_goal_daily_segment": {"name": "analytics___gtm__sal_goal_daily_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_segment", "block_contents": ""}, "doc.yoda.analytics___gtm__sal_goal_daily_working_day_no": {"name": "analytics___gtm__sal_goal_daily_working_day_no", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "original_file_path": "models/analytics/gtm/marts/analytics___gtm__sal_goal_daily/analytics___gtm__sal_goal_daily.md", "unique_id": "doc.yoda.analytics___gtm__sal_goal_daily_working_day_no", "block_contents": "working day number (1/2/.../31)"}, "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals": {"name": "analytics___gtm_stg__stg_nerd_acv_goals", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals", "block_contents": "A view over table that pulls acv goals from google-sheets to datalake through rivery"}, "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_deal_type": {"name": "analytics___gtm_stg__stg_nerd_acv_goals_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_deal_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_demand_gen_channel": {"name": "analytics___gtm_stg__stg_nerd_acv_goals_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_demand_gen_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_forecast_goal": {"name": "analytics___gtm_stg__stg_nerd_acv_goals_forecast_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_forecast_goal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_month": {"name": "analytics___gtm_stg__stg_nerd_acv_goals_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_monthly_goal": {"name": "analytics___gtm_stg__stg_nerd_acv_goals_monthly_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_monthly_goal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_product": {"name": "analytics___gtm_stg__stg_nerd_acv_goals_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_region": {"name": "analytics___gtm_stg__stg_nerd_acv_goals_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_revenue_stream": {"name": "analytics___gtm_stg__stg_nerd_acv_goals_revenue_stream", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_revenue_stream", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_segment": {"name": "analytics___gtm_stg__stg_nerd_acv_goals_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_acv_goals/analytics___gtm_stg__stg_nerd_acv_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_acv_goals_segment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals": {"name": "analytics___gtm_stg__stg_nerd_sal_goals", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals", "block_contents": "A view over table that pulls sal goals from google-sheets to datalake through rivery"}, "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_deal_type": {"name": "analytics___gtm_stg__stg_nerd_sal_goals_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_deal_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_demand_gen_channel": {"name": "analytics___gtm_stg__stg_nerd_sal_goals_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_demand_gen_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_forecast_goal": {"name": "analytics___gtm_stg__stg_nerd_sal_goals_forecast_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_forecast_goal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_month": {"name": "analytics___gtm_stg__stg_nerd_sal_goals_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_monthly_goal": {"name": "analytics___gtm_stg__stg_nerd_sal_goals_monthly_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_monthly_goal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_product": {"name": "analytics___gtm_stg__stg_nerd_sal_goals_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_region": {"name": "analytics___gtm_stg__stg_nerd_sal_goals_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_revenue_stream": {"name": "analytics___gtm_stg__stg_nerd_sal_goals_revenue_stream", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_revenue_stream", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_segment": {"name": "analytics___gtm_stg__stg_nerd_sal_goals_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "original_file_path": "models/analytics/gtm/staging/base/analytics___gtm_stg__stg_nerd_sal_goals/analytics___gtm_stg__stg_nerd_sal_goals.md", "unique_id": "doc.yoda.analytics___gtm_stg__stg_nerd_sal_goals_segment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___gtm_stg__acv_goal": {"name": "analytics___gtm_stg__acv_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal", "block_contents": "A modeled view for the nerd acv goals | PK: acv_goal_id | Granularity: motnh, segment, region, demand_gen_channel, product"}, "doc.yoda.analytics___gtm_stg__acv_goal_acv_goal_id": {"name": "analytics___gtm_stg__acv_goal_acv_goal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal_acv_goal_id", "block_contents": "PK generated with SHA2"}, "doc.yoda.analytics___gtm_stg__acv_goal_deal_type": {"name": "analytics___gtm_stg__acv_goal_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal_deal_type", "block_contents": "deal type (HT/SS/...)"}, "doc.yoda.analytics___gtm_stg__acv_goal_demand_gen_channel": {"name": "analytics___gtm_stg__acv_goal_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal_demand_gen_channel", "block_contents": "demand channel (Marketing/Partner/...)"}, "doc.yoda.analytics___gtm_stg__acv_goal_dwh_updated_at": {"name": "analytics___gtm_stg__acv_goal_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___gtm_stg__acv_goal_forecast_acv_goal": {"name": "analytics___gtm_stg__acv_goal_forecast_acv_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal_forecast_acv_goal", "block_contents": "goal value updated on the fly"}, "doc.yoda.analytics___gtm_stg__acv_goal_month": {"name": "analytics___gtm_stg__acv_goal_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal_month", "block_contents": ""}, "doc.yoda.analytics___gtm_stg__acv_goal_monthly_acv_goal": {"name": "analytics___gtm_stg__acv_goal_monthly_acv_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal_monthly_acv_goal", "block_contents": ""}, "doc.yoda.analytics___gtm_stg__acv_goal_product": {"name": "analytics___gtm_stg__acv_goal_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal_product", "block_contents": ""}, "doc.yoda.analytics___gtm_stg__acv_goal_region": {"name": "analytics___gtm_stg__acv_goal_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal_region", "block_contents": ""}, "doc.yoda.analytics___gtm_stg__acv_goal_revenue_stream": {"name": "analytics___gtm_stg__acv_goal_revenue_stream", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal_revenue_stream", "block_contents": "revenue stream (Sales/AM/Total SS)"}, "doc.yoda.analytics___gtm_stg__acv_goal_segment": {"name": "analytics___gtm_stg__acv_goal_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___gtm_stg__acv_goal/analytics___gtm_stg__acv_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__acv_goal_segment", "block_contents": "Sales Segment (US/IL/...)"}, "doc.yoda.analytics___gtm_stg__sal_goal": {"name": "analytics___gtm_stg__sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal", "block_contents": "A modeled view for the nerd sal goals | PK: sal_goal_id | Granularity: motnh, segment, region, demand_gen_channel, product"}, "doc.yoda.analytics___gtm_stg__sal_goal_deal_type": {"name": "analytics___gtm_stg__sal_goal_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal_deal_type", "block_contents": "deal type (HT/SS/...)"}, "doc.yoda.analytics___gtm_stg__sal_goal_demand_gen_channel": {"name": "analytics___gtm_stg__sal_goal_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal_demand_gen_channel", "block_contents": "demand channel (Marketing/Partner/...)"}, "doc.yoda.analytics___gtm_stg__sal_goal_dwh_updated_at": {"name": "analytics___gtm_stg__sal_goal_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___gtm_stg__sal_goal_forecast_sal_goal": {"name": "analytics___gtm_stg__sal_goal_forecast_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal_forecast_sal_goal", "block_contents": "goal value updated on the fly"}, "doc.yoda.analytics___gtm_stg__sal_goal_month": {"name": "analytics___gtm_stg__sal_goal_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal_month", "block_contents": ""}, "doc.yoda.analytics___gtm_stg__sal_goal_monthly_sal_goal": {"name": "analytics___gtm_stg__sal_goal_monthly_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal_monthly_sal_goal", "block_contents": ""}, "doc.yoda.analytics___gtm_stg__sal_goal_product": {"name": "analytics___gtm_stg__sal_goal_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal_product", "block_contents": ""}, "doc.yoda.analytics___gtm_stg__sal_goal_region": {"name": "analytics___gtm_stg__sal_goal_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal_region", "block_contents": ""}, "doc.yoda.analytics___gtm_stg__sal_goal_revenue_stream": {"name": "analytics___gtm_stg__sal_goal_revenue_stream", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal_revenue_stream", "block_contents": "revenue stream (Sales/AM/Total SS)"}, "doc.yoda.analytics___gtm_stg__sal_goal_sal_goal_id": {"name": "analytics___gtm_stg__sal_goal_sal_goal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal_sal_goal_id", "block_contents": "PK generated with SHA2"}, "doc.yoda.analytics___gtm_stg__sal_goal_segment": {"name": "analytics___gtm_stg__sal_goal_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "original_file_path": "models/analytics/gtm/staging/marts_compatible/analytics___new_revenue_stg__sal_goal/analytics___gtm_stg__sal_goal.md", "unique_id": "doc.yoda.analytics___gtm_stg__sal_goal_segment", "block_contents": "Sales Segment (US/IL/...)"}, "doc.yoda.analytics___loyalty__daily_merchant_app_key": {"name": "analytics___loyalty__daily_merchant_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty__daily_merchant_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty__daily_merchant_date": {"name": "analytics___loyalty__daily_merchant_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty__daily_merchant_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty__daily_merchant_is_analytics_installed": {"name": "analytics___loyalty__daily_merchant_is_analytics_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty__daily_merchant_is_analytics_installed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty__daily_merchant_is_can_generate_coupons": {"name": "analytics___loyalty__daily_merchant_is_can_generate_coupons", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty__daily_merchant_is_can_generate_coupons", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty__daily_merchant_is_discount_combination": {"name": "analytics___loyalty__daily_merchant_is_discount_combination", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty__daily_merchant_is_discount_combination", "block_contents": "Is the merchant has discount stacking"}, "doc.yoda.analytics___loyalty__daily_merchant_is_program_live": {"name": "analytics___loyalty__daily_merchant_is_program_live", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty__daily_merchant_is_program_live", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty__daily_merchant_is_redemptions_enabled": {"name": "analytics___loyalty__daily_merchant_is_redemptions_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty__daily_merchant_is_redemptions_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty__daily_merchant_is_rewards_installed": {"name": "analytics___loyalty__daily_merchant_is_rewards_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty__daily_merchant_is_rewards_installed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty__daily_merchant_is_storefront_css_included": {"name": "analytics___loyalty__daily_merchant_is_storefront_css_included", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty__daily_merchant_is_storefront_css_included", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty__daily_merchant_is_widget_enabled": {"name": "analytics___loyalty__daily_merchant_is_widget_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty__daily_merchant_is_widget_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty__daily_merchant_merchant_id": {"name": "analytics___loyalty__daily_merchant_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty__daily_merchant_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_daily_merchant": {"name": "analytics___loyalty_daily_merchant", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__daily_merchant/analytics___loyalty__daily_merchant.md", "unique_id": "doc.yoda.analytics___loyalty_daily_merchant", "block_contents": "Merchant daily sanpshots"}, "doc.yoda.analytics___loyalty__earning_rule_activation_daily": {"name": "analytics___loyalty__earning_rule_activation_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "unique_id": "doc.yoda.analytics___loyalty__earning_rule_activation_daily", "block_contents": "Modeled table for the last 2 years earning rules activation statuses\nGranularity & PK : date, earning_rule_id"}, "doc.yoda.analytics___loyalty__earning_rule_activation_daily_app_key": {"name": "analytics___loyalty__earning_rule_activation_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "unique_id": "doc.yoda.analytics___loyalty__earning_rule_activation_daily_app_key", "block_contents": ""}, "doc.yoda.analytics___loyalty__earning_rule_activation_daily_date": {"name": "analytics___loyalty__earning_rule_activation_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "unique_id": "doc.yoda.analytics___loyalty__earning_rule_activation_daily_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__earning_rule_activation_daily_dwh_updated_at": {"name": "analytics___loyalty__earning_rule_activation_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "unique_id": "doc.yoda.analytics___loyalty__earning_rule_activation_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__earning_rule_activation_daily_earning_rule_id": {"name": "analytics___loyalty__earning_rule_activation_daily_earning_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "unique_id": "doc.yoda.analytics___loyalty__earning_rule_activation_daily_earning_rule_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__earning_rule_activation_daily_earning_rule_type": {"name": "analytics___loyalty__earning_rule_activation_daily_earning_rule_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "unique_id": "doc.yoda.analytics___loyalty__earning_rule_activation_daily_earning_rule_type", "block_contents": ""}, "doc.yoda.analytics___loyalty__earning_rule_activation_daily_is_active": {"name": "analytics___loyalty__earning_rule_activation_daily_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "unique_id": "doc.yoda.analytics___loyalty__earning_rule_activation_daily_is_active", "block_contents": ""}, "doc.yoda.analytics___loyalty__earning_rule_activation_daily_is_perk_rewarded": {"name": "analytics___loyalty__earning_rule_activation_daily_is_perk_rewarded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "unique_id": "doc.yoda.analytics___loyalty__earning_rule_activation_daily_is_perk_rewarded", "block_contents": "Indication for a date which the earning rule rewarded a customer at least once"}, "doc.yoda.analytics___loyalty__earning_rule_activation_daily_merchant_id": {"name": "analytics___loyalty__earning_rule_activation_daily_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__earning_rule_activation_daily/analytics___loyalty__earning_rule_activation_daily.md", "unique_id": "doc.yoda.analytics___loyalty__earning_rule_activation_daily_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats", "block_contents": "Yearly revenue per merchants customers"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_app_key": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_app_key", "block_contents": "App key"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_customers": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_customers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_customers", "block_contents": "Customers"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_customers_cnt": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_customers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_customers_cnt", "block_contents": "Customers per percentail"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_domain": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_domain", "block_contents": "The url domain of the merchant"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_dwh_updated_at": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_dwh_updated_at", "block_contents": "Updated at"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_is_tier": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_is_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_is_tier", "block_contents": "indication if the customer is in a tier"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_loyalty_vip_stat_id": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_loyalty_vip_stat_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_loyalty_vip_stat_id", "block_contents": "Table id"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_merchant_id": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_merchant_id", "block_contents": "Merchant id"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_min_yearly_revenue": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_min_yearly_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_min_yearly_revenue", "block_contents": "Min yerarly revenue"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_min_yearly_revenue_in_usd": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_min_yearly_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_min_yearly_revenue_in_usd", "block_contents": "Min yeaerly revenue per tier in usd"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_min_yearly_revenue_usd": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_min_yearly_revenue_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_min_yearly_revenue_usd", "block_contents": "Min yearly USD revenue per percentail"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_percentile_ltv_rounded": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_percentile_ltv_rounded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_percentile_ltv_rounded", "block_contents": "Yearly revenue percentail per merchant"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_rounded_ltv_percentail": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_rounded_ltv_percentail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_rounded_ltv_percentail", "block_contents": "Percentail yearly revenue"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_rounded_yearly_revenue_percentail": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_rounded_yearly_revenue_percentail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_rounded_yearly_revenue_percentail", "block_contents": "Percentail yearly revenue"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_tier_status": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_tier_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_tier_status", "block_contents": "The tier status of the merchant"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_vip_teir_name": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_vip_teir_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_vip_teir_name", "block_contents": "The teir name"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_vip_tier_name": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_vip_tier_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_vip_tier_name", "block_contents": "Tier name"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_website": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_website", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_website", "block_contents": "Merchants domain"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_yearly_revenue": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_yearly_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_yearly_revenue", "block_contents": "The total yearly revenue"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_yearly_revenue_in_usd": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_yearly_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_yearly_revenue_in_usd", "block_contents": "Yearly revenue in usd"}, "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_yearly_revenue_usd": {"name": "analytics___loyalty__ht_customers_vip_tiers_stats_yearly_revenue_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_customers_vip_tiers_stats/analytics___loyalty__ht_customers_vip_tiers_stats.md", "unique_id": "doc.yoda.analytics___loyalty__ht_customers_vip_tiers_stats_yearly_revenue_usd", "block_contents": "Yearly revenue in USD"}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort": {"name": "analytics___loyalty__ht_ss_retention_cohort", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort", "block_contents": "Dedicated table for HT-SS . Activation and retention cohort."}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_closing_plan_name_in_month": {"name": "analytics___loyalty__ht_ss_retention_cohort_closing_plan_name_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_closing_plan_name_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_cohort_month": {"name": "analytics___loyalty__ht_ss_retention_cohort_cohort_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_cohort_month", "block_contents": "The first month of HT-SS"}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_dwh_updated_at": {"name": "analytics___loyalty__ht_ss_retention_cohort_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_merchant_id": {"name": "analytics___loyalty__ht_ss_retention_cohort_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_month": {"name": "analytics___loyalty__ht_ss_retention_cohort_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_months_since_start": {"name": "analytics___loyalty__ht_ss_retention_cohort_months_since_start", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_months_since_start", "block_contents": ""}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_platform": {"name": "analytics___loyalty__ht_ss_retention_cohort_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_platform", "block_contents": ""}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_time_to_active_1": {"name": "analytics___loyalty__ht_ss_retention_cohort_time_to_active_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_time_to_active_1", "block_contents": ""}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_time_to_active_2": {"name": "analytics___loyalty__ht_ss_retention_cohort_time_to_active_2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_time_to_active_2", "block_contents": ""}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_time_to_active_3": {"name": "analytics___loyalty__ht_ss_retention_cohort_time_to_active_3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_time_to_active_3", "block_contents": ""}, "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_user_created_date": {"name": "analytics___loyalty__ht_ss_retention_cohort_user_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__ht_ss_retention_cohort/analytics___loyalty__ht_ss_retention_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__ht_ss_retention_cohort_user_created_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_app_key": {"name": "analytics___loyalty__merchant_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_app_key", "block_contents": "Merchant enrichment table"}, "doc.yoda.analytics___loyalty__merchant_company_name": {"name": "analytics___loyalty__merchant_company_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_company_name", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_contact_email": {"name": "analytics___loyalty__merchant_contact_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_contact_email", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_currency": {"name": "analytics___loyalty__merchant_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_currency", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_date": {"name": "analytics___loyalty__merchant_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_dwh_updated_at": {"name": "analytics___loyalty__merchant_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_dwh_updated_date": {"name": "analytics___loyalty__merchant_dwh_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_dwh_updated_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_facebook_app_id": {"name": "analytics___loyalty__merchant_facebook_app_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_facebook_app_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_free_trial_expires_at": {"name": "analytics___loyalty__merchant_free_trial_expires_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_free_trial_expires_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_from_email": {"name": "analytics___loyalty__merchant_from_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_from_email", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_group_id": {"name": "analytics___loyalty__merchant_group_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_group_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_has_rewards_installed": {"name": "analytics___loyalty__merchant_has_rewards_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_has_rewards_installed", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_has_store": {"name": "analytics___loyalty__merchant_has_store", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_has_store", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_install_order_volume": {"name": "analytics___loyalty__merchant_install_order_volume", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_install_order_volume", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_installed_analytics_at": {"name": "analytics___loyalty__merchant_installed_analytics_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_installed_analytics_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_installed_rewards_at": {"name": "analytics___loyalty__merchant_installed_rewards_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_installed_rewards_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_analytics_installed": {"name": "analytics___loyalty__merchant_is_analytics_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_analytics_installed", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_approved": {"name": "analytics___loyalty__merchant_is_approved", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_approved", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_can_generate_coupons": {"name": "analytics___loyalty__merchant_is_can_generate_coupons", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_can_generate_coupons", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_completed_onboarding": {"name": "analytics___loyalty__merchant_is_completed_onboarding", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_completed_onboarding", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_completed_profile": {"name": "analytics___loyalty__merchant_is_completed_profile", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_completed_profile", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_cross_origin_store_accounts": {"name": "analytics___loyalty__merchant_is_cross_origin_store_accounts", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_cross_origin_store_accounts", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_delete_used_coupons_enable": {"name": "analytics___loyalty__merchant_is_delete_used_coupons_enable", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_delete_used_coupons_enable", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_dev_account": {"name": "analytics___loyalty__merchant_is_dev_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_dev_account", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_discount_code_based_referral_program_enabled": {"name": "analytics___loyalty__merchant_is_discount_code_based_referral_program_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_discount_code_based_referral_program_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_first_time_referral_discounts_enable_flag": {"name": "analytics___loyalty__merchant_is_first_time_referral_discounts_enable_flag", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_first_time_referral_discounts_enable_flag", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_free_products_enabled": {"name": "analytics___loyalty__merchant_is_free_products_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_free_products_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_include_shipping": {"name": "analytics___loyalty__merchant_is_include_shipping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_include_shipping", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_on_free_trial": {"name": "analytics___loyalty__merchant_is_on_free_trial", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_on_free_trial", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_program_live": {"name": "analytics___loyalty__merchant_is_program_live", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_program_live", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_program_locked": {"name": "analytics___loyalty__merchant_is_program_locked", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_program_locked", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_redemptions_enabled": {"name": "analytics___loyalty__merchant_is_redemptions_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_redemptions_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_rewards_installed": {"name": "analytics___loyalty__merchant_is_rewards_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_rewards_installed", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_setup_rewards_page": {"name": "analytics___loyalty__merchant_is_setup_rewards_page", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_setup_rewards_page", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_shipping_included": {"name": "analytics___loyalty__merchant_is_shipping_included", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_shipping_included", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_storefront_css_included": {"name": "analytics___loyalty__merchant_is_storefront_css_included", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_storefront_css_included", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_sync_fields_with_processor": {"name": "analytics___loyalty__merchant_is_sync_fields_with_processor", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_sync_fields_with_processor", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_test_account": {"name": "analytics___loyalty__merchant_is_test_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_test_account", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_verified_email_domain": {"name": "analytics___loyalty__merchant_is_verified_email_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_verified_email_domain", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_vip_enabled": {"name": "analytics___loyalty__merchant_is_vip_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_vip_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_vip_tiers_job_running": {"name": "analytics___loyalty__merchant_is_vip_tiers_job_running", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_vip_tiers_job_running", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_weekly_digest_enabled": {"name": "analytics___loyalty__merchant_is_weekly_digest_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_weekly_digest_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_is_widget_enabled": {"name": "analytics___loyalty__merchant_is_widget_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_is_widget_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_logo_url": {"name": "analytics___loyalty__merchant_logo_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_logo_url", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_loyalty_opt_in_strategy": {"name": "analytics___loyalty__merchant_loyalty_opt_in_strategy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_loyalty_opt_in_strategy", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_merchant_created_at": {"name": "analytics___loyalty__merchant_merchant_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_merchant_created_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_merchant_guid": {"name": "analytics___loyalty__merchant_merchant_guid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_merchant_guid", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_merchant_id": {"name": "analytics___loyalty__merchant_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_organization_key": {"name": "analytics___loyalty__merchant_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_organization_key", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan": {"name": "analytics___loyalty__merchant_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_name": {"name": "analytics___loyalty__merchant_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_name", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_platform": {"name": "analytics___loyalty__merchant_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_platform", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_platform_engine": {"name": "analytics___loyalty__merchant_platform_engine", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_platform_engine", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_points_reminder_delay_days": {"name": "analytics___loyalty__merchant_points_reminder_delay_days", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_points_reminder_delay_days", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_process_order_status": {"name": "analytics___loyalty__merchant_process_order_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_process_order_status", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_process_refund_status": {"name": "analytics___loyalty__merchant_process_refund_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_process_refund_status", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_program_first_activated_at": {"name": "analytics___loyalty__merchant_program_first_activated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_program_first_activated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_program_first_activated_date": {"name": "analytics___loyalty__merchant_program_first_activated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_program_first_activated_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_referral_opt_in_strategy": {"name": "analytics___loyalty__merchant_referral_opt_in_strategy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_referral_opt_in_strategy", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_referral_reminder_days": {"name": "analytics___loyalty__merchant_referral_reminder_days", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_referral_reminder_days", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_round_discounts_strategy": {"name": "analytics___loyalty__merchant_round_discounts_strategy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_round_discounts_strategy", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_source": {"name": "analytics___loyalty__merchant_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_source", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_time_zone": {"name": "analytics___loyalty__merchant_time_zone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_time_zone", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_uninstalled_analytics_at": {"name": "analytics___loyalty__merchant_uninstalled_analytics_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_uninstalled_analytics_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_uninstalled_rewards_at": {"name": "analytics___loyalty__merchant_uninstalled_rewards_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_uninstalled_rewards_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_value_per_subscriber_cents": {"name": "analytics___loyalty__merchant_value_per_subscriber_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_value_per_subscriber_cents", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_vip_type": {"name": "analytics___loyalty__merchant_vip_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_vip_type", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_website": {"name": "analytics___loyalty__merchant_website", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_website", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_widget_enabled": {"name": "analytics___loyalty__merchant_widget_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant/analytics___loyalty__merchant.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_widget_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_activeness_daily": {"name": "analytics___loyalty__merchant_activeness_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_activeness_daily", "block_contents": "Modeled table which indicates different activness indication per merchant daily (2y back)\nPK & Granularity: date, app_key, merchant_id"}, "doc.yoda.analytics___loyalty__merchant_activeness_daily_app_key": {"name": "analytics___loyalty__merchant_activeness_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_activeness_daily_app_key", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_activeness_daily_date": {"name": "analytics___loyalty__merchant_activeness_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_activeness_daily_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_activeness_daily_dwh_updated_at": {"name": "analytics___loyalty__merchant_activeness_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_activeness_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_activeness_daily_is_active2": {"name": "analytics___loyalty__merchant_activeness_daily_is_active2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_activeness_daily_is_active2", "block_contents": "Indicates if that store had any widget loaded that date with min 3 distinct 'fingerprints' (users)"}, "doc.yoda.analytics___loyalty__merchant_activeness_daily_is_active2_1": {"name": "analytics___loyalty__merchant_activeness_daily_is_active2_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_activeness_daily_is_active2_1", "block_contents": "Indicates if that store had 'rewards_page' widget loaded that date with min 3 distinct 'fingerprints' (users)"}, "doc.yoda.analytics___loyalty__merchant_activeness_daily_merchant_id": {"name": "analytics___loyalty__merchant_activeness_daily_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_activeness_daily/analytics___loyalty__merchant_activeness_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_activeness_daily_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily": {"name": "analytics___loyalty__merchant_metrics_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily", "block_contents": "Holds daily information (dimentions & measures) for each merchant"}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_app_key": {"name": "analytics___loyalty__merchant_metrics_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_app_key", "block_contents": "Yotpo store unique id"}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_date": {"name": "analytics___loyalty__merchant_metrics_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_active2": {"name": "analytics___loyalty__merchant_metrics_daily_is_active2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_active2", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_active2_1": {"name": "analytics___loyalty__merchant_metrics_daily_is_active2_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_active2_1", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_analytics_installed": {"name": "analytics___loyalty__merchant_metrics_daily_is_analytics_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_analytics_installed", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_can_generate_coupons": {"name": "analytics___loyalty__merchant_metrics_daily_is_can_generate_coupons", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_can_generate_coupons", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_program_live": {"name": "analytics___loyalty__merchant_metrics_daily_is_program_live", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_program_live", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_redemptions_enabled": {"name": "analytics___loyalty__merchant_metrics_daily_is_redemptions_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_redemptions_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_rewards_installed": {"name": "analytics___loyalty__merchant_metrics_daily_is_rewards_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_rewards_installed", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_storefront_css_included": {"name": "analytics___loyalty__merchant_metrics_daily_is_storefront_css_included", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_storefront_css_included", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_widget_enabled": {"name": "analytics___loyalty__merchant_metrics_daily_is_widget_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_is_widget_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_merchant_id": {"name": "analytics___loyalty__merchant_metrics_daily_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_metrics_daily_widget_enabled": {"name": "analytics___loyalty__merchant_metrics_daily_widget_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_metrics_daily/analytics___loyalty__merchant_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_metrics_daily_widget_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation": {"name": "analytics___loyalty__merchant_monthly_element_activation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation", "block_contents": "Monthly table for merchants that had redemptions.\nThe table shows for each merchant and month from which type of sources he had redemptions (Not refferal).\nThe start date of the table is '2023-05-03' because the redemption source field was added after this day.\nGranularity and PK : merchant_id,month,redemption_source"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_app_key": {"name": "analytics___loyalty__merchant_monthly_element_activation_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_app_key", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_closing_plan_name_in_month": {"name": "analytics___loyalty__merchant_monthly_element_activation_closing_plan_name_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_closing_plan_name_in_month", "block_contents": "The plan name in the last day of the month"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_dwh_updated_at": {"name": "analytics___loyalty__merchant_monthly_element_activation_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_expiration_policy_type": {"name": "analytics___loyalty__merchant_monthly_element_activation_expiration_policy_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_expiration_policy_type", "block_contents": "The point expiration policy in the end of the month"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_industry_name": {"name": "analytics___loyalty__merchant_monthly_element_activation_industry_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_industry_name", "block_contents": "Industry of the store"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_active3": {"name": "analytics___loyalty__merchant_monthly_element_activation_is_active3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_active3", "block_contents": "1/0 wether the merchant got to 4 unique redeeemrs"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_discount_stacking_order": {"name": "analytics___loyalty__merchant_monthly_element_activation_is_discount_stacking_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_discount_stacking_order", "block_contents": "1/0 if the merchant enbaled discount stacking from type 'order' in the end of month"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_discount_stacking_product": {"name": "analytics___loyalty__merchant_monthly_element_activation_is_discount_stacking_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_discount_stacking_product", "block_contents": "1/0 if the merchant enbaled discount stacking from type 'product' in the end of month"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_discount_stacking_shiping": {"name": "analytics___loyalty__merchant_monthly_element_activation_is_discount_stacking_shiping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_discount_stacking_shiping", "block_contents": "1/0 if the merchant enbaled discount stacking from type 'shiping' in the end of month"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_fixed_amount_redemption_in_month": {"name": "analytics___loyalty__merchant_monthly_element_activation_is_fixed_amount_redemption_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_fixed_amount_redemption_in_month", "block_contents": "1/0 if the merchant had at least one fixed amount redemption in the month"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_redeemable_redemption_in_month": {"name": "analytics___loyalty__merchant_monthly_element_activation_is_redeemable_redemption_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_is_redeemable_redemption_in_month", "block_contents": "1/0 if the merchant had at least one redeemable redemption in the month"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_merchant_id": {"name": "analytics___loyalty__merchant_monthly_element_activation_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_month": {"name": "analytics___loyalty__merchant_monthly_element_activation_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_onboarding_completion_date": {"name": "analytics___loyalty__merchant_monthly_element_activation_onboarding_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_onboarding_completion_date", "block_contents": "Date when the organization_key finished onboarding"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_organization_key": {"name": "analytics___loyalty__merchant_monthly_element_activation_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_organization_key", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_plan_type": {"name": "analytics___loyalty__merchant_monthly_element_activation_plan_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_plan_type", "block_contents": "Loyalty defenition of HT/LT . HT (PLATINUM,'ENTERPRISE)"}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_platform": {"name": "analytics___loyalty__merchant_monthly_element_activation_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_platform", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_redemption_source": {"name": "analytics___loyalty__merchant_monthly_element_activation_redemption_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_redemption_source", "block_contents": "The source where the redemption was accourd."}, "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_retention_period_in_days": {"name": "analytics___loyalty__merchant_monthly_element_activation_retention_period_in_days", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_monthly_element_activation/analytics___loyalty__merchant_monthly_element_activation.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_monthly_element_activation_retention_period_in_days", "block_contents": "The period of time which the points will be expired in the point expiration policy"}, "doc.yoda.analytics___loyalty__merchant_plan_daily": {"name": "analytics___loyalty__merchant_plan_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily", "block_contents": "Merchants daily plan changes and other enrichments\nPK and granularity: merchant_id, date"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_app_key": {"name": "analytics___loyalty__merchant_plan_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_app_key", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_changes": {"name": "analytics___loyalty__merchant_plan_daily_changes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_changes", "block_contents": "Describes the change in the merchant plan from last status plan - upgrade or downgrade"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_company_name": {"name": "analytics___loyalty__merchant_plan_daily_company_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_company_name", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_date": {"name": "analytics___loyalty__merchant_plan_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_did_upgrade_first_day": {"name": "analytics___loyalty__merchant_plan_daily_did_upgrade_first_day", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_did_upgrade_first_day", "block_contents": "Indicates whether the merchant upgraded his plan on the day he was created"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_dwh_updated_at": {"name": "analytics___loyalty__merchant_plan_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_first_plan_ever": {"name": "analytics___loyalty__merchant_plan_daily_first_plan_ever", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_first_plan_ever", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_first_time_active3_date": {"name": "analytics___loyalty__merchant_plan_daily_first_time_active3_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_first_time_active3_date", "block_contents": "first date a merchant accumulated 4 distinct users who redeemed points"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_is_active2": {"name": "analytics___loyalty__merchant_plan_daily_is_active2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_is_active2", "block_contents": "Indicates if that store had any widget loaded that date with min 3 distinct 'fingerprints' (users)"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_is_active2_1": {"name": "analytics___loyalty__merchant_plan_daily_is_active2_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_is_active2_1", "block_contents": "Indicates if that store had 'rewards_page' widget loaded that date with min 3 distinct 'fingerprints' (users)"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_is_dev_account": {"name": "analytics___loyalty__merchant_plan_daily_is_dev_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_is_dev_account", "block_contents": "Indicates whether the store is a dev one from the merchant end"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_is_ht_ss": {"name": "analytics___loyalty__merchant_plan_daily_is_ht_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_is_ht_ss", "block_contents": "HT motion Indication for users who made a subscription to GOLD plan with sales"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_is_install": {"name": "analytics___loyalty__merchant_plan_daily_is_install", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_is_install", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_is_install_date": {"name": "analytics___loyalty__merchant_plan_daily_is_install_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_is_install_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_is_program_live": {"name": "analytics___loyalty__merchant_plan_daily_is_program_live", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_is_program_live", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_is_start_day": {"name": "analytics___loyalty__merchant_plan_daily_is_start_day", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_is_start_day", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_is_uninstall_date": {"name": "analytics___loyalty__merchant_plan_daily_is_uninstall_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_is_uninstall_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_merchant_acc_unique_purchasers_cnt": {"name": "analytics___loyalty__merchant_plan_daily_merchant_acc_unique_purchasers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_merchant_acc_unique_purchasers_cnt", "block_contents": "Accumulated daily count of distinct customer who made order per merchant"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_merchant_acc_unique_redemptions_w_order_cnt": {"name": "analytics___loyalty__merchant_plan_daily_merchant_acc_unique_redemptions_w_order_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_merchant_acc_unique_redemptions_w_order_cnt", "block_contents": "Accumulated daily count of distinct redeem customer per merchant who made order with cupon"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_merchant_id": {"name": "analytics___loyalty__merchant_plan_daily_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_plan_id": {"name": "analytics___loyalty__merchant_plan_daily_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_plan_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_plan_id_prior_to_change": {"name": "analytics___loyalty__merchant_plan_daily_plan_id_prior_to_change", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_plan_id_prior_to_change", "block_contents": "If there was a change in plan (upgrade/downgrade) this column will show what was the plan id before the change"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_plan_name": {"name": "analytics___loyalty__merchant_plan_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_plan_name", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_plan_prior_to_change": {"name": "analytics___loyalty__merchant_plan_daily_plan_prior_to_change", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_plan_prior_to_change", "block_contents": "If there was a change in plan (upgrade/downgrade) this column will show what was the plan name before the change"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_platform": {"name": "analytics___loyalty__merchant_plan_daily_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_platform", "block_contents": "Describes the merchant platform with an addition for shopify_plus plan as a platform"}, "doc.yoda.analytics___loyalty__merchant_plan_daily_program_first_activated_at": {"name": "analytics___loyalty__merchant_plan_daily_program_first_activated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_program_first_activated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_program_first_activated_date": {"name": "analytics___loyalty__merchant_plan_daily_program_first_activated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_program_first_activated_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_user_created_date": {"name": "analytics___loyalty__merchant_plan_daily_user_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_user_created_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_daily_website": {"name": "analytics___loyalty__merchant_plan_daily_website", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_daily/analytics___loyalty__merchant_plan_daily.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_daily_website", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "block_contents": "Dedicated table for HT-SS . Activation and retention cohort.\nPK & Granularity: month, merchant_id, closing_plan_name_in_month"}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_closing_plan_name_in_month": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_closing_plan_name_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_closing_plan_name_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_cohort_month": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_cohort_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_cohort_month", "block_contents": "The first month of HT-SS"}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_dwh_updated_at": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_first_month_ht_ss": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_first_month_ht_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_first_month_ht_ss", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_month": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_months_since_start": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_months_since_start", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_months_since_start", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_platform": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_platform", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_time_to_active_1": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_time_to_active_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_time_to_active_1", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_time_to_active_2": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_time_to_active_2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_time_to_active_2", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_time_to_active_3": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_time_to_active_3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_time_to_active_3", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_user_created_date": {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_user_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly/analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_user_created_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort": {"name": "analytics___loyalty__merchant_plan_metrics_cohort", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "block_contents": "Modeled table of all merchant and their ever plan enriched with cohort metrics \nGranularity & Primary Key: merchant_id, plan_name"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_dwh_updated_at": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_first_plan_ever": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_first_plan_ever", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_first_plan_ever", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_first_time_plan": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_first_time_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_first_time_plan", "block_contents": "First date in which the merchant subscribed to this plan"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_is_ht_ss": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_is_ht_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_is_ht_ss", "block_contents": "Indication if that merchant subscribed to GOLD plan via sales or subscribed to any other plan after the first GOLD subscription"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_merchant_id": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_merchant_id", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_plan_name": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_plan_name", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_platform": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_platform", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_program_first_activated_date": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_program_first_activated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_program_first_activated_date", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_activation": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_activation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_activation", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active1_from_creation": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_active1_from_creation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active1_from_creation", "block_contents": "The days between merchant creation to merchant first active1"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active1_from_subscription": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_active1_from_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active1_from_subscription", "block_contents": "The days between merchant plan subscription to first time active1"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_1_from_creation": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_1_from_creation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_1_from_creation", "block_contents": "The days between merchant creation to merchant first active2_1"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_1_from_subscription": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_1_from_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_1_from_subscription", "block_contents": "The days between merchant plan subscription to first time active2_1"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_from_creation": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_from_creation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_from_creation", "block_contents": "The days between merchant creation to merchant first active2"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_from_subscription": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_from_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active2_from_subscription", "block_contents": "The days between merchant plan subscription to first time active2"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active3_from_creation": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_active3_from_creation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active3_from_creation", "block_contents": "The days between merchant creation to merchant first active3"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active3_from_subscription": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_active3_from_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_active3_from_subscription", "block_contents": "The days between merchant plan subscription to first time active3"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_bronze": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_bronze", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_bronze", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_enterprise": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_enterprise", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_enterprise", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_free": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_free", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_gold": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_gold", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_gold", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_platinum": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_platinum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_platinum", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_program_activation_from_creation": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_program_activation_from_creation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_program_activation_from_creation", "block_contents": "The days from merchant creation to Loyalty activation"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_silver": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_time_to_silver", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_time_to_silver", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_user_created_date": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_user_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_user_created_date", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_user_creation_month": {"name": "analytics___loyalty__merchant_plan_metrics_cohort_user_creation_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_metrics_cohort/analytics___loyalty__merchant_plan_metrics_cohort.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_metrics_cohort_user_creation_month", "block_contents": "program_first_activated_date"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly": {"name": "analytics___loyalty__merchant_plan_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly", "block_contents": "Aggregate merchant plan metrics by month"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_added_revenue_rate": {"name": "analytics___loyalty__merchant_plan_monthly_added_revenue_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_added_revenue_rate", "block_contents": "generated revenue from redeemers out of total revenue in the month"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_app_key": {"name": "analytics___loyalty__merchant_plan_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_app_key", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_closing_plan_id_in_month": {"name": "analytics___loyalty__merchant_plan_monthly_closing_plan_id_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_closing_plan_id_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_closing_plan_in_month": {"name": "analytics___loyalty__merchant_plan_monthly_closing_plan_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_closing_plan_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_closing_plan_name_in_month": {"name": "analytics___loyalty__merchant_plan_monthly_closing_plan_name_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_closing_plan_name_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_did_upgrade_first_day_in_month": {"name": "analytics___loyalty__merchant_plan_monthly_did_upgrade_first_day_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_did_upgrade_first_day_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_dwh_updated_at": {"name": "analytics___loyalty__merchant_plan_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_industry": {"name": "analytics___loyalty__merchant_plan_monthly_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_industry", "block_contents": "Industry"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_active2": {"name": "analytics___loyalty__merchant_plan_monthly_is_active2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_active2", "block_contents": "Indicates if that store had any widget loaded that month with min 3 distinct 'fingerprints' (users)"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_active2_1": {"name": "analytics___loyalty__merchant_plan_monthly_is_active2_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_active2_1", "block_contents": "Indicates if that store had 'rewards_page' widget loaded that month with min 3 distinct 'fingerprints' (users)"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_active3": {"name": "analytics___loyalty__merchant_plan_monthly_is_active3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_active3", "block_contents": "Indicates if that store had at least 4 distinct customers who redeemed points that month"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_ht_ss": {"name": "analytics___loyalty__merchant_plan_monthly_is_ht_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_ht_ss", "block_contents": "Indicates if merchant was HT motion at least once a month in that month"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_install_month": {"name": "analytics___loyalty__merchant_plan_monthly_is_install_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_install_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_program_live": {"name": "analytics___loyalty__merchant_plan_monthly_is_program_live", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_program_live", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_uninstall_month": {"name": "analytics___loyalty__merchant_plan_monthly_is_uninstall_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_is_uninstall_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_acc_unique_redeemers_cnt": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_acc_unique_redeemers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_acc_unique_redeemers_cnt", "block_contents": "Accumulated last 3 months distinct redeem customer per merchant who made order with cupon"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_added_revenue": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_added_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_added_revenue", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_added_revenue_rate": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_added_revenue_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_added_revenue_rate", "block_contents": "Added revenue rate (added revenue / total revenue)"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_loyalty_revenue_sum": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_loyalty_revenue_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_loyalty_revenue_sum", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_non_redeemers_cnt": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_non_redeemers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_non_redeemers_cnt", "block_contents": "Count distinct customer_ids which didn't make purchase with cupon even once in the last 3 months"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_orders_avg_bucket": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_orders_avg_bucket", "block_contents": "Monthly last 3 month avg order bucket"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_participation_rate": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_participation_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_participation_rate", "block_contents": "Last 3 month (total redeemers / total purchasers)"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_purchasers_cnt": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_purchasers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_purchasers_cnt", "block_contents": "Count distinct customer_ids which made purchase at least once in the last 3 months"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_redeemers_cnt": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_redeemers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_redeemers_cnt", "block_contents": "Count distinct customer_ids which made purchase with cupon code at least once in the last 3 months"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_spb_non_redeemers": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_spb_non_redeemers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_spb_non_redeemers", "block_contents": "spend per buyer for non redeemers - total revenue generated from customers that are non-redeemers"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_spb_redeemers": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_spb_redeemers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_spb_redeemers", "block_contents": "spend per buyer for redeemers - total revenue generated from customers that are redeemers"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_total_purchasers_cnt": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_total_purchasers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_total_purchasers_cnt", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_total_redeemers_cnt": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_total_redeemers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_total_redeemers_cnt", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_total_revenue_sum": {"name": "analytics___loyalty__merchant_plan_monthly_last_3m_total_revenue_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_last_3m_total_revenue_sum", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_loyalty_csm_name": {"name": "analytics___loyalty__merchant_plan_monthly_loyalty_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_loyalty_csm_name", "block_contents": "Current CSM Name"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_loyalty_revenue": {"name": "analytics___loyalty__merchant_plan_monthly_loyalty_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_loyalty_revenue", "block_contents": "Money from orders with a coupon code"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_loyalty_revenue_rate": {"name": "analytics___loyalty__merchant_plan_monthly_loyalty_revenue_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_loyalty_revenue_rate", "block_contents": "total loyalty revneue(revenee from orders with coupons) / total revenue"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_merchant_id": {"name": "analytics___loyalty__merchant_plan_monthly_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_month": {"name": "analytics___loyalty__merchant_plan_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_opening_plan_id_in_month": {"name": "analytics___loyalty__merchant_plan_monthly_opening_plan_id_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_opening_plan_id_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_opening_plan_in_month": {"name": "analytics___loyalty__merchant_plan_monthly_opening_plan_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_opening_plan_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_opening_plan_name_in_month": {"name": "analytics___loyalty__merchant_plan_monthly_opening_plan_name_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_opening_plan_name_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_participation_rate": {"name": "analytics___loyalty__merchant_plan_monthly_participation_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_participation_rate", "block_contents": "Total redeemers/ total purchasers"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_plan_changes": {"name": "analytics___loyalty__merchant_plan_monthly_plan_changes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_plan_changes", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_platform": {"name": "analytics___loyalty__merchant_plan_monthly_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_platform", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_total_purchasers": {"name": "analytics___loyalty__merchant_plan_monthly_total_purchasers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_total_purchasers", "block_contents": "Total customers that made purchase"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_total_redeemers": {"name": "analytics___loyalty__merchant_plan_monthly_total_redeemers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_total_redeemers", "block_contents": "Total customers that made an order with redemption"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_total_revenue": {"name": "analytics___loyalty__merchant_plan_monthly_total_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_total_revenue", "block_contents": "Total revenue from orders"}, "doc.yoda.analytics___loyalty__merchant_plan_monthly_website": {"name": "analytics___loyalty__merchant_plan_monthly_website", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_monthly/analytics___loyalty__merchant_plan_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_monthly_website", "block_contents": "Merchants' website"}, "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly": {"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly", "block_contents": "Holds retention cohort merchant plan (besides FREE and BRONZE) from each plan first month | Granularity & Primary Key: plan_name,month,merchant_id"}, "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_dwh_updated_at": {"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_is_ht_ss": {"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly_is_ht_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_is_ht_ss", "block_contents": "Indicates if merchant was HT motion at least once a month in that month"}, "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_merchant_id": {"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_month": {"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_first_month": {"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_first_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_first_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name": {"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_platform": {"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_platform", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_time_from_plan_first_month": {"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly_time_from_plan_first_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_retention_cohort_monthly/analytics___loyalty__merchant_plan_retention_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly_time_from_plan_first_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly", "block_contents": "Merchant lrr and participation cohort\nPK & Granularity: month, merchant_id, plan_name"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_app_key": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_app_key", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_cohort_plan": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_cohort_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_cohort_plan", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_company_name": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_company_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_company_name", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_dwh_updated_at": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_first_month_active_3": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_first_month_active_3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_first_month_active_3", "block_contents": "First time the merchant became active 3"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_first_plan": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_first_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_first_plan", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_first_time_plan": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_first_time_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_first_time_plan", "block_contents": "Plan of the cohort"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_industry": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_industry", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_is_discount_stacking_enabled": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_is_discount_stacking_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_is_discount_stacking_enabled", "block_contents": "1/0 if the merchant enbaled discount stacking"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_is_earned_date_point_expiration_policy": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_is_earned_date_point_expiration_policy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_is_earned_date_point_expiration_policy", "block_contents": "1/0 if the merchant enbaled point expiration from 'based on date earned' type"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_is_program_live": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_is_program_live", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_is_program_live", "block_contents": "Monnthly indication if the program is live"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_is_redemption_from_checkout_extension": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_is_redemption_from_checkout_extension", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_is_redemption_from_checkout_extension", "block_contents": "1/0 if the merchant had redemption from checkout extension"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_is_redemption_from_sticky_bar": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_is_redemption_from_sticky_bar", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_is_redemption_from_sticky_bar", "block_contents": "1/0 if the merchant had redemption from sticky bar"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_added_revenue": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_added_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_added_revenue", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_added_revenue_rate": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_added_revenue_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_added_revenue_rate", "block_contents": "last 3 month (added revenue / total revenue)"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_loyalty_revenue_sum": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_loyalty_revenue_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_loyalty_revenue_sum", "block_contents": "total amount from reddemed purchases in the last 3 months per merchant"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_lrr": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_lrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_lrr", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_non_redeemers_cnt": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_non_redeemers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_non_redeemers_cnt", "block_contents": "Count distinct customer_ids which didn't make purchase with cupon even once in the last 3 months"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_orders_avg_bucket": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_orders_avg_bucket", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_participation_rate": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_participation_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_participation_rate", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_purchasers_cnt": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_purchasers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_purchasers_cnt", "block_contents": "Count distinct customer_ids which made purchase at least once in the last 3 months"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_redeemers_cnt": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_redeemers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_redeemers_cnt", "block_contents": "Count distinct customer_ids which made purchase with cupon code at least once in the last 3 months"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_spb_non_redeemers": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_spb_non_redeemers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_spb_non_redeemers", "block_contents": "spend per buyer for non redeemers - total revenue generated from customers that are non-redeemers"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_spb_redeemers": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_spb_redeemers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_spb_redeemers", "block_contents": "spend per buyer for redeemers - total revenue generated from customers that are redeemers"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_total_purchasers_cnt": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_total_purchasers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_total_purchasers_cnt", "block_contents": "total count of purchasers in the last 3 months per merchant"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_total_redeemers_cnt": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_total_redeemers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_total_redeemers_cnt", "block_contents": "total count of redeemers in the last 3 months per merchant"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_total_revenue_sum": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_total_revenue_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_last_3m_total_revenue_sum", "block_contents": "total amount from reddemed purchases in the last 3 months per merchant"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_loyalty_revenue": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_loyalty_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_loyalty_revenue", "block_contents": "Total revenue from orders with coupons"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_lrr": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_lrr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_lrr", "block_contents": "total loyalty revenue out of total revenue"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_month": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_months_from_subscription": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_months_from_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_months_from_subscription", "block_contents": "months since the date of the start of the plan"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_organization_key": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_participation_rate": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_participation_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_participation_rate", "block_contents": "total redeemers out of total purchasers"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_plan_in_month": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_plan_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_plan_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_plan_name": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_plan_name", "block_contents": "plan in the month"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_platform": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_platform", "block_contents": ""}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_total_purchasers": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_total_purchasers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_total_purchasers", "block_contents": "Total Purchasers in Month"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_total_redeemers": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_total_redeemers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_total_redeemers", "block_contents": "total purchasers made an order with a coupon code"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_total_revenue": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_total_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_total_revenue", "block_contents": "Total Revneue in the month"}, "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_website": {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly_website", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__merchant_plan_value_cohort_monthly/analytics___loyalty__merchant_plan_value_cohort_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly_website", "block_contents": ""}, "doc.yoda.analytics___loyalty__organization_metrics_monthly": {"name": "analytics___loyalty__organization_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__organization_metrics_monthly", "block_contents": "Modeled view of loyalty monthly metrics aggreagted in organization level, PK & Granularity: organization_key, month"}, "doc.yoda.analytics___loyalty__organization_metrics_monthly_month": {"name": "analytics___loyalty__organization_metrics_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__organization_metrics_monthly_month", "block_contents": "PK 2/2"}, "doc.yoda.analytics___loyalty__organization_metrics_monthly_organization_key": {"name": "analytics___loyalty__organization_metrics_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__organization_metrics_monthly/analytics___loyalty__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__organization_metrics_monthly_organization_key", "block_contents": "PK 1/2"}, "doc.yoda.analytics___loyalty__plan_metrics_daily": {"name": "analytics___loyalty__plan_metrics_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily", "block_contents": "Modeled table which aggrigates the merchant_plan_daily table \nPK & Granularity: date, did_upgrade_first_day, plan,plan_prior_to_change,changes,platform,first_plan_ever,is_ht_ss"}, "doc.yoda.analytics___loyalty__plan_metrics_daily_active2_1_cnt": {"name": "analytics___loyalty__plan_metrics_daily_active2_1_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_active2_1_cnt", "block_contents": "Aggregates 'rewards_page' widget loaded that month with min 3 distinct 'fingerprints' (users)"}, "doc.yoda.analytics___loyalty__plan_metrics_daily_active2_cnt": {"name": "analytics___loyalty__plan_metrics_daily_active2_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_active2_cnt", "block_contents": "Aggregates widget loaded that date with min 3 distinct 'fingerprints' (users)"}, "doc.yoda.analytics___loyalty__plan_metrics_daily_changes": {"name": "analytics___loyalty__plan_metrics_daily_changes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_changes", "block_contents": "Describes all changes in plan trend (upgrade/downgrade)"}, "doc.yoda.analytics___loyalty__plan_metrics_daily_date": {"name": "analytics___loyalty__plan_metrics_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_daily_did_upgrade_first_day": {"name": "analytics___loyalty__plan_metrics_daily_did_upgrade_first_day", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_did_upgrade_first_day", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_daily_dwh_updated_at": {"name": "analytics___loyalty__plan_metrics_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_daily_first_plan_ever": {"name": "analytics___loyalty__plan_metrics_daily_first_plan_ever", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_first_plan_ever", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_daily_install_cnt": {"name": "analytics___loyalty__plan_metrics_daily_install_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_install_cnt", "block_contents": "Count of distinct merchant who installed the program that day"}, "doc.yoda.analytics___loyalty__plan_metrics_daily_is_ht_ss": {"name": "analytics___loyalty__plan_metrics_daily_is_ht_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_is_ht_ss", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_daily_merchant_cnt": {"name": "analytics___loyalty__plan_metrics_daily_merchant_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_merchant_cnt", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_daily_plan_name": {"name": "analytics___loyalty__plan_metrics_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_plan_name", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_daily_plan_prior_to_change": {"name": "analytics___loyalty__plan_metrics_daily_plan_prior_to_change", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_plan_prior_to_change", "block_contents": "Describes the plan name which was before the upgrade/downgrade"}, "doc.yoda.analytics___loyalty__plan_metrics_daily_platform": {"name": "analytics___loyalty__plan_metrics_daily_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_platform", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_daily_program_live_cnt": {"name": "analytics___loyalty__plan_metrics_daily_program_live_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_program_live_cnt", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_daily_uninstall_cnt": {"name": "analytics___loyalty__plan_metrics_daily_uninstall_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_daily/analytics___loyalty__plan_metrics_daily.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_daily_uninstall_cnt", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly": {"name": "analytics___loyalty__plan_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly", "block_contents": "Modeled table which aggregate plan metrics daily into monthly grnularity\nPK & Granularity: month, did_upgrade_first_day_in_month, closing_plan_name_in_month,opening_plan_name_in_month,closing_plan_id_in_month,is_ht_ss\nopening_plan_id_in_month,plan_changes,platform"}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_active2_1_cnt": {"name": "analytics___loyalty__plan_metrics_monthly_active2_1_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_active2_1_cnt", "block_contents": "Aggregates 'rewards_page' widget loaded that month and plan with min 3 distinct 'fingerprints' (users)"}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_active2_cnt": {"name": "analytics___loyalty__plan_metrics_monthly_active2_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_active2_cnt", "block_contents": "Aggregates widget loaded that month and plan with min 3 distinct 'fingerprints' (users)"}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_active3_cnt": {"name": "analytics___loyalty__plan_metrics_monthly_active3_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_active3_cnt", "block_contents": "Aggregates total active3 merchants in a month"}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_closing_plan_id_in_month": {"name": "analytics___loyalty__plan_metrics_monthly_closing_plan_id_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_closing_plan_id_in_month", "block_contents": "Describe the closing plan id in month"}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_closing_plan_name_in_month": {"name": "analytics___loyalty__plan_metrics_monthly_closing_plan_name_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_closing_plan_name_in_month", "block_contents": "Describe the closing plan name in month"}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_did_upgrade_first_day_in_month": {"name": "analytics___loyalty__plan_metrics_monthly_did_upgrade_first_day_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_did_upgrade_first_day_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_dwh_updated_at": {"name": "analytics___loyalty__plan_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_installs": {"name": "analytics___loyalty__plan_metrics_monthly_installs", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_installs", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_installs_cnt": {"name": "analytics___loyalty__plan_metrics_monthly_installs_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_installs_cnt", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_is_ht_ss": {"name": "analytics___loyalty__plan_metrics_monthly_is_ht_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_is_ht_ss", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_is_install_month": {"name": "analytics___loyalty__plan_metrics_monthly_is_install_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_is_install_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_is_uninstall_month": {"name": "analytics___loyalty__plan_metrics_monthly_is_uninstall_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_is_uninstall_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_merchants": {"name": "analytics___loyalty__plan_metrics_monthly_merchants", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_merchants", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_merchants_cnt": {"name": "analytics___loyalty__plan_metrics_monthly_merchants_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_merchants_cnt", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_month": {"name": "analytics___loyalty__plan_metrics_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_opening_plan_id_in_month": {"name": "analytics___loyalty__plan_metrics_monthly_opening_plan_id_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_opening_plan_id_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_opening_plan_name_in_month": {"name": "analytics___loyalty__plan_metrics_monthly_opening_plan_name_in_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_opening_plan_name_in_month", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_plan_changes": {"name": "analytics___loyalty__plan_metrics_monthly_plan_changes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_plan_changes", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_platform": {"name": "analytics___loyalty__plan_metrics_monthly_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_platform", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_program_live_cnt": {"name": "analytics___loyalty__plan_metrics_monthly_program_live_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_program_live_cnt", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_uninstalls": {"name": "analytics___loyalty__plan_metrics_monthly_uninstalls", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_uninstalls", "block_contents": ""}, "doc.yoda.analytics___loyalty__plan_metrics_monthly_uninstalls_cnt": {"name": "analytics___loyalty__plan_metrics_monthly_uninstalls_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__plan_metrics_monthly/analytics___loyalty__plan_metrics_monthly.md", "unique_id": "doc.yoda.analytics___loyalty__plan_metrics_monthly_uninstalls_cnt", "block_contents": ""}, "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time": {"name": "analytics___loyalty__point_expiration_policy_settings_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "unique_id": "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time", "block_contents": ""}, "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_dwh_updated_at": {"name": "analytics___loyalty__point_expiration_policy_settings_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "unique_id": "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_expiration_policy_type": {"name": "analytics___loyalty__point_expiration_policy_settings_over_time_expiration_policy_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "unique_id": "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_expiration_policy_type", "block_contents": "The type of the policy"}, "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_from_date": {"name": "analytics___loyalty__point_expiration_policy_settings_over_time_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "unique_id": "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_from_date", "block_contents": "Start date of the policy"}, "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_merchant_group_id": {"name": "analytics___loyalty__point_expiration_policy_settings_over_time_merchant_group_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "unique_id": "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_merchant_group_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_merchant_id": {"name": "analytics___loyalty__point_expiration_policy_settings_over_time_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "unique_id": "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_retention_period_in_days": {"name": "analytics___loyalty__point_expiration_policy_settings_over_time_retention_period_in_days", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "unique_id": "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_retention_period_in_days", "block_contents": "Time untill the points will expire"}, "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_to_date": {"name": "analytics___loyalty__point_expiration_policy_settings_over_time_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "unique_id": "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_to_date", "block_contents": "End date of the policy"}, "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_updated_at": {"name": "analytics___loyalty__point_expiration_policy_settings_over_time_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__point_expiration_policy_settings_over_time/analytics___loyalty__point_expiration_policy_settings_over_time.md", "unique_id": "doc.yoda.analytics___loyalty__point_expiration_policy_settings_over_time_updated_at", "block_contents": "Time when the event occured"}, "doc.yoda.analytics___loyalty__redemption_details": {"name": "analytics___loyalty__redemption_details", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details", "block_contents": "Holdes enriched data for redempaiton"}, "doc.yoda.analytics___loyalty__redemption_details_amount_in_usd": {"name": "analytics___loyalty__redemption_details_amount_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_amount_in_usd", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_amount_redeemed_usd": {"name": "analytics___loyalty__redemption_details_amount_redeemed_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_amount_redeemed_usd", "block_contents": "Amount which customer redeemd in usd"}, "doc.yoda.analytics___loyalty__redemption_details_app_key": {"name": "analytics___loyalty__redemption_details_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_app_key", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_applies_to_id": {"name": "analytics___loyalty__redemption_details_applies_to_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_applies_to_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_applies_to_product_type": {"name": "analytics___loyalty__redemption_details_applies_to_product_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_applies_to_product_type", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_campaign_id": {"name": "analytics___loyalty__redemption_details_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_campaign_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_customer_id": {"name": "analytics___loyalty__redemption_details_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_customer_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_discount_amount_cents": {"name": "analytics___loyalty__redemption_details_discount_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_discount_amount_cents", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_discount_percentage": {"name": "analytics___loyalty__redemption_details_discount_percentage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_discount_percentage", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_discount_type": {"name": "analytics___loyalty__redemption_details_discount_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_discount_type", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_dwh_updated_at": {"name": "analytics___loyalty__redemption_details_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_earning_rule_id": {"name": "analytics___loyalty__redemption_details_earning_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_earning_rule_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_is_admin": {"name": "analytics___loyalty__redemption_details_is_admin", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_is_admin", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_is_applies_once": {"name": "analytics___loyalty__redemption_details_is_applies_once", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_is_applies_once", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_is_checkout": {"name": "analytics___loyalty__redemption_details_is_checkout", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_is_checkout", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_is_direct_rewarded": {"name": "analytics___loyalty__redemption_details_is_direct_rewarded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_is_direct_rewarded", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_is_reversed": {"name": "analytics___loyalty__redemption_details_is_reversed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_is_reversed", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_is_visible": {"name": "analytics___loyalty__redemption_details_is_visible", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_is_visible", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_merchant_id": {"name": "analytics___loyalty__redemption_details_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_perk_id": {"name": "analytics___loyalty__redemption_details_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_perk_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_point_redemption_created_at": {"name": "analytics___loyalty__redemption_details_point_redemption_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_point_redemption_created_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_point_redemption_first_order_date": {"name": "analytics___loyalty__redemption_details_point_redemption_first_order_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_point_redemption_first_order_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_point_redemption_id": {"name": "analytics___loyalty__redemption_details_point_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_point_redemption_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_point_redemption_is_deleted": {"name": "analytics___loyalty__redemption_details_point_redemption_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_point_redemption_is_deleted", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_point_redemption_last_order_date": {"name": "analytics___loyalty__redemption_details_point_redemption_last_order_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_point_redemption_last_order_date", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_point_redemption_orders_cnt": {"name": "analytics___loyalty__redemption_details_point_redemption_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_point_redemption_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_redempation_option_is_deleted": {"name": "analytics___loyalty__redemption_details_redempation_option_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_redempation_option_is_deleted", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_redemption_method": {"name": "analytics___loyalty__redemption_details_redemption_method", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_redemption_method", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_redemption_option_created_at": {"name": "analytics___loyalty__redemption_details_redemption_option_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_redemption_option_created_at", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_redemption_option_id": {"name": "analytics___loyalty__redemption_details_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_redemption_option_id", "block_contents": ""}, "doc.yoda.analytics___loyalty__redemption_details_redemption_source": {"name": "analytics___loyalty__redemption_details_redemption_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_redemption_source", "block_contents": "The source where the redemption was made"}, "doc.yoda.analytics___loyalty__redemption_details_referral_id": {"name": "analytics___loyalty__redemption_details_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "original_file_path": "models/analytics/loyalty/marts/analytics___loyalty__redemption_details/analytics___loyalty__redemption_details.md", "unique_id": "doc.yoda.analytics___loyalty__redemption_details_referral_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_activated_at": {"name": "analytics___loyalty_stg__earning_rule_activated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_activated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_api_key": {"name": "analytics___loyalty_stg__earning_rule_api_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_api_key", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_campaign_description": {"name": "analytics___loyalty_stg__earning_rule_campaign_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_campaign_description", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_campaign_id": {"name": "analytics___loyalty_stg__earning_rule_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_campaign_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_campaign_name": {"name": "analytics___loyalty_stg__earning_rule_campaign_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_campaign_name", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_created_at": {"name": "analytics___loyalty_stg__earning_rule_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_created_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_created_date": {"name": "analytics___loyalty_stg__earning_rule_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_created_date", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_currency_code": {"name": "analytics___loyalty_stg__earning_rule_currency_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_currency_code", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_dwh_updated_at": {"name": "analytics___loyalty_stg__earning_rule_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_earning_rule_description": {"name": "analytics___loyalty_stg__earning_rule_earning_rule_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_earning_rule_description", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_earning_rule_id": {"name": "analytics___loyalty_stg__earning_rule_earning_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_earning_rule_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_earning_rule_name": {"name": "analytics___loyalty_stg__earning_rule_earning_rule_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_earning_rule_name", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_earning_rule_type": {"name": "analytics___loyalty_stg__earning_rule_earning_rule_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_earning_rule_type", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_is_active": {"name": "analytics___loyalty_stg__earning_rule_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_is_active", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_is_admin_only": {"name": "analytics___loyalty_stg__earning_rule_is_admin_only", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_is_admin_only", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_is_archived": {"name": "analytics___loyalty_stg__earning_rule_is_archived", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_is_archived", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_is_exclude_customer_tags": {"name": "analytics___loyalty_stg__earning_rule_is_exclude_customer_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_is_exclude_customer_tags", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_is_expired": {"name": "analytics___loyalty_stg__earning_rule_is_expired", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_is_expired", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_is_hidden": {"name": "analytics___loyalty_stg__earning_rule_is_hidden", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_is_hidden", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_is_referral_campaign": {"name": "analytics___loyalty_stg__earning_rule_is_referral_campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_is_referral_campaign", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_is_require_product_id": {"name": "analytics___loyalty_stg__earning_rule_is_require_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_is_require_product_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_is_require_product_tag": {"name": "analytics___loyalty_stg__earning_rule_is_require_product_tag", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_is_require_product_tag", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_is_require_product_type": {"name": "analytics___loyalty_stg__earning_rule_is_require_product_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_is_require_product_type", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_is_requires_referral_code": {"name": "analytics___loyalty_stg__earning_rule_is_requires_referral_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_is_requires_referral_code", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_merchant_id": {"name": "analytics___loyalty_stg__earning_rule_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_merchant_id_dim_stores": {"name": "analytics___loyalty_stg__earning_rule_merchant_id_dim_stores", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_merchant_id_dim_stores", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_redemption_option_id": {"name": "analytics___loyalty_stg__earning_rule_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_redemption_option_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_redemption_option_id_swell_redemption_options": {"name": "analytics___loyalty_stg__earning_rule_redemption_option_id_swell_redemption_options", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_redemption_option_id_swell_redemption_options", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_reward_percentage": {"name": "analytics___loyalty_stg__earning_rule_reward_percentage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_reward_percentage", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_reward_points": {"name": "analytics___loyalty_stg__earning_rule_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_reward_points", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_reward_type": {"name": "analytics___loyalty_stg__earning_rule_reward_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_reward_type", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_updated_at": {"name": "analytics___loyalty_stg__earning_rule_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_vip_tier_id": {"name": "analytics___loyalty_stg__earning_rule_vip_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_vip_tier_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_vip_tier_id_swell_vip_tiers": {"name": "analytics___loyalty_stg__earning_rule_vip_tier_id_swell_vip_tiers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule/analytics___loyalty_stg__earning_rule.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_vip_tier_id_swell_vip_tiers", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history": {"name": "analytics___loyalty_stg__earning_rule_activation_history", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history", "block_contents": "Modeled view which holds all activation statuses timestamps of earning rules"}, "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_dwh_updated_at": {"name": "analytics___loyalty_stg__earning_rule_activation_history_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_created_at": {"name": "analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_created_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_created_date": {"name": "analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_created_date", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id": {"name": "analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_updated_at": {"name": "analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_earning_rule_id": {"name": "analytics___loyalty_stg__earning_rule_activation_history_earning_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_earning_rule_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_is_active": {"name": "analytics___loyalty_stg__earning_rule_activation_history_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__earning_rule_activation_history/analytics___loyalty_stg__earning_rule_activation_history.md", "unique_id": "doc.yoda.analytics___loyalty_stg__earning_rule_activation_history_is_active", "block_contents": ""}, "doc.yoda.analytics___loyalty__platform_stg__stores_enrichment_app_key": {"name": "analytics___loyalty__platform_stg__stores_enrichment_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.md", "unique_id": "doc.yoda.analytics___loyalty__platform_stg__stores_enrichment_app_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty__platform_stg__stores_enrichment_created_at": {"name": "analytics___loyalty__platform_stg__stores_enrichment_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.md", "unique_id": "doc.yoda.analytics___loyalty__platform_stg__stores_enrichment_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty__platform_stg__stores_enrichment_merchant_id": {"name": "analytics___loyalty__platform_stg__stores_enrichment_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.md", "unique_id": "doc.yoda.analytics___loyalty__platform_stg__stores_enrichment_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty__platform_stg__stores_enrichment_organization_key": {"name": "analytics___loyalty__platform_stg__stores_enrichment_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.md", "unique_id": "doc.yoda.analytics___loyalty__platform_stg__stores_enrichment_organization_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty__platform_stg__stores_enrichment_updated_at": {"name": "analytics___loyalty__platform_stg__stores_enrichment_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_account/analytics___loyalty_stg__loyalty_account.md", "unique_id": "doc.yoda.analytics___loyalty__platform_stg__stores_enrichment_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_plan": {"name": "analytics___loyalty_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "unique_id": "doc.yoda.analytics___loyalty_plan", "block_contents": "Holds all Loyalty plans id and descriptions"}, "doc.yoda.analytics___loyalty_stg__loyalty_plan_base_price_cents": {"name": "analytics___loyalty_stg__loyalty_plan_base_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_plan_base_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_plan_capped_amount_cents": {"name": "analytics___loyalty_stg__loyalty_plan_capped_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_plan_capped_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_plan_dwh_updated_at": {"name": "analytics___loyalty_stg__loyalty_plan_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_plan_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_plan_included_orders": {"name": "analytics___loyalty_stg__loyalty_plan_included_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_plan_included_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_plan_per_order_price_cents": {"name": "analytics___loyalty_stg__loyalty_plan_per_order_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_plan_per_order_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_plan_plan_id": {"name": "analytics___loyalty_stg__loyalty_plan_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_plan_plan_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_plan_plan_name": {"name": "analytics___loyalty_stg__loyalty_plan_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_plan/analytics___loyalty_stg__loyalty_plan.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_plan_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_base_price_cents": {"name": "analytics___loyalty_stg__loyalty_subscription_base_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_base_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_billing_provider": {"name": "analytics___loyalty_stg__loyalty_subscription_billing_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_billing_provider", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_charge_status": {"name": "analytics___loyalty_stg__loyalty_subscription_charge_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_charge_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_created_at": {"name": "analytics___loyalty_stg__loyalty_subscription_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_dwh_updated_at": {"name": "analytics___loyalty_stg__loyalty_subscription_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_included_orders": {"name": "analytics___loyalty_stg__loyalty_subscription_included_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_included_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_is_current": {"name": "analytics___loyalty_stg__loyalty_subscription_is_current", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_is_current", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_is_overdue": {"name": "analytics___loyalty_stg__loyalty_subscription_is_overdue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_is_overdue", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_is_pending": {"name": "analytics___loyalty_stg__loyalty_subscription_is_pending", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_is_pending", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_is_was_current": {"name": "analytics___loyalty_stg__loyalty_subscription_is_was_current", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_is_was_current", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_last_usage_charge_at": {"name": "analytics___loyalty_stg__loyalty_subscription_last_usage_charge_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_last_usage_charge_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_manual_price_cents": {"name": "analytics___loyalty_stg__loyalty_subscription_manual_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_manual_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_merchant_id": {"name": "analytics___loyalty_stg__loyalty_subscription_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_per_order_price_cents": {"name": "analytics___loyalty_stg__loyalty_subscription_per_order_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_per_order_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_percentage_of_redemptions": {"name": "analytics___loyalty_stg__loyalty_subscription_percentage_of_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_percentage_of_redemptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_percentage_of_referrals": {"name": "analytics___loyalty_stg__loyalty_subscription_percentage_of_referrals", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_percentage_of_referrals", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_plan_id": {"name": "analytics___loyalty_stg__loyalty_subscription_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_plan_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_recurring_charge_id": {"name": "analytics___loyalty_stg__loyalty_subscription_recurring_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_recurring_charge_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_subscription_id": {"name": "analytics___loyalty_stg__loyalty_subscription_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_subscription_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__loyalty_subscription_updated_at": {"name": "analytics___loyalty_stg__loyalty_subscription_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_stg__loyalty_subscription_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_subscriptions": {"name": "analytics___loyalty_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__loyalty_subscription/analytics___loyalty_stg__loyalty_subscription.md", "unique_id": "doc.yoda.analytics___loyalty_subscriptions", "block_contents": "Loyalty merchant subscription event"}, "doc.yoda.analytics___loyalty_stg__merchant": {"name": "analytics___loyalty_stg__merchant", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant", "block_contents": "Modeled VIEW of merchant object"}, "doc.yoda.analytics___loyalty_stg__merchant_company_name": {"name": "analytics___loyalty_stg__merchant_company_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_company_name", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_contact_email": {"name": "analytics___loyalty_stg__merchant_contact_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_contact_email", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_created_at": {"name": "analytics___loyalty_stg__merchant_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_created_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_currency": {"name": "analytics___loyalty_stg__merchant_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_currency", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_discount_stacking_order": {"name": "analytics___loyalty_stg__merchant_discount_stacking_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_discount_stacking_order", "block_contents": "Is the merchant has discount stacking of orders"}, "doc.yoda.analytics___loyalty_stg__merchant_discount_stacking_product": {"name": "analytics___loyalty_stg__merchant_discount_stacking_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_discount_stacking_product", "block_contents": "Is the merchant has discount stacking of products"}, "doc.yoda.analytics___loyalty_stg__merchant_discount_stacking_shipping": {"name": "analytics___loyalty_stg__merchant_discount_stacking_shipping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_discount_stacking_shipping", "block_contents": "Is the merchant has discount stacking of shipping"}, "doc.yoda.analytics___loyalty_stg__merchant_dwh_updated_at": {"name": "analytics___loyalty_stg__merchant_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_facebook_app_id": {"name": "analytics___loyalty_stg__merchant_facebook_app_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_facebook_app_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_free_trial_expires_at": {"name": "analytics___loyalty_stg__merchant_free_trial_expires_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_free_trial_expires_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_from_email": {"name": "analytics___loyalty_stg__merchant_from_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_from_email", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_group_id": {"name": "analytics___loyalty_stg__merchant_group_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_group_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_has_rewards_installed": {"name": "analytics___loyalty_stg__merchant_has_rewards_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_has_rewards_installed", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_has_store": {"name": "analytics___loyalty_stg__merchant_has_store", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_has_store", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_install_order_volume": {"name": "analytics___loyalty_stg__merchant_install_order_volume", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_install_order_volume", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_installed_analytics_at": {"name": "analytics___loyalty_stg__merchant_installed_analytics_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_installed_analytics_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_installed_rewards_at": {"name": "analytics___loyalty_stg__merchant_installed_rewards_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_installed_rewards_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_analytics_installed": {"name": "analytics___loyalty_stg__merchant_is_analytics_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_analytics_installed", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_approved": {"name": "analytics___loyalty_stg__merchant_is_approved", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_approved", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_can_generate_coupons": {"name": "analytics___loyalty_stg__merchant_is_can_generate_coupons", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_can_generate_coupons", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_completed_onboarding": {"name": "analytics___loyalty_stg__merchant_is_completed_onboarding", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_completed_onboarding", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_completed_profile": {"name": "analytics___loyalty_stg__merchant_is_completed_profile", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_completed_profile", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_cross_origin_store_accounts": {"name": "analytics___loyalty_stg__merchant_is_cross_origin_store_accounts", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_cross_origin_store_accounts", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_delete_used_coupons_enable": {"name": "analytics___loyalty_stg__merchant_is_delete_used_coupons_enable", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_delete_used_coupons_enable", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_dev_account": {"name": "analytics___loyalty_stg__merchant_is_dev_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_dev_account", "block_contents": "Store which were defined from the merchant end as a dev"}, "doc.yoda.analytics___loyalty_stg__merchant_is_discount_code_based_referral_program_enabled": {"name": "analytics___loyalty_stg__merchant_is_discount_code_based_referral_program_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_discount_code_based_referral_program_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_discount_stacking_order": {"name": "analytics___loyalty_stg__merchant_is_discount_stacking_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_discount_stacking_order", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_discount_stacking_product": {"name": "analytics___loyalty_stg__merchant_is_discount_stacking_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_discount_stacking_product", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_discount_stacking_shipping": {"name": "analytics___loyalty_stg__merchant_is_discount_stacking_shipping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_discount_stacking_shipping", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_first_time_referral_discounts_enable_flag": {"name": "analytics___loyalty_stg__merchant_is_first_time_referral_discounts_enable_flag", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_first_time_referral_discounts_enable_flag", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_free_products_enabled": {"name": "analytics___loyalty_stg__merchant_is_free_products_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_free_products_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_include_shipping": {"name": "analytics___loyalty_stg__merchant_is_include_shipping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_include_shipping", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_on_free_trial": {"name": "analytics___loyalty_stg__merchant_is_on_free_trial", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_on_free_trial", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_program_live": {"name": "analytics___loyalty_stg__merchant_is_program_live", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_program_live", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_program_locked": {"name": "analytics___loyalty_stg__merchant_is_program_locked", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_program_locked", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_redemptions_enabled": {"name": "analytics___loyalty_stg__merchant_is_redemptions_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_redemptions_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_rewards_installed": {"name": "analytics___loyalty_stg__merchant_is_rewards_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_rewards_installed", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_setup_rewards_page": {"name": "analytics___loyalty_stg__merchant_is_setup_rewards_page", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_setup_rewards_page", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_shipping_included": {"name": "analytics___loyalty_stg__merchant_is_shipping_included", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_shipping_included", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_storefront_css_included": {"name": "analytics___loyalty_stg__merchant_is_storefront_css_included", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_storefront_css_included", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_sync_fields_with_processor": {"name": "analytics___loyalty_stg__merchant_is_sync_fields_with_processor", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_sync_fields_with_processor", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_test_account": {"name": "analytics___loyalty_stg__merchant_is_test_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_test_account", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_verified_email_domain": {"name": "analytics___loyalty_stg__merchant_is_verified_email_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_verified_email_domain", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_vip_tiers_job_running": {"name": "analytics___loyalty_stg__merchant_is_vip_tiers_job_running", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_vip_tiers_job_running", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_weekly_digest_enabled": {"name": "analytics___loyalty_stg__merchant_is_weekly_digest_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_weekly_digest_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_is_widget_enabled": {"name": "analytics___loyalty_stg__merchant_is_widget_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_is_widget_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_logo_url": {"name": "analytics___loyalty_stg__merchant_logo_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_logo_url", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_loyalty_opt_in_strategy": {"name": "analytics___loyalty_stg__merchant_loyalty_opt_in_strategy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_loyalty_opt_in_strategy", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_merchant_created_at": {"name": "analytics___loyalty_stg__merchant_merchant_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_merchant_created_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_merchant_guid": {"name": "analytics___loyalty_stg__merchant_merchant_guid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_merchant_guid", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_merchant_id": {"name": "analytics___loyalty_stg__merchant_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_plan_name": {"name": "analytics___loyalty_stg__merchant_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_plan_name", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_platform": {"name": "analytics___loyalty_stg__merchant_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_platform", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_platform_engine": {"name": "analytics___loyalty_stg__merchant_platform_engine", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_platform_engine", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_points_reminder_delay_days": {"name": "analytics___loyalty_stg__merchant_points_reminder_delay_days", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_points_reminder_delay_days", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_process_order_status": {"name": "analytics___loyalty_stg__merchant_process_order_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_process_order_status", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_process_refund_status": {"name": "analytics___loyalty_stg__merchant_process_refund_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_process_refund_status", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_program_first_activated_at": {"name": "analytics___loyalty_stg__merchant_program_first_activated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_program_first_activated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_program_first_activated_date": {"name": "analytics___loyalty_stg__merchant_program_first_activated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_program_first_activated_date", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_referral_opt_in_strategy": {"name": "analytics___loyalty_stg__merchant_referral_opt_in_strategy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_referral_opt_in_strategy", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_referral_reminder_days": {"name": "analytics___loyalty_stg__merchant_referral_reminder_days", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_referral_reminder_days", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_round_discounts_strategy": {"name": "analytics___loyalty_stg__merchant_round_discounts_strategy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_round_discounts_strategy", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_source": {"name": "analytics___loyalty_stg__merchant_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_source", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_time_zone": {"name": "analytics___loyalty_stg__merchant_time_zone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_time_zone", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_uninstalled_analytics_at": {"name": "analytics___loyalty_stg__merchant_uninstalled_analytics_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_uninstalled_analytics_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_uninstalled_rewards_at": {"name": "analytics___loyalty_stg__merchant_uninstalled_rewards_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_uninstalled_rewards_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_updated_at": {"name": "analytics___loyalty_stg__merchant_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_value_per_subscriber_cents": {"name": "analytics___loyalty_stg__merchant_value_per_subscriber_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_value_per_subscriber_cents", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_website": {"name": "analytics___loyalty_stg__merchant_website", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_website", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_widget_enabled": {"name": "analytics___loyalty_stg__merchant_widget_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant/analytics___loyalty_stg__merchant.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_widget_enabled", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time": {"name": "analytics___loyalty_stg__merchant_segment_event_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time", "block_contents": "Loyalty segment events over time by merchant_id"}, "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time_dwh_updated_at": {"name": "analytics___loyalty_stg__merchant_segment_event_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time_event_type": {"name": "analytics___loyalty_stg__merchant_segment_event_over_time_event_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time_event_type", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time_from_time": {"name": "analytics___loyalty_stg__merchant_segment_event_over_time_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time_from_time", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id": {"name": "analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time_to_time": {"name": "analytics___loyalty_stg__merchant_segment_event_over_time_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__merchant_segment_event_over_time/analytics___loyalty_stg__merchant_segment_event_over_time.md", "unique_id": "doc.yoda.analytics___loyalty_stg__merchant_segment_event_over_time_to_time", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__perk": {"name": "analytics___loyalty_stg__perk", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk", "block_contents": "Holds all campaign perks which were generated"}, "doc.yoda.analytics___loyalty_stg__perk_awarded_at": {"name": "analytics___loyalty_stg__perk_awarded_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_awarded_at", "block_contents": "Timestamp in which the perk was awarded at"}, "doc.yoda.analytics___loyalty_stg__perk_campaign_id": {"name": "analytics___loyalty_stg__perk_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_campaign_id", "block_contents": "The campaign id which generated the perk id"}, "doc.yoda.analytics___loyalty_stg__perk_created_at": {"name": "analytics___loyalty_stg__perk_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_created_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__perk_customer_id": {"name": "analytics___loyalty_stg__perk_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_customer_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__perk_dwh_updated_at": {"name": "analytics___loyalty_stg__perk_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__perk_earning_rule_id": {"name": "analytics___loyalty_stg__perk_earning_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_earning_rule_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__perk_is_admin_only": {"name": "analytics___loyalty_stg__perk_is_admin_only", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_is_admin_only", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__perk_is_awarded": {"name": "analytics___loyalty_stg__perk_is_awarded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_is_awarded", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__perk_merchant_id": {"name": "analytics___loyalty_stg__perk_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__perk_perk_id": {"name": "analytics___loyalty_stg__perk_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_perk_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__perk_redemption_option_id": {"name": "analytics___loyalty_stg__perk_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_redemption_option_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__perk_updated_at": {"name": "analytics___loyalty_stg__perk_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__perk/analytics___loyalty_stg__perk.md", "unique_id": "doc.yoda.analytics___loyalty_stg__perk_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings": {"name": "analytics___loyalty_stg__point_expiration_policy_settings", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings", "block_contents": "Modeled view over loyalty_stg__config_item \nPK: merchant_group_id"}, "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_created_at": {"name": "analytics___loyalty_stg__point_expiration_policy_settings_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_created_at", "block_contents": "row creation timestamp"}, "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_expiration_policy_type": {"name": "analytics___loyalty_stg__point_expiration_policy_settings_expiration_policy_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_expiration_policy_type", "block_contents": "expiration policy type"}, "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id": {"name": "analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id", "block_contents": "PK: in source table called tenant_id"}, "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_retention_period_in_days": {"name": "analytics___loyalty_stg__point_expiration_policy_settings_retention_period_in_days", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_retention_period_in_days", "block_contents": "retention period days"}, "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_updated_at": {"name": "analytics___loyalty_stg__point_expiration_policy_settings_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings/analytics___loyalty_stg__point_expiration_policy_settings.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_updated_at", "block_contents": "row last update timestamp"}, "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot": {"name": "analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "block_contents": "Snapshot table on analytics___loyalty_stg__point_expiration_policy_settings. \ntracking changes in fields: expiration_type | retention_period_in_days"}, "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot_dwh_updated_at": {"name": "analytics___loyalty_stg__point_expiration_policy_settings_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot_dwh_updated_at", "block_contents": "snapshot timestamp"}, "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot_updated_at": {"name": "analytics___loyalty_stg__point_expiration_policy_settings_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_expiration_policy_settings_snapshot/analytics___loyalty_stg__point_expiration_policy_settings_snapshot.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot_updated_at", "block_contents": "field change timestamp"}, "doc.yoda.analytics___loyalty_stg__point_redemption_amount_redeemed": {"name": "analytics___loyalty_stg__point_redemption_amount_redeemed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_amount_redeemed", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_amount_redeemed_usd": {"name": "analytics___loyalty_stg__point_redemption_amount_redeemed_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_amount_redeemed_usd", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_approved_at": {"name": "analytics___loyalty_stg__point_redemption_approved_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_approved_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_created_at": {"name": "analytics___loyalty_stg__point_redemption_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_created_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_currency": {"name": "analytics___loyalty_stg__point_redemption_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_currency", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_customer_id": {"name": "analytics___loyalty_stg__point_redemption_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_customer_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_customer_id_swell_customers": {"name": "analytics___loyalty_stg__point_redemption_customer_id_swell_customers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_customer_id_swell_customers", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_dwh_updated_at": {"name": "analytics___loyalty_stg__point_redemption_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_id": {"name": "analytics___loyalty_stg__point_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_is_admin": {"name": "analytics___loyalty_stg__point_redemption_is_admin", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_is_admin", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_is_approved": {"name": "analytics___loyalty_stg__point_redemption_is_approved", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_is_approved", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_is_checkout": {"name": "analytics___loyalty_stg__point_redemption_is_checkout", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_is_checkout", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_is_deleted": {"name": "analytics___loyalty_stg__point_redemption_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_is_deleted", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_is_pos": {"name": "analytics___loyalty_stg__point_redemption_is_pos", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_is_pos", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_is_reversed": {"name": "analytics___loyalty_stg__point_redemption_is_reversed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_is_reversed", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_is_visible": {"name": "analytics___loyalty_stg__point_redemption_is_visible", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_is_visible", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_merchant_id": {"name": "analytics___loyalty_stg__point_redemption_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_merchant_id_dim_stores": {"name": "analytics___loyalty_stg__point_redemption_merchant_id_dim_stores", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_merchant_id_dim_stores", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_option_id_swell_redemption_options": {"name": "analytics___loyalty_stg__point_redemption_option_id_swell_redemption_options", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_option_id_swell_redemption_options", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_perk_id": {"name": "analytics___loyalty_stg__point_redemption_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_perk_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_perk_id_swell_perks": {"name": "analytics___loyalty_stg__point_redemption_perk_id_swell_perks", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_perk_id_swell_perks", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_point_redemption_currency": {"name": "analytics___loyalty_stg__point_redemption_point_redemption_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_point_redemption_currency", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_point_redemption_date": {"name": "analytics___loyalty_stg__point_redemption_point_redemption_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_point_redemption_date", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_point_redemption_id": {"name": "analytics___loyalty_stg__point_redemption_point_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_point_redemption_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_point_transactions": {"name": "analytics___loyalty_stg__point_redemption_point_transactions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_point_transactions", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_points_redeemed": {"name": "analytics___loyalty_stg__point_redemption_points_redeemed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_points_redeemed", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_date": {"name": "analytics___loyalty_stg__point_redemption_redemption_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_date", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_day": {"name": "analytics___loyalty_stg__point_redemption_redemption_day", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_day", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_month": {"name": "analytics___loyalty_stg__point_redemption_redemption_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_month", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_option_id": {"name": "analytics___loyalty_stg__point_redemption_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_option_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_source": {"name": "analytics___loyalty_stg__point_redemption_redemption_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_source", "block_contents": "The source where the redemption was made"}, "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_year": {"name": "analytics___loyalty_stg__point_redemption_redemption_year", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_redemption_year", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_referral_id": {"name": "analytics___loyalty_stg__point_redemption_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_referral_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_referral_id_swell_referrals": {"name": "analytics___loyalty_stg__point_redemption_referral_id_swell_referrals", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_referral_id_swell_referrals", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_refunded_amount": {"name": "analytics___loyalty_stg__point_redemption_refunded_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_refunded_amount", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_reward_text": {"name": "analytics___loyalty_stg__point_redemption_reward_text", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_reward_text", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__point_redemption_reward_title": {"name": "analytics___loyalty_stg__point_redemption_reward_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_reward_title", "block_contents": "Describes the reward conditions"}, "doc.yoda.analytics___loyalty_stg__point_redemption_updated_at": {"name": "analytics___loyalty_stg__point_redemption_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__point_redemption/analytics___loyalty_stg__point_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__point_redemption_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__processor": {"name": "analytics___loyalty_stg__processor", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.md", "unique_id": "doc.yoda.analytics___loyalty_stg__processor", "block_contents": "Modeled mart compatible for store orders processors"}, "doc.yoda.analytics___loyalty_stg__processor_id": {"name": "analytics___loyalty_stg__processor_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.md", "unique_id": "doc.yoda.analytics___loyalty_stg__processor_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__processor_type": {"name": "analytics___loyalty_stg__processor_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__processor/analytics___loyalty_stg__processor.md", "unique_id": "doc.yoda.analytics___loyalty_stg__processor_type", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase": {"name": "analytics___loyalty_stg__purchase", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase", "block_contents": "All merchant orders from the Loyalty product schema"}, "doc.yoda.analytics___loyalty_stg__purchase_amount_cents": {"name": "analytics___loyalty_stg__purchase_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_amount_cents", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_billing_city": {"name": "analytics___loyalty_stg__purchase_billing_city", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_billing_city", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_billing_country_code": {"name": "analytics___loyalty_stg__purchase_billing_country_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_billing_country_code", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_browser_country_code": {"name": "analytics___loyalty_stg__purchase_browser_country_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_browser_country_code", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_customer_id": {"name": "analytics___loyalty_stg__purchase_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_customer_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_customer_ip_address": {"name": "analytics___loyalty_stg__purchase_customer_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_customer_ip_address", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_discount_amount_in_cents": {"name": "analytics___loyalty_stg__purchase_discount_amount_in_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_discount_amount_in_cents", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_dwh_updated_at": {"name": "analytics___loyalty_stg__purchase_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_is_applied_to_campaigns": {"name": "analytics___loyalty_stg__purchase_is_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_is_applied_to_campaigns", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_is_before_swell_acquisition": {"name": "analytics___loyalty_stg__purchase_is_before_swell_acquisition", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_is_before_swell_acquisition", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_is_fraud_review": {"name": "analytics___loyalty_stg__purchase_is_fraud_review", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_is_fraud_review", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_is_move_merchant_to_new_tier": {"name": "analytics___loyalty_stg__purchase_is_move_merchant_to_new_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_is_move_merchant_to_new_tier", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_is_refunded": {"name": "analytics___loyalty_stg__purchase_is_refunded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_is_refunded", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_is_swell_user": {"name": "analytics___loyalty_stg__purchase_is_swell_user", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_is_swell_user", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_merchant_id": {"name": "analytics___loyalty_stg__purchase_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_order_id": {"name": "analytics___loyalty_stg__purchase_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_order_id", "block_contents": "The unique external id for the order"}, "doc.yoda.analytics___loyalty_stg__purchase_processor_id": {"name": "analytics___loyalty_stg__purchase_processor_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_processor_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_purchase_at": {"name": "analytics___loyalty_stg__purchase_purchase_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_purchase_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_purchase_currency": {"name": "analytics___loyalty_stg__purchase_purchase_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_purchase_currency", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_purchase_date": {"name": "analytics___loyalty_stg__purchase_purchase_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_purchase_date", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_purchase_id": {"name": "analytics___loyalty_stg__purchase_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_purchase_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_redemption_code_id": {"name": "analytics___loyalty_stg__purchase_redemption_code_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_redemption_code_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_referral_discount_code_id": {"name": "analytics___loyalty_stg__purchase_referral_discount_code_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_referral_discount_code_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_referral_id": {"name": "analytics___loyalty_stg__purchase_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_referral_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_shipping_city": {"name": "analytics___loyalty_stg__purchase_shipping_city", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_shipping_city", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_shipping_country_code": {"name": "analytics___loyalty_stg__purchase_shipping_country_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_shipping_country_code", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_store_address": {"name": "analytics___loyalty_stg__purchase_store_address", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_store_address", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_store_city": {"name": "analytics___loyalty_stg__purchase_store_city", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_store_city", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_store_state": {"name": "analytics___loyalty_stg__purchase_store_state", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_store_state", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_updated_at": {"name": "analytics___loyalty_stg__purchase_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_user_agent_id": {"name": "analytics___loyalty_stg__purchase_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase/analytics___loyalty_stg__purchase.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_user_agent_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_redemption": {"name": "analytics___loyalty_stg__purchase_redemption", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_redemption", "block_contents": "This table links between the redemption_id and the puechase_id"}, "doc.yoda.analytics___loyalty_stg__purchase_redemption_dwh_updated_at": {"name": "analytics___loyalty_stg__purchase_redemption_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_redemption_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_redemption_purchase_id": {"name": "analytics___loyalty_stg__purchase_redemption_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_redemption_purchase_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_redemption_purchase_redemption_id": {"name": "analytics___loyalty_stg__purchase_redemption_purchase_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_redemption_purchase_redemption_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__purchase_redemption_redemption_id": {"name": "analytics___loyalty_stg__purchase_redemption_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__purchase_redemption/analytics___loyalty_stg__purchase_redemption.md", "unique_id": "doc.yoda.analytics___loyalty_stg__purchase_redemption_redemption_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_code": {"name": "analytics___loyalty_stg__redemption_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code", "block_contents": "All the redempation codes generated with the actual coupon_code"}, "doc.yoda.analytics___loyalty_stg__redemption_code_amount_used_cents": {"name": "analytics___loyalty_stg__redemption_code_amount_used_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code_amount_used_cents", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_code_coupon_code": {"name": "analytics___loyalty_stg__redemption_code_coupon_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code_coupon_code", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_code_dwh_updated_at": {"name": "analytics___loyalty_stg__redemption_code_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_code_is_used": {"name": "analytics___loyalty_stg__redemption_code_is_used", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code_is_used", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_code_is_uses": {"name": "analytics___loyalty_stg__redemption_code_is_uses", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code_is_uses", "block_contents": "Indication for purchase made with the specific coupon code"}, "doc.yoda.analytics___loyalty_stg__redemption_code_merchant_id": {"name": "analytics___loyalty_stg__redemption_code_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_code_point_redemption_id": {"name": "analytics___loyalty_stg__redemption_code_point_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code_point_redemption_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_code_redemption_code_id": {"name": "analytics___loyalty_stg__redemption_code_redemption_code_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code_redemption_code_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_code_redemption_option_id": {"name": "analytics___loyalty_stg__redemption_code_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code_redemption_option_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_code_third_party_id": {"name": "analytics___loyalty_stg__redemption_code_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code_third_party_id", "block_contents": "The unique discount id on the platform"}, "doc.yoda.analytics___loyalty_stg__redemption_code_third_party_rule_id": {"name": "analytics___loyalty_stg__redemption_code_third_party_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_code/analytics___loyalty_stg__redemption_code.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_code_third_party_rule_id", "block_contents": "The type of platform redemption (like redemption option)"}, "doc.yoda.analytics___loyalty_stg__redemption_option_amount": {"name": "analytics___loyalty_stg__redemption_option_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_amount", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_amount_usd": {"name": "analytics___loyalty_stg__redemption_option_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_amount_usd", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_applies_to_id": {"name": "analytics___loyalty_stg__redemption_option_applies_to_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_applies_to_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_applies_to_product_type": {"name": "analytics___loyalty_stg__redemption_option_applies_to_product_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_applies_to_product_type", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_created_at": {"name": "analytics___loyalty_stg__redemption_option_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_created_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_currency": {"name": "analytics___loyalty_stg__redemption_option_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_currency", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_discount_amount_cents": {"name": "analytics___loyalty_stg__redemption_option_discount_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_discount_amount_cents", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_discount_percentage": {"name": "analytics___loyalty_stg__redemption_option_discount_percentage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_discount_percentage", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_discount_rate_cents": {"name": "analytics___loyalty_stg__redemption_option_discount_rate_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_discount_rate_cents", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_discount_rate_cents_in_original_currency": {"name": "analytics___loyalty_stg__redemption_option_discount_rate_cents_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_discount_rate_cents_in_original_currency", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_discount_type": {"name": "analytics___loyalty_stg__redemption_option_discount_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_discount_type", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_dwh_updated_at": {"name": "analytics___loyalty_stg__redemption_option_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_id": {"name": "analytics___loyalty_stg__redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_is_applies_once": {"name": "analytics___loyalty_stg__redemption_option_is_applies_once", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_is_applies_once", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_is_deleted": {"name": "analytics___loyalty_stg__redemption_option_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_is_deleted", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_is_display_in_popup": {"name": "analytics___loyalty_stg__redemption_option_is_display_in_popup", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_is_display_in_popup", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_is_pos": {"name": "analytics___loyalty_stg__redemption_option_is_pos", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_is_pos", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_merchant_id": {"name": "analytics___loyalty_stg__redemption_option_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_merchant_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_merchant_id__dim_stores": {"name": "analytics___loyalty_stg__redemption_option_merchant_id__dim_stores", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_merchant_id__dim_stores", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_redemption_condition": {"name": "analytics___loyalty_stg__redemption_option_redemption_condition", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_redemption_condition", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_redemption_method": {"name": "analytics___loyalty_stg__redemption_option_redemption_method", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_redemption_method", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_redemption_option_currency": {"name": "analytics___loyalty_stg__redemption_option_redemption_option_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_redemption_option_currency", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_redemption_option_id": {"name": "analytics___loyalty_stg__redemption_option_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_redemption_option_id", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__redemption_option_updated_at": {"name": "analytics___loyalty_stg__redemption_option_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__redemption_option/analytics___loyalty_stg__redemption_option.md", "unique_id": "doc.yoda.analytics___loyalty_stg__redemption_option_updated_at", "block_contents": ""}, "doc.yoda.analytics___loyalty_stg__segment_install_event_details": {"name": "analytics___loyalty_stg__segment_install_event_details", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_install_event_details", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_stg__segment_install_event_details_appkey": {"name": "analytics___loyalty_stg__segment_install_event_details_appkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_install_event_details_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_install_event_details_dwh_updated_at": {"name": "analytics___loyalty_stg__segment_install_event_details_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_install_event_details_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_install_event_details_install_at": {"name": "analytics___loyalty_stg__segment_install_event_details_install_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_install_event_details_install_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_install_event_details_merchant_id": {"name": "analytics___loyalty_stg__segment_install_event_details_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_install_event_details_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_install_event_details_package": {"name": "analytics___loyalty_stg__segment_install_event_details_package", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_install_event_details_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_install_event_details_partition_date": {"name": "analytics___loyalty_stg__segment_install_event_details_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_install_event_details_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_install_event_details_platform": {"name": "analytics___loyalty_stg__segment_install_event_details_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_install_event_details_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_install_event_details_product": {"name": "analytics___loyalty_stg__segment_install_event_details_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_install_event_details_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_install_event_details_user_id": {"name": "analytics___loyalty_stg__segment_install_event_details_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_install_event_details/analytics___loyalty_stg__segment_install_event_details.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_install_event_details_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_uninstall": {"name": "analytics___loyalty_stg__segment_uninstall", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_uninstall", "block_contents": "Uninstalled events as they were sent to segment"}, "doc.yoda.analytics___loyalty_stg__segment_uninstall_appkey": {"name": "analytics___loyalty_stg__segment_uninstall_appkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_uninstall_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_uninstall_dwh_updated_at": {"name": "analytics___loyalty_stg__segment_uninstall_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_uninstall_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_uninstall_merchant_id": {"name": "analytics___loyalty_stg__segment_uninstall_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_uninstall_merchant_id", "block_contents": "merchant id"}, "doc.yoda.analytics___loyalty_stg__segment_uninstall_package": {"name": "analytics___loyalty_stg__segment_uninstall_package", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_uninstall_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_uninstall_partition_date": {"name": "analytics___loyalty_stg__segment_uninstall_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_uninstall_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_uninstall_platform": {"name": "analytics___loyalty_stg__segment_uninstall_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_uninstall_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_uninstall_product": {"name": "analytics___loyalty_stg__segment_uninstall_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_uninstall_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_uninstall_uninstall_at": {"name": "analytics___loyalty_stg__segment_uninstall_uninstall_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_uninstall_uninstall_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__segment_uninstall_user_id": {"name": "analytics___loyalty_stg__segment_uninstall_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__segment_uninstall/analytics___loyalty_stg__segment_uninstall.md", "unique_id": "doc.yoda.analytics___loyalty_stg__segment_uninstall_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___loyalty_stg__swell_referral_codes_amount_cents": {"name": "analytics___loyalty_stg__swell_referral_codes_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referral_codes_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_stg__swell_referral_codes_campaign_id_swell_campaigns": {"name": "analytics___loyalty_stg__swell_referral_codes_campaign_id_swell_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referral_codes_campaign_id_swell_campaigns", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_stg__swell_referral_codes_clicks": {"name": "analytics___loyalty_stg__swell_referral_codes_clicks", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referral_codes_clicks", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_stg__swell_referral_codes_created_at": {"name": "analytics___loyalty_stg__swell_referral_codes_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referral_codes_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_stg__swell_referral_codes_merchant_id_dim_stores": {"name": "analytics___loyalty_stg__swell_referral_codes_merchant_id_dim_stores", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referral_codes_merchant_id_dim_stores", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_stg__swell_referral_codes_orders": {"name": "analytics___loyalty_stg__swell_referral_codes_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referral_codes_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_stg__swell_referral_codes_referral_code": {"name": "analytics___loyalty_stg__swell_referral_codes_referral_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referral_codes_referral_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_stg__swell_referral_codes_referral_code_id": {"name": "analytics___loyalty_stg__swell_referral_codes_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referral_codes_referral_code_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_stg__swell_referral_codes_shares": {"name": "analytics___loyalty_stg__swell_referral_codes_shares", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referral_codes_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_stg__swell_referral_codes_updated_at": {"name": "analytics___loyalty_stg__swell_referral_codes_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referral_codes/analytics___loyalty_stg__swell_referral_codes.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referral_codes_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___loyalty_stg__swell_referrals_campaign_id__swell_campaigns": {"name": "analytics___loyalty_stg__swell_referrals_campaign_id__swell_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referrals_campaign_id__swell_campaigns", "block_contents": "TODO: Update Column campaign_id__swell_campaigns Information"}, "doc.yoda.analytics___loyalty_stg__swell_referrals_created_at": {"name": "analytics___loyalty_stg__swell_referrals_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referrals_created_at", "block_contents": "TODO: Update Column created_at Information"}, "doc.yoda.analytics___loyalty_stg__swell_referrals_merchant_id__dim_stores": {"name": "analytics___loyalty_stg__swell_referrals_merchant_id__dim_stores", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referrals_merchant_id__dim_stores", "block_contents": "TODO: Update Column merchant_id__dim_stores Information"}, "doc.yoda.analytics___loyalty_stg__swell_referrals_orders": {"name": "analytics___loyalty_stg__swell_referrals_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referrals_orders", "block_contents": "TODO: Update Column orders Information"}, "doc.yoda.analytics___loyalty_stg__swell_referrals_referral_code_id__referral_codes": {"name": "analytics___loyalty_stg__swell_referrals_referral_code_id__referral_codes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referrals_referral_code_id__referral_codes", "block_contents": "TODO: Update Column referral_code_id__referral_codes Information"}, "doc.yoda.analytics___loyalty_stg__swell_referrals_referral_id": {"name": "analytics___loyalty_stg__swell_referrals_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referrals_referral_id", "block_contents": "TODO: Update Column referral_id Information"}, "doc.yoda.analytics___loyalty_stg__swell_referrals_referrer_perk_id__swell_perks": {"name": "analytics___loyalty_stg__swell_referrals_referrer_perk_id__swell_perks", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referrals_referrer_perk_id__swell_perks", "block_contents": "TODO: Update Column referrer_perk_id__swell_perks Information"}, "doc.yoda.analytics___loyalty_stg__swell_referrals_updated_at": {"name": "analytics___loyalty_stg__swell_referrals_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "original_file_path": "models/analytics/loyalty/staging/marts_compatible/analytics___loyalty_stg__swell_referrals/analytics___loyalty_stg__swell_referrals.md", "unique_id": "doc.yoda.analytics___loyalty_stg__swell_referrals_updated_at", "block_contents": "TODO: Update Column updated_at Information"}, "doc.yoda.analytics___marketing__mql_opportunity_goal": {"name": "analytics___marketing__mql_opportunity_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal", "block_contents": "A modeled table for the mql opportunity process with goals.|\nEach row represents mql/opportunity/acv goal/sal goal or a combination of those if an opportunity and mql are related or if the opportunity meets goals based on the gtm opportunity goal table.|\nIn case row holds opportunity details it is exploded on products and attribution channel.|\nPK: mql_opportunity_goal_id | Granularity: opportunity_id, acv_goal_id, sal_goal_id, product_family_group, attribution_channel, mql_id"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_acv_goal_id": {"name": "analytics___marketing__mql_opportunity_goal_acv_goal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_acv_goal_id", "block_contents": "Granularity 3/6"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_attribution_channel": {"name": "analytics___marketing__mql_opportunity_goal_attribution_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_attribution_channel", "block_contents": "Granularity 5/6"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_attribution_channel_list": {"name": "analytics___marketing__mql_opportunity_goal_attribution_channel_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_attribution_channel_list", "block_contents": "Full list of attribution channels of the row's opportunity"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_dwh_updated_at": {"name": "analytics___marketing__mql_opportunity_goal_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___marketing__mql_opportunity_goal_is_gold": {"name": "analytics___marketing__mql_opportunity_goal_is_gold", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_is_gold", "block_contents": "True if the row represents 'loyalty' product in a self-service opportunity"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_is_mql": {"name": "analytics___marketing__mql_opportunity_goal_is_mql", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_is_mql", "block_contents": "True if the row represents mql or opportunity with mql"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_is_prime": {"name": "analytics___marketing__mql_opportunity_goal_is_prime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_is_prime", "block_contents": "True if the row represents 'reviews' product in a self-service opportunity"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_is_sal": {"name": "analytics___marketing__mql_opportunity_goal_is_sal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_is_sal", "block_contents": "True if the row has opportunity with demo date"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_is_sql": {"name": "analytics___marketing__mql_opportunity_goal_is_sql", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_is_sql", "block_contents": "True if the row represents an opportunity (with or without mql/goal)"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_is_won": {"name": "analytics___marketing__mql_opportunity_goal_is_won", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_is_won", "block_contents": "True if the row has opportunity with won stage"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_id": {"name": "analytics___marketing__mql_opportunity_goal_mql_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_id", "block_contents": "Granularity 4/6"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id": {"name": "analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id", "block_contents": "Designated id made of granularity fields combinataion using sha2 hashing"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_order_bucket": {"name": "analytics___marketing__mql_opportunity_goal_mql_order_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_order_bucket", "block_contents": ""}, "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_order_bucket_group": {"name": "analytics___marketing__mql_opportunity_goal_mql_order_bucket_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_order_bucket_group", "block_contents": ""}, "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_owner": {"name": "analytics___marketing__mql_opportunity_goal_mql_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_owner", "block_contents": ""}, "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_owner_role": {"name": "analytics___marketing__mql_opportunity_goal_mql_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_owner_role", "block_contents": ""}, "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_product_cnt": {"name": "analytics___marketing__mql_opportunity_goal_mql_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_product_cnt", "block_contents": ""}, "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_sales_order_bucket_group": {"name": "analytics___marketing__mql_opportunity_goal_mql_sales_order_bucket_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_mql_sales_order_bucket_group", "block_contents": ""}, "doc.yoda.analytics___marketing__mql_opportunity_goal_opportunity_id": {"name": "analytics___marketing__mql_opportunity_goal_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_opportunity_id", "block_contents": "Granularity 1/6"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_opportunity_owner": {"name": "analytics___marketing__mql_opportunity_goal_opportunity_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_opportunity_owner", "block_contents": ""}, "doc.yoda.analytics___marketing__mql_opportunity_goal_opportunity_owner_role": {"name": "analytics___marketing__mql_opportunity_goal_opportunity_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_opportunity_owner_role", "block_contents": ""}, "doc.yoda.analytics___marketing__mql_opportunity_goal_product_family_group": {"name": "analytics___marketing__mql_opportunity_goal_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_product_family_group", "block_contents": "Granularity 6/6"}, "doc.yoda.analytics___marketing__mql_opportunity_goal_sal_goal_id": {"name": "analytics___marketing__mql_opportunity_goal_sal_goal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "original_file_path": "models/analytics/marketing/marts/analytics___marketing__mql_opportunity/analytics___marketing__mql_opportunity_goal.md", "unique_id": "doc.yoda.analytics___marketing__mql_opportunity_goal_sal_goal_id", "block_contents": "Granularity 4/6"}, "doc.yoda.analytics___new_revenue__deal_product": {"name": "analytics___new_revenue__deal_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product", "block_contents": "Modeled table of sales deals. | PK & Granularity: opportunity_id,product"}, "doc.yoda.analytics___new_revenue__deal_product_account_abm_type": {"name": "analytics___new_revenue__deal_product_account_abm_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_account_abm_type", "block_contents": "Accounts that match Account Based Marketing (ABM) profile"}, "doc.yoda.analytics___new_revenue__deal_product_account_country": {"name": "analytics___new_revenue__deal_product_account_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_account_country", "block_contents": "Country that account is based in"}, "doc.yoda.analytics___new_revenue__deal_product_account_iap_tier": {"name": "analytics___new_revenue__deal_product_account_iap_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_account_iap_tier", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_account_id": {"name": "analytics___new_revenue__deal_product_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_account_id", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_attribution_channel": {"name": "analytics___new_revenue__deal_product_attribution_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_attribution_channel", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_close_date": {"name": "analytics___new_revenue__deal_product_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_close_date", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_close_month": {"name": "analytics___new_revenue__deal_product_close_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_close_month", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_closed_deal_opp_id": {"name": "analytics___new_revenue__deal_product_closed_deal_opp_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_closed_deal_opp_id", "block_contents": "Opportunity id for closed deals, Won, LAW and Lost"}, "doc.yoda.analytics___new_revenue__deal_product_created_at": {"name": "analytics___new_revenue__deal_product_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_created_at", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_created_at_month": {"name": "analytics___new_revenue__deal_product_created_at_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_created_at_month", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_created_date": {"name": "analytics___new_revenue__deal_product_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_created_date", "block_contents": "Opportunity creation date"}, "doc.yoda.analytics___new_revenue__deal_product_customer_type": {"name": "analytics___new_revenue__deal_product_customer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_customer_type", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_deal_summary_type": {"name": "analytics___new_revenue__deal_product_deal_summary_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_deal_summary_type", "block_contents": "Deal summary at a product level"}, "doc.yoda.analytics___new_revenue__deal_product_dwh_updated_at": {"name": "analytics___new_revenue__deal_product_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_email_earr": {"name": "analytics___new_revenue__deal_product_email_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_email_earr", "block_contents": "eARR email"}, "doc.yoda.analytics___new_revenue__deal_product_entered_demo_date": {"name": "analytics___new_revenue__deal_product_entered_demo_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_entered_demo_date", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_entered_demo_date_month": {"name": "analytics___new_revenue__deal_product_entered_demo_date_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_entered_demo_date_month", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_estimated_monthly_order_range": {"name": "analytics___new_revenue__deal_product_estimated_monthly_order_range", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_estimated_monthly_order_range", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_estimated_review_requests_per_month": {"name": "analytics___new_revenue__deal_product_estimated_review_requests_per_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_estimated_review_requests_per_month", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_goal_process_internal_id": {"name": "analytics___new_revenue__deal_product_goal_process_internal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_goal_process_internal_id", "block_contents": "Concatenation of fields used to join the performance from this process to the goals"}, "doc.yoda.analytics___new_revenue__deal_product_goal_process_sales_region": {"name": "analytics___new_revenue__deal_product_goal_process_sales_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_goal_process_sales_region", "block_contents": "'EMEA' for 'UK'/'IL', sales region otherwise"}, "doc.yoda.analytics___new_revenue__deal_product_ht_ss_flag": {"name": "analytics___new_revenue__deal_product_ht_ss_flag", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_ht_ss_flag", "block_contents": "Indicator for high touch or self service opportunities"}, "doc.yoda.analytics___new_revenue__deal_product_is_account_role_owner": {"name": "analytics___new_revenue__deal_product_is_account_role_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_is_account_role_owner", "block_contents": "Indicates if opportunity's owenr is of am/ae"}, "doc.yoda.analytics___new_revenue__deal_product_is_ht_ss": {"name": "analytics___new_revenue__deal_product_is_ht_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_is_ht_ss", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_is_loyalty": {"name": "analytics___new_revenue__deal_product_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_is_marketing": {"name": "analytics___new_revenue__deal_product_is_marketing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_is_marketing", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_is_osdr": {"name": "analytics___new_revenue__deal_product_is_osdr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_is_osdr", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_is_other_demand_gen_channel": {"name": "analytics___new_revenue__deal_product_is_other_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_is_other_demand_gen_channel", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_is_partner_opportunity": {"name": "analytics___new_revenue__deal_product_is_partner_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_is_partner_opportunity", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_is_platform_deal": {"name": "analytics___new_revenue__deal_product_is_platform_deal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_is_platform_deal", "block_contents": "Indicator that an opportunity is a platform deal- contains UGC, L&R and SMS"}, "doc.yoda.analytics___new_revenue__deal_product_is_sms": {"name": "analytics___new_revenue__deal_product_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_is_sms", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_is_subscriptions": {"name": "analytics___new_revenue__deal_product_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_is_ugc": {"name": "analytics___new_revenue__deal_product_is_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_is_ugc", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_latest_updated_at": {"name": "analytics___new_revenue__deal_product_latest_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_latest_updated_at", "block_contents": "Latest updated at time between deal summary and opportunity"}, "doc.yoda.analytics___new_revenue__deal_product_manager_full_name": {"name": "analytics___new_revenue__deal_product_manager_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_manager_full_name", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_opportunity_id": {"name": "analytics___new_revenue__deal_product_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_opportunity_name": {"name": "analytics___new_revenue__deal_product_opportunity_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_opportunity_name", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_opportunity_sales_region": {"name": "analytics___new_revenue__deal_product_opportunity_sales_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_opportunity_sales_region", "block_contents": "Sales region of the seller"}, "doc.yoda.analytics___new_revenue__deal_product_order_sales_segment": {"name": "analytics___new_revenue__deal_product_order_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_order_sales_segment", "block_contents": "Sales segment based on order volume"}, "doc.yoda.analytics___new_revenue__deal_product_organization_id": {"name": "analytics___new_revenue__deal_product_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_organization_id", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_organization_key": {"name": "analytics___new_revenue__deal_product_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_organization_key", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_owner_id": {"name": "analytics___new_revenue__deal_product_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_owner_id", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_owner_name": {"name": "analytics___new_revenue__deal_product_owner_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_owner_name", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_owner_role": {"name": "analytics___new_revenue__deal_product_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_owner_role", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_pipeline_usd": {"name": "analytics___new_revenue__deal_product_pipeline_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_pipeline_usd", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_platform": {"name": "analytics___new_revenue__deal_product_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_platform", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_product": {"name": "analytics___new_revenue__deal_product_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_product", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_product_line_acv": {"name": "analytics___new_revenue__deal_product_product_line_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_product_line_acv", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_product_line_earr": {"name": "analytics___new_revenue__deal_product_product_line_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_product_line_earr", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_product_list": {"name": "analytics___new_revenue__deal_product_product_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_product_list", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_products_per_deal": {"name": "analytics___new_revenue__deal_product_products_per_deal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_products_per_deal", "block_contents": "Number of products in the deal"}, "doc.yoda.analytics___new_revenue__deal_product_record_type_name": {"name": "analytics___new_revenue__deal_product_record_type_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_record_type_name", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_revenue_stream": {"name": "analytics___new_revenue__deal_product_revenue_stream", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_revenue_stream", "block_contents": "Flag for whether the deal is Sales or Account Management"}, "doc.yoda.analytics___new_revenue__deal_product_sdr_sf_user_id": {"name": "analytics___new_revenue__deal_product_sdr_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_sdr_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_secondary_seller_id": {"name": "analytics___new_revenue__deal_product_secondary_seller_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_secondary_seller_id", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_sms_earr": {"name": "analytics___new_revenue__deal_product_sms_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_sms_earr", "block_contents": "Delta eARR SMS"}, "doc.yoda.analytics___new_revenue__deal_product_stage": {"name": "analytics___new_revenue__deal_product_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_stage", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_start_date": {"name": "analytics___new_revenue__deal_product_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_start_date", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_subscriptions_earr": {"name": "analytics___new_revenue__deal_product_subscriptions_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_subscriptions_earr", "block_contents": "Delta eARR Subscriptions"}, "doc.yoda.analytics___new_revenue__deal_product_type": {"name": "analytics___new_revenue__deal_product_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_type", "block_contents": ""}, "doc.yoda.analytics___new_revenue__deal_product_won_deal_opp_id": {"name": "analytics___new_revenue__deal_product_won_deal_opp_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product/analytics___new_revenue__deal_product.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_won_deal_opp_id", "block_contents": "Opportunity id for products won"}, "doc.yoda.analytics___new_revenue__deal_product_scd": {"name": "analytics___new_revenue__deal_product_scd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_scd", "block_contents": "SCD table for new revenue deal product | PK & Granularity: opportunity_id, product, updated_at"}, "doc.yoda.analytics___new_revenue__deal_product_scd_dwh_updated_at": {"name": "analytics___new_revenue__deal_product_scd_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__deal_product_scd/analytics___new_revenue__deal_product_scd.md", "unique_id": "doc.yoda.analytics___new_revenue__deal_product_scd_dwh_updated_at", "block_contents": "Table writing time"}, "doc.yoda.analytics___new_revenue__operational_performance_daily": {"name": "analytics___new_revenue__operational_performance_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily", "block_contents": "Modeled aggregated table for acv/sal performance on a daily level | PK: operational_performance_daily_id | Granularity: date, deal_type, revenue_stream, segment, region, demand_gen_channel, product"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_daily_acv": {"name": "analytics___new_revenue__operational_performance_daily_daily_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_daily_acv", "block_contents": "total acv according to granularity"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_daily_sal": {"name": "analytics___new_revenue__operational_performance_daily_daily_sal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_daily_sal", "block_contents": "total sal count according to granularity"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_date": {"name": "analytics___new_revenue__operational_performance_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_date", "block_contents": ""}, "doc.yoda.analytics___new_revenue__operational_performance_daily_deal_type": {"name": "analytics___new_revenue__operational_performance_daily_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_deal_type", "block_contents": "opportunity's deal type (HT/SS)"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_demand_gen_channel": {"name": "analytics___new_revenue__operational_performance_daily_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_demand_gen_channel", "block_contents": "opportunity's attribution channel"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_dwh_updated_at": {"name": "analytics___new_revenue__operational_performance_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___new_revenue__operational_performance_daily_expected_acv_daily": {"name": "analytics___new_revenue__operational_performance_daily_expected_acv_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_expected_acv_daily", "block_contents": "expected acv performance based on previous year progress on the same day"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_expected_forecast_acv_daily": {"name": "analytics___new_revenue__operational_performance_daily_expected_forecast_acv_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_expected_forecast_acv_daily", "block_contents": "expected acv performance based on previous year progress on the same day for forceast (fixed) goals"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_expected_forecast_sal_daily": {"name": "analytics___new_revenue__operational_performance_daily_expected_forecast_sal_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_expected_forecast_sal_daily", "block_contents": "expected sal count performance based on previous year progress on the same day for forceast (fixed) goals"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_expected_sal_daily": {"name": "analytics___new_revenue__operational_performance_daily_expected_sal_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_expected_sal_daily", "block_contents": "expected sal count performance based on previous year progress on the same day"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_month": {"name": "analytics___new_revenue__operational_performance_daily_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_month", "block_contents": ""}, "doc.yoda.analytics___new_revenue__operational_performance_daily_operational_performance_daily_id": {"name": "analytics___new_revenue__operational_performance_daily_operational_performance_daily_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_operational_performance_daily_id", "block_contents": "PK"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_product": {"name": "analytics___new_revenue__operational_performance_daily_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_product", "block_contents": ""}, "doc.yoda.analytics___new_revenue__operational_performance_daily_region": {"name": "analytics___new_revenue__operational_performance_daily_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_region", "block_contents": "opportunity's account sales region, UK/IL shown as EMEA"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_revenue_stream": {"name": "analytics___new_revenue__operational_performance_daily_revenue_stream", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_revenue_stream", "block_contents": "opportunity's revenue stream (AM/SS/Sales)"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_segment": {"name": "analytics___new_revenue__operational_performance_daily_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_segment", "block_contents": "opportunity's account sales segment (VSB/SMB/...)"}, "doc.yoda.analytics___new_revenue__operational_performance_daily_won_opportunities": {"name": "analytics___new_revenue__operational_performance_daily_won_opportunities", "resource_type": "doc", "package_name": "yoda", "path": "analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "original_file_path": "models/analytics/new_revenue/marts/analytics___new_revenue__operational_performance_daily/analytics___new_revenue__operational_performance_daily.md", "unique_id": "doc.yoda.analytics___new_revenue__operational_performance_daily_won_opportunities", "block_contents": "total won opportunities count according to granularity"}, "doc.yoda.analytics___partners__manager_performance_monthly": {"name": "analytics___partners__manager_performance_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly", "block_contents": "A modeled table of monthly sal and acv/earr performance for partner managers with goals | PK & Granularity: partner_manager_id, month"}, "doc.yoda.analytics___partners__manager_performance_monthly_created_pipeline_in_usd": {"name": "analytics___partners__manager_performance_monthly_created_pipeline_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_created_pipeline_in_usd", "block_contents": "Created pipeline using New ACV, by the opportunity entered demo date"}, "doc.yoda.analytics___partners__manager_performance_monthly_dwh_updated_at": {"name": "analytics___partners__manager_performance_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___partners__manager_performance_monthly_full_name": {"name": "analytics___partners__manager_performance_monthly_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_full_name", "block_contents": ""}, "doc.yoda.analytics___partners__manager_performance_monthly_month": {"name": "analytics___partners__manager_performance_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_month", "block_contents": ""}, "doc.yoda.analytics___partners__manager_performance_monthly_new_sell_won_bookings": {"name": "analytics___partners__manager_performance_monthly_new_sell_won_bookings", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_new_sell_won_bookings", "block_contents": "This field zeros if it's a partner xsell else it's the created pipeline"}, "doc.yoda.analytics___partners__manager_performance_monthly_open_pipeline": {"name": "analytics___partners__manager_performance_monthly_open_pipeline", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_open_pipeline", "block_contents": "pipeline by estimated close date"}, "doc.yoda.analytics___partners__manager_performance_monthly_open_weighted_pipeline": {"name": "analytics___partners__manager_performance_monthly_open_weighted_pipeline", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_open_weighted_pipeline", "block_contents": "weighted pipeline by estimated close date"}, "doc.yoda.analytics___partners__manager_performance_monthly_partner_manager_geo": {"name": "analytics___partners__manager_performance_monthly_partner_manager_geo", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_partner_manager_geo", "block_contents": ""}, "doc.yoda.analytics___partners__manager_performance_monthly_partner_manager_id": {"name": "analytics___partners__manager_performance_monthly_partner_manager_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_partner_manager_id", "block_contents": ""}, "doc.yoda.analytics___partners__manager_performance_monthly_quarter": {"name": "analytics___partners__manager_performance_monthly_quarter", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_quarter", "block_contents": ""}, "doc.yoda.analytics___partners__manager_performance_monthly_quarterly_bookings_goal": {"name": "analytics___partners__manager_performance_monthly_quarterly_bookings_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_quarterly_bookings_goal", "block_contents": "total bookings by close date"}, "doc.yoda.analytics___partners__manager_performance_monthly_quarterly_sal_goal": {"name": "analytics___partners__manager_performance_monthly_quarterly_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_quarterly_sal_goal", "block_contents": ""}, "doc.yoda.analytics___partners__manager_performance_monthly_sal_cnt": {"name": "analytics___partners__manager_performance_monthly_sal_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_sal_cnt", "block_contents": ""}, "doc.yoda.analytics___partners__manager_performance_monthly_team": {"name": "analytics___partners__manager_performance_monthly_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_team", "block_contents": "partner manager's team"}, "doc.yoda.analytics___partners__manager_performance_monthly_team_leader": {"name": "analytics___partners__manager_performance_monthly_team_leader", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_team_leader", "block_contents": "partner manager's team leader name"}, "doc.yoda.analytics___partners__manager_performance_monthly_weighted_pipeline": {"name": "analytics___partners__manager_performance_monthly_weighted_pipeline", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_weighted_pipeline", "block_contents": ""}, "doc.yoda.analytics___partners__manager_performance_monthly_won_bookings": {"name": "analytics___partners__manager_performance_monthly_won_bookings", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_won_bookings", "block_contents": ""}, "doc.yoda.analytics___partners__manager_performance_monthly_xsell_won_bookings": {"name": "analytics___partners__manager_performance_monthly_xsell_won_bookings", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__manager_performance_monthly/analytics___partners__manager_performance_monthly.md", "unique_id": "doc.yoda.analytics___partners__manager_performance_monthly_xsell_won_bookings", "block_contents": "This field zeros if it's not a partner xsell else it's the created pipeline"}, "doc.yoda.analytics___partners__partner_engagement_opportunity": {"name": "analytics___partners__partner_engagement_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity", "block_contents": "The table's level of granularity is Partner Engagement and Opportunity and it's the basis of the Partners domain.\nPK: {partner_engagement_id,opportunity ID}.\nYou can use it for aggregations and Partners funnel analysis: from PE -> SAL -> SQL -> Won/Lost."}, "doc.yoda.analytics___partners__partner_engagement_opportunity_actual_end_date": {"name": "analytics___partners__partner_engagement_opportunity_actual_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_actual_end_date", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_close_date": {"name": "analytics___partners__partner_engagement_opportunity_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_close_date", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_converted_from_heads_up_to_referral_date": {"name": "analytics___partners__partner_engagement_opportunity_converted_from_heads_up_to_referral_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_converted_from_heads_up_to_referral_date", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_created_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_created_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_created_estimated_arr_in_usd", "block_contents": "The total eARR of: SMS, Email, Subscriptions, Gold and Prime"}, "doc.yoda.analytics___partners__partner_engagement_opportunity_created_pipeline_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_created_pipeline_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_created_pipeline_in_usd", "block_contents": "Created pipeline using New ACV, should be measured by the opportunity entered demo date"}, "doc.yoda.analytics___partners__partner_engagement_opportunity_delta_acv_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_delta_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_delta_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_dwh_updated_at": {"name": "analytics___partners__partner_engagement_opportunity_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_email_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_email_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_email_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_entered_demo_date": {"name": "analytics___partners__partner_engagement_opportunity_entered_demo_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_entered_demo_date", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_gold_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_gold_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_gold_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_insights_acv_in_usd_sum": {"name": "analytics___partners__partner_engagement_opportunity_insights_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_insights_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_bundle": {"name": "analytics___partners__partner_engagement_opportunity_is_bundle", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_bundle", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_closed": {"name": "analytics___partners__partner_engagement_opportunity_is_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_closed", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_current_contract": {"name": "analytics___partners__partner_engagement_opportunity_is_current_contract", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_current_contract", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_email_intent": {"name": "analytics___partners__partner_engagement_opportunity_is_email_intent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_email_intent", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_insights": {"name": "analytics___partners__partner_engagement_opportunity_is_insights", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_insights", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_lost": {"name": "analytics___partners__partner_engagement_opportunity_is_lost", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_lost", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_lost_after_won": {"name": "analytics___partners__partner_engagement_opportunity_is_lost_after_won", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_lost_after_won", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_loyalty": {"name": "analytics___partners__partner_engagement_opportunity_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_closed_mtd": {"name": "analytics___partners__partner_engagement_opportunity_is_opportunity_closed_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_closed_mtd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_closed_qtd": {"name": "analytics___partners__partner_engagement_opportunity_is_opportunity_closed_qtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_closed_qtd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_created_mtd": {"name": "analytics___partners__partner_engagement_opportunity_is_opportunity_created_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_created_mtd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_created_qtd": {"name": "analytics___partners__partner_engagement_opportunity_is_opportunity_created_qtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_created_qtd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_entered_demo_mtd": {"name": "analytics___partners__partner_engagement_opportunity_is_opportunity_entered_demo_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_entered_demo_mtd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_entered_demo_qtd": {"name": "analytics___partners__partner_engagement_opportunity_is_opportunity_entered_demo_qtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_opportunity_entered_demo_qtd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_other_demand_gen_channel": {"name": "analytics___partners__partner_engagement_opportunity_is_other_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_other_demand_gen_channel", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_partner_engagement_created_mtd": {"name": "analytics___partners__partner_engagement_opportunity_is_partner_engagement_created_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_partner_engagement_created_mtd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_partner_engagement_created_qtd": {"name": "analytics___partners__partner_engagement_opportunity_is_partner_engagement_created_qtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_partner_engagement_created_qtd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_partner_opportunity": {"name": "analytics___partners__partner_engagement_opportunity_is_partner_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_partner_opportunity", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_partner_upsell": {"name": "analytics___partners__partner_engagement_opportunity_is_partner_upsell", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_partner_upsell", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_reviews": {"name": "analytics___partners__partner_engagement_opportunity_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_reviews", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_sal": {"name": "analytics___partners__partner_engagement_opportunity_is_sal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_sal", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_sms": {"name": "analytics___partners__partner_engagement_opportunity_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_sms", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_subscriptions": {"name": "analytics___partners__partner_engagement_opportunity_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_vms": {"name": "analytics___partners__partner_engagement_opportunity_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_vms", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_is_won_sale": {"name": "analytics___partners__partner_engagement_opportunity_is_won_sale", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_is_won_sale", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_loyalty_acv_in_usd_sum": {"name": "analytics___partners__partner_engagement_opportunity_loyalty_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_loyalty_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_new_sell_won_bookings_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_new_sell_won_bookings_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_new_sell_won_bookings_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_open_delta_acv_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_open_delta_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_open_delta_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_open_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_open_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_open_estimated_arr_in_usd", "block_contents": "The total eARR of: SMS, Email, Subscriptions, Gold and Prime, for all opps that are not in of of the stages: Won/ Lost/Lost after won"}, "doc.yoda.analytics___partners__partner_engagement_opportunity_open_pipeline_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_open_pipeline_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_open_pipeline_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_open_weighted_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_open_weighted_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_open_weighted_estimated_arr_in_usd", "block_contents": "The total eARR of: SMS, Email, Subscriptions, Gold and Prime, multiplied by the won probability, for all opps that are not in of of the stages: Won/ Lost/Lost after won"}, "doc.yoda.analytics___partners__partner_engagement_opportunity_open_weighted_pipeline_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_open_weighted_pipeline_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_open_weighted_pipeline_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_close_date": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_close_date", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_close_month": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_close_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_close_month", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_close_quarter": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_close_quarter", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_close_quarter", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_created_at": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_created_at", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_entered_demo_date": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_entered_demo_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_entered_demo_date", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_entered_demo_month": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_entered_demo_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_entered_demo_month", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_entered_demo_quarter": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_entered_demo_quarter", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_entered_demo_quarter", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_estimated_monthly_order_range": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_estimated_monthly_order_range", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_estimated_monthly_order_range", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_id": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_name": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_name", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_order_sales_segment": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_order_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_order_sales_segment", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_original_owner_role": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_original_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_original_owner_role", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_stage": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_stage", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_start_date": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_start_date", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_start_month": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_start_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_start_month", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_start_quarter": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_start_quarter", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_start_quarter", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_type": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_type", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_won_sale_probability": {"name": "analytics___partners__partner_engagement_opportunity_opportunity_won_sale_probability", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_opportunity_won_sale_probability", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_order_sales_segment": {"name": "analytics___partners__partner_engagement_opportunity_order_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_order_sales_segment", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_full_name": {"name": "analytics___partners__partner_engagement_opportunity_original_referrer_owner_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_full_name", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_id": {"name": "analytics___partners__partner_engagement_opportunity_original_referrer_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_id", "block_contents": "This is the ID of the Partner Manager who gets credit for the Partner Referral"}, "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_manager_full_name": {"name": "analytics___partners__partner_engagement_opportunity_original_referrer_owner_manager_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_manager_full_name", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_manager_id": {"name": "analytics___partners__partner_engagement_opportunity_original_referrer_owner_manager_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_manager_id", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_name": {"name": "analytics___partners__partner_engagement_opportunity_original_referrer_owner_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_name", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_role": {"name": "analytics___partners__partner_engagement_opportunity_original_referrer_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_original_referrer_owner_role", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_id": {"name": "analytics___partners__partner_engagement_opportunity_partner_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_id", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_name": {"name": "analytics___partners__partner_engagement_opportunity_partner_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_name", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_organization_key": {"name": "analytics___partners__partner_engagement_opportunity_partner_account_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_organization_key", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_owner_full_name": {"name": "analytics___partners__partner_engagement_opportunity_partner_account_owner_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_owner_full_name", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_owner_role": {"name": "analytics___partners__partner_engagement_opportunity_partner_account_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_owner_role", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_referral_type": {"name": "analytics___partners__partner_engagement_opportunity_partner_account_referral_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_referral_type", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_referrer_type": {"name": "analytics___partners__partner_engagement_opportunity_partner_account_referrer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_account_referrer_type", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_converted_from_heads_up_to_referral_date": {"name": "analytics___partners__partner_engagement_opportunity_partner_engagement_converted_from_heads_up_to_referral_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_converted_from_heads_up_to_referral_date", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_created_date": {"name": "analytics___partners__partner_engagement_opportunity_partner_engagement_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_created_date", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_id": {"name": "analytics___partners__partner_engagement_opportunity_partner_engagement_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_id", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_product_interest": {"name": "analytics___partners__partner_engagement_opportunity_partner_engagement_product_interest", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_product_interest", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_referral_date": {"name": "analytics___partners__partner_engagement_opportunity_partner_engagement_referral_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_referral_date", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_referral_sub_type": {"name": "analytics___partners__partner_engagement_opportunity_partner_engagement_referral_sub_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_referral_sub_type", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_referral_type": {"name": "analytics___partners__partner_engagement_opportunity_partner_engagement_referral_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_referral_type", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_rev_share_rate": {"name": "analytics___partners__partner_engagement_opportunity_partner_engagement_rev_share_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_rev_share_rate", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_sub_type": {"name": "analytics___partners__partner_engagement_opportunity_partner_engagement_sub_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_engagement_sub_type", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_manager_id": {"name": "analytics___partners__partner_engagement_opportunity_partner_manager_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_partner_manager_id", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_prime_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_prime_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_prime_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referral_sub_type": {"name": "analytics___partners__partner_engagement_opportunity_referral_sub_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referral_sub_type", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_country": {"name": "analytics___partners__partner_engagement_opportunity_referred_account_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_country", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_cs_tags": {"name": "analytics___partners__partner_engagement_opportunity_referred_account_cs_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_cs_tags", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_current_contract_cnt": {"name": "analytics___partners__partner_engagement_opportunity_referred_account_current_contract_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_current_contract_cnt", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_estimated_monthly_orders_volume": {"name": "analytics___partners__partner_engagement_opportunity_referred_account_estimated_monthly_orders_volume", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_estimated_monthly_orders_volume", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_id": {"name": "analytics___partners__partner_engagement_opportunity_referred_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_id", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_industry_name": {"name": "analytics___partners__partner_engagement_opportunity_referred_account_industry_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_industry_name", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_name": {"name": "analytics___partners__partner_engagement_opportunity_referred_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_name", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_organization_key": {"name": "analytics___partners__partner_engagement_opportunity_referred_account_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_organization_key", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_packages": {"name": "analytics___partners__partner_engagement_opportunity_referred_account_packages", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_packages", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_platform": {"name": "analytics___partners__partner_engagement_opportunity_referred_account_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_platform", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_products_in_tam_list": {"name": "analytics___partners__partner_engagement_opportunity_referred_account_products_in_tam_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_referred_account_products_in_tam_list", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_reviews_acv_in_usd_sum": {"name": "analytics___partners__partner_engagement_opportunity_reviews_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_reviews_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_sales_region": {"name": "analytics___partners__partner_engagement_opportunity_sales_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_sales_region", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_sms_acv_in_usd_sum": {"name": "analytics___partners__partner_engagement_opportunity_sms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_sms_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_sms_delta_earr": {"name": "analytics___partners__partner_engagement_opportunity_sms_delta_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_sms_delta_earr", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_sms_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_sms_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_sms_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_start_date": {"name": "analytics___partners__partner_engagement_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_start_date", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_subscriptions_acv_in_usd_sum": {"name": "analytics___partners__partner_engagement_opportunity_subscriptions_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_subscriptions_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_subscriptions_delta_earr": {"name": "analytics___partners__partner_engagement_opportunity_subscriptions_delta_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_subscriptions_delta_earr", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_subscriptions_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_subscriptions_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_subscriptions_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_upsell_acv_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_upsell_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_upsell_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_vms_acv_in_usd_sum": {"name": "analytics___partners__partner_engagement_opportunity_vms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_vms_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_delta_acv_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_weighted_delta_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_delta_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_email_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_weighted_email_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_email_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_weighted_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_gold_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_weighted_gold_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_gold_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_pipeline_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_weighted_pipeline_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_pipeline_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_prime_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_weighted_prime_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_prime_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_sms_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_weighted_sms_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_sms_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_subscriptions_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_weighted_subscriptions_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_weighted_subscriptions_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_bookings_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_won_bookings_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_bookings_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_delta_acv_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_won_delta_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_delta_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_email_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_won_email_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_email_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_won_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_gold_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_won_gold_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_gold_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_loyalty_acv_in_usd_sum": {"name": "analytics___partners__partner_engagement_opportunity_won_loyalty_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_loyalty_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_prime_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_won_prime_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_prime_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_reviews_acv_in_usd_sum": {"name": "analytics___partners__partner_engagement_opportunity_won_reviews_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_reviews_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_sms_acv_in_usd_sum": {"name": "analytics___partners__partner_engagement_opportunity_won_sms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_sms_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_sms_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_won_sms_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_sms_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_subscriptions_acv_in_usd_sum": {"name": "analytics___partners__partner_engagement_opportunity_won_subscriptions_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_subscriptions_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_subscriptions_estimated_arr_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_won_subscriptions_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_subscriptions_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_upsell_acv_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_won_upsell_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_upsell_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_won_vms_acv_in_usd_sum": {"name": "analytics___partners__partner_engagement_opportunity_won_vms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_won_vms_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___partners__partner_engagement_opportunity_xsell_won_bookings_in_usd": {"name": "analytics___partners__partner_engagement_opportunity_xsell_won_bookings_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "original_file_path": "models/analytics/partners/marts/analytics___partners__partner_engagement_opportunity/analytics___partners__partner_engagement_opportunity.md", "unique_id": "doc.yoda.analytics___partners__partner_engagement_opportunity_xsell_won_bookings_in_usd", "block_contents": "This field zeros if it's not a partner xsell else it's the created pipeline"}, "doc.yoda.analytics___partners_stg__partner_manager_goals": {"name": "analytics___partners_stg__partner_manager_goals", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "original_file_path": "models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__partner_manager_goals", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___partners_stg__partner_manager_goals_booking_goal": {"name": "analytics___partners_stg__partner_manager_goals_booking_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "original_file_path": "models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__partner_manager_goals_booking_goal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___partners_stg__partner_manager_goals_manager": {"name": "analytics___partners_stg__partner_manager_goals_manager", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "original_file_path": "models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__partner_manager_goals_manager", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___partners_stg__partner_manager_goals_original_referrer_owner_id": {"name": "analytics___partners_stg__partner_manager_goals_original_referrer_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "original_file_path": "models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__partner_manager_goals_original_referrer_owner_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___partners_stg__partner_manager_goals_partner_manager": {"name": "analytics___partners_stg__partner_manager_goals_partner_manager", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "original_file_path": "models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__partner_manager_goals_partner_manager", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___partners_stg__partner_manager_goals_quarter": {"name": "analytics___partners_stg__partner_manager_goals_quarter", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "original_file_path": "models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__partner_manager_goals_quarter", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___partners_stg__partner_manager_goals_river_run_time": {"name": "analytics___partners_stg__partner_manager_goals_river_run_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "original_file_path": "models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__partner_manager_goals_river_run_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___partners_stg__partner_manager_goals_sal_goal": {"name": "analytics___partners_stg__partner_manager_goals_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "original_file_path": "models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__partner_manager_goals_sal_goal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___partners_stg__partner_manager_goals_second_level_manager": {"name": "analytics___partners_stg__partner_manager_goals_second_level_manager", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "original_file_path": "models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__partner_manager_goals_second_level_manager", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___partners_stg__partner_manager_goals_team": {"name": "analytics___partners_stg__partner_manager_goals_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "original_file_path": "models/analytics/partners/staging/base/analytics___partners_stg__partner_manager_goals/analytics___partners_stg__partner_manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__partner_manager_goals_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___partners_stg__manager_goals": {"name": "analytics___partners_stg__manager_goals", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__manager_goals", "block_contents": "A modeled view for partner managers quarterly goals (streamed from google sheets with Rivery) | PK & Granularity: partner_manager_id, quarter"}, "doc.yoda.analytics___partners_stg__manager_goals_partner_manager_id": {"name": "analytics___partners_stg__manager_goals_partner_manager_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__manager_goals_partner_manager_id", "block_contents": "sf user id of the partner manager"}, "doc.yoda.analytics___partners_stg__manager_goals_quarter": {"name": "analytics___partners_stg__manager_goals_quarter", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__manager_goals_quarter", "block_contents": ""}, "doc.yoda.analytics___partners_stg__manager_goals_quarterly_bookings_goal": {"name": "analytics___partners_stg__manager_goals_quarterly_bookings_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__manager_goals_quarterly_bookings_goal", "block_contents": ""}, "doc.yoda.analytics___partners_stg__manager_goals_quarterly_sal_goal": {"name": "analytics___partners_stg__manager_goals_quarterly_sal_goal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__manager_goals_quarterly_sal_goal", "block_contents": ""}, "doc.yoda.analytics___partners_stg__manager_goals_second_level_manager": {"name": "analytics___partners_stg__manager_goals_second_level_manager", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__manager_goals_second_level_manager", "block_contents": ""}, "doc.yoda.analytics___partners_stg__manager_goals_team": {"name": "analytics___partners_stg__manager_goals_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__manager_goals_team", "block_contents": "partner manager's team"}, "doc.yoda.analytics___partners_stg__manager_goals_team_leader": {"name": "analytics___partners_stg__manager_goals_team_leader", "resource_type": "doc", "package_name": "yoda", "path": "analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "original_file_path": "models/analytics/partners/staging/marts_compatible/analytics___partners_stg__manager_goals/analytics___partners_stg__manager_goals.md", "unique_id": "doc.yoda.analytics___partners_stg__manager_goals_team_leader", "block_contents": "partner manager's team leader"}, "doc.yoda.analytics___platform__opportunity_ht_ss_over_time": {"name": "analytics___platform__opportunity_ht_ss_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "unique_id": "doc.yoda.analytics___platform__opportunity_ht_ss_over_time", "block_contents": "Table containing HT motion opportunities (reviews + loyalty).\nEnd date caclculated from organization churn date. Granularity: opportunity_id | product_family"}, "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_dwh_updated_at": {"name": "analytics___platform__opportunity_ht_ss_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "unique_id": "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_end_date": {"name": "analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "unique_id": "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_end_date", "block_contents": "End date caclculated from organization product churn date"}, "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_start_date": {"name": "analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "unique_id": "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_start_date", "block_contents": "opportunity start date"}, "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_opportunity_id": {"name": "analytics___platform__opportunity_ht_ss_over_time_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "unique_id": "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_opportunity_id", "block_contents": "PK: analytics___salesforce__opportunity"}, "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_organization_key": {"name": "analytics___platform__opportunity_ht_ss_over_time_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "unique_id": "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_organization_key", "block_contents": "PK: analytics___platform__organization"}, "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_product_family": {"name": "analytics___platform__opportunity_ht_ss_over_time_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__opportunity_ht_ss_over_time/analytics___platform__opportunity_ht_ss_over_time.md", "unique_id": "doc.yoda.analytics___platform__opportunity_ht_ss_over_time_product_family", "block_contents": "Reviews | Loyalty"}, "doc.yoda.analytics___platform__order": {"name": "analytics___platform__order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order", "block_contents": "Modeled table for all raw orders from orders service. Granularity & PK: order_id"}, "doc.yoda.analytics___platform__order_app_key": {"name": "analytics___platform__order_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_app_key", "block_contents": "Unique id for the store which made the specific order_id"}, "doc.yoda.analytics___platform__order_billing_address_id": {"name": "analytics___platform__order_billing_address_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_billing_address_id", "block_contents": "billing address id"}, "doc.yoda.analytics___platform__order_dwh_updated_at": {"name": "analytics___platform__order_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___platform__order_email": {"name": "analytics___platform__order_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_email", "block_contents": "email address"}, "doc.yoda.analytics___platform__order_external_customer_id": {"name": "analytics___platform__order_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_external_customer_id", "block_contents": "external customer id"}, "doc.yoda.analytics___platform__order_external_id": {"name": "analytics___platform__order_external_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_external_id", "block_contents": "order external id"}, "doc.yoda.analytics___platform__order_external_order_id": {"name": "analytics___platform__order_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_external_order_id", "block_contents": "external order id"}, "doc.yoda.analytics___platform__order_full_name": {"name": "analytics___platform__order_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_full_name", "block_contents": "full name"}, "doc.yoda.analytics___platform__order_is_buyer_accepts_email_marketing": {"name": "analytics___platform__order_is_buyer_accepts_email_marketing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_is_buyer_accepts_email_marketing", "block_contents": "indicator whether the buyer accepts marketing email"}, "doc.yoda.analytics___platform__order_is_buyer_accepts_marketing": {"name": "analytics___platform__order_is_buyer_accepts_marketing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_is_buyer_accepts_marketing", "block_contents": "indicator whether the buyer accepts marketing"}, "doc.yoda.analytics___platform__order_is_buyer_accepts_sms_marketing": {"name": "analytics___platform__order_is_buyer_accepts_sms_marketing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_is_buyer_accepts_sms_marketing", "block_contents": "indicator whether the buyer accepts marketing sms"}, "doc.yoda.analytics___platform__order_is_fulfiled": {"name": "analytics___platform__order_is_fulfiled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_is_fulfiled", "block_contents": "order fulfillment indicator"}, "doc.yoda.analytics___platform__order_landing_site_url": {"name": "analytics___platform__order_landing_site_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_landing_site_url", "block_contents": "landing site url"}, "doc.yoda.analytics___platform__order_latest_updated_at": {"name": "analytics___platform__order_latest_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_latest_updated_at", "block_contents": "The latest updated_at value among the source models' updated_at columns"}, "doc.yoda.analytics___platform__order_latest_updated_date": {"name": "analytics___platform__order_latest_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_latest_updated_date", "block_contents": "The latest updated_date value among the source models' updated_date columns"}, "doc.yoda.analytics___platform__order_order_account_amount": {"name": "analytics___platform__order_order_account_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_order_account_amount", "block_contents": "account amount"}, "doc.yoda.analytics___platform__order_order_account_amount_currency": {"name": "analytics___platform__order_order_account_amount_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_order_account_amount_currency", "block_contents": "account amount currency"}, "doc.yoda.analytics___platform__order_order_amount": {"name": "analytics___platform__order_order_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_order_amount", "block_contents": "amount"}, "doc.yoda.analytics___platform__order_order_amount_currency": {"name": "analytics___platform__order_order_amount_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_order_amount_currency", "block_contents": "amount currency"}, "doc.yoda.analytics___platform__order_order_amount_usd": {"name": "analytics___platform__order_order_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_order_amount_usd", "block_contents": "amount in USD"}, "doc.yoda.analytics___platform__order_order_at": {"name": "analytics___platform__order_order_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_order_at", "block_contents": "order timestamp"}, "doc.yoda.analytics___platform__order_order_date": {"name": "analytics___platform__order_order_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_order_date", "block_contents": "order date"}, "doc.yoda.analytics___platform__order_order_id": {"name": "analytics___platform__order_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_order_id", "block_contents": "order id - PK"}, "doc.yoda.analytics___platform__order_order_update_at": {"name": "analytics___platform__order_order_update_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_order_update_at", "block_contents": "order row update timestamp"}, "doc.yoda.analytics___platform__order_order_update_date": {"name": "analytics___platform__order_order_update_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_order_update_date", "block_contents": "order row update date"}, "doc.yoda.analytics___platform__order_payment_method": {"name": "analytics___platform__order_payment_method", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_payment_method", "block_contents": "payment method"}, "doc.yoda.analytics___platform__order_payment_status_id": {"name": "analytics___platform__order_payment_status_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_payment_status_id", "block_contents": "payment status id"}, "doc.yoda.analytics___platform__order_phone_number": {"name": "analytics___platform__order_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_phone_number", "block_contents": "phone number"}, "doc.yoda.analytics___platform__order_platform": {"name": "analytics___platform__order_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_platform", "block_contents": "platform"}, "doc.yoda.analytics___platform__order_shipping_address_id": {"name": "analytics___platform__order_shipping_address_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_shipping_address_id", "block_contents": "shipping address id"}, "doc.yoda.analytics___platform__order_source": {"name": "analytics___platform__order_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_source", "block_contents": "source"}, "doc.yoda.analytics___platform__order_total_price": {"name": "analytics___platform__order_total_price", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_total_price", "block_contents": "total price"}, "doc.yoda.analytics___platform__order_updated_at_fulfillments_row": {"name": "analytics___platform__order_updated_at_fulfillments_row", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_updated_at_fulfillments_row", "block_contents": "order fulfillments row update timestamp"}, "doc.yoda.analytics___platform__order_updated_at_orders_row": {"name": "analytics___platform__order_updated_at_orders_row", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order/analytics___platform__order.md", "unique_id": "doc.yoda.analytics___platform__order_updated_at_orders_row", "block_contents": "order row update timestamp"}, "doc.yoda.analytics___platform__order_metrics": {"name": "analytics___platform__order_metrics", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "unique_id": "doc.yoda.analytics___platform__order_metrics", "block_contents": "Modeled incremental table of order metrics. \nPK and granularity: order_id"}, "doc.yoda.analytics___platform__order_metrics_dwh_updated_at": {"name": "analytics___platform__order_metrics_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "unique_id": "doc.yoda.analytics___platform__order_metrics_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___platform__order_metrics_latest_updated_date": {"name": "analytics___platform__order_metrics_latest_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "unique_id": "doc.yoda.analytics___platform__order_metrics_latest_updated_date", "block_contents": "The latest updated_date value among the source models' updated_date columns"}, "doc.yoda.analytics___platform__order_metrics_order_id": {"name": "analytics___platform__order_metrics_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "unique_id": "doc.yoda.analytics___platform__order_metrics_order_id", "block_contents": "order id - PK"}, "doc.yoda.analytics___platform__order_metrics_order_line_updated_date": {"name": "analytics___platform__order_metrics_order_line_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "unique_id": "doc.yoda.analytics___platform__order_metrics_order_line_updated_date", "block_contents": "order line update date"}, "doc.yoda.analytics___platform__order_metrics_order_updated_date": {"name": "analytics___platform__order_metrics_order_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "unique_id": "doc.yoda.analytics___platform__order_metrics_order_updated_date", "block_contents": "order update date"}, "doc.yoda.analytics___platform__order_metrics_product_cnt": {"name": "analytics___platform__order_metrics_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__order_metrics/analytics___platform__order_metrics.md", "unique_id": "doc.yoda.analytics___platform__order_metrics_product_cnt", "block_contents": "number of different products"}, "doc.yoda.analytics___platform__organization": {"name": "analytics___platform__organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization", "block_contents": "Modeled table for organization object"}, "doc.yoda.analytics___platform__organization_admin_email": {"name": "analytics___platform__organization_admin_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_admin_email", "block_contents": "email address of moderator user within the account"}, "doc.yoda.analytics___platform__organization_dwh_updated_at": {"name": "analytics___platform__organization_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_grand_parent_organization_key": {"name": "analytics___platform__organization_grand_parent_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_grand_parent_organization_key", "block_contents": "grand parent organization from zuora account (parent of the parent)"}, "doc.yoda.analytics___platform__organization_is_test_organization": {"name": "analytics___platform__organization_is_test_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_is_test_organization", "block_contents": "indicator if the organization is test org (1 if test else 0)"}, "doc.yoda.analytics___platform__organization_organization_created_at": {"name": "analytics___platform__organization_organization_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_organization_created_at", "block_contents": "timestamp for organization creation"}, "doc.yoda.analytics___platform__organization_organization_id": {"name": "analytics___platform__organization_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_organization_id", "block_contents": "organization id"}, "doc.yoda.analytics___platform__organization_organization_key": {"name": "analytics___platform__organization_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_organization_key", "block_contents": "organization key"}, "doc.yoda.analytics___platform__organization_organization_name": {"name": "analytics___platform__organization_organization_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_organization_name", "block_contents": "Salesforce account name if available, if not, organization name from yotpoapiprod.organizations"}, "doc.yoda.analytics___platform__organization_organization_updated_at": {"name": "analytics___platform__organization_organization_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_organization_updated_at", "block_contents": "timestamp for organization update"}, "doc.yoda.analytics___platform__organization_parent_organization_id": {"name": "analytics___platform__organization_parent_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_parent_organization_id", "block_contents": "parent organization from zuora account"}, "doc.yoda.analytics___platform__organization_parent_organization_key": {"name": "analytics___platform__organization_parent_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_parent_organization_key", "block_contents": "parent organization from zuora account"}, "doc.yoda.analytics___platform__organization_registered_at": {"name": "analytics___platform__organization_registered_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization/analytics___platform__organization.md", "unique_id": "doc.yoda.analytics___platform__organization_registered_at", "block_contents": "account registration time based on its first store creation time"}, "doc.yoda.analytics___platform__organization_country": {"name": "analytics___platform__organization_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "unique_id": "doc.yoda.analytics___platform__organization_country", "block_contents": "PK [organization_key]\n\nThis table determine the country of each organization, using 3 sources:\n\n 1. Zuora billing country\n 2. SF account country\n 3. *SMS store country (most stores country)\n \n *Each organization can have multiple SMS stores and each SMS store can have only one country.\n\n We define the organization's country as the country that occur the most among the organization's SMS stores.\n\n In case multiple countries have the exact same number of occurance, we choose the country that occur the most in the entire population.\n\nNOTE: In case organization have country info from multiple sources, we choose the country by the order above."}, "doc.yoda.analytics___platform__organization_country_country_name": {"name": "analytics___platform__organization_country_country_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "unique_id": "doc.yoda.analytics___platform__organization_country_country_name", "block_contents": "This table determine the country of each organization, using 3 sources:\n\n 1. Zuora billing country\n 2. SF account country\n 3. *SMS store country (most stores country)\n \n *Each organization can have multiple SMS stores and each SMS store can have only one country.\n\n We define the organization's country as the country that occur the most among the organization's SMS stores.\n\n In case multiple countries have the exact same number of occurance, we choose the country that occur the most in the entire population.\n\nNOTE: In case organization have country info from multiple sources, we choose the country by the order above."}, "doc.yoda.analytics___platform__organization_country_dwh_updated_at": {"name": "analytics___platform__organization_country_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "unique_id": "doc.yoda.analytics___platform__organization_country_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_country_is_sf_country": {"name": "analytics___platform__organization_country_is_sf_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "unique_id": "doc.yoda.analytics___platform__organization_country_is_sf_country", "block_contents": "Indicates if the chosen country is sourced from SF"}, "doc.yoda.analytics___platform__organization_country_is_sms_country": {"name": "analytics___platform__organization_country_is_sms_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "unique_id": "doc.yoda.analytics___platform__organization_country_is_sms_country", "block_contents": "Indicates if the chosen country is sourced from SMS"}, "doc.yoda.analytics___platform__organization_country_is_zuora_country": {"name": "analytics___platform__organization_country_is_zuora_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "unique_id": "doc.yoda.analytics___platform__organization_country_is_zuora_country", "block_contents": "Indicates if the chosen country is sourced from Zuora"}, "doc.yoda.analytics___platform__organization_country_organization_key": {"name": "analytics___platform__organization_country_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "unique_id": "doc.yoda.analytics___platform__organization_country_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__organization_country_sf_country_name": {"name": "analytics___platform__organization_country_sf_country_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "unique_id": "doc.yoda.analytics___platform__organization_country_sf_country_name", "block_contents": "The country name from SF. NULL if no country was found in SF for this organization."}, "doc.yoda.analytics___platform__organization_country_sms_country_name": {"name": "analytics___platform__organization_country_sms_country_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "unique_id": "doc.yoda.analytics___platform__organization_country_sms_country_name", "block_contents": "The country name from SMS. NULL if no country was found in SMS for this organization."}, "doc.yoda.analytics___platform__organization_country_zuora_country_name": {"name": "analytics___platform__organization_country_zuora_country_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_country/analytics___platform__organization_country.md", "unique_id": "doc.yoda.analytics___platform__organization_country_zuora_country_name", "block_contents": "The country name from Zuora. NULL if no country was found in Zuora for this organization."}, "doc.yoda.analytics___platform__organization_industry": {"name": "analytics___platform__organization_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.md", "unique_id": "doc.yoda.analytics___platform__organization_industry", "block_contents": "PK [organization_key]\n\nThis table calculate the industry of each organization.\n\nEach organization can have multiple stores and each store can have only one industry.\n\nWe define the organization's industry as the industry that occur the most among the organization's stores.\n\nIn case multiple industries have the exact same number of occurance, we choose the industry that occur the most in the entire population."}, "doc.yoda.analytics___platform__organization_industry_dwh_updated_at": {"name": "analytics___platform__organization_industry_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.md", "unique_id": "doc.yoda.analytics___platform__organization_industry_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_industry_industry": {"name": "analytics___platform__organization_industry_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.md", "unique_id": "doc.yoda.analytics___platform__organization_industry_industry", "block_contents": "Each organization can have multiple stores and each store can have only one industry.\n\nWe define the organization's industry as the industry that occur the most among the organization's stores.\n\nIn case multiple industries have the exact same number of occurance, we choose the industry that occur the most in the entire population."}, "doc.yoda.analytics___platform__organization_industry_organization_key": {"name": "analytics___platform__organization_industry_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_industry/analytics___platform__organization_industry.md", "unique_id": "doc.yoda.analytics___platform__organization_industry_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly": {"name": "analytics___platform__organization_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly", "block_contents": "Modeled table which holds organiztion indications + orders metrics montly"}, "doc.yoda.analytics___platform__organization_metrics_monthly_12m_ago_orders_cnt": {"name": "analytics___platform__organization_metrics_monthly_12m_ago_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_12m_ago_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_3m_ago_orders_cnt": {"name": "analytics___platform__organization_metrics_monthly_3m_ago_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_3m_ago_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_avg_orders_amount_in_usd_l3m": {"name": "analytics___platform__organization_metrics_monthly_avg_orders_amount_in_usd_l3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_avg_orders_amount_in_usd_l3m", "block_contents": "Organization Avarage for the last 3 months orders GMV"}, "doc.yoda.analytics___platform__organization_metrics_monthly_avg_orders_cnt_l12m": {"name": "analytics___platform__organization_metrics_monthly_avg_orders_cnt_l12m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_avg_orders_cnt_l12m", "block_contents": "Organization Avarage for the last 12 months orders count"}, "doc.yoda.analytics___platform__organization_metrics_monthly_avg_orders_cnt_l3m": {"name": "analytics___platform__organization_metrics_monthly_avg_orders_cnt_l3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_avg_orders_cnt_l3m", "block_contents": "Organization Avarage for the last 3 months orders count"}, "doc.yoda.analytics___platform__organization_metrics_monthly_dwh_updated_at": {"name": "analytics___platform__organization_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_first_created_platform": {"name": "analytics___platform__organization_metrics_monthly_first_created_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_first_created_platform", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_last_12m_orders_avg_bucket": {"name": "analytics___platform__organization_metrics_monthly_last_12m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_last_12m_orders_avg_bucket", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_last_12m_orders_cnt_avg": {"name": "analytics___platform__organization_metrics_monthly_last_12m_orders_cnt_avg", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_last_12m_orders_cnt_avg", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_last_3m_orders_amount_in_usd_avg": {"name": "analytics___platform__organization_metrics_monthly_last_3m_orders_amount_in_usd_avg", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_last_3m_orders_amount_in_usd_avg", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_last_3m_orders_avg_bucket": {"name": "analytics___platform__organization_metrics_monthly_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_last_3m_orders_avg_bucket", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_last_3m_orders_cnt_avg": {"name": "analytics___platform__organization_metrics_monthly_last_3m_orders_cnt_avg", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_last_3m_orders_cnt_avg", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_last_month_orders_cnt": {"name": "analytics___platform__organization_metrics_monthly_last_month_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_last_month_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_month": {"name": "analytics___platform__organization_metrics_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_month", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_orders_amount_in_usd_sum": {"name": "analytics___platform__organization_metrics_monthly_orders_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_orders_amount_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_orders_aov": {"name": "analytics___platform__organization_metrics_monthly_orders_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_orders_aov", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_orders_bucket": {"name": "analytics___platform__organization_metrics_monthly_orders_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_orders_bucket", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_orders_cnt": {"name": "analytics___platform__organization_metrics_monthly_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_organization_id": {"name": "analytics___platform__organization_metrics_monthly_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_organization_key": {"name": "analytics___platform__organization_metrics_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_organization_monthly_id": {"name": "analytics___platform__organization_metrics_monthly_organization_monthly_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_organization_monthly_id", "block_contents": "month_org_key unique key (for sf use)"}, "doc.yoda.analytics___platform__organization_metrics_monthly_parent_organization_id": {"name": "analytics___platform__organization_metrics_monthly_parent_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_parent_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_parent_organization_key": {"name": "analytics___platform__organization_metrics_monthly_parent_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_parent_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__organization_metrics_monthly_primary_platform_by_orders": {"name": "analytics___platform__organization_metrics_monthly_primary_platform_by_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_metrics_monthly/analytics___platform__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_metrics_monthly_primary_platform_by_orders", "block_contents": ""}, "doc.yoda.analytics___platform__organization_name": {"name": "analytics___platform__organization_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.md", "unique_id": "doc.yoda.analytics___platform__organization_name", "block_contents": "Name of each organiozation. PK: [organization_key/organization_id]\n\nSalesforce account name if available, if not, organization name from yotpoapiprod.organizations"}, "doc.yoda.analytics___platform__organization_name_dwh_updated_at": {"name": "analytics___platform__organization_name_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.md", "unique_id": "doc.yoda.analytics___platform__organization_name_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_name_organization_id": {"name": "analytics___platform__organization_name_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.md", "unique_id": "doc.yoda.analytics___platform__organization_name_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform__organization_name_organization_key": {"name": "analytics___platform__organization_name_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.md", "unique_id": "doc.yoda.analytics___platform__organization_name_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__organization_name_organization_name": {"name": "analytics___platform__organization_name_organization_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_name/analytics___platform__organization_name.md", "unique_id": "doc.yoda.analytics___platform__organization_name_organization_name", "block_contents": "Salesforce account name if available, if not, organization name from yotpoapiprod.organizations"}, "doc.yoda.analytics___platform__organization_opportunity_monthly": {"name": "analytics___platform__organization_opportunity_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_opportunity_monthly", "block_contents": "Modeled Table of opportunity monthly time range based of over_time calculation (for ht_self_service opportunities).\nOpportunity will have month value if start or end date was in month.\nGranularity: month | opportunity_id"}, "doc.yoda.analytics___platform__organization_opportunity_monthly_dwh_updated_at": {"name": "analytics___platform__organization_opportunity_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_opportunity_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_opportunity_monthly_is_ht_self_service": {"name": "analytics___platform__organization_opportunity_monthly_is_ht_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_opportunity_monthly_is_ht_self_service", "block_contents": "opportuinty also called ht_motion.\nself service with AE assitence."}, "doc.yoda.analytics___platform__organization_opportunity_monthly_month": {"name": "analytics___platform__organization_opportunity_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_opportunity_monthly_month", "block_contents": ""}, "doc.yoda.analytics___platform__organization_opportunity_monthly_opportunity_end_month": {"name": "analytics___platform__organization_opportunity_monthly_opportunity_end_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_opportunity_monthly_opportunity_end_month", "block_contents": "opportunity end month"}, "doc.yoda.analytics___platform__organization_opportunity_monthly_opportunity_id": {"name": "analytics___platform__organization_opportunity_monthly_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_opportunity_monthly_opportunity_id", "block_contents": "PK: salesforce__opportunity"}, "doc.yoda.analytics___platform__organization_opportunity_monthly_opportunity_start_month": {"name": "analytics___platform__organization_opportunity_monthly_opportunity_start_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_opportunity_monthly_opportunity_start_month", "block_contents": "opportunity start month"}, "doc.yoda.analytics___platform__organization_opportunity_monthly_organization_key": {"name": "analytics___platform__organization_opportunity_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_opportunity_monthly_organization_key", "block_contents": "PK: platform__organization"}, "doc.yoda.analytics___platform__organization_opportunity_monthly_row_rank_for_organization_and_month": {"name": "analytics___platform__organization_opportunity_monthly_row_rank_for_organization_and_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_opportunity_monthly_row_rank_for_organization_and_month", "block_contents": "rank opportunities for organization by latests in month"}, "doc.yoda.analytics___platform__organization_opportunity_monthly_sales_segment_group": {"name": "analytics___platform__organization_opportunity_monthly_sales_segment_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_opportunity_monthly/analytics___platform__organization_opportunity_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_opportunity_monthly_sales_segment_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform__organization_plan_daily": {"name": "analytics___platform__organization_plan_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily", "block_contents": "Daily aggregated table for organization product plan daily.\nGranularity: date|organization_key|product_family"}, "doc.yoda.analytics___platform__organization_plan_daily_app_key_array": {"name": "analytics___platform__organization_plan_daily_app_key_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_app_key_array", "block_contents": "Array of the app keys under the organization (app keys with plan)"}, "doc.yoda.analytics___platform__organization_plan_daily_date": {"name": "analytics___platform__organization_plan_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_date", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_daily_dwh_updated_at": {"name": "analytics___platform__organization_plan_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_daily_is_email": {"name": "analytics___platform__organization_plan_daily_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_is_email", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_daily_is_free": {"name": "analytics___platform__organization_plan_daily_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_is_free", "block_contents": "Indicates if the plan is a free plan or not"}, "doc.yoda.analytics___platform__organization_plan_daily_is_full_service": {"name": "analytics___platform__organization_plan_daily_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_is_full_service", "block_contents": "Indicates if the plan is a full service plan or not (also known as is_annual but since we also have self service plans with option to pay annualy, we changed the terminology)"}, "doc.yoda.analytics___platform__organization_plan_daily_is_loyalty": {"name": "analytics___platform__organization_plan_daily_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_daily_is_reviews": {"name": "analytics___platform__organization_plan_daily_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_is_reviews", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_daily_is_self_service": {"name": "analytics___platform__organization_plan_daily_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_is_self_service", "block_contents": "Indicates if the plan is a self service plan or not"}, "doc.yoda.analytics___platform__organization_plan_daily_is_sms": {"name": "analytics___platform__organization_plan_daily_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_is_sms", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_daily_is_subscriptions": {"name": "analytics___platform__organization_plan_daily_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_daily_is_vms": {"name": "analytics___platform__organization_plan_daily_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_is_vms", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_daily_loyalty_plan_id": {"name": "analytics___platform__organization_plan_daily_loyalty_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_loyalty_plan_id", "block_contents": "FK: plan_id in loyalty_stg__plans"}, "doc.yoda.analytics___platform__organization_plan_daily_organization_key": {"name": "analytics___platform__organization_plan_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_daily_plan_id": {"name": "analytics___platform__organization_plan_daily_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_plan_id", "block_contents": "plan_id based on priority logic"}, "doc.yoda.analytics___platform__organization_plan_daily_plan_name": {"name": "analytics___platform__organization_plan_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_plan_name", "block_contents": "plan_name based on priority logic"}, "doc.yoda.analytics___platform__organization_plan_daily_plan_name_array": {"name": "analytics___platform__organization_plan_daily_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_plan_name_array", "block_contents": "Array of all the plans of the stores under the organization"}, "doc.yoda.analytics___platform__organization_plan_daily_plan_name_cnt": {"name": "analytics___platform__organization_plan_daily_plan_name_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_plan_name_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform__organization_plan_daily_product_family": {"name": "analytics___platform__organization_plan_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_product_family", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_daily_sms_plan_id": {"name": "analytics___platform__organization_plan_daily_sms_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_daily/analytics___platform__organization_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_daily_sms_plan_id", "block_contents": "FK: plan_id in analytics___sms_stg__plan"}, "doc.yoda.analytics___platform__organization_plan_monthly": {"name": "analytics___platform__organization_plan_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly", "block_contents": "Monthly aggregated table for organization product plan daily.\nGranularity: month|organization_key|product_family\n\nThe table shows:\n 1. closing plan - the plan on the last day of the month or the plan today for current month\n 2. opening plan - the plan on the last day of the previous month"}, "doc.yoda.analytics___platform__organization_plan_monthly_app_key_array": {"name": "analytics___platform__organization_plan_monthly_app_key_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_app_key_array", "block_contents": "Array of the app keys under the organization (app keys with plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_closing_is_free": {"name": "analytics___platform__organization_plan_monthly_closing_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_closing_is_free", "block_contents": "Indicates if the closing plan is a free plan or not"}, "doc.yoda.analytics___platform__organization_plan_monthly_closing_is_full_service": {"name": "analytics___platform__organization_plan_monthly_closing_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_closing_is_full_service", "block_contents": "Indicates if the closing plan is a full service plan or not (also known as is_annual but since we also have self service plans with option to pay annualy, we changed the terminology)"}, "doc.yoda.analytics___platform__organization_plan_monthly_closing_is_self_service": {"name": "analytics___platform__organization_plan_monthly_closing_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_closing_is_self_service", "block_contents": "Indicates if the closing plan is a self service plan or not"}, "doc.yoda.analytics___platform__organization_plan_monthly_closing_loyalty_plan_id": {"name": "analytics___platform__organization_plan_monthly_closing_loyalty_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_closing_loyalty_plan_id", "block_contents": "FK: plan_id in loyalty_stg__plans (relate to the closing plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_closing_plan_group": {"name": "analytics___platform__organization_plan_monthly_closing_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_closing_plan_group", "block_contents": "closing plan tier (for example, Reviews \"prime 100\" and \"prime 200\" will both get \"prime\")"}, "doc.yoda.analytics___platform__organization_plan_monthly_closing_plan_id": {"name": "analytics___platform__organization_plan_monthly_closing_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_closing_plan_id", "block_contents": "plan_id based on priority logic (relate to the closing plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_closing_plan_name": {"name": "analytics___platform__organization_plan_monthly_closing_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_closing_plan_name", "block_contents": "plan_name based on priority logic (relate to the closing plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_closing_plan_name_array": {"name": "analytics___platform__organization_plan_monthly_closing_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_closing_plan_name_array", "block_contents": "Array of all the plans of the stores under the organization (relate to the closing plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_closing_plan_name_cnt": {"name": "analytics___platform__organization_plan_monthly_closing_plan_name_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_closing_plan_name_cnt", "block_contents": "Count of all the plans of the stores under the organization (relate to the closing plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_closing_product_plan_rank": {"name": "analytics___platform__organization_plan_monthly_closing_product_plan_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_closing_product_plan_rank", "block_contents": "The rank of the closing plan from analytics___platform_stg__product_plan_name_rank\nIt gives an indication if the plan is higher or lower than other plans in the product."}, "doc.yoda.analytics___platform__organization_plan_monthly_closing_sms_plan_id": {"name": "analytics___platform__organization_plan_monthly_closing_sms_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_closing_sms_plan_id", "block_contents": "FK: plan_id in analytics___sms_stg__plan (relate to the closing plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_dwh_updated_at": {"name": "analytics___platform__organization_plan_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_monthly_is_email": {"name": "analytics___platform__organization_plan_monthly_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_is_email", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_monthly_is_loyalty": {"name": "analytics___platform__organization_plan_monthly_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_monthly_is_reviews": {"name": "analytics___platform__organization_plan_monthly_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_is_reviews", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_monthly_is_sms": {"name": "analytics___platform__organization_plan_monthly_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_is_sms", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_monthly_is_subscriptions": {"name": "analytics___platform__organization_plan_monthly_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_monthly_is_vms": {"name": "analytics___platform__organization_plan_monthly_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_is_vms", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_monthly_month": {"name": "analytics___platform__organization_plan_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_month", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_monthly_opening_is_free": {"name": "analytics___platform__organization_plan_monthly_opening_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_opening_is_free", "block_contents": "Indicates if the opening plan is a free plan or not"}, "doc.yoda.analytics___platform__organization_plan_monthly_opening_is_full_service": {"name": "analytics___platform__organization_plan_monthly_opening_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_opening_is_full_service", "block_contents": "Indicates if the opening plan is a full service plan or not (also known as is_annual but since we also have self service plans with option to pay annualy, we changed the terminology)"}, "doc.yoda.analytics___platform__organization_plan_monthly_opening_is_self_service": {"name": "analytics___platform__organization_plan_monthly_opening_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_opening_is_self_service", "block_contents": "Indicates if the opening plan is a self service plan or not"}, "doc.yoda.analytics___platform__organization_plan_monthly_opening_loyalty_plan_id": {"name": "analytics___platform__organization_plan_monthly_opening_loyalty_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_opening_loyalty_plan_id", "block_contents": "FK: plan_id in loyalty_stg__plans (relate to the opening plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_opening_plan_group": {"name": "analytics___platform__organization_plan_monthly_opening_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_opening_plan_group", "block_contents": "opening plan tier (for example, Reviews \"prime 100\" and \"prime 200\" will both get \"prime\")"}, "doc.yoda.analytics___platform__organization_plan_monthly_opening_plan_id": {"name": "analytics___platform__organization_plan_monthly_opening_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_opening_plan_id", "block_contents": "plan_id based on priority logic (relate to the opening plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_opening_plan_name": {"name": "analytics___platform__organization_plan_monthly_opening_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_opening_plan_name", "block_contents": "plan_name based on priority logic (relate to the opening plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_opening_plan_name_array": {"name": "analytics___platform__organization_plan_monthly_opening_plan_name_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_opening_plan_name_array", "block_contents": "Array of all the plans of the stores under the organization (relate to the opening plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_opening_plan_name_cnt": {"name": "analytics___platform__organization_plan_monthly_opening_plan_name_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_opening_plan_name_cnt", "block_contents": "Count of all the plans of the stores under the organization (relate to the opening plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_opening_product_plan_rank": {"name": "analytics___platform__organization_plan_monthly_opening_product_plan_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_opening_product_plan_rank", "block_contents": "The rank of the opening plan from analytics___platform_stg__product_plan_name_rank\nIt gives an indication if the plan is higher or lower than other plans in the product."}, "doc.yoda.analytics___platform__organization_plan_monthly_opening_sms_plan_id": {"name": "analytics___platform__organization_plan_monthly_opening_sms_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_opening_sms_plan_id", "block_contents": "FK: plan_id in analytics___sms_stg__plan (relate to the opening plan)"}, "doc.yoda.analytics___platform__organization_plan_monthly_organization_key": {"name": "analytics___platform__organization_plan_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__organization_plan_monthly_plan_change_type": {"name": "analytics___platform__organization_plan_monthly_plan_change_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_plan_change_type", "block_contents": "The type of plan change, for example, if:\n 1. opening plan = Reviews free\n 2. closing plan = Reviews Growth 100\n Then the type will be \"upgrade - free to paying\""}, "doc.yoda.analytics___platform__organization_plan_monthly_product_family": {"name": "analytics___platform__organization_plan_monthly_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_plan_monthly/analytics___platform__organization_plan_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_plan_monthly_product_family", "block_contents": ""}, "doc.yoda.analytics___platform__organization_platform": {"name": "analytics___platform__organization_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.md", "unique_id": "doc.yoda.analytics___platform__organization_platform", "block_contents": "PK [organization_key]\n\nThis table calculate the platform of each organization.\n\nEach organization can have multiple stores and each store can have only one platform.\n\nWe define the organization's platform as the platform that occur the most among the organization's stores.\n\nIn case multiple platforms have the exact same number of occurance, we choose the platform that occur the most in the entire population."}, "doc.yoda.analytics___platform__organization_platform_dwh_updated_at": {"name": "analytics___platform__organization_platform_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.md", "unique_id": "doc.yoda.analytics___platform__organization_platform_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_platform_is_shopify": {"name": "analytics___platform__organization_platform_is_shopify", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.md", "unique_id": "doc.yoda.analytics___platform__organization_platform_is_shopify", "block_contents": "Indicates if the organization platform is Shopify or not."}, "doc.yoda.analytics___platform__organization_platform_organization_key": {"name": "analytics___platform__organization_platform_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.md", "unique_id": "doc.yoda.analytics___platform__organization_platform_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__organization_platform_platform_name": {"name": "analytics___platform__organization_platform_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_platform/analytics___platform__organization_platform.md", "unique_id": "doc.yoda.analytics___platform__organization_platform_platform_name", "block_contents": "Each organization can have multiple stores and each store can have only one platform.\n\nWe define the organization's platform as the platform that occur the most among the organization's stores.\n\nIn case multiple platforms have the exact same number of occurance, we choose the platform that occur the most in the entire population."}, "doc.yoda.analytics___platform__organization_product_activeness_monthly": {"name": "analytics___platform__organization_product_activeness_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_activeness_monthly", "block_contents": "PK [month, organization_key, product_family_group] OR [organization_product_month_id]\n\nThis table contain indications about product activeness tiers.\nCurrently for only:\n 1.UGC\n 2.Loyalty\n 3.SMS"}, "doc.yoda.analytics___platform__organization_product_activeness_monthly_dwh_updated_at": {"name": "analytics___platform__organization_product_activeness_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_activeness_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_activeness_monthly_is_active_tier_1": {"name": "analytics___platform__organization_product_activeness_monthly_is_active_tier_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_activeness_monthly_is_active_tier_1", "block_contents": "tier 1 product activeness indicator (0/1). \na product is active tier 1 if:\n 1. UGC: review_request_sent_cnt >= 3 AND order_cnt > 0\n 2. Loyalty: is_program_live = 1\n 3. SMS: is_program_live = 1"}, "doc.yoda.analytics___platform__organization_product_activeness_monthly_is_active_tier_2": {"name": "analytics___platform__organization_product_activeness_monthly_is_active_tier_2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_activeness_monthly_is_active_tier_2", "block_contents": "tier 2 product activeness indicator (0/1). \na product is active tier 2 if:\n 1. UGC: is_ugc_active_tier_1 = 1 AND is_map_enabled = 1\n 2. Loyalty: any widget was seen by 3 unique shoppers\n 3. SMS: TBD (currently NULL)"}, "doc.yoda.analytics___platform__organization_product_activeness_monthly_is_active_tier_3": {"name": "analytics___platform__organization_product_activeness_monthly_is_active_tier_3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_activeness_monthly_is_active_tier_3", "block_contents": "tier 3 product activeness indicator (0/1). \na product is active tier 3 if:\n 1. UGC: is_ugc_active_tier_2 = 1 AND is_reviews_widget_loaded = 1\n 2. Loyalty: 4 unique point redeemers\n 3. SMS: TBD (currently NULL)"}, "doc.yoda.analytics___platform__organization_product_activeness_monthly_is_active_tier_4": {"name": "analytics___platform__organization_product_activeness_monthly_is_active_tier_4", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_activeness_monthly_is_active_tier_4", "block_contents": "tier 3 product activeness indicator (0/1). \na product is active tier 3 if:\n 1. UGC: is_ugc_active_tier_3 = 1 AND review_cnt > 0\n 2. Loyalty: TBD (currently NULL)\n 3. SMS: TBD (currently NULL)"}, "doc.yoda.analytics___platform__organization_product_activeness_monthly_month": {"name": "analytics___platform__organization_product_activeness_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_activeness_monthly_month", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_activeness_monthly_organization_key": {"name": "analytics___platform__organization_product_activeness_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_activeness_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_activeness_monthly_organization_product_month_id": {"name": "analytics___platform__organization_product_activeness_monthly_organization_product_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_activeness_monthly_organization_product_month_id", "block_contents": "ID of the combination: [month, organization_key, product_family_group]"}, "doc.yoda.analytics___platform__organization_product_activeness_monthly_product_family_group": {"name": "analytics___platform__organization_product_activeness_monthly_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_activeness_monthly/analytics___platform__organization_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_activeness_monthly_product_family_group", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_metrics_monthly": {"name": "analytics___platform__organization_product_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly", "block_contents": "A modeled of view of orgniazation product metrics profile, PK & Granularity: organization_key, metric_month"}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_loyalty_last_3m_participation_rate": {"name": "analytics___platform__organization_product_metrics_monthly_loyalty_last_3m_participation_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_loyalty_last_3m_participation_rate", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_loyalty_last_3m_purchasers_cnt": {"name": "analytics___platform__organization_product_metrics_monthly_loyalty_last_3m_purchasers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_loyalty_last_3m_purchasers_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_loyalty_last_3m_redeemers_cnt": {"name": "analytics___platform__organization_product_metrics_monthly_loyalty_last_3m_redeemers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_loyalty_last_3m_redeemers_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_metric_month": {"name": "analytics___platform__organization_product_metrics_monthly_metric_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_metric_month", "block_contents": "PK 2/2"}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_organization_key": {"name": "analytics___platform__organization_product_metrics_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly/analytics___platform__organization_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_organization_key", "block_contents": "PK 1/2"}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot", "block_contents": "A modeled view of organization product metrics as rows in a structure made for injection to external systems.|\nThis model takes the metrics of the last month from the monthly product metrics.|\nPK & Granularity: External_ID_c"}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_App_Key_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_App_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_App_Key_c", "block_contents": "Always NULL on this model"}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Enabled_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_Enabled_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Enabled_c", "block_contents": "Holds value for boolean metrics."}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_External_ID_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_External_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_External_ID_c", "block_contents": "PK"}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Free_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_Free_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Free_c", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_From_Date_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_From_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_From_Date_c", "block_contents": "Active date for the metric."}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Metric_Value_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_Metric_Value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Metric_Value_c", "block_contents": "Holds value for string metrics."}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Name": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Name", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Organization_Key_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_Organization_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Organization_Key_c", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Product_Lines_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_Product_Lines_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Product_Lines_c", "block_contents": "Products related to the metirc in line, in case of few products they will should be sperated with semicolon."}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Product_Metrics_Name_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_Product_Metrics_Name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Product_Metrics_Name_c", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Quantity_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_Quantity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Quantity_c", "block_contents": "Holds value for quantitive metrics."}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Self_Service_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_Self_Service_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_Self_Service_c", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_To_Date_c": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_To_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_To_Date_c", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_value": {"name": "analytics___platform__organization_product_metrics_monthly_unpivot_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_metrics_monthly_unpivot/analytics___platform__organization_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__organization_product_metrics_monthly_unpivot_value", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_daily": {"name": "analytics___platform__organization_product_segment_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily", "block_contents": "Table containing segment KPIs per organization product on a daily basis.\nGranularity: date|organization_key|product_family"}, "doc.yoda.analytics___platform__organization_product_segment_daily_date": {"name": "analytics___platform__organization_product_segment_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_date", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_daily_dwh_updated_at": {"name": "analytics___platform__organization_product_segment_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_daily_first_product_date": {"name": "analytics___platform__organization_product_segment_daily_first_product_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_first_product_date", "block_contents": "first recorded organization's product date in platform_organization_plan_daily"}, "doc.yoda.analytics___platform__organization_product_segment_daily_ht_self_service_opportunity_id": {"name": "analytics___platform__organization_product_segment_daily_ht_self_service_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_ht_self_service_opportunity_id", "block_contents": "FK: analytics___platform__opportunity_ht_ss_over_time opportunity_id"}, "doc.yoda.analytics___platform__organization_product_segment_daily_is_customer_care": {"name": "analytics___platform__organization_product_segment_daily_is_customer_care", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_is_customer_care", "block_contents": "Indicator = 1 if date after onboarding customer care call and date before churn event"}, "doc.yoda.analytics___platform__organization_product_segment_daily_is_email": {"name": "analytics___platform__organization_product_segment_daily_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_is_email", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_daily_is_free": {"name": "analytics___platform__organization_product_segment_daily_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_is_free", "block_contents": "closing plan is_free"}, "doc.yoda.analytics___platform__organization_product_segment_daily_is_full_service": {"name": "analytics___platform__organization_product_segment_daily_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_is_full_service", "block_contents": "closing plan is_full_service"}, "doc.yoda.analytics___platform__organization_product_segment_daily_is_ht_self_service": {"name": "analytics___platform__organization_product_segment_daily_is_ht_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_is_ht_self_service", "block_contents": "indicator = 1 if organization product's opportunity is_ht_self_service"}, "doc.yoda.analytics___platform__organization_product_segment_daily_is_loyalty": {"name": "analytics___platform__organization_product_segment_daily_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_daily_is_reviews": {"name": "analytics___platform__organization_product_segment_daily_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_is_reviews", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_daily_is_self_service": {"name": "analytics___platform__organization_product_segment_daily_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_is_self_service", "block_contents": "closing plan is_self_service"}, "doc.yoda.analytics___platform__organization_product_segment_daily_is_sms": {"name": "analytics___platform__organization_product_segment_daily_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_is_sms", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_daily_is_subscriptions": {"name": "analytics___platform__organization_product_segment_daily_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_daily_is_vms": {"name": "analytics___platform__organization_product_segment_daily_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_is_vms", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_daily_organization_key": {"name": "analytics___platform__organization_product_segment_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_organization_key", "block_contents": "FK: analytics___platform__organization"}, "doc.yoda.analytics___platform__organization_product_segment_daily_plan_id": {"name": "analytics___platform__organization_product_segment_daily_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_plan_id", "block_contents": "FK: analytics___platform__plan closing plan_id"}, "doc.yoda.analytics___platform__organization_product_segment_daily_plan_name": {"name": "analytics___platform__organization_product_segment_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_plan_name", "block_contents": "closing plan_name"}, "doc.yoda.analytics___platform__organization_product_segment_daily_product_family": {"name": "analytics___platform__organization_product_segment_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_daily/analytics___platform__organization_product_segment_daily.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_daily_product_family", "block_contents": "Reviews | Email | SMS ext.."}, "doc.yoda.analytics___platform__organization_product_segment_monthly": {"name": "analytics___platform__organization_product_segment_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly", "block_contents": "Table containing segment KPIs per organization product on a monthly basis.\nGranularity: [month|organization_key|product_family] OR [organization_product_month_id]"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_dwh_updated_at": {"name": "analytics___platform__organization_product_segment_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_monthly_first_product_date": {"name": "analytics___platform__organization_product_segment_monthly_first_product_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_first_product_date", "block_contents": "first recorded organization's product date in platform_organization_plan_daily"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_ht_self_service_opportunity_id": {"name": "analytics___platform__organization_product_segment_monthly_ht_self_service_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_ht_self_service_opportunity_id", "block_contents": "The original HT-SS deal opportunity. Only relevant if is_ht_self_service = 1"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_is_annual_billing": {"name": "analytics___platform__organization_product_segment_monthly_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_is_annual_billing", "block_contents": "Indicates if the product has annual billing or not.\n\nbased on indication from analytics___finance__organization_product_revenue_monthly"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_is_email": {"name": "analytics___platform__organization_product_segment_monthly_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_is_email", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_monthly_is_free": {"name": "analytics___platform__organization_product_segment_monthly_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_is_free", "block_contents": "Indicates if the product is free or not.\n 1.First based on indication from analytics___finance__organization_product_revenue_monthly\n 2.If #1 did not found, it's based on analytics___platform__organization_plan_monthly"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_is_full_service": {"name": "analytics___platform__organization_product_segment_monthly_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_is_full_service", "block_contents": "Indicates if the product is full service or not.\n 1.First based on indication from analytics___finance__organization_product_revenue_monthly\n 2.If #1 did not found, it's based on analytics___platform__organization_plan_monthly"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_is_ht_self_service": {"name": "analytics___platform__organization_product_segment_monthly_is_ht_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_is_ht_self_service", "block_contents": "indicator = 1 if the product was originated in HT flow (self service plan that was sold by sales person)"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_is_loyalty": {"name": "analytics___platform__organization_product_segment_monthly_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_monthly_is_reviews": {"name": "analytics___platform__organization_product_segment_monthly_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_is_reviews", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_monthly_is_self_service": {"name": "analytics___platform__organization_product_segment_monthly_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_is_self_service", "block_contents": "Indicates if the product is self service or not.\n 1.First based on indication from analytics___finance__organization_product_revenue_monthly\n 2.If #1 did not found, it's based on analytics___platform__organization_plan_monthly"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_is_sms": {"name": "analytics___platform__organization_product_segment_monthly_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_is_sms", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_monthly_is_subscriptions": {"name": "analytics___platform__organization_product_segment_monthly_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_monthly_is_ugc": {"name": "analytics___platform__organization_product_segment_monthly_is_ugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_is_ugc", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_monthly_month": {"name": "analytics___platform__organization_product_segment_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_month", "block_contents": "aggregation month"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_months_number_since_first_paid_month": {"name": "analytics___platform__organization_product_segment_monthly_months_number_since_first_paid_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_months_number_since_first_paid_month", "block_contents": "number of months since the organization's first paid month for the specific product. (first paid month = 0)"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_opening_is_ht_self_service": {"name": "analytics___platform__organization_product_segment_monthly_opening_is_ht_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_opening_is_ht_self_service", "block_contents": "Previous month state. indicator = 1 if the product was originated in HT flow (self service plan that was sold by sales person)"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_organization_key": {"name": "analytics___platform__organization_product_segment_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__organization_product_segment_monthly_organization_product_month_id": {"name": "analytics___platform__organization_product_segment_monthly_organization_product_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_organization_product_month_id", "block_contents": "ID of the combination: [month, organization_key, product_family_group]"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_plan_group": {"name": "analytics___platform__organization_product_segment_monthly_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_plan_group", "block_contents": "The group of the plan at the end of the month.\n\nFor example, the group of both \"Reviews Growth 50\" and \"Reviews Growth 100\" is \"Growth\". based on:\n 1.First based on plan_group from analytics___finance__organization_product_revenue_monthly\n 2.If #1 did not found, it's based on analytics___platform__organization_plan_monthly"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_plan_name": {"name": "analytics___platform__organization_product_segment_monthly_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_plan_name", "block_contents": "The plan at the end of the month:\n 1.First based on plan_group from analytics___finance__organization_product_revenue_monthly\n 2.If #1 did not found, it's based on analytics___platform__organization_plan_monthly"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_product_family_group": {"name": "analytics___platform__organization_product_segment_monthly_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_product_family_group", "block_contents": "Contains 5 distinct values:\n 1. UGC (Including Reviews, VMS, Insights)\n 2. Loyalty\n 3. SMS\n 4. Email\n 5. Subscriptions"}, "doc.yoda.analytics___platform__organization_product_segment_monthly_yearly_tenure": {"name": "analytics___platform__organization_product_segment_monthly_yearly_tenure", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_product_segment_monthly/analytics___platform__organization_product_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_product_segment_monthly_yearly_tenure", "block_contents": "Yearly tenure, based on the number of months past since first paid month.\nContains 3 distinct values:\n 1. 0-1\n 2. 1-2\n 3. 2+"}, "doc.yoda.analytics___platform__organization_segment_monthly": {"name": "analytics___platform__organization_segment_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly", "block_contents": "Table containing segment KPIs per organization on a monthly basis.\nGranularity: [month|organization_key] OR [organization_month_id]"}, "doc.yoda.analytics___platform__organization_segment_monthly_active_tier_1_product_cnt": {"name": "analytics___platform__organization_segment_monthly_active_tier_1_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_active_tier_1_product_cnt", "block_contents": "number of products that are active_tier_1 (review + vms count as 1 product)"}, "doc.yoda.analytics___platform__organization_segment_monthly_active_tier_2_product_cnt": {"name": "analytics___platform__organization_segment_monthly_active_tier_2_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_active_tier_2_product_cnt", "block_contents": "number of products that are active_tier_2 (review + vms count as 1 product)"}, "doc.yoda.analytics___platform__organization_segment_monthly_active_tier_3_product_cnt": {"name": "analytics___platform__organization_segment_monthly_active_tier_3_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_active_tier_3_product_cnt", "block_contents": "number of products that are active_tier_3 (review + vms count as 1 product)"}, "doc.yoda.analytics___platform__organization_segment_monthly_active_tier_4_product_cnt": {"name": "analytics___platform__organization_segment_monthly_active_tier_4_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_active_tier_4_product_cnt", "block_contents": "number of products that are active_tier_4 (review + vms count as 1 product)"}, "doc.yoda.analytics___platform__organization_segment_monthly_arr_bucket": {"name": "analytics___platform__organization_segment_monthly_arr_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_arr_bucket", "block_contents": "Buckets based on monthly ARR (MRR*12). Contains 6 distinct values:\n 1. 0\n 2. 1-5k\n 3. 5k-10k\n 4. 10k-20k\n 5. 20k-50k\n 6. 50k+"}, "doc.yoda.analytics___platform__organization_segment_monthly_dwh_updated_at": {"name": "analytics___platform__organization_segment_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__organization_segment_monthly_first_ht_opportunity_id": {"name": "analytics___platform__organization_segment_monthly_first_ht_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_first_ht_opportunity_id", "block_contents": "The opportunity_id of the organization's first won HT opportunity"}, "doc.yoda.analytics___platform__organization_segment_monthly_gmv_bucket": {"name": "analytics___platform__organization_segment_monthly_gmv_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_gmv_bucket", "block_contents": "Buckets based on (last 12 months GMV avg) * 12. Contains 5 distinct values:\n 1. 0\n 2. 1-100K\n 3. 100K-20M\n 4. 20M-400M\n 5. 400M+"}, "doc.yoda.analytics___platform__organization_segment_monthly_ht_self_service_product_opportunity": {"name": "analytics___platform__organization_segment_monthly_ht_self_service_product_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_ht_self_service_product_opportunity", "block_contents": "Array of products and it's corresponding HT-SS opportunity id. Only relevant if is_ht_self_service = 1"}, "doc.yoda.analytics___platform__organization_segment_monthly_initial_sales_segment": {"name": "analytics___platform__organization_segment_monthly_initial_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_initial_sales_segment", "block_contents": "If organization is HT, the value will be the sales_segment of the first HT won opportunity.\nIf organization is LT, the value will be \"Self-Service\"\nIf organization is free/churned, the value will be \"Free\""}, "doc.yoda.analytics___platform__organization_segment_monthly_initial_sales_segment_group": {"name": "analytics___platform__organization_segment_monthly_initial_sales_segment_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_initial_sales_segment_group", "block_contents": "If organization is HT, the value will be the sales_segment_group of the first HT won opportunity.\nIf organization is LT, the value will be \"Self-Service\"\nIf organization is free/churned, the value will be \"Free\""}, "doc.yoda.analytics___platform__organization_segment_monthly_is_above_3k_orders": {"name": "analytics___platform__organization_segment_monthly_is_above_3k_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_is_above_3k_orders", "block_contents": "Based on last 12 months orders avg. indicates if the monthly orders avg is above 3k or not."}, "doc.yoda.analytics___platform__organization_segment_monthly_is_annual_billing": {"name": "analytics___platform__organization_segment_monthly_is_annual_billing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_is_annual_billing", "block_contents": "Indicates if at least one of the products has annual_billing at the end of the month.\n MAX(Product level is_annual_billing)"}, "doc.yoda.analytics___platform__organization_segment_monthly_is_free": {"name": "analytics___platform__organization_segment_monthly_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_is_free", "block_contents": "Indicates if at least one of the products is free at the end of the month (must not be full service org).\n IF(MAX(is_full_service) = 1,0,MAX(is_free))"}, "doc.yoda.analytics___platform__organization_segment_monthly_is_full_service": {"name": "analytics___platform__organization_segment_monthly_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_is_full_service", "block_contents": "Indicates if at least one of the products is full service at the end of the month.\n MAX(Product level is_full_service)"}, "doc.yoda.analytics___platform__organization_segment_monthly_is_ht_self_service": {"name": "analytics___platform__organization_segment_monthly_is_ht_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_is_ht_self_service", "block_contents": "Indicates if at least one of the products was originated in HT flow (self service plan that was sold by sales person).\n MAX(Product level is_ht_self_service)"}, "doc.yoda.analytics___platform__organization_segment_monthly_is_self_service": {"name": "analytics___platform__organization_segment_monthly_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_is_self_service", "block_contents": "Indicates if at least one of the products is self-service at the end of the month (must not be full service org).\n IF(MAX(is_full_service) = 1,0,MAX(is_self_service))"}, "doc.yoda.analytics___platform__organization_segment_monthly_last_12m_orders_avg_bucket": {"name": "analytics___platform__organization_segment_monthly_last_12m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_last_12m_orders_avg_bucket", "block_contents": "Buckets based on last 12 months orders avg. Contains 6 distinct values:\n 1. 0\n 2. 1-1K\n 3. 1K-3K\n 4. 3K-10K\n 5. 10K-20K\n 6. 20K+"}, "doc.yoda.analytics___platform__organization_segment_monthly_last_3m_orders_avg_bucket": {"name": "analytics___platform__organization_segment_monthly_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_last_3m_orders_avg_bucket", "block_contents": "Buckets based on last 3 months orders avg. Contains 6 distinct values:\n 1. 0\n 2. 1-1K\n 3. 1K-3K\n 4. 3K-10K\n 5. 10K-20K\n 6. 20K+"}, "doc.yoda.analytics___platform__organization_segment_monthly_month": {"name": "analytics___platform__organization_segment_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_month", "block_contents": ""}, "doc.yoda.analytics___platform__organization_segment_monthly_months_number_since_first_paid_month": {"name": "analytics___platform__organization_segment_monthly_months_number_since_first_paid_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_months_number_since_first_paid_month", "block_contents": "number of months since the organization's first paid month. (first paid month = 0)"}, "doc.yoda.analytics___platform__organization_segment_monthly_opportunity_sales_region": {"name": "analytics___platform__organization_segment_monthly_opportunity_sales_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_opportunity_sales_region", "block_contents": "sales_region according to month's active opportunity (in case more than 1 opportunity is active - the latest opportunity will determine the sales_region)"}, "doc.yoda.analytics___platform__organization_segment_monthly_order_sales_segment": {"name": "analytics___platform__organization_segment_monthly_order_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_order_sales_segment", "block_contents": "order_sales_segment according to month's active opportunity (in case more than 1 opportunity is active - the latest opportunity will determine the order_sales_segment)"}, "doc.yoda.analytics___platform__organization_segment_monthly_organization_key": {"name": "analytics___platform__organization_segment_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_organization_key", "block_contents": "PK: platform__organization"}, "doc.yoda.analytics___platform__organization_segment_monthly_organization_month_id": {"name": "analytics___platform__organization_segment_monthly_organization_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_organization_month_id", "block_contents": "ID of the combination: [month, organization_key]"}, "doc.yoda.analytics___platform__organization_segment_monthly_pro_rated_arr_bucket": {"name": "analytics___platform__organization_segment_monthly_pro_rated_arr_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_pro_rated_arr_bucket", "block_contents": "Buckets based on monthly pro-rated ARR (pro-rated MRR*12). Contains 6 distinct values:\n 1. 0\n 2. 1-5k\n 3. 5k-10k\n 4. 10k-20k\n 5. 20k-50k\n 6. 50k+"}, "doc.yoda.analytics___platform__organization_segment_monthly_sales_region": {"name": "analytics___platform__organization_segment_monthly_sales_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_sales_region", "block_contents": "sales_region according to month's active opportunity (in case more than 1 opportunity is active - the latest opportunity will determine the sales_region)"}, "doc.yoda.analytics___platform__organization_segment_monthly_sales_segment_group": {"name": "analytics___platform__organization_segment_monthly_sales_segment_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_sales_segment_group", "block_contents": "Grouping of order_sales_segment. Contains 6 distinct values:\n 1. VSB\n 2. SMB\n 3. MM"}, "doc.yoda.analytics___platform__organization_segment_monthly_sf_segment_opportunity": {"name": "analytics___platform__organization_segment_monthly_sf_segment_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_sf_segment_opportunity", "block_contents": "Opportunity related to the segments from SF opportunity (sales_segment,sales_region, etc...)"}, "doc.yoda.analytics___platform__organization_segment_monthly_single_multi_product": {"name": "analytics___platform__organization_segment_monthly_single_multi_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__organization_segment_monthly/analytics___platform__organization_segment_monthly.md", "unique_id": "doc.yoda.analytics___platform__organization_segment_monthly_single_multi_product", "block_contents": "Indicating the customer type based on it's number of paid products. Contains 3 distinct values:\n 1. Free (0 paid products)\n 2. Single (1 paid product)\n 3. Multi (2+ paid products)"}, "doc.yoda.analytics___platform__owner_plan_event": {"name": "analytics___platform__owner_plan_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.md", "unique_id": "doc.yoda.analytics___platform__owner_plan_event", "block_contents": "Table showing plan event history per owner and product.\nfiltering out product_family = Common from owner_plan snapshot and adding owner_plan_history to catch events marked is_deleted = 1,\nthese events mark the end of the owner_plan_id.\nPK: owner_plan_event_id"}, "doc.yoda.analytics___platform__owner_plan_event_is_core_plan": {"name": "analytics___platform__owner_plan_event_is_core_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.md", "unique_id": "doc.yoda.analytics___platform__owner_plan_event_is_core_plan", "block_contents": "indicator = 0 when product_family = Extensions or Common"}, "doc.yoda.analytics___platform__owner_plan_event_lead_updated_at": {"name": "analytics___platform__owner_plan_event_lead_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.md", "unique_id": "doc.yoda.analytics___platform__owner_plan_event_lead_updated_at", "block_contents": "the next event's updated date for owner_plan_id"}, "doc.yoda.analytics___platform__owner_plan_event_owner_plan_event_id": {"name": "analytics___platform__owner_plan_event_owner_plan_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.md", "unique_id": "doc.yoda.analytics___platform__owner_plan_event_owner_plan_event_id", "block_contents": "PK: unique table identifier - concat(owner_plan_id + version)"}, "doc.yoda.analytics___platform__owner_plan_event_product_family": {"name": "analytics___platform__owner_plan_event_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__owner_plan_event/analytics___platform__owner_plan_event.md", "unique_id": "doc.yoda.analytics___platform__owner_plan_event_product_family", "block_contents": "product name: Reviews,Loyalty etc."}, "doc.yoda.analytics___platform__plan": {"name": "analytics___platform__plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan", "block_contents": "Modeled table that hold all plans for yotpo's products"}, "doc.yoda.analytics___platform__plan_category_id": {"name": "analytics___platform__plan_category_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_category_id", "block_contents": "category id for each plan (usualy it's the product id: Reviews,Loyalty etc.)"}, "doc.yoda.analytics___platform__plan_category_name": {"name": "analytics___platform__plan_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_category_name", "block_contents": "category name for each plan (usualy it's the product name: Reviews,Loyalty etc.)"}, "doc.yoda.analytics___platform__plan_dwh_updated_at": {"name": "analytics___platform__plan_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__plan_full_tags": {"name": "analytics___platform__plan_full_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_full_tags", "block_contents": "full concat string of the product and it's tags. (for example: Reviews monthly, Reviews prime)"}, "doc.yoda.analytics___platform__plan_is_annual": {"name": "analytics___platform__plan_is_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_annual", "block_contents": "is the plan tagged as an annual plan"}, "doc.yoda.analytics___platform__plan_is_email": {"name": "analytics___platform__plan_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_email", "block_contents": "is email plan"}, "doc.yoda.analytics___platform__plan_is_email_annual": {"name": "analytics___platform__plan_is_email_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_email_annual", "block_contents": "is annual email plan"}, "doc.yoda.analytics___platform__plan_is_email_free": {"name": "analytics___platform__plan_is_email_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_email_free", "block_contents": "is free email plan"}, "doc.yoda.analytics___platform__plan_is_email_ss": {"name": "analytics___platform__plan_is_email_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_email_ss", "block_contents": "is self service email plan"}, "doc.yoda.analytics___platform__plan_is_free": {"name": "analytics___platform__plan_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_free", "block_contents": "is free plan"}, "doc.yoda.analytics___platform__plan_is_growth": {"name": "analytics___platform__plan_is_growth", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_growth", "block_contents": "is growth plan"}, "doc.yoda.analytics___platform__plan_is_legacy": {"name": "analytics___platform__plan_is_legacy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_legacy", "block_contents": "is legacy plan"}, "doc.yoda.analytics___platform__plan_is_loyalty": {"name": "analytics___platform__plan_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_loyalty", "block_contents": "is loyalty plan"}, "doc.yoda.analytics___platform__plan_is_loyalty_annual": {"name": "analytics___platform__plan_is_loyalty_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_loyalty_annual", "block_contents": "is loyalty anuual plan"}, "doc.yoda.analytics___platform__plan_is_loyalty_free": {"name": "analytics___platform__plan_is_loyalty_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_loyalty_free", "block_contents": "is loyalty free plan"}, "doc.yoda.analytics___platform__plan_is_loyalty_ss": {"name": "analytics___platform__plan_is_loyalty_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_loyalty_ss", "block_contents": "is loyalty self service plan"}, "doc.yoda.analytics___platform__plan_is_premium": {"name": "analytics___platform__plan_is_premium", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_premium", "block_contents": "is premium plan"}, "doc.yoda.analytics___platform__plan_is_prime": {"name": "analytics___platform__plan_is_prime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_prime", "block_contents": "is prime plan"}, "doc.yoda.analytics___platform__plan_is_reviews": {"name": "analytics___platform__plan_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_reviews", "block_contents": "is reviews plan"}, "doc.yoda.analytics___platform__plan_is_reviews_annual": {"name": "analytics___platform__plan_is_reviews_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_reviews_annual", "block_contents": "is reviews annual plan"}, "doc.yoda.analytics___platform__plan_is_reviews_free": {"name": "analytics___platform__plan_is_reviews_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_reviews_free", "block_contents": "is reviews free plan"}, "doc.yoda.analytics___platform__plan_is_reviews_ss": {"name": "analytics___platform__plan_is_reviews_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_reviews_ss", "block_contents": "is reviews self service plan"}, "doc.yoda.analytics___platform__plan_is_sms": {"name": "analytics___platform__plan_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_sms", "block_contents": "is sms plan"}, "doc.yoda.analytics___platform__plan_is_sms_annual": {"name": "analytics___platform__plan_is_sms_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_sms_annual", "block_contents": "is sms annual plan"}, "doc.yoda.analytics___platform__plan_is_sms_free": {"name": "analytics___platform__plan_is_sms_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_sms_free", "block_contents": "is sms free plan"}, "doc.yoda.analytics___platform__plan_is_sms_ss": {"name": "analytics___platform__plan_is_sms_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_sms_ss", "block_contents": "is sms self service plan"}, "doc.yoda.analytics___platform__plan_is_ss": {"name": "analytics___platform__plan_is_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_ss", "block_contents": "is self service plan"}, "doc.yoda.analytics___platform__plan_is_subscriptions": {"name": "analytics___platform__plan_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_subscriptions", "block_contents": "is subscriptions plan"}, "doc.yoda.analytics___platform__plan_is_subscriptions_annual": {"name": "analytics___platform__plan_is_subscriptions_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_subscriptions_annual", "block_contents": "is subscriptions annual plan"}, "doc.yoda.analytics___platform__plan_is_subscriptions_free": {"name": "analytics___platform__plan_is_subscriptions_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_subscriptions_free", "block_contents": "is subscriptions free plan"}, "doc.yoda.analytics___platform__plan_is_subscriptions_ss": {"name": "analytics___platform__plan_is_subscriptions_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_subscriptions_ss", "block_contents": "is subscriptions self service plan"}, "doc.yoda.analytics___platform__plan_is_vms": {"name": "analytics___platform__plan_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_vms", "block_contents": "is vms plan"}, "doc.yoda.analytics___platform__plan_is_vms_annual": {"name": "analytics___platform__plan_is_vms_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_vms_annual", "block_contents": "is vms annual plan"}, "doc.yoda.analytics___platform__plan_is_vms_free": {"name": "analytics___platform__plan_is_vms_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_vms_free", "block_contents": "is vms free plan"}, "doc.yoda.analytics___platform__plan_is_vms_ss": {"name": "analytics___platform__plan_is_vms_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_is_vms_ss", "block_contents": "is vms self service plan"}, "doc.yoda.analytics___platform__plan_plan_description": {"name": "analytics___platform__plan_plan_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_plan_description", "block_contents": ""}, "doc.yoda.analytics___platform__plan_plan_id": {"name": "analytics___platform__plan_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_plan_id", "block_contents": ""}, "doc.yoda.analytics___platform__plan_plan_key": {"name": "analytics___platform__plan_plan_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_plan_key", "block_contents": ""}, "doc.yoda.analytics___platform__plan_plan_name": {"name": "analytics___platform__plan_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_plan_name", "block_contents": ""}, "doc.yoda.analytics___platform__plan_tags": {"name": "analytics___platform__plan_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__plan/analytics___platform__plan.md", "unique_id": "doc.yoda.analytics___platform__plan_tags", "block_contents": "concat string of plan tags (for example: monthly, growth)"}, "doc.yoda.analytics___platform__platform_store_plan_over_time": {"name": "analytics___platform__platform_store_plan_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time", "block_contents": "Modeled over time table of owner_plan_event_details.\nA store can get a plan on the organization level or on the store level. \nWhen joining this table on date/timestamp make sure to use filter DATE > STORE_CREATED_DATE"}, "doc.yoda.analytics___platform__platform_store_plan_over_time_app_key": {"name": "analytics___platform__platform_store_plan_over_time_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_app_key", "block_contents": ""}, "doc.yoda.analytics___platform__platform_store_plan_over_time_dwh_updated_at": {"name": "analytics___platform__platform_store_plan_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_dwh_updated_at", "block_contents": "dwh update timestamp"}, "doc.yoda.analytics___platform__platform_store_plan_over_time_from_time": {"name": "analytics___platform__platform_store_plan_over_time_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_from_time", "block_contents": "plan start time"}, "doc.yoda.analytics___platform__platform_store_plan_over_time_is_core_plan": {"name": "analytics___platform__platform_store_plan_over_time_is_core_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_is_core_plan", "block_contents": "plan category_name <> Extensions"}, "doc.yoda.analytics___platform__platform_store_plan_over_time_is_free": {"name": "analytics___platform__platform_store_plan_over_time_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_is_free", "block_contents": "based on is_free from analytics___platform__plan"}, "doc.yoda.analytics___platform__platform_store_plan_over_time_is_self_service": {"name": "analytics___platform__platform_store_plan_over_time_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_is_self_service", "block_contents": "based on is_ss from analytics___platform__plan"}, "doc.yoda.analytics___platform__platform_store_plan_over_time_organization_key": {"name": "analytics___platform__platform_store_plan_over_time_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__platform_store_plan_over_time_plan_id": {"name": "analytics___platform__platform_store_plan_over_time_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_plan_id", "block_contents": "FK: analytics___platform__plan"}, "doc.yoda.analytics___platform__platform_store_plan_over_time_plan_name": {"name": "analytics___platform__platform_store_plan_over_time_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_plan_name", "block_contents": ""}, "doc.yoda.analytics___platform__platform_store_plan_over_time_product_family": {"name": "analytics___platform__platform_store_plan_over_time_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_product_family", "block_contents": "Reviews, Subscription ect"}, "doc.yoda.analytics___platform__platform_store_plan_over_time_store_created_date": {"name": "analytics___platform__platform_store_plan_over_time_store_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_store_created_date", "block_contents": "store created date"}, "doc.yoda.analytics___platform__platform_store_plan_over_time_store_plan_source": {"name": "analytics___platform__platform_store_plan_over_time_store_plan_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_store_plan_source", "block_contents": "source of the plan - organization = platform organization | store = platform store"}, "doc.yoda.analytics___platform__platform_store_plan_over_time_store_plan_source_rank": {"name": "analytics___platform__platform_store_plan_over_time_store_plan_source_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_store_plan_source_rank", "block_contents": "plans from organization level = 1 from store level = 2.\nWe give proirity to organization level"}, "doc.yoda.analytics___platform__platform_store_plan_over_time_to_time": {"name": "analytics___platform__platform_store_plan_over_time_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__platform_store_plan_over_time/analytics___platform__platform_store_plan_over_time.md", "unique_id": "doc.yoda.analytics___platform__platform_store_plan_over_time_to_time", "block_contents": "plan end time"}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly": {"name": "analytics___platform__product_metrics_snapshot_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly", "block_contents": "A modeled view that unions all monthly level product metrics from both granularities: organization, store | PK & Granularity: External_ID_c"}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_App_Key_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_App_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_App_Key_c", "block_contents": ""}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Enabled_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_Enabled_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Enabled_c", "block_contents": ""}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_External_ID_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_External_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_External_ID_c", "block_contents": "PK"}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Free_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_Free_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Free_c", "block_contents": ""}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_From_Date_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_From_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_From_Date_c", "block_contents": ""}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Metric_Value_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_Metric_Value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Metric_Value_c", "block_contents": ""}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Name": {"name": "analytics___platform__product_metrics_snapshot_monthly_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Name", "block_contents": ""}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Organization_Key_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_Organization_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Organization_Key_c", "block_contents": ""}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Product_Lines_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_Product_Lines_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Product_Lines_c", "block_contents": ""}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Product_Metrics_Name_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_Product_Metrics_Name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Product_Metrics_Name_c", "block_contents": ""}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Quantity_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_Quantity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Quantity_c", "block_contents": ""}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Self_Service_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_Self_Service_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_Self_Service_c", "block_contents": ""}, "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_To_Date_c": {"name": "analytics___platform__product_metrics_snapshot_monthly_To_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__product_metrics_snapshot_monthly/analytics___platform__product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___platform__product_metrics_snapshot_monthly_To_Date_c", "block_contents": ""}, "doc.yoda.analytics___platform__question_details": {"name": "analytics___platform__question_details", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details", "block_contents": "Modeled table for platform questions | PK & Granularity: question_id"}, "doc.yoda.analytics___platform__question_details_dwh_created_at": {"name": "analytics___platform__question_details_dwh_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_dwh_created_at", "block_contents": ""}, "doc.yoda.analytics___platform__question_details_dwh_updated_at": {"name": "analytics___platform__question_details_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__question_details_end_user_id": {"name": "analytics___platform__question_details_end_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_end_user_id", "block_contents": ""}, "doc.yoda.analytics___platform__question_details_is_question_archived": {"name": "analytics___platform__question_details_is_question_archived", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_is_question_archived", "block_contents": ""}, "doc.yoda.analytics___platform__question_details_is_question_was_sent_to_past_customers": {"name": "analytics___platform__question_details_is_question_was_sent_to_past_customers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_is_question_was_sent_to_past_customers", "block_contents": ""}, "doc.yoda.analytics___platform__question_details_organization_id": {"name": "analytics___platform__question_details_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform__question_details_product_id": {"name": "analytics___platform__question_details_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_product_id", "block_contents": ""}, "doc.yoda.analytics___platform__question_details_question_content": {"name": "analytics___platform__question_details_question_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_question_content", "block_contents": ""}, "doc.yoda.analytics___platform__question_details_question_created_at": {"name": "analytics___platform__question_details_question_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_question_created_at", "block_contents": ""}, "doc.yoda.analytics___platform__question_details_question_id": {"name": "analytics___platform__question_details_question_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_question_id", "block_contents": ""}, "doc.yoda.analytics___platform__question_details_question_updated_at": {"name": "analytics___platform__question_details_question_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_question_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__question_details_store_id": {"name": "analytics___platform__question_details_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__question_details/analytics___platform__question_details.md", "unique_id": "doc.yoda.analytics___platform__question_details_store_id", "block_contents": ""}, "doc.yoda.analytics___platform__store": {"name": "analytics___platform__store", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store", "block_contents": "Modeled staging table of all stores in Yotpo\nGranularity & PK: store_id"}, "doc.yoda.analytics___platform__store_app_key": {"name": "analytics___platform__store_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_app_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_dwh_updated_at": {"name": "analytics___platform__store_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_industry": {"name": "analytics___platform__store_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_industry", "block_contents": ""}, "doc.yoda.analytics___platform__store_is_active": {"name": "analytics___platform__store_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_is_active", "block_contents": ""}, "doc.yoda.analytics___platform__store_is_supports_past_orders": {"name": "analytics___platform__store_is_supports_past_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_is_supports_past_orders", "block_contents": ""}, "doc.yoda.analytics___platform__store_is_supports_pull_orders": {"name": "analytics___platform__store_is_supports_pull_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_is_supports_pull_orders", "block_contents": ""}, "doc.yoda.analytics___platform__store_is_test": {"name": "analytics___platform__store_is_test", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_is_test", "block_contents": ""}, "doc.yoda.analytics___platform__store_is_valid_credentials": {"name": "analytics___platform__store_is_valid_credentials", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_is_valid_credentials", "block_contents": ""}, "doc.yoda.analytics___platform__store_loyalty_enablement_date": {"name": "analytics___platform__store_loyalty_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_loyalty_enablement_date", "block_contents": "First date Loyalty was enabled"}, "doc.yoda.analytics___platform__store_organization_id": {"name": "analytics___platform__store_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform__store_organization_key": {"name": "analytics___platform__store_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_platform_description": {"name": "analytics___platform__store_platform_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_platform_description", "block_contents": ""}, "doc.yoda.analytics___platform__store_platform_name": {"name": "analytics___platform__store_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_platform_name", "block_contents": ""}, "doc.yoda.analytics___platform__store_platform_plan_name": {"name": "analytics___platform__store_platform_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_platform_plan_name", "block_contents": ""}, "doc.yoda.analytics___platform__store_reviews_enablement_date": {"name": "analytics___platform__store_reviews_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_reviews_enablement_date", "block_contents": "First date Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store"}, "doc.yoda.analytics___platform__store_sms_enablement_date": {"name": "analytics___platform__store_sms_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_sms_enablement_date", "block_contents": "First date SMS was enabled"}, "doc.yoda.analytics___platform__store_store_api_name": {"name": "analytics___platform__store_store_api_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_store_api_name", "block_contents": ""}, "doc.yoda.analytics___platform__store_store_category": {"name": "analytics___platform__store_store_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_store_category", "block_contents": ""}, "doc.yoda.analytics___platform__store_store_created_at": {"name": "analytics___platform__store_store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_store_created_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_store_created_date": {"name": "analytics___platform__store_store_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_store_created_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_store_domain": {"name": "analytics___platform__store_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_store_domain", "block_contents": ""}, "doc.yoda.analytics___platform__store_store_id": {"name": "analytics___platform__store_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_store_id", "block_contents": ""}, "doc.yoda.analytics___platform__store_store_language": {"name": "analytics___platform__store_store_language", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_store_language", "block_contents": ""}, "doc.yoda.analytics___platform__store_store_name": {"name": "analytics___platform__store_store_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store/analytics___platform__store.md", "unique_id": "doc.yoda.analytics___platform__store_store_name", "block_contents": ""}, "doc.yoda.analytics___platform__store_activeness_daily": {"name": "analytics___platform__store_activeness_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___platform__store_activeness_daily", "block_contents": "Modeled table of yotpo store activeness history on a daily level | PK and granularity: activeness_date, app_key"}, "doc.yoda.analytics___platform__store_activeness_daily_activeness_date": {"name": "analytics___platform__store_activeness_daily_activeness_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___platform__store_activeness_daily_activeness_date", "block_contents": "store activeness date - primary key 1/2"}, "doc.yoda.analytics___platform__store_activeness_daily_app_key": {"name": "analytics___platform__store_activeness_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___platform__store_activeness_daily_app_key", "block_contents": "yotpo store unique identifier - primary key 2/2"}, "doc.yoda.analytics___platform__store_activeness_daily_dwh_updated_at": {"name": "analytics___platform__store_activeness_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___platform__store_activeness_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___platform__store_activeness_daily_is_sms_app_installed": {"name": "analytics___platform__store_activeness_daily_is_sms_app_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___platform__store_activeness_daily_is_sms_app_installed", "block_contents": "sms installed app indicator: 0/1"}, "doc.yoda.analytics___platform__store_activeness_daily_is_subscriptions_app_installed": {"name": "analytics___platform__store_activeness_daily_is_subscriptions_app_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___platform__store_activeness_daily_is_subscriptions_app_installed", "block_contents": "subscriptions installed app indicator: 0/1"}, "doc.yoda.analytics___platform__store_activeness_daily_is_ugc_app_installed": {"name": "analytics___platform__store_activeness_daily_is_ugc_app_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___platform__store_activeness_daily_is_ugc_app_installed", "block_contents": "ugc installed app indicator: 0/1"}, "doc.yoda.analytics___platform__store_activeness_daily_organization_id": {"name": "analytics___platform__store_activeness_daily_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___platform__store_activeness_daily_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___platform__store_activeness_daily_organization_key": {"name": "analytics___platform__store_activeness_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___platform__store_activeness_daily_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___platform__store_activeness_daily_store_id": {"name": "analytics___platform__store_activeness_daily_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_activeness_daily/analytics___platform__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___platform__store_activeness_daily_store_id", "block_contents": "store identifier"}, "doc.yoda.analytics___platform__store_dynamic_date_explode_from_creation": {"name": "analytics___platform__store_dynamic_date_explode_from_creation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.md", "unique_id": "doc.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "block_contents": "Modeled table which holds store date explode from the first store creation date - 2012-01-26\nPK & Granularity: app_key, date"}, "doc.yoda.analytics___platform__store_dynamic_date_explode_from_creation_app_key": {"name": "analytics___platform__store_dynamic_date_explode_from_creation_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.md", "unique_id": "doc.yoda.analytics___platform__store_dynamic_date_explode_from_creation_app_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_dynamic_date_explode_from_creation_date": {"name": "analytics___platform__store_dynamic_date_explode_from_creation_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.md", "unique_id": "doc.yoda.analytics___platform__store_dynamic_date_explode_from_creation_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_dynamic_date_explode_from_creation_month": {"name": "analytics___platform__store_dynamic_date_explode_from_creation_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.md", "unique_id": "doc.yoda.analytics___platform__store_dynamic_date_explode_from_creation_month", "block_contents": ""}, "doc.yoda.analytics___platform__store_dynamic_date_explode_from_creation_organization_key": {"name": "analytics___platform__store_dynamic_date_explode_from_creation_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_dynamic_date_explode_from_creation/analytics___platform__store_dynamic_date_explode_from_creation.md", "unique_id": "doc.yoda.analytics___platform__store_dynamic_date_explode_from_creation_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily": {"name": "analytics___platform__store_metrics_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily", "block_contents": "Modeled table which holds incrementally store indications + orders metrics daily. Increment running data of last 30d\nPK & Granularity: app_key & date"}, "doc.yoda.analytics___platform__store_metrics_daily_account_id": {"name": "analytics___platform__store_metrics_daily_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_account_id", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_app_key": {"name": "analytics___platform__store_metrics_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_app_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_avg_fulfilled_orders_l3m": {"name": "analytics___platform__store_metrics_daily_avg_fulfilled_orders_l3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_avg_fulfilled_orders_l3m", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_avg_orders_l3m": {"name": "analytics___platform__store_metrics_daily_avg_orders_l3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_avg_orders_l3m", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_date": {"name": "analytics___platform__store_metrics_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_dwh_updated_at": {"name": "analytics___platform__store_metrics_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_fulfilled_orders_amount_in_usd_sum": {"name": "analytics___platform__store_metrics_daily_fulfilled_orders_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_fulfilled_orders_amount_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_fulfilled_orders_cnt": {"name": "analytics___platform__store_metrics_daily_fulfilled_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_fulfilled_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_fulfilled_orders_in_usd_aov": {"name": "analytics___platform__store_metrics_daily_fulfilled_orders_in_usd_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_fulfilled_orders_in_usd_aov", "block_contents": "The Average fulfilled Order Value of a store in that date"}, "doc.yoda.analytics___platform__store_metrics_daily_industry": {"name": "analytics___platform__store_metrics_daily_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_industry", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_loyalty_enablement_date": {"name": "analytics___platform__store_metrics_daily_loyalty_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_loyalty_enablement_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_orders_amount_in_usd_sum": {"name": "analytics___platform__store_metrics_daily_orders_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_orders_amount_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_orders_cnt": {"name": "analytics___platform__store_metrics_daily_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_orders_in_usd_aov": {"name": "analytics___platform__store_metrics_daily_orders_in_usd_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_orders_in_usd_aov", "block_contents": "The Average Order Value of a store in that date"}, "doc.yoda.analytics___platform__store_metrics_daily_organization_id": {"name": "analytics___platform__store_metrics_daily_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_organization_key": {"name": "analytics___platform__store_metrics_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_parent_organization_id": {"name": "analytics___platform__store_metrics_daily_parent_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_parent_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_parent_organization_key": {"name": "analytics___platform__store_metrics_daily_parent_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_parent_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_platform_name": {"name": "analytics___platform__store_metrics_daily_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_platform_name", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_reviews_enablement_date": {"name": "analytics___platform__store_metrics_daily_reviews_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_reviews_enablement_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform__store_metrics_daily_sms_enablement_date": {"name": "analytics___platform__store_metrics_daily_sms_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_sms_enablement_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_daily_store_created_at": {"name": "analytics___platform__store_metrics_daily_store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_daily/analytics___platform__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_daily_store_created_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly": {"name": "analytics___platform__store_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly", "block_contents": "Modeled table which holds store indications + orders metrics montly \nPK & Granularity: app_key & date"}, "doc.yoda.analytics___platform__store_metrics_monthly_12m_ago_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_12m_ago_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_12m_ago_orders_cnt", "block_contents": "Store orders count in month 12m go"}, "doc.yoda.analytics___platform__store_metrics_monthly_2_quarters_ago_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_2_quarters_ago_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_2_quarters_ago_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_2m_ago_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_2m_ago_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_2m_ago_orders_cnt", "block_contents": "Store orders count in month 2m go"}, "doc.yoda.analytics___platform__store_metrics_monthly_3m_ago_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_3m_ago_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_3m_ago_orders_cnt", "block_contents": "Store orders count in month 3m go"}, "doc.yoda.analytics___platform__store_metrics_monthly_account_id": {"name": "analytics___platform__store_metrics_monthly_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_account_id", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_app_key": {"name": "analytics___platform__store_metrics_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_app_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_avg_fulfilled_orders_l3m": {"name": "analytics___platform__store_metrics_monthly_avg_fulfilled_orders_l3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_avg_fulfilled_orders_l3m", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_avg_orders_amount_in_usd_l3m": {"name": "analytics___platform__store_metrics_monthly_avg_orders_amount_in_usd_l3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_avg_orders_amount_in_usd_l3m", "block_contents": "Store Avarage for the last 3 months orders GMV"}, "doc.yoda.analytics___platform__store_metrics_monthly_avg_orders_cnt_l12m": {"name": "analytics___platform__store_metrics_monthly_avg_orders_cnt_l12m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_avg_orders_cnt_l12m", "block_contents": "Store Avarage for the last 12 months orders count"}, "doc.yoda.analytics___platform__store_metrics_monthly_avg_orders_cnt_l3m": {"name": "analytics___platform__store_metrics_monthly_avg_orders_cnt_l3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_avg_orders_cnt_l3m", "block_contents": "Store Avarage for the last 3 months orders count"}, "doc.yoda.analytics___platform__store_metrics_monthly_avg_orders_l3m": {"name": "analytics___platform__store_metrics_monthly_avg_orders_l3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_avg_orders_l3m", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_dwh_updated_at": {"name": "analytics___platform__store_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___platform__store_metrics_monthly_fulfilled_orders_amount_in_usd_sum": {"name": "analytics___platform__store_metrics_monthly_fulfilled_orders_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_fulfilled_orders_amount_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_fulfilled_orders_aov": {"name": "analytics___platform__store_metrics_monthly_fulfilled_orders_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_fulfilled_orders_aov", "block_contents": "The Average fulfilled Order Value of a store in that month"}, "doc.yoda.analytics___platform__store_metrics_monthly_fulfilled_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_fulfilled_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_fulfilled_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_industry": {"name": "analytics___platform__store_metrics_monthly_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_industry", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_last_12m_orders_avg_bucket": {"name": "analytics___platform__store_metrics_monthly_last_12m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_12m_orders_avg_bucket", "block_contents": "Orders bucket of the last 12m avg. The Avarage was calc according to the exsisting months (min 3)"}, "doc.yoda.analytics___platform__store_metrics_monthly_last_12m_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_last_12m_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_12m_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_last_12m_orders_cnt_avg": {"name": "analytics___platform__store_metrics_monthly_last_12m_orders_cnt_avg", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_12m_orders_cnt_avg", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_last_12m_orders_growth": {"name": "analytics___platform__store_metrics_monthly_last_12m_orders_growth", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_12m_orders_growth", "block_contents": "Shows the change YoY"}, "doc.yoda.analytics___platform__store_metrics_monthly_last_12m_orders_sum": {"name": "analytics___platform__store_metrics_monthly_last_12m_orders_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_12m_orders_sum", "block_contents": "Store total 12m ago (not including current) orders cnt"}, "doc.yoda.analytics___platform__store_metrics_monthly_last_13m_to_24m_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_last_13m_to_24m_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_13m_to_24m_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_last_13m_to_24m_orders_sum": {"name": "analytics___platform__store_metrics_monthly_last_13m_to_24m_orders_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_13m_to_24m_orders_sum", "block_contents": "Store total 13m-24m ago (not including current) orders cnt"}, "doc.yoda.analytics___platform__store_metrics_monthly_last_2_quarter_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_last_2_quarter_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_2_quarter_orders_cnt", "block_contents": "Store cnt of all orders in the quarter, 2 quarters ago"}, "doc.yoda.analytics___platform__store_metrics_monthly_last_3m_fulfilled_orders_cnt_avg": {"name": "analytics___platform__store_metrics_monthly_last_3m_fulfilled_orders_cnt_avg", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_3m_fulfilled_orders_cnt_avg", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_last_3m_orders_amount_in_usd_avg": {"name": "analytics___platform__store_metrics_monthly_last_3m_orders_amount_in_usd_avg", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_3m_orders_amount_in_usd_avg", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_last_3m_orders_avg_bucket": {"name": "analytics___platform__store_metrics_monthly_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_3m_orders_avg_bucket", "block_contents": "Orders bucket of the last 3m avg"}, "doc.yoda.analytics___platform__store_metrics_monthly_last_3m_orders_cnt_avg": {"name": "analytics___platform__store_metrics_monthly_last_3m_orders_cnt_avg", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_3m_orders_cnt_avg", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_last_month_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_last_month_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_month_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_last_quarter_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_last_quarter_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_last_quarter_orders_cnt", "block_contents": "Store cnt of all orders in the last quarter"}, "doc.yoda.analytics___platform__store_metrics_monthly_loyalty_enablement_date": {"name": "analytics___platform__store_metrics_monthly_loyalty_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_loyalty_enablement_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_month": {"name": "analytics___platform__store_metrics_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_month", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_orders_amount_in_usd_sum": {"name": "analytics___platform__store_metrics_monthly_orders_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_orders_amount_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_orders_aov": {"name": "analytics___platform__store_metrics_monthly_orders_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_orders_aov", "block_contents": "The Average Order Value of a store in that date"}, "doc.yoda.analytics___platform__store_metrics_monthly_orders_bucket": {"name": "analytics___platform__store_metrics_monthly_orders_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_orders_bucket", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_organization_id": {"name": "analytics___platform__store_metrics_monthly_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_organization_key": {"name": "analytics___platform__store_metrics_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_parent_organization_id": {"name": "analytics___platform__store_metrics_monthly_parent_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_parent_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_parent_organization_key": {"name": "analytics___platform__store_metrics_monthly_parent_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_parent_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_platform_name": {"name": "analytics___platform__store_metrics_monthly_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_platform_name", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_quarter_orders_cnt": {"name": "analytics___platform__store_metrics_monthly_quarter_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_quarter_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_reviews_enablement_date": {"name": "analytics___platform__store_metrics_monthly_reviews_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_reviews_enablement_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_sms_enablement_date": {"name": "analytics___platform__store_metrics_monthly_sms_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_sms_enablement_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_store_created_at": {"name": "analytics___platform__store_metrics_monthly_store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_store_created_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_metrics_monthly_store_monthly_id": {"name": "analytics___platform__store_metrics_monthly_store_monthly_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_store_monthly_id", "block_contents": "month_app_key unique key (for sf use)"}, "doc.yoda.analytics___platform__store_metrics_monthly_yotpo_tenure_year_count": {"name": "analytics___platform__store_metrics_monthly_yotpo_tenure_year_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_metrics_monthly/analytics___platform__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_metrics_monthly_yotpo_tenure_year_count", "block_contents": "years at yotpo"}, "doc.yoda.analytics___platform__store_order_daily": {"name": "analytics___platform__store_order_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily", "block_contents": "Modeled table which aggregates store orders daily, after maxing it from all products data points\nPK & Granularity: app_key & order_date"}, "doc.yoda.analytics___platform__store_order_daily_app_key": {"name": "analytics___platform__store_order_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_app_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_avg_fulfilled_orders_l3m": {"name": "analytics___platform__store_order_daily_avg_fulfilled_orders_l3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_avg_fulfilled_orders_l3m", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_avg_orders_l3m": {"name": "analytics___platform__store_order_daily_avg_orders_l3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_avg_orders_l3m", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_dwh_updated_at": {"name": "analytics___platform__store_order_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_fulfilled_orders_amount_in_usd_sum": {"name": "analytics___platform__store_order_daily_fulfilled_orders_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_fulfilled_orders_amount_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_fulfilled_orders_amount_sum": {"name": "analytics___platform__store_order_daily_fulfilled_orders_amount_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_fulfilled_orders_amount_sum", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_fulfilled_orders_aov": {"name": "analytics___platform__store_order_daily_fulfilled_orders_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_fulfilled_orders_aov", "block_contents": "The Average fulfilled Order Value of a store in that date"}, "doc.yoda.analytics___platform__store_order_daily_fulfilled_orders_cnt": {"name": "analytics___platform__store_order_daily_fulfilled_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_fulfilled_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_fulfilled_orders_in_usd_aov": {"name": "analytics___platform__store_order_daily_fulfilled_orders_in_usd_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_fulfilled_orders_in_usd_aov", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_order_date": {"name": "analytics___platform__store_order_daily_order_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_order_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_order_month": {"name": "analytics___platform__store_order_daily_order_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_order_month", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_orders_amount_in_usd_sum": {"name": "analytics___platform__store_order_daily_orders_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_orders_amount_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_orders_amount_sum": {"name": "analytics___platform__store_order_daily_orders_amount_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_orders_amount_sum", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_orders_aov": {"name": "analytics___platform__store_order_daily_orders_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_orders_aov", "block_contents": "The Average Order Value of a store in that date"}, "doc.yoda.analytics___platform__store_order_daily_orders_cnt": {"name": "analytics___platform__store_order_daily_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform__store_order_daily_orders_in_usd_aov": {"name": "analytics___platform__store_order_daily_orders_in_usd_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_order_daily/analytics___platform__store_order_daily.md", "unique_id": "doc.yoda.analytics___platform__store_order_daily_orders_in_usd_aov", "block_contents": ""}, "doc.yoda.analytics___platform__store_pixel_metrics_daily": {"name": "analytics___platform__store_pixel_metrics_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily", "block_contents": "Modeled incremental table of aggregate pixel events metrics for store by date | \nGranularity: product_name, date, app_key, widget_version_type , action, widget_element, medium, source, is_mobile, metric | \nPrimary Key: pixel_metrics_id"}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_action": {"name": "analytics___platform__store_pixel_metrics_daily_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_action", "block_contents": "user action: shown, loaded, clicked_on, etc."}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_app_key": {"name": "analytics___platform__store_pixel_metrics_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_app_key", "block_contents": "store unique identifier"}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_date": {"name": "analytics___platform__store_pixel_metrics_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_date", "block_contents": "date of the aggregate pixel events"}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_dwh_updated_at": {"name": "analytics___platform__store_pixel_metrics_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_is_mobile": {"name": "analytics___platform__store_pixel_metrics_daily_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_is_mobile", "block_contents": "mobile indicator: 0/1"}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_medium": {"name": "analytics___platform__store_pixel_metrics_daily_medium", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_medium", "block_contents": "pixel event medium: organic, marketing, sms, etc."}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_metric": {"name": "analytics___platform__store_pixel_metrics_daily_metric", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_metric", "block_contents": "metric description: count, 0.5 - 0.99 duration sec count, etc."}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_pixel_metrics_id": {"name": "analytics___platform__store_pixel_metrics_daily_pixel_metrics_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_pixel_metrics_id", "block_contents": "table's row unique identifier"}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_product_name": {"name": "analytics___platform__store_pixel_metrics_daily_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_product_name", "block_contents": "yotpo's product name: ugc, loyalty, etc."}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_source": {"name": "analytics___platform__store_pixel_metrics_daily_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_source", "block_contents": "pixel event source: instagram, google-ads, etc."}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_value": {"name": "analytics___platform__store_pixel_metrics_daily_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_value", "block_contents": "metric's value"}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_widget_element": {"name": "analytics___platform__store_pixel_metrics_daily_widget_element", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_widget_element", "block_contents": "widget element: filter_reviews, questions, sticky_bar_widget, etc."}, "doc.yoda.analytics___platform__store_pixel_metrics_daily_widget_version_type": {"name": "analytics___platform__store_pixel_metrics_daily_widget_version_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_pixel_metrics_daily/analytics___platform__store_pixel_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_pixel_metrics_daily_widget_version_type", "block_contents": "pixel widget version: 2, 3"}, "doc.yoda.analytics___platform__store_plan_daily": {"name": "analytics___platform__store_plan_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily", "block_contents": "Daily aggregated table for store product plan daily.\nGranularity: date|app_key|product_family"}, "doc.yoda.analytics___platform__store_plan_daily_app_key": {"name": "analytics___platform__store_plan_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_app_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_date": {"name": "analytics___platform__store_plan_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_dwh_updated_at": {"name": "analytics___platform__store_plan_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_is_email": {"name": "analytics___platform__store_plan_daily_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_is_email", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_is_free": {"name": "analytics___platform__store_plan_daily_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_is_free", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_is_full_service": {"name": "analytics___platform__store_plan_daily_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_is_full_service", "block_contents": "indicator = 1 when is_self_service = 0"}, "doc.yoda.analytics___platform__store_plan_daily_is_loyalty": {"name": "analytics___platform__store_plan_daily_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_is_reviews": {"name": "analytics___platform__store_plan_daily_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_is_reviews", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_is_self_service": {"name": "analytics___platform__store_plan_daily_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_is_self_service", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_is_sms": {"name": "analytics___platform__store_plan_daily_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_is_sms", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_is_subscriptions": {"name": "analytics___platform__store_plan_daily_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_is_vms": {"name": "analytics___platform__store_plan_daily_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_is_vms", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_loyalty_plan_id": {"name": "analytics___platform__store_plan_daily_loyalty_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_loyalty_plan_id", "block_contents": "FK: plan_id in loyalty_stg__plans"}, "doc.yoda.analytics___platform__store_plan_daily_loyalty_plan_map": {"name": "analytics___platform__store_plan_daily_loyalty_plan_map", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_loyalty_plan_map", "block_contents": "plan from loyalty db analytics___loyalty__merchant_plan_daily"}, "doc.yoda.analytics___platform__store_plan_daily_opportunity_id_list": {"name": "analytics___platform__store_plan_daily_opportunity_id_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_opportunity_id_list", "block_contents": "list of opportunities (ids) associated with the plan"}, "doc.yoda.analytics___platform__store_plan_daily_organization_key": {"name": "analytics___platform__store_plan_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_overlapping_plan_cnt": {"name": "analytics___platform__store_plan_daily_overlapping_plan_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_overlapping_plan_cnt", "block_contents": "count distinct plans that have been registered for this date,app_key,product_family"}, "doc.yoda.analytics___platform__store_plan_daily_overlapping_plan_name_list": {"name": "analytics___platform__store_plan_daily_overlapping_plan_name_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_overlapping_plan_name_list", "block_contents": "list of all plans order by product_plan_rank that have been registered for this date,app_key,product_family"}, "doc.yoda.analytics___platform__store_plan_daily_plan_id": {"name": "analytics___platform__store_plan_daily_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_plan_id", "block_contents": "plan_id based on priority logic"}, "doc.yoda.analytics___platform__store_plan_daily_plan_name": {"name": "analytics___platform__store_plan_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_plan_name", "block_contents": "plan_name based on priority logic"}, "doc.yoda.analytics___platform__store_plan_daily_platform_plan_map": {"name": "analytics___platform__store_plan_daily_platform_plan_map", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_platform_plan_map", "block_contents": "plan from platform db analytics___platform__platform_store_plan_over_time"}, "doc.yoda.analytics___platform__store_plan_daily_product_family": {"name": "analytics___platform__store_plan_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_product_family", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_sms_plan_id": {"name": "analytics___platform__store_plan_daily_sms_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_sms_plan_id", "block_contents": "FK: plan_id in analytics___sms_stg__plan"}, "doc.yoda.analytics___platform__store_plan_daily_sms_plan_map": {"name": "analytics___platform__store_plan_daily_sms_plan_map", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_sms_plan_map", "block_contents": "plan from sms db analytics___sms__store_plan_daily"}, "doc.yoda.analytics___platform__store_plan_daily_static_plan_map": {"name": "analytics___platform__store_plan_daily_static_plan_map", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_static_plan_map", "block_contents": "plan from static saas analytics___platform_stg__saas_organization_daily_history"}, "doc.yoda.analytics___platform__store_plan_daily_store_created_date": {"name": "analytics___platform__store_plan_daily_store_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_store_created_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_plan_daily_zuora_plan_map": {"name": "analytics___platform__store_plan_daily_zuora_plan_map", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_plan_daily/analytics___platform__store_plan_daily.md", "unique_id": "doc.yoda.analytics___platform__store_plan_daily_zuora_plan_map", "block_contents": "plan from zuora analytics___finance__zuora_organization_plan_rank_daily"}, "doc.yoda.analytics___platform__store_platform_account": {"name": "analytics___platform__store_platform_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account", "block_contents": "Modeled table of analytics___platform_stg__account_platform.\nThis is a mapping table between yotpo store_id and each of the platform's id (external_id)"}, "doc.yoda.analytics___platform__store_platform_account_account_platform_created_at": {"name": "analytics___platform__store_platform_account_account_platform_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_account_platform_created_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_platform_account_account_platform_id": {"name": "analytics___platform__store_platform_account_account_platform_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_account_platform_id", "block_contents": ""}, "doc.yoda.analytics___platform__store_platform_account_account_platform_updated_at": {"name": "analytics___platform__store_platform_account_account_platform_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_account_platform_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_platform_account_dwh_updated_at": {"name": "analytics___platform__store_platform_account_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_platform_account_is_valid_credentials": {"name": "analytics___platform__store_platform_account_is_valid_credentials", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_is_valid_credentials", "block_contents": ""}, "doc.yoda.analytics___platform__store_platform_account_platform_account_id": {"name": "analytics___platform__store_platform_account_platform_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_platform_account_id", "block_contents": "id in external platform"}, "doc.yoda.analytics___platform__store_platform_account_platform_name": {"name": "analytics___platform__store_platform_account_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_platform_name", "block_contents": ""}, "doc.yoda.analytics___platform__store_platform_account_platform_plan_name": {"name": "analytics___platform__store_platform_account_platform_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_platform_plan_name", "block_contents": ""}, "doc.yoda.analytics___platform__store_platform_account_platform_shop_domain": {"name": "analytics___platform__store_platform_account_platform_shop_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_platform_shop_domain", "block_contents": "external pltform domain"}, "doc.yoda.analytics___platform__store_platform_account_platform_type_id": {"name": "analytics___platform__store_platform_account_platform_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_platform_type_id", "block_contents": "FK: plarform_type"}, "doc.yoda.analytics___platform__store_platform_account_store_api_name": {"name": "analytics___platform__store_platform_account_store_api_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_store_api_name", "block_contents": ""}, "doc.yoda.analytics___platform__store_platform_account_store_id": {"name": "analytics___platform__store_platform_account_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_platform_account/analytics___platform__store_platform_account.md", "unique_id": "doc.yoda.analytics___platform__store_platform_account_store_id", "block_contents": "FK: platform_store"}, "doc.yoda.analytics___platform__store_product_activeness_monthly": {"name": "analytics___platform__store_product_activeness_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly", "block_contents": "Modeled table of yotpo stores with activeness indicators in a monthly level.\nThe table includes in each month only stores that are at least active in tier 1 in one product (sms, ugc, loyalty) | PK and granularity: activeness_month, app_key"}, "doc.yoda.analytics___platform__store_product_activeness_monthly_activeness_month": {"name": "analytics___platform__store_product_activeness_monthly_activeness_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly_activeness_month", "block_contents": "store activeness month - primary key 1/2"}, "doc.yoda.analytics___platform__store_product_activeness_monthly_app_key": {"name": "analytics___platform__store_product_activeness_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly_app_key", "block_contents": "yotpo store unique identifier - primary key 2/2"}, "doc.yoda.analytics___platform__store_product_activeness_monthly_dwh_updated_at": {"name": "analytics___platform__store_product_activeness_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___platform__store_product_activeness_monthly_is_loyalty_active_tier_1": {"name": "analytics___platform__store_product_activeness_monthly_is_loyalty_active_tier_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly_is_loyalty_active_tier_1", "block_contents": "loyalty tier 1 product activeness indicator: 0/1. Meaning: is_program_live = 1"}, "doc.yoda.analytics___platform__store_product_activeness_monthly_is_loyalty_active_tier_2": {"name": "analytics___platform__store_product_activeness_monthly_is_loyalty_active_tier_2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly_is_loyalty_active_tier_2", "block_contents": "loyalty tier 2 product activeness indicator: 0/1. Meaning: any widget was seen by 3 unique shoppers"}, "doc.yoda.analytics___platform__store_product_activeness_monthly_is_loyalty_active_tier_3": {"name": "analytics___platform__store_product_activeness_monthly_is_loyalty_active_tier_3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly_is_loyalty_active_tier_3", "block_contents": "loyalty tier 3 product activeness indicator: 0/1. Meaning: 4 unique point redeemers"}, "doc.yoda.analytics___platform__store_product_activeness_monthly_is_sms_active_tier_1": {"name": "analytics___platform__store_product_activeness_monthly_is_sms_active_tier_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly_is_sms_active_tier_1", "block_contents": "sms tier 1 product activeness indicator: 0/1. Meaning: message_cnt > 0"}, "doc.yoda.analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_1": {"name": "analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_1", "block_contents": "ugc tier 1 product activeness indicator: 0/1. Meaning: review_request_sent_cnt >= 3 AND order_cnt > 0"}, "doc.yoda.analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_2": {"name": "analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_2", "block_contents": "ugc tier 2 product activeness indicator: 0/1. Meaning: is_ugc_active_tier_1 = 1 AND is_map_enabled = 1"}, "doc.yoda.analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_3": {"name": "analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_3", "block_contents": "ugc tier 3 product activeness indicator: 0/1. Meaning: is_ugc_active_tier_2 = 1 AND is_reviews_widget_loaded = 1"}, "doc.yoda.analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_4": {"name": "analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_4", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_activeness_monthly/analytics___platform__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_activeness_monthly_is_ugc_active_tier_4", "block_contents": "ugc tier 4 product activeness indicator: 0/1. Meaning: is_ugc_active_tier_3 = 1 AND review_cnt > 0"}, "doc.yoda.analytics___platform__store_product_metrics_daily": {"name": "analytics___platform__store_product_metrics_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily", "block_contents": "A modeled view of product metrics profile based on daily models. PK & Granularity: app_key, metric_date"}, "doc.yoda.analytics___platform__store_product_metrics_daily_app_key": {"name": "analytics___platform__store_product_metrics_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_app_key", "block_contents": "PK 1/2"}, "doc.yoda.analytics___platform__store_product_metrics_daily_email_editor_loyalty_block_activation_level": {"name": "analytics___platform__store_product_metrics_daily_email_editor_loyalty_block_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_email_editor_loyalty_block_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_email_editor_product_with_reviews_block_activation_level": {"name": "analytics___platform__store_product_metrics_daily_email_editor_product_with_reviews_block_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_email_editor_product_with_reviews_block_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_email_editor_reviews_block_activation_level": {"name": "analytics___platform__store_product_metrics_daily_email_editor_reviews_block_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_email_editor_reviews_block_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_image_review_earning_rule_loyalty_activation_level": {"name": "analytics___platform__store_product_metrics_daily_image_review_earning_rule_loyalty_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_image_review_earning_rule_loyalty_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_loyalty_first_time_active3_date": {"name": "analytics___platform__store_product_metrics_daily_loyalty_first_time_active3_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_loyalty_first_time_active3_date", "block_contents": "first time a store got to loyalty active3 level"}, "doc.yoda.analytics___platform__store_product_metrics_daily_loyalty_is_active1": {"name": "analytics___platform__store_product_metrics_daily_loyalty_is_active1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_loyalty_is_active1", "block_contents": "active 1= loyalty program is live and ready to use,"}, "doc.yoda.analytics___platform__store_product_metrics_daily_loyalty_is_active2": {"name": "analytics___platform__store_product_metrics_daily_loyalty_is_active2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_loyalty_is_active2", "block_contents": "active 2= 3 unique users a day that have seen any loyalty widget, for account."}, "doc.yoda.analytics___platform__store_product_metrics_daily_loyalty_is_active2_1": {"name": "analytics___platform__store_product_metrics_daily_loyalty_is_active2_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_loyalty_is_active2_1", "block_contents": "active 2.1= 3 unique users have seen the rewards program page on site in a given date"}, "doc.yoda.analytics___platform__store_product_metrics_daily_loyalty_subscription_discount_reward_activation_level": {"name": "analytics___platform__store_product_metrics_daily_loyalty_subscription_discount_reward_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_loyalty_subscription_discount_reward_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_metric_date": {"name": "analytics___platform__store_product_metrics_daily_metric_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_metric_date", "block_contents": "PK 2/2"}, "doc.yoda.analytics___platform__store_product_metrics_daily_organization_key": {"name": "analytics___platform__store_product_metrics_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_daily_review_earning_rule_loyalty_activation_level": {"name": "analytics___platform__store_product_metrics_daily_review_earning_rule_loyalty_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_review_earning_rule_loyalty_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sign_up_for_sms_earning_rule_loyalty_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sign_up_for_sms_earning_rule_loyalty_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sign_up_for_sms_earning_rule_loyalty_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_30_days_message_cnt": {"name": "analytics___platform__store_product_metrics_daily_sms_30_days_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_30_days_message_cnt", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_30_days_usage_sum": {"name": "analytics___platform__store_product_metrics_daily_sms_30_days_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_30_days_usage_sum", "block_contents": "last 30 days usage sum"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_7_days_message_cnt": {"name": "analytics___platform__store_product_metrics_daily_sms_7_days_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_7_days_message_cnt", "block_contents": "last 7 days sms messages"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_7_days_usage_sum": {"name": "analytics___platform__store_product_metrics_daily_sms_7_days_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_7_days_usage_sum", "block_contents": "last 7 days sms usage"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_90_days_message_cnt": {"name": "analytics___platform__store_product_metrics_daily_sms_90_days_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_90_days_message_cnt", "block_contents": "last 90 days sms messages"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_90_days_usage_sum": {"name": "analytics___platform__store_product_metrics_daily_sms_90_days_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_90_days_usage_sum", "block_contents": "last 90 days usage su,"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_active_campaign_cnt": {"name": "analytics___platform__store_product_metrics_daily_sms_active_campaign_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_active_campaign_cnt", "block_contents": "the number of active sms campaigns"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_active_flow_cnt": {"name": "analytics___platform__store_product_metrics_daily_sms_active_flow_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_active_flow_cnt", "block_contents": "the number of active sms flows"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_campaign_to_grow_product_subscribers_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_campaign_to_grow_product_subscribers_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_campaign_to_grow_product_subscribers_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_campaigns_click_to_redeem_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_campaigns_click_to_redeem_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_campaigns_click_to_redeem_activation_level", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_campaigns_redemption_reminder_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_campaigns_redemption_reminder_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_campaigns_redemption_reminder_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_campaigns_reward_program_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_campaigns_reward_program_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_campaigns_reward_program_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_campaigns_vip_tier_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_campaigns_vip_tier_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_campaigns_vip_tier_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_abandoned_checkout_reviews_star_rating_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_flows_abandoned_checkout_reviews_star_rating_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_abandoned_checkout_reviews_star_rating_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_cdp_optin_status_changed_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_flows_cdp_optin_status_changed_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_cdp_optin_status_changed_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_swell_birthday_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_flows_swell_birthday_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_swell_birthday_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_swell_points_reminder_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_flows_swell_points_reminder_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_swell_points_reminder_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_swell_tier_earned_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_flows_swell_tier_earned_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_swell_tier_earned_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_yotpo_product_review_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_flows_yotpo_product_review_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_yotpo_product_review_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_yotpo_site_review_activation_level": {"name": "analytics___platform__store_product_metrics_daily_sms_flows_yotpo_site_review_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_flows_yotpo_site_review_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_is_pop_up_enabled": {"name": "analytics___platform__store_product_metrics_daily_sms_is_pop_up_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_is_pop_up_enabled", "block_contents": "indiaction for the sms pop up is enablement"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_last_day_message_cnt": {"name": "analytics___platform__store_product_metrics_daily_sms_last_day_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_last_day_message_cnt", "block_contents": "number sms messages"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_last_day_usage_sum": {"name": "analytics___platform__store_product_metrics_daily_sms_last_day_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_last_day_usage_sum", "block_contents": "previous day sms usage"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_new_subscriber_cnt": {"name": "analytics___platform__store_product_metrics_daily_sms_new_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_new_subscriber_cnt", "block_contents": "number of new sms subscribers"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_subscriber_cnt": {"name": "analytics___platform__store_product_metrics_daily_sms_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_subscriber_cnt", "block_contents": "number of sms subscribers"}, "doc.yoda.analytics___platform__store_product_metrics_daily_sms_usage_sum": {"name": "analytics___platform__store_product_metrics_daily_sms_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_sms_usage_sum", "block_contents": "sms usage"}, "doc.yoda.analytics___platform__store_product_metrics_daily_subscription_cancellation_notification_flow_activation_level": {"name": "analytics___platform__store_product_metrics_daily_subscription_cancellation_notification_flow_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_subscription_cancellation_notification_flow_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_subscription_confirmation_notification_flow_activation_level": {"name": "analytics___platform__store_product_metrics_daily_subscription_confirmation_notification_flow_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_subscription_confirmation_notification_flow_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_subscription_payment_failure_notification_flow_activation_level": {"name": "analytics___platform__store_product_metrics_daily_subscription_payment_failure_notification_flow_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_subscription_payment_failure_notification_flow_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_subscriptions_management_url_notification_flow_activation_level": {"name": "analytics___platform__store_product_metrics_daily_subscriptions_management_url_notification_flow_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_subscriptions_management_url_notification_flow_activation_level", "block_contents": "indication on the level activation of a synergy. Disabled= Eligble yet not enabled, Enabled= Eligble yet not active, Active= Enabled and Active whcih means the action was made in the last 30 days."}, "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_activation_level": {"name": "analytics___platform__store_product_metrics_daily_ugc_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_activation_level", "block_contents": "consolidates the output the activation level: 0/1/2/3\nis_active_tier_0 smallint indicator: 0/1. Meaning: order_cnt_l30d > 0 and review_request_sent_cnt_l30d >= 3\nis_active_tier_1 smallint indicator: 0/1. Meaning: is_active_tier_0 = 1 and is_map_enabled_l30d = 1 is_active_tier_2 smallint indicator: 0/1. Meaning: is_active_tier_1 = 1 and is_reviews_widget_loaded_l30d = 1\nis_active_tier_3 smallint indicator: 0/1. Meaning: is_active_tier_2 = 1 and review_cnt_l30d >= 1"}, "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_facebook_syndication_enabled": {"name": "analytics___platform__store_product_metrics_daily_ugc_is_facebook_syndication_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_facebook_syndication_enabled", "block_contents": "is facebook syndication enabled"}, "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_google_feed_enabled": {"name": "analytics___platform__store_product_metrics_daily_ugc_is_google_feed_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_google_feed_enabled", "block_contents": "is google feed (pla) enabled and over 50 product reviews in the last 365 days"}, "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_google_seller_rating_enabled": {"name": "analytics___platform__store_product_metrics_daily_ugc_is_google_seller_rating_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_google_seller_rating_enabled", "block_contents": "is google sellers rating enabled and over 100 site reviews in the last 365 days"}, "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_image_reviews_enabled": {"name": "analytics___platform__store_product_metrics_daily_ugc_is_image_reviews_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_image_reviews_enabled", "block_contents": "ugc_is_image_reviews_enabled"}, "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_map_enabled": {"name": "analytics___platform__store_product_metrics_daily_ugc_is_map_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_map_enabled", "block_contents": "Metric Name: is map enabled, Field Name: ugc_is_map_enabled, Product: ugc, Type: Enabled__c, Description: MAP (Mail After Purchase) option is enabled."}, "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_shopping_pla_enabled": {"name": "analytics___platform__store_product_metrics_daily_ugc_is_shopping_pla_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_shopping_pla_enabled", "block_contents": "is google feed (pla) enabled and the store has 50 product reviews"}, "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_store_reviews_exported": {"name": "analytics___platform__store_product_metrics_daily_ugc_is_store_reviews_exported", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_store_reviews_exported", "block_contents": "indiaction of a store exporting it's reviews (possible churn indication)"}, "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_video_reviews_enabled": {"name": "analytics___platform__store_product_metrics_daily_ugc_is_video_reviews_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_video_reviews_enabled", "block_contents": "Is video review option enabled"}, "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_walmart_retail_syndication_enabled": {"name": "analytics___platform__store_product_metrics_daily_ugc_is_walmart_retail_syndication_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_is_walmart_retail_syndication_enabled", "block_contents": "is walmart retail syndication enabled"}, "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_reviews_store_widget_version": {"name": "analytics___platform__store_product_metrics_daily_ugc_reviews_store_widget_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_ugc_reviews_store_widget_version", "block_contents": "indication of the reviews store wideget verion 2=v2, 3=v3"}, "doc.yoda.analytics___platform__store_product_metrics_daily_video_review_earning_rule_loyalty_activation_level": {"name": "analytics___platform__store_product_metrics_daily_video_review_earning_rule_loyalty_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily/analytics___platform__store_product_metrics_daily.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_video_review_earning_rule_loyalty_activation_level", "block_contents": "avtive 1= loyalty program is live and ready to use, active 2= 3 unique users a day that have seen any loyalty widget, for account. active 2.1= 3 unique users have seen the rewards program page on site in a given date, Active 3= 4 distinct users have redeemed points per store,for account taking an indication if at least 1 store is active 3"}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff": {"name": "analytics___platform__store_product_metrics_daily_diff", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff", "block_contents": "A modeled view of product metrics as rows in a structure made for injection to external systems.|\nThis model takes the most recent changes in daily and lifestime store product metrics.|\nPK: External_ID__c | Granularity: App_Key__c, Product_Metrics_Name__c"}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_App_Key_c": {"name": "analytics___platform__store_product_metrics_daily_diff_App_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_App_Key_c", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Enabled_c": {"name": "analytics___platform__store_product_metrics_daily_diff_Enabled_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Enabled_c", "block_contents": "Holds value for boolean metrics."}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_External_ID_c": {"name": "analytics___platform__store_product_metrics_daily_diff_External_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_External_ID_c", "block_contents": "PK - combination of app key and metric name, generated to serve as id in external systems."}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Free_c": {"name": "analytics___platform__store_product_metrics_daily_diff_Free_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Free_c", "block_contents": "Indicates if a synergy activation level metric relates to free plan."}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_From_Date_c": {"name": "analytics___platform__store_product_metrics_daily_diff_From_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_From_Date_c", "block_contents": "Active date for the metric."}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Metric_Value_c": {"name": "analytics___platform__store_product_metrics_daily_diff_Metric_Value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Metric_Value_c", "block_contents": "Holds value for string metrics."}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Name": {"name": "analytics___platform__store_product_metrics_daily_diff_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Name", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Organization_Key_c": {"name": "analytics___platform__store_product_metrics_daily_diff_Organization_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Organization_Key_c", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Product_Lines_c": {"name": "analytics___platform__store_product_metrics_daily_diff_Product_Lines_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Product_Lines_c", "block_contents": "Products related to the metirc in line, in case of few products they will should be sperated with semicolon."}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Product_Metrics_Name_c": {"name": "analytics___platform__store_product_metrics_daily_diff_Product_Metrics_Name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Product_Metrics_Name_c", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Quantity_c": {"name": "analytics___platform__store_product_metrics_daily_diff_Quantity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Quantity_c", "block_contents": "Holds value for quantitive metrics."}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Self_Service_c": {"name": "analytics___platform__store_product_metrics_daily_diff_Self_Service_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_Self_Service_c", "block_contents": "Indicates if a synergy activation level metric relates to ss plan."}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_To_Date_c": {"name": "analytics___platform__store_product_metrics_daily_diff_To_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_To_Date_c", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_daily_diff_value": {"name": "analytics___platform__store_product_metrics_daily_diff_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_diff/analytics___platform__store_product_metrics_daily_diff.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_diff_value", "block_contents": "The proudct metric value - used for customer.io where value is not mapped to different fields."}, "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot": {"name": "analytics___platform__store_product_metrics_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot", "block_contents": "An incremental model of unpivoted product metrics.|\nThe model is based on a dedicated macro that catches the current value for each new metric (per store) with the date the current value began.|\nIn the incremental terms once a new metric was written for the first time, a new row for that app_key and metric_name will be appended only when a new value appears - with the according metric_date.|\nPK & Granularity: app_key, metric_name, metric_date"}, "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_app_key": {"name": "analytics___platform__store_product_metrics_daily_snapshot_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_app_key", "block_contents": "PK 1/3"}, "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_dwh_updated_at": {"name": "analytics___platform__store_product_metrics_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_metric_date": {"name": "analytics___platform__store_product_metrics_daily_snapshot_metric_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_metric_date", "block_contents": "PK 3/3"}, "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_metric_name": {"name": "analytics___platform__store_product_metrics_daily_snapshot_metric_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_metric_name", "block_contents": "PK 2/3"}, "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_organization_key": {"name": "analytics___platform__store_product_metrics_daily_snapshot_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_products": {"name": "analytics___platform__store_product_metrics_daily_snapshot_products", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_products", "block_contents": "Products related to the metric line, if there is more than 1 product they should be seperated with semicolon."}, "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_target_field": {"name": "analytics___platform__store_product_metrics_daily_snapshot_target_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_target_field", "block_contents": "Which field in the external systems (customer.io/salesforce) should hold the value of this metric - based on data type (quantivie/string/date..)"}, "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_value": {"name": "analytics___platform__store_product_metrics_daily_snapshot_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_daily_snapshot/analytics___platform__store_product_metrics_daily_snapshot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_daily_snapshot_value", "block_contents": "The value of the metric."}, "doc.yoda.analytics___platform__store_product_metrics_lifetime": {"name": "analytics___platform__store_product_metrics_lifetime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime", "block_contents": "A modeled view of lifetime product metrics per store. PK & Granularity: app_key"}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_app_key": {"name": "analytics___platform__store_product_metrics_lifetime_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_app_key", "block_contents": "PK"}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_email_live_date": {"name": "analytics___platform__store_product_metrics_lifetime_email_live_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_email_live_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_email_next_renewal_date": {"name": "analytics___platform__store_product_metrics_lifetime_email_next_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_email_next_renewal_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_email_onboarding_completion_date": {"name": "analytics___platform__store_product_metrics_lifetime_email_onboarding_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_email_onboarding_completion_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_enablement_date": {"name": "analytics___platform__store_product_metrics_lifetime_loyalty_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_enablement_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_live_date": {"name": "analytics___platform__store_product_metrics_lifetime_loyalty_live_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_live_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_next_renewal_date": {"name": "analytics___platform__store_product_metrics_lifetime_loyalty_next_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_next_renewal_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_onboarding_completion_date": {"name": "analytics___platform__store_product_metrics_lifetime_loyalty_onboarding_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_onboarding_completion_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active1_from_creation": {"name": "analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active1_from_creation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active1_from_creation", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active1_from_subscription": {"name": "analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active1_from_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active1_from_subscription", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active2_from_creation": {"name": "analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active2_from_creation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active2_from_creation", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active2_from_subscription": {"name": "analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active2_from_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_loyalty_time_to_active2_from_subscription", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_organization_key": {"name": "analytics___platform__store_product_metrics_lifetime_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_sms_enablement_date": {"name": "analytics___platform__store_product_metrics_lifetime_sms_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_sms_enablement_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_sms_live_date": {"name": "analytics___platform__store_product_metrics_lifetime_sms_live_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_sms_live_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_sms_next_renewal_date": {"name": "analytics___platform__store_product_metrics_lifetime_sms_next_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_sms_next_renewal_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_sms_onboarding_completion_date": {"name": "analytics___platform__store_product_metrics_lifetime_sms_onboarding_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_sms_onboarding_completion_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_subscriptions_live_date": {"name": "analytics___platform__store_product_metrics_lifetime_subscriptions_live_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_subscriptions_live_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_subscriptions_next_renewal_date": {"name": "analytics___platform__store_product_metrics_lifetime_subscriptions_next_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_subscriptions_next_renewal_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_subscriptions_onboarding_completion_date": {"name": "analytics___platform__store_product_metrics_lifetime_subscriptions_onboarding_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_subscriptions_onboarding_completion_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_ugc_enablement_date": {"name": "analytics___platform__store_product_metrics_lifetime_ugc_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_ugc_enablement_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_ugc_live_date": {"name": "analytics___platform__store_product_metrics_lifetime_ugc_live_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_ugc_live_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_ugc_next_renewal_date": {"name": "analytics___platform__store_product_metrics_lifetime_ugc_next_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_ugc_next_renewal_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_ugc_onboarding_completion_date": {"name": "analytics___platform__store_product_metrics_lifetime_ugc_onboarding_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime/analytics___platform__store_product_metrics_lifetime.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_ugc_onboarding_completion_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd": {"name": "analytics___platform__store_product_metrics_lifetime_scd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd", "block_contents": "An incremental model to keep track of changes in the lifetime product metrics, using the analytics_snapshot_scd macro. PK & Granularity: app_key, metric_name, updated_at"}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_app_key": {"name": "analytics___platform__store_product_metrics_lifetime_scd_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_app_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_dwh_updated_at": {"name": "analytics___platform__store_product_metrics_lifetime_scd_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_metric_name": {"name": "analytics___platform__store_product_metrics_lifetime_scd_metric_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_metric_name", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_organization_key": {"name": "analytics___platform__store_product_metrics_lifetime_scd_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_products": {"name": "analytics___platform__store_product_metrics_lifetime_scd_products", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_products", "block_contents": "Products related to the metric line, if there is more than 1 product they should be seperated with semicolon."}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_target_field": {"name": "analytics___platform__store_product_metrics_lifetime_scd_target_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_target_field", "block_contents": "Which field in the external systems (customer.io/salesforce) should hold the value of this metric - based on data type (quantivie/string/date..)"}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_updated_at": {"name": "analytics___platform__store_product_metrics_lifetime_scd_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_updated_at", "block_contents": "Date when the line was appended in the model - serves as the active date for the metric in non date metrics."}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_value": {"name": "analytics___platform__store_product_metrics_lifetime_scd_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_scd/analytics___platform__store_product_metrics_lifetime_scd.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_scd_value", "block_contents": "The value of the metric."}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot": {"name": "analytics___platform__store_product_metrics_lifetime_unpivot", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot", "block_contents": "A modeled of unpivotd lifetime product metrics into rows to be tracked in scd. PK & Grnaularity: app_key, products, metric_name"}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_app_key": {"name": "analytics___platform__store_product_metrics_lifetime_unpivot_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_app_key", "block_contents": "PK 1/3"}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_metric_date": {"name": "analytics___platform__store_product_metrics_lifetime_unpivot_metric_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_metric_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_metric_name": {"name": "analytics___platform__store_product_metrics_lifetime_unpivot_metric_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_metric_name", "block_contents": "PK 3/3"}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_organization_key": {"name": "analytics___platform__store_product_metrics_lifetime_unpivot_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_products": {"name": "analytics___platform__store_product_metrics_lifetime_unpivot_products", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_products", "block_contents": "Products related to the metric line, if there is more than 1 product they should be seperated with semicolon, PK 2/3."}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_target_field": {"name": "analytics___platform__store_product_metrics_lifetime_unpivot_target_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_target_field", "block_contents": "Which field in the external systems (customer.io/salesforce) should hold the value of this metric - based on data type (quantivie/string/date..)"}, "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_value": {"name": "analytics___platform__store_product_metrics_lifetime_unpivot_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_lifetime_unpivot/analytics___platform__store_product_metrics_lifetime_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_lifetime_unpivot_value", "block_contents": "The value of the metric."}, "doc.yoda.analytics___platform__store_product_metrics_monthly": {"name": "analytics___platform__store_product_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly", "block_contents": "A modeled view of product metrics profile based on monthly models. PK & Granularity: app_key, metric_month"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_app_key": {"name": "analytics___platform__store_product_metrics_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_app_key", "block_contents": "PK 1/2"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_business_last_12m_orders_avg_bucket": {"name": "analytics___platform__store_product_metrics_monthly_business_last_12m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_business_last_12m_orders_avg_bucket", "block_contents": "order bucket based on last 12 monthly order volume"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_business_last_12m_orders_cnt_avg": {"name": "analytics___platform__store_product_metrics_monthly_business_last_12m_orders_cnt_avg", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_business_last_12m_orders_cnt_avg", "block_contents": "avg monthly order volume based on the last 12 months"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_business_last_3m_orders_avg_bucket": {"name": "analytics___platform__store_product_metrics_monthly_business_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_business_last_3m_orders_avg_bucket", "block_contents": "order bucket based on last 3 monthly order volume"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_business_last_3m_orders_cnt_avg": {"name": "analytics___platform__store_product_metrics_monthly_business_last_3m_orders_cnt_avg", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_business_last_3m_orders_cnt_avg", "block_contents": "avg monthly order volume based on the last 3 months"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_business_last_month_orders_cnt": {"name": "analytics___platform__store_product_metrics_monthly_business_last_month_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_business_last_month_orders_cnt", "block_contents": "previous month orders"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_business_yotpo_tenure_year_count": {"name": "analytics___platform__store_product_metrics_monthly_business_yotpo_tenure_year_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_business_yotpo_tenure_year_count", "block_contents": "The number of years of the organization with Yotpo"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_email_open_rate_7d_from_first_email_sent": {"name": "analytics___platform__store_product_metrics_monthly_email_open_rate_7d_from_first_email_sent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_email_open_rate_7d_from_first_email_sent", "block_contents": "orders with Email opened 7 days from last email/orders with emails sent with 7 days from order"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_non_redeemers": {"name": "analytics___platform__store_product_metrics_monthly_loalty_last_3m_non_redeemers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_non_redeemers", "block_contents": "The number of Non Redeemers purchasers in the last 3 months"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_purchasers": {"name": "analytics___platform__store_product_metrics_monthly_loalty_last_3m_purchasers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_purchasers", "block_contents": "The total number of purchasers in the last 3 months"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_redeemers": {"name": "analytics___platform__store_product_metrics_monthly_loalty_last_3m_redeemers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_redeemers", "block_contents": "The number of Redeemers purchasers in the last 3 months"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_revenue": {"name": "analytics___platform__store_product_metrics_monthly_loalty_last_3m_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_revenue", "block_contents": "The store revenue in the last 3 months"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_spb_non_redeemers": {"name": "analytics___platform__store_product_metrics_monthly_loalty_last_3m_spb_non_redeemers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_spb_non_redeemers", "block_contents": "The Spend Per Buyer (SPB) of non redeemers in the last 3 months"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_spb_redeemers": {"name": "analytics___platform__store_product_metrics_monthly_loalty_last_3m_spb_redeemers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_spb_redeemers", "block_contents": "The Spend Per Buyer (SPB) of redeemers in the last 3 months"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_total_store_revenue": {"name": "analytics___platform__store_product_metrics_monthly_loalty_last_3m_total_store_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_loalty_last_3m_total_store_revenue", "block_contents": "Store revenue in the last 3 months"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_loyalty_last_3m_added_revenue": {"name": "analytics___platform__store_product_metrics_monthly_loyalty_last_3m_added_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_loyalty_last_3m_added_revenue", "block_contents": "added reveneue - (spend per buyer redeemers - spend per buyer non redeemers) * # of redeeemers .\nMoney generated from Loyalty"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_loyalty_last_3m_added_revenue_rate": {"name": "analytics___platform__store_product_metrics_monthly_loyalty_last_3m_added_revenue_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_loyalty_last_3m_added_revenue_rate", "block_contents": "The share of revenue coming from loyalty (orders amount of order that a coupon was used) out of the total store revenue"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_loyalty_last_3m_participation_rate": {"name": "analytics___platform__store_product_metrics_monthly_loyalty_last_3m_participation_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_loyalty_last_3m_participation_rate", "block_contents": "The share of redeemers out of all purchasers in the last 3 months"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_loyalty_last_3m_revenue_rate": {"name": "analytics___platform__store_product_metrics_monthly_loyalty_last_3m_revenue_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_loyalty_last_3m_revenue_rate", "block_contents": "the share"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_messages_sent_cnt": {"name": "analytics___platform__store_product_metrics_monthly_messages_sent_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_messages_sent_cnt", "block_contents": "monthy number of messages sent"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_metric_month": {"name": "analytics___platform__store_product_metrics_monthly_metric_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_metric_month", "block_contents": "PK 2/2"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_order_to_review_rate_7d_from_first_email_sent": {"name": "analytics___platform__store_product_metrics_monthly_order_to_review_rate_7d_from_first_email_sent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_order_to_review_rate_7d_from_first_email_sent", "block_contents": "the ration between orders made to reviews collected- the dates in questions are from the first email sent to 7 days after first email sent"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_organization_key": {"name": "analytics___platform__store_product_metrics_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_monthly_reviews_previous_month_cnt": {"name": "analytics___platform__store_product_metrics_monthly_reviews_previous_month_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_reviews_previous_month_cnt", "block_contents": "last monthy number of reviews"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_credits_used": {"name": "analytics___platform__store_product_metrics_monthly_sms_credits_used", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_credits_used", "block_contents": "the sum of monthly sms credit used"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_message_per_subscriber": {"name": "analytics___platform__store_product_metrics_monthly_sms_message_per_subscriber", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_message_per_subscriber", "block_contents": "the monthly avg of sms messages sent per subscriber of the store"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_monthly_roi": {"name": "analytics___platform__store_product_metrics_monthly_sms_monthly_roi", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_monthly_roi", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_price_per_message": {"name": "analytics___platform__store_product_metrics_monthly_sms_price_per_message", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_price_per_message", "block_contents": "the avg price that was paid for each for each sms message sent"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_roi_last_3_months": {"name": "analytics___platform__store_product_metrics_monthly_sms_roi_last_3_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_roi_last_3_months", "block_contents": "the ROI of sms credit used in the last 3 months, for example if month=october then ROI of July-September"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_subscriber_cnt": {"name": "analytics___platform__store_product_metrics_monthly_sms_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly/analytics___platform__store_product_metrics_monthly.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_sms_subscriber_cnt", "block_contents": "the number of sms subscribers"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot": {"name": "analytics___platform__store_product_metrics_monthly_unpivot", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot", "block_contents": "A modeled view of store product metrics as rows in a structure made for injection to external systems.|\nThis model takes the metrics of the last month from the monthly product metrics.|\nPK: External_ID__c | Granularity: App_Key__c, Product_Metrics_Name__c"}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_App_Key_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_App_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_App_Key_c", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Enabled_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_Enabled_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Enabled_c", "block_contents": "Holds value for boolean metrics."}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_External_ID_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_External_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_External_ID_c", "block_contents": "PK - combination of app key and metric name, generated to serve as id in external systems."}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Free_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_Free_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Free_c", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_From_Date_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_From_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_From_Date_c", "block_contents": "Active date for the metric."}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Metric_Value_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_Metric_Value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Metric_Value_c", "block_contents": "Holds value for string metrics."}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Name": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Name", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Organization_Key_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_Organization_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Organization_Key_c", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Product_Lines_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_Product_Lines_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Product_Lines_c", "block_contents": "Products related to the metirc in line, in case of few products they will should be sperated with semicolon."}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Product_Metrics_Name_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_Product_Metrics_Name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Product_Metrics_Name_c", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Quantity_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_Quantity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Quantity_c", "block_contents": "Holds value for quantitive metrics."}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Self_Service_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_Self_Service_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_Self_Service_c", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_To_Date_c": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_To_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_To_Date_c", "block_contents": ""}, "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_value": {"name": "analytics___platform__store_product_metrics_monthly_unpivot_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_product_metrics_monthly_unpivot/analytics___platform__store_product_metrics_monthly_unpivot.md", "unique_id": "doc.yoda.analytics___platform__store_product_metrics_monthly_unpivot_value", "block_contents": "The proudct metric value - used for customer.io where value is not mapped to different fields."}, "doc.yoda.analytics___platform__store_snapshot_daily": {"name": "analytics___platform__store_snapshot_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "unique_id": "doc.yoda.analytics___platform__store_snapshot_daily", "block_contents": "Modeled daily snapshot of basic columns from platform__store table. In case this process didn't run for few days, it would be backfilled with the current running data.\nPK&Granularity: app_key, date"}, "doc.yoda.analytics___platform__store_snapshot_daily_app_key": {"name": "analytics___platform__store_snapshot_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "unique_id": "doc.yoda.analytics___platform__store_snapshot_daily_app_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_snapshot_daily_date": {"name": "analytics___platform__store_snapshot_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "unique_id": "doc.yoda.analytics___platform__store_snapshot_daily_date", "block_contents": ""}, "doc.yoda.analytics___platform__store_snapshot_daily_dwh_updated_at": {"name": "analytics___platform__store_snapshot_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "unique_id": "doc.yoda.analytics___platform__store_snapshot_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform__store_snapshot_daily_is_active": {"name": "analytics___platform__store_snapshot_daily_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "unique_id": "doc.yoda.analytics___platform__store_snapshot_daily_is_active", "block_contents": ""}, "doc.yoda.analytics___platform__store_snapshot_daily_is_test": {"name": "analytics___platform__store_snapshot_daily_is_test", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "unique_id": "doc.yoda.analytics___platform__store_snapshot_daily_is_test", "block_contents": ""}, "doc.yoda.analytics___platform__store_snapshot_daily_organization_id": {"name": "analytics___platform__store_snapshot_daily_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "unique_id": "doc.yoda.analytics___platform__store_snapshot_daily_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform__store_snapshot_daily_organization_key": {"name": "analytics___platform__store_snapshot_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "unique_id": "doc.yoda.analytics___platform__store_snapshot_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform__store_snapshot_daily_store_id": {"name": "analytics___platform__store_snapshot_daily_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "unique_id": "doc.yoda.analytics___platform__store_snapshot_daily_store_id", "block_contents": ""}, "doc.yoda.analytics___platform__store_snapshot_daily_store_name": {"name": "analytics___platform__store_snapshot_daily_store_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "original_file_path": "models/analytics/platform/marts/analytics___platform__store_snapshot_daily/analytics___platform__store_snapshot_daily.md", "unique_id": "doc.yoda.analytics___platform__store_snapshot_daily_store_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "block_contents": "Static view of chargify overages max(month)=2020-07-01 min(month)=2014-06-01"}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_additional_orders_cnt": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_additional_orders_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_additional_orders_cnt", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_chargify_usage_revenue_in_usd": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_chargify_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_chargify_usage_revenue_in_usd", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_communication_free_credit_in_usd": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_communication_free_credit_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_communication_free_credit_in_usd", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_communication_usage_in_usd": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_communication_usage_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_communication_usage_in_usd", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_communication_usage_revenue_in_usd": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_communication_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_communication_usage_revenue_in_usd", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_is_free": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_is_free", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_is_full_service": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_is_full_service", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_is_self_service": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_is_self_service", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_organization_key": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_plan_name": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_plan_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_product_family": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_product_family", "block_contents": "UGC, SMS"}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_revenue_month": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_revenue_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_revenue_month", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_shopify_billing_usage_revenue_in_usd": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_shopify_billing_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_shopify_billing_usage_revenue_in_usd", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_usage_revenue_in_usd": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_usage_revenue_in_usd", "block_contents": ""}, "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_zuora_usage_revenue_in_usd": {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily_zuora_usage_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__chargify_organization_product_usage_revanue_daily/analytics___platform_stg__chargify_organization_product_usage_revanue_daily.md", "unique_id": "doc.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily_zuora_usage_revenue_in_usd", "block_contents": ""}, "doc.yoda.analytics___platform_stg__deprecated_packages": {"name": "analytics___platform_stg__deprecated_packages", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages", "block_contents": "This is a static table which holds all deprecated packages"}, "doc.yoda.analytics___platform_stg__deprecated_packages_category_id": {"name": "analytics___platform_stg__deprecated_packages_category_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_category_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_category_name": {"name": "analytics___platform_stg__deprecated_packages_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_category_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_dwh_created_at": {"name": "analytics___platform_stg__deprecated_packages_dwh_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_dwh_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_full_tags": {"name": "analytics___platform_stg__deprecated_packages_full_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_full_tags", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_annual": {"name": "analytics___platform_stg__deprecated_packages_is_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_annual", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_free": {"name": "analytics___platform_stg__deprecated_packages_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_free", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_growth": {"name": "analytics___platform_stg__deprecated_packages_is_growth", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_growth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_insights": {"name": "analytics___platform_stg__deprecated_packages_is_insights", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_insights", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_insights_annual": {"name": "analytics___platform_stg__deprecated_packages_is_insights_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_insights_annual", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_insights_free": {"name": "analytics___platform_stg__deprecated_packages_is_insights_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_insights_free", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_insights_ss": {"name": "analytics___platform_stg__deprecated_packages_is_insights_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_insights_ss", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_legacy": {"name": "analytics___platform_stg__deprecated_packages_is_legacy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_legacy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_loyalty": {"name": "analytics___platform_stg__deprecated_packages_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_loyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_loyalty_annual": {"name": "analytics___platform_stg__deprecated_packages_is_loyalty_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_loyalty_annual", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_loyalty_free": {"name": "analytics___platform_stg__deprecated_packages_is_loyalty_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_loyalty_free", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_loyalty_ss": {"name": "analytics___platform_stg__deprecated_packages_is_loyalty_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_loyalty_ss", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_premium": {"name": "analytics___platform_stg__deprecated_packages_is_premium", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_premium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_prime": {"name": "analytics___platform_stg__deprecated_packages_is_prime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_prime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_reviews": {"name": "analytics___platform_stg__deprecated_packages_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_reviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_reviews_annual": {"name": "analytics___platform_stg__deprecated_packages_is_reviews_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_reviews_annual", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_reviews_free": {"name": "analytics___platform_stg__deprecated_packages_is_reviews_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_reviews_free", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_reviews_ss": {"name": "analytics___platform_stg__deprecated_packages_is_reviews_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_reviews_ss", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_sms": {"name": "analytics___platform_stg__deprecated_packages_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_sms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_sms_annual": {"name": "analytics___platform_stg__deprecated_packages_is_sms_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_sms_annual", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_sms_free": {"name": "analytics___platform_stg__deprecated_packages_is_sms_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_sms_free", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_sms_ss": {"name": "analytics___platform_stg__deprecated_packages_is_sms_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_sms_ss", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_ss": {"name": "analytics___platform_stg__deprecated_packages_is_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_ss", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_subscriptions": {"name": "analytics___platform_stg__deprecated_packages_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_subscriptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_subscriptions_annual": {"name": "analytics___platform_stg__deprecated_packages_is_subscriptions_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_subscriptions_annual", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_subscriptions_free": {"name": "analytics___platform_stg__deprecated_packages_is_subscriptions_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_subscriptions_free", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_subscriptions_ss": {"name": "analytics___platform_stg__deprecated_packages_is_subscriptions_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_subscriptions_ss", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_vms": {"name": "analytics___platform_stg__deprecated_packages_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_vms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_vms_annual": {"name": "analytics___platform_stg__deprecated_packages_is_vms_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_vms_annual", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_vms_free": {"name": "analytics___platform_stg__deprecated_packages_is_vms_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_vms_free", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_is_vms_ss": {"name": "analytics___platform_stg__deprecated_packages_is_vms_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_is_vms_ss", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_old_plan_id": {"name": "analytics___platform_stg__deprecated_packages_old_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_old_plan_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_plan_description": {"name": "analytics___platform_stg__deprecated_packages_plan_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_plan_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_plan_display_name": {"name": "analytics___platform_stg__deprecated_packages_plan_display_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_plan_display_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_plan_id": {"name": "analytics___platform_stg__deprecated_packages_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_plan_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_plan_key": {"name": "analytics___platform_stg__deprecated_packages_plan_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_plan_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_plan_name": {"name": "analytics___platform_stg__deprecated_packages_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__deprecated_packages_tags": {"name": "analytics___platform_stg__deprecated_packages_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__deprecated_packages/analytics___platform_stg__deprecated_packages.md", "unique_id": "doc.yoda.analytics___platform_stg__deprecated_packages_tags", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27": {"name": "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "block_contents": "Static table containing date of onboarding call per product per organization.\nUsed for start_date of is_customer_care indicator before 2023-08-27\n[Granularity: organization_key | account_id | product_family_group]"}, "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_account_id": {"name": "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_account_id", "block_contents": "sf_account_id"}, "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_dwh_updated_at": {"name": "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_dwh_updated_at", "block_contents": "last saved at"}, "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_onboarding_call_date": {"name": "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_onboarding_call_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_onboarding_call_date", "block_contents": ""}, "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_organization_key": {"name": "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_product_family_group": {"name": "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27/analytics___platform_stg__organization_onboarding_call_pre_2023_08_27.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27_product_family_group", "block_contents": ""}, "doc.yoda.analytics___platform_stg__phone_code_country_mapping": {"name": "analytics___platform_stg__phone_code_country_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__phone_code_country_mapping", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___platform_stg__phone_code_country_mapping_area_code": {"name": "analytics___platform_stg__phone_code_country_mapping_area_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__phone_code_country_mapping_area_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__phone_code_country_mapping_country_name": {"name": "analytics___platform_stg__phone_code_country_mapping_country_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__phone_code_country_mapping_country_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__phone_code_country_mapping_dwh_updated_at": {"name": "analytics___platform_stg__phone_code_country_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__phone_code_country_mapping_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__phone_code_country_mapping_iso_country_code": {"name": "analytics___platform_stg__phone_code_country_mapping_iso_country_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__phone_code_country_mapping_iso_country_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__phone_code_country_mapping_phone_code": {"name": "analytics___platform_stg__phone_code_country_mapping_phone_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__phone_code_country_mapping_phone_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__phone_code_country_mapping_region_name": {"name": "analytics___platform_stg__phone_code_country_mapping_region_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__phone_code_country_mapping/analytics___platform_stg__phone_code_country_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__phone_code_country_mapping_region_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform__base_pixel_action_mapping": {"name": "analytics___platform__base_pixel_action_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.md", "unique_id": "doc.yoda.analytics___platform__base_pixel_action_mapping", "block_contents": "static mapping table of pixel actions to product | granularity and PK: product, action"}, "doc.yoda.analytics___platform_stg__pixel_action_mapping_action": {"name": "analytics___platform_stg__pixel_action_mapping_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_action_mapping_action", "block_contents": "pixel action: shown, loaded, clicked_on, etc."}, "doc.yoda.analytics___platform_stg__pixel_action_mapping_dwh_updated_at": {"name": "analytics___platform_stg__pixel_action_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_action_mapping_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__pixel_action_mapping_product": {"name": "analytics___platform_stg__pixel_action_mapping_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_action_mapping/analytics___platform_stg__pixel_action_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_action_mapping_product", "block_contents": "yotpo product: ugc, loyalty, etc."}, "doc.yoda.analytics___platform__base_pixel_category_mapping": {"name": "analytics___platform__base_pixel_category_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.md", "unique_id": "doc.yoda.analytics___platform__base_pixel_category_mapping", "block_contents": "static mapping table of pixel categories to product | granularity and PK: product, widget_version_type, category"}, "doc.yoda.analytics___platform_stg__pixel_category_mapping_category": {"name": "analytics___platform_stg__pixel_category_mapping_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_category_mapping_category", "block_contents": "pixel category"}, "doc.yoda.analytics___platform_stg__pixel_category_mapping_dwh_updated_at": {"name": "analytics___platform_stg__pixel_category_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_category_mapping_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__pixel_category_mapping_product": {"name": "analytics___platform_stg__pixel_category_mapping_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_category_mapping_product", "block_contents": "yotpo product: ugc, loyalty, etc."}, "doc.yoda.analytics___platform_stg__pixel_category_mapping_widget_version_type": {"name": "analytics___platform_stg__pixel_category_mapping_widget_version_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_category_mapping/analytics___platform_stg__pixel_category_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_category_mapping_widget_version_type", "block_contents": "widget version type: 2, 3"}, "doc.yoda.analytics___platform__base_pixel_duration_mapping": {"name": "analytics___platform__base_pixel_duration_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.md", "unique_id": "doc.yoda.analytics___platform__base_pixel_duration_mapping", "block_contents": "static mapping table of duration seconds pixel object loading into groups | granularity and PK: from_seconds, to_seconds, metric"}, "doc.yoda.analytics___platform_stg__pixel_duration_mapping_dwh_updated_at": {"name": "analytics___platform_stg__pixel_duration_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_duration_mapping_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__pixel_duration_mapping_from_seconds": {"name": "analytics___platform_stg__pixel_duration_mapping_from_seconds", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_duration_mapping_from_seconds", "block_contents": "lower bound of seconds"}, "doc.yoda.analytics___platform_stg__pixel_duration_mapping_metric": {"name": "analytics___platform_stg__pixel_duration_mapping_metric", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_duration_mapping_metric", "block_contents": "duration group"}, "doc.yoda.analytics___platform_stg__pixel_duration_mapping_to_seconds": {"name": "analytics___platform_stg__pixel_duration_mapping_to_seconds", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_duration_mapping/analytics___platform_stg__pixel_duration_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_duration_mapping_to_seconds", "block_contents": "upper bound of seconds"}, "doc.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping": {"name": "analytics___platform_stg__pixel_os_family_mobile_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping", "block_contents": "Static table for mapping operating systems names to mobile indicator | granularity and PK: os_family_name"}, "doc.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping_dwh_updated_at": {"name": "analytics___platform_stg__pixel_os_family_mobile_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping_is_mobile": {"name": "analytics___platform_stg__pixel_os_family_mobile_mapping_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping_is_mobile", "block_contents": "mobile indicator: 0/1"}, "doc.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping_os_family_name": {"name": "analytics___platform_stg__pixel_os_family_mobile_mapping_os_family_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__pixel_os_family_mobile_mapping/analytics___platform_stg__pixel_os_family_mobile_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping_os_family_name", "block_contents": "operating system name: ios, kindle, windows, etc. - primary key"}, "doc.yoda.analytics___platform_stg__product_plan_name_rank": {"name": "analytics___platform_stg__product_plan_name_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "unique_id": "doc.yoda.analytics___platform_stg__product_plan_name_rank", "block_contents": "static ranking table that ranks plan_name per product - this is used to calculate upgrades and duplicate rank.\nPK: plan_name"}, "doc.yoda.analytics___platform_stg__product_plan_name_rank_dwh_updated_at": {"name": "analytics___platform_stg__product_plan_name_rank_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "unique_id": "doc.yoda.analytics___platform_stg__product_plan_name_rank_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__product_plan_name_rank_plan_group": {"name": "analytics___platform_stg__product_plan_name_rank_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "unique_id": "doc.yoda.analytics___platform_stg__product_plan_name_rank_plan_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__product_plan_name_rank_plan_name": {"name": "analytics___platform_stg__product_plan_name_rank_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "unique_id": "doc.yoda.analytics___platform_stg__product_plan_name_rank_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__product_plan_name_rank_product_family": {"name": "analytics___platform_stg__product_plan_name_rank_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "unique_id": "doc.yoda.analytics___platform_stg__product_plan_name_rank_product_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__product_plan_name_rank_product_plan_rank": {"name": "analytics___platform_stg__product_plan_name_rank_product_plan_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__product_plan_name_rank/analytics___platform_stg__product_plan_name_rank.md", "unique_id": "doc.yoda.analytics___platform_stg__product_plan_name_rank_product_plan_rank", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions": {"name": "analytics___platform_stg__questions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___platform_stg__questions_account_id": {"name": "analytics___platform_stg__questions_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_allow_send": {"name": "analytics___platform_stg__questions_allow_send", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_allow_send", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_archived": {"name": "analytics___platform_stg__questions_archived", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_archived", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_asker_display_name": {"name": "analytics___platform_stg__questions_asker_display_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_asker_display_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_content": {"name": "analytics___platform_stg__questions_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_content", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_created_at": {"name": "analytics___platform_stg__questions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_id": {"name": "analytics___platform_stg__questions_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_is_logical_deleted": {"name": "analytics___platform_stg__questions_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_processing_time": {"name": "analytics___platform_stg__questions_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_products_app_id": {"name": "analytics___platform_stg__questions_products_app_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_products_app_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_source_question_id": {"name": "analytics___platform_stg__questions_source_question_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_source_question_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_source_type_id": {"name": "analytics___platform_stg__questions_source_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_source_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_ts_ms": {"name": "analytics___platform_stg__questions_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_updated_at": {"name": "analytics___platform_stg__questions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_upsolver_schema_version": {"name": "analytics___platform_stg__questions_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_user_id": {"name": "analytics___platform_stg__questions_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__questions_user_type": {"name": "analytics___platform_stg__questions_user_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__questions/analytics___platform_stg__questions.md", "unique_id": "doc.yoda.analytics___platform_stg__questions_user_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__saas_organization_daily_history": {"name": "analytics___platform_stg__saas_organization_daily_history", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_organization_daily_history", "block_contents": "static table from saas phase 1 - explodes dates from_to_time for each organization product family - shows only core plan and only one plan per product family. \nstatic table date < 01-03-2023"}, "doc.yoda.analytics___platform_stg__saas_organization_daily_history_date": {"name": "analytics___platform_stg__saas_organization_daily_history_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_organization_daily_history_date", "block_contents": "explode on date >= from_date and date < to_date"}, "doc.yoda.analytics___platform_stg__saas_organization_daily_history_dwh_updated_at": {"name": "analytics___platform_stg__saas_organization_daily_history_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_organization_daily_history_dwh_updated_at", "block_contents": "static table saved at"}, "doc.yoda.analytics___platform_stg__saas_organization_daily_history_is_annual": {"name": "analytics___platform_stg__saas_organization_daily_history_is_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_organization_daily_history_is_annual", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_organization_daily_history_is_free": {"name": "analytics___platform_stg__saas_organization_daily_history_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_organization_daily_history_is_free", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_organization_daily_history_is_self_service": {"name": "analytics___platform_stg__saas_organization_daily_history_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_organization_daily_history_is_self_service", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_organization_daily_history_organization_key": {"name": "analytics___platform_stg__saas_organization_daily_history_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_organization_daily_history_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_organization_daily_history_plan_id": {"name": "analytics___platform_stg__saas_organization_daily_history_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_organization_daily_history_plan_id", "block_contents": "FK: analytics___platform__plan"}, "doc.yoda.analytics___platform_stg__saas_organization_daily_history_plan_name": {"name": "analytics___platform_stg__saas_organization_daily_history_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_organization_daily_history_plan_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_organization_daily_history_product_family": {"name": "analytics___platform_stg__saas_organization_daily_history_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_organization_daily_history/analytics___platform_stg__saas_organization_daily_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_organization_daily_history_product_family", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history": {"name": "analytics___platform_stg__saas_store_plan_history", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history", "block_contents": "static table from saas phase 1 that holds for each store their plan over time. \nstatic table that holds data until 01-03-2023"}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_app_key": {"name": "analytics___platform_stg__saas_store_plan_history_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_app_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_dwh_updated_at": {"name": "analytics___platform_stg__saas_store_plan_history_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_from_date": {"name": "analytics___platform_stg__saas_store_plan_history_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_from_date", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_is_annual": {"name": "analytics___platform_stg__saas_store_plan_history_is_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_is_annual", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_is_core_plan": {"name": "analytics___platform_stg__saas_store_plan_history_is_core_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_is_core_plan", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_is_free": {"name": "analytics___platform_stg__saas_store_plan_history_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_is_free", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_is_sales_attributed": {"name": "analytics___platform_stg__saas_store_plan_history_is_sales_attributed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_is_sales_attributed", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_is_ss": {"name": "analytics___platform_stg__saas_store_plan_history_is_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_is_ss", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_organization_key": {"name": "analytics___platform_stg__saas_store_plan_history_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_plan_id": {"name": "analytics___platform_stg__saas_store_plan_history_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_plan_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_plan_name": {"name": "analytics___platform_stg__saas_store_plan_history_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_plan_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_product_name": {"name": "analytics___platform_stg__saas_store_plan_history_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_product_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__saas_store_plan_history_to_date": {"name": "analytics___platform_stg__saas_store_plan_history_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__saas_store_plan_history/analytics___platform_stg__saas_store_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__saas_store_plan_history_to_date", "block_contents": ""}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping", "block_contents": "Static mapping table between shopify billing unidentified charge names (plan name) and plan metrics.\nGranularity: product_family|charge_name"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_charge_name": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_charge_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_charge_name", "block_contents": "charge_name as passed from shopify billing (should represent plan name)"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_dwh_updated_at": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_email": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_email", "block_contents": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_free": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_free", "block_contents": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_full_service": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_is_full_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_full_service", "block_contents": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_loyalty": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_loyalty", "block_contents": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_reviews": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_reviews", "block_contents": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_self_service": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_is_self_service", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_self_service", "block_contents": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_sms": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_sms", "block_contents": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_subscriptions": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_subscriptions", "block_contents": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_vms": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_is_vms", "block_contents": "according to analytics___platform__store_plan_daily convention.\nCAN BE NULL"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_plan_id": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_plan_id", "block_contents": "FK: analytics___platform__plan"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_plan_name": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_plan_name", "block_contents": "plan_name according to analytics___platform__store_plan_daily convention.\nCAN BE NULL"}, "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_product_family": {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__shopify_billing_charge_plan_mapping/analytics___platform_stg__shopify_billing_charge_plan_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping_product_family", "block_contents": "UGC|SMS|Loyalty"}, "doc.yoda.analytics___platform_stg__similar_stores": {"name": "analytics___platform_stg__similar_stores", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_stores", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___platform_stg__similar_stores_category": {"name": "analytics___platform_stg__similar_stores_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_stores_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__similar_stores_cluster_id": {"name": "analytics___platform_stg__similar_stores_cluster_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_stores_cluster_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__similar_stores_domain": {"name": "analytics___platform_stg__similar_stores_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_stores_domain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__similar_stores_manual_category": {"name": "analytics___platform_stg__similar_stores_manual_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_stores_manual_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__similar_stores_predicted_category": {"name": "analytics___platform_stg__similar_stores_predicted_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_stores_predicted_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__similar_stores_similar_stores": {"name": "analytics___platform_stg__similar_stores_similar_stores", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_stores_similar_stores", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__similar_stores_store_embedding": {"name": "analytics___platform_stg__similar_stores_store_embedding", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_stores_store_embedding", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__similar_stores_store_id": {"name": "analytics___platform_stg__similar_stores_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__similar_stores/analytics___platform_stg__similar_stores.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_stores_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping": {"name": "analytics___platform_stg__sms_loyalty_synergy_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping", "block_contents": "Static table of synergies mapping between sms and loyalty"}, "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping_dwh_updated_at": {"name": "analytics___platform_stg__sms_loyalty_synergy_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping_source_column_name": {"name": "analytics___platform_stg__sms_loyalty_synergy_mapping_source_column_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping_source_column_name", "block_contents": "synergy column name for filter"}, "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping_source_value": {"name": "analytics___platform_stg__sms_loyalty_synergy_mapping_source_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping_source_value", "block_contents": "synergy column value for filter"}, "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping_synergy_category_name": {"name": "analytics___platform_stg__sms_loyalty_synergy_mapping_synergy_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping_synergy_category_name", "block_contents": "synergy category name"}, "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping_synergy_name": {"name": "analytics___platform_stg__sms_loyalty_synergy_mapping_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__sms_loyalty_synergy_mapping/analytics___platform_stg__sms_loyalty_synergy_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping_synergy_name", "block_contents": "synergy name"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history": {"name": "analytics___platform_stg__subscriptions_contract_history", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history", "block_contents": "Contract over time historical data with syntetic events for missing active events | PK: from_time, app_key, contract_id, status_id"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_app_key": {"name": "analytics___platform_stg__subscriptions_contract_history_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_billing_frequency_interval": {"name": "analytics___platform_stg__subscriptions_contract_history_billing_frequency_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_billing_frequency_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_billing_frequency_interval_count": {"name": "analytics___platform_stg__subscriptions_contract_history_billing_frequency_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_billing_frequency_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_billing_frequency_interval_name": {"name": "analytics___platform_stg__subscriptions_contract_history_billing_frequency_interval_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_billing_frequency_interval_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_contract_id": {"name": "analytics___platform_stg__subscriptions_contract_history_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_delivery_frequency_interval": {"name": "analytics___platform_stg__subscriptions_contract_history_delivery_frequency_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_delivery_frequency_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_delivery_frequency_interval_count": {"name": "analytics___platform_stg__subscriptions_contract_history_delivery_frequency_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_delivery_frequency_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_delivery_frequency_interval_name": {"name": "analytics___platform_stg__subscriptions_contract_history_delivery_frequency_interval_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_delivery_frequency_interval_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_from_time": {"name": "analytics___platform_stg__subscriptions_contract_history_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_from_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_is_migrated_contract": {"name": "analytics___platform_stg__subscriptions_contract_history_is_migrated_contract", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_is_migrated_contract", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_is_prepaid": {"name": "analytics___platform_stg__subscriptions_contract_history_is_prepaid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_is_prepaid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_status_id": {"name": "analytics___platform_stg__subscriptions_contract_history_status_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_status_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_status_name": {"name": "analytics___platform_stg__subscriptions_contract_history_status_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_status_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_status_started_at": {"name": "analytics___platform_stg__subscriptions_contract_history_status_started_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_status_started_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__subscriptions_contract_history_to_time": {"name": "analytics___platform_stg__subscriptions_contract_history_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "original_file_path": "models/analytics/platform/staging/base/analytics___platform_stg__subscriptions_contract_history/analytics___platform_stg__subscriptions_contract_history.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_contract_history_to_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___platform_stg__account": {"name": "analytics___platform_stg__account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account", "block_contents": "Holds all yotpo platform accounts | PK & Granularity: account_id"}, "doc.yoda.analytics___platform_stg__account_account_created_at": {"name": "analytics___platform_stg__account_account_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_account_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_account_domain": {"name": "analytics___platform_stg__account_account_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_account_domain", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_account_id": {"name": "analytics___platform_stg__account_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_account_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_account_name": {"name": "analytics___platform_stg__account_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_account_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_app_key": {"name": "analytics___platform_stg__account_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_app_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_category_id": {"name": "analytics___platform_stg__account_category_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_category_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_dwh_updated_at": {"name": "analytics___platform_stg__account_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_is_active": {"name": "analytics___platform_stg__account_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_is_active", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_is_test": {"name": "analytics___platform_stg__account_is_test", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_is_test", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_organization_id": {"name": "analytics___platform_stg__account_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_store_created_at": {"name": "analytics___platform_stg__account_store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_store_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_store_domain": {"name": "analytics___platform_stg__account_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_store_domain", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_store_language": {"name": "analytics___platform_stg__account_store_language", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_store_language", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_store_name": {"name": "analytics___platform_stg__account_store_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account/analytics___platform_stg__account.md", "unique_id": "doc.yoda.analytics___platform_stg__account_store_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform": {"name": "analytics___platform_stg__account_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform", "block_contents": "Modeled staging table of account and their platform\nGranularity: account and its platform\nPrimary Key: account_platform_id"}, "doc.yoda.analytics___platform_stg__account_platform_account_api_name": {"name": "analytics___platform_stg__account_platform_account_api_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_account_api_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform_account_id": {"name": "analytics___platform_stg__account_platform_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_account_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform_account_platform_created_at": {"name": "analytics___platform_stg__account_platform_account_platform_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_account_platform_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform_account_platform_id": {"name": "analytics___platform_stg__account_platform_account_platform_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_account_platform_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform_account_platform_updated_at": {"name": "analytics___platform_stg__account_platform_account_platform_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_account_platform_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform_dwh_updated_at": {"name": "analytics___platform_stg__account_platform_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform_external_account_id": {"name": "analytics___platform_stg__account_platform_external_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_external_account_id", "block_contents": "ID of the FK: platform_store"}, "doc.yoda.analytics___platform_stg__account_platform_external_shop_domain": {"name": "analytics___platform_stg__account_platform_external_shop_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_external_shop_domain", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform_is_valid_credentials": {"name": "analytics___platform_stg__account_platform_is_valid_credentials", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_is_valid_credentials", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform_plan_name": {"name": "analytics___platform_stg__account_platform_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_plan_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform_platform_plan_name": {"name": "analytics___platform_stg__account_platform_platform_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_platform_plan_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform_platform_type_id": {"name": "analytics___platform_stg__account_platform_platform_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_platform_type_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__account_platform_store_api_name": {"name": "analytics___platform_stg__account_platform_store_api_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__account_platform/analytics___platform_stg__account_platform.md", "unique_id": "doc.yoda.analytics___platform_stg__account_platform_store_api_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__category": {"name": "analytics___platform_stg__category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.md", "unique_id": "doc.yoda.analytics___platform_stg__category", "block_contents": "Modeled view which holds all platforms' categories\nPK & Granularity: category_id"}, "doc.yoda.analytics___platform_stg__category_category_id": {"name": "analytics___platform_stg__category_category_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.md", "unique_id": "doc.yoda.analytics___platform_stg__category_category_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__category_dwh_updated_at": {"name": "analytics___platform_stg__category_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.md", "unique_id": "doc.yoda.analytics___platform_stg__category_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__category_store_category": {"name": "analytics___platform_stg__category_store_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__category/analytics___platform_stg__category.md", "unique_id": "doc.yoda.analytics___platform_stg__category_store_category", "block_contents": ""}, "doc.yoda.analytics___platform_stg__currency_exchange_rate": {"name": "analytics___platform_stg__currency_exchange_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.md", "unique_id": "doc.yoda.analytics___platform_stg__currency_exchange_rate", "block_contents": "Modeled view of exchange rates between 2 currencies in a date level. | Granularity & Primary Key: currency_exchange_date, from_currency_symbol, to_currency_symbol."}, "doc.yoda.analytics___platform_stg__currency_exchange_rate_conversion_rate": {"name": "analytics___platform_stg__currency_exchange_rate_conversion_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.md", "unique_id": "doc.yoda.analytics___platform_stg__currency_exchange_rate_conversion_rate", "block_contents": "The conversion rate between the 2 currencies"}, "doc.yoda.analytics___platform_stg__currency_exchange_rate_currency_exchange_date": {"name": "analytics___platform_stg__currency_exchange_rate_currency_exchange_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.md", "unique_id": "doc.yoda.analytics___platform_stg__currency_exchange_rate_currency_exchange_date", "block_contents": "The exchange date"}, "doc.yoda.analytics___platform_stg__currency_exchange_rate_from_currency_symbol": {"name": "analytics___platform_stg__currency_exchange_rate_from_currency_symbol", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.md", "unique_id": "doc.yoda.analytics___platform_stg__currency_exchange_rate_from_currency_symbol", "block_contents": "from currency symbol, e.g: USD"}, "doc.yoda.analytics___platform_stg__currency_exchange_rate_to_currency_symbol": {"name": "analytics___platform_stg__currency_exchange_rate_to_currency_symbol", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__currency_exchange_rate/analytics___platform_stg__currency_exchange_rate.md", "unique_id": "doc.yoda.analytics___platform_stg__currency_exchange_rate_to_currency_symbol", "block_contents": "to currency symbol: USD, GBP, PYG, MDL, etc."}, "doc.yoda.analytics___platform_stg__feature": {"name": "analytics___platform_stg__feature", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "unique_id": "doc.yoda.analytics___platform_stg__feature", "block_contents": "Modeled view for features source.\nPK: feature_id"}, "doc.yoda.analytics___platform_stg__feature_created_at": {"name": "analytics___platform_stg__feature_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "unique_id": "doc.yoda.analytics___platform_stg__feature_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__feature_default_user_enabled": {"name": "analytics___platform_stg__feature_default_user_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "unique_id": "doc.yoda.analytics___platform_stg__feature_default_user_enabled", "block_contents": "is enabled by default"}, "doc.yoda.analytics___platform_stg__feature_description": {"name": "analytics___platform_stg__feature_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "unique_id": "doc.yoda.analytics___platform_stg__feature_description", "block_contents": ""}, "doc.yoda.analytics___platform_stg__feature_feature_id": {"name": "analytics___platform_stg__feature_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "unique_id": "doc.yoda.analytics___platform_stg__feature_feature_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__feature_feature_key": {"name": "analytics___platform_stg__feature_feature_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "unique_id": "doc.yoda.analytics___platform_stg__feature_feature_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__feature_feature_name": {"name": "analytics___platform_stg__feature_feature_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "unique_id": "doc.yoda.analytics___platform_stg__feature_feature_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__feature_is_default_user_enabled": {"name": "analytics___platform_stg__feature_is_default_user_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "unique_id": "doc.yoda.analytics___platform_stg__feature_is_default_user_enabled", "block_contents": "cailesce(default_user_enabled,0)"}, "doc.yoda.analytics___platform_stg__feature_new": {"name": "analytics___platform_stg__feature_new", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "unique_id": "doc.yoda.analytics___platform_stg__feature_new", "block_contents": ""}, "doc.yoda.analytics___platform_stg__feature_owner_type": {"name": "analytics___platform_stg__feature_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "unique_id": "doc.yoda.analytics___platform_stg__feature_owner_type", "block_contents": "owner type (Organization, User, Account)"}, "doc.yoda.analytics___platform_stg__feature_updated_at": {"name": "analytics___platform_stg__feature_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__feature/analytics___platform_stg__feature.md", "unique_id": "doc.yoda.analytics___platform_stg__feature_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__fulfillment": {"name": "analytics___platform_stg__fulfillment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment", "block_contents": "Modeled view for all platform orders and their fulfillment status\nGK: fulfillment_id"}, "doc.yoda.analytics___platform_stg__fulfillment_created_at": {"name": "analytics___platform_stg__fulfillment_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__fulfillment_external_id": {"name": "analytics___platform_stg__fulfillment_external_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_external_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__fulfillment_fulfillment_at": {"name": "analytics___platform_stg__fulfillment_fulfillment_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_fulfillment_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__fulfillment_fulfillment_date": {"name": "analytics___platform_stg__fulfillment_fulfillment_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_fulfillment_date", "block_contents": ""}, "doc.yoda.analytics___platform_stg__fulfillment_fulfillment_id": {"name": "analytics___platform_stg__fulfillment_fulfillment_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_fulfillment_id", "block_contents": "Unique key for this table"}, "doc.yoda.analytics___platform_stg__fulfillment_fulfillment_status_type_id": {"name": "analytics___platform_stg__fulfillment_fulfillment_status_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_fulfillment_status_type_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__fulfillment_order_id": {"name": "analytics___platform_stg__fulfillment_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_order_id", "block_contents": "The order_id which linkes the fulfillment_id"}, "doc.yoda.analytics___platform_stg__fulfillment_shipment_status_type_id": {"name": "analytics___platform_stg__fulfillment_shipment_status_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_shipment_status_type_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__fulfillment_tracking_company": {"name": "analytics___platform_stg__fulfillment_tracking_company", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_tracking_company", "block_contents": ""}, "doc.yoda.analytics___platform_stg__fulfillment_tracking_number": {"name": "analytics___platform_stg__fulfillment_tracking_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_tracking_number", "block_contents": ""}, "doc.yoda.analytics___platform_stg__fulfillment_tracking_url": {"name": "analytics___platform_stg__fulfillment_tracking_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_tracking_url", "block_contents": ""}, "doc.yoda.analytics___platform_stg__fulfillment_updated_at": {"name": "analytics___platform_stg__fulfillment_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__fulfillment/analytics___platform_stg__fulfillment.md", "unique_id": "doc.yoda.analytics___platform_stg__fulfillment_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__home_screen_section": {"name": "analytics___platform_stg__home_screen_section", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_section", "block_contents": "Modeled view of home screen sections | PK and granularity: section_id"}, "doc.yoda.analytics___platform_stg__home_screen_section_created_at": {"name": "analytics___platform_stg__home_screen_section_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_section_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___platform_stg__home_screen_section_created_date": {"name": "analytics___platform_stg__home_screen_section_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_section_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___platform_stg__home_screen_section_section_id": {"name": "analytics___platform_stg__home_screen_section_section_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_section_section_id", "block_contents": "section unique identifier - primary key"}, "doc.yoda.analytics___platform_stg__home_screen_section_section_name": {"name": "analytics___platform_stg__home_screen_section_section_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_section_section_name", "block_contents": "section name: recommendations, synergies, etc."}, "doc.yoda.analytics___platform_stg__home_screen_section_updated_at": {"name": "analytics___platform_stg__home_screen_section_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_section_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___platform_stg__home_screen_section_updated_date": {"name": "analytics___platform_stg__home_screen_section_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_section/analytics___platform_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_section_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___platform_stg__home_screen_widget": {"name": "analytics___platform_stg__home_screen_widget", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_widget", "block_contents": "Modeled view of home screen widgets | PK and granularity: widget_id"}, "doc.yoda.analytics___platform_stg__home_screen_widget_created_at": {"name": "analytics___platform_stg__home_screen_widget_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_widget_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___platform_stg__home_screen_widget_created_date": {"name": "analytics___platform_stg__home_screen_widget_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_widget_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___platform_stg__home_screen_widget_section_id": {"name": "analytics___platform_stg__home_screen_widget_section_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_widget_section_id", "block_contents": "section unique identifier"}, "doc.yoda.analytics___platform_stg__home_screen_widget_updated_at": {"name": "analytics___platform_stg__home_screen_widget_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_widget_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___platform_stg__home_screen_widget_updated_date": {"name": "analytics___platform_stg__home_screen_widget_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_widget_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___platform_stg__home_screen_widget_widget_id": {"name": "analytics___platform_stg__home_screen_widget_widget_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_widget_widget_id", "block_contents": "widget unique identifier - primary key"}, "doc.yoda.analytics___platform_stg__home_screen_widget_widget_name": {"name": "analytics___platform_stg__home_screen_widget_widget_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__home_screen_widget/analytics___platform_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___platform_stg__home_screen_widget_widget_name", "block_contents": "widget name: popup_form, social_opt_in, etc."}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three", "block_contents": "Modeled view of widget version 3 pixel events for loyalty stores | Granularity & Primary Key: event_id, event_row_rank"}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_action": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_action", "block_contents": "user action: shown, loaded, clicked_on, etc."}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_category": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_category", "block_contents": "widget category: products-redemption-widget, hero-section, etc."}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_date": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_date", "block_contents": "date of the pixel event"}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_domain_user_id": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three_domain_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_domain_user_id", "block_contents": "End user cookie identifier created on behalf of the store by Yotpo. It is unique within a store, and cannot be used to identify the same shopper in different stores. Its lifecycle is 2 years."}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_event_id": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_event_id", "block_contents": "event unique identifier"}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_event_row_rank": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three_event_row_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_event_row_rank", "block_contents": "event's row ranking by processing time"}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_fingerprint": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_fingerprint", "block_contents": "end user fingerprint"}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_guid": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three_guid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_guid", "block_contents": "loyalty merchant unique identifier"}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_property": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three_property", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_three/analytics___platform_stg__loyalty_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three_property", "block_contents": "get_reward_button_clicked, demption_completed, etc."}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two", "block_contents": "Modeled view of widget version 2 pixel events for loyalty stores | Granularity & Primary Key: event_id, event_row_rank"}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_action": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_action", "block_contents": "user action: shown, loaded, clicked_on, etc."}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_category": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_category", "block_contents": "widget category: referral-widget-page, offline-redemptions-widget, etc."}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_date": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_date", "block_contents": "date of the pixel event"}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_domain_user_id": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two_domain_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_domain_user_id", "block_contents": "End user cookie identifier created on behalf of the store by Yotpo. It is unique within a store, and cannot be used to identify the same shopper in different stores. Its lifecycle is 2 years."}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_event_id": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_event_id", "block_contents": "event unique identifier"}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_event_row_rank": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two_event_row_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_event_row_rank", "block_contents": "event's row ranking by processing time"}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_fingerprint": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_fingerprint", "block_contents": "end user fingerprint"}, "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_guid": {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two_guid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__loyalty_pixel_widget_v_two/analytics___platform_stg__loyalty_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two_guid", "block_contents": "loyalty merchant unique identifier"}, "doc.yoda.analytics___platform_stg__order_line": {"name": "analytics___platform_stg__order_line", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "unique_id": "doc.yoda.analytics___platform_stg__order_line", "block_contents": "Modeled lean incremental table of order lines. \nPK and granularity: order_line_id"}, "doc.yoda.analytics___platform_stg__order_line_cost": {"name": "analytics___platform_stg__order_line_cost", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "unique_id": "doc.yoda.analytics___platform_stg__order_line_cost", "block_contents": "cost amount"}, "doc.yoda.analytics___platform_stg__order_line_dwh_updated_at": {"name": "analytics___platform_stg__order_line_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "unique_id": "doc.yoda.analytics___platform_stg__order_line_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___platform_stg__order_line_is_coupon_used": {"name": "analytics___platform_stg__order_line_is_coupon_used", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "unique_id": "doc.yoda.analytics___platform_stg__order_line_is_coupon_used", "block_contents": "coupon used indicator"}, "doc.yoda.analytics___platform_stg__order_line_order_id": {"name": "analytics___platform_stg__order_line_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "unique_id": "doc.yoda.analytics___platform_stg__order_line_order_id", "block_contents": "order id"}, "doc.yoda.analytics___platform_stg__order_line_order_line_id": {"name": "analytics___platform_stg__order_line_order_line_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "unique_id": "doc.yoda.analytics___platform_stg__order_line_order_line_id", "block_contents": "order line id - PK"}, "doc.yoda.analytics___platform_stg__order_line_product_id": {"name": "analytics___platform_stg__order_line_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "unique_id": "doc.yoda.analytics___platform_stg__order_line_product_id", "block_contents": "product id"}, "doc.yoda.analytics___platform_stg__order_line_quantity": {"name": "analytics___platform_stg__order_line_quantity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "unique_id": "doc.yoda.analytics___platform_stg__order_line_quantity", "block_contents": "quantity"}, "doc.yoda.analytics___platform_stg__order_line_subtotal_price": {"name": "analytics___platform_stg__order_line_subtotal_price", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "unique_id": "doc.yoda.analytics___platform_stg__order_line_subtotal_price", "block_contents": "subtotal price"}, "doc.yoda.analytics___platform_stg__order_line_updated_date": {"name": "analytics___platform_stg__order_line_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "unique_id": "doc.yoda.analytics___platform_stg__order_line_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___platform_stg__order_line_variant_id": {"name": "analytics___platform_stg__order_line_variant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__order_line/analytics___platform_stg__order_line.md", "unique_id": "doc.yoda.analytics___platform_stg__order_line_variant_id", "block_contents": "variant id"}, "doc.yoda.analytics___platform_stg__organization": {"name": "analytics___platform_stg__organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "unique_id": "doc.yoda.analytics___platform_stg__organization", "block_contents": "Modeled view for organization object"}, "doc.yoda.analytics___platform_stg__organization_dwh_updated_at": {"name": "analytics___platform_stg__organization_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__organization_organization_created_at": {"name": "analytics___platform_stg__organization_organization_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_organization_created_at", "block_contents": "timestamp for organization creation"}, "doc.yoda.analytics___platform_stg__organization_organization_id": {"name": "analytics___platform_stg__organization_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_organization_id", "block_contents": "organization id"}, "doc.yoda.analytics___platform_stg__organization_organization_key": {"name": "analytics___platform_stg__organization_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_organization_key", "block_contents": "organization key"}, "doc.yoda.analytics___platform_stg__organization_organization_name": {"name": "analytics___platform_stg__organization_organization_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_organization_name", "block_contents": "organization name"}, "doc.yoda.analytics___platform_stg__organization_organization_updated_at": {"name": "analytics___platform_stg__organization_organization_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__organization/analytics___platform_stg__organization.md", "unique_id": "doc.yoda.analytics___platform_stg__organization_organization_updated_at", "block_contents": "timestamp for organization update"}, "doc.yoda.analytics___platform_stg__owner_feature": {"name": "analytics___platform_stg__owner_feature", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature", "block_contents": "Modeled view for owners_features source.\nPK: owner_feature_id"}, "doc.yoda.analytics___platform_stg__owner_feature_created_at": {"name": "analytics___platform_stg__owner_feature_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__owner_feature_disabled": {"name": "analytics___platform_stg__owner_feature_disabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_disabled", "block_contents": "If is_diabled = 1 the user is not allowed to connect"}, "doc.yoda.analytics___platform_stg__owner_feature_feature_id": {"name": "analytics___platform_stg__owner_feature_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_feature_id", "block_contents": "FK - platform_stg__features"}, "doc.yoda.analytics___platform_stg__owner_feature_floating": {"name": "analytics___platform_stg__owner_feature_floating", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_floating", "block_contents": ""}, "doc.yoda.analytics___platform_stg__owner_feature_is_disabled": {"name": "analytics___platform_stg__owner_feature_is_disabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_is_disabled", "block_contents": "coalesce(disabled,0)"}, "doc.yoda.analytics___platform_stg__owner_feature_is_floating": {"name": "analytics___platform_stg__owner_feature_is_floating", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_is_floating", "block_contents": "coalesce(floating,0)"}, "doc.yoda.analytics___platform_stg__owner_feature_is_organization_owner": {"name": "analytics___platform_stg__owner_feature_is_organization_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_is_organization_owner", "block_contents": "is the owner of the feature is organization"}, "doc.yoda.analytics___platform_stg__owner_feature_is_store_owner": {"name": "analytics___platform_stg__owner_feature_is_store_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_is_store_owner", "block_contents": "is the owner_id of the feature is store_id"}, "doc.yoda.analytics___platform_stg__owner_feature_is_user_enabled": {"name": "analytics___platform_stg__owner_feature_is_user_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_is_user_enabled", "block_contents": "coalesce(user_enabled,0)"}, "doc.yoda.analytics___platform_stg__owner_feature_is_user_owner": {"name": "analytics___platform_stg__owner_feature_is_user_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_is_user_owner", "block_contents": "is the owner of the feature is user"}, "doc.yoda.analytics___platform_stg__owner_feature_owner_feature_id": {"name": "analytics___platform_stg__owner_feature_owner_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_owner_feature_id", "block_contents": "FK - platform_stg__owners_features"}, "doc.yoda.analytics___platform_stg__owner_feature_owner_id": {"name": "analytics___platform_stg__owner_feature_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_owner_id", "block_contents": "id of the feature owner according to owner type"}, "doc.yoda.analytics___platform_stg__owner_feature_owner_type": {"name": "analytics___platform_stg__owner_feature_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_owner_type", "block_contents": "owner type (Organization, User, Account)"}, "doc.yoda.analytics___platform_stg__owner_feature_updated_at": {"name": "analytics___platform_stg__owner_feature_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__owner_feature_user_enabled": {"name": "analytics___platform_stg__owner_feature_user_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature/analytics___platform_stg__owner_feature.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_user_enabled", "block_contents": "User/CSM enabled feature"}, "doc.yoda.analytics___platform_stg__owner_feature_setting": {"name": "analytics___platform_stg__owner_feature_setting", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_setting", "block_contents": "Modeled view for owner_feature_settings source. \nGranularity: owner_feature_id | key | value"}, "doc.yoda.analytics___platform_stg__owner_feature_setting_created_at": {"name": "analytics___platform_stg__owner_feature_setting_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_setting_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__owner_feature_setting_floating": {"name": "analytics___platform_stg__owner_feature_setting_floating", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_setting_floating", "block_contents": ""}, "doc.yoda.analytics___platform_stg__owner_feature_setting_is_floating": {"name": "analytics___platform_stg__owner_feature_setting_is_floating", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_setting_is_floating", "block_contents": "coalesce(floating,0)"}, "doc.yoda.analytics___platform_stg__owner_feature_setting_key": {"name": "analytics___platform_stg__owner_feature_setting_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_setting_key", "block_contents": "feature settings name"}, "doc.yoda.analytics___platform_stg__owner_feature_setting_owner_feature_id": {"name": "analytics___platform_stg__owner_feature_setting_owner_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_setting_owner_feature_id", "block_contents": "FK - platform_stg__owners_features"}, "doc.yoda.analytics___platform_stg__owner_feature_setting_updated_at": {"name": "analytics___platform_stg__owner_feature_setting_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_setting_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__owner_feature_setting_value": {"name": "analytics___platform_stg__owner_feature_setting_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_feature_setting/analytics___platform_stg__owner_feature_setting.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_feature_setting_value", "block_contents": "feature settings value"}, "doc.yoda.analytics___platform_stg__owner_plan": {"name": "analytics___platform_stg__owner_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan", "block_contents": "Modeled view for owner_package source"}, "doc.yoda.analytics___platform_stg__owner_plan_created_at": {"name": "analytics___platform_stg__owner_plan_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_created_at", "block_contents": "Timestamp for when package was created"}, "doc.yoda.analytics___platform_stg__owner_plan_is_organization_owner": {"name": "analytics___platform_stg__owner_plan_is_organization_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_is_organization_owner", "block_contents": "is the owner of the package is organization"}, "doc.yoda.analytics___platform_stg__owner_plan_is_store_owner": {"name": "analytics___platform_stg__owner_plan_is_store_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_is_store_owner", "block_contents": "is the owner of the package is store"}, "doc.yoda.analytics___platform_stg__owner_plan_owner_id": {"name": "analytics___platform_stg__owner_plan_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_owner_id", "block_contents": "id of the plan owner:\n- if organization: organization_key\n- if store: app_key"}, "doc.yoda.analytics___platform_stg__owner_plan_owner_plan_id": {"name": "analytics___platform_stg__owner_plan_owner_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_owner_plan_id", "block_contents": "id of the owner-plan event"}, "doc.yoda.analytics___platform_stg__owner_plan_owner_type": {"name": "analytics___platform_stg__owner_plan_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_owner_type", "block_contents": "owner type (organization or store)"}, "doc.yoda.analytics___platform_stg__owner_plan_plan_id": {"name": "analytics___platform_stg__owner_plan_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_plan_id", "block_contents": "plan id"}, "doc.yoda.analytics___platform_stg__owner_plan_started_at": {"name": "analytics___platform_stg__owner_plan_started_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_started_at", "block_contents": "plan started at"}, "doc.yoda.analytics___platform_stg__owner_plan_updated_at": {"name": "analytics___platform_stg__owner_plan_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan/analytics___platform_stg__owner_plan.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_updated_at", "block_contents": "Timestamp for when package was updated"}, "doc.yoda.analytics___platform_stg__owner_plan_event_details": {"name": "analytics___platform_stg__owner_plan_event_details", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_event_details", "block_contents": "Incremental table that keeps historical data for each owner(Organization or Store) and his plan per product\nFYI: The plans will not Include common plans (category 6)"}, "doc.yoda.analytics___platform_stg__owner_plan_event_details_category_id": {"name": "analytics___platform_stg__owner_plan_event_details_category_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_event_details_category_id", "block_contents": "id of the category (product family)\nCategory 6 will not be included in this population"}, "doc.yoda.analytics___platform_stg__owner_plan_event_details_dwh_updated_at": {"name": "analytics___platform_stg__owner_plan_event_details_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_event_details_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__owner_plan_event_details_is_organization_owner": {"name": "analytics___platform_stg__owner_plan_event_details_is_organization_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_event_details_is_organization_owner", "block_contents": "Indicates if the owner is organization then 1 else 0"}, "doc.yoda.analytics___platform_stg__owner_plan_event_details_is_store_owner": {"name": "analytics___platform_stg__owner_plan_event_details_is_store_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_event_details_is_store_owner", "block_contents": "Indicates if the owner is store then 1 else 0"}, "doc.yoda.analytics___platform_stg__owner_plan_event_details_owner_id": {"name": "analytics___platform_stg__owner_plan_event_details_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_event_details_owner_id", "block_contents": "id of the plan owner:\n- if organization: organization_key\n- if store: app_key"}, "doc.yoda.analytics___platform_stg__owner_plan_event_details_owner_plan_id": {"name": "analytics___platform_stg__owner_plan_event_details_owner_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_event_details_owner_plan_id", "block_contents": "generated id from owner_plan table. identicator for plan per owner."}, "doc.yoda.analytics___platform_stg__owner_plan_event_details_plan_event_created_at": {"name": "analytics___platform_stg__owner_plan_event_details_plan_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_event_details_plan_event_created_at", "block_contents": "Timestamp of when the plan was created"}, "doc.yoda.analytics___platform_stg__owner_plan_event_details_plan_id": {"name": "analytics___platform_stg__owner_plan_event_details_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_event_details_plan_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__owner_plan_event_details_plan_name": {"name": "analytics___platform_stg__owner_plan_event_details_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_event_details_plan_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__owner_plan_event_details_product_family": {"name": "analytics___platform_stg__owner_plan_event_details_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_event_details/analytics___platform_stg__owner_plan_event_details.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_event_details_product_family", "block_contents": ""}, "doc.yoda.analytics___platform_stg__owner_plan_history": {"name": "analytics___platform_stg__owner_plan_history", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history", "block_contents": "Modeled view for platform_stg__owners_packages_history source.\nMost commonly used for tracking deleted owner_plan_id. PK: owner_plan_id"}, "doc.yoda.analytics___platform_stg__owner_plan_history_created_at": {"name": "analytics___platform_stg__owner_plan_history_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history_created_at", "block_contents": "owner_plan_id created Timestamp"}, "doc.yoda.analytics___platform_stg__owner_plan_history_deleted_at": {"name": "analytics___platform_stg__owner_plan_history_deleted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history_deleted_at", "block_contents": "owner_plan_id deleted Timestamp"}, "doc.yoda.analytics___platform_stg__owner_plan_history_is_deleted": {"name": "analytics___platform_stg__owner_plan_history_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history_is_deleted", "block_contents": "is owner_plan_id deleted"}, "doc.yoda.analytics___platform_stg__owner_plan_history_is_organization_owner": {"name": "analytics___platform_stg__owner_plan_history_is_organization_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history_is_organization_owner", "block_contents": "is the owner of the package is organization"}, "doc.yoda.analytics___platform_stg__owner_plan_history_is_store_owner": {"name": "analytics___platform_stg__owner_plan_history_is_store_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history_is_store_owner", "block_contents": "is the owner of the package is store"}, "doc.yoda.analytics___platform_stg__owner_plan_history_owner_id": {"name": "analytics___platform_stg__owner_plan_history_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history_owner_id", "block_contents": "id of the plan owner:\n- if organization: organization_key\n- if store: app_key"}, "doc.yoda.analytics___platform_stg__owner_plan_history_owner_plan_id": {"name": "analytics___platform_stg__owner_plan_history_owner_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history_owner_plan_id", "block_contents": "PK"}, "doc.yoda.analytics___platform_stg__owner_plan_history_owner_type": {"name": "analytics___platform_stg__owner_plan_history_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history_owner_type", "block_contents": "owner type (organization or store)"}, "doc.yoda.analytics___platform_stg__owner_plan_history_plan_id": {"name": "analytics___platform_stg__owner_plan_history_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history_plan_id", "block_contents": "FK: plan_id analytics___platform__plan"}, "doc.yoda.analytics___platform_stg__owner_plan_history_started_at": {"name": "analytics___platform_stg__owner_plan_history_started_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history_started_at", "block_contents": "owner_plan_id started Timestamp"}, "doc.yoda.analytics___platform_stg__owner_plan_history_updated_at": {"name": "analytics___platform_stg__owner_plan_history_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_history/analytics___platform_stg__owner_plan_history.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_history_updated_at", "block_contents": "owner_plan_id updated Timestamp"}, "doc.yoda.analytics___platform_stg__owner_plan_snapshot": {"name": "analytics___platform_stg__owner_plan_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_snapshot", "block_contents": "Snapshot table on analytics___platform_stg__owner_plan.\ntracking changes in fields: plan_id | created_at | started_at | is_organization_owner | is_store_owner\nunique key: owner_plan_id | owner_id | owner_type"}, "doc.yoda.analytics___platform_stg__owner_plan_snapshot_dwh_updated_at": {"name": "analytics___platform_stg__owner_plan_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__owner_plan_snapshot/analytics___platform_stg__owner_plan_snapshot.md", "unique_id": "doc.yoda.analytics___platform_stg__owner_plan_snapshot_dwh_updated_at", "block_contents": "snapshot timestamp"}, "doc.yoda.analytics___platform_stg__plan": {"name": "analytics___platform_stg__plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "unique_id": "doc.yoda.analytics___platform_stg__plan", "block_contents": "Holdes all products plans information"}, "doc.yoda.analytics___platform_stg__plan_category_id": {"name": "analytics___platform_stg__plan_category_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_category_id", "block_contents": "plan category (product): Reviews, Loyalty, SMS etc"}, "doc.yoda.analytics___platform_stg__plan_dwh_updated_at": {"name": "analytics___platform_stg__plan_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_old_plan_id": {"name": "analytics___platform_stg__plan_old_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_old_plan_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_plan_description": {"name": "analytics___platform_stg__plan_plan_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_plan_description", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_plan_id": {"name": "analytics___platform_stg__plan_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_plan_id", "block_contents": "PK - plan identifier"}, "doc.yoda.analytics___platform_stg__plan_plan_key": {"name": "analytics___platform_stg__plan_plan_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_plan_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_plan_name": {"name": "analytics___platform_stg__plan_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan/analytics___platform_stg__plan.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_plan_name", "block_contents": "plan name"}, "doc.yoda.analytics___platform_stg__plan_category": {"name": "analytics___platform_stg__plan_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_category", "block_contents": "Modeled View for all plan categories (Products)"}, "doc.yoda.analytics___platform_stg__plan_category_category_id": {"name": "analytics___platform_stg__plan_category_category_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_category_category_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_category_category_name": {"name": "analytics___platform_stg__plan_category_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_category_category_name", "block_contents": "product name"}, "doc.yoda.analytics___platform_stg__plan_category_dwh_updated_at": {"name": "analytics___platform_stg__plan_category_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_category/analytics___platform_stg__plan_category.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_category_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_tag": {"name": "analytics___platform_stg__plan_tag", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag", "block_contents": "Modeled View for package tags"}, "doc.yoda.analytics___platform_stg__plan_tag_created_at": {"name": "analytics___platform_stg__plan_tag_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_tag_dwh_updated_at": {"name": "analytics___platform_stg__plan_tag_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_tag_plan_id": {"name": "analytics___platform_stg__plan_tag_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag_plan_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_tag_plan_tag_id": {"name": "analytics___platform_stg__plan_tag_plan_tag_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag_plan_tag_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_tag_plan_tag_type_id": {"name": "analytics___platform_stg__plan_tag_plan_tag_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag_plan_tag_type_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_tag_updated_at": {"name": "analytics___platform_stg__plan_tag_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag/analytics___platform_stg__plan_tag.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_tag_type": {"name": "analytics___platform_stg__plan_tag_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag_type", "block_contents": "Modeled view for package tag type (free, monthly, anually etc)"}, "doc.yoda.analytics___platform_stg__plan_tag_type_created_at": {"name": "analytics___platform_stg__plan_tag_type_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag_type_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_tag_type_plan_tag_type_id": {"name": "analytics___platform_stg__plan_tag_type_plan_tag_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag_type_plan_tag_type_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_tag_type_tag_type": {"name": "analytics___platform_stg__plan_tag_type_tag_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag_type_tag_type", "block_contents": ""}, "doc.yoda.analytics___platform_stg__plan_tag_type_updated_at": {"name": "analytics___platform_stg__plan_tag_type_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__plan_tag_type/analytics___platform_stg__plan_tag_type.md", "unique_id": "doc.yoda.analytics___platform_stg__plan_tag_type_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__platform_type": {"name": "analytics___platform_stg__platform_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "unique_id": "doc.yoda.analytics___platform_stg__platform_type", "block_contents": "Modeled staging table of platform id and name\nGranularity & PK: platform_id"}, "doc.yoda.analytics___platform_stg__platform_type_dwh_updated_at": {"name": "analytics___platform_stg__platform_type_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "unique_id": "doc.yoda.analytics___platform_stg__platform_type_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__platform_type_is_supports_past_orders": {"name": "analytics___platform_stg__platform_type_is_supports_past_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "unique_id": "doc.yoda.analytics___platform_stg__platform_type_is_supports_past_orders", "block_contents": "Indicates if this platform type holdes past orders"}, "doc.yoda.analytics___platform_stg__platform_type_is_supports_pull_orders": {"name": "analytics___platform_stg__platform_type_is_supports_pull_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "unique_id": "doc.yoda.analytics___platform_stg__platform_type_is_supports_pull_orders", "block_contents": "Indicates if this platform type pull orders"}, "doc.yoda.analytics___platform_stg__platform_type_platform_description": {"name": "analytics___platform_stg__platform_type_platform_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "unique_id": "doc.yoda.analytics___platform_stg__platform_type_platform_description", "block_contents": ""}, "doc.yoda.analytics___platform_stg__platform_type_platform_id": {"name": "analytics___platform_stg__platform_type_platform_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "unique_id": "doc.yoda.analytics___platform_stg__platform_type_platform_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__platform_type_platform_name": {"name": "analytics___platform_stg__platform_type_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__platform_type/analytics___platform_stg__platform_type.md", "unique_id": "doc.yoda.analytics___platform_stg__platform_type_platform_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__product": {"name": "analytics___platform_stg__product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "unique_id": "doc.yoda.analytics___platform_stg__product", "block_contents": "Modeled view of review types | PK and granularity: review_type_id"}, "doc.yoda.analytics___platform_stg__product_app_key": {"name": "analytics___platform_stg__product_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "unique_id": "doc.yoda.analytics___platform_stg__product_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___platform_stg__product_created_at": {"name": "analytics___platform_stg__product_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "unique_id": "doc.yoda.analytics___platform_stg__product_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___platform_stg__product_created_date": {"name": "analytics___platform_stg__product_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "unique_id": "doc.yoda.analytics___platform_stg__product_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___platform_stg__product_group_id": {"name": "analytics___platform_stg__product_group_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "unique_id": "doc.yoda.analytics___platform_stg__product_group_id", "block_contents": "product group identifier"}, "doc.yoda.analytics___platform_stg__product_product_id": {"name": "analytics___platform_stg__product_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "unique_id": "doc.yoda.analytics___platform_stg__product_product_id", "block_contents": "unique identifier - primary key"}, "doc.yoda.analytics___platform_stg__product_product_name": {"name": "analytics___platform_stg__product_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "unique_id": "doc.yoda.analytics___platform_stg__product_product_name", "block_contents": "product name"}, "doc.yoda.analytics___platform_stg__product_status": {"name": "analytics___platform_stg__product_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "unique_id": "doc.yoda.analytics___platform_stg__product_status", "block_contents": "product status: draft, active, archived, etc."}, "doc.yoda.analytics___platform_stg__product_updated_at": {"name": "analytics___platform_stg__product_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "unique_id": "doc.yoda.analytics___platform_stg__product_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___platform_stg__product_updated_date": {"name": "analytics___platform_stg__product_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__product/analytics___platform_stg__product.md", "unique_id": "doc.yoda.analytics___platform_stg__product_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___platform_stg__question": {"name": "analytics___platform_stg__question", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_account_id": {"name": "analytics___platform_stg__question_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_account_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_asker_display_name": {"name": "analytics___platform_stg__question_asker_display_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_asker_display_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_content": {"name": "analytics___platform_stg__question_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_content", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_created_at": {"name": "analytics___platform_stg__question_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_is_allow_send": {"name": "analytics___platform_stg__question_is_allow_send", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_is_allow_send", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_is_archived": {"name": "analytics___platform_stg__question_is_archived", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_is_archived", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_is_logical_deleted": {"name": "analytics___platform_stg__question_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_is_logical_deleted", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_products_app_id": {"name": "analytics___platform_stg__question_products_app_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_products_app_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_question_id": {"name": "analytics___platform_stg__question_question_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_question_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_source_question_id": {"name": "analytics___platform_stg__question_source_question_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_source_question_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_source_type_id": {"name": "analytics___platform_stg__question_source_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_source_type_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_updated_at": {"name": "analytics___platform_stg__question_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_user_id": {"name": "analytics___platform_stg__question_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_user_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__question_user_type": {"name": "analytics___platform_stg__question_user_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__question/analytics___platform_stg__question.md", "unique_id": "doc.yoda.analytics___platform_stg__question_user_type", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_account_created": {"name": "analytics___platform_stg__segment_account_created", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_account_created", "block_contents": "Modeled view of segment account created events | PK and granularity: event_id"}, "doc.yoda.analytics___platform_stg__segment_account_created_app_key": {"name": "analytics___platform_stg__segment_account_created_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_account_created_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___platform_stg__segment_account_created_created_at": {"name": "analytics___platform_stg__segment_account_created_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_account_created_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___platform_stg__segment_account_created_created_date": {"name": "analytics___platform_stg__segment_account_created_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_account_created_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___platform_stg__segment_account_created_event_id": {"name": "analytics___platform_stg__segment_account_created_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_account_created_event_id", "block_contents": "event unique identifier - primary key"}, "doc.yoda.analytics___platform_stg__segment_account_created_organization_id": {"name": "analytics___platform_stg__segment_account_created_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_account_created_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___platform_stg__segment_account_created_organization_key": {"name": "analytics___platform_stg__segment_account_created_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_account_created_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___platform_stg__segment_account_created_plan_categories_list": {"name": "analytics___platform_stg__segment_account_created_plan_categories_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_account_created_plan_categories_list", "block_contents": "plan categories list, e.g: reviews,loyalty & rewards"}, "doc.yoda.analytics___platform_stg__segment_account_created_platform_name": {"name": "analytics___platform_stg__segment_account_created_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_account_created_platform_name", "block_contents": "store platform name: shopify, bigcommerce, magento, etc."}, "doc.yoda.analytics___platform_stg__segment_account_created_product_name": {"name": "analytics___platform_stg__segment_account_created_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_account_created/analytics___platform_stg__segment_account_created.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_account_created_product_name", "block_contents": "product name: loyalty, sms, reviews, etc."}, "doc.yoda.analytics___platform_stg__segment_activation_step": {"name": "analytics___platform_stg__segment_activation_step", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_activation_step", "block_contents": "Modeled view of segment activation step events | PK and granularity: event_id"}, "doc.yoda.analytics___platform_stg__segment_activation_step_app_key": {"name": "analytics___platform_stg__segment_activation_step_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_activation_step_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___platform_stg__segment_activation_step_created_at": {"name": "analytics___platform_stg__segment_activation_step_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_activation_step_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___platform_stg__segment_activation_step_created_date": {"name": "analytics___platform_stg__segment_activation_step_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_activation_step_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___platform_stg__segment_activation_step_event_id": {"name": "analytics___platform_stg__segment_activation_step_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_activation_step_event_id", "block_contents": "event unique identifier - primary key"}, "doc.yoda.analytics___platform_stg__segment_activation_step_organization_id": {"name": "analytics___platform_stg__segment_activation_step_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_activation_step_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___platform_stg__segment_activation_step_organization_key": {"name": "analytics___platform_stg__segment_activation_step_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_activation_step_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___platform_stg__segment_activation_step_page_url": {"name": "analytics___platform_stg__segment_activation_step_page_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_activation_step_page_url", "block_contents": "page url"}, "doc.yoda.analytics___platform_stg__segment_activation_step_plan_categories_list": {"name": "analytics___platform_stg__segment_activation_step_plan_categories_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_activation_step_plan_categories_list", "block_contents": "plan categories list, e.g: reviews,loyalty & rewards"}, "doc.yoda.analytics___platform_stg__segment_activation_step_platform_name": {"name": "analytics___platform_stg__segment_activation_step_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_activation_step_platform_name", "block_contents": "store platform name: shopify, bigcommerce, magento, etc."}, "doc.yoda.analytics___platform_stg__segment_activation_step_product_name": {"name": "analytics___platform_stg__segment_activation_step_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_activation_step/analytics___platform_stg__segment_activation_step.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_activation_step_product_name", "block_contents": "product name: subscriptions, sms, loyalty, etc."}, "doc.yoda.analytics___platform_stg__segment_app_install_completed": {"name": "analytics___platform_stg__segment_app_install_completed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_install_completed", "block_contents": "Modeled view of segment app install completed events | PK and granularity: event_id"}, "doc.yoda.analytics___platform_stg__segment_app_install_completed_app_key": {"name": "analytics___platform_stg__segment_app_install_completed_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_install_completed_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___platform_stg__segment_app_install_completed_created_at": {"name": "analytics___platform_stg__segment_app_install_completed_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_install_completed_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___platform_stg__segment_app_install_completed_created_date": {"name": "analytics___platform_stg__segment_app_install_completed_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_install_completed_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___platform_stg__segment_app_install_completed_event_id": {"name": "analytics___platform_stg__segment_app_install_completed_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_install_completed_event_id", "block_contents": "row unique identifier - primary key"}, "doc.yoda.analytics___platform_stg__segment_app_install_completed_organization_id": {"name": "analytics___platform_stg__segment_app_install_completed_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_install_completed_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___platform_stg__segment_app_install_completed_organization_key": {"name": "analytics___platform_stg__segment_app_install_completed_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_install_completed_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___platform_stg__segment_app_install_completed_plan_categories_cnt": {"name": "analytics___platform_stg__segment_app_install_completed_plan_categories_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_install_completed_plan_categories_cnt", "block_contents": "plan categories count, e.g: reviews,loyalty & rewards -> 2"}, "doc.yoda.analytics___platform_stg__segment_app_install_completed_plan_categories_list": {"name": "analytics___platform_stg__segment_app_install_completed_plan_categories_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_install_completed_plan_categories_list", "block_contents": "plan categories list, e.g: reviews,loyalty & rewards"}, "doc.yoda.analytics___platform_stg__segment_app_install_completed_platform_name": {"name": "analytics___platform_stg__segment_app_install_completed_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_install_completed_platform_name", "block_contents": "store platform name: shopify, bigcommerce, magento, etc."}, "doc.yoda.analytics___platform_stg__segment_app_install_completed_product_name": {"name": "analytics___platform_stg__segment_app_install_completed_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_install_completed/analytics___platform_stg__segment_app_install_completed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_install_completed_product_name", "block_contents": "product name: subscriptions, sms, loyalty, etc."}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled": {"name": "analytics___platform_stg__segment_app_uninstalled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled", "block_contents": "Modeled view of segment app uninstall events | PK and granularity: event_id"}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_app_key": {"name": "analytics___platform_stg__segment_app_uninstalled_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_created_at": {"name": "analytics___platform_stg__segment_app_uninstalled_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_created_date": {"name": "analytics___platform_stg__segment_app_uninstalled_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_event_id": {"name": "analytics___platform_stg__segment_app_uninstalled_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_event_id", "block_contents": "row unique identifier - primary key"}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_organization_id": {"name": "analytics___platform_stg__segment_app_uninstalled_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_organization_key": {"name": "analytics___platform_stg__segment_app_uninstalled_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_page_url": {"name": "analytics___platform_stg__segment_app_uninstalled_page_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_page_url", "block_contents": "page url"}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_plan_categories_cnt": {"name": "analytics___platform_stg__segment_app_uninstalled_plan_categories_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_plan_categories_cnt", "block_contents": "plan categories count, e.g: reviews,loyalty & rewards -> 2"}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_plan_categories_list": {"name": "analytics___platform_stg__segment_app_uninstalled_plan_categories_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_plan_categories_list", "block_contents": "plan categories list, e.g: reviews,loyalty & rewards"}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_platform_name": {"name": "analytics___platform_stg__segment_app_uninstalled_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_platform_name", "block_contents": "store platform name: shopify, bigcommerce, magento, etc."}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_product_category_name": {"name": "analytics___platform_stg__segment_app_uninstalled_product_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_product_category_name", "block_contents": "product category, e.g: subs"}, "doc.yoda.analytics___platform_stg__segment_app_uninstalled_product_name": {"name": "analytics___platform_stg__segment_app_uninstalled_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_app_uninstalled/analytics___platform_stg__segment_app_uninstalled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_app_uninstalled_product_name", "block_contents": "product name: subscriptions, sms, loyalty, etc."}, "doc.yoda.analytics___platform_stg__segment_b_to_b": {"name": "analytics___platform_stg__segment_b_to_b", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_b_to_b", "block_contents": "Modeled view of segment b2b events | PK and granularity: event_id"}, "doc.yoda.analytics___platform_stg__segment_b_to_b_app_key": {"name": "analytics___platform_stg__segment_b_to_b_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_b_to_b_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___platform_stg__segment_b_to_b_created_at": {"name": "analytics___platform_stg__segment_b_to_b_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_b_to_b_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___platform_stg__segment_b_to_b_created_date": {"name": "analytics___platform_stg__segment_b_to_b_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_b_to_b_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___platform_stg__segment_b_to_b_event_id": {"name": "analytics___platform_stg__segment_b_to_b_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_b_to_b_event_id", "block_contents": "event unique identifier - primary key"}, "doc.yoda.analytics___platform_stg__segment_b_to_b_organization_id": {"name": "analytics___platform_stg__segment_b_to_b_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_b_to_b_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___platform_stg__segment_b_to_b_organization_key": {"name": "analytics___platform_stg__segment_b_to_b_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_b_to_b_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___platform_stg__segment_b_to_b_page_url": {"name": "analytics___platform_stg__segment_b_to_b_page_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_b_to_b_page_url", "block_contents": "page url"}, "doc.yoda.analytics___platform_stg__segment_b_to_b_plan_categories_list": {"name": "analytics___platform_stg__segment_b_to_b_plan_categories_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_b_to_b_plan_categories_list", "block_contents": "plan categories list, e.g: reviews,loyalty & rewards"}, "doc.yoda.analytics___platform_stg__segment_b_to_b_platform_name": {"name": "analytics___platform_stg__segment_b_to_b_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_b_to_b_platform_name", "block_contents": "store platform name: shopify, bigcommerce, magento, etc."}, "doc.yoda.analytics___platform_stg__segment_b_to_b_product_category_name": {"name": "analytics___platform_stg__segment_b_to_b_product_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_b_to_b/analytics___platform_stg__segment_b_to_b.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_b_to_b_product_category_name", "block_contents": "product category, e.g: subs"}, "doc.yoda.analytics___platform_stg__segment_file_exported": {"name": "analytics___platform_stg__segment_file_exported", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported", "block_contents": "Modeled view of segment file exported events | PK and granularity: event_id"}, "doc.yoda.analytics___platform_stg__segment_file_exported_app_key": {"name": "analytics___platform_stg__segment_file_exported_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___platform_stg__segment_file_exported_channel": {"name": "analytics___platform_stg__segment_file_exported_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_channel", "block_contents": "channel: server/client"}, "doc.yoda.analytics___platform_stg__segment_file_exported_created_at": {"name": "analytics___platform_stg__segment_file_exported_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___platform_stg__segment_file_exported_created_date": {"name": "analytics___platform_stg__segment_file_exported_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___platform_stg__segment_file_exported_event_id": {"name": "analytics___platform_stg__segment_file_exported_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_event_id", "block_contents": "event unique identifier - primary key"}, "doc.yoda.analytics___platform_stg__segment_file_exported_group_id": {"name": "analytics___platform_stg__segment_file_exported_group_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_group_id", "block_contents": "group id"}, "doc.yoda.analytics___platform_stg__segment_file_exported_organization_id": {"name": "analytics___platform_stg__segment_file_exported_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___platform_stg__segment_file_exported_organization_key": {"name": "analytics___platform_stg__segment_file_exported_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___platform_stg__segment_file_exported_product_name": {"name": "analytics___platform_stg__segment_file_exported_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_product_name", "block_contents": "product_name: Reviews, loyalty, etc."}, "doc.yoda.analytics___platform_stg__segment_file_exported_report_name": {"name": "analytics___platform_stg__segment_file_exported_report_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_report_name", "block_contents": "report name, e.g., Star_rating_over_time"}, "doc.yoda.analytics___platform_stg__segment_file_exported_report_type": {"name": "analytics___platform_stg__segment_file_exported_report_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_report_type", "block_contents": "report type: NEW_PRODUCTS, REVIEWS_EXPORT, etc."}, "doc.yoda.analytics___platform_stg__segment_file_exported_total_rows": {"name": "analytics___platform_stg__segment_file_exported_total_rows", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_file_exported/analytics___platform_stg__segment_file_exported.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_file_exported_total_rows", "block_contents": "total rows"}, "doc.yoda.analytics___platform_stg__segment_limit_reached": {"name": "analytics___platform_stg__segment_limit_reached", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_limit_reached", "block_contents": "Modeled view of segment limit reached events | PK and granularity: event_id"}, "doc.yoda.analytics___platform_stg__segment_limit_reached_app_key": {"name": "analytics___platform_stg__segment_limit_reached_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_limit_reached_app_key", "block_contents": "store app_key"}, "doc.yoda.analytics___platform_stg__segment_limit_reached_created_at": {"name": "analytics___platform_stg__segment_limit_reached_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_limit_reached_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_limit_reached_created_date": {"name": "analytics___platform_stg__segment_limit_reached_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_limit_reached_created_date", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_limit_reached_event_id": {"name": "analytics___platform_stg__segment_limit_reached_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_limit_reached_event_id", "block_contents": "message id | PK"}, "doc.yoda.analytics___platform_stg__segment_limit_reached_limit_reached_ratio": {"name": "analytics___platform_stg__segment_limit_reached_limit_reached_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_limit_reached_limit_reached_ratio", "block_contents": "the ratio of limit reached"}, "doc.yoda.analytics___platform_stg__segment_limit_reached_platform_name": {"name": "analytics___platform_stg__segment_limit_reached_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_limit_reached_platform_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_limit_reached_product_name": {"name": "analytics___platform_stg__segment_limit_reached_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_limit_reached/analytics___platform_stg__segment_limit_reached.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_limit_reached_product_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_onboarding": {"name": "analytics___platform_stg__segment_onboarding", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_onboarding", "block_contents": "Modeled view of segment onboarding events | PK and granularity: event_id"}, "doc.yoda.analytics___platform_stg__segment_onboarding_app_key": {"name": "analytics___platform_stg__segment_onboarding_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_onboarding_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___platform_stg__segment_onboarding_created_at": {"name": "analytics___platform_stg__segment_onboarding_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_onboarding_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___platform_stg__segment_onboarding_created_date": {"name": "analytics___platform_stg__segment_onboarding_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_onboarding_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___platform_stg__segment_onboarding_event_id": {"name": "analytics___platform_stg__segment_onboarding_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_onboarding_event_id", "block_contents": "event unique identifier - primary key"}, "doc.yoda.analytics___platform_stg__segment_onboarding_organization_id": {"name": "analytics___platform_stg__segment_onboarding_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_onboarding_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___platform_stg__segment_onboarding_organization_key": {"name": "analytics___platform_stg__segment_onboarding_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_onboarding_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___platform_stg__segment_onboarding_page_url": {"name": "analytics___platform_stg__segment_onboarding_page_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_onboarding_page_url", "block_contents": "page url"}, "doc.yoda.analytics___platform_stg__segment_onboarding_plan_categories_list": {"name": "analytics___platform_stg__segment_onboarding_plan_categories_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_onboarding_plan_categories_list", "block_contents": "plan categories list, e.g: reviews,loyalty & rewards"}, "doc.yoda.analytics___platform_stg__segment_onboarding_platform_name": {"name": "analytics___platform_stg__segment_onboarding_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_onboarding_platform_name", "block_contents": "store platform name: shopify, bigcommerce, magento, etc."}, "doc.yoda.analytics___platform_stg__segment_onboarding_product_category_name": {"name": "analytics___platform_stg__segment_onboarding_product_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_onboarding/analytics___platform_stg__segment_onboarding.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_onboarding_product_category_name", "block_contents": "product category, e.g: subs"}, "doc.yoda.analytics___platform_stg__segment_page_event": {"name": "analytics___platform_stg__segment_page_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_page_event", "block_contents": "segment page events | PK and granularity: event_id,app_key"}, "doc.yoda.analytics___platform_stg__segment_page_event_app_key": {"name": "analytics___platform_stg__segment_page_event_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_page_event_app_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_page_event_event_created_at": {"name": "analytics___platform_stg__segment_page_event_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_page_event_event_created_at", "block_contents": "event timestamp"}, "doc.yoda.analytics___platform_stg__segment_page_event_event_id": {"name": "analytics___platform_stg__segment_page_event_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_page_event_event_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_page_event_page_context": {"name": "analytics___platform_stg__segment_page_event_page_context", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_page_event_page_context", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_page_event_page_url": {"name": "analytics___platform_stg__segment_page_event_page_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_page_event_page_url", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_page_event_product": {"name": "analytics___platform_stg__segment_page_event_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_page_event/analytics___platform_stg__segment_page_event.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_page_event_product", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_popup_displayed": {"name": "analytics___platform_stg__segment_popup_displayed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_popup_displayed", "block_contents": "Modeled view of segment popup displayed events | PK and granularity: event_id"}, "doc.yoda.analytics___platform_stg__segment_popup_displayed_app_key": {"name": "analytics___platform_stg__segment_popup_displayed_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_popup_displayed_app_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_popup_displayed_created_at": {"name": "analytics___platform_stg__segment_popup_displayed_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_popup_displayed_created_at", "block_contents": "event created timestamp"}, "doc.yoda.analytics___platform_stg__segment_popup_displayed_created_date": {"name": "analytics___platform_stg__segment_popup_displayed_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_popup_displayed_created_date", "block_contents": "event created date"}, "doc.yoda.analytics___platform_stg__segment_popup_displayed_event_id": {"name": "analytics___platform_stg__segment_popup_displayed_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_popup_displayed_event_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_popup_displayed_organization_id": {"name": "analytics___platform_stg__segment_popup_displayed_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_popup_displayed_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_popup_displayed_organization_key": {"name": "analytics___platform_stg__segment_popup_displayed_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_popup_displayed_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_popup_displayed_page_url": {"name": "analytics___platform_stg__segment_popup_displayed_page_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_popup_displayed_page_url", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_popup_displayed_platform_name": {"name": "analytics___platform_stg__segment_popup_displayed_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_popup_displayed_platform_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_popup_displayed_popup_name": {"name": "analytics___platform_stg__segment_popup_displayed_popup_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_popup_displayed_popup_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_popup_displayed_product_name": {"name": "analytics___platform_stg__segment_popup_displayed_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_popup_displayed/analytics___platform_stg__segment_popup_displayed.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_popup_displayed_product_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_product_enabled": {"name": "analytics___platform_stg__segment_product_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_product_enabled", "block_contents": "Modeled view of segment product enabled events | PK and granularity: event_id"}, "doc.yoda.analytics___platform_stg__segment_product_enabled_app_key": {"name": "analytics___platform_stg__segment_product_enabled_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_product_enabled_app_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_product_enabled_created_at": {"name": "analytics___platform_stg__segment_product_enabled_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_product_enabled_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_product_enabled_created_date": {"name": "analytics___platform_stg__segment_product_enabled_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_product_enabled_created_date", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_product_enabled_event_id": {"name": "analytics___platform_stg__segment_product_enabled_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_product_enabled_event_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_product_enabled_organization_id": {"name": "analytics___platform_stg__segment_product_enabled_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_product_enabled_organization_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_product_enabled_organization_key": {"name": "analytics___platform_stg__segment_product_enabled_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_product_enabled_organization_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_product_enabled_platform_name": {"name": "analytics___platform_stg__segment_product_enabled_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_product_enabled/analytics___platform_stg__segment_product_enabled.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_product_enabled_platform_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo": {"name": "analytics___platform_stg__segment_uninstalled_yotpo", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo", "block_contents": "Modeled view of segment app uninstall events | PK and granularity: event_id"}, "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_app_key": {"name": "analytics___platform_stg__segment_uninstalled_yotpo_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_created_at": {"name": "analytics___platform_stg__segment_uninstalled_yotpo_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_created_date": {"name": "analytics___platform_stg__segment_uninstalled_yotpo_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_event_id": {"name": "analytics___platform_stg__segment_uninstalled_yotpo_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_event_id", "block_contents": "event unique identifier - primary key"}, "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_plan_categories_cnt": {"name": "analytics___platform_stg__segment_uninstalled_yotpo_plan_categories_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_plan_categories_cnt", "block_contents": "plan categories count, e.g: reviews,loyalty & rewards -> 2"}, "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_plan_categories_list": {"name": "analytics___platform_stg__segment_uninstalled_yotpo_plan_categories_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_plan_categories_list", "block_contents": "plan categories list, e.g: reviews,loyalty & rewards"}, "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_platform_name": {"name": "analytics___platform_stg__segment_uninstalled_yotpo_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__segment_uninstalled_yotpo/analytics___platform_stg__segment_uninstalled_yotpo.md", "unique_id": "doc.yoda.analytics___platform_stg__segment_uninstalled_yotpo_platform_name", "block_contents": "store platform name: shopify, bigcommerce, magento, etc."}, "doc.yoda.analytics___platform_stg__similar_store": {"name": "analytics___platform_stg__similar_store", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_store", "block_contents": "Modeled view for categorization of Yotpo's stores and dividing them into clusters by similar characteristics using advanced AI models"}, "doc.yoda.analytics___platform_stg__similar_store_app_key": {"name": "analytics___platform_stg__similar_store_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_store_app_key", "block_contents": "The origin store_id"}, "doc.yoda.analytics___platform_stg__similar_store_domain": {"name": "analytics___platform_stg__similar_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_store_domain", "block_contents": ""}, "doc.yoda.analytics___platform_stg__similar_store_dwh_updated_at": {"name": "analytics___platform_stg__similar_store_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_store_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__similar_store_industry": {"name": "analytics___platform_stg__similar_store_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__similar_store/analytics___platform_stg__similar_store.md", "unique_id": "doc.yoda.analytics___platform_stg__similar_store_industry", "block_contents": "Using advanced AI models data science predict the industry of a store when it is not available. If a store industry is NULL, it could be because that store owner didn't provide the category or the sotre didn't have any orders in the past last months or it describes its product in a non-english language so we can predict its industry"}, "doc.yoda.analytics___platform_stg__static_deprecated_package": {"name": "analytics___platform_stg__static_deprecated_package", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package", "block_contents": "Modeled view for static table deprecated old packages"}, "doc.yoda.analytics___platform_stg__static_deprecated_package_category_id": {"name": "analytics___platform_stg__static_deprecated_package_category_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_category_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_category_name": {"name": "analytics___platform_stg__static_deprecated_package_category_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_category_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_dwh_updated_at": {"name": "analytics___platform_stg__static_deprecated_package_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_full_tags": {"name": "analytics___platform_stg__static_deprecated_package_full_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_full_tags", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_annual": {"name": "analytics___platform_stg__static_deprecated_package_is_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_annual", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_free": {"name": "analytics___platform_stg__static_deprecated_package_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_free", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_growth": {"name": "analytics___platform_stg__static_deprecated_package_is_growth", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_growth", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_insights": {"name": "analytics___platform_stg__static_deprecated_package_is_insights", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_insights", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_insights_annual": {"name": "analytics___platform_stg__static_deprecated_package_is_insights_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_insights_annual", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_insights_free": {"name": "analytics___platform_stg__static_deprecated_package_is_insights_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_insights_free", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_insights_ss": {"name": "analytics___platform_stg__static_deprecated_package_is_insights_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_insights_ss", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_legacy": {"name": "analytics___platform_stg__static_deprecated_package_is_legacy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_legacy", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_loyalty": {"name": "analytics___platform_stg__static_deprecated_package_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_loyalty_annual": {"name": "analytics___platform_stg__static_deprecated_package_is_loyalty_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_loyalty_annual", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_loyalty_free": {"name": "analytics___platform_stg__static_deprecated_package_is_loyalty_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_loyalty_free", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_loyalty_ss": {"name": "analytics___platform_stg__static_deprecated_package_is_loyalty_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_loyalty_ss", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_premium": {"name": "analytics___platform_stg__static_deprecated_package_is_premium", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_premium", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_prime": {"name": "analytics___platform_stg__static_deprecated_package_is_prime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_prime", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_reviews": {"name": "analytics___platform_stg__static_deprecated_package_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_reviews", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_reviews_annual": {"name": "analytics___platform_stg__static_deprecated_package_is_reviews_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_reviews_annual", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_reviews_free": {"name": "analytics___platform_stg__static_deprecated_package_is_reviews_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_reviews_free", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_reviews_ss": {"name": "analytics___platform_stg__static_deprecated_package_is_reviews_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_reviews_ss", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_sms": {"name": "analytics___platform_stg__static_deprecated_package_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_sms", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_sms_annual": {"name": "analytics___platform_stg__static_deprecated_package_is_sms_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_sms_annual", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_sms_free": {"name": "analytics___platform_stg__static_deprecated_package_is_sms_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_sms_free", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_sms_ss": {"name": "analytics___platform_stg__static_deprecated_package_is_sms_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_sms_ss", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_ss": {"name": "analytics___platform_stg__static_deprecated_package_is_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_ss", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_subscriptions": {"name": "analytics___platform_stg__static_deprecated_package_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_subscriptions_annual": {"name": "analytics___platform_stg__static_deprecated_package_is_subscriptions_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_subscriptions_annual", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_subscriptions_free": {"name": "analytics___platform_stg__static_deprecated_package_is_subscriptions_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_subscriptions_free", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_subscriptions_ss": {"name": "analytics___platform_stg__static_deprecated_package_is_subscriptions_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_subscriptions_ss", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_vms": {"name": "analytics___platform_stg__static_deprecated_package_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_vms", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_vms_annual": {"name": "analytics___platform_stg__static_deprecated_package_is_vms_annual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_vms_annual", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_vms_free": {"name": "analytics___platform_stg__static_deprecated_package_is_vms_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_vms_free", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_is_vms_ss": {"name": "analytics___platform_stg__static_deprecated_package_is_vms_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_is_vms_ss", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_plan_description": {"name": "analytics___platform_stg__static_deprecated_package_plan_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_plan_description", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_plan_id": {"name": "analytics___platform_stg__static_deprecated_package_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_plan_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_plan_key": {"name": "analytics___platform_stg__static_deprecated_package_plan_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_plan_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_plan_name": {"name": "analytics___platform_stg__static_deprecated_package_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_plan_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__static_deprecated_package_tags": {"name": "analytics___platform_stg__static_deprecated_package_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__static_deprecated_package/analytics___platform_stg__static_deprecated_package.md", "unique_id": "doc.yoda.analytics___platform_stg__static_deprecated_package_tags", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order": {"name": "analytics___platform_stg__store_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order", "block_contents": "Modeled view of store orders | Granularity & Primary Key: order_id"}, "doc.yoda.analytics___platform_stg__store_order_app_key": {"name": "analytics___platform_stg__store_order_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_app_key", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_billing_address_id": {"name": "analytics___platform_stg__store_order_billing_address_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_billing_address_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_checkout_token": {"name": "analytics___platform_stg__store_order_checkout_token", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_checkout_token", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_created_at": {"name": "analytics___platform_stg__store_order_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_created_date": {"name": "analytics___platform_stg__store_order_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_created_date", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_custom_properties": {"name": "analytics___platform_stg__store_order_custom_properties", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_custom_properties", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_email": {"name": "analytics___platform_stg__store_order_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_email", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_external_customer_id": {"name": "analytics___platform_stg__store_order_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_external_customer_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_external_id": {"name": "analytics___platform_stg__store_order_external_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_external_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_external_order_display_name": {"name": "analytics___platform_stg__store_order_external_order_display_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_external_order_display_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_external_order_id": {"name": "analytics___platform_stg__store_order_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_external_order_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_first_name": {"name": "analytics___platform_stg__store_order_first_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_first_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_full_name": {"name": "analytics___platform_stg__store_order_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_full_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_is_buyer_accepts_email_marketing": {"name": "analytics___platform_stg__store_order_is_buyer_accepts_email_marketing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_is_buyer_accepts_email_marketing", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_is_buyer_accepts_marketing": {"name": "analytics___platform_stg__store_order_is_buyer_accepts_marketing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_is_buyer_accepts_marketing", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_is_buyer_accepts_sms_marketing": {"name": "analytics___platform_stg__store_order_is_buyer_accepts_sms_marketing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_is_buyer_accepts_sms_marketing", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_landing_site_url": {"name": "analytics___platform_stg__store_order_landing_site_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_landing_site_url", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_last_name": {"name": "analytics___platform_stg__store_order_last_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_last_name", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_order_account_amount": {"name": "analytics___platform_stg__store_order_order_account_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_order_account_amount", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_order_account_amount_currency": {"name": "analytics___platform_stg__store_order_order_account_amount_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_order_account_amount_currency", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_order_amount": {"name": "analytics___platform_stg__store_order_order_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_order_amount", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_order_amount_currency": {"name": "analytics___platform_stg__store_order_order_amount_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_order_amount_currency", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_order_at": {"name": "analytics___platform_stg__store_order_order_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_order_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_order_date": {"name": "analytics___platform_stg__store_order_order_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_order_date", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_order_id": {"name": "analytics___platform_stg__store_order_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_order_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_order_update_at": {"name": "analytics___platform_stg__store_order_order_update_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_order_update_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_order_update_date": {"name": "analytics___platform_stg__store_order_order_update_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_order_update_date", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_payment_method": {"name": "analytics___platform_stg__store_order_payment_method", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_payment_method", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_payment_status_id": {"name": "analytics___platform_stg__store_order_payment_status_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_payment_status_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_phone_number": {"name": "analytics___platform_stg__store_order_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_phone_number", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_platform": {"name": "analytics___platform_stg__store_order_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_platform", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_shipping_address_id": {"name": "analytics___platform_stg__store_order_shipping_address_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_shipping_address_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_source": {"name": "analytics___platform_stg__store_order_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_source", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_total_price": {"name": "analytics___platform_stg__store_order_total_price", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_total_price", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_order_updated_at": {"name": "analytics___platform_stg__store_order_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_order/analytics___platform_stg__store_order.md", "unique_id": "doc.yoda.analytics___platform_stg__store_order_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_user_mapping": {"name": "analytics___platform_stg__store_user_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__store_user_mapping", "block_contents": "A modeled view of the table yotpoapiprod.apps | PK: store_user_mapping_id | Granularity: user_id, store_id"}, "doc.yoda.analytics___platform_stg__store_user_mapping_created_at": {"name": "analytics___platform_stg__store_user_mapping_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__store_user_mapping_created_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_user_mapping_created_date": {"name": "analytics___platform_stg__store_user_mapping_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__store_user_mapping_created_date", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_user_mapping_is_store_admin": {"name": "analytics___platform_stg__store_user_mapping_is_store_admin", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__store_user_mapping_is_store_admin", "block_contents": "If moderator role = 1 then user is admin at the store"}, "doc.yoda.analytics___platform_stg__store_user_mapping_moderator_role_id": {"name": "analytics___platform_stg__store_user_mapping_moderator_role_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__store_user_mapping_moderator_role_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_user_mapping_store_id": {"name": "analytics___platform_stg__store_user_mapping_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__store_user_mapping_store_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_user_mapping_store_user_mapping_id": {"name": "analytics___platform_stg__store_user_mapping_store_user_mapping_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__store_user_mapping_store_user_mapping_id", "block_contents": "PK"}, "doc.yoda.analytics___platform_stg__store_user_mapping_updated_at": {"name": "analytics___platform_stg__store_user_mapping_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__store_user_mapping_updated_at", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_user_mapping_updated_date": {"name": "analytics___platform_stg__store_user_mapping_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__store_user_mapping_updated_date", "block_contents": ""}, "doc.yoda.analytics___platform_stg__store_user_mapping_user_id": {"name": "analytics___platform_stg__store_user_mapping_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__store_user_mapping/analytics___platform_stg__store_user_mapping.md", "unique_id": "doc.yoda.analytics___platform_stg__store_user_mapping_user_id", "block_contents": ""}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three", "block_contents": "Modeled view of widget version 3 pixel events for subscriptions stores | Granularity & Primary Key: event_id, event_row_rank"}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_action": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_action", "block_contents": "user action: shown, loaded, clicked_on, etc."}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_app_key": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_app_key", "block_contents": "store unique identifier"}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_calculated_source": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_calculated_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_calculated_source", "block_contents": "sms, email, organic."}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_calculated_user_and_url_id": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_calculated_user_and_url_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_calculated_user_and_url_id", "block_contents": "calculated unique identifier of end user fingerprint & url page"}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_category": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_category", "block_contents": "widget category, e.g: product-page-widget"}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_context_mobile": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_context_mobile", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_context_mobile", "block_contents": "use of mobile category: mobile, non-mobile, unknown."}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_date": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_date", "block_contents": "date of the pixel event"}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_domain_user_id": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_domain_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_domain_user_id", "block_contents": "End user cookie identifier created on behalf of the store by Yotpo. It is unique within a store, and cannot be used to identify the same shopper in different stores. Its lifecycle is 2 years."}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id", "block_contents": "event unique identifier - primary key 1/2"}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_event_row_rank": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_event_row_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_event_row_rank", "block_contents": "event's row ranking by processing time - primary key 2/2"}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_fingerprint": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_fingerprint", "block_contents": "end user fingerprint"}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_label": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_label", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_label", "block_contents": "widget label, e.g: add_to_cart"}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_medium": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_medium", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_medium", "block_contents": "sms, email, marketing, youtube, etc."}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_os_family": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_os_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_os_family", "block_contents": "operating system family: android, ios, windows, etc."}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_page_url_path": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_page_url_path", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_page_url_path", "block_contents": "the url page of the event"}, "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_source": {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__subscriptions_pixel_widget_v_three/analytics___platform_stg__subscriptions_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three_source", "block_contents": "flow, subscriptions_system, newsletter, etc."}, "doc.yoda.analytics___platform_stg__synergy_enablement_event": {"name": "analytics___platform_stg__synergy_enablement_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event", "block_contents": "Modeled view of synergies enablement events | PK and granularity: app_key, widget_id, updated_at"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_app_key": {"name": "analytics___platform_stg__synergy_enablement_event_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_app_key", "block_contents": "yotpo store unique identifier - primary key 1/3"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_enablement_status": {"name": "analytics___platform_stg__synergy_enablement_event_enablement_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_enablement_status", "block_contents": "store synergy enablement status: completed, incomplete"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_first_event_created_at": {"name": "analytics___platform_stg__synergy_enablement_event_first_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_first_event_created_at", "block_contents": "first event created timestamp for store and widget"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_first_event_created_date": {"name": "analytics___platform_stg__synergy_enablement_event_first_event_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_first_event_created_date", "block_contents": "first event created date for store and widget"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_first_event_id": {"name": "analytics___platform_stg__synergy_enablement_event_first_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_first_event_id", "block_contents": "the first event identifier for store and widget"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_is_enabled": {"name": "analytics___platform_stg__synergy_enablement_event_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_is_enabled", "block_contents": "store synergy enablement indicator: 0/1"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_store_widget_event_count": {"name": "analytics___platform_stg__synergy_enablement_event_store_widget_event_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_store_widget_event_count", "block_contents": "event count for store and widget"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_store_widget_row_ranking": {"name": "analytics___platform_stg__synergy_enablement_event_store_widget_row_ranking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_store_widget_row_ranking", "block_contents": "event ranking for store and widget by updated_at"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_store_widget_row_ranking_backwards": {"name": "analytics___platform_stg__synergy_enablement_event_store_widget_row_ranking_backwards", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_store_widget_row_ranking_backwards", "block_contents": "event ranking for store and widget by updated_at backwards"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_updated_at": {"name": "analytics___platform_stg__synergy_enablement_event_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_updated_at", "block_contents": "event update timestamp - primary key 3/3"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_updated_date": {"name": "analytics___platform_stg__synergy_enablement_event_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_updated_date", "block_contents": "event update date"}, "doc.yoda.analytics___platform_stg__synergy_enablement_event_widget_id": {"name": "analytics___platform_stg__synergy_enablement_event_widget_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__synergy_enablement_event/analytics___platform_stg__synergy_enablement_event.md", "unique_id": "doc.yoda.analytics___platform_stg__synergy_enablement_event_widget_id", "block_contents": "widget unique identifier - primary key 2/3"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three", "block_contents": "Modeled view of widget version 3 pixel events for ugc stores | Granularity & Primary Key: event_id, event_row_rank"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_action": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_action", "block_contents": "user action: shown, loaded, clicked_on, etc."}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_app_key": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_app_key", "block_contents": "store unique identifier"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_category": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_category", "block_contents": "widget category: star-ratings-widget, reviews-main-widget, etc."}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_context_custom_questions": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_context_custom_questions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_context_custom_questions", "block_contents": "crf count"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_context_duration_time_from_widget_mark_in_sec": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_context_duration_time_from_widget_mark_in_sec", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_context_duration_time_from_widget_mark_in_sec", "block_contents": "loading duration time in seconds"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_context_smart_topics": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_context_smart_topics", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_context_smart_topics", "block_contents": "smart topics count"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_context_widget_placement": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_context_widget_placement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_context_widget_placement", "block_contents": "widget placement: standalone, embedded, etc."}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_date": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_date", "block_contents": "date of the pixel event"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_domain_user_id": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_domain_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_domain_user_id", "block_contents": "End user cookie identifier created on behalf of the store by Yotpo. It is unique within a store, and cannot be used to identify the same shopper in different stores. Its lifecycle is 2 years."}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_event_id": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_event_id", "block_contents": "event unique identifier"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_event_row_rank": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_event_row_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_event_row_rank", "block_contents": "event's row ranking by processing time"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_label": {"name": "analytics___platform_stg__ugc_pixel_widget_v_three_label", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_three/analytics___platform_stg__ugc_pixel_widget_v_three.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_three_label", "block_contents": "widget label: vote_up, filters, etc."}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two", "block_contents": "Modeled view of widget version 2 pixel events for ugc stores | Granularity & Primary Key: event_id, event_row_rank"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_action": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_action", "block_contents": "user action: shown, loaded, clicked_on, etc."}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_app_key": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_app_key", "block_contents": "store unique identifier"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_category": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_category", "block_contents": "widget category: questions_widget, filter_reviews, etc."}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_context_cta": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_context_cta", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_context_cta", "block_contents": "cta type"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_context_custom_fields_count": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_context_custom_fields_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_context_custom_fields_count", "block_contents": "custom fields count"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_context_desktop_topics_count": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_context_desktop_topics_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_context_desktop_topics_count", "block_contents": "smart topics count"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_context_filter_field_type": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_context_filter_field_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_context_filter_field_type", "block_contents": "filter field type"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_context_free_text_included": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_context_free_text_included", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_context_free_text_included", "block_contents": "free text indication"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_date": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_date", "block_contents": "date of the pixel event"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_domain_user_id": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_domain_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_domain_user_id", "block_contents": "End user cookie identifier created on behalf of the store by Yotpo. It is unique within a store, and cannot be used to identify the same shopper in different stores. Its lifecycle is 2 years."}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_event_id": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_event_id", "block_contents": "event unique identifier"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_event_row_rank": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_event_row_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_event_row_rank", "block_contents": "event's row ranking by processing time"}, "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_label": {"name": "analytics___platform_stg__ugc_pixel_widget_v_two_label", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__ugc_pixel_widget_v_two/analytics___platform_stg__ugc_pixel_widget_v_two.md", "unique_id": "doc.yoda.analytics___platform_stg__ugc_pixel_widget_v_two_label", "block_contents": "widget label: vote_up, filters, etc."}, "doc.yoda.analytics___platform_stg__user": {"name": "analytics___platform_stg__user", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.md", "unique_id": "doc.yoda.analytics___platform_stg__user", "block_contents": "A lean view of the table yotpoapiprod.users | PK & Granularity: user_id"}, "doc.yoda.analytics___platform_stg__user_email": {"name": "analytics___platform_stg__user_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.md", "unique_id": "doc.yoda.analytics___platform_stg__user_email", "block_contents": "email of the user"}, "doc.yoda.analytics___platform_stg__user_user_id": {"name": "analytics___platform_stg__user_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.md", "original_file_path": "models/analytics/platform/staging/marts_compatible/analytics___platform_stg__user/analytics___platform_stg__user.md", "unique_id": "doc.yoda.analytics___platform_stg__user_user_id", "block_contents": "PK"}, "doc.yoda.analytics___salesforce__account": {"name": "analytics___salesforce__account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account", "block_contents": "Modeled table of Account salesforce object\nPK: account_id"}, "doc.yoda.analytics___salesforce__account_account_agency_services": {"name": "analytics___salesforce__account_account_agency_services", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_agency_services", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_annual_revenue": {"name": "analytics___salesforce__account_account_annual_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_annual_revenue", "block_contents": "account ARR value"}, "doc.yoda.analytics___salesforce__account_account_closest_contract_renewal_date": {"name": "analytics___salesforce__account_account_closest_contract_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_closest_contract_renewal_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_country": {"name": "analytics___salesforce__account_account_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_country", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_country_code": {"name": "analytics___salesforce__account_account_country_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_country_code", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_created_date": {"name": "analytics___salesforce__account_account_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_created_date", "block_contents": "The date in which the account was created"}, "doc.yoda.analytics___salesforce__account_account_cs_estimated_annual_sales": {"name": "analytics___salesforce__account_account_cs_estimated_annual_sales", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_cs_estimated_annual_sales", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_cs_estimated_aov": {"name": "analytics___salesforce__account_account_cs_estimated_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_cs_estimated_aov", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_cs_segment": {"name": "analytics___salesforce__account_account_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_cs_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_cs_tags": {"name": "analytics___salesforce__account_account_cs_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_cs_tags", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_csm_sf_user_id": {"name": "analytics___salesforce__account_account_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_description": {"name": "analytics___salesforce__account_account_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_description", "block_contents": "More details about the acount"}, "doc.yoda.analytics___salesforce__account_account_domain": {"name": "analytics___salesforce__account_account_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_domain", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_email": {"name": "analytics___salesforce__account_account_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_email", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_estimated_monthly_orders_volume": {"name": "analytics___salesforce__account_account_estimated_monthly_orders_volume", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_estimated_monthly_orders_volume", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_extensions": {"name": "analytics___salesforce__account_account_extensions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_extensions", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_has_a_community_member": {"name": "analytics___salesforce__account_account_has_a_community_member", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_has_a_community_member", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_id": {"name": "analytics___salesforce__account_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_influenced_by_agency_id": {"name": "analytics___salesforce__account_account_influenced_by_agency_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_influenced_by_agency_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_last_modified_date": {"name": "analytics___salesforce__account_account_last_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_last_modified_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_latest_opportunity_id": {"name": "analytics___salesforce__account_account_latest_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_latest_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_lead_id": {"name": "analytics___salesforce__account_account_lead_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_lead_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_main_csm_sf_user_id": {"name": "analytics___salesforce__account_account_main_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_main_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_name": {"name": "analytics___salesforce__account_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_owner_full_name": {"name": "analytics___salesforce__account_account_owner_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_owner_full_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_owner_role": {"name": "analytics___salesforce__account_account_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_owner_role", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_plan_name": {"name": "analytics___salesforce__account_account_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_plan_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_platform": {"name": "analytics___salesforce__account_account_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_platform", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_primary_sales_channel": {"name": "analytics___salesforce__account_account_primary_sales_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_primary_sales_channel", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_referred_by_agency_id": {"name": "analytics___salesforce__account_account_referred_by_agency_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_referred_by_agency_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_referrer_type": {"name": "analytics___salesforce__account_account_referrer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_referrer_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_sales_segment": {"name": "analytics___salesforce__account_account_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_sales_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_sms_csm_sf_user_id": {"name": "analytics___salesforce__account_account_sms_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_sms_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_sms_strategist": {"name": "analytics___salesforce__account_account_sms_strategist", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_sms_strategist", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_status": {"name": "analytics___salesforce__account_account_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_status", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_time_zone": {"name": "analytics___salesforce__account_account_time_zone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_time_zone", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_total_acv": {"name": "analytics___salesforce__account_account_total_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_total_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_account_type": {"name": "analytics___salesforce__account_account_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_account_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_agency_services": {"name": "analytics___salesforce__account_agency_services", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_agency_services", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_annual_revenue": {"name": "analytics___salesforce__account_annual_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_annual_revenue", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_app_key": {"name": "analytics___salesforce__account_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_app_key", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_closest_contract_renewal_date": {"name": "analytics___salesforce__account_closest_contract_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_closest_contract_renewal_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_country": {"name": "analytics___salesforce__account_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_country", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_country_code": {"name": "analytics___salesforce__account_country_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_country_code", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_created_date": {"name": "analytics___salesforce__account_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_created_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_cs_estimated_annual_sales": {"name": "analytics___salesforce__account_cs_estimated_annual_sales", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_cs_estimated_annual_sales", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_cs_estimated_aov": {"name": "analytics___salesforce__account_cs_estimated_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_cs_estimated_aov", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_cs_estimated_monthly_orders": {"name": "analytics___salesforce__account_cs_estimated_monthly_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_cs_estimated_monthly_orders", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_cs_segment": {"name": "analytics___salesforce__account_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_cs_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_cs_tags": {"name": "analytics___salesforce__account_cs_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_cs_tags", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_csm_sf_user_id": {"name": "analytics___salesforce__account_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_description": {"name": "analytics___salesforce__account_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_description", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_domain": {"name": "analytics___salesforce__account_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_domain", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_dwh_updated_at": {"name": "analytics___salesforce__account_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_email": {"name": "analytics___salesforce__account_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_email", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_estimated_monthly_orders_volume": {"name": "analytics___salesforce__account_estimated_monthly_orders_volume", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_estimated_monthly_orders_volume", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_extensions": {"name": "analytics___salesforce__account_extensions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_extensions", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_first_won_opportunity": {"name": "analytics___salesforce__account_first_won_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_first_won_opportunity", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_has_a_community_member": {"name": "analytics___salesforce__account_has_a_community_member", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_has_a_community_member", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_iap_tier": {"name": "analytics___salesforce__account_iap_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_iap_tier", "block_contents": "Accounts identified that match Ideal Account Profile (IAP)"}, "doc.yoda.analytics___salesforce__account_industry_name": {"name": "analytics___salesforce__account_industry_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_industry_name", "block_contents": "Field to hold the account industry. Values were generated by Product team."}, "doc.yoda.analytics___salesforce__account_influenced_by_agency_id": {"name": "analytics___salesforce__account_influenced_by_agency_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_influenced_by_agency_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_is_account_data_excluded": {"name": "analytics___salesforce__account_is_account_data_excluded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_is_account_data_excluded", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_is_annual_account": {"name": "analytics___salesforce__account_is_annual_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_is_annual_account", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_is_deleted_account": {"name": "analytics___salesforce__account_is_deleted_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_is_deleted_account", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_is_original_dem_gen_marketing": {"name": "analytics___salesforce__account_is_original_dem_gen_marketing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_is_original_dem_gen_marketing", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_is_original_dem_gen_osdr": {"name": "analytics___salesforce__account_is_original_dem_gen_osdr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_is_original_dem_gen_osdr", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_is_original_dem_gen_other": {"name": "analytics___salesforce__account_is_original_dem_gen_other", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_is_original_dem_gen_other", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_is_original_dem_gen_partners": {"name": "analytics___salesforce__account_is_original_dem_gen_partners", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_is_original_dem_gen_partners", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_is_partner_account": {"name": "analytics___salesforce__account_is_partner_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_is_partner_account", "block_contents": "type is one of the following list: ('agency', 'partner', 'referrer')"}, "doc.yoda.analytics___salesforce__account_is_test_account": {"name": "analytics___salesforce__account_is_test_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_is_test_account", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_last_modified_date": {"name": "analytics___salesforce__account_last_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_last_modified_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_latest_opportunity_id": {"name": "analytics___salesforce__account_latest_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_latest_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_lead_id": {"name": "analytics___salesforce__account_lead_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_lead_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_loyalty_acv": {"name": "analytics___salesforce__account_loyalty_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_loyalty_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_loyalty_contract_renewal_date": {"name": "analytics___salesforce__account_loyalty_contract_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_loyalty_contract_renewal_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_loyalty_first_opportunity": {"name": "analytics___salesforce__account_loyalty_first_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_loyalty_first_opportunity", "block_contents": "loyalty first closed opportunity id"}, "doc.yoda.analytics___salesforce__account_loyalty_first_opportunity_close_date": {"name": "analytics___salesforce__account_loyalty_first_opportunity_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_loyalty_first_opportunity_close_date", "block_contents": "loyalty first closed opportunity close date"}, "doc.yoda.analytics___salesforce__account_loyalty_first_opportunity_start_date": {"name": "analytics___salesforce__account_loyalty_first_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_loyalty_first_opportunity_start_date", "block_contents": "loyalty first closed opportunity start date"}, "doc.yoda.analytics___salesforce__account_main_csm_sf_user_id": {"name": "analytics___salesforce__account_main_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_main_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_merchant_id": {"name": "analytics___salesforce__account_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_merchant_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_order_limit_roll_up": {"name": "analytics___salesforce__account_order_limit_roll_up", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_order_limit_roll_up", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_organization_id": {"name": "analytics___salesforce__account_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_organization_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_organization_key": {"name": "analytics___salesforce__account_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_organization_key", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_owner_id": {"name": "analytics___salesforce__account_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_packages": {"name": "analytics___salesforce__account_packages", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_packages", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_parent_account_id": {"name": "analytics___salesforce__account_parent_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_parent_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_plan_name": {"name": "analytics___salesforce__account_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_plan_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_platform": {"name": "analytics___salesforce__account_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_platform", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_previous_package_category": {"name": "analytics___salesforce__account_previous_package_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_previous_package_category", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_primary_sales_channel": {"name": "analytics___salesforce__account_primary_sales_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_primary_sales_channel", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_referred_by_agency_id": {"name": "analytics___salesforce__account_referred_by_agency_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_referred_by_agency_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_referrer_type": {"name": "analytics___salesforce__account_referrer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_referrer_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_reviews_first_opportunity": {"name": "analytics___salesforce__account_reviews_first_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_reviews_first_opportunity", "block_contents": "reviews first closed opportunity id"}, "doc.yoda.analytics___salesforce__account_reviews_first_opportunity_close_date": {"name": "analytics___salesforce__account_reviews_first_opportunity_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_reviews_first_opportunity_close_date", "block_contents": "reviews first closed opportunity close date"}, "doc.yoda.analytics___salesforce__account_reviews_first_opportunity_start_date": {"name": "analytics___salesforce__account_reviews_first_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_reviews_first_opportunity_start_date", "block_contents": "reviews first closed opportunity start date"}, "doc.yoda.analytics___salesforce__account_sales_segment": {"name": "analytics___salesforce__account_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_sales_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_sms_annualized_usage_rev": {"name": "analytics___salesforce__account_sms_annualized_usage_rev", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_sms_annualized_usage_rev", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_sms_csm_sf_user_id": {"name": "analytics___salesforce__account_sms_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_sms_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_sms_first_opportunity": {"name": "analytics___salesforce__account_sms_first_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_sms_first_opportunity", "block_contents": "sms first closed opportunity id"}, "doc.yoda.analytics___salesforce__account_sms_first_opportunity_close_date": {"name": "analytics___salesforce__account_sms_first_opportunity_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_sms_first_opportunity_close_date", "block_contents": "sms first closed opportunity close date"}, "doc.yoda.analytics___salesforce__account_sms_first_opportunity_start_date": {"name": "analytics___salesforce__account_sms_first_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_sms_first_opportunity_start_date", "block_contents": "sms first closed opportunity start date"}, "doc.yoda.analytics___salesforce__account_sms_strategist": {"name": "analytics___salesforce__account_sms_strategist", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_sms_strategist", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_sms_total_arr": {"name": "analytics___salesforce__account_sms_total_arr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_sms_total_arr", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_sms_usage_cancellation_date": {"name": "analytics___salesforce__account_sms_usage_cancellation_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_sms_usage_cancellation_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_status": {"name": "analytics___salesforce__account_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_status", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_sub_industry_name": {"name": "analytics___salesforce__account_sub_industry_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_sub_industry_name", "block_contents": "Holds the Sub Industry of the lead. Values were generated by the Product Team."}, "doc.yoda.analytics___salesforce__account_subscription_seller": {"name": "analytics___salesforce__account_subscription_seller", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_subscription_seller", "block_contents": "The account manager respinsible for the sell of the closed opportunity"}, "doc.yoda.analytics___salesforce__account_territory": {"name": "analytics___salesforce__account_territory", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_territory", "block_contents": "Account Territory SF account field in form of \"Region\" and \"Segment\" concatenated"}, "doc.yoda.analytics___salesforce__account_time_zone": {"name": "analytics___salesforce__account_time_zone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_time_zone", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_total_acv": {"name": "analytics___salesforce__account_total_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_total_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_type": {"name": "analytics___salesforce__account_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_ugc_acv": {"name": "analytics___salesforce__account_ugc_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_ugc_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_vms_first_opportunity": {"name": "analytics___salesforce__account_vms_first_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_vms_first_opportunity", "block_contents": "vms first closed opportunity id"}, "doc.yoda.analytics___salesforce__account_vms_first_opportunity_close_date": {"name": "analytics___salesforce__account_vms_first_opportunity_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_vms_first_opportunity_close_date", "block_contents": "vms first closed opportunity close date"}, "doc.yoda.analytics___salesforce__account_vms_first_opportunity_start_date": {"name": "analytics___salesforce__account_vms_first_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_vms_first_opportunity_start_date", "block_contents": "vms first closed opportunity start date"}, "doc.yoda.analytics___salesforce__account_yotpo_industry_confidence_level": {"name": "analytics___salesforce__account_yotpo_industry_confidence_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account/analytics___salesforce__account.md", "unique_id": "doc.yoda.analytics___salesforce__account_yotpo_industry_confidence_level", "block_contents": "Field to hold the confidence level of the Industry specified on the lead level. Used by product team for insights product."}, "doc.yoda.analytics___salesforce__account_enrichment": {"name": "analytics___salesforce__account_enrichment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment", "block_contents": "Modeled table of salesforce account enrichments with fields to write back to salesforce | PK & Granularity: Id"}, "doc.yoda.analytics___salesforce__account_enrichment_Account_Email_c": {"name": "analytics___salesforce__account_enrichment_Account_Email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_Account_Email_c", "block_contents": "Email of use leading user in the organization"}, "doc.yoda.analytics___salesforce__account_enrichment_DB_Package_Category_c": {"name": "analytics___salesforce__account_enrichment_DB_Package_Category_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_DB_Package_Category_c", "block_contents": "Account's plans tags list (e.g Reviews free, SMS annually)"}, "doc.yoda.analytics___salesforce__account_enrichment_Id": {"name": "analytics___salesforce__account_enrichment_Id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_Id", "block_contents": "PK"}, "doc.yoda.analytics___salesforce__account_enrichment_Package_c": {"name": "analytics___salesforce__account_enrichment_Package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_Package_c", "block_contents": "Account's plans (e.g Common - Prime,Reviews - Prime 250)"}, "doc.yoda.analytics___salesforce__account_enrichment_Platform_c": {"name": "analytics___salesforce__account_enrichment_Platform_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_Platform_c", "block_contents": "Account's leading store's platform based on last 3 month orders"}, "doc.yoda.analytics___salesforce__account_enrichment_Registration_Date_c": {"name": "analytics___salesforce__account_enrichment_Registration_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_Registration_Date_c", "block_contents": "Account's first store creation date"}, "doc.yoda.analytics___salesforce__account_enrichment_SMS_Annualized_Usage_Rev_c": {"name": "analytics___salesforce__account_enrichment_SMS_Annualized_Usage_Rev_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_SMS_Annualized_Usage_Rev_c", "block_contents": "When account's sms live date is less than a year ago: 12 times the avg usage of the last 1-4 months based on live date, otherwise: last 12 months usage"}, "doc.yoda.analytics___salesforce__account_enrichment_SMS_Total_ARR_c": {"name": "analytics___salesforce__account_enrichment_SMS_Total_ARR_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_SMS_Total_ARR_c", "block_contents": "Annualized usage + account's sms acv"}, "doc.yoda.analytics___salesforce__account_enrichment_account_last_modified_date": {"name": "analytics___salesforce__account_enrichment_account_last_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_account_last_modified_date", "block_contents": "date of when the related salesforce account object has updated for the last time"}, "doc.yoda.analytics___salesforce__account_enrichment_dwh_updated_at": {"name": "analytics___salesforce__account_enrichment_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment/analytics___salesforce__account_enrichment.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_enrichment_daily_diff": {"name": "analytics___salesforce__account_enrichment_daily_diff", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_daily_diff/analytics___salesforce__account_enrichment_daily_diff.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_daily_diff", "block_contents": "Modeled view which holds only the last delta of changes for account_enrichment_snapshot_daily"}, "doc.yoda.analytics___salesforce__account_enrichment_snapshot_daily": {"name": "analytics___salesforce__account_enrichment_snapshot_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_snapshot_daily", "block_contents": "A modeled incremental table to keep tracking of salesforce account enrichment values | PK & Granularity: Id, updated_at"}, "doc.yoda.analytics___salesforce__account_enrichment_snapshot_daily_updated_at": {"name": "analytics___salesforce__account_enrichment_snapshot_daily_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_enrichment_snapshot_daily/analytics___salesforce__account_enrichment_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_enrichment_snapshot_daily_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_product": {"name": "analytics___salesforce__account_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.md", "unique_id": "doc.yoda.analytics___salesforce__account_product", "block_contents": "Modeled Table Salseforce Account Product \nPK & granularity: account_product_id"}, "doc.yoda.analytics___salesforce__account_product_dwh_updated_at": {"name": "analytics___salesforce__account_product_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.md", "unique_id": "doc.yoda.analytics___salesforce__account_product_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_product_product_stage": {"name": "analytics___salesforce__account_product_product_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_product/analytics___salesforce__account_product.md", "unique_id": "doc.yoda.analytics___salesforce__account_product_product_stage", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily": {"name": "analytics___salesforce__account_tracking_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily", "block_contents": "Modeled incremental table of account daily snapshot. Backfilled with fact_account_profile_daily history\nGranularity | PK : date, account_id"}, "doc.yoda.analytics___salesforce__account_tracking_daily_account_id": {"name": "analytics___salesforce__account_tracking_daily_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_account_name": {"name": "analytics___salesforce__account_tracking_daily_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_account_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_date": {"name": "analytics___salesforce__account_tracking_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_dwh_updated_at": {"name": "analytics___salesforce__account_tracking_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_email_csm_id": {"name": "analytics___salesforce__account_tracking_daily_email_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_email_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_email_csm_name": {"name": "analytics___salesforce__account_tracking_daily_email_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_email_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_email_csm_team": {"name": "analytics___salesforce__account_tracking_daily_email_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_email_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_loyalty_csm_id": {"name": "analytics___salesforce__account_tracking_daily_loyalty_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_loyalty_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_loyalty_csm_name": {"name": "analytics___salesforce__account_tracking_daily_loyalty_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_loyalty_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_loyalty_csm_team": {"name": "analytics___salesforce__account_tracking_daily_loyalty_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_loyalty_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_primary_csm_id": {"name": "analytics___salesforce__account_tracking_daily_primary_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_primary_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_primary_csm_name": {"name": "analytics___salesforce__account_tracking_daily_primary_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_primary_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_primary_csm_team": {"name": "analytics___salesforce__account_tracking_daily_primary_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_primary_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_sms_csm_id": {"name": "analytics___salesforce__account_tracking_daily_sms_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_sms_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_sms_csm_name": {"name": "analytics___salesforce__account_tracking_daily_sms_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_sms_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_sms_csm_team": {"name": "analytics___salesforce__account_tracking_daily_sms_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_sms_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_sms_strategist_id": {"name": "analytics___salesforce__account_tracking_daily_sms_strategist_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_sms_strategist_id", "block_contents": "points to SMS CSM from 2023-05-08"}, "doc.yoda.analytics___salesforce__account_tracking_daily_sms_strategist_name": {"name": "analytics___salesforce__account_tracking_daily_sms_strategist_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_sms_strategist_name", "block_contents": "points to SMS CSM from 2023-05-08"}, "doc.yoda.analytics___salesforce__account_tracking_daily_sms_strategist_team": {"name": "analytics___salesforce__account_tracking_daily_sms_strategist_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_sms_strategist_team", "block_contents": "points to SMS CSM team from 2023-05-08"}, "doc.yoda.analytics___salesforce__account_tracking_daily_subscription_csm_id": {"name": "analytics___salesforce__account_tracking_daily_subscription_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_subscription_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_subscriptions_csm_name": {"name": "analytics___salesforce__account_tracking_daily_subscriptions_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_subscriptions_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_subscriptions_csm_team": {"name": "analytics___salesforce__account_tracking_daily_subscriptions_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_subscriptions_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_ugc_csm_id": {"name": "analytics___salesforce__account_tracking_daily_ugc_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_ugc_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_ugc_csm_name": {"name": "analytics___salesforce__account_tracking_daily_ugc_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_ugc_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__account_tracking_daily_ugc_csm_team": {"name": "analytics___salesforce__account_tracking_daily_ugc_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__account_tracking_daily/analytics___salesforce__account_tracking_daily.md", "unique_id": "doc.yoda.analytics___salesforce__account_tracking_daily_ugc_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce__campaign_member_field_history": {"name": "analytics___salesforce__campaign_member_field_history", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "unique_id": "doc.yoda.analytics___salesforce__campaign_member_field_history", "block_contents": "A modeled table of the salesforce object custom_field_history_tracking__c including union of old values from static table | PK & Granularity: campaign_member_id, field_name, from_time"}, "doc.yoda.analytics___salesforce__campaign_member_field_history_campaign_member_id": {"name": "analytics___salesforce__campaign_member_field_history_campaign_member_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "unique_id": "doc.yoda.analytics___salesforce__campaign_member_field_history_campaign_member_id", "block_contents": "PK 1/3 - sf id of the affected campaign member object"}, "doc.yoda.analytics___salesforce__campaign_member_field_history_dwh_updated_at": {"name": "analytics___salesforce__campaign_member_field_history_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "unique_id": "doc.yoda.analytics___salesforce__campaign_member_field_history_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__campaign_member_field_history_field_name": {"name": "analytics___salesforce__campaign_member_field_history_field_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "unique_id": "doc.yoda.analytics___salesforce__campaign_member_field_history_field_name", "block_contents": "PK 2/3 - the field that was changed"}, "doc.yoda.analytics___salesforce__campaign_member_field_history_from_time": {"name": "analytics___salesforce__campaign_member_field_history_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "unique_id": "doc.yoda.analytics___salesforce__campaign_member_field_history_from_time", "block_contents": ""}, "doc.yoda.analytics___salesforce__campaign_member_field_history_is_current": {"name": "analytics___salesforce__campaign_member_field_history_is_current", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "unique_id": "doc.yoda.analytics___salesforce__campaign_member_field_history_is_current", "block_contents": "indicator if field_value the current value held in the field"}, "doc.yoda.analytics___salesforce__campaign_member_field_history_to_time": {"name": "analytics___salesforce__campaign_member_field_history_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__campaign_member_field_history/analytics___salesforce__campaign_member_field_history.md", "unique_id": "doc.yoda.analytics___salesforce__campaign_member_field_history_to_time", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary": {"name": "analytics___salesforce__deal_summary", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary", "block_contents": "Modeled table of salesforce deal_summary_new new object | PK & Granularity: deal_summary_id"}, "doc.yoda.analytics___salesforce__deal_summary_created_at": {"name": "analytics___salesforce__deal_summary_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_created_by_sf_user_gk": {"name": "analytics___salesforce__deal_summary_created_by_sf_user_gk", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_created_by_sf_user_gk", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_created_by_sf_user_id": {"name": "analytics___salesforce__deal_summary_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_created_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_currency_iso_code": {"name": "analytics___salesforce__deal_summary_currency_iso_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_currency_iso_code", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_current_acv_for_retention_original_currency": {"name": "analytics___salesforce__deal_summary_current_acv_for_retention_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_current_acv_for_retention_original_currency", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_current_acv_for_retention_usd": {"name": "analytics___salesforce__deal_summary_current_acv_for_retention_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_current_acv_for_retention_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_current_acv_original_currency": {"name": "analytics___salesforce__deal_summary_current_acv_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_current_acv_original_currency", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_current_acv_usd": {"name": "analytics___salesforce__deal_summary_current_acv_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_current_acv_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_deal_summary_id": {"name": "analytics___salesforce__deal_summary_deal_summary_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_deal_summary_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_deal_type_summary": {"name": "analytics___salesforce__deal_summary_deal_type_summary", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_deal_type_summary", "block_contents": "deal type: Renewal/Sale"}, "doc.yoda.analytics___salesforce__deal_summary_delta_acv_calculated_usd": {"name": "analytics___salesforce__deal_summary_delta_acv_calculated_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_delta_acv_calculated_usd", "block_contents": "current_acv - previous_acv"}, "doc.yoda.analytics___salesforce__deal_summary_delta_acv_for_retention_usd": {"name": "analytics___salesforce__deal_summary_delta_acv_for_retention_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_delta_acv_for_retention_usd", "block_contents": "difference of current acv for retention and previous acv"}, "doc.yoda.analytics___salesforce__deal_summary_delta_acv_usd": {"name": "analytics___salesforce__deal_summary_delta_acv_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_delta_acv_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_dwh_updated_at": {"name": "analytics___salesforce__deal_summary_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_is_company_expansion": {"name": "analytics___salesforce__deal_summary_is_company_expansion", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_is_company_expansion", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_is_deleted": {"name": "analytics___salesforce__deal_summary_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_is_extra_domain": {"name": "analytics___salesforce__deal_summary_is_extra_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_is_extra_domain", "block_contents": "indicates if the opportunity product is not a plan product"}, "doc.yoda.analytics___salesforce__deal_summary_opportunity_conversion_rate": {"name": "analytics___salesforce__deal_summary_opportunity_conversion_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_opportunity_conversion_rate", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_opportunity_deal_type_as_per_deal_summary": {"name": "analytics___salesforce__deal_summary_opportunity_deal_type_as_per_deal_summary", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_opportunity_deal_type_as_per_deal_summary", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_opportunity_id": {"name": "analytics___salesforce__deal_summary_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_opportunity_owner_id": {"name": "analytics___salesforce__deal_summary_opportunity_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_opportunity_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_opportunity_plan_id": {"name": "analytics___salesforce__deal_summary_opportunity_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_opportunity_plan_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_opportunity_product_deal_type": {"name": "analytics___salesforce__deal_summary_opportunity_product_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_opportunity_product_deal_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_opportunity_stage": {"name": "analytics___salesforce__deal_summary_opportunity_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_opportunity_stage", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_opportunity_start_date": {"name": "analytics___salesforce__deal_summary_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_opportunity_start_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_opportunity_type": {"name": "analytics___salesforce__deal_summary_opportunity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_opportunity_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_organization_id": {"name": "analytics___salesforce__deal_summary_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_organization_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_organization_key": {"name": "analytics___salesforce__deal_summary_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_organization_key", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_pipeline_usd": {"name": "analytics___salesforce__deal_summary_pipeline_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_pipeline_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_plan": {"name": "analytics___salesforce__deal_summary_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_plan", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_previous_acv_original_currency": {"name": "analytics___salesforce__deal_summary_previous_acv_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_previous_acv_original_currency", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_previous_acv_usd": {"name": "analytics___salesforce__deal_summary_previous_acv_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_previous_acv_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_renewal_from_opportunity_line": {"name": "analytics___salesforce__deal_summary_renewal_from_opportunity_line", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_renewal_from_opportunity_line", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_sf_account_id": {"name": "analytics___salesforce__deal_summary_sf_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_sf_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_status": {"name": "analytics___salesforce__deal_summary_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_status", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_updated_at": {"name": "analytics___salesforce__deal_summary_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_updated_by_sf_user_gk": {"name": "analytics___salesforce__deal_summary_updated_by_sf_user_gk", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_updated_by_sf_user_gk", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_updated_by_sf_user_id": {"name": "analytics___salesforce__deal_summary_updated_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary/analytics___salesforce__deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_updated_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product": {"name": "analytics___salesforce__deal_summary_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product", "block_contents": "Modeled table of product level from salesforce deal_summary_new object | PK & Granularity: product_id, opportunity_id"}, "doc.yoda.analytics___salesforce__deal_summary_product_created_at": {"name": "analytics___salesforce__deal_summary_product_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_created_by_sf_user_gk": {"name": "analytics___salesforce__deal_summary_product_created_by_sf_user_gk", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_created_by_sf_user_gk", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_created_by_sf_user_id": {"name": "analytics___salesforce__deal_summary_product_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_created_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_currency_iso_code": {"name": "analytics___salesforce__deal_summary_product_currency_iso_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_currency_iso_code", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_current_acv": {"name": "analytics___salesforce__deal_summary_product_current_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_current_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_current_acv_original_currency": {"name": "analytics___salesforce__deal_summary_product_current_acv_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_current_acv_original_currency", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_current_plans": {"name": "analytics___salesforce__deal_summary_product_current_plans", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_current_plans", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_deal_summary_product_id": {"name": "analytics___salesforce__deal_summary_product_deal_summary_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_deal_summary_product_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_deal_type": {"name": "analytics___salesforce__deal_summary_product_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_deal_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_delta_acv": {"name": "analytics___salesforce__deal_summary_product_delta_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_delta_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_delta_acv_open": {"name": "analytics___salesforce__deal_summary_product_delta_acv_open", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_delta_acv_open", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_dwh_updated_at": {"name": "analytics___salesforce__deal_summary_product_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_is_company_expansion": {"name": "analytics___salesforce__deal_summary_product_is_company_expansion", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_is_company_expansion", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_is_crossell": {"name": "analytics___salesforce__deal_summary_product_is_crossell", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_is_crossell", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_is_deleted": {"name": "analytics___salesforce__deal_summary_product_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_is_product_won": {"name": "analytics___salesforce__deal_summary_product_is_product_won", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_is_product_won", "block_contents": "If deal type contains successful then 1, if lost or churn then 0"}, "doc.yoda.analytics___salesforce__deal_summary_product_new_acv": {"name": "analytics___salesforce__deal_summary_product_new_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_new_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_new_plans": {"name": "analytics___salesforce__deal_summary_product_new_plans", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_new_plans", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_old_acv": {"name": "analytics___salesforce__deal_summary_product_old_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_old_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_old_plans": {"name": "analytics___salesforce__deal_summary_product_old_plans", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_old_plans", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_conversion_rate": {"name": "analytics___salesforce__deal_summary_product_opportunity_conversion_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_conversion_rate", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_deal_type_as_per_deal_summary": {"name": "analytics___salesforce__deal_summary_product_opportunity_deal_type_as_per_deal_summary", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_deal_type_as_per_deal_summary", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_id": {"name": "analytics___salesforce__deal_summary_product_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_owner_id": {"name": "analytics___salesforce__deal_summary_product_opportunity_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_stage": {"name": "analytics___salesforce__deal_summary_product_opportunity_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_stage", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_start_date": {"name": "analytics___salesforce__deal_summary_product_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_start_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_type": {"name": "analytics___salesforce__deal_summary_product_opportunity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_opportunity_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_organization_id": {"name": "analytics___salesforce__deal_summary_product_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_organization_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_organization_key": {"name": "analytics___salesforce__deal_summary_product_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_organization_key", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_pipeline_usd": {"name": "analytics___salesforce__deal_summary_product_pipeline_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_pipeline_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_plans_added": {"name": "analytics___salesforce__deal_summary_product_plans_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_plans_added", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_plans_removed": {"name": "analytics___salesforce__deal_summary_product_plans_removed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_plans_removed", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_previous_acv": {"name": "analytics___salesforce__deal_summary_product_previous_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_previous_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_previous_acv_original_currency": {"name": "analytics___salesforce__deal_summary_product_previous_acv_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_previous_acv_original_currency", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_previous_plans": {"name": "analytics___salesforce__deal_summary_product_previous_plans", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_previous_plans", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_product": {"name": "analytics___salesforce__deal_summary_product_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_product", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_product_family_group": {"name": "analytics___salesforce__deal_summary_product_product_family_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_product_family_group", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_renewal_acv": {"name": "analytics___salesforce__deal_summary_product_renewal_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_renewal_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_sf_account_id": {"name": "analytics___salesforce__deal_summary_product_sf_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_sf_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_total_current_acv": {"name": "analytics___salesforce__deal_summary_product_total_current_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_total_current_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_total_delta_acv": {"name": "analytics___salesforce__deal_summary_product_total_delta_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_total_delta_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_total_previous_acv": {"name": "analytics___salesforce__deal_summary_product_total_previous_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_total_previous_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_updated_at": {"name": "analytics___salesforce__deal_summary_product_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_updated_by_sf_user_gk": {"name": "analytics___salesforce__deal_summary_product_updated_by_sf_user_gk", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_updated_by_sf_user_gk", "block_contents": ""}, "doc.yoda.analytics___salesforce__deal_summary_product_updated_by_sf_user_id": {"name": "analytics___salesforce__deal_summary_product_updated_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__deal_summary_product/analytics___salesforce__deal_summary_product.md", "unique_id": "doc.yoda.analytics___salesforce__deal_summary_product_updated_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead": {"name": "analytics___salesforce__lead", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead", "block_contents": "Modeled table over salesforce lead view"}, "doc.yoda.analytics___salesforce__lead_booking_status_chilipiper": {"name": "analytics___salesforce__lead_booking_status_chilipiper", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_booking_status_chilipiper", "block_contents": "status for lead meeting booked with chilli piper"}, "doc.yoda.analytics___salesforce__lead_converted_account_id": {"name": "analytics___salesforce__lead_converted_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_converted_account_id", "block_contents": "account id of converted lead"}, "doc.yoda.analytics___salesforce__lead_converted_contact_id": {"name": "analytics___salesforce__lead_converted_contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_converted_contact_id", "block_contents": "contact id of converted lead"}, "doc.yoda.analytics___salesforce__lead_converted_opportunity_id": {"name": "analytics___salesforce__lead_converted_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_converted_opportunity_id", "block_contents": "opportunity id of converted lead"}, "doc.yoda.analytics___salesforce__lead_country": {"name": "analytics___salesforce__lead_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_country", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_dwh_updated_at": {"name": "analytics___salesforce__lead_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_first_activity_at": {"name": "analytics___salesforce__lead_first_activity_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_first_activity_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_is_converted": {"name": "analytics___salesforce__lead_is_converted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_is_converted", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_is_deleted": {"name": "analytics___salesforce__lead_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_is_interested_in_loyalty": {"name": "analytics___salesforce__lead_is_interested_in_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_is_interested_in_loyalty", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_is_interested_in_reviews": {"name": "analytics___salesforce__lead_is_interested_in_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_is_interested_in_reviews", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_is_interested_in_sms": {"name": "analytics___salesforce__lead_is_interested_in_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_is_interested_in_sms", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_is_interested_in_subscription": {"name": "analytics___salesforce__lead_is_interested_in_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_is_interested_in_subscription", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_is_interested_in_vms": {"name": "analytics___salesforce__lead_is_interested_in_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_is_interested_in_vms", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_last_product_of_last_subscription_event": {"name": "analytics___salesforce__lead_last_product_of_last_subscription_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_last_product_of_last_subscription_event", "block_contents": "indicate what was the last product event before the trigger"}, "doc.yoda.analytics___salesforce__lead_last_subscription_event_change": {"name": "analytics___salesforce__lead_last_subscription_event_change", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_last_subscription_event_change", "block_contents": "indicate what was the product in the last product event before the trigger"}, "doc.yoda.analytics___salesforce__lead_lead_converted_at": {"name": "analytics___salesforce__lead_lead_converted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_converted_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_created_at": {"name": "analytics___salesforce__lead_lead_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_domain": {"name": "analytics___salesforce__lead_lead_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_domain", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_email": {"name": "analytics___salesforce__lead_lead_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_email", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_first_campaign": {"name": "analytics___salesforce__lead_lead_first_campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_first_campaign", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_first_campaign_name": {"name": "analytics___salesforce__lead_lead_first_campaign_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_first_campaign_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_first_campaign_type": {"name": "analytics___salesforce__lead_lead_first_campaign_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_first_campaign_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_full_name": {"name": "analytics___salesforce__lead_lead_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_full_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_id": {"name": "analytics___salesforce__lead_lead_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_industry": {"name": "analytics___salesforce__lead_lead_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_industry", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_mql_at": {"name": "analytics___salesforce__lead_lead_mql_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_mql_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_phone": {"name": "analytics___salesforce__lead_lead_phone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_phone", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_platform": {"name": "analytics___salesforce__lead_lead_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_platform", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_referrer": {"name": "analytics___salesforce__lead_lead_referrer", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_referrer", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_sdr": {"name": "analytics___salesforce__lead_lead_sdr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_sdr", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_source": {"name": "analytics___salesforce__lead_lead_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_source", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_status": {"name": "analytics___salesforce__lead_lead_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_status", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_title": {"name": "analytics___salesforce__lead_lead_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_title", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_type": {"name": "analytics___salesforce__lead_lead_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_lead_website": {"name": "analytics___salesforce__lead_lead_website", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_lead_website", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_organization_key": {"name": "analytics___salesforce__lead_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_organization_key", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_prospect_fit_rank": {"name": "analytics___salesforce__lead_prospect_fit_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_prospect_fit_rank", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_prospect_fit_reason": {"name": "analytics___salesforce__lead_prospect_fit_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_prospect_fit_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_prospect_intent_rank": {"name": "analytics___salesforce__lead_prospect_intent_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_prospect_intent_rank", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_prospect_intent_reason": {"name": "analytics___salesforce__lead_prospect_intent_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_prospect_intent_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_segment_id": {"name": "analytics___salesforce__lead_segment_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_segment_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_utm_campaign": {"name": "analytics___salesforce__lead_utm_campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_utm_campaign", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_utm_medium": {"name": "analytics___salesforce__lead_utm_medium", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_utm_medium", "block_contents": ""}, "doc.yoda.analytics___salesforce__lead_utm_source": {"name": "analytics___salesforce__lead_utm_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__lead/analytics___salesforce__lead.md", "unique_id": "doc.yoda.analytics___salesforce__lead_utm_source", "block_contents": ""}, "doc.yoda.analytics___salesforce__live_chat_transcript": {"name": "analytics___salesforce__live_chat_transcript", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce__live_chat_transcript", "block_contents": "Modeled table which presents all of the live chats PK : chat_transcript_name, chat_id"}, "doc.yoda.analytics___salesforce__live_chat_transcript_dwh_updated_at": {"name": "analytics___salesforce__live_chat_transcript_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce__live_chat_transcript_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce__live_chat_transcript_team_name": {"name": "analytics___salesforce__live_chat_transcript_team_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__live_chat_transcript/analytics___salesforce__live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce__live_chat_transcript_team_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce__mql": {"name": "analytics___salesforce__mql", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.md", "unique_id": "doc.yoda.analytics___salesforce__mql", "block_contents": "A modeled table of the salesforce object mql | PK & Granularity: mql_id"}, "doc.yoda.analytics___salesforce__mql_account_id": {"name": "analytics___salesforce__mql_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.md", "unique_id": "doc.yoda.analytics___salesforce__mql_account_id", "block_contents": "sf account id of corresponding account"}, "doc.yoda.analytics___salesforce__mql_dwh_updated_at": {"name": "analytics___salesforce__mql_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.md", "unique_id": "doc.yoda.analytics___salesforce__mql_dwh_updated_at", "block_contents": "sf account id of corresponding account"}, "doc.yoda.analytics___salesforce__mql_product_interest": {"name": "analytics___salesforce__mql_product_interest", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__mql/analytics___salesforce__mql.md", "unique_id": "doc.yoda.analytics___salesforce__mql_product_interest", "block_contents": ""}, "doc.yoda.analytics___salesforce__new_organization": {"name": "analytics___salesforce__new_organization", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.md", "unique_id": "doc.yoda.analytics___salesforce__new_organization", "block_contents": "A modeled view of organizations that do not exist in Salesforce but has paid plan | PK & Granularity: Organization_Key__c"}, "doc.yoda.analytics___salesforce__new_organization_Name": {"name": "analytics___salesforce__new_organization_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.md", "unique_id": "doc.yoda.analytics___salesforce__new_organization_Name", "block_contents": "Account's name"}, "doc.yoda.analytics___salesforce__new_organization_Organization_Key_c": {"name": "analytics___salesforce__new_organization_Organization_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__new_organization/analytics___salesforce__new_organization.md", "unique_id": "doc.yoda.analytics___salesforce__new_organization_Organization_Key_c", "block_contents": "PK"}, "doc.yoda.analytics___salesforce__onboarding_project": {"name": "analytics___salesforce__onboarding_project", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce__onboarding_project", "block_contents": "Modeled Table Salseforce Onboarding project\nPK & granularity: onboarding project id"}, "doc.yoda.analytics___salesforce__onboarding_project_dwh_updated_at": {"name": "analytics___salesforce__onboarding_project_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce__onboarding_project_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__onboarding_project_onboarding_manager": {"name": "analytics___salesforce__onboarding_project_onboarding_manager", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce__onboarding_project_onboarding_manager", "block_contents": "this indicates who is the onboarding manager if the onboarding is closed or who is the csm if open"}, "doc.yoda.analytics___salesforce__onboarding_project_onboarding_manager_team": {"name": "analytics___salesforce__onboarding_project_onboarding_manager_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce__onboarding_project_onboarding_manager_team", "block_contents": ""}, "doc.yoda.analytics___salesforce__onboarding_project_product_initial_won_date": {"name": "analytics___salesforce__onboarding_project_product_initial_won_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__onboarding_project/analytics___salesforce__onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce__onboarding_project_product_initial_won_date", "block_contents": "the date that the product opportunity was won at"}, "doc.yoda.analytics___salesforce__opportunity": {"name": "analytics___salesforce__opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity", "block_contents": "Modeled table of Opportunity salesforce object\nPK: account_id"}, "doc.yoda.analytics___salesforce__opportunity_account_id": {"name": "analytics___salesforce__opportunity_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_account_sales_region": {"name": "analytics___salesforce__opportunity_account_sales_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_account_sales_region", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_actual_duration": {"name": "analytics___salesforce__opportunity_actual_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_actual_duration", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_actual_end_date": {"name": "analytics___salesforce__opportunity_actual_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_actual_end_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_attribution_channel": {"name": "analytics___salesforce__opportunity_attribution_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_attribution_channel", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_contract_actual_duration_months": {"name": "analytics___salesforce__opportunity_contract_actual_duration_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_contract_actual_duration_months", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_contract_duration": {"name": "analytics___salesforce__opportunity_contract_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_contract_duration", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_contract_duration_months": {"name": "analytics___salesforce__opportunity_contract_duration_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_contract_duration_months", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_contract_duration_with_extension_months": {"name": "analytics___salesforce__opportunity_contract_duration_with_extension_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_contract_duration_with_extension_months", "block_contents": "months between contract renewal date and opportunity start date"}, "doc.yoda.analytics___salesforce__opportunity_conversion_rate": {"name": "analytics___salesforce__opportunity_conversion_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_conversion_rate", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_created_at": {"name": "analytics___salesforce__opportunity_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_created_by_sf_user_id": {"name": "analytics___salesforce__opportunity_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_created_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_created_date": {"name": "analytics___salesforce__opportunity_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_created_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_created_earr_in_usd": {"name": "analytics___salesforce__opportunity_created_earr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_created_earr_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_created_pipeline_in_usd": {"name": "analytics___salesforce__opportunity_created_pipeline_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_created_pipeline_in_usd", "block_contents": "total delta acv + total earr"}, "doc.yoda.analytics___salesforce__opportunity_customer_type": {"name": "analytics___salesforce__opportunity_customer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_customer_type", "block_contents": "Type of customer by subscription type, greenfield or migration"}, "doc.yoda.analytics___salesforce__opportunity_deal_type_as_per_deal_summary": {"name": "analytics___salesforce__opportunity_deal_type_as_per_deal_summary", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_deal_type_as_per_deal_summary", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_delta_acv": {"name": "analytics___salesforce__opportunity_delta_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_delta_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_delta_acv_in_usd": {"name": "analytics___salesforce__opportunity_delta_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_delta_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_discount_rate": {"name": "analytics___salesforce__opportunity_discount_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_discount_rate", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_dwh_updated_at": {"name": "analytics___salesforce__opportunity_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_email_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_email_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_email_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_entered_demo_date": {"name": "analytics___salesforce__opportunity_entered_demo_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_entered_demo_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_estimated_monthly_order_range": {"name": "analytics___salesforce__opportunity_estimated_monthly_order_range", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_estimated_monthly_order_range", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_estimated_review_requests_per_month": {"name": "analytics___salesforce__opportunity_estimated_review_requests_per_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_estimated_review_requests_per_month", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_insights_acv_in_original_currency_sum": {"name": "analytics___salesforce__opportunity_insights_acv_in_original_currency_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_insights_acv_in_original_currency_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_insights_acv_in_usd_sum": {"name": "analytics___salesforce__opportunity_insights_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_insights_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_bundle": {"name": "analytics___salesforce__opportunity_is_bundle", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_bundle", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_closed": {"name": "analytics___salesforce__opportunity_is_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_closed", "block_contents": "Stage is not one of the following: Won - Closed, Lost After Won, Lost"}, "doc.yoda.analytics___salesforce__opportunity_is_closed_mtd": {"name": "analytics___salesforce__opportunity_is_closed_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_closed_mtd", "block_contents": "The difference in days between the beggining of the close date month and the close date\nis less than/equal to the difference in days between the beggining of current month and today"}, "doc.yoda.analytics___salesforce__opportunity_is_closed_qtd": {"name": "analytics___salesforce__opportunity_is_closed_qtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_closed_qtd", "block_contents": "The difference in days between the beggining of the close date quarter and the close date\nis less than/equal to the difference in days between the beggining of current quarter and today"}, "doc.yoda.analytics___salesforce__opportunity_is_company_expansion": {"name": "analytics___salesforce__opportunity_is_company_expansion", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_company_expansion", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_created_mtd": {"name": "analytics___salesforce__opportunity_is_created_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_created_mtd", "block_contents": "The difference in days between the beggining of the created date month and the created date\nis less than/equal to the difference in days between the beggining of current month and today"}, "doc.yoda.analytics___salesforce__opportunity_is_created_qtd": {"name": "analytics___salesforce__opportunity_is_created_qtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_created_qtd", "block_contents": "The difference in days between the beggining of the created date quarter and the created date\nis less than/equal to the difference in days between the beggining of current quarter and today"}, "doc.yoda.analytics___salesforce__opportunity_is_current_contract": {"name": "analytics___salesforce__opportunity_is_current_contract", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_current_contract", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_deleted": {"name": "analytics___salesforce__opportunity_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_email": {"name": "analytics___salesforce__opportunity_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_email", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_email_intent": {"name": "analytics___salesforce__opportunity_is_email_intent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_email_intent", "block_contents": "An indicator to show if the customer intends on using email product when sold alongside SMS"}, "doc.yoda.analytics___salesforce__opportunity_is_entered_demo_mtd": {"name": "analytics___salesforce__opportunity_is_entered_demo_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_entered_demo_mtd", "block_contents": "The difference in days between the beggining of the entered demo date month and the entered demo date\nis less than/equal to the difference in days between the beggining of current month and today"}, "doc.yoda.analytics___salesforce__opportunity_is_entered_demo_qtd": {"name": "analytics___salesforce__opportunity_is_entered_demo_qtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_entered_demo_qtd", "block_contents": "The difference in days between the beggining of the entered demo date quarter and the entered demo date\nis less than/equal to the difference in days between the beggining of current quarter and today"}, "doc.yoda.analytics___salesforce__opportunity_is_excluded_from_compensation": {"name": "analytics___salesforce__opportunity_is_excluded_from_compensation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_excluded_from_compensation", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_ht_ss": {"name": "analytics___salesforce__opportunity_is_ht_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_ht_ss", "block_contents": "indicator = 1 if opportunity was HT motion.\nclassified as Hybrid_Deal_HT_SS = true in salesforce"}, "doc.yoda.analytics___salesforce__opportunity_is_insights": {"name": "analytics___salesforce__opportunity_is_insights", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_insights", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_loyalty": {"name": "analytics___salesforce__opportunity_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_marketing": {"name": "analytics___salesforce__opportunity_is_marketing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_marketing", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_new_account_opportunity": {"name": "analytics___salesforce__opportunity_is_new_account_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_new_account_opportunity", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_osdr": {"name": "analytics___salesforce__opportunity_is_osdr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_osdr", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_other_demand_gen_channel": {"name": "analytics___salesforce__opportunity_is_other_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_other_demand_gen_channel", "block_contents": "An indicator where the opportunity has not come from marketing, partners or oSDR"}, "doc.yoda.analytics___salesforce__opportunity_is_partner_opportunity": {"name": "analytics___salesforce__opportunity_is_partner_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_partner_opportunity", "block_contents": "Logic (is SMB Partner) OR (is MM Partners)"}, "doc.yoda.analytics___salesforce__opportunity_is_partner_upsell": {"name": "analytics___salesforce__opportunity_is_partner_upsell", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_partner_upsell", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_reviews": {"name": "analytics___salesforce__opportunity_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_reviews", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_sms": {"name": "analytics___salesforce__opportunity_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_sms", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_subscriptions": {"name": "analytics___salesforce__opportunity_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_vms": {"name": "analytics___salesforce__opportunity_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_vms", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_is_won_sale": {"name": "analytics___salesforce__opportunity_is_won_sale", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_is_won_sale", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_last_stage_change_date": {"name": "analytics___salesforce__opportunity_last_stage_change_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_last_stage_change_date", "block_contents": "The date where the last stage change occured"}, "doc.yoda.analytics___salesforce__opportunity_loyalty_acv_in_original_currency_sum": {"name": "analytics___salesforce__opportunity_loyalty_acv_in_original_currency_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_loyalty_acv_in_original_currency_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_loyalty_acv_in_usd_sum": {"name": "analytics___salesforce__opportunity_loyalty_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_loyalty_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_num_of_csm_extension_month": {"name": "analytics___salesforce__opportunity_num_of_csm_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_num_of_csm_extension_month", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_num_of_end_of_contract_extension_month": {"name": "analytics___salesforce__opportunity_num_of_end_of_contract_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_num_of_end_of_contract_extension_month", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_open_delta_acv_in_usd": {"name": "analytics___salesforce__opportunity_open_delta_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_open_delta_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_opportunity_close_date": {"name": "analytics___salesforce__opportunity_opportunity_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_opportunity_close_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_opportunity_deal_type": {"name": "analytics___salesforce__opportunity_opportunity_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_opportunity_deal_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_opportunity_description": {"name": "analytics___salesforce__opportunity_opportunity_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_opportunity_description", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_opportunity_id": {"name": "analytics___salesforce__opportunity_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_opportunity_name": {"name": "analytics___salesforce__opportunity_opportunity_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_opportunity_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_opportunity_original_currency": {"name": "analytics___salesforce__opportunity_opportunity_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_opportunity_original_currency", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_opportunity_owner_id": {"name": "analytics___salesforce__opportunity_opportunity_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_opportunity_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_opportunity_stage": {"name": "analytics___salesforce__opportunity_opportunity_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_opportunity_stage", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_opportunity_start_date": {"name": "analytics___salesforce__opportunity_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_opportunity_start_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_opportunity_type": {"name": "analytics___salesforce__opportunity_opportunity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_opportunity_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_order_sales_segment": {"name": "analytics___salesforce__opportunity_order_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_order_sales_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_order_sales_segment_group": {"name": "analytics___salesforce__opportunity_order_sales_segment_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_order_sales_segment_group", "block_contents": "Group of the order_sales_segment:\n 1. VSB -> VSB\n 2. SMB Minus/SMB/SMB Plus -> SMB\n 3. MM/Enterprise -> MM"}, "doc.yoda.analytics___salesforce__opportunity_original_referrer_id": {"name": "analytics___salesforce__opportunity_original_referrer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_original_referrer_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_original_referrer_owner": {"name": "analytics___salesforce__opportunity_original_referrer_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_original_referrer_owner", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_partner_account_name": {"name": "analytics___salesforce__opportunity_partner_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_partner_account_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_partner_account_referrer_type": {"name": "analytics___salesforce__opportunity_partner_account_referrer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_partner_account_referrer_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_partner_engagement_id": {"name": "analytics___salesforce__opportunity_partner_engagement_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_partner_engagement_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_partner_name": {"name": "analytics___salesforce__opportunity_partner_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_partner_name", "block_contents": "The opportunity's original referree name (SF account name)"}, "doc.yoda.analytics___salesforce__opportunity_pipeline_usd": {"name": "analytics___salesforce__opportunity_pipeline_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_pipeline_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_plan_name": {"name": "analytics___salesforce__opportunity_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_plan_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_previous_loyalty_renewals_cnt": {"name": "analytics___salesforce__opportunity_previous_loyalty_renewals_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_previous_loyalty_renewals_cnt", "block_contents": "Number of previous renewals prior to current opportunity"}, "doc.yoda.analytics___salesforce__opportunity_previous_renewals_cnt": {"name": "analytics___salesforce__opportunity_previous_renewals_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_previous_renewals_cnt", "block_contents": "Number of previous renewals prior to current opportunity - all renewals"}, "doc.yoda.analytics___salesforce__opportunity_previous_sms_renewals_cnt": {"name": "analytics___salesforce__opportunity_previous_sms_renewals_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_previous_sms_renewals_cnt", "block_contents": "Number of previous renewals prior to current opportunity"}, "doc.yoda.analytics___salesforce__opportunity_previous_ugc_renewals_cnt": {"name": "analytics___salesforce__opportunity_previous_ugc_renewals_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_previous_ugc_renewals_cnt", "block_contents": "Number of previous renewals prior to current opportunity"}, "doc.yoda.analytics___salesforce__opportunity_product_list": {"name": "analytics___salesforce__opportunity_product_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_product_list", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_provisioned_plan_list": {"name": "analytics___salesforce__opportunity_provisioned_plan_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_provisioned_plan_list", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_record_type_id": {"name": "analytics___salesforce__opportunity_record_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_record_type_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_record_type_name": {"name": "analytics___salesforce__opportunity_record_type_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_record_type_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_referral_type": {"name": "analytics___salesforce__opportunity_referral_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_referral_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_referrer_owner_name": {"name": "analytics___salesforce__opportunity_referrer_owner_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_referrer_owner_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_reviews_acv_in_original_currency_sum": {"name": "analytics___salesforce__opportunity_reviews_acv_in_original_currency_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_reviews_acv_in_original_currency_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_reviews_acv_in_usd_sum": {"name": "analytics___salesforce__opportunity_reviews_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_reviews_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_sales_region": {"name": "analytics___salesforce__opportunity_sales_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_sales_region", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_sdr_sf_user_id": {"name": "analytics___salesforce__opportunity_sdr_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_sdr_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_secondary_seller_id": {"name": "analytics___salesforce__opportunity_secondary_seller_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_secondary_seller_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_sms_acv_in_original_currency_sum": {"name": "analytics___salesforce__opportunity_sms_acv_in_original_currency_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_sms_acv_in_original_currency_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_sms_acv_in_usd_sum": {"name": "analytics___salesforce__opportunity_sms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_sms_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_sms_commitment_term": {"name": "analytics___salesforce__opportunity_sms_commitment_term", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_sms_commitment_term", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_sms_delta_earr": {"name": "analytics___salesforce__opportunity_sms_delta_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_sms_delta_earr", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_sms_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_sms_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_sms_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_subscription_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_subscription_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_subscription_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_subscriptions_acv_in_original_currency_sum": {"name": "analytics___salesforce__opportunity_subscriptions_acv_in_original_currency_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_subscriptions_acv_in_original_currency_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_subscriptions_acv_in_usd_sum": {"name": "analytics___salesforce__opportunity_subscriptions_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_subscriptions_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_subscriptions_delta_earr": {"name": "analytics___salesforce__opportunity_subscriptions_delta_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_subscriptions_delta_earr", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_subscriptions_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_subscriptions_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_subscriptions_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_subscriptions_seller_id": {"name": "analytics___salesforce__opportunity_subscriptions_seller_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_subscriptions_seller_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_upsell_acv_in_usd": {"name": "analytics___salesforce__opportunity_upsell_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_upsell_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_vms_acv_in_original_currency_sum": {"name": "analytics___salesforce__opportunity_vms_acv_in_original_currency_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_vms_acv_in_original_currency_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_vms_acv_in_usd_sum": {"name": "analytics___salesforce__opportunity_vms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_vms_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_weighted_delta_acv_in_usd": {"name": "analytics___salesforce__opportunity_weighted_delta_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_weighted_delta_acv_in_usd", "block_contents": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the delta ACV * probability, else zero"}, "doc.yoda.analytics___salesforce__opportunity_weighted_email_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_weighted_email_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_weighted_email_estimated_arr_in_usd", "block_contents": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the delta email eARR * probability, else zero"}, "doc.yoda.analytics___salesforce__opportunity_weighted_gold_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_weighted_gold_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_weighted_gold_estimated_arr_in_usd", "block_contents": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the Gold eARR * probability, else zero"}, "doc.yoda.analytics___salesforce__opportunity_weighted_prime_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_weighted_prime_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_weighted_prime_estimated_arr_in_usd", "block_contents": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the Prime eARR * probability, else zero"}, "doc.yoda.analytics___salesforce__opportunity_weighted_sms_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_weighted_sms_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_weighted_sms_estimated_arr_in_usd", "block_contents": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the SMS eARR * probability, else zero"}, "doc.yoda.analytics___salesforce__opportunity_weighted_subscriptions_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_weighted_subscriptions_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_weighted_subscriptions_estimated_arr_in_usd", "block_contents": "If the opportunity is not closed (Stage not in LAW, Lost, Won - Sales), it's the Subscriptions eARR * probability, else zero"}, "doc.yoda.analytics___salesforce__opportunity_won_delta_acv_in_usd": {"name": "analytics___salesforce__opportunity_won_delta_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_delta_acv_in_usd", "block_contents": "Delta ACV from previous opportunity in USD (can be negative)"}, "doc.yoda.analytics___salesforce__opportunity_won_email_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_won_email_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_email_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_won_gold_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_won_gold_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_gold_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_won_loyalty_acv_in_usd_sum": {"name": "analytics___salesforce__opportunity_won_loyalty_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_loyalty_acv_in_usd_sum", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_won_prime_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_won_prime_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_prime_estimated_arr_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_won_reviews_acv_in_usd_sum": {"name": "analytics___salesforce__opportunity_won_reviews_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_reviews_acv_in_usd_sum", "block_contents": "If stage is 'Won - Sale' then relevant ACV in USD"}, "doc.yoda.analytics___salesforce__opportunity_won_sale_probability": {"name": "analytics___salesforce__opportunity_won_sale_probability", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_sale_probability", "block_contents": "The opportunity's probability to be Won - Sale [0...1].\nEach stage has a matching probability (0 = Lost, 1 = Won - Sale)."}, "doc.yoda.analytics___salesforce__opportunity_won_sms_acv_in_usd_sum": {"name": "analytics___salesforce__opportunity_won_sms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_sms_acv_in_usd_sum", "block_contents": "If stage is 'Won - Sale' then relevant ACV in USD"}, "doc.yoda.analytics___salesforce__opportunity_won_sms_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_won_sms_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_sms_estimated_arr_in_usd", "block_contents": "If stage is 'Won - Sale' then relevant eARR in USD"}, "doc.yoda.analytics___salesforce__opportunity_won_subscriptions_acv_in_usd_sum": {"name": "analytics___salesforce__opportunity_won_subscriptions_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_subscriptions_acv_in_usd_sum", "block_contents": "If stage is 'Won - Sale' then relevant ACV in USD"}, "doc.yoda.analytics___salesforce__opportunity_won_subscriptions_estimated_arr_in_usd": {"name": "analytics___salesforce__opportunity_won_subscriptions_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_subscriptions_estimated_arr_in_usd", "block_contents": "If stage is 'Won - Sale' then relevant eARR in USD"}, "doc.yoda.analytics___salesforce__opportunity_won_upsell_acv_in_usd": {"name": "analytics___salesforce__opportunity_won_upsell_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_upsell_acv_in_usd", "block_contents": "If stage is 'Won - Sale' then relevant ACV in USD"}, "doc.yoda.analytics___salesforce__opportunity_won_vms_acv_in_usd_sum": {"name": "analytics___salesforce__opportunity_won_vms_acv_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity/analytics___salesforce__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_won_vms_acv_in_usd_sum", "block_contents": "If stage is 'Won - Sale' then relevant ACV in USD"}, "doc.yoda.analytics___salesforce__opportunity_line_item": {"name": "analytics___salesforce__opportunity_line_item", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item", "block_contents": "Modeled table of Opportunity line item salesforce object.\nPK: line_item_id"}, "doc.yoda.analytics___salesforce__opportunity_line_item_description": {"name": "analytics___salesforce__opportunity_line_item_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_description", "block_contents": "line item description"}, "doc.yoda.analytics___salesforce__opportunity_line_item_discount_rate": {"name": "analytics___salesforce__opportunity_line_item_discount_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_discount_rate", "block_contents": "percent of discount given on line item"}, "doc.yoda.analytics___salesforce__opportunity_line_item_dwh_updated_at": {"name": "analytics___salesforce__opportunity_line_item_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_is_core_plan": {"name": "analytics___salesforce__opportunity_line_item_is_core_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_is_core_plan", "block_contents": "is that the core plan of the product"}, "doc.yoda.analytics___salesforce__opportunity_line_item_is_deleted": {"name": "analytics___salesforce__opportunity_line_item_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_is_email": {"name": "analytics___salesforce__opportunity_line_item_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_is_email", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_is_insights": {"name": "analytics___salesforce__opportunity_line_item_is_insights", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_is_insights", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_is_loyalty": {"name": "analytics___salesforce__opportunity_line_item_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_is_reviews": {"name": "analytics___salesforce__opportunity_line_item_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_is_reviews", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_is_sms": {"name": "analytics___salesforce__opportunity_line_item_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_is_sms", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_is_subscriptions": {"name": "analytics___salesforce__opportunity_line_item_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_is_vms": {"name": "analytics___salesforce__opportunity_line_item_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_is_vms", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_line_item_id": {"name": "analytics___salesforce__opportunity_line_item_line_item_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_line_item_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_line_item_plan": {"name": "analytics___salesforce__opportunity_line_item_line_item_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_line_item_plan", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_line_item_product": {"name": "analytics___salesforce__opportunity_line_item_line_item_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_line_item_product", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_opportunity_id": {"name": "analytics___salesforce__opportunity_line_item_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_price_in_original_currency": {"name": "analytics___salesforce__opportunity_line_item_price_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_price_in_original_currency", "block_contents": "The price of the line item, after discount in original currency"}, "doc.yoda.analytics___salesforce__opportunity_line_item_price_in_usd": {"name": "analytics___salesforce__opportunity_line_item_price_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_price_in_usd", "block_contents": "The price of the line item, after discount in original usd"}, "doc.yoda.analytics___salesforce__opportunity_line_item_provisioned_plan_name": {"name": "analytics___salesforce__opportunity_line_item_provisioned_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_provisioned_plan_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_rate_plan_id": {"name": "analytics___salesforce__opportunity_line_item_rate_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_rate_plan_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__opportunity_line_item_sales_price_in_usd": {"name": "analytics___salesforce__opportunity_line_item_sales_price_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__opportunity_line_item/analytics___salesforce__opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce__opportunity_line_item_sales_price_in_usd", "block_contents": "Sales price, which is the initial price for the line item, prior to discount, in USD."}, "doc.yoda.analytics___salesforce__partner_engagement": {"name": "analytics___salesforce__partner_engagement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement", "block_contents": "Partner Engagement object is an enrichment of the Salesforce Partner Referral object. \nThe terms \"Partner Engagement\" and \"Partner Referral\" are practically interchangeable, yet Partner Referral implies that a partner completed a referral, while this is not always the case."}, "doc.yoda.analytics___salesforce__partner_engagement_converted_from_heads_up_to_referral_at": {"name": "analytics___salesforce__partner_engagement_converted_from_heads_up_to_referral_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_converted_from_heads_up_to_referral_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_converted_from_heads_up_to_referral_date": {"name": "analytics___salesforce__partner_engagement_converted_from_heads_up_to_referral_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_converted_from_heads_up_to_referral_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_created_at": {"name": "analytics___salesforce__partner_engagement_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_created_date": {"name": "analytics___salesforce__partner_engagement_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_created_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_dwh_updated_at": {"name": "analytics___salesforce__partner_engagement_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_is_created_mtd": {"name": "analytics___salesforce__partner_engagement_is_created_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_is_created_mtd", "block_contents": "The difference in days between the beggining of the created date month and the created date\nis less than/equal to the difference in days between the beggining of current month and today"}, "doc.yoda.analytics___salesforce__partner_engagement_is_created_qtd": {"name": "analytics___salesforce__partner_engagement_is_created_qtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_is_created_qtd", "block_contents": "The difference in days between the beggining of the created date quarter and the created date\nis less than/equal to the difference in days between the beggining of current quarter and today"}, "doc.yoda.analytics___salesforce__partner_engagement_is_deleted": {"name": "analytics___salesforce__partner_engagement_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_is_partner_upsell": {"name": "analytics___salesforce__partner_engagement_is_partner_upsell", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_is_partner_upsell", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_is_referred_to_growth": {"name": "analytics___salesforce__partner_engagement_is_referred_to_growth", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_is_referred_to_growth", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_name": {"name": "analytics___salesforce__partner_engagement_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_original_referrer_owner_full_name": {"name": "analytics___salesforce__partner_engagement_original_referrer_owner_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_original_referrer_owner_full_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_original_referrer_owner_id": {"name": "analytics___salesforce__partner_engagement_original_referrer_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_original_referrer_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_original_referrer_owner_manager_full_name": {"name": "analytics___salesforce__partner_engagement_original_referrer_owner_manager_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_original_referrer_owner_manager_full_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_original_referrer_owner_manager_id": {"name": "analytics___salesforce__partner_engagement_original_referrer_owner_manager_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_original_referrer_owner_manager_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_original_referrer_owner_role": {"name": "analytics___salesforce__partner_engagement_original_referrer_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_original_referrer_owner_role", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_partner_account_id": {"name": "analytics___salesforce__partner_engagement_partner_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_partner_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_partner_account_organization_key": {"name": "analytics___salesforce__partner_engagement_partner_account_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_partner_account_organization_key", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_partner_account_owner_full_name": {"name": "analytics___salesforce__partner_engagement_partner_account_owner_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_partner_account_owner_full_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_partner_account_owner_role": {"name": "analytics___salesforce__partner_engagement_partner_account_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_partner_account_owner_role", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_partner_contact_email": {"name": "analytics___salesforce__partner_engagement_partner_contact_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_partner_contact_email", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_partner_contact_id": {"name": "analytics___salesforce__partner_engagement_partner_contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_partner_contact_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_partner_engagement_id": {"name": "analytics___salesforce__partner_engagement_partner_engagement_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_partner_engagement_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_partner_engagement_is_deleted": {"name": "analytics___salesforce__partner_engagement_partner_engagement_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_partner_engagement_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_partner_engagement_name": {"name": "analytics___salesforce__partner_engagement_partner_engagement_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_partner_engagement_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_partner_manager_id": {"name": "analytics___salesforce__partner_engagement_partner_manager_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_partner_manager_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_product_interest": {"name": "analytics___salesforce__partner_engagement_product_interest", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_product_interest", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referee_owner_name": {"name": "analytics___salesforce__partner_engagement_referee_owner_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referee_owner_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referee_platform": {"name": "analytics___salesforce__partner_engagement_referee_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referee_platform", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referral_claim_duration": {"name": "analytics___salesforce__partner_engagement_referral_claim_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referral_claim_duration", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referral_claim_duration_months": {"name": "analytics___salesforce__partner_engagement_referral_claim_duration_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referral_claim_duration_months", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referral_claim_period_end_date": {"name": "analytics___salesforce__partner_engagement_referral_claim_period_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referral_claim_period_end_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referral_date": {"name": "analytics___salesforce__partner_engagement_referral_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referral_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referral_sub_type": {"name": "analytics___salesforce__partner_engagement_referral_sub_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referral_sub_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referral_type": {"name": "analytics___salesforce__partner_engagement_referral_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referral_type", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_country": {"name": "analytics___salesforce__partner_engagement_referred_account_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_country", "block_contents": "The billing country on the referred account"}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_cs_tags": {"name": "analytics___salesforce__partner_engagement_referred_account_cs_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_cs_tags", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_current_contract_cnt": {"name": "analytics___salesforce__partner_engagement_referred_account_current_contract_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_current_contract_cnt", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_estimated_monthly_orders_volume": {"name": "analytics___salesforce__partner_engagement_referred_account_estimated_monthly_orders_volume", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_estimated_monthly_orders_volume", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_id": {"name": "analytics___salesforce__partner_engagement_referred_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_industry_name": {"name": "analytics___salesforce__partner_engagement_referred_account_industry_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_industry_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_name": {"name": "analytics___salesforce__partner_engagement_referred_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_organization_key": {"name": "analytics___salesforce__partner_engagement_referred_account_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_organization_key", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_packages": {"name": "analytics___salesforce__partner_engagement_referred_account_packages", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_packages", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_platform": {"name": "analytics___salesforce__partner_engagement_referred_account_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_platform", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_products_in_tam_list": {"name": "analytics___salesforce__partner_engagement_referred_account_products_in_tam_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_products_in_tam_list", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_account_sub_industry_name": {"name": "analytics___salesforce__partner_engagement_referred_account_sub_industry_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_account_sub_industry_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_by_contact_name": {"name": "analytics___salesforce__partner_engagement_referred_by_contact_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_by_contact_name", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_contact_id": {"name": "analytics___salesforce__partner_engagement_referred_contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_contact_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referred_lead_id": {"name": "analytics___salesforce__partner_engagement_referred_lead_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referred_lead_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referree_annual_revenue": {"name": "analytics___salesforce__partner_engagement_referree_annual_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referree_annual_revenue", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_referree_annual_revenue_bucket": {"name": "analytics___salesforce__partner_engagement_referree_annual_revenue_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_referree_annual_revenue_bucket", "block_contents": ""}, "doc.yoda.analytics___salesforce__partner_engagement_rev_share_rate": {"name": "analytics___salesforce__partner_engagement_rev_share_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__partner_engagement/analytics___salesforce__partner_engagement.md", "unique_id": "doc.yoda.analytics___salesforce__partner_engagement_rev_share_rate", "block_contents": ""}, "doc.yoda.analytics___salesforce__service_case": {"name": "analytics___salesforce__service_case", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.md", "unique_id": "doc.yoda.analytics___salesforce__service_case", "block_contents": "Modeled Table Salseforce Cases, contains support cases, escelated and semi escelated cases\nPK & granularity: case_id, case_number"}, "doc.yoda.analytics___salesforce__service_case_dwh_updated_at": {"name": "analytics___salesforce__service_case_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.md", "unique_id": "doc.yoda.analytics___salesforce__service_case_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__service_case_is_onboarding": {"name": "analytics___salesforce__service_case_is_onboarding", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.md", "unique_id": "doc.yoda.analytics___salesforce__service_case_is_onboarding", "block_contents": "indicator = 1 IF subject LIKE onboarding"}, "doc.yoda.analytics___salesforce__service_case_is_type_customer_care": {"name": "analytics___salesforce__service_case_is_type_customer_care", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.md", "unique_id": "doc.yoda.analytics___salesforce__service_case_is_type_customer_care", "block_contents": "indicator = 1 IF record_type = '0127Q0000003ROgQAM' --> customer care"}, "doc.yoda.analytics___salesforce__service_case_organization_id": {"name": "analytics___salesforce__service_case_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__service_case/analytics___salesforce__service_case.md", "unique_id": "doc.yoda.analytics___salesforce__service_case_organization_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily", "block_contents": "A view holding product metrics to write to salesforce, it takes all rows from the product metrics daily diff where the metrics are relevant to write to salesforce. PK & Granularity: App_Key__c, Product_Metrics_Name__c"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_App_Key_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_App_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_App_Key_c", "block_contents": "PK 1/2"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Enabled_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_Enabled_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Enabled_c", "block_contents": "Field to write to salesforce in case metric is of boolean type"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_External_ID_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_External_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_External_ID_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Free_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_Free_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Free_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_From_Date_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_From_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_From_Date_c", "block_contents": "Field to write to salesforce in case metric is of date type"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Metric_Value_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_Metric_Value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Metric_Value_c", "block_contents": "Field to write to salesforce in case metric is of string type"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Name": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Name", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Organization_Key_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_Organization_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Organization_Key_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Product_Lines_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_Product_Lines_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Product_Lines_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Product_Metrics_Name_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_Product_Metrics_Name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Product_Metrics_Name_c", "block_contents": "PK 2/2"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Quantity_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_Quantity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Quantity_c", "block_contents": "Field to write to salesforce in case metric is of numeric type"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Self_Service_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_Self_Service_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_Self_Service_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_To_Date_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_daily_To_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_daily/analytics___salesforce__store_product_metrics_snapshot_daily.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_daily_To_Date_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly", "block_contents": "A view holding product metrics to write to salesforce, it takes all rows from the product metrics monthly unpivot where the metrics are relevant to write to salesforce. PK & Granularity: External_ID__c"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_App_Key_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_App_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_App_Key_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Enabled_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_Enabled_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Enabled_c", "block_contents": "Field to write to salesforce in case metric is of boolean type"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID_c", "block_contents": "PK"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Free_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_Free_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Free_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_From_Date_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_From_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_From_Date_c", "block_contents": "Field to write to salesforce in case metric is of date type"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Metric_Value_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_Metric_Value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Metric_Value_c", "block_contents": "Field to write to salesforce in case metric is of string type"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Name": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Name", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Organization_Key_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_Organization_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Organization_Key_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Lines_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Lines_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Lines_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Metrics_Name_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Metrics_Name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Metrics_Name_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Quantity_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_Quantity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Quantity_c", "block_contents": "Field to write to salesforce in case metric is of numeric type"}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Self_Service_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_Self_Service_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_Self_Service_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_To_Date_c": {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly_To_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__store_product_metrics_snapshot_monthly/analytics___salesforce__store_product_metrics_snapshot_monthly.md", "unique_id": "doc.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly_To_Date_c", "block_contents": ""}, "doc.yoda.analytics___salesforce__task": {"name": "analytics___salesforce__task", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task", "block_contents": "Modeled table of salesforce task object | PK: task_id | granularity: task_id"}, "doc.yoda.analytics___salesforce__task_call_status": {"name": "analytics___salesforce__task_call_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_call_status", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_completion_date": {"name": "analytics___salesforce__task_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_completion_date", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_completion_time": {"name": "analytics___salesforce__task_completion_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_completion_time", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_dwh_updated_at": {"name": "analytics___salesforce__task_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_is_deleted": {"name": "analytics___salesforce__task_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_medium": {"name": "analytics___salesforce__task_medium", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_medium", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_owner_sf_user_id": {"name": "analytics___salesforce__task_owner_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_owner_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_owner_user_role_id": {"name": "analytics___salesforce__task_owner_user_role_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_owner_user_role_id", "block_contents": "user role id of the user assigned to the task and his role at the time task was updated"}, "doc.yoda.analytics___salesforce__task_phase": {"name": "analytics___salesforce__task_phase", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_phase", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_status": {"name": "analytics___salesforce__task_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_status", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_subject": {"name": "analytics___salesforce__task_subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_subject", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_task_id": {"name": "analytics___salesforce__task_task_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_task_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_updated_at": {"name": "analytics___salesforce__task_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__task_what_object_type": {"name": "analytics___salesforce__task_what_object_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_what_object_type", "block_contents": "type of salesforce what object (opportunity/account/etc)"}, "doc.yoda.analytics___salesforce__task_who_object_type": {"name": "analytics___salesforce__task_who_object_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__task/analytics___salesforce__task.md", "unique_id": "doc.yoda.analytics___salesforce__task_who_object_type", "block_contents": "type of salesforce what object (lead/contact/etc)"}, "doc.yoda.analytics___salesforce__user_overtime": {"name": "analytics___salesforce__user_overtime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "unique_id": "doc.yoda.analytics___salesforce__user_overtime", "block_contents": "A modeled table of salesforce user exploded over time according to role changes | PK: user_role_id | Granularity: user_id, from_time"}, "doc.yoda.analytics___salesforce__user_overtime_dwh_updated_at": {"name": "analytics___salesforce__user_overtime_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "unique_id": "doc.yoda.analytics___salesforce__user_overtime_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__user_overtime_from_time": {"name": "analytics___salesforce__user_overtime_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "unique_id": "doc.yoda.analytics___salesforce__user_overtime_from_time", "block_contents": ""}, "doc.yoda.analytics___salesforce__user_overtime_is_current_role": {"name": "analytics___salesforce__user_overtime_is_current_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "unique_id": "doc.yoda.analytics___salesforce__user_overtime_is_current_role", "block_contents": ""}, "doc.yoda.analytics___salesforce__user_overtime_to_time": {"name": "analytics___salesforce__user_overtime_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "unique_id": "doc.yoda.analytics___salesforce__user_overtime_to_time", "block_contents": ""}, "doc.yoda.analytics___salesforce__user_overtime_user_id": {"name": "analytics___salesforce__user_overtime_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "unique_id": "doc.yoda.analytics___salesforce__user_overtime_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce__user_overtime_user_role_id": {"name": "analytics___salesforce__user_overtime_user_role_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_overtime/analytics___salesforce__user_overtime.md", "unique_id": "doc.yoda.analytics___salesforce__user_overtime_user_role_id", "block_contents": "PK unique id for the combination of user of and role based on the role starting time"}, "doc.yoda.analytics___salesforce__user_role_scd": {"name": "analytics___salesforce__user_role_scd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.md", "unique_id": "doc.yoda.analytics___salesforce__user_role_scd", "block_contents": "A table that tracks role changes for Salesforce users | PK & Granularity: user_id, updated_at"}, "doc.yoda.analytics___salesforce__user_role_scd_csm_team": {"name": "analytics___salesforce__user_role_scd_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.md", "unique_id": "doc.yoda.analytics___salesforce__user_role_scd_csm_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce__user_role_scd_dwh_updated_at": {"name": "analytics___salesforce__user_role_scd_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.md", "unique_id": "doc.yoda.analytics___salesforce__user_role_scd_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce__user_role_scd_updated_at": {"name": "analytics___salesforce__user_role_scd_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.md", "unique_id": "doc.yoda.analytics___salesforce__user_role_scd_updated_at", "block_contents": "PK 2/2"}, "doc.yoda.analytics___salesforce__user_role_scd_user_id": {"name": "analytics___salesforce__user_role_scd_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.md", "original_file_path": "models/analytics/salesforce/marts/analytics___salesforce__user_role_scd/analytics___salesforce__user_role_scd.md", "unique_id": "doc.yoda.analytics___salesforce__user_role_scd_user_id", "block_contents": "PK 1/2"}, "doc.yoda.analytics___salesforce_stg__account_full": {"name": "analytics___salesforce_stg__account_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full", "block_contents": "Modeled view which holds all sf account records"}, "doc.yoda.analytics___salesforce_stg__account_full_ACV_to_next_tier_c": {"name": "analytics___salesforce_stg__account_full_ACV_to_next_tier_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_ACV_to_next_tier_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Account_Email_c": {"name": "analytics___salesforce_stg__account_full_Account_Email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Account_Email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Account_Stage_c": {"name": "analytics___salesforce_stg__account_full_Account_Stage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Account_Stage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Account_Territory_c": {"name": "analytics___salesforce_stg__account_full_Account_Territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Account_Territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Account_Tier_c": {"name": "analytics___salesforce_stg__account_full_Account_Tier_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Account_Tier_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Active_Leads_Referred_c": {"name": "analytics___salesforce_stg__account_full_Active_Leads_Referred_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Active_Leads_Referred_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Ads_Provider_c": {"name": "analytics___salesforce_stg__account_full_Ads_Provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Ads_Provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Agency_Clients_Level_Account_c": {"name": "analytics___salesforce_stg__account_full_Agency_Clients_Level_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Agency_Clients_Level_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Agency_Lost_Reason_c": {"name": "analytics___salesforce_stg__account_full_Agency_Lost_Reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Agency_Lost_Reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Agency_No_of_Employees_Account_c": {"name": "analytics___salesforce_stg__account_full_Agency_No_of_Employees_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Agency_No_of_Employees_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Agency_Potential_c": {"name": "analytics___salesforce_stg__account_full_Agency_Potential_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Agency_Potential_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Agency_Segment_c": {"name": "analytics___salesforce_stg__account_full_Agency_Segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Agency_Segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Agency_Services_c": {"name": "analytics___salesforce_stg__account_full_Agency_Services_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Agency_Services_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Agency_Stage_c": {"name": "analytics___salesforce_stg__account_full_Agency_Stage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Agency_Stage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Agency_Supported_Platforms_Account_c": {"name": "analytics___salesforce_stg__account_full_Agency_Supported_Platforms_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Agency_Supported_Platforms_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Alexa_Rank_c": {"name": "analytics___salesforce_stg__account_full_Alexa_Rank_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Alexa_Rank_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Annual_Account_Indication_c": {"name": "analytics___salesforce_stg__account_full_Annual_Account_Indication_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Annual_Account_Indication_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Annual_Revenue_c": {"name": "analytics___salesforce_stg__account_full_Annual_Revenue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Annual_Revenue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_App_Key_c": {"name": "analytics___salesforce_stg__account_full_App_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_App_Key_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_BillingCity": {"name": "analytics___salesforce_stg__account_full_BillingCity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_BillingCity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_BillingCountry": {"name": "analytics___salesforce_stg__account_full_BillingCountry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_BillingCountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_BillingCountryCode": {"name": "analytics___salesforce_stg__account_full_BillingCountryCode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_BillingCountryCode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_BillingPostalCode": {"name": "analytics___salesforce_stg__account_full_BillingPostalCode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_BillingPostalCode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_BillingState": {"name": "analytics___salesforce_stg__account_full_BillingState", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_BillingState", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_BillingStateCode": {"name": "analytics___salesforce_stg__account_full_BillingStateCode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_BillingStateCode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_BillingStreet": {"name": "analytics___salesforce_stg__account_full_BillingStreet", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_BillingStreet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_CDP_Provider_c": {"name": "analytics___salesforce_stg__account_full_CDP_Provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_CDP_Provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_CSM_Lookup_c": {"name": "analytics___salesforce_stg__account_full_CSM_Lookup_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_CSM_Lookup_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_CS_Estimated_AOV_c": {"name": "analytics___salesforce_stg__account_full_CS_Estimated_AOV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_CS_Estimated_AOV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_CS_Estimated_Annual_Sales_c": {"name": "analytics___salesforce_stg__account_full_CS_Estimated_Annual_Sales_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_CS_Estimated_Annual_Sales_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_CS_Segment_c": {"name": "analytics___salesforce_stg__account_full_CS_Segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_CS_Segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_CS_Tags_c": {"name": "analytics___salesforce_stg__account_full_CS_Tags_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_CS_Tags_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Chat_bots_Provider_c": {"name": "analytics___salesforce_stg__account_full_Chat_bots_Provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Chat_bots_Provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Client_s_Agency2_c": {"name": "analytics___salesforce_stg__account_full_Client_s_Agency2_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Client_s_Agency2_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Closest_Contract_Renewal_c": {"name": "analytics___salesforce_stg__account_full_Closest_Contract_Renewal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Closest_Contract_Renewal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Confidence_Level_Account_c": {"name": "analytics___salesforce_stg__account_full_Confidence_Level_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Confidence_Level_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_CreatedDate": {"name": "analytics___salesforce_stg__account_full_CreatedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_CreatedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Cross_Sell_Status_c": {"name": "analytics___salesforce_stg__account_full_Cross_Sell_Status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Cross_Sell_Status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Cross_sell_Type_c": {"name": "analytics___salesforce_stg__account_full_Cross_sell_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Cross_sell_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Customer_Type_c": {"name": "analytics___salesforce_stg__account_full_Customer_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Customer_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_DB_Package_Category_c": {"name": "analytics___salesforce_stg__account_full_DB_Package_Category_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_DB_Package_Category_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Datanayze_Current_Curation_Solution_c": {"name": "analytics___salesforce_stg__account_full_Datanayze_Current_Curation_Solution_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Datanayze_Current_Curation_Solution_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Datanayze_Monthly_Tech_Spend_c": {"name": "analytics___salesforce_stg__account_full_Datanayze_Monthly_Tech_Spend_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Datanayze_Monthly_Tech_Spend_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Datanyze_Funding_c": {"name": "analytics___salesforce_stg__account_full_Datanyze_Funding_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Datanyze_Funding_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Description": {"name": "analytics___salesforce_stg__account_full_Description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Domain_c": {"name": "analytics___salesforce_stg__account_full_Domain_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Domain_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Email_CSM_Name_c": {"name": "analytics___salesforce_stg__account_full_Email_CSM_Name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Email_CSM_Name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Email_Service_Provider_ESP_c": {"name": "analytics___salesforce_stg__account_full_Email_Service_Provider_ESP_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Email_Service_Provider_ESP_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Engagement_Level_c": {"name": "analytics___salesforce_stg__account_full_Engagement_Level_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Engagement_Level_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Enterprise_Account_c": {"name": "analytics___salesforce_stg__account_full_Enterprise_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Enterprise_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Has_A_Community_member_c": {"name": "analytics___salesforce_stg__account_full_Has_A_Community_member_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Has_A_Community_member_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Help_Desk_Provider_c": {"name": "analytics___salesforce_stg__account_full_Help_Desk_Provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Help_Desk_Provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_IAP_Tier_c": {"name": "analytics___salesforce_stg__account_full_IAP_Tier_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_IAP_Tier_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Id": {"name": "analytics___salesforce_stg__account_full_Id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Industry": {"name": "analytics___salesforce_stg__account_full_Industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Industry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Influencer_c": {"name": "analytics___salesforce_stg__account_full_Influencer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Influencer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Invoice_past_due_days_c": {"name": "analytics___salesforce_stg__account_full_Invoice_past_due_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Invoice_past_due_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_IsDeleted": {"name": "analytics___salesforce_stg__account_full_IsDeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_IsDeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Junk_Reason_c": {"name": "analytics___salesforce_stg__account_full_Junk_Reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Junk_Reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_LastModifiedDate": {"name": "analytics___salesforce_stg__account_full_LastModifiedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_LastModifiedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Last_AE_c": {"name": "analytics___salesforce_stg__account_full_Last_AE_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Last_AE_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Last_AVG_3_Months_Orders_c": {"name": "analytics___salesforce_stg__account_full_Last_AVG_3_Months_Orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Last_AVG_3_Months_Orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Last_SDR_c": {"name": "analytics___salesforce_stg__account_full_Last_SDR_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Last_SDR_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Latest_Opportunity_c": {"name": "analytics___salesforce_stg__account_full_Latest_Opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Latest_Opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Lead_ID_c": {"name": "analytics___salesforce_stg__account_full_Lead_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Lead_ID_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Lead_Referred_Date_c": {"name": "analytics___salesforce_stg__account_full_Lead_Referred_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Lead_Referred_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Loyalty_Referral_Provider_c": {"name": "analytics___salesforce_stg__account_full_Loyalty_Referral_Provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Loyalty_Referral_Provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_MAP_Limit_Roll_Up_c": {"name": "analytics___salesforce_stg__account_full_MAP_Limit_Roll_Up_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_MAP_Limit_Roll_Up_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_MS_Churn_Date_c": {"name": "analytics___salesforce_stg__account_full_MS_Churn_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_MS_Churn_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_MS_Inbound_Outbound_c": {"name": "analytics___salesforce_stg__account_full_MS_Inbound_Outbound_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_MS_Inbound_Outbound_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_MS_Live_Date_c": {"name": "analytics___salesforce_stg__account_full_MS_Live_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_MS_Live_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Main_CSM_c": {"name": "analytics___salesforce_stg__account_full_Main_CSM_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Main_CSM_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Managed_Services_Agency_c": {"name": "analytics___salesforce_stg__account_full_Managed_Services_Agency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Managed_Services_Agency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Merchant_ID_c": {"name": "analytics___salesforce_stg__account_full_Merchant_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Merchant_ID_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Multi_Product_Account_c": {"name": "analytics___salesforce_stg__account_full_Multi_Product_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Multi_Product_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Name": {"name": "analytics___salesforce_stg__account_full_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Next_Partner_Tier_c": {"name": "analytics___salesforce_stg__account_full_Next_Partner_Tier_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Next_Partner_Tier_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Number_of_Employees_c": {"name": "analytics___salesforce_stg__account_full_Number_of_Employees_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Number_of_Employees_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Nurturing_Reason_c": {"name": "analytics___salesforce_stg__account_full_Nurturing_Reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Nurturing_Reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Organization_Key_c": {"name": "analytics___salesforce_stg__account_full_Organization_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Organization_Key_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_OwnerId": {"name": "analytics___salesforce_stg__account_full_OwnerId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_OwnerId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_POS_Provider_c": {"name": "analytics___salesforce_stg__account_full_POS_Provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_POS_Provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Package_Base_c": {"name": "analytics___salesforce_stg__account_full_Package_Base_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Package_Base_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Package_Category_c": {"name": "analytics___salesforce_stg__account_full_Package_Category_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Package_Category_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Package_Extensions_c": {"name": "analytics___salesforce_stg__account_full_Package_Extensions_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Package_Extensions_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Package_c": {"name": "analytics___salesforce_stg__account_full_Package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_ParentId": {"name": "analytics___salesforce_stg__account_full_ParentId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_ParentId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Partner_Influencer_Referrer_Type_c": {"name": "analytics___salesforce_stg__account_full_Partner_Influencer_Referrer_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Partner_Influencer_Referrer_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Partner_Tier_c": {"name": "analytics___salesforce_stg__account_full_Partner_Tier_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Partner_Tier_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Payment_Provider_c": {"name": "analytics___salesforce_stg__account_full_Payment_Provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Payment_Provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Personalization_Provider_c": {"name": "analytics___salesforce_stg__account_full_Personalization_Provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Personalization_Provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Platform_c": {"name": "analytics___salesforce_stg__account_full_Platform_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Platform_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Primary_Sales_Channel_c": {"name": "analytics___salesforce_stg__account_full_Primary_Sales_Channel_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Primary_Sales_Channel_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Products_In_The_TAM_New_c": {"name": "analytics___salesforce_stg__account_full_Products_In_The_TAM_New_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Products_In_The_TAM_New_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Rating": {"name": "analytics___salesforce_stg__account_full_Rating", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Rating", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Referral_Agreement_Signed_c": {"name": "analytics___salesforce_stg__account_full_Referral_Agreement_Signed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Referral_Agreement_Signed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Referrer_Type_Sub_Category_c": {"name": "analytics___salesforce_stg__account_full_Referrer_Type_Sub_Category_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Referrer_Type_Sub_Category_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Referrer_Type_c": {"name": "analytics___salesforce_stg__account_full_Referrer_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Referrer_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Referrer_c": {"name": "analytics___salesforce_stg__account_full_Referrer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Referrer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Registration_Date_c": {"name": "analytics___salesforce_stg__account_full_Registration_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Registration_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Renewal_Cycle_c": {"name": "analytics___salesforce_stg__account_full_Renewal_Cycle_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Renewal_Cycle_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Reviews_Provider_List_c": {"name": "analytics___salesforce_stg__account_full_Reviews_Provider_List_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Reviews_Provider_List_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SAL_to_next_tier_c": {"name": "analytics___salesforce_stg__account_full_SAL_to_next_tier_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SAL_to_next_tier_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SDR_Owner_c": {"name": "analytics___salesforce_stg__account_full_SDR_Owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SDR_Owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SMS_ACV_c": {"name": "analytics___salesforce_stg__account_full_SMS_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SMS_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SMS_Annualized_Usage_Rev_c": {"name": "analytics___salesforce_stg__account_full_SMS_Annualized_Usage_Rev_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SMS_Annualized_Usage_Rev_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SMS_CSM_c": {"name": "analytics___salesforce_stg__account_full_SMS_CSM_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SMS_CSM_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SMS_Provider_c": {"name": "analytics___salesforce_stg__account_full_SMS_Provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SMS_Provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SMS_Strategist_c": {"name": "analytics___salesforce_stg__account_full_SMS_Strategist_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SMS_Strategist_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SMS_Total_ARR_c": {"name": "analytics___salesforce_stg__account_full_SMS_Total_ARR_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SMS_Total_ARR_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SMS_Usage_Cancellation_Date_c": {"name": "analytics___salesforce_stg__account_full_SMS_Usage_Cancellation_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SMS_Usage_Cancellation_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SMS_User_ID_c": {"name": "analytics___salesforce_stg__account_full_SMS_User_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SMS_User_ID_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Sales_Estimated_Monthly_Orders_c": {"name": "analytics___salesforce_stg__account_full_Sales_Estimated_Monthly_Orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Sales_Estimated_Monthly_Orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Sales_Estimated_Subscribers_c": {"name": "analytics___salesforce_stg__account_full_Sales_Estimated_Subscribers_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Sales_Estimated_Subscribers_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Sales_Region_new_c": {"name": "analytics___salesforce_stg__account_full_Sales_Region_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Sales_Region_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Sales_Segment_c": {"name": "analytics___salesforce_stg__account_full_Sales_Segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Sales_Segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Search_Provider_c": {"name": "analytics___salesforce_stg__account_full_Search_Provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Search_Provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SimilarWeb_Traffic_c": {"name": "analytics___salesforce_stg__account_full_SimilarWeb_Traffic_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SimilarWeb_Traffic_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Status_c": {"name": "analytics___salesforce_stg__account_full_Status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Strategic_Priority_c": {"name": "analytics___salesforce_stg__account_full_Strategic_Priority_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Strategic_Priority_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Sub_Nurturing_Reason_c": {"name": "analytics___salesforce_stg__account_full_Sub_Nurturing_Reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Sub_Nurturing_Reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Subscription_Seller_c": {"name": "analytics___salesforce_stg__account_full_Subscription_Seller_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Subscription_Seller_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Subscriptions_CSM_c": {"name": "analytics___salesforce_stg__account_full_Subscriptions_CSM_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Subscriptions_CSM_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Swell_ACV_c": {"name": "analytics___salesforce_stg__account_full_Swell_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Swell_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Swell_CSM_c": {"name": "analytics___salesforce_stg__account_full_Swell_CSM_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Swell_CSM_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Swell_Contract_Renewal_Date_c": {"name": "analytics___salesforce_stg__account_full_Swell_Contract_Renewal_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Swell_Contract_Renewal_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_SystemModstamp": {"name": "analytics___salesforce_stg__account_full_SystemModstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_SystemModstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Test_Account_c": {"name": "analytics___salesforce_stg__account_full_Test_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Test_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Time_Zone_c": {"name": "analytics___salesforce_stg__account_full_Time_Zone_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Time_Zone_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Total_ACV_c": {"name": "analytics___salesforce_stg__account_full_Total_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Total_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Total_Won_ACV_From_Referred_Accounts_c": {"name": "analytics___salesforce_stg__account_full_Total_Won_ACV_From_Referred_Accounts_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Total_Won_ACV_From_Referred_Accounts_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_UTM_Campaign_c": {"name": "analytics___salesforce_stg__account_full_UTM_Campaign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_UTM_Campaign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_UTM_Content_c": {"name": "analytics___salesforce_stg__account_full_UTM_Content_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_UTM_Content_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_UTM_Medium_c": {"name": "analytics___salesforce_stg__account_full_UTM_Medium_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_UTM_Medium_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_UTM_Source_c": {"name": "analytics___salesforce_stg__account_full_UTM_Source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_UTM_Source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_UTM_Term_c": {"name": "analytics___salesforce_stg__account_full_UTM_Term_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_UTM_Term_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_VMS_ACV_c": {"name": "analytics___salesforce_stg__account_full_VMS_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_VMS_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_VMS_Contract_Renewal_Date_c": {"name": "analytics___salesforce_stg__account_full_VMS_Contract_Renewal_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_VMS_Contract_Renewal_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Yotpo_ACV_c": {"name": "analytics___salesforce_stg__account_full_Yotpo_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Yotpo_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Yotpo_Contract_Renewal_Date_c": {"name": "analytics___salesforce_stg__account_full_Yotpo_Contract_Renewal_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Yotpo_Contract_Renewal_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Yotpo_Industry_Account_c": {"name": "analytics___salesforce_stg__account_full_Yotpo_Industry_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Yotpo_Industry_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Yotpo_Industry_Verified_Account_c": {"name": "analytics___salesforce_stg__account_full_Yotpo_Industry_Verified_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Yotpo_Industry_Verified_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_Yotpo_Sub_Industry_Account_c": {"name": "analytics___salesforce_stg__account_full_Yotpo_Sub_Industry_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_Yotpo_Sub_Industry_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full__sdc_batched_at": {"name": "analytics___salesforce_stg__account_full__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full__sdc_extracted_at": {"name": "analytics___salesforce_stg__account_full__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full__sdc_received_at": {"name": "analytics___salesforce_stg__account_full__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full__sdc_sequence": {"name": "analytics___salesforce_stg__account_full__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full__sdc_table_version": {"name": "analytics___salesforce_stg__account_full__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_of_Current_Contracts_c": {"name": "analytics___salesforce_stg__account_full_of_Current_Contracts_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_of_Current_Contracts_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_full_previous_db_package_c": {"name": "analytics___salesforce_stg__account_full_previous_db_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_previous_db_package_c", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__account_full_rn": {"name": "analytics___salesforce_stg__account_full_rn", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_full/analytics___salesforce_stg__account_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_full_rn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full": {"name": "analytics___salesforce_stg__account_product_c_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_ACV_USD_c": {"name": "analytics___salesforce_stg__account_product_c_full_ACV_USD_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_ACV_USD_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_ACV_c": {"name": "analytics___salesforce_stg__account_product_c_full_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Account_Product_CSM_Role_c": {"name": "analytics___salesforce_stg__account_product_c_full_Account_Product_CSM_Role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Account_Product_CSM_Role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Account_Product_CSM_Team_c": {"name": "analytics___salesforce_stg__account_product_c_full_Account_Product_CSM_Team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Account_Product_CSM_Team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Account_c": {"name": "analytics___salesforce_stg__account_product_c_full_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Account_s_Product_CSM_Is_LT_SCSM_c": {"name": "analytics___salesforce_stg__account_product_c_full_Account_s_Product_CSM_Is_LT_SCSM_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Account_s_Product_CSM_Is_LT_SCSM_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Contract_Renewal_Date_c": {"name": "analytics___salesforce_stg__account_product_c_full_Contract_Renewal_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Contract_Renewal_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_CurrencyIsoCode": {"name": "analytics___salesforce_stg__account_product_c_full_CurrencyIsoCode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_CurrencyIsoCode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Contract_c": {"name": "analytics___salesforce_stg__account_product_c_full_Current_Contract_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Contract_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Credits_Spent_c": {"name": "analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Credits_Spent_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Credits_Spent_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Term_End_Date_c": {"name": "analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Term_End_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Term_End_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Term_Start_Date_c": {"name": "analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Term_Start_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Term_Start_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Term_c": {"name": "analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Term_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Term_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Value_c": {"name": "analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Current_Usage_Commitment_Value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Date_of_Live_on_Site_Loyalty_c": {"name": "analytics___salesforce_stg__account_product_c_full_Date_of_Live_on_Site_Loyalty_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Date_of_Live_on_Site_Loyalty_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Days_Until_Contract_Renewal_c": {"name": "analytics___salesforce_stg__account_product_c_full_Days_Until_Contract_Renewal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Days_Until_Contract_Renewal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Delta_Current_Commitment_c": {"name": "analytics___salesforce_stg__account_product_c_full_Delta_Current_Commitment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Delta_Current_Commitment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Has_Met_Current_Usage_Commitment_c": {"name": "analytics___salesforce_stg__account_product_c_full_Has_Met_Current_Usage_Commitment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Has_Met_Current_Usage_Commitment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Id": {"name": "analytics___salesforce_stg__account_product_c_full_Id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Initially_Won_Opportunity_c": {"name": "analytics___salesforce_stg__account_product_c_full_Initially_Won_Opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Initially_Won_Opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Initially_Won_Self_Service_Opportunity_c": {"name": "analytics___salesforce_stg__account_product_c_full_Initially_Won_Self_Service_Opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Initially_Won_Self_Service_Opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_IsDeleted": {"name": "analytics___salesforce_stg__account_product_c_full_IsDeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_IsDeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Live_Date_c": {"name": "analytics___salesforce_stg__account_product_c_full_Live_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Live_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Live_on_Site_Loyalty_c": {"name": "analytics___salesforce_stg__account_product_c_full_Live_on_Site_Loyalty_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Live_on_Site_Loyalty_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Main_Product_Families_c": {"name": "analytics___salesforce_stg__account_product_c_full_Main_Product_Families_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Main_Product_Families_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Name": {"name": "analytics___salesforce_stg__account_product_c_full_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Number_of_OB_c": {"name": "analytics___salesforce_stg__account_product_c_full_Number_of_OB_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Number_of_OB_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Onboarding_Completion_Date_c": {"name": "analytics___salesforce_stg__account_product_c_full_Onboarding_Completion_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Onboarding_Completion_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Onboarding_Manager_CSM_Team_c": {"name": "analytics___salesforce_stg__account_product_c_full_Onboarding_Manager_CSM_Team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Onboarding_Manager_CSM_Team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Onboarding_Manager_c": {"name": "analytics___salesforce_stg__account_product_c_full_Onboarding_Manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Onboarding_Manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Opportunity_Conversion_Rate_c": {"name": "analytics___salesforce_stg__account_product_c_full_Opportunity_Conversion_Rate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Opportunity_Conversion_Rate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Opportunity_Start_Date_c": {"name": "analytics___salesforce_stg__account_product_c_full_Opportunity_Start_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Opportunity_Start_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Opportunity_Type_c": {"name": "analytics___salesforce_stg__account_product_c_full_Opportunity_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Opportunity_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Opportunity_c": {"name": "analytics___salesforce_stg__account_product_c_full_Opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Product_Initial_Won_Date_Self_Service_c": {"name": "analytics___salesforce_stg__account_product_c_full_Product_Initial_Won_Date_Self_Service_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Product_Initial_Won_Date_Self_Service_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Product_Initial_Won_Date_c": {"name": "analytics___salesforce_stg__account_product_c_full_Product_Initial_Won_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Product_Initial_Won_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Product_Line_c": {"name": "analytics___salesforce_stg__account_product_c_full_Product_Line_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Product_Line_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Product_c": {"name": "analytics___salesforce_stg__account_product_c_full_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Stage_c": {"name": "analytics___salesforce_stg__account_product_c_full_Stage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Stage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Strategic_Priority_Account_c": {"name": "analytics___salesforce_stg__account_product_c_full_Strategic_Priority_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Strategic_Priority_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_Super_CSM_Account_Product_c": {"name": "analytics___salesforce_stg__account_product_c_full_Super_CSM_Account_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_Super_CSM_Account_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_SystemModstamp": {"name": "analytics___salesforce_stg__account_product_c_full_SystemModstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_SystemModstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full__sdc_batched_at": {"name": "analytics___salesforce_stg__account_product_c_full__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full__sdc_extracted_at": {"name": "analytics___salesforce_stg__account_product_c_full__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full__sdc_received_at": {"name": "analytics___salesforce_stg__account_product_c_full__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full__sdc_sequence": {"name": "analytics___salesforce_stg__account_product_c_full__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full__sdc_table_version": {"name": "analytics___salesforce_stg__account_product_c_full__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__account_product_c_full_rn": {"name": "analytics___salesforce_stg__account_product_c_full_rn", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__account_product_c_full/analytics___salesforce_stg__account_product_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__account_product_c_full_rn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign": {"name": "analytics___salesforce_stg__campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__campaign__sdc_batched_at": {"name": "analytics___salesforce_stg__campaign__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign__sdc_extracted_at": {"name": "analytics___salesforce_stg__campaign__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign__sdc_received_at": {"name": "analytics___salesforce_stg__campaign__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign__sdc_sequence": {"name": "analytics___salesforce_stg__campaign__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign__sdc_table_version": {"name": "analytics___salesforce_stg__campaign__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_actualcost": {"name": "analytics___salesforce_stg__campaign_actualcost", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_actualcost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_amountallopportunities": {"name": "analytics___salesforce_stg__campaign_amountallopportunities", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_amountallopportunities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_amountwonopportunities": {"name": "analytics___salesforce_stg__campaign_amountwonopportunities", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_amountwonopportunities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_campaign_url_c": {"name": "analytics___salesforce_stg__campaign_campaign_url_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_campaign_url_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_createdbyid": {"name": "analytics___salesforce_stg__campaign_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_createddate": {"name": "analytics___salesforce_stg__campaign_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_currencyisocode": {"name": "analytics___salesforce_stg__campaign_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_d": {"name": "analytics___salesforce_stg__campaign_d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_d", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_description": {"name": "analytics___salesforce_stg__campaign_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_enddate": {"name": "analytics___salesforce_stg__campaign_enddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_enddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_expectedresponse": {"name": "analytics___salesforce_stg__campaign_expectedresponse", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_expectedresponse", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchyactualcost": {"name": "analytics___salesforce_stg__campaign_hierarchyactualcost", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchyactualcost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchyamountallopportunities": {"name": "analytics___salesforce_stg__campaign_hierarchyamountallopportunities", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchyamountallopportunities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchyamountwonopportunities": {"name": "analytics___salesforce_stg__campaign_hierarchyamountwonopportunities", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchyamountwonopportunities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchybudgetedcost": {"name": "analytics___salesforce_stg__campaign_hierarchybudgetedcost", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchybudgetedcost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchyexpectedrevenue": {"name": "analytics___salesforce_stg__campaign_hierarchyexpectedrevenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchyexpectedrevenue", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofcontacts": {"name": "analytics___salesforce_stg__campaign_hierarchynumberofcontacts", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofcontacts", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofconvertedleads": {"name": "analytics___salesforce_stg__campaign_hierarchynumberofconvertedleads", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofconvertedleads", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofleads": {"name": "analytics___salesforce_stg__campaign_hierarchynumberofleads", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofleads", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofopportunities": {"name": "analytics___salesforce_stg__campaign_hierarchynumberofopportunities", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofopportunities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofresponses": {"name": "analytics___salesforce_stg__campaign_hierarchynumberofresponses", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofresponses", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofwonopportunities": {"name": "analytics___salesforce_stg__campaign_hierarchynumberofwonopportunities", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumberofwonopportunities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumbersent": {"name": "analytics___salesforce_stg__campaign_hierarchynumbersent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_hierarchynumbersent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_id": {"name": "analytics___salesforce_stg__campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_isactive": {"name": "analytics___salesforce_stg__campaign_isactive", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_isactive", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_isdeleted": {"name": "analytics___salesforce_stg__campaign_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_lastactivitydate": {"name": "analytics___salesforce_stg__campaign_lastactivitydate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_lastactivitydate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_lastmodifiedbyid": {"name": "analytics___salesforce_stg__campaign_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_lastmodifieddate": {"name": "analytics___salesforce_stg__campaign_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_lastreferenceddate": {"name": "analytics___salesforce_stg__campaign_lastreferenceddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_lastreferenceddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_lastvieweddate": {"name": "analytics___salesforce_stg__campaign_lastvieweddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_lastvieweddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_name": {"name": "analytics___salesforce_stg__campaign_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_numberofcontacts": {"name": "analytics___salesforce_stg__campaign_numberofcontacts", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_numberofcontacts", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_numberofconvertedleads": {"name": "analytics___salesforce_stg__campaign_numberofconvertedleads", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_numberofconvertedleads", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_numberofleads": {"name": "analytics___salesforce_stg__campaign_numberofleads", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_numberofleads", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_numberofopportunities": {"name": "analytics___salesforce_stg__campaign_numberofopportunities", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_numberofopportunities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_numberofresponses": {"name": "analytics___salesforce_stg__campaign_numberofresponses", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_numberofresponses", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_numberofwonopportunities": {"name": "analytics___salesforce_stg__campaign_numberofwonopportunities", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_numberofwonopportunities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_numbersent": {"name": "analytics___salesforce_stg__campaign_numbersent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_numbersent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_original_source_c": {"name": "analytics___salesforce_stg__campaign_original_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_original_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_ownerid": {"name": "analytics___salesforce_stg__campaign_ownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_ownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_parentid": {"name": "analytics___salesforce_stg__campaign_parentid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_parentid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_processing_time": {"name": "analytics___salesforce_stg__campaign_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_related_products_c": {"name": "analytics___salesforce_stg__campaign_related_products_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_related_products_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_startdate": {"name": "analytics___salesforce_stg__campaign_startdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_startdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_status": {"name": "analytics___salesforce_stg__campaign_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_sub_type_c": {"name": "analytics___salesforce_stg__campaign_sub_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_sub_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_systemmodstamp": {"name": "analytics___salesforce_stg__campaign_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_type": {"name": "analytics___salesforce_stg__campaign_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__campaign_upsolver_schema_version": {"name": "analytics___salesforce_stg__campaign_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__campaign/analytics___salesforce_stg__campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__campaign_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full": {"name": "analytics___salesforce_stg__case_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__case_full_AccountId": {"name": "analytics___salesforce_stg__case_full_AccountId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_AccountId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Bug_Actual_TTR_c": {"name": "analytics___salesforce_stg__case_full_Bug_Actual_TTR_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Bug_Actual_TTR_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Bug_Fix_Due_Date_Initial_c": {"name": "analytics___salesforce_stg__case_full_Bug_Fix_Due_Date_Initial_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Bug_Fix_Due_Date_Initial_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Bug_Fix_Due_Date_c": {"name": "analytics___salesforce_stg__case_full_Bug_Fix_Due_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Bug_Fix_Due_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Bug_Number_c": {"name": "analytics___salesforce_stg__case_full_Bug_Number_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Bug_Number_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Bug_Status_c": {"name": "analytics___salesforce_stg__case_full_Bug_Status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Bug_Status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Bug_number_days_in_delay_timer_c": {"name": "analytics___salesforce_stg__case_full_Bug_number_days_in_delay_timer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Bug_number_days_in_delay_timer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_CaseNumber": {"name": "analytics___salesforce_stg__case_full_CaseNumber", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_CaseNumber", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Case_Group_c": {"name": "analytics___salesforce_stg__case_full_Case_Group_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Case_Group_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Case_Score_c": {"name": "analytics___salesforce_stg__case_full_Case_Score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Case_Score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Case_Team_Formula_c": {"name": "analytics___salesforce_stg__case_full_Case_Team_Formula_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Case_Team_Formula_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Case_Team_c": {"name": "analytics___salesforce_stg__case_full_Case_Team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Case_Team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_ClosedDate": {"name": "analytics___salesforce_stg__case_full_ClosedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_ClosedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Counter_Agent_Replies_c": {"name": "analytics___salesforce_stg__case_full_Counter_Agent_Replies_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Counter_Agent_Replies_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Counter_Total_Replies_c": {"name": "analytics___salesforce_stg__case_full_Counter_Total_Replies_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Counter_Total_Replies_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_CreatedDate": {"name": "analytics___salesforce_stg__case_full_CreatedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_CreatedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_De_escalated_At_c": {"name": "analytics___salesforce_stg__case_full_De_escalated_At_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_De_escalated_At_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Description": {"name": "analytics___salesforce_stg__case_full_Description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Escalated_to_Tier_2_at_c": {"name": "analytics___salesforce_stg__case_full_Escalated_to_Tier_2_at_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Escalated_to_Tier_2_at_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Escalation_Severity_c": {"name": "analytics___salesforce_stg__case_full_Escalation_Severity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Escalation_Severity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Escalation_Type_c": {"name": "analytics___salesforce_stg__case_full_Escalation_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Escalation_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Feature_c": {"name": "analytics___salesforce_stg__case_full_Feature_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Feature_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_First_Response_Date_c": {"name": "analytics___salesforce_stg__case_full_First_Response_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_First_Response_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Id": {"name": "analytics___salesforce_stg__case_full_Id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Incident_c": {"name": "analytics___salesforce_stg__case_full_Incident_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Incident_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Inquiry_Type_c": {"name": "analytics___salesforce_stg__case_full_Inquiry_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Inquiry_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_IsClosed": {"name": "analytics___salesforce_stg__case_full_IsClosed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_IsClosed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_IsDeleted": {"name": "analytics___salesforce_stg__case_full_IsDeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_IsDeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_IsEscalated": {"name": "analytics___salesforce_stg__case_full_IsEscalated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_IsEscalated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Live_Chat_End_Date_c": {"name": "analytics___salesforce_stg__case_full_Live_Chat_End_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Live_Chat_End_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Live_Chat_Start_Date_c": {"name": "analytics___salesforce_stg__case_full_Live_Chat_Start_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Live_Chat_Start_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Organization_Key_c": {"name": "analytics___salesforce_stg__case_full_Organization_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Organization_Key_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Origin": {"name": "analytics___salesforce_stg__case_full_Origin", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Origin", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Product_Line_c": {"name": "analytics___salesforce_stg__case_full_Product_Line_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Product_Line_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_RecordTypeId": {"name": "analytics___salesforce_stg__case_full_RecordTypeId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_RecordTypeId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Requester_Email_c": {"name": "analytics___salesforce_stg__case_full_Requester_Email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Requester_Email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_SE_Time_in_Pending_R_D_hr_c": {"name": "analytics___salesforce_stg__case_full_SE_Time_in_Pending_R_D_hr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_SE_Time_in_Pending_R_D_hr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Severity_Score_c": {"name": "analytics___salesforce_stg__case_full_Severity_Score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Severity_Score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Snapshot_Customer_Segment_c": {"name": "analytics___salesforce_stg__case_full_Snapshot_Customer_Segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Snapshot_Customer_Segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Status": {"name": "analytics___salesforce_stg__case_full_Status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Store_App_Key_Text_c": {"name": "analytics___salesforce_stg__case_full_Store_App_Key_Text_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Store_App_Key_Text_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Subject": {"name": "analytics___salesforce_stg__case_full_Subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Subject", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Survey_Response_Date_c": {"name": "analytics___salesforce_stg__case_full_Survey_Response_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Survey_Response_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Survey_Score_c": {"name": "analytics___salesforce_stg__case_full_Survey_Score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Survey_Score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_SystemModstamp": {"name": "analytics___salesforce_stg__case_full_SystemModstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_SystemModstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Tier_2_First_Response_Date_c": {"name": "analytics___salesforce_stg__case_full_Tier_2_First_Response_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Tier_2_First_Response_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Time_to_First_Response_Tier_2_Min_c": {"name": "analytics___salesforce_stg__case_full_Time_to_First_Response_Tier_2_Min_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Time_to_First_Response_Tier_2_Min_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Time_to_First_Response_c": {"name": "analytics___salesforce_stg__case_full_Time_to_First_Response_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Time_to_First_Response_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Time_to_Resolution_c": {"name": "analytics___salesforce_stg__case_full_Time_to_Resolution_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Time_to_Resolution_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Timer_Requester_Wait_Time_T1_c": {"name": "analytics___salesforce_stg__case_full_Timer_Requester_Wait_Time_T1_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Timer_Requester_Wait_Time_T1_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Timer_Requester_Wait_Time_T2_c": {"name": "analytics___salesforce_stg__case_full_Timer_Requester_Wait_Time_T2_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Timer_Requester_Wait_Time_T2_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Timer_Requester_Wait_Time_c": {"name": "analytics___salesforce_stg__case_full_Timer_Requester_Wait_Time_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Timer_Requester_Wait_Time_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Timer_T1_Net_Support_RWT_c": {"name": "analytics___salesforce_stg__case_full_Timer_T1_Net_Support_RWT_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Timer_T1_Net_Support_RWT_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Timer_T2_Net_Support_RWT_c": {"name": "analytics___salesforce_stg__case_full_Timer_T2_Net_Support_RWT_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Timer_T2_Net_Support_RWT_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Timer_Time_In_Development_c": {"name": "analytics___salesforce_stg__case_full_Timer_Time_In_Development_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Timer_Time_In_Development_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Timer_Time_In_Pending_CSM_c": {"name": "analytics___salesforce_stg__case_full_Timer_Time_In_Pending_CSM_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Timer_Time_In_Pending_CSM_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Timer_Time_in_P_Escalation_hr_c": {"name": "analytics___salesforce_stg__case_full_Timer_Time_in_P_Escalation_hr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Timer_Time_in_P_Escalation_hr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_Topic_c": {"name": "analytics___salesforce_stg__case_full_Topic_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_Topic_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full__sdc_batched_at": {"name": "analytics___salesforce_stg__case_full__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full__sdc_extracted_at": {"name": "analytics___salesforce_stg__case_full__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full__sdc_received_at": {"name": "analytics___salesforce_stg__case_full__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full__sdc_sequence": {"name": "analytics___salesforce_stg__case_full__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full__sdc_table_version": {"name": "analytics___salesforce_stg__case_full__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__case_full_rn": {"name": "analytics___salesforce_stg__case_full_rn", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__case_full/analytics___salesforce_stg__case_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__case_full_rn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact": {"name": "analytics___salesforce_stg__contact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__contact__sdc_batched_at": {"name": "analytics___salesforce_stg__contact__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact__sdc_extracted_at": {"name": "analytics___salesforce_stg__contact__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact__sdc_received_at": {"name": "analytics___salesforce_stg__contact__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact__sdc_sequence": {"name": "analytics___salesforce_stg__contact__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact__sdc_table_version": {"name": "analytics___salesforce_stg__contact__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_account_country_c": {"name": "analytics___salesforce_stg__contact_account_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_account_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_account_db_package_c": {"name": "analytics___salesforce_stg__contact_account_db_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_account_db_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_account_in_cross_sell_process_c": {"name": "analytics___salesforce_stg__contact_account_in_cross_sell_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_account_in_cross_sell_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_account_name_c": {"name": "analytics___salesforce_stg__contact_account_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_account_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_account_owner_c": {"name": "analytics___salesforce_stg__contact_account_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_account_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_account_s_organization_key_c": {"name": "analytics___salesforce_stg__contact_account_s_organization_key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_account_s_organization_key_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_account_sdr_owner_c": {"name": "analytics___salesforce_stg__contact_account_sdr_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_account_sdr_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_account_status_c": {"name": "analytics___salesforce_stg__contact_account_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_account_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_account_territory_c": {"name": "analytics___salesforce_stg__contact_account_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_account_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_accountid": {"name": "analytics___salesforce_stg__contact_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_active_community_member_c": {"name": "analytics___salesforce_stg__contact_active_community_member_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_active_community_member_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_active_contact_14_days_c": {"name": "analytics___salesforce_stg__contact_active_contact_14_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_active_contact_14_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_activitymetricid": {"name": "analytics___salesforce_stg__contact_activitymetricid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_activitymetricid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_activitymetricrollupid": {"name": "analytics___salesforce_stg__contact_activitymetricrollupid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_activitymetricrollupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_added_to_self_service_by_c": {"name": "analytics___salesforce_stg__contact_added_to_self_service_by_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_added_to_self_service_by_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_added_to_self_service_by_role_c": {"name": "analytics___salesforce_stg__contact_added_to_self_service_by_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_added_to_self_service_by_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_additional_email_address_c": {"name": "analytics___salesforce_stg__contact_additional_email_address_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_additional_email_address_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_additional_email_c": {"name": "analytics___salesforce_stg__contact_additional_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_additional_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_additional_phone_number_c": {"name": "analytics___salesforce_stg__contact_additional_phone_number_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_additional_phone_number_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_ads_provider_c": {"name": "analytics___salesforce_stg__contact_ads_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_ads_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_agency_potential_c": {"name": "analytics___salesforce_stg__contact_agency_potential_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_agency_potential_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_agency_stage_c": {"name": "analytics___salesforce_stg__contact_agency_stage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_agency_stage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_annual_revenue_c": {"name": "analytics___salesforce_stg__contact_annual_revenue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_annual_revenue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_ask_to_renew_c": {"name": "analytics___salesforce_stg__contact_ask_to_renew_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_ask_to_renew_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_automate_contact_status_timestamp_c": {"name": "analytics___salesforce_stg__contact_automate_contact_status_timestamp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_automate_contact_status_timestamp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_avg_traffic_6_months_c": {"name": "analytics___salesforce_stg__contact_avg_traffic_6_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_avg_traffic_6_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_birthdate": {"name": "analytics___salesforce_stg__contact_birthdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_birthdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_booking_status_cp_c": {"name": "analytics___salesforce_stg__contact_booking_status_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_booking_status_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_bottom_of_funnel_sessions_c": {"name": "analytics___salesforce_stg__contact_bottom_of_funnel_sessions_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_bottom_of_funnel_sessions_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_bounce_rate_c": {"name": "analytics___salesforce_stg__contact_bounce_rate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_bounce_rate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_cdp_provider_c": {"name": "analytics___salesforce_stg__contact_cdp_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_cdp_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_champion_c": {"name": "analytics___salesforce_stg__contact_champion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_champion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_chat_bots_provider_c": {"name": "analytics___salesforce_stg__contact_chat_bots_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_chat_bots_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_comments_c": {"name": "analytics___salesforce_stg__contact_comments_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_comments_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_commonalities_c": {"name": "analytics___salesforce_stg__contact_commonalities_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_commonalities_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_community_member_c": {"name": "analytics___salesforce_stg__contact_community_member_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_community_member_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_community_user_c": {"name": "analytics___salesforce_stg__contact_community_user_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_community_user_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_community_user_last_login_date_c": {"name": "analytics___salesforce_stg__contact_community_user_last_login_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_community_user_last_login_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_community_user_my_account_s_contacts_c": {"name": "analytics___salesforce_stg__contact_community_user_my_account_s_contacts_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_community_user_my_account_s_contacts_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_community_user_profile_c": {"name": "analytics___salesforce_stg__contact_community_user_profile_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_community_user_profile_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_company_profile_c": {"name": "analytics___salesforce_stg__contact_company_profile_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_company_profile_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_assignment_c": {"name": "analytics___salesforce_stg__contact_contact_assignment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_assignment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_count_c": {"name": "analytics___salesforce_stg__contact_contact_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_id_18_c": {"name": "analytics___salesforce_stg__contact_contact_id_18_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_id_18_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_is_primary_sms_c": {"name": "analytics___salesforce_stg__contact_contact_is_primary_sms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_is_primary_sms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_last_campaign_c": {"name": "analytics___salesforce_stg__contact_contact_last_campaign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_last_campaign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_last_hubspot_engagement_c": {"name": "analytics___salesforce_stg__contact_contact_last_hubspot_engagement_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_last_hubspot_engagement_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_notes_c": {"name": "analytics___salesforce_stg__contact_contact_notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_owner_not_account_owner_c": {"name": "analytics___salesforce_stg__contact_contact_owner_not_account_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_owner_not_account_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_role_c": {"name": "analytics___salesforce_stg__contact_contact_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_role_primary_c": {"name": "analytics___salesforce_stg__contact_contact_role_primary_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_role_primary_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_status_c": {"name": "analytics___salesforce_stg__contact_contact_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contact_status_time_stamp_c": {"name": "analytics___salesforce_stg__contact_contact_status_time_stamp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contact_status_time_stamp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_contacts_in_common_c": {"name": "analytics___salesforce_stg__contact_contacts_in_common_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_contacts_in_common_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_converted_by_ringlead_webhook_c": {"name": "analytics___salesforce_stg__contact_converted_by_ringlead_webhook_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_converted_by_ringlead_webhook_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_country_region_c": {"name": "analytics___salesforce_stg__contact_country_region_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_country_region_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_created_via_docusign_c": {"name": "analytics___salesforce_stg__contact_created_via_docusign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_created_via_docusign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_createdbyid": {"name": "analytics___salesforce_stg__contact_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_createddate": {"name": "analytics___salesforce_stg__contact_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_critical_event_c": {"name": "analytics___salesforce_stg__contact_critical_event_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_critical_event_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_csm_email_re_engaged_c": {"name": "analytics___salesforce_stg__contact_csm_email_re_engaged_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_csm_email_re_engaged_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_currencyisocode": {"name": "analytics___salesforce_stg__contact_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_current_curation_solution_c": {"name": "analytics___salesforce_stg__contact_current_curation_solution_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_current_curation_solution_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_current_marketing_efforts_c": {"name": "analytics___salesforce_stg__contact_current_marketing_efforts_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_current_marketing_efforts_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_customer_care_tagged_c": {"name": "analytics___salesforce_stg__contact_customer_care_tagged_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_customer_care_tagged_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_d": {"name": "analytics___salesforce_stg__contact_d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_d", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_days_from_last_activity_c": {"name": "analytics___salesforce_stg__contact_days_from_last_activity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_days_from_last_activity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_days_from_last_assign_to_first_touch_c": {"name": "analytics___salesforce_stg__contact_days_from_last_assign_to_first_touch_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_days_from_last_assign_to_first_touch_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_days_since_last_activity_after_assign_c": {"name": "analytics___salesforce_stg__contact_days_since_last_activity_after_assign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_days_since_last_activity_after_assign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_days_since_last_activity_after_engage_c": {"name": "analytics___salesforce_stg__contact_days_since_last_activity_after_engage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_days_since_last_activity_after_engage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_days_since_last_activity_after_mql_c": {"name": "analytics___salesforce_stg__contact_days_since_last_activity_after_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_days_since_last_activity_after_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_days_since_last_communicated_c": {"name": "analytics___salesforce_stg__contact_days_since_last_communicated_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_days_since_last_communicated_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_days_since_last_partner_portal_modify_c": {"name": "analytics___salesforce_stg__contact_days_since_last_partner_portal_modify_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_days_since_last_partner_portal_modify_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_decision_c": {"name": "analytics___salesforce_stg__contact_decision_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_decision_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_decision_maker_c": {"name": "analytics___salesforce_stg__contact_decision_maker_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_decision_maker_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_department": {"name": "analytics___salesforce_stg__contact_department", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_department", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_description": {"name": "analytics___salesforce_stg__contact_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_direct_traffic_share_c": {"name": "analytics___salesforce_stg__contact_direct_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_direct_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_discoverorg_person_country_c": {"name": "analytics___salesforce_stg__contact_discoverorg_person_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_discoverorg_person_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_doesn_t_work_here_c": {"name": "analytics___salesforce_stg__contact_doesn_t_work_here_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_doesn_t_work_here_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_domain_c": {"name": "analytics___salesforce_stg__contact_domain_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_domain_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_domain_copy_c": {"name": "analytics___salesforce_stg__contact_domain_copy_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_domain_copy_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_donotcall": {"name": "analytics___salesforce_stg__contact_donotcall", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_donotcall", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_dozisf_zoominfo_company_id_c": {"name": "analytics___salesforce_stg__contact_dozisf_zoominfo_company_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_dozisf_zoominfo_company_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_dozisf_zoominfo_first_updated_c": {"name": "analytics___salesforce_stg__contact_dozisf_zoominfo_first_updated_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_dozisf_zoominfo_first_updated_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_dozisf_zoominfo_id_c": {"name": "analytics___salesforce_stg__contact_dozisf_zoominfo_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_dozisf_zoominfo_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_dozisf_zoominfo_last_updated_c": {"name": "analytics___salesforce_stg__contact_dozisf_zoominfo_last_updated_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_dozisf_zoominfo_last_updated_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_drift_assignee_c": {"name": "analytics___salesforce_stg__contact_drift_assignee_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_drift_assignee_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_ds_account_id_c": {"name": "analytics___salesforce_stg__contact_ds_account_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_ds_account_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_effective_source_c": {"name": "analytics___salesforce_stg__contact_effective_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_effective_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_email": {"name": "analytics___salesforce_stg__contact_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_email_domain_c": {"name": "analytics___salesforce_stg__contact_email_domain_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_email_domain_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_email_validation_c": {"name": "analytics___salesforce_stg__contact_email_validation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_email_validation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_emailbounceddate": {"name": "analytics___salesforce_stg__contact_emailbounceddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_emailbounceddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_emailbouncedreason": {"name": "analytics___salesforce_stg__contact_emailbouncedreason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_emailbouncedreason", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_enable_email_to_case_ugc_prime_c": {"name": "analytics___salesforce_stg__contact_enable_email_to_case_ugc_prime_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_enable_email_to_case_ugc_prime_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_engaged_with_cross_sell_campaign_c": {"name": "analytics___salesforce_stg__contact_engaged_with_cross_sell_campaign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_engaged_with_cross_sell_campaign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_enterprise_contact_c": {"name": "analytics___salesforce_stg__contact_enterprise_contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_enterprise_contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_enterprise_contact_formula_c": {"name": "analytics___salesforce_stg__contact_enterprise_contact_formula_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_enterprise_contact_formula_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_estimated_aov_c": {"name": "analytics___salesforce_stg__contact_estimated_aov_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_estimated_aov_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_estimated_of_orders_c": {"name": "analytics___salesforce_stg__contact_estimated_of_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_estimated_of_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_exclude_revshare_c": {"name": "analytics___salesforce_stg__contact_exclude_revshare_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_exclude_revshare_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_fax": {"name": "analytics___salesforce_stg__contact_fax", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_fax", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_fb_likes_c": {"name": "analytics___salesforce_stg__contact_fb_likes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_fb_likes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_features_to_focus_on_c": {"name": "analytics___salesforce_stg__contact_features_to_focus_on_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_features_to_focus_on_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_first_activity_date_c": {"name": "analytics___salesforce_stg__contact_first_activity_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_first_activity_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_first_contact_on_account_indication_c": {"name": "analytics___salesforce_stg__contact_first_contact_on_account_indication_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_first_contact_on_account_indication_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_first_login_c": {"name": "analytics___salesforce_stg__contact_first_login_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_first_login_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_firstname": {"name": "analytics___salesforce_stg__contact_firstname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_firstname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_follow_up_date_c": {"name": "analytics___salesforce_stg__contact_follow_up_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_follow_up_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_follow_up_in_c": {"name": "analytics___salesforce_stg__contact_follow_up_in_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_follow_up_in_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_follow_up_num_of_days_c": {"name": "analytics___salesforce_stg__contact_follow_up_num_of_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_follow_up_num_of_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_funding_c": {"name": "analytics___salesforce_stg__contact_funding_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_funding_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_global_rank_c": {"name": "analytics___salesforce_stg__contact_global_rank_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_global_rank_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_good_fit_for_growth_c": {"name": "analytics___salesforce_stg__contact_good_fit_for_growth_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_good_fit_for_growth_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_good_fit_for_the_annual_plan_contact_c": {"name": "analytics___salesforce_stg__contact_good_fit_for_the_annual_plan_contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_good_fit_for_the_annual_plan_contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_google_click_id_c": {"name": "analytics___salesforce_stg__contact_google_click_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_google_click_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_google_seller_rating_c": {"name": "analytics___salesforce_stg__contact_google_seller_rating_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_google_seller_rating_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_hasoptedoutofemail": {"name": "analytics___salesforce_stg__contact_hasoptedoutofemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_hasoptedoutofemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_hasoptedoutoffax": {"name": "analytics___salesforce_stg__contact_hasoptedoutoffax", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_hasoptedoutoffax", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_help_desk_provider_c": {"name": "analytics___salesforce_stg__contact_help_desk_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_help_desk_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_homephone": {"name": "analytics___salesforce_stg__contact_homephone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_homephone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_hours_since_account_last_transfer_c": {"name": "analytics___salesforce_stg__contact_hours_since_account_last_transfer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_hours_since_account_last_transfer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_id": {"name": "analytics___salesforce_stg__contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_impact_c": {"name": "analytics___salesforce_stg__contact_impact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_impact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_import_reason_c": {"name": "analytics___salesforce_stg__contact_import_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_import_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_inbound_reason_for_interest_in_yotpo_c": {"name": "analytics___salesforce_stg__contact_inbound_reason_for_interest_in_yotpo_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_inbound_reason_for_interest_in_yotpo_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_integrations_email_marketing_c": {"name": "analytics___salesforce_stg__contact_integrations_email_marketing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_integrations_email_marketing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_integrations_loyalty_c": {"name": "analytics___salesforce_stg__contact_integrations_loyalty_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_integrations_loyalty_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_integrations_onsite_engagement_c": {"name": "analytics___salesforce_stg__contact_integrations_onsite_engagement_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_integrations_onsite_engagement_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_integrations_search_c": {"name": "analytics___salesforce_stg__contact_integrations_search_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_integrations_search_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_interested_in_loyalty_c": {"name": "analytics___salesforce_stg__contact_interested_in_loyalty_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_interested_in_loyalty_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_interested_in_reviews_c": {"name": "analytics___salesforce_stg__contact_interested_in_reviews_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_interested_in_reviews_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_interested_in_sms_c": {"name": "analytics___salesforce_stg__contact_interested_in_sms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_interested_in_sms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_interested_in_subscription_c": {"name": "analytics___salesforce_stg__contact_interested_in_subscription_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_interested_in_subscription_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_interested_in_vms_c": {"name": "analytics___salesforce_stg__contact_interested_in_vms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_interested_in_vms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_internal_use_c": {"name": "analytics___salesforce_stg__contact_internal_use_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_internal_use_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_invalid_email_address_marketo_c": {"name": "analytics___salesforce_stg__contact_invalid_email_address_marketo_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_invalid_email_address_marketo_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_isdeleted": {"name": "analytics___salesforce_stg__contact_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_isdr_low_fit_qualification_date_c": {"name": "analytics___salesforce_stg__contact_isdr_low_fit_qualification_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_isdr_low_fit_qualification_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_isdr_low_fit_qualification_status_c": {"name": "analytics___salesforce_stg__contact_isdr_low_fit_qualification_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_isdr_low_fit_qualification_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_isemailbounced": {"name": "analytics___salesforce_stg__contact_isemailbounced", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_isemailbounced", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_jigsaw": {"name": "analytics___salesforce_stg__contact_jigsaw", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_jigsaw", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_jigsawcontactid": {"name": "analytics___salesforce_stg__contact_jigsawcontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_jigsawcontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_junk_reason_c": {"name": "analytics___salesforce_stg__contact_junk_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_junk_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_last_activity_date_c": {"name": "analytics___salesforce_stg__contact_last_activity_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_last_activity_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_last_call_date_c": {"name": "analytics___salesforce_stg__contact_last_call_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_last_call_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_last_campaign_engagement_date_c": {"name": "analytics___salesforce_stg__contact_last_campaign_engagement_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_last_campaign_engagement_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_last_communication_date_c": {"name": "analytics___salesforce_stg__contact_last_communication_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_last_communication_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_last_in_person_meeting_c": {"name": "analytics___salesforce_stg__contact_last_in_person_meeting_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_last_in_person_meeting_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_last_login_c": {"name": "analytics___salesforce_stg__contact_last_login_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_last_login_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_last_nps_date_c": {"name": "analytics___salesforce_stg__contact_last_nps_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_last_nps_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_last_referral_via_the_portal_c": {"name": "analytics___salesforce_stg__contact_last_referral_via_the_portal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_last_referral_via_the_portal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_last_ringlead_merge_activity_c": {"name": "analytics___salesforce_stg__contact_last_ringlead_merge_activity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_last_ringlead_merge_activity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lastactivitydate": {"name": "analytics___salesforce_stg__contact_lastactivitydate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lastactivitydate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lastmodifiedbyid": {"name": "analytics___salesforce_stg__contact_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lastmodifieddate": {"name": "analytics___salesforce_stg__contact_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lastname": {"name": "analytics___salesforce_stg__contact_lastname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lastname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lastproductoflastsubscriptionevent_c": {"name": "analytics___salesforce_stg__contact_lastproductoflastsubscriptionevent_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lastproductoflastsubscriptionevent_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lastreferenceddate": {"name": "analytics___salesforce_stg__contact_lastreferenceddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lastreferenceddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lastsubscriptioneventchange_c": {"name": "analytics___salesforce_stg__contact_lastsubscriptioneventchange_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lastsubscriptioneventchange_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lastvieweddate": {"name": "analytics___salesforce_stg__contact_lastvieweddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lastvieweddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_latest_nps_score_c": {"name": "analytics___salesforce_stg__contact_latest_nps_score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_latest_nps_score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lead_last_hubspot_engagement_mapped_c": {"name": "analytics___salesforce_stg__contact_lead_last_hubspot_engagement_mapped_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lead_last_hubspot_engagement_mapped_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lead_source_type_c": {"name": "analytics___salesforce_stg__contact_lead_source_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lead_source_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_leadsource": {"name": "analytics___salesforce_stg__contact_leadsource", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_leadsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_linkedin_c": {"name": "analytics___salesforce_stg__contact_linkedin_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_linkedin_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_ln_interest_c": {"name": "analytics___salesforce_stg__contact_ln_interest_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_ln_interest_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lnpath_c": {"name": "analytics___salesforce_stg__contact_lnpath_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lnpath_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lnstage_c": {"name": "analytics___salesforce_stg__contact_lnstage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lnstage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lnstatus_c": {"name": "analytics___salesforce_stg__contact_lnstatus_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lnstatus_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_location_c": {"name": "analytics___salesforce_stg__contact_location_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_location_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_lost_opp_feedback_process_c": {"name": "analytics___salesforce_stg__contact_lost_opp_feedback_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_lost_opp_feedback_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mail_traffic_share_c": {"name": "analytics___salesforce_stg__contact_mail_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mail_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mailingcity": {"name": "analytics___salesforce_stg__contact_mailingcity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mailingcity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mailingcountry": {"name": "analytics___salesforce_stg__contact_mailingcountry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mailingcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mailingcountrycode": {"name": "analytics___salesforce_stg__contact_mailingcountrycode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mailingcountrycode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mailingpostalcode": {"name": "analytics___salesforce_stg__contact_mailingpostalcode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mailingpostalcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mailingstate": {"name": "analytics___salesforce_stg__contact_mailingstate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mailingstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mailingstatecode": {"name": "analytics___salesforce_stg__contact_mailingstatecode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mailingstatecode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mailingstreet": {"name": "analytics___salesforce_stg__contact_mailingstreet", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mailingstreet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_marketing_filter_hlql_date_c": {"name": "analytics___salesforce_stg__contact_marketing_filter_hlql_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_marketing_filter_hlql_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_marketing_filter_hql_date_c": {"name": "analytics___salesforce_stg__contact_marketing_filter_hql_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_marketing_filter_hql_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_marketing_filter_last_qualified_tier_c": {"name": "analytics___salesforce_stg__contact_marketing_filter_last_qualified_tier_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_marketing_filter_last_qualified_tier_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_marketing_filter_lql_date_c": {"name": "analytics___salesforce_stg__contact_marketing_filter_lql_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_marketing_filter_lql_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_marketing_product_push_counter_c": {"name": "analytics___salesforce_stg__contact_marketing_product_push_counter_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_marketing_product_push_counter_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_marketo_fit_score_c": {"name": "analytics___salesforce_stg__contact_marketo_fit_score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_marketo_fit_score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_marketo_fit_score_first_mql_c": {"name": "analytics___salesforce_stg__contact_marketo_fit_score_first_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_marketo_fit_score_first_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_marketo_fit_score_last_mql_c": {"name": "analytics___salesforce_stg__contact_marketo_fit_score_last_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_marketo_fit_score_last_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_marketo_tier_last_mql_c": {"name": "analytics___salesforce_stg__contact_marketo_tier_last_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_marketo_tier_last_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_marketo_tier_mql_c": {"name": "analytics___salesforce_stg__contact_marketo_tier_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_marketo_tier_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_marketo_triggered_mql_c": {"name": "analytics___salesforce_stg__contact_marketo_triggered_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_marketo_triggered_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_masterrecordid": {"name": "analytics___salesforce_stg__contact_masterrecordid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_masterrecordid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_meeting_type_cp_c": {"name": "analytics___salesforce_stg__contact_meeting_type_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_meeting_type_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_merchant_id_c": {"name": "analytics___salesforce_stg__contact_merchant_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_merchant_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_merged_contact_c": {"name": "analytics___salesforce_stg__contact_merged_contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_merged_contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_acquisition_date_c": {"name": "analytics___salesforce_stg__contact_mkto2_acquisition_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_acquisition_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_acquisition_program_c": {"name": "analytics___salesforce_stg__contact_mkto2_acquisition_program_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_acquisition_program_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_acquisition_program_id_c": {"name": "analytics___salesforce_stg__contact_mkto2_acquisition_program_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_acquisition_program_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_city_c": {"name": "analytics___salesforce_stg__contact_mkto2_inferred_city_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_city_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_company_c": {"name": "analytics___salesforce_stg__contact_mkto2_inferred_company_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_company_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_country_c": {"name": "analytics___salesforce_stg__contact_mkto2_inferred_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_metropolitan_area_c": {"name": "analytics___salesforce_stg__contact_mkto2_inferred_metropolitan_area_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_metropolitan_area_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_phone_area_code_c": {"name": "analytics___salesforce_stg__contact_mkto2_inferred_phone_area_code_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_phone_area_code_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_postal_code_c": {"name": "analytics___salesforce_stg__contact_mkto2_inferred_postal_code_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_postal_code_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_state_region_c": {"name": "analytics___salesforce_stg__contact_mkto2_inferred_state_region_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_inferred_state_region_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_lead_score_c": {"name": "analytics___salesforce_stg__contact_mkto2_lead_score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_lead_score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_original_referrer_c": {"name": "analytics___salesforce_stg__contact_mkto2_original_referrer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_original_referrer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_original_search_engine_c": {"name": "analytics___salesforce_stg__contact_mkto2_original_search_engine_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_original_search_engine_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_original_search_phrase_c": {"name": "analytics___salesforce_stg__contact_mkto2_original_search_phrase_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_original_search_phrase_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_original_source_info_c": {"name": "analytics___salesforce_stg__contact_mkto2_original_source_info_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_original_source_info_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto2_original_source_type_c": {"name": "analytics___salesforce_stg__contact_mkto2_original_source_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto2_original_source_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto71_acquisition_date_c": {"name": "analytics___salesforce_stg__contact_mkto71_acquisition_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto71_acquisition_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto71_acquisition_program_c": {"name": "analytics___salesforce_stg__contact_mkto71_acquisition_program_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto71_acquisition_program_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto71_acquisition_program_id_c": {"name": "analytics___salesforce_stg__contact_mkto71_acquisition_program_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto71_acquisition_program_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_add_to_marketo_campaign_c": {"name": "analytics___salesforce_stg__contact_mkto_si_add_to_marketo_campaign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_add_to_marketo_campaign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_c": {"name": "analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_date_c": {"name": "analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_desc_c": {"name": "analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_desc_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_desc_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_source_c": {"name": "analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_type_c": {"name": "analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_last_interesting_moment_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_priority_c": {"name": "analytics___salesforce_stg__contact_mkto_si_priority_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_priority_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_relative_score_c": {"name": "analytics___salesforce_stg__contact_mkto_si_relative_score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_relative_score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_relative_score_value_c": {"name": "analytics___salesforce_stg__contact_mkto_si_relative_score_value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_relative_score_value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_sales_insight_c": {"name": "analytics___salesforce_stg__contact_mkto_si_sales_insight_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_sales_insight_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_urgency_c": {"name": "analytics___salesforce_stg__contact_mkto_si_urgency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_urgency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_urgency_value_c": {"name": "analytics___salesforce_stg__contact_mkto_si_urgency_value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_urgency_value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mkto_si_view_in_marketo_c": {"name": "analytics___salesforce_stg__contact_mkto_si_view_in_marketo_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mkto_si_view_in_marketo_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mobilephone": {"name": "analytics___salesforce_stg__contact_mobilephone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mobilephone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_monthly_fb_ads_budget_c": {"name": "analytics___salesforce_stg__contact_monthly_fb_ads_budget_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_monthly_fb_ads_budget_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_most_recent_assignment_bucket_c": {"name": "analytics___salesforce_stg__contact_most_recent_assignment_bucket_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_most_recent_assignment_bucket_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_most_recent_assignment_date_c": {"name": "analytics___salesforce_stg__contact_most_recent_assignment_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_most_recent_assignment_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_most_recent_assignment_reason_c": {"name": "analytics___salesforce_stg__contact_most_recent_assignment_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_most_recent_assignment_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_most_recent_assignment_sub_reason_c": {"name": "analytics___salesforce_stg__contact_most_recent_assignment_sub_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_most_recent_assignment_sub_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_most_recent_engagement_date_c": {"name": "analytics___salesforce_stg__contact_most_recent_engagement_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_most_recent_engagement_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_most_recent_engagement_reason_c": {"name": "analytics___salesforce_stg__contact_most_recent_engagement_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_most_recent_engagement_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_most_recent_engagement_sub_reason_c": {"name": "analytics___salesforce_stg__contact_most_recent_engagement_sub_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_most_recent_engagement_sub_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_most_recent_growth_referral_account_name_c": {"name": "analytics___salesforce_stg__contact_most_recent_growth_referral_account_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_most_recent_growth_referral_account_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_most_recent_product_preference_c": {"name": "analytics___salesforce_stg__contact_most_recent_product_preference_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_most_recent_product_preference_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_most_recent_session_starting_page_c": {"name": "analytics___salesforce_stg__contact_most_recent_session_starting_page_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_most_recent_session_starting_page_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_move_to_nurture_c": {"name": "analytics___salesforce_stg__contact_move_to_nurture_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_move_to_nurture_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mql_date_c": {"name": "analytics___salesforce_stg__contact_mql_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mql_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mql_motion_c": {"name": "analytics___salesforce_stg__contact_mql_motion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mql_motion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mql_notification_engagement_type_c": {"name": "analytics___salesforce_stg__contact_mql_notification_engagement_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mql_notification_engagement_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_mql_notification_reason_c": {"name": "analytics___salesforce_stg__contact_mql_notification_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_mql_notification_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_name": {"name": "analytics___salesforce_stg__contact_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_new_account_territory_c": {"name": "analytics___salesforce_stg__contact_new_account_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_new_account_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_new_outbound_referral_c": {"name": "analytics___salesforce_stg__contact_new_outbound_referral_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_new_outbound_referral_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_next_steps_c": {"name": "analytics___salesforce_stg__contact_next_steps_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_next_steps_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_nps_response_c": {"name": "analytics___salesforce_stg__contact_nps_response_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_nps_response_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_number_of_accounts_s_open_opportunities_c": {"name": "analytics___salesforce_stg__contact_number_of_accounts_s_open_opportunities_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_number_of_accounts_s_open_opportunities_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_number_of_instagram_followers_c": {"name": "analytics___salesforce_stg__contact_number_of_instagram_followers_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_number_of_instagram_followers_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_nurturing_reason_c": {"name": "analytics___salesforce_stg__contact_nurturing_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_nurturing_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_nurturing_to_new_c": {"name": "analytics___salesforce_stg__contact_nurturing_to_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_nurturing_to_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_opt_out_partner_marketing_c": {"name": "analytics___salesforce_stg__contact_opt_out_partner_marketing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_opt_out_partner_marketing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_original_source_c": {"name": "analytics___salesforce_stg__contact_original_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_original_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_other_contact_notes_c": {"name": "analytics___salesforce_stg__contact_other_contact_notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_other_contact_notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_othercity": {"name": "analytics___salesforce_stg__contact_othercity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_othercity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_othercountry": {"name": "analytics___salesforce_stg__contact_othercountry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_othercountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_othercountrycode": {"name": "analytics___salesforce_stg__contact_othercountrycode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_othercountrycode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_otherphone": {"name": "analytics___salesforce_stg__contact_otherphone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_otherphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_otherpostalcode": {"name": "analytics___salesforce_stg__contact_otherpostalcode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_otherpostalcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_otherstreet": {"name": "analytics___salesforce_stg__contact_otherstreet", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_otherstreet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_owned_by_sdr_salesloft_c": {"name": "analytics___salesforce_stg__contact_owned_by_sdr_salesloft_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_owned_by_sdr_salesloft_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_owner_is_active_c": {"name": "analytics___salesforce_stg__contact_owner_is_active_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_owner_is_active_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_owner_is_queue_c": {"name": "analytics___salesforce_stg__contact_owner_is_queue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_owner_is_queue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_owner_manager_email_c": {"name": "analytics___salesforce_stg__contact_owner_manager_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_owner_manager_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_ownerid": {"name": "analytics___salesforce_stg__contact_ownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_ownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_package_base_c": {"name": "analytics___salesforce_stg__contact_package_base_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_package_base_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_package_c": {"name": "analytics___salesforce_stg__contact_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_package_category_c": {"name": "analytics___salesforce_stg__contact_package_category_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_package_category_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_package_extensions_c": {"name": "analytics___salesforce_stg__contact_package_extensions_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_package_extensions_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_paid_referrals_traffic_share_c": {"name": "analytics___salesforce_stg__contact_paid_referrals_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_paid_referrals_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_pain_c": {"name": "analytics___salesforce_stg__contact_pain_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_pain_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_pain_points_c": {"name": "analytics___salesforce_stg__contact_pain_points_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_pain_points_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_partner_claimed_rev_share_c": {"name": "analytics___salesforce_stg__contact_partner_claimed_rev_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_partner_claimed_rev_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_partner_contact_role_c": {"name": "analytics___salesforce_stg__contact_partner_contact_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_partner_contact_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_partner_manager_email_referral_form_c": {"name": "analytics___salesforce_stg__contact_partner_manager_email_referral_form_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_partner_manager_email_referral_form_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_partner_outbound_referral_c": {"name": "analytics___salesforce_stg__contact_partner_outbound_referral_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_partner_outbound_referral_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_partner_portal_last_modify_c": {"name": "analytics___salesforce_stg__contact_partner_portal_last_modify_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_partner_portal_last_modify_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_partner_portal_status_c": {"name": "analytics___salesforce_stg__contact_partner_portal_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_partner_portal_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_partner_team_routing_c": {"name": "analytics___salesforce_stg__contact_partner_team_routing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_partner_team_routing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_payment_provider_c": {"name": "analytics___salesforce_stg__contact_payment_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_payment_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_pe_reassignment_date_c": {"name": "analytics___salesforce_stg__contact_pe_reassignment_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_pe_reassignment_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_personalization_provider_c": {"name": "analytics___salesforce_stg__contact_personalization_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_personalization_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_phone": {"name": "analytics___salesforce_stg__contact_phone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_phone_country_code_contact_c": {"name": "analytics___salesforce_stg__contact_phone_country_code_contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_phone_country_code_contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_phone_extension_c": {"name": "analytics___salesforce_stg__contact_phone_extension_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_phone_extension_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_photourl": {"name": "analytics___salesforce_stg__contact_photourl", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_photourl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_platform_c": {"name": "analytics___salesforce_stg__contact_platform_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_platform_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_pos_provider_c": {"name": "analytics___salesforce_stg__contact_pos_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_pos_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_previous_companies_c": {"name": "analytics___salesforce_stg__contact_previous_companies_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_previous_companies_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_previous_login_c": {"name": "analytics___salesforce_stg__contact_previous_login_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_previous_login_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_previous_roles_c": {"name": "analytics___salesforce_stg__contact_previous_roles_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_previous_roles_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_processing_time": {"name": "analytics___salesforce_stg__contact_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_product_lead_engagement_c": {"name": "analytics___salesforce_stg__contact_product_lead_engagement_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_product_lead_engagement_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_product_touches_c": {"name": "analytics___salesforce_stg__contact_product_touches_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_product_touches_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_products_interest_referral_form_c": {"name": "analytics___salesforce_stg__contact_products_interest_referral_form_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_products_interest_referral_form_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_prospect_fit_rank_c": {"name": "analytics___salesforce_stg__contact_prospect_fit_rank_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_prospect_fit_rank_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_prospect_fit_reason_c": {"name": "analytics___salesforce_stg__contact_prospect_fit_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_prospect_fit_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_prospect_fit_score_test_c": {"name": "analytics___salesforce_stg__contact_prospect_fit_score_test_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_prospect_fit_score_test_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_prospect_intent_rank_c": {"name": "analytics___salesforce_stg__contact_prospect_intent_rank_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_prospect_intent_rank_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_prospect_intent_reason_c": {"name": "analytics___salesforce_stg__contact_prospect_intent_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_prospect_intent_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_prospect_role_c": {"name": "analytics___salesforce_stg__contact_prospect_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_prospect_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_qualification_question_monthly_orders_c": {"name": "analytics___salesforce_stg__contact_qualification_question_monthly_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_qualification_question_monthly_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_rating_c": {"name": "analytics___salesforce_stg__contact_rating_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_rating_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_rcsfl_sendsms_c": {"name": "analytics___salesforce_stg__contact_rcsfl_sendsms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_rcsfl_sendsms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_ready_for_routing_c": {"name": "analytics___salesforce_stg__contact_ready_for_routing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_ready_for_routing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_recordval_rv2status_c": {"name": "analytics___salesforce_stg__contact_recordval_rv2status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_recordval_rv2status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_recordval_rv2validation_c": {"name": "analytics___salesforce_stg__contact_recordval_rv2validation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_recordval_rv2validation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_referrals_traffic_share_c": {"name": "analytics___salesforce_stg__contact_referrals_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_referrals_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_referred_by_email_referral_form_c": {"name": "analytics___salesforce_stg__contact_referred_by_email_referral_form_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_referred_by_email_referral_form_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_referred_by_referral_form_c": {"name": "analytics___salesforce_stg__contact_referred_by_referral_form_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_referred_by_referral_form_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_referred_partner_code_c": {"name": "analytics___salesforce_stg__contact_referred_partner_code_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_referred_partner_code_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_referred_to_cross_sell_by_c": {"name": "analytics___salesforce_stg__contact_referred_to_cross_sell_by_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_referred_to_cross_sell_by_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_referrer_agency_potential_c": {"name": "analytics___salesforce_stg__contact_referrer_agency_potential_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_referrer_agency_potential_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_referrer_type_c": {"name": "analytics___salesforce_stg__contact_referrer_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_referrer_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_relevant_recent_social_media_posts_c": {"name": "analytics___salesforce_stg__contact_relevant_recent_social_media_posts_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_relevant_recent_social_media_posts_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_relevant_yotpo_deployments_c": {"name": "analytics___salesforce_stg__contact_relevant_yotpo_deployments_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_relevant_yotpo_deployments_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_remove_from_primary_c": {"name": "analytics___salesforce_stg__contact_remove_from_primary_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_remove_from_primary_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_reportstoid": {"name": "analytics___salesforce_stg__contact_reportstoid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_reportstoid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_reviews_provider_c": {"name": "analytics___salesforce_stg__contact_reviews_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_reviews_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_ringlead_dms_status_c": {"name": "analytics___salesforce_stg__contact_ringlead_dms_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_ringlead_dms_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_sales_estimated_monthly_orders_c": {"name": "analytics___salesforce_stg__contact_sales_estimated_monthly_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_sales_estimated_monthly_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_sales_estimated_product_preference_c": {"name": "analytics___salesforce_stg__contact_sales_estimated_product_preference_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_sales_estimated_product_preference_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_sales_segment_c": {"name": "analytics___salesforce_stg__contact_sales_segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_sales_segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_sales_territory_c": {"name": "analytics___salesforce_stg__contact_sales_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_sales_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_sales_tier_first_mql_c": {"name": "analytics___salesforce_stg__contact_sales_tier_first_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_sales_tier_first_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_sales_tier_routing_c": {"name": "analytics___salesforce_stg__contact_sales_tier_routing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_sales_tier_routing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_salesloft1_active_contact_c": {"name": "analytics___salesforce_stg__contact_salesloft1_active_contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_salesloft1_active_contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_salesloft1_most_recent_cadence_name_c": {"name": "analytics___salesforce_stg__contact_salesloft1_most_recent_cadence_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_salesloft1_most_recent_cadence_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_salesloft1_most_recent_cadence_next_step_due_date_c": {"name": "analytics___salesforce_stg__contact_salesloft1_most_recent_cadence_next_step_due_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_salesloft1_most_recent_cadence_next_step_due_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_salesloft1_most_recent_last_completed_step_c": {"name": "analytics___salesforce_stg__contact_salesloft1_most_recent_last_completed_step_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_salesloft1_most_recent_last_completed_step_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_salesloft_industry_c": {"name": "analytics___salesforce_stg__contact_salesloft_industry_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_salesloft_industry_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_salutation": {"name": "analytics___salesforce_stg__contact_salutation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_salutation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_sdr_email_c": {"name": "analytics___salesforce_stg__contact_sdr_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_sdr_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_sdr_notes_c": {"name": "analytics___salesforce_stg__contact_sdr_notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_sdr_notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_search_traffic_share_c": {"name": "analytics___salesforce_stg__contact_search_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_search_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_second_best_country_c": {"name": "analytics___salesforce_stg__contact_second_best_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_second_best_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_segment_id_c": {"name": "analytics___salesforce_stg__contact_segment_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_segment_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_send_docusign_c": {"name": "analytics___salesforce_stg__contact_send_docusign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_send_docusign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_send_to_growth_c": {"name": "analytics___salesforce_stg__contact_send_to_growth_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_send_to_growth_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_similarweb_traffic_new_c": {"name": "analytics___salesforce_stg__contact_similarweb_traffic_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_similarweb_traffic_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_situation_c": {"name": "analytics___salesforce_stg__contact_situation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_situation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_skype_id_c": {"name": "analytics___salesforce_stg__contact_skype_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_skype_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_social_traffic_share_c": {"name": "analytics___salesforce_stg__contact_social_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_social_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_state_region_c": {"name": "analytics___salesforce_stg__contact_state_region_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_state_region_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_subscribed_to_blog_c": {"name": "analytics___salesforce_stg__contact_subscribed_to_blog_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_subscribed_to_blog_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_subscription_billing_provider_c": {"name": "analytics___salesforce_stg__contact_subscription_billing_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_subscription_billing_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_super_csm_generic_account_c": {"name": "analytics___salesforce_stg__contact_super_csm_generic_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_super_csm_generic_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_swell_assignee_c": {"name": "analytics___salesforce_stg__contact_swell_assignee_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_swell_assignee_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_swell_engagement_c": {"name": "analytics___salesforce_stg__contact_swell_engagement_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_swell_engagement_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_swell_package_c": {"name": "analytics___salesforce_stg__contact_swell_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_swell_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_systemmodstamp": {"name": "analytics___salesforce_stg__contact_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_talk_to_csm_c": {"name": "analytics___salesforce_stg__contact_talk_to_csm_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_talk_to_csm_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_third_best_country_c": {"name": "analytics___salesforce_stg__contact_third_best_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_third_best_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_time_at_company_c": {"name": "analytics___salesforce_stg__contact_time_at_company_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_time_at_company_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_time_in_current_role_c": {"name": "analytics___salesforce_stg__contact_time_in_current_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_time_in_current_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_title": {"name": "analytics___salesforce_stg__contact_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_top_country_c": {"name": "analytics___salesforce_stg__contact_top_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_top_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_top_of_funnel_sessions_c": {"name": "analytics___salesforce_stg__contact_top_of_funnel_sessions_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_top_of_funnel_sessions_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_top_of_funnel_touches_c": {"name": "analytics___salesforce_stg__contact_top_of_funnel_touches_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_top_of_funnel_touches_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_top_organic_keyword_c": {"name": "analytics___salesforce_stg__contact_top_organic_keyword_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_top_organic_keyword_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_top_paid_keyword_c": {"name": "analytics___salesforce_stg__contact_top_paid_keyword_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_top_paid_keyword_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_topics_to_avoid_c": {"name": "analytics___salesforce_stg__contact_topics_to_avoid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_topics_to_avoid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_upsolver_schema_version": {"name": "analytics___salesforce_stg__contact_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_user_id_c": {"name": "analytics___salesforce_stg__contact_user_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_user_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_verify_as_primary_c": {"name": "analytics___salesforce_stg__contact_verify_as_primary_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_verify_as_primary_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_was_portal_inactive_c": {"name": "analytics___salesforce_stg__contact_was_portal_inactive_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_was_portal_inactive_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_wrong_number_indication_date_c": {"name": "analytics___salesforce_stg__contact_wrong_number_indication_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_wrong_number_indication_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__contact_zuora_id_c": {"name": "analytics___salesforce_stg__contact_zuora_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__contact/analytics___salesforce_stg__contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__contact_zuora_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c": {"name": "analytics___salesforce_stg__cs_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c", "block_contents": "A view of cs_lead object's non-formula fields, based on rivery's incremental salesforce river"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c__rivery_last_update": {"name": "analytics___salesforce_stg__cs_lead_c__rivery_last_update", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c__rivery_last_update", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c__rivery_river_id": {"name": "analytics___salesforce_stg__cs_lead_c__rivery_river_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c__rivery_river_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c__rivery_run_id": {"name": "analytics___salesforce_stg__cs_lead_c__rivery_run_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c__rivery_run_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_account_c": {"name": "analytics___salesforce_stg__cs_lead_c_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_account_cs_segment_c": {"name": "analytics___salesforce_stg__cs_lead_c_account_cs_segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_account_cs_segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_account_name_c": {"name": "analytics___salesforce_stg__cs_lead_c_account_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_account_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_account_org_key_c": {"name": "analytics___salesforce_stg__cs_lead_c_account_org_key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_account_org_key_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_all_relevant_products_c": {"name": "analytics___salesforce_stg__cs_lead_c_all_relevant_products_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_all_relevant_products_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_am_notes_c": {"name": "analytics___salesforce_stg__cs_lead_c_am_notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_am_notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_am_rejection_reason_c": {"name": "analytics___salesforce_stg__cs_lead_c_am_rejection_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_am_rejection_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_another_open_csl_c": {"name": "analytics___salesforce_stg__cs_lead_c_another_open_csl_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_another_open_csl_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_assignment_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_assignment_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_assignment_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_average_monthly_orders_last_3_months_c": {"name": "analytics___salesforce_stg__cs_lead_c_average_monthly_orders_last_3_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_average_monthly_orders_last_3_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_closest_renewal_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_closest_renewal_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_closest_renewal_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_contains_vms_mockup_c": {"name": "analytics___salesforce_stg__cs_lead_c_contains_vms_mockup_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_contains_vms_mockup_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_converted_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_converted_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_converted_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_createdbyid": {"name": "analytics___salesforce_stg__cs_lead_c_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_createddate": {"name": "analytics___salesforce_stg__cs_lead_c_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_cs_lead_owner_role_c": {"name": "analytics___salesforce_stg__cs_lead_c_cs_lead_owner_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_cs_lead_owner_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_csl_owner_manager_c": {"name": "analytics___salesforce_stg__cs_lead_c_csl_owner_manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_csl_owner_manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_csl_score_c": {"name": "analytics___salesforce_stg__cs_lead_c_csl_score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_csl_score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_csl_source_c": {"name": "analytics___salesforce_stg__cs_lead_c_csl_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_csl_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_c": {"name": "analytics___salesforce_stg__cs_lead_c_csm_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_comments_c": {"name": "analytics___salesforce_stg__cs_lead_c_csm_comments_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_comments_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_email_c": {"name": "analytics___salesforce_stg__cs_lead_c_csm_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_first_name_c": {"name": "analytics___salesforce_stg__cs_lead_c_csm_first_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_first_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_is_current_user_c": {"name": "analytics___salesforce_stg__cs_lead_c_csm_is_current_user_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_is_current_user_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_manager_c": {"name": "analytics___salesforce_stg__cs_lead_c_csm_manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_office_c": {"name": "analytics___salesforce_stg__cs_lead_c_csm_office_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_office_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_rejection_reason_c": {"name": "analytics___salesforce_stg__cs_lead_c_csm_rejection_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_csm_rejection_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_currencyisocode": {"name": "analytics___salesforce_stg__cs_lead_c_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_days_to_convert_c": {"name": "analytics___salesforce_stg__cs_lead_c_days_to_convert_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_days_to_convert_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_days_to_lost_c": {"name": "analytics___salesforce_stg__cs_lead_c_days_to_lost_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_days_to_lost_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_days_to_nurture_c": {"name": "analytics___salesforce_stg__cs_lead_c_days_to_nurture_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_days_to_nurture_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_demo_scheduled_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_demo_scheduled_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_demo_scheduled_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_engaged_with_campaign_c": {"name": "analytics___salesforce_stg__cs_lead_c_engaged_with_campaign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_engaged_with_campaign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_follow_up_in_c_c": {"name": "analytics___salesforce_stg__cs_lead_c_follow_up_in_c_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_follow_up_in_c_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_follow_up_in_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_follow_up_in_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_follow_up_in_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_follow_up_in_helper_c": {"name": "analytics___salesforce_stg__cs_lead_c_follow_up_in_helper_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_follow_up_in_helper_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_funding_c": {"name": "analytics___salesforce_stg__cs_lead_c_funding_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_funding_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_id": {"name": "analytics___salesforce_stg__cs_lead_c_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_in_progress_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_in_progress_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_in_progress_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_increase_mockup_priority_c": {"name": "analytics___salesforce_stg__cs_lead_c_increase_mockup_priority_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_increase_mockup_priority_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_industry_c": {"name": "analytics___salesforce_stg__cs_lead_c_industry_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_industry_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_initiate_c": {"name": "analytics___salesforce_stg__cs_lead_c_initiate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_initiate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_intro_sent_at_c": {"name": "analytics___salesforce_stg__cs_lead_c_intro_sent_at_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_intro_sent_at_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_isdeleted": {"name": "analytics___salesforce_stg__cs_lead_c_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_last_30_days_orders_c": {"name": "analytics___salesforce_stg__cs_lead_c_last_30_days_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_last_30_days_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_last_avg_3_months_orders_swell_c": {"name": "analytics___salesforce_stg__cs_lead_c_last_avg_3_months_orders_swell_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_last_avg_3_months_orders_swell_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_lastactivitydate": {"name": "analytics___salesforce_stg__cs_lead_c_lastactivitydate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_lastactivitydate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_lastmodifiedbyid": {"name": "analytics___salesforce_stg__cs_lead_c_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_lastmodifieddate": {"name": "analytics___salesforce_stg__cs_lead_c_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_lastreferenceddate": {"name": "analytics___salesforce_stg__cs_lead_c_lastreferenceddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_lastreferenceddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_lastvieweddate": {"name": "analytics___salesforce_stg__cs_lead_c_lastvieweddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_lastvieweddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_lead_warmth_c": {"name": "analytics___salesforce_stg__cs_lead_c_lead_warmth_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_lead_warmth_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_lost_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_lost_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_lost_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_lost_reason_c": {"name": "analytics___salesforce_stg__cs_lead_c_lost_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_lost_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_main_partner_manager_c": {"name": "analytics___salesforce_stg__cs_lead_c_main_partner_manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_main_partner_manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_mockup_priority_c": {"name": "analytics___salesforce_stg__cs_lead_c_mockup_priority_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_mockup_priority_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_monthly_tech_spend_c": {"name": "analytics___salesforce_stg__cs_lead_c_monthly_tech_spend_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_monthly_tech_spend_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_mql_notification_engagement_type_c": {"name": "analytics___salesforce_stg__cs_lead_c_mql_notification_engagement_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_mql_notification_engagement_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_mql_notification_reason_c": {"name": "analytics___salesforce_stg__cs_lead_c_mql_notification_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_mql_notification_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_name": {"name": "analytics___salesforce_stg__cs_lead_c_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_number_of_employees_c": {"name": "analytics___salesforce_stg__cs_lead_c_number_of_employees_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_number_of_employees_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_nurturing_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_nurturing_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_nurturing_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_nurturing_reason_c": {"name": "analytics___salesforce_stg__cs_lead_c_nurturing_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_nurturing_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_on_hold_due_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_on_hold_due_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_on_hold_due_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_original_account_cs_segment_c": {"name": "analytics___salesforce_stg__cs_lead_c_original_account_cs_segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_original_account_cs_segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_owner_email_c": {"name": "analytics___salesforce_stg__cs_lead_c_owner_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_owner_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_owner_first_name_c": {"name": "analytics___salesforce_stg__cs_lead_c_owner_first_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_owner_first_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_ownerid": {"name": "analytics___salesforce_stg__cs_lead_c_ownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_ownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_package_c": {"name": "analytics___salesforce_stg__cs_lead_c_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_partner_contact_c": {"name": "analytics___salesforce_stg__cs_lead_c_partner_contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_partner_contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_partner_manager_c": {"name": "analytics___salesforce_stg__cs_lead_c_partner_manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_partner_manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_partner_name_c": {"name": "analytics___salesforce_stg__cs_lead_c_partner_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_partner_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_partner_referral_c": {"name": "analytics___salesforce_stg__cs_lead_c_partner_referral_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_partner_referral_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_platform_c": {"name": "analytics___salesforce_stg__cs_lead_c_platform_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_platform_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_potential_acv_c": {"name": "analytics___salesforce_stg__cs_lead_c_potential_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_potential_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_primary_csm_at_time_of_csl_creation_c": {"name": "analytics___salesforce_stg__cs_lead_c_primary_csm_at_time_of_csl_creation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_primary_csm_at_time_of_csl_creation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_primary_csm_email_routing_notification_c": {"name": "analytics___salesforce_stg__cs_lead_c_primary_csm_email_routing_notification_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_primary_csm_email_routing_notification_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_primary_csm_team_at_csl_creation_c": {"name": "analytics___salesforce_stg__cs_lead_c_primary_csm_team_at_csl_creation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_primary_csm_team_at_csl_creation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_product_line_c": {"name": "analytics___salesforce_stg__cs_lead_c_product_line_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_product_line_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_product_source_location_c": {"name": "analytics___salesforce_stg__cs_lead_c_product_source_location_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_product_source_location_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_qualify_csl_c": {"name": "analytics___salesforce_stg__cs_lead_c_qualify_csl_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_qualify_csl_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_referral_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_referral_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_referral_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_referral_type_c": {"name": "analytics___salesforce_stg__cs_lead_c_referral_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_referral_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_reject_csl_c": {"name": "analytics___salesforce_stg__cs_lead_c_reject_csl_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_reject_csl_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_rejected_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_rejected_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_rejected_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_related_contact_c": {"name": "analytics___salesforce_stg__cs_lead_c_related_contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_related_contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_related_opp_closed_c": {"name": "analytics___salesforce_stg__cs_lead_c_related_opp_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_related_opp_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_related_opportunity_c": {"name": "analytics___salesforce_stg__cs_lead_c_related_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_related_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_related_opportunity_stage_c": {"name": "analytics___salesforce_stg__cs_lead_c_related_opportunity_stage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_related_opportunity_stage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_related_store_c": {"name": "analytics___salesforce_stg__cs_lead_c_related_store_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_related_store_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_relevant_partner_manager_c": {"name": "analytics___salesforce_stg__cs_lead_c_relevant_partner_manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_relevant_partner_manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_relevant_partner_manager_email_c": {"name": "analytics___salesforce_stg__cs_lead_c_relevant_partner_manager_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_relevant_partner_manager_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_request_csm_intro_c": {"name": "analytics___salesforce_stg__cs_lead_c_request_csm_intro_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_request_csm_intro_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_sdr_owner_c": {"name": "analytics___salesforce_stg__cs_lead_c_sdr_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_sdr_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_send_csm_notification_c": {"name": "analytics___salesforce_stg__cs_lead_c_send_csm_notification_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_send_csm_notification_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_send_custom_email_c": {"name": "analytics___salesforce_stg__cs_lead_c_send_custom_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_send_custom_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_send_intro_email_c": {"name": "analytics___salesforce_stg__cs_lead_c_send_intro_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_send_intro_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_snoozed_due_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_snoozed_due_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_snoozed_due_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_snoozed_in_c": {"name": "analytics___salesforce_stg__cs_lead_c_snoozed_in_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_snoozed_in_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_status_c": {"name": "analytics___salesforce_stg__cs_lead_c_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_status_last_updated_c": {"name": "analytics___salesforce_stg__cs_lead_c_status_last_updated_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_status_last_updated_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_subscription_seller_csl_c": {"name": "analytics___salesforce_stg__cs_lead_c_subscription_seller_csl_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_subscription_seller_csl_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_swell_csm_manager_c": {"name": "analytics___salesforce_stg__cs_lead_c_swell_csm_manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_swell_csm_manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_swell_renewal_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_swell_renewal_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_swell_renewal_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_systemmodstamp": {"name": "analytics___salesforce_stg__cs_lead_c_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_temp_product_holder_c": {"name": "analytics___salesforce_stg__cs_lead_c_temp_product_holder_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_temp_product_holder_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_test_c": {"name": "analytics___salesforce_stg__cs_lead_c_test_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_test_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_top_account_c": {"name": "analytics___salesforce_stg__cs_lead_c_top_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_top_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_total_acv_c": {"name": "analytics___salesforce_stg__cs_lead_c_total_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_total_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_total_open_csls_under_account_c": {"name": "analytics___salesforce_stg__cs_lead_c_total_open_csls_under_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_total_open_csls_under_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_ugc_csm_manager_c": {"name": "analytics___salesforce_stg__cs_lead_c_ugc_csm_manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_ugc_csm_manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_ugc_renewal_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_ugc_renewal_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_ugc_renewal_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_upsell_from_opportunity_c": {"name": "analytics___salesforce_stg__cs_lead_c_upsell_from_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_upsell_from_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_usage_seller_csl_c": {"name": "analytics___salesforce_stg__cs_lead_c_usage_seller_csl_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_usage_seller_csl_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_vms_mockups_sent_c": {"name": "analytics___salesforce_stg__cs_lead_c_vms_mockups_sent_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_vms_mockups_sent_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_vms_mockups_sent_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_vms_mockups_sent_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c/analytics___salesforce_stg__cs_lead_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_vms_mockups_sent_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full": {"name": "analytics___salesforce_stg__cs_lead_c_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full", "block_contents": "A view of cs_lead object's formula fields, based on rivery's full salesforce river"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full__rivery_last_update": {"name": "analytics___salesforce_stg__cs_lead_c_full__rivery_last_update", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full__rivery_last_update", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full__rivery_river_id": {"name": "analytics___salesforce_stg__cs_lead_c_full__rivery_river_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full__rivery_river_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full__rivery_run_id": {"name": "analytics___salesforce_stg__cs_lead_c_full__rivery_run_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full__rivery_run_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_account_cs_segment_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_account_cs_segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_account_cs_segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_account_name_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_account_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_account_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_account_org_key_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_account_org_key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_account_org_key_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_all_relevant_products_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_all_relevant_products_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_all_relevant_products_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_closest_renewal_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_closest_renewal_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_closest_renewal_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_csl_owner_manager_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_csl_owner_manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_csl_owner_manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_csm_email_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_csm_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_csm_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_csm_first_name_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_csm_first_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_csm_first_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_csm_manager_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_csm_manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_csm_manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_csm_office_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_csm_office_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_csm_office_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_days_to_convert_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_days_to_convert_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_days_to_convert_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_days_to_lost_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_days_to_lost_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_days_to_lost_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_days_to_nurture_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_days_to_nurture_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_days_to_nurture_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_follow_up_in_date_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_follow_up_in_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_follow_up_in_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_funding_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_funding_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_funding_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_id": {"name": "analytics___salesforce_stg__cs_lead_c_full_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_industry_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_industry_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_industry_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_last_30_days_orders_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_last_30_days_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_last_30_days_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_monthly_tech_spend_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_monthly_tech_spend_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_monthly_tech_spend_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_number_of_employees_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_number_of_employees_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_number_of_employees_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_owner_email_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_owner_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_owner_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_owner_first_name_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_owner_first_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_owner_first_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_platform_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_platform_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_platform_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_primary_csm_team_at_csl_creation_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_primary_csm_team_at_csl_creation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_primary_csm_team_at_csl_creation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_product_source_location_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_product_source_location_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_product_source_location_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_related_opp_closed_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_related_opp_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_related_opp_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_related_opportunity_stage_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_related_opportunity_stage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_related_opportunity_stage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_systemmodstamp": {"name": "analytics___salesforce_stg__cs_lead_c_full_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_temp_product_holder_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_temp_product_holder_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_temp_product_holder_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_top_account_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_top_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_top_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_total_acv_c": {"name": "analytics___salesforce_stg__cs_lead_c_full_total_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__cs_lead_c_full/analytics___salesforce_stg__cs_lead_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__cs_lead_c_full_total_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c__sdc_batched_at": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c__sdc_extracted_at": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c__sdc_received_at": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c__sdc_sequence": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c__sdc_table_version": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_account_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_action_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_action_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_action_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_case_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_case_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_case_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_changed_field_name_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_changed_field_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_changed_field_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_count_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_createdbyid": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_createddate": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_currencyisocode": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_delivery_services_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_delivery_services_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_delivery_services_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_end_date_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_end_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_end_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_error_message_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_error_message_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_error_message_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_id": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_isdeleted": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_lastmodifiedbyid": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_lastmodifieddate": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_name": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_new_value_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_new_value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_new_value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_object_name_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_object_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_object_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_old_value_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_old_value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_old_value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_on_creation_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_on_creation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_on_creation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_onboarding_project_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_onboarding_project_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_onboarding_project_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_opportunity_prediction_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_opportunity_prediction_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_opportunity_prediction_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_ownerid": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_ownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_ownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_parent_object_id_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_parent_object_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_parent_object_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_parent_record_id_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_parent_record_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_parent_record_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_previous_record_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_previous_record_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_previous_record_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_processing_time": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_record_count_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_record_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_record_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_spend_time_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_spend_time_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_spend_time_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_spend_time_number_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_spend_time_number_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_spend_time_number_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_start_date_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_start_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_start_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_systemmodstamp": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_ticket_c": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_ticket_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_ticket_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_upsolver_schema_version": {"name": "analytics___salesforce_stg__custom_field_history_tracking_c_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__custom_field_history_tracking_c/analytics___salesforce_stg__custom_field_history_tracking_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_tracking_c_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate": {"name": "analytics___salesforce_stg__datedconversionrate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate__sdc_batched_at": {"name": "analytics___salesforce_stg__datedconversionrate__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate__sdc_extracted_at": {"name": "analytics___salesforce_stg__datedconversionrate__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate__sdc_received_at": {"name": "analytics___salesforce_stg__datedconversionrate__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate__sdc_sequence": {"name": "analytics___salesforce_stg__datedconversionrate__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate__sdc_table_version": {"name": "analytics___salesforce_stg__datedconversionrate__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_conversionrate": {"name": "analytics___salesforce_stg__datedconversionrate_conversionrate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_conversionrate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_createdbyid": {"name": "analytics___salesforce_stg__datedconversionrate_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_createddate": {"name": "analytics___salesforce_stg__datedconversionrate_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_d": {"name": "analytics___salesforce_stg__datedconversionrate_d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_d", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_id": {"name": "analytics___salesforce_stg__datedconversionrate_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_isocode": {"name": "analytics___salesforce_stg__datedconversionrate_isocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_isocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_lastmodifiedbyid": {"name": "analytics___salesforce_stg__datedconversionrate_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_lastmodifieddate": {"name": "analytics___salesforce_stg__datedconversionrate_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_nextstartdate": {"name": "analytics___salesforce_stg__datedconversionrate_nextstartdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_nextstartdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_processing_time": {"name": "analytics___salesforce_stg__datedconversionrate_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_startdate": {"name": "analytics___salesforce_stg__datedconversionrate_startdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_startdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_systemmodstamp": {"name": "analytics___salesforce_stg__datedconversionrate_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__datedconversionrate_upsolver_schema_version": {"name": "analytics___salesforce_stg__datedconversionrate_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__datedconversionrate/analytics___salesforce_stg__datedconversionrate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__datedconversionrate_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c": {"name": "analytics___salesforce_stg__deal_summary_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c__rivery_last_update": {"name": "analytics___salesforce_stg__deal_summary_new_c__rivery_last_update", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c__rivery_last_update", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c__rivery_river_id": {"name": "analytics___salesforce_stg__deal_summary_new_c__rivery_river_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c__rivery_river_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c__rivery_run_id": {"name": "analytics___salesforce_stg__deal_summary_new_c__rivery_run_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c__rivery_run_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_copy_of_current_acv_for_retention_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_copy_of_current_acv_for_retention_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_copy_of_current_acv_for_retention_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_copy_of_previous_acv_usd_calculated_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_copy_of_previous_acv_usd_calculated_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_copy_of_previous_acv_usd_calculated_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_createdbyid": {"name": "analytics___salesforce_stg__deal_summary_new_c_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_createddate": {"name": "analytics___salesforce_stg__deal_summary_new_c_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_currencyisocode": {"name": "analytics___salesforce_stg__deal_summary_new_c_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_current_acv_controlling_for_conversion_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_current_acv_controlling_for_conversion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_current_acv_controlling_for_conversion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_current_acv_for_retention_original_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_current_acv_for_retention_original_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_current_acv_for_retention_original_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_current_acv_original_currency_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_current_acv_original_currency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_current_acv_original_currency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_custom_earr_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_custom_earr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_custom_earr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_deletion_date_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_deletion_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_deletion_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_earr_usd_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_earr_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_earr_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_end_date_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_end_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_end_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_id": {"name": "analytics___salesforce_stg__deal_summary_new_c_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_isdeleted": {"name": "analytics___salesforce_stg__deal_summary_new_c_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_lastactivitydate": {"name": "analytics___salesforce_stg__deal_summary_new_c_lastactivitydate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_lastactivitydate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_lastmodifiedbyid": {"name": "analytics___salesforce_stg__deal_summary_new_c_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_lastmodifieddate": {"name": "analytics___salesforce_stg__deal_summary_new_c_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_lastreferenceddate": {"name": "analytics___salesforce_stg__deal_summary_new_c_lastreferenceddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_lastreferenceddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_lastvieweddate": {"name": "analytics___salesforce_stg__deal_summary_new_c_lastvieweddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_lastvieweddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_latest_ds_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_latest_ds_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_latest_ds_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_name": {"name": "analytics___salesforce_stg__deal_summary_new_c_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_oli_product_code_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_oli_product_code_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_oli_product_code_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_opportunity_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_opportunity_product_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_opportunity_product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_opportunity_product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_override_current_acv_usd_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_override_current_acv_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_override_current_acv_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_override_previous_acv_usd_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_override_previous_acv_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_override_previous_acv_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_owner_at_the_time_of_deletion_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_owner_at_the_time_of_deletion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_owner_at_the_time_of_deletion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_owner_role_at_the_time_of_deletion_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_owner_role_at_the_time_of_deletion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_owner_role_at_the_time_of_deletion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_p_line_owner_role_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_p_line_owner_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_p_line_owner_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_package_product_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_package_product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_package_product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_pipeline_usd_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_pipeline_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_pipeline_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_previous_acv_original_currency_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_previous_acv_original_currency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_previous_acv_original_currency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_previous_acv_override_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_previous_acv_override_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_previous_acv_override_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_product_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_product_family_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_product_family_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_product_family_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_product_line_close_date_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_product_line_close_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_product_line_close_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_renewal_from_opportunity_line_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_renewal_from_opportunity_line_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_renewal_from_opportunity_line_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_start_date_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_start_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_start_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_status_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_systemmodstamp": {"name": "analytics___salesforce_stg__deal_summary_new_c_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c/analytics___salesforce_stg__deal_summary_new_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full": {"name": "analytics___salesforce_stg__deal_summary_new_c_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_CreatedById": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_CreatedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_CreatedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_CreatedDate": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_CreatedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_CreatedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_CurrencyIsoCode": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_CurrencyIsoCode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_CurrencyIsoCode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_ACV_USD_Calculated_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Current_ACV_USD_Calculated_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_ACV_USD_Calculated_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_ACV_USD_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Current_ACV_USD_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_ACV_USD_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_For_Retention_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_For_Retention_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_For_Retention_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_For_Retention_original_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_For_Retention_original_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_For_Retention_original_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_Original_Currency_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_Original_Currency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_Original_Currency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Current_Acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Deal_type_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Deal_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Deal_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Id": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_IsDeleted": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_IsDeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_IsDeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_LastModifiedById": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_LastModifiedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_LastModifiedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_LastModifiedDate": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_LastModifiedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_LastModifiedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Line_Delta_ACV_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Line_Delta_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Line_Delta_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Line_Delta_ACV_for_Retention_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Line_Delta_ACV_for_Retention_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Line_Delta_ACV_for_Retention_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Opportunity_Product_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Opportunity_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Opportunity_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Opportunity_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Package_Product_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Package_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Package_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_From_Opportunity_Product_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_From_Opportunity_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_From_Opportunity_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_USD_Calculated_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_USD_Calculated_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_USD_Calculated_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_USD_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_USD_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_USD_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_original_currency_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_original_currency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Previous_ACV_original_currency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Product_Family_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Product_Family_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Product_Family_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Product_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Renewal_From_Opportunity_Line_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Renewal_From_Opportunity_Line_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Renewal_From_Opportunity_Line_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Status_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_Status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_Status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_SystemModstamp": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_SystemModstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_SystemModstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__rivery_last_update": {"name": "analytics___salesforce_stg__deal_summary_new_c_full__rivery_last_update", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__rivery_last_update", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__rivery_river_id": {"name": "analytics___salesforce_stg__deal_summary_new_c_full__rivery_river_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__rivery_river_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__rivery_run_id": {"name": "analytics___salesforce_stg__deal_summary_new_c_full__rivery_run_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__rivery_run_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__sdc_batched_at": {"name": "analytics___salesforce_stg__deal_summary_new_c_full__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__sdc_extracted_at": {"name": "analytics___salesforce_stg__deal_summary_new_c_full__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__sdc_received_at": {"name": "analytics___salesforce_stg__deal_summary_new_c_full__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__sdc_sequence": {"name": "analytics___salesforce_stg__deal_summary_new_c_full__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__sdc_table_version": {"name": "analytics___salesforce_stg__deal_summary_new_c_full__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_createdbyid": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_createddate": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_currencyisocode": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_current_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_controlling_for_conversion_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_current_acv_controlling_for_conversion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_controlling_for_conversion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_for_retention_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_current_acv_for_retention_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_for_retention_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_for_retention_original_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_current_acv_for_retention_original_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_for_retention_original_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_original_currency_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_current_acv_original_currency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_original_currency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_usd_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_current_acv_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_usd_calculated_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_current_acv_usd_calculated_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_current_acv_usd_calculated_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_custom_earr_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_custom_earr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_custom_earr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_deal_type_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_deal_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_deal_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_earr_usd_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_earr_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_earr_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_id": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_isdeleted": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_lastmodifiedbyid": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_lastmodifieddate": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_latest_ds_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_latest_ds_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_latest_ds_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_line_delta_acv_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_line_delta_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_line_delta_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_line_delta_acv_for_retention_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_line_delta_acv_for_retention_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_line_delta_acv_for_retention_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_opportunity_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_opportunity_product_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_opportunity_product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_opportunity_product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_package_product_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_package_product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_package_product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_pipeline_usd_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_pipeline_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_pipeline_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_from_opportunity_product_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_from_opportunity_product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_from_opportunity_product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_original_currency_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_original_currency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_original_currency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_usd_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_usd_calculated_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_usd_calculated_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_previous_acv_usd_calculated_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_product_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_product_family_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_product_family_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_product_family_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_renewal_from_opportunity_line_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_renewal_from_opportunity_line_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_renewal_from_opportunity_line_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_rn": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_rn", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_rn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_status_c": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_systemmodstamp": {"name": "analytics___salesforce_stg__deal_summary_new_c_full_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__deal_summary_new_c_full/analytics___salesforce_stg__deal_summary_new_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__deal_summary_new_c_full_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping", "block_contents": "Temporary pointer to the modeled table dim_sf_campaign_member_mapping | Granularity & Primary Key: campaign_member_mapping_id"}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campagin_member_added_at": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_campagin_member_added_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campagin_member_added_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_created_at": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_created_by_sf_user_gk": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_created_by_sf_user_gk", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_created_by_sf_user_gk", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_created_by_sf_user_id": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_created_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_id": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_id", "block_contents": "PK"}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_updated_at": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_updated_by_sf_user_gk": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_updated_by_sf_user_gk", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_updated_by_sf_user_gk", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_updated_by_sf_user_id": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_updated_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_mapping_updated_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_status": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_campaign_member_status", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_dwh_updated_at": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_first_responded_by_member_date": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_first_responded_by_member_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_first_responded_by_member_date", "block_contents": "date when the campaign member first responded"}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_is_deleted": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_is_responded_by_member": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_is_responded_by_member", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_is_responded_by_member", "block_contents": "indicates if the campaign member has responded"}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_sf_campaign_id": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_sf_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_sf_campaign_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_who_id": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_who_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_who_id", "block_contents": "salesforce who object (lead_id/contact_id)"}, "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_who_type": {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping_who_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_campaign_member_mapping/analytics___salesforce_stg__dim_sf_campaign_member_mapping.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping_who_type", "block_contents": "salesforce who object type (Lead/Contact)"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd": {"name": "analytics___salesforce_stg__dim_sf_users_scd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd", "block_contents": "Temporary pointer to the modeled table dim_sf_suers_scd. | Granularity & Primary Key: sf_user_id , from_time"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_csm_team": {"name": "analytics___salesforce_stg__dim_sf_users_scd_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_csm_team", "block_contents": "csm team"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_dwh_created_at": {"name": "analytics___salesforce_stg__dim_sf_users_scd_dwh_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_dwh_created_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_from_time": {"name": "analytics___salesforce_stg__dim_sf_users_scd_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_from_time", "block_contents": "user version range start timestamp"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_exclude_from_tracking": {"name": "analytics___salesforce_stg__dim_sf_users_scd_is_exclude_from_tracking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_exclude_from_tracking", "block_contents": "indicator for exclude from tracking: 0/1"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_integration": {"name": "analytics___salesforce_stg__dim_sf_users_scd_is_integration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_integration", "block_contents": "indicator for integration: 0/1"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_marketing_activity_user": {"name": "analytics___salesforce_stg__dim_sf_users_scd_is_marketing_activity_user", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_marketing_activity_user", "block_contents": "indicator for marketing activity: 0/1"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_partner_role": {"name": "analytics___salesforce_stg__dim_sf_users_scd_is_partner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_partner_role", "block_contents": "indicator for partner role: 0/1"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_queue": {"name": "analytics___salesforce_stg__dim_sf_users_scd_is_queue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_queue", "block_contents": "indicator for queue: 0/1"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_sales_rep_role": {"name": "analytics___salesforce_stg__dim_sf_users_scd_is_sales_rep_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_sales_rep_role", "block_contents": "indicator for sales role: 0/1"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_super_csm": {"name": "analytics___salesforce_stg__dim_sf_users_scd_is_super_csm", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_is_super_csm", "block_contents": "indicator for super csm: 0/1"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_manager_full_name": {"name": "analytics___salesforce_stg__dim_sf_users_scd_manager_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_manager_full_name", "block_contents": "user's manager full name"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_manager_sf_user_id": {"name": "analytics___salesforce_stg__dim_sf_users_scd_manager_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_manager_sf_user_id", "block_contents": "user's manager unique identifier of salesforce user"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_queue_type": {"name": "analytics___salesforce_stg__dim_sf_users_scd_queue_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_queue_type", "block_contents": "queue type: Nurturing, Re-Engaged, etc."}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_scd_cur_ind": {"name": "analytics___salesforce_stg__dim_sf_users_scd_scd_cur_ind", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_scd_cur_ind", "block_contents": "indicator for user current row: 0/1"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_second_level_manager_full_name": {"name": "analytics___salesforce_stg__dim_sf_users_scd_second_level_manager_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_second_level_manager_full_name", "block_contents": "user's second level manager full name"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_second_level_manager_sf_user_id": {"name": "analytics___salesforce_stg__dim_sf_users_scd_second_level_manager_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_second_level_manager_sf_user_id", "block_contents": "user's second level manager unique identifier of salesforce user"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_alias": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_alias", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_alias", "block_contents": "user alias name"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_created_at": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_created_by_sf_user_id": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_created_by_sf_user_id", "block_contents": "the created user unique identifier"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_email": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_email", "block_contents": "user's email"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_first_name": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_first_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_first_name", "block_contents": "user first name"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_full_name": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_full_name", "block_contents": "user full name"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_gk": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_gk", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_gk", "block_contents": "record ID counter for a user"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_id": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_id", "block_contents": "unique identifier of salesforce user"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_is_active": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_is_active", "block_contents": "indicator for active user: 0/1"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_last_login_date": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_last_login_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_last_login_date", "block_contents": "last login date"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_last_name": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_last_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_last_name", "block_contents": "user last name"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_location": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_location", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_location", "block_contents": "user location: America/New_York, Asia/Jerusalem, etc."}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_name": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_name", "block_contents": "salesforce user name"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_role": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_role", "block_contents": "user role"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_role_id": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_role_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_role_id", "block_contents": "user role id"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_title": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_title", "block_contents": "user title: Manager, Managing Partner, etc."}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_updated_at": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_updated_at", "block_contents": "user modification timestamp"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_updated_by_sf_user_id": {"name": "analytics___salesforce_stg__dim_sf_users_scd_sf_user_updated_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_sf_user_updated_by_sf_user_id", "block_contents": "salesforce user unique identifier"}, "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_to_time": {"name": "analytics___salesforce_stg__dim_sf_users_scd_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__dim_sf_users_scd/analytics___salesforce_stg__dim_sf_users_scd.md", "unique_id": "doc.yoda.analytics___salesforce_stg__dim_sf_users_scd_to_time", "block_contents": "user version range end timestamp"}, "doc.yoda.analytics___salesforce_stg__event": {"name": "analytics___salesforce_stg__event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__event__rivery_last_update": {"name": "analytics___salesforce_stg__event__rivery_last_update", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event__rivery_last_update", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event__rivery_river_id": {"name": "analytics___salesforce_stg__event__rivery_river_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event__rivery_river_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event__rivery_run_id": {"name": "analytics___salesforce_stg__event__rivery_run_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event__rivery_run_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_accountid": {"name": "analytics___salesforce_stg__event_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_activity_id_18_digit_c": {"name": "analytics___salesforce_stg__event_activity_id_18_digit_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_activity_id_18_digit_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_activitydate": {"name": "analytics___salesforce_stg__event_activitydate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_activitydate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_activitydatetime": {"name": "analytics___salesforce_stg__event_activitydatetime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_activitydatetime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_ae_email_c": {"name": "analytics___salesforce_stg__event_ae_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_ae_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_agency_event_stage_c": {"name": "analytics___salesforce_stg__event_agency_event_stage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_agency_event_stage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_assigned_to_role_c": {"name": "analytics___salesforce_stg__event_assigned_to_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_assigned_to_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_call_sentiment_c": {"name": "analytics___salesforce_stg__event_call_sentiment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_call_sentiment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_call_status_c": {"name": "analytics___salesforce_stg__event_call_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_call_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_canceled_cp_c": {"name": "analytics___salesforce_stg__event_canceled_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_canceled_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_created_by_flow_c": {"name": "analytics___salesforce_stg__event_created_by_flow_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_created_by_flow_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_created_by_me_c": {"name": "analytics___salesforce_stg__event_created_by_me_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_created_by_me_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_created_by_role_c": {"name": "analytics___salesforce_stg__event_created_by_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_created_by_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_createdbyid": {"name": "analytics___salesforce_stg__event_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_createddate": {"name": "analytics___salesforce_stg__event_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_currencyisocode": {"name": "analytics___salesforce_stg__event_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_del_yeswaretemplatenames_c": {"name": "analytics___salesforce_stg__event_del_yeswaretemplatenames_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_del_yeswaretemplatenames_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_demo_approval_status_c": {"name": "analytics___salesforce_stg__event_demo_approval_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_demo_approval_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_demo_cancellation_reason_c": {"name": "analytics___salesforce_stg__event_demo_cancellation_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_demo_cancellation_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_demo_status_c": {"name": "analytics___salesforce_stg__event_demo_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_demo_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_description": {"name": "analytics___salesforce_stg__event_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_designated_assignee_cp_c": {"name": "analytics___salesforce_stg__event_designated_assignee_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_designated_assignee_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_durationinminutes": {"name": "analytics___salesforce_stg__event_durationinminutes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_durationinminutes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_enddate": {"name": "analytics___salesforce_stg__event_enddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_enddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_enddatetime": {"name": "analytics___salesforce_stg__event_enddatetime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_enddatetime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_eventsubtype": {"name": "analytics___salesforce_stg__event_eventsubtype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_eventsubtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_gong_gong_selected_process_c": {"name": "analytics___salesforce_stg__event_gong_gong_selected_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_gong_gong_selected_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_groupeventtype": {"name": "analytics___salesforce_stg__event_groupeventtype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_groupeventtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_id": {"name": "analytics___salesforce_stg__event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_is_task_from_external_system_c": {"name": "analytics___salesforce_stg__event_is_task_from_external_system_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_is_task_from_external_system_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_isalldayevent": {"name": "analytics___salesforce_stg__event_isalldayevent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_isalldayevent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_isarchived": {"name": "analytics___salesforce_stg__event_isarchived", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_isarchived", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_ischild": {"name": "analytics___salesforce_stg__event_ischild", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_ischild", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_isdeleted": {"name": "analytics___salesforce_stg__event_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_isgroupevent": {"name": "analytics___salesforce_stg__event_isgroupevent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_isgroupevent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_isprivate": {"name": "analytics___salesforce_stg__event_isprivate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_isprivate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_isrecurrence": {"name": "analytics___salesforce_stg__event_isrecurrence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_isrecurrence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_isrecurrence2": {"name": "analytics___salesforce_stg__event_isrecurrence2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_isrecurrence2", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_isrecurrence2exception": {"name": "analytics___salesforce_stg__event_isrecurrence2exception", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_isrecurrence2exception", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_isrecurrence2exclusion": {"name": "analytics___salesforce_stg__event_isrecurrence2exclusion", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_isrecurrence2exclusion", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_isreminderset": {"name": "analytics___salesforce_stg__event_isreminderset", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_isreminderset", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_isvisibleinselfservice": {"name": "analytics___salesforce_stg__event_isvisibleinselfservice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_isvisibleinselfservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_labsactionplans_taskaptask_c": {"name": "analytics___salesforce_stg__event_labsactionplans_taskaptask_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_labsactionplans_taskaptask_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_last_modified_date_for_report_c": {"name": "analytics___salesforce_stg__event_last_modified_date_for_report_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_last_modified_date_for_report_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_last_qbr_c": {"name": "analytics___salesforce_stg__event_last_qbr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_last_qbr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_last_sdr_email_c": {"name": "analytics___salesforce_stg__event_last_sdr_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_last_sdr_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_lastmodifiedbyid": {"name": "analytics___salesforce_stg__event_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_lastmodifieddate": {"name": "analytics___salesforce_stg__event_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_lead_lookup_c": {"name": "analytics___salesforce_stg__event_lead_lookup_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_lead_lookup_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_location": {"name": "analytics___salesforce_stg__event_location", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_location", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_main_goal_c": {"name": "analytics___salesforce_stg__event_main_goal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_main_goal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_medium_c": {"name": "analytics___salesforce_stg__event_medium_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_medium_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_meeting_type_cp_c": {"name": "analytics___salesforce_stg__event_meeting_type_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_meeting_type_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_no_show_cp_c": {"name": "analytics___salesforce_stg__event_no_show_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_no_show_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_on_opp_c": {"name": "analytics___salesforce_stg__event_on_opp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_on_opp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_ownerid": {"name": "analytics___salesforce_stg__event_ownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_ownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_phase_c": {"name": "analytics___salesforce_stg__event_phase_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_phase_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_presentation_link_c": {"name": "analytics___salesforce_stg__event_presentation_link_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_presentation_link_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_products_shown_c": {"name": "analytics___salesforce_stg__event_products_shown_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_products_shown_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_queue_name_cp_c": {"name": "analytics___salesforce_stg__event_queue_name_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_queue_name_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrence2patternstartdate": {"name": "analytics___salesforce_stg__event_recurrence2patternstartdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrence2patternstartdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrence2patterntext": {"name": "analytics___salesforce_stg__event_recurrence2patterntext", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrence2patterntext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrence2patterntimezone": {"name": "analytics___salesforce_stg__event_recurrence2patterntimezone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrence2patterntimezone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrence2patternversion": {"name": "analytics___salesforce_stg__event_recurrence2patternversion", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrence2patternversion", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrenceactivityid": {"name": "analytics___salesforce_stg__event_recurrenceactivityid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrenceactivityid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrencedayofmonth": {"name": "analytics___salesforce_stg__event_recurrencedayofmonth", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrencedayofmonth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrencedayofweekmask": {"name": "analytics___salesforce_stg__event_recurrencedayofweekmask", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrencedayofweekmask", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrenceenddateonly": {"name": "analytics___salesforce_stg__event_recurrenceenddateonly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrenceenddateonly", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrenceinstance": {"name": "analytics___salesforce_stg__event_recurrenceinstance", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrenceinstance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrenceinterval": {"name": "analytics___salesforce_stg__event_recurrenceinterval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrenceinterval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrencemonthofyear": {"name": "analytics___salesforce_stg__event_recurrencemonthofyear", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrencemonthofyear", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrencestartdatetime": {"name": "analytics___salesforce_stg__event_recurrencestartdatetime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrencestartdatetime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrencetimezonesidkey": {"name": "analytics___salesforce_stg__event_recurrencetimezonesidkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrencetimezonesidkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_recurrencetype": {"name": "analytics___salesforce_stg__event_recurrencetype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_recurrencetype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_reminderdatetime": {"name": "analytics___salesforce_stg__event_reminderdatetime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_reminderdatetime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_rescheduled_cp_c": {"name": "analytics___salesforce_stg__event_rescheduled_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_rescheduled_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_response_schedule_cp_c": {"name": "analytics___salesforce_stg__event_response_schedule_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_response_schedule_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_router_name_cp_c": {"name": "analytics___salesforce_stg__event_router_name_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_router_name_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_sales_demo_feedback_c": {"name": "analytics___salesforce_stg__event_sales_demo_feedback_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_sales_demo_feedback_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_call_disposition_c": {"name": "analytics___salesforce_stg__event_salesloft1_call_disposition_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_call_disposition_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_call_duration_in_minutes_c": {"name": "analytics___salesforce_stg__event_salesloft1_call_duration_in_minutes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_call_duration_in_minutes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_call_sentiment_c": {"name": "analytics___salesforce_stg__event_salesloft1_call_sentiment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_call_sentiment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_cadence_name_c": {"name": "analytics___salesforce_stg__event_salesloft1_salesloft_cadence_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_cadence_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_clicked_count_c": {"name": "analytics___salesforce_stg__event_salesloft1_salesloft_clicked_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_clicked_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_connected_count_c": {"name": "analytics___salesforce_stg__event_salesloft1_salesloft_connected_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_connected_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_email_template_title_c": {"name": "analytics___salesforce_stg__event_salesloft1_salesloft_email_template_title_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_email_template_title_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_replies_count_c": {"name": "analytics___salesforce_stg__event_salesloft1_salesloft_replies_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_replies_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_step_day_c": {"name": "analytics___salesforce_stg__event_salesloft1_salesloft_step_day_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_step_day_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_type_c": {"name": "analytics___salesforce_stg__event_salesloft1_salesloft_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_unique_click_count_c": {"name": "analytics___salesforce_stg__event_salesloft1_salesloft_unique_click_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_unique_click_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_unique_reply_count_c": {"name": "analytics___salesforce_stg__event_salesloft1_salesloft_unique_reply_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_unique_reply_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_unique_view_count_c": {"name": "analytics___salesforce_stg__event_salesloft1_salesloft_unique_view_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_unique_view_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_view_count_c": {"name": "analytics___salesforce_stg__event_salesloft1_salesloft_view_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft1_salesloft_view_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft_cadence_id_c": {"name": "analytics___salesforce_stg__event_salesloft_cadence_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft_cadence_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft_cadence_name_c": {"name": "analytics___salesforce_stg__event_salesloft_cadence_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft_cadence_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft_clicked_count_c": {"name": "analytics___salesforce_stg__event_salesloft_clicked_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft_clicked_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft_email_template_id_c": {"name": "analytics___salesforce_stg__event_salesloft_email_template_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft_email_template_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft_email_template_title_c": {"name": "analytics___salesforce_stg__event_salesloft_email_template_title_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft_email_template_title_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft_external_identifier_c": {"name": "analytics___salesforce_stg__event_salesloft_external_identifier_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft_external_identifier_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft_step_day_new_c": {"name": "analytics___salesforce_stg__event_salesloft_step_day_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft_step_day_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft_step_id_c": {"name": "analytics___salesforce_stg__event_salesloft_step_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft_step_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft_step_name_c": {"name": "analytics___salesforce_stg__event_salesloft_step_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft_step_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft_step_type_c": {"name": "analytics___salesforce_stg__event_salesloft_step_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft_step_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloft_viewed_count_c": {"name": "analytics___salesforce_stg__event_salesloft_viewed_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloft_viewed_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_salesloftreplycount_c": {"name": "analytics___salesforce_stg__event_salesloftreplycount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_salesloftreplycount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_sdr_c": {"name": "analytics___salesforce_stg__event_sdr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_sdr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_selected_product_for_lead_conversion_c": {"name": "analytics___salesforce_stg__event_selected_product_for_lead_conversion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_selected_product_for_lead_conversion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_send_cp_slack_communication_c": {"name": "analytics___salesforce_stg__event_send_cp_slack_communication_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_send_cp_slack_communication_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_showas": {"name": "analytics___salesforce_stg__event_showas", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_showas", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_sms_topics_discussed_c": {"name": "analytics___salesforce_stg__event_sms_topics_discussed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_sms_topics_discussed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_startdatetime": {"name": "analytics___salesforce_stg__event_startdatetime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_startdatetime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_subject": {"name": "analytics___salesforce_stg__event_subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_subject", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_systemmodstamp": {"name": "analytics___salesforce_stg__event_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_task_completion_date_c": {"name": "analytics___salesforce_stg__event_task_completion_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_task_completion_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_type": {"name": "analytics___salesforce_stg__event_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_unique_click_count_c": {"name": "analytics___salesforce_stg__event_unique_click_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_unique_click_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_unique_reply_count_c": {"name": "analytics___salesforce_stg__event_unique_reply_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_unique_reply_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_unique_view_count_c": {"name": "analytics___salesforce_stg__event_unique_view_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_unique_view_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_whatcount": {"name": "analytics___salesforce_stg__event_whatcount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_whatcount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_whatid": {"name": "analytics___salesforce_stg__event_whatid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_whatid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_whocount": {"name": "analytics___salesforce_stg__event_whocount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_whocount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_whoid": {"name": "analytics___salesforce_stg__event_whoid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_whoid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_workspacename_cp_c": {"name": "analytics___salesforce_stg__event_workspacename_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_workspacename_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_activity_time_c": {"name": "analytics___salesforce_stg__event_yesware_activity_time_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_activity_time_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_activitytype_c": {"name": "analytics___salesforce_stg__event_yesware_activitytype_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_activitytype_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_call_duration_minutes_c": {"name": "analytics___salesforce_stg__event_yesware_call_duration_minutes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_call_duration_minutes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_connectcall_c": {"name": "analytics___salesforce_stg__event_yesware_connectcall_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_connectcall_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_day_c": {"name": "analytics___salesforce_stg__event_yesware_day_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_day_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_emailtype_c": {"name": "analytics___salesforce_stg__event_yesware_emailtype_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_emailtype_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_meeting_c": {"name": "analytics___salesforce_stg__event_yesware_meeting_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_meeting_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_open_c": {"name": "analytics___salesforce_stg__event_yesware_open_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_open_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_reply_c": {"name": "analytics___salesforce_stg__event_yesware_reply_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_reply_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_sent_c": {"name": "analytics___salesforce_stg__event_yesware_sent_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_sent_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_subject_c": {"name": "analytics___salesforce_stg__event_yesware_subject_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_subject_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_template_c": {"name": "analytics___salesforce_stg__event_yesware_template_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_template_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yesware_totalcall_c": {"name": "analytics___salesforce_stg__event_yesware_totalcall_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yesware_totalcall_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yeswarecampaignid_c": {"name": "analytics___salesforce_stg__event_yeswarecampaignid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yeswarecampaignid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yeswarecampaignname_c": {"name": "analytics___salesforce_stg__event_yeswarecampaignname_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yeswarecampaignname_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yeswarecampaigntotaltouches_c": {"name": "analytics___salesforce_stg__event_yeswarecampaigntotaltouches_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yeswarecampaigntotaltouches_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yeswarecampaigntouchnumber_c": {"name": "analytics___salesforce_stg__event_yeswarecampaigntouchnumber_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yeswarecampaigntouchnumber_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yeswarecampaigntouchtype_c": {"name": "analytics___salesforce_stg__event_yeswarecampaigntouchtype_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yeswarecampaigntouchtype_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yeswareiscampaign_c": {"name": "analytics___salesforce_stg__event_yeswareiscampaign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yeswareiscampaign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yeswareismailmerge_c": {"name": "analytics___salesforce_stg__event_yeswareismailmerge_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yeswareismailmerge_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yeswaremailmergename_c": {"name": "analytics___salesforce_stg__event_yeswaremailmergename_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yeswaremailmergename_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yeswaretemplateids_c": {"name": "analytics___salesforce_stg__event_yeswaretemplateids_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yeswaretemplateids_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__event_yeswaretemplatenames_c": {"name": "analytics___salesforce_stg__event_yeswaretemplatenames_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__event/analytics___salesforce_stg__event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__event_yeswaretemplatenames_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily": {"name": "analytics___salesforce_stg__fact_account_profile_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily", "block_contents": "Modeled view for static table fact_account_profile_daily"}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_account_id": {"name": "analytics___salesforce_stg__fact_account_profile_daily_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_account_name": {"name": "analytics___salesforce_stg__fact_account_profile_daily_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_account_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_date": {"name": "analytics___salesforce_stg__fact_account_profile_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_dwh_updated_at": {"name": "analytics___salesforce_stg__fact_account_profile_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_email_csm_id": {"name": "analytics___salesforce_stg__fact_account_profile_daily_email_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_email_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_email_csm_name": {"name": "analytics___salesforce_stg__fact_account_profile_daily_email_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_email_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_email_csm_team": {"name": "analytics___salesforce_stg__fact_account_profile_daily_email_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_email_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_loyalty_csm_id": {"name": "analytics___salesforce_stg__fact_account_profile_daily_loyalty_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_loyalty_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_loyalty_csm_name": {"name": "analytics___salesforce_stg__fact_account_profile_daily_loyalty_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_loyalty_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_loyalty_csm_team": {"name": "analytics___salesforce_stg__fact_account_profile_daily_loyalty_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_loyalty_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_primary_csm_id": {"name": "analytics___salesforce_stg__fact_account_profile_daily_primary_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_primary_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_primary_csm_name": {"name": "analytics___salesforce_stg__fact_account_profile_daily_primary_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_primary_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_primary_csm_team": {"name": "analytics___salesforce_stg__fact_account_profile_daily_primary_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_primary_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_csm_id": {"name": "analytics___salesforce_stg__fact_account_profile_daily_sms_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_csm_name": {"name": "analytics___salesforce_stg__fact_account_profile_daily_sms_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_csm_team": {"name": "analytics___salesforce_stg__fact_account_profile_daily_sms_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_strategist_id": {"name": "analytics___salesforce_stg__fact_account_profile_daily_sms_strategist_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_strategist_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_strategist_name": {"name": "analytics___salesforce_stg__fact_account_profile_daily_sms_strategist_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_strategist_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_strategist_team": {"name": "analytics___salesforce_stg__fact_account_profile_daily_sms_strategist_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_sms_strategist_team", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_subscription_csm_id": {"name": "analytics___salesforce_stg__fact_account_profile_daily_subscription_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_subscription_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_subscriptions_csm_name": {"name": "analytics___salesforce_stg__fact_account_profile_daily_subscriptions_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_subscriptions_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_subscriptions_csm_team": {"name": "analytics___salesforce_stg__fact_account_profile_daily_subscriptions_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_subscriptions_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_ugc_csm_id": {"name": "analytics___salesforce_stg__fact_account_profile_daily_ugc_csm_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_ugc_csm_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_ugc_csm_name": {"name": "analytics___salesforce_stg__fact_account_profile_daily_ugc_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_ugc_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_ugc_csm_team": {"name": "analytics___salesforce_stg__fact_account_profile_daily_ugc_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__fact_account_profile_daily/analytics___salesforce_stg__fact_account_profile_daily.md", "unique_id": "doc.yoda.analytics___salesforce_stg__fact_account_profile_daily_ugc_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__lead": {"name": "analytics___salesforce_stg__lead", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__lead__sdc_batched_at": {"name": "analytics___salesforce_stg__lead__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead__sdc_extracted_at": {"name": "analytics___salesforce_stg__lead__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead__sdc_received_at": {"name": "analytics___salesforce_stg__lead__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead__sdc_sequence": {"name": "analytics___salesforce_stg__lead__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead__sdc_table_version": {"name": "analytics___salesforce_stg__lead__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_a_b_testing_provider_c": {"name": "analytics___salesforce_stg__lead_a_b_testing_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_a_b_testing_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_account_email_c": {"name": "analytics___salesforce_stg__lead_account_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_account_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_account_id_c": {"name": "analytics___salesforce_stg__lead_account_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_account_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_account_phone_c": {"name": "analytics___salesforce_stg__lead_account_phone_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_account_phone_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_account_status_c": {"name": "analytics___salesforce_stg__lead_account_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_account_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_active_automations_flows_3_months_avg_c": {"name": "analytics___salesforce_stg__lead_active_automations_flows_3_months_avg_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_active_automations_flows_3_months_avg_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_active_automations_flows_last_30_days_c": {"name": "analytics___salesforce_stg__lead_active_automations_flows_last_30_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_active_automations_flows_last_30_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_active_campaigns_c": {"name": "analytics___salesforce_stg__lead_active_campaigns_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_active_campaigns_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_active_lead_c": {"name": "analytics___salesforce_stg__lead_active_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_active_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_activitymetricid": {"name": "analytics___salesforce_stg__lead_activitymetricid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_activitymetricid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_activitymetricrollupid": {"name": "analytics___salesforce_stg__lead_activitymetricrollupid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_activitymetricrollupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_additional_email_address_c": {"name": "analytics___salesforce_stg__lead_additional_email_address_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_additional_email_address_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_additional_email_c": {"name": "analytics___salesforce_stg__lead_additional_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_additional_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_additional_phone_number_c": {"name": "analytics___salesforce_stg__lead_additional_phone_number_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_additional_phone_number_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_ads_provider_c": {"name": "analytics___salesforce_stg__lead_ads_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_ads_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_agency_pdr_lookup_c": {"name": "analytics___salesforce_stg__lead_agency_pdr_lookup_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_agency_pdr_lookup_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_agency_potential_c": {"name": "analytics___salesforce_stg__lead_agency_potential_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_agency_potential_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_agency_sales_owner_c": {"name": "analytics___salesforce_stg__lead_agency_sales_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_agency_sales_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_agency_segment_c": {"name": "analytics___salesforce_stg__lead_agency_segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_agency_segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_agency_services_c": {"name": "analytics___salesforce_stg__lead_agency_services_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_agency_services_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_agency_supported_platforms_lead_c": {"name": "analytics___salesforce_stg__lead_agency_supported_platforms_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_agency_supported_platforms_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_agency_type_c": {"name": "analytics___salesforce_stg__lead_agency_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_agency_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_alexa_rank_c": {"name": "analytics___salesforce_stg__lead_alexa_rank_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_alexa_rank_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_annual_revenue_c": {"name": "analytics___salesforce_stg__lead_annual_revenue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_annual_revenue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_annual_revenue_est_c": {"name": "analytics___salesforce_stg__lead_annual_revenue_est_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_annual_revenue_est_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_annualrevenue": {"name": "analytics___salesforce_stg__lead_annualrevenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_annualrevenue", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_aov_c": {"name": "analytics___salesforce_stg__lead_aov_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_aov_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_app_key_c": {"name": "analytics___salesforce_stg__lead_app_key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_app_key_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_assigned_by_de_c": {"name": "analytics___salesforce_stg__lead_assigned_by_de_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_assigned_by_de_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_avg_traffic_6_months_c": {"name": "analytics___salesforce_stg__lead_avg_traffic_6_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_avg_traffic_6_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_booking_status_cp_c": {"name": "analytics___salesforce_stg__lead_booking_status_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_booking_status_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_bottom_of_funnel_sessions_c": {"name": "analytics___salesforce_stg__lead_bottom_of_funnel_sessions_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_bottom_of_funnel_sessions_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_bounce_rate_c": {"name": "analytics___salesforce_stg__lead_bounce_rate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_bounce_rate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_business_days_to_first_connect_c": {"name": "analytics___salesforce_stg__lead_business_days_to_first_connect_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_business_days_to_first_connect_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_business_days_to_first_touch_c": {"name": "analytics___salesforce_stg__lead_business_days_to_first_touch_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_business_days_to_first_touch_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_came_from_nurturing_c": {"name": "analytics___salesforce_stg__lead_came_from_nurturing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_came_from_nurturing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_cdp_provider_c": {"name": "analytics___salesforce_stg__lead_cdp_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_cdp_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_chat_bots_provider_c": {"name": "analytics___salesforce_stg__lead_chat_bots_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_chat_bots_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_city": {"name": "analytics___salesforce_stg__lead_city", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_claim_status_c": {"name": "analytics___salesforce_stg__lead_claim_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_claim_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_client_s_agency2_c": {"name": "analytics___salesforce_stg__lead_client_s_agency2_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_client_s_agency2_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_comments_c": {"name": "analytics___salesforce_stg__lead_comments_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_comments_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_company": {"name": "analytics___salesforce_stg__lead_company", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_company", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_confidence_level_lead_c": {"name": "analytics___salesforce_stg__lead_confidence_level_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_confidence_level_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_connect_with_a_yotpo_rep_c": {"name": "analytics___salesforce_stg__lead_connect_with_a_yotpo_rep_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_connect_with_a_yotpo_rep_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_convert_to_existing_account_c": {"name": "analytics___salesforce_stg__lead_convert_to_existing_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_convert_to_existing_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_convertedaccountid": {"name": "analytics___salesforce_stg__lead_convertedaccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_convertedaccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_convertedcontactid": {"name": "analytics___salesforce_stg__lead_convertedcontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_convertedcontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_converteddate": {"name": "analytics___salesforce_stg__lead_converteddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_converteddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_convertedopportunityid": {"name": "analytics___salesforce_stg__lead_convertedopportunityid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_convertedopportunityid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_country": {"name": "analytics___salesforce_stg__lead_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_country_region_c": {"name": "analytics___salesforce_stg__lead_country_region_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_country_region_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_country_region_text_c": {"name": "analytics___salesforce_stg__lead_country_region_text_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_country_region_text_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_countrycode": {"name": "analytics___salesforce_stg__lead_countrycode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_countrycode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_created_by_role_c": {"name": "analytics___salesforce_stg__lead_created_by_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_created_by_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_created_date_day_less_than_today_day_c": {"name": "analytics___salesforce_stg__lead_created_date_day_less_than_today_day_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_created_date_day_less_than_today_day_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_createdbyid": {"name": "analytics___salesforce_stg__lead_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_createddate": {"name": "analytics___salesforce_stg__lead_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_creation_date_time_c": {"name": "analytics___salesforce_stg__lead_creation_date_time_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_creation_date_time_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_credits_used_last_30_days_c": {"name": "analytics___salesforce_stg__lead_credits_used_last_30_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_credits_used_last_30_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_credits_used_last_90_days_c": {"name": "analytics___salesforce_stg__lead_credits_used_last_90_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_credits_used_last_90_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_critical_event_c": {"name": "analytics___salesforce_stg__lead_critical_event_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_critical_event_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_cs_tags_c": {"name": "analytics___salesforce_stg__lead_cs_tags_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_cs_tags_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_currencyisocode": {"name": "analytics___salesforce_stg__lead_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_current_cycle_calls_completed_c": {"name": "analytics___salesforce_stg__lead_current_cycle_calls_completed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_current_cycle_calls_completed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_current_cycle_emails_sent_c": {"name": "analytics___salesforce_stg__lead_current_cycle_emails_sent_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_current_cycle_emails_sent_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_current_cycle_first_activity_c": {"name": "analytics___salesforce_stg__lead_current_cycle_first_activity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_current_cycle_first_activity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_current_cycle_first_call_email_date_c": {"name": "analytics___salesforce_stg__lead_current_cycle_first_call_email_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_current_cycle_first_call_email_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_current_cycle_first_connected_activity_c": {"name": "analytics___salesforce_stg__lead_current_cycle_first_connected_activity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_current_cycle_first_connected_activity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_current_cycle_last_call_email_date_c": {"name": "analytics___salesforce_stg__lead_current_cycle_last_call_email_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_current_cycle_last_call_email_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_current_cycle_total_activities_c": {"name": "analytics___salesforce_stg__lead_current_cycle_total_activities_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_current_cycle_total_activities_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_customer_care_tagged_c": {"name": "analytics___salesforce_stg__lead_customer_care_tagged_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_customer_care_tagged_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_d": {"name": "analytics___salesforce_stg__lead_d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_d", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_datanayze_annual_revenue_c": {"name": "analytics___salesforce_stg__lead_datanayze_annual_revenue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_datanayze_annual_revenue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_datanayze_annual_revenue_changed_c": {"name": "analytics___salesforce_stg__lead_datanayze_annual_revenue_changed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_datanayze_annual_revenue_changed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_datanayze_current_curation_solution_c": {"name": "analytics___salesforce_stg__lead_datanayze_current_curation_solution_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_datanayze_current_curation_solution_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_datanayze_monthly_tech_spend_c": {"name": "analytics___salesforce_stg__lead_datanayze_monthly_tech_spend_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_datanayze_monthly_tech_spend_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_datanyze_funding_c": {"name": "analytics___salesforce_stg__lead_datanyze_funding_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_datanyze_funding_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_date_assigned_to_sdr_c": {"name": "analytics___salesforce_stg__lead_date_assigned_to_sdr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_date_assigned_to_sdr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_days_between_nurture_to_new_c": {"name": "analytics___salesforce_stg__lead_days_between_nurture_to_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_days_between_nurture_to_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_days_from_last_activity_c": {"name": "analytics___salesforce_stg__lead_days_from_last_activity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_days_from_last_activity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_days_from_last_assign_to_first_touch_c": {"name": "analytics___salesforce_stg__lead_days_from_last_assign_to_first_touch_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_days_from_last_assign_to_first_touch_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_days_since_last_activity_after_engage_c": {"name": "analytics___salesforce_stg__lead_days_since_last_activity_after_engage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_days_since_last_activity_after_engage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_days_since_last_activity_after_mql_c": {"name": "analytics___salesforce_stg__lead_days_since_last_activity_after_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_days_since_last_activity_after_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_decision_maker_c": {"name": "analytics___salesforce_stg__lead_decision_maker_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_decision_maker_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_demo_task_subject_c": {"name": "analytics___salesforce_stg__lead_demo_task_subject_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_demo_task_subject_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_description": {"name": "analytics___salesforce_stg__lead_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_direct_traffic_share_c": {"name": "analytics___salesforce_stg__lead_direct_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_direct_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_discoverorg_company_industry_c": {"name": "analytics___salesforce_stg__lead_discoverorg_company_industry_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_discoverorg_company_industry_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_do_not_update_territory_c": {"name": "analytics___salesforce_stg__lead_do_not_update_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_do_not_update_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_doesn_t_work_here_c": {"name": "analytics___salesforce_stg__lead_doesn_t_work_here_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_doesn_t_work_here_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_domain_c": {"name": "analytics___salesforce_stg__lead_domain_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_domain_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_donotcall": {"name": "analytics___salesforce_stg__lead_donotcall", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_donotcall", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_dozisf_zoominfo_company_id_c": {"name": "analytics___salesforce_stg__lead_dozisf_zoominfo_company_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_dozisf_zoominfo_company_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_dozisf_zoominfo_first_updated_c": {"name": "analytics___salesforce_stg__lead_dozisf_zoominfo_first_updated_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_dozisf_zoominfo_first_updated_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_dozisf_zoominfo_id_c": {"name": "analytics___salesforce_stg__lead_dozisf_zoominfo_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_dozisf_zoominfo_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_dozisf_zoominfo_last_updated_c": {"name": "analytics___salesforce_stg__lead_dozisf_zoominfo_last_updated_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_dozisf_zoominfo_last_updated_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_drift_assignee_c": {"name": "analytics___salesforce_stg__lead_drift_assignee_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_drift_assignee_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_duration_in_lead_status_c": {"name": "analytics___salesforce_stg__lead_duration_in_lead_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_duration_in_lead_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_effective_source_c": {"name": "analytics___salesforce_stg__lead_effective_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_effective_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_email": {"name": "analytics___salesforce_stg__lead_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_email_domain_c": {"name": "analytics___salesforce_stg__lead_email_domain_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_email_domain_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_email_validation_c": {"name": "analytics___salesforce_stg__lead_email_validation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_email_validation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_emailbounceddate": {"name": "analytics___salesforce_stg__lead_emailbounceddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_emailbounceddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_emailbouncedreason": {"name": "analytics___salesforce_stg__lead_emailbouncedreason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_emailbouncedreason", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_enterprise_lead_c": {"name": "analytics___salesforce_stg__lead_enterprise_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_enterprise_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_fax": {"name": "analytics___salesforce_stg__lead_fax", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_fax", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_first_activity_date_c": {"name": "analytics___salesforce_stg__lead_first_activity_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_first_activity_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_first_campaign_c": {"name": "analytics___salesforce_stg__lead_first_campaign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_first_campaign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_first_campaign_name_c": {"name": "analytics___salesforce_stg__lead_first_campaign_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_first_campaign_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_first_campaign_type_c": {"name": "analytics___salesforce_stg__lead_first_campaign_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_first_campaign_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_firstname": {"name": "analytics___salesforce_stg__lead_firstname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_firstname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_follow_up_date_c": {"name": "analytics___salesforce_stg__lead_follow_up_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_follow_up_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_funding_c": {"name": "analytics___salesforce_stg__lead_funding_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_funding_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_global_rank_c": {"name": "analytics___salesforce_stg__lead_global_rank_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_global_rank_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_good_fit_for_growth_c": {"name": "analytics___salesforce_stg__lead_good_fit_for_growth_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_good_fit_for_growth_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_google_fake_lead_c": {"name": "analytics___salesforce_stg__lead_google_fake_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_google_fake_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_gray_area_c": {"name": "analytics___salesforce_stg__lead_gray_area_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_gray_area_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_growth_date_c": {"name": "analytics___salesforce_stg__lead_growth_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_growth_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_hasoptedoutofemail": {"name": "analytics___salesforce_stg__lead_hasoptedoutofemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_hasoptedoutofemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_hasoptedoutoffax": {"name": "analytics___salesforce_stg__lead_hasoptedoutoffax", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_hasoptedoutoffax", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_help_desk_provider_c": {"name": "analytics___salesforce_stg__lead_help_desk_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_help_desk_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_hours_since_last_transfer_c": {"name": "analytics___salesforce_stg__lead_hours_since_last_transfer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_hours_since_last_transfer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_hours_to_first_connect_c": {"name": "analytics___salesforce_stg__lead_hours_to_first_connect_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_hours_to_first_connect_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_hours_to_first_touch_c": {"name": "analytics___salesforce_stg__lead_hours_to_first_touch_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_hours_to_first_touch_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_how_did_they_hear_about_yotpo_c": {"name": "analytics___salesforce_stg__lead_how_did_they_hear_about_yotpo_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_how_did_they_hear_about_yotpo_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_id": {"name": "analytics___salesforce_stg__lead_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_impact_c": {"name": "analytics___salesforce_stg__lead_impact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_impact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_import_reason_c": {"name": "analytics___salesforce_stg__lead_import_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_import_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_incorrect_score_reason_c": {"name": "analytics___salesforce_stg__lead_incorrect_score_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_incorrect_score_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_industry": {"name": "analytics___salesforce_stg__lead_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_industry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_influencer_c": {"name": "analytics___salesforce_stg__lead_influencer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_influencer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_influencer_owner_c": {"name": "analytics___salesforce_stg__lead_influencer_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_influencer_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_instagram_followers_c": {"name": "analytics___salesforce_stg__lead_instagram_followers_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_instagram_followers_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_integrations_email_marketing_c": {"name": "analytics___salesforce_stg__lead_integrations_email_marketing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_integrations_email_marketing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_integrations_loyalty_c": {"name": "analytics___salesforce_stg__lead_integrations_loyalty_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_integrations_loyalty_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_integrations_onsite_engagement_c": {"name": "analytics___salesforce_stg__lead_integrations_onsite_engagement_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_integrations_onsite_engagement_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_integrations_search_c": {"name": "analytics___salesforce_stg__lead_integrations_search_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_integrations_search_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_interested_in_loyalty_c": {"name": "analytics___salesforce_stg__lead_interested_in_loyalty_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_interested_in_loyalty_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_interested_in_reviews_c": {"name": "analytics___salesforce_stg__lead_interested_in_reviews_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_interested_in_reviews_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_interested_in_sms_c": {"name": "analytics___salesforce_stg__lead_interested_in_sms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_interested_in_sms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_interested_in_subscription_c": {"name": "analytics___salesforce_stg__lead_interested_in_subscription_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_interested_in_subscription_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_interested_in_vms_c": {"name": "analytics___salesforce_stg__lead_interested_in_vms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_interested_in_vms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_invalid_email_address_marketo_c": {"name": "analytics___salesforce_stg__lead_invalid_email_address_marketo_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_invalid_email_address_marketo_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_is_using_loyalty_campaigns_c": {"name": "analytics___salesforce_stg__lead_is_using_loyalty_campaigns_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_is_using_loyalty_campaigns_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_isconverted": {"name": "analytics___salesforce_stg__lead_isconverted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_isconverted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_isdeleted": {"name": "analytics___salesforce_stg__lead_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_isunreadbyowner": {"name": "analytics___salesforce_stg__lead_isunreadbyowner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_isunreadbyowner", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_jigsaw": {"name": "analytics___salesforce_stg__lead_jigsaw", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_jigsaw", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_jigsawcontactid": {"name": "analytics___salesforce_stg__lead_jigsawcontactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_jigsawcontactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_junk_reason_c": {"name": "analytics___salesforce_stg__lead_junk_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_junk_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_keep_in_owner_name_c": {"name": "analytics___salesforce_stg__lead_keep_in_owner_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_keep_in_owner_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_30_days_maps_c": {"name": "analytics___salesforce_stg__lead_last_30_days_maps_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_30_days_maps_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_30_days_maps_total_c": {"name": "analytics___salesforce_stg__lead_last_30_days_maps_total_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_30_days_maps_total_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_30_days_orders_c": {"name": "analytics___salesforce_stg__lead_last_30_days_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_30_days_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_30_days_orders_sms_c": {"name": "analytics___salesforce_stg__lead_last_30_days_orders_sms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_30_days_orders_sms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_30_days_reviews_c": {"name": "analytics___salesforce_stg__lead_last_30_days_reviews_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_30_days_reviews_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_30_days_sales_c": {"name": "analytics___salesforce_stg__lead_last_30_days_sales_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_30_days_sales_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_30_days_swell_orders_c": {"name": "analytics___salesforce_stg__lead_last_30_days_swell_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_30_days_swell_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_30_days_swell_sales_c": {"name": "analytics___salesforce_stg__lead_last_30_days_swell_sales_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_30_days_swell_sales_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_6_months_points_earned_c": {"name": "analytics___salesforce_stg__lead_last_6_months_points_earned_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_6_months_points_earned_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_6_months_points_redeemed_c": {"name": "analytics___salesforce_stg__lead_last_6_months_points_redeemed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_6_months_points_redeemed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_activity_date_c": {"name": "analytics___salesforce_stg__lead_last_activity_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_activity_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_ae_c": {"name": "analytics___salesforce_stg__lead_last_ae_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_ae_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_ae_team_c": {"name": "analytics___salesforce_stg__lead_last_ae_team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_ae_team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_enrichment_date_c": {"name": "analytics___salesforce_stg__lead_last_enrichment_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_enrichment_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_c": {"name": "analytics___salesforce_stg__lead_last_lead_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_email_c": {"name": "analytics___salesforce_stg__lead_last_lead_owner_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_lookup_c": {"name": "analytics___salesforce_stg__lead_last_lead_owner_lookup_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_lookup_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_phone_c": {"name": "analytics___salesforce_stg__lead_last_lead_owner_phone_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_phone_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_role_c": {"name": "analytics___salesforce_stg__lead_last_lead_owner_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_without_queue_c": {"name": "analytics___salesforce_stg__lead_last_lead_owner_without_queue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_lead_owner_without_queue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_nurture_reason_c": {"name": "analytics___salesforce_stg__lead_last_nurture_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_nurture_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_packaged_change_date_c": {"name": "analytics___salesforce_stg__lead_last_packaged_change_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_packaged_change_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_ringlead_merge_activity_c": {"name": "analytics___salesforce_stg__lead_last_ringlead_merge_activity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_ringlead_merge_activity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_sdr_c": {"name": "analytics___salesforce_stg__lead_last_sdr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_sdr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_sdr_team_c": {"name": "analytics___salesforce_stg__lead_last_sdr_team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_sdr_team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_sub_nurture_reason_c": {"name": "analytics___salesforce_stg__lead_last_sub_nurture_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_sub_nurture_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_transfer_date_date_time_c": {"name": "analytics___salesforce_stg__lead_last_transfer_date_date_time_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_transfer_date_date_time_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_transfer_date_without_queue_c": {"name": "analytics___salesforce_stg__lead_last_transfer_date_without_queue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_transfer_date_without_queue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_last_transfer_datetime_without_queue_c": {"name": "analytics___salesforce_stg__lead_last_transfer_datetime_without_queue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_last_transfer_datetime_without_queue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lastactivitydate": {"name": "analytics___salesforce_stg__lead_lastactivitydate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lastactivitydate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lastmodifiedbyid": {"name": "analytics___salesforce_stg__lead_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lastmodifieddate": {"name": "analytics___salesforce_stg__lead_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lastname": {"name": "analytics___salesforce_stg__lead_lastname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lastname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lastproductoflastsubscriptionevent_c": {"name": "analytics___salesforce_stg__lead_lastproductoflastsubscriptionevent_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lastproductoflastsubscriptionevent_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lastreferenceddate": {"name": "analytics___salesforce_stg__lead_lastreferenceddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lastreferenceddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_laststatuschange_c": {"name": "analytics___salesforce_stg__lead_laststatuschange_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_laststatuschange_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lastsubscriptioneventchange_c": {"name": "analytics___salesforce_stg__lead_lastsubscriptioneventchange_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lastsubscriptioneventchange_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lasttransferdate": {"name": "analytics___salesforce_stg__lead_lasttransferdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lasttransferdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lastvieweddate": {"name": "analytics___salesforce_stg__lead_lastvieweddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lastvieweddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_latest_partner_referral_c": {"name": "analytics___salesforce_stg__lead_latest_partner_referral_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_latest_partner_referral_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_latest_partner_referral_influencer_c": {"name": "analytics___salesforce_stg__lead_latest_partner_referral_influencer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_latest_partner_referral_influencer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_bucket_c": {"name": "analytics___salesforce_stg__lead_lead_bucket_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_bucket_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_bucket_when_referred_c": {"name": "analytics___salesforce_stg__lead_lead_bucket_when_referred_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_bucket_when_referred_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_creation_date_c": {"name": "analytics___salesforce_stg__lead_lead_creation_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_creation_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_emails_sent_c": {"name": "analytics___salesforce_stg__lead_lead_emails_sent_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_emails_sent_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_id_18_digit_c": {"name": "analytics___salesforce_stg__lead_lead_id_18_digit_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_id_18_digit_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_id_c": {"name": "analytics___salesforce_stg__lead_lead_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_id_map_to_opp_c": {"name": "analytics___salesforce_stg__lead_lead_id_map_to_opp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_id_map_to_opp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_influenced_by_c": {"name": "analytics___salesforce_stg__lead_lead_influenced_by_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_influenced_by_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_influenced_date_c": {"name": "analytics___salesforce_stg__lead_lead_influenced_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_influenced_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_last_campaign2_c": {"name": "analytics___salesforce_stg__lead_lead_last_campaign2_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_last_campaign2_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_last_campaign_contact_c": {"name": "analytics___salesforce_stg__lead_lead_last_campaign_contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_last_campaign_contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_last_campaign_name_c": {"name": "analytics___salesforce_stg__lead_lead_last_campaign_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_last_campaign_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_last_campaign_type_c": {"name": "analytics___salesforce_stg__lead_lead_last_campaign_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_last_campaign_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_last_hubspot_engagement_c": {"name": "analytics___salesforce_stg__lead_lead_last_hubspot_engagement_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_last_hubspot_engagement_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_outreach_completed_c": {"name": "analytics___salesforce_stg__lead_lead_outreach_completed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_outreach_completed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_referred_by_c": {"name": "analytics___salesforce_stg__lead_lead_referred_by_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_referred_by_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_referred_date_c": {"name": "analytics___salesforce_stg__lead_lead_referred_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_referred_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_referrer_owner_role_c": {"name": "analytics___salesforce_stg__lead_lead_referrer_owner_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_referrer_owner_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_source_c": {"name": "analytics___salesforce_stg__lead_lead_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_source_type_c": {"name": "analytics___salesforce_stg__lead_lead_source_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_source_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_status_time_stamp_c": {"name": "analytics___salesforce_stg__lead_lead_status_time_stamp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_status_time_stamp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_territory_c": {"name": "analytics___salesforce_stg__lead_lead_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lead_type_c": {"name": "analytics___salesforce_stg__lead_lead_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lead_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_leadsource": {"name": "analytics___salesforce_stg__lead_leadsource", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_leadsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_linkedin_c": {"name": "analytics___salesforce_stg__lead_linkedin_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_linkedin_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lninterest_c": {"name": "analytics___salesforce_stg__lead_lninterest_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lninterest_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lnpath_c": {"name": "analytics___salesforce_stg__lead_lnpath_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lnpath_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lnstage_c": {"name": "analytics___salesforce_stg__lead_lnstage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lnstage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_lnstatus_c": {"name": "analytics___salesforce_stg__lead_lnstatus_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_lnstatus_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mail_traffic_share_c": {"name": "analytics___salesforce_stg__lead_mail_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mail_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_managed_services_agency_c": {"name": "analytics___salesforce_stg__lead_managed_services_agency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_managed_services_agency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_marketing_filter_hql_date_c": {"name": "analytics___salesforce_stg__lead_marketing_filter_hql_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_marketing_filter_hql_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_marketing_filter_last_qualified_tier_c": {"name": "analytics___salesforce_stg__lead_marketing_filter_last_qualified_tier_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_marketing_filter_last_qualified_tier_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_marketo_fit_score_c": {"name": "analytics___salesforce_stg__lead_marketo_fit_score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_marketo_fit_score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_marketo_fit_score_first_mql_c": {"name": "analytics___salesforce_stg__lead_marketo_fit_score_first_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_marketo_fit_score_first_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_marketo_fit_score_grade_c": {"name": "analytics___salesforce_stg__lead_marketo_fit_score_grade_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_marketo_fit_score_grade_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_marketo_fit_score_last_mql_c": {"name": "analytics___salesforce_stg__lead_marketo_fit_score_last_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_marketo_fit_score_last_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_marketo_tier_last_mql_c": {"name": "analytics___salesforce_stg__lead_marketo_tier_last_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_marketo_tier_last_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_marketo_tier_mql_c": {"name": "analytics___salesforce_stg__lead_marketo_tier_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_marketo_tier_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_marketo_triggered_mql_c": {"name": "analytics___salesforce_stg__lead_marketo_triggered_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_marketo_triggered_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_masterrecordid": {"name": "analytics___salesforce_stg__lead_masterrecordid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_masterrecordid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_matched_account_ring_lead_c": {"name": "analytics___salesforce_stg__lead_matched_account_ring_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_matched_account_ring_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_meeting_type_cp_c": {"name": "analytics___salesforce_stg__lead_meeting_type_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_meeting_type_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_merchant_id_c": {"name": "analytics___salesforce_stg__lead_merchant_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_merchant_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_messages_sent_last_30_days_c": {"name": "analytics___salesforce_stg__lead_messages_sent_last_30_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_messages_sent_last_30_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_messages_sent_last_90_days_c": {"name": "analytics___salesforce_stg__lead_messages_sent_last_90_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_messages_sent_last_90_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_acquisition_date_c": {"name": "analytics___salesforce_stg__lead_mkto2_acquisition_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_acquisition_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_acquisition_program_c": {"name": "analytics___salesforce_stg__lead_mkto2_acquisition_program_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_acquisition_program_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_acquisition_program_id_c": {"name": "analytics___salesforce_stg__lead_mkto2_acquisition_program_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_acquisition_program_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_city_c": {"name": "analytics___salesforce_stg__lead_mkto2_inferred_city_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_city_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_company_c": {"name": "analytics___salesforce_stg__lead_mkto2_inferred_company_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_company_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_country_c": {"name": "analytics___salesforce_stg__lead_mkto2_inferred_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_metropolitan_area_c": {"name": "analytics___salesforce_stg__lead_mkto2_inferred_metropolitan_area_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_metropolitan_area_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_phone_area_code_c": {"name": "analytics___salesforce_stg__lead_mkto2_inferred_phone_area_code_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_phone_area_code_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_postal_code_c": {"name": "analytics___salesforce_stg__lead_mkto2_inferred_postal_code_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_postal_code_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_state_region_c": {"name": "analytics___salesforce_stg__lead_mkto2_inferred_state_region_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_inferred_state_region_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_lead_score_c": {"name": "analytics___salesforce_stg__lead_mkto2_lead_score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_lead_score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_original_referrer_c": {"name": "analytics___salesforce_stg__lead_mkto2_original_referrer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_original_referrer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_original_search_engine_c": {"name": "analytics___salesforce_stg__lead_mkto2_original_search_engine_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_original_search_engine_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_original_search_phrase_c": {"name": "analytics___salesforce_stg__lead_mkto2_original_search_phrase_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_original_search_phrase_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_original_source_info_c": {"name": "analytics___salesforce_stg__lead_mkto2_original_source_info_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_original_source_info_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto2_original_source_type_c": {"name": "analytics___salesforce_stg__lead_mkto2_original_source_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto2_original_source_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto71_acquisition_date_c": {"name": "analytics___salesforce_stg__lead_mkto71_acquisition_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto71_acquisition_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto71_acquisition_program_c": {"name": "analytics___salesforce_stg__lead_mkto71_acquisition_program_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto71_acquisition_program_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto71_acquisition_program_id_c": {"name": "analytics___salesforce_stg__lead_mkto71_acquisition_program_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto71_acquisition_program_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto_si_add_to_marketo_campaign_c": {"name": "analytics___salesforce_stg__lead_mkto_si_add_to_marketo_campaign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto_si_add_to_marketo_campaign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_c": {"name": "analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_date_c": {"name": "analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_desc_c": {"name": "analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_desc_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_desc_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_source_c": {"name": "analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_type_c": {"name": "analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto_si_last_interesting_moment_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto_si_priority_c": {"name": "analytics___salesforce_stg__lead_mkto_si_priority_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto_si_priority_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto_si_relative_score_c": {"name": "analytics___salesforce_stg__lead_mkto_si_relative_score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto_si_relative_score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto_si_relative_score_value_c": {"name": "analytics___salesforce_stg__lead_mkto_si_relative_score_value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto_si_relative_score_value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto_si_urgency_c": {"name": "analytics___salesforce_stg__lead_mkto_si_urgency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto_si_urgency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mkto_si_view_in_marketo_c": {"name": "analytics___salesforce_stg__lead_mkto_si_view_in_marketo_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mkto_si_view_in_marketo_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mobilephone": {"name": "analytics___salesforce_stg__lead_mobilephone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mobilephone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_monthly_fb_ads_budget_c": {"name": "analytics___salesforce_stg__lead_monthly_fb_ads_budget_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_monthly_fb_ads_budget_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_most_recent_assignment_bucket_c": {"name": "analytics___salesforce_stg__lead_most_recent_assignment_bucket_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_most_recent_assignment_bucket_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_most_recent_assignment_date_c": {"name": "analytics___salesforce_stg__lead_most_recent_assignment_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_most_recent_assignment_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_most_recent_assignment_reason_c": {"name": "analytics___salesforce_stg__lead_most_recent_assignment_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_most_recent_assignment_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_most_recent_assignment_sub_reason_c": {"name": "analytics___salesforce_stg__lead_most_recent_assignment_sub_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_most_recent_assignment_sub_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_most_recent_engagement_date_c": {"name": "analytics___salesforce_stg__lead_most_recent_engagement_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_most_recent_engagement_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_most_recent_engagement_reason_c": {"name": "analytics___salesforce_stg__lead_most_recent_engagement_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_most_recent_engagement_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_most_recent_product_preference_c": {"name": "analytics___salesforce_stg__lead_most_recent_product_preference_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_most_recent_product_preference_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_most_recent_session_starting_page_c": {"name": "analytics___salesforce_stg__lead_most_recent_session_starting_page_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_most_recent_session_starting_page_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_move_to_nurture_c": {"name": "analytics___salesforce_stg__lead_move_to_nurture_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_move_to_nurture_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mql_date_c": {"name": "analytics___salesforce_stg__lead_mql_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mql_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_mql_motion_c": {"name": "analytics___salesforce_stg__lead_mql_motion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_mql_motion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_name": {"name": "analytics___salesforce_stg__lead_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_no_of_touchpoints_before_nurturing_c": {"name": "analytics___salesforce_stg__lead_no_of_touchpoints_before_nurturing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_no_of_touchpoints_before_nurturing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_no_specified_domain_com_c": {"name": "analytics___salesforce_stg__lead_no_specified_domain_com_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_no_specified_domain_com_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_num_of_subscribers_c": {"name": "analytics___salesforce_stg__lead_num_of_subscribers_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_num_of_subscribers_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_number_of_employees_c": {"name": "analytics___salesforce_stg__lead_number_of_employees_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_number_of_employees_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_number_of_open_outreach_tasks_c": {"name": "analytics___salesforce_stg__lead_number_of_open_outreach_tasks_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_number_of_open_outreach_tasks_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_numberofemployees": {"name": "analytics___salesforce_stg__lead_numberofemployees", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_numberofemployees", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_nurturing_reason_c": {"name": "analytics___salesforce_stg__lead_nurturing_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_nurturing_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_nurturing_to_new_c": {"name": "analytics___salesforce_stg__lead_nurturing_to_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_nurturing_to_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_orders_month_estimate_c": {"name": "analytics___salesforce_stg__lead_orders_month_estimate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_orders_month_estimate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_organization_key_c": {"name": "analytics___salesforce_stg__lead_organization_key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_organization_key_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_original_source_c": {"name": "analytics___salesforce_stg__lead_original_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_original_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_owner_is_active_c": {"name": "analytics___salesforce_stg__lead_owner_is_active_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_owner_is_active_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_owner_is_queue_c": {"name": "analytics___salesforce_stg__lead_owner_is_queue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_owner_is_queue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_ownerid": {"name": "analytics___salesforce_stg__lead_ownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_ownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_package_c": {"name": "analytics___salesforce_stg__lead_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_package_category_c": {"name": "analytics___salesforce_stg__lead_package_category_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_package_category_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_paid_referrals_traffic_share_c": {"name": "analytics___salesforce_stg__lead_paid_referrals_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_paid_referrals_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_pain_c": {"name": "analytics___salesforce_stg__lead_pain_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_pain_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_partner_manager_email_referral_form_c": {"name": "analytics___salesforce_stg__lead_partner_manager_email_referral_form_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_partner_manager_email_referral_form_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_partner_team_routing_team_c": {"name": "analytics___salesforce_stg__lead_partner_team_routing_team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_partner_team_routing_team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_partneraccountid": {"name": "analytics___salesforce_stg__lead_partneraccountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_partneraccountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_payment_provider_c": {"name": "analytics___salesforce_stg__lead_payment_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_payment_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_pct_usage_reached_c": {"name": "analytics___salesforce_stg__lead_pct_usage_reached_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_pct_usage_reached_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_pe_reassignment_date_c": {"name": "analytics___salesforce_stg__lead_pe_reassignment_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_pe_reassignment_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_percent_subscribers_from_customers_c": {"name": "analytics___salesforce_stg__lead_percent_subscribers_from_customers_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_percent_subscribers_from_customers_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_personalization_provider_c": {"name": "analytics___salesforce_stg__lead_personalization_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_personalization_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_phone": {"name": "analytics___salesforce_stg__lead_phone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_phone_country_code_lead_c": {"name": "analytics___salesforce_stg__lead_phone_country_code_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_phone_country_code_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_photourl": {"name": "analytics___salesforce_stg__lead_photourl", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_photourl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_platform_c": {"name": "analytics___salesforce_stg__lead_platform_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_platform_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_platform_for_snr_form_c": {"name": "analytics___salesforce_stg__lead_platform_for_snr_form_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_platform_for_snr_form_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_pos_provider_c": {"name": "analytics___salesforce_stg__lead_pos_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_pos_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_postalcode": {"name": "analytics___salesforce_stg__lead_postalcode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_postalcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_previous_db_package_c": {"name": "analytics___salesforce_stg__lead_previous_db_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_previous_db_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_processing_time": {"name": "analytics___salesforce_stg__lead_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_product_touches_c": {"name": "analytics___salesforce_stg__lead_product_touches_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_product_touches_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_products_interest_referral_form_c": {"name": "analytics___salesforce_stg__lead_products_interest_referral_form_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_products_interest_referral_form_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_prospect_fit_rank_c": {"name": "analytics___salesforce_stg__lead_prospect_fit_rank_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_prospect_fit_rank_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_prospect_fit_reason_c": {"name": "analytics___salesforce_stg__lead_prospect_fit_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_prospect_fit_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_prospect_fit_score_test_c": {"name": "analytics___salesforce_stg__lead_prospect_fit_score_test_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_prospect_fit_score_test_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_prospect_intent_rank_c": {"name": "analytics___salesforce_stg__lead_prospect_intent_rank_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_prospect_intent_rank_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_prospect_intent_reason_c": {"name": "analytics___salesforce_stg__lead_prospect_intent_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_prospect_intent_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_prospecting_alexa_ranking_c": {"name": "analytics___salesforce_stg__lead_prospecting_alexa_ranking_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_prospecting_alexa_ranking_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_prospecting_fb_likes_c": {"name": "analytics___salesforce_stg__lead_prospecting_fb_likes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_prospecting_fb_likes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_prospecting_google_ads_spent_spyfu_c": {"name": "analytics___salesforce_stg__lead_prospecting_google_ads_spent_spyfu_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_prospecting_google_ads_spent_spyfu_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_rating": {"name": "analytics___salesforce_stg__lead_rating", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_rating", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_ready_for_routing_c": {"name": "analytics___salesforce_stg__lead_ready_for_routing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_ready_for_routing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_recordtypeid": {"name": "analytics___salesforce_stg__lead_recordtypeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_recordtypeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_recycling_status_c": {"name": "analytics___salesforce_stg__lead_recycling_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_recycling_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_referrals_traffic_share_c": {"name": "analytics___salesforce_stg__lead_referrals_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_referrals_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_referred_by_email_referral_form_c": {"name": "analytics___salesforce_stg__lead_referred_by_email_referral_form_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_referred_by_email_referral_form_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_referred_by_referral_form_c": {"name": "analytics___salesforce_stg__lead_referred_by_referral_form_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_referred_by_referral_form_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_referred_partner_code_c": {"name": "analytics___salesforce_stg__lead_referred_partner_code_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_referred_partner_code_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_referrer_agency_potential_c": {"name": "analytics___salesforce_stg__lead_referrer_agency_potential_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_referrer_agency_potential_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_referrer_c": {"name": "analytics___salesforce_stg__lead_referrer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_referrer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_referrer_name_c": {"name": "analytics___salesforce_stg__lead_referrer_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_referrer_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_referrer_owner_c": {"name": "analytics___salesforce_stg__lead_referrer_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_referrer_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_referrer_owner_email_c": {"name": "analytics___salesforce_stg__lead_referrer_owner_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_referrer_owner_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_referrer_owner_new_c": {"name": "analytics___salesforce_stg__lead_referrer_owner_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_referrer_owner_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_referrer_type_c": {"name": "analytics___salesforce_stg__lead_referrer_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_referrer_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_region_c": {"name": "analytics___salesforce_stg__lead_region_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_region_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_reviews_provider_from_list_c": {"name": "analytics___salesforce_stg__lead_reviews_provider_from_list_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_reviews_provider_from_list_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_ringlead_dms_status_c": {"name": "analytics___salesforce_stg__lead_ringlead_dms_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_ringlead_dms_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_ringlead_merged_ids_leads_c": {"name": "analytics___salesforce_stg__lead_ringlead_merged_ids_leads_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_ringlead_merged_ids_leads_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sales_estimated_monthly_orders_c": {"name": "analytics___salesforce_stg__lead_sales_estimated_monthly_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sales_estimated_monthly_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sales_estimated_subscribers_c": {"name": "analytics___salesforce_stg__lead_sales_estimated_subscribers_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sales_estimated_subscribers_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sales_segment_c": {"name": "analytics___salesforce_stg__lead_sales_segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sales_segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sales_territory_c": {"name": "analytics___salesforce_stg__lead_sales_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sales_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sales_tier_first_mql_c": {"name": "analytics___salesforce_stg__lead_sales_tier_first_mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sales_tier_first_mql_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sales_tier_routing_c": {"name": "analytics___salesforce_stg__lead_sales_tier_routing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sales_tier_routing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_salesloft1_active_lead_c": {"name": "analytics___salesforce_stg__lead_salesloft1_active_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_salesloft1_active_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_salesloft1_most_recent_cadence_name_c": {"name": "analytics___salesforce_stg__lead_salesloft1_most_recent_cadence_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_salesloft1_most_recent_cadence_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_salesloft1_most_recent_cadence_next_step_due_date_c": {"name": "analytics___salesforce_stg__lead_salesloft1_most_recent_cadence_next_step_due_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_salesloft1_most_recent_cadence_next_step_due_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_salesloft1_most_recent_last_completed_step_c": {"name": "analytics___salesforce_stg__lead_salesloft1_most_recent_last_completed_step_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_salesloft1_most_recent_last_completed_step_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_salutation": {"name": "analytics___salesforce_stg__lead_salutation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_salutation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_score_c": {"name": "analytics___salesforce_stg__lead_score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sdr_c": {"name": "analytics___salesforce_stg__lead_sdr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sdr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sdr_email_c": {"name": "analytics___salesforce_stg__lead_sdr_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sdr_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sdr_owner_c": {"name": "analytics___salesforce_stg__lead_sdr_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sdr_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sdr_role_c": {"name": "analytics___salesforce_stg__lead_sdr_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sdr_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_search_traffic_share_c": {"name": "analytics___salesforce_stg__lead_search_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_search_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_second_best_country_c": {"name": "analytics___salesforce_stg__lead_second_best_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_second_best_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_segment_id_c": {"name": "analytics___salesforce_stg__lead_segment_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_segment_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_shopify_plan_c": {"name": "analytics___salesforce_stg__lead_shopify_plan_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_shopify_plan_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sign_in_count_c": {"name": "analytics___salesforce_stg__lead_sign_in_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sign_in_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_similarweb_traffic_new_c": {"name": "analytics___salesforce_stg__lead_similarweb_traffic_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_similarweb_traffic_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_situation_c": {"name": "analytics___salesforce_stg__lead_situation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_situation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sla_status_c": {"name": "analytics___salesforce_stg__lead_sla_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sla_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sms_enabled_automations_c": {"name": "analytics___salesforce_stg__lead_sms_enabled_automations_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sms_enabled_automations_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sms_enabled_flows_c": {"name": "analytics___salesforce_stg__lead_sms_enabled_flows_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sms_enabled_flows_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sms_provider_c": {"name": "analytics___salesforce_stg__lead_sms_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sms_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sms_user_id_c": {"name": "analytics___salesforce_stg__lead_sms_user_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sms_user_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_social_traffic_share_c": {"name": "analytics___salesforce_stg__lead_social_traffic_share_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_social_traffic_share_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sql_assignment_c": {"name": "analytics___salesforce_stg__lead_sql_assignment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sql_assignment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_state": {"name": "analytics___salesforce_stg__lead_state", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_state", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_state_region_c": {"name": "analytics___salesforce_stg__lead_state_region_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_state_region_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_statecode": {"name": "analytics___salesforce_stg__lead_statecode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_statecode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_status": {"name": "analytics___salesforce_stg__lead_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_status_before_convert_c": {"name": "analytics___salesforce_stg__lead_status_before_convert_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_status_before_convert_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_status_swell_c": {"name": "analytics___salesforce_stg__lead_status_swell_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_status_swell_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_street": {"name": "analytics___salesforce_stg__lead_street", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_street", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sub_nurturing_reason_c": {"name": "analytics___salesforce_stg__lead_sub_nurturing_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sub_nurturing_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_subjective_score_c": {"name": "analytics___salesforce_stg__lead_subjective_score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_subjective_score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_subscribed_to_blog_c": {"name": "analytics___salesforce_stg__lead_subscribed_to_blog_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_subscribed_to_blog_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_subscription_billing_provider_c": {"name": "analytics___salesforce_stg__lead_subscription_billing_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_subscription_billing_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_swell_engagement_c": {"name": "analytics___salesforce_stg__lead_swell_engagement_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_swell_engagement_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_swell_package_c": {"name": "analytics___salesforce_stg__lead_swell_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_swell_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_sync_with_zendesk_c": {"name": "analytics___salesforce_stg__lead_sync_with_zendesk_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_sync_with_zendesk_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_systemmodstamp": {"name": "analytics___salesforce_stg__lead_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_territory_c": {"name": "analytics___salesforce_stg__lead_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_territory_new_c": {"name": "analytics___salesforce_stg__lead_territory_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_territory_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_third_best_country_c": {"name": "analytics___salesforce_stg__lead_third_best_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_third_best_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_time_to_mql_days_c": {"name": "analytics___salesforce_stg__lead_time_to_mql_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_time_to_mql_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_time_zone_formula_c": {"name": "analytics___salesforce_stg__lead_time_zone_formula_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_time_zone_formula_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_time_zone_new_c": {"name": "analytics___salesforce_stg__lead_time_zone_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_time_zone_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_title": {"name": "analytics___salesforce_stg__lead_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_top_country_c": {"name": "analytics___salesforce_stg__lead_top_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_top_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_top_of_funnel_sessions_c": {"name": "analytics___salesforce_stg__lead_top_of_funnel_sessions_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_top_of_funnel_sessions_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_top_of_funnel_touches_c": {"name": "analytics___salesforce_stg__lead_top_of_funnel_touches_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_top_of_funnel_touches_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_top_organic_keyword_c": {"name": "analytics___salesforce_stg__lead_top_organic_keyword_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_top_organic_keyword_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_top_paid_keyword_c": {"name": "analytics___salesforce_stg__lead_top_paid_keyword_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_top_paid_keyword_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_total_orders_c": {"name": "analytics___salesforce_stg__lead_total_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_total_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_total_orders_from_referral_links_shares_c": {"name": "analytics___salesforce_stg__lead_total_orders_from_referral_links_shares_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_total_orders_from_referral_links_shares_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_total_orders_swell_c": {"name": "analytics___salesforce_stg__lead_total_orders_swell_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_total_orders_swell_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_total_referrals_links_clickes_c": {"name": "analytics___salesforce_stg__lead_total_referrals_links_clickes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_total_referrals_links_clickes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_total_referrals_links_shares_c": {"name": "analytics___salesforce_stg__lead_total_referrals_links_shares_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_total_referrals_links_shares_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_total_revenue_from_referral_links_shares_c": {"name": "analytics___salesforce_stg__lead_total_revenue_from_referral_links_shares_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_total_revenue_from_referral_links_shares_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_total_reviews_c": {"name": "analytics___salesforce_stg__lead_total_reviews_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_total_reviews_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_total_sales_c": {"name": "analytics___salesforce_stg__lead_total_sales_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_total_sales_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_updated_manually_annual_revenue_c": {"name": "analytics___salesforce_stg__lead_updated_manually_annual_revenue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_updated_manually_annual_revenue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_updated_manually_country_c": {"name": "analytics___salesforce_stg__lead_updated_manually_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_updated_manually_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_upsolver_schema_version": {"name": "analytics___salesforce_stg__lead_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_user_id_c": {"name": "analytics___salesforce_stg__lead_user_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_user_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_utm_campaign_account_c": {"name": "analytics___salesforce_stg__lead_utm_campaign_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_utm_campaign_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_utm_campaign_c": {"name": "analytics___salesforce_stg__lead_utm_campaign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_utm_campaign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_utm_content_account_c": {"name": "analytics___salesforce_stg__lead_utm_content_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_utm_content_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_utm_content_c": {"name": "analytics___salesforce_stg__lead_utm_content_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_utm_content_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_utm_medium_account_c": {"name": "analytics___salesforce_stg__lead_utm_medium_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_utm_medium_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_utm_medium_c": {"name": "analytics___salesforce_stg__lead_utm_medium_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_utm_medium_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_utm_source_account_c": {"name": "analytics___salesforce_stg__lead_utm_source_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_utm_source_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_utm_source_c": {"name": "analytics___salesforce_stg__lead_utm_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_utm_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_utm_term_account_c": {"name": "analytics___salesforce_stg__lead_utm_term_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_utm_term_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_utm_term_c": {"name": "analytics___salesforce_stg__lead_utm_term_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_utm_term_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_was_referred_by_the_agency_c": {"name": "analytics___salesforce_stg__lead_was_referred_by_the_agency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_was_referred_by_the_agency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_web_traffic_c": {"name": "analytics___salesforce_stg__lead_web_traffic_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_web_traffic_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_website": {"name": "analytics___salesforce_stg__lead_website", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_website_text_c": {"name": "analytics___salesforce_stg__lead_website_text_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_website_text_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_wrong_number_indication_date_c": {"name": "analytics___salesforce_stg__lead_wrong_number_indication_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_wrong_number_indication_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_x18_digits_id_c": {"name": "analytics___salesforce_stg__lead_x18_digits_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_x18_digits_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_yotpo_industry_lead_c": {"name": "analytics___salesforce_stg__lead_yotpo_industry_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_yotpo_industry_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_yotpo_industry_verified_lead_c": {"name": "analytics___salesforce_stg__lead_yotpo_industry_verified_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_yotpo_industry_verified_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_yotpo_sub_industry_lead_c": {"name": "analytics___salesforce_stg__lead_yotpo_sub_industry_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_yotpo_sub_industry_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__lead_zendesk_sync_c": {"name": "analytics___salesforce_stg__lead_zendesk_sync_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__lead/analytics___salesforce_stg__lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__lead_zendesk_sync_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full": {"name": "analytics___salesforce_stg__livechattranscript_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Abandoned": {"name": "analytics___salesforce_stg__livechattranscript_full_Abandoned", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Abandoned", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_AccountId": {"name": "analytics___salesforce_stg__livechattranscript_full_AccountId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_AccountId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_App_Key_c": {"name": "analytics___salesforce_stg__livechattranscript_full_App_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_App_Key_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_AverageResponseTimeOperator": {"name": "analytics___salesforce_stg__livechattranscript_full_AverageResponseTimeOperator", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_AverageResponseTimeOperator", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_AverageResponseTimeVisitor": {"name": "analytics___salesforce_stg__livechattranscript_full_AverageResponseTimeVisitor", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_AverageResponseTimeVisitor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Body": {"name": "analytics___salesforce_stg__livechattranscript_full_Body", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Body", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Browser": {"name": "analytics___salesforce_stg__livechattranscript_full_Browser", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Browser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_BrowserLanguage": {"name": "analytics___salesforce_stg__livechattranscript_full_BrowserLanguage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_BrowserLanguage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Can_I_help_you_with_anything_else_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Can_I_help_you_with_anything_else_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Can_I_help_you_with_anything_else_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_CaseId": {"name": "analytics___salesforce_stg__livechattranscript_full_CaseId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_CaseId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_ChatDuration": {"name": "analytics___salesforce_stg__livechattranscript_full_ChatDuration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_ChatDuration", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_ChatKey": {"name": "analytics___salesforce_stg__livechattranscript_full_ChatKey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_ChatKey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Chat_Button_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Chat_Button_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Chat_Button_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Choice_selected_Installing_Yotpo_UGC_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Choice_selected_Installing_Yotpo_UGC_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Choice_selected_Installing_Yotpo_UGC_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Choice_selected_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Choice_selected_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Choice_selected_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Concern_Addressed_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Concern_Addressed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Concern_Addressed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Confused_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Confused_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Confused_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_ContactId": {"name": "analytics___salesforce_stg__livechattranscript_full_ContactId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_ContactId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_CreatedById": {"name": "analytics___salesforce_stg__livechattranscript_full_CreatedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_CreatedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_CreatedDate": {"name": "analytics___salesforce_stg__livechattranscript_full_CreatedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_CreatedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_CurrencyIsoCode": {"name": "analytics___salesforce_stg__livechattranscript_full_CurrencyIsoCode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_CurrencyIsoCode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Dialog_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Dialog_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Dialog_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_EndTime": {"name": "analytics___salesforce_stg__livechattranscript_full_EndTime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_EndTime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_EndedBy": {"name": "analytics___salesforce_stg__livechattranscript_full_EndedBy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_EndedBy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Id": {"name": "analytics___salesforce_stg__livechattranscript_full_Id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_IpAddress": {"name": "analytics___salesforce_stg__livechattranscript_full_IpAddress", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_IpAddress", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_IsChatbotSession": {"name": "analytics___salesforce_stg__livechattranscript_full_IsChatbotSession", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_IsChatbotSession", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_IsDeleted": {"name": "analytics___salesforce_stg__livechattranscript_full_IsDeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_IsDeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LastModifiedById": {"name": "analytics___salesforce_stg__livechattranscript_full_LastModifiedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LastModifiedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LastModifiedDate": {"name": "analytics___salesforce_stg__livechattranscript_full_LastModifiedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LastModifiedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LastReferencedDate": {"name": "analytics___salesforce_stg__livechattranscript_full_LastReferencedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LastReferencedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LastViewedDate": {"name": "analytics___salesforce_stg__livechattranscript_full_LastViewedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LastViewedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LeadId": {"name": "analytics___salesforce_stg__livechattranscript_full_LeadId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LeadId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LiveChatButtonId": {"name": "analytics___salesforce_stg__livechattranscript_full_LiveChatButtonId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LiveChatButtonId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LiveChatDeploymentId": {"name": "analytics___salesforce_stg__livechattranscript_full_LiveChatDeploymentId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LiveChatDeploymentId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LiveChatVisitorId": {"name": "analytics___salesforce_stg__livechattranscript_full_LiveChatVisitorId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_LiveChatVisitorId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Location": {"name": "analytics___salesforce_stg__livechattranscript_full_Location", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Location", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_MaxResponseTimeOperator": {"name": "analytics___salesforce_stg__livechattranscript_full_MaxResponseTimeOperator", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_MaxResponseTimeOperator", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_MaxResponseTimeVisitor": {"name": "analytics___salesforce_stg__livechattranscript_full_MaxResponseTimeVisitor", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_MaxResponseTimeVisitor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Merchant_ID_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Merchant_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Merchant_ID_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Name": {"name": "analytics___salesforce_stg__livechattranscript_full_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_OperatorMessageCount": {"name": "analytics___salesforce_stg__livechattranscript_full_OperatorMessageCount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_OperatorMessageCount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_OwnerId": {"name": "analytics___salesforce_stg__livechattranscript_full_OwnerId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_OwnerId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Platform": {"name": "analytics___salesforce_stg__livechattranscript_full_Platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_ReferrerUri": {"name": "analytics___salesforce_stg__livechattranscript_full_ReferrerUri", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_ReferrerUri", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Reply_to_Email_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Reply_to_Email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Reply_to_Email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_RequestTime": {"name": "analytics___salesforce_stg__livechattranscript_full_RequestTime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_RequestTime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_ScreenResolution": {"name": "analytics___salesforce_stg__livechattranscript_full_ScreenResolution", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_ScreenResolution", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_SkillId": {"name": "analytics___salesforce_stg__livechattranscript_full_SkillId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_SkillId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_StartTime": {"name": "analytics___salesforce_stg__livechattranscript_full_StartTime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_StartTime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Status": {"name": "analytics___salesforce_stg__livechattranscript_full_Status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_SupervisorTranscriptBody": {"name": "analytics___salesforce_stg__livechattranscript_full_SupervisorTranscriptBody", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_SupervisorTranscriptBody", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_SystemModstamp": {"name": "analytics___salesforce_stg__livechattranscript_full_SystemModstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_SystemModstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Topic_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Topic_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Topic_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_UserAgent": {"name": "analytics___salesforce_stg__livechattranscript_full_UserAgent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_UserAgent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_VisitorMessageCount": {"name": "analytics___salesforce_stg__livechattranscript_full_VisitorMessageCount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_VisitorMessageCount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_VisitorNetwork": {"name": "analytics___salesforce_stg__livechattranscript_full_VisitorNetwork", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_VisitorNetwork", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_WaitTime": {"name": "analytics___salesforce_stg__livechattranscript_full_WaitTime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_WaitTime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Was_This_Result_Helpful_Text_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Was_This_Result_Helpful_Text_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Was_This_Result_Helpful_Text_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Was_this_resault_helpful_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Was_this_resault_helpful_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Was_this_resault_helpful_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Welcome_Dialog_c": {"name": "analytics___salesforce_stg__livechattranscript_full_Welcome_Dialog_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_Welcome_Dialog_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full__sdc_batched_at": {"name": "analytics___salesforce_stg__livechattranscript_full__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full__sdc_extracted_at": {"name": "analytics___salesforce_stg__livechattranscript_full__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full__sdc_received_at": {"name": "analytics___salesforce_stg__livechattranscript_full__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full__sdc_sequence": {"name": "analytics___salesforce_stg__livechattranscript_full__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full__sdc_table_version": {"name": "analytics___salesforce_stg__livechattranscript_full__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__livechattranscript_full_rn": {"name": "analytics___salesforce_stg__livechattranscript_full_rn", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__livechattranscript_full/analytics___salesforce_stg__livechattranscript_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__livechattranscript_full_rn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c": {"name": "analytics___salesforce_stg__mql_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c", "block_contents": "A view pullig fields from the incremental rivery process of salesforce object mql."}, "doc.yoda.analytics___salesforce_stg__mql_c__rivery_last_update": {"name": "analytics___salesforce_stg__mql_c__rivery_last_update", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c__rivery_last_update", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c__rivery_river_id": {"name": "analytics___salesforce_stg__mql_c__rivery_river_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c__rivery_river_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c__rivery_run_id": {"name": "analytics___salesforce_stg__mql_c__rivery_run_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c__rivery_run_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_account_name_c": {"name": "analytics___salesforce_stg__mql_c_account_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_account_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_activity_id_c": {"name": "analytics___salesforce_stg__mql_c_activity_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_activity_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_automation_created_by_c": {"name": "analytics___salesforce_stg__mql_c_automation_created_by_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_automation_created_by_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_contact_record_c": {"name": "analytics___salesforce_stg__mql_c_contact_record_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_contact_record_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_created_by_chili_piper_c": {"name": "analytics___salesforce_stg__mql_c_created_by_chili_piper_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_created_by_chili_piper_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_createdbyid": {"name": "analytics___salesforce_stg__mql_c_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_createddate": {"name": "analytics___salesforce_stg__mql_c_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_currencyisocode": {"name": "analytics___salesforce_stg__mql_c_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_date_of_first_activity_c": {"name": "analytics___salesforce_stg__mql_c_date_of_first_activity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_date_of_first_activity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_demand_gen_unit_c": {"name": "analytics___salesforce_stg__mql_c_demand_gen_unit_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_demand_gen_unit_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_domain_c": {"name": "analytics___salesforce_stg__mql_c_domain_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_domain_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_email_address_c": {"name": "analytics___salesforce_stg__mql_c_email_address_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_email_address_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_id": {"name": "analytics___salesforce_stg__mql_c_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_is_rad_c": {"name": "analytics___salesforce_stg__mql_c_is_rad_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_is_rad_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_is_self_service_c": {"name": "analytics___salesforce_stg__mql_c_is_self_service_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_is_self_service_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_isdeleted": {"name": "analytics___salesforce_stg__mql_c_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_last_30_days_orders_c": {"name": "analytics___salesforce_stg__mql_c_last_30_days_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_last_30_days_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_last_30_days_orders_sms_c": {"name": "analytics___salesforce_stg__mql_c_last_30_days_orders_sms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_last_30_days_orders_sms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_last_30_days_swell_orders_c": {"name": "analytics___salesforce_stg__mql_c_last_30_days_swell_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_last_30_days_swell_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_lastactivitydate": {"name": "analytics___salesforce_stg__mql_c_lastactivitydate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_lastactivitydate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_lastmodifiedbyid": {"name": "analytics___salesforce_stg__mql_c_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_lastmodifieddate": {"name": "analytics___salesforce_stg__mql_c_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_lastreferenceddate": {"name": "analytics___salesforce_stg__mql_c_lastreferenceddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_lastreferenceddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_lastvieweddate": {"name": "analytics___salesforce_stg__mql_c_lastvieweddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_lastvieweddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_lead_record_c": {"name": "analytics___salesforce_stg__mql_c_lead_record_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_lead_record_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_lead_source_c": {"name": "analytics___salesforce_stg__mql_c_lead_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_lead_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_most_recent_assignment_bucket_c": {"name": "analytics___salesforce_stg__mql_c_most_recent_assignment_bucket_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_most_recent_assignment_bucket_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_most_recent_assignment_reason_c": {"name": "analytics___salesforce_stg__mql_c_most_recent_assignment_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_most_recent_assignment_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_most_recent_assignment_sub_reason_c": {"name": "analytics___salesforce_stg__mql_c_most_recent_assignment_sub_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_most_recent_assignment_sub_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_most_recent_engagement_reason_c": {"name": "analytics___salesforce_stg__mql_c_most_recent_engagement_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_most_recent_engagement_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_most_recent_engagement_sub_reason_c": {"name": "analytics___salesforce_stg__mql_c_most_recent_engagement_sub_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_most_recent_engagement_sub_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_mql_country_c": {"name": "analytics___salesforce_stg__mql_c_mql_country_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_mql_country_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_mql_date_c": {"name": "analytics___salesforce_stg__mql_c_mql_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_mql_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_mql_manual_create_c": {"name": "analytics___salesforce_stg__mql_c_mql_manual_create_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_mql_manual_create_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_mql_motion_c": {"name": "analytics___salesforce_stg__mql_c_mql_motion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_mql_motion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_mql_product_preference_c": {"name": "analytics___salesforce_stg__mql_c_mql_product_preference_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_mql_product_preference_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_name": {"name": "analytics___salesforce_stg__mql_c_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_number_of_touch_points_c": {"name": "analytics___salesforce_stg__mql_c_number_of_touch_points_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_number_of_touch_points_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_number_of_touchpoints_before_nurturing_c": {"name": "analytics___salesforce_stg__mql_c_number_of_touchpoints_before_nurturing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_number_of_touchpoints_before_nurturing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_orders_month_estimate_c": {"name": "analytics___salesforce_stg__mql_c_orders_month_estimate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_orders_month_estimate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_owner_role_c": {"name": "analytics___salesforce_stg__mql_c_owner_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_owner_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_ownerid": {"name": "analytics___salesforce_stg__mql_c_ownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_ownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_package_category_c": {"name": "analytics___salesforce_stg__mql_c_package_category_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_package_category_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_platform_c": {"name": "analytics___salesforce_stg__mql_c_platform_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_platform_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_product_qualified_lead_c": {"name": "analytics___salesforce_stg__mql_c_product_qualified_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_product_qualified_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_prospect_fit_rank_c": {"name": "analytics___salesforce_stg__mql_c_prospect_fit_rank_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_prospect_fit_rank_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_sales_estimated_monthly_orders_c": {"name": "analytics___salesforce_stg__mql_c_sales_estimated_monthly_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_sales_estimated_monthly_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_sdr_owner_c": {"name": "analytics___salesforce_stg__mql_c_sdr_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_sdr_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_segment_c": {"name": "analytics___salesforce_stg__mql_c_segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_similarweb_traffic_new_c": {"name": "analytics___salesforce_stg__mql_c_similarweb_traffic_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_similarweb_traffic_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_sixsense_profile_fit_c": {"name": "analytics___salesforce_stg__mql_c_sixsense_profile_fit_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_sixsense_profile_fit_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_status_upon_creation_c": {"name": "analytics___salesforce_stg__mql_c_status_upon_creation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_status_upon_creation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_systemmodstamp": {"name": "analytics___salesforce_stg__mql_c_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_territory_c": {"name": "analytics___salesforce_stg__mql_c_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_territory_new_c": {"name": "analytics___salesforce_stg__mql_c_territory_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_territory_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_time_to_first_response_c": {"name": "analytics___salesforce_stg__mql_c_time_to_first_response_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_time_to_first_response_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_user_id_c": {"name": "analytics___salesforce_stg__mql_c_user_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_user_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_yotpo_industry_c": {"name": "analytics___salesforce_stg__mql_c_yotpo_industry_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c/analytics___salesforce_stg__mql_c.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_yotpo_industry_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_full": {"name": "analytics___salesforce_stg__mql_c_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_full", "block_contents": "A view pullig fields from the full rivery process of salesforce object mql."}, "doc.yoda.analytics___salesforce_stg__mql_c_full__rivery_last_update": {"name": "analytics___salesforce_stg__mql_c_full__rivery_last_update", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_full__rivery_last_update", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_full__rivery_river_id": {"name": "analytics___salesforce_stg__mql_c_full__rivery_river_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_full__rivery_river_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_full__rivery_run_id": {"name": "analytics___salesforce_stg__mql_c_full__rivery_run_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_full__rivery_run_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_full_created_by_chili_piper_c": {"name": "analytics___salesforce_stg__mql_c_full_created_by_chili_piper_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_full_created_by_chili_piper_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_full_id": {"name": "analytics___salesforce_stg__mql_c_full_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_full_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_full_lead_or_contact_current_territory_c": {"name": "analytics___salesforce_stg__mql_c_full_lead_or_contact_current_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_full_lead_or_contact_current_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_full_product_qualified_lead_c": {"name": "analytics___salesforce_stg__mql_c_full_product_qualified_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_full_product_qualified_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_full_systemmodstamp": {"name": "analytics___salesforce_stg__mql_c_full_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_full_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__mql_c_full_territory_new_c": {"name": "analytics___salesforce_stg__mql_c_full_territory_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__mql_c_full/analytics___salesforce_stg__mql_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mql_c_full_territory_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full": {"name": "analytics___salesforce_stg__onboarding_project_c_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_APP_Key_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_APP_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_APP_Key_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Account_ID_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Account_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Account_ID_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Account_Name_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Account_Name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Account_Name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Account_Product_Currency_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Account_Product_Currency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Account_Product_Currency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Account_Product_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Account_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Account_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Account_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Actual_Duration_NET_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Actual_Duration_NET_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Actual_Duration_NET_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Agency_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Agency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Agency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Assign_SE_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Assign_SE_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Assign_SE_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_CSM_Email_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_CSM_Email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_CSM_Email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_CSM_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_CSM_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_CSM_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_CS_Segment_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_CS_Segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_CS_Segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Cancelled_Date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Cancelled_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Cancelled_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Cases_Report_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Cases_Report_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Cases_Report_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Complexity_Score_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Complexity_Score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Complexity_Score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Contract_Start_Date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Contract_Start_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Contract_Start_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_CreatedById": {"name": "analytics___salesforce_stg__onboarding_project_c_full_CreatedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_CreatedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_CreatedDate": {"name": "analytics___salesforce_stg__onboarding_project_c_full_CreatedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_CreatedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Customer_Care_OB_project_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Customer_Care_OB_project_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Customer_Care_OB_project_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Customization_Level_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Customization_Level_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Customization_Level_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Date_onboarding_completed_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Date_onboarding_completed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Date_onboarding_completed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Days_Since_Onboarding_Creation_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Days_Since_Onboarding_Creation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Days_Since_Onboarding_Creation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Days_since_start_date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Days_since_start_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Days_since_start_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Domain_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Domain_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Domain_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Duration_SE_Kickoff_to_Completion_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Duration_SE_Kickoff_to_Completion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Duration_SE_Kickoff_to_Completion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Final_AP_initial_won_date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Final_AP_initial_won_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Final_AP_initial_won_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Gross_duration_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Gross_duration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Gross_duration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Headless_platform_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Headless_platform_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Headless_platform_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Id": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_IsDeleted": {"name": "analytics___salesforce_stg__onboarding_project_c_full_IsDeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_IsDeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Is_Owner_is_the_current_User_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Is_Owner_is_the_current_User_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Is_Owner_is_the_current_User_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_KOC_Date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_KOC_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_KOC_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_LastModifiedById": {"name": "analytics___salesforce_stg__onboarding_project_c_full_LastModifiedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_LastModifiedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_LastModifiedDate": {"name": "analytics___salesforce_stg__onboarding_project_c_full_LastModifiedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_LastModifiedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Merchant_Id_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Merchant_Id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Merchant_Id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Multi_Store_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Multi_Store_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Multi_Store_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Multi_product_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Multi_product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Multi_product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Name": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Net_duration_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Net_duration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Net_duration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Number_Of_Domains_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Number_Of_Domains_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Number_Of_Domains_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Onboarding_Manager_CSM_Team_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Onboarding_Manager_CSM_Team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Onboarding_Manager_CSM_Team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Onboarding_completed_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Onboarding_completed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Onboarding_completed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Onboarding_duration_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Onboarding_duration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Onboarding_duration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Onboarding_start_date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Onboarding_start_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Onboarding_start_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Opportunity_Package_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Opportunity_Package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Opportunity_Package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Organization_Key_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Organization_Key_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Organization_Key_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Owner_Role_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Owner_Role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Owner_Role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Owner_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Paused_Duration_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Paused_Duration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Paused_Duration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Platform_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Platform_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Platform_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Process_Paused_Date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Process_Paused_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Process_Paused_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Process_Resumed_Date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Process_Resumed_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Process_Resumed_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Product_Line_ACV_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Product_Line_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Product_Line_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Product_Line_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Product_Line_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Product_Line_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Proejct_Actual_duration_gross_Days_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Proejct_Actual_duration_gross_Days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Proejct_Actual_duration_gross_Days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Project_Completion_Date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Project_Completion_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Project_Completion_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Project_Due_Date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Project_Due_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Project_Due_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Project_Planned_Duration_Days_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Project_Planned_Duration_Days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Project_Planned_Duration_Days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Project_Start_Date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Project_Start_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Project_Start_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Red_Flag_Date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Red_Flag_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Red_Flag_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Red_Flag_Reason_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Red_Flag_Reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Red_Flag_Reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Red_flag_Bucket_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Red_flag_Bucket_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Red_flag_Bucket_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Red_flag_Notes_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Red_flag_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Red_flag_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Relevant_Onboarding_Manager_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Relevant_Onboarding_Manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Relevant_Onboarding_Manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_SE_Needed_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_SE_Needed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_SE_Needed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Stage_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Stage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Stage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_SystemModstamp": {"name": "analytics___salesforce_stg__onboarding_project_c_full_SystemModstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_SystemModstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Target_Launch_Date_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Target_Launch_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Target_Launch_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_The_Reason_for_the_onboarding_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_The_Reason_for_the_onboarding_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_The_Reason_for_the_onboarding_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Total_ACV_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Total_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Total_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Total_Score_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_Total_Score_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_Total_Score_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_X18_Digits_Id_c": {"name": "analytics___salesforce_stg__onboarding_project_c_full_X18_Digits_Id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_X18_Digits_Id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full__sdc_batched_at": {"name": "analytics___salesforce_stg__onboarding_project_c_full__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full__sdc_extracted_at": {"name": "analytics___salesforce_stg__onboarding_project_c_full__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full__sdc_received_at": {"name": "analytics___salesforce_stg__onboarding_project_c_full__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full__sdc_sequence": {"name": "analytics___salesforce_stg__onboarding_project_c_full__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full__sdc_table_version": {"name": "analytics___salesforce_stg__onboarding_project_c_full__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_rn": {"name": "analytics___salesforce_stg__onboarding_project_c_full_rn", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__onboarding_project_c_full/analytics___salesforce_stg__onboarding_project_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__onboarding_project_c_full_rn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity": {"name": "analytics___salesforce_stg__opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity", "block_contents": "A view for salesforce opportunity object including all non-formula fields pulled in Rivery incremental river"}, "doc.yoda.analytics___salesforce_stg__opportunity_account_from_opportunity_c": {"name": "analytics___salesforce_stg__opportunity_account_from_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_account_from_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_account_manager_assignment_date_c": {"name": "analytics___salesforce_stg__opportunity_account_manager_assignment_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_account_manager_assignment_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_accountid": {"name": "analytics___salesforce_stg__opportunity_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_activitymetricid": {"name": "analytics___salesforce_stg__opportunity_activitymetricid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_activitymetricid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_activitymetricrollupid": {"name": "analytics___salesforce_stg__opportunity_activitymetricrollupid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_activitymetricrollupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_actual_end_date_c": {"name": "analytics___salesforce_stg__opportunity_actual_end_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_actual_end_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_actual_end_date_new_c": {"name": "analytics___salesforce_stg__opportunity_actual_end_date_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_actual_end_date_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_add_auto_renew_clause_c": {"name": "analytics___salesforce_stg__opportunity_add_auto_renew_clause_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_add_auto_renew_clause_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_add_on_product_c": {"name": "analytics___salesforce_stg__opportunity_add_on_product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_add_on_product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_add_to_winback_process_c": {"name": "analytics___salesforce_stg__opportunity_add_to_winback_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_add_to_winback_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_added_extra_seats_c": {"name": "analytics___salesforce_stg__opportunity_added_extra_seats_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_added_extra_seats_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_added_to_lockdown_process_date_c": {"name": "analytics___salesforce_stg__opportunity_added_to_lockdown_process_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_added_to_lockdown_process_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_ae_forecast_category_c": {"name": "analytics___salesforce_stg__opportunity_ae_forecast_category_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_ae_forecast_category_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_align_with_original_contract_renewal_c": {"name": "analytics___salesforce_stg__opportunity_align_with_original_contract_renewal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_align_with_original_contract_renewal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_amount": {"name": "analytics___salesforce_stg__opportunity_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_annual_products_c": {"name": "analytics___salesforce_stg__opportunity_annual_products_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_annual_products_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_annual_reviews_for_syndication_c": {"name": "analytics___salesforce_stg__opportunity_annual_reviews_for_syndication_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_annual_reviews_for_syndication_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_ar_helper_order_exclusion_c": {"name": "analytics___salesforce_stg__opportunity_ar_helper_order_exclusion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_ar_helper_order_exclusion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_ask_to_renew_c": {"name": "analytics___salesforce_stg__opportunity_ask_to_renew_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_ask_to_renew_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_attribution_channel_c": {"name": "analytics___salesforce_stg__opportunity_attribution_channel_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_attribution_channel_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_auto_closed_by_ar_c": {"name": "analytics___salesforce_stg__opportunity_auto_closed_by_ar_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_auto_closed_by_ar_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_auto_renewal_contact_name_c": {"name": "analytics___salesforce_stg__opportunity_auto_renewal_contact_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_auto_renewal_contact_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_bill_to_c": {"name": "analytics___salesforce_stg__opportunity_bill_to_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_bill_to_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_billing_frequency_c": {"name": "analytics___salesforce_stg__opportunity_billing_frequency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_billing_frequency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_bundle_total_c": {"name": "analytics___salesforce_stg__opportunity_bundle_total_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_bundle_total_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_campaignid": {"name": "analytics___salesforce_stg__opportunity_campaignid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_campaignid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_cancellation_date_c": {"name": "analytics___salesforce_stg__opportunity_cancellation_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_cancellation_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_cancelled_during_trial_c": {"name": "analytics___salesforce_stg__opportunity_cancelled_during_trial_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_cancelled_during_trial_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_change_currency_flag_c": {"name": "analytics___salesforce_stg__opportunity_change_currency_flag_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_change_currency_flag_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_client_s_agency_c": {"name": "analytics___salesforce_stg__opportunity_client_s_agency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_client_s_agency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_close_date_pushed_c": {"name": "analytics___salesforce_stg__opportunity_close_date_pushed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_close_date_pushed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_closedate": {"name": "analytics___salesforce_stg__opportunity_closedate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_closedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_combined_opportunities_earr_c": {"name": "analytics___salesforce_stg__opportunity_combined_opportunities_earr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_combined_opportunities_earr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_commercial_contact_c": {"name": "analytics___salesforce_stg__opportunity_commercial_contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_commercial_contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_company_expansion_c": {"name": "analytics___salesforce_stg__opportunity_company_expansion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_company_expansion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_concession_reason_c": {"name": "analytics___salesforce_stg__opportunity_concession_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_concession_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_contactid": {"name": "analytics___salesforce_stg__opportunity_contactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_contactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_contract_duration_c": {"name": "analytics___salesforce_stg__opportunity_contract_duration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_contract_duration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_contract_renewal_helpe_number_c": {"name": "analytics___salesforce_stg__opportunity_contract_renewal_helpe_number_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_contract_renewal_helpe_number_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_contract_renewal_helper_number_year_c": {"name": "analytics___salesforce_stg__opportunity_contract_renewal_helper_number_year_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_contract_renewal_helper_number_year_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_contract_renewal_helper_record_type_c": {"name": "analytics___salesforce_stg__opportunity_contract_renewal_helper_record_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_contract_renewal_helper_record_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_contract_renewal_manual_c": {"name": "analytics___salesforce_stg__opportunity_contract_renewal_manual_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_contract_renewal_manual_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_conversion_rate_raw_c": {"name": "analytics___salesforce_stg__opportunity_conversion_rate_raw_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_conversion_rate_raw_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_converted_c": {"name": "analytics___salesforce_stg__opportunity_converted_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_converted_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_covid_implications_c": {"name": "analytics___salesforce_stg__opportunity_covid_implications_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_covid_implications_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_create_potential_opportunity_c": {"name": "analytics___salesforce_stg__opportunity_create_potential_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_create_potential_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_created_from_cs_lead_c": {"name": "analytics___salesforce_stg__opportunity_created_from_cs_lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_created_from_cs_lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_createdbyid": {"name": "analytics___salesforce_stg__opportunity_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_createddate": {"name": "analytics___salesforce_stg__opportunity_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_critical_event_c": {"name": "analytics___salesforce_stg__opportunity_critical_event_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_critical_event_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_cs_comp_paid_c": {"name": "analytics___salesforce_stg__opportunity_cs_comp_paid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_cs_comp_paid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_csm_team_leader_c": {"name": "analytics___salesforce_stg__opportunity_csm_team_leader_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_csm_team_leader_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_ctp_code_c": {"name": "analytics___salesforce_stg__opportunity_ctp_code_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_ctp_code_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_currencyisocode": {"name": "analytics___salesforce_stg__opportunity_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_current_acv_for_retention_usd_loyalty_c": {"name": "analytics___salesforce_stg__opportunity_current_acv_for_retention_usd_loyalty_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_current_acv_for_retention_usd_loyalty_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_current_acv_for_retention_usd_sms_c": {"name": "analytics___salesforce_stg__opportunity_current_acv_for_retention_usd_sms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_current_acv_for_retention_usd_sms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_current_acv_for_retention_usd_ugc_c": {"name": "analytics___salesforce_stg__opportunity_current_acv_for_retention_usd_ugc_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_current_acv_for_retention_usd_ugc_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_current_contact_role_c": {"name": "analytics___salesforce_stg__opportunity_current_contact_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_current_contact_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_customer_refund_required_c": {"name": "analytics___salesforce_stg__opportunity_customer_refund_required_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_customer_refund_required_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_deal_type_as_per_deal_summary_c": {"name": "analytics___salesforce_stg__opportunity_deal_type_as_per_deal_summary_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_deal_type_as_per_deal_summary_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_deal_type_c": {"name": "analytics___salesforce_stg__opportunity_deal_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_deal_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_additional_comments_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_additional_comments_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_additional_comments_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_custom_terms_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_custom_terms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_custom_terms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_domain_list_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_domain_list_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_domain_list_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_end_date_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_end_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_end_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_main_add_on_list_price_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_main_add_on_list_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_main_add_on_list_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_main_add_on_total_price_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_main_add_on_total_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_main_add_on_total_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_new_address_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_new_address_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_new_address_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_quote_id_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_quote_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_quote_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_signed_date_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_signed_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_signed_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_stage_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_stage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_stage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_total_seats_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_total_seats_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_total_seats_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_url_c": {"name": "analytics___salesforce_stg__opportunity_dealhub_url_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_dealhub_url_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_decision_c": {"name": "analytics___salesforce_stg__opportunity_decision_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_decision_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_decision_maker_job_title_c": {"name": "analytics___salesforce_stg__opportunity_decision_maker_job_title_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_decision_maker_job_title_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_delayed_start_date_approved_partners_c": {"name": "analytics___salesforce_stg__opportunity_delayed_start_date_approved_partners_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_delayed_start_date_approved_partners_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_deprovisioning_outcome_c": {"name": "analytics___salesforce_stg__opportunity_deprovisioning_outcome_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_deprovisioning_outcome_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_description": {"name": "analytics___salesforce_stg__opportunity_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_discount_c": {"name": "analytics___salesforce_stg__opportunity_discount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_discount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_do_not_update_territory_c": {"name": "analytics___salesforce_stg__opportunity_do_not_update_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_do_not_update_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_done_t_send_auto_renewal_notification_c": {"name": "analytics___salesforce_stg__opportunity_done_t_send_auto_renewal_notification_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_done_t_send_auto_renewal_notification_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_downgraded_package_c": {"name": "analytics___salesforce_stg__opportunity_downgraded_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_downgraded_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_duplicate_product_family_c": {"name": "analytics___salesforce_stg__opportunity_duplicate_product_family_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_duplicate_product_family_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_early_release_for_partners_c": {"name": "analytics___salesforce_stg__opportunity_early_release_for_partners_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_early_release_for_partners_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_early_release_from_c": {"name": "analytics___salesforce_stg__opportunity_early_release_from_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_early_release_from_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_earr_usd_c": {"name": "analytics___salesforce_stg__opportunity_earr_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_earr_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_email_intent_c": {"name": "analytics___salesforce_stg__opportunity_email_intent_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_email_intent_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_email_marketing_earr_c": {"name": "analytics___salesforce_stg__opportunity_email_marketing_earr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_email_marketing_earr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_end_date_c": {"name": "analytics___salesforce_stg__opportunity_end_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_end_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_end_of_contract_extension_days_c": {"name": "analytics___salesforce_stg__opportunity_end_of_contract_extension_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_end_of_contract_extension_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_end_of_contract_extension_month_c": {"name": "analytics___salesforce_stg__opportunity_end_of_contract_extension_month_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_end_of_contract_extension_month_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_end_of_opt_out_period_c": {"name": "analytics___salesforce_stg__opportunity_end_of_opt_out_period_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_end_of_opt_out_period_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_entered_closed_c": {"name": "analytics___salesforce_stg__opportunity_entered_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_entered_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_entered_contract_signed_c": {"name": "analytics___salesforce_stg__opportunity_entered_contract_signed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_entered_contract_signed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_entered_contracting_c": {"name": "analytics___salesforce_stg__opportunity_entered_contracting_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_entered_contracting_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_entered_demo_c": {"name": "analytics___salesforce_stg__opportunity_entered_demo_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_entered_demo_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_entered_discovery_c": {"name": "analytics___salesforce_stg__opportunity_entered_discovery_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_entered_discovery_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_entered_evaluation_c": {"name": "analytics___salesforce_stg__opportunity_entered_evaluation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_entered_evaluation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_entered_propose_c": {"name": "analytics___salesforce_stg__opportunity_entered_propose_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_entered_propose_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_entered_quote_email_sent_c": {"name": "analytics___salesforce_stg__opportunity_entered_quote_email_sent_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_entered_quote_email_sent_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_entered_to_auto_renewal_process_date_c": {"name": "analytics___salesforce_stg__opportunity_entered_to_auto_renewal_process_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_entered_to_auto_renewal_process_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_entered_to_renewal_assist_process_date_c": {"name": "analytics___salesforce_stg__opportunity_entered_to_renewal_assist_process_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_entered_to_renewal_assist_process_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_estimated_aov_c": {"name": "analytics___salesforce_stg__opportunity_estimated_aov_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_estimated_aov_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_estimated_review_requests_per_month_c": {"name": "analytics___salesforce_stg__opportunity_estimated_review_requests_per_month_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_estimated_review_requests_per_month_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_estimated_subscriptions_gmv_c": {"name": "analytics___salesforce_stg__opportunity_estimated_subscriptions_gmv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_estimated_subscriptions_gmv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_exclude_from_auto_renewal_process_c": {"name": "analytics___salesforce_stg__opportunity_exclude_from_auto_renewal_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_exclude_from_auto_renewal_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_exclude_from_feedback_process_c": {"name": "analytics___salesforce_stg__opportunity_exclude_from_feedback_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_exclude_from_feedback_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_exclude_from_no_touch_process_c": {"name": "analytics___salesforce_stg__opportunity_exclude_from_no_touch_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_exclude_from_no_touch_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_exclude_from_renewal_reminder_c": {"name": "analytics___salesforce_stg__opportunity_exclude_from_renewal_reminder_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_exclude_from_renewal_reminder_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_excluded_from_comp_on_c": {"name": "analytics___salesforce_stg__opportunity_excluded_from_comp_on_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_excluded_from_comp_on_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_expiration_date_c": {"name": "analytics___salesforce_stg__opportunity_expiration_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_expiration_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_extra_domain_pricing_c": {"name": "analytics___salesforce_stg__opportunity_extra_domain_pricing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_extra_domain_pricing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_fiscal": {"name": "analytics___salesforce_stg__opportunity_fiscal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_fiscal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_follow_up_date_2_c": {"name": "analytics___salesforce_stg__opportunity_follow_up_date_2_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_follow_up_date_2_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_follow_up_in_c": {"name": "analytics___salesforce_stg__opportunity_follow_up_in_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_follow_up_in_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_forecastcategory": {"name": "analytics___salesforce_stg__opportunity_forecastcategory", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_forecastcategory", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_forecastcategoryname": {"name": "analytics___salesforce_stg__opportunity_forecastcategoryname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_forecastcategoryname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_free_months_for_contract_alignment_c": {"name": "analytics___salesforce_stg__opportunity_free_months_for_contract_alignment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_free_months_for_contract_alignment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_free_period_charge_flag_c": {"name": "analytics___salesforce_stg__opportunity_free_period_charge_flag_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_free_period_charge_flag_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_gmv_c": {"name": "analytics___salesforce_stg__opportunity_gmv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_gmv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_gold_earr_usd_c": {"name": "analytics___salesforce_stg__opportunity_gold_earr_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_gold_earr_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_gong_currentgenerators_c": {"name": "analytics___salesforce_stg__opportunity_gong_currentgenerators_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_gong_currentgenerators_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_gong_deliveryinstallationstatus_c": {"name": "analytics___salesforce_stg__opportunity_gong_deliveryinstallationstatus_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_gong_deliveryinstallationstatus_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_gong_maincompetitors_c": {"name": "analytics___salesforce_stg__opportunity_gong_maincompetitors_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_gong_maincompetitors_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_gong_ordernumber_c": {"name": "analytics___salesforce_stg__opportunity_gong_ordernumber_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_gong_ordernumber_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_gong_trackingnumber_c": {"name": "analytics___salesforce_stg__opportunity_gong_trackingnumber_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_gong_trackingnumber_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_good_fit_for_the_annual_plan_opp_c": {"name": "analytics___salesforce_stg__opportunity_good_fit_for_the_annual_plan_opp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_good_fit_for_the_annual_plan_opp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_hasopenactivity": {"name": "analytics___salesforce_stg__opportunity_hasopenactivity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_hasopenactivity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_hasopportunitylineitem": {"name": "analytics___salesforce_stg__opportunity_hasopportunitylineitem", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_hasopportunitylineitem", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_hasoverduetask": {"name": "analytics___salesforce_stg__opportunity_hasoverduetask", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_hasoverduetask", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_hidden_lost_reason_values_c": {"name": "analytics___salesforce_stg__opportunity_hidden_lost_reason_values_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_hidden_lost_reason_values_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_hidden_lost_reason_values_renewal_opp_c": {"name": "analytics___salesforce_stg__opportunity_hidden_lost_reason_values_renewal_opp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_hidden_lost_reason_values_renewal_opp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_id": {"name": "analytics___salesforce_stg__opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_impact_c": {"name": "analytics___salesforce_stg__opportunity_impact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_impact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_include_in_auto_renewal_process_c": {"name": "analytics___salesforce_stg__opportunity_include_in_auto_renewal_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_include_in_auto_renewal_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_include_in_no_touch_process_c": {"name": "analytics___salesforce_stg__opportunity_include_in_no_touch_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_include_in_no_touch_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_include_mr_c": {"name": "analytics___salesforce_stg__opportunity_include_mr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_include_mr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_included_seats_c": {"name": "analytics___salesforce_stg__opportunity_included_seats_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_included_seats_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_includes_self_service_product_c": {"name": "analytics___salesforce_stg__opportunity_includes_self_service_product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_includes_self_service_product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_includes_sms_product_c": {"name": "analytics___salesforce_stg__opportunity_includes_sms_product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_includes_sms_product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_includes_syndication_c": {"name": "analytics___salesforce_stg__opportunity_includes_syndication_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_includes_syndication_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_initial_account_product_process_c": {"name": "analytics___salesforce_stg__opportunity_initial_account_product_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_initial_account_product_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_initial_relevant_csm_update_c": {"name": "analytics___salesforce_stg__opportunity_initial_relevant_csm_update_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_initial_relevant_csm_update_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_initiate_contract_renewal_datafix_c": {"name": "analytics___salesforce_stg__opportunity_initiate_contract_renewal_datafix_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_initiate_contract_renewal_datafix_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_initiate_deal_type_calculation_c": {"name": "analytics___salesforce_stg__opportunity_initiate_deal_type_calculation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_initiate_deal_type_calculation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_initiate_renewal_opportunity_creation_c": {"name": "analytics___salesforce_stg__opportunity_initiate_renewal_opportunity_creation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_initiate_renewal_opportunity_creation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_initiate_rev_share_process_temp_c": {"name": "analytics___salesforce_stg__opportunity_initiate_rev_share_process_temp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_initiate_rev_share_process_temp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_initiate_tcv_flow_c": {"name": "analytics___salesforce_stg__opportunity_initiate_tcv_flow_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_initiate_tcv_flow_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_insights_product_name_c": {"name": "analytics___salesforce_stg__opportunity_insights_product_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_insights_product_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_invoices_in_dunning_c": {"name": "analytics___salesforce_stg__opportunity_invoices_in_dunning_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_invoices_in_dunning_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_is_active_subscription_c": {"name": "analytics___salesforce_stg__opportunity_is_active_subscription_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_is_active_subscription_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_is_bundle_c": {"name": "analytics___salesforce_stg__opportunity_is_bundle_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_is_bundle_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_is_this_a_downgrade_to_a_monthly_plan_c": {"name": "analytics___salesforce_stg__opportunity_is_this_a_downgrade_to_a_monthly_plan_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_is_this_a_downgrade_to_a_monthly_plan_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_isclosed": {"name": "analytics___salesforce_stg__opportunity_isclosed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_isclosed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_isdeleted": {"name": "analytics___salesforce_stg__opportunity_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_iswon": {"name": "analytics___salesforce_stg__opportunity_iswon", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_iswon", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_key_agency_stakeholder_contact_c": {"name": "analytics___salesforce_stg__opportunity_key_agency_stakeholder_contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_key_agency_stakeholder_contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_l_r_number_of_total_orders_included_c": {"name": "analytics___salesforce_stg__opportunity_l_r_number_of_total_orders_included_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_l_r_number_of_total_orders_included_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_l_r_orders_included_yearly_c": {"name": "analytics___salesforce_stg__opportunity_l_r_orders_included_yearly_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_l_r_orders_included_yearly_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_last_activity_date_c": {"name": "analytics___salesforce_stg__opportunity_last_activity_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_last_activity_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_last_invoice_end_date_c": {"name": "analytics___salesforce_stg__opportunity_last_invoice_end_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_last_invoice_end_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_last_invoice_fully_paid_c": {"name": "analytics___salesforce_stg__opportunity_last_invoice_fully_paid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_last_invoice_fully_paid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_lastactivitydate": {"name": "analytics___salesforce_stg__opportunity_lastactivitydate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_lastactivitydate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_lastmodifiedbyid": {"name": "analytics___salesforce_stg__opportunity_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_lastmodifieddate": {"name": "analytics___salesforce_stg__opportunity_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_lastreferenceddate": {"name": "analytics___salesforce_stg__opportunity_lastreferenceddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_lastreferenceddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_lastvieweddate": {"name": "analytics___salesforce_stg__opportunity_lastvieweddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_lastvieweddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_law_reason_c": {"name": "analytics___salesforce_stg__opportunity_law_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_law_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_lead_id_c": {"name": "analytics___salesforce_stg__opportunity_lead_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_lead_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_leadsource": {"name": "analytics___salesforce_stg__opportunity_leadsource", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_leadsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_locked_account_c": {"name": "analytics___salesforce_stg__opportunity_locked_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_locked_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_loss_reason_lr_c": {"name": "analytics___salesforce_stg__opportunity_loss_reason_lr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_loss_reason_lr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_loss_reason_reviews_c": {"name": "analytics___salesforce_stg__opportunity_loss_reason_reviews_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_loss_reason_reviews_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_loss_reason_sms_c": {"name": "analytics___salesforce_stg__opportunity_loss_reason_sms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_loss_reason_sms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_loss_reason_subscription_c": {"name": "analytics___salesforce_stg__opportunity_loss_reason_subscription_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_loss_reason_subscription_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_loss_reason_vms_c": {"name": "analytics___salesforce_stg__opportunity_loss_reason_vms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_loss_reason_vms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_loss_to_syndication_c": {"name": "analytics___salesforce_stg__opportunity_loss_to_syndication_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_loss_to_syndication_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_lost_details_update_date_c": {"name": "analytics___salesforce_stg__opportunity_lost_details_update_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_lost_details_update_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_lost_main_products_c": {"name": "analytics___salesforce_stg__opportunity_lost_main_products_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_lost_main_products_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_lost_opps_products_considered_c": {"name": "analytics___salesforce_stg__opportunity_lost_opps_products_considered_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_lost_opps_products_considered_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_lost_sub_reason_c": {"name": "analytics___salesforce_stg__opportunity_lost_sub_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_lost_sub_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_lost_updated_through_flow_c": {"name": "analytics___salesforce_stg__opportunity_lost_updated_through_flow_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_lost_updated_through_flow_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_loyalty_and_referrals_competitors_c": {"name": "analytics___salesforce_stg__opportunity_loyalty_and_referrals_competitors_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_loyalty_and_referrals_competitors_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_loyalty_csm_manager_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_loyalty_csm_manager_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_loyalty_csm_manager_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_loyalty_csm_team_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_loyalty_csm_team_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_loyalty_csm_team_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_loyalty_csm_upon_closed_won_c": {"name": "analytics___salesforce_stg__opportunity_loyalty_csm_upon_closed_won_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_loyalty_csm_upon_closed_won_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_main_csm_c": {"name": "analytics___salesforce_stg__opportunity_main_csm_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_main_csm_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_main_package_discount_c": {"name": "analytics___salesforce_stg__opportunity_main_package_discount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_main_package_discount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_main_package_prodcut_c": {"name": "analytics___salesforce_stg__opportunity_main_package_prodcut_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_main_package_prodcut_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_main_product_families_c": {"name": "analytics___salesforce_stg__opportunity_main_product_families_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_main_product_families_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_manual_team_attribution_c": {"name": "analytics___salesforce_stg__opportunity_manual_team_attribution_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_manual_team_attribution_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_mark_as_master_c": {"name": "analytics___salesforce_stg__opportunity_mark_as_master_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_mark_as_master_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_memo_c": {"name": "analytics___salesforce_stg__opportunity_memo_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_memo_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_merge_to_opportunity_c": {"name": "analytics___salesforce_stg__opportunity_merge_to_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_merge_to_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_merged_contract_c": {"name": "analytics___salesforce_stg__opportunity_merged_contract_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_merged_contract_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_mid_market_pricing_tier_c": {"name": "analytics___salesforce_stg__opportunity_mid_market_pricing_tier_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_mid_market_pricing_tier_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_migration_from_monthly_c": {"name": "analytics___salesforce_stg__opportunity_migration_from_monthly_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_migration_from_monthly_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_monthly_budget_c": {"name": "analytics___salesforce_stg__opportunity_monthly_budget_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_monthly_budget_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_most_recent_assignment_bucket_c": {"name": "analytics___salesforce_stg__opportunity_most_recent_assignment_bucket_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_most_recent_assignment_bucket_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_most_recent_assignment_date_c": {"name": "analytics___salesforce_stg__opportunity_most_recent_assignment_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_most_recent_assignment_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_most_recent_assignment_reason_c": {"name": "analytics___salesforce_stg__opportunity_most_recent_assignment_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_most_recent_assignment_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_most_recent_assignment_sub_reason_c": {"name": "analytics___salesforce_stg__opportunity_most_recent_assignment_sub_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_most_recent_assignment_sub_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_mrr_c": {"name": "analytics___salesforce_stg__opportunity_mrr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_mrr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_msa_type_c": {"name": "analytics___salesforce_stg__opportunity_msa_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_msa_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_must_win_c": {"name": "analytics___salesforce_stg__opportunity_must_win_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_must_win_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_name": {"name": "analytics___salesforce_stg__opportunity_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_next_contact_date_c": {"name": "analytics___salesforce_stg__opportunity_next_contact_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_next_contact_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_nextstep": {"name": "analytics___salesforce_stg__opportunity_nextstep", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_nextstep", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_no_dedicated_csm_c": {"name": "analytics___salesforce_stg__opportunity_no_dedicated_csm_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_no_dedicated_csm_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_no_price_increase_upon_auto_renewal_c": {"name": "analytics___salesforce_stg__opportunity_no_price_increase_upon_auto_renewal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_no_price_increase_upon_auto_renewal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_no_touch_notification_date_c": {"name": "analytics___salesforce_stg__opportunity_no_touch_notification_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_no_touch_notification_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_num_of_extra_domain_products_c": {"name": "analytics___salesforce_stg__opportunity_num_of_extra_domain_products_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_num_of_extra_domain_products_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_number_of_add_ons_c": {"name": "analytics___salesforce_stg__opportunity_number_of_add_ons_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_number_of_add_ons_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_number_of_extra_domains_c": {"name": "analytics___salesforce_stg__opportunity_number_of_extra_domains_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_number_of_extra_domains_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_number_of_insights_products_c": {"name": "analytics___salesforce_stg__opportunity_number_of_insights_products_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_number_of_insights_products_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_number_of_main_products_c": {"name": "analytics___salesforce_stg__opportunity_number_of_main_products_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_number_of_main_products_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_number_of_professional_services_c": {"name": "analytics___salesforce_stg__opportunity_number_of_professional_services_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_number_of_professional_services_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_number_of_trial_products_c": {"name": "analytics___salesforce_stg__opportunity_number_of_trial_products_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_number_of_trial_products_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_number_of_whitelabel_products_c": {"name": "analytics___salesforce_stg__opportunity_number_of_whitelabel_products_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_number_of_whitelabel_products_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_of_won_child_opps_c": {"name": "analytics___salesforce_stg__opportunity_of_won_child_opps_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_of_won_child_opps_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_omnichannel_deal_c": {"name": "analytics___salesforce_stg__opportunity_omnichannel_deal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_omnichannel_deal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_opp_products_contain_discount_c": {"name": "analytics___salesforce_stg__opportunity_opp_products_contain_discount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_opp_products_contain_discount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_opt_out_clause_c": {"name": "analytics___salesforce_stg__opportunity_opt_out_clause_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_opt_out_clause_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_opt_out_for_multi_year_deals_c": {"name": "analytics___salesforce_stg__opportunity_opt_out_for_multi_year_deals_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_opt_out_for_multi_year_deals_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_opt_out_without_refund_of_pre_paid_c": {"name": "analytics___salesforce_stg__opportunity_opt_out_without_refund_of_pre_paid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_opt_out_without_refund_of_pre_paid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_optout_duration_c": {"name": "analytics___salesforce_stg__opportunity_optout_duration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_optout_duration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_order_comments_c": {"name": "analytics___salesforce_stg__opportunity_order_comments_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_order_comments_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_order_internal_comments_c": {"name": "analytics___salesforce_stg__opportunity_order_internal_comments_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_order_internal_comments_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_orders_included_c": {"name": "analytics___salesforce_stg__opportunity_orders_included_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_orders_included_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_orders_included_l_r_c": {"name": "analytics___salesforce_stg__opportunity_orders_included_l_r_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_orders_included_l_r_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_original_curation_provider_c": {"name": "analytics___salesforce_stg__opportunity_original_curation_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_original_curation_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_original_iap_tier_c": {"name": "analytics___salesforce_stg__opportunity_original_iap_tier_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_original_iap_tier_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_original_loyalty_referral_provider_m_c": {"name": "analytics___salesforce_stg__opportunity_original_loyalty_referral_provider_m_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_original_loyalty_referral_provider_m_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_original_owner_role_c": {"name": "analytics___salesforce_stg__opportunity_original_owner_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_original_owner_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_original_referrer_c": {"name": "analytics___salesforce_stg__opportunity_original_referrer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_original_referrer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_original_review_provider_c": {"name": "analytics___salesforce_stg__opportunity_original_review_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_original_review_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_original_sdr_role_c": {"name": "analytics___salesforce_stg__opportunity_original_sdr_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_original_sdr_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_other_c": {"name": "analytics___salesforce_stg__opportunity_other_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_other_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_overlay_ae_c": {"name": "analytics___salesforce_stg__opportunity_overlay_ae_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_overlay_ae_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_owner_manager_email_c": {"name": "analytics___salesforce_stg__opportunity_owner_manager_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_owner_manager_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_ownerid": {"name": "analytics___salesforce_stg__opportunity_ownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_ownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_owns_by_group_c": {"name": "analytics___salesforce_stg__opportunity_owns_by_group_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_owns_by_group_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_package_c": {"name": "analytics___salesforce_stg__opportunity_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_pain_c": {"name": "analytics___salesforce_stg__opportunity_pain_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_pain_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_parent_account_billing_c": {"name": "analytics___salesforce_stg__opportunity_parent_account_billing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_parent_account_billing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_partner_commission_percentage_c": {"name": "analytics___salesforce_stg__opportunity_partner_commission_percentage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_partner_commission_percentage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_partner_referral_c": {"name": "analytics___salesforce_stg__opportunity_partner_referral_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_partner_referral_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_partner_upsell_c": {"name": "analytics___salesforce_stg__opportunity_partner_upsell_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_partner_upsell_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_pipeline_inspection_metric_c": {"name": "analytics___salesforce_stg__opportunity_pipeline_inspection_metric_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_pipeline_inspection_metric_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_pipeline_usd_c": {"name": "analytics___salesforce_stg__opportunity_pipeline_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_pipeline_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_pos_provider_c": {"name": "analytics___salesforce_stg__opportunity_pos_provider_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_pos_provider_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_pre_lost_status_c": {"name": "analytics___salesforce_stg__opportunity_pre_lost_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_pre_lost_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prevent_downgrading_c": {"name": "analytics___salesforce_stg__opportunity_prevent_downgrading_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prevent_downgrading_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_previous_acv_usd_loyalty_c": {"name": "analytics___salesforce_stg__opportunity_previous_acv_usd_loyalty_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_previous_acv_usd_loyalty_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_previous_acv_usd_sms_c": {"name": "analytics___salesforce_stg__opportunity_previous_acv_usd_sms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_previous_acv_usd_sms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_previous_acv_usd_ugc_c": {"name": "analytics___salesforce_stg__opportunity_previous_acv_usd_ugc_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_previous_acv_usd_ugc_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_price_cap_applied_c": {"name": "analytics___salesforce_stg__opportunity_price_cap_applied_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_price_cap_applied_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_price_cap_percentage_for_renewal_c": {"name": "analytics___salesforce_stg__opportunity_price_cap_percentage_for_renewal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_price_cap_percentage_for_renewal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_price_per_installment_c": {"name": "analytics___salesforce_stg__opportunity_price_per_installment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_price_per_installment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_pricebook2id": {"name": "analytics___salesforce_stg__opportunity_pricebook2id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_pricebook2id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_primary_contact_name_c": {"name": "analytics___salesforce_stg__opportunity_primary_contact_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_primary_contact_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_primary_csm_manager_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_primary_csm_manager_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_primary_csm_manager_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_primary_csm_team_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_primary_csm_team_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_primary_csm_team_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_primary_csm_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_primary_csm_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_primary_csm_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prime_earr_usd_c": {"name": "analytics___salesforce_stg__opportunity_prime_earr_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prime_earr_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_probability": {"name": "analytics___salesforce_stg__opportunity_probability", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_probability", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_product_interest_c": {"name": "analytics___salesforce_stg__opportunity_product_interest_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_product_interest_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_ps_cost_c": {"name": "analytics___salesforce_stg__opportunity_ps_cost_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_ps_cost_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_ps_products_flag_c": {"name": "analytics___salesforce_stg__opportunity_ps_products_flag_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_ps_products_flag_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_purchase_order_expiration_date_c": {"name": "analytics___salesforce_stg__opportunity_purchase_order_expiration_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_purchase_order_expiration_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_purchase_order_number_c": {"name": "analytics___salesforce_stg__opportunity_purchase_order_number_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_purchase_order_number_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_purchased_as_mr_c": {"name": "analytics___salesforce_stg__opportunity_purchased_as_mr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_purchased_as_mr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_push_as_new_sale_c": {"name": "analytics___salesforce_stg__opportunity_push_as_new_sale_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_push_as_new_sale_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_recalculate_deal_type_c": {"name": "analytics___salesforce_stg__opportunity_recalculate_deal_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_recalculate_deal_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_recent_source_c": {"name": "analytics___salesforce_stg__opportunity_recent_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_recent_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_recordtypeid": {"name": "analytics___salesforce_stg__opportunity_recordtypeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_recordtypeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_referrer_owner_c": {"name": "analytics___salesforce_stg__opportunity_referrer_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_referrer_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_relevant_app_keys_for_sms_c": {"name": "analytics___salesforce_stg__opportunity_relevant_app_keys_for_sms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_relevant_app_keys_for_sms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_relevant_csm_for_cs_outreach_c": {"name": "analytics___salesforce_stg__opportunity_relevant_csm_for_cs_outreach_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_relevant_csm_for_cs_outreach_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_remove_auto_renew_clause_c": {"name": "analytics___salesforce_stg__opportunity_remove_auto_renew_clause_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_remove_auto_renew_clause_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_remove_from_al_process_c": {"name": "analytics___salesforce_stg__opportunity_remove_from_al_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_remove_from_al_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_remove_from_no_touch_c": {"name": "analytics___salesforce_stg__opportunity_remove_from_no_touch_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_remove_from_no_touch_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_renewal_opportunity_c": {"name": "analytics___salesforce_stg__opportunity_renewal_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_renewal_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_renewal_to_opp_won_sale_c": {"name": "analytics___salesforce_stg__opportunity_renewal_to_opp_won_sale_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_renewal_to_opp_won_sale_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_requested_feature_c": {"name": "analytics___salesforce_stg__opportunity_requested_feature_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_requested_feature_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_retention_csm_free_days_c": {"name": "analytics___salesforce_stg__opportunity_retention_csm_free_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_retention_csm_free_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_retention_csm_free_months_c": {"name": "analytics___salesforce_stg__opportunity_retention_csm_free_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_retention_csm_free_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_retention_csm_free_months_reason_c": {"name": "analytics___salesforce_stg__opportunity_retention_csm_free_months_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_retention_csm_free_months_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_rev_share_rate_c": {"name": "analytics___salesforce_stg__opportunity_rev_share_rate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_rev_share_rate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_reviews_annual_included_orders_c": {"name": "analytics___salesforce_stg__opportunity_reviews_annual_included_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_reviews_annual_included_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_reviews_competitor_c": {"name": "analytics___salesforce_stg__opportunity_reviews_competitor_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_reviews_competitor_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_reviews_competitor_price_c": {"name": "analytics___salesforce_stg__opportunity_reviews_competitor_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_reviews_competitor_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_reviews_csm_manager_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_reviews_csm_manager_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_reviews_csm_manager_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_reviews_csm_team_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_reviews_csm_team_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_reviews_csm_team_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_reviews_csm_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_reviews_csm_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_reviews_csm_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_reviews_number_of_total_orders_included_c": {"name": "analytics___salesforce_stg__opportunity_reviews_number_of_total_orders_included_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_reviews_number_of_total_orders_included_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_run_pb2_c": {"name": "analytics___salesforce_stg__opportunity_run_pb2_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_run_pb2_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_run_pb_c": {"name": "analytics___salesforce_stg__opportunity_run_pb_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_run_pb_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_saas_amount_c": {"name": "analytics___salesforce_stg__opportunity_saas_amount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_saas_amount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_saas_extra_domain_w_disc_c": {"name": "analytics___salesforce_stg__opportunity_saas_extra_domain_w_disc_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_saas_extra_domain_w_disc_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_saas_wl_amount_c": {"name": "analytics___salesforce_stg__opportunity_saas_wl_amount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_saas_wl_amount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sales_demo_feedback_c": {"name": "analytics___salesforce_stg__opportunity_sales_demo_feedback_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sales_demo_feedback_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sales_enginieer_c": {"name": "analytics___salesforce_stg__opportunity_sales_enginieer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sales_enginieer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sales_estimated_monthly_orders_c": {"name": "analytics___salesforce_stg__opportunity_sales_estimated_monthly_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sales_estimated_monthly_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sales_estimated_subscribers_c": {"name": "analytics___salesforce_stg__opportunity_sales_estimated_subscribers_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sales_estimated_subscribers_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sales_region_c": {"name": "analytics___salesforce_stg__opportunity_sales_region_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sales_region_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sales_segment_c": {"name": "analytics___salesforce_stg__opportunity_sales_segment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sales_segment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_salesloft1_most_recent_cadence_name_c": {"name": "analytics___salesforce_stg__opportunity_salesloft1_most_recent_cadence_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_salesloft1_most_recent_cadence_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_salesloft1_most_recent_last_completed_step_c": {"name": "analytics___salesforce_stg__opportunity_salesloft1_most_recent_last_completed_step_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_salesloft1_most_recent_last_completed_step_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_salesloft1_primary_contact_c": {"name": "analytics___salesforce_stg__opportunity_salesloft1_primary_contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_salesloft1_primary_contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_scsm_deal_c": {"name": "analytics___salesforce_stg__opportunity_scsm_deal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_scsm_deal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sdr_c": {"name": "analytics___salesforce_stg__opportunity_sdr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sdr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sdr_id_c": {"name": "analytics___salesforce_stg__opportunity_sdr_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sdr_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sdr_lookup_c": {"name": "analytics___salesforce_stg__opportunity_sdr_lookup_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sdr_lookup_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sdr_role_c": {"name": "analytics___salesforce_stg__opportunity_sdr_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sdr_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_secondary_sales_engineer_c": {"name": "analytics___salesforce_stg__opportunity_secondary_sales_engineer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_secondary_sales_engineer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_secondary_seller_c": {"name": "analytics___salesforce_stg__opportunity_secondary_seller_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_secondary_seller_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_secondary_seller_role_c": {"name": "analytics___salesforce_stg__opportunity_secondary_seller_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_secondary_seller_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_segment_for_bi_c": {"name": "analytics___salesforce_stg__opportunity_segment_for_bi_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_segment_for_bi_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_selected_product_for_lead_conversion_c": {"name": "analytics___salesforce_stg__opportunity_selected_product_for_lead_conversion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_selected_product_for_lead_conversion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_show_discount_percentage_c": {"name": "analytics___salesforce_stg__opportunity_show_discount_percentage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_show_discount_percentage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_signed_with_auto_renewal_clause_c": {"name": "analytics___salesforce_stg__opportunity_signed_with_auto_renewal_clause_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_signed_with_auto_renewal_clause_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_situation_c": {"name": "analytics___salesforce_stg__opportunity_situation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_situation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sms_acv_c": {"name": "analytics___salesforce_stg__opportunity_sms_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sms_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sms_commitment_term_c": {"name": "analytics___salesforce_stg__opportunity_sms_commitment_term_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sms_commitment_term_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sms_commitment_value_c": {"name": "analytics___salesforce_stg__opportunity_sms_commitment_value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sms_commitment_value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sms_csm_manager_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_sms_csm_manager_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sms_csm_manager_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sms_csm_team_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_sms_csm_team_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sms_csm_team_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sms_csm_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_sms_csm_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sms_csm_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sms_earr_usd_c": {"name": "analytics___salesforce_stg__opportunity_sms_earr_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sms_earr_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sms_fourth_commitment_value_c": {"name": "analytics___salesforce_stg__opportunity_sms_fourth_commitment_value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sms_fourth_commitment_value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sms_second_commitment_value_c": {"name": "analytics___salesforce_stg__opportunity_sms_second_commitment_value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sms_second_commitment_value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sms_third_commitment_value_c": {"name": "analytics___salesforce_stg__opportunity_sms_third_commitment_value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sms_third_commitment_value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sms_usage_cancellation_date_c": {"name": "analytics___salesforce_stg__opportunity_sms_usage_cancellation_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sms_usage_cancellation_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sql_assignment_c": {"name": "analytics___salesforce_stg__opportunity_sql_assignment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sql_assignment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_stagename": {"name": "analytics___salesforce_stg__opportunity_stagename", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_stagename", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_staggered_contract_c": {"name": "analytics___salesforce_stg__opportunity_staggered_contract_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_staggered_contract_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_start_date_c": {"name": "analytics___salesforce_stg__opportunity_start_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_start_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_strategic_investment_c": {"name": "analytics___salesforce_stg__opportunity_strategic_investment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_strategic_investment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_subscription_customer_type_c": {"name": "analytics___salesforce_stg__opportunity_subscription_customer_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_subscription_customer_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_subscription_number_c": {"name": "analytics___salesforce_stg__opportunity_subscription_number_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_subscription_number_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_subscriptions_earr_usd_c": {"name": "analytics___salesforce_stg__opportunity_subscriptions_earr_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_subscriptions_earr_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_sum_of_sales_price_c": {"name": "analytics___salesforce_stg__opportunity_sum_of_sales_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_sum_of_sales_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_swell_acv_c": {"name": "analytics___salesforce_stg__opportunity_swell_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_swell_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_swell_orders_c": {"name": "analytics___salesforce_stg__opportunity_swell_orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_swell_orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_syncedquoteid": {"name": "analytics___salesforce_stg__opportunity_syncedquoteid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_syncedquoteid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_syndication_domains_c": {"name": "analytics___salesforce_stg__opportunity_syndication_domains_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_syndication_domains_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_systemmodstamp": {"name": "analytics___salesforce_stg__opportunity_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_talk_to_csm_c": {"name": "analytics___salesforce_stg__opportunity_talk_to_csm_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_talk_to_csm_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_technical_contact_email_c": {"name": "analytics___salesforce_stg__opportunity_technical_contact_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_technical_contact_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_technical_contact_first_name_c": {"name": "analytics___salesforce_stg__opportunity_technical_contact_first_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_technical_contact_first_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_technical_contact_last_name_c": {"name": "analytics___salesforce_stg__opportunity_technical_contact_last_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_technical_contact_last_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_technical_contact_phone_c": {"name": "analytics___salesforce_stg__opportunity_technical_contact_phone_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_technical_contact_phone_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_temporary_ar_process_include_c": {"name": "analytics___salesforce_stg__opportunity_temporary_ar_process_include_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_temporary_ar_process_include_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_termination_for_convenience_no_refund_c": {"name": "analytics___salesforce_stg__opportunity_termination_for_convenience_no_refund_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_termination_for_convenience_no_refund_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_territory_new_c": {"name": "analytics___salesforce_stg__opportunity_territory_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_territory_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_tertiary_seller_c": {"name": "analytics___salesforce_stg__opportunity_tertiary_seller_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_tertiary_seller_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_time_of_am_ownership_c": {"name": "analytics___salesforce_stg__opportunity_time_of_am_ownership_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_time_of_am_ownership_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_time_willing_to_commit_of_months_c": {"name": "analytics___salesforce_stg__opportunity_time_willing_to_commit_of_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_time_willing_to_commit_of_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_timestamp_billing_frequency_c": {"name": "analytics___salesforce_stg__opportunity_timestamp_billing_frequency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_timestamp_billing_frequency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_timestamp_retention_csm_free_months_c": {"name": "analytics___salesforce_stg__opportunity_timestamp_retention_csm_free_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_timestamp_retention_csm_free_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_timestamp_sales_free_months_c": {"name": "analytics___salesforce_stg__opportunity_timestamp_sales_free_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_timestamp_sales_free_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_total_domains_c": {"name": "analytics___salesforce_stg__opportunity_total_domains_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_total_domains_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_total_domains_lr_c": {"name": "analytics___salesforce_stg__opportunity_total_domains_lr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_total_domains_lr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_total_domains_sms_c": {"name": "analytics___salesforce_stg__opportunity_total_domains_sms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_total_domains_sms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_total_domains_vms_c": {"name": "analytics___salesforce_stg__opportunity_total_domains_vms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_total_domains_vms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_total_rev_share_paid_c": {"name": "analytics___salesforce_stg__opportunity_total_rev_share_paid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_total_rev_share_paid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_total_yotpo_acv_c": {"name": "analytics___salesforce_stg__opportunity_total_yotpo_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_total_yotpo_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_type": {"name": "analytics___salesforce_stg__opportunity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_ups_account_c": {"name": "analytics___salesforce_stg__opportunity_ups_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_ups_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_ups_acv_c": {"name": "analytics___salesforce_stg__opportunity_ups_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_ups_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_ups_subscription_number_c": {"name": "analytics___salesforce_stg__opportunity_ups_subscription_number_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_ups_subscription_number_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_upsell_opportunity_c": {"name": "analytics___salesforce_stg__opportunity_upsell_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_upsell_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_upsell_with_in_term_renewal_c": {"name": "analytics___salesforce_stg__opportunity_upsell_with_in_term_renewal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_upsell_with_in_term_renewal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_usage_opportunity_c": {"name": "analytics___salesforce_stg__opportunity_usage_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_usage_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_usage_team_attribution_c": {"name": "analytics___salesforce_stg__opportunity_usage_team_attribution_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_usage_team_attribution_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_value_proposition_c": {"name": "analytics___salesforce_stg__opportunity_value_proposition_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_value_proposition_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_vms_acv_c": {"name": "analytics___salesforce_stg__opportunity_vms_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_vms_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_vms_competitor_c": {"name": "analytics___salesforce_stg__opportunity_vms_competitor_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_vms_competitor_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_vms_competitor_price_c": {"name": "analytics___salesforce_stg__opportunity_vms_competitor_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_vms_competitor_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_web_traffic_c": {"name": "analytics___salesforce_stg__opportunity_web_traffic_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_web_traffic_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_why_bad_timing_c": {"name": "analytics___salesforce_stg__opportunity_why_bad_timing_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_why_bad_timing_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_why_do_you_think_they_didn_t_respond_c": {"name": "analytics___salesforce_stg__opportunity_why_do_you_think_they_didn_t_respond_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_why_do_you_think_they_didn_t_respond_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_why_lost_c": {"name": "analytics___salesforce_stg__opportunity_why_lost_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_why_lost_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_why_lost_description_c": {"name": "analytics___salesforce_stg__opportunity_why_lost_description_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_why_lost_description_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_winback_date_c": {"name": "analytics___salesforce_stg__opportunity_winback_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_winback_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_winback_notes_c": {"name": "analytics___salesforce_stg__opportunity_winback_notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_winback_notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_winback_opportunity_c": {"name": "analytics___salesforce_stg__opportunity_winback_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_winback_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_winback_reason_c": {"name": "analytics___salesforce_stg__opportunity_winback_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_winback_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_x6sense_attribution_c": {"name": "analytics___salesforce_stg__opportunity_x6sense_attribution_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_x6sense_attribution_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_csm_free_days_delta_c": {"name": "analytics___salesforce_stg__opportunity_zuora_csm_free_days_delta_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_csm_free_days_delta_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_csm_free_months_delta_c": {"name": "analytics___salesforce_stg__opportunity_zuora_csm_free_months_delta_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_csm_free_months_delta_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_integration_error_c": {"name": "analytics___salesforce_stg__opportunity_zuora_integration_error_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_integration_error_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_last_charge_amount_c": {"name": "analytics___salesforce_stg__opportunity_zuora_last_charge_amount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_last_charge_amount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_last_charge_date_c": {"name": "analytics___salesforce_stg__opportunity_zuora_last_charge_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_last_charge_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_period_change_start_date_c": {"name": "analytics___salesforce_stg__opportunity_zuora_period_change_start_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_period_change_start_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sales_free_month_delta_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sales_free_month_delta_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sales_free_month_delta_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_account_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_batch_update_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_batch_update_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_batch_update_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_free_months_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_free_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_free_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_lost_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_lost_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_lost_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_manually_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_manually_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_manually_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_merge_opportunity_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_merge_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_merge_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_opportunity_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_poc_extension_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_poc_extension_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_poc_extension_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_sales_free_months_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_sales_free_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_sales_free_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_ups_csm_free_months_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_ups_csm_free_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_ups_csm_free_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_ups_lost_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_ups_lost_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_ups_lost_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_ups_sales_free_months_c": {"name": "analytics___salesforce_stg__opportunity_zuora_sync_ups_sales_free_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity/analytics___salesforce_stg__opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_zuora_sync_ups_sales_free_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full": {"name": "analytics___salesforce_stg__opportunity_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full", "block_contents": "A view for salesforce opportunity object including all formula fields pulled in Rivery full river"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_account_address_valid_c": {"name": "analytics___salesforce_stg__opportunity_full_account_address_valid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_account_address_valid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_account_csm_super_c": {"name": "analytics___salesforce_stg__opportunity_full_account_csm_super_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_account_csm_super_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_account_in_zuora_c": {"name": "analytics___salesforce_stg__opportunity_full_account_in_zuora_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_account_in_zuora_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_account_master_opp_id_c": {"name": "analytics___salesforce_stg__opportunity_full_account_master_opp_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_account_master_opp_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_account_name_c": {"name": "analytics___salesforce_stg__opportunity_full_account_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_account_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_account_name_formula_c": {"name": "analytics___salesforce_stg__opportunity_full_account_name_formula_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_account_name_formula_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_account_referrer_c": {"name": "analytics___salesforce_stg__opportunity_full_account_referrer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_account_referrer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_actual_contract_duration_c": {"name": "analytics___salesforce_stg__opportunity_full_actual_contract_duration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_actual_contract_duration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_actual_duration_new_c": {"name": "analytics___salesforce_stg__opportunity_full_actual_duration_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_actual_duration_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_acv_c": {"name": "analytics___salesforce_stg__opportunity_full_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_acv_expectancy_c": {"name": "analytics___salesforce_stg__opportunity_full_acv_expectancy_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_acv_expectancy_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_acv_usd_c": {"name": "analytics___salesforce_stg__opportunity_full_acv_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_acv_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_additional_context_c": {"name": "analytics___salesforce_stg__opportunity_full_additional_context_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_additional_context_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_address_validation_needed_c": {"name": "analytics___salesforce_stg__opportunity_full_address_validation_needed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_address_validation_needed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_agency_involvement_throughout_deployment_c": {"name": "analytics___salesforce_stg__opportunity_full_agency_involvement_throughout_deployment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_agency_involvement_throughout_deployment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_am_age_c": {"name": "analytics___salesforce_stg__opportunity_full_am_age_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_am_age_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_app_key_account_c": {"name": "analytics___salesforce_stg__opportunity_full_app_key_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_app_key_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_auto_renewal_customer_choice_c": {"name": "analytics___salesforce_stg__opportunity_full_auto_renewal_customer_choice_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_auto_renewal_customer_choice_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_auto_renewal_exclusion_reason_c": {"name": "analytics___salesforce_stg__opportunity_full_auto_renewal_exclusion_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_auto_renewal_exclusion_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_auto_renewal_request_type_c": {"name": "analytics___salesforce_stg__opportunity_full_auto_renewal_request_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_auto_renewal_request_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_billing_contract_duration_days_c": {"name": "analytics___salesforce_stg__opportunity_full_billing_contract_duration_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_billing_contract_duration_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_close_date_day_less_than_today_day_c": {"name": "analytics___salesforce_stg__opportunity_full_close_date_day_less_than_today_day_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_close_date_day_less_than_today_day_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_close_month_c": {"name": "analytics___salesforce_stg__opportunity_full_close_month_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_close_month_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_commercial_contact_email_c": {"name": "analytics___salesforce_stg__opportunity_full_commercial_contact_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_commercial_contact_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_csm_notes_c": {"name": "analytics___salesforce_stg__opportunity_full_conga_csm_notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_csm_notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_culture_currency_c": {"name": "analytics___salesforce_stg__opportunity_full_conga_culture_currency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_culture_currency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_payment_terms_days_c": {"name": "analytics___salesforce_stg__opportunity_full_conga_payment_terms_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_payment_terms_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_reminder_c": {"name": "analytics___salesforce_stg__opportunity_full_conga_reminder_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_reminder_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_remindin_c": {"name": "analytics___salesforce_stg__opportunity_full_conga_remindin_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_remindin_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_seats_info_c": {"name": "analytics___salesforce_stg__opportunity_full_conga_seats_info_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_conga_seats_info_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_contains_dedicated_csm_c": {"name": "analytics___salesforce_stg__opportunity_full_contains_dedicated_csm_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_contains_dedicated_csm_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_contract_duration_days_c": {"name": "analytics___salesforce_stg__opportunity_full_contract_duration_days_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_contract_duration_days_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_contract_duration_months_c": {"name": "analytics___salesforce_stg__opportunity_full_contract_duration_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_contract_duration_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_contract_renewal_date_c": {"name": "analytics___salesforce_stg__opportunity_full_contract_renewal_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_contract_renewal_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_conversion_rate_c": {"name": "analytics___salesforce_stg__opportunity_full_conversion_rate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_conversion_rate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_create_date_day_less_than_today_day_c": {"name": "analytics___salesforce_stg__opportunity_full_create_date_day_less_than_today_day_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_create_date_day_less_than_today_day_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_csm_free_months_value_c": {"name": "analytics___salesforce_stg__opportunity_full_csm_free_months_value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_csm_free_months_value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_csm_owner_role_c": {"name": "analytics___salesforce_stg__opportunity_full_csm_owner_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_csm_owner_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_current_contract_c": {"name": "analytics___salesforce_stg__opportunity_full_current_contract_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_current_contract_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_current_usage_commitment_term_end_date_c": {"name": "analytics___salesforce_stg__opportunity_full_current_usage_commitment_term_end_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_current_usage_commitment_term_end_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_current_usage_commitment_term_start_date_c": {"name": "analytics___salesforce_stg__opportunity_full_current_usage_commitment_term_start_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_current_usage_commitment_term_start_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_days_from_last_activity_c": {"name": "analytics___salesforce_stg__opportunity_full_days_from_last_activity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_days_from_last_activity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_contract_signed_c": {"name": "analytics___salesforce_stg__opportunity_full_days_in_contract_signed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_contract_signed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_contracting_c": {"name": "analytics___salesforce_stg__opportunity_full_days_in_contracting_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_contracting_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_current_stage_c": {"name": "analytics___salesforce_stg__opportunity_full_days_in_current_stage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_current_stage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_demo_c": {"name": "analytics___salesforce_stg__opportunity_full_days_in_demo_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_demo_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_discovery_c": {"name": "analytics___salesforce_stg__opportunity_full_days_in_discovery_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_discovery_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_evaluation_c": {"name": "analytics___salesforce_stg__opportunity_full_days_in_evaluation_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_evaluation_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_propose_c": {"name": "analytics___salesforce_stg__opportunity_full_days_in_propose_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_propose_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_sal_c": {"name": "analytics___salesforce_stg__opportunity_full_days_in_sal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_days_in_sal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_days_to_start_date_c": {"name": "analytics___salesforce_stg__opportunity_full_days_to_start_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_days_to_start_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_days_until_contract_renewal_c": {"name": "analytics___salesforce_stg__opportunity_full_days_until_contract_renewal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_days_until_contract_renewal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_deal_type_filter_gs_c": {"name": "analytics___salesforce_stg__opportunity_full_deal_type_filter_gs_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_deal_type_filter_gs_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_dealhub_main_add_on_discount_c": {"name": "analytics___salesforce_stg__opportunity_full_dealhub_main_add_on_discount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_dealhub_main_add_on_discount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_dealhub_salesallowlegacy_c": {"name": "analytics___salesforce_stg__opportunity_full_dealhub_salesallowlegacy_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_dealhub_salesallowlegacy_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_acv_usd_loyalty_c": {"name": "analytics___salesforce_stg__opportunity_full_delta_acv_usd_loyalty_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_acv_usd_loyalty_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_acv_usd_sms_c": {"name": "analytics___salesforce_stg__opportunity_full_delta_acv_usd_sms_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_acv_usd_sms_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_acv_usd_ugc_c": {"name": "analytics___salesforce_stg__opportunity_full_delta_acv_usd_ugc_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_acv_usd_ugc_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_booking_c": {"name": "analytics___salesforce_stg__opportunity_full_delta_booking_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_booking_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_earr_c": {"name": "analytics___salesforce_stg__opportunity_full_delta_earr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_earr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_earr_subscriptions_c": {"name": "analytics___salesforce_stg__opportunity_full_delta_earr_subscriptions_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_delta_earr_subscriptions_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_downgraded_package_price_c": {"name": "analytics___salesforce_stg__opportunity_full_downgraded_package_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_downgraded_package_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_effective_date_free_months_c": {"name": "analytics___salesforce_stg__opportunity_full_effective_date_free_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_effective_date_free_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_email_service_provider_esp_c": {"name": "analytics___salesforce_stg__opportunity_full_email_service_provider_esp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_email_service_provider_esp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_end_date_finance_c": {"name": "analytics___salesforce_stg__opportunity_full_end_date_finance_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_end_date_finance_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_estimated_vs_include_review_requests_c": {"name": "analytics___salesforce_stg__opportunity_full_estimated_vs_include_review_requests_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_estimated_vs_include_review_requests_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_full_duration_of_contract_c": {"name": "analytics___salesforce_stg__opportunity_full_full_duration_of_contract_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_full_duration_of_contract_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_gong_gong_count_c": {"name": "analytics___salesforce_stg__opportunity_full_gong_gong_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_gong_gong_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_hybrid_deal_ht_ss_c": {"name": "analytics___salesforce_stg__opportunity_full_hybrid_deal_ht_ss_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_hybrid_deal_ht_ss_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_id": {"name": "analytics___salesforce_stg__opportunity_full_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_import_products_to_dealhub_c": {"name": "analytics___salesforce_stg__opportunity_full_import_products_to_dealhub_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_import_products_to_dealhub_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_include_exclude_from_auto_renewal_link_c": {"name": "analytics___salesforce_stg__opportunity_full_include_exclude_from_auto_renewal_link_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_include_exclude_from_auto_renewal_link_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_include_exclude_from_no_touch_link_c": {"name": "analytics___salesforce_stg__opportunity_full_include_exclude_from_no_touch_link_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_include_exclude_from_no_touch_link_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_inherited_lead_source_c": {"name": "analytics___salesforce_stg__opportunity_full_inherited_lead_source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_inherited_lead_source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_legal_entity_c": {"name": "analytics___salesforce_stg__opportunity_full_legal_entity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_legal_entity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_mcv_c": {"name": "analytics___salesforce_stg__opportunity_full_mcv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_mcv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_mkto_si_marketoanalyzer_c": {"name": "analytics___salesforce_stg__opportunity_full_mkto_si_marketoanalyzer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_mkto_si_marketoanalyzer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_mm_renewal_notification_c": {"name": "analytics___salesforce_stg__opportunity_full_mm_renewal_notification_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_mm_renewal_notification_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_my_opp_sdr_c": {"name": "analytics___salesforce_stg__opportunity_full_my_opp_sdr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_my_opp_sdr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_new_acv_c": {"name": "analytics___salesforce_stg__opportunity_full_new_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_new_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_new_acv_swell_c": {"name": "analytics___salesforce_stg__opportunity_full_new_acv_swell_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_new_acv_swell_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_new_acv_usd_c": {"name": "analytics___salesforce_stg__opportunity_full_new_acv_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_new_acv_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_new_acv_yotpo_c": {"name": "analytics___salesforce_stg__opportunity_full_new_acv_yotpo_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_new_acv_yotpo_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_next_rounded_months_from_start_date_c": {"name": "analytics___salesforce_stg__opportunity_full_next_rounded_months_from_start_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_next_rounded_months_from_start_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_no_touch_exclusion_reason_c": {"name": "analytics___salesforce_stg__opportunity_full_no_touch_exclusion_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_no_touch_exclusion_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_opp_id_18_digit_c": {"name": "analytics___salesforce_stg__opportunity_full_opp_id_18_digit_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_opp_id_18_digit_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_opportunity_age_c": {"name": "analytics___salesforce_stg__opportunity_full_opportunity_age_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_opportunity_age_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_opportunity_alert_c": {"name": "analytics___salesforce_stg__opportunity_full_opportunity_alert_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_opportunity_alert_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_opportunity_count_c": {"name": "analytics___salesforce_stg__opportunity_full_opportunity_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_opportunity_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_original_referrer_owner_c": {"name": "analytics___salesforce_stg__opportunity_full_original_referrer_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_original_referrer_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_original_referrer_text_c": {"name": "analytics___salesforce_stg__opportunity_full_original_referrer_text_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_original_referrer_text_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_owner_role_custom_c": {"name": "analytics___salesforce_stg__opportunity_full_owner_role_custom_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_owner_role_custom_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_parent_account_c": {"name": "analytics___salesforce_stg__opportunity_full_parent_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_parent_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_partner_involvement_in_onboarding_c": {"name": "analytics___salesforce_stg__opportunity_full_partner_involvement_in_onboarding_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_partner_involvement_in_onboarding_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_partner_referral_referrer_type_c": {"name": "analytics___salesforce_stg__opportunity_full_partner_referral_referrer_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_partner_referral_referrer_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_partner_referral_text_c": {"name": "analytics___salesforce_stg__opportunity_full_partner_referral_text_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_partner_referral_text_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_per_installment_c": {"name": "analytics___salesforce_stg__opportunity_full_per_installment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_per_installment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_platform_c": {"name": "analytics___salesforce_stg__opportunity_full_platform_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_platform_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_prevent_sync_c": {"name": "analytics___salesforce_stg__opportunity_full_prevent_sync_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_prevent_sync_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_previous_opp_package_c": {"name": "analytics___salesforce_stg__opportunity_full_previous_opp_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_previous_opp_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_previous_opp_total_discount_c": {"name": "analytics___salesforce_stg__opportunity_full_previous_opp_total_discount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_previous_opp_total_discount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_price_per_installment_usd_c": {"name": "analytics___salesforce_stg__opportunity_full_price_per_installment_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_price_per_installment_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_record_type_name_c": {"name": "analytics___salesforce_stg__opportunity_full_record_type_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_record_type_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_reference_call_c": {"name": "analytics___salesforce_stg__opportunity_full_reference_call_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_reference_call_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_referral_date_c": {"name": "analytics___salesforce_stg__opportunity_full_referral_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_referral_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_referral_type_c": {"name": "analytics___salesforce_stg__opportunity_full_referral_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_referral_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_relevant_csm_for_cs_outreach_first_name_c": {"name": "analytics___salesforce_stg__opportunity_full_relevant_csm_for_cs_outreach_first_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_relevant_csm_for_cs_outreach_first_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_relevant_csm_id_helper_c": {"name": "analytics___salesforce_stg__opportunity_full_relevant_csm_id_helper_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_relevant_csm_id_helper_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_remove_from_nt_process_c": {"name": "analytics___salesforce_stg__opportunity_full_remove_from_nt_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_remove_from_nt_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_renewal_opportunity_package_c": {"name": "analytics___salesforce_stg__opportunity_full_renewal_opportunity_package_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_renewal_opportunity_package_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_saas_csms_teams_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_full_saas_csms_teams_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_saas_csms_teams_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_saas_csms_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_full_saas_csms_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_saas_csms_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_sal_c": {"name": "analytics___salesforce_stg__opportunity_full_sal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_sal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_sal_mtd_c": {"name": "analytics___salesforce_stg__opportunity_full_sal_mtd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_sal_mtd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_sales_accepted_date_c": {"name": "analytics___salesforce_stg__opportunity_full_sales_accepted_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_sales_accepted_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_sales_free_months_value_c": {"name": "analytics___salesforce_stg__opportunity_full_sales_free_months_value_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_sales_free_months_value_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_sales_segment_old_c": {"name": "analytics___salesforce_stg__opportunity_full_sales_segment_old_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_sales_segment_old_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_sdr_role_old_c": {"name": "analytics___salesforce_stg__opportunity_full_sdr_role_old_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_sdr_role_old_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_seller_region_c": {"name": "analytics___salesforce_stg__opportunity_full_seller_region_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_seller_region_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_sign_test_udi_c": {"name": "analytics___salesforce_stg__opportunity_full_sign_test_udi_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_sign_test_udi_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_sla_status_c": {"name": "analytics___salesforce_stg__opportunity_full_sla_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_sla_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_sql_mtd_c": {"name": "analytics___salesforce_stg__opportunity_full_sql_mtd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_sql_mtd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_standalone_insights_c": {"name": "analytics___salesforce_stg__opportunity_full_standalone_insights_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_standalone_insights_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_start_date_difference_today_c": {"name": "analytics___salesforce_stg__opportunity_full_start_date_difference_today_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_start_date_difference_today_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_start_date_week_day_name_c": {"name": "analytics___salesforce_stg__opportunity_full_start_date_week_day_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_start_date_week_day_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_tcv_c": {"name": "analytics___salesforce_stg__opportunity_full_tcv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_tcv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_template_id_c": {"name": "analytics___salesforce_stg__opportunity_full_template_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_template_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_template_id_test_c": {"name": "analytics___salesforce_stg__opportunity_full_template_id_test_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_template_id_test_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_test_account_c": {"name": "analytics___salesforce_stg__opportunity_full_test_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_test_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_today_s_date_c": {"name": "analytics___salesforce_stg__opportunity_full_today_s_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_today_s_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_total_current_acv_c": {"name": "analytics___salesforce_stg__opportunity_full_total_current_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_total_current_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_total_discount_c": {"name": "analytics___salesforce_stg__opportunity_full_total_discount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_total_discount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_total_discount_for_matan_and_adi_c": {"name": "analytics___salesforce_stg__opportunity_full_total_discount_for_matan_and_adi_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_total_discount_for_matan_and_adi_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_total_ds_delta_acv_c": {"name": "analytics___salesforce_stg__opportunity_full_total_ds_delta_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_total_ds_delta_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_total_earr_usd_c": {"name": "analytics___salesforce_stg__opportunity_full_total_earr_usd_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_total_earr_usd_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_total_paid_by_ups_c": {"name": "analytics___salesforce_stg__opportunity_full_total_paid_by_ups_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_total_paid_by_ups_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_total_previous_acv_c": {"name": "analytics___salesforce_stg__opportunity_full_total_previous_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_total_previous_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_total_seats_c": {"name": "analytics___salesforce_stg__opportunity_full_total_seats_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_total_seats_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_ups_deal_c": {"name": "analytics___salesforce_stg__opportunity_full_ups_deal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_ups_deal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_user_id_c": {"name": "analytics___salesforce_stg__opportunity_full_user_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_user_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_user_is_csm_c": {"name": "analytics___salesforce_stg__opportunity_full_user_is_csm_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_user_is_csm_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_user_is_from_csm_team_c": {"name": "analytics___salesforce_stg__opportunity_full_user_is_from_csm_team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_user_is_from_csm_team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_visible_name_for_migration_c": {"name": "analytics___salesforce_stg__opportunity_full_visible_name_for_migration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_visible_name_for_migration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_which_renewal_process_c": {"name": "analytics___salesforce_stg__opportunity_full_which_renewal_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_which_renewal_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_won_opp_c": {"name": "analytics___salesforce_stg__opportunity_full_won_opp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_won_opp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_yotpo_acv_c": {"name": "analytics___salesforce_stg__opportunity_full_yotpo_acv_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_yotpo_acv_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_bill_cycle_day_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_bill_cycle_day_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_bill_cycle_day_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_communication_profile_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_communication_profile_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_communication_profile_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_contract_duration_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_contract_duration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_contract_duration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_csm_free_days_scenario_price_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_csm_free_days_scenario_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_csm_free_days_scenario_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_csm_free_month_price_customer_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_csm_free_month_price_customer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_csm_free_month_price_customer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_csm_free_month_price_ups_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_csm_free_month_price_ups_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_csm_free_month_price_ups_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_duration_for_billing_period_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_duration_for_billing_period_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_duration_for_billing_period_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_free_month_scenario_price_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_free_month_scenario_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_free_month_scenario_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_payment_method_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_payment_method_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_payment_method_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_period_type_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_period_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_period_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_sales_free_days_scenario_price_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_sales_free_days_scenario_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_sales_free_days_scenario_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_sales_free_month_price_customer_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_sales_free_month_price_customer_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_sales_free_month_price_customer_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_sales_free_month_price_ups_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_sales_free_month_price_ups_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_sales_free_month_price_ups_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_sales_free_month_scenario_price_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_sales_free_month_scenario_price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_sales_free_month_scenario_price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_sync_error_reason_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_sync_error_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_sync_error_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_tax_region_c": {"name": "analytics___salesforce_stg__opportunity_full_zuora_tax_region_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_full/analytics___salesforce_stg__opportunity_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_full_zuora_tax_region_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_AM_contribution_Assumption_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_AM_contribution_Assumption_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_AM_contribution_Assumption_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_CSM_Loyalty_Risk_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_CSM_Loyalty_Risk_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_CSM_Loyalty_Risk_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_CSM_Reviews_Risk_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_CSM_Reviews_Risk_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_CSM_Reviews_Risk_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_CreatedById": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_CreatedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_CreatedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_CreatedDate": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_CreatedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_CreatedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_CurrencyIsoCode": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_CurrencyIsoCode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_CurrencyIsoCode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Deal_Summary_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Deal_Summary_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Deal_Summary_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Forecast_Prediction_Notes_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Forecast_Prediction_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Forecast_Prediction_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Gross_account_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Gross_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Gross_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Id": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_IsDeleted": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_IsDeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_IsDeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_LastModifiedById": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_LastModifiedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_LastModifiedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_LastModifiedDate": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_LastModifiedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_LastModifiedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_LastReferencedDate": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_LastReferencedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_LastReferencedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_LastViewedDate": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_LastViewedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_LastViewedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Logo_retention_account_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Logo_retention_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Logo_retention_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_CSM_Notes_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_CSM_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_CSM_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_CSM_Notes_rich_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_CSM_Notes_rich_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_CSM_Notes_rich_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Current_ACV_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Current_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Current_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Current_Hedged_ACV_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Current_Hedged_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Current_Hedged_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Manager_Notes_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Manager_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Manager_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Manager_Notes_rich_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Manager_Notes_rich_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Manager_Notes_rich_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Predictions_Certainty_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Predictions_Certainty_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Predictions_Certainty_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Previous_ACV_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Previous_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Previous_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Result_Type_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Result_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Result_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Risk_Buckets_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Risk_Buckets_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_Risk_Buckets_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_logo_retainment_hedged_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_logo_retainment_hedged_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_logo_retainment_hedged_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_previous_ACV_with_ITC_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_previous_ACV_with_ITC_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_previous_ACV_with_ITC_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_result_type_hedged_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_result_type_hedged_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Loyalty_result_type_hedged_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Manager_Notes_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Manager_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Manager_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Name": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Opportunity_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Opportunity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Opportunity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Predicted_Loyalty_ACV_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Predicted_Loyalty_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Predicted_Loyalty_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Predicted_Reviews_ACV_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Predicted_Reviews_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Predicted_Reviews_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Primary_CSM_Notes_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Primary_CSM_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Primary_CSM_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Primary_CSM_Notes_rich_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Primary_CSM_Notes_rich_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Primary_CSM_Notes_rich_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Primary_Manager_Notes_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Primary_Manager_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Primary_Manager_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Primary_Manager_Notes_rich_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Primary_Manager_Notes_rich_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Primary_Manager_Notes_rich_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_CSMS_teams_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_CSMS_teams_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_CSMS_teams_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_CSMS_upon_closed_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_CSMS_upon_closed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_CSMS_upon_closed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Loyalty_CSM_Team_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Loyalty_CSM_Team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Loyalty_CSM_Team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Loyalty_CSM_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Loyalty_CSM_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Loyalty_CSM_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Reviews_CSM_Team_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Reviews_CSM_Team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Reviews_CSM_Team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Reviews_CSM_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Reviews_CSM_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Relevant_Reviews_CSM_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_CSM_Notes_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_CSM_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_CSM_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_CSM_Notes_rich_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_CSM_Notes_rich_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_CSM_Notes_rich_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Current_ACV_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Current_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Current_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Current_Hedged_ACV_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Current_Hedged_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Current_Hedged_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Manager_Notes_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Manager_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Manager_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Manager_Notes_rich_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Manager_Notes_rich_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Manager_Notes_rich_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Predictions_Certainty_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Predictions_Certainty_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Predictions_Certainty_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Previous_ACV_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Previous_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Previous_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Result_Type_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Result_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Result_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Risk_Buckets_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Risk_Buckets_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_Risk_Buckets_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_logo_retainment_hedged_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_logo_retainment_hedged_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_logo_retainment_hedged_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_previous_ACV_with_ITC_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_previous_ACV_with_ITC_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_previous_ACV_with_ITC_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_result_type_hedged_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_result_type_hedged_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Reviews_result_type_hedged_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_SMS_CSM_ACV_Prediction_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_SMS_CSM_ACV_Prediction_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_SMS_CSM_ACV_Prediction_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_SMS_CSM_Notes_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_SMS_CSM_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_SMS_CSM_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_SMS_CSM_Renewal_Prediction_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_SMS_CSM_Renewal_Prediction_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_SMS_CSM_Renewal_Prediction_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_SMS_Manager_Notes_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_SMS_Manager_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_SMS_Manager_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_SystemModstamp": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_SystemModstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_SystemModstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Total_Hedged_ACV_with_assumptions_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Total_Hedged_ACV_with_assumptions_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Total_Hedged_ACV_with_assumptions_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Total_Previous_ACV_with_assumptions_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_Total_Previous_ACV_with_assumptions_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_Total_Previous_ACV_with_assumptions_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_USER_is_from_relevant_CSM_team_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_USER_is_from_relevant_CSM_team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_USER_is_from_relevant_CSM_team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_USER_is_relevant_CSM_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_USER_is_relevant_CSM_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_USER_is_relevant_CSM_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_X2_Months_ACV_Prediction_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_X2_Months_ACV_Prediction_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_X2_Months_ACV_Prediction_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_X2_Months_Contract_Renewal_Prediction_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_X2_Months_Contract_Renewal_Prediction_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_X2_Months_Contract_Renewal_Prediction_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_X4_Months_ACV_Prediction_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_X4_Months_ACV_Prediction_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_X4_Months_ACV_Prediction_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_X4_Months_Contract_Renewal_Prediction_c": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_X4_Months_Contract_Renewal_Prediction_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_X4_Months_Contract_Renewal_Prediction_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full__sdc_batched_at": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full__sdc_extracted_at": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full__sdc_received_at": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full__sdc_sequence": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full__sdc_table_version": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_rn": {"name": "analytics___salesforce_stg__opportunity_prediction_c_full_rn", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunity_prediction_c_full/analytics___salesforce_stg__opportunity_prediction_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_c_full_rn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory": {"name": "analytics___salesforce_stg__opportunityfieldhistory", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory__sdc_batched_at": {"name": "analytics___salesforce_stg__opportunityfieldhistory__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory__sdc_extracted_at": {"name": "analytics___salesforce_stg__opportunityfieldhistory__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory__sdc_received_at": {"name": "analytics___salesforce_stg__opportunityfieldhistory__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory__sdc_sequence": {"name": "analytics___salesforce_stg__opportunityfieldhistory__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory__sdc_table_version": {"name": "analytics___salesforce_stg__opportunityfieldhistory__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_createdbyid": {"name": "analytics___salesforce_stg__opportunityfieldhistory_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_createddate": {"name": "analytics___salesforce_stg__opportunityfieldhistory_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_d": {"name": "analytics___salesforce_stg__opportunityfieldhistory_d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_d", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_datatype": {"name": "analytics___salesforce_stg__opportunityfieldhistory_datatype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_datatype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_field": {"name": "analytics___salesforce_stg__opportunityfieldhistory_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_field", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_id": {"name": "analytics___salesforce_stg__opportunityfieldhistory_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_isdeleted": {"name": "analytics___salesforce_stg__opportunityfieldhistory_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_newvalue": {"name": "analytics___salesforce_stg__opportunityfieldhistory_newvalue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_newvalue", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_oldvalue": {"name": "analytics___salesforce_stg__opportunityfieldhistory_oldvalue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_oldvalue", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_opportunityid": {"name": "analytics___salesforce_stg__opportunityfieldhistory_opportunityid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_opportunityid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_processing_time": {"name": "analytics___salesforce_stg__opportunityfieldhistory_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_upsolver_schema_version": {"name": "analytics___salesforce_stg__opportunityfieldhistory_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunityfieldhistory/analytics___salesforce_stg__opportunityfieldhistory.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunityfieldhistory_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full": {"name": "analytics___salesforce_stg__opportunitylineitem_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Add_On_Product_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Add_On_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Add_On_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Average_ACV_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Average_ACV_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Average_ACV_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Billing_Frequency_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Billing_Frequency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Billing_Frequency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Billing_Frequency_in_number_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Billing_Frequency_in_number_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Billing_Frequency_in_number_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Bundle_Description_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Bundle_Description_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Bundle_Description_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_CreatedById": {"name": "analytics___salesforce_stg__opportunitylineitem_full_CreatedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_CreatedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_CreatedDate": {"name": "analytics___salesforce_stg__opportunitylineitem_full_CreatedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_CreatedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_CurrencyIsoCode": {"name": "analytics___salesforce_stg__opportunitylineitem_full_CurrencyIsoCode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_CurrencyIsoCode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Customer_Portion_from_List_Price_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Customer_Portion_from_List_Price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Customer_Portion_from_List_Price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Customer_Portion_from_Total_Price_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Customer_Portion_from_Total_Price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Customer_Portion_from_Total_Price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Dealhub_Main_Add_on_Product_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Dealhub_Main_Add_on_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Dealhub_Main_Add_on_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Description": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Discount": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Discount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Docusign_AnchorTag_Helper_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Docusign_AnchorTag_Helper_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Docusign_AnchorTag_Helper_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Domain_Product_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Domain_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Domain_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Estimated_Orders_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Estimated_Orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Estimated_Orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Id": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Included_Orders_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Included_Orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Included_Orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Insight_Number_of_Order_Reviews_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Insight_Number_of_Order_Reviews_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Insight_Number_of_Order_Reviews_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Insights_Dashboard_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Insights_Dashboard_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Insights_Dashboard_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Installment_Amount_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Installment_Amount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Installment_Amount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_IsDeleted": {"name": "analytics___salesforce_stg__opportunitylineitem_full_IsDeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_IsDeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Is_Add_On_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Is_Add_On_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Is_Add_On_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Is_Bundle_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Is_Bundle_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Is_Bundle_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_LastModifiedById": {"name": "analytics___salesforce_stg__opportunitylineitem_full_LastModifiedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_LastModifiedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_LastModifiedDate": {"name": "analytics___salesforce_stg__opportunitylineitem_full_LastModifiedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_LastModifiedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Legacy_Product_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Legacy_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Legacy_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_ListPrice": {"name": "analytics___salesforce_stg__opportunitylineitem_full_ListPrice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_ListPrice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Moderation_Service_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Moderation_Service_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Moderation_Service_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Name": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_No_CSM_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_No_CSM_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_No_CSM_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Number_of_Hours_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Number_of_Hours_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Number_of_Hours_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Number_of_Included_Reviews_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Number_of_Included_Reviews_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Number_of_Included_Reviews_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Number_of_Seats_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Number_of_Seats_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Number_of_Seats_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_OpportunityId": {"name": "analytics___salesforce_stg__opportunitylineitem_full_OpportunityId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_OpportunityId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Opportunity_Merge_To_Id_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Opportunity_Merge_To_Id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Opportunity_Merge_To_Id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Opportunity_Product_ID_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Opportunity_Product_ID_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Opportunity_Product_ID_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Overage_Charge_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Overage_Charge_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Overage_Charge_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Package_Name_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Package_Name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Package_Name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Package_Product_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Package_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Package_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Parent_Bundle_SKU_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Parent_Bundle_SKU_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Parent_Bundle_SKU_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Parent_Bundle_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Parent_Bundle_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Parent_Bundle_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Pre_Overage_Price_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Pre_Overage_Price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Pre_Overage_Price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_PricebookEntryId": {"name": "analytics___salesforce_stg__opportunitylineitem_full_PricebookEntryId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_PricebookEntryId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product2Id": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Product2Id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product2Id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_ProductCode": {"name": "analytics___salesforce_stg__opportunitylineitem_full_ProductCode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_ProductCode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Category_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Product_Category_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Category_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Family_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Product_Family_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Family_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Included_Seats_Total_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Product_Included_Seats_Total_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Included_Seats_Total_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Included_Seats_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Product_Included_Seats_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Included_Seats_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Line_MRR_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Product_Line_MRR_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Line_MRR_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Name_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Product_Name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Proration_Today_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Product_Proration_Today_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Proration_Today_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Proration_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Product_Proration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Product_Proration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Production_Rate_Paln_Id_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Production_Rate_Paln_Id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Production_Rate_Paln_Id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Production_Rate_Plan_Charge_Discount_Id_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Production_Rate_Plan_Charge_Discount_Id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Production_Rate_Plan_Charge_Discount_Id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Production_Rate_Plan_Charge_Recurring_Id_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Production_Rate_Plan_Charge_Recurring_Id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Production_Rate_Plan_Charge_Recurring_Id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Professional_Service_Product_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Professional_Service_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Professional_Service_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Quantity": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Quantity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Rate_Paln_Id_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Rate_Paln_Id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Rate_Paln_Id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Rate_Plan_Charge_Discount_Id_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Rate_Plan_Charge_Discount_Id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Rate_Plan_Charge_Discount_Id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Rate_Plan_Charge_Recurring_Id_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Rate_Plan_Charge_Recurring_Id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Rate_Plan_Charge_Recurring_Id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Seat_License_Product_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Seat_License_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Seat_License_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Self_Service_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Self_Service_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Self_Service_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_ServiceDate": {"name": "analytics___salesforce_stg__opportunitylineitem_full_ServiceDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_ServiceDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_SortOrder": {"name": "analytics___salesforce_stg__opportunitylineitem_full_SortOrder", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_SortOrder", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Syndication_Product_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Syndication_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Syndication_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_SystemModstamp": {"name": "analytics___salesforce_stg__opportunitylineitem_full_SystemModstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_SystemModstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_TotalPrice": {"name": "analytics___salesforce_stg__opportunitylineitem_full_TotalPrice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_TotalPrice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Total_Discount_Amount_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Total_Discount_Amount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Total_Discount_Amount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Total_List_Price_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Total_List_Price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Total_List_Price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Total_Price_No_Discount_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Total_Price_No_Discount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Total_Price_No_Discount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Total_Price_USD_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Total_Price_USD_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Total_Price_USD_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Trial_Product_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Trial_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Trial_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_UPS_Portion_from_List_Price_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_UPS_Portion_from_List_Price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_UPS_Portion_from_List_Price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_UPS_Portion_from_Total_Price_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_UPS_Portion_from_Total_Price_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_UPS_Portion_from_Total_Price_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_UnitPrice": {"name": "analytics___salesforce_stg__opportunitylineitem_full_UnitPrice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_UnitPrice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Unit_Price_For_Free_Months_Scenario_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Unit_Price_For_Free_Months_Scenario_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Unit_Price_For_Free_Months_Scenario_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Whitelabel_Product_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Whitelabel_Product_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Whitelabel_Product_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Zuora_Charge_Model_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Zuora_Charge_Model_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Zuora_Charge_Model_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Zuora_applyToDiscount_Type_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_Zuora_applyToDiscount_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_Zuora_applyToDiscount_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full__sdc_batched_at": {"name": "analytics___salesforce_stg__opportunitylineitem_full__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full__sdc_extracted_at": {"name": "analytics___salesforce_stg__opportunitylineitem_full__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full__sdc_received_at": {"name": "analytics___salesforce_stg__opportunitylineitem_full__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full__sdc_sequence": {"name": "analytics___salesforce_stg__opportunitylineitem_full__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full__sdc_table_version": {"name": "analytics___salesforce_stg__opportunitylineitem_full__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_rn": {"name": "analytics___salesforce_stg__opportunitylineitem_full_rn", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_rn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_start_date_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_start_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_start_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_test_c": {"name": "analytics___salesforce_stg__opportunitylineitem_full_test_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__opportunitylineitem_full/analytics___salesforce_stg__opportunitylineitem_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunitylineitem_full_test_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full": {"name": "analytics___salesforce_stg__partner_referral_c_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Account_Referrer_Type_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Account_Referrer_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Account_Referrer_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Additional_Context_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Additional_Context_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Additional_Context_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Agency_Involvement_Throughout_Deployment_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Agency_Involvement_Throughout_Deployment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Agency_Involvement_Throughout_Deployment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Annual_Revenue_Referred_Lead_Account_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Annual_Revenue_Referred_Lead_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Annual_Revenue_Referred_Lead_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_CS_Tags_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_CS_Tags_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_CS_Tags_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_CreatedById": {"name": "analytics___salesforce_stg__partner_referral_c_full_CreatedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_CreatedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_CreatedDate": {"name": "analytics___salesforce_stg__partner_referral_c_full_CreatedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_CreatedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_CurrencyIsoCode": {"name": "analytics___salesforce_stg__partner_referral_c_full_CurrencyIsoCode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_CurrencyIsoCode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Date_Changed_From_Heads_Up_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Date_Changed_From_Heads_Up_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Date_Changed_From_Heads_Up_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Days_Until_Heads_Up_Change_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Days_Until_Heads_Up_Change_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Days_Until_Heads_Up_Change_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Id": {"name": "analytics___salesforce_stg__partner_referral_c_full_Id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Imported_Datafix_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Imported_Datafix_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Imported_Datafix_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Include_Renewals_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Include_Renewals_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Include_Renewals_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_IsDeleted": {"name": "analytics___salesforce_stg__partner_referral_c_full_IsDeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_IsDeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_LastActivityDate": {"name": "analytics___salesforce_stg__partner_referral_c_full_LastActivityDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_LastActivityDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_LastModifiedById": {"name": "analytics___salesforce_stg__partner_referral_c_full_LastModifiedById", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_LastModifiedById", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_LastModifiedDate": {"name": "analytics___salesforce_stg__partner_referral_c_full_LastModifiedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_LastModifiedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_LastReferencedDate": {"name": "analytics___salesforce_stg__partner_referral_c_full_LastReferencedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_LastReferencedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_LastViewedDate": {"name": "analytics___salesforce_stg__partner_referral_c_full_LastViewedDate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_LastViewedDate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Managed_Services_Agency_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Managed_Services_Agency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Managed_Services_Agency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Monthly_Budget_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Monthly_Budget_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Monthly_Budget_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_My_PE_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_My_PE_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_My_PE_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Name": {"name": "analytics___salesforce_stg__partner_referral_c_full_Name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Original_Referrer_Owner_New_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Original_Referrer_Owner_New_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Original_Referrer_Owner_New_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Original_Referrer_Owner_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Original_Referrer_Owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Original_Referrer_Owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Outbound_Referral_Status_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Outbound_Referral_Status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Outbound_Referral_Status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_OwnerId": {"name": "analytics___salesforce_stg__partner_referral_c_full_OwnerId", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_OwnerId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_PM_Role_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_PM_Role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_PM_Role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Account_Community_Acc_Help_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Partner_Account_Community_Acc_Help_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Account_Community_Acc_Help_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Account_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Partner_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Contact_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Partner_Contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Involvement_in_Onboarding_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Partner_Involvement_in_Onboarding_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Involvement_in_Onboarding_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Manger_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Partner_Manger_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Manger_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Marketing_Campaign_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Partner_Marketing_Campaign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Marketing_Campaign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Owner_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Partner_Owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Referral_ID_18_Digit_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Partner_Referral_ID_18_Digit_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Referral_ID_18_Digit_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Upsell_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Partner_Upsell_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_Upsell_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_name_text_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Partner_name_text_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Partner_name_text_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Phase_2_Date_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Phase_2_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Phase_2_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Phase_2_Notes_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Phase_2_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Phase_2_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Phase_2_Product_Interest_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Phase_2_Product_Interest_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Phase_2_Product_Interest_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Platforms_Considering_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Platforms_Considering_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Platforms_Considering_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Product_Interest_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Product_Interest_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Product_Interest_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Claim_Duration_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referral_Claim_Duration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Claim_Duration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Claim_Period_End_Date_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referral_Claim_Period_End_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Claim_Period_End_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Date_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referral_Date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Notes_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referral_Notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Source_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referral_Source_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Source_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Sub_Type_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referral_Sub_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Sub_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Type_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referral_Type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referral_Type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Account_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_By_Email_Partner_Referral_Form_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_By_Email_Partner_Referral_Form_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_By_Email_Partner_Referral_Form_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_By_Partner_Referral_Form_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_By_Partner_Referral_Form_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_By_Partner_Referral_Form_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Contact_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_Contact_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Contact_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Account_Owner_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Account_Owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Account_Owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Account_Status_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Account_Status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Account_Status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Account_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Contact_Annual_Revenue_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Contact_Annual_Revenue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Contact_Annual_Revenue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Contact_Monthly_Orders_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Contact_Monthly_Orders_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Contact_Monthly_Orders_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Contact_Platform_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Contact_Platform_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_Contact_Platform_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_Lead_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_lead_Account_Name_Text_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_lead_Account_Name_Text_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_lead_Account_Name_Text_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_to_Growth_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Referred_to_Growth_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Referred_to_Growth_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Renewal_Rev_Share_Rate_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Renewal_Rev_Share_Rate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Renewal_Rev_Share_Rate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Rev_Share_Rate_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Rev_Share_Rate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Rev_Share_Rate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Solution_Needed_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Solution_Needed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Solution_Needed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_SystemModstamp": {"name": "analytics___salesforce_stg__partner_referral_c_full_SystemModstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_SystemModstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Trigger_Notification_c": {"name": "analytics___salesforce_stg__partner_referral_c_full_Trigger_Notification_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_Trigger_Notification_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full__sdc_batched_at": {"name": "analytics___salesforce_stg__partner_referral_c_full__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full__sdc_extracted_at": {"name": "analytics___salesforce_stg__partner_referral_c_full__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full__sdc_received_at": {"name": "analytics___salesforce_stg__partner_referral_c_full__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full__sdc_sequence": {"name": "analytics___salesforce_stg__partner_referral_c_full__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full__sdc_table_version": {"name": "analytics___salesforce_stg__partner_referral_c_full__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_rn": {"name": "analytics___salesforce_stg__partner_referral_c_full_rn", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__partner_referral_c_full/analytics___salesforce_stg__partner_referral_c_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__partner_referral_c_full_rn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task": {"name": "analytics___salesforce_stg__task", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___salesforce_stg__task__sdc_batched_at": {"name": "analytics___salesforce_stg__task__sdc_batched_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task__sdc_batched_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task__sdc_extracted_at": {"name": "analytics___salesforce_stg__task__sdc_extracted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task__sdc_extracted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task__sdc_received_at": {"name": "analytics___salesforce_stg__task__sdc_received_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task__sdc_received_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task__sdc_sequence": {"name": "analytics___salesforce_stg__task__sdc_sequence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task__sdc_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task__sdc_table_version": {"name": "analytics___salesforce_stg__task__sdc_table_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task__sdc_table_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_accountid": {"name": "analytics___salesforce_stg__task_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_activity_id_18_digit_c": {"name": "analytics___salesforce_stg__task_activity_id_18_digit_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_activity_id_18_digit_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_activitydate": {"name": "analytics___salesforce_stg__task_activitydate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_activitydate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_agency_event_stage_c": {"name": "analytics___salesforce_stg__task_agency_event_stage_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_agency_event_stage_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_automate_lead_status_hidden_field_c": {"name": "analytics___salesforce_stg__task_automate_lead_status_hidden_field_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_automate_lead_status_hidden_field_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_booked_by_prospect_c_c": {"name": "analytics___salesforce_stg__task_booked_by_prospect_c_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_booked_by_prospect_c_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_call_disposition_c": {"name": "analytics___salesforce_stg__task_call_disposition_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_call_disposition_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_call_sentiment_c": {"name": "analytics___salesforce_stg__task_call_sentiment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_call_sentiment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_call_status_c": {"name": "analytics___salesforce_stg__task_call_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_call_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_calldisposition": {"name": "analytics___salesforce_stg__task_calldisposition", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_calldisposition", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_calldurationinseconds": {"name": "analytics___salesforce_stg__task_calldurationinseconds", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_calldurationinseconds", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_callobject": {"name": "analytics___salesforce_stg__task_callobject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_callobject", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_calltype": {"name": "analytics___salesforce_stg__task_calltype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_calltype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_canceled_cp_c": {"name": "analytics___salesforce_stg__task_canceled_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_canceled_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_completeddatetime": {"name": "analytics___salesforce_stg__task_completeddatetime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_completeddatetime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_completion_c": {"name": "analytics___salesforce_stg__task_completion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_completion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_connected_count_c": {"name": "analytics___salesforce_stg__task_connected_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_connected_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_considering_replatforming_in_12_months_c": {"name": "analytics___salesforce_stg__task_considering_replatforming_in_12_months_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_considering_replatforming_in_12_months_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_created_by_flow_c": {"name": "analytics___salesforce_stg__task_created_by_flow_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_created_by_flow_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_created_by_me_c": {"name": "analytics___salesforce_stg__task_created_by_me_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_created_by_me_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_created_by_role_c": {"name": "analytics___salesforce_stg__task_created_by_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_created_by_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_createdbyid": {"name": "analytics___salesforce_stg__task_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_createddate": {"name": "analytics___salesforce_stg__task_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_currencyisocode": {"name": "analytics___salesforce_stg__task_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_d": {"name": "analytics___salesforce_stg__task_d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_d", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_demo_approval_status_c": {"name": "analytics___salesforce_stg__task_demo_approval_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_demo_approval_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_demo_assignment_c": {"name": "analytics___salesforce_stg__task_demo_assignment_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_demo_assignment_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_demo_cancellation_reason_c": {"name": "analytics___salesforce_stg__task_demo_cancellation_reason_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_demo_cancellation_reason_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_demo_status_c": {"name": "analytics___salesforce_stg__task_demo_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_demo_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_description": {"name": "analytics___salesforce_stg__task_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_discovery_call_account_name_c": {"name": "analytics___salesforce_stg__task_discovery_call_account_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_discovery_call_account_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_discovery_call_contact_name_c": {"name": "analytics___salesforce_stg__task_discovery_call_contact_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_discovery_call_contact_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_during_dst_c": {"name": "analytics___salesforce_stg__task_during_dst_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_during_dst_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_gong_gong_selected_process_c": {"name": "analytics___salesforce_stg__task_gong_gong_selected_process_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_gong_gong_selected_process_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_id": {"name": "analytics___salesforce_stg__task_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_is_task_from_external_system_c": {"name": "analytics___salesforce_stg__task_is_task_from_external_system_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_is_task_from_external_system_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_isarchived": {"name": "analytics___salesforce_stg__task_isarchived", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_isarchived", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_isclosed": {"name": "analytics___salesforce_stg__task_isclosed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_isclosed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_isdeleted": {"name": "analytics___salesforce_stg__task_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_ishighpriority": {"name": "analytics___salesforce_stg__task_ishighpriority", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_ishighpriority", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_isrecurrence": {"name": "analytics___salesforce_stg__task_isrecurrence", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_isrecurrence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_isreminderset": {"name": "analytics___salesforce_stg__task_isreminderset", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_isreminderset", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_isvisibleinselfservice": {"name": "analytics___salesforce_stg__task_isvisibleinselfservice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_isvisibleinselfservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_labsactionplans_taskaptask_c": {"name": "analytics___salesforce_stg__task_labsactionplans_taskaptask_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_labsactionplans_taskaptask_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_last_modified_date_for_report_c": {"name": "analytics___salesforce_stg__task_last_modified_date_for_report_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_last_modified_date_for_report_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_last_qbr_c": {"name": "analytics___salesforce_stg__task_last_qbr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_last_qbr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_lastmodifiedbyid": {"name": "analytics___salesforce_stg__task_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_lastmodifieddate": {"name": "analytics___salesforce_stg__task_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_lead_lookup_c": {"name": "analytics___salesforce_stg__task_lead_lookup_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_lead_lookup_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_live_transfer_sdr_c": {"name": "analytics___salesforce_stg__task_live_transfer_sdr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_live_transfer_sdr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_main_goal_c": {"name": "analytics___salesforce_stg__task_main_goal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_main_goal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_medium_c": {"name": "analytics___salesforce_stg__task_medium_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_medium_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_medium_type_c": {"name": "analytics___salesforce_stg__task_medium_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_medium_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_no_show_cp_c": {"name": "analytics___salesforce_stg__task_no_show_cp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_no_show_cp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_on_opp_c": {"name": "analytics___salesforce_stg__task_on_opp_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_on_opp_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_ownerid": {"name": "analytics___salesforce_stg__task_ownerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_ownerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_phase_c": {"name": "analytics___salesforce_stg__task_phase_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_phase_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_platform_considering_c": {"name": "analytics___salesforce_stg__task_platform_considering_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_platform_considering_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_presentation_link_c": {"name": "analytics___salesforce_stg__task_presentation_link_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_presentation_link_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_priority": {"name": "analytics___salesforce_stg__task_priority", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_priority", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_processing_time": {"name": "analytics___salesforce_stg__task_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_products_shown_c": {"name": "analytics___salesforce_stg__task_products_shown_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_products_shown_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_rcsfl_call_recording_c": {"name": "analytics___salesforce_stg__task_rcsfl_call_recording_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_rcsfl_call_recording_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_rcsfl_call_unique_id_c": {"name": "analytics___salesforce_stg__task_rcsfl_call_unique_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_rcsfl_call_unique_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_rcsfl_external_whoid_c": {"name": "analytics___salesforce_stg__task_rcsfl_external_whoid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_rcsfl_external_whoid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_rcsfl_rc_logging_type_c": {"name": "analytics___salesforce_stg__task_rcsfl_rc_logging_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_rcsfl_rc_logging_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_rcsfl_recording_information_c": {"name": "analytics___salesforce_stg__task_rcsfl_recording_information_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_rcsfl_recording_information_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_re_platform_notes_c": {"name": "analytics___salesforce_stg__task_re_platform_notes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_re_platform_notes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_recordtypeid": {"name": "analytics___salesforce_stg__task_recordtypeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_recordtypeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_recurrenceactivityid": {"name": "analytics___salesforce_stg__task_recurrenceactivityid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_recurrenceactivityid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_recurrencedayofmonth": {"name": "analytics___salesforce_stg__task_recurrencedayofmonth", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_recurrencedayofmonth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_recurrencedayofweekmask": {"name": "analytics___salesforce_stg__task_recurrencedayofweekmask", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_recurrencedayofweekmask", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_recurrenceenddateonly": {"name": "analytics___salesforce_stg__task_recurrenceenddateonly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_recurrenceenddateonly", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_recurrenceinterval": {"name": "analytics___salesforce_stg__task_recurrenceinterval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_recurrenceinterval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_recurrencestartdateonly": {"name": "analytics___salesforce_stg__task_recurrencestartdateonly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_recurrencestartdateonly", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_recurrencetimezonesidkey": {"name": "analytics___salesforce_stg__task_recurrencetimezonesidkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_recurrencetimezonesidkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_recurrencetype": {"name": "analytics___salesforce_stg__task_recurrencetype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_recurrencetype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_reminderdatetime": {"name": "analytics___salesforce_stg__task_reminderdatetime", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_reminderdatetime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_reschedule_c": {"name": "analytics___salesforce_stg__task_reschedule_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_reschedule_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_sales_demo_feedback_c": {"name": "analytics___salesforce_stg__task_sales_demo_feedback_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_sales_demo_feedback_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft1_call_duration_in_minutes_c": {"name": "analytics___salesforce_stg__task_salesloft1_call_duration_in_minutes_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft1_call_duration_in_minutes_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft1_salesloft_type_c": {"name": "analytics___salesforce_stg__task_salesloft1_salesloft_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft1_salesloft_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft_cadence_id_c": {"name": "analytics___salesforce_stg__task_salesloft_cadence_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft_cadence_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft_cadence_name_c": {"name": "analytics___salesforce_stg__task_salesloft_cadence_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft_cadence_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft_clicked_count_c": {"name": "analytics___salesforce_stg__task_salesloft_clicked_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft_clicked_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft_email_template_id_c": {"name": "analytics___salesforce_stg__task_salesloft_email_template_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft_email_template_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft_email_template_title_c": {"name": "analytics___salesforce_stg__task_salesloft_email_template_title_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft_email_template_title_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft_step_day_new_c": {"name": "analytics___salesforce_stg__task_salesloft_step_day_new_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft_step_day_new_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft_step_id_c": {"name": "analytics___salesforce_stg__task_salesloft_step_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft_step_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft_step_name_c": {"name": "analytics___salesforce_stg__task_salesloft_step_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft_step_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft_step_type_c": {"name": "analytics___salesforce_stg__task_salesloft_step_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft_step_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloft_viewed_count_c": {"name": "analytics___salesforce_stg__task_salesloft_viewed_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloft_viewed_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_salesloftreplycount_c": {"name": "analytics___salesforce_stg__task_salesloftreplycount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_salesloftreplycount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_sdr_c": {"name": "analytics___salesforce_stg__task_sdr_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_sdr_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_sdr_role_c": {"name": "analytics___salesforce_stg__task_sdr_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_sdr_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_sdr_role_old_c": {"name": "analytics___salesforce_stg__task_sdr_role_old_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_sdr_role_old_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_selected_product_for_lead_conversion_c": {"name": "analytics___salesforce_stg__task_selected_product_for_lead_conversion_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_selected_product_for_lead_conversion_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_sms_topics_discussed_c": {"name": "analytics___salesforce_stg__task_sms_topics_discussed_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_sms_topics_discussed_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_sms_user_id_c": {"name": "analytics___salesforce_stg__task_sms_user_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_sms_user_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_social_activity_c": {"name": "analytics___salesforce_stg__task_social_activity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_social_activity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_status": {"name": "analytics___salesforce_stg__task_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_subject": {"name": "analytics___salesforce_stg__task_subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_subject", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_systemmodstamp": {"name": "analytics___salesforce_stg__task_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_task_completion_date_c": {"name": "analytics___salesforce_stg__task_task_completion_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_task_completion_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_task_creation_time_bucket_c": {"name": "analytics___salesforce_stg__task_task_creation_time_bucket_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_task_creation_time_bucket_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_task_creation_time_c": {"name": "analytics___salesforce_stg__task_task_creation_time_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_task_creation_time_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_tasksubtype": {"name": "analytics___salesforce_stg__task_tasksubtype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_tasksubtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_type": {"name": "analytics___salesforce_stg__task_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_unique_click_count_c": {"name": "analytics___salesforce_stg__task_unique_click_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_unique_click_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_unique_reply_count_c": {"name": "analytics___salesforce_stg__task_unique_reply_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_unique_reply_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_unique_view_count_c": {"name": "analytics___salesforce_stg__task_unique_view_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_unique_view_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_upsolver_schema_version": {"name": "analytics___salesforce_stg__task_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_voicemail_count_c": {"name": "analytics___salesforce_stg__task_voicemail_count_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_voicemail_count_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_whatcount": {"name": "analytics___salesforce_stg__task_whatcount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_whatcount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_whatid": {"name": "analytics___salesforce_stg__task_whatid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_whatid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_whocount": {"name": "analytics___salesforce_stg__task_whocount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_whocount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_whoid": {"name": "analytics___salesforce_stg__task_whoid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_whoid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_activity_time_c": {"name": "analytics___salesforce_stg__task_yesware_activity_time_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_activity_time_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_activitytype_c": {"name": "analytics___salesforce_stg__task_yesware_activitytype_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_activitytype_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_bounce_c": {"name": "analytics___salesforce_stg__task_yesware_bounce_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_bounce_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_connectcall_c": {"name": "analytics___salesforce_stg__task_yesware_connectcall_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_connectcall_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_day_c": {"name": "analytics___salesforce_stg__task_yesware_day_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_day_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_emailtype_c": {"name": "analytics___salesforce_stg__task_yesware_emailtype_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_emailtype_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_link_click_c": {"name": "analytics___salesforce_stg__task_yesware_link_click_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_link_click_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_meeting_c": {"name": "analytics___salesforce_stg__task_yesware_meeting_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_meeting_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_open_c": {"name": "analytics___salesforce_stg__task_yesware_open_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_open_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_reply_c": {"name": "analytics___salesforce_stg__task_yesware_reply_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_reply_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_sent_c": {"name": "analytics___salesforce_stg__task_yesware_sent_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_sent_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_subject_c": {"name": "analytics___salesforce_stg__task_yesware_subject_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_subject_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_template_c": {"name": "analytics___salesforce_stg__task_yesware_template_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_template_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yesware_totalcall_c": {"name": "analytics___salesforce_stg__task_yesware_totalcall_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yesware_totalcall_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yeswarecampaignid_c": {"name": "analytics___salesforce_stg__task_yeswarecampaignid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yeswarecampaignid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yeswarecampaignname_c": {"name": "analytics___salesforce_stg__task_yeswarecampaignname_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yeswarecampaignname_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yeswarecampaigntotaltouches_c": {"name": "analytics___salesforce_stg__task_yeswarecampaigntotaltouches_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yeswarecampaigntotaltouches_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yeswarecampaigntouchnumber_c": {"name": "analytics___salesforce_stg__task_yeswarecampaigntouchnumber_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yeswarecampaigntouchnumber_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yeswarecampaigntouchtype_c": {"name": "analytics___salesforce_stg__task_yeswarecampaigntouchtype_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yeswarecampaigntouchtype_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yeswareiscampaign_c": {"name": "analytics___salesforce_stg__task_yeswareiscampaign_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yeswareiscampaign_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yeswareismailmerge_c": {"name": "analytics___salesforce_stg__task_yeswareismailmerge_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yeswareismailmerge_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yeswaremailmergename_c": {"name": "analytics___salesforce_stg__task_yeswaremailmergename_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yeswaremailmergename_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yeswaretemplateids_c": {"name": "analytics___salesforce_stg__task_yeswaretemplateids_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yeswaretemplateids_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__task_yeswaretemplatenames_c": {"name": "analytics___salesforce_stg__task_yeswaretemplatenames_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__task/analytics___salesforce_stg__task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__task_yeswaretemplatenames_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user": {"name": "analytics___salesforce_stg__user", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user", "block_contents": "base model for Salesforce user object's incremental table (non-formula fields)"}, "doc.yoda.analytics___salesforce_stg__user__rivery_last_update": {"name": "analytics___salesforce_stg__user__rivery_last_update", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user__rivery_last_update", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user__rivery_river_id": {"name": "analytics___salesforce_stg__user__rivery_river_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user__rivery_river_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user__rivery_run_id": {"name": "analytics___salesforce_stg__user__rivery_run_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user__rivery_run_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_aboutme": {"name": "analytics___salesforce_stg__user_aboutme", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_aboutme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_account_id_c": {"name": "analytics___salesforce_stg__user_account_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_account_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_account_manager_csm_pod_c": {"name": "analytics___salesforce_stg__user_account_manager_csm_pod_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_account_manager_csm_pod_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_account_s_owner_c": {"name": "analytics___salesforce_stg__user_account_s_owner_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_account_s_owner_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_accountid": {"name": "analytics___salesforce_stg__user_accountid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_address_fields_c": {"name": "analytics___salesforce_stg__user_address_fields_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_address_fields_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_alias": {"name": "analytics___salesforce_stg__user_alias", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_alias", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_ambition_isambitionuser_c": {"name": "analytics___salesforce_stg__user_ambition_isambitionuser_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_ambition_isambitionuser_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_badgetext": {"name": "analytics___salesforce_stg__user_badgetext", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_badgetext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_bannerphotourl": {"name": "analytics___salesforce_stg__user_bannerphotourl", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_bannerphotourl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_business_email_c": {"name": "analytics___salesforce_stg__user_business_email_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_business_email_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_business_name_c": {"name": "analytics___salesforce_stg__user_business_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_business_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_calendar_link_c": {"name": "analytics___salesforce_stg__user_calendar_link_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_calendar_link_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_callcenterid": {"name": "analytics___salesforce_stg__user_callcenterid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_callcenterid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_city": {"name": "analytics___salesforce_stg__user_city", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_communitynickname": {"name": "analytics___salesforce_stg__user_communitynickname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_communitynickname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_company_c": {"name": "analytics___salesforce_stg__user_company_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_company_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_companyname": {"name": "analytics___salesforce_stg__user_companyname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_companyname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_contactid": {"name": "analytics___salesforce_stg__user_contactid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_contactid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_country": {"name": "analytics___salesforce_stg__user_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_countrycode": {"name": "analytics___salesforce_stg__user_countrycode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_countrycode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_createdbyid": {"name": "analytics___salesforce_stg__user_createdbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_createdbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_createddate": {"name": "analytics___salesforce_stg__user_createddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_csm_team_c": {"name": "analytics___salesforce_stg__user_csm_team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_csm_team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_currencyisocode": {"name": "analytics___salesforce_stg__user_currencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_currencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_defaultcurrencyisocode": {"name": "analytics___salesforce_stg__user_defaultcurrencyisocode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_defaultcurrencyisocode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_defaultgroupnotificationfrequency": {"name": "analytics___salesforce_stg__user_defaultgroupnotificationfrequency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_defaultgroupnotificationfrequency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_delegatedapproverid": {"name": "analytics___salesforce_stg__user_delegatedapproverid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_delegatedapproverid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_department": {"name": "analytics___salesforce_stg__user_department", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_department", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_dfsle_canmanageaccount_c": {"name": "analytics___salesforce_stg__user_dfsle_canmanageaccount_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_dfsle_canmanageaccount_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_dfsle_provisioned_c": {"name": "analytics___salesforce_stg__user_dfsle_provisioned_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_dfsle_provisioned_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_dfsle_status_c": {"name": "analytics___salesforce_stg__user_dfsle_status_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_dfsle_status_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_dfsle_username_c": {"name": "analytics___salesforce_stg__user_dfsle_username_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_dfsle_username_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_digestfrequency": {"name": "analytics___salesforce_stg__user_digestfrequency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_digestfrequency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_division": {"name": "analytics___salesforce_stg__user_division", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_division", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_dsfs_dsprosfmembershipstatus_c": {"name": "analytics___salesforce_stg__user_dsfs_dsprosfmembershipstatus_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_dsfs_dsprosfmembershipstatus_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_dsfs_dsprosfpassword_c": {"name": "analytics___salesforce_stg__user_dsfs_dsprosfpassword_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_dsfs_dsprosfpassword_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_dsfs_dsprosfusername_c": {"name": "analytics___salesforce_stg__user_dsfs_dsprosfusername_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_dsfs_dsprosfusername_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_email": {"name": "analytics___salesforce_stg__user_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_emailencodingkey": {"name": "analytics___salesforce_stg__user_emailencodingkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_emailencodingkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_emailpreferencesautobcc": {"name": "analytics___salesforce_stg__user_emailpreferencesautobcc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_emailpreferencesautobcc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_emailpreferencesautobccstayintouch": {"name": "analytics___salesforce_stg__user_emailpreferencesautobccstayintouch", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_emailpreferencesautobccstayintouch", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_emailpreferencesstayintouchreminder": {"name": "analytics___salesforce_stg__user_emailpreferencesstayintouchreminder", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_emailpreferencesstayintouchreminder", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_employeenumber": {"name": "analytics___salesforce_stg__user_employeenumber", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_employeenumber", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_exclude_from_assignment_tracking_c": {"name": "analytics___salesforce_stg__user_exclude_from_assignment_tracking_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_exclude_from_assignment_tracking_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_extension": {"name": "analytics___salesforce_stg__user_extension", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_extension", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_fax": {"name": "analytics___salesforce_stg__user_fax", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_fax", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_federationidentifier": {"name": "analytics___salesforce_stg__user_federationidentifier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_federationidentifier", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_finance_department_description_c": {"name": "analytics___salesforce_stg__user_finance_department_description_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_finance_department_description_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_firstname": {"name": "analytics___salesforce_stg__user_firstname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_firstname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_forecastenabled": {"name": "analytics___salesforce_stg__user_forecastenabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_forecastenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_full_name_c": {"name": "analytics___salesforce_stg__user_full_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_fullphotourl": {"name": "analytics___salesforce_stg__user_fullphotourl", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_fullphotourl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_geocodeaccuracy": {"name": "analytics___salesforce_stg__user_geocodeaccuracy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_geocodeaccuracy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_gmt_c": {"name": "analytics___salesforce_stg__user_gmt_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_gmt_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_id": {"name": "analytics___salesforce_stg__user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_ignore_claim_c": {"name": "analytics___salesforce_stg__user_ignore_claim_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_ignore_claim_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_individualid": {"name": "analytics___salesforce_stg__user_individualid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_individualid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_invitation_date_c": {"name": "analytics___salesforce_stg__user_invitation_date_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_invitation_date_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_isactive": {"name": "analytics___salesforce_stg__user_isactive", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_isactive", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_isextindicatorvisible": {"name": "analytics___salesforce_stg__user_isextindicatorvisible", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_isextindicatorvisible", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_isintegration_c": {"name": "analytics___salesforce_stg__user_isintegration_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_isintegration_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_isportalenabled": {"name": "analytics___salesforce_stg__user_isportalenabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_isportalenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_isprofilephotoactive": {"name": "analytics___salesforce_stg__user_isprofilephotoactive", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_isprofilephotoactive", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_isqueue_c": {"name": "analytics___salesforce_stg__user_isqueue_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_isqueue_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_languagelocalekey": {"name": "analytics___salesforce_stg__user_languagelocalekey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_languagelocalekey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_last_login_date_custom_c": {"name": "analytics___salesforce_stg__user_last_login_date_custom_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_last_login_date_custom_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_lastlogindate": {"name": "analytics___salesforce_stg__user_lastlogindate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_lastlogindate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_lastmodifiedbyid": {"name": "analytics___salesforce_stg__user_lastmodifiedbyid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_lastmodifiedbyid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_lastmodifieddate": {"name": "analytics___salesforce_stg__user_lastmodifieddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_lastmodifieddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_lastname": {"name": "analytics___salesforce_stg__user_lastname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_lastname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_lastpasswordchangedate": {"name": "analytics___salesforce_stg__user_lastpasswordchangedate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_lastpasswordchangedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_lastreferenceddate": {"name": "analytics___salesforce_stg__user_lastreferenceddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_lastreferenceddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_lastvieweddate": {"name": "analytics___salesforce_stg__user_lastvieweddate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_lastvieweddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_latitude": {"name": "analytics___salesforce_stg__user_latitude", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_latitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_localesidkey": {"name": "analytics___salesforce_stg__user_localesidkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_localesidkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_login_user_member_c": {"name": "analytics___salesforce_stg__user_login_user_member_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_login_user_member_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_longitude": {"name": "analytics___salesforce_stg__user_longitude", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_longitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_low_touch_csm_c": {"name": "analytics___salesforce_stg__user_low_touch_csm_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_low_touch_csm_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_manager_text_c": {"name": "analytics___salesforce_stg__user_manager_text_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_manager_text_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_managerid": {"name": "analytics___salesforce_stg__user_managerid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_managerid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_marketing_activity_user_c": {"name": "analytics___salesforce_stg__user_marketing_activity_user_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_marketing_activity_user_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mediumbannerphotourl": {"name": "analytics___salesforce_stg__user_mediumbannerphotourl", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mediumbannerphotourl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mediumphotourl": {"name": "analytics___salesforce_stg__user_mediumphotourl", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mediumphotourl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachinganonwebactivitylist_c": {"name": "analytics___salesforce_stg__user_mkto_si_iscachinganonwebactivitylist_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachinganonwebactivitylist_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingbestbets_c": {"name": "analytics___salesforce_stg__user_mkto_si_iscachingbestbets_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingbestbets_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingemailactivitylist_c": {"name": "analytics___salesforce_stg__user_mkto_si_iscachingemailactivitylist_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingemailactivitylist_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachinggroupedwebactivitylist_c": {"name": "analytics___salesforce_stg__user_mkto_si_iscachinggroupedwebactivitylist_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachinggroupedwebactivitylist_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachinginterestingmomentslist_c": {"name": "analytics___salesforce_stg__user_mkto_si_iscachinginterestingmomentslist_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachinginterestingmomentslist_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingscoringlist_c": {"name": "analytics___salesforce_stg__user_mkto_si_iscachingscoringlist_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingscoringlist_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingstreamlist_c": {"name": "analytics___salesforce_stg__user_mkto_si_iscachingstreamlist_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingstreamlist_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingwatchlist_c": {"name": "analytics___salesforce_stg__user_mkto_si_iscachingwatchlist_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingwatchlist_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingwebactivitylist_c": {"name": "analytics___salesforce_stg__user_mkto_si_iscachingwebactivitylist_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mkto_si_iscachingwebactivitylist_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mkto_si_sales_insight_counter_c": {"name": "analytics___salesforce_stg__user_mkto_si_sales_insight_counter_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mkto_si_sales_insight_counter_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_mobilephone": {"name": "analytics___salesforce_stg__user_mobilephone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_mobilephone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_multi_product_csm_c": {"name": "analytics___salesforce_stg__user_multi_product_csm_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_multi_product_csm_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_my_content_c": {"name": "analytics___salesforce_stg__user_my_content_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_my_content_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_name": {"name": "analytics___salesforce_stg__user_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_numberoffailedlogins": {"name": "analytics___salesforce_stg__user_numberoffailedlogins", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_numberoffailedlogins", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_offlinepdatrialexpirationdate": {"name": "analytics___salesforce_stg__user_offlinepdatrialexpirationdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_offlinepdatrialexpirationdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_offlinetrialexpirationdate": {"name": "analytics___salesforce_stg__user_offlinetrialexpirationdate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_offlinetrialexpirationdate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_onboarding_assignee_c": {"name": "analytics___salesforce_stg__user_onboarding_assignee_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_onboarding_assignee_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_outofofficemessage": {"name": "analytics___salesforce_stg__user_outofofficemessage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_outofofficemessage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_partner_manager_c": {"name": "analytics___salesforce_stg__user_partner_manager_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_partner_manager_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_paypal_account_c": {"name": "analytics___salesforce_stg__user_paypal_account_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_paypal_account_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_phone": {"name": "analytics___salesforce_stg__user_phone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_portalrole": {"name": "analytics___salesforce_stg__user_portalrole", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_portalrole", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_postalcode": {"name": "analytics___salesforce_stg__user_postalcode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_postalcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_priority_escalation_permission_c": {"name": "analytics___salesforce_stg__user_priority_escalation_permission_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_priority_escalation_permission_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_prm_role_c": {"name": "analytics___salesforce_stg__user_prm_role_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_prm_role_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_process_base_time_1_min_c": {"name": "analytics___salesforce_stg__user_process_base_time_1_min_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_process_base_time_1_min_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_profile_formula_c": {"name": "analytics___salesforce_stg__user_profile_formula_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_profile_formula_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_profileid": {"name": "analytics___salesforce_stg__user_profileid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_profileid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_queuetype_c": {"name": "analytics___salesforce_stg__user_queuetype_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_queuetype_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_quota_c": {"name": "analytics___salesforce_stg__user_quota_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_quota_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_receivesadmininfoemails": {"name": "analytics___salesforce_stg__user_receivesadmininfoemails", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_receivesadmininfoemails", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_receivesinfoemails": {"name": "analytics___salesforce_stg__user_receivesinfoemails", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_receivesinfoemails", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_recordval_rv2disableautovalidate_c": {"name": "analytics___salesforce_stg__user_recordval_rv2disableautovalidate_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_recordval_rv2disableautovalidate_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_recordval_rv2disabletriggers_c": {"name": "analytics___salesforce_stg__user_recordval_rv2disabletriggers_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_recordval_rv2disabletriggers_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_retention_goal_c": {"name": "analytics___salesforce_stg__user_retention_goal_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_retention_goal_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_role_name_c": {"name": "analytics___salesforce_stg__user_role_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_role_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_s4g_currencies_endpoint_c": {"name": "analytics___salesforce_stg__user_s4g_currencies_endpoint_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_s4g_currencies_endpoint_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_seller_s_capacity_c": {"name": "analytics___salesforce_stg__user_seller_s_capacity_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_seller_s_capacity_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_senderemail": {"name": "analytics___salesforce_stg__user_senderemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_senderemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_sendername": {"name": "analytics___salesforce_stg__user_sendername", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_sendername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_signature": {"name": "analytics___salesforce_stg__user_signature", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_signature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_slack_channel_id_c": {"name": "analytics___salesforce_stg__user_slack_channel_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_slack_channel_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_smallbannerphotourl": {"name": "analytics___salesforce_stg__user_smallbannerphotourl", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_smallbannerphotourl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_smallphotourl": {"name": "analytics___salesforce_stg__user_smallphotourl", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_smallphotourl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_state": {"name": "analytics___salesforce_stg__user_state", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_state", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_statecode": {"name": "analytics___salesforce_stg__user_statecode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_statecode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_stayintouchnote": {"name": "analytics___salesforce_stg__user_stayintouchnote", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_stayintouchnote", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_stayintouchsignature": {"name": "analytics___salesforce_stg__user_stayintouchsignature", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_stayintouchsignature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_stayintouchsubject": {"name": "analytics___salesforce_stg__user_stayintouchsubject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_stayintouchsubject", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_street": {"name": "analytics___salesforce_stg__user_street", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_street", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_subscription_seller_c": {"name": "analytics___salesforce_stg__user_subscription_seller_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_subscription_seller_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_super_csm_c": {"name": "analytics___salesforce_stg__user_super_csm_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_super_csm_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_systemmodstamp": {"name": "analytics___salesforce_stg__user_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_team_c": {"name": "analytics___salesforce_stg__user_team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_territory_c": {"name": "analytics___salesforce_stg__user_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_ticket_department_c": {"name": "analytics___salesforce_stg__user_ticket_department_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_ticket_department_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_timezonesidkey": {"name": "analytics___salesforce_stg__user_timezonesidkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_timezonesidkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_title": {"name": "analytics___salesforce_stg__user_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_type_c": {"name": "analytics___salesforce_stg__user_type_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_type_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_us_smb_senior_ae_c": {"name": "analytics___salesforce_stg__user_us_smb_senior_ae_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_us_smb_senior_ae_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_usage_seller_c": {"name": "analytics___salesforce_stg__user_usage_seller_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_usage_seller_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_user_currency_c": {"name": "analytics___salesforce_stg__user_user_currency_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_user_currency_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_username": {"name": "analytics___salesforce_stg__user_username", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_username", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpermissionscallcenterautologin": {"name": "analytics___salesforce_stg__user_userpermissionscallcenterautologin", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpermissionscallcenterautologin", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpermissionschatteranswersuser": {"name": "analytics___salesforce_stg__user_userpermissionschatteranswersuser", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpermissionschatteranswersuser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpermissionsinteractionuser": {"name": "analytics___salesforce_stg__user_userpermissionsinteractionuser", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpermissionsinteractionuser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpermissionsknowledgeuser": {"name": "analytics___salesforce_stg__user_userpermissionsknowledgeuser", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpermissionsknowledgeuser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpermissionsliveagentuser": {"name": "analytics___salesforce_stg__user_userpermissionsliveagentuser", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpermissionsliveagentuser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpermissionsmarketinguser": {"name": "analytics___salesforce_stg__user_userpermissionsmarketinguser", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpermissionsmarketinguser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpermissionsofflineuser": {"name": "analytics___salesforce_stg__user_userpermissionsofflineuser", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpermissionsofflineuser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpermissionssfcontentuser": {"name": "analytics___salesforce_stg__user_userpermissionssfcontentuser", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpermissionssfcontentuser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpermissionssupportuser": {"name": "analytics___salesforce_stg__user_userpermissionssupportuser", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpermissionssupportuser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesactivityreminderspopup": {"name": "analytics___salesforce_stg__user_userpreferencesactivityreminderspopup", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesactivityreminderspopup", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesapexpagesdevelopermode": {"name": "analytics___salesforce_stg__user_userpreferencesapexpagesdevelopermode", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesapexpagesdevelopermode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencescachediagnostics": {"name": "analytics___salesforce_stg__user_userpreferencescachediagnostics", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencescachediagnostics", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencescontentemailasandwhen": {"name": "analytics___salesforce_stg__user_userpreferencescontentemailasandwhen", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencescontentemailasandwhen", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencescontentnoemail": {"name": "analytics___salesforce_stg__user_userpreferencescontentnoemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencescontentnoemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencescreatelexappswtshown": {"name": "analytics___salesforce_stg__user_userpreferencescreatelexappswtshown", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencescreatelexappswtshown", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisableallfeedsemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisableallfeedsemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisableallfeedsemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablebookmarkemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisablebookmarkemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablebookmarkemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablechangecommentemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisablechangecommentemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablechangecommentemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisableendorsementemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisableendorsementemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisableendorsementemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablefilesharenotificationsforapi": {"name": "analytics___salesforce_stg__user_userpreferencesdisablefilesharenotificationsforapi", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablefilesharenotificationsforapi", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablefollowersemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisablefollowersemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablefollowersemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablelatercommentemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisablelatercommentemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablelatercommentemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablelikeemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisablelikeemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablelikeemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablementionspostemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisablementionspostemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablementionspostemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablemessageemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisablemessageemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablemessageemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisableprofilepostemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisableprofilepostemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisableprofilepostemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablesharepostemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisablesharepostemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisablesharepostemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdiscommentafterlikeemail": {"name": "analytics___salesforce_stg__user_userpreferencesdiscommentafterlikeemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdiscommentafterlikeemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdismentionscommentemail": {"name": "analytics___salesforce_stg__user_userpreferencesdismentionscommentemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdismentionscommentemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisprofpostcommentemail": {"name": "analytics___salesforce_stg__user_userpreferencesdisprofpostcommentemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesdisprofpostcommentemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesenableautosubforfeeds": {"name": "analytics___salesforce_stg__user_userpreferencesenableautosubforfeeds", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesenableautosubforfeeds", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceseventreminderscheckboxdefault": {"name": "analytics___salesforce_stg__user_userpreferenceseventreminderscheckboxdefault", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceseventreminderscheckboxdefault", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesexcludemailappattachments": {"name": "analytics___salesforce_stg__user_userpreferencesexcludemailappattachments", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesexcludemailappattachments", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesfavoritesshowtopfavorites": {"name": "analytics___salesforce_stg__user_userpreferencesfavoritesshowtopfavorites", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesfavoritesshowtopfavorites", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesfavoriteswtshown": {"name": "analytics___salesforce_stg__user_userpreferencesfavoriteswtshown", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesfavoriteswtshown", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesglobalnavbarwtshown": {"name": "analytics___salesforce_stg__user_userpreferencesglobalnavbarwtshown", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesglobalnavbarwtshown", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesglobalnavgridmenuwtshown": {"name": "analytics___salesforce_stg__user_userpreferencesglobalnavgridmenuwtshown", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesglobalnavgridmenuwtshown", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceshascelebrationbadge": {"name": "analytics___salesforce_stg__user_userpreferenceshascelebrationbadge", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceshascelebrationbadge", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidebiggerphotocallout": {"name": "analytics___salesforce_stg__user_userpreferenceshidebiggerphotocallout", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidebiggerphotocallout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidechatteronboardingsplash": {"name": "analytics___salesforce_stg__user_userpreferenceshidechatteronboardingsplash", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidechatteronboardingsplash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidecsndesktoptask": {"name": "analytics___salesforce_stg__user_userpreferenceshidecsndesktoptask", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidecsndesktoptask", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidecsngetchattermobiletask": {"name": "analytics___salesforce_stg__user_userpreferenceshidecsngetchattermobiletask", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidecsngetchattermobiletask", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceshideenduseronboardingassistantmodal": {"name": "analytics___salesforce_stg__user_userpreferenceshideenduseronboardingassistantmodal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceshideenduseronboardingassistantmodal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidelightningmigrationmodal": {"name": "analytics___salesforce_stg__user_userpreferenceshidelightningmigrationmodal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidelightningmigrationmodal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceshides1browserui": {"name": "analytics___salesforce_stg__user_userpreferenceshides1browserui", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceshides1browserui", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidesecondchatteronboardingsplash": {"name": "analytics___salesforce_stg__user_userpreferenceshidesecondchatteronboardingsplash", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidesecondchatteronboardingsplash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidesfxwelcomemat": {"name": "analytics___salesforce_stg__user_userpreferenceshidesfxwelcomemat", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceshidesfxwelcomemat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferenceslightningexperiencepreferred": {"name": "analytics___salesforce_stg__user_userpreferenceslightningexperiencepreferred", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferenceslightningexperiencepreferred", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesnativeemailclient": {"name": "analytics___salesforce_stg__user_userpreferencesnativeemailclient", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesnativeemailclient", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesnewlightningreportrunpageenabled": {"name": "analytics___salesforce_stg__user_userpreferencesnewlightningreportrunpageenabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesnewlightningreportrunpageenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencespathassistantcollapsed": {"name": "analytics___salesforce_stg__user_userpreferencespathassistantcollapsed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencespathassistantcollapsed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencespipelineviewhidehelppopover": {"name": "analytics___salesforce_stg__user_userpreferencespipelineviewhidehelppopover", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencespipelineviewhidehelppopover", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencespreviewcustomtheme": {"name": "analytics___salesforce_stg__user_userpreferencespreviewcustomtheme", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencespreviewcustomtheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencespreviewlightning": {"name": "analytics___salesforce_stg__user_userpreferencespreviewlightning", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencespreviewlightning", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesreceivenonotificationsasapprover": {"name": "analytics___salesforce_stg__user_userpreferencesreceivenonotificationsasapprover", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesreceivenonotificationsasapprover", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesreceivenotificationsasdelegatedapprover": {"name": "analytics___salesforce_stg__user_userpreferencesreceivenotificationsasdelegatedapprover", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesreceivenotificationsasdelegatedapprover", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesrecordhomereservedwtshown": {"name": "analytics___salesforce_stg__user_userpreferencesrecordhomereservedwtshown", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesrecordhomereservedwtshown", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesrecordhomesectioncollapsewtshown": {"name": "analytics___salesforce_stg__user_userpreferencesrecordhomesectioncollapsewtshown", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesrecordhomesectioncollapsewtshown", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesremindersoundoff": {"name": "analytics___salesforce_stg__user_userpreferencesremindersoundoff", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesremindersoundoff", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowcitytoexternalusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowcitytoexternalusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowcitytoexternalusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowcitytoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowcitytoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowcitytoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowcountrytoexternalusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowcountrytoexternalusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowcountrytoexternalusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowcountrytoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowcountrytoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowcountrytoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowemailtoexternalusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowemailtoexternalusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowemailtoexternalusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowemailtoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowemailtoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowemailtoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowfaxtoexternalusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowfaxtoexternalusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowfaxtoexternalusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowfaxtoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowfaxtoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowfaxtoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowmanagertoexternalusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowmanagertoexternalusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowmanagertoexternalusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowmanagertoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowmanagertoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowmanagertoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowmobilephonetoexternalusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowmobilephonetoexternalusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowmobilephonetoexternalusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowmobilephonetoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowmobilephonetoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowmobilephonetoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowpostalcodetoexternalusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowpostalcodetoexternalusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowpostalcodetoexternalusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowpostalcodetoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowpostalcodetoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowpostalcodetoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowprofilepictoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowprofilepictoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowprofilepictoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowstatetoexternalusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowstatetoexternalusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowstatetoexternalusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowstatetoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowstatetoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowstatetoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowstreetaddresstoexternalusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowstreetaddresstoexternalusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowstreetaddresstoexternalusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowstreetaddresstoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowstreetaddresstoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowstreetaddresstoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowtitletoexternalusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowtitletoexternalusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowtitletoexternalusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowtitletoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowtitletoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowtitletoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowworkphonetoexternalusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowworkphonetoexternalusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowworkphonetoexternalusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowworkphonetoguestusers": {"name": "analytics___salesforce_stg__user_userpreferencesshowworkphonetoguestusers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesshowworkphonetoguestusers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencessortfeedbycomment": {"name": "analytics___salesforce_stg__user_userpreferencessortfeedbycomment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencessortfeedbycomment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencessrhoverrideactivities": {"name": "analytics___salesforce_stg__user_userpreferencessrhoverrideactivities", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencessrhoverrideactivities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencessuppresseventsfxreminders": {"name": "analytics___salesforce_stg__user_userpreferencessuppresseventsfxreminders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencessuppresseventsfxreminders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencessuppresstasksfxreminders": {"name": "analytics___salesforce_stg__user_userpreferencessuppresstasksfxreminders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencessuppresstasksfxreminders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencestaskreminderscheckboxdefault": {"name": "analytics___salesforce_stg__user_userpreferencestaskreminderscheckboxdefault", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencestaskreminderscheckboxdefault", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userpreferencesuserdebugmodepref": {"name": "analytics___salesforce_stg__user_userpreferencesuserdebugmodepref", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userpreferencesuserdebugmodepref", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_userroleid": {"name": "analytics___salesforce_stg__user_userroleid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_userroleid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_usertype": {"name": "analytics___salesforce_stg__user_usertype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_usertype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_website_c": {"name": "analytics___salesforce_stg__user_website_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_website_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_wire_details_del_c": {"name": "analytics___salesforce_stg__user_wire_details_del_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_wire_details_del_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_wwid_c": {"name": "analytics___salesforce_stg__user_wwid_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_wwid_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_wwid_legacy_c": {"name": "analytics___salesforce_stg__user_wwid_legacy_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_wwid_legacy_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_x18_digits_id_c": {"name": "analytics___salesforce_stg__user_x18_digits_id_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user/analytics___salesforce_stg__user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_x18_digits_id_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_full": {"name": "analytics___salesforce_stg__user_full", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full", "block_contents": "base model for Salesforce user object's full table (formula fields)"}, "doc.yoda.analytics___salesforce_stg__user_full__rivery_last_update": {"name": "analytics___salesforce_stg__user_full__rivery_last_update", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full__rivery_last_update", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_full__rivery_river_id": {"name": "analytics___salesforce_stg__user_full__rivery_river_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full__rivery_river_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_full__rivery_run_id": {"name": "analytics___salesforce_stg__user_full__rivery_run_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full__rivery_run_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_full_csm_team_c": {"name": "analytics___salesforce_stg__user_full_csm_team_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full_csm_team_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_full_id": {"name": "analytics___salesforce_stg__user_full_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_full_manager_text_c": {"name": "analytics___salesforce_stg__user_full_manager_text_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full_manager_text_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_full_role_name_c": {"name": "analytics___salesforce_stg__user_full_role_name_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full_role_name_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_full_systemmodstamp": {"name": "analytics___salesforce_stg__user_full_systemmodstamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full_systemmodstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_full_territory_c": {"name": "analytics___salesforce_stg__user_full_territory_c", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full_territory_c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__user_full_userroleid": {"name": "analytics___salesforce_stg__user_full_userroleid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "original_file_path": "models/analytics/salesforce/staging/base/analytics___salesforce_stg__user_full/analytics___salesforce_stg__user_full.md", "unique_id": "doc.yoda.analytics___salesforce_stg__user_full_userroleid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___salesforce_stg__custom_field_history": {"name": "analytics___salesforce_stg__custom_field_history", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history", "block_contents": "A modeled view of the salesforce object custom_field_history_tracking__c | PK & Granularity: sf_event_id"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_created_at": {"name": "analytics___salesforce_stg__custom_field_history_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__custom_field_history_created_by_sf_user_id": {"name": "analytics___salesforce_stg__custom_field_history_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_created_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__custom_field_history_created_date": {"name": "analytics___salesforce_stg__custom_field_history_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_created_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__custom_field_history_field_name": {"name": "analytics___salesforce_stg__custom_field_history_field_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_field_name", "block_contents": "the field that was change"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_new_value": {"name": "analytics___salesforce_stg__custom_field_history_new_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_new_value", "block_contents": "the value inserted to the changed field"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_onboarding_project_id": {"name": "analytics___salesforce_stg__custom_field_history_onboarding_project_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_onboarding_project_id", "block_contents": "The onboarding project id for joining with other tables"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_parent_object_id": {"name": "analytics___salesforce_stg__custom_field_history_parent_object_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_parent_object_id", "block_contents": "sf id of related sf campaign member"}, "doc.yoda.analytics___salesforce_stg__custom_field_history_sf_event_id": {"name": "analytics___salesforce_stg__custom_field_history_sf_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__custom_field_history/analytics___salesforce_stg__custom_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__custom_field_history_sf_event_id", "block_contents": "PK"}, "doc.yoda.analytics___salesforce_stg__mc_account": {"name": "analytics___salesforce_stg__mc_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account", "block_contents": "Modeled view of Account salesforce object.\nPK: account_id"}, "doc.yoda.analytics___salesforce_stg__mc_account_account_ads_provider": {"name": "analytics___salesforce_stg__mc_account_account_ads_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_ads_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_engagement_level": {"name": "analytics___salesforce_stg__mc_account_account_agency_engagement_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_engagement_level", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_lost_reason": {"name": "analytics___salesforce_stg__mc_account_account_agency_lost_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_lost_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_potential": {"name": "analytics___salesforce_stg__mc_account_account_agency_potential", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_potential", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_segment": {"name": "analytics___salesforce_stg__mc_account_account_agency_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_services": {"name": "analytics___salesforce_stg__mc_account_account_agency_services", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_services", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_stage": {"name": "analytics___salesforce_stg__mc_account_account_agency_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_stage", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_supported_platforms": {"name": "analytics___salesforce_stg__mc_account_account_agency_supported_platforms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_agency_supported_platforms", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_alexa_rank": {"name": "analytics___salesforce_stg__mc_account_account_alexa_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_alexa_rank", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_annual_revenue": {"name": "analytics___salesforce_stg__mc_account_account_annual_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_annual_revenue", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_cdp_provider": {"name": "analytics___salesforce_stg__mc_account_account_cdp_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_cdp_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_chat_bots_provider": {"name": "analytics___salesforce_stg__mc_account_account_chat_bots_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_chat_bots_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_city": {"name": "analytics___salesforce_stg__mc_account_account_city", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_city", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_closest_contract_renewal_date": {"name": "analytics___salesforce_stg__mc_account_account_closest_contract_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_closest_contract_renewal_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_country": {"name": "analytics___salesforce_stg__mc_account_account_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_country", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_country_code": {"name": "analytics___salesforce_stg__mc_account_account_country_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_country_code", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_created_date": {"name": "analytics___salesforce_stg__mc_account_account_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_created_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_cross_sale_status": {"name": "analytics___salesforce_stg__mc_account_account_cross_sale_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_cross_sale_status", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_cross_sell_type": {"name": "analytics___salesforce_stg__mc_account_account_cross_sell_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_cross_sell_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_cs_estimated_annual_sales": {"name": "analytics___salesforce_stg__mc_account_account_cs_estimated_annual_sales", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_cs_estimated_annual_sales", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_cs_estimated_aov": {"name": "analytics___salesforce_stg__mc_account_account_cs_estimated_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_cs_estimated_aov", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_cs_segment": {"name": "analytics___salesforce_stg__mc_account_account_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_cs_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_cs_tags": {"name": "analytics___salesforce_stg__mc_account_account_cs_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_cs_tags", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_csm_sf_user_id": {"name": "analytics___salesforce_stg__mc_account_account_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_curation_provider": {"name": "analytics___salesforce_stg__mc_account_account_curation_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_curation_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_datanayze_monthly_tech_spend": {"name": "analytics___salesforce_stg__mc_account_account_datanayze_monthly_tech_spend", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_datanayze_monthly_tech_spend", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_description": {"name": "analytics___salesforce_stg__mc_account_account_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_description", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_domain": {"name": "analytics___salesforce_stg__mc_account_account_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_domain", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_email": {"name": "analytics___salesforce_stg__mc_account_account_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_email", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_email_marketing_provider": {"name": "analytics___salesforce_stg__mc_account_account_email_marketing_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_email_marketing_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_estimated_monthly_orders_volume": {"name": "analytics___salesforce_stg__mc_account_account_estimated_monthly_orders_volume", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_estimated_monthly_orders_volume", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_extensions": {"name": "analytics___salesforce_stg__mc_account_account_extensions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_extensions", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_funding": {"name": "analytics___salesforce_stg__mc_account_account_funding", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_funding", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_has_a_community_member": {"name": "analytics___salesforce_stg__mc_account_account_has_a_community_member", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_has_a_community_member", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_help_desk_provider": {"name": "analytics___salesforce_stg__mc_account_account_help_desk_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_help_desk_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_id": {"name": "analytics___salesforce_stg__mc_account_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_id_15_digits": {"name": "analytics___salesforce_stg__mc_account_account_id_15_digits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_id_15_digits", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_industry": {"name": "analytics___salesforce_stg__mc_account_account_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_industry", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_influenced_by_agency_id": {"name": "analytics___salesforce_stg__mc_account_account_influenced_by_agency_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_influenced_by_agency_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_is_deleted": {"name": "analytics___salesforce_stg__mc_account_account_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_is_enterprise_account": {"name": "analytics___salesforce_stg__mc_account_account_is_enterprise_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_is_enterprise_account", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_is_referral_agreement_signed": {"name": "analytics___salesforce_stg__mc_account_account_is_referral_agreement_signed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_is_referral_agreement_signed", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_junk_reason": {"name": "analytics___salesforce_stg__mc_account_account_junk_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_junk_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_last_modified_date": {"name": "analytics___salesforce_stg__mc_account_account_last_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_last_modified_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_latest_opportunity_id": {"name": "analytics___salesforce_stg__mc_account_account_latest_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_latest_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_lead_id": {"name": "analytics___salesforce_stg__mc_account_account_lead_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_lead_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_lead_referred_date": {"name": "analytics___salesforce_stg__mc_account_account_lead_referred_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_lead_referred_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_loyalty_provider": {"name": "analytics___salesforce_stg__mc_account_account_loyalty_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_loyalty_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_main_csm_sf_user_id": {"name": "analytics___salesforce_stg__mc_account_account_main_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_main_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_managing_agency_id": {"name": "analytics___salesforce_stg__mc_account_account_managing_agency_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_managing_agency_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_name": {"name": "analytics___salesforce_stg__mc_account_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_num_of_active_leads_referred_by_agency": {"name": "analytics___salesforce_stg__mc_account_account_num_of_active_leads_referred_by_agency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_num_of_active_leads_referred_by_agency", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_number_of_employees": {"name": "analytics___salesforce_stg__mc_account_account_number_of_employees", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_number_of_employees", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_nurturing_reason": {"name": "analytics___salesforce_stg__mc_account_account_nurturing_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_nurturing_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_payment_provider": {"name": "analytics___salesforce_stg__mc_account_account_payment_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_payment_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_personalization_provider": {"name": "analytics___salesforce_stg__mc_account_account_personalization_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_personalization_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_plan_name": {"name": "analytics___salesforce_stg__mc_account_account_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_plan_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_platform": {"name": "analytics___salesforce_stg__mc_account_account_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_platform", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_pos_provider": {"name": "analytics___salesforce_stg__mc_account_account_pos_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_pos_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_postal_code": {"name": "analytics___salesforce_stg__mc_account_account_postal_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_postal_code", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_primary_sales_channel": {"name": "analytics___salesforce_stg__mc_account_account_primary_sales_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_primary_sales_channel", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_rating": {"name": "analytics___salesforce_stg__mc_account_account_rating", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_rating", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_referred_by_agency_id": {"name": "analytics___salesforce_stg__mc_account_account_referred_by_agency_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_referred_by_agency_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_referrer_type": {"name": "analytics___salesforce_stg__mc_account_account_referrer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_referrer_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_renewal_cycle": {"name": "analytics___salesforce_stg__mc_account_account_renewal_cycle", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_renewal_cycle", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_reviews_provider": {"name": "analytics___salesforce_stg__mc_account_account_reviews_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_reviews_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_sales_segment": {"name": "analytics___salesforce_stg__mc_account_account_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_sales_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_sdr_owner_id": {"name": "analytics___salesforce_stg__mc_account_account_sdr_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_sdr_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_search_provider": {"name": "analytics___salesforce_stg__mc_account_account_search_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_search_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_sms_acv": {"name": "analytics___salesforce_stg__mc_account_account_sms_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_sms_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_sms_csm_sf_user_id": {"name": "analytics___salesforce_stg__mc_account_account_sms_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_sms_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_sms_provider": {"name": "analytics___salesforce_stg__mc_account_account_sms_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_sms_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_sms_strategist": {"name": "analytics___salesforce_stg__mc_account_account_sms_strategist", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_sms_strategist", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_stage": {"name": "analytics___salesforce_stg__mc_account_account_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_stage", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_state": {"name": "analytics___salesforce_stg__mc_account_account_state", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_state", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_state_code": {"name": "analytics___salesforce_stg__mc_account_account_state_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_state_code", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_state_region": {"name": "analytics___salesforce_stg__mc_account_account_state_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_state_region", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_status": {"name": "analytics___salesforce_stg__mc_account_account_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_status", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_street": {"name": "analytics___salesforce_stg__mc_account_account_street", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_street", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_sub_nurturing_reason": {"name": "analytics___salesforce_stg__mc_account_account_sub_nurturing_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_sub_nurturing_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_subscription_seller": {"name": "analytics___salesforce_stg__mc_account_account_subscription_seller", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_subscription_seller", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_swell_csm_sf_user_id": {"name": "analytics___salesforce_stg__mc_account_account_swell_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_swell_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_territory": {"name": "analytics___salesforce_stg__mc_account_account_territory", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_territory", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_tier": {"name": "analytics___salesforce_stg__mc_account_account_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_tier", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_time_zone": {"name": "analytics___salesforce_stg__mc_account_account_time_zone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_time_zone", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_total_acv": {"name": "analytics___salesforce_stg__mc_account_account_total_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_total_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_type": {"name": "analytics___salesforce_stg__mc_account_account_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_utm_campaign": {"name": "analytics___salesforce_stg__mc_account_account_utm_campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_utm_campaign", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_utm_content": {"name": "analytics___salesforce_stg__mc_account_account_utm_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_utm_content", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_utm_medium": {"name": "analytics___salesforce_stg__mc_account_account_utm_medium", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_utm_medium", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_utm_source": {"name": "analytics___salesforce_stg__mc_account_account_utm_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_utm_source", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_utm_term": {"name": "analytics___salesforce_stg__mc_account_account_utm_term", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_utm_term", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_yotpo_industry": {"name": "analytics___salesforce_stg__mc_account_account_yotpo_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_yotpo_industry", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_yotpo_industry_confidence_level": {"name": "analytics___salesforce_stg__mc_account_account_yotpo_industry_confidence_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_yotpo_industry_confidence_level", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_account_yotpo_sub_industry": {"name": "analytics___salesforce_stg__mc_account_account_yotpo_sub_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_account_yotpo_sub_industry", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_acv_to_next_tier": {"name": "analytics___salesforce_stg__mc_account_acv_to_next_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_acv_to_next_tier", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_ads_provider": {"name": "analytics___salesforce_stg__mc_account_ads_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_ads_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_agency_clients_level_account": {"name": "analytics___salesforce_stg__mc_account_agency_clients_level_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_agency_clients_level_account", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_agency_employee_bucket": {"name": "analytics___salesforce_stg__mc_account_agency_employee_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_agency_employee_bucket", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_agency_engagement_level": {"name": "analytics___salesforce_stg__mc_account_agency_engagement_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_agency_engagement_level", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_agency_lost_reason": {"name": "analytics___salesforce_stg__mc_account_agency_lost_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_agency_lost_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_agency_potential": {"name": "analytics___salesforce_stg__mc_account_agency_potential", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_agency_potential", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_agency_segment": {"name": "analytics___salesforce_stg__mc_account_agency_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_agency_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_agency_services": {"name": "analytics___salesforce_stg__mc_account_agency_services", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_agency_services", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_agency_stage": {"name": "analytics___salesforce_stg__mc_account_agency_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_agency_stage", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_agency_supported_platforms": {"name": "analytics___salesforce_stg__mc_account_agency_supported_platforms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_agency_supported_platforms", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_alexa_rank": {"name": "analytics___salesforce_stg__mc_account_alexa_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_alexa_rank", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_annual_revenue": {"name": "analytics___salesforce_stg__mc_account_annual_revenue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_annual_revenue", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_app_key": {"name": "analytics___salesforce_stg__mc_account_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_app_key", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_cdp_provider": {"name": "analytics___salesforce_stg__mc_account_cdp_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_cdp_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_chat_bots_provider": {"name": "analytics___salesforce_stg__mc_account_chat_bots_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_chat_bots_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_city": {"name": "analytics___salesforce_stg__mc_account_city", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_city", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_closest_contract_renewal_date": {"name": "analytics___salesforce_stg__mc_account_closest_contract_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_closest_contract_renewal_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_country": {"name": "analytics___salesforce_stg__mc_account_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_country", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_country_code": {"name": "analytics___salesforce_stg__mc_account_country_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_country_code", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_created_date": {"name": "analytics___salesforce_stg__mc_account_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_created_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_cross_sale_status": {"name": "analytics___salesforce_stg__mc_account_cross_sale_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_cross_sale_status", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_cross_sell_type": {"name": "analytics___salesforce_stg__mc_account_cross_sell_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_cross_sell_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_cs_estimated_annual_sales": {"name": "analytics___salesforce_stg__mc_account_cs_estimated_annual_sales", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_cs_estimated_annual_sales", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_cs_estimated_aov": {"name": "analytics___salesforce_stg__mc_account_cs_estimated_aov", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_cs_estimated_aov", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_cs_estimated_monthly_orders": {"name": "analytics___salesforce_stg__mc_account_cs_estimated_monthly_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_cs_estimated_monthly_orders", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_cs_segment": {"name": "analytics___salesforce_stg__mc_account_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_cs_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_cs_tags": {"name": "analytics___salesforce_stg__mc_account_cs_tags", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_cs_tags", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_csm_sf_user_id": {"name": "analytics___salesforce_stg__mc_account_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_curation_provider": {"name": "analytics___salesforce_stg__mc_account_curation_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_curation_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_current_contract_cnt": {"name": "analytics___salesforce_stg__mc_account_current_contract_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_current_contract_cnt", "block_contents": "number of current contracts"}, "doc.yoda.analytics___salesforce_stg__mc_account_datanayze_monthly_tech_spend": {"name": "analytics___salesforce_stg__mc_account_datanayze_monthly_tech_spend", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_datanayze_monthly_tech_spend", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_db_package_category": {"name": "analytics___salesforce_stg__mc_account_db_package_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_db_package_category", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_description": {"name": "analytics___salesforce_stg__mc_account_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_description", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_domain": {"name": "analytics___salesforce_stg__mc_account_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_domain", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_email": {"name": "analytics___salesforce_stg__mc_account_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_email", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_email_marketing_provider": {"name": "analytics___salesforce_stg__mc_account_email_marketing_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_email_marketing_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_estimated_monthly_orders_volume": {"name": "analytics___salesforce_stg__mc_account_estimated_monthly_orders_volume", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_estimated_monthly_orders_volume", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_extensions": {"name": "analytics___salesforce_stg__mc_account_extensions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_extensions", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_funding": {"name": "analytics___salesforce_stg__mc_account_funding", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_funding", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_has_a_community_member": {"name": "analytics___salesforce_stg__mc_account_has_a_community_member", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_has_a_community_member", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_help_desk_provider": {"name": "analytics___salesforce_stg__mc_account_help_desk_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_help_desk_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_iap_tier": {"name": "analytics___salesforce_stg__mc_account_iap_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_iap_tier", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_id_15_digits": {"name": "analytics___salesforce_stg__mc_account_id_15_digits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_id_15_digits", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_industry": {"name": "analytics___salesforce_stg__mc_account_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_industry", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_industry_name": {"name": "analytics___salesforce_stg__mc_account_industry_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_industry_name", "block_contents": "yotpo insustry name"}, "doc.yoda.analytics___salesforce_stg__mc_account_influenced_by_agency_id": {"name": "analytics___salesforce_stg__mc_account_influenced_by_agency_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_influenced_by_agency_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_is_account_data_excluded": {"name": "analytics___salesforce_stg__mc_account_is_account_data_excluded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_is_account_data_excluded", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_is_annual_account": {"name": "analytics___salesforce_stg__mc_account_is_annual_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_is_annual_account", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_is_deleted_account": {"name": "analytics___salesforce_stg__mc_account_is_deleted_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_is_deleted_account", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_is_enterprise_account": {"name": "analytics___salesforce_stg__mc_account_is_enterprise_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_is_enterprise_account", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_is_multi_product_account": {"name": "analytics___salesforce_stg__mc_account_is_multi_product_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_is_multi_product_account", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_is_partner_account": {"name": "analytics___salesforce_stg__mc_account_is_partner_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_is_partner_account", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_is_referral_agreement_signed": {"name": "analytics___salesforce_stg__mc_account_is_referral_agreement_signed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_is_referral_agreement_signed", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_is_strategic_priority": {"name": "analytics___salesforce_stg__mc_account_is_strategic_priority", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_is_strategic_priority", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_is_test_account": {"name": "analytics___salesforce_stg__mc_account_is_test_account", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_is_test_account", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_is_yotpo_industry_verified": {"name": "analytics___salesforce_stg__mc_account_is_yotpo_industry_verified", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_is_yotpo_industry_verified", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_junk_reason": {"name": "analytics___salesforce_stg__mc_account_junk_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_junk_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_last_ae_id": {"name": "analytics___salesforce_stg__mc_account_last_ae_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_last_ae_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_last_modified_date": {"name": "analytics___salesforce_stg__mc_account_last_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_last_modified_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_last_sdr_id": {"name": "analytics___salesforce_stg__mc_account_last_sdr_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_last_sdr_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_latest_opportunity_id": {"name": "analytics___salesforce_stg__mc_account_latest_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_latest_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_lead_id": {"name": "analytics___salesforce_stg__mc_account_lead_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_lead_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_lead_referred_date": {"name": "analytics___salesforce_stg__mc_account_lead_referred_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_lead_referred_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_loyalty_acv": {"name": "analytics___salesforce_stg__mc_account_loyalty_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_loyalty_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_loyalty_contract_renewal_date": {"name": "analytics___salesforce_stg__mc_account_loyalty_contract_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_loyalty_contract_renewal_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_loyalty_provider": {"name": "analytics___salesforce_stg__mc_account_loyalty_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_loyalty_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_main_csm_sf_user_id": {"name": "analytics___salesforce_stg__mc_account_main_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_main_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_managed_services_agency_id": {"name": "analytics___salesforce_stg__mc_account_managed_services_agency_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_managed_services_agency_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_managing_agency_id": {"name": "analytics___salesforce_stg__mc_account_managing_agency_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_managing_agency_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_merchant_id": {"name": "analytics___salesforce_stg__mc_account_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_merchant_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_ms_account_churn_date": {"name": "analytics___salesforce_stg__mc_account_ms_account_churn_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_ms_account_churn_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_ms_account_live_date": {"name": "analytics___salesforce_stg__mc_account_ms_account_live_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_ms_account_live_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_ms_account_source": {"name": "analytics___salesforce_stg__mc_account_ms_account_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_ms_account_source", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_ms_sms_user_id": {"name": "analytics___salesforce_stg__mc_account_ms_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_ms_sms_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_next_partner_tier": {"name": "analytics___salesforce_stg__mc_account_next_partner_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_next_partner_tier", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_num_of_active_leads_referred_by_agency": {"name": "analytics___salesforce_stg__mc_account_num_of_active_leads_referred_by_agency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_num_of_active_leads_referred_by_agency", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_number_of_employees": {"name": "analytics___salesforce_stg__mc_account_number_of_employees", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_number_of_employees", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_nurturing_reason": {"name": "analytics___salesforce_stg__mc_account_nurturing_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_nurturing_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_order_limit_roll_up": {"name": "analytics___salesforce_stg__mc_account_order_limit_roll_up", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_order_limit_roll_up", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_organization_key": {"name": "analytics___salesforce_stg__mc_account_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_organization_key", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_owner_id": {"name": "analytics___salesforce_stg__mc_account_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_package_category": {"name": "analytics___salesforce_stg__mc_account_package_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_package_category", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_packages": {"name": "analytics___salesforce_stg__mc_account_packages", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_packages", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_parent_account_id": {"name": "analytics___salesforce_stg__mc_account_parent_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_parent_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_partner_influencer_referrer_type": {"name": "analytics___salesforce_stg__mc_account_partner_influencer_referrer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_partner_influencer_referrer_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_partner_referral_referrer_type": {"name": "analytics___salesforce_stg__mc_account_partner_referral_referrer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_partner_referral_referrer_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_partner_tier": {"name": "analytics___salesforce_stg__mc_account_partner_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_partner_tier", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_partner_type_sub_category": {"name": "analytics___salesforce_stg__mc_account_partner_type_sub_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_partner_type_sub_category", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_payment_provider": {"name": "analytics___salesforce_stg__mc_account_payment_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_payment_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_personalization_provider": {"name": "analytics___salesforce_stg__mc_account_personalization_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_personalization_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_plan_name": {"name": "analytics___salesforce_stg__mc_account_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_plan_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_platform": {"name": "analytics___salesforce_stg__mc_account_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_platform", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_pos_provider": {"name": "analytics___salesforce_stg__mc_account_pos_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_pos_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_postal_code": {"name": "analytics___salesforce_stg__mc_account_postal_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_postal_code", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_previous_package_category": {"name": "analytics___salesforce_stg__mc_account_previous_package_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_previous_package_category", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_primary_sales_channel": {"name": "analytics___salesforce_stg__mc_account_primary_sales_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_primary_sales_channel", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_products_in_tam_list": {"name": "analytics___salesforce_stg__mc_account_products_in_tam_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_products_in_tam_list", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_rating": {"name": "analytics___salesforce_stg__mc_account_rating", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_rating", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_referred_by_agency_id": {"name": "analytics___salesforce_stg__mc_account_referred_by_agency_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_referred_by_agency_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_referrer_type": {"name": "analytics___salesforce_stg__mc_account_referrer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_referrer_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_registered_at": {"name": "analytics___salesforce_stg__mc_account_registered_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_registered_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_renewal_cycle": {"name": "analytics___salesforce_stg__mc_account_renewal_cycle", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_renewal_cycle", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_reviews_provider": {"name": "analytics___salesforce_stg__mc_account_reviews_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_reviews_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sal_to_next_tier": {"name": "analytics___salesforce_stg__mc_account_sal_to_next_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sal_to_next_tier", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sales_estimated_subscribers": {"name": "analytics___salesforce_stg__mc_account_sales_estimated_subscribers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sales_estimated_subscribers", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sales_region": {"name": "analytics___salesforce_stg__mc_account_sales_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sales_region", "block_contents": "The billing region of the account"}, "doc.yoda.analytics___salesforce_stg__mc_account_sales_segment": {"name": "analytics___salesforce_stg__mc_account_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sales_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sdr_owner_id": {"name": "analytics___salesforce_stg__mc_account_sdr_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sdr_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_search_provider": {"name": "analytics___salesforce_stg__mc_account_search_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_search_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_similarweb_traffic": {"name": "analytics___salesforce_stg__mc_account_similarweb_traffic", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_similarweb_traffic", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sms_acv": {"name": "analytics___salesforce_stg__mc_account_sms_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sms_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sms_annualized_usage_rev": {"name": "analytics___salesforce_stg__mc_account_sms_annualized_usage_rev", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sms_annualized_usage_rev", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sms_csm_sf_user_id": {"name": "analytics___salesforce_stg__mc_account_sms_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sms_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sms_provider": {"name": "analytics___salesforce_stg__mc_account_sms_provider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sms_provider", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sms_strategist": {"name": "analytics___salesforce_stg__mc_account_sms_strategist", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sms_strategist", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sms_total_arr": {"name": "analytics___salesforce_stg__mc_account_sms_total_arr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sms_total_arr", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sms_usage_cancellation_date": {"name": "analytics___salesforce_stg__mc_account_sms_usage_cancellation_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sms_usage_cancellation_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_stage": {"name": "analytics___salesforce_stg__mc_account_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_stage", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_state": {"name": "analytics___salesforce_stg__mc_account_state", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_state", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_state_code": {"name": "analytics___salesforce_stg__mc_account_state_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_state_code", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_status": {"name": "analytics___salesforce_stg__mc_account_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_status", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_street": {"name": "analytics___salesforce_stg__mc_account_street", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_street", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_sub_industry_name": {"name": "analytics___salesforce_stg__mc_account_sub_industry_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sub_industry_name", "block_contents": "yotpo sub industry"}, "doc.yoda.analytics___salesforce_stg__mc_account_sub_nurturing_reason": {"name": "analytics___salesforce_stg__mc_account_sub_nurturing_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_sub_nurturing_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_subscription_seller": {"name": "analytics___salesforce_stg__mc_account_subscription_seller", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_subscription_seller", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_swell_acv": {"name": "analytics___salesforce_stg__mc_account_swell_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_swell_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_swell_contract_renewal_date": {"name": "analytics___salesforce_stg__mc_account_swell_contract_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_swell_contract_renewal_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_swell_csm_sf_user_id": {"name": "analytics___salesforce_stg__mc_account_swell_csm_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_swell_csm_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_territory": {"name": "analytics___salesforce_stg__mc_account_territory", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_territory", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_tier": {"name": "analytics___salesforce_stg__mc_account_tier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_tier", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_time_zone": {"name": "analytics___salesforce_stg__mc_account_time_zone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_time_zone", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_total_acv": {"name": "analytics___salesforce_stg__mc_account_total_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_total_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_type": {"name": "analytics___salesforce_stg__mc_account_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_ugc_acv": {"name": "analytics___salesforce_stg__mc_account_ugc_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_ugc_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_utm_campaign": {"name": "analytics___salesforce_stg__mc_account_utm_campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_utm_campaign", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_utm_content": {"name": "analytics___salesforce_stg__mc_account_utm_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_utm_content", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_utm_medium": {"name": "analytics___salesforce_stg__mc_account_utm_medium", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_utm_medium", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_utm_source": {"name": "analytics___salesforce_stg__mc_account_utm_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_utm_source", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_utm_term": {"name": "analytics___salesforce_stg__mc_account_utm_term", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_utm_term", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_vms_acv": {"name": "analytics___salesforce_stg__mc_account_vms_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_vms_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_vms_contract_renewal_date": {"name": "analytics___salesforce_stg__mc_account_vms_contract_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_vms_contract_renewal_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_yotpo_acv": {"name": "analytics___salesforce_stg__mc_account_yotpo_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_yotpo_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_yotpo_contract_renewal_date": {"name": "analytics___salesforce_stg__mc_account_yotpo_contract_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_yotpo_contract_renewal_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_yotpo_industry": {"name": "analytics___salesforce_stg__mc_account_yotpo_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_yotpo_industry", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_yotpo_industry_confidence_level": {"name": "analytics___salesforce_stg__mc_account_yotpo_industry_confidence_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_yotpo_industry_confidence_level", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_yotpo_sub_industry": {"name": "analytics___salesforce_stg__mc_account_yotpo_sub_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account/analytics___salesforce_stg__mc_account.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_yotpo_sub_industry", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product": {"name": "analytics___salesforce_stg__mc_account_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product", "block_contents": "Modeled View Salseforce Account Product \nPK & granularity: account_product_id"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_account_id": {"name": "analytics___salesforce_stg__mc_account_product_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_account_product_id": {"name": "analytics___salesforce_stg__mc_account_product_account_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_account_product_id", "block_contents": "unique id for the account & product"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_acv_in_usd": {"name": "analytics___salesforce_stg__mc_account_product_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_initially_won_opportunity_id": {"name": "analytics___salesforce_stg__mc_account_product_initially_won_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_initially_won_opportunity_id", "block_contents": "the opportunity id of when this product was first won- only for ss opps"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_initially_won_ss_opportunity_id": {"name": "analytics___salesforce_stg__mc_account_product_initially_won_ss_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_initially_won_ss_opportunity_id", "block_contents": "when this product was first won- for ss only"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_is_current_contract": {"name": "analytics___salesforce_stg__mc_account_product_is_current_contract", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_is_current_contract", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_is_deleted": {"name": "analytics___salesforce_stg__mc_account_product_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_live_date": {"name": "analytics___salesforce_stg__mc_account_product_live_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_live_date", "block_contents": "unique product indication to indicate the product is live.\nREVIEWS - the date when reviews widget/ star-rating widget was first loaded\nVMS - the date when any VMS gallery was first loaded\nSMS - the date when $3 of credit were used\nLOYALTY - the date when there was a redemption of points by 10+ customers"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_main_product_family_list": {"name": "analytics___salesforce_stg__mc_account_product_main_product_family_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_main_product_family_list", "block_contents": "all the product families in a string"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_completion_date": {"name": "analytics___salesforce_stg__mc_account_product_onboarding_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_completion_date", "block_contents": "indication for the date of completion of the onboarding according to CSM"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_completion_status": {"name": "analytics___salesforce_stg__mc_account_product_onboarding_completion_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_completion_status", "block_contents": "csm filled indication for the completion of the onboarding"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_manager_csm_team": {"name": "analytics___salesforce_stg__mc_account_product_onboarding_manager_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_manager_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_manager_id": {"name": "analytics___salesforce_stg__mc_account_product_onboarding_manager_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_manager_id", "block_contents": "onboarding manager id for the onboarding project"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_project_cnt": {"name": "analytics___salesforce_stg__mc_account_product_onboarding_project_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_project_cnt", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_project_stage": {"name": "analytics___salesforce_stg__mc_account_product_onboarding_project_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_onboarding_project_stage", "block_contents": "number of onboarding projects- over one for multi domains"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_opportunity_id": {"name": "analytics___salesforce_stg__mc_account_product_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_opportunity_renewal_date": {"name": "analytics___salesforce_stg__mc_account_product_opportunity_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_opportunity_renewal_date", "block_contents": "next renewal date"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_opportunity_start_date": {"name": "analytics___salesforce_stg__mc_account_product_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_opportunity_start_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_opportunity_type": {"name": "analytics___salesforce_stg__mc_account_product_opportunity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_opportunity_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_product_id": {"name": "analytics___salesforce_stg__mc_account_product_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_product_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_product_initial_won_date": {"name": "analytics___salesforce_stg__mc_account_product_product_initial_won_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_product_initial_won_date", "block_contents": "when this product was first won"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_product_initial_won_ss_date": {"name": "analytics___salesforce_stg__mc_account_product_product_initial_won_ss_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_product_initial_won_ss_date", "block_contents": "the opportunity id of when this product was first won- only for ss opps"}, "doc.yoda.analytics___salesforce_stg__mc_account_product_product_line": {"name": "analytics___salesforce_stg__mc_account_product_product_line", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_product_line", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_product_name": {"name": "analytics___salesforce_stg__mc_account_product_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_product_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_account_product_product_stage": {"name": "analytics___salesforce_stg__mc_account_product_product_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_account_product/analytics___salesforce_stg__mc_account_product.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_account_product_product_stage", "block_contents": "the stage of the product: Renewal/Lost After Won/Onboarding/Churned/Optimization"}, "doc.yoda.analytics___salesforce_stg__mc_campaign": {"name": "analytics___salesforce_stg__mc_campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign", "block_contents": "The table is based on the SFDC campaign object"}, "doc.yoda.analytics___salesforce_stg__mc_campaign_campaign_id": {"name": "analytics___salesforce_stg__mc_campaign_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_campaign_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_campaign_url": {"name": "analytics___salesforce_stg__mc_campaign_campaign_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_campaign_url", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_created_by_sf_user_id": {"name": "analytics___salesforce_stg__mc_campaign_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_created_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_description": {"name": "analytics___salesforce_stg__mc_campaign_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_description", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_is_active": {"name": "analytics___salesforce_stg__mc_campaign_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_is_active", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_is_deleted": {"name": "analytics___salesforce_stg__mc_campaign_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_name": {"name": "analytics___salesforce_stg__mc_campaign_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_original_source": {"name": "analytics___salesforce_stg__mc_campaign_original_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_original_source", "block_contents": "Represent wheter the campaign is an Yotpo website asset or Swell for historical campaigns"}, "doc.yoda.analytics___salesforce_stg__mc_campaign_owner_id": {"name": "analytics___salesforce_stg__mc_campaign_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_parent_campaign_id": {"name": "analytics___salesforce_stg__mc_campaign_parent_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_parent_campaign_id", "block_contents": "Connects the campaign to a parent campaign id in cases that the campaigns has a main parent that they are associated with"}, "doc.yoda.analytics___salesforce_stg__mc_campaign_related_products": {"name": "analytics___salesforce_stg__mc_campaign_related_products", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_related_products", "block_contents": "Shows the related products that were associated with the asset"}, "doc.yoda.analytics___salesforce_stg__mc_campaign_sf_campaign_created_at": {"name": "analytics___salesforce_stg__mc_campaign_sf_campaign_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_sf_campaign_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_sf_campaign_end_date": {"name": "analytics___salesforce_stg__mc_campaign_sf_campaign_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_sf_campaign_end_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_sf_campaign_start_date": {"name": "analytics___salesforce_stg__mc_campaign_sf_campaign_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_sf_campaign_start_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_sf_campaign_updated_at": {"name": "analytics___salesforce_stg__mc_campaign_sf_campaign_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_sf_campaign_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_status": {"name": "analytics___salesforce_stg__mc_campaign_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_status", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_sub_type": {"name": "analytics___salesforce_stg__mc_campaign_sub_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_sub_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_type": {"name": "analytics___salesforce_stg__mc_campaign_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_campaign_updated_by_sf_user_id": {"name": "analytics___salesforce_stg__mc_campaign_updated_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_campaign/analytics___salesforce_stg__mc_campaign.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_campaign_updated_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact": {"name": "analytics___salesforce_stg__mc_contact", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact", "block_contents": "Modeled table of Salesforce contacts\nGranularity: contact_id"}, "doc.yoda.analytics___salesforce_stg__mc_contact_account_id": {"name": "analytics___salesforce_stg__mc_contact_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_booking_status_chilipiper": {"name": "analytics___salesforce_stg__mc_contact_booking_status_chilipiper", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_booking_status_chilipiper", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_country": {"name": "analytics___salesforce_stg__mc_contact_contact_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_country", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_decision_maker": {"name": "analytics___salesforce_stg__mc_contact_contact_decision_maker", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_decision_maker", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_description": {"name": "analytics___salesforce_stg__mc_contact_contact_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_description", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_email": {"name": "analytics___salesforce_stg__mc_contact_contact_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_email", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_first_activity_date": {"name": "analytics___salesforce_stg__mc_contact_contact_first_activity_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_first_activity_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_first_name": {"name": "analytics___salesforce_stg__mc_contact_contact_first_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_first_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_id": {"name": "analytics___salesforce_stg__mc_contact_contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_id_15_digits": {"name": "analytics___salesforce_stg__mc_contact_contact_id_15_digits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_id_15_digits", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_last_activity_date": {"name": "analytics___salesforce_stg__mc_contact_contact_last_activity_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_last_activity_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_last_modified_date": {"name": "analytics___salesforce_stg__mc_contact_contact_last_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_last_modified_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_last_name": {"name": "analytics___salesforce_stg__mc_contact_contact_last_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_last_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_linkedin": {"name": "analytics___salesforce_stg__mc_contact_contact_linkedin", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_linkedin", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_moved_to_nurturing_at": {"name": "analytics___salesforce_stg__mc_contact_contact_moved_to_nurturing_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_moved_to_nurturing_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_name": {"name": "analytics___salesforce_stg__mc_contact_contact_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_original_source": {"name": "analytics___salesforce_stg__mc_contact_contact_original_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_original_source", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_phone_extension": {"name": "analytics___salesforce_stg__mc_contact_contact_phone_extension", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_phone_extension", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_phone_number": {"name": "analytics___salesforce_stg__mc_contact_contact_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_phone_number", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_role": {"name": "analytics___salesforce_stg__mc_contact_contact_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_role", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_segment_id": {"name": "analytics___salesforce_stg__mc_contact_contact_segment_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_segment_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_skype_id": {"name": "analytics___salesforce_stg__mc_contact_contact_skype_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_skype_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_source": {"name": "analytics___salesforce_stg__mc_contact_contact_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_source", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_status": {"name": "analytics___salesforce_stg__mc_contact_contact_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_status", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_subscribed_to_blog": {"name": "analytics___salesforce_stg__mc_contact_contact_subscribed_to_blog", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_subscribed_to_blog", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_contact_title": {"name": "analytics___salesforce_stg__mc_contact_contact_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_contact_title", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_create_date": {"name": "analytics___salesforce_stg__mc_contact_create_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_create_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_do_not_call": {"name": "analytics___salesforce_stg__mc_contact_do_not_call", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_do_not_call", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_dwh_updated_at": {"name": "analytics___salesforce_stg__mc_contact_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_email_bounced_date": {"name": "analytics___salesforce_stg__mc_contact_email_bounced_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_email_bounced_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_email_bounced_reason": {"name": "analytics___salesforce_stg__mc_contact_email_bounced_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_email_bounced_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_has_opted_out_of_email": {"name": "analytics___salesforce_stg__mc_contact_has_opted_out_of_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_has_opted_out_of_email", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_is_agency_champion": {"name": "analytics___salesforce_stg__mc_contact_is_agency_champion", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_is_agency_champion", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_is_contact_still_employed": {"name": "analytics___salesforce_stg__mc_contact_is_contact_still_employed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_is_contact_still_employed", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_is_deleted": {"name": "analytics___salesforce_stg__mc_contact_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_last_product_of_last_subscription_event": {"name": "analytics___salesforce_stg__mc_contact_last_product_of_last_subscription_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_last_product_of_last_subscription_event", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_last_subscription_event_change": {"name": "analytics___salesforce_stg__mc_contact_last_subscription_event_change", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_last_subscription_event_change", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_most_recent_assignment_bucket": {"name": "analytics___salesforce_stg__mc_contact_most_recent_assignment_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_most_recent_assignment_bucket", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_most_recent_assignment_date": {"name": "analytics___salesforce_stg__mc_contact_most_recent_assignment_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_most_recent_assignment_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_most_recent_assignment_reason": {"name": "analytics___salesforce_stg__mc_contact_most_recent_assignment_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_most_recent_assignment_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_most_recent_assignment_sub_reason": {"name": "analytics___salesforce_stg__mc_contact_most_recent_assignment_sub_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_most_recent_assignment_sub_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_prospect_fit_rank": {"name": "analytics___salesforce_stg__mc_contact_prospect_fit_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_prospect_fit_rank", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_contact_user_id": {"name": "analytics___salesforce_stg__mc_contact_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_contact/analytics___salesforce_stg__mc_contact.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_contact_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_conversion_rate": {"name": "analytics___salesforce_stg__mc_conversion_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_conversion_rate", "block_contents": "Modeled view of salesforce conversion rate object (convertion rate between USD to other currencies) | PK: conversion_rate_id | granularity: currency, from_time"}, "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_conversion_rate": {"name": "analytics___salesforce_stg__mc_conversion_rate_conversion_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_conversion_rate", "block_contents": "The conversion rate from USD to the given currency"}, "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id": {"name": "analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id", "block_contents": "Id of the conversion rate - Primary Key"}, "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_currency_symbol": {"name": "analytics___salesforce_stg__mc_conversion_rate_currency_symbol", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_currency_symbol", "block_contents": "Currency symbol: EUR,GBP,etc."}, "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_from_date": {"name": "analytics___salesforce_stg__mc_conversion_rate_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_from_date", "block_contents": "Start date of the given conversion rate - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date"}, "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_is_current_rate": {"name": "analytics___salesforce_stg__mc_conversion_rate_is_current_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_is_current_rate", "block_contents": "Indicates if the conversion rate relates to current date: 0/1"}, "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_to_date": {"name": "analytics___salesforce_stg__mc_conversion_rate_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_conversion_rate/analytics___salesforce_stg__mc_conversion_rate.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_conversion_rate_to_date", "block_contents": "End date of the given conversion rate - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date"}, "doc.yoda.analytics___salesforce_stg__mc_cs_lead": {"name": "analytics___salesforce_stg__mc_cs_lead", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_cs_lead", "block_contents": "A modeled view of the salesforce object cs_lead (crossell lead) | PK & Granularity: cs_lead_id"}, "doc.yoda.analytics___salesforce_stg__mc_cs_lead_cs_lead_id": {"name": "analytics___salesforce_stg__mc_cs_lead_cs_lead_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_cs_lead_cs_lead_id", "block_contents": "PK"}, "doc.yoda.analytics___salesforce_stg__mc_cs_lead_related_opportunity_id": {"name": "analytics___salesforce_stg__mc_cs_lead_related_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_cs_lead_related_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_cs_lead_source": {"name": "analytics___salesforce_stg__mc_cs_lead_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_cs_lead/analytics___salesforce_stg__mc_cs_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_cs_lead_source", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary": {"name": "analytics___salesforce_stg__mc_deal_summary", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary", "block_contents": "Modeled view of salesforce deal summary new object | PK & Granularity: deal_summary_id"}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_created_at": {"name": "analytics___salesforce_stg__mc_deal_summary_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_created_by_sf_user_id": {"name": "analytics___salesforce_stg__mc_deal_summary_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_created_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_currency_iso_code": {"name": "analytics___salesforce_stg__mc_deal_summary_currency_iso_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_currency_iso_code", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_current_acv_for_retention_original_currency": {"name": "analytics___salesforce_stg__mc_deal_summary_current_acv_for_retention_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_current_acv_for_retention_original_currency", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_current_acv_for_retention_usd": {"name": "analytics___salesforce_stg__mc_deal_summary_current_acv_for_retention_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_current_acv_for_retention_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_current_acv_original_currency": {"name": "analytics___salesforce_stg__mc_deal_summary_current_acv_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_current_acv_original_currency", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_current_acv_usd": {"name": "analytics___salesforce_stg__mc_deal_summary_current_acv_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_current_acv_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_deal_summary_id": {"name": "analytics___salesforce_stg__mc_deal_summary_deal_summary_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_deal_summary_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_deal_type_summary": {"name": "analytics___salesforce_stg__mc_deal_summary_deal_type_summary", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_deal_type_summary", "block_contents": "deal type: Renewal/Sale"}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_delta_acv_calculated_usd": {"name": "analytics___salesforce_stg__mc_deal_summary_delta_acv_calculated_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_delta_acv_calculated_usd", "block_contents": "current_acv - previous_acv"}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_delta_acv_for_retention_usd": {"name": "analytics___salesforce_stg__mc_deal_summary_delta_acv_for_retention_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_delta_acv_for_retention_usd", "block_contents": "difference of current acv for retention and previous acv"}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_delta_acv_usd": {"name": "analytics___salesforce_stg__mc_deal_summary_delta_acv_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_delta_acv_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_is_deleted": {"name": "analytics___salesforce_stg__mc_deal_summary_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_is_extra_domain": {"name": "analytics___salesforce_stg__mc_deal_summary_is_extra_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_is_extra_domain", "block_contents": "indicates if the opportunity product is not a plan product"}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_opportunity_id": {"name": "analytics___salesforce_stg__mc_deal_summary_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_opportunity_plan_id": {"name": "analytics___salesforce_stg__mc_deal_summary_opportunity_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_opportunity_plan_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_pipeline_usd": {"name": "analytics___salesforce_stg__mc_deal_summary_pipeline_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_pipeline_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_plan": {"name": "analytics___salesforce_stg__mc_deal_summary_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_plan", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_previous_acv_original_currency": {"name": "analytics___salesforce_stg__mc_deal_summary_previous_acv_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_previous_acv_original_currency", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_previous_acv_usd": {"name": "analytics___salesforce_stg__mc_deal_summary_previous_acv_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_previous_acv_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_product": {"name": "analytics___salesforce_stg__mc_deal_summary_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_product", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_renewal_from_opportunity_line": {"name": "analytics___salesforce_stg__mc_deal_summary_renewal_from_opportunity_line", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_renewal_from_opportunity_line", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_row_rank_opp_plan": {"name": "analytics___salesforce_stg__mc_deal_summary_row_rank_opp_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_row_rank_opp_plan", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_status": {"name": "analytics___salesforce_stg__mc_deal_summary_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_status", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_updated_at": {"name": "analytics___salesforce_stg__mc_deal_summary_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_deal_summary_updated_by_sf_user_id": {"name": "analytics___salesforce_stg__mc_deal_summary_updated_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_deal_summary/analytics___salesforce_stg__mc_deal_summary.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_deal_summary_updated_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_event": {"name": "analytics___salesforce_stg__mc_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_event", "block_contents": "Modeled view of salesforce lead object | PK & Granularity event_id"}, "doc.yoda.analytics___salesforce_stg__mc_event_account_id": {"name": "analytics___salesforce_stg__mc_event_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_event_account_id", "block_contents": "salesforce account id"}, "doc.yoda.analytics___salesforce_stg__mc_event_activity_date": {"name": "analytics___salesforce_stg__mc_event_activity_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_event_activity_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_event_cp_meeting_type": {"name": "analytics___salesforce_stg__mc_event_cp_meeting_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_event_cp_meeting_type", "block_contents": "meeting type from chillipiper"}, "doc.yoda.analytics___salesforce_stg__mc_event_created_at": {"name": "analytics___salesforce_stg__mc_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_event_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_event_event_id": {"name": "analytics___salesforce_stg__mc_event_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_event_event_id", "block_contents": "PK"}, "doc.yoda.analytics___salesforce_stg__mc_event_is_deleted": {"name": "analytics___salesforce_stg__mc_event_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_event_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_event_subject": {"name": "analytics___salesforce_stg__mc_event_subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_event_subject", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_event_who_object_id": {"name": "analytics___salesforce_stg__mc_event_who_object_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_event/analytics___salesforce_stg__mc_event.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_event_who_object_id", "block_contents": "salesforce id of related who object (lead/contact)"}, "doc.yoda.analytics___salesforce_stg__mc_lead": {"name": "analytics___salesforce_stg__mc_lead", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead", "block_contents": "Modeled view of salesforce lead object"}, "doc.yoda.analytics___salesforce_stg__mc_lead_booking_status_chilipiper": {"name": "analytics___salesforce_stg__mc_lead_booking_status_chilipiper", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_booking_status_chilipiper", "block_contents": "status for lead meeting booked with chilli piper"}, "doc.yoda.analytics___salesforce_stg__mc_lead_converted_account_id": {"name": "analytics___salesforce_stg__mc_lead_converted_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_converted_account_id", "block_contents": "account id of converted lead"}, "doc.yoda.analytics___salesforce_stg__mc_lead_converted_contact_id": {"name": "analytics___salesforce_stg__mc_lead_converted_contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_converted_contact_id", "block_contents": "contact id of converted lead"}, "doc.yoda.analytics___salesforce_stg__mc_lead_converted_opportunity_id": {"name": "analytics___salesforce_stg__mc_lead_converted_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_converted_opportunity_id", "block_contents": "opportunity id of converted lead"}, "doc.yoda.analytics___salesforce_stg__mc_lead_country": {"name": "analytics___salesforce_stg__mc_lead_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_country", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_first_activity_at": {"name": "analytics___salesforce_stg__mc_lead_first_activity_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_first_activity_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_is_converted": {"name": "analytics___salesforce_stg__mc_lead_is_converted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_is_converted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_is_deleted": {"name": "analytics___salesforce_stg__mc_lead_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_is_interested_in_loyalty": {"name": "analytics___salesforce_stg__mc_lead_is_interested_in_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_is_interested_in_loyalty", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_is_interested_in_reviews": {"name": "analytics___salesforce_stg__mc_lead_is_interested_in_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_is_interested_in_reviews", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_is_interested_in_sms": {"name": "analytics___salesforce_stg__mc_lead_is_interested_in_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_is_interested_in_sms", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_is_interested_in_subscription": {"name": "analytics___salesforce_stg__mc_lead_is_interested_in_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_is_interested_in_subscription", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_is_interested_in_vms": {"name": "analytics___salesforce_stg__mc_lead_is_interested_in_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_is_interested_in_vms", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_last_product_of_last_subscription_event": {"name": "analytics___salesforce_stg__mc_lead_last_product_of_last_subscription_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_last_product_of_last_subscription_event", "block_contents": "indicate what was the last product event before the trigger"}, "doc.yoda.analytics___salesforce_stg__mc_lead_last_subscription_event_change": {"name": "analytics___salesforce_stg__mc_lead_last_subscription_event_change", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_last_subscription_event_change", "block_contents": "indicate what was the product in the last product event before the trigger"}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_converted_at": {"name": "analytics___salesforce_stg__mc_lead_lead_converted_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_converted_at", "block_contents": "timestamp of when the lead was converted"}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_created_at": {"name": "analytics___salesforce_stg__mc_lead_lead_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_created_at", "block_contents": "timestamp of when the lead was created"}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_domain": {"name": "analytics___salesforce_stg__mc_lead_lead_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_domain", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_email": {"name": "analytics___salesforce_stg__mc_lead_lead_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_email", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_first_campaign": {"name": "analytics___salesforce_stg__mc_lead_lead_first_campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_first_campaign", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_first_campaign_name": {"name": "analytics___salesforce_stg__mc_lead_lead_first_campaign_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_first_campaign_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_first_campaign_type": {"name": "analytics___salesforce_stg__mc_lead_lead_first_campaign_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_first_campaign_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_full_name": {"name": "analytics___salesforce_stg__mc_lead_lead_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_full_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_id": {"name": "analytics___salesforce_stg__mc_lead_lead_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_industry": {"name": "analytics___salesforce_stg__mc_lead_lead_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_industry", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_mql_at": {"name": "analytics___salesforce_stg__mc_lead_lead_mql_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_mql_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_phone": {"name": "analytics___salesforce_stg__mc_lead_lead_phone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_phone", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_platform": {"name": "analytics___salesforce_stg__mc_lead_lead_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_platform", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_referrer": {"name": "analytics___salesforce_stg__mc_lead_lead_referrer", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_referrer", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_sdr": {"name": "analytics___salesforce_stg__mc_lead_lead_sdr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_sdr", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_source": {"name": "analytics___salesforce_stg__mc_lead_lead_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_source", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_status": {"name": "analytics___salesforce_stg__mc_lead_lead_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_status", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_title": {"name": "analytics___salesforce_stg__mc_lead_lead_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_title", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_type": {"name": "analytics___salesforce_stg__mc_lead_lead_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_lead_website": {"name": "analytics___salesforce_stg__mc_lead_lead_website", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_lead_website", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_organization_key": {"name": "analytics___salesforce_stg__mc_lead_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_organization_key", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_prospect_fit_rank": {"name": "analytics___salesforce_stg__mc_lead_prospect_fit_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_prospect_fit_rank", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_prospect_fit_reason": {"name": "analytics___salesforce_stg__mc_lead_prospect_fit_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_prospect_fit_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_prospect_intent_rank": {"name": "analytics___salesforce_stg__mc_lead_prospect_intent_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_prospect_intent_rank", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_prospect_intent_reason": {"name": "analytics___salesforce_stg__mc_lead_prospect_intent_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_prospect_intent_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_segment_id": {"name": "analytics___salesforce_stg__mc_lead_segment_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_segment_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_utm_campaign": {"name": "analytics___salesforce_stg__mc_lead_utm_campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_utm_campaign", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_utm_medium": {"name": "analytics___salesforce_stg__mc_lead_utm_medium", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_utm_medium", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_lead_utm_source": {"name": "analytics___salesforce_stg__mc_lead_utm_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_lead/analytics___salesforce_stg__mc_lead.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_lead_utm_source", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript": {"name": "analytics___salesforce_stg__mc_live_chat_transcript", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript", "block_contents": "Modeled table which presents all of the live chats\nPK : chat_transcript_name, chat_id"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_account_id": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_account_id", "block_contents": "SF account ID"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_app_key": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_app_key", "block_contents": "chat requester app key"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_average_response_time_operator": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_average_response_time_operator", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_average_response_time_operator", "block_contents": "avg time to response - operator"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_average_response_time_visitor": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_average_response_time_visitor", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_average_response_time_visitor", "block_contents": "avg time to response - requestor"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_case_id": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_case_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_case_id", "block_contents": "related case ID"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_abandoned_seconds": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_abandoned_seconds", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_abandoned_seconds", "block_contents": "chat abandoned time in seconds - only if the requestor abandoned"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_body": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_body", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_body", "block_contents": "chat body - chat full transcript"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_duration_seconds": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_duration_seconds", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_duration_seconds", "block_contents": "chat duration in seconds - only if the requestor didn't abandon"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_ended_at": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_ended_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_ended_at", "block_contents": "chat ended at - full date and timestamp"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_ended_by": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_ended_by", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_ended_by", "block_contents": "chat ended by - Agent/Visitor"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_id": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_id", "block_contents": "live chat id - unique value - PK"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_key": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_key", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_owner_id": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_owner_id", "block_contents": "sf user id - agent id"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_started_at": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_started_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_started_at", "block_contents": "chat started at - full date and timestamp"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_status": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_status", "block_contents": "chat status - InProgress/Missed/Waiting/Completed"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_topic": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_topic", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_topic", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name", "block_contents": "PK - 8 digit unique identifier"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_waiting_time_seconds": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_chat_waiting_time_seconds", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_chat_waiting_time_seconds", "block_contents": "total waiting time"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_contact_id": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_contact_id", "block_contents": "SF contact id"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_created_at": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_created_at", "block_contents": "chat transcript created at"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_created_by_sf_user_id": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_created_by_sf_user_id", "block_contents": "created by SF user ID"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_is_chatbot_session": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_is_chatbot_session", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_is_chatbot_session", "block_contents": "is chatbot session - 1/0"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_is_concern_addressed": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_is_concern_addressed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_is_concern_addressed", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_is_deleted": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_is_deleted", "block_contents": "is deleted - 1/0"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_last_modified_at": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_last_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_last_modified_at", "block_contents": "last modified date"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_last_modified_by_sf_user_id": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_last_modified_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_last_modified_by_sf_user_id", "block_contents": "last modified by sf user id"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_live_chat_visitor_id": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_live_chat_visitor_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_live_chat_visitor_id", "block_contents": "Visitor ID"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_operator_message_count": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_operator_message_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_operator_message_count", "block_contents": "operator message count"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_request_time": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_request_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_request_time", "block_contents": "chat request time - good for both abandoned and not abadoned chats"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_supervisor_transcript_body": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_supervisor_transcript_body", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_supervisor_transcript_body", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_team_id_15_character": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_team_id_15_character", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_team_id_15_character", "block_contents": "case team id"}, "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_visitor_message_count": {"name": "analytics___salesforce_stg__mc_live_chat_transcript_visitor_message_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_live_chat_transcript/analytics___salesforce_stg__mc_live_chat_transcript.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_live_chat_transcript_visitor_message_count", "block_contents": "visitor message cnt"}, "doc.yoda.analytics___salesforce_stg__mc_mql": {"name": "analytics___salesforce_stg__mc_mql", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql", "block_contents": "A modeled view of the salesforce object mql | PK & Granularity: mql_id"}, "doc.yoda.analytics___salesforce_stg__mc_mql_contact_id": {"name": "analytics___salesforce_stg__mc_mql_contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_contact_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_created_at": {"name": "analytics___salesforce_stg__mc_mql_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_created_date": {"name": "analytics___salesforce_stg__mc_mql_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_created_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_current_territory": {"name": "analytics___salesforce_stg__mc_mql_current_territory", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_current_territory", "block_contents": "Field to show territory code based on Account Billing Country Code or Lead Country Code"}, "doc.yoda.analytics___salesforce_stg__mc_mql_demand_gen_channel": {"name": "analytics___salesforce_stg__mc_mql_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_demand_gen_channel", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_email": {"name": "analytics___salesforce_stg__mc_mql_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_email", "block_contents": "Email address of the lead or contact related to the MQL"}, "doc.yoda.analytics___salesforce_stg__mc_mql_is_deleted": {"name": "analytics___salesforce_stg__mc_mql_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_is_email": {"name": "analytics___salesforce_stg__mc_mql_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_is_email", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_is_loyalty": {"name": "analytics___salesforce_stg__mc_mql_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_is_platform": {"name": "analytics___salesforce_stg__mc_mql_is_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_is_platform", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_is_product_qualified": {"name": "analytics___salesforce_stg__mc_mql_is_product_qualified", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_is_product_qualified", "block_contents": "Indicates if the mql comes from product"}, "doc.yoda.analytics___salesforce_stg__mc_mql_is_rad": {"name": "analytics___salesforce_stg__mc_mql_is_rad", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_is_rad", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_is_reviews": {"name": "analytics___salesforce_stg__mc_mql_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_is_reviews", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_is_sms": {"name": "analytics___salesforce_stg__mc_mql_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_is_sms", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_is_ss": {"name": "analytics___salesforce_stg__mc_mql_is_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_is_ss", "block_contents": "If corresponding lead's Package_category contains 'ss' then 1 else 0"}, "doc.yoda.analytics___salesforce_stg__mc_mql_is_subscriptions": {"name": "analytics___salesforce_stg__mc_mql_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_is_vms": {"name": "analytics___salesforce_stg__mc_mql_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_is_vms", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_isdr_sales_estimated_monthly_orders": {"name": "analytics___salesforce_stg__mc_mql_isdr_sales_estimated_monthly_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_isdr_sales_estimated_monthly_orders", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_lead_id": {"name": "analytics___salesforce_stg__mc_mql_lead_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_lead_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_marketo_estimated_monthly_orders": {"name": "analytics___salesforce_stg__mc_mql_marketo_estimated_monthly_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_marketo_estimated_monthly_orders", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_mql_id": {"name": "analytics___salesforce_stg__mc_mql_mql_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_mql_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_product_interest": {"name": "analytics___salesforce_stg__mc_mql_product_interest", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_product_interest", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_recent_assignment_reason": {"name": "analytics___salesforce_stg__mc_mql_recent_assignment_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_recent_assignment_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_recent_assignment_sub_reason": {"name": "analytics___salesforce_stg__mc_mql_recent_assignment_sub_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_recent_assignment_sub_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_sf_owner": {"name": "analytics___salesforce_stg__mc_mql_sf_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_sf_owner", "block_contents": "salesforce user id of mql owner"}, "doc.yoda.analytics___salesforce_stg__mc_mql_similarweb_traffic": {"name": "analytics___salesforce_stg__mc_mql_similarweb_traffic", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_similarweb_traffic", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_mql_time_to_first_response": {"name": "analytics___salesforce_stg__mc_mql_time_to_first_response", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_mql/analytics___salesforce_stg__mc_mql.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_mql_time_to_first_response", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project": {"name": "analytics___salesforce_stg__mc_onboarding_project", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project", "block_contents": "Modeled View Salseforce Onboarding project\nPK & granularity: onboarding project id"}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_account_domain": {"name": "analytics___salesforce_stg__mc_onboarding_project_account_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_account_domain", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_account_id": {"name": "analytics___salesforce_stg__mc_onboarding_project_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_account_name": {"name": "analytics___salesforce_stg__mc_onboarding_project_account_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_account_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_account_product_id": {"name": "analytics___salesforce_stg__mc_onboarding_project_account_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_account_product_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_actual_duration_gross_days": {"name": "analytics___salesforce_stg__mc_onboarding_project_actual_duration_gross_days", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_actual_duration_gross_days", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_actual_duration_net": {"name": "analytics___salesforce_stg__mc_onboarding_project_actual_duration_net", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_actual_duration_net", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_app_key": {"name": "analytics___salesforce_stg__mc_onboarding_project_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_app_key", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_complexity_score": {"name": "analytics___salesforce_stg__mc_onboarding_project_complexity_score", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_complexity_score", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_created_by_id": {"name": "analytics___salesforce_stg__mc_onboarding_project_created_by_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_created_by_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_cs_segment": {"name": "analytics___salesforce_stg__mc_onboarding_project_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_cs_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_csm_email": {"name": "analytics___salesforce_stg__mc_onboarding_project_csm_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_csm_email", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_csm_name": {"name": "analytics___salesforce_stg__mc_onboarding_project_csm_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_csm_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_customization_level": {"name": "analytics___salesforce_stg__mc_onboarding_project_customization_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_customization_level", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_due_date": {"name": "analytics___salesforce_stg__mc_onboarding_project_due_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_due_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_agency": {"name": "analytics___salesforce_stg__mc_onboarding_project_is_agency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_agency", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_customer_care_project": {"name": "analytics___salesforce_stg__mc_onboarding_project_is_customer_care_project", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_customer_care_project", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_deleted": {"name": "analytics___salesforce_stg__mc_onboarding_project_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_headless_platform": {"name": "analytics___salesforce_stg__mc_onboarding_project_is_headless_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_headless_platform", "block_contents": "a type of store that requires different attention"}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_multi_product": {"name": "analytics___salesforce_stg__mc_onboarding_project_is_multi_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_multi_product", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_multi_store": {"name": "analytics___salesforce_stg__mc_onboarding_project_is_multi_store", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_multi_store", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_se_needed": {"name": "analytics___salesforce_stg__mc_onboarding_project_is_se_needed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_is_se_needed", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_koc_date": {"name": "analytics___salesforce_stg__mc_onboarding_project_koc_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_koc_date", "block_contents": "Kick off call - relevant to customer care projects"}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_merchant_id": {"name": "analytics___salesforce_stg__mc_onboarding_project_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_merchant_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_net_duration": {"name": "analytics___salesforce_stg__mc_onboarding_project_net_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_net_duration", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_number_of_domains": {"name": "analytics___salesforce_stg__mc_onboarding_project_number_of_domains", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_number_of_domains", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_manager": {"name": "analytics___salesforce_stg__mc_onboarding_project_onboarding_manager", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_manager", "block_contents": "this indicates who is the onboarding manager if the onboarding is closed or who is the csm if open"}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_manager_team": {"name": "analytics___salesforce_stg__mc_onboarding_project_onboarding_manager_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_manager_team", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id": {"name": "analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_project_name": {"name": "analytics___salesforce_stg__mc_onboarding_project_onboarding_project_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_project_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_reason": {"name": "analytics___salesforce_stg__mc_onboarding_project_onboarding_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_start_date": {"name": "analytics___salesforce_stg__mc_onboarding_project_onboarding_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_onboarding_start_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_organization_key": {"name": "analytics___salesforce_stg__mc_onboarding_project_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_organization_key", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_owner_id": {"name": "analytics___salesforce_stg__mc_onboarding_project_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_owner_role": {"name": "analytics___salesforce_stg__mc_onboarding_project_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_owner_role", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_paused_duration": {"name": "analytics___salesforce_stg__mc_onboarding_project_paused_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_paused_duration", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_planned_duration_days": {"name": "analytics___salesforce_stg__mc_onboarding_project_planned_duration_days", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_planned_duration_days", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_platform": {"name": "analytics___salesforce_stg__mc_onboarding_project_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_platform", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_process_paused_date": {"name": "analytics___salesforce_stg__mc_onboarding_project_process_paused_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_process_paused_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_process_resumed_date": {"name": "analytics___salesforce_stg__mc_onboarding_project_process_resumed_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_process_resumed_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_product_initial_won_date": {"name": "analytics___salesforce_stg__mc_onboarding_project_product_initial_won_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_product_initial_won_date", "block_contents": "the date that the product opportunity was won at"}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_product_line": {"name": "analytics___salesforce_stg__mc_onboarding_project_product_line", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_product_line", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_project_completion_date": {"name": "analytics___salesforce_stg__mc_onboarding_project_project_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_project_completion_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_project_created_at": {"name": "analytics___salesforce_stg__mc_onboarding_project_project_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_project_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_project_start_date": {"name": "analytics___salesforce_stg__mc_onboarding_project_project_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_project_start_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_red_flag_bucket": {"name": "analytics___salesforce_stg__mc_onboarding_project_red_flag_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_red_flag_bucket", "block_contents": "the bucket of risk the account is in within the onboarding project, the CSM will fill this when risk spotted."}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_red_flag_date": {"name": "analytics___salesforce_stg__mc_onboarding_project_red_flag_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_red_flag_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_red_flag_notes": {"name": "analytics___salesforce_stg__mc_onboarding_project_red_flag_notes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_red_flag_notes", "block_contents": "CSM comments on the red flag that they are raising"}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_red_flag_reason": {"name": "analytics___salesforce_stg__mc_onboarding_project_red_flag_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_red_flag_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_stage": {"name": "analytics___salesforce_stg__mc_onboarding_project_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_stage", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_target_launch_date": {"name": "analytics___salesforce_stg__mc_onboarding_project_target_launch_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_target_launch_date", "block_contents": "when the account wants to launch the product, will influence prioritization"}, "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_total_score": {"name": "analytics___salesforce_stg__mc_onboarding_project_total_score", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_onboarding_project/analytics___salesforce_stg__mc_onboarding_project.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_onboarding_project_total_score", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity": {"name": "analytics___salesforce_stg__mc_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity", "block_contents": "Modeled view of Opportunity salesforce object.\nPK: opportunity_id"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_account_id": {"name": "analytics___salesforce_stg__mc_opportunity_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_account_id", "block_contents": "salesforce account_id (FK: account)"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_actual_end_date": {"name": "analytics___salesforce_stg__mc_opportunity_actual_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_actual_end_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_attribution_channel": {"name": "analytics___salesforce_stg__mc_opportunity_attribution_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_attribution_channel", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_close_date": {"name": "analytics___salesforce_stg__mc_opportunity_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_close_date", "block_contents": "Contract signing date"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_contract_actual_duration_months": {"name": "analytics___salesforce_stg__mc_opportunity_contract_actual_duration_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_contract_actual_duration_months", "block_contents": "contract duration + free months + csm extention months, actual duration is NULL unless in opportunity is closed"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_contract_duration": {"name": "analytics___salesforce_stg__mc_opportunity_contract_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_contract_duration", "block_contents": "the contract duration set at time of sell"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_contract_duration_months": {"name": "analytics___salesforce_stg__mc_opportunity_contract_duration_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_contract_duration_months", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_contract_renewal_date": {"name": "analytics___salesforce_stg__mc_opportunity_contract_renewal_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_contract_renewal_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_conversion_rate": {"name": "analytics___salesforce_stg__mc_opportunity_conversion_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_conversion_rate", "block_contents": "currency conversion rate from original opportunity's original currency to usd"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_created_at": {"name": "analytics___salesforce_stg__mc_opportunity_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_created_by_sf_user_id": {"name": "analytics___salesforce_stg__mc_opportunity_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_created_by_sf_user_id", "block_contents": "Creator of opportunity- Salesforce id"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_created_date": {"name": "analytics___salesforce_stg__mc_opportunity_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_created_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_cs_comp_paid_date": {"name": "analytics___salesforce_stg__mc_opportunity_cs_comp_paid_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_cs_comp_paid_date", "block_contents": "Timestamp to the day the CS comp paid"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_customer_type": {"name": "analytics___salesforce_stg__mc_opportunity_customer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_customer_type", "block_contents": "Type of customer by subscription type, greenfield or migration"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_deal_type": {"name": "analytics___salesforce_stg__mc_opportunity_deal_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_deal_type", "block_contents": "Product: changes in desl status. example: Reviews: Same Rate, Loyalty: Usage Expansion, VMS: Discount Decrease, Insights: Same Rate"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_deal_type_as_per_deal_summary": {"name": "analytics___salesforce_stg__mc_opportunity_deal_type_as_per_deal_summary", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_deal_type_as_per_deal_summary", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_delta_acv_in_usd": {"name": "analytics___salesforce_stg__mc_opportunity_delta_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_delta_acv_in_usd", "block_contents": "Delta ACV compared to previous opp. Used for upsell and x-sell deals"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_delta_booking": {"name": "analytics___salesforce_stg__mc_opportunity_delta_booking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_delta_booking", "block_contents": "Total Ds Delta ACV + Delta eARR + Prime eARR + Gold eARR"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_description": {"name": "analytics___salesforce_stg__mc_opportunity_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_description", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_discount_rate": {"name": "analytics___salesforce_stg__mc_opportunity_discount_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_discount_rate", "block_contents": "Opportunity discount rate in precent"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_email_estimated_arr_in_usd": {"name": "analytics___salesforce_stg__mc_opportunity_email_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_email_estimated_arr_in_usd", "block_contents": "Email marketing product estimated ARR"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_entered_demo_date": {"name": "analytics___salesforce_stg__mc_opportunity_entered_demo_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_entered_demo_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_estimated_arr_in_usd": {"name": "analytics___salesforce_stg__mc_opportunity_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_estimated_arr_in_usd", "block_contents": "SMS eARR + Subscriptions eARR + Prime eARR + Gold eARR"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_estimated_monthly_order_range": {"name": "analytics___salesforce_stg__mc_opportunity_estimated_monthly_order_range", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_estimated_monthly_order_range", "block_contents": "order volume range"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_estimated_review_requests_per_month": {"name": "analytics___salesforce_stg__mc_opportunity_estimated_review_requests_per_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_estimated_review_requests_per_month", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_gold_estimated_arr_in_usd": {"name": "analytics___salesforce_stg__mc_opportunity_gold_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_gold_estimated_arr_in_usd", "block_contents": "eARR of Gold as based on value of the sales: estimated monthly orders field"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_bundle": {"name": "analytics___salesforce_stg__mc_opportunity_is_bundle", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_bundle", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_closed": {"name": "analytics___salesforce_stg__mc_opportunity_is_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_closed", "block_contents": "Stage is not one of the following: Won - Closed, Lost After Won, Lost"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_company_expansion": {"name": "analytics___salesforce_stg__mc_opportunity_is_company_expansion", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_company_expansion", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_current_contract": {"name": "analytics___salesforce_stg__mc_opportunity_is_current_contract", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_current_contract", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_deleted": {"name": "analytics___salesforce_stg__mc_opportunity_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_email_intent": {"name": "analytics___salesforce_stg__mc_opportunity_is_email_intent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_email_intent", "block_contents": "An indicator to show if the customer intends on using email product when sold alongside SMS"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_excluded_from_compensation": {"name": "analytics___salesforce_stg__mc_opportunity_is_excluded_from_compensation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_excluded_from_compensation", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_ht_ss": {"name": "analytics___salesforce_stg__mc_opportunity_is_ht_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_ht_ss", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_lost": {"name": "analytics___salesforce_stg__mc_opportunity_is_lost", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_lost", "block_contents": "Opportunity stage = 'lost'"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_lost_after_won": {"name": "analytics___salesforce_stg__mc_opportunity_is_lost_after_won", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_lost_after_won", "block_contents": "Opportunity stage = 'lost after won'"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_marketing": {"name": "analytics___salesforce_stg__mc_opportunity_is_marketing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_marketing", "block_contents": "An indicator to show opporutnity has been driven by a marketing channel"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_new_account_opportunity": {"name": "analytics___salesforce_stg__mc_opportunity_is_new_account_opportunity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_new_account_opportunity", "block_contents": "Opportunity type IN 'new sale','migration to annual','poc renewal','recycled opp'"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_osdr": {"name": "analytics___salesforce_stg__mc_opportunity_is_osdr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_osdr", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_other_demand_gen_channel": {"name": "analytics___salesforce_stg__mc_opportunity_is_other_demand_gen_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_other_demand_gen_channel", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_partner_upsell": {"name": "analytics___salesforce_stg__mc_opportunity_is_partner_upsell", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_partner_upsell", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_sal": {"name": "analytics___salesforce_stg__mc_opportunity_is_sal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_sal", "block_contents": "ISNOTNULL(enterted_demo_date)"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_scsm_deal": {"name": "analytics___salesforce_stg__mc_opportunity_is_scsm_deal", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_scsm_deal", "block_contents": "is super CSM deal"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_staggered_contract": {"name": "analytics___salesforce_stg__mc_opportunity_is_staggered_contract", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_staggered_contract", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_won_sale": {"name": "analytics___salesforce_stg__mc_opportunity_is_won_sale", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_is_won_sale", "block_contents": "Opportunity stage = 'won - sale'"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_lost_after_won_reason": {"name": "analytics___salesforce_stg__mc_opportunity_lost_after_won_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_lost_after_won_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_lost_reason": {"name": "analytics___salesforce_stg__mc_opportunity_lost_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_lost_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_lost_reason_details": {"name": "analytics___salesforce_stg__mc_opportunity_lost_reason_details", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_lost_reason_details", "block_contents": "The details to why the Opportunity was lost"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_lost_sub_reason": {"name": "analytics___salesforce_stg__mc_opportunity_lost_sub_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_lost_sub_reason", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_loyalty_csm_team_upon_closed": {"name": "analytics___salesforce_stg__mc_opportunity_loyalty_csm_team_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_loyalty_csm_team_upon_closed", "block_contents": "csm team stamped when the opportunity is closed"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_loyalty_csm_upon_closed": {"name": "analytics___salesforce_stg__mc_opportunity_loyalty_csm_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_loyalty_csm_upon_closed", "block_contents": "csm stamped when the opportunity is closed"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_merged_to_opportunity_id": {"name": "analytics___salesforce_stg__mc_opportunity_merged_to_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_merged_to_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_num_of_csm_extension_month": {"name": "analytics___salesforce_stg__mc_opportunity_num_of_csm_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_num_of_csm_extension_month", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_num_of_end_of_contract_extension_month": {"name": "analytics___salesforce_stg__mc_opportunity_num_of_end_of_contract_extension_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_num_of_end_of_contract_extension_month", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_opportunity_id": {"name": "analytics___salesforce_stg__mc_opportunity_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_opportunity_name": {"name": "analytics___salesforce_stg__mc_opportunity_opportunity_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_opportunity_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_opportunity_sf_url": {"name": "analytics___salesforce_stg__mc_opportunity_opportunity_sf_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_opportunity_sf_url", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_order_sales_segment": {"name": "analytics___salesforce_stg__mc_opportunity_order_sales_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_order_sales_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_original_currency": {"name": "analytics___salesforce_stg__mc_opportunity_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_original_currency", "block_contents": "original currency ISO code"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_original_owner_role": {"name": "analytics___salesforce_stg__mc_opportunity_original_owner_role", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_original_owner_role", "block_contents": "role of sf user that owns the opportunity"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_original_referrer_id": {"name": "analytics___salesforce_stg__mc_opportunity_original_referrer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_original_referrer_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_original_referrer_owner": {"name": "analytics___salesforce_stg__mc_opportunity_original_referrer_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_original_referrer_owner", "block_contents": "The original referrer owner is the partner manager who gets credit for this deal in case it is won."}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_owner_id": {"name": "analytics___salesforce_stg__mc_opportunity_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_partner_engagement_id": {"name": "analytics___salesforce_stg__mc_opportunity_partner_engagement_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_partner_engagement_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_pipeline_usd": {"name": "analytics___salesforce_stg__mc_opportunity_pipeline_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_pipeline_usd", "block_contents": "Pipeline delta bookings for all products included in the deal cycle, looks at maximum value throguhout deal, so even if a product is removed this is still included in the figure"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_plan_name": {"name": "analytics___salesforce_stg__mc_opportunity_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_plan_name", "block_contents": "All plans included in the opportunity seperated by '+'"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_pre_opp_ht_product_list": {"name": "analytics___salesforce_stg__mc_opportunity_pre_opp_ht_product_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_pre_opp_ht_product_list", "block_contents": "all ht annual products concatenated, the day prior to opportunity start date"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_primary_csm_team_upon_closed": {"name": "analytics___salesforce_stg__mc_opportunity_primary_csm_team_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_primary_csm_team_upon_closed", "block_contents": "csm team stamped when the opportunity is closed"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_primary_csm_upon_closed": {"name": "analytics___salesforce_stg__mc_opportunity_primary_csm_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_primary_csm_upon_closed", "block_contents": "csm stamped when the opportunity is closed"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_prime_estimated_arr_in_usd": {"name": "analytics___salesforce_stg__mc_opportunity_prime_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_prime_estimated_arr_in_usd", "block_contents": "eARR associated with particular Prime package"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_record_type_id": {"name": "analytics___salesforce_stg__mc_opportunity_record_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_record_type_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_record_type_name": {"name": "analytics___salesforce_stg__mc_opportunity_record_type_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_record_type_name", "block_contents": "Enterprise Opportunity|Standard Opportunity|Self Service Opportunity"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_referral_type": {"name": "analytics___salesforce_stg__mc_opportunity_referral_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_referral_type", "block_contents": "Common types:Heads Up, Referral, Influence"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_referrer_owner_id": {"name": "analytics___salesforce_stg__mc_opportunity_referrer_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_referrer_owner_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_renewal_acv_in_original_currency": {"name": "analytics___salesforce_stg__mc_opportunity_renewal_acv_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_renewal_acv_in_original_currency", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_renewal_to_opportunity_id": {"name": "analytics___salesforce_stg__mc_opportunity_renewal_to_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_renewal_to_opportunity_id", "block_contents": "reference to previous opportunity"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_sales_region": {"name": "analytics___salesforce_stg__mc_opportunity_sales_region", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_sales_region", "block_contents": "region code"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_sdr_sf_user_id": {"name": "analytics___salesforce_stg__mc_opportunity_sdr_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_sdr_sf_user_id", "block_contents": "SDR salesforce id"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_secondary_seller_id": {"name": "analytics___salesforce_stg__mc_opportunity_secondary_seller_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_secondary_seller_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_commitment_term": {"name": "analytics___salesforce_stg__mc_opportunity_sms_commitment_term", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_commitment_term", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_csm_team_upon_closed": {"name": "analytics___salesforce_stg__mc_opportunity_sms_csm_team_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_csm_team_upon_closed", "block_contents": "csm team stamped when the opportunity is closed"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_csm_upon_closed": {"name": "analytics___salesforce_stg__mc_opportunity_sms_csm_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_csm_upon_closed", "block_contents": "csm stamped when the opportunity is closed"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_delta_earr": {"name": "analytics___salesforce_stg__mc_opportunity_sms_delta_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_delta_earr", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_estimated_arr_in_usd": {"name": "analytics___salesforce_stg__mc_opportunity_sms_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_estimated_arr_in_usd", "block_contents": "The SMS eARR. Does not reflect the delta, meaning renewals may have an eARR value"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_first_commitment_value": {"name": "analytics___salesforce_stg__mc_opportunity_sms_first_commitment_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_first_commitment_value", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_second_commitment_value": {"name": "analytics___salesforce_stg__mc_opportunity_sms_second_commitment_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_sms_second_commitment_value", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_stage": {"name": "analytics___salesforce_stg__mc_opportunity_stage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_stage", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_start_date": {"name": "analytics___salesforce_stg__mc_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_start_date", "block_contents": "Contract starting date"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_subscriptions_delta_earr": {"name": "analytics___salesforce_stg__mc_opportunity_subscriptions_delta_earr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_subscriptions_delta_earr", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_subscriptions_estimated_arr_in_usd": {"name": "analytics___salesforce_stg__mc_opportunity_subscriptions_estimated_arr_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_subscriptions_estimated_arr_in_usd", "block_contents": "The Subscriptions eARR. Does not reflect the delta, meaning renewals may have an eARR value"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_subscriptions_seller_id": {"name": "analytics___salesforce_stg__mc_opportunity_subscriptions_seller_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_subscriptions_seller_id", "block_contents": "SF User ID of subscription seller"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_type": {"name": "analytics___salesforce_stg__mc_opportunity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_ugc_csm_team_upon_closed": {"name": "analytics___salesforce_stg__mc_opportunity_ugc_csm_team_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_ugc_csm_team_upon_closed", "block_contents": "csm team stamped when the opportunity is closed"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_ugc_csm_upon_closed": {"name": "analytics___salesforce_stg__mc_opportunity_ugc_csm_upon_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_ugc_csm_upon_closed", "block_contents": "csm stamped when the opportunity is closed"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_updated_at": {"name": "analytics___salesforce_stg__mc_opportunity_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_updated_at", "block_contents": "object's update time in salesforce"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_upsell_acv_in_usd": {"name": "analytics___salesforce_stg__mc_opportunity_upsell_acv_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_upsell_acv_in_usd", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_won_sale_probability": {"name": "analytics___salesforce_stg__mc_opportunity_won_sale_probability", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity/analytics___salesforce_stg__mc_opportunity.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_won_sale_probability", "block_contents": "The opportunity's probability to be Won - Sale [0...1].\nEach stage has a matching probability (0 = Lost, 1 = Won - Sale)."}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history": {"name": "analytics___salesforce_stg__mc_opportunity_field_history", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history", "block_contents": "A modeled view of the salesforce object opportunity_field_history.\nThe table contains events for field changes on the opportunity object\n| PK & Granularity: sf_event_id"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_created_at": {"name": "analytics___salesforce_stg__mc_opportunity_field_history_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_created_by_sf_user_id": {"name": "analytics___salesforce_stg__mc_opportunity_field_history_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_created_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_created_date": {"name": "analytics___salesforce_stg__mc_opportunity_field_history_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_created_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_data_type": {"name": "analytics___salesforce_stg__mc_opportunity_field_history_data_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_data_type", "block_contents": "The field data type in sf"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_field_name": {"name": "analytics___salesforce_stg__mc_opportunity_field_history_field_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_field_name", "block_contents": "The name of the field that it's value was changed"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_is_deleted": {"name": "analytics___salesforce_stg__mc_opportunity_field_history_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_new_value": {"name": "analytics___salesforce_stg__mc_opportunity_field_history_new_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_new_value", "block_contents": "the field's value after the change"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_old_value": {"name": "analytics___salesforce_stg__mc_opportunity_field_history_old_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_old_value", "block_contents": "the field's value before the change"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_opportunity_id": {"name": "analytics___salesforce_stg__mc_opportunity_field_history_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id": {"name": "analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_field_history/analytics___salesforce_stg__mc_opportunity_field_history.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item": {"name": "analytics___salesforce_stg__mc_opportunity_line_item", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item", "block_contents": "Modeled view of Opportunity line item salesforce object.\nPK: line_item_id"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_contract_start_date": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_contract_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_contract_start_date", "block_contents": "line item contract start date - match staggered contract start date"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_created_at": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_description": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_description", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_discount_rate": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_discount_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_discount_rate", "block_contents": "the discount rate for the sales price, the price in usd would be sales_price*(1-discount rate)"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_core_plan": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_is_core_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_core_plan", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_deleted": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_email": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_is_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_email", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_insights": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_is_insights", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_insights", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_loyalty": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_loyalty", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_reviews": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_reviews", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_sms": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_sms", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_subscriptions": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_is_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_subscriptions", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_vms": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_is_vms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_is_vms", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_last_modified_at": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_last_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_last_modified_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_line_item_id": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_line_item_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_line_item_id", "block_contents": "PK"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_line_item_plan": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_line_item_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_line_item_plan", "block_contents": "product plan"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_line_item_product": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_line_item_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_line_item_product", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_opportunity_id": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_opportunity_id", "block_contents": "FK: opportunity"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_price_after_discount_in_usd": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_price_after_discount_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_price_after_discount_in_usd", "block_contents": "the price of the line item after the discount, in USD"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_price_in_original_currency": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_price_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_price_in_original_currency", "block_contents": "the price of the line item after discount in original currency"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_provisioned_plan_name": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_provisioned_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_provisioned_plan_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_sales_price_in_original_currency": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_sales_price_in_original_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_sales_price_in_original_currency", "block_contents": "The initial price of the line item before applying the discount rate"}, "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_zuora_product_rate_plan_id": {"name": "analytics___salesforce_stg__mc_opportunity_line_item_zuora_product_rate_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_opportunity_line_item/analytics___salesforce_stg__mc_opportunity_line_item.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_opportunity_line_item_zuora_product_rate_plan_id", "block_contents": "FK: zuora_rate_plan"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral": {"name": "analytics___salesforce_stg__mc_partner_referral", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral", "block_contents": "Partner Referrals Full table, cleaned types and column names"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_converted_from_heads_up_to_referral_at": {"name": "analytics___salesforce_stg__mc_partner_referral_converted_from_heads_up_to_referral_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_converted_from_heads_up_to_referral_at", "block_contents": "The time of the conversion from heads-up to referral"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_converted_from_heads_up_to_referral_date": {"name": "analytics___salesforce_stg__mc_partner_referral_converted_from_heads_up_to_referral_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_converted_from_heads_up_to_referral_date", "block_contents": "The date of the conversion from heads-up to referral"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_created_at": {"name": "analytics___salesforce_stg__mc_partner_referral_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_created_at", "block_contents": "The time the partner engagement (PE) was created in SF, and should be mostly in recent years. \nOn 2019-06-26 there was a mass upload of historical PEs to SF so you may find a lot of PEs where the created_at date is that day."}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_created_date": {"name": "analytics___salesforce_stg__mc_partner_referral_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_created_date", "block_contents": "The date the partner engagement (PE) was created in SF, and should be mostly in recent years. \nOn 2019-06-26 there was a mass upload of historical PEs to SF so you may find a lot of PEs where the created_at date is that day."}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_dwh_updated_at": {"name": "analytics___salesforce_stg__mc_partner_referral_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_is_deleted": {"name": "analytics___salesforce_stg__mc_partner_referral_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_is_partner_upsell": {"name": "analytics___salesforce_stg__mc_partner_referral_is_partner_upsell", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_is_partner_upsell", "block_contents": "Tells whether the partner referral is connected to as Cross-sell Lead"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_is_referred_to_growth": {"name": "analytics___salesforce_stg__mc_partner_referral_is_referred_to_growth", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_is_referred_to_growth", "block_contents": "A lot of PEs don't ever convert into opportunities, and you may look at that and wonder why none of them are converting into opportunities. This field tells us which PEs are converting to Growth, one of our Low Touch (LT) plans. In other words the customer did not join through an AE but rather through a LT plan which was done by the customer without a sales rep (hency no opportunity created). Speak to Alex Lazoff and Gilad wilk to see if the field is maintained and when they started using it, as it's relatively recent"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_name": {"name": "analytics___salesforce_stg__mc_partner_referral_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_original_referrer_owner_id": {"name": "analytics___salesforce_stg__mc_partner_referral_original_referrer_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_original_referrer_owner_id", "block_contents": "This is the ID of the Partner Manager who gets credit for the Partner Referral"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_original_referrer_owner_name": {"name": "analytics___salesforce_stg__mc_partner_referral_original_referrer_owner_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_original_referrer_owner_name", "block_contents": "The partner manager who receives attribution for the refreral can be found here"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_account_id": {"name": "analytics___salesforce_stg__mc_partner_referral_partner_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_account_id", "block_contents": "The account id of the partner account that made the referral"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_contact_email": {"name": "analytics___salesforce_stg__mc_partner_referral_partner_contact_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_contact_email", "block_contents": "The partner contact email"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_contact_id": {"name": "analytics___salesforce_stg__mc_partner_referral_partner_contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_contact_id", "block_contents": "The contact id of the employee (who works for the partner) that made the referral"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_engagement_id": {"name": "analytics___salesforce_stg__mc_partner_referral_partner_engagement_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_engagement_id", "block_contents": "The primary key of the table. It can also be found as a foreign key in dim_opportunity where it's called partner_referral"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_manager_id": {"name": "analytics___salesforce_stg__mc_partner_referral_partner_manager_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_manager_id", "block_contents": "The id of the partner manager who sourced the referral"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_owner_name": {"name": "analytics___salesforce_stg__mc_partner_referral_partner_owner_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_partner_owner_name", "block_contents": "The name of the partner owner. The owner and the original_referrer_owner can definetly be different, and it's the original referrer owner that receives/received attribution. The partner owner is the current owner."}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_product_interest": {"name": "analytics___salesforce_stg__mc_partner_referral_product_interest", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_product_interest", "block_contents": "What products the customer is potentially interested in, though speak to Gilad Wilk, Alex Lazoff, Eric Griego etc. to find out how carefully they fill out this field. I have a feeling it's not done very carefully by the PM"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referee_owner_name": {"name": "analytics___salesforce_stg__mc_partner_referral_referee_owner_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referee_owner_name", "block_contents": "The name of the owner of the lead or account that was referred by the partner"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referee_platform": {"name": "analytics___salesforce_stg__mc_partner_referral_referee_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referee_platform", "block_contents": "Which ecom platform the referee uses (referee means the account or lead being referred by the partner)"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_claim_duration": {"name": "analytics___salesforce_stg__mc_partner_referral_referral_claim_duration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_claim_duration", "block_contents": "How long after the referral the partners channel and the PM can still receive attribution on upsells and cross sells"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_claim_duration_months": {"name": "analytics___salesforce_stg__mc_partner_referral_referral_claim_duration_months", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_claim_duration_months", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_claim_period_end_date": {"name": "analytics___salesforce_stg__mc_partner_referral_referral_claim_period_end_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_claim_period_end_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_date": {"name": "analytics___salesforce_stg__mc_partner_referral_referral_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_date", "block_contents": "The date of the referral. If it's null you can also use created_at in some use-cases"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_sub_type": {"name": "analytics___salesforce_stg__mc_partner_referral_referral_sub_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_sub_type", "block_contents": "Tells us whether it's a referral, an influence, or a heads up \n(if it's an outbound there are some other types which you can ask Angelo Carlo about)"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_type": {"name": "analytics___salesforce_stg__mc_partner_referral_referral_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referral_type", "block_contents": "Identifies whether its an inbound vs outbound Partner"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referred_account_id": {"name": "analytics___salesforce_stg__mc_partner_referral_referred_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referred_account_id", "block_contents": "Recall that a partner referral aka a Partner Engagement can be a referral of an account or a referral of a lead. If it's a referral of an account, then you can see which account was referred here."}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referred_by_contact_name": {"name": "analytics___salesforce_stg__mc_partner_referral_referred_by_contact_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referred_by_contact_name", "block_contents": "The partner contact name that made the referral"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referred_contact_id": {"name": "analytics___salesforce_stg__mc_partner_referral_referred_contact_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referred_contact_id", "block_contents": "If the referred account/lead has a specific contact associated with it, the contact id can be found here"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referred_lead_id": {"name": "analytics___salesforce_stg__mc_partner_referral_referred_lead_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referred_lead_id", "block_contents": "If thePartner Engagementis a lead referral then you can find the lead ID here"}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referree_annual_revenue_bucket": {"name": "analytics___salesforce_stg__mc_partner_referral_referree_annual_revenue_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_referree_annual_revenue_bucket", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_partner_referral_rev_share_rate": {"name": "analytics___salesforce_stg__mc_partner_referral_rev_share_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_partner_referral/analytics___salesforce_stg__mc_partner_referral.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_partner_referral_rev_share_rate", "block_contents": "Check if this is maintained before using it, but it should be based off the partner tier (different tiers receive different rev share rates)"}, "doc.yoda.analytics___salesforce_stg__mc_service_case": {"name": "analytics___salesforce_stg__mc_service_case", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case", "block_contents": "Modeled View Salseforce Cases, contains support cases, escelated and semi escelated cases, \nPK & granularity: case_id, case_number"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_Bug_actual_ttr": {"name": "analytics___salesforce_stg__mc_service_case_Bug_actual_ttr", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_Bug_actual_ttr", "block_contents": "bugs actual time to response"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_account_id": {"name": "analytics___salesforce_stg__mc_service_case_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_agent_replies_cnt": {"name": "analytics___salesforce_stg__mc_service_case_agent_replies_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_agent_replies_cnt", "block_contents": "total agents replies"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_app_key": {"name": "analytics___salesforce_stg__mc_service_case_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_app_key", "block_contents": "case app key"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_bug_fix_due_date": {"name": "analytics___salesforce_stg__mc_service_case_bug_fix_due_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_bug_fix_due_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_bug_fix_due_date_initial": {"name": "analytics___salesforce_stg__mc_service_case_bug_fix_due_date_initial", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_bug_fix_due_date_initial", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_bug_number": {"name": "analytics___salesforce_stg__mc_service_case_bug_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_bug_number", "block_contents": "related bug number"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_bug_number_days_in_delay": {"name": "analytics___salesforce_stg__mc_service_case_bug_number_days_in_delay", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_bug_number_days_in_delay", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_bug_status": {"name": "analytics___salesforce_stg__mc_service_case_bug_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_bug_status", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_case_id": {"name": "analytics___salesforce_stg__mc_service_case_case_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_case_id", "block_contents": "PK: case id"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_case_number": {"name": "analytics___salesforce_stg__mc_service_case_case_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_case_number", "block_contents": "PK: case number"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_closed_at": {"name": "analytics___salesforce_stg__mc_service_case_closed_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_closed_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_customer_segment": {"name": "analytics___salesforce_stg__mc_service_case_customer_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_customer_segment", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_de_escalated_at": {"name": "analytics___salesforce_stg__mc_service_case_de_escalated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_de_escalated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_description": {"name": "analytics___salesforce_stg__mc_service_case_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_description", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_escalated_to_tier2_at": {"name": "analytics___salesforce_stg__mc_service_case_escalated_to_tier2_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_escalated_to_tier2_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_escalation_severity": {"name": "analytics___salesforce_stg__mc_service_case_escalation_severity", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_escalation_severity", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_escalation_type": {"name": "analytics___salesforce_stg__mc_service_case_escalation_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_escalation_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_feature": {"name": "analytics___salesforce_stg__mc_service_case_feature", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_feature", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_first_response_at": {"name": "analytics___salesforce_stg__mc_service_case_first_response_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_first_response_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_incident_id": {"name": "analytics___salesforce_stg__mc_service_case_incident_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_incident_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_inquiry_type": {"name": "analytics___salesforce_stg__mc_service_case_inquiry_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_inquiry_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_is_closed": {"name": "analytics___salesforce_stg__mc_service_case_is_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_is_closed", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_is_deleted": {"name": "analytics___salesforce_stg__mc_service_case_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_is_escalated": {"name": "analytics___salesforce_stg__mc_service_case_is_escalated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_is_escalated", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_live_chat_ended_at": {"name": "analytics___salesforce_stg__mc_service_case_live_chat_ended_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_live_chat_ended_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_live_chat_started_at": {"name": "analytics___salesforce_stg__mc_service_case_live_chat_started_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_live_chat_started_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_opened_at": {"name": "analytics___salesforce_stg__mc_service_case_opened_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_opened_at", "block_contents": "case open time"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_organization_key": {"name": "analytics___salesforce_stg__mc_service_case_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_organization_key", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_origin": {"name": "analytics___salesforce_stg__mc_service_case_origin", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_origin", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_pending_rnd_in_hours": {"name": "analytics___salesforce_stg__mc_service_case_pending_rnd_in_hours", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_pending_rnd_in_hours", "block_contents": "number of hours pending for R&D response"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_product_family": {"name": "analytics___salesforce_stg__mc_service_case_product_family", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_product_family", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_record_type": {"name": "analytics___salesforce_stg__mc_service_case_record_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_record_type", "block_contents": "case record type id"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_replies_cnt": {"name": "analytics___salesforce_stg__mc_service_case_replies_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_replies_cnt", "block_contents": "number of total case replies: agent replies + customer replies"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_requester_wait_time_in_hours": {"name": "analytics___salesforce_stg__mc_service_case_requester_wait_time_in_hours", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_requester_wait_time_in_hours", "block_contents": "RWT in hours"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_requester_wait_time_t1_in_hours": {"name": "analytics___salesforce_stg__mc_service_case_requester_wait_time_t1_in_hours", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_requester_wait_time_t1_in_hours", "block_contents": "RWT tier 1 in hours"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_requester_wait_time_t2_in_hours": {"name": "analytics___salesforce_stg__mc_service_case_requester_wait_time_t2_in_hours", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_requester_wait_time_t2_in_hours", "block_contents": "RWT tier 2 in hours"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_severity_score": {"name": "analytics___salesforce_stg__mc_service_case_severity_score", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_severity_score", "block_contents": "case severity score (1 - highest, 4 - lowest)"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_status": {"name": "analytics___salesforce_stg__mc_service_case_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_status", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_subject": {"name": "analytics___salesforce_stg__mc_service_case_subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_subject", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_submitter_email": {"name": "analytics___salesforce_stg__mc_service_case_submitter_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_submitter_email", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_survey_response_at": {"name": "analytics___salesforce_stg__mc_service_case_survey_response_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_survey_response_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_service_case_survey_score": {"name": "analytics___salesforce_stg__mc_service_case_survey_score", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_survey_score", "block_contents": "customer survey score"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_team": {"name": "analytics___salesforce_stg__mc_service_case_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_team", "block_contents": "initial case team"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_team_formula": {"name": "analytics___salesforce_stg__mc_service_case_team_formula", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_team_formula", "block_contents": "current case team"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_time_to_first_response_in_minutes": {"name": "analytics___salesforce_stg__mc_service_case_time_to_first_response_in_minutes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_time_to_first_response_in_minutes", "block_contents": "TTFR in minutes"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_time_to_first_response_t2_in_minutes": {"name": "analytics___salesforce_stg__mc_service_case_time_to_first_response_t2_in_minutes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_time_to_first_response_t2_in_minutes", "block_contents": "TTFR tier 2"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_timer_t1_net_support_rwt": {"name": "analytics___salesforce_stg__mc_service_case_timer_t1_net_support_rwt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_timer_t1_net_support_rwt", "block_contents": "tier 1 Net RWT"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_timer_t2_net_support_rwt": {"name": "analytics___salesforce_stg__mc_service_case_timer_t2_net_support_rwt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_timer_t2_net_support_rwt", "block_contents": "tier 2 Net RWT"}, "doc.yoda.analytics___salesforce_stg__mc_service_case_topic": {"name": "analytics___salesforce_stg__mc_service_case_topic", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_service_case/analytics___salesforce_stg__mc_service_case.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_service_case_topic", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_task": {"name": "analytics___salesforce_stg__mc_task", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task", "block_contents": "Modeled view of salesforce task object | PK: task_id | granularity: task_id"}, "doc.yoda.analytics___salesforce_stg__mc_task_call_status": {"name": "analytics___salesforce_stg__mc_task_call_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_call_status", "block_contents": "Call status for the task: Connected, Left Voicemail, etc."}, "doc.yoda.analytics___salesforce_stg__mc_task_completion_date": {"name": "analytics___salesforce_stg__mc_task_completion_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_completion_date", "block_contents": "Completion date of the task."}, "doc.yoda.analytics___salesforce_stg__mc_task_completion_time": {"name": "analytics___salesforce_stg__mc_task_completion_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_completion_time", "block_contents": "Completion time of the task."}, "doc.yoda.analytics___salesforce_stg__mc_task_is_deleted": {"name": "analytics___salesforce_stg__mc_task_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_is_deleted", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_task_medium": {"name": "analytics___salesforce_stg__mc_task_medium", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_medium", "block_contents": "Medium of the task: Phone, Email, Social,"}, "doc.yoda.analytics___salesforce_stg__mc_task_owner_sf_user_id": {"name": "analytics___salesforce_stg__mc_task_owner_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_owner_sf_user_id", "block_contents": "sf id of user who is responsible for the task"}, "doc.yoda.analytics___salesforce_stg__mc_task_phase": {"name": "analytics___salesforce_stg__mc_task_phase", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_phase", "block_contents": "Phase of the task: Outreach, Pre-Renewal, etc."}, "doc.yoda.analytics___salesforce_stg__mc_task_status": {"name": "analytics___salesforce_stg__mc_task_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_status", "block_contents": "Status of the task."}, "doc.yoda.analytics___salesforce_stg__mc_task_subject": {"name": "analytics___salesforce_stg__mc_task_subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_subject", "block_contents": "Subject of the task."}, "doc.yoda.analytics___salesforce_stg__mc_task_task_id": {"name": "analytics___salesforce_stg__mc_task_task_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_task_id", "block_contents": "id of the task."}, "doc.yoda.analytics___salesforce_stg__mc_task_updated_at": {"name": "analytics___salesforce_stg__mc_task_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_task_what_object_id": {"name": "analytics___salesforce_stg__mc_task_what_object_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_what_object_id", "block_contents": "salesforce what object id (opportunity_id, account_id, ...)"}, "doc.yoda.analytics___salesforce_stg__mc_task_who_object_id": {"name": "analytics___salesforce_stg__mc_task_who_object_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_task/analytics___salesforce_stg__mc_task.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_task_who_object_id", "block_contents": "salesforce who object id (lead)id, contact_id, ...)"}, "doc.yoda.analytics___salesforce_stg__mc_user": {"name": "analytics___salesforce_stg__mc_user", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user", "block_contents": "A modeled view of the salesforce object user | PK & Granularity: user_id"}, "doc.yoda.analytics___salesforce_stg__mc_user_account_id": {"name": "analytics___salesforce_stg__mc_user_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_account_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_account_id_15_digits": {"name": "analytics___salesforce_stg__mc_user_account_id_15_digits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_account_id_15_digits", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_account_owner_name": {"name": "analytics___salesforce_stg__mc_user_account_owner_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_account_owner_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_alias_name": {"name": "analytics___salesforce_stg__mc_user_alias_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_alias_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_badge_text": {"name": "analytics___salesforce_stg__mc_user_badge_text", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_badge_text", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_company_name": {"name": "analytics___salesforce_stg__mc_user_company_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_company_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_created_at": {"name": "analytics___salesforce_stg__mc_user_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_created_by_id": {"name": "analytics___salesforce_stg__mc_user_created_by_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_created_by_id", "block_contents": "user's creator sf id"}, "doc.yoda.analytics___salesforce_stg__mc_user_csm_pod_account_manager_id": {"name": "analytics___salesforce_stg__mc_user_csm_pod_account_manager_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_csm_pod_account_manager_id", "block_contents": "account_manager_csm_pod__c AS csm_pod_account_manager_id, --"}, "doc.yoda.analytics___salesforce_stg__mc_user_csm_team": {"name": "analytics___salesforce_stg__mc_user_csm_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_csm_team", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_email": {"name": "analytics___salesforce_stg__mc_user_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_email", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_first_name": {"name": "analytics___salesforce_stg__mc_user_first_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_first_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_full_name": {"name": "analytics___salesforce_stg__mc_user_full_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_full_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_is_active": {"name": "analytics___salesforce_stg__mc_user_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_is_active", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_is_exclude_from_assignment_tracking": {"name": "analytics___salesforce_stg__mc_user_is_exclude_from_assignment_tracking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_is_exclude_from_assignment_tracking", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_is_integration_user": {"name": "analytics___salesforce_stg__mc_user_is_integration_user", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_is_integration_user", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_is_login_user_member": {"name": "analytics___salesforce_stg__mc_user_is_login_user_member", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_is_login_user_member", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_is_low_touch_csm": {"name": "analytics___salesforce_stg__mc_user_is_low_touch_csm", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_is_low_touch_csm", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_is_marketing_activity_user": {"name": "analytics___salesforce_stg__mc_user_is_marketing_activity_user", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_is_marketing_activity_user", "block_contents": "Will be checked for user that is used to log marketing activities to SF using Yesware"}, "doc.yoda.analytics___salesforce_stg__mc_user_is_profile_photo_active": {"name": "analytics___salesforce_stg__mc_user_is_profile_photo_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_is_profile_photo_active", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_is_queue": {"name": "analytics___salesforce_stg__mc_user_is_queue", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_is_queue", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_is_super_csm": {"name": "analytics___salesforce_stg__mc_user_is_super_csm", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_is_super_csm", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_last_login_date": {"name": "analytics___salesforce_stg__mc_user_last_login_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_last_login_date", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_last_modified_by_id": {"name": "analytics___salesforce_stg__mc_user_last_modified_by_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_last_modified_by_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_last_name": {"name": "analytics___salesforce_stg__mc_user_last_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_last_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_manager_id": {"name": "analytics___salesforce_stg__mc_user_manager_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_manager_id", "block_contents": "Manager's user sf id"}, "doc.yoda.analytics___salesforce_stg__mc_user_manager_name": {"name": "analytics___salesforce_stg__mc_user_manager_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_manager_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_partner_manager": {"name": "analytics___salesforce_stg__mc_user_partner_manager", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_partner_manager", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_queue_type": {"name": "analytics___salesforce_stg__mc_user_queue_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_queue_type", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_role_id": {"name": "analytics___salesforce_stg__mc_user_role_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_role_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_role_name": {"name": "analytics___salesforce_stg__mc_user_role_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_role_name", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_team": {"name": "analytics___salesforce_stg__mc_user_team", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_team", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_time_zone": {"name": "analytics___salesforce_stg__mc_user_time_zone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_time_zone", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_title": {"name": "analytics___salesforce_stg__mc_user_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_title", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_updated_at": {"name": "analytics___salesforce_stg__mc_user_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__mc_user_user_id": {"name": "analytics___salesforce_stg__mc_user_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__mc_user/analytics___salesforce_stg__mc_user.md", "unique_id": "doc.yoda.analytics___salesforce_stg__mc_user_user_id", "block_contents": "PK"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction": {"name": "analytics___salesforce_stg__opportunity_prediction", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction", "block_contents": "A table that takes the predictions object from SF in order to join to opportunity\nPK & Granulrity: prediction_id,opportunity_id"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_dwh_updated_at": {"name": "analytics___salesforce_stg__opportunity_prediction_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_loyalty_current_acv": {"name": "analytics___salesforce_stg__opportunity_prediction_loyalty_current_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_loyalty_current_acv", "block_contents": "Current ACV takes the actual ACV that was closed"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_loyalty_current_hedged_acv": {"name": "analytics___salesforce_stg__opportunity_prediction_loyalty_current_hedged_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_loyalty_current_hedged_acv", "block_contents": "We use a hedging formula to take into consideration the certainty level: 0% certainty->acv*0.2 ,25% certainty->acv*0.5 50% certainty->acv*0.8 75% certainty and above ->acv*1"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_loyalty_predictions_certainty_ratio": {"name": "analytics___salesforce_stg__opportunity_prediction_loyalty_predictions_certainty_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_loyalty_predictions_certainty_ratio", "block_contents": "a field that is changed by the CSM to express the certainty level in the prediction"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_loyalty_previous_acv": {"name": "analytics___salesforce_stg__opportunity_prediction_loyalty_previous_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_loyalty_previous_acv", "block_contents": "the renewal ACV of the product"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_loyalty_risk_buckets": {"name": "analytics___salesforce_stg__opportunity_prediction_loyalty_risk_buckets", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_loyalty_risk_buckets", "block_contents": "this field is used to bucket accounts that are within risk buckets such as 'not responsive' 'change in business' etc"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_id": {"name": "analytics___salesforce_stg__opportunity_prediction_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_opportunity_prediction_updated_by_sf_user_id": {"name": "analytics___salesforce_stg__opportunity_prediction_opportunity_opportunity_prediction_updated_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_opportunity_prediction_updated_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_created_at": {"name": "analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_created_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_created_by_sf_user_id": {"name": "analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_created_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_created_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_updated_at": {"name": "analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_updated_at", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_updated_by_sf_user_id": {"name": "analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_updated_by_sf_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_opportunity_prediction_updated_by_sf_user_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_predicted_loyalty_acv": {"name": "analytics___salesforce_stg__opportunity_prediction_predicted_loyalty_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_predicted_loyalty_acv", "block_contents": "the csm prediction of the loyalty ACV- if it is open, if closed-> shows the actual closed acv"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_predicted_reviews_acv": {"name": "analytics___salesforce_stg__opportunity_prediction_predicted_reviews_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_predicted_reviews_acv", "block_contents": "the csm prediction of the reviews+VMS ACV- if it is open, if closed-> shows the actual closed acv"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_prediction_id": {"name": "analytics___salesforce_stg__opportunity_prediction_prediction_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_prediction_id", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_reviews_current_acv": {"name": "analytics___salesforce_stg__opportunity_prediction_reviews_current_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_reviews_current_acv", "block_contents": ""}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_reviews_current_hedged_acv": {"name": "analytics___salesforce_stg__opportunity_prediction_reviews_current_hedged_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_reviews_current_hedged_acv", "block_contents": "We use a hedging formula to take into consideration the certainty level: 0% certainty->acv*0.2 ,25% certainty->acv*0.5 50% certainty->acv*0.8 75% certainty and above ->acv*1"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_reviews_predictions_certainty_ratio": {"name": "analytics___salesforce_stg__opportunity_prediction_reviews_predictions_certainty_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_reviews_predictions_certainty_ratio", "block_contents": "a field that is changed by the CSM to express the certainty level in the prediction"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_reviews_previous_acv": {"name": "analytics___salesforce_stg__opportunity_prediction_reviews_previous_acv", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_reviews_previous_acv", "block_contents": "the renewal ACV of the product line"}, "doc.yoda.analytics___salesforce_stg__opportunity_prediction_reviews_risk_buckets": {"name": "analytics___salesforce_stg__opportunity_prediction_reviews_risk_buckets", "resource_type": "doc", "package_name": "yoda", "path": "analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "original_file_path": "models/analytics/salesforce/staging/marts_compatible/analytics___salesforce_stg__opportunity_prediction/analytics___salesforce_stg__opportunity_prediction.md", "unique_id": "doc.yoda.analytics___salesforce_stg__opportunity_prediction_reviews_risk_buckets", "block_contents": "this field is used to bucket accounts that are within risk buckets such as 'not responsive' 'change in business' etc"}, "doc.yoda.analytics___sms__automation_message_dates": {"name": "analytics___sms__automation_message_dates", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.md", "unique_id": "doc.yoda.analytics___sms__automation_message_dates", "block_contents": "Modeled incremental table of sms automation messages' date history. \nThe purpose of the table is to save runtimes on recalculating historical dates.\nGranularity: automation_id | message_date"}, "doc.yoda.analytics___sms__automation_message_dates_automation_id": {"name": "analytics___sms__automation_message_dates_automation_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.md", "unique_id": "doc.yoda.analytics___sms__automation_message_dates_automation_id", "block_contents": "automation unique identifier - PK 1/2"}, "doc.yoda.analytics___sms__automation_message_dates_dwh_updated_at": {"name": "analytics___sms__automation_message_dates_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.md", "unique_id": "doc.yoda.analytics___sms__automation_message_dates_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__automation_message_dates_message_date": {"name": "analytics___sms__automation_message_dates_message_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.md", "unique_id": "doc.yoda.analytics___sms__automation_message_dates_message_date", "block_contents": "message date - PK 2/2"}, "doc.yoda.analytics___sms__automation_message_dates_sms_user_id": {"name": "analytics___sms__automation_message_dates_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__automation_message_dates/analytics___sms__automation_message_dates.md", "unique_id": "doc.yoda.analytics___sms__automation_message_dates_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms__campaign_message_dates": {"name": "analytics___sms__campaign_message_dates", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.md", "unique_id": "doc.yoda.analytics___sms__campaign_message_dates", "block_contents": "Modeled incremental table of sms campaign messages' date history. \nThe purpose of the table is to save runtimes on recalculating historical dates.\nGranularity: campaign_id | message_date"}, "doc.yoda.analytics___sms__campaign_message_dates_campaign_id": {"name": "analytics___sms__campaign_message_dates_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.md", "unique_id": "doc.yoda.analytics___sms__campaign_message_dates_campaign_id", "block_contents": "campaign unique identifier - PK 1/2"}, "doc.yoda.analytics___sms__campaign_message_dates_dwh_updated_at": {"name": "analytics___sms__campaign_message_dates_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.md", "unique_id": "doc.yoda.analytics___sms__campaign_message_dates_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__campaign_message_dates_message_date": {"name": "analytics___sms__campaign_message_dates_message_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.md", "unique_id": "doc.yoda.analytics___sms__campaign_message_dates_message_date", "block_contents": "message date - PK 2/2"}, "doc.yoda.analytics___sms__campaign_message_dates_sms_user_id": {"name": "analytics___sms__campaign_message_dates_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__campaign_message_dates/analytics___sms__campaign_message_dates.md", "unique_id": "doc.yoda.analytics___sms__campaign_message_dates_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms__deliverability_daily": {"name": "analytics___sms__deliverability_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily", "block_contents": "daily metric table for SMS deliverability, only pulls data from the start of last year"}, "doc.yoda.analytics___sms__deliverability_daily_aggregator_name": {"name": "analytics___sms__deliverability_daily_aggregator_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_aggregator_name", "block_contents": "name of sms provider: twillio, nexmo etc"}, "doc.yoda.analytics___sms__deliverability_daily_billed_message_cnt": {"name": "analytics___sms__deliverability_daily_billed_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_billed_message_cnt", "block_contents": "number of billed messages sent"}, "doc.yoda.analytics___sms__deliverability_daily_billed_message_cnt_by_carrier": {"name": "analytics___sms__deliverability_daily_billed_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_billed_message_cnt_by_carrier", "block_contents": "number of billed messages sent by carrier - split into parts"}, "doc.yoda.analytics___sms__deliverability_daily_date": {"name": "analytics___sms__deliverability_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_date", "block_contents": "day of aggregation"}, "doc.yoda.analytics___sms__deliverability_daily_last_3m_orders_avg_bucket": {"name": "analytics___sms__deliverability_daily_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_last_3m_orders_avg_bucket", "block_contents": "store order bucket in l3m"}, "doc.yoda.analytics___sms__deliverability_daily_message_cnt": {"name": "analytics___sms__deliverability_daily_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_message_cnt", "block_contents": "number of messages sent"}, "doc.yoda.analytics___sms__deliverability_daily_message_cnt_by_carrier": {"name": "analytics___sms__deliverability_daily_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_message_cnt_by_carrier", "block_contents": "number of messages sent by carrier - split into parts"}, "doc.yoda.analytics___sms__deliverability_daily_message_source": {"name": "analytics___sms__deliverability_daily_message_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_message_source", "block_contents": "source of message: campaign, flow, automation or other"}, "doc.yoda.analytics___sms__deliverability_daily_message_status": {"name": "analytics___sms__deliverability_daily_message_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_message_status", "block_contents": "status of message: sent, landline etc"}, "doc.yoda.analytics___sms__deliverability_daily_message_type": {"name": "analytics___sms__deliverability_daily_message_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_message_type", "block_contents": "type of message - sms/mms"}, "doc.yoda.analytics___sms__deliverability_daily_plan_type_ht_lt": {"name": "analytics___sms__deliverability_daily_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_plan_type_ht_lt", "block_contents": "daily plan type ht or lt"}, "doc.yoda.analytics___sms__deliverability_daily_price_aggregator_cost_in_usd": {"name": "analytics___sms__deliverability_daily_price_aggregator_cost_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_price_aggregator_cost_in_usd", "block_contents": "cost of messages sent from the aggregator"}, "doc.yoda.analytics___sms__deliverability_daily_price_billed_in_usd": {"name": "analytics___sms__deliverability_daily_price_billed_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_price_billed_in_usd", "block_contents": "price of messages sent"}, "doc.yoda.analytics___sms__deliverability_daily_receiver_country_name": {"name": "analytics___sms__deliverability_daily_receiver_country_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_receiver_country_name", "block_contents": "name of receiver country based on phone code mapping"}, "doc.yoda.analytics___sms__deliverability_daily_sms_deliverability_id": {"name": "analytics___sms__deliverability_daily_sms_deliverability_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_sms_deliverability_id", "block_contents": "unique id, sha2 of all the dimensions we use for the group by"}, "doc.yoda.analytics___sms__deliverability_daily_store_country_name": {"name": "analytics___sms__deliverability_daily_store_country_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__deliverability_daily/analytics___sms__deliverability_daily.md", "unique_id": "doc.yoda.analytics___sms__deliverability_daily_store_country_name", "block_contents": "name of store country"}, "doc.yoda.analytics___sms__flow_message_dates": {"name": "analytics___sms__flow_message_dates", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.md", "unique_id": "doc.yoda.analytics___sms__flow_message_dates", "block_contents": "Modeled incremental table of sms flow messages' date history. \nThe purpose of the table is to save runtimes on recalculating historical dates.\nGranularity: flow_id | message_date"}, "doc.yoda.analytics___sms__flow_message_dates_dwh_updated_at": {"name": "analytics___sms__flow_message_dates_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.md", "unique_id": "doc.yoda.analytics___sms__flow_message_dates_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__flow_message_dates_flow_id": {"name": "analytics___sms__flow_message_dates_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.md", "unique_id": "doc.yoda.analytics___sms__flow_message_dates_flow_id", "block_contents": "flow unique identifier - PK 1/2"}, "doc.yoda.analytics___sms__flow_message_dates_message_date": {"name": "analytics___sms__flow_message_dates_message_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.md", "unique_id": "doc.yoda.analytics___sms__flow_message_dates_message_date", "block_contents": "message date - PK 2/2"}, "doc.yoda.analytics___sms__flow_message_dates_sms_user_id": {"name": "analytics___sms__flow_message_dates_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__flow_message_dates/analytics___sms__flow_message_dates.md", "unique_id": "doc.yoda.analytics___sms__flow_message_dates_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms__free_credit_details": {"name": "analytics___sms__free_credit_details", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "unique_id": "doc.yoda.analytics___sms__free_credit_details", "block_contents": "Aggregated table of free credit events enriched by free_credit_type"}, "doc.yoda.analytics___sms__free_credit_details_app_key": {"name": "analytics___sms__free_credit_details_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "unique_id": "doc.yoda.analytics___sms__free_credit_details_app_key", "block_contents": ""}, "doc.yoda.analytics___sms__free_credit_details_credit_created_at": {"name": "analytics___sms__free_credit_details_credit_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "unique_id": "doc.yoda.analytics___sms__free_credit_details_credit_created_at", "block_contents": "timestamp of the free credit event"}, "doc.yoda.analytics___sms__free_credit_details_credit_type": {"name": "analytics___sms__free_credit_details_credit_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "unique_id": "doc.yoda.analytics___sms__free_credit_details_credit_type", "block_contents": "credit category: SaaS Fee Credit | Customer Marketing | Signup Bonus | Activation Perks | Admin | Purchase Bonus | High-Touch Bonus"}, "doc.yoda.analytics___sms__free_credit_details_dwh_updated_at": {"name": "analytics___sms__free_credit_details_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "unique_id": "doc.yoda.analytics___sms__free_credit_details_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___sms__free_credit_details_free_credit_amount": {"name": "analytics___sms__free_credit_details_free_credit_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "unique_id": "doc.yoda.analytics___sms__free_credit_details_free_credit_amount", "block_contents": "free credit amount in usd (negative amount means that credits were removed from sms_user)"}, "doc.yoda.analytics___sms__free_credit_details_free_credit_id": {"name": "analytics___sms__free_credit_details_free_credit_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "unique_id": "doc.yoda.analytics___sms__free_credit_details_free_credit_id", "block_contents": "PK: artificial id = CONCAT(sms_user_id,created_at,credit_type)"}, "doc.yoda.analytics___sms__free_credit_details_organization_key": {"name": "analytics___sms__free_credit_details_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "unique_id": "doc.yoda.analytics___sms__free_credit_details_organization_key", "block_contents": ""}, "doc.yoda.analytics___sms__free_credit_details_sms_user_id": {"name": "analytics___sms__free_credit_details_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__free_credit_details/analytics___sms__free_credit_details.md", "unique_id": "doc.yoda.analytics___sms__free_credit_details_sms_user_id", "block_contents": ""}, "doc.yoda.analytics___sms__organization_metrics_monthly": {"name": "analytics___sms__organization_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__organization_metrics_monthly", "block_contents": "Monthly metrics View of sms organization - aggregation over analytics___sms__store_metrics_monthly.\nThe table contains data for the current year and the two previous years.\nGranularity: month | organization_key"}, "doc.yoda.analytics___sms__organization_metrics_monthly_dwh_updated_at": {"name": "analytics___sms__organization_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__organization_metrics_monthly_dwh_updated_at", "block_contents": "table refresh timestamp"}, "doc.yoda.analytics___sms__organization_metrics_monthly_month": {"name": "analytics___sms__organization_metrics_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__organization_metrics_monthly_month", "block_contents": "table month"}, "doc.yoda.analytics___sms__organization_metrics_monthly_organization_id": {"name": "analytics___sms__organization_metrics_monthly_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__organization_metrics_monthly_organization_id", "block_contents": ""}, "doc.yoda.analytics___sms__organization_metrics_monthly_organization_key": {"name": "analytics___sms__organization_metrics_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__organization_metrics_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___sms__organization_metrics_monthly_revenue_in_usd_sum": {"name": "analytics___sms__organization_metrics_monthly_revenue_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__organization_metrics_monthly_revenue_in_usd_sum", "block_contents": "sum of all organization's stores revenue_in_usd_sum"}, "doc.yoda.analytics___sms__organization_metrics_monthly_revenue_last_3_month_in_usd_sum": {"name": "analytics___sms__organization_metrics_monthly_revenue_last_3_month_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__organization_metrics_monthly_revenue_last_3_month_in_usd_sum", "block_contents": "sum of all organization's stores revenue_in_usd_sum over PRECEDING 3 months"}, "doc.yoda.analytics___sms__organization_metrics_monthly_roi_last_3_month_ratio": {"name": "analytics___sms__organization_metrics_monthly_roi_last_3_month_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__organization_metrics_monthly_roi_last_3_month_ratio", "block_contents": "organization roi = (sum of all organization's stores Revenue_last_3_month - sum of all organization's stores Spend_last_3_month) / sum of all organization's stores Spend_last_3_month"}, "doc.yoda.analytics___sms__organization_metrics_monthly_roi_ratio": {"name": "analytics___sms__organization_metrics_monthly_roi_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__organization_metrics_monthly_roi_ratio", "block_contents": "ROI = (sum of all organization's stores Revenue - sum of all organization's stores Spend) / sum of all organization's stores Spend"}, "doc.yoda.analytics___sms__organization_metrics_monthly_roi_spent_in_usd_sum": {"name": "analytics___sms__organization_metrics_monthly_roi_spent_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__organization_metrics_monthly_roi_spent_in_usd_sum", "block_contents": "sum of all organization's stores roi_spent_in_usd_sum"}, "doc.yoda.analytics___sms__organization_metrics_monthly_roi_spent_last_3_month_in_usd_sum": {"name": "analytics___sms__organization_metrics_monthly_roi_spent_last_3_month_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__organization_metrics_monthly/analytics___sms__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__organization_metrics_monthly_roi_spent_last_3_month_in_usd_sum", "block_contents": "sum of all organization's stores roi_spent_in_usd_sum over PRECEDING 3 months"}, "doc.yoda.analytics___sms__purchase": {"name": "analytics___sms__purchase", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.md", "unique_id": "doc.yoda.analytics___sms__purchase", "block_contents": "Modeled table of sms purchases | Granularity & Primary Key: purchase_id"}, "doc.yoda.analytics___sms__purchase_dwh_updated_at": {"name": "analytics___sms__purchase_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__purchase/analytics___sms__purchase.md", "unique_id": "doc.yoda.analytics___sms__purchase_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__store": {"name": "analytics___sms__store", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store", "block_contents": "Modeled table of SMS stores | Granularity & Primary Key: app_key"}, "doc.yoda.analytics___sms__store_app_key": {"name": "analytics___sms__store_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_app_key", "block_contents": "yotpo store unique identifier - primary key"}, "doc.yoda.analytics___sms__store_balance_in_usd": {"name": "analytics___sms__store_balance_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_balance_in_usd", "block_contents": "balance in usd"}, "doc.yoda.analytics___sms__store_country_name": {"name": "analytics___sms__store_country_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_country_name", "block_contents": "store country name"}, "doc.yoda.analytics___sms__store_created_at": {"name": "analytics___sms__store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms__store_created_date": {"name": "analytics___sms__store_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms__store_domain": {"name": "analytics___sms__store_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_domain", "block_contents": "store domain"}, "doc.yoda.analytics___sms__store_dwh_updated_at": {"name": "analytics___sms__store_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__store_email": {"name": "analytics___sms__store_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_email", "block_contents": "store email"}, "doc.yoda.analytics___sms__store_first_credits_usage_at": {"name": "analytics___sms__store_first_credits_usage_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_first_credits_usage_at", "block_contents": "first credits usage timestamp"}, "doc.yoda.analytics___sms__store_is_active": {"name": "analytics___sms__store_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_is_active", "block_contents": "activeness indicator: 0/1"}, "doc.yoda.analytics___sms__store_is_auto_reload": {"name": "analytics___sms__store_is_auto_reload", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_is_auto_reload", "block_contents": "auto reload credits indication"}, "doc.yoda.analytics___sms__store_is_chat_enabled": {"name": "analytics___sms__store_is_chat_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_is_chat_enabled", "block_contents": "chat enablement indicator: 0/1/null"}, "doc.yoda.analytics___sms__store_is_shopify_plus": {"name": "analytics___sms__store_is_shopify_plus", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_is_shopify_plus", "block_contents": "shopify plus indicator: 0/1"}, "doc.yoda.analytics___sms__store_last_credits_usage_at": {"name": "analytics___sms__store_last_credits_usage_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_last_credits_usage_at", "block_contents": "last credits usage timestamp"}, "doc.yoda.analytics___sms__store_modified_at": {"name": "analytics___sms__store_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_modified_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms__store_modified_date": {"name": "analytics___sms__store_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms__store_name": {"name": "analytics___sms__store_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_name", "block_contents": "store name"}, "doc.yoda.analytics___sms__store_organization_id": {"name": "analytics___sms__store_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___sms__store_organization_key": {"name": "analytics___sms__store_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___sms__store_plan_id": {"name": "analytics___sms__store_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_plan_id", "block_contents": "sms plan id unique identifier"}, "doc.yoda.analytics___sms__store_plan_name": {"name": "analytics___sms__store_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_plan_name", "block_contents": "sms plan name: Powerhouse Plus, Powerhouse Max, Powerhouse Monthly, etc."}, "doc.yoda.analytics___sms__store_plan_period": {"name": "analytics___sms__store_plan_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_plan_period", "block_contents": "plan period: monthly, annually, null"}, "doc.yoda.analytics___sms__store_plan_type_group": {"name": "analytics___sms__store_plan_type_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_plan_type_group", "block_contents": "plan type group: self_service, high_touch and free"}, "doc.yoda.analytics___sms__store_plan_type_ht_lt": {"name": "analytics___sms__store_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_plan_type_ht_lt", "block_contents": "plan customer type: HT/LT"}, "doc.yoda.analytics___sms__store_platform_name": {"name": "analytics___sms__store_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_platform_name", "block_contents": "store platform name: shopify, bigcommerce, magento, etc."}, "doc.yoda.analytics___sms__store_region_name": {"name": "analytics___sms__store_region_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_region_name", "block_contents": "store region name based on country_name (default:EMEA)"}, "doc.yoda.analytics___sms__store_sms_user_id": {"name": "analytics___sms__store_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_sms_user_id", "block_contents": "yotpo sms user unique identifier. There are a few invalid cases resulting from a fault in the data source where there are several users for the same store. In such a case, only one user will be retrieved according to the following order of priorities: balance_in_usd DESC & is_onboarding_completed DESC &is_chat_enabled DESC &is_collect_checkout_subscribers DESC &is_ban_exclude DESC &industry_name DESC &sms_user_id"}, "doc.yoda.analytics___sms__store_store_user_array": {"name": "analytics___sms__store_store_user_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_store_user_array", "block_contents": "sms users _array - in a valid case, should be only one user for each store"}, "doc.yoda.analytics___sms__store_store_user_cnt": {"name": "analytics___sms__store_store_user_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_store_user_cnt", "block_contents": "sms users counting - in a valid case, should be only one user for each store"}, "doc.yoda.analytics___sms__store_user_name": {"name": "analytics___sms__store_user_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store/analytics___sms__store.md", "unique_id": "doc.yoda.analytics___sms__store_user_name", "block_contents": "sms user name"}, "doc.yoda.analytics___sms__store_activeness_daily": {"name": "analytics___sms__store_activeness_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__store_activeness_daily", "block_contents": "Modeled view of sms store activeness history on a daily level | PK and granularity: activeness_date, app_key"}, "doc.yoda.analytics___sms__store_activeness_daily_activeness_date": {"name": "analytics___sms__store_activeness_daily_activeness_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__store_activeness_daily_activeness_date", "block_contents": "store activeness date - primary key 1/2"}, "doc.yoda.analytics___sms__store_activeness_daily_app_key": {"name": "analytics___sms__store_activeness_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__store_activeness_daily_app_key", "block_contents": "yotpo store unique identifier - primary key 2/2"}, "doc.yoda.analytics___sms__store_activeness_daily_dwh_updated_at": {"name": "analytics___sms__store_activeness_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__store_activeness_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__store_activeness_daily_is_app_installed": {"name": "analytics___sms__store_activeness_daily_is_app_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__store_activeness_daily_is_app_installed", "block_contents": "installed app indicator: 0/1"}, "doc.yoda.analytics___sms__store_activeness_daily_is_store_open": {"name": "analytics___sms__store_activeness_daily_is_store_open", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__store_activeness_daily_is_store_open", "block_contents": "open store indicator: 0/1"}, "doc.yoda.analytics___sms__store_activeness_daily_sms_user_id": {"name": "analytics___sms__store_activeness_daily_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_activeness_daily/analytics___sms__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__store_activeness_daily_sms_user_id", "block_contents": "yotpo sms user unique identifier."}, "doc.yoda.analytics___sms__store_cohort": {"name": "analytics___sms__store_cohort", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort", "block_contents": "30-day cohorts modeled table for SMS stores:\n1. Cohort by store start date\n2. Cohort by store first usage date. \n\nPK and granularity: app_key | cohort_type | cohort_number"}, "doc.yoda.analytics___sms__store_cohort_activated_at_cohort_number": {"name": "analytics___sms__store_cohort_activated_at_cohort_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_activated_at_cohort_number", "block_contents": "the cohort number where the store had at least cumulative usage of 3 dollars"}, "doc.yoda.analytics___sms__store_cohort_active_campaign_cnt": {"name": "analytics___sms__store_cohort_active_campaign_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_active_campaign_cnt", "block_contents": "total active campaigns in the specific cohort number"}, "doc.yoda.analytics___sms__store_cohort_app_key": {"name": "analytics___sms__store_cohort_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___sms__store_cohort_cohort_days_range": {"name": "analytics___sms__store_cohort_cohort_days_range", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_cohort_days_range", "block_contents": "cohort days range. e.g., when cohort_number = 2 cohort_days_range = 60-89"}, "doc.yoda.analytics___sms__store_cohort_cohort_from_date": {"name": "analytics___sms__store_cohort_cohort_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_cohort_from_date", "block_contents": "the cohort number start date range"}, "doc.yoda.analytics___sms__store_cohort_cohort_number": {"name": "analytics___sms__store_cohort_cohort_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_cohort_number", "block_contents": "cohort number: 30d cohort number from the cohort start date: 0,1,2, etc."}, "doc.yoda.analytics___sms__store_cohort_cohort_to_date": {"name": "analytics___sms__store_cohort_cohort_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_cohort_to_date", "block_contents": "the cohort number end date range"}, "doc.yoda.analytics___sms__store_cohort_cohort_type": {"name": "analytics___sms__store_cohort_cohort_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_cohort_type", "block_contents": "cohort type: Cohort By Start Date, Cohort By First Usage"}, "doc.yoda.analytics___sms__store_cohort_dwh_updated_at": {"name": "analytics___sms__store_cohort_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__store_cohort_is_activated": {"name": "analytics___sms__store_cohort_is_activated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_is_activated", "block_contents": "indicates whether the store had already at least cumulative usage of 3 dollars in the specific cohort number: 0/1"}, "doc.yoda.analytics___sms__store_cohort_is_active": {"name": "analytics___sms__store_cohort_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_is_active", "block_contents": "indicates whether usage sum is greather than 0 in the specific cohort number: 0/1"}, "doc.yoda.analytics___sms__store_cohort_message_cnt": {"name": "analytics___sms__store_cohort_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_message_cnt", "block_contents": "total messages in the specific cohort number"}, "doc.yoda.analytics___sms__store_cohort_sms_user_id": {"name": "analytics___sms__store_cohort_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_sms_user_id", "block_contents": "yotpo sms user unique identifier"}, "doc.yoda.analytics___sms__store_cohort_start_date": {"name": "analytics___sms__store_cohort_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_start_date", "block_contents": "store start date - the first_opportunity_start_date or the store created_date (when there is no opportunity)"}, "doc.yoda.analytics___sms__store_cohort_usage_first_date": {"name": "analytics___sms__store_cohort_usage_first_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_usage_first_date", "block_contents": "store first date of usage"}, "doc.yoda.analytics___sms__store_cohort_usage_sum": {"name": "analytics___sms__store_cohort_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_cohort/analytics___sms__store_cohort.md", "unique_id": "doc.yoda.analytics___sms__store_cohort_usage_sum", "block_contents": "total usage amount in usd in the specific cohort number"}, "doc.yoda.analytics___sms__store_metrics": {"name": "analytics___sms__store_metrics", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics", "block_contents": "Modeled table of sms store metrics | PK and granularity: app_key"}, "doc.yoda.analytics___sms__store_metrics_3_usd_activation_date": {"name": "analytics___sms__store_metrics_3_usd_activation_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_3_usd_activation_date", "block_contents": "3 USD cumulative usage activation date"}, "doc.yoda.analytics___sms__store_metrics_active_automation_cnt_last_30d": {"name": "analytics___sms__store_metrics_active_automation_cnt_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_active_automation_cnt_last_30d", "block_contents": "Number of active automations in the last 30 days"}, "doc.yoda.analytics___sms__store_metrics_active_campaign_cnt_avg_last_3m": {"name": "analytics___sms__store_metrics_active_campaign_cnt_avg_last_3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_active_campaign_cnt_avg_last_3m", "block_contents": "Average number of active campaigns in the 3 months preceding the current month"}, "doc.yoda.analytics___sms__store_metrics_active_campaign_cnt_last_30d": {"name": "analytics___sms__store_metrics_active_campaign_cnt_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_active_campaign_cnt_last_30d", "block_contents": "Number of active campaigns in the last 30 days"}, "doc.yoda.analytics___sms__store_metrics_active_flow_and_automation_cnt_avg_last_3m": {"name": "analytics___sms__store_metrics_active_flow_and_automation_cnt_avg_last_3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_active_flow_and_automation_cnt_avg_last_3m", "block_contents": "Average number of active flows and automations in the 3 months preceding the current month"}, "doc.yoda.analytics___sms__store_metrics_active_flow_cnt_last_30d": {"name": "analytics___sms__store_metrics_active_flow_cnt_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_active_flow_cnt_last_30d", "block_contents": "Number of active flows in the last 30 days"}, "doc.yoda.analytics___sms__store_metrics_app_key": {"name": "analytics___sms__store_metrics_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_app_key", "block_contents": "yotpo store unique identifier - PK"}, "doc.yoda.analytics___sms__store_metrics_automation_usage_first_date": {"name": "analytics___sms__store_metrics_automation_usage_first_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_automation_usage_first_date", "block_contents": "Automation usage first date"}, "doc.yoda.analytics___sms__store_metrics_automation_usage_last_date": {"name": "analytics___sms__store_metrics_automation_usage_last_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_automation_usage_last_date", "block_contents": "Automation usage last date"}, "doc.yoda.analytics___sms__store_metrics_campaign_usage_first_date": {"name": "analytics___sms__store_metrics_campaign_usage_first_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_campaign_usage_first_date", "block_contents": "Campaign usage first date"}, "doc.yoda.analytics___sms__store_metrics_campaign_usage_last_date": {"name": "analytics___sms__store_metrics_campaign_usage_last_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_campaign_usage_last_date", "block_contents": "Campaign usage last date"}, "doc.yoda.analytics___sms__store_metrics_country_name": {"name": "analytics___sms__store_metrics_country_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_country_name", "block_contents": "Store country name"}, "doc.yoda.analytics___sms__store_metrics_created_at": {"name": "analytics___sms__store_metrics_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_created_at", "block_contents": "Store created timestamp"}, "doc.yoda.analytics___sms__store_metrics_created_date": {"name": "analytics___sms__store_metrics_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_created_date", "block_contents": "Store created date"}, "doc.yoda.analytics___sms__store_metrics_cumulative_active_campaign_cnt": {"name": "analytics___sms__store_metrics_cumulative_active_campaign_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_cumulative_active_campaign_cnt", "block_contents": "Cumulative number of active campaigns"}, "doc.yoda.analytics___sms__store_metrics_cumulative_customer_cnt": {"name": "analytics___sms__store_metrics_cumulative_customer_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_cumulative_customer_cnt", "block_contents": "Cumulative number of customers"}, "doc.yoda.analytics___sms__store_metrics_cumulative_meassage_cnt": {"name": "analytics___sms__store_metrics_cumulative_meassage_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_cumulative_meassage_cnt", "block_contents": "Cumulative number of meassages"}, "doc.yoda.analytics___sms__store_metrics_cumulative_usage_sum": {"name": "analytics___sms__store_metrics_cumulative_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_cumulative_usage_sum", "block_contents": "Cumulative usage amount"}, "doc.yoda.analytics___sms__store_metrics_current_enabled_automation_cnt": {"name": "analytics___sms__store_metrics_current_enabled_automation_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_current_enabled_automation_cnt", "block_contents": "Current number of enabled automations"}, "doc.yoda.analytics___sms__store_metrics_current_enabled_flow_cnt": {"name": "analytics___sms__store_metrics_current_enabled_flow_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_current_enabled_flow_cnt", "block_contents": "Current number of enabled flows"}, "doc.yoda.analytics___sms__store_metrics_domain": {"name": "analytics___sms__store_metrics_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_domain", "block_contents": "Store domain"}, "doc.yoda.analytics___sms__store_metrics_dwh_updated_at": {"name": "analytics___sms__store_metrics_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__store_metrics_first_opportunity_id": {"name": "analytics___sms__store_metrics_first_opportunity_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_first_opportunity_id", "block_contents": "First closed opportunity id"}, "doc.yoda.analytics___sms__store_metrics_flow_usage_first_date": {"name": "analytics___sms__store_metrics_flow_usage_first_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_flow_usage_first_date", "block_contents": "Flow usage first date"}, "doc.yoda.analytics___sms__store_metrics_flow_usage_last_date": {"name": "analytics___sms__store_metrics_flow_usage_last_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_flow_usage_last_date", "block_contents": "Flow usage last date"}, "doc.yoda.analytics___sms__store_metrics_is_3_usd_activated": {"name": "analytics___sms__store_metrics_is_3_usd_activated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_is_3_usd_activated", "block_contents": "3 USD cumulative usage activation indicator: 0/1"}, "doc.yoda.analytics___sms__store_metrics_is_closed": {"name": "analytics___sms__store_metrics_is_closed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_is_closed", "block_contents": "Closed store indicator: 0/1"}, "doc.yoda.analytics___sms__store_metrics_is_popup_enabled": {"name": "analytics___sms__store_metrics_is_popup_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_is_popup_enabled", "block_contents": "Popup enablement indicator: 0/1"}, "doc.yoda.analytics___sms__store_metrics_is_uninstall": {"name": "analytics___sms__store_metrics_is_uninstall", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_is_uninstall", "block_contents": "Uninstalled store indicator: 0/1"}, "doc.yoda.analytics___sms__store_metrics_is_usage": {"name": "analytics___sms__store_metrics_is_usage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_is_usage", "block_contents": "Usage indicator: 0/1"}, "doc.yoda.analytics___sms__store_metrics_is_usage_in_last_30d": {"name": "analytics___sms__store_metrics_is_usage_in_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_is_usage_in_last_30d", "block_contents": "Usage in last 30 days indicator: 0/1"}, "doc.yoda.analytics___sms__store_metrics_last_close_date": {"name": "analytics___sms__store_metrics_last_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_last_close_date", "block_contents": "Last store close date"}, "doc.yoda.analytics___sms__store_metrics_last_install_date": {"name": "analytics___sms__store_metrics_last_install_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_last_install_date", "block_contents": "Last store install date"}, "doc.yoda.analytics___sms__store_metrics_last_reopened_date": {"name": "analytics___sms__store_metrics_last_reopened_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_last_reopened_date", "block_contents": "Last store reopened date"}, "doc.yoda.analytics___sms__store_metrics_last_uninstall_date": {"name": "analytics___sms__store_metrics_last_uninstall_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_last_uninstall_date", "block_contents": "Last store uninstall date"}, "doc.yoda.analytics___sms__store_metrics_meassage_cnt_avg_last_3m": {"name": "analytics___sms__store_metrics_meassage_cnt_avg_last_3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_meassage_cnt_avg_last_3m", "block_contents": "Average number of meassages in the 3 months preceding the current month"}, "doc.yoda.analytics___sms__store_metrics_meassage_cnt_last_30d": {"name": "analytics___sms__store_metrics_meassage_cnt_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_meassage_cnt_last_30d", "block_contents": "Number of meassages in the last 30 days"}, "doc.yoda.analytics___sms__store_metrics_mms_usage_first_date": {"name": "analytics___sms__store_metrics_mms_usage_first_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_mms_usage_first_date", "block_contents": "MMS usage first date"}, "doc.yoda.analytics___sms__store_metrics_mms_usage_last_date": {"name": "analytics___sms__store_metrics_mms_usage_last_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_mms_usage_last_date", "block_contents": "MMS usage last date"}, "doc.yoda.analytics___sms__store_metrics_name": {"name": "analytics___sms__store_metrics_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_name", "block_contents": "Store name"}, "doc.yoda.analytics___sms__store_metrics_order_avg_last_3m": {"name": "analytics___sms__store_metrics_order_avg_last_3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_order_avg_last_3m", "block_contents": "Orders monthly average in the 3 months preceding the current month"}, "doc.yoda.analytics___sms__store_metrics_order_avg_last_3m_at_creation_date": {"name": "analytics___sms__store_metrics_order_avg_last_3m_at_creation_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_order_avg_last_3m_at_creation_date", "block_contents": "Orders monthly average in the 3 months preceding the month of the store creatio date"}, "doc.yoda.analytics___sms__store_metrics_order_avg_last_3m_at_first_opportunity_start_date": {"name": "analytics___sms__store_metrics_order_avg_last_3m_at_first_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_order_avg_last_3m_at_first_opportunity_start_date", "block_contents": "Orders monthly average in the 3 months preceding the month of the first closed opportunity's start date"}, "doc.yoda.analytics___sms__store_metrics_order_avg_last_3m_at_usage_first_date": {"name": "analytics___sms__store_metrics_order_avg_last_3m_at_usage_first_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_order_avg_last_3m_at_usage_first_date", "block_contents": "Orders monthly average in the 3 months preceding the month of the first usage date"}, "doc.yoda.analytics___sms__store_metrics_order_cnt_last_30d": {"name": "analytics___sms__store_metrics_order_cnt_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_order_cnt_last_30d", "block_contents": "Orders monthly average in the last 30 days"}, "doc.yoda.analytics___sms__store_metrics_organization_id": {"name": "analytics___sms__store_metrics_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_organization_id", "block_contents": "yotpo organization identifier"}, "doc.yoda.analytics___sms__store_metrics_organization_key": {"name": "analytics___sms__store_metrics_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___sms__store_metrics_plan_id": {"name": "analytics___sms__store_metrics_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_plan_id", "block_contents": "SMS plan id unique identifier"}, "doc.yoda.analytics___sms__store_metrics_plan_name": {"name": "analytics___sms__store_metrics_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_plan_name", "block_contents": "SMS plan name: Powerhouse Plus, Powerhouse Max, Powerhouse Monthly, etc."}, "doc.yoda.analytics___sms__store_metrics_plan_period": {"name": "analytics___sms__store_metrics_plan_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_plan_period", "block_contents": "Plan period: monthly, annually, null"}, "doc.yoda.analytics___sms__store_metrics_plan_type_group": {"name": "analytics___sms__store_metrics_plan_type_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_plan_type_group", "block_contents": "Plan type group: self_service, high_touch and free"}, "doc.yoda.analytics___sms__store_metrics_plan_type_ht_lt": {"name": "analytics___sms__store_metrics_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_plan_type_ht_lt", "block_contents": "Plan type: HT/LT"}, "doc.yoda.analytics___sms__store_metrics_platform_name": {"name": "analytics___sms__store_metrics_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_platform_name", "block_contents": "Store platform name: shopify, bigcommerce, magento, etc."}, "doc.yoda.analytics___sms__store_metrics_region_name": {"name": "analytics___sms__store_metrics_region_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_region_name", "block_contents": "Store region name based on country_name (default:EMEA)"}, "doc.yoda.analytics___sms__store_metrics_roi_last_30d": {"name": "analytics___sms__store_metrics_roi_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_roi_last_30d", "block_contents": "ROI in the last 30 days"}, "doc.yoda.analytics___sms__store_metrics_roi_last_3m": {"name": "analytics___sms__store_metrics_roi_last_3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_roi_last_3m", "block_contents": "ROI in the 3 months preceding the current month"}, "doc.yoda.analytics___sms__store_metrics_roi_revenue_sum_last_30d": {"name": "analytics___sms__store_metrics_roi_revenue_sum_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_roi_revenue_sum_last_30d", "block_contents": "ROI revenue in the last 30 days"}, "doc.yoda.analytics___sms__store_metrics_roi_revenue_sum_last_3m": {"name": "analytics___sms__store_metrics_roi_revenue_sum_last_3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_roi_revenue_sum_last_3m", "block_contents": "ROI revenue in the 3 months preceding the current month"}, "doc.yoda.analytics___sms__store_metrics_roi_spent_sum_last_30d": {"name": "analytics___sms__store_metrics_roi_spent_sum_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_roi_spent_sum_last_30d", "block_contents": "ROI spent in the last 30 days"}, "doc.yoda.analytics___sms__store_metrics_roi_spent_sum_last_3m": {"name": "analytics___sms__store_metrics_roi_spent_sum_last_3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_roi_spent_sum_last_3m", "block_contents": "ROI spent in the 3 months preceding the current month"}, "doc.yoda.analytics___sms__store_metrics_sf_account_id": {"name": "analytics___sms__store_metrics_sf_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_sf_account_id", "block_contents": "salesforce account id"}, "doc.yoda.analytics___sms__store_metrics_sms_first_opportunity_close_date": {"name": "analytics___sms__store_metrics_sms_first_opportunity_close_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_sms_first_opportunity_close_date", "block_contents": "SMS first opportunity close date"}, "doc.yoda.analytics___sms__store_metrics_sms_first_opportunity_start_date": {"name": "analytics___sms__store_metrics_sms_first_opportunity_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_sms_first_opportunity_start_date", "block_contents": "SMS first opportunity start date"}, "doc.yoda.analytics___sms__store_metrics_sms_usage_first_date": {"name": "analytics___sms__store_metrics_sms_usage_first_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_sms_usage_first_date", "block_contents": "SMS usage first date"}, "doc.yoda.analytics___sms__store_metrics_sms_usage_last_date": {"name": "analytics___sms__store_metrics_sms_usage_last_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_sms_usage_last_date", "block_contents": "SMS usage last date"}, "doc.yoda.analytics___sms__store_metrics_sms_user_id": {"name": "analytics___sms__store_metrics_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_sms_user_id", "block_contents": "yotpo sms user unique identifier"}, "doc.yoda.analytics___sms__store_metrics_upsell_date": {"name": "analytics___sms__store_metrics_upsell_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_upsell_date", "block_contents": "Upsell date - first date of plan upgrade from low touch to high touch"}, "doc.yoda.analytics___sms__store_metrics_usage_avg_last_3m": {"name": "analytics___sms__store_metrics_usage_avg_last_3m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_usage_avg_last_3m", "block_contents": "Average Usage amount in the 3 months preceding the current month"}, "doc.yoda.analytics___sms__store_metrics_usage_first_date": {"name": "analytics___sms__store_metrics_usage_first_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_usage_first_date", "block_contents": "Usage first date"}, "doc.yoda.analytics___sms__store_metrics_usage_last_date": {"name": "analytics___sms__store_metrics_usage_last_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_usage_last_date", "block_contents": "Usage last date"}, "doc.yoda.analytics___sms__store_metrics_usage_sum_last_30d": {"name": "analytics___sms__store_metrics_usage_sum_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_usage_sum_last_30d", "block_contents": "Usage amount in the last 30 days"}, "doc.yoda.analytics___sms__store_metrics_usage_sum_last_mtd": {"name": "analytics___sms__store_metrics_usage_sum_last_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_usage_sum_last_mtd", "block_contents": "Usage amount Month To Date in the previous month"}, "doc.yoda.analytics___sms__store_metrics_usage_sum_mtd": {"name": "analytics___sms__store_metrics_usage_sum_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics/analytics___sms__store_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_usage_sum_mtd", "block_contents": "Usage amount Month To Date"}, "doc.yoda.analytics___sms__store_metrics_daily": {"name": "analytics___sms__store_metrics_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily", "block_contents": "Daily metrics table of sms stores population.\nThe table contains data for the current year and the two previous years.\nGranularity: date | app_key"}, "doc.yoda.analytics___sms__store_metrics_daily_active_automation_cnt": {"name": "analytics___sms__store_metrics_daily_active_automation_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_active_automation_cnt", "block_contents": "count distinct automation_id that had 1 or more messages"}, "doc.yoda.analytics___sms__store_metrics_daily_active_campaign_cnt": {"name": "analytics___sms__store_metrics_daily_active_campaign_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_active_campaign_cnt", "block_contents": "count distinct campaign_id that had 1 or more messages"}, "doc.yoda.analytics___sms__store_metrics_daily_active_flow_cnt": {"name": "analytics___sms__store_metrics_daily_active_flow_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_active_flow_cnt", "block_contents": "count distinct flow_id that had 1 or more messages"}, "doc.yoda.analytics___sms__store_metrics_daily_automation_message_cnt": {"name": "analytics___sms__store_metrics_daily_automation_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_automation_message_cnt", "block_contents": "amount of messages sent from automations"}, "doc.yoda.analytics___sms__store_metrics_daily_automation_message_cnt_by_carrier": {"name": "analytics___sms__store_metrics_daily_automation_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_automation_message_cnt_by_carrier", "block_contents": "amount of message parts sent by the carrier from automations"}, "doc.yoda.analytics___sms__store_metrics_daily_automation_revenue_sum": {"name": "analytics___sms__store_metrics_daily_automation_revenue_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_automation_revenue_sum", "block_contents": "if is_type_automation = 1 then sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data"}, "doc.yoda.analytics___sms__store_metrics_daily_automation_usage_sum": {"name": "analytics___sms__store_metrics_daily_automation_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_automation_usage_sum", "block_contents": "sum price_billed_in_usd of messages sent from automations"}, "doc.yoda.analytics___sms__store_metrics_daily_campaign_message_cnt": {"name": "analytics___sms__store_metrics_daily_campaign_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_campaign_message_cnt", "block_contents": "amount of messages sent from campaigns"}, "doc.yoda.analytics___sms__store_metrics_daily_campaign_message_cnt_by_carrier": {"name": "analytics___sms__store_metrics_daily_campaign_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_campaign_message_cnt_by_carrier", "block_contents": "amount of message parts sent by the carrier from campaigns"}, "doc.yoda.analytics___sms__store_metrics_daily_campaign_revenue_sum": {"name": "analytics___sms__store_metrics_daily_campaign_revenue_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_campaign_revenue_sum", "block_contents": "if is_type_campaign = 1 then sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data"}, "doc.yoda.analytics___sms__store_metrics_daily_campaign_usage_sum": {"name": "analytics___sms__store_metrics_daily_campaign_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_campaign_usage_sum", "block_contents": "sum price_billed_in_usd of messages sent from campaigns"}, "doc.yoda.analytics___sms__store_metrics_daily_credit_purchase_sum": {"name": "analytics___sms__store_metrics_daily_credit_purchase_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_credit_purchase_sum", "block_contents": "user's credit purchase from analytics___sms_stg__purchase"}, "doc.yoda.analytics___sms__store_metrics_daily_customer_cnt": {"name": "analytics___sms__store_metrics_daily_customer_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_customer_cnt", "block_contents": "count all costumers the store have"}, "doc.yoda.analytics___sms__store_metrics_daily_date": {"name": "analytics___sms__store_metrics_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_date", "block_contents": ""}, "doc.yoda.analytics___sms__store_metrics_daily_dwh_updated_at": {"name": "analytics___sms__store_metrics_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___sms__store_metrics_daily_esp_subscriber_cnt": {"name": "analytics___sms__store_metrics_daily_esp_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_esp_subscriber_cnt", "block_contents": "Subscribers that were added via connection to an email provider (like Klaviyo)"}, "doc.yoda.analytics___sms__store_metrics_daily_flow_message_cnt": {"name": "analytics___sms__store_metrics_daily_flow_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_flow_message_cnt", "block_contents": "amount of messages sent from flows"}, "doc.yoda.analytics___sms__store_metrics_daily_flow_message_cnt_by_carrier": {"name": "analytics___sms__store_metrics_daily_flow_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_flow_message_cnt_by_carrier", "block_contents": "amount of message parts sent by the carrier from flows"}, "doc.yoda.analytics___sms__store_metrics_daily_flow_revenue_sum": {"name": "analytics___sms__store_metrics_daily_flow_revenue_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_flow_revenue_sum", "block_contents": "if is_type_flow = 1 then sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data"}, "doc.yoda.analytics___sms__store_metrics_daily_flow_usage_sum": {"name": "analytics___sms__store_metrics_daily_flow_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_flow_usage_sum", "block_contents": "sum price_billed_in_usd of messages sent from flows"}, "doc.yoda.analytics___sms__store_metrics_daily_imported_subscriber_cnt": {"name": "analytics___sms__store_metrics_daily_imported_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_imported_subscriber_cnt", "block_contents": "Subscribers that were imported"}, "doc.yoda.analytics___sms__store_metrics_daily_is_active": {"name": "analytics___sms__store_metrics_daily_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_is_active", "block_contents": "active = is usage_sum per day > 0"}, "doc.yoda.analytics___sms__store_metrics_daily_is_installed": {"name": "analytics___sms__store_metrics_daily_is_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_is_installed", "block_contents": "Based on store_installation_over_time"}, "doc.yoda.analytics___sms__store_metrics_daily_is_store_open": {"name": "analytics___sms__store_metrics_daily_is_store_open", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_is_store_open", "block_contents": "Based on store_open_over_time"}, "doc.yoda.analytics___sms__store_metrics_daily_message_cnt": {"name": "analytics___sms__store_metrics_daily_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_message_cnt", "block_contents": "total amount of messages sent"}, "doc.yoda.analytics___sms__store_metrics_daily_message_cnt_by_carrier": {"name": "analytics___sms__store_metrics_daily_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_message_cnt_by_carrier", "block_contents": "total amount of message parts sent by the carrier"}, "doc.yoda.analytics___sms__store_metrics_daily_mms_message_cnt": {"name": "analytics___sms__store_metrics_daily_mms_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_mms_message_cnt", "block_contents": "amount of mms messages sent"}, "doc.yoda.analytics___sms__store_metrics_daily_mms_message_cnt_by_carrier": {"name": "analytics___sms__store_metrics_daily_mms_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_mms_message_cnt_by_carrier", "block_contents": "amount of mms message parts sent by the carrier"}, "doc.yoda.analytics___sms__store_metrics_daily_mms_usage_sum": {"name": "analytics___sms__store_metrics_daily_mms_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_mms_usage_sum", "block_contents": "total sum price_billed_in_usd of mms messages sent"}, "doc.yoda.analytics___sms__store_metrics_daily_new_customer_cnt": {"name": "analytics___sms__store_metrics_daily_new_customer_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_new_customer_cnt", "block_contents": "count new customers"}, "doc.yoda.analytics___sms__store_metrics_daily_new_subscriber_cnt": {"name": "analytics___sms__store_metrics_daily_new_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_new_subscriber_cnt", "block_contents": "New daily subscribers count"}, "doc.yoda.analytics___sms__store_metrics_daily_non_esp_subscriber_cnt": {"name": "analytics___sms__store_metrics_daily_non_esp_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_non_esp_subscriber_cnt", "block_contents": "Subscribers that were NOT added via connection to an email provider (like Klaviyo)"}, "doc.yoda.analytics___sms__store_metrics_daily_other_message_cnt": {"name": "analytics___sms__store_metrics_daily_other_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_other_message_cnt", "block_contents": "amount of messages sent from other sources"}, "doc.yoda.analytics___sms__store_metrics_daily_other_message_cnt_by_carrier": {"name": "analytics___sms__store_metrics_daily_other_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_other_message_cnt_by_carrier", "block_contents": "amount of message parts sent by the carrier from other"}, "doc.yoda.analytics___sms__store_metrics_daily_other_usage_sum": {"name": "analytics___sms__store_metrics_daily_other_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_other_usage_sum", "block_contents": "sum price_billed_in_usd of messages sent from others"}, "doc.yoda.analytics___sms__store_metrics_daily_revenue_in_usd_sum": {"name": "analytics___sms__store_metrics_daily_revenue_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_revenue_in_usd_sum", "block_contents": "sum(total_revenue_in_usd) from analytics___sms_stg__analytics_data"}, "doc.yoda.analytics___sms__store_metrics_daily_roi_spent_in_usd_sum": {"name": "analytics___sms__store_metrics_daily_roi_spent_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_roi_spent_in_usd_sum", "block_contents": "sum(total_spent_in_usd) from analytics___sms_stg__analytics_data"}, "doc.yoda.analytics___sms__store_metrics_daily_sms_message_cnt": {"name": "analytics___sms__store_metrics_daily_sms_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_sms_message_cnt", "block_contents": "amount of sms messages sent"}, "doc.yoda.analytics___sms__store_metrics_daily_sms_message_cnt_by_carrier": {"name": "analytics___sms__store_metrics_daily_sms_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_sms_message_cnt_by_carrier", "block_contents": "amount of sms message parts sent by the carrier"}, "doc.yoda.analytics___sms__store_metrics_daily_sms_usage_sum": {"name": "analytics___sms__store_metrics_daily_sms_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_sms_usage_sum", "block_contents": "sum price_billed_in_usd of sms messages sent"}, "doc.yoda.analytics___sms__store_metrics_daily_subscriber_cnt": {"name": "analytics___sms__store_metrics_daily_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_subscriber_cnt", "block_contents": "Total subscribers count per user per date"}, "doc.yoda.analytics___sms__store_metrics_daily_unsubscriber_cnt": {"name": "analytics___sms__store_metrics_daily_unsubscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_unsubscriber_cnt", "block_contents": "daily unsubscribers count"}, "doc.yoda.analytics___sms__store_metrics_daily_usage_sum": {"name": "analytics___sms__store_metrics_daily_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_usage_sum", "block_contents": "total sum price_billed_in_usd of messages sent"}, "doc.yoda.analytics___sms__store_metrics_daily_user_created_at": {"name": "analytics___sms__store_metrics_daily_user_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_daily/analytics___sms__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_daily_user_created_at", "block_contents": ""}, "doc.yoda.analytics___sms__store_metrics_monthly": {"name": "analytics___sms__store_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly", "block_contents": "Monthly metrics table of sms stores population.\nThe table contains data for the current year and the two previous years.\nGranularity: month | app_key"}, "doc.yoda.analytics___sms__store_metrics_monthly_avg_campaign_subscriber_coverage_rate": {"name": "analytics___sms__store_metrics_monthly_avg_campaign_subscriber_coverage_rate", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_avg_campaign_subscriber_coverage_rate", "block_contents": "average number of campaign message count per subscriber = (campaign_message_cnt/subscriber_cnt)/campaing_cnt"}, "doc.yoda.analytics___sms__store_metrics_monthly_campaign_subscriber_coverage_avg": {"name": "analytics___sms__store_metrics_monthly_campaign_subscriber_coverage_avg", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_campaign_subscriber_coverage_avg", "block_contents": "average subscriber number per campaign"}, "doc.yoda.analytics___sms__store_metrics_monthly_closing_plan_name": {"name": "analytics___sms__store_metrics_monthly_closing_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_closing_plan_name", "block_contents": "plan at end of month"}, "doc.yoda.analytics___sms__store_metrics_monthly_closing_plan_type": {"name": "analytics___sms__store_metrics_monthly_closing_plan_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_closing_plan_type", "block_contents": "plan type at end of month"}, "doc.yoda.analytics___sms__store_metrics_monthly_closing_plan_type_ht_lt": {"name": "analytics___sms__store_metrics_monthly_closing_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_closing_plan_type_ht_lt", "block_contents": "plan type (HT|LT) at end of month"}, "doc.yoda.analytics___sms__store_metrics_monthly_dwh_updated_at": {"name": "analytics___sms__store_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___sms__store_metrics_monthly_last_m_subscriber_cnt": {"name": "analytics___sms__store_metrics_monthly_last_m_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_last_m_subscriber_cnt", "block_contents": "end of last month subscriber_cnt"}, "doc.yoda.analytics___sms__store_metrics_monthly_message_to_subscriber_ratio": {"name": "analytics___sms__store_metrics_monthly_message_to_subscriber_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_message_to_subscriber_ratio", "block_contents": "amount of messages per subscriber = message_cnt/subscriber_cnt"}, "doc.yoda.analytics___sms__store_metrics_monthly_month": {"name": "analytics___sms__store_metrics_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_month", "block_contents": ""}, "doc.yoda.analytics___sms__store_metrics_monthly_revenue_last_3_month_in_usd_sum": {"name": "analytics___sms__store_metrics_monthly_revenue_last_3_month_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_revenue_last_3_month_in_usd_sum", "block_contents": "Sum of store revenue_in_usd_sum over PRECEDING 3 months"}, "doc.yoda.analytics___sms__store_metrics_monthly_roi_last_3_month_ratio": {"name": "analytics___sms__store_metrics_monthly_roi_last_3_month_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_roi_last_3_month_ratio", "block_contents": "ROI = (Revenue_last_3_month - Spend_last_3_month) / Spend_last_3_month"}, "doc.yoda.analytics___sms__store_metrics_monthly_roi_ratio": {"name": "analytics___sms__store_metrics_monthly_roi_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_roi_ratio", "block_contents": "ROI = (Revenue - Spend) / Spend"}, "doc.yoda.analytics___sms__store_metrics_monthly_roi_spent_last_3_month_in_usd_sum": {"name": "analytics___sms__store_metrics_monthly_roi_spent_last_3_month_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_roi_spent_last_3_month_in_usd_sum", "block_contents": "Sum of store roi_spent_in_usd_sum over PRECEDING 3 months"}, "doc.yoda.analytics___sms__store_metrics_monthly_subscriber_monthly_growth_pct": {"name": "analytics___sms__store_metrics_monthly_subscriber_monthly_growth_pct", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_subscriber_monthly_growth_pct", "block_contents": "growth in subscribers from last month = subscriber_cnt/last_m_subscriber_cnt"}, "doc.yoda.analytics___sms__store_metrics_monthly_subscriber_to_order_ratio": {"name": "analytics___sms__store_metrics_monthly_subscriber_to_order_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_subscriber_to_order_ratio", "block_contents": "amount of subscriber per order = subscriber_cnt/orders_cnt"}, "doc.yoda.analytics___sms__store_metrics_monthly_usage_to_message_ratio": {"name": "analytics___sms__store_metrics_monthly_usage_to_message_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_metrics_monthly/analytics___sms__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___sms__store_metrics_monthly_usage_to_message_ratio", "block_contents": "price (usage) per message = usage_sum/message_cnt"}, "doc.yoda.analytics___sms__store_plan_daily": {"name": "analytics___sms__store_plan_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__store_plan_daily", "block_contents": "Modeled view of sms store's plan history on a daily level. | Granularity & Primary Key: date, app_key"}, "doc.yoda.analytics___sms__store_plan_daily_app_key": {"name": "analytics___sms__store_plan_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__store_plan_daily_app_key", "block_contents": "store unique identifier"}, "doc.yoda.analytics___sms__store_plan_daily_date": {"name": "analytics___sms__store_plan_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__store_plan_daily_date", "block_contents": "date of the plan"}, "doc.yoda.analytics___sms__store_plan_daily_dwh_updated_at": {"name": "analytics___sms__store_plan_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__store_plan_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__store_plan_daily_plan_id": {"name": "analytics___sms__store_plan_daily_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__store_plan_daily_plan_id", "block_contents": "plan unique identifier"}, "doc.yoda.analytics___sms__store_plan_daily_plan_name": {"name": "analytics___sms__store_plan_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__store_plan_daily_plan_name", "block_contents": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc."}, "doc.yoda.analytics___sms__store_plan_daily_plan_period": {"name": "analytics___sms__store_plan_daily_plan_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__store_plan_daily_plan_period", "block_contents": "plan period: monthly, annually"}, "doc.yoda.analytics___sms__store_plan_daily_plan_type": {"name": "analytics___sms__store_plan_daily_plan_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__store_plan_daily_plan_type", "block_contents": "plan type: self_service / high_touch"}, "doc.yoda.analytics___sms__store_plan_daily_plan_type_group": {"name": "analytics___sms__store_plan_daily_plan_type_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__store_plan_daily_plan_type_group", "block_contents": "plan type group: self_service, high_touch and free"}, "doc.yoda.analytics___sms__store_plan_daily_plan_type_ht_lt": {"name": "analytics___sms__store_plan_daily_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__store_plan_daily_plan_type_ht_lt", "block_contents": "plan customer type: HT/LT"}, "doc.yoda.analytics___sms__store_plan_daily_sms_user_id": {"name": "analytics___sms__store_plan_daily_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_daily/analytics___sms__store_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__store_plan_daily_sms_user_id", "block_contents": "yotpo sms user unique identifier."}, "doc.yoda.analytics___sms__store_plan_over_time": {"name": "analytics___sms__store_plan_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time", "block_contents": "Modeled table of sms store's plan history over time. | Granularity & Primary Key: app_key, from_time, row_ranking_for_store_and_created_date"}, "doc.yoda.analytics___sms__store_plan_over_time_app_key": {"name": "analytics___sms__store_plan_over_time_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___sms__store_plan_over_time_created_date": {"name": "analytics___sms__store_plan_over_time_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_created_date", "block_contents": "plan change event created date"}, "doc.yoda.analytics___sms__store_plan_over_time_dwh_updated_at": {"name": "analytics___sms__store_plan_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__store_plan_over_time_event_id": {"name": "analytics___sms__store_plan_over_time_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_event_id", "block_contents": "sms user event log unique identifier"}, "doc.yoda.analytics___sms__store_plan_over_time_event_name": {"name": "analytics___sms__store_plan_over_time_event_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_event_name", "block_contents": "change_plan, cancel_plan, uninstall, etc."}, "doc.yoda.analytics___sms__store_plan_over_time_from_time": {"name": "analytics___sms__store_plan_over_time_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_from_time", "block_contents": "store plan range start timestamp - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date"}, "doc.yoda.analytics___sms__store_plan_over_time_plan_id": {"name": "analytics___sms__store_plan_over_time_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_plan_id", "block_contents": "plan unique identifier"}, "doc.yoda.analytics___sms__store_plan_over_time_plan_name": {"name": "analytics___sms__store_plan_over_time_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_plan_name", "block_contents": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc."}, "doc.yoda.analytics___sms__store_plan_over_time_plan_period": {"name": "analytics___sms__store_plan_over_time_plan_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_plan_period", "block_contents": "plan period: monthly, annually"}, "doc.yoda.analytics___sms__store_plan_over_time_plan_type": {"name": "analytics___sms__store_plan_over_time_plan_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_plan_type", "block_contents": "plan type: self_service / high_touch"}, "doc.yoda.analytics___sms__store_plan_over_time_plan_type_group": {"name": "analytics___sms__store_plan_over_time_plan_type_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_plan_type_group", "block_contents": "plan type group: self_service, high_touch and free"}, "doc.yoda.analytics___sms__store_plan_over_time_plan_type_ht_lt": {"name": "analytics___sms__store_plan_over_time_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_plan_type_ht_lt", "block_contents": "plan customer type: HT/LT"}, "doc.yoda.analytics___sms__store_plan_over_time_row_ranking_for_store_and_created_date": {"name": "analytics___sms__store_plan_over_time_row_ranking_for_store_and_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_row_ranking_for_store_and_created_date", "block_contents": "row ranking for each store and event created date by from_time DESC, event_id DESC (i.e, 1 is the last row for each store and created date)"}, "doc.yoda.analytics___sms__store_plan_over_time_sms_user_id": {"name": "analytics___sms__store_plan_over_time_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_sms_user_id", "block_contents": "yotpo sms user unique identifier"}, "doc.yoda.analytics___sms__store_plan_over_time_to_time": {"name": "analytics___sms__store_plan_over_time_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_plan_over_time/analytics___sms__store_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__store_plan_over_time_to_time", "block_contents": "store plan range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date"}, "doc.yoda.analytics___sms__store_receiving_country_metrics": {"name": "analytics___sms__store_receiving_country_metrics", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics", "block_contents": "Modeled table of sms store messages receiving country metrics.\nPK and granularity:\n1. date\n2. app_key\n3. sms_user_id\n4. plan_name\n5. receiving_country\n6. message_type"}, "doc.yoda.analytics___sms__store_receiving_country_metrics_app_key": {"name": "analytics___sms__store_receiving_country_metrics_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics_app_key", "block_contents": "yotpo store unique identifier - primary key"}, "doc.yoda.analytics___sms__store_receiving_country_metrics_date": {"name": "analytics___sms__store_receiving_country_metrics_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics_date", "block_contents": "metric date"}, "doc.yoda.analytics___sms__store_receiving_country_metrics_dwh_updated_at": {"name": "analytics___sms__store_receiving_country_metrics_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__store_receiving_country_metrics_message_by_carrier_cnt": {"name": "analytics___sms__store_receiving_country_metrics_message_by_carrier_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics_message_by_carrier_cnt", "block_contents": "number of sms message parts sent by the carrier"}, "doc.yoda.analytics___sms__store_receiving_country_metrics_message_cnt": {"name": "analytics___sms__store_receiving_country_metrics_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics_message_cnt", "block_contents": "number of sms messages sent"}, "doc.yoda.analytics___sms__store_receiving_country_metrics_message_type": {"name": "analytics___sms__store_receiving_country_metrics_message_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics_message_type", "block_contents": "message type: mms, sms, whatsapp, etc."}, "doc.yoda.analytics___sms__store_receiving_country_metrics_plan_name": {"name": "analytics___sms__store_receiving_country_metrics_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics_plan_name", "block_contents": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc."}, "doc.yoda.analytics___sms__store_receiving_country_metrics_platform_name": {"name": "analytics___sms__store_receiving_country_metrics_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics_platform_name", "block_contents": "store platform name: shopify, bigcommerce, magento, etc."}, "doc.yoda.analytics___sms__store_receiving_country_metrics_receiving_country": {"name": "analytics___sms__store_receiving_country_metrics_receiving_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics_receiving_country", "block_contents": "message receiving country"}, "doc.yoda.analytics___sms__store_receiving_country_metrics_sms_user_id": {"name": "analytics___sms__store_receiving_country_metrics_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics_sms_user_id", "block_contents": "yotpo sms user unique identifier"}, "doc.yoda.analytics___sms__store_receiving_country_metrics_usage_sum": {"name": "analytics___sms__store_receiving_country_metrics_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__store_receiving_country_metrics/analytics___sms__store_receiving_country_metrics.md", "unique_id": "doc.yoda.analytics___sms__store_receiving_country_metrics_usage_sum", "block_contents": "total sum price_billed_in_usd of messages sent"}, "doc.yoda.analytics___sms__user_activeness_daily": {"name": "analytics___sms__user_activeness_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__user_activeness_daily", "block_contents": "Modeled table of sms user activeness history on a daily level | PK and granularity: activeness_date, sms_user_id"}, "doc.yoda.analytics___sms__user_activeness_daily_activeness_date": {"name": "analytics___sms__user_activeness_daily_activeness_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__user_activeness_daily_activeness_date", "block_contents": "user activeness date - primary key 1/2"}, "doc.yoda.analytics___sms__user_activeness_daily_dwh_updated_at": {"name": "analytics___sms__user_activeness_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__user_activeness_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__user_activeness_daily_is_app_installed": {"name": "analytics___sms__user_activeness_daily_is_app_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__user_activeness_daily_is_app_installed", "block_contents": "installed app indicator: 0/1"}, "doc.yoda.analytics___sms__user_activeness_daily_is_user_open": {"name": "analytics___sms__user_activeness_daily_is_user_open", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__user_activeness_daily_is_user_open", "block_contents": "opened user indicator: 0/1"}, "doc.yoda.analytics___sms__user_activeness_daily_sms_user_id": {"name": "analytics___sms__user_activeness_daily_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_activeness_daily/analytics___sms__user_activeness_daily.md", "unique_id": "doc.yoda.analytics___sms__user_activeness_daily_sms_user_id", "block_contents": "yotpo sms user unique identifier - primary key 2/2"}, "doc.yoda.analytics___sms__user_customer": {"name": "analytics___sms__user_customer", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.md", "unique_id": "doc.yoda.analytics___sms__user_customer", "block_contents": "Modeled incremental table of sms users and their customers' email addresses.\nThe purpose of this table is to save runtimes on counting unique customers.\nGranularity: sms_user_id | customer_email"}, "doc.yoda.analytics___sms__user_customer_created_date": {"name": "analytics___sms__user_customer_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.md", "unique_id": "doc.yoda.analytics___sms__user_customer_created_date", "block_contents": "customer creation date"}, "doc.yoda.analytics___sms__user_customer_customer_email": {"name": "analytics___sms__user_customer_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.md", "unique_id": "doc.yoda.analytics___sms__user_customer_customer_email", "block_contents": "customer email address"}, "doc.yoda.analytics___sms__user_customer_dwh_updated_at": {"name": "analytics___sms__user_customer_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.md", "unique_id": "doc.yoda.analytics___sms__user_customer_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__user_customer_sms_user_id": {"name": "analytics___sms__user_customer_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_customer/analytics___sms__user_customer.md", "unique_id": "doc.yoda.analytics___sms__user_customer_sms_user_id", "block_contents": "yotpo sms user unique identifier"}, "doc.yoda.analytics___sms__user_dates_history": {"name": "analytics___sms__user_dates_history", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.md", "unique_id": "doc.yoda.analytics___sms__user_dates_history", "block_contents": "Modeled incremental table of sms users dates history.\nThe purpose of the table is to save runtimes on recalculating historical dates.\nGranularity: sms_user_id | category"}, "doc.yoda.analytics___sms__user_dates_history_category": {"name": "analytics___sms__user_dates_history_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.md", "unique_id": "doc.yoda.analytics___sms__user_dates_history_category", "block_contents": "historical date category: usage_first_date, usage_last_date, etc.\n- PK 2/2"}, "doc.yoda.analytics___sms__user_dates_history_dwh_updated_at": {"name": "analytics___sms__user_dates_history_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.md", "unique_id": "doc.yoda.analytics___sms__user_dates_history_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__user_dates_history_sms_user_id": {"name": "analytics___sms__user_dates_history_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.md", "unique_id": "doc.yoda.analytics___sms__user_dates_history_sms_user_id", "block_contents": "yotpo sms user unique identifier - PK 1/2"}, "doc.yoda.analytics___sms__user_dates_history_value": {"name": "analytics___sms__user_dates_history_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_dates_history/analytics___sms__user_dates_history.md", "unique_id": "doc.yoda.analytics___sms__user_dates_history_value", "block_contents": "the value of the historical date category"}, "doc.yoda.analytics___sms__user_installation_over_time": {"name": "analytics___sms__user_installation_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_installation_over_time", "block_contents": "Modeled table of sms user install & uninstall status over time | PK and granularity: sms_user_id, from_time"}, "doc.yoda.analytics___sms__user_installation_over_time_created_date": {"name": "analytics___sms__user_installation_over_time_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_installation_over_time_created_date", "block_contents": "installation event created date"}, "doc.yoda.analytics___sms__user_installation_over_time_dwh_updated_at": {"name": "analytics___sms__user_installation_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_installation_over_time_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__user_installation_over_time_event_source": {"name": "analytics___sms__user_installation_over_time_event_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_installation_over_time_event_source", "block_contents": "sms_user_created, user_event_log_sms_user, user_event_log_shopify_user, user_event_log_bigcommerce_user"}, "doc.yoda.analytics___sms__user_installation_over_time_from_time": {"name": "analytics___sms__user_installation_over_time_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_installation_over_time_from_time", "block_contents": "user installation status range start timestamp - primary key 2/2 - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time"}, "doc.yoda.analytics___sms__user_installation_over_time_installation_status": {"name": "analytics___sms__user_installation_over_time_installation_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_installation_over_time_installation_status", "block_contents": "sms app installation status: installed/uninstalled"}, "doc.yoda.analytics___sms__user_installation_over_time_is_app_installed": {"name": "analytics___sms__user_installation_over_time_is_app_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_installation_over_time_is_app_installed", "block_contents": "installation_status = installed"}, "doc.yoda.analytics___sms__user_installation_over_time_sms_user_id": {"name": "analytics___sms__user_installation_over_time_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_installation_over_time_sms_user_id", "block_contents": "yotpo sms user unique identifier - primary key 1/2"}, "doc.yoda.analytics___sms__user_installation_over_time_to_time": {"name": "analytics___sms__user_installation_over_time_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_installation_over_time_to_time", "block_contents": "user installation status range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time"}, "doc.yoda.analytics___sms__user_installation_over_time_user_and_date_row_ranking": {"name": "analytics___sms__user_installation_over_time_user_and_date_row_ranking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_installation_over_time_user_and_date_row_ranking", "block_contents": "row ranking for each user and created_date by created_at (i.e, 1 is the first row for each user and created date)"}, "doc.yoda.analytics___sms__user_installation_over_time_user_and_date_row_ranking_backwards": {"name": "analytics___sms__user_installation_over_time_user_and_date_row_ranking_backwards", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_installation_over_time/analytics___sms__user_installation_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_installation_over_time_user_and_date_row_ranking_backwards", "block_contents": "row ranking for each user and created_date by created_at (i.e, 1 is the last row for each user and created date)"}, "doc.yoda.analytics___sms__user_metrics_daily": {"name": "analytics___sms__user_metrics_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily", "block_contents": "Daily metrics incremental table of sms users population.\nGranularity: date | sms_user_id"}, "doc.yoda.analytics___sms__user_metrics_daily_active_automation_cnt": {"name": "analytics___sms__user_metrics_daily_active_automation_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_active_automation_cnt", "block_contents": "unique number of automation_id that had 1 or more messages"}, "doc.yoda.analytics___sms__user_metrics_daily_active_campaign_cnt": {"name": "analytics___sms__user_metrics_daily_active_campaign_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_active_campaign_cnt", "block_contents": "unique number of campaign_id that had 1 or more messages"}, "doc.yoda.analytics___sms__user_metrics_daily_active_flow_cnt": {"name": "analytics___sms__user_metrics_daily_active_flow_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_active_flow_cnt", "block_contents": "unique number of flow_id that had 1 or more messages"}, "doc.yoda.analytics___sms__user_metrics_daily_automation_message_cnt": {"name": "analytics___sms__user_metrics_daily_automation_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_automation_message_cnt", "block_contents": "number of messages sent from automations"}, "doc.yoda.analytics___sms__user_metrics_daily_automation_message_cnt_by_carrier": {"name": "analytics___sms__user_metrics_daily_automation_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_automation_message_cnt_by_carrier", "block_contents": "number of message parts sent by the carrier from automations"}, "doc.yoda.analytics___sms__user_metrics_daily_automation_usage_sum": {"name": "analytics___sms__user_metrics_daily_automation_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_automation_usage_sum", "block_contents": "sum price_billed_in_usd of messages sent from automations"}, "doc.yoda.analytics___sms__user_metrics_daily_campaign_message_cnt": {"name": "analytics___sms__user_metrics_daily_campaign_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_campaign_message_cnt", "block_contents": "number of messages sent from campaigns"}, "doc.yoda.analytics___sms__user_metrics_daily_campaign_message_cnt_by_carrier": {"name": "analytics___sms__user_metrics_daily_campaign_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_campaign_message_cnt_by_carrier", "block_contents": "number of message parts sent by the carrier from campaigns"}, "doc.yoda.analytics___sms__user_metrics_daily_campaign_usage_sum": {"name": "analytics___sms__user_metrics_daily_campaign_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_campaign_usage_sum", "block_contents": "sum price_billed_in_usd of messages sent from campaigns"}, "doc.yoda.analytics___sms__user_metrics_daily_credit_purchase_sum": {"name": "analytics___sms__user_metrics_daily_credit_purchase_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_credit_purchase_sum", "block_contents": "user's credit purchase from analytics___sms_stg__purchase"}, "doc.yoda.analytics___sms__user_metrics_daily_customer_cnt": {"name": "analytics___sms__user_metrics_daily_customer_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_customer_cnt", "block_contents": "number of customers the store has"}, "doc.yoda.analytics___sms__user_metrics_daily_date": {"name": "analytics___sms__user_metrics_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_date", "block_contents": "metric date"}, "doc.yoda.analytics___sms__user_metrics_daily_dwh_updated_at": {"name": "analytics___sms__user_metrics_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__user_metrics_daily_esp_subscriber_cnt": {"name": "analytics___sms__user_metrics_daily_esp_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_esp_subscriber_cnt", "block_contents": "subscribers that were added via connection to an email provider (like Klaviyo)"}, "doc.yoda.analytics___sms__user_metrics_daily_flow_message_cnt": {"name": "analytics___sms__user_metrics_daily_flow_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_flow_message_cnt", "block_contents": "number of messages sent from flows"}, "doc.yoda.analytics___sms__user_metrics_daily_flow_message_cnt_by_carrier": {"name": "analytics___sms__user_metrics_daily_flow_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_flow_message_cnt_by_carrier", "block_contents": "number of message parts sent by the carrier from flows"}, "doc.yoda.analytics___sms__user_metrics_daily_flow_usage_sum": {"name": "analytics___sms__user_metrics_daily_flow_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_flow_usage_sum", "block_contents": "sum price_billed_in_usd of messages sent from flows"}, "doc.yoda.analytics___sms__user_metrics_daily_imported_subscriber_cnt": {"name": "analytics___sms__user_metrics_daily_imported_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_imported_subscriber_cnt", "block_contents": "imported subscribers count"}, "doc.yoda.analytics___sms__user_metrics_daily_is_active": {"name": "analytics___sms__user_metrics_daily_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_is_active", "block_contents": "active = is usage_sum per day > 0"}, "doc.yoda.analytics___sms__user_metrics_daily_is_installed": {"name": "analytics___sms__user_metrics_daily_is_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_is_installed", "block_contents": "app installed indicator: 0/1"}, "doc.yoda.analytics___sms__user_metrics_daily_is_pop_up_enabled": {"name": "analytics___sms__user_metrics_daily_is_pop_up_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_is_pop_up_enabled", "block_contents": "indicator = 1 IF form_type = 'popup' AND form_status = 'published'\nindicator IS NULL for dates before snapshot history (date < 23.10.2023)"}, "doc.yoda.analytics___sms__user_metrics_daily_is_user_open": {"name": "analytics___sms__user_metrics_daily_is_user_open", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_is_user_open", "block_contents": "user store open indicator: 0/1"}, "doc.yoda.analytics___sms__user_metrics_daily_message_cnt": {"name": "analytics___sms__user_metrics_daily_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_message_cnt", "block_contents": "total number of messages sent"}, "doc.yoda.analytics___sms__user_metrics_daily_message_cnt_by_carrier": {"name": "analytics___sms__user_metrics_daily_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_message_cnt_by_carrier", "block_contents": "total number of message parts sent by the carrier"}, "doc.yoda.analytics___sms__user_metrics_daily_mms_message_cnt": {"name": "analytics___sms__user_metrics_daily_mms_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_mms_message_cnt", "block_contents": "number of mms messages sent"}, "doc.yoda.analytics___sms__user_metrics_daily_mms_message_cnt_by_carrier": {"name": "analytics___sms__user_metrics_daily_mms_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_mms_message_cnt_by_carrier", "block_contents": "number of mms message parts sent by the carrier"}, "doc.yoda.analytics___sms__user_metrics_daily_mms_usage_sum": {"name": "analytics___sms__user_metrics_daily_mms_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_mms_usage_sum", "block_contents": "sum price_billed_in_usd of mms messages sent"}, "doc.yoda.analytics___sms__user_metrics_daily_new_customer_cnt": {"name": "analytics___sms__user_metrics_daily_new_customer_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_new_customer_cnt", "block_contents": "number of new customers"}, "doc.yoda.analytics___sms__user_metrics_daily_new_subscriber_cnt": {"name": "analytics___sms__user_metrics_daily_new_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_new_subscriber_cnt", "block_contents": "new daily subscribers count"}, "doc.yoda.analytics___sms__user_metrics_daily_non_esp_subscriber_cnt": {"name": "analytics___sms__user_metrics_daily_non_esp_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_non_esp_subscriber_cnt", "block_contents": "subscribers that were NOT added via connection to an email provider (like Klaviyo)"}, "doc.yoda.analytics___sms__user_metrics_daily_other_message_cnt": {"name": "analytics___sms__user_metrics_daily_other_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_other_message_cnt", "block_contents": "number of messages sent from others"}, "doc.yoda.analytics___sms__user_metrics_daily_other_message_cnt_by_carrier": {"name": "analytics___sms__user_metrics_daily_other_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_other_message_cnt_by_carrier", "block_contents": "number of message parts sent by the carrier from others"}, "doc.yoda.analytics___sms__user_metrics_daily_other_usage_sum": {"name": "analytics___sms__user_metrics_daily_other_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_other_usage_sum", "block_contents": "sum price_billed_in_usd of messages sent from others"}, "doc.yoda.analytics___sms__user_metrics_daily_plan_name": {"name": "analytics___sms__user_metrics_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_plan_name", "block_contents": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc."}, "doc.yoda.analytics___sms__user_metrics_daily_plan_type": {"name": "analytics___sms__user_metrics_daily_plan_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_plan_type", "block_contents": "plan type: self_service / high_touch"}, "doc.yoda.analytics___sms__user_metrics_daily_plan_type_ht_lt": {"name": "analytics___sms__user_metrics_daily_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_plan_type_ht_lt", "block_contents": "plan customer type: HT/LT"}, "doc.yoda.analytics___sms__user_metrics_daily_sms_message_cnt": {"name": "analytics___sms__user_metrics_daily_sms_message_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_sms_message_cnt", "block_contents": "number of sms messages sent"}, "doc.yoda.analytics___sms__user_metrics_daily_sms_message_cnt_by_carrier": {"name": "analytics___sms__user_metrics_daily_sms_message_cnt_by_carrier", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_sms_message_cnt_by_carrier", "block_contents": "number of sms message parts sent by the carrier"}, "doc.yoda.analytics___sms__user_metrics_daily_sms_usage_sum": {"name": "analytics___sms__user_metrics_daily_sms_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_sms_usage_sum", "block_contents": "sum price_billed_in_usd of sms messages sent"}, "doc.yoda.analytics___sms__user_metrics_daily_sms_user_id": {"name": "analytics___sms__user_metrics_daily_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_sms_user_id", "block_contents": "yotpo sms user unique identifier"}, "doc.yoda.analytics___sms__user_metrics_daily_subscriber_cnt": {"name": "analytics___sms__user_metrics_daily_subscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_subscriber_cnt", "block_contents": "subscribers count"}, "doc.yoda.analytics___sms__user_metrics_daily_unsubscriber_cnt": {"name": "analytics___sms__user_metrics_daily_unsubscriber_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_unsubscriber_cnt", "block_contents": "unsubscribers count"}, "doc.yoda.analytics___sms__user_metrics_daily_usage_sum": {"name": "analytics___sms__user_metrics_daily_usage_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_metrics_daily/analytics___sms__user_metrics_daily.md", "unique_id": "doc.yoda.analytics___sms__user_metrics_daily_usage_sum", "block_contents": "total sum price_billed_in_usd of messages sent"}, "doc.yoda.analytics___sms__user_open_over_time": {"name": "analytics___sms__user_open_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_open_over_time", "block_contents": "Modeled table of sms user opened & closed status over time | PK and granularity: sms_user_id, from_time"}, "doc.yoda.analytics___sms__user_open_over_time_created_date": {"name": "analytics___sms__user_open_over_time_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_open_over_time_created_date", "block_contents": "opened/closed event created date"}, "doc.yoda.analytics___sms__user_open_over_time_dwh_updated_at": {"name": "analytics___sms__user_open_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_open_over_time_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__user_open_over_time_event_source": {"name": "analytics___sms__user_open_over_time_event_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_open_over_time_event_source", "block_contents": "sms_user_created, user_event_log_sms_user, user_event_log_shopify_user, user_event_log_bigcommerce_user"}, "doc.yoda.analytics___sms__user_open_over_time_from_time": {"name": "analytics___sms__user_open_over_time_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_open_over_time_from_time", "block_contents": "user opened/closed status range start timestamp - primary key 2/2 - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time"}, "doc.yoda.analytics___sms__user_open_over_time_is_user_open": {"name": "analytics___sms__user_open_over_time_is_user_open", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_open_over_time_is_user_open", "block_contents": "open_status = opened"}, "doc.yoda.analytics___sms__user_open_over_time_open_status": {"name": "analytics___sms__user_open_over_time_open_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_open_over_time_open_status", "block_contents": "sms user opened/closed status"}, "doc.yoda.analytics___sms__user_open_over_time_sms_user_id": {"name": "analytics___sms__user_open_over_time_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_open_over_time_sms_user_id", "block_contents": "yotpo sms user unique identifier - primary key 1/2"}, "doc.yoda.analytics___sms__user_open_over_time_to_time": {"name": "analytics___sms__user_open_over_time_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_open_over_time_to_time", "block_contents": "user opened/closed status range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time"}, "doc.yoda.analytics___sms__user_open_over_time_user_and_date_row_ranking": {"name": "analytics___sms__user_open_over_time_user_and_date_row_ranking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_open_over_time_user_and_date_row_ranking", "block_contents": "row ranking for each user and created_date by created_at (i.e, 1 is the first row for each user and created date)"}, "doc.yoda.analytics___sms__user_open_over_time_user_and_date_row_ranking_backwards": {"name": "analytics___sms__user_open_over_time_user_and_date_row_ranking_backwards", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_open_over_time/analytics___sms__user_open_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_open_over_time_user_and_date_row_ranking_backwards", "block_contents": "row ranking for each user and created_date by created_at (i.e, 1 is the last row for each user and created date)"}, "doc.yoda.analytics___sms__user_plan_daily": {"name": "analytics___sms__user_plan_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__user_plan_daily", "block_contents": "Modeled table of sms user plan history on a daily level. | Granularity & Primary Key: date, sms_user_id"}, "doc.yoda.analytics___sms__user_plan_daily_date": {"name": "analytics___sms__user_plan_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__user_plan_daily_date", "block_contents": "date of the plan - primary key 1/2"}, "doc.yoda.analytics___sms__user_plan_daily_dwh_updated_at": {"name": "analytics___sms__user_plan_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__user_plan_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__user_plan_daily_plan_id": {"name": "analytics___sms__user_plan_daily_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__user_plan_daily_plan_id", "block_contents": "plan unique identifier"}, "doc.yoda.analytics___sms__user_plan_daily_plan_name": {"name": "analytics___sms__user_plan_daily_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__user_plan_daily_plan_name", "block_contents": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc."}, "doc.yoda.analytics___sms__user_plan_daily_plan_period": {"name": "analytics___sms__user_plan_daily_plan_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__user_plan_daily_plan_period", "block_contents": "plan period: monthly, annually"}, "doc.yoda.analytics___sms__user_plan_daily_plan_type": {"name": "analytics___sms__user_plan_daily_plan_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__user_plan_daily_plan_type", "block_contents": "plan type: self_service / high_touch"}, "doc.yoda.analytics___sms__user_plan_daily_plan_type_group": {"name": "analytics___sms__user_plan_daily_plan_type_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__user_plan_daily_plan_type_group", "block_contents": "plan type group: self_service, high_touch and free"}, "doc.yoda.analytics___sms__user_plan_daily_plan_type_ht_lt": {"name": "analytics___sms__user_plan_daily_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__user_plan_daily_plan_type_ht_lt", "block_contents": "plan customer type: HT/LT"}, "doc.yoda.analytics___sms__user_plan_daily_sms_user_id": {"name": "analytics___sms__user_plan_daily_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_daily/analytics___sms__user_plan_daily.md", "unique_id": "doc.yoda.analytics___sms__user_plan_daily_sms_user_id", "block_contents": "yotpo sms user unique identifier - primary key 2/2"}, "doc.yoda.analytics___sms__user_plan_monthly": {"name": "analytics___sms__user_plan_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "unique_id": "doc.yoda.analytics___sms__user_plan_monthly", "block_contents": "Modeled table of sms user plan history on a monthly level. | Granularity & Primary Key: month, sms_user_id"}, "doc.yoda.analytics___sms__user_plan_monthly_dwh_updated_at": {"name": "analytics___sms__user_plan_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "unique_id": "doc.yoda.analytics___sms__user_plan_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__user_plan_monthly_month": {"name": "analytics___sms__user_plan_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "unique_id": "doc.yoda.analytics___sms__user_plan_monthly_month", "block_contents": "month of the plan - primary key 1/2"}, "doc.yoda.analytics___sms__user_plan_monthly_plan_id": {"name": "analytics___sms__user_plan_monthly_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "unique_id": "doc.yoda.analytics___sms__user_plan_monthly_plan_id", "block_contents": "plan unique identifier"}, "doc.yoda.analytics___sms__user_plan_monthly_plan_name": {"name": "analytics___sms__user_plan_monthly_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "unique_id": "doc.yoda.analytics___sms__user_plan_monthly_plan_name", "block_contents": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc."}, "doc.yoda.analytics___sms__user_plan_monthly_plan_period": {"name": "analytics___sms__user_plan_monthly_plan_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "unique_id": "doc.yoda.analytics___sms__user_plan_monthly_plan_period", "block_contents": "plan period: monthly, annually"}, "doc.yoda.analytics___sms__user_plan_monthly_plan_type": {"name": "analytics___sms__user_plan_monthly_plan_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "unique_id": "doc.yoda.analytics___sms__user_plan_monthly_plan_type", "block_contents": "plan type: self_service / high_touch"}, "doc.yoda.analytics___sms__user_plan_monthly_plan_type_group": {"name": "analytics___sms__user_plan_monthly_plan_type_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "unique_id": "doc.yoda.analytics___sms__user_plan_monthly_plan_type_group", "block_contents": "plan type group: self_service, high_touch and free"}, "doc.yoda.analytics___sms__user_plan_monthly_plan_type_ht_lt": {"name": "analytics___sms__user_plan_monthly_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "unique_id": "doc.yoda.analytics___sms__user_plan_monthly_plan_type_ht_lt", "block_contents": "plan customer type: HT/LT"}, "doc.yoda.analytics___sms__user_plan_monthly_sms_user_id": {"name": "analytics___sms__user_plan_monthly_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_monthly/analytics___sms__user_plan_monthly.md", "unique_id": "doc.yoda.analytics___sms__user_plan_monthly_sms_user_id", "block_contents": "yotpo sms user unique identifier - primary key 2/2"}, "doc.yoda.analytics___sms__user_plan_over_time": {"name": "analytics___sms__user_plan_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time", "block_contents": "Modeled table of sms user's plan history over time. | Granularity & Primary Key: sms_user_id, from_time, row_ranking_for_user_and_created_date"}, "doc.yoda.analytics___sms__user_plan_over_time_created_date": {"name": "analytics___sms__user_plan_over_time_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_created_date", "block_contents": "plan change event created date"}, "doc.yoda.analytics___sms__user_plan_over_time_dwh_updated_at": {"name": "analytics___sms__user_plan_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__user_plan_over_time_event_id": {"name": "analytics___sms__user_plan_over_time_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_event_id", "block_contents": "sms user event log unique identifier"}, "doc.yoda.analytics___sms__user_plan_over_time_event_name": {"name": "analytics___sms__user_plan_over_time_event_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_event_name", "block_contents": "change_plan, cancel_plan, uninstall, etc."}, "doc.yoda.analytics___sms__user_plan_over_time_from_time": {"name": "analytics___sms__user_plan_over_time_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_from_time", "block_contents": "user plan range start timestamp - primary key 2/3 - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date"}, "doc.yoda.analytics___sms__user_plan_over_time_is_first_ht_plan": {"name": "analytics___sms__user_plan_over_time_is_first_ht_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_is_first_ht_plan", "block_contents": "first high touch plan indicator: 0/1"}, "doc.yoda.analytics___sms__user_plan_over_time_is_previous_free_plan": {"name": "analytics___sms__user_plan_over_time_is_previous_free_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_is_previous_free_plan", "block_contents": "previous free plan indicator: 0/1"}, "doc.yoda.analytics___sms__user_plan_over_time_is_previous_lt_plan": {"name": "analytics___sms__user_plan_over_time_is_previous_lt_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_is_previous_lt_plan", "block_contents": "previous low touch plan indicator: 0/1"}, "doc.yoda.analytics___sms__user_plan_over_time_plan_id": {"name": "analytics___sms__user_plan_over_time_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_plan_id", "block_contents": "plan unique identifier"}, "doc.yoda.analytics___sms__user_plan_over_time_plan_name": {"name": "analytics___sms__user_plan_over_time_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_plan_name", "block_contents": "plan_name: Powerhouse Plus, Powerhouse Monthly, SMSBump (Legacy), etc."}, "doc.yoda.analytics___sms__user_plan_over_time_plan_period": {"name": "analytics___sms__user_plan_over_time_plan_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_plan_period", "block_contents": "plan period: monthly, annually"}, "doc.yoda.analytics___sms__user_plan_over_time_plan_type": {"name": "analytics___sms__user_plan_over_time_plan_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_plan_type", "block_contents": "plan type: self_service / high_touch"}, "doc.yoda.analytics___sms__user_plan_over_time_plan_type_group": {"name": "analytics___sms__user_plan_over_time_plan_type_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_plan_type_group", "block_contents": "plan type group: self_service, high_touch and free"}, "doc.yoda.analytics___sms__user_plan_over_time_plan_type_ht_lt": {"name": "analytics___sms__user_plan_over_time_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_plan_type_ht_lt", "block_contents": "plan customer type: HT/LT"}, "doc.yoda.analytics___sms__user_plan_over_time_row_ranking_for_user_and_created_date": {"name": "analytics___sms__user_plan_over_time_row_ranking_for_user_and_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_row_ranking_for_user_and_created_date", "block_contents": "row ranking for each user and event created date by from_time DESC, event_id DESC (i.e, 1 is the last row for each user and created date) - primary key 3/3"}, "doc.yoda.analytics___sms__user_plan_over_time_sms_user_id": {"name": "analytics___sms__user_plan_over_time_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_sms_user_id", "block_contents": "yotpo sms user unique identifier - primary key 1/3"}, "doc.yoda.analytics___sms__user_plan_over_time_to_time": {"name": "analytics___sms__user_plan_over_time_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_plan_over_time/analytics___sms__user_plan_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_plan_over_time_to_time", "block_contents": "user plan range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_date AND date < to_date"}, "doc.yoda.analytics___sms__user_pop_up_status": {"name": "analytics___sms__user_pop_up_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status", "block_contents": "Modeled table of current sms pop_up status for each sms_user_id. \nThis table is used as base for a daily snapshot to capture changes in pop_up enablement.\n|Granularity & Primary Key: sms_user_id"}, "doc.yoda.analytics___sms__user_pop_up_status_dwh_updated_at": {"name": "analytics___sms__user_pop_up_status_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_dwh_updated_at", "block_contents": "table update timestamp"}, "doc.yoda.analytics___sms__user_pop_up_status_is_pop_up_enabled": {"name": "analytics___sms__user_pop_up_status_is_pop_up_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_is_pop_up_enabled", "block_contents": "indicator = 1 IF form_type = 'popup' AND form_status = 'published'"}, "doc.yoda.analytics___sms__user_pop_up_status_sms_user_id": {"name": "analytics___sms__user_pop_up_status_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status/analytics___sms__user_pop_up_status.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_sms_user_id", "block_contents": "PK"}, "doc.yoda.analytics___sms__user_pop_up_status_over_time": {"name": "analytics___sms__user_pop_up_status_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_over_time", "block_contents": "Modeled table of sms user pop_up enablement status over time (from_date - to_date)\nShowing only end of day status (changes made in the same day will not be included)\n| PK and granularity: sms_user_id, from_date"}, "doc.yoda.analytics___sms__user_pop_up_status_over_time_dwh_updated_at": {"name": "analytics___sms__user_pop_up_status_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_over_time_dwh_updated_at", "block_contents": "table update timestamp"}, "doc.yoda.analytics___sms__user_pop_up_status_over_time_from_date": {"name": "analytics___sms__user_pop_up_status_over_time_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_over_time_from_date", "block_contents": "is_pop_up_enabled status start date"}, "doc.yoda.analytics___sms__user_pop_up_status_over_time_sms_user_id": {"name": "analytics___sms__user_pop_up_status_over_time_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_over_time_sms_user_id", "block_contents": ""}, "doc.yoda.analytics___sms__user_pop_up_status_over_time_to_date": {"name": "analytics___sms__user_pop_up_status_over_time_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_over_time/analytics___sms__user_pop_up_status_over_time.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_over_time_to_date", "block_contents": "is_pop_up_enabled status end date"}, "doc.yoda.analytics___sms__user_pop_up_status_snapshot": {"name": "analytics___sms__user_pop_up_status_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_snapshot", "block_contents": "This table is used track changes in pop_up enablement status.\n[Granularity : sms_user_id|is_pop_up_enabled|updated_at]"}, "doc.yoda.analytics___sms__user_pop_up_status_snapshot_dwh_updated_at": {"name": "analytics___sms__user_pop_up_status_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_snapshot_dwh_updated_at", "block_contents": "table updated at"}, "doc.yoda.analytics___sms__user_pop_up_status_snapshot_sms_user_id": {"name": "analytics___sms__user_pop_up_status_snapshot_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_snapshot_sms_user_id", "block_contents": ""}, "doc.yoda.analytics___sms__user_pop_up_status_snapshot_updated_at": {"name": "analytics___sms__user_pop_up_status_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_pop_up_status_snapshot/analytics___sms__user_pop_up_status_snapshot.md", "unique_id": "doc.yoda.analytics___sms__user_pop_up_status_snapshot_updated_at", "block_contents": "status event change timestamp"}, "doc.yoda.analytics___sms__user_store_dates_history": {"name": "analytics___sms__user_store_dates_history", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "unique_id": "doc.yoda.analytics___sms__user_store_dates_history", "block_contents": "Modeled incremental table of sms users and store dates history.\nThe purpose of the table is to save runtimes on recalculating historical dates.\nThe logic of this model takes into account association changes between sms_user_id and app_key and performs a retroactive update for these cases.\nGranularity: sms_user_id | app_key |category"}, "doc.yoda.analytics___sms__user_store_dates_history_app_key": {"name": "analytics___sms__user_store_dates_history_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "unique_id": "doc.yoda.analytics___sms__user_store_dates_history_app_key", "block_contents": "yotpo store unique identifier - PK 2/3"}, "doc.yoda.analytics___sms__user_store_dates_history_category": {"name": "analytics___sms__user_store_dates_history_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "unique_id": "doc.yoda.analytics___sms__user_store_dates_history_category", "block_contents": "historical date category: e.g., after_opportunity_3_usd_cumulative_usage_first_date. - PK 3/3"}, "doc.yoda.analytics___sms__user_store_dates_history_dwh_updated_at": {"name": "analytics___sms__user_store_dates_history_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "unique_id": "doc.yoda.analytics___sms__user_store_dates_history_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms__user_store_dates_history_sms_user_id": {"name": "analytics___sms__user_store_dates_history_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "unique_id": "doc.yoda.analytics___sms__user_store_dates_history_sms_user_id", "block_contents": "yotpo sms user unique identifier - PK 1/3"}, "doc.yoda.analytics___sms__user_store_dates_history_value": {"name": "analytics___sms__user_store_dates_history_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "original_file_path": "models/analytics/sms/marts/analytics___sms__user_store_dates_history/analytics___sms__user_store_dates_history.md", "unique_id": "doc.yoda.analytics___sms__user_store_dates_history_value", "block_contents": "the value of the historical date category"}, "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily": {"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "unique_id": "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily", "block_contents": "Temporary pointer to the Metrorikku modeled table fact_agg_sms_user_profile_daily | Granularity & Primary Key: date , user_id"}, "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_date": {"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "unique_id": "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_esp_subscribers": {"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily_total_esp_subscribers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "unique_id": "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_esp_subscribers", "block_contents": ""}, "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_imported_subscribers": {"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily_total_imported_subscribers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "unique_id": "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_imported_subscribers", "block_contents": ""}, "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_new_subscribers": {"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily_total_new_subscribers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "unique_id": "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_new_subscribers", "block_contents": ""}, "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_non_esp_subscribers": {"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily_total_non_esp_subscribers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "unique_id": "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_non_esp_subscribers", "block_contents": ""}, "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_subscribers": {"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily_total_subscribers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "unique_id": "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_subscribers", "block_contents": ""}, "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_unsubscribers": {"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily_total_unsubscribers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "unique_id": "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_total_unsubscribers", "block_contents": ""}, "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_user_id": {"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__fact_agg_sms_user_profile_daily/analytics___sms_stg__fact_agg_sms_user_profile_daily.md", "unique_id": "doc.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily_user_id", "block_contents": "PK: sms__user"}, "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus": {"name": "analytics___sms_stg__free_credit_high_touch_bonus", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus", "block_contents": "Static table of high_touch bonus sms campaign that ran until 2021-03-05. contains the timestamps of credit given and deducted per user_id"}, "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus_bonus_amount": {"name": "analytics___sms_stg__free_credit_high_touch_bonus_bonus_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus_bonus_amount", "block_contents": "amount of free credits in usd"}, "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus_created_at": {"name": "analytics___sms_stg__free_credit_high_touch_bonus_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus_created_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus_credit_type": {"name": "analytics___sms_stg__free_credit_high_touch_bonus_credit_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus_credit_type", "block_contents": "High-Touch Bonus"}, "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus_dwh_updated_at": {"name": "analytics___sms_stg__free_credit_high_touch_bonus_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus_sms_user_id": {"name": "analytics___sms_stg__free_credit_high_touch_bonus_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "original_file_path": "models/analytics/sms/staging/base/analytics___sms_stg__free_credit_high_touch_bonus/analytics___sms_stg__free_credit_high_touch_bonus.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_high_touch_bonus_sms_user_id", "block_contents": ""}, "doc.yoda.analytics___sms_stg__analytics_data": {"name": "analytics___sms_stg__analytics_data", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data", "block_contents": "Modeled table of comm analytics data - the table aggergates data for sms and email campaigns, flows and other features on an hourly basis | Granularity & Primary Key: combination of store_id, channel, source_type, source_id, sub_source_id and aggregation_date"}, "doc.yoda.analytics___sms_stg__analytics_data_aggregated_at": {"name": "analytics___sms_stg__analytics_data_aggregated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_aggregated_at", "block_contents": "aggregation timestamp (round hours only), part of primary key"}, "doc.yoda.analytics___sms_stg__analytics_data_aggregated_date": {"name": "analytics___sms_stg__analytics_data_aggregated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_aggregated_date", "block_contents": "aggergation date"}, "doc.yoda.analytics___sms_stg__analytics_data_analytics_data_id": {"name": "analytics___sms_stg__analytics_data_analytics_data_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_analytics_data_id", "block_contents": "unique identifier of analytics data, made from combination of six fields - primary key"}, "doc.yoda.analytics___sms_stg__analytics_data_app_key": {"name": "analytics___sms_stg__analytics_data_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_app_key", "block_contents": "app key of store, part of primary key"}, "doc.yoda.analytics___sms_stg__analytics_data_channel_name": {"name": "analytics___sms_stg__analytics_data_channel_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_channel_name", "block_contents": "channel name of aggregation sms/email, part of primary key"}, "doc.yoda.analytics___sms_stg__analytics_data_is_channel_sms": {"name": "analytics___sms_stg__analytics_data_is_channel_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_is_channel_sms", "block_contents": "is channel = sms"}, "doc.yoda.analytics___sms_stg__analytics_data_is_type_automation": {"name": "analytics___sms_stg__analytics_data_is_type_automation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_is_type_automation", "block_contents": "is type = automation"}, "doc.yoda.analytics___sms_stg__analytics_data_is_type_campaign": {"name": "analytics___sms_stg__analytics_data_is_type_campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_is_type_campaign", "block_contents": "is type = campaign"}, "doc.yoda.analytics___sms_stg__analytics_data_is_type_flow": {"name": "analytics___sms_stg__analytics_data_is_type_flow", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_is_type_flow", "block_contents": "is type = flow"}, "doc.yoda.analytics___sms_stg__analytics_data_source_id": {"name": "analytics___sms_stg__analytics_data_source_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_source_id", "block_contents": "id of source of aggregation, part of primary key"}, "doc.yoda.analytics___sms_stg__analytics_data_source_message": {"name": "analytics___sms_stg__analytics_data_source_message", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_source_message", "block_contents": "message content of aggregated source (for example campaign content)"}, "doc.yoda.analytics___sms_stg__analytics_data_source_name": {"name": "analytics___sms_stg__analytics_data_source_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_source_name", "block_contents": "name of source of aggregation (for example campaign name)"}, "doc.yoda.analytics___sms_stg__analytics_data_source_trigger": {"name": "analytics___sms_stg__analytics_data_source_trigger", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_source_trigger", "block_contents": "name of trigger of aggregation if available (for example flow trigger)"}, "doc.yoda.analytics___sms_stg__analytics_data_source_type": {"name": "analytics___sms_stg__analytics_data_source_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_source_type", "block_contents": "type of source of aggregation: flow, campaign etc. part of primary key"}, "doc.yoda.analytics___sms_stg__analytics_data_sub_source_id": {"name": "analytics___sms_stg__analytics_data_sub_source_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_sub_source_id", "block_contents": "id of sub source (for example step in flow), part of primary key"}, "doc.yoda.analytics___sms_stg__analytics_data_total_revenue_in_usd": {"name": "analytics___sms_stg__analytics_data_total_revenue_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_total_revenue_in_usd", "block_contents": "aggregated revenue from source"}, "doc.yoda.analytics___sms_stg__analytics_data_total_spent_in_usd": {"name": "analytics___sms_stg__analytics_data_total_spent_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__analytics_data/analytics___sms_stg__analytics_data.md", "unique_id": "doc.yoda.analytics___sms_stg__analytics_data_total_spent_in_usd", "block_contents": "aggregated spend from source in USD"}, "doc.yoda.analytics___sms_stg__api_calls": {"name": "analytics___sms_stg__api_calls", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls", "block_contents": "Modeled incremental table of sent SMS messages events\nGranularity: Event of sent SMS message\nPrimary Key: api_call_id"}, "doc.yoda.analytics___sms_stg__api_calls_aggregator_name": {"name": "analytics___sms_stg__api_calls_aggregator_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_aggregator_name", "block_contents": "Name of SMS vendor/aggregator"}, "doc.yoda.analytics___sms_stg__api_calls_api_call_id": {"name": "analytics___sms_stg__api_calls_api_call_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_api_call_id", "block_contents": "unique identifier of SMS message event - primary key"}, "doc.yoda.analytics___sms_stg__api_calls_campaign_id": {"name": "analytics___sms_stg__api_calls_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_campaign_id", "block_contents": ""}, "doc.yoda.analytics___sms_stg__api_calls_created_at": {"name": "analytics___sms_stg__api_calls_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_created_at", "block_contents": "SMS message event created timestamp"}, "doc.yoda.analytics___sms_stg__api_calls_created_date": {"name": "analytics___sms_stg__api_calls_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_created_date", "block_contents": "SMS message event created date"}, "doc.yoda.analytics___sms_stg__api_calls_created_month": {"name": "analytics___sms_stg__api_calls_created_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_created_month", "block_contents": "SMS message event created month"}, "doc.yoda.analytics___sms_stg__api_calls_dwh_updated_at": {"name": "analytics___sms_stg__api_calls_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__api_calls_event_id": {"name": "analytics___sms_stg__api_calls_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_event_id", "block_contents": ""}, "doc.yoda.analytics___sms_stg__api_calls_flow_id": {"name": "analytics___sms_stg__api_calls_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_flow_id", "block_contents": ""}, "doc.yoda.analytics___sms_stg__api_calls_is_logical_deleted": {"name": "analytics___sms_stg__api_calls_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_is_logical_deleted", "block_contents": ""}, "doc.yoda.analytics___sms_stg__api_calls_is_mms": {"name": "analytics___sms_stg__api_calls_is_mms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_is_mms", "block_contents": "mms indicator: 0/1"}, "doc.yoda.analytics___sms_stg__api_calls_is_sms": {"name": "analytics___sms_stg__api_calls_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_is_sms", "block_contents": "sms indicator: 0/1"}, "doc.yoda.analytics___sms_stg__api_calls_message_id": {"name": "analytics___sms_stg__api_calls_message_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_message_id", "block_contents": ""}, "doc.yoda.analytics___sms_stg__api_calls_message_parts_number": {"name": "analytics___sms_stg__api_calls_message_parts_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_message_parts_number", "block_contents": ""}, "doc.yoda.analytics___sms_stg__api_calls_message_source_type": {"name": "analytics___sms_stg__api_calls_message_source_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_message_source_type", "block_contents": "message source type: 1 - Automation, 2 - Campaign, 3 - Flow, 4 - Other."}, "doc.yoda.analytics___sms_stg__api_calls_message_source_type_name": {"name": "analytics___sms_stg__api_calls_message_source_type_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_message_source_type_name", "block_contents": "message source type name : Automation, Campaign, Flow, Other."}, "doc.yoda.analytics___sms_stg__api_calls_message_status": {"name": "analytics___sms_stg__api_calls_message_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_message_status", "block_contents": "message status: sent, pending, banned, invalid_number, etc."}, "doc.yoda.analytics___sms_stg__api_calls_message_type": {"name": "analytics___sms_stg__api_calls_message_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_message_type", "block_contents": "message type: mms, sms, whatsapp, etc."}, "doc.yoda.analytics___sms_stg__api_calls_modified_at": {"name": "analytics___sms_stg__api_calls_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_modified_at", "block_contents": "SMS message event modified timestamp"}, "doc.yoda.analytics___sms_stg__api_calls_modified_date": {"name": "analytics___sms_stg__api_calls_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_modified_date", "block_contents": "SMS message event modified date"}, "doc.yoda.analytics___sms_stg__api_calls_price_billed_in_usd": {"name": "analytics___sms_stg__api_calls_price_billed_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_price_billed_in_usd", "block_contents": ""}, "doc.yoda.analytics___sms_stg__api_calls_price_vendor_cost_in_usd": {"name": "analytics___sms_stg__api_calls_price_vendor_cost_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_price_vendor_cost_in_usd", "block_contents": ""}, "doc.yoda.analytics___sms_stg__api_calls_receiver_country": {"name": "analytics___sms_stg__api_calls_receiver_country", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_receiver_country", "block_contents": "The receiver country - calculated based on the phone number"}, "doc.yoda.analytics___sms_stg__api_calls_receiver_phone_code": {"name": "analytics___sms_stg__api_calls_receiver_phone_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_receiver_phone_code", "block_contents": "The receiver phone code"}, "doc.yoda.analytics___sms_stg__api_calls_receiver_title": {"name": "analytics___sms_stg__api_calls_receiver_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_receiver_title", "block_contents": "The receiving name/phone number"}, "doc.yoda.analytics___sms_stg__api_calls_sender_title": {"name": "analytics___sms_stg__api_calls_sender_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_sender_title", "block_contents": "The Sender name/phone number"}, "doc.yoda.analytics___sms_stg__api_calls_sms_user_id": {"name": "analytics___sms_stg__api_calls_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_sms_user_id", "block_contents": ""}, "doc.yoda.analytics___sms_stg__api_calls_spot_user_balance_in_usd": {"name": "analytics___sms_stg__api_calls_spot_user_balance_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__api_calls/analytics___sms_stg__api_calls.md", "unique_id": "doc.yoda.analytics___sms_stg__api_calls_spot_user_balance_in_usd", "block_contents": ""}, "doc.yoda.analytics___sms_stg__bigcommerce_user": {"name": "analytics___sms_stg__bigcommerce_user", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user", "block_contents": "Modeled view of bigcommerce stores users | Granularity & Primary Key: bigcommerce_user_id"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_abandoned_checkouts_sent": {"name": "analytics___sms_stg__bigcommerce_user_abandoned_checkouts_sent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_abandoned_checkouts_sent", "block_contents": "number of abandoned checkouts"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_bigcommerce_plan_level": {"name": "analytics___sms_stg__bigcommerce_user_bigcommerce_plan_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_bigcommerce_plan_level", "block_contents": "bigcommerce plan level: Platinum, Silver, etc."}, "doc.yoda.analytics___sms_stg__bigcommerce_user_bigcommerce_plan_name": {"name": "analytics___sms_stg__bigcommerce_user_bigcommerce_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_bigcommerce_plan_name", "block_contents": "bigcommerce plan name: Plus Store Monthly, Enterprise Store Monthly - Tier 9, etc."}, "doc.yoda.analytics___sms_stg__bigcommerce_user_bigcommerce_user_id": {"name": "analytics___sms_stg__bigcommerce_user_bigcommerce_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_bigcommerce_user_id", "block_contents": "unique identifier of bigcommerce user - primary key"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_created_at": {"name": "analytics___sms_stg__bigcommerce_user_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_created_date": {"name": "analytics___sms_stg__bigcommerce_user_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_is_access_token": {"name": "analytics___sms_stg__bigcommerce_user_is_access_token", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_is_access_token", "block_contents": "store access token indication"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_is_active": {"name": "analytics___sms_stg__bigcommerce_user_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_is_active", "block_contents": "activeness indicator: 0/1"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_is_auto_reload": {"name": "analytics___sms_stg__bigcommerce_user_is_auto_reload", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_is_auto_reload", "block_contents": "store auto reload credits indication"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_is_connected": {"name": "analytics___sms_stg__bigcommerce_user_is_connected", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_is_connected", "block_contents": ""}, "doc.yoda.analytics___sms_stg__bigcommerce_user_is_logical_deleted": {"name": "analytics___sms_stg__bigcommerce_user_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_is_logical_deleted", "block_contents": ""}, "doc.yoda.analytics___sms_stg__bigcommerce_user_modified_at": {"name": "analytics___sms_stg__bigcommerce_user_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_modified_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_modified_date": {"name": "analytics___sms_stg__bigcommerce_user_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_shop_data": {"name": "analytics___sms_stg__bigcommerce_user_shop_data", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_shop_data", "block_contents": "shop data in JSON format: logo, language, features, etc."}, "doc.yoda.analytics___sms_stg__bigcommerce_user_sms_user_id": {"name": "analytics___sms_stg__bigcommerce_user_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_sms_user_id", "block_contents": "yotpo sms user id"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_sms_user_id_row_rank": {"name": "analytics___sms_stg__bigcommerce_user_sms_user_id_row_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_sms_user_id_row_rank", "block_contents": "bigcommerce's user ranking for yotpo sms user"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_store_domain": {"name": "analytics___sms_stg__bigcommerce_user_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_store_domain", "block_contents": "store domain name"}, "doc.yoda.analytics___sms_stg__bigcommerce_user_store_name": {"name": "analytics___sms_stg__bigcommerce_user_store_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__bigcommerce_user/analytics___sms_stg__bigcommerce_user.md", "unique_id": "doc.yoda.analytics___sms_stg__bigcommerce_user_store_name", "block_contents": "store name"}, "doc.yoda.analytics___sms_stg__campaign": {"name": "analytics___sms_stg__campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign", "block_contents": "Modeled table of sms campaigns | Granularity & Primary Key: campaign_id"}, "doc.yoda.analytics___sms_stg__campaign_campaign_id": {"name": "analytics___sms_stg__campaign_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_campaign_id", "block_contents": "campaign unique identifier - primary key"}, "doc.yoda.analytics___sms_stg__campaign_channel": {"name": "analytics___sms_stg__campaign_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_channel", "block_contents": "campaign channel: sms or email"}, "doc.yoda.analytics___sms_stg__campaign_created_at": {"name": "analytics___sms_stg__campaign_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__campaign_created_date": {"name": "analytics___sms_stg__campaign_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__campaign_dwh_updated_at": {"name": "analytics___sms_stg__campaign_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms_stg__campaign_is_approved": {"name": "analytics___sms_stg__campaign_is_approved", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_is_approved", "block_contents": "campaign approved indicator 0/1"}, "doc.yoda.analytics___sms_stg__campaign_is_logical_deleted": {"name": "analytics___sms_stg__campaign_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_is_logical_deleted", "block_contents": "is_logical_deleted - deletion indicator"}, "doc.yoda.analytics___sms_stg__campaign_message": {"name": "analytics___sms_stg__campaign_message", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_message", "block_contents": "message content of the campaign"}, "doc.yoda.analytics___sms_stg__campaign_modified_at": {"name": "analytics___sms_stg__campaign_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_modified_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms_stg__campaign_modified_date": {"name": "analytics___sms_stg__campaign_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__campaign_scheduled_at": {"name": "analytics___sms_stg__campaign_scheduled_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_scheduled_at", "block_contents": "scheduling timestamp"}, "doc.yoda.analytics___sms_stg__campaign_scheduled_date": {"name": "analytics___sms_stg__campaign_scheduled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_scheduled_date", "block_contents": "scheduling date"}, "doc.yoda.analytics___sms_stg__campaign_sms_user_id": {"name": "analytics___sms_stg__campaign_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms_stg__campaign_status": {"name": "analytics___sms_stg__campaign_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_status", "block_contents": "status of campaign: draft, sent, scheduling, etc."}, "doc.yoda.analytics___sms_stg__campaign_title": {"name": "analytics___sms_stg__campaign_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign/analytics___sms_stg__campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_title", "block_contents": "campaign title"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking": {"name": "analytics___sms_stg__campaign_deletion_tracking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking", "block_contents": "Incremental table of sms campaigns with the purpose to keep the history content of deleted campaigns at the source table | \nGranularity & Primary Key: campaign_id, is_logical_deleted"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_campaign_id": {"name": "analytics___sms_stg__campaign_deletion_tracking_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_campaign_id", "block_contents": "campaign unique identifier - primary key 1/2"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_channel": {"name": "analytics___sms_stg__campaign_deletion_tracking_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_channel", "block_contents": "campaign channel: sms or email"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_created_at": {"name": "analytics___sms_stg__campaign_deletion_tracking_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_created_date": {"name": "analytics___sms_stg__campaign_deletion_tracking_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_dwh_updated_at": {"name": "analytics___sms_stg__campaign_deletion_tracking_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_is_approved": {"name": "analytics___sms_stg__campaign_deletion_tracking_is_approved", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_is_approved", "block_contents": "campaign approved indicator 0/1"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_is_logical_deleted": {"name": "analytics___sms_stg__campaign_deletion_tracking_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_is_logical_deleted", "block_contents": "is_logical_deleted - deletion indicator - primary key 2/2"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_message": {"name": "analytics___sms_stg__campaign_deletion_tracking_message", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_message", "block_contents": "message content of the campaign"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_modified_at": {"name": "analytics___sms_stg__campaign_deletion_tracking_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_modified_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_modified_date": {"name": "analytics___sms_stg__campaign_deletion_tracking_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_scheduled_at": {"name": "analytics___sms_stg__campaign_deletion_tracking_scheduled_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_scheduled_at", "block_contents": "scheduling timestamp"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_scheduled_date": {"name": "analytics___sms_stg__campaign_deletion_tracking_scheduled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_scheduled_date", "block_contents": "scheduling date"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_sms_user_id": {"name": "analytics___sms_stg__campaign_deletion_tracking_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_status": {"name": "analytics___sms_stg__campaign_deletion_tracking_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_status", "block_contents": "status of campaign: draft, sent, scheduling, etc."}, "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_title": {"name": "analytics___sms_stg__campaign_deletion_tracking_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_deletion_tracking/analytics___sms_stg__campaign_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_deletion_tracking_title", "block_contents": "campaign title"}, "doc.yoda.analytics___sms_stg__campaign_list": {"name": "analytics___sms_stg__campaign_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_list", "block_contents": "Modeled view of sms campaign lists | Granularity & Primary Key: campaign_list_id"}, "doc.yoda.analytics___sms_stg__campaign_list_campaign_id": {"name": "analytics___sms_stg__campaign_list_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_list_campaign_id", "block_contents": ""}, "doc.yoda.analytics___sms_stg__campaign_list_campaign_list_id": {"name": "analytics___sms_stg__campaign_list_campaign_list_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_list_campaign_list_id", "block_contents": "campaign list id - primary key"}, "doc.yoda.analytics___sms_stg__campaign_list_is_exclude": {"name": "analytics___sms_stg__campaign_list_is_exclude", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_list_is_exclude", "block_contents": "indicator for include - 0 or exclude - 1"}, "doc.yoda.analytics___sms_stg__campaign_list_list_id": {"name": "analytics___sms_stg__campaign_list_list_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_list_list_id", "block_contents": ""}, "doc.yoda.analytics___sms_stg__campaign_list_sms_user_id": {"name": "analytics___sms_stg__campaign_list_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_list/analytics___sms_stg__campaign_list.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_list_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms_stg__campaign_relation": {"name": "analytics___sms_stg__campaign_relation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_relation", "block_contents": "Modeled view of sms campaign relations | Granularity & Primary Key: campaign_relation_id"}, "doc.yoda.analytics___sms_stg__campaign_relation_campaign_id": {"name": "analytics___sms_stg__campaign_relation_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_relation_campaign_id", "block_contents": "unique identifier of sms campaign id"}, "doc.yoda.analytics___sms_stg__campaign_relation_campaign_relation_id": {"name": "analytics___sms_stg__campaign_relation_campaign_relation_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_relation_campaign_relation_id", "block_contents": "campaign relation id - primary key"}, "doc.yoda.analytics___sms_stg__campaign_relation_created_at": {"name": "analytics___sms_stg__campaign_relation_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_relation_created_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__campaign_relation_created_date": {"name": "analytics___sms_stg__campaign_relation_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_relation_created_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__campaign_relation_modified_at": {"name": "analytics___sms_stg__campaign_relation_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_relation_modified_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__campaign_relation_modified_date": {"name": "analytics___sms_stg__campaign_relation_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_relation_modified_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__campaign_relation_sms_user_id": {"name": "analytics___sms_stg__campaign_relation_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_relation_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms_stg__campaign_relation_template_id": {"name": "analytics___sms_stg__campaign_relation_template_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_relation_template_id", "block_contents": "unique identifier of the campaign message template"}, "doc.yoda.analytics___sms_stg__campaign_relation_template_type": {"name": "analytics___sms_stg__campaign_relation_template_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__campaign_relation/analytics___sms_stg__campaign_relation.md", "unique_id": "doc.yoda.analytics___sms_stg__campaign_relation_template_type", "block_contents": "template type - campaign calendar template or default message templates"}, "doc.yoda.analytics___sms_stg__default_predefined_message": {"name": "analytics___sms_stg__default_predefined_message", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "unique_id": "doc.yoda.analytics___sms_stg__default_predefined_message", "block_contents": "Modeled view of sms default predefined messages | Granularity & Primary Key: template_id"}, "doc.yoda.analytics___sms_stg__default_predefined_message_category": {"name": "analytics___sms_stg__default_predefined_message_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "unique_id": "doc.yoda.analytics___sms_stg__default_predefined_message_category", "block_contents": "the category of the message - loyalty, sales, seasonal, etc."}, "doc.yoda.analytics___sms_stg__default_predefined_message_created_at": {"name": "analytics___sms_stg__default_predefined_message_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "unique_id": "doc.yoda.analytics___sms_stg__default_predefined_message_created_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__default_predefined_message_created_date": {"name": "analytics___sms_stg__default_predefined_message_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "unique_id": "doc.yoda.analytics___sms_stg__default_predefined_message_created_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__default_predefined_message_flow_trigger": {"name": "analytics___sms_stg__default_predefined_message_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "unique_id": "doc.yoda.analytics___sms_stg__default_predefined_message_flow_trigger", "block_contents": "the flow trigger - has value if the message type is flows"}, "doc.yoda.analytics___sms_stg__default_predefined_message_is_active_in_b2b": {"name": "analytics___sms_stg__default_predefined_message_is_active_in_b2b", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "unique_id": "doc.yoda.analytics___sms_stg__default_predefined_message_is_active_in_b2b", "block_contents": "indicates whether this is currently active and visible in the b2b"}, "doc.yoda.analytics___sms_stg__default_predefined_message_message_type": {"name": "analytics___sms_stg__default_predefined_message_message_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "unique_id": "doc.yoda.analytics___sms_stg__default_predefined_message_message_type", "block_contents": "message type - campaigns or flows"}, "doc.yoda.analytics___sms_stg__default_predefined_message_modified_at": {"name": "analytics___sms_stg__default_predefined_message_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "unique_id": "doc.yoda.analytics___sms_stg__default_predefined_message_modified_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__default_predefined_message_modified_date": {"name": "analytics___sms_stg__default_predefined_message_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "unique_id": "doc.yoda.analytics___sms_stg__default_predefined_message_modified_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__default_predefined_message_sub_category": {"name": "analytics___sms_stg__default_predefined_message_sub_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "unique_id": "doc.yoda.analytics___sms_stg__default_predefined_message_sub_category", "block_contents": "the sub category of the message - when relevant"}, "doc.yoda.analytics___sms_stg__default_predefined_message_template_id": {"name": "analytics___sms_stg__default_predefined_message_template_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__default_predefined_message/analytics___sms_stg__default_predefined_message.md", "unique_id": "doc.yoda.analytics___sms_stg__default_predefined_message_template_id", "block_contents": "template_id - primary key"}, "doc.yoda.analytics___sms_stg__email_charge": {"name": "analytics___sms_stg__email_charge", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "unique_id": "doc.yoda.analytics___sms_stg__email_charge", "block_contents": "Modeled View of email charges. PK: email_charge_id"}, "doc.yoda.analytics___sms_stg__email_charge_charge_in_usd": {"name": "analytics___sms_stg__email_charge_charge_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "unique_id": "doc.yoda.analytics___sms_stg__email_charge_charge_in_usd", "block_contents": "total row charge in usd (if type = refund then charge_in_usd is a refund)"}, "doc.yoda.analytics___sms_stg__email_charge_charge_type": {"name": "analytics___sms_stg__email_charge_charge_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "unique_id": "doc.yoda.analytics___sms_stg__email_charge_charge_type", "block_contents": "type = charge | refund"}, "doc.yoda.analytics___sms_stg__email_charge_created_at": {"name": "analytics___sms_stg__email_charge_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "unique_id": "doc.yoda.analytics___sms_stg__email_charge_created_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__email_charge_created_date": {"name": "analytics___sms_stg__email_charge_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "unique_id": "doc.yoda.analytics___sms_stg__email_charge_created_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__email_charge_currency": {"name": "analytics___sms_stg__email_charge_currency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "unique_id": "doc.yoda.analytics___sms_stg__email_charge_currency", "block_contents": "Only USD supported"}, "doc.yoda.analytics___sms_stg__email_charge_email_charge_id": {"name": "analytics___sms_stg__email_charge_email_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "unique_id": "doc.yoda.analytics___sms_stg__email_charge_email_charge_id", "block_contents": "PK"}, "doc.yoda.analytics___sms_stg__email_charge_is_refund": {"name": "analytics___sms_stg__email_charge_is_refund", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "unique_id": "doc.yoda.analytics___sms_stg__email_charge_is_refund", "block_contents": "indicator = 1 if type = refund"}, "doc.yoda.analytics___sms_stg__email_charge_sms_user_id": {"name": "analytics___sms_stg__email_charge_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__email_charge/analytics___sms_stg__email_charge.md", "unique_id": "doc.yoda.analytics___sms_stg__email_charge_sms_user_id", "block_contents": ""}, "doc.yoda.analytics___sms_stg__event": {"name": "analytics___sms_stg__event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.md", "unique_id": "doc.yoda.analytics___sms_stg__event", "block_contents": "Modeled table of sms automation events | Granularity & Primary Key: event_id"}, "doc.yoda.analytics___sms_stg__event_dwh_updated_at": {"name": "analytics___sms_stg__event_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.md", "unique_id": "doc.yoda.analytics___sms_stg__event_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms_stg__event_event_id": {"name": "analytics___sms_stg__event_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.md", "unique_id": "doc.yoda.analytics___sms_stg__event_event_id", "block_contents": "automation event unique identifier - primary key"}, "doc.yoda.analytics___sms_stg__event_is_logical_deleted": {"name": "analytics___sms_stg__event_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event/analytics___sms_stg__event.md", "unique_id": "doc.yoda.analytics___sms_stg__event_is_logical_deleted", "block_contents": "deletion indicator"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking": {"name": "analytics___sms_stg__event_deletion_tracking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking", "block_contents": "An Incremental table of sms automation events with the purpose to keep the history content of deleted events at the source table | Granularity & Primary Key: event_id, is_logical_deleted"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_created_at": {"name": "analytics___sms_stg__event_deletion_tracking_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_created_date": {"name": "analytics___sms_stg__event_deletion_tracking_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_dwh_updated_at": {"name": "analytics___sms_stg__event_deletion_tracking_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_event_id": {"name": "analytics___sms_stg__event_deletion_tracking_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_event_id", "block_contents": "automation event unique identifier - primary key 1/2"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_event_name": {"name": "analytics___sms_stg__event_deletion_tracking_event_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_event_name", "block_contents": "event name: Abandon Cart, Subscription, etc."}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_is_enabled": {"name": "analytics___sms_stg__event_deletion_tracking_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_is_enabled", "block_contents": "event enablement status indicator"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_is_logical_deleted": {"name": "analytics___sms_stg__event_deletion_tracking_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_is_logical_deleted", "block_contents": "is_logical_deleted - deletion indicator - primary key 2/2"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_modified_at": {"name": "analytics___sms_stg__event_deletion_tracking_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_modified_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_modified_date": {"name": "analytics___sms_stg__event_deletion_tracking_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_platform_name": {"name": "analytics___sms_stg__event_deletion_tracking_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_platform_name", "block_contents": "generic, shopify, bigcommerce, magento"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_settings": {"name": "analytics___sms_stg__event_deletion_tracking_settings", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_settings", "block_contents": "the event's data: message, SiteName, etc."}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_sms_user_id": {"name": "analytics___sms_stg__event_deletion_tracking_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms_stg__event_deletion_tracking_webhook": {"name": "analytics___sms_stg__event_deletion_tracking_webhook", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__event_deletion_tracking/analytics___sms_stg__event_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__event_deletion_tracking_webhook", "block_contents": "webhook: keyword/subscription, orders/paid, integrations/smile_referral, etc."}, "doc.yoda.analytics___sms_stg__flow": {"name": "analytics___sms_stg__flow", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.md", "unique_id": "doc.yoda.analytics___sms_stg__flow", "block_contents": "Modeled table of sms flows | Granularity & Primary Key: flow_id"}, "doc.yoda.analytics___sms_stg__flow_dwh_updated_at": {"name": "analytics___sms_stg__flow_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms_stg__flow_flow_id": {"name": "analytics___sms_stg__flow_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_flow_id", "block_contents": "flow unique identifier - primary key"}, "doc.yoda.analytics___sms_stg__flow_is_logical_deleted": {"name": "analytics___sms_stg__flow_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow/analytics___sms_stg__flow.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_is_logical_deleted", "block_contents": "is_logical_deleted - deletion indicator"}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking": {"name": "analytics___sms_stg__flow_deletion_tracking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking", "block_contents": "Incremental table of sms flows with the purpose to keep the history content of deleted flows at the source table | \nGranularity & Primary Key: flow_id, is_logical_deleted"}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_created_at": {"name": "analytics___sms_stg__flow_deletion_tracking_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_created_date": {"name": "analytics___sms_stg__flow_deletion_tracking_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_dwh_updated_at": {"name": "analytics___sms_stg__flow_deletion_tracking_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_flow_id": {"name": "analytics___sms_stg__flow_deletion_tracking_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_flow_id", "block_contents": "automation flow unique identifier - primary key 1/2"}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_flow_name": {"name": "analytics___sms_stg__flow_deletion_tracking_flow_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_flow_name", "block_contents": "flow name: Shipping Confirmation, abandoned checkouts, etc."}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_flow_settings": {"name": "analytics___sms_stg__flow_deletion_tracking_flow_settings", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_flow_settings", "block_contents": "flow's data: discount_type, message, embed_in_url, etc."}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_flow_trigger": {"name": "analytics___sms_stg__flow_deletion_tracking_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_flow_trigger", "block_contents": "flow's trigger: product/viewed, orders/paid, etc."}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_is_enabled": {"name": "analytics___sms_stg__flow_deletion_tracking_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_is_enabled", "block_contents": "flow enablement status indicator"}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_is_logical_deleted": {"name": "analytics___sms_stg__flow_deletion_tracking_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_is_logical_deleted", "block_contents": "is_logical_deleted - deletion indicator - primary key 2/2"}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_modified_at": {"name": "analytics___sms_stg__flow_deletion_tracking_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_modified_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_modified_date": {"name": "analytics___sms_stg__flow_deletion_tracking_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_platform_name": {"name": "analytics___sms_stg__flow_deletion_tracking_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_platform_name", "block_contents": "platform name: shopify, bigcommerce, magento, etc."}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_sms_user_id": {"name": "analytics___sms_stg__flow_deletion_tracking_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms_stg__flow_deletion_tracking_snapshot_id": {"name": "analytics___sms_stg__flow_deletion_tracking_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__flow_deletion_tracking/analytics___sms_stg__flow_deletion_tracking.md", "unique_id": "doc.yoda.analytics___sms_stg__flow_deletion_tracking_snapshot_id", "block_contents": "snapshot id"}, "doc.yoda.analytics___sms_stg__form": {"name": "analytics___sms_stg__form", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form", "block_contents": "Modeled table of sms forms | Granularity & Primary Key: form_id"}, "doc.yoda.analytics___sms_stg__form_created_at": {"name": "analytics___sms_stg__form_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__form_created_date": {"name": "analytics___sms_stg__form_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__form_form_id": {"name": "analytics___sms_stg__form_form_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_form_id", "block_contents": "unique identifier of form - primary key"}, "doc.yoda.analytics___sms_stg__form_is_dynamic_popup": {"name": "analytics___sms_stg__form_is_dynamic_popup", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_is_dynamic_popup", "block_contents": "indicator for popups if dynamic/static popup, will be 0 if not a popup"}, "doc.yoda.analytics___sms_stg__form_is_logical_deleted": {"name": "analytics___sms_stg__form_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_is_logical_deleted", "block_contents": "is logical deleted"}, "doc.yoda.analytics___sms_stg__form_modifed_at": {"name": "analytics___sms_stg__form_modifed_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_modifed_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms_stg__form_modified_date": {"name": "analytics___sms_stg__form_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__form_name": {"name": "analytics___sms_stg__form_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_name", "block_contents": "free text name of form"}, "doc.yoda.analytics___sms_stg__form_platform_name": {"name": "analytics___sms_stg__form_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_platform_name", "block_contents": "platform name"}, "doc.yoda.analytics___sms_stg__form_settings": {"name": "analytics___sms_stg__form_settings", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_settings", "block_contents": "JSON containing all form settings"}, "doc.yoda.analytics___sms_stg__form_sms_user_id": {"name": "analytics___sms_stg__form_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_sms_user_id", "block_contents": "sms user id"}, "doc.yoda.analytics___sms_stg__form_status": {"name": "analytics___sms_stg__form_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_status", "block_contents": "status of form: draft or published"}, "doc.yoda.analytics___sms_stg__form_type": {"name": "analytics___sms_stg__form_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__form/analytics___sms_stg__form.md", "unique_id": "doc.yoda.analytics___sms_stg__form_type", "block_contents": "type of form: popup, floating button etc."}, "doc.yoda.analytics___sms_stg__free_credit_log": {"name": "analytics___sms_stg__free_credit_log", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_log", "block_contents": "Modeled table of sms free_credits_log | Granularity & Primary Key: free_credit_log_id"}, "doc.yoda.analytics___sms_stg__free_credit_log_amount": {"name": "analytics___sms_stg__free_credit_log_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_log_amount", "block_contents": "amount of free credits in usd"}, "doc.yoda.analytics___sms_stg__free_credit_log_created_at": {"name": "analytics___sms_stg__free_credit_log_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_log_created_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__free_credit_log_created_date": {"name": "analytics___sms_stg__free_credit_log_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_log_created_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__free_credit_log_free_credit_log_id": {"name": "analytics___sms_stg__free_credit_log_free_credit_log_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_log_free_credit_log_id", "block_contents": "PK"}, "doc.yoda.analytics___sms_stg__free_credit_log_is_logical_deleted": {"name": "analytics___sms_stg__free_credit_log_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_log_is_logical_deleted", "block_contents": ""}, "doc.yoda.analytics___sms_stg__free_credit_log_sms_user_id": {"name": "analytics___sms_stg__free_credit_log_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_log_sms_user_id", "block_contents": ""}, "doc.yoda.analytics___sms_stg__free_credit_log_source_name": {"name": "analytics___sms_stg__free_credit_log_source_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_log_source_name", "block_contents": "source_name,popup_forms,integrations,onboarding, etc.."}, "doc.yoda.analytics___sms_stg__free_credit_log_store_name": {"name": "analytics___sms_stg__free_credit_log_store_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__free_credit_log/analytics___sms_stg__free_credit_log.md", "unique_id": "doc.yoda.analytics___sms_stg__free_credit_log_store_name", "block_contents": ""}, "doc.yoda.analytics___sms_stg__list": {"name": "analytics___sms_stg__list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "unique_id": "doc.yoda.analytics___sms_stg__list", "block_contents": "Modeled view of sms lists | Granularity & Primary Key: list_id"}, "doc.yoda.analytics___sms_stg__list_created_at": {"name": "analytics___sms_stg__list_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "unique_id": "doc.yoda.analytics___sms_stg__list_created_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__list_created_date": {"name": "analytics___sms_stg__list_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "unique_id": "doc.yoda.analytics___sms_stg__list_created_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__list_is_email_list": {"name": "analytics___sms_stg__list_is_email_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "unique_id": "doc.yoda.analytics___sms_stg__list_is_email_list", "block_contents": "list includes email-related conditions indicator - 0/1"}, "doc.yoda.analytics___sms_stg__list_is_hidden": {"name": "analytics___sms_stg__list_is_hidden", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "unique_id": "doc.yoda.analytics___sms_stg__list_is_hidden", "block_contents": "list hidden in customer B2B indicator - 0/1"}, "doc.yoda.analytics___sms_stg__list_list_id": {"name": "analytics___sms_stg__list_list_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "unique_id": "doc.yoda.analytics___sms_stg__list_list_id", "block_contents": "list id - primary key"}, "doc.yoda.analytics___sms_stg__list_list_name": {"name": "analytics___sms_stg__list_list_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "unique_id": "doc.yoda.analytics___sms_stg__list_list_name", "block_contents": ""}, "doc.yoda.analytics___sms_stg__list_modified_at": {"name": "analytics___sms_stg__list_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "unique_id": "doc.yoda.analytics___sms_stg__list_modified_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__list_modified_date": {"name": "analytics___sms_stg__list_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "unique_id": "doc.yoda.analytics___sms_stg__list_modified_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__list_segment_id": {"name": "analytics___sms_stg__list_segment_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "unique_id": "doc.yoda.analytics___sms_stg__list_segment_id", "block_contents": "when this is a segment, indicates the segment id"}, "doc.yoda.analytics___sms_stg__list_sms_user_id": {"name": "analytics___sms_stg__list_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__list/analytics___sms_stg__list.md", "unique_id": "doc.yoda.analytics___sms_stg__list_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms_stg__loyalty_flow": {"name": "analytics___sms_stg__loyalty_flow", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.md", "unique_id": "doc.yoda.analytics___sms_stg__loyalty_flow", "block_contents": "Modeled view of sms loyalty flows | Granularity & Primary Key: flow_id"}, "doc.yoda.analytics___sms_stg__loyalty_flow_filter_patterns": {"name": "analytics___sms_stg__loyalty_flow_filter_patterns", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.md", "unique_id": "doc.yoda.analytics___sms_stg__loyalty_flow_filter_patterns", "block_contents": "the filter patterns of the flow's settings"}, "doc.yoda.analytics___sms_stg__loyalty_flow_flow_id": {"name": "analytics___sms_stg__loyalty_flow_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.md", "unique_id": "doc.yoda.analytics___sms_stg__loyalty_flow_flow_id", "block_contents": "flow unique identifier - primary key"}, "doc.yoda.analytics___sms_stg__loyalty_flow_flow_trigger": {"name": "analytics___sms_stg__loyalty_flow_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.md", "unique_id": "doc.yoda.analytics___sms_stg__loyalty_flow_flow_trigger", "block_contents": "flow's trigger: product/viewed, orders/paid, etc."}, "doc.yoda.analytics___sms_stg__loyalty_flow_sms_user_id": {"name": "analytics___sms_stg__loyalty_flow_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__loyalty_flow/analytics___sms_stg__loyalty_flow.md", "unique_id": "doc.yoda.analytics___sms_stg__loyalty_flow_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms_stg__organization_identifier_conversion": {"name": "analytics___sms_stg__organization_identifier_conversion", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "unique_id": "doc.yoda.analytics___sms_stg__organization_identifier_conversion", "block_contents": "Modeled view with conversion of organization id to organization key | Granularity & Primary Key: organization_id"}, "doc.yoda.analytics___sms_stg__organization_identifier_conversion_created_at": {"name": "analytics___sms_stg__organization_identifier_conversion_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "unique_id": "doc.yoda.analytics___sms_stg__organization_identifier_conversion_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__organization_identifier_conversion_created_date": {"name": "analytics___sms_stg__organization_identifier_conversion_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "unique_id": "doc.yoda.analytics___sms_stg__organization_identifier_conversion_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__organization_identifier_conversion_is_logical_deleted": {"name": "analytics___sms_stg__organization_identifier_conversion_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "unique_id": "doc.yoda.analytics___sms_stg__organization_identifier_conversion_is_logical_deleted", "block_contents": "logical deleted indicator: 0/1"}, "doc.yoda.analytics___sms_stg__organization_identifier_conversion_modified_at": {"name": "analytics___sms_stg__organization_identifier_conversion_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "unique_id": "doc.yoda.analytics___sms_stg__organization_identifier_conversion_modified_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms_stg__organization_identifier_conversion_modified_date": {"name": "analytics___sms_stg__organization_identifier_conversion_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "unique_id": "doc.yoda.analytics___sms_stg__organization_identifier_conversion_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__organization_identifier_conversion_organization_id": {"name": "analytics___sms_stg__organization_identifier_conversion_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "unique_id": "doc.yoda.analytics___sms_stg__organization_identifier_conversion_organization_id", "block_contents": "organization identifier - primary key"}, "doc.yoda.analytics___sms_stg__organization_identifier_conversion_organization_key": {"name": "analytics___sms_stg__organization_identifier_conversion_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "unique_id": "doc.yoda.analytics___sms_stg__organization_identifier_conversion_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___sms_stg__organization_identifier_conversion_organization_name": {"name": "analytics___sms_stg__organization_identifier_conversion_organization_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__organization_identifier_conversion/analytics___sms_stg__organization_identifier_conversion.md", "unique_id": "doc.yoda.analytics___sms_stg__organization_identifier_conversion_organization_name", "block_contents": "organization name"}, "doc.yoda.analytics___sms_stg__plan": {"name": "analytics___sms_stg__plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan", "block_contents": "Modeled view of sms plans | Granularity & Primary Key: plan_id"}, "doc.yoda.analytics___sms_stg__plan_bonus_credits_in_usd": {"name": "analytics___sms_stg__plan_bonus_credits_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_bonus_credits_in_usd", "block_contents": "sms bonus credits in usd"}, "doc.yoda.analytics___sms_stg__plan_created_at": {"name": "analytics___sms_stg__plan_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__plan_created_date": {"name": "analytics___sms_stg__plan_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__plan_display_name": {"name": "analytics___sms_stg__plan_display_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_display_name", "block_contents": "TODO: Update Column {col_name} Informationplan display name: Powerhouse Plus, Enterprise Plus, etc."}, "doc.yoda.analytics___sms_stg__plan_is_logical_deleted": {"name": "analytics___sms_stg__plan_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_is_logical_deleted", "block_contents": "logical deleted indicator: 0/1"}, "doc.yoda.analytics___sms_stg__plan_is_validation_status": {"name": "analytics___sms_stg__plan_is_validation_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_is_validation_status", "block_contents": "plan validation indicator: 0/1"}, "doc.yoda.analytics___sms_stg__plan_is_visible_app": {"name": "analytics___sms_stg__plan_is_visible_app", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_is_visible_app", "block_contents": "visible app indicator: 0/1"}, "doc.yoda.analytics___sms_stg__plan_is_visible_site": {"name": "analytics___sms_stg__plan_is_visible_site", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_is_visible_site", "block_contents": "visible site indicator: 0/1"}, "doc.yoda.analytics___sms_stg__plan_modified_at": {"name": "analytics___sms_stg__plan_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_modified_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms_stg__plan_modified_date": {"name": "analytics___sms_stg__plan_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__plan_plan_id": {"name": "analytics___sms_stg__plan_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_plan_id", "block_contents": "sms plan unique identifier - primary key"}, "doc.yoda.analytics___sms_stg__plan_plan_key": {"name": "analytics___sms_stg__plan_plan_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_plan_key", "block_contents": "plan key: growth, powerhouse, smsbump-plus, etc."}, "doc.yoda.analytics___sms_stg__plan_plan_name": {"name": "analytics___sms_stg__plan_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_plan_name", "block_contents": "sms plan name: Powerhouse Plus, Powerhouse Max, Powerhouse Monthly, etc."}, "doc.yoda.analytics___sms_stg__plan_plan_period": {"name": "analytics___sms_stg__plan_plan_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_plan_period", "block_contents": "plan period: monthly, annually"}, "doc.yoda.analytics___sms_stg__plan_plan_type": {"name": "analytics___sms_stg__plan_plan_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_plan_type", "block_contents": "plan type: self_service, high_touch"}, "doc.yoda.analytics___sms_stg__plan_plan_type_group": {"name": "analytics___sms_stg__plan_plan_type_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_plan_type_group", "block_contents": "plan type group: self_service, high_touch and free"}, "doc.yoda.analytics___sms_stg__plan_plan_type_ht_lt": {"name": "analytics___sms_stg__plan_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_plan_type_ht_lt", "block_contents": "plan customer type: HT/LT"}, "doc.yoda.analytics___sms_stg__plan_platform_names": {"name": "analytics___sms_stg__plan_platform_names", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_platform_names", "block_contents": "plans platforms: all, shopify, etc."}, "doc.yoda.analytics___sms_stg__plan_price_in_usd": {"name": "analytics___sms_stg__plan_price_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_price_in_usd", "block_contents": "sms plan price in usd"}, "doc.yoda.analytics___sms_stg__plan_sub_title": {"name": "analytics___sms_stg__plan_sub_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__plan/analytics___sms_stg__plan.md", "unique_id": "doc.yoda.analytics___sms_stg__plan_sub_title", "block_contents": "plan sub title, e.g: Deeply customizable SMS solution with superior dedicated services"}, "doc.yoda.analytics___sms_stg__purchase": {"name": "analytics___sms_stg__purchase", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase", "block_contents": "Modeled table of sms purchases | Granularity & Primary Key: purchase_id"}, "doc.yoda.analytics___sms_stg__purchase_amount_added": {"name": "analytics___sms_stg__purchase_amount_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_amount_added", "block_contents": "amount added to user balance, may be different than amount paid"}, "doc.yoda.analytics___sms_stg__purchase_amount_paid": {"name": "analytics___sms_stg__purchase_amount_paid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_amount_paid", "block_contents": "amount paid by user"}, "doc.yoda.analytics___sms_stg__purchase_created_at": {"name": "analytics___sms_stg__purchase_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_created_at", "block_contents": "creation timestamp, better to use modified"}, "doc.yoda.analytics___sms_stg__purchase_created_date": {"name": "analytics___sms_stg__purchase_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__purchase_gateway": {"name": "analytics___sms_stg__purchase_gateway", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_gateway", "block_contents": "where the funds went through: shopify, zuora, paypal etc."}, "doc.yoda.analytics___sms_stg__purchase_is_activation_perk": {"name": "analytics___sms_stg__purchase_is_activation_perk", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_is_activation_perk", "block_contents": "if indicator = 1 we will take the activation perk from free_credit_log"}, "doc.yoda.analytics___sms_stg__purchase_is_admin_perk": {"name": "analytics___sms_stg__purchase_is_admin_perk", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_is_admin_perk", "block_contents": "indicator = 1 when purchase is considered 'Admin' AS credit_type in free_credit_details"}, "doc.yoda.analytics___sms_stg__purchase_is_customer_marketing_bonus": {"name": "analytics___sms_stg__purchase_is_customer_marketing_bonus", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_is_customer_marketing_bonus", "block_contents": "indicator = 1 when purchase is considered 'Customer Marketing' AS credit_type in free_credit_details"}, "doc.yoda.analytics___sms_stg__purchase_is_gateway_admin_manual": {"name": "analytics___sms_stg__purchase_is_gateway_admin_manual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_is_gateway_admin_manual", "block_contents": ""}, "doc.yoda.analytics___sms_stg__purchase_is_logical_deleted": {"name": "analytics___sms_stg__purchase_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_is_logical_deleted", "block_contents": "is logical deleted"}, "doc.yoda.analytics___sms_stg__purchase_is_purchase": {"name": "analytics___sms_stg__purchase_is_purchase", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_is_purchase", "block_contents": "indicator for calculating daily credit purchases in analytics___sms__store_metrics_daily"}, "doc.yoda.analytics___sms_stg__purchase_is_purchase_bonus": {"name": "analytics___sms_stg__purchase_is_purchase_bonus", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_is_purchase_bonus", "block_contents": "indicator = 1 when purchase is considered 'Purchase Bonus' AS credit_type in free_credit_details"}, "doc.yoda.analytics___sms_stg__purchase_is_saas_fee_bonus": {"name": "analytics___sms_stg__purchase_is_saas_fee_bonus", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_is_saas_fee_bonus", "block_contents": "indicator = 1 when purchase is considered 'Saas Fee Bonus' AS credit_type in free_credit_details"}, "doc.yoda.analytics___sms_stg__purchase_is_signup_bonus": {"name": "analytics___sms_stg__purchase_is_signup_bonus", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_is_signup_bonus", "block_contents": "indicator = 1 when purchase is considered 'Sign-up Bonus' AS credit_type in free_credit_details"}, "doc.yoda.analytics___sms_stg__purchase_is_status_paid": {"name": "analytics___sms_stg__purchase_is_status_paid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_is_status_paid", "block_contents": "LOWER(status) = 'paid'"}, "doc.yoda.analytics___sms_stg__purchase_is_status_refund": {"name": "analytics___sms_stg__purchase_is_status_refund", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_is_status_refund", "block_contents": "LOWER(status) = 'refund'"}, "doc.yoda.analytics___sms_stg__purchase_manual_action_type": {"name": "analytics___sms_stg__purchase_manual_action_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_manual_action_type", "block_contents": "type of manual action: Yotpo - Signup - Bonus, refund etc."}, "doc.yoda.analytics___sms_stg__purchase_modifed_at": {"name": "analytics___sms_stg__purchase_modifed_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_modifed_at", "block_contents": "modification timestamp, better to use this than created_at"}, "doc.yoda.analytics___sms_stg__purchase_modified_date": {"name": "analytics___sms_stg__purchase_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__purchase_notes": {"name": "analytics___sms_stg__purchase_notes", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_notes", "block_contents": "free text explanation of the purchase"}, "doc.yoda.analytics___sms_stg__purchase_platform_name": {"name": "analytics___sms_stg__purchase_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_platform_name", "block_contents": "platform where purchase was made"}, "doc.yoda.analytics___sms_stg__purchase_purchase_id": {"name": "analytics___sms_stg__purchase_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_purchase_id", "block_contents": "unique identifier of purchase - primary key"}, "doc.yoda.analytics___sms_stg__purchase_purchase_source": {"name": "analytics___sms_stg__purchase_purchase_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_purchase_source", "block_contents": "category: paypal,other,shopify,zuora,admin-manual"}, "doc.yoda.analytics___sms_stg__purchase_sms_user_id": {"name": "analytics___sms_stg__purchase_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_sms_user_id", "block_contents": "sms user id"}, "doc.yoda.analytics___sms_stg__purchase_status": {"name": "analytics___sms_stg__purchase_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_status", "block_contents": "status of the purchase: Paid, Not Paid etc."}, "doc.yoda.analytics___sms_stg__purchase_type": {"name": "analytics___sms_stg__purchase_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__purchase/analytics___sms_stg__purchase.md", "unique_id": "doc.yoda.analytics___sms_stg__purchase_type", "block_contents": "type of purchase: sign_up_credits, onboarding-bounty, bonus etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign": {"name": "analytics___sms_stg__segment_sms_campaign", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign", "block_contents": "A view of scheduling/sending SMS campaigns segment events | Granularity & Primary Key: message_id, created_at"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_ab_test_group_size": {"name": "analytics___sms_stg__segment_sms_campaign_ab_test_group_size", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_ab_test_group_size", "block_contents": "ab test group size: A, B, C, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_ab_test_number_of_test_groups": {"name": "analytics___sms_stg__segment_sms_campaign_ab_test_number_of_test_groups", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_ab_test_number_of_test_groups", "block_contents": "ab test number of groups"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_ab_test_period": {"name": "analytics___sms_stg__segment_sms_campaign_ab_test_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_ab_test_period", "block_contents": "ab test period: minute, hour day, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_ab_test_winning_metric": {"name": "analytics___sms_stg__segment_sms_campaign_ab_test_winning_metric", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_ab_test_winning_metric", "block_contents": "ab test winning metric: clicks, revenue, orders, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_admin_user_name": {"name": "analytics___sms_stg__segment_sms_campaign_admin_user_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_admin_user_name", "block_contents": "admin user name"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_all_products_plans": {"name": "analytics___sms_stg__segment_sms_campaign_all_products_plans", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_all_products_plans", "block_contents": "all products plans"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_anonymous_id": {"name": "analytics___sms_stg__segment_sms_campaign_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_anonymous_id", "block_contents": "unique identifier of the segment user"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_app_key": {"name": "analytics___sms_stg__segment_sms_campaign_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_app_key", "block_contents": "store unique identifier"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_campaign_audience_size": {"name": "analytics___sms_stg__segment_sms_campaign_campaign_audience_size", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_campaign_audience_size", "block_contents": "campaign audience size: S, M, L, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_campaign_id": {"name": "analytics___sms_stg__segment_sms_campaign_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_campaign_id", "block_contents": "campaign unique identifier"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_campaign_row_cnt": {"name": "analytics___sms_stg__segment_sms_campaign_campaign_row_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_campaign_row_cnt", "block_contents": "number of rows per campaign"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_campaign_row_ranking_backwards": {"name": "analytics___sms_stg__segment_sms_campaign_campaign_row_ranking_backwards", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_campaign_row_ranking_backwards", "block_contents": "row ranking for each campaign_id by created_at (i.e, 1 is the last row for each campaign_id)"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_created_at": {"name": "analytics___sms_stg__segment_sms_campaign_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_created_at", "block_contents": "event creation timestamp - primary key 2/2"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_created_date": {"name": "analytics___sms_stg__segment_sms_campaign_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_created_date", "block_contents": "event creation date"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_ab_testing": {"name": "analytics___sms_stg__segment_sms_campaign_is_ab_testing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_ab_testing", "block_contents": "ab testing indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_click_to_buy_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_click_to_buy_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_click_to_buy_added", "block_contents": "click to buy added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_content_edited": {"name": "analytics___sms_stg__segment_sms_campaign_is_content_edited", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_content_edited", "block_contents": "content edited indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_custom_name": {"name": "analytics___sms_stg__segment_sms_campaign_is_custom_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_custom_name", "block_contents": "custom name indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_date_changed": {"name": "analytics___sms_stg__segment_sms_campaign_is_date_changed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_date_changed", "block_contents": "date changed indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_desktop": {"name": "analytics___sms_stg__segment_sms_campaign_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_desktop", "block_contents": "desktop indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_discount_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_discount_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_discount_added", "block_contents": "discount added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_discount_code_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_discount_code_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_discount_code_added", "block_contents": "discount code added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_discount_url_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_discount_url_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_discount_url_added", "block_contents": "discount url added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_discount_value_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_discount_value_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_discount_value_added", "block_contents": "discount value added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_emoji_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_emoji_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_emoji_added", "block_contents": "emoji added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_excluded_audience": {"name": "analytics___sms_stg__segment_sms_campaign_is_excluded_audience", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_excluded_audience", "block_contents": "excluded audience indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_first_name_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_first_name_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_first_name_added", "block_contents": "first name added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_has_lists": {"name": "analytics___sms_stg__segment_sms_campaign_is_has_lists", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_has_lists", "block_contents": "has lists indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_has_loyalty_segments": {"name": "analytics___sms_stg__segment_sms_campaign_is_has_loyalty_segments", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_has_loyalty_segments", "block_contents": "has loyalty segments indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_has_predictive_segments": {"name": "analytics___sms_stg__segment_sms_campaign_is_has_predictive_segments", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_has_predictive_segments", "block_contents": "has predictive segments indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_has_reviews_segments": {"name": "analytics___sms_stg__segment_sms_campaign_is_has_reviews_segments", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_has_reviews_segments", "block_contents": "has reviews segments indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_image_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_image_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_image_added", "block_contents": "image added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_internal_user": {"name": "analytics___sms_stg__segment_sms_campaign_is_internal_user", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_internal_user", "block_contents": "internal user indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_last_name_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_last_name_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_last_name_added", "block_contents": "last name added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_loyalty_short_code_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_loyalty_short_code_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_loyalty_short_code_added", "block_contents": "loyalty short code added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_mobile": {"name": "analytics___sms_stg__segment_sms_campaign_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_mobile", "block_contents": "mobile indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_reviews_short_code_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_reviews_short_code_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_reviews_short_code_added", "block_contents": "use of reviews short code indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_scheduled": {"name": "analytics___sms_stg__segment_sms_campaign_is_scheduled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_scheduled", "block_contents": "scheduled indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_site_name_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_site_name_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_site_name_added", "block_contents": "site name added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_site_url_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_site_url_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_site_url_added", "block_contents": "site url added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_smart_sending": {"name": "analytics___sms_stg__segment_sms_campaign_is_smart_sending", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_smart_sending", "block_contents": "smart sending indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_tablet": {"name": "analytics___sms_stg__segment_sms_campaign_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_tablet", "block_contents": "tablet indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_text_to_buy_added": {"name": "analytics___sms_stg__segment_sms_campaign_is_text_to_buy_added", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_text_to_buy_added", "block_contents": "text to buy added indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_timezonebased": {"name": "analytics___sms_stg__segment_sms_campaign_is_timezonebased", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_timezonebased", "block_contents": "use of customer timezone based indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_active_buyers": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_active_buyers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_active_buyers", "block_contents": "use of predefined segments active buyers indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_all_email_subs": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_all_email_subs", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_all_email_subs", "block_contents": "use of predefined segments all email subscribers indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_churn_risk": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_churn_risk", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_churn_risk", "block_contents": "use of predefined segments churn risk indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_email_converted_subs_7d": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_email_converted_subs_7d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_email_converted_subs_7d", "block_contents": "use of predefined segments email converted subscribers last 7 days indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_enagaged_email_subs_30d": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_enagaged_email_subs_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_enagaged_email_subs_30d", "block_contents": "use of predefined segments enagaged email subscirbers last 30 days indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_engaged_email_subs_30d": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_engaged_email_subs_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_engaged_email_subs_30d", "block_contents": "use of engaged email subscribers last 30 days indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_havent_purchased_month": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_havent_purchased_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_havent_purchased_month", "block_contents": "use of predefined segments havent purchased since last month indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_potential_buyers": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_potential_buyers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_potential_buyers", "block_contents": "use of predefined segments potential buyers indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_purchases_by_email_subs_30d": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_purchases_by_email_subs_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_purchases_by_email_subs_30d", "block_contents": "use of predefined segments purchases by email subscribers last 30 days indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_repeat_buyers": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_repeat_buyers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_repeat_buyers", "block_contents": "use of predefined segments repeat buyers indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_sms_converted_subs_7d": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_sms_converted_subs_7d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_sms_converted_subs_7d", "block_contents": "use of predefined segments sms converted subscribers last 7 days indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_sms_engaged_subs": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_sms_engaged_subs", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_sms_engaged_subs", "block_contents": "use of predefined segments sms engaged subscribers indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_soft_bounced_subs_7d": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_soft_bounced_subs_7d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_soft_bounced_subs_7d", "block_contents": "use of predefined segments soft bounced subscribers last 7 days indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_subs_not_purchased": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_subs_not_purchased", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_subs_not_purchased", "block_contents": "use of predefined segments subscribers not purchased indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_text_marketing_list": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_text_marketing_list", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_text_marketing_list", "block_contents": "use of predefined segments text marketing list indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_top_1_spenders": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_top_1_spenders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_top_1_spenders", "block_contents": "use of predefined segments top 1 spenders indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_topspenders": {"name": "analytics___sms_stg__segment_sms_campaign_is_used_topspenders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_used_topspenders", "block_contents": "use of predefined segments top spenders indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_violated_event": {"name": "analytics___sms_stg__segment_sms_campaign_is_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_is_violated_event", "block_contents": "violated event indicator: 0/1"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_loyalty_plan_name": {"name": "analytics___sms_stg__segment_sms_campaign_loyalty_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_loyalty_plan_name", "block_contents": "loyalty_plan: Loyalty - Enterprise, Loyalty - Platinum, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_message_id": {"name": "analytics___sms_stg__segment_sms_campaign_message_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_message_id", "block_contents": "sms message unique identifier - primary key 1/2"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_organization_id": {"name": "analytics___sms_stg__segment_sms_campaign_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_organization_id", "block_contents": "organization id"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_organization_key": {"name": "analytics___sms_stg__segment_sms_campaign_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_organization_key", "block_contents": "organization key"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_page_referrer_url": {"name": "analytics___sms_stg__segment_sms_campaign_page_referrer_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_page_referrer_url", "block_contents": "referrer url page, e.g: https://visual.yotpo.com/"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_page_url": {"name": "analytics___sms_stg__segment_sms_campaign_page_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_page_url", "block_contents": "the event's url page, e.g: https://smsbump.yotpo.com/sms/text-marketing/campaign-preview"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_plans_categories": {"name": "analytics___sms_stg__segment_sms_campaign_plans_categories", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_plans_categories", "block_contents": "yotpo's products with a plan"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_platform_name": {"name": "analytics___sms_stg__segment_sms_campaign_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_platform_name", "block_contents": "platform name: shopify, magento, bigcommerce, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_platform_plan": {"name": "analytics___sms_stg__segment_sms_campaign_platform_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_platform_plan", "block_contents": "platform plan: frozen, basic, affiliate, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_reviews_plan_name": {"name": "analytics___sms_stg__segment_sms_campaign_reviews_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_reviews_plan_name", "block_contents": "reviews plan: Reviews - Growth 1500, Reviews - Free, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_sms_plan_name": {"name": "analytics___sms_stg__segment_sms_campaign_sms_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_sms_plan_name", "block_contents": "sms plan: SMS - Powerhouse, SMS - Low Touch, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_sms_user_id": {"name": "analytics___sms_stg__segment_sms_campaign_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_store_platform_url_domain": {"name": "analytics___sms_stg__segment_sms_campaign_store_platform_url_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_store_platform_url_domain", "block_contents": "store platform url domain"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_store_url_domain": {"name": "analytics___sms_stg__segment_sms_campaign_store_url_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_store_url_domain", "block_contents": "the store's url domain"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_targeted_audience": {"name": "analytics___sms_stg__segment_sms_campaign_targeted_audience", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_targeted_audience", "block_contents": "targeted audience: All Customers, Specific Customers, List/Segment, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_time_chosen": {"name": "analytics___sms_stg__segment_sms_campaign_time_chosen", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_time_chosen", "block_contents": "non-recommended, default, recommended, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_used_template": {"name": "analytics___sms_stg__segment_sms_campaign_used_template", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_used_template", "block_contents": "used template: default, Sales:8, Holiday Events:58, etc."}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_user_email": {"name": "analytics___sms_stg__segment_sms_campaign_user_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_user_email", "block_contents": "user email"}, "doc.yoda.analytics___sms_stg__segment_sms_campaign_vugc_plan_name": {"name": "analytics___sms_stg__segment_sms_campaign_vugc_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__segment_sms_campaign/analytics___sms_stg__segment_sms_campaign.md", "unique_id": "doc.yoda.analytics___sms_stg__segment_sms_campaign_vugc_plan_name", "block_contents": "vugc plan: VMS - Tier2, VMS - Growth 500, etc."}, "doc.yoda.analytics___sms_stg__shopify_campaign_order": {"name": "analytics___sms_stg__shopify_campaign_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_campaign_order", "block_contents": "Modeled table of sms shopify campaign orders, with all orders attributed to campaigns | Granularity & Primary Key: order_attribution_id"}, "doc.yoda.analytics___sms_stg__shopify_campaign_order_amount_in_usd": {"name": "analytics___sms_stg__shopify_campaign_order_amount_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_campaign_order_amount_in_usd", "block_contents": "The amount of the order in USD"}, "doc.yoda.analytics___sms_stg__shopify_campaign_order_campaign_id": {"name": "analytics___sms_stg__shopify_campaign_order_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_campaign_order_campaign_id", "block_contents": "The campaign id of the attributed order"}, "doc.yoda.analytics___sms_stg__shopify_campaign_order_channel": {"name": "analytics___sms_stg__shopify_campaign_order_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_campaign_order_channel", "block_contents": "The channel of the campaign - sms or email"}, "doc.yoda.analytics___sms_stg__shopify_campaign_order_created_at": {"name": "analytics___sms_stg__shopify_campaign_order_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_campaign_order_created_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_campaign_order_created_date": {"name": "analytics___sms_stg__shopify_campaign_order_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_campaign_order_created_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_campaign_order_modified_at": {"name": "analytics___sms_stg__shopify_campaign_order_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_campaign_order_modified_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_campaign_order_modified_date": {"name": "analytics___sms_stg__shopify_campaign_order_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_campaign_order_modified_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_campaign_order_order_attribution_id": {"name": "analytics___sms_stg__shopify_campaign_order_order_attribution_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_campaign_order_order_attribution_id", "block_contents": "Primary key of the table"}, "doc.yoda.analytics___sms_stg__shopify_campaign_order_order_id": {"name": "analytics___sms_stg__shopify_campaign_order_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_campaign_order_order_id", "block_contents": "Order identifier"}, "doc.yoda.analytics___sms_stg__shopify_campaign_order_sms_user_id": {"name": "analytics___sms_stg__shopify_campaign_order_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_campaign_order/analytics___sms_stg__shopify_campaign_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_campaign_order_sms_user_id", "block_contents": "SMS user identifier"}, "doc.yoda.analytics___sms_stg__shopify_customer": {"name": "analytics___sms_stg__shopify_customer", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_customer", "block_contents": "Modeled view of sms shopify customers | Granularity & Primary Key: shopify_customer_internal_id"}, "doc.yoda.analytics___sms_stg__shopify_customer_created_at": {"name": "analytics___sms_stg__shopify_customer_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_customer_created_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_customer_created_date": {"name": "analytics___sms_stg__shopify_customer_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_customer_created_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_customer_email": {"name": "analytics___sms_stg__shopify_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_customer_email", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_customer_is_logical_deleted": {"name": "analytics___sms_stg__shopify_customer_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_customer_is_logical_deleted", "block_contents": "deletion indicator: 0/1"}, "doc.yoda.analytics___sms_stg__shopify_customer_phone_number": {"name": "analytics___sms_stg__shopify_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_customer_phone_number", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_customer_shopify_customer_external_id": {"name": "analytics___sms_stg__shopify_customer_shopify_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_customer_shopify_customer_external_id", "block_contents": "shopify customer external id"}, "doc.yoda.analytics___sms_stg__shopify_customer_shopify_customer_internal_id": {"name": "analytics___sms_stg__shopify_customer_shopify_customer_internal_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_customer_shopify_customer_internal_id", "block_contents": "shopify customer internal id - primary key"}, "doc.yoda.analytics___sms_stg__shopify_customer_sms_user_id": {"name": "analytics___sms_stg__shopify_customer_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_customer_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms_stg__shopify_customer_updated_at": {"name": "analytics___sms_stg__shopify_customer_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_customer_updated_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_customer_updated_date": {"name": "analytics___sms_stg__shopify_customer_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_customer/analytics___sms_stg__shopify_customer.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_customer_updated_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_flow_order": {"name": "analytics___sms_stg__shopify_flow_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order", "block_contents": "Modeled table of sms shopify flows orders, with all orders attributed to flows | Granularity & Primary Key: order_attribution_id"}, "doc.yoda.analytics___sms_stg__shopify_flow_order_amount_in_usd": {"name": "analytics___sms_stg__shopify_flow_order_amount_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_amount_in_usd", "block_contents": "The amount of the order in USD"}, "doc.yoda.analytics___sms_stg__shopify_flow_order_attribution_source": {"name": "analytics___sms_stg__shopify_flow_order_attribution_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_attribution_source", "block_contents": "The source of attribution"}, "doc.yoda.analytics___sms_stg__shopify_flow_order_created_at": {"name": "analytics___sms_stg__shopify_flow_order_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_created_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_flow_order_created_date": {"name": "analytics___sms_stg__shopify_flow_order_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_created_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_flow_order_customer_id": {"name": "analytics___sms_stg__shopify_flow_order_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_customer_id", "block_contents": "Customer identifier"}, "doc.yoda.analytics___sms_stg__shopify_flow_order_flow_id": {"name": "analytics___sms_stg__shopify_flow_order_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_flow_id", "block_contents": "The flow id of the attributed order"}, "doc.yoda.analytics___sms_stg__shopify_flow_order_flow_step_id": {"name": "analytics___sms_stg__shopify_flow_order_flow_step_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_flow_step_id", "block_contents": "The flow step id of the attributed order"}, "doc.yoda.analytics___sms_stg__shopify_flow_order_modified_at": {"name": "analytics___sms_stg__shopify_flow_order_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_modified_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_flow_order_modified_date": {"name": "analytics___sms_stg__shopify_flow_order_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_modified_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_flow_order_order_attribution_id": {"name": "analytics___sms_stg__shopify_flow_order_order_attribution_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_order_attribution_id", "block_contents": "Primary key of the table"}, "doc.yoda.analytics___sms_stg__shopify_flow_order_order_id": {"name": "analytics___sms_stg__shopify_flow_order_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_order_id", "block_contents": "Order identifier"}, "doc.yoda.analytics___sms_stg__shopify_flow_order_sms_user_id": {"name": "analytics___sms_stg__shopify_flow_order_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_flow_order/analytics___sms_stg__shopify_flow_order.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_flow_order_sms_user_id", "block_contents": "SMS user identifier"}, "doc.yoda.analytics___sms_stg__shopify_orders": {"name": "analytics___sms_stg__shopify_orders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders", "block_contents": "Modeled table of sms store shopify orders | Granularity & Primary Key: order_line_id"}, "doc.yoda.analytics___sms_stg__shopify_orders_balance_in_usd": {"name": "analytics___sms_stg__shopify_orders_balance_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_balance_in_usd", "block_contents": "balance in usd"}, "doc.yoda.analytics___sms_stg__shopify_orders_cancel_reason": {"name": "analytics___sms_stg__shopify_orders_cancel_reason", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_cancel_reason", "block_contents": "cancelation reason: inventory, declined, fraud, etc."}, "doc.yoda.analytics___sms_stg__shopify_orders_cancelled_at": {"name": "analytics___sms_stg__shopify_orders_cancelled_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_cancelled_at", "block_contents": "cancelation timestamp"}, "doc.yoda.analytics___sms_stg__shopify_orders_cancelled_date": {"name": "analytics___sms_stg__shopify_orders_cancelled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_cancelled_date", "block_contents": "cancelation date"}, "doc.yoda.analytics___sms_stg__shopify_orders_created_at": {"name": "analytics___sms_stg__shopify_orders_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__shopify_orders_created_date": {"name": "analytics___sms_stg__shopify_orders_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__shopify_orders_customer_id": {"name": "analytics___sms_stg__shopify_orders_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_customer_id", "block_contents": "customer identifier"}, "doc.yoda.analytics___sms_stg__shopify_orders_financial_status": {"name": "analytics___sms_stg__shopify_orders_financial_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_financial_status", "block_contents": "order financial status: paid, refunded, authorized, voided, etc."}, "doc.yoda.analytics___sms_stg__shopify_orders_first_credits_usage_at": {"name": "analytics___sms_stg__shopify_orders_first_credits_usage_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_first_credits_usage_at", "block_contents": "first credits usage timestamp"}, "doc.yoda.analytics___sms_stg__shopify_orders_fulfillment_status": {"name": "analytics___sms_stg__shopify_orders_fulfillment_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_fulfillment_status", "block_contents": "order fulfillment status: fulfilled, partial, etc."}, "doc.yoda.analytics___sms_stg__shopify_orders_is_active": {"name": "analytics___sms_stg__shopify_orders_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_is_active", "block_contents": "activeness indicator: 0/1"}, "doc.yoda.analytics___sms_stg__shopify_orders_is_auto_reload": {"name": "analytics___sms_stg__shopify_orders_is_auto_reload", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_is_auto_reload", "block_contents": "auto reload credits indication"}, "doc.yoda.analytics___sms_stg__shopify_orders_is_buyer_accepts_marketing": {"name": "analytics___sms_stg__shopify_orders_is_buyer_accepts_marketing", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_is_buyer_accepts_marketing", "block_contents": "buyer accepts marketing indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__shopify_orders_is_chat_enabled": {"name": "analytics___sms_stg__shopify_orders_is_chat_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_is_chat_enabled", "block_contents": "chat enablement indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__shopify_orders_is_logical_deleted": {"name": "analytics___sms_stg__shopify_orders_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_is_logical_deleted", "block_contents": "logical deleted indicator: 0/1"}, "doc.yoda.analytics___sms_stg__shopify_orders_is_shopify_plus": {"name": "analytics___sms_stg__shopify_orders_is_shopify_plus", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_is_shopify_plus", "block_contents": "shopify plus indicator: 0/1"}, "doc.yoda.analytics___sms_stg__shopify_orders_is_test": {"name": "analytics___sms_stg__shopify_orders_is_test", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_is_test", "block_contents": "test indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__shopify_orders_last_credits_usage_at": {"name": "analytics___sms_stg__shopify_orders_last_credits_usage_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_last_credits_usage_at", "block_contents": "last credits usage timestamp"}, "doc.yoda.analytics___sms_stg__shopify_orders_modified_at": {"name": "analytics___sms_stg__shopify_orders_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_modified_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms_stg__shopify_orders_modified_date": {"name": "analytics___sms_stg__shopify_orders_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__shopify_orders_order_id": {"name": "analytics___sms_stg__shopify_orders_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_order_id", "block_contents": "order identifier"}, "doc.yoda.analytics___sms_stg__shopify_orders_order_line_id": {"name": "analytics___sms_stg__shopify_orders_order_line_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_order_line_id", "block_contents": "order line unique identifier - primary key"}, "doc.yoda.analytics___sms_stg__shopify_orders_plan_period": {"name": "analytics___sms_stg__shopify_orders_plan_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_plan_period", "block_contents": "plan period: monthly, annually, null"}, "doc.yoda.analytics___sms_stg__shopify_orders_sms_user_id": {"name": "analytics___sms_stg__shopify_orders_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_sms_user_id", "block_contents": "yotpo sms user unique identifier"}, "doc.yoda.analytics___sms_stg__shopify_orders_total_price_in_usd": {"name": "analytics___sms_stg__shopify_orders_total_price_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_total_price_in_usd", "block_contents": "total order price in usd"}, "doc.yoda.analytics___sms_stg__shopify_orders_updated_at": {"name": "analytics___sms_stg__shopify_orders_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___sms_stg__shopify_orders_updated_date": {"name": "analytics___sms_stg__shopify_orders_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_orders/analytics___sms_stg__shopify_orders.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_orders_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___sms_stg__shopify_segment": {"name": "analytics___sms_stg__shopify_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_segment", "block_contents": "Modeled table of sms shopify segments | Granularity & Primary Key: segment_id"}, "doc.yoda.analytics___sms_stg__shopify_segment_created_at": {"name": "analytics___sms_stg__shopify_segment_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_segment_created_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_segment_created_date": {"name": "analytics___sms_stg__shopify_segment_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_segment_created_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_segment_modified_at": {"name": "analytics___sms_stg__shopify_segment_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_segment_modified_at", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_segment_modified_date": {"name": "analytics___sms_stg__shopify_segment_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_segment_modified_date", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_segment_platform": {"name": "analytics___sms_stg__shopify_segment_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_segment_platform", "block_contents": "the platform where the segment is built in"}, "doc.yoda.analytics___sms_stg__shopify_segment_segment_id": {"name": "analytics___sms_stg__shopify_segment_segment_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_segment_segment_id", "block_contents": "unique identifier of the segment - primary key"}, "doc.yoda.analytics___sms_stg__shopify_segment_segment_rules": {"name": "analytics___sms_stg__shopify_segment_segment_rules", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_segment_segment_rules", "block_contents": "full list of the segment rules"}, "doc.yoda.analytics___sms_stg__shopify_segment_sms_user_id": {"name": "analytics___sms_stg__shopify_segment_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_segment_sms_user_id", "block_contents": "sms user id"}, "doc.yoda.analytics___sms_stg__shopify_segment_update_status": {"name": "analytics___sms_stg__shopify_segment_update_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_segment/analytics___sms_stg__shopify_segment.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_segment_update_status", "block_contents": "indication of the update status of the segment"}, "doc.yoda.analytics___sms_stg__shopify_user": {"name": "analytics___sms_stg__shopify_user", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user", "block_contents": "Modeled view of shopify stores users | Granularity & Primary Key: shopify_user_id"}, "doc.yoda.analytics___sms_stg__shopify_user_abandoned_checkouts_sent": {"name": "analytics___sms_stg__shopify_user_abandoned_checkouts_sent", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_abandoned_checkouts_sent", "block_contents": "number of abandoned checkouts"}, "doc.yoda.analytics___sms_stg__shopify_user_created_at": {"name": "analytics___sms_stg__shopify_user_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__shopify_user_created_date": {"name": "analytics___sms_stg__shopify_user_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__shopify_user_is_access_token": {"name": "analytics___sms_stg__shopify_user_is_access_token", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_is_access_token", "block_contents": "store access token indication"}, "doc.yoda.analytics___sms_stg__shopify_user_is_active": {"name": "analytics___sms_stg__shopify_user_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_is_active", "block_contents": "activeness indicator: 0/1"}, "doc.yoda.analytics___sms_stg__shopify_user_is_auto_reload": {"name": "analytics___sms_stg__shopify_user_is_auto_reload", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_is_auto_reload", "block_contents": "store auto reload credits indication"}, "doc.yoda.analytics___sms_stg__shopify_user_is_connected": {"name": "analytics___sms_stg__shopify_user_is_connected", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_is_connected", "block_contents": "store connection indication"}, "doc.yoda.analytics___sms_stg__shopify_user_is_logical_deleted": {"name": "analytics___sms_stg__shopify_user_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_is_logical_deleted", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_user_is_shopify_plus": {"name": "analytics___sms_stg__shopify_user_is_shopify_plus", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_is_shopify_plus", "block_contents": "shopify plus indicator: 0/1"}, "doc.yoda.analytics___sms_stg__shopify_user_is_sync_enabled": {"name": "analytics___sms_stg__shopify_user_is_sync_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_is_sync_enabled", "block_contents": ""}, "doc.yoda.analytics___sms_stg__shopify_user_modified_at": {"name": "analytics___sms_stg__shopify_user_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_modified_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms_stg__shopify_user_modified_date": {"name": "analytics___sms_stg__shopify_user_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__shopify_user_platform_name": {"name": "analytics___sms_stg__shopify_user_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_platform_name", "block_contents": "store platform: shopify, magento, etc."}, "doc.yoda.analytics___sms_stg__shopify_user_shop_data": {"name": "analytics___sms_stg__shopify_user_shop_data", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_shop_data", "block_contents": "shop data in JSON format: logo, language, features, etc."}, "doc.yoda.analytics___sms_stg__shopify_user_shopify_plan_name": {"name": "analytics___sms_stg__shopify_user_shopify_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_shopify_plan_name", "block_contents": "shopify plan name: basic, shopify_plus, affiliate, etc."}, "doc.yoda.analytics___sms_stg__shopify_user_shopify_store_id": {"name": "analytics___sms_stg__shopify_user_shopify_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_shopify_store_id", "block_contents": "shopify store id"}, "doc.yoda.analytics___sms_stg__shopify_user_shopify_user_id": {"name": "analytics___sms_stg__shopify_user_shopify_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_shopify_user_id", "block_contents": "unique identifier of shopify user - primary key"}, "doc.yoda.analytics___sms_stg__shopify_user_sms_user_id": {"name": "analytics___sms_stg__shopify_user_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_sms_user_id", "block_contents": "yotpo sms user id"}, "doc.yoda.analytics___sms_stg__shopify_user_sms_user_id_row_rank": {"name": "analytics___sms_stg__shopify_user_sms_user_id_row_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_sms_user_id_row_rank", "block_contents": "shopify's user ranking for yotpo sms user"}, "doc.yoda.analytics___sms_stg__shopify_user_store_domain": {"name": "analytics___sms_stg__shopify_user_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_store_domain", "block_contents": "store domain name"}, "doc.yoda.analytics___sms_stg__shopify_user_store_name": {"name": "analytics___sms_stg__shopify_user_store_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__shopify_user/analytics___sms_stg__shopify_user.md", "unique_id": "doc.yoda.analytics___sms_stg__shopify_user_store_name", "block_contents": "store name"}, "doc.yoda.analytics___sms_stg__sms_user": {"name": "analytics___sms_stg__sms_user", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user", "block_contents": "Modeled view of SMS stores users | Granularity & Primary Key: sms_user_id"}, "doc.yoda.analytics___sms_stg__sms_user_affiliate_commission": {"name": "analytics___sms_stg__sms_user_affiliate_commission", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_affiliate_commission", "block_contents": "affiliate commission"}, "doc.yoda.analytics___sms_stg__sms_user_app_key": {"name": "analytics___sms_stg__sms_user_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___sms_stg__sms_user_balance_in_usd": {"name": "analytics___sms_stg__sms_user_balance_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_balance_in_usd", "block_contents": "balance in usd"}, "doc.yoda.analytics___sms_stg__sms_user_bonus_balance_in_usd": {"name": "analytics___sms_stg__sms_user_bonus_balance_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_bonus_balance_in_usd", "block_contents": "bonus balance in_usd"}, "doc.yoda.analytics___sms_stg__sms_user_cleaned_phone_number": {"name": "analytics___sms_stg__sms_user_cleaned_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_cleaned_phone_number", "block_contents": "phone number without extra characters such as \"\"+\"\" and \"\"-\"\""}, "doc.yoda.analytics___sms_stg__sms_user_created_at": {"name": "analytics___sms_stg__sms_user_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__sms_user_created_date": {"name": "analytics___sms_stg__sms_user_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__sms_user_discounted_mms_price": {"name": "analytics___sms_stg__sms_user_discounted_mms_price", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_discounted_mms_price", "block_contents": "discounted mms price"}, "doc.yoda.analytics___sms_stg__sms_user_earnings_in_usd": {"name": "analytics___sms_stg__sms_user_earnings_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_earnings_in_usd", "block_contents": "earnings in usd"}, "doc.yoda.analytics___sms_stg__sms_user_email": {"name": "analytics___sms_stg__sms_user_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_email", "block_contents": "email address"}, "doc.yoda.analytics___sms_stg__sms_user_email_validation": {"name": "analytics___sms_stg__sms_user_email_validation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_email_validation", "block_contents": "email validation"}, "doc.yoda.analytics___sms_stg__sms_user_industry_name": {"name": "analytics___sms_stg__sms_user_industry_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_industry_name", "block_contents": "industry name: jewelry, art, travel, etc."}, "doc.yoda.analytics___sms_stg__sms_user_is_agreed_terms": {"name": "analytics___sms_stg__sms_user_is_agreed_terms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_is_agreed_terms", "block_contents": "agreed terms indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__sms_user_is_ban_exclude": {"name": "analytics___sms_stg__sms_user_is_ban_exclude", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_is_ban_exclude", "block_contents": "ban exclude indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__sms_user_is_chat_enabled": {"name": "analytics___sms_stg__sms_user_is_chat_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_is_chat_enabled", "block_contents": "chat enabled indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__sms_user_is_collect_checkout_subscribers": {"name": "analytics___sms_stg__sms_user_is_collect_checkout_subscribers", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_is_collect_checkout_subscribers", "block_contents": "collect checkout subscribers indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__sms_user_is_logical_deleted": {"name": "analytics___sms_stg__sms_user_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_is_logical_deleted", "block_contents": "logical deleted indicator: 0/1"}, "doc.yoda.analytics___sms_stg__sms_user_is_onboarding_completed": {"name": "analytics___sms_stg__sms_user_is_onboarding_completed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_is_onboarding_completed", "block_contents": "onboarding completed indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__sms_user_is_partner": {"name": "analytics___sms_stg__sms_user_is_partner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_is_partner", "block_contents": "partner indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__sms_user_is_price_limit_enabled": {"name": "analytics___sms_stg__sms_user_is_price_limit_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_is_price_limit_enabled", "block_contents": "price limit enabled indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__sms_user_is_subscribed": {"name": "analytics___sms_stg__sms_user_is_subscribed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_is_subscribed", "block_contents": "subscribed indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__sms_user_is_test": {"name": "analytics___sms_stg__sms_user_is_test", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_is_test", "block_contents": "test indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__sms_user_is_whitelisted": {"name": "analytics___sms_stg__sms_user_is_whitelisted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_is_whitelisted", "block_contents": "whitelisted indicator: 0/1/null"}, "doc.yoda.analytics___sms_stg__sms_user_modified_at": {"name": "analytics___sms_stg__sms_user_modified_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_modified_at", "block_contents": "modification timestamp"}, "doc.yoda.analytics___sms_stg__sms_user_modified_date": {"name": "analytics___sms_stg__sms_user_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_modified_date", "block_contents": "modification date"}, "doc.yoda.analytics___sms_stg__sms_user_organization_id": {"name": "analytics___sms_stg__sms_user_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___sms_stg__sms_user_parent_id": {"name": "analytics___sms_stg__sms_user_parent_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_parent_id", "block_contents": "parent id"}, "doc.yoda.analytics___sms_stg__sms_user_partner_type": {"name": "analytics___sms_stg__sms_user_partner_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_partner_type", "block_contents": "partner type: agency, freelance, affiliate, etc."}, "doc.yoda.analytics___sms_stg__sms_user_payment_gateway": {"name": "analytics___sms_stg__sms_user_payment_gateway", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_payment_gateway", "block_contents": "payment gateway: paypal, shopify, zuora, etc."}, "doc.yoda.analytics___sms_stg__sms_user_phone_number": {"name": "analytics___sms_stg__sms_user_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_phone_number", "block_contents": "phone number"}, "doc.yoda.analytics___sms_stg__sms_user_plan_id": {"name": "analytics___sms_stg__sms_user_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_plan_id", "block_contents": "sms plan id"}, "doc.yoda.analytics___sms_stg__sms_user_plan_name": {"name": "analytics___sms_stg__sms_user_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_plan_name", "block_contents": "SMS plan: SMSBump, Prime, Free, Growth, etc."}, "doc.yoda.analytics___sms_stg__sms_user_plan_price_in_usd": {"name": "analytics___sms_stg__sms_user_plan_price_in_usd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_plan_price_in_usd", "block_contents": "plan price in usd"}, "doc.yoda.analytics___sms_stg__sms_user_platform_name": {"name": "analytics___sms_stg__sms_user_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_platform_name", "block_contents": "platform name: shopify, magento, woocommerce, etc."}, "doc.yoda.analytics___sms_stg__sms_user_price_limit": {"name": "analytics___sms_stg__sms_user_price_limit", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_price_limit", "block_contents": "price limit"}, "doc.yoda.analytics___sms_stg__sms_user_role_id": {"name": "analytics___sms_stg__sms_user_role_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_role_id", "block_contents": "role id"}, "doc.yoda.analytics___sms_stg__sms_user_role_name": {"name": "analytics___sms_stg__sms_user_role_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_role_name", "block_contents": "role description: support, admin, blogger, etc."}, "doc.yoda.analytics___sms_stg__sms_user_row_ranking_for_store": {"name": "analytics___sms_stg__sms_user_row_ranking_for_store", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_row_ranking_for_store", "block_contents": "ranking of sms user for yotpo app key. this column handle recurring duplication error in the source data where there are several users for the same store."}, "doc.yoda.analytics___sms_stg__sms_user_sms_user_id": {"name": "analytics___sms_stg__sms_user_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_sms_user_id", "block_contents": "unique identifier of yotpo sms user - primary key"}, "doc.yoda.analytics___sms_stg__sms_user_timezone": {"name": "analytics___sms_stg__sms_user_timezone", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_timezone", "block_contents": "timezone :US/Central, Asia/Kuala_Lumpur, Europe/Lisbon, etc."}, "doc.yoda.analytics___sms_stg__sms_user_total_logins": {"name": "analytics___sms_stg__sms_user_total_logins", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_total_logins", "block_contents": "total logins"}, "doc.yoda.analytics___sms_stg__sms_user_user_name": {"name": "analytics___sms_stg__sms_user_user_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__sms_user/analytics___sms_stg__sms_user.md", "unique_id": "doc.yoda.analytics___sms_stg__sms_user_user_name", "block_contents": "user name"}, "doc.yoda.analytics___sms_stg__track_flow_adoption": {"name": "analytics___sms_stg__track_flow_adoption", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "unique_id": "doc.yoda.analytics___sms_stg__track_flow_adoption", "block_contents": "Modeled view of sms flows adoption events | Granularity & Primary Key: flow_adoption_id"}, "doc.yoda.analytics___sms_stg__track_flow_adoption_action_name": {"name": "analytics___sms_stg__track_flow_adoption_action_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "unique_id": "doc.yoda.analytics___sms_stg__track_flow_adoption_action_name", "block_contents": "action name: add, edit, deactivate, etc."}, "doc.yoda.analytics___sms_stg__track_flow_adoption_create_at": {"name": "analytics___sms_stg__track_flow_adoption_create_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "unique_id": "doc.yoda.analytics___sms_stg__track_flow_adoption_create_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__track_flow_adoption_created_date": {"name": "analytics___sms_stg__track_flow_adoption_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "unique_id": "doc.yoda.analytics___sms_stg__track_flow_adoption_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__track_flow_adoption_flow_adoption_id": {"name": "analytics___sms_stg__track_flow_adoption_flow_adoption_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "unique_id": "doc.yoda.analytics___sms_stg__track_flow_adoption_flow_adoption_id", "block_contents": "flow adoption event unique identifier - primary key"}, "doc.yoda.analytics___sms_stg__track_flow_adoption_flow_id": {"name": "analytics___sms_stg__track_flow_adoption_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "unique_id": "doc.yoda.analytics___sms_stg__track_flow_adoption_flow_id", "block_contents": "flow_id - flow unique identifier"}, "doc.yoda.analytics___sms_stg__track_flow_adoption_flow_trigger": {"name": "analytics___sms_stg__track_flow_adoption_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "unique_id": "doc.yoda.analytics___sms_stg__track_flow_adoption_flow_trigger", "block_contents": "flow's trigger: product/viewed, orders/paid, etc."}, "doc.yoda.analytics___sms_stg__track_flow_adoption_flow_type": {"name": "analytics___sms_stg__track_flow_adoption_flow_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "unique_id": "doc.yoda.analytics___sms_stg__track_flow_adoption_flow_type", "block_contents": "flow type: event, flow"}, "doc.yoda.analytics___sms_stg__track_flow_adoption_sms_user_id": {"name": "analytics___sms_stg__track_flow_adoption_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__track_flow_adoption/analytics___sms_stg__track_flow_adoption.md", "unique_id": "doc.yoda.analytics___sms_stg__track_flow_adoption_sms_user_id", "block_contents": "sms_user_id - unique identifier of yotpo sms user"}, "doc.yoda.analytics___sms_stg__user_date_explode_from_creation": {"name": "analytics___sms_stg__user_date_explode_from_creation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.md", "unique_id": "doc.yoda.analytics___sms_stg__user_date_explode_from_creation", "block_contents": "Detailed table of sms_user_id and date - starting from the user's creation date.\nIts purpose is to prevent logic duplication and improve performance."}, "doc.yoda.analytics___sms_stg__user_date_explode_from_creation_date": {"name": "analytics___sms_stg__user_date_explode_from_creation_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.md", "unique_id": "doc.yoda.analytics___sms_stg__user_date_explode_from_creation_date", "block_contents": "date"}, "doc.yoda.analytics___sms_stg__user_date_explode_from_creation_dwh_updated_at": {"name": "analytics___sms_stg__user_date_explode_from_creation_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.md", "unique_id": "doc.yoda.analytics___sms_stg__user_date_explode_from_creation_dwh_updated_at", "block_contents": "dwh_updated_at -- record's writing timestamp"}, "doc.yoda.analytics___sms_stg__user_date_explode_from_creation_sms_user_id": {"name": "analytics___sms_stg__user_date_explode_from_creation_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_date_explode_from_creation/analytics___sms_stg__user_date_explode_from_creation.md", "unique_id": "doc.yoda.analytics___sms_stg__user_date_explode_from_creation_sms_user_id", "block_contents": "yotpo sms user unique identifier"}, "doc.yoda.analytics___sms_stg__user_event_log": {"name": "analytics___sms_stg__user_event_log", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "unique_id": "doc.yoda.analytics___sms_stg__user_event_log", "block_contents": "Modeled view of sms user events | Granularity & Primary Key: enent_id"}, "doc.yoda.analytics___sms_stg__user_event_log_created_at": {"name": "analytics___sms_stg__user_event_log_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "unique_id": "doc.yoda.analytics___sms_stg__user_event_log_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___sms_stg__user_event_log_created_date": {"name": "analytics___sms_stg__user_event_log_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "unique_id": "doc.yoda.analytics___sms_stg__user_event_log_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___sms_stg__user_event_log_event_details": {"name": "analytics___sms_stg__user_event_log_event_details", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "unique_id": "doc.yoda.analytics___sms_stg__user_event_log_event_details", "block_contents": "event details, e.g: Edited flow with ID"}, "doc.yoda.analytics___sms_stg__user_event_log_event_id": {"name": "analytics___sms_stg__user_event_log_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "unique_id": "doc.yoda.analytics___sms_stg__user_event_log_event_id", "block_contents": "event unique identifier - primary key"}, "doc.yoda.analytics___sms_stg__user_event_log_event_name": {"name": "analytics___sms_stg__user_event_log_event_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "unique_id": "doc.yoda.analytics___sms_stg__user_event_log_event_name", "block_contents": "event name: change_plan, edit_account, charge, cancel_plan, etc."}, "doc.yoda.analytics___sms_stg__user_event_log_event_type": {"name": "analytics___sms_stg__user_event_log_event_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "unique_id": "doc.yoda.analytics___sms_stg__user_event_log_event_type", "block_contents": "event type: remove_flow, email_feature_disabled, download_report, etc."}, "doc.yoda.analytics___sms_stg__user_event_log_is_logical_deleted": {"name": "analytics___sms_stg__user_event_log_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "unique_id": "doc.yoda.analytics___sms_stg__user_event_log_is_logical_deleted", "block_contents": "logical deleted indicator: 0/1"}, "doc.yoda.analytics___sms_stg__user_event_log_platform_name": {"name": "analytics___sms_stg__user_event_log_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "unique_id": "doc.yoda.analytics___sms_stg__user_event_log_platform_name", "block_contents": "platform name: shopify, magento, woocommerce, etc."}, "doc.yoda.analytics___sms_stg__user_event_log_platform_user_id": {"name": "analytics___sms_stg__user_event_log_platform_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "unique_id": "doc.yoda.analytics___sms_stg__user_event_log_platform_user_id", "block_contents": "platform user unique identifier"}, "doc.yoda.analytics___sms_stg__user_event_log_sms_user_id": {"name": "analytics___sms_stg__user_event_log_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "original_file_path": "models/analytics/sms/staging/marts_compatible/analytics___sms_stg__user_event_log/analytics___sms_stg__user_event_log.md", "unique_id": "doc.yoda.analytics___sms_stg__user_event_log_sms_user_id", "block_contents": "unique identifier of yotpo sms user"}, "doc.yoda.analytics___subscriptions__contract_over_time": {"name": "analytics___subscriptions__contract_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time", "block_contents": "Modeled table of subscription_contract_id status & uninstall status,delivery_policy_interval,delivery_policy_interval_count,billing_policy_interval,billing_policy_interval_count over time.\nPK and granularity: subscription_contract_id, from_time"}, "doc.yoda.analytics___subscriptions__contract_over_time_app_key": {"name": "analytics___subscriptions__contract_over_time_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_app_key", "block_contents": "app key"}, "doc.yoda.analytics___subscriptions__contract_over_time_billing_policy_interval": {"name": "analytics___subscriptions__contract_over_time_billing_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_billing_policy_interval", "block_contents": "the type of frequency of billing"}, "doc.yoda.analytics___subscriptions__contract_over_time_billing_policy_interval_count": {"name": "analytics___subscriptions__contract_over_time_billing_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_billing_policy_interval_count", "block_contents": "the frequency of billing"}, "doc.yoda.analytics___subscriptions__contract_over_time_delivery_policy_interval": {"name": "analytics___subscriptions__contract_over_time_delivery_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_delivery_policy_interval", "block_contents": "the type of frequency of delivery"}, "doc.yoda.analytics___subscriptions__contract_over_time_delivery_policy_interval_count": {"name": "analytics___subscriptions__contract_over_time_delivery_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_delivery_policy_interval_count", "block_contents": "the frequency of delivery"}, "doc.yoda.analytics___subscriptions__contract_over_time_dwh_updated_at": {"name": "analytics___subscriptions__contract_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_dwh_updated_at", "block_contents": "updated at"}, "doc.yoda.analytics___subscriptions__contract_over_time_from_date": {"name": "analytics___subscriptions__contract_over_time_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_from_date", "block_contents": "from date subscription changes - avoid using between function"}, "doc.yoda.analytics___subscriptions__contract_over_time_from_time": {"name": "analytics___subscriptions__contract_over_time_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_from_time", "block_contents": "from time subscription changes"}, "doc.yoda.analytics___subscriptions__contract_over_time_subscription_contract_id": {"name": "analytics___subscriptions__contract_over_time_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_subscription_contract_id", "block_contents": "subscription contract id"}, "doc.yoda.analytics___subscriptions__contract_over_time_subscription_contract_status": {"name": "analytics___subscriptions__contract_over_time_subscription_contract_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_subscription_contract_status", "block_contents": "status name"}, "doc.yoda.analytics___subscriptions__contract_over_time_subscription_contract_status_id": {"name": "analytics___subscriptions__contract_over_time_subscription_contract_status_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_subscription_contract_status_id", "block_contents": "status id"}, "doc.yoda.analytics___subscriptions__contract_over_time_to_date": {"name": "analytics___subscriptions__contract_over_time_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_to_date", "block_contents": "to date subscription changes - avoid using between function"}, "doc.yoda.analytics___subscriptions__contract_over_time_to_time": {"name": "analytics___subscriptions__contract_over_time_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__contract_over_time/analytics___subscriptions__contract_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__contract_over_time_to_time", "block_contents": "to time subscription changes"}, "doc.yoda.analytics___subscriptions__store": {"name": "analytics___subscriptions__store", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store", "block_contents": "Modeled table of subscriptions product stores.\nThe store population includes stores where feature 'SubscriptionsOnboarding'(id=389) or 'SubscriptionsBilling'(id=403) were added to then at one point.\nGranularity & Primary Key: app_key"}, "doc.yoda.analytics___subscriptions__store_app_key": {"name": "analytics___subscriptions__store_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_app_key", "block_contents": "PK"}, "doc.yoda.analytics___subscriptions__store_dwh_updated_at": {"name": "analytics___subscriptions__store_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_dwh_updated_at", "block_contents": "table updated timestamp"}, "doc.yoda.analytics___subscriptions__store_first_feature_created_date": {"name": "analytics___subscriptions__store_first_feature_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_first_feature_created_date", "block_contents": "min created_date of 'SubscriptionsOnboarding'(id=389) or 'SubscriptionsBilling'(id=403) features in store"}, "doc.yoda.analytics___subscriptions__store_industry": {"name": "analytics___subscriptions__store_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_industry", "block_contents": "store industry (health & beauty,baby & toddler,sports & outdoors...)"}, "doc.yoda.analytics___subscriptions__store_is_limit_reached": {"name": "analytics___subscriptions__store_is_limit_reached", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_is_limit_reached", "block_contents": "indicator = 1/0 indicate if the store has reached to the limit of $500 free subscriptions revenue"}, "doc.yoda.analytics___subscriptions__store_is_migrated_subscription": {"name": "analytics___subscriptions__store_is_migrated_subscription", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_is_migrated_subscription", "block_contents": "indicatore = 1/0 indicate if at least one subscription contract was migrated"}, "doc.yoda.analytics___subscriptions__store_limit_reached_date": {"name": "analytics___subscriptions__store_limit_reached_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_limit_reached_date", "block_contents": "date of limit reached"}, "doc.yoda.analytics___subscriptions__store_onboarding_finish_date": {"name": "analytics___subscriptions__store_onboarding_finish_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_onboarding_finish_date", "block_contents": "The date a store finished the onboarding process"}, "doc.yoda.analytics___subscriptions__store_onboarding_start_date": {"name": "analytics___subscriptions__store_onboarding_start_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_onboarding_start_date", "block_contents": "The date a store started the onboarding process"}, "doc.yoda.analytics___subscriptions__store_organization_key": {"name": "analytics___subscriptions__store_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_organization_key", "block_contents": ""}, "doc.yoda.analytics___subscriptions__store_platform_name": {"name": "analytics___subscriptions__store_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_platform_name", "block_contents": "the store platform (for now shopify is the only platform)"}, "doc.yoda.analytics___subscriptions__store_store_created_at": {"name": "analytics___subscriptions__store_store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_store_created_at", "block_contents": "yotpo store created timestamp"}, "doc.yoda.analytics___subscriptions__store_store_created_date": {"name": "analytics___subscriptions__store_store_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_store_created_date", "block_contents": "yotpo store created date"}, "doc.yoda.analytics___subscriptions__store_store_name": {"name": "analytics___subscriptions__store_store_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store/analytics___subscriptions__store.md", "unique_id": "doc.yoda.analytics___subscriptions__store_store_name", "block_contents": "domain"}, "doc.yoda.analytics___subscriptions__store_activeness_daily": {"name": "analytics___subscriptions__store_activeness_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__store_activeness_daily", "block_contents": "Modeled table of subscriptions store activeness history on a daily level | PK and granularity: activeness_date, app_key"}, "doc.yoda.analytics___subscriptions__store_activeness_daily_activeness_date": {"name": "analytics___subscriptions__store_activeness_daily_activeness_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__store_activeness_daily_activeness_date", "block_contents": "store activeness date - primary key 1/2"}, "doc.yoda.analytics___subscriptions__store_activeness_daily_app_key": {"name": "analytics___subscriptions__store_activeness_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__store_activeness_daily_app_key", "block_contents": "yotpo store unique identifier - primary key 2/2"}, "doc.yoda.analytics___subscriptions__store_activeness_daily_dwh_updated_at": {"name": "analytics___subscriptions__store_activeness_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__store_activeness_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___subscriptions__store_activeness_daily_is_app_installed": {"name": "analytics___subscriptions__store_activeness_daily_is_app_installed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_activeness_daily/analytics___subscriptions__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__store_activeness_daily_is_app_installed", "block_contents": "installed app indicator: 0/1"}, "doc.yoda.analytics___subscriptions__store_feature_activation": {"name": "analytics___subscriptions__store_feature_activation", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "unique_id": "doc.yoda.analytics___subscriptions__store_feature_activation", "block_contents": "subscriptions store feature activation, PK & Granularity:app_key,feature_name"}, "doc.yoda.analytics___subscriptions__store_feature_activation_app_key": {"name": "analytics___subscriptions__store_feature_activation_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "unique_id": "doc.yoda.analytics___subscriptions__store_feature_activation_app_key", "block_contents": "app key"}, "doc.yoda.analytics___subscriptions__store_feature_activation_current_plan": {"name": "analytics___subscriptions__store_feature_activation_current_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "unique_id": "doc.yoda.analytics___subscriptions__store_feature_activation_current_plan", "block_contents": "the store subscription current plan"}, "doc.yoda.analytics___subscriptions__store_feature_activation_feature_name": {"name": "analytics___subscriptions__store_feature_activation_feature_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "unique_id": "doc.yoda.analytics___subscriptions__store_feature_activation_feature_name", "block_contents": "feature name"}, "doc.yoda.analytics___subscriptions__store_feature_activation_is_eligible": {"name": "analytics___subscriptions__store_feature_activation_is_eligible", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "unique_id": "doc.yoda.analytics___subscriptions__store_feature_activation_is_eligible", "block_contents": "If the store has all the products that are relevant to the feature then 1 else 0"}, "doc.yoda.analytics___subscriptions__store_feature_activation_is_enabled": {"name": "analytics___subscriptions__store_feature_activation_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "unique_id": "doc.yoda.analytics___subscriptions__store_feature_activation_is_enabled", "block_contents": "if the store enabled the feature then 1 else 0"}, "doc.yoda.analytics___subscriptions__store_feature_activation_store_name": {"name": "analytics___subscriptions__store_feature_activation_store_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "unique_id": "doc.yoda.analytics___subscriptions__store_feature_activation_store_name", "block_contents": "store name"}, "doc.yoda.analytics___subscriptions__store_feature_activation_store_order_bucket": {"name": "analytics___subscriptions__store_feature_activation_store_order_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_feature_activation/analytics___subscriptions__store_feature_activation.md", "unique_id": "doc.yoda.analytics___subscriptions__store_feature_activation_store_order_bucket", "block_contents": "order bucket"}, "doc.yoda.analytics___subscriptions__store_installation_over_time": {"name": "analytics___subscriptions__store_installation_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__store_installation_over_time", "block_contents": "Modeled table of subscriptions store install & uninstall status over time | PK and granularity: app_key, from_time"}, "doc.yoda.analytics___subscriptions__store_installation_over_time_app_key": {"name": "analytics___subscriptions__store_installation_over_time_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__store_installation_over_time_app_key", "block_contents": "yotpo store unique identifier - primary key 1/2"}, "doc.yoda.analytics___subscriptions__store_installation_over_time_created_date": {"name": "analytics___subscriptions__store_installation_over_time_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__store_installation_over_time_created_date", "block_contents": "installation event created date"}, "doc.yoda.analytics___subscriptions__store_installation_over_time_dwh_updated_at": {"name": "analytics___subscriptions__store_installation_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__store_installation_over_time_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___subscriptions__store_installation_over_time_from_time": {"name": "analytics___subscriptions__store_installation_over_time_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__store_installation_over_time_from_time", "block_contents": "store installation status range start timestamp - primary key 2/2 - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time"}, "doc.yoda.analytics___subscriptions__store_installation_over_time_installation_status": {"name": "analytics___subscriptions__store_installation_over_time_installation_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__store_installation_over_time_installation_status", "block_contents": "subscriptions app installation status: installed/uninstalled"}, "doc.yoda.analytics___subscriptions__store_installation_over_time_store_and_date_row_ranking": {"name": "analytics___subscriptions__store_installation_over_time_store_and_date_row_ranking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__store_installation_over_time_store_and_date_row_ranking", "block_contents": "row ranking for each store and created_date by created_at (i.e, 1 is the first row for each store and created date)"}, "doc.yoda.analytics___subscriptions__store_installation_over_time_store_and_date_row_ranking_backwards": {"name": "analytics___subscriptions__store_installation_over_time_store_and_date_row_ranking_backwards", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__store_installation_over_time_store_and_date_row_ranking_backwards", "block_contents": "row ranking for each store and created_date by created_at (i.e, 1 is the last row for each store and created date)"}, "doc.yoda.analytics___subscriptions__store_installation_over_time_to_time": {"name": "analytics___subscriptions__store_installation_over_time_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__store_installation_over_time/analytics___subscriptions__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___subscriptions__store_installation_over_time_to_time", "block_contents": "store installation status range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time"}, "doc.yoda.analytics___subscriptions__subscription_contract_daily": {"name": "analytics___subscriptions__subscription_contract_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_daily", "block_contents": "Daily aggregated subscriptions contracts per merchant (active, canceled, failed, etc)\nGranularity: date | app_key | status"}, "doc.yoda.analytics___subscriptions__subscription_contract_daily_app_key": {"name": "analytics___subscriptions__subscription_contract_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_daily_app_key", "block_contents": "appkey"}, "doc.yoda.analytics___subscriptions__subscription_contract_daily_date": {"name": "analytics___subscriptions__subscription_contract_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_daily_date", "block_contents": "date"}, "doc.yoda.analytics___subscriptions__subscription_contract_daily_dwh_updated_at": {"name": "analytics___subscriptions__subscription_contract_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_daily_dwh_updated_at", "block_contents": "dwh_updated_at"}, "doc.yoda.analytics___subscriptions__subscription_contract_daily_subscribers_cnt": {"name": "analytics___subscriptions__subscription_contract_daily_subscribers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_daily_subscribers_cnt", "block_contents": "num of distinct subscribers"}, "doc.yoda.analytics___subscriptions__subscription_contract_daily_subscription_contract_status": {"name": "analytics___subscriptions__subscription_contract_daily_subscription_contract_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_daily_subscription_contract_status", "block_contents": "status contract - active,canceled,failed,expired,paused,etc."}, "doc.yoda.analytics___subscriptions__subscription_contract_daily_subscription_contract_status_id": {"name": "analytics___subscriptions__subscription_contract_daily_subscription_contract_status_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_daily_subscription_contract_status_id", "block_contents": "status id contract - PK of subscriptions_stg__status"}, "doc.yoda.analytics___subscriptions__subscription_contract_daily_subscriptions_contracts_cnt": {"name": "analytics___subscriptions__subscription_contract_daily_subscriptions_contracts_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_daily/analytics___subscriptions__subscription_contract_daily.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_daily_subscriptions_contracts_cnt", "block_contents": "number of contracts in each day and status per merchant"}, "doc.yoda.analytics___subscriptions__subscription_contract_monthly": {"name": "analytics___subscriptions__subscription_contract_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_monthly", "block_contents": "Monthly aggregated subscriptions contracts per merchant (active, canceled, failed, etc)\nGranularity: month | app_key | status"}, "doc.yoda.analytics___subscriptions__subscription_contract_monthly_app_key": {"name": "analytics___subscriptions__subscription_contract_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_monthly_app_key", "block_contents": ""}, "doc.yoda.analytics___subscriptions__subscription_contract_monthly_dwh_updated_at": {"name": "analytics___subscriptions__subscription_contract_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions__subscription_contract_monthly_month": {"name": "analytics___subscriptions__subscription_contract_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_monthly_month", "block_contents": ""}, "doc.yoda.analytics___subscriptions__subscription_contract_monthly_subscribers_cnt": {"name": "analytics___subscriptions__subscription_contract_monthly_subscribers_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_monthly_subscribers_cnt", "block_contents": "num of distinct subscribers"}, "doc.yoda.analytics___subscriptions__subscription_contract_monthly_subscription_contract_status": {"name": "analytics___subscriptions__subscription_contract_monthly_subscription_contract_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_monthly_subscription_contract_status", "block_contents": "status contract - active,canceled,failed,expired,paused,etc."}, "doc.yoda.analytics___subscriptions__subscription_contract_monthly_subscription_contract_status_id": {"name": "analytics___subscriptions__subscription_contract_monthly_subscription_contract_status_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_monthly_subscription_contract_status_id", "block_contents": "status id contract - PK of subscriptions_stg__status"}, "doc.yoda.analytics___subscriptions__subscription_contract_monthly_subscriptions_contracts_cnt": {"name": "analytics___subscriptions__subscription_contract_monthly_subscriptions_contracts_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "original_file_path": "models/analytics/subscriptions/marts/analytics___subscriptions__subscription_contract_monthly/analytics___subscriptions__subscription_contract_monthly.md", "unique_id": "doc.yoda.analytics___subscriptions__subscription_contract_monthly_subscriptions_contracts_cnt", "block_contents": "number of contracts in each month and status per store"}, "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot": {"name": "analytics___subscriptions_stg__subscription_contract_before_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_app_key": {"name": "analytics___subscriptions_stg__subscription_contract_before_snapshot_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_billing_policy_interval": {"name": "analytics___subscriptions_stg__subscription_contract_before_snapshot_billing_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_billing_policy_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_billing_policy_interval_count": {"name": "analytics___subscriptions_stg__subscription_contract_before_snapshot_billing_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_billing_policy_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_delivery_policy_interval": {"name": "analytics___subscriptions_stg__subscription_contract_before_snapshot_delivery_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_delivery_policy_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_delivery_policy_interval_count": {"name": "analytics___subscriptions_stg__subscription_contract_before_snapshot_delivery_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_delivery_policy_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_dwh_updated_at": {"name": "analytics___subscriptions_stg__subscription_contract_before_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_subscription_contract_id": {"name": "analytics___subscriptions_stg__subscription_contract_before_snapshot_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_subscription_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_subscription_contract_status": {"name": "analytics___subscriptions_stg__subscription_contract_before_snapshot_subscription_contract_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_subscription_contract_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_updated_at": {"name": "analytics___subscriptions_stg__subscription_contract_before_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_contract_before_snapshot/analytics___subscriptions_stg__subscription_contract_before_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2": {"name": "analytics___subscriptions_stg__subscription_ended_v2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_adminusername": {"name": "analytics___subscriptions_stg__subscription_ended_v2_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_anonymous_id": {"name": "analytics___subscriptions_stg__subscription_ended_v2_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_appkey": {"name": "analytics___subscriptions_stg__subscription_ended_v2_appkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_billingprovider": {"name": "analytics___subscriptions_stg__subscription_ended_v2_billingprovider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_billingprovider", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_category": {"name": "analytics___subscriptions_stg__subscription_ended_v2_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_channel": {"name": "analytics___subscriptions_stg__subscription_ended_v2_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_chargecurrency": {"name": "analytics___subscriptions_stg__subscription_ended_v2_chargecurrency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_chargecurrency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_chargeprice": {"name": "analytics___subscriptions_stg__subscription_ended_v2_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_event_name": {"name": "analytics___subscriptions_stg__subscription_ended_v2_event_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_groupid": {"name": "analytics___subscriptions_stg__subscription_ended_v2_groupid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_grouptype": {"name": "analytics___subscriptions_stg__subscription_ended_v2_grouptype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_grouptype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_is_desktop": {"name": "analytics___subscriptions_stg__subscription_ended_v2_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_is_mobile": {"name": "analytics___subscriptions_stg__subscription_ended_v2_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_is_tablet": {"name": "analytics___subscriptions_stg__subscription_ended_v2_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_isinternaluser": {"name": "analytics___subscriptions_stg__subscription_ended_v2_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_isinternaluser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_isloyalty": {"name": "analytics___subscriptions_stg__subscription_ended_v2_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_isoldsubscriptionltannual": {"name": "analytics___subscriptions_stg__subscription_ended_v2_isoldsubscriptionltannual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_isoldsubscriptionltannual", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_isreviews": {"name": "analytics___subscriptions_stg__subscription_ended_v2_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_issms": {"name": "analytics___subscriptions_stg__subscription_ended_v2_issms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_isvugc": {"name": "analytics___subscriptions_stg__subscription_ended_v2_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_library_name": {"name": "analytics___subscriptions_stg__subscription_ended_v2_library_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_locale": {"name": "analytics___subscriptions_stg__subscription_ended_v2_locale", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_loyaltymerchantid": {"name": "analytics___subscriptions_stg__subscription_ended_v2_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_loyaltypackage": {"name": "analytics___subscriptions_stg__subscription_ended_v2_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_message_id": {"name": "analytics___subscriptions_stg__subscription_ended_v2_message_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_name": {"name": "analytics___subscriptions_stg__subscription_ended_v2_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_newpackage": {"name": "analytics___subscriptions_stg__subscription_ended_v2_newpackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_newpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_newpackageid": {"name": "analytics___subscriptions_stg__subscription_ended_v2_newpackageid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_newpackageid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_newpackagemonthlyprice": {"name": "analytics___subscriptions_stg__subscription_ended_v2_newpackagemonthlyprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_newpackagemonthlyprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_oldpackage": {"name": "analytics___subscriptions_stg__subscription_ended_v2_oldpackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_oldpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_oldpackageid": {"name": "analytics___subscriptions_stg__subscription_ended_v2_oldpackageid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_oldpackageid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_oldpackagemonthlyprice": {"name": "analytics___subscriptions_stg__subscription_ended_v2_oldpackagemonthlyprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_oldpackagemonthlyprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_org_isloyalty": {"name": "analytics___subscriptions_stg__subscription_ended_v2_org_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_org_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgbillingproviders": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgbillingproviders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgbillingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgcreatedat": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgcreatedat", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgcreatedat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgemail": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgid": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgisreviews": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgisreviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgisreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgissms": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgissms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgissms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgistest": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgistest", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgistest", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgisvugc": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgisvugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgisvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgkey": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgloyaltymonthlyprice": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgloyaltymonthlyprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgloyaltymonthlyprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgloyaltypackage": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgloyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgloyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgname": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgorganizationkey": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgorganizationkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgorganizationkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgpackageextensions": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgpackageextensions", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgpackageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgreviewsmonthlyprice": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgreviewsmonthlyprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgreviewsmonthlyprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgreviewspackage": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgreviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgreviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgsignupcountry": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgsignupcountry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgsignupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgsmsmonthlyprice": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgsmsmonthlyprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgsmsmonthlyprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgsmspackage": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgsmspackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgsmspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgstorecount": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgstorecount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgstorecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgstorelimit": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgstorelimit", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgstorelimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgvugcmonthlyprice": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgvugcmonthlyprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgvugcmonthlyprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgvugcpackage": {"name": "analytics___subscriptions_stg__subscription_ended_v2_orgvugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_orgvugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_package": {"name": "analytics___subscriptions_stg__subscription_ended_v2_package", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_packagecategories": {"name": "analytics___subscriptions_stg__subscription_ended_v2_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_page_path": {"name": "analytics___subscriptions_stg__subscription_ended_v2_page_path", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_page_referrer": {"name": "analytics___subscriptions_stg__subscription_ended_v2_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_page_title": {"name": "analytics___subscriptions_stg__subscription_ended_v2_page_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_page_url": {"name": "analytics___subscriptions_stg__subscription_ended_v2_page_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_partition_date": {"name": "analytics___subscriptions_stg__subscription_ended_v2_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_platform": {"name": "analytics___subscriptions_stg__subscription_ended_v2_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_platformplan": {"name": "analytics___subscriptions_stg__subscription_ended_v2_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_processing_time": {"name": "analytics___subscriptions_stg__subscription_ended_v2_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_product": {"name": "analytics___subscriptions_stg__subscription_ended_v2_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_reviewspackage": {"name": "analytics___subscriptions_stg__subscription_ended_v2_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_smspackage": {"name": "analytics___subscriptions_stg__subscription_ended_v2_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_smsuserid": {"name": "analytics___subscriptions_stg__subscription_ended_v2_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_source": {"name": "analytics___subscriptions_stg__subscription_ended_v2_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_storedomain": {"name": "analytics___subscriptions_stg__subscription_ended_v2_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_storeid": {"name": "analytics___subscriptions_stg__subscription_ended_v2_storeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_storeplatformdomain": {"name": "analytics___subscriptions_stg__subscription_ended_v2_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_timestamp": {"name": "analytics___subscriptions_stg__subscription_ended_v2_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_upsolver_schema_version": {"name": "analytics___subscriptions_stg__subscription_ended_v2_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_user_id": {"name": "analytics___subscriptions_stg__subscription_ended_v2_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_useremail": {"name": "analytics___subscriptions_stg__subscription_ended_v2_useremail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_useremail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_userid": {"name": "analytics___subscriptions_stg__subscription_ended_v2_userid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_violated_event": {"name": "analytics___subscriptions_stg__subscription_ended_v2_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_vugcpackage": {"name": "analytics___subscriptions_stg__subscription_ended_v2_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_zuorasubscriptionname": {"name": "analytics___subscriptions_stg__subscription_ended_v2_zuorasubscriptionname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_ended_v2/analytics___subscriptions_stg__subscription_ended_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_ended_v2_zuorasubscriptionname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2": {"name": "analytics___subscriptions_stg__subscription_started_v2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2", "block_contents": "TODO: Update Table Description"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_adminusername": {"name": "analytics___subscriptions_stg__subscription_started_v2_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_anonymous_id": {"name": "analytics___subscriptions_stg__subscription_started_v2_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_appkey": {"name": "analytics___subscriptions_stg__subscription_started_v2_appkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_billingprovider": {"name": "analytics___subscriptions_stg__subscription_started_v2_billingprovider", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_billingprovider", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_channel": {"name": "analytics___subscriptions_stg__subscription_started_v2_channel", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_chargecurrency": {"name": "analytics___subscriptions_stg__subscription_started_v2_chargecurrency", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_chargecurrency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_chargeprice": {"name": "analytics___subscriptions_stg__subscription_started_v2_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_event_name": {"name": "analytics___subscriptions_stg__subscription_started_v2_event_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_groupid": {"name": "analytics___subscriptions_stg__subscription_started_v2_groupid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_grouptype": {"name": "analytics___subscriptions_stg__subscription_started_v2_grouptype", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_grouptype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_is_desktop": {"name": "analytics___subscriptions_stg__subscription_started_v2_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_is_mobile": {"name": "analytics___subscriptions_stg__subscription_started_v2_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_is_tablet": {"name": "analytics___subscriptions_stg__subscription_started_v2_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_isinternaluser": {"name": "analytics___subscriptions_stg__subscription_started_v2_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_isinternaluser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_isloyalty": {"name": "analytics___subscriptions_stg__subscription_started_v2_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_isnewsubscriptionltannual": {"name": "analytics___subscriptions_stg__subscription_started_v2_isnewsubscriptionltannual", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_isnewsubscriptionltannual", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_isreviews": {"name": "analytics___subscriptions_stg__subscription_started_v2_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_issms": {"name": "analytics___subscriptions_stg__subscription_started_v2_issms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_isvugc": {"name": "analytics___subscriptions_stg__subscription_started_v2_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_library_name": {"name": "analytics___subscriptions_stg__subscription_started_v2_library_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_locale": {"name": "analytics___subscriptions_stg__subscription_started_v2_locale", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_loyaltymerchantid": {"name": "analytics___subscriptions_stg__subscription_started_v2_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_loyaltypackage": {"name": "analytics___subscriptions_stg__subscription_started_v2_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_message_id": {"name": "analytics___subscriptions_stg__subscription_started_v2_message_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_name": {"name": "analytics___subscriptions_stg__subscription_started_v2_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_newpackage": {"name": "analytics___subscriptions_stg__subscription_started_v2_newpackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_newpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_newpackagemonthlyprice": {"name": "analytics___subscriptions_stg__subscription_started_v2_newpackagemonthlyprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_newpackagemonthlyprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_oldpackage": {"name": "analytics___subscriptions_stg__subscription_started_v2_oldpackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_oldpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_org_isloyalty": {"name": "analytics___subscriptions_stg__subscription_started_v2_org_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_org_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgbillingproviders": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgbillingproviders", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgbillingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgcreatedat": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgcreatedat", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgcreatedat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgemail": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgemail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgid": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgisreviews": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgisreviews", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgisreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgissms": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgissms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgissms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgistest": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgistest", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgistest", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgisvugc": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgisvugc", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgisvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgkey": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgloyaltymonthlyprice": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgloyaltymonthlyprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgloyaltymonthlyprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgloyaltypackage": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgloyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgloyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgname": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgorganizationkey": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgorganizationkey", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgorganizationkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgreviewsmonthlyprice": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgreviewsmonthlyprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgreviewsmonthlyprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgreviewspackage": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgreviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgreviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgsignupcountry": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgsignupcountry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgsignupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgsmsmonthlyprice": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgsmsmonthlyprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgsmsmonthlyprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgsmspackage": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgsmspackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgsmspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgstorecount": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgstorecount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgstorecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgstorelimit": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgstorelimit", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgstorelimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgvugcmonthlyprice": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgvugcmonthlyprice", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgvugcmonthlyprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgvugcpackage": {"name": "analytics___subscriptions_stg__subscription_started_v2_orgvugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_orgvugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_package": {"name": "analytics___subscriptions_stg__subscription_started_v2_package", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_packagecategories": {"name": "analytics___subscriptions_stg__subscription_started_v2_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_page_path": {"name": "analytics___subscriptions_stg__subscription_started_v2_page_path", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_page_referrer": {"name": "analytics___subscriptions_stg__subscription_started_v2_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_page_title": {"name": "analytics___subscriptions_stg__subscription_started_v2_page_title", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_page_url": {"name": "analytics___subscriptions_stg__subscription_started_v2_page_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_partition_date": {"name": "analytics___subscriptions_stg__subscription_started_v2_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_platform": {"name": "analytics___subscriptions_stg__subscription_started_v2_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_platformplan": {"name": "analytics___subscriptions_stg__subscription_started_v2_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_processing_time": {"name": "analytics___subscriptions_stg__subscription_started_v2_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_product": {"name": "analytics___subscriptions_stg__subscription_started_v2_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_reviewspackage": {"name": "analytics___subscriptions_stg__subscription_started_v2_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_smspackage": {"name": "analytics___subscriptions_stg__subscription_started_v2_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_smsuserid": {"name": "analytics___subscriptions_stg__subscription_started_v2_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_source": {"name": "analytics___subscriptions_stg__subscription_started_v2_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_storedomain": {"name": "analytics___subscriptions_stg__subscription_started_v2_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_storeid": {"name": "analytics___subscriptions_stg__subscription_started_v2_storeid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_storeplatformdomain": {"name": "analytics___subscriptions_stg__subscription_started_v2_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_timestamp": {"name": "analytics___subscriptions_stg__subscription_started_v2_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_upsolver_schema_version": {"name": "analytics___subscriptions_stg__subscription_started_v2_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_user_id": {"name": "analytics___subscriptions_stg__subscription_started_v2_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_useremail": {"name": "analytics___subscriptions_stg__subscription_started_v2_useremail", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_useremail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_userid": {"name": "analytics___subscriptions_stg__subscription_started_v2_userid", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_violated_event": {"name": "analytics___subscriptions_stg__subscription_started_v2_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_vugcpackage": {"name": "analytics___subscriptions_stg__subscription_started_v2_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_zuorasubscriptionname": {"name": "analytics___subscriptions_stg__subscription_started_v2_zuorasubscriptionname", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "original_file_path": "models/analytics/subscriptions/staging/base/analytics___subscriptions_stg__subscription_started_v2/analytics___subscriptions_stg__subscription_started_v2.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscription_started_v2_zuorasubscriptionname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__contract_event_details": {"name": "analytics___subscriptions_stg__contract_event_details", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details", "block_contents": "Incremental Table that holds subscriptions contracts events data | PK: app_key, contract_id, event_created_at"}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_app_key": {"name": "analytics___subscriptions_stg__contract_event_details_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_app_key", "block_contents": "store app key"}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_billing_frequency_interval": {"name": "analytics___subscriptions_stg__contract_event_details_billing_frequency_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_billing_frequency_interval", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_billing_frequency_interval_count": {"name": "analytics___subscriptions_stg__contract_event_details_billing_frequency_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_billing_frequency_interval_count", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_contract_id": {"name": "analytics___subscriptions_stg__contract_event_details_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_contract_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_created_at": {"name": "analytics___subscriptions_stg__contract_event_details_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_created_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_delivery_frequency_interval": {"name": "analytics___subscriptions_stg__contract_event_details_delivery_frequency_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_delivery_frequency_interval", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_delivery_frequency_interval_count": {"name": "analytics___subscriptions_stg__contract_event_details_delivery_frequency_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_delivery_frequency_interval_count", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_dwh_updated_at": {"name": "analytics___subscriptions_stg__contract_event_details_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_event_created_at": {"name": "analytics___subscriptions_stg__contract_event_details_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_event_created_at", "block_contents": "event created timestamp"}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_external_customer_id": {"name": "analytics___subscriptions_stg__contract_event_details_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_external_customer_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_original_order_external_id": {"name": "analytics___subscriptions_stg__contract_event_details_original_order_external_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_original_order_external_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_status_id": {"name": "analytics___subscriptions_stg__contract_event_details_status_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_status_id", "block_contents": "contract status id"}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_status_last_updated_at": {"name": "analytics___subscriptions_stg__contract_event_details_status_last_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_status_last_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__contract_event_details_updated_at": {"name": "analytics___subscriptions_stg__contract_event_details_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_event_details/analytics___subscriptions_stg__contract_event_details.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_event_details_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__contract_snapshot": {"name": "analytics___subscriptions_stg__contract_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_snapshot", "block_contents": "Modeled Table over subscriptions_contract table, holds historical data for each subscription"}, "doc.yoda.analytics___subscriptions_stg__contract_snapshot_app_key": {"name": "analytics___subscriptions_stg__contract_snapshot_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_snapshot_app_key", "block_contents": "Store id"}, "doc.yoda.analytics___subscriptions_stg__contract_snapshot_billing_policy_interval": {"name": "analytics___subscriptions_stg__contract_snapshot_billing_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_snapshot_billing_policy_interval", "block_contents": "billing policy interval:\n7 - day\n8 - week\n9 - month\n10 - year"}, "doc.yoda.analytics___subscriptions_stg__contract_snapshot_billing_policy_interval_count": {"name": "analytics___subscriptions_stg__contract_snapshot_billing_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_snapshot_billing_policy_interval_count", "block_contents": "the amount of time for interval,\nfor example, if interval is 7 (week) and interval count is 10, billing is expected every 10 weeks"}, "doc.yoda.analytics___subscriptions_stg__contract_snapshot_delivery_policy_interval": {"name": "analytics___subscriptions_stg__contract_snapshot_delivery_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_snapshot_delivery_policy_interval", "block_contents": "billing policy interval:\n7 - day\n8 - week\n9 - month\n10 - year"}, "doc.yoda.analytics___subscriptions_stg__contract_snapshot_delivery_policy_interval_count": {"name": "analytics___subscriptions_stg__contract_snapshot_delivery_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_snapshot_delivery_policy_interval_count", "block_contents": "the amount of time for interval"}, "doc.yoda.analytics___subscriptions_stg__contract_snapshot_dwh_updated_at": {"name": "analytics___subscriptions_stg__contract_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_snapshot_dwh_updated_at", "block_contents": "records updated at"}, "doc.yoda.analytics___subscriptions_stg__contract_snapshot_subscription_contract_id": {"name": "analytics___subscriptions_stg__contract_snapshot_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_snapshot_subscription_contract_id", "block_contents": "subscription contract id"}, "doc.yoda.analytics___subscriptions_stg__contract_snapshot_subscription_contract_status": {"name": "analytics___subscriptions_stg__contract_snapshot_subscription_contract_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_snapshot_subscription_contract_status", "block_contents": "subscription status"}, "doc.yoda.analytics___subscriptions_stg__contract_snapshot_updated_at": {"name": "analytics___subscriptions_stg__contract_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__contract_snapshot/analytics___subscriptions_stg__contract_snapshot.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__contract_snapshot_updated_at", "block_contents": "records updated at"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event": {"name": "analytics___subscriptions_stg__customer_journey_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event", "block_contents": "Modeled view of subscriptions customer jounrey events | Granularity & Primary Key: journey_event_id"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_app_key": {"name": "analytics___subscriptions_stg__customer_journey_event_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_app_key", "block_contents": "unique identifier of yotpo app key"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_created_at": {"name": "analytics___subscriptions_stg__customer_journey_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_created_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_created_date": {"name": "analytics___subscriptions_stg__customer_journey_event_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_created_date", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_customer_id": {"name": "analytics___subscriptions_stg__customer_journey_event_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_customer_id", "block_contents": "the customer associated with the event"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_event_initiator": {"name": "analytics___subscriptions_stg__customer_journey_event_event_initiator", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_event_initiator", "block_contents": "the intiator of the event"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_event_origin": {"name": "analytics___subscriptions_stg__customer_journey_event_event_origin", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_event_origin", "block_contents": "where did the event take place (Customer Portal, Shopify, SMS reply, System, Yotpo Subscriptions)"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_event_properties": {"name": "analytics___subscriptions_stg__customer_journey_event_event_properties", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_event_properties", "block_contents": "event raw additional data"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_event_time": {"name": "analytics___subscriptions_stg__customer_journey_event_event_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_event_time", "block_contents": "the event creation time"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_event_type": {"name": "analytics___subscriptions_stg__customer_journey_event_event_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_event_type", "block_contents": "the event description"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_journey_event_id": {"name": "analytics___subscriptions_stg__customer_journey_event_journey_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_journey_event_id", "block_contents": "journey_event_id - primary key"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_source_domain": {"name": "analytics___subscriptions_stg__customer_journey_event_source_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_source_domain", "block_contents": "product line"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_source_id": {"name": "analytics___subscriptions_stg__customer_journey_event_source_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_source_id", "block_contents": "the object unique identifier on which the event occured (example: for subscription product line it's the subscription contract external id)"}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_updated_at": {"name": "analytics___subscriptions_stg__customer_journey_event_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__customer_journey_event_updated_date": {"name": "analytics___subscriptions_stg__customer_journey_event_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__customer_journey_event/analytics___subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__customer_journey_event_updated_date", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_app_webhook": {"name": "analytics___subscriptions_stg__mc_app_webhook", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_app_webhook", "block_contents": "Modeled view for subscriptions app_webhook"}, "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_app_key": {"name": "analytics___subscriptions_stg__mc_app_webhook_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_app_webhook_id": {"name": "analytics___subscriptions_stg__mc_app_webhook_app_webhook_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_app_webhook_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_created_at": {"name": "analytics___subscriptions_stg__mc_app_webhook_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_is_uninstall": {"name": "analytics___subscriptions_stg__mc_app_webhook_is_uninstall", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_is_uninstall", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_updated_at": {"name": "analytics___subscriptions_stg__mc_app_webhook_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_webhook_action": {"name": "analytics___subscriptions_stg__mc_app_webhook_webhook_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_app_webhook/analytics___subscriptions_stg__mc_app_webhook.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_app_webhook_webhook_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__mc_product": {"name": "analytics___subscriptions_stg__mc_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_product", "block_contents": "Modeled view for subscriptions products"}, "doc.yoda.analytics___subscriptions_stg__mc_product_created_at": {"name": "analytics___subscriptions_stg__mc_product_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_product_created_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_product_external_id": {"name": "analytics___subscriptions_stg__mc_product_external_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_product_external_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_product_product_id": {"name": "analytics___subscriptions_stg__mc_product_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_product_product_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_product_updated_at": {"name": "analytics___subscriptions_stg__mc_product_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_product/analytics___subscriptions_stg__mc_product.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_product_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan": {"name": "analytics___subscriptions_stg__mc_selling_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan", "block_contents": "Modeled View for the subscription selling plan"}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_created_at": {"name": "analytics___subscriptions_stg__mc_selling_plan_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_created_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_discount_type": {"name": "analytics___subscriptions_stg__mc_selling_plan_discount_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_discount_type", "block_contents": "subscription discount type: (FIXED_AMOUNT,PRICE,PERCENTAGE)"}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_discount_value": {"name": "analytics___subscriptions_stg__mc_selling_plan_discount_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_discount_value", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_selling_plan_group_id": {"name": "analytics___subscriptions_stg__mc_selling_plan_selling_plan_group_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_selling_plan_group_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_selling_plan_id": {"name": "analytics___subscriptions_stg__mc_selling_plan_selling_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_selling_plan_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_selling_plan_name": {"name": "analytics___subscriptions_stg__mc_selling_plan_selling_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_selling_plan_name", "block_contents": "the subscription interval, for example: Every 2 weeks, Every month etc."}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_updated_at": {"name": "analytics___subscriptions_stg__mc_selling_plan_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan/analytics___subscriptions_stg__mc_selling_plan.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group": {"name": "analytics___subscriptions_stg__mc_selling_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group", "block_contents": "Modeled View for the subscription selling plan group"}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_app_key": {"name": "analytics___subscriptions_stg__mc_selling_plan_group_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_app_key", "block_contents": "store app key"}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_created_at": {"name": "analytics___subscriptions_stg__mc_selling_plan_group_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_created_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_external_id": {"name": "analytics___subscriptions_stg__mc_selling_plan_group_external_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_external_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id": {"name": "analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_status": {"name": "analytics___subscriptions_stg__mc_selling_plan_group_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_status", "block_contents": "status: DELETED/ACTIVE"}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_updated_at": {"name": "analytics___subscriptions_stg__mc_selling_plan_group_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group/analytics___subscriptions_stg__mc_selling_plan_group.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product": {"name": "analytics___subscriptions_stg__mc_selling_plan_group_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product", "block_contents": "Modeled View for the subscription selling plan group product"}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product_product_id": {"name": "analytics___subscriptions_stg__mc_selling_plan_group_product_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product_product_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_id": {"name": "analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id": {"name": "analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_selling_plan_group_product/analytics___subscriptions_stg__mc_selling_plan_group_product.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_status": {"name": "analytics___subscriptions_stg__mc_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_status", "block_contents": "subscriptions statuses"}, "doc.yoda.analytics___subscriptions_stg__mc_status_created_at": {"name": "analytics___subscriptions_stg__mc_status_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_status_created_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_status_status_id": {"name": "analytics___subscriptions_stg__mc_status_status_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_status_status_id", "block_contents": "Table id | PK"}, "doc.yoda.analytics___subscriptions_stg__mc_status_status_name": {"name": "analytics___subscriptions_stg__mc_status_status_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_status_status_name", "block_contents": "active,cancelled,expired etc.."}, "doc.yoda.analytics___subscriptions_stg__mc_status_status_number": {"name": "analytics___subscriptions_stg__mc_status_status_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_status_status_number", "block_contents": "the status code number"}, "doc.yoda.analytics___subscriptions_stg__mc_status_updated_at": {"name": "analytics___subscriptions_stg__mc_status_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_status/analytics___subscriptions_stg__mc_status.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_status_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract": {"name": "analytics___subscriptions_stg__mc_subscription_contract", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract", "block_contents": "Modeled VIEW of subscription contract object"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_app_key": {"name": "analytics___subscriptions_stg__mc_subscription_contract_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_app_key", "block_contents": "store app_key"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_billing_policy_interval": {"name": "analytics___subscriptions_stg__mc_subscription_contract_billing_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_billing_policy_interval", "block_contents": "billing policy interval:\n7 - day\n8 - week\n9 - month\n10 - year"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_billing_policy_interval_count": {"name": "analytics___subscriptions_stg__mc_subscription_contract_billing_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_billing_policy_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_created_at": {"name": "analytics___subscriptions_stg__mc_subscription_contract_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_delivery_policy_interval": {"name": "analytics___subscriptions_stg__mc_subscription_contract_delivery_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_delivery_policy_interval", "block_contents": "delivery policy interval:\n7 - day\n8 - week\n9 - month\n10 - year"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_delivery_policy_interval_count": {"name": "analytics___subscriptions_stg__mc_subscription_contract_delivery_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_delivery_policy_interval_count", "block_contents": "amount of time interval"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_dwh_updated_at": {"name": "analytics___subscriptions_stg__mc_subscription_contract_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_external_customer_id": {"name": "analytics___subscriptions_stg__mc_subscription_contract_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_external_customer_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_external_subscription_contract_id": {"name": "analytics___subscriptions_stg__mc_subscription_contract_external_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_external_subscription_contract_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_is_deleted": {"name": "analytics___subscriptions_stg__mc_subscription_contract_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_is_deleted", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_original_order_external_id": {"name": "analytics___subscriptions_stg__mc_subscription_contract_original_order_external_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_original_order_external_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_status_last_updated_at": {"name": "analytics___subscriptions_stg__mc_subscription_contract_status_last_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_status_last_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id": {"name": "analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_status": {"name": "analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_status", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_updated_at": {"name": "analytics___subscriptions_stg__mc_subscription_contract_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract/analytics___subscriptions_stg__mc_subscription_contract.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order": {"name": "analytics___subscriptions_stg__mc_subscription_contract_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order", "block_contents": "Modeled View of orders of subscription contracts object"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_app_key": {"name": "analytics___subscriptions_stg__mc_subscription_contract_order_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_app_key", "block_contents": "store app_key"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_created_at": {"name": "analytics___subscriptions_stg__mc_subscription_contract_order_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_created_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_dwh_updated_at": {"name": "analytics___subscriptions_stg__mc_subscription_contract_order_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_external_order_id": {"name": "analytics___subscriptions_stg__mc_subscription_contract_order_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_external_order_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_external_subscription_contract_id": {"name": "analytics___subscriptions_stg__mc_subscription_contract_order_external_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_external_subscription_contract_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_is_deleted": {"name": "analytics___subscriptions_stg__mc_subscription_contract_order_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_is_deleted", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id": {"name": "analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_updated_at": {"name": "analytics___subscriptions_stg__mc_subscription_contract_order_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_contract_order/analytics___subscriptions_stg__mc_subscription_contract_order.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_contract_order_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request": {"name": "analytics___subscriptions_stg__mc_subscription_creation_request", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request", "block_contents": "Modeled view for subscription creation request"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_app_key": {"name": "analytics___subscriptions_stg__mc_subscription_creation_request_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_app_key", "block_contents": "store app_key"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_contract_id": {"name": "analytics___subscriptions_stg__mc_subscription_creation_request_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_contract_id", "block_contents": "subscription contract id"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_created_at": {"name": "analytics___subscriptions_stg__mc_subscription_creation_request_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_created_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id": {"name": "analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_is_succeeded": {"name": "analytics___subscriptions_stg__mc_subscription_creation_request_is_succeeded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_is_succeeded", "block_contents": "indicates if the request status is succeeded"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_request_status": {"name": "analytics___subscriptions_stg__mc_subscription_creation_request_request_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_request_status", "block_contents": "request status: (FAILED, SUCCEEDED, GENERAL_ERROR)"}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_selling_plan_name": {"name": "analytics___subscriptions_stg__mc_subscription_creation_request_selling_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_selling_plan_name", "block_contents": "the subscription interval, for example: Every 2 weeks, Every month etc."}, "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_updated_at": {"name": "analytics___subscriptions_stg__mc_subscription_creation_request_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__mc_subscription_creation_request/analytics___subscriptions_stg__mc_subscription_creation_request.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__mc_subscription_creation_request_updated_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two": {"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two", "block_contents": "Modeled view of segment subscription ended v2 events | PK and granularity: event_id"}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_app_key": {"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_app_key", "block_contents": "store app_key"}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_created_at": {"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_created_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_created_date": {"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_created_date", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id": {"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id", "block_contents": "message id | PK"}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_new_package": {"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two_new_package", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_new_package", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_old_package": {"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two_old_package", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_old_package", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_product_name": {"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_ended_v_two/analytics___subscriptions_stg__segment_subscription_ended_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two_product_name", "block_contents": "will include only subscriptions data"}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two": {"name": "analytics___subscriptions_stg__segment_subscription_started_v_two", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two", "block_contents": "Modeled view of segment subscription started v2 events | PK and granularity: event_id"}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_app_key": {"name": "analytics___subscriptions_stg__segment_subscription_started_v_two_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_app_key", "block_contents": "store app_key"}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_created_at": {"name": "analytics___subscriptions_stg__segment_subscription_started_v_two_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_created_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_created_date": {"name": "analytics___subscriptions_stg__segment_subscription_started_v_two_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_created_date", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_event_id": {"name": "analytics___subscriptions_stg__segment_subscription_started_v_two_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_event_id", "block_contents": "message id | PK"}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_new_package": {"name": "analytics___subscriptions_stg__segment_subscription_started_v_two_new_package", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_new_package", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_old_package": {"name": "analytics___subscriptions_stg__segment_subscription_started_v_two_old_package", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_old_package", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_product_name": {"name": "analytics___subscriptions_stg__segment_subscription_started_v_two_product_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__segment_subscription_started_v_two/analytics___subscriptions_stg__segment_subscription_started_v_two.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two_product_name", "block_contents": "will include only subscriptions data"}, "doc.yoda.analytics___subscriptions_stg__subscriptions_store": {"name": "analytics___subscriptions_stg__subscriptions_store", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscriptions_store", "block_contents": "Modeled view to subscriptions stores"}, "doc.yoda.analytics___subscriptions_stg__subscriptions_store_app_key": {"name": "analytics___subscriptions_stg__subscriptions_store_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscriptions_store_app_key", "block_contents": "store app_key"}, "doc.yoda.analytics___subscriptions_stg__subscriptions_store_domain": {"name": "analytics___subscriptions_stg__subscriptions_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscriptions_store_domain", "block_contents": "domain"}, "doc.yoda.analytics___subscriptions_stg__subscriptions_store_is_launched": {"name": "analytics___subscriptions_stg__subscriptions_store_is_launched", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscriptions_store_is_launched", "block_contents": "is store launched subscriptions"}, "doc.yoda.analytics___subscriptions_stg__subscriptions_store_is_migrated": {"name": "analytics___subscriptions_stg__subscriptions_store_is_migrated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscriptions_store_is_migrated", "block_contents": "is migrated store"}, "doc.yoda.analytics___subscriptions_stg__subscriptions_store_launched_date": {"name": "analytics___subscriptions_stg__subscriptions_store_launched_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscriptions_store_launched_date", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__subscriptions_store_organization_id": {"name": "analytics___subscriptions_stg__subscriptions_store_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscriptions_store_organization_id", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__subscriptions_store_organization_key": {"name": "analytics___subscriptions_stg__subscriptions_store_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscriptions_store_organization_key", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__subscriptions_store_product_enabled_at": {"name": "analytics___subscriptions_stg__subscriptions_store_product_enabled_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscriptions_store_product_enabled_at", "block_contents": ""}, "doc.yoda.analytics___subscriptions_stg__subscriptions_store_url": {"name": "analytics___subscriptions_stg__subscriptions_store_url", "resource_type": "doc", "package_name": "yoda", "path": "analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "original_file_path": "models/analytics/subscriptions/staging/marts_compatible/analytics___subscriptions_stg__subscriptions_store/analytics___subscriptions_stg__subscriptions_store.md", "unique_id": "doc.yoda.analytics___subscriptions_stg__subscriptions_store_url", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily": {"name": "analytics___synergies__activation_level_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily", "block_contents": "A pivoted table to describe activation level (active/enabled/disabled/null) of synergies per store on a daily level | PK & Granularity: app_key, activeness_date\nActivation level is based on priority: if active then 'active' else if enabled then 'enabled' else if disabled then 'disabled' else null."}, "doc.yoda.analytics___synergies__activation_level_daily_activeness_date": {"name": "analytics___synergies__activation_level_daily_activeness_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_activeness_date", "block_contents": "PK 2/2"}, "doc.yoda.analytics___synergies__activation_level_daily_app_key": {"name": "analytics___synergies__activation_level_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_app_key", "block_contents": "PK 1/2"}, "doc.yoda.analytics___synergies__activation_level_daily_dwh_updated_at": {"name": "analytics___synergies__activation_level_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__activation_level_daily_email_editor_loyalty_block_activation_level": {"name": "analytics___synergies__activation_level_daily_email_editor_loyalty_block_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_email_editor_loyalty_block_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_email_editor_product_with_reviews_block_activation_level": {"name": "analytics___synergies__activation_level_daily_email_editor_product_with_reviews_block_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_email_editor_product_with_reviews_block_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_email_editor_reviews_block_activation_level": {"name": "analytics___synergies__activation_level_daily_email_editor_reviews_block_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_email_editor_reviews_block_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_image_review_earning_rule_loyalty_activation_level": {"name": "analytics___synergies__activation_level_daily_image_review_earning_rule_loyalty_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_image_review_earning_rule_loyalty_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_loyalty_subscription_discount_reward_activation_level": {"name": "analytics___synergies__activation_level_daily_loyalty_subscription_discount_reward_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_loyalty_subscription_discount_reward_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_review_earning_rule_loyalty_activation_level": {"name": "analytics___synergies__activation_level_daily_review_earning_rule_loyalty_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_review_earning_rule_loyalty_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sign_up_for_sms_earning_rule_loyalty_activation_level": {"name": "analytics___synergies__activation_level_daily_sign_up_for_sms_earning_rule_loyalty_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sign_up_for_sms_earning_rule_loyalty_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_campaign_to_grow_product_subscribers_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_campaign_to_grow_product_subscribers_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_campaign_to_grow_product_subscribers_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_campaigns_click_to_redeem_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_campaigns_click_to_redeem_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_campaigns_click_to_redeem_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_campaigns_redemption_reminder_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_campaigns_redemption_reminder_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_campaigns_redemption_reminder_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_campaigns_reward_program_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_campaigns_reward_program_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_campaigns_reward_program_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_campaigns_vip_tier_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_campaigns_vip_tier_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_campaigns_vip_tier_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_abandoned_checkout_reviews_star_rating_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_flows_abandoned_checkout_reviews_star_rating_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_abandoned_checkout_reviews_star_rating_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_cdp_optin_status_changed_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_flows_cdp_optin_status_changed_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_cdp_optin_status_changed_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_swell_birthday_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_flows_swell_birthday_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_swell_birthday_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_swell_points_reminder_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_flows_swell_points_reminder_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_swell_points_reminder_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_swell_tier_earned_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_flows_swell_tier_earned_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_swell_tier_earned_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_yotpo_product_review_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_flows_yotpo_product_review_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_yotpo_product_review_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_yotpo_site_review_activation_level": {"name": "analytics___synergies__activation_level_daily_sms_flows_yotpo_site_review_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_sms_flows_yotpo_site_review_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_subscription_cancellation_notification_flow_activation_level": {"name": "analytics___synergies__activation_level_daily_subscription_cancellation_notification_flow_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_subscription_cancellation_notification_flow_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_subscription_confirmation_notification_flow_activation_level": {"name": "analytics___synergies__activation_level_daily_subscription_confirmation_notification_flow_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_subscription_confirmation_notification_flow_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_subscription_payment_failure_notification_flow_activation_level": {"name": "analytics___synergies__activation_level_daily_subscription_payment_failure_notification_flow_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_subscription_payment_failure_notification_flow_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_subscriptions_management_url_notification_flow_activation_level": {"name": "analytics___synergies__activation_level_daily_subscriptions_management_url_notification_flow_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_subscriptions_management_url_notification_flow_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__activation_level_daily_video_review_earning_rule_loyalty_activation_level": {"name": "analytics___synergies__activation_level_daily_video_review_earning_rule_loyalty_activation_level", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__activation_level_daily/analytics___synergies__activation_level_daily.md", "unique_id": "doc.yoda.analytics___synergies__activation_level_daily_video_review_earning_rule_loyalty_activation_level", "block_contents": ""}, "doc.yoda.analytics___synergies__eligible_store_monthly": {"name": "analytics___synergies__eligible_store_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly", "block_contents": "Modeled table of eligible synergy stores with indicators at a monthly level | PK and granularity: synergy_month, app_key, synergy_id"}, "doc.yoda.analytics___synergies__eligible_store_monthly_app_key": {"name": "analytics___synergies__eligible_store_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly_app_key", "block_contents": "yotpo store unique identifier - primary key 2/3"}, "doc.yoda.analytics___synergies__eligible_store_monthly_dwh_updated_at": {"name": "analytics___synergies__eligible_store_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__eligible_store_monthly_industry": {"name": "analytics___synergies__eligible_store_monthly_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly_industry", "block_contents": "industry: automotive, clothing, fashion & accessories, etc."}, "doc.yoda.analytics___synergies__eligible_store_monthly_is_active": {"name": "analytics___synergies__eligible_store_monthly_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly_is_active", "block_contents": "store synergy active indicator: 0/1.\nthe synergy was active DURING the month, NOT necessarily at the end of it."}, "doc.yoda.analytics___synergies__eligible_store_monthly_is_enabled": {"name": "analytics___synergies__eligible_store_monthly_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly_is_enabled", "block_contents": "store synergy enablement indicator: 0/1.\nthe synergy was in enabled status DURING the month, NOT necessarily at the end of it."}, "doc.yoda.analytics___synergies__eligible_store_monthly_last_3m_orders_avg_bucket": {"name": "analytics___synergies__eligible_store_monthly_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly_last_3m_orders_avg_bucket", "block_contents": ""}, "doc.yoda.analytics___synergies__eligible_store_monthly_orders_bucket": {"name": "analytics___synergies__eligible_store_monthly_orders_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly_orders_bucket", "block_contents": "bucket of order count"}, "doc.yoda.analytics___synergies__eligible_store_monthly_synergy_id": {"name": "analytics___synergies__eligible_store_monthly_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly_synergy_id", "block_contents": "synergy widget unique identifier - primary key 3/3"}, "doc.yoda.analytics___synergies__eligible_store_monthly_synergy_month": {"name": "analytics___synergies__eligible_store_monthly_synergy_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly_synergy_month", "block_contents": "store synergy month - primary key 1/3"}, "doc.yoda.analytics___synergies__eligible_store_monthly_synergy_name": {"name": "analytics___synergies__eligible_store_monthly_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly_synergy_name", "block_contents": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc."}, "doc.yoda.analytics___synergies__eligible_store_monthly_yotpo_tenure_year_count": {"name": "analytics___synergies__eligible_store_monthly_yotpo_tenure_year_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__eligible_store_monthly/analytics___synergies__eligible_store_monthly.md", "unique_id": "doc.yoda.analytics___synergies__eligible_store_monthly_yotpo_tenure_year_count", "block_contents": "years at yotpo"}, "doc.yoda.analytics___synergies__kpi_ranked_action": {"name": "analytics___synergies__kpi_ranked_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action", "block_contents": "A table that includes a union of all the KPIs synergies tables, with ranking for overlapping actions between synergies\ngranularity: synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, order_id"}, "doc.yoda.analytics___synergies__kpi_ranked_action_action_attribute_type": {"name": "analytics___synergies__kpi_ranked_action_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_action_attribute_type", "block_contents": "action attribute type, e.g: rating"}, "doc.yoda.analytics___synergies__kpi_ranked_action_action_attribute_value": {"name": "analytics___synergies__kpi_ranked_action_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_action_attribute_value", "block_contents": "action attribute value, e.g: 5 (review rating)"}, "doc.yoda.analytics___synergies__kpi_ranked_action_action_id": {"name": "analytics___synergies__kpi_ranked_action_action_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_action_id", "block_contents": "action unique identifier, e.g: review_id - primary key 9/10"}, "doc.yoda.analytics___synergies__kpi_ranked_action_action_type": {"name": "analytics___synergies__kpi_ranked_action_action_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_action_type", "block_contents": "customer (shopper) action type: review, new_subscriber, etc. - primary key 8/10"}, "doc.yoda.analytics___synergies__kpi_ranked_action_app_key": {"name": "analytics___synergies__kpi_ranked_action_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_app_key", "block_contents": "yotpo store unique identifier - primary key 2/10"}, "doc.yoda.analytics___synergies__kpi_ranked_action_customer_email": {"name": "analytics___synergies__kpi_ranked_action_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_customer_email", "block_contents": "customer (shopper) email - primary key 3/10"}, "doc.yoda.analytics___synergies__kpi_ranked_action_customer_external_id": {"name": "analytics___synergies__kpi_ranked_action_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_customer_external_id", "block_contents": "customer (shopper) external id - primary key 5/10"}, "doc.yoda.analytics___synergies__kpi_ranked_action_customer_phone_number": {"name": "analytics___synergies__kpi_ranked_action_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_customer_phone_number", "block_contents": "customer (shopper) phone number - primary key 4/10"}, "doc.yoda.analytics___synergies__kpi_ranked_action_dwh_updated_at": {"name": "analytics___synergies__kpi_ranked_action_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__kpi_ranked_action_id": {"name": "analytics___synergies__kpi_ranked_action_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_id", "block_contents": "synergy source record unique identifier"}, "doc.yoda.analytics___synergies__kpi_ranked_action_kpi_action_record_id": {"name": "analytics___synergies__kpi_ranked_action_kpi_action_record_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_kpi_action_record_id", "block_contents": "record unique identifier"}, "doc.yoda.analytics___synergies__kpi_ranked_action_order_id": {"name": "analytics___synergies__kpi_ranked_action_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_order_id", "block_contents": "order id - primary key 10/10"}, "doc.yoda.analytics___synergies__kpi_ranked_action_record_rank": {"name": "analytics___synergies__kpi_ranked_action_record_rank", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_record_rank", "block_contents": "rank of record for when the action/order appears more than once for different synergies"}, "doc.yoda.analytics___synergies__kpi_ranked_action_source": {"name": "analytics___synergies__kpi_ranked_action_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_source", "block_contents": "source model name, e.g: loyalty__review_earning_rule_loyalty"}, "doc.yoda.analytics___synergies__kpi_ranked_action_source_id": {"name": "analytics___synergies__kpi_ranked_action_source_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_source_id", "block_contents": "source unique identifier, e.g: earning_rule_id - primary key 7/10"}, "doc.yoda.analytics___synergies__kpi_ranked_action_source_type": {"name": "analytics___synergies__kpi_ranked_action_source_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_source_type", "block_contents": "source type: earning_rule, flow, etc. - primary key 6/10"}, "doc.yoda.analytics___synergies__kpi_ranked_action_synergy_id": {"name": "analytics___synergies__kpi_ranked_action_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__kpi_ranked_action/analytics___synergies__kpi_ranked_action.md", "unique_id": "doc.yoda.analytics___synergies__kpi_ranked_action_synergy_id", "block_contents": "synergy widget unique identifier - primary key 1/10"}, "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly": {"name": "analytics___synergies__loyalty_store_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly", "block_contents": "Modeled table of Loyalty synergetic & non-synergetic customers metrics | PK and granularity: synergy_month, app_key"}, "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_app_key": {"name": "analytics___synergies__loyalty_store_metrics_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_app_key", "block_contents": "yotpo store unique identifier - primary key 2/2"}, "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_dwh_updated_at": {"name": "analytics___synergies__loyalty_store_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_non_synergetic_customer_last_12m_redemption_cnt": {"name": "analytics___synergies__loyalty_store_metrics_monthly_non_synergetic_customer_last_12m_redemption_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_non_synergetic_customer_last_12m_redemption_cnt", "block_contents": "number of redemptions of non-synergetic customers in the last 12 months"}, "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_non_synergetic_customer_last_12m_unique_cnt": {"name": "analytics___synergies__loyalty_store_metrics_monthly_non_synergetic_customer_last_12m_unique_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_non_synergetic_customer_last_12m_unique_cnt", "block_contents": "number of unique non-synergetic redeemers in the last 12 months"}, "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_synergetic_customer_last_12m_redemption_cnt": {"name": "analytics___synergies__loyalty_store_metrics_monthly_synergetic_customer_last_12m_redemption_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_synergetic_customer_last_12m_redemption_cnt", "block_contents": "number of redemptions of synergetic customers in the last 12 months"}, "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_synergetic_customer_last_12m_unique_cnt": {"name": "analytics___synergies__loyalty_store_metrics_monthly_synergetic_customer_last_12m_unique_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_synergetic_customer_last_12m_unique_cnt", "block_contents": "number of unique synergetic redeemers in the last 12 months"}, "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_synergy_month": {"name": "analytics___synergies__loyalty_store_metrics_monthly_synergy_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_metrics_monthly/analytics___synergies__loyalty_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_metrics_monthly_synergy_month", "block_contents": "store synergy month - primary key 1/2"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "block_contents": "Modeled table of loyalty synergies metrics at a monthly level | PK and granularity: synergy_month, app_key, synergy_id"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_app_key": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_app_key", "block_contents": "yotpo store unique identifier - primary key 2/3"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_dwh_updated_at": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_redeemer_cnt": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_redeemer_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_redeemer_cnt", "block_contents": "number of unique redeemers"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_redemption_cnt": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_redemption_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_redemption_cnt", "block_contents": "number of redemptions"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_loyalty_order_amount_in_usd_sum": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_loyalty_order_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_loyalty_order_amount_in_usd_sum", "block_contents": "sum of the usd amount of attributed loyalty orders"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_loyalty_order_cnt": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_loyalty_order_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_loyalty_order_cnt", "block_contents": "number of attributed loyalty orders"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_order_amount_in_usd_sum": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_order_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_order_amount_in_usd_sum", "block_contents": "sum of the usd amount of total attributed orders"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_order_cnt": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_order_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_order_cnt", "block_contents": "number of total attributed orders"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_sms_order_amount_in_usd_sum": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_sms_order_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_sms_order_amount_in_usd_sum", "block_contents": "sum of the usd amount of attributed sms orders"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_sms_order_cnt": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_sms_order_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_attributed_sms_order_cnt", "block_contents": "number of attributed sms orders"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_order_amount_in_usd_sum": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_store_order_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_order_amount_in_usd_sum", "block_contents": "sum of the usd amount of total store orders"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_order_cnt": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_store_order_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_store_order_cnt", "block_contents": "number of total store orders"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_amount_in_usd_sum": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_amount_in_usd_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_amount_in_usd_sum", "block_contents": "sum of the usd amount of synergetic orders"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_amount_in_usd_sum_no_overlaps": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_amount_in_usd_sum_no_overlaps", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_amount_in_usd_sum_no_overlaps", "block_contents": "sum of the usd amount of synergetic orders without overlaps between synergies"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_cnt": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_cnt", "block_contents": "number of synergetic orders"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_cnt_no_overlaps": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_cnt_no_overlaps", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_order_cnt_no_overlaps", "block_contents": "number of synergetic orders without overlaps between synergies"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_point_sum": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_point_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_point_sum", "block_contents": "sum of synergetic points redeemed"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_point_sum_no_overlaps": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_point_sum_no_overlaps", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_point_sum_no_overlaps", "block_contents": "sum of synergetic points redeemed without overlaps between synergies"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redeemer_cnt": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redeemer_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redeemer_cnt", "block_contents": "number of unique synergetic redeemers"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redeemer_cnt_no_overlaps": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redeemer_cnt_no_overlaps", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redeemer_cnt_no_overlaps", "block_contents": "number of unique synergetic redeemers without overlaps between synergies"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redemption_cnt": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redemption_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redemption_cnt", "block_contents": "number of synergetic redemptions"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redemption_cnt_no_overlaps": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redemption_cnt_no_overlaps", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergetic_redemption_cnt_no_overlaps", "block_contents": "number of synergetic redemptions without overlaps between synergies"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_id": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_id", "block_contents": "synergy widget unique identifier - primary key 3/3"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month", "block_contents": "store synergy month - primary key 1/3"}, "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_name": {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__loyalty_store_synergy_metrics_monthly/analytics___synergies__loyalty_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_name", "block_contents": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc."}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly": {"name": "analytics___synergies__organization_synergy_activeness_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly", "block_contents": "PK [month,organization_key] OR [organization_month_id]\n\nThis table stores indications on synergies activeness for each organization and month.\n\nEach organization can have multiple stores and each store can have different active synergies."}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_dwh_updated_at": {"name": "analytics___synergies__organization_synergy_activeness_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_email_active_synergy": {"name": "analytics___synergies__organization_synergy_activeness_monthly_is_email_active_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_email_active_synergy", "block_contents": "Indicates if there is at least one store with active Email synergy"}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_active_synergy": {"name": "analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_active_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_active_synergy", "block_contents": "Indicates if there is at least one store with active Loyalty synergy"}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_sms_active_synergy": {"name": "analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_sms_active_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_sms_active_synergy", "block_contents": "Indicates if there is at least one store with active Loyalty<>SMS synergy"}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_subscriptions_active_synergy": {"name": "analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_subscriptions_active_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_subscriptions_active_synergy", "block_contents": "Indicates if there is at least one store with active Loyalty<>Subscriptions synergy"}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_ugc_active_synergy": {"name": "analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_ugc_active_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_loyalty_ugc_active_synergy", "block_contents": "Indicates if there is at least one store with active Loyalty<>UGC synergy"}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_sms_active_synergy": {"name": "analytics___synergies__organization_synergy_activeness_monthly_is_sms_active_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_sms_active_synergy", "block_contents": "Indicates if there is at least one store with active SMS synergy"}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_sms_subscriptions_active_synergy": {"name": "analytics___synergies__organization_synergy_activeness_monthly_is_sms_subscriptions_active_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_sms_subscriptions_active_synergy", "block_contents": "Indicates if there is at least one store with active SMS<>Subscriptions synergy"}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_sms_ugc_active_synergy": {"name": "analytics___synergies__organization_synergy_activeness_monthly_is_sms_ugc_active_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_sms_ugc_active_synergy", "block_contents": "Indicates if there is at least one store with active SMS<>UGC synergy"}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_subscriptions_active_synergy": {"name": "analytics___synergies__organization_synergy_activeness_monthly_is_subscriptions_active_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_subscriptions_active_synergy", "block_contents": "Indicates if there is at least one store with active Subscriptions synergy"}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_ugc_active_synergy": {"name": "analytics___synergies__organization_synergy_activeness_monthly_is_ugc_active_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_is_ugc_active_synergy", "block_contents": "Indicates if there is at least one store with active UGC synergy"}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_month": {"name": "analytics___synergies__organization_synergy_activeness_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_month", "block_contents": ""}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_number_of_active_synergies": {"name": "analytics___synergies__organization_synergy_activeness_monthly_number_of_active_synergies", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_number_of_active_synergies", "block_contents": "DISTINCT count of total active synergies under the organization.\n\nMeaning, if multiple stores have the same synergy activated, the synergy will count only once."}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_organization_key": {"name": "analytics___synergies__organization_synergy_activeness_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_organization_key", "block_contents": ""}, "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_organization_month_id": {"name": "analytics___synergies__organization_synergy_activeness_monthly_organization_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__organization_synergy_activeness_monthly/analytics___synergies__organization_synergy_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__organization_synergy_activeness_monthly_organization_month_id", "block_contents": "TABLE PK: combination of month|organization_key"}, "doc.yoda.analytics___synergies__store_activeness_daily": {"name": "analytics___synergies__store_activeness_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_daily", "block_contents": "Modeled table of active stores for each synergy at a daily level | PK and granularity: synergy_id,activeness_date, app_key"}, "doc.yoda.analytics___synergies__store_activeness_daily_activeness_date": {"name": "analytics___synergies__store_activeness_daily_activeness_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_daily_activeness_date", "block_contents": "activeness date - primary key 2/3"}, "doc.yoda.analytics___synergies__store_activeness_daily_app_key": {"name": "analytics___synergies__store_activeness_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_daily_app_key", "block_contents": "yotpo store unique identifier - primary key 3/3"}, "doc.yoda.analytics___synergies__store_activeness_daily_dwh_updated_at": {"name": "analytics___synergies__store_activeness_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__store_activeness_daily_synergy_id": {"name": "analytics___synergies__store_activeness_daily_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_daily_synergy_id", "block_contents": "synergy id - primary key 1/3"}, "doc.yoda.analytics___synergies__store_activeness_daily_synergy_name": {"name": "analytics___synergies__store_activeness_daily_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_daily/analytics___synergies__store_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_daily_synergy_name", "block_contents": "synergy name"}, "doc.yoda.analytics___synergies__store_activeness_monthly": {"name": "analytics___synergies__store_activeness_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_monthly", "block_contents": "Modeled table of stores synergy activeness per month | PK and granularity: app_key, synergy_id, synergy_month"}, "doc.yoda.analytics___synergies__store_activeness_monthly_app_key": {"name": "analytics___synergies__store_activeness_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_monthly_app_key", "block_contents": "yotpo store unique identifier - primary key 1/3"}, "doc.yoda.analytics___synergies__store_activeness_monthly_dwh_updated_at": {"name": "analytics___synergies__store_activeness_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__store_activeness_monthly_is_active_mtd": {"name": "analytics___synergies__store_activeness_monthly_is_active_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_monthly_is_active_mtd", "block_contents": "store synergy mtd active indicator: 0/1"}, "doc.yoda.analytics___synergies__store_activeness_monthly_synergy_id": {"name": "analytics___synergies__store_activeness_monthly_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_monthly_synergy_id", "block_contents": "synergy widget unique identifier - primary key 2/3"}, "doc.yoda.analytics___synergies__store_activeness_monthly_synergy_month": {"name": "analytics___synergies__store_activeness_monthly_synergy_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_monthly_synergy_month", "block_contents": "month of synergy activeness - primary key 3/3"}, "doc.yoda.analytics___synergies__store_activeness_monthly_synergy_name": {"name": "analytics___synergies__store_activeness_monthly_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_activeness_monthly/analytics___synergies__store_activeness_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_activeness_monthly_synergy_name", "block_contents": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc."}, "doc.yoda.analytics___synergies__store_enablement_daily": {"name": "analytics___synergies__store_enablement_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_daily", "block_contents": "Modeled table of eligible synergy stores for each day with an enablement indicator. Indication is partial, for full enablement data refer to the monthly enablement model | PK and granularity: synergy_date, app_key, synergy_id"}, "doc.yoda.analytics___synergies__store_enablement_daily_app_key": {"name": "analytics___synergies__store_enablement_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_daily_app_key", "block_contents": "yotpo store unique identifier - primary key 2/3"}, "doc.yoda.analytics___synergies__store_enablement_daily_dwh_updated_at": {"name": "analytics___synergies__store_enablement_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__store_enablement_daily_is_enabled": {"name": "analytics___synergies__store_enablement_daily_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_daily_is_enabled", "block_contents": "store synergy enablement indicator: 0/1.\nthe synergy was in enabled status DURING the date, NOT necessarily at the end of it."}, "doc.yoda.analytics___synergies__store_enablement_daily_synergy_date": {"name": "analytics___synergies__store_enablement_daily_synergy_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_daily_synergy_date", "block_contents": "store synergy date - primary key 1/3"}, "doc.yoda.analytics___synergies__store_enablement_daily_synergy_id": {"name": "analytics___synergies__store_enablement_daily_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_daily_synergy_id", "block_contents": "synergy widget unique identifier - primary key 3/3"}, "doc.yoda.analytics___synergies__store_enablement_daily_synergy_name": {"name": "analytics___synergies__store_enablement_daily_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_daily/analytics___synergies__store_enablement_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_daily_synergy_name", "block_contents": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc."}, "doc.yoda.analytics___synergies__store_enablement_monthly": {"name": "analytics___synergies__store_enablement_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_monthly", "block_contents": "Modeled table of eligible synergy stores for each month with an enablement indicator | PK and granularity: synergy_month, app_key, synergy_id"}, "doc.yoda.analytics___synergies__store_enablement_monthly_app_key": {"name": "analytics___synergies__store_enablement_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_monthly_app_key", "block_contents": "yotpo store unique identifier - primary key 2/3"}, "doc.yoda.analytics___synergies__store_enablement_monthly_dwh_updated_at": {"name": "analytics___synergies__store_enablement_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__store_enablement_monthly_is_enabled": {"name": "analytics___synergies__store_enablement_monthly_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_monthly_is_enabled", "block_contents": "store synergy enablement indicator: 0/1.\nthe synergy was in enabled status DURING the month, NOT necessarily at the end of it."}, "doc.yoda.analytics___synergies__store_enablement_monthly_is_enabled_mtd": {"name": "analytics___synergies__store_enablement_monthly_is_enabled_mtd", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_monthly_is_enabled_mtd", "block_contents": "store synergy mtd enablement indicator: 0/1"}, "doc.yoda.analytics___synergies__store_enablement_monthly_synergy_id": {"name": "analytics___synergies__store_enablement_monthly_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_monthly_synergy_id", "block_contents": "synergy widget unique identifier - primary key 3/3"}, "doc.yoda.analytics___synergies__store_enablement_monthly_synergy_month": {"name": "analytics___synergies__store_enablement_monthly_synergy_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_monthly_synergy_month", "block_contents": "store synergy month - primary key 1/3"}, "doc.yoda.analytics___synergies__store_enablement_monthly_synergy_name": {"name": "analytics___synergies__store_enablement_monthly_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_monthly/analytics___synergies__store_enablement_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_monthly_synergy_name", "block_contents": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc."}, "doc.yoda.analytics___synergies__store_enablement_over_time": {"name": "analytics___synergies__store_enablement_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_over_time", "block_contents": "Modeled table of eligible synergy stores for time range with an enablement indicator. Indication is partial, for full enablement data refer to the monthly enablement model | PK and granularity: app_key, synergy_id, from_time"}, "doc.yoda.analytics___synergies__store_enablement_over_time_app_key": {"name": "analytics___synergies__store_enablement_over_time_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_over_time_app_key", "block_contents": "yotpo store unique identifier - primary key 1/3"}, "doc.yoda.analytics___synergies__store_enablement_over_time_dwh_updated_at": {"name": "analytics___synergies__store_enablement_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_over_time_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__store_enablement_over_time_first_event_id": {"name": "analytics___synergies__store_enablement_over_time_first_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_over_time_first_event_id", "block_contents": "the first event identifier for store and synergy widget"}, "doc.yoda.analytics___synergies__store_enablement_over_time_from_time": {"name": "analytics___synergies__store_enablement_over_time_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_over_time_from_time", "block_contents": "enablement status range start timestamp - primary key 3/3 - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time - primary key 3/3"}, "doc.yoda.analytics___synergies__store_enablement_over_time_is_enabled": {"name": "analytics___synergies__store_enablement_over_time_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_over_time_is_enabled", "block_contents": "store synergy enablement indicator: 0/1"}, "doc.yoda.analytics___synergies__store_enablement_over_time_synergy_id": {"name": "analytics___synergies__store_enablement_over_time_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_over_time_synergy_id", "block_contents": "synergy widget unique identifier - primary key 2/3"}, "doc.yoda.analytics___synergies__store_enablement_over_time_synergy_name": {"name": "analytics___synergies__store_enablement_over_time_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_over_time_synergy_name", "block_contents": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc."}, "doc.yoda.analytics___synergies__store_enablement_over_time_to_time": {"name": "analytics___synergies__store_enablement_over_time_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_enablement_over_time/analytics___synergies__store_enablement_over_time.md", "unique_id": "doc.yoda.analytics___synergies__store_enablement_over_time_to_time", "block_contents": "enablement status range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time"}, "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily": {"name": "analytics___synergies__store_last_thirty_days_activeness_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily", "block_contents": "Modeled table of last 30 days active stores for each synergy at a daily level | PK and granularity: synergy_id, activeness_date, app_key"}, "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily_activeness_date": {"name": "analytics___synergies__store_last_thirty_days_activeness_daily_activeness_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily_activeness_date", "block_contents": "activeness date - primary key 2/3"}, "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily_app_key": {"name": "analytics___synergies__store_last_thirty_days_activeness_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily_app_key", "block_contents": "yotpo store unique identifier - primary key 3/3"}, "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily_dwh_updated_at": {"name": "analytics___synergies__store_last_thirty_days_activeness_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id": {"name": "analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id", "block_contents": "synergy id - primary key 1/3"}, "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily_synergy_name": {"name": "analytics___synergies__store_last_thirty_days_activeness_daily_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_last_thirty_days_activeness_daily/analytics___synergies__store_last_thirty_days_activeness_daily.md", "unique_id": "doc.yoda.analytics___synergies__store_last_thirty_days_activeness_daily_synergy_name", "block_contents": "synergy name"}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly": {"name": "analytics___synergies__store_synergy_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly", "block_contents": "Modeled table of all synergies metrics at a store, synergy and monthly level | PK and granularity: synergy_month, app_key, synergy_id, metric_name"}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_app_key": {"name": "analytics___synergies__store_synergy_metrics_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_app_key", "block_contents": "yotpo store unique identifier - primary key 2/4"}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_dwh_updated_at": {"name": "analytics___synergies__store_synergy_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_industry": {"name": "analytics___synergies__store_synergy_metrics_monthly_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_industry", "block_contents": "the industry of the store"}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_last_3m_orders_avg_bucket": {"name": "analytics___synergies__store_synergy_metrics_monthly_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_last_3m_orders_avg_bucket", "block_contents": ""}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_metric_name": {"name": "analytics___synergies__store_synergy_metrics_monthly_metric_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_metric_name", "block_contents": "metric_name: synergetic_review_cnt, review_rating_sum, etc - primary key 4/4"}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_metric_value": {"name": "analytics___synergies__store_synergy_metrics_monthly_metric_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_metric_value", "block_contents": "metric's value"}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_orders_bucket": {"name": "analytics___synergies__store_synergy_metrics_monthly_orders_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_orders_bucket", "block_contents": "the store order bucket on a given month"}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_synergy_id": {"name": "analytics___synergies__store_synergy_metrics_monthly_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_synergy_id", "block_contents": "synergy widget unique identifier - primary key 3/4"}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_synergy_month": {"name": "analytics___synergies__store_synergy_metrics_monthly_synergy_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_synergy_month", "block_contents": "store synergy month - primary key 1/4"}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_synergy_name": {"name": "analytics___synergies__store_synergy_metrics_monthly_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_synergy_name", "block_contents": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc."}, "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_yotpo_tenure_year_count": {"name": "analytics___synergies__store_synergy_metrics_monthly_yotpo_tenure_year_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__store_synergy_metrics_monthly/analytics___synergies__store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__store_synergy_metrics_monthly_yotpo_tenure_year_count", "block_contents": "the store tenure in yotpo on a given month"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly": {"name": "analytics___synergies__synergy_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly", "block_contents": "Modeled table of aggregated synergies metrics at a monthly level | PK and granularity: synergy_month, synergy_id, synegy_name, synergy_metric_name, industry, last_3m_orders_avg_bucket, yotpo_tenure_year_count"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_dwh_updated_at": {"name": "analytics___synergies__synergy_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_industry": {"name": "analytics___synergies__synergy_metrics_monthly_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_industry", "block_contents": "the industry of the store - primary key 5/7"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_is_email_synergy": {"name": "analytics___synergies__synergy_metrics_monthly_is_email_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_is_email_synergy", "block_contents": "indicator whether the synergy involves email"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_is_loyalty_synergy": {"name": "analytics___synergies__synergy_metrics_monthly_is_loyalty_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_is_loyalty_synergy", "block_contents": "indicator whether the synergy involves loyalty"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_is_reviews_synergy": {"name": "analytics___synergies__synergy_metrics_monthly_is_reviews_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_is_reviews_synergy", "block_contents": "indicator whether the synergy involves reviews"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_is_sms_synergy": {"name": "analytics___synergies__synergy_metrics_monthly_is_sms_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_is_sms_synergy", "block_contents": "indicator whether the synergy involves sms"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_is_subscriptions_synergy": {"name": "analytics___synergies__synergy_metrics_monthly_is_subscriptions_synergy", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_is_subscriptions_synergy", "block_contents": "indicator whether the synergy involves subscriptions"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_last_3m_orders_avg_bucket": {"name": "analytics___synergies__synergy_metrics_monthly_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_last_3m_orders_avg_bucket", "block_contents": "the store order bucket on a given month - primary key 6/7"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_store_metric_name": {"name": "analytics___synergies__synergy_metrics_monthly_store_metric_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_store_metric_name", "block_contents": "non-synergy metrics on a store level: total orders, total redemptions, etc."}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_store_metric_value": {"name": "analytics___synergies__synergy_metrics_monthly_store_metric_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_store_metric_value", "block_contents": "store metric's value"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_action_product": {"name": "analytics___synergies__synergy_metrics_monthly_synergy_action_product", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_action_product", "block_contents": "the product that is affected by the synergy"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_id": {"name": "analytics___synergies__synergy_metrics_monthly_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_id", "block_contents": "synergy widget unique identifier - primary key 2/7"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_metric_name": {"name": "analytics___synergies__synergy_metrics_monthly_synergy_metric_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_metric_name", "block_contents": "synergy metric name: synergetic_review_cnt, review_rating_sum, etc - primary key 4/7"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_metric_value": {"name": "analytics___synergies__synergy_metrics_monthly_synergy_metric_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_metric_value", "block_contents": "synergy metric's value"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_metrics_id": {"name": "analytics___synergies__synergy_metrics_monthly_synergy_metrics_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_metrics_id", "block_contents": "unique id, generate by sha2 function on all PK fields"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_month": {"name": "analytics___synergies__synergy_metrics_monthly_synergy_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_month", "block_contents": "store synergy month - primary key 1/7"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_name": {"name": "analytics___synergies__synergy_metrics_monthly_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_synergy_name", "block_contents": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc. - primary key 3/7"}, "doc.yoda.analytics___synergies__synergy_metrics_monthly_yotpo_tenure_year_count": {"name": "analytics___synergies__synergy_metrics_monthly_yotpo_tenure_year_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__synergy_metrics_monthly/analytics___synergies__synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__synergy_metrics_monthly_yotpo_tenure_year_count", "block_contents": "the store tenure in yotpo on a given month - primary key 7/7"}, "doc.yoda.analytics___synergies__ugc_store_metrics_monthly": {"name": "analytics___synergies__ugc_store_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_metrics_monthly", "block_contents": "Modeled table of UGC synergetic & non-synergetic customers metrics | PK and granularity: synergy_month, app_key"}, "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_app_key": {"name": "analytics___synergies__ugc_store_metrics_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_app_key", "block_contents": "yotpo store unique identifier - primary key 2/2"}, "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_dwh_updated_at": {"name": "analytics___synergies__ugc_store_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_non_synergetic_customer_last_12m_review_cnt": {"name": "analytics___synergies__ugc_store_metrics_monthly_non_synergetic_customer_last_12m_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_non_synergetic_customer_last_12m_review_cnt", "block_contents": "number of reviews of non-synergetic customers in the last 12 months"}, "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_non_synergetic_customer_last_12m_review_rating_sum": {"name": "analytics___synergies__ugc_store_metrics_monthly_non_synergetic_customer_last_12m_review_rating_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_non_synergetic_customer_last_12m_review_rating_sum", "block_contents": "sum of reviews ratings of non-synergetic customers in the last 12 months"}, "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_non_synergetic_customer_last_12m_unique_cnt": {"name": "analytics___synergies__ugc_store_metrics_monthly_non_synergetic_customer_last_12m_unique_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_non_synergetic_customer_last_12m_unique_cnt", "block_contents": "number of unique non-synergetic customerss in the last 12 months"}, "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_synergetic_customer_last_12m_review_cnt": {"name": "analytics___synergies__ugc_store_metrics_monthly_synergetic_customer_last_12m_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_synergetic_customer_last_12m_review_cnt", "block_contents": "number of reviews of synergetic customers in the last 12 months"}, "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_synergetic_customer_last_12m_review_rating_sum": {"name": "analytics___synergies__ugc_store_metrics_monthly_synergetic_customer_last_12m_review_rating_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_synergetic_customer_last_12m_review_rating_sum", "block_contents": "sum of reviews ratings of synergetic customers in the last 12 months"}, "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_synergetic_customer_last_12m_unique_cnt": {"name": "analytics___synergies__ugc_store_metrics_monthly_synergetic_customer_last_12m_unique_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_synergetic_customer_last_12m_unique_cnt", "block_contents": "number of unique synergetic customers in the last 12 months"}, "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_synergy_month": {"name": "analytics___synergies__ugc_store_metrics_monthly_synergy_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_metrics_monthly/analytics___synergies__ugc_store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_metrics_monthly_synergy_month", "block_contents": "store synergy month - primary key 1/2"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly", "block_contents": "Modeled table of UGC synergies metrics at a monthly level | PK and granularity: synergy_month, app_key, synergy_id"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_app_key": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_app_key", "block_contents": "yotpo store unique identifier - primary key 2/3"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_dwh_updated_at": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_review_cnt": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_review_cnt", "block_contents": "number of reviews"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_review_rating_sum": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_review_rating_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_review_rating_sum", "block_contents": "sum of reviews ratings"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_reviewer_cnt": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_reviewer_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_reviewer_cnt", "block_contents": "number of unique reviewers"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_cnt": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_cnt", "block_contents": "number of synergetic reviews"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_cnt_no_overlaps": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_cnt_no_overlaps", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_cnt_no_overlaps", "block_contents": "number of synergetic reviews without overlaps between synergies"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_rating_sum": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_rating_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_rating_sum", "block_contents": "sum of synergetic review ratings"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_rating_sum_no_overlaps": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_rating_sum_no_overlaps", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_review_rating_sum_no_overlaps", "block_contents": "sum of synergetic review ratings without overlaps between synergies"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_reviewer_cnt": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_reviewer_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_reviewer_cnt", "block_contents": "number of unique synergetic reviewers"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_reviewer_cnt_no_overlaps": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_reviewer_cnt_no_overlaps", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergetic_reviewer_cnt_no_overlaps", "block_contents": "number of unique synergetic reviewers without overlaps between synergies"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_id": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_id", "block_contents": "synergy widget unique identifier - primary key 3/3"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month", "block_contents": "store synergy month - primary key 1/3"}, "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_name": {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "original_file_path": "models/analytics/synergies/marts/analytics___synergies__ugc_store_synergy_metrics_monthly/analytics___synergies__ugc_store_synergy_metrics_monthly.md", "unique_id": "doc.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_name", "block_contents": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc."}, "doc.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness": {"name": "analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "block_contents": "Model which includes static values used for filtering and mapping in models that includes active stores in the products' synergies"}, "doc.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness_earning_rule_type": {"name": "analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness_earning_rule_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness_earning_rule_type", "block_contents": "earning rule type - e.g., smssignupcampaign, yotporeviewcampaign, etc. - Primary Key"}, "doc.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness_synergy_id": {"name": "analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness/analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness_synergy_id", "block_contents": "synergy widget unique identifier"}, "doc.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness": {"name": "analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "block_contents": "Model which includes static values used for filtering and mapping in models that includes active stores in the products' synergies"}, "doc.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness_flow_settings": {"name": "analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness_flow_settings", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness/analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness_flow_settings", "block_contents": "flow settings pattern - e.g., %\"field\":\"loyalty.% - Primary Key"}, "doc.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness": {"name": "analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "block_contents": "Model which includes static values used for filtering and mapping in models that includes active stores in the products' synergies"}, "doc.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness_flow_trigger": {"name": "analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness_flow_trigger", "block_contents": "flow trigger - e.g., integrations/swell_redemption_reminder, checkouts/create, etc. - Primary Key"}, "doc.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness_synergy_id": {"name": "analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness/analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness_synergy_id", "block_contents": "synergy widget unique identifier"}, "doc.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness": {"name": "analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "block_contents": "Model which includes static values used for filtering and mapping in models that includes active stores in the products' synergies"}, "doc.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness_flow_trigger": {"name": "analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness/analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness_flow_trigger", "block_contents": "flow trigger - e.g., integrations/swell_redemption_reminder, integrations/swell_birthday, etc. - Primary Key"}, "doc.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness": {"name": "analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "block_contents": "Model which includes static values used for filtering and mapping in models that includes active stores in the products' synergies"}, "doc.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness_sub_category": {"name": "analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness_sub_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness_sub_category", "block_contents": "sub-category - e.g., redeem-points, vip-tier, etc. - Primary Key"}, "doc.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness_synergy_id": {"name": "analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/base/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness.md", "original_file_path": "models/analytics/synergies/staging/base/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness/analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness.md", "unique_id": "doc.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness_synergy_id", "block_contents": "synergy widget unique identifier"}, "doc.yoda.analytics___synergies_stg__enablement_event": {"name": "analytics___synergies_stg__enablement_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event", "block_contents": "Modeled view of synergies enablement events | PK and granularity: app_key, widget_id, updated_at"}, "doc.yoda.analytics___synergies_stg__enablement_event_app_key": {"name": "analytics___synergies_stg__enablement_event_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_app_key", "block_contents": "yotpo store unique identifier - primary key 1/3"}, "doc.yoda.analytics___synergies_stg__enablement_event_enablement_status": {"name": "analytics___synergies_stg__enablement_event_enablement_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_enablement_status", "block_contents": "store synergy enablement status: completed, incomplete"}, "doc.yoda.analytics___synergies_stg__enablement_event_first_event_created_at": {"name": "analytics___synergies_stg__enablement_event_first_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_first_event_created_at", "block_contents": "first event created timestamp for store and widget"}, "doc.yoda.analytics___synergies_stg__enablement_event_first_event_created_date": {"name": "analytics___synergies_stg__enablement_event_first_event_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_first_event_created_date", "block_contents": "first event created date for store and widget"}, "doc.yoda.analytics___synergies_stg__enablement_event_first_event_id": {"name": "analytics___synergies_stg__enablement_event_first_event_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_first_event_id", "block_contents": "the first event identifier for store and widget"}, "doc.yoda.analytics___synergies_stg__enablement_event_is_enabled": {"name": "analytics___synergies_stg__enablement_event_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_is_enabled", "block_contents": "store synergy enablement indicator: 0/1"}, "doc.yoda.analytics___synergies_stg__enablement_event_store_widget_event_count": {"name": "analytics___synergies_stg__enablement_event_store_widget_event_count", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_store_widget_event_count", "block_contents": "event count for store and widget"}, "doc.yoda.analytics___synergies_stg__enablement_event_store_widget_row_ranking": {"name": "analytics___synergies_stg__enablement_event_store_widget_row_ranking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_store_widget_row_ranking", "block_contents": "event ranking for store and widget by updated_at"}, "doc.yoda.analytics___synergies_stg__enablement_event_store_widget_row_ranking_backwards": {"name": "analytics___synergies_stg__enablement_event_store_widget_row_ranking_backwards", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_store_widget_row_ranking_backwards", "block_contents": "event ranking for store and widget by updated_at backwards"}, "doc.yoda.analytics___synergies_stg__enablement_event_updated_at": {"name": "analytics___synergies_stg__enablement_event_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_updated_at", "block_contents": "event update timestamp - primary key 3/3"}, "doc.yoda.analytics___synergies_stg__enablement_event_updated_date": {"name": "analytics___synergies_stg__enablement_event_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_updated_date", "block_contents": "event update date"}, "doc.yoda.analytics___synergies_stg__enablement_event_widget_id": {"name": "analytics___synergies_stg__enablement_event_widget_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__enablement_event/analytics___synergies_stg__enablement_event.md", "unique_id": "doc.yoda.analytics___synergies_stg__enablement_event_widget_id", "block_contents": "widget unique identifier - primary key 2/3"}, "doc.yoda.analytics___synergies_stg__home_screen_section": {"name": "analytics___synergies_stg__home_screen_section", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_section", "block_contents": "Modeled view of home screen sections | PK and granularity: section_id"}, "doc.yoda.analytics___synergies_stg__home_screen_section_created_at": {"name": "analytics___synergies_stg__home_screen_section_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_section_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___synergies_stg__home_screen_section_created_date": {"name": "analytics___synergies_stg__home_screen_section_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_section_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___synergies_stg__home_screen_section_section_id": {"name": "analytics___synergies_stg__home_screen_section_section_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_section_section_id", "block_contents": "section unique identifier - primary key"}, "doc.yoda.analytics___synergies_stg__home_screen_section_section_name": {"name": "analytics___synergies_stg__home_screen_section_section_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_section_section_name", "block_contents": "section name: recommendations, synergies, etc."}, "doc.yoda.analytics___synergies_stg__home_screen_section_updated_at": {"name": "analytics___synergies_stg__home_screen_section_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_section_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___synergies_stg__home_screen_section_updated_date": {"name": "analytics___synergies_stg__home_screen_section_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_section/analytics___synergies_stg__home_screen_section.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_section_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___synergies_stg__home_screen_widget": {"name": "analytics___synergies_stg__home_screen_widget", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget", "block_contents": "Modeled view of home screen widgets | PK and granularity: widget_id"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_created_at": {"name": "analytics___synergies_stg__home_screen_widget_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_created_date": {"name": "analytics___synergies_stg__home_screen_widget_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_section_id": {"name": "analytics___synergies_stg__home_screen_widget_section_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_section_id", "block_contents": "section unique identifier"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_updated_at": {"name": "analytics___synergies_stg__home_screen_widget_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_updated_date": {"name": "analytics___synergies_stg__home_screen_widget_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_widget_id": {"name": "analytics___synergies_stg__home_screen_widget_widget_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_widget_id", "block_contents": "widget unique identifier - primary key"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_widget_name": {"name": "analytics___synergies_stg__home_screen_widget_widget_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget/analytics___synergies_stg__home_screen_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_widget_name", "block_contents": "widget name: popup_form, social_opt_in, etc."}, "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration": {"name": "analytics___synergies_stg__home_screen_widget_configuration", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration", "block_contents": "Modeled view of home screen widget configurations | PK and granularity: widget_configuration_id"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_configuration_key": {"name": "analytics___synergies_stg__home_screen_widget_configuration_configuration_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_configuration_key", "block_contents": "configuration key name (i.e title, description, etc.)"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_configuration_value": {"name": "analytics___synergies_stg__home_screen_widget_configuration_configuration_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_configuration_value", "block_contents": "the value of the given configuration key"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_created_at": {"name": "analytics___synergies_stg__home_screen_widget_configuration_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_created_date": {"name": "analytics___synergies_stg__home_screen_widget_configuration_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_updated_at": {"name": "analytics___synergies_stg__home_screen_widget_configuration_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_updated_date": {"name": "analytics___synergies_stg__home_screen_widget_configuration_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id": {"name": "analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id", "block_contents": "widget configuration unique identifier - primary key"}, "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_widget_id": {"name": "analytics___synergies_stg__home_screen_widget_configuration_widget_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__home_screen_widget_configuration/analytics___synergies_stg__home_screen_widget_configuration.md", "unique_id": "doc.yoda.analytics___synergies_stg__home_screen_widget_configuration_widget_id", "block_contents": "widget unique identifier"}, "doc.yoda.analytics___synergies_stg__synergy_widget": {"name": "analytics___synergies_stg__synergy_widget", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__synergy_widget", "block_contents": "Modeled table of synergies home screen widgets | PK and granularity: widget_id"}, "doc.yoda.analytics___synergies_stg__synergy_widget_created_date": {"name": "analytics___synergies_stg__synergy_widget_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__synergy_widget_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___synergies_stg__synergy_widget_dwh_updated_at": {"name": "analytics___synergies_stg__synergy_widget_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__synergy_widget_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___synergies_stg__synergy_widget_widget_id": {"name": "analytics___synergies_stg__synergy_widget_widget_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__synergy_widget_widget_id", "block_contents": "synergy widget id - primary key"}, "doc.yoda.analytics___synergies_stg__synergy_widget_widget_name": {"name": "analytics___synergies_stg__synergy_widget_widget_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.md", "original_file_path": "models/analytics/synergies/staging/marts_compatible/analytics___synergies_stg__synergy_widget/analytics___synergies_stg__synergy_widget.md", "unique_id": "doc.yoda.analytics___synergies_stg__synergy_widget_widget_name", "block_contents": "widget name"}, "doc.yoda.analytics___ugc__active_metrics_monthly": {"name": "analytics___ugc__active_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly", "block_contents": "Active drill by components by last day in month (looking 30 days back) | granularity: metrics_id"}, "doc.yoda.analytics___ugc__active_metrics_monthly_closing_plan_group": {"name": "analytics___ugc__active_metrics_monthly_closing_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_closing_plan_group", "block_contents": "closing plan group"}, "doc.yoda.analytics___ugc__active_metrics_monthly_closing_plan_name": {"name": "analytics___ugc__active_metrics_monthly_closing_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_closing_plan_name", "block_contents": "The closing plan name"}, "doc.yoda.analytics___ugc__active_metrics_monthly_dwh_created_at": {"name": "analytics___ugc__active_metrics_monthly_dwh_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_dwh_created_at", "block_contents": ""}, "doc.yoda.analytics___ugc__active_metrics_monthly_had_orders_last_30d": {"name": "analytics___ugc__active_metrics_monthly_had_orders_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_had_orders_last_30d", "block_contents": "Indication if the store/organization had orders in the last 30d in the end of month"}, "doc.yoda.analytics___ugc__active_metrics_monthly_had_reviews_last_30d": {"name": "analytics___ugc__active_metrics_monthly_had_reviews_last_30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_had_reviews_last_30d", "block_contents": "Indication if the store/organization had reviews in the last 30d in the end of month"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_active_tier_0": {"name": "analytics___ugc__active_metrics_monthly_is_active_tier_0", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_active_tier_0", "block_contents": "Indication if the store/organization was active 0 in the last 30d in the end of month"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_active_tier_1": {"name": "analytics___ugc__active_metrics_monthly_is_active_tier_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_active_tier_1", "block_contents": "Indication if the store/organization was active 1 in the last 30d in the end of month"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_active_tier_2": {"name": "analytics___ugc__active_metrics_monthly_is_active_tier_2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_active_tier_2", "block_contents": "Indication if the store/organization was active 2 in the last 30d in the end of month"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_active_tier_3": {"name": "analytics___ugc__active_metrics_monthly_is_active_tier_3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_active_tier_3", "block_contents": "Indication if the store/organization was active 3 in the last 30d in the end of month"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_googlefeed_enabled_l30d": {"name": "analytics___ugc__active_metrics_monthly_is_googlefeed_enabled_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_googlefeed_enabled_l30d", "block_contents": "Indication if the store/organization pla was enabled in the last 30d in the end of month"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_googlesellerrating_enabled_l30d": {"name": "analytics___ugc__active_metrics_monthly_is_googlesellerrating_enabled_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_googlesellerrating_enabled_l30d", "block_contents": "Indication if the store/organization gsr was enabled in the last 30d in the end of month"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_gsr_enabled": {"name": "analytics___ugc__active_metrics_monthly_is_gsr_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_gsr_enabled", "block_contents": "Indication if the store/organization had GSR enabled"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_gsr_enabled_l30d": {"name": "analytics___ugc__active_metrics_monthly_is_gsr_enabled_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_gsr_enabled_l30d", "block_contents": "Gsr enablement ins last 30 days"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_map_enabled_l30d": {"name": "analytics___ugc__active_metrics_monthly_is_map_enabled_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_map_enabled_l30d", "block_contents": "Indication if the store/organization map was enabled in the last 30d in the end of month"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_pla_enabled": {"name": "analytics___ugc__active_metrics_monthly_is_pla_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_pla_enabled", "block_contents": "Indication if the store/organization had PLA enabled"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_pla_enabled_l30d": {"name": "analytics___ugc__active_metrics_monthly_is_pla_enabled_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_pla_enabled_l30d", "block_contents": "Pla enablement last 30 days"}, "doc.yoda.analytics___ugc__active_metrics_monthly_is_reviews_widget_loaded": {"name": "analytics___ugc__active_metrics_monthly_is_reviews_widget_loaded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_is_reviews_widget_loaded", "block_contents": "Indication if the store/organization had a widget load in the last 30d in the end of month"}, "doc.yoda.analytics___ugc__active_metrics_monthly_metric_amount": {"name": "analytics___ugc__active_metrics_monthly_metric_amount", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_metric_amount", "block_contents": "Amount of stores or organizations"}, "doc.yoda.analytics___ugc__active_metrics_monthly_metrics_id": {"name": "analytics___ugc__active_metrics_monthly_metrics_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_metrics_id", "block_contents": "The table ID"}, "doc.yoda.analytics___ugc__active_metrics_monthly_month": {"name": "analytics___ugc__active_metrics_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_month", "block_contents": "Month"}, "doc.yoda.analytics___ugc__active_metrics_monthly_orders_bucket": {"name": "analytics___ugc__active_metrics_monthly_orders_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_orders_bucket", "block_contents": "Order bucket"}, "doc.yoda.analytics___ugc__active_metrics_monthly_organization_last_3m_orders_avg_bucket": {"name": "analytics___ugc__active_metrics_monthly_organization_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_organization_last_3m_orders_avg_bucket", "block_contents": ""}, "doc.yoda.analytics___ugc__active_metrics_monthly_organization_platform": {"name": "analytics___ugc__active_metrics_monthly_organization_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_organization_platform", "block_contents": "The organization platform"}, "doc.yoda.analytics___ugc__active_metrics_monthly_organizations": {"name": "analytics___ugc__active_metrics_monthly_organizations", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_organizations", "block_contents": "Number of organizations"}, "doc.yoda.analytics___ugc__active_metrics_monthly_owner_type": {"name": "analytics___ugc__active_metrics_monthly_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_owner_type", "block_contents": "Organization or store level"}, "doc.yoda.analytics___ugc__active_metrics_monthly_platform_name": {"name": "analytics___ugc__active_metrics_monthly_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_platform_name", "block_contents": "Platfrom based on organization or store"}, "doc.yoda.analytics___ugc__active_metrics_monthly_platform_plan_name": {"name": "analytics___ugc__active_metrics_monthly_platform_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_platform_plan_name", "block_contents": "The name of the store platform plan"}, "doc.yoda.analytics___ugc__active_metrics_monthly_store_platform": {"name": "analytics___ugc__active_metrics_monthly_store_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_store_platform", "block_contents": "The store platfrom"}, "doc.yoda.analytics___ugc__active_metrics_monthly_store_platform_plan": {"name": "analytics___ugc__active_metrics_monthly_store_platform_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_store_platform_plan", "block_contents": "The plan of the platform"}, "doc.yoda.analytics___ugc__active_metrics_monthly_stores": {"name": "analytics___ugc__active_metrics_monthly_stores", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__active_metrics_monthly/analytics___ugc__active_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__active_metrics_monthly_stores", "block_contents": "Number of stores"}, "doc.yoda.analytics___ugc__image": {"name": "analytics___ugc__image", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image", "block_contents": "Modeled table of ugc images | PK and granularity: image_id"}, "doc.yoda.analytics___ugc__image_dwh_updated_at": {"name": "analytics___ugc__image_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc__image_end_user_id": {"name": "analytics___ugc__image_end_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image_end_user_id", "block_contents": ""}, "doc.yoda.analytics___ugc__image_image_created_at": {"name": "analytics___ugc__image_image_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image_image_created_at", "block_contents": ""}, "doc.yoda.analytics___ugc__image_image_id": {"name": "analytics___ugc__image_image_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image_image_id", "block_contents": "image_id - PK"}, "doc.yoda.analytics___ugc__image_image_kind": {"name": "analytics___ugc__image_image_kind", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image_image_kind", "block_contents": "The image type description"}, "doc.yoda.analytics___ugc__image_image_updated_at": {"name": "analytics___ugc__image_image_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image_image_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc__image_imageable_id": {"name": "analytics___ugc__image_imageable_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image_imageable_id", "block_contents": ""}, "doc.yoda.analytics___ugc__image_imageable_type": {"name": "analytics___ugc__image_imageable_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image_imageable_type", "block_contents": ""}, "doc.yoda.analytics___ugc__image_is_published": {"name": "analytics___ugc__image_is_published", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image_is_published", "block_contents": ""}, "doc.yoda.analytics___ugc__image_organization_id": {"name": "analytics___ugc__image_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image_organization_id", "block_contents": ""}, "doc.yoda.analytics___ugc__image_store_id": {"name": "analytics___ugc__image_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__image/analytics___ugc__image.md", "unique_id": "doc.yoda.analytics___ugc__image_store_id", "block_contents": ""}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort": {"name": "analytics___ugc__order_to_review_rate_cohort", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort", "block_contents": "Cohort of order to review conversion rate with 7 day attribution from UGC enablement drill down by platform and plan | granularity: enabalamnt_month,email_sent_month, closing plan, platform"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_app_key": {"name": "analytics___ugc__order_to_review_rate_cohort_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_app_key", "block_contents": "app_key"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_closing_plan_group": {"name": "analytics___ugc__order_to_review_rate_cohort_closing_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_closing_plan_group", "block_contents": "The closing plan of the organization"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_dwh_updated_at": {"name": "analytics___ugc__order_to_review_rate_cohort_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_email_sent_month": {"name": "analytics___ugc__order_to_review_rate_cohort_email_sent_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_email_sent_month", "block_contents": "The month the email was sent"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_enablement_closing_plan_group": {"name": "analytics___ugc__order_to_review_rate_cohort_enablement_closing_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_enablement_closing_plan_group", "block_contents": "UGC enablement package group"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_is_postman_enabled": {"name": "analytics___ugc__order_to_review_rate_cohort_is_postman_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_is_postman_enabled", "block_contents": "An indication of whether the Postman feature was enabled on the enablement month"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_last_3m_orders_avg_bucket": {"name": "analytics___ugc__order_to_review_rate_cohort_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_last_3m_orders_avg_bucket", "block_contents": "The average amount of orders in buckets for the three months preceding the email sent date"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_months_between_email_to_enablement": {"name": "analytics___ugc__order_to_review_rate_cohort_months_between_email_to_enablement", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_months_between_email_to_enablement", "block_contents": "Months between enablement to email sent date"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id": {"name": "analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id", "block_contents": "PK | unique identifier from combining app_key|closing_plan_group|email_sent_month|months_between_email_to_enablement"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_order_with_review_cnt": {"name": "analytics___ugc__order_to_review_rate_cohort_order_with_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_order_with_review_cnt", "block_contents": "Distinct orders that had at least one review created and had a review reqeusts in a time interval of 7 days from the review"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_order_with_review_request_cnt": {"name": "analytics___ugc__order_to_review_rate_cohort_order_with_review_request_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_order_with_review_request_cnt", "block_contents": "Distinct orders that had at least 1 review request sent"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_organization_key": {"name": "analytics___ugc__order_to_review_rate_cohort_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_organization_key", "block_contents": ""}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_platform_name": {"name": "analytics___ugc__order_to_review_rate_cohort_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_platform_name", "block_contents": "The platform on the store level"}, "doc.yoda.analytics___ugc__order_to_review_rate_cohort_reviews_enablement_month": {"name": "analytics___ugc__order_to_review_rate_cohort_reviews_enablement_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__order_to_review_rate_cohort/analytics___ugc__order_to_review_rate_cohort.md", "unique_id": "doc.yoda.analytics___ugc__order_to_review_rate_cohort_reviews_enablement_month", "block_contents": "The month of UGC eneablement"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics": {"name": "analytics___ugc__organization_first_time_activity_metrics", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics", "block_contents": "first time active and adoption metrics for UGC organizations based on store created since May 2022 | granularity: organization_key"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_churn_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_churn_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_churn_date", "block_contents": "organization churn date"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_dwh_updated_at": {"name": "analytics___ugc__organization_first_time_activity_metrics_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_ht_self_service_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_first_ht_self_service_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_ht_self_service_date", "block_contents": "first time ht self service"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_enterprise_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_first_subscription_enterprise_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_enterprise_date", "block_contents": "first time the organization subscribed to Enterprise package"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_growth_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_first_subscription_growth_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_growth_date", "block_contents": "first time the organization subscribed to Growth package"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_powerhouse_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_first_subscription_powerhouse_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_powerhouse_date", "block_contents": "first time the organization subscribed to Powerhouse package"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_premium_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_first_subscription_premium_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_premium_date", "block_contents": "first time the organization subscribed to Premium package"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_prime_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_first_subscription_prime_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_prime_date", "block_contents": "first time the organization subscribed to Prime package"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_pro_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_first_subscription_pro_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_first_subscription_pro_date", "block_contents": "first time the organization subscribed to Pro package"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_is_churned": {"name": "analytics___ugc__organization_first_time_activity_metrics_is_churned", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_is_churned", "block_contents": "Indication if the organization has been churned"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_3_review_requests_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_3_review_requests_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_3_review_requests_date", "block_contents": "First time a store reached 3 review reqeusts"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_0_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_0_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_0_date", "block_contents": "Earliest date that a store reached is_active_tier_0 = 1"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_1_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_1_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_1_date", "block_contents": "Earliest date that a store reached is_active_tier_1= 1"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_2_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_2_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_2_date", "block_contents": "Earliest date that a store reached is_active_tier_2 = 1"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_3_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_3_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_active_tier_3_date", "block_contents": "Earliest date that a store reached is_active_tier_3 = 1"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_fb_syndication_enabled_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_fb_syndication_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_fb_syndication_enabled_date", "block_contents": "First date a store enabled the feature 380"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_gsr_enabled_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_gsr_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_gsr_enabled_date", "block_contents": "First date a store enabled the feature 89"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_map_enabled_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_map_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_map_enabled_date", "block_contents": "First date a store enabled the feature 9"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_order_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_order_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_order_date", "block_contents": "The minimum date a store had an order"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_pla_enabled_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_pla_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_pla_enabled_date", "block_contents": "First date a store enabled the feature 84"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_review_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_review_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_review_date", "block_contents": "The minimum date a store had a review"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_reviews_widget_loaded_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_reviews_widget_loaded_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_reviews_widget_loaded_date", "block_contents": "The minimum date a store loaded the main widget"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_widgetv3_enabled_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_first_widgetv3_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_first_widgetv3_enabled_date", "block_contents": "First date a store enabled the feature 388"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_key": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_key", "block_contents": ""}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_reviews_enablement_date": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_reviews_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_reviews_enablement_date", "block_contents": "The minimum date of the MAP feature creation since 2021"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_reviews_enablement_month": {"name": "analytics___ugc__organization_first_time_activity_metrics_organization_reviews_enablement_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_organization_reviews_enablement_month", "block_contents": "The minimum month of the MAP feature creation since 2021"}, "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_platform": {"name": "analytics___ugc__organization_first_time_activity_metrics_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_first_time_activity_metrics/analytics___ugc__organization_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__organization_first_time_activity_metrics_platform", "block_contents": "organization first platform"}, "doc.yoda.analytics___ugc__organization_metrics_monthly": {"name": "analytics___ugc__organization_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly", "block_contents": "Modeled table of ugc organizations metrics in a monthly level | PK and granularity: month | organization_key"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_dwh_updated_at": {"name": "analytics___ugc__organization_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_metric_month": {"name": "analytics___ugc__organization_metrics_monthly_metric_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_metric_month", "block_contents": "metric_month"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_order_cnt": {"name": "analytics___ugc__organization_metrics_monthly_order_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_order_cnt", "block_contents": "number of orders"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_order_with_first_email_opened_within_7d_cnt": {"name": "analytics___ugc__organization_metrics_monthly_order_with_first_email_opened_within_7d_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_order_with_first_email_opened_within_7d_cnt", "block_contents": "number of orders with a review request with email that opened within 7 days from the first email sent date"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_order_with_first_email_opened_within_7d_ratio": {"name": "analytics___ugc__organization_metrics_monthly_order_with_first_email_opened_within_7d_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_order_with_first_email_opened_within_7d_ratio", "block_contents": "ratio of orders with a review request with email that opened within 7 days from the first email sent date"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_order_with_review_request_and_review_cnt": {"name": "analytics___ugc__organization_metrics_monthly_order_with_review_request_and_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_order_with_review_request_and_review_cnt", "block_contents": "number of orders with a review request and a review"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_order_with_review_request_cnt": {"name": "analytics___ugc__organization_metrics_monthly_order_with_review_request_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_order_with_review_request_cnt", "block_contents": "number of orders with a review request"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_order_with_review_request_to_review_ratio": {"name": "analytics___ugc__organization_metrics_monthly_order_with_review_request_to_review_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_order_with_review_request_to_review_ratio", "block_contents": "ratio of orders with a review request and a review"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_organization_key": {"name": "analytics___ugc__organization_metrics_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_organization_key", "block_contents": "yotpo organization unique key"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_review_cnt": {"name": "analytics___ugc__organization_metrics_monthly_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_review_cnt", "block_contents": "number of reviews"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_review_rating_sum": {"name": "analytics___ugc__organization_metrics_monthly_review_rating_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_review_rating_sum", "block_contents": "sum of reviews ratings"}, "doc.yoda.analytics___ugc__organization_metrics_monthly_review_request_sent_cnt": {"name": "analytics___ugc__organization_metrics_monthly_review_request_sent_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__organization_metrics_monthly/analytics___ugc__organization_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__organization_metrics_monthly_review_request_sent_cnt", "block_contents": "number of review requests sent"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics": {"name": "analytics___ugc__owner_first_time_activity_metrics", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics", "block_contents": "first time active and adoption metrics for UGC stores / organizations created sincs May 2022.\ngranularity: owner_id, owner_type"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_churn_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_churn_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_churn_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_dwh_updated_at": {"name": "analytics___ugc__owner_first_time_activity_metrics_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_3_review_requests_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_3_review_requests_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_3_review_requests_date", "block_contents": "The earliest date when the cumulative count of review requests reached or exceeded 3"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_active_tier_0_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_active_tier_0_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_active_tier_0_date", "block_contents": "Earliest date when is_active_tier_0 = 1"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_active_tier_1_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_active_tier_1_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_active_tier_1_date", "block_contents": "Earliest date when is_active_tier_1 = 1"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_active_tier_2_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_active_tier_2_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_active_tier_2_date", "block_contents": "Earliest date when is_active_tier_2 = 1"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_active_tier_3_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_active_tier_3_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_active_tier_3_date", "block_contents": "Earliest date when is_active_tier_3 = 1"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_fb_syndication_enabled_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_fb_syndication_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_fb_syndication_enabled_date", "block_contents": "Earliest date when feature_id = 380, is_user_enabled = true, and is_disabled = false"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_gsr_enabled_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_gsr_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_gsr_enabled_date", "block_contents": "Earliest date when feature_id = 89, is_user_enabled = true, and is_disabled = false"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_ht_self_service_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_ht_self_service_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_ht_self_service_date", "block_contents": "First time ht self service"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_map_enabled_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_map_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_map_enabled_date", "block_contents": "Earliest date when feature_id = 9, is_user_enabled = true, and is_disabled = false"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_order_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_order_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_order_date", "block_contents": "The earliest date when an order was created for the store/organization"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_pla_enabled_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_pla_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_pla_enabled_date", "block_contents": "Earliest date when feature_id = 84, is_user_enabled = true, and is_disabled = false"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_review_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_review_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_review_date", "block_contents": "The earliest date when a review was received for the store/organization"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_reviews_widget_loaded_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_reviews_widget_loaded_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_reviews_widget_loaded_date", "block_contents": "Earliest date when is_reviews_widget_loaded = 1"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_enterprise_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_subscription_enterprise_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_enterprise_date", "block_contents": "Earliest date when the owner subscribed Enterprise packcage"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_growth_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_subscription_growth_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_growth_date", "block_contents": "Earliest date when the owner subscribed Growth packcage"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_powerhouse_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_subscription_powerhouse_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_powerhouse_date", "block_contents": "Earliest date when the owner subscribed Powerhouse packcage"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_premium_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_subscription_premium_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_premium_date", "block_contents": "Earliest date when the owner subscribed Premium packcage"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_prime_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_subscription_prime_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_prime_date", "block_contents": "Earliest date when the owner subscribed Prime packcage"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_pro_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_subscription_pro_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_subscription_pro_date", "block_contents": "Earliest date when the owner subscribed Pro packcage"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_widgetv3_enabled_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_first_widgetv3_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_first_widgetv3_enabled_date", "block_contents": "Earliest date when feature_id = 388, is_user_enabled = true, and is_disabled = false"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_is_churned": {"name": "analytics___ugc__owner_first_time_activity_metrics_is_churned", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_is_churned", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_owner_id": {"name": "analytics___ugc__owner_first_time_activity_metrics_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_owner_id", "block_contents": "if owner type = 'store' owner_id = app_key\nif owner_type = 'organization' owner_id = organization_key\""}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_owner_type": {"name": "analytics___ugc__owner_first_time_activity_metrics_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_owner_type", "block_contents": "organization or store"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_platform": {"name": "analytics___ugc__owner_first_time_activity_metrics_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_reviews_enablement_date": {"name": "analytics___ugc__owner_first_time_activity_metrics_reviews_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_reviews_enablement_date", "block_contents": "First date Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store (only from 2021)"}, "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_reviews_enablement_month": {"name": "analytics___ugc__owner_first_time_activity_metrics_reviews_enablement_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_first_time_activity_metrics/analytics___ugc__owner_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__owner_first_time_activity_metrics_reviews_enablement_month", "block_contents": "First month Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store (only from 2021)"}, "doc.yoda.analytics___ugc__owner_order_to_review_monthly": {"name": "analytics___ugc__owner_order_to_review_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__owner_order_to_review_monthly", "block_contents": "Order to review conversion rate with 7 day attribution for stores / organizations drill down by platform and closing plan | granularity: month, owner_type, owner_id"}, "doc.yoda.analytics___ugc__owner_order_to_review_monthly_closing_plan_group": {"name": "analytics___ugc__owner_order_to_review_monthly_closing_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__owner_order_to_review_monthly_closing_plan_group", "block_contents": "The closing plan of the organization"}, "doc.yoda.analytics___ugc__owner_order_to_review_monthly_dwh_updated_at": {"name": "analytics___ugc__owner_order_to_review_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__owner_order_to_review_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc__owner_order_to_review_monthly_month": {"name": "analytics___ugc__owner_order_to_review_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__owner_order_to_review_monthly_month", "block_contents": "Email sent month"}, "doc.yoda.analytics___ugc__owner_order_to_review_monthly_orders_with_review_reqeusts_sum": {"name": "analytics___ugc__owner_order_to_review_monthly_orders_with_review_reqeusts_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__owner_order_to_review_monthly_orders_with_review_reqeusts_sum", "block_contents": "Disitnct orders that had at least 1 review request sent"}, "doc.yoda.analytics___ugc__owner_order_to_review_monthly_orders_with_reviews_sum": {"name": "analytics___ugc__owner_order_to_review_monthly_orders_with_reviews_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__owner_order_to_review_monthly_orders_with_reviews_sum", "block_contents": "Distinct orders that had at least one review created and had a review reqeusts in a time interval of 7 days from the review"}, "doc.yoda.analytics___ugc__owner_order_to_review_monthly_owner_id": {"name": "analytics___ugc__owner_order_to_review_monthly_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__owner_order_to_review_monthly_owner_id", "block_contents": "If owner type = 'store' owner_id = app_key if owner_type = 'organization' owner_id = organization_key"}, "doc.yoda.analytics___ugc__owner_order_to_review_monthly_owner_type": {"name": "analytics___ugc__owner_order_to_review_monthly_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__owner_order_to_review_monthly_owner_type", "block_contents": "Organization or store"}, "doc.yoda.analytics___ugc__owner_order_to_review_monthly_platform_name": {"name": "analytics___ugc__owner_order_to_review_monthly_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__owner_order_to_review_monthly/analytics___ugc__owner_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__owner_order_to_review_monthly_platform_name", "block_contents": "Platform name (if owner type = 'organization' platform_name = first platform)"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly": {"name": "analytics___ugc__platform_order_to_review_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly", "block_contents": "Order to review conversion rate with 7 day attribution drill down by platform and closing plan | granularity: month, closing plan, platform, postman enabled, l3m orders avg bucket"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_closing_plan_group": {"name": "analytics___ugc__platform_order_to_review_monthly_closing_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_closing_plan_group", "block_contents": "The closing plan of the organization"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_dwh_updated_at": {"name": "analytics___ugc__platform_order_to_review_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_last_3m_orders_avg_bucket": {"name": "analytics___ugc__platform_order_to_review_monthly_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_last_3m_orders_avg_bucket", "block_contents": "last 3 months orders avg bucket"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_month": {"name": "analytics___ugc__platform_order_to_review_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_month", "block_contents": ""}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_orders_with_review_reqeusts_sum": {"name": "analytics___ugc__platform_order_to_review_monthly_orders_with_review_reqeusts_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_orders_with_review_reqeusts_sum", "block_contents": "Disitnct orders that had at least 1 review request sent"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_orders_with_review_requests_cnt": {"name": "analytics___ugc__platform_order_to_review_monthly_orders_with_review_requests_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_orders_with_review_requests_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_orders_with_review_sum": {"name": "analytics___ugc__platform_order_to_review_monthly_orders_with_review_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_orders_with_review_sum", "block_contents": "Distinct orders that had at least one review created and had a review reqeusts in a time interval of 7 days from the review"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_orders_with_reviews_cnt": {"name": "analytics___ugc__platform_order_to_review_monthly_orders_with_reviews_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_orders_with_reviews_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_orders_with_reviews_sum": {"name": "analytics___ugc__platform_order_to_review_monthly_orders_with_reviews_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_orders_with_reviews_sum", "block_contents": "Distinct orders that had at least one review created and had a review reqeusts in a time interval of 7 days from the review"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_organizations": {"name": "analytics___ugc__platform_order_to_review_monthly_organizations", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_organizations", "block_contents": "total organizations"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_platform": {"name": "analytics___ugc__platform_order_to_review_monthly_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_platform", "block_contents": "Platform name"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_platform_name": {"name": "analytics___ugc__platform_order_to_review_monthly_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_platform_name", "block_contents": "The relevant platform name based on store level"}, "doc.yoda.analytics___ugc__platform_order_to_review_monthly_postman_enabled": {"name": "analytics___ugc__platform_order_to_review_monthly_postman_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__platform_order_to_review_monthly/analytics___ugc__platform_order_to_review_monthly.md", "unique_id": "doc.yoda.analytics___ugc__platform_order_to_review_monthly_postman_enabled", "block_contents": "Indicating whether Postman feature was enabled when the review request was sent"}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly": {"name": "analytics___ugc__postman_feature_email_usage_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly", "block_contents": "This table tracks the monthly usage of the new email editor (postman feature) since August 2023 (when postman enablement tracking started) . \nGranularity: email_sent_month, is_postman_enabled, closing_plan_group, platform_name, platform_group, last_3m_orders_avg_bucket, industry"}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_closing_plan_group": {"name": "analytics___ugc__postman_feature_email_usage_monthly_closing_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_closing_plan_group", "block_contents": "Closing plan group on the emailsent month"}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_dwh_updated_at": {"name": "analytics___ugc__postman_feature_email_usage_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_email_cnt": {"name": "analytics___ugc__postman_feature_email_usage_monthly_email_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_email_cnt", "block_contents": "Number of emails sent."}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_email_sent_month": {"name": "analytics___ugc__postman_feature_email_usage_monthly_email_sent_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_email_sent_month", "block_contents": "The month when the email was sent."}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_industry": {"name": "analytics___ugc__postman_feature_email_usage_monthly_industry", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_industry", "block_contents": "Store industry"}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_is_postman_enabled": {"name": "analytics___ugc__postman_feature_email_usage_monthly_is_postman_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_is_postman_enabled", "block_contents": "Indicator if the postman feature was enabled when the email was sent."}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_last_3m_orders_avg_bucket": {"name": "analytics___ugc__postman_feature_email_usage_monthly_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_last_3m_orders_avg_bucket", "block_contents": "Bucket of average orders in the three months prior to sending the email."}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_organization_cnt": {"name": "analytics___ugc__postman_feature_email_usage_monthly_organization_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_organization_cnt", "block_contents": "Number of organizations that sent emails during the month."}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_platform_group": {"name": "analytics___ugc__postman_feature_email_usage_monthly_platform_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_platform_group", "block_contents": "Store plaftorm group"}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_platform_name": {"name": "analytics___ugc__postman_feature_email_usage_monthly_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_platform_name", "block_contents": "Store platform name"}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id": {"name": "analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id", "block_contents": "PK | unique identifier from combining email_sent_month|is_postman_enabled|closing_plan_group|platform_group|platform_name|industry|last_3m_orders_avg_bucket"}, "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_store_cnt": {"name": "analytics___ugc__postman_feature_email_usage_monthly_store_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__postman_feature_email_usage_monthly/analytics___ugc__postman_feature_email_usage_monthly.md", "unique_id": "doc.yoda.analytics___ugc__postman_feature_email_usage_monthly_store_cnt", "block_contents": "Number of stores that sent emails during the month"}, "doc.yoda.analytics___ugc__review": {"name": "analytics___ugc__review", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review", "block_contents": "Modeled table of ugc reviews | PK and granularity: review_id"}, "doc.yoda.analytics___ugc__review_app_key": {"name": "analytics___ugc__review_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___ugc__review_comment_cnt": {"name": "analytics___ugc__review_comment_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_comment_cnt", "block_contents": "review comment count"}, "doc.yoda.analytics___ugc__review_content": {"name": "analytics___ugc__review_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_content", "block_contents": "review content"}, "doc.yoda.analytics___ugc__review_created_at": {"name": "analytics___ugc__review_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___ugc__review_created_date": {"name": "analytics___ugc__review_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___ugc__review_device_name": {"name": "analytics___ugc__review_device_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_device_name", "block_contents": "device name: iPad, Android, Chrome, etc."}, "doc.yoda.analytics___ugc__review_device_type": {"name": "analytics___ugc__review_device_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_device_type", "block_contents": "device type: Mobile, Tablet, Desktop, etc."}, "doc.yoda.analytics___ugc__review_dwh_updated_at": {"name": "analytics___ugc__review_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__review_image_cnt": {"name": "analytics___ugc__review_image_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_image_cnt", "block_contents": "review image count"}, "doc.yoda.analytics___ugc__review_is_deleted": {"name": "analytics___ugc__review_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_is_deleted", "block_contents": "deletion indicator: 0/1"}, "doc.yoda.analytics___ugc__review_is_published": {"name": "analytics___ugc__review_is_published", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_is_published", "block_contents": "publish indicator: 0/1"}, "doc.yoda.analytics___ugc__review_is_syndicated_review": {"name": "analytics___ugc__review_is_syndicated_review", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_is_syndicated_review", "block_contents": "syndicated review: 0/1"}, "doc.yoda.analytics___ugc__review_organization_id": {"name": "analytics___ugc__review_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___ugc__review_product_array": {"name": "analytics___ugc__review_product_array", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_product_array", "block_contents": "array of review's product identifiers"}, "doc.yoda.analytics___ugc__review_product_cnt": {"name": "analytics___ugc__review_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_product_cnt", "block_contents": "review product count"}, "doc.yoda.analytics___ugc__review_review_id": {"name": "analytics___ugc__review_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_review_id", "block_contents": "review unique identifier - primary key"}, "doc.yoda.analytics___ugc__review_review_source_type_id": {"name": "analytics___ugc__review_review_source_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_review_source_type_id", "block_contents": "review source type identifier"}, "doc.yoda.analytics___ugc__review_review_type_id": {"name": "analytics___ugc__review_review_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_review_type_id", "block_contents": "review type identifier"}, "doc.yoda.analytics___ugc__review_reviewer_id": {"name": "analytics___ugc__review_reviewer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_reviewer_id", "block_contents": "reviewer identifier"}, "doc.yoda.analytics___ugc__review_reviewer_type": {"name": "analytics___ugc__review_reviewer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_reviewer_type", "block_contents": "reviewer type: user/anonymous_user"}, "doc.yoda.analytics___ugc__review_score": {"name": "analytics___ugc__review_score", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_score", "block_contents": "review score"}, "doc.yoda.analytics___ugc__review_source_review_id": {"name": "analytics___ugc__review_source_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_source_review_id", "block_contents": "source review identifier"}, "doc.yoda.analytics___ugc__review_store_id": {"name": "analytics___ugc__review_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_store_id", "block_contents": "store identifier (account)"}, "doc.yoda.analytics___ugc__review_syndication_source_id": {"name": "analytics___ugc__review_syndication_source_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_syndication_source_id", "block_contents": "app_key of the review source"}, "doc.yoda.analytics___ugc__review_title_content": {"name": "analytics___ugc__review_title_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_title_content", "block_contents": "title content"}, "doc.yoda.analytics___ugc__review_updated_at": {"name": "analytics___ugc__review_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc__review_updated_date": {"name": "analytics___ugc__review_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc__review_video_cnt": {"name": "analytics___ugc__review_video_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_video_cnt", "block_contents": "review video count"}, "doc.yoda.analytics___ugc__review_vote_down_cnt": {"name": "analytics___ugc__review_vote_down_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_vote_down_cnt", "block_contents": "vote down count"}, "doc.yoda.analytics___ugc__review_vote_up_cnt": {"name": "analytics___ugc__review_vote_up_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review/analytics___ugc__review.md", "unique_id": "doc.yoda.analytics___ugc__review_vote_up_cnt", "block_contents": "vote up count"}, "doc.yoda.analytics___ugc__review_request": {"name": "analytics___ugc__review_request", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request", "block_contents": "Modeled incremental table of review requests | PK and granularity: channel_name | channel_message_id"}, "doc.yoda.analytics___ugc__review_request_account_id": {"name": "analytics___ugc__review_request_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_account_id", "block_contents": "yotpo account id"}, "doc.yoda.analytics___ugc__review_request_app_key": {"name": "analytics___ugc__review_request_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___ugc__review_request_caller_id": {"name": "analytics___ugc__review_request_caller_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_caller_id", "block_contents": "caller id"}, "doc.yoda.analytics___ugc__review_request_caller_type": {"name": "analytics___ugc__review_request_caller_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_caller_type", "block_contents": "caller type"}, "doc.yoda.analytics___ugc__review_request_channel_message_id": {"name": "analytics___ugc__review_request_channel_message_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_channel_message_id", "block_contents": "channel message id: caller id of the channel - PK 2/2"}, "doc.yoda.analytics___ugc__review_request_channel_name": {"name": "analytics___ugc__review_request_channel_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_channel_name", "block_contents": "channel name: review_request_email/review_request_sms/email_authentications - PK 1/2"}, "doc.yoda.analytics___ugc__review_request_channel_type": {"name": "analytics___ugc__review_request_channel_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_channel_type", "block_contents": "channel type: Email/SMS/Flow"}, "doc.yoda.analytics___ugc__review_request_delivered_at": {"name": "analytics___ugc__review_request_delivered_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_delivered_at", "block_contents": "message delivered timestamp"}, "doc.yoda.analytics___ugc__review_request_delivered_date": {"name": "analytics___ugc__review_request_delivered_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_delivered_date", "block_contents": "message delivered date"}, "doc.yoda.analytics___ugc__review_request_dwh_updated_at": {"name": "analytics___ugc__review_request_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__review_request_email_address": {"name": "analytics___ugc__review_request_email_address", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_email_address", "block_contents": "email address"}, "doc.yoda.analytics___ugc__review_request_email_rank_per_order": {"name": "analytics___ugc__review_request_email_rank_per_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_email_rank_per_order", "block_contents": "email rank per order"}, "doc.yoda.analytics___ugc__review_request_first_review_created_at": {"name": "analytics___ugc__review_request_first_review_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_first_review_created_at", "block_contents": "first review creation timestamp"}, "doc.yoda.analytics___ugc__review_request_form_type": {"name": "analytics___ugc__review_request_form_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_form_type", "block_contents": "form type: in_mail_form/formless/media_queries"}, "doc.yoda.analytics___ugc__review_request_from_order_to_review_request_day_cnt": {"name": "analytics___ugc__review_request_from_order_to_review_request_day_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_from_order_to_review_request_day_cnt", "block_contents": "number of days from order to review request"}, "doc.yoda.analytics___ugc__review_request_from_review_request_to_review_day_cnt": {"name": "analytics___ugc__review_request_from_review_request_to_review_day_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_from_review_request_to_review_day_cnt", "block_contents": "number of days from review request to review"}, "doc.yoda.analytics___ugc__review_request_image_cnt": {"name": "analytics___ugc__review_request_image_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_image_cnt", "block_contents": "number of images"}, "doc.yoda.analytics___ugc__review_request_is_reviewed": {"name": "analytics___ugc__review_request_is_reviewed", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_is_reviewed", "block_contents": "reviewed indicator"}, "doc.yoda.analytics___ugc__review_request_latest_updated_at": {"name": "analytics___ugc__review_request_latest_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_latest_updated_at", "block_contents": "The latest updated_at value among the source models' updated_at columns"}, "doc.yoda.analytics___ugc__review_request_latest_updated_date": {"name": "analytics___ugc__review_request_latest_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_latest_updated_date", "block_contents": "The latest updated_date value among the source models' updated_at columns"}, "doc.yoda.analytics___ugc__review_request_message_rank_per_order": {"name": "analytics___ugc__review_request_message_rank_per_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_message_rank_per_order", "block_contents": "message rank per order"}, "doc.yoda.analytics___ugc__review_request_message_type": {"name": "analytics___ugc__review_request_message_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_message_type", "block_contents": "message type"}, "doc.yoda.analytics___ugc__review_request_message_type_id": {"name": "analytics___ugc__review_request_message_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_message_type_id", "block_contents": "message type id"}, "doc.yoda.analytics___ugc__review_request_order_created_at": {"name": "analytics___ugc__review_request_order_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_order_created_at", "block_contents": "order creation timestamp"}, "doc.yoda.analytics___ugc__review_request_order_id": {"name": "analytics___ugc__review_request_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_order_id", "block_contents": "order id"}, "doc.yoda.analytics___ugc__review_request_order_line_id": {"name": "analytics___ugc__review_request_order_line_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_order_line_id", "block_contents": "order line id"}, "doc.yoda.analytics___ugc__review_request_organization_id": {"name": "analytics___ugc__review_request_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___ugc__review_request_product_cnt": {"name": "analytics___ugc__review_request_product_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_product_cnt", "block_contents": "order number of products"}, "doc.yoda.analytics___ugc__review_request_review_cnt": {"name": "analytics___ugc__review_request_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_review_cnt", "block_contents": "number of reviews"}, "doc.yoda.analytics___ugc__review_request_review_request_token_id": {"name": "analytics___ugc__review_request_review_request_token_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_review_request_token_id", "block_contents": "review request token id"}, "doc.yoda.analytics___ugc__review_request_review_source_type_id": {"name": "analytics___ugc__review_request_review_source_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_review_source_type_id", "block_contents": "review source type id"}, "doc.yoda.analytics___ugc__review_request_review_source_type_name": {"name": "analytics___ugc__review_request_review_source_type_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_review_source_type_name", "block_contents": "review source type name. e.g., reminder, site_reminder, etc."}, "doc.yoda.analytics___ugc__review_request_review_with_image_cnt": {"name": "analytics___ugc__review_request_review_with_image_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_review_with_image_cnt", "block_contents": "number of reviews with image"}, "doc.yoda.analytics___ugc__review_request_review_with_video_cnt": {"name": "analytics___ugc__review_request_review_with_video_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_review_with_video_cnt", "block_contents": "number of reviews with video"}, "doc.yoda.analytics___ugc__review_request_sms_rank_per_order": {"name": "analytics___ugc__review_request_sms_rank_per_order", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_sms_rank_per_order", "block_contents": "sms rank per order"}, "doc.yoda.analytics___ugc__review_request_token_value": {"name": "analytics___ugc__review_request_token_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_value", "block_contents": "token"}, "doc.yoda.analytics___ugc__review_request_user_name": {"name": "analytics___ugc__review_request_user_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_user_name", "block_contents": "user name"}, "doc.yoda.analytics___ugc__review_request_video_cnt": {"name": "analytics___ugc__review_request_video_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request/analytics___ugc__review_request.md", "unique_id": "doc.yoda.analytics___ugc__review_request_video_cnt", "block_contents": "number of videos"}, "doc.yoda.analytics___ugc__review_request_token": {"name": "analytics___ugc__review_request_token", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token", "block_contents": "Incremental table of review request tokens. PK and granularity: channel_name | review_request_token_id"}, "doc.yoda.analytics___ugc__review_request_token_channel_message_id": {"name": "analytics___ugc__review_request_token_channel_message_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_channel_message_id", "block_contents": "channel message id: caller id of the channel"}, "doc.yoda.analytics___ugc__review_request_token_channel_message_id_first_3_digits": {"name": "analytics___ugc__review_request_token_channel_message_id_first_3_digits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_channel_message_id_first_3_digits", "block_contents": "channel message id first 3 digits - technical column for performance improvement"}, "doc.yoda.analytics___ugc__review_request_token_channel_name": {"name": "analytics___ugc__review_request_token_channel_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_channel_name", "block_contents": "channel name: review_request_email/review_request_sms/review_request_flow - PK 1/2"}, "doc.yoda.analytics___ugc__review_request_token_channel_type": {"name": "analytics___ugc__review_request_token_channel_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_channel_type", "block_contents": "channel type: Email/SMS/Flow"}, "doc.yoda.analytics___ugc__review_request_token_created_at": {"name": "analytics___ugc__review_request_token_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_created_at", "block_contents": "token creation timestamp"}, "doc.yoda.analytics___ugc__review_request_token_created_date": {"name": "analytics___ugc__review_request_token_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_created_date", "block_contents": "token creation date"}, "doc.yoda.analytics___ugc__review_request_token_dwh_updated_at": {"name": "analytics___ugc__review_request_token_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__review_request_token_main_review_request_token_id": {"name": "analytics___ugc__review_request_token_main_review_request_token_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_main_review_request_token_id", "block_contents": "main review request token id"}, "doc.yoda.analytics___ugc__review_request_token_order_id": {"name": "analytics___ugc__review_request_token_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_order_id", "block_contents": "order id"}, "doc.yoda.analytics___ugc__review_request_token_order_line_id": {"name": "analytics___ugc__review_request_token_order_line_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_order_line_id", "block_contents": "order line id"}, "doc.yoda.analytics___ugc__review_request_token_repliable_type": {"name": "analytics___ugc__review_request_token_repliable_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_repliable_type", "block_contents": "repliable type: Order/OrderLine"}, "doc.yoda.analytics___ugc__review_request_token_review_id": {"name": "analytics___ugc__review_request_token_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_review_id", "block_contents": "review id"}, "doc.yoda.analytics___ugc__review_request_token_review_request_token_id": {"name": "analytics___ugc__review_request_token_review_request_token_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_review_request_token_id", "block_contents": "review request token id - PK 2/2"}, "doc.yoda.analytics___ugc__review_request_token_review_source_type_id": {"name": "analytics___ugc__review_request_token_review_source_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_review_source_type_id", "block_contents": "review source type id"}, "doc.yoda.analytics___ugc__review_request_token_review_source_type_name": {"name": "analytics___ugc__review_request_token_review_source_type_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_review_source_type_name", "block_contents": "review source type name. e.g., reminder, site_reminder, etc."}, "doc.yoda.analytics___ugc__review_request_token_token": {"name": "analytics___ugc__review_request_token_token", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_token", "block_contents": "token"}, "doc.yoda.analytics___ugc__review_request_token_updated_at": {"name": "analytics___ugc__review_request_token_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_updated_at", "block_contents": "token update timestamp"}, "doc.yoda.analytics___ugc__review_request_token_updated_date": {"name": "analytics___ugc__review_request_token_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token/analytics___ugc__review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_updated_date", "block_contents": "token update date"}, "doc.yoda.analytics___ugc__review_request_token_message": {"name": "analytics___ugc__review_request_token_message", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message", "block_contents": "Incremental table of review request token's messages. PK and granularity: channel_name | review_request_token_id | channel_message_id"}, "doc.yoda.analytics___ugc__review_request_token_message_app_key": {"name": "analytics___ugc__review_request_token_message_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___ugc__review_request_token_message_caller_id": {"name": "analytics___ugc__review_request_token_message_caller_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_caller_id", "block_contents": "message caller id"}, "doc.yoda.analytics___ugc__review_request_token_message_caller_type": {"name": "analytics___ugc__review_request_token_message_caller_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_caller_type", "block_contents": "message caller type"}, "doc.yoda.analytics___ugc__review_request_token_message_channel_message_id": {"name": "analytics___ugc__review_request_token_message_channel_message_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_channel_message_id", "block_contents": "channel message id: caller id of the channel - PK 3/3"}, "doc.yoda.analytics___ugc__review_request_token_message_channel_message_id_first_3_digits": {"name": "analytics___ugc__review_request_token_message_channel_message_id_first_3_digits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_channel_message_id_first_3_digits", "block_contents": "channel message id first 3 digits - technical column for performance improvement"}, "doc.yoda.analytics___ugc__review_request_token_message_channel_name": {"name": "analytics___ugc__review_request_token_message_channel_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_channel_name", "block_contents": "channel_name: review_request_email / review_request_sms - PK 1/3"}, "doc.yoda.analytics___ugc__review_request_token_message_channel_type": {"name": "analytics___ugc__review_request_token_message_channel_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_channel_type", "block_contents": "channel type: Email/SMS/Flow"}, "doc.yoda.analytics___ugc__review_request_token_message_created_at": {"name": "analytics___ugc__review_request_token_message_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_created_at", "block_contents": "message creation timestamp"}, "doc.yoda.analytics___ugc__review_request_token_message_created_date": {"name": "analytics___ugc__review_request_token_message_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_created_date", "block_contents": "message creation date"}, "doc.yoda.analytics___ugc__review_request_token_message_delivered_at": {"name": "analytics___ugc__review_request_token_message_delivered_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_delivered_at", "block_contents": "message delivered timestamp"}, "doc.yoda.analytics___ugc__review_request_token_message_delivered_date": {"name": "analytics___ugc__review_request_token_message_delivered_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_delivered_date", "block_contents": "message delivered date"}, "doc.yoda.analytics___ugc__review_request_token_message_dwh_updated_at": {"name": "analytics___ugc__review_request_token_message_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__review_request_token_message_email_address": {"name": "analytics___ugc__review_request_token_message_email_address", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_email_address", "block_contents": "email address"}, "doc.yoda.analytics___ugc__review_request_token_message_email_submission_type_id": {"name": "analytics___ugc__review_request_token_message_email_submission_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_email_submission_type_id", "block_contents": "email submission type id"}, "doc.yoda.analytics___ugc__review_request_token_message_latest_updated_at": {"name": "analytics___ugc__review_request_token_message_latest_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_latest_updated_at", "block_contents": "The latest updated_at value among the source models' updated_at columns"}, "doc.yoda.analytics___ugc__review_request_token_message_latest_updated_date": {"name": "analytics___ugc__review_request_token_message_latest_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_latest_updated_date", "block_contents": "The latest updated_date value among the source models' updated_at columns"}, "doc.yoda.analytics___ugc__review_request_token_message_main_review_request_token_id": {"name": "analytics___ugc__review_request_token_message_main_review_request_token_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_main_review_request_token_id", "block_contents": "main review request token id"}, "doc.yoda.analytics___ugc__review_request_token_message_message_type": {"name": "analytics___ugc__review_request_token_message_message_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_message_type", "block_contents": "message type"}, "doc.yoda.analytics___ugc__review_request_token_message_message_type_id": {"name": "analytics___ugc__review_request_token_message_message_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_message_type_id", "block_contents": "message type id"}, "doc.yoda.analytics___ugc__review_request_token_message_order_id": {"name": "analytics___ugc__review_request_token_message_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_order_id", "block_contents": "order id"}, "doc.yoda.analytics___ugc__review_request_token_message_order_line_id": {"name": "analytics___ugc__review_request_token_message_order_line_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_order_line_id", "block_contents": "order line id"}, "doc.yoda.analytics___ugc__review_request_token_message_products_app_id": {"name": "analytics___ugc__review_request_token_message_products_app_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_products_app_id", "block_contents": "products app id"}, "doc.yoda.analytics___ugc__review_request_token_message_repliable_type": {"name": "analytics___ugc__review_request_token_message_repliable_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_repliable_type", "block_contents": "repliable type: Order/OrderLine"}, "doc.yoda.analytics___ugc__review_request_token_message_review_id": {"name": "analytics___ugc__review_request_token_message_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_review_id", "block_contents": "review id"}, "doc.yoda.analytics___ugc__review_request_token_message_review_request_token_id": {"name": "analytics___ugc__review_request_token_message_review_request_token_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_review_request_token_id", "block_contents": "review request token id - PK 2/3"}, "doc.yoda.analytics___ugc__review_request_token_message_review_source_type_id": {"name": "analytics___ugc__review_request_token_message_review_source_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_review_source_type_id", "block_contents": "review source type id"}, "doc.yoda.analytics___ugc__review_request_token_message_review_source_type_name": {"name": "analytics___ugc__review_request_token_message_review_source_type_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_review_source_type_name", "block_contents": "review source type name. e.g., reminder, site_reminder, etc."}, "doc.yoda.analytics___ugc__review_request_token_message_sms_status_type_id": {"name": "analytics___ugc__review_request_token_message_sms_status_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_sms_status_type_id", "block_contents": "sms status type id"}, "doc.yoda.analytics___ugc__review_request_token_message_token": {"name": "analytics___ugc__review_request_token_message_token", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_token", "block_contents": "token"}, "doc.yoda.analytics___ugc__review_request_token_message_token_created_at": {"name": "analytics___ugc__review_request_token_message_token_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_token_created_at", "block_contents": "token creation timestamp"}, "doc.yoda.analytics___ugc__review_request_token_message_token_created_date": {"name": "analytics___ugc__review_request_token_message_token_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_token_created_date", "block_contents": "token creation date"}, "doc.yoda.analytics___ugc__review_request_token_message_token_updated_at": {"name": "analytics___ugc__review_request_token_message_token_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_token_updated_at", "block_contents": "token update timestamp"}, "doc.yoda.analytics___ugc__review_request_token_message_token_updated_date": {"name": "analytics___ugc__review_request_token_message_token_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_token_updated_date", "block_contents": "token update date"}, "doc.yoda.analytics___ugc__review_request_token_message_updated_at": {"name": "analytics___ugc__review_request_token_message_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_updated_at", "block_contents": "message creation timestamp"}, "doc.yoda.analytics___ugc__review_request_token_message_updated_date": {"name": "analytics___ugc__review_request_token_message_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_updated_date", "block_contents": "message creation date"}, "doc.yoda.analytics___ugc__review_request_token_message_user_name": {"name": "analytics___ugc__review_request_token_message_user_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__review_request_token_message/analytics___ugc__review_request_token_message.md", "unique_id": "doc.yoda.analytics___ugc__review_request_token_message_user_name", "block_contents": "user name"}, "doc.yoda.analytics___ugc__store": {"name": "analytics___ugc__store", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store", "block_contents": "Modeled Table of review stores. Includes only stores that exists in store_installation_over_time | PK and granularity: app_key"}, "doc.yoda.analytics___ugc__store_dwh_updated_at": {"name": "analytics___ugc__store_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_dwh_updated_at", "block_contents": "table updated at"}, "doc.yoda.analytics___ugc__store_is_active": {"name": "analytics___ugc__store_is_active", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_is_active", "block_contents": "Indicates if the store is active (unlocked)"}, "doc.yoda.analytics___ugc__store_is_orders_last_365d": {"name": "analytics___ugc__store_is_orders_last_365d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_is_orders_last_365d", "block_contents": "order was preformed in the last 365 days indicator 1/0"}, "doc.yoda.analytics___ugc__store_latest_order_date": {"name": "analytics___ugc__store_latest_order_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_latest_order_date", "block_contents": "latest order date"}, "doc.yoda.analytics___ugc__store_orders_last_365d_cnt": {"name": "analytics___ugc__store_orders_last_365d_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_orders_last_365d_cnt", "block_contents": "order count in the last 365 days"}, "doc.yoda.analytics___ugc__store_organization_key": {"name": "analytics___ugc__store_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_organization_key", "block_contents": "FK: analytics___platform__organization"}, "doc.yoda.analytics___ugc__store_platform_group": {"name": "analytics___ugc__store_platform_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_platform_group", "block_contents": "bigcommerce | general | go_daddy_commerce | magento | magento2 | prestashop | shopify | woocommerce | other"}, "doc.yoda.analytics___ugc__store_platform_name": {"name": "analytics___ugc__store_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_platform_name", "block_contents": "platform name"}, "doc.yoda.analytics___ugc__store_reviews_enablement_month": {"name": "analytics___ugc__store_reviews_enablement_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_reviews_enablement_month", "block_contents": "month of reviews_enablement_date"}, "doc.yoda.analytics___ugc__store_sf_account_cs_segment": {"name": "analytics___ugc__store_sf_account_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_sf_account_cs_segment", "block_contents": "cs_segment based on sf_account_id"}, "doc.yoda.analytics___ugc__store_sf_account_id": {"name": "analytics___ugc__store_sf_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_sf_account_id", "block_contents": "FK: account_id | analytics___salesforce__account"}, "doc.yoda.analytics___ugc__store_store_created_at": {"name": "analytics___ugc__store_store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_store_created_at", "block_contents": "store created timestamp"}, "doc.yoda.analytics___ugc__store_store_created_date": {"name": "analytics___ugc__store_store_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store/analytics___ugc__store.md", "unique_id": "doc.yoda.analytics___ugc__store_store_created_date", "block_contents": "store created date"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort", "block_contents": "Cohort from UGC enablement month (last 18 months) to V3 pixel event loading, drill-down by Platform, Plan, and Widget Element.\ngranularity: app_key, widget_element, pixel_event_month"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_app_key": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_app_key", "block_contents": "Yotpo store's unique identifier"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_enablement_month_plan": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_enablement_month_plan", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_enablement_month_plan", "block_contents": "UGC package during the reviews enablement month"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_is_churned": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_is_churned", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_is_churned", "block_contents": "Indication of whether the store has been churned"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_is_pixel_event_v2": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_is_pixel_event_v2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_is_pixel_event_v2", "block_contents": "An indication of whether the store had any pixel event in v2"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_months_between_enablement_to_pixel_event": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_months_between_enablement_to_pixel_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_months_between_enablement_to_pixel_event", "block_contents": "The difference in months between the reviews enablement month and the pixel event month"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_months_between_enablement_to_pixel_event_v3": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_months_between_enablement_to_pixel_event_v3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_months_between_enablement_to_pixel_event_v3", "block_contents": "The difference in months between the reviews enablement month and the pixel event month (v3)"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_pixel_event_month": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_pixel_event_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_pixel_event_month", "block_contents": "The month when the pixel event was sent"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_pixel_event_v3_month": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_pixel_event_v3_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_pixel_event_v3_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_platform_group": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_platform_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_platform_group", "block_contents": "Store platform group"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_reviews_enablement_month": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_reviews_enablement_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_reviews_enablement_month", "block_contents": "The first month when Reviews was enabled, calculated by taking the creation date of feature_id = 9 (MAP) for each store (last 18 months)"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_widget_element": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_widget_element", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_widget_element", "block_contents": "Reviews widgets in version 3"}, "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_widget_element_v3": {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort_widget_element_v3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_enablement_to_pixel_event_cohort/analytics___ugc__store_enablement_to_pixel_event_cohort.md", "unique_id": "doc.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort_widget_element_v3", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.analytics___ugc__store_feature_over_time": {"name": "analytics___ugc__store_feature_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time", "block_contents": "Modeled over time table of owner_feature + reminders enablement updates\nGranularity: source_id,store_id,feature_id, from_date"}, "doc.yoda.analytics___ugc__store_feature_over_time_app_key": {"name": "analytics___ugc__store_feature_over_time_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time_app_key", "block_contents": ""}, "doc.yoda.analytics___ugc__store_feature_over_time_dwh_updated_at": {"name": "analytics___ugc__store_feature_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc__store_feature_over_time_feature_name": {"name": "analytics___ugc__store_feature_over_time_feature_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time_feature_name", "block_contents": ""}, "doc.yoda.analytics___ugc__store_feature_over_time_first_recorded_enabled_date": {"name": "analytics___ugc__store_feature_over_time_first_recorded_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time_first_recorded_enabled_date", "block_contents": "First recorded date where is_user_enable = 1"}, "doc.yoda.analytics___ugc__store_feature_over_time_from_date": {"name": "analytics___ugc__store_feature_over_time_from_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time_from_date", "block_contents": "Enabelment status start date. USE date >= from_date AND date < to_date AVOID BETWEEN"}, "doc.yoda.analytics___ugc__store_feature_over_time_is_enabled": {"name": "analytics___ugc__store_feature_over_time_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time_is_enabled", "block_contents": "feature_id <> 9: feature enabled flag\nfeature_id = 9: feature_id+store_id may have multiple lines with different is_enabled\nfor full enablement caculation refer to ugc_metric_daily"}, "doc.yoda.analytics___ugc__store_feature_over_time_source_id": {"name": "analytics___ugc__store_feature_over_time_source_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time_source_id", "block_contents": "FK: reminder_id from ugc_stg__reminder OR owner_feature_id from platform_stg__owner_feature. according to source_id_type"}, "doc.yoda.analytics___ugc__store_feature_over_time_source_id_type": {"name": "analytics___ugc__store_feature_over_time_source_id_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time_source_id_type", "block_contents": "type of source id reminder_id|owner_feature_id"}, "doc.yoda.analytics___ugc__store_feature_over_time_store_id": {"name": "analytics___ugc__store_feature_over_time_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time_store_id", "block_contents": "FK: platform__store"}, "doc.yoda.analytics___ugc__store_feature_over_time_to_date": {"name": "analytics___ugc__store_feature_over_time_to_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time_to_date", "block_contents": "Enabelment status end date. USE date >= from_date AND date < to_date AVOID BETWEEN"}, "doc.yoda.analytics___ugc__store_feature_over_time_updated_at": {"name": "analytics___ugc__store_feature_over_time_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_feature_over_time/analytics___ugc__store_feature_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_feature_over_time_updated_at", "block_contents": "Enabelment status start timestamp"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics": {"name": "analytics___ugc__store_first_time_activity_metrics", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics", "block_contents": "first time active and adoption metrics for UGC stores created sincs May 2022\nPK: app_key"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_app_key": {"name": "analytics___ugc__store_first_time_activity_metrics_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_app_key", "block_contents": "yotpo store unique identifier - primary key 1/1"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_churn_date": {"name": "analytics___ugc__store_first_time_activity_metrics_churn_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_churn_date", "block_contents": "store churn date"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_dwh_updated_at": {"name": "analytics___ugc__store_first_time_activity_metrics_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_3_review_requests_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_3_review_requests_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_3_review_requests_date", "block_contents": "The earliest date when the cumulative count of review requests reached or exceeded 3"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_active_tier_0_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_active_tier_0_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_active_tier_0_date", "block_contents": "Earliest date when is_active_tier_0 = 1"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_active_tier_1_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_active_tier_1_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_active_tier_1_date", "block_contents": "Earliest date when is_active_tier_1 = 1"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_active_tier_2_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_active_tier_2_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_active_tier_2_date", "block_contents": "Earliest date when is_active_tier_2 = 1"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_active_tier_3_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_active_tier_3_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_active_tier_3_date", "block_contents": "Earliest date when is_active_tier_3 = 1"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_fb_syndication_enabled_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_fb_syndication_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_fb_syndication_enabled_date", "block_contents": "Earliest date when feature_id = 380, is_user_enabled = true, and is_disabled = false"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_gsr_enabled_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_gsr_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_gsr_enabled_date", "block_contents": "Earliest date when feature_id = 89, is_user_enabled = true, and is_disabled = false"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_ht_self_service_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_ht_self_service_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_ht_self_service_date", "block_contents": "First time ht self service"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_map_enabled_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_map_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_map_enabled_date", "block_contents": "Earliest date when feature_id = 9, is_user_enabled = true, and is_disabled = false"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_order_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_order_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_order_date", "block_contents": "The earliest date when an order was created for the store"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_pla_enabled_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_pla_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_pla_enabled_date", "block_contents": "Earliest date when feature_id = 84, is_user_enabled = true, and is_disabled = false"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_review_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_review_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_review_date", "block_contents": "The earliest date when a review was received for the store"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_reviews_widget_loaded_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_reviews_widget_loaded_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_reviews_widget_loaded_date", "block_contents": "Earliest date when is_reviews_widget_loaded = 1"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_enterprise_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_subscription_enterprise_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_enterprise_date", "block_contents": "Earliest date when the store subscribed Enterprise packcage"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_growth_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_subscription_growth_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_growth_date", "block_contents": "Earliest date when the store subscribed Growth packcage"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_powerhouse_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_subscription_powerhouse_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_powerhouse_date", "block_contents": "Earliest date when the store subscribed Powerhouse packcage"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_premium_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_subscription_premium_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_premium_date", "block_contents": "Earliest date when the store subscribed Premium packcage"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_prime_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_subscription_prime_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_prime_date", "block_contents": "Earliest date when the store subscribed Prime packcage"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_pro_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_subscription_pro_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_subscription_pro_date", "block_contents": "Earliest date when the store subscribed Pro packcage"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_widgetv3_enabled_date": {"name": "analytics___ugc__store_first_time_activity_metrics_first_widgetv3_enabled_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_first_widgetv3_enabled_date", "block_contents": "Earliest date when feature_id = 388, is_user_enabled = true, and is_disabled = false"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_is_churned": {"name": "analytics___ugc__store_first_time_activity_metrics_is_churned", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_is_churned", "block_contents": "Indication if the store has been churned"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_organization_key": {"name": "analytics___ugc__store_first_time_activity_metrics_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_organization_key", "block_contents": "FK: analytics___platform__organization"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_platform_group": {"name": "analytics___ugc__store_first_time_activity_metrics_platform_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_platform_group", "block_contents": "store platform"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_reviews_enablement_date": {"name": "analytics___ugc__store_first_time_activity_metrics_reviews_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_reviews_enablement_date", "block_contents": "First date Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store (only from 2021)"}, "doc.yoda.analytics___ugc__store_first_time_activity_metrics_reviews_enablement_month": {"name": "analytics___ugc__store_first_time_activity_metrics_reviews_enablement_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_first_time_activity_metrics/analytics___ugc__store_first_time_activity_metrics.md", "unique_id": "doc.yoda.analytics___ugc__store_first_time_activity_metrics_reviews_enablement_month", "block_contents": "First month Reviews was enabled - calculated by taking the created date of feature_id = 9 (MAP) per store (only from 2021)"}, "doc.yoda.analytics___ugc__store_installation_over_time": {"name": "analytics___ugc__store_installation_over_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_installation_over_time", "block_contents": "Modeled table of ugc store install & uninstall status over time | PK and granularity: app_key, from_time"}, "doc.yoda.analytics___ugc__store_installation_over_time_app_key": {"name": "analytics___ugc__store_installation_over_time_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_installation_over_time_app_key", "block_contents": "yotpo store unique identifier - primary key 1/2"}, "doc.yoda.analytics___ugc__store_installation_over_time_created_date": {"name": "analytics___ugc__store_installation_over_time_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_installation_over_time_created_date", "block_contents": "installation event created date"}, "doc.yoda.analytics___ugc__store_installation_over_time_dwh_updated_at": {"name": "analytics___ugc__store_installation_over_time_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_installation_over_time_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__store_installation_over_time_event_source": {"name": "analytics___ugc__store_installation_over_time_event_source", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_installation_over_time_event_source", "block_contents": "b2b, onboarding, app_uninstalled, etc."}, "doc.yoda.analytics___ugc__store_installation_over_time_from_time": {"name": "analytics___ugc__store_installation_over_time_from_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_installation_over_time_from_time", "block_contents": "store installation status range start timestamp - primary key 2/2 - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time"}, "doc.yoda.analytics___ugc__store_installation_over_time_installation_status": {"name": "analytics___ugc__store_installation_over_time_installation_status", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_installation_over_time_installation_status", "block_contents": "ugc app installation status: installed/uninstalled"}, "doc.yoda.analytics___ugc__store_installation_over_time_store_and_date_row_ranking": {"name": "analytics___ugc__store_installation_over_time_store_and_date_row_ranking", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_installation_over_time_store_and_date_row_ranking", "block_contents": "row ranking for each store and created_date by created_at (i.e, 1 is the first row for each store and created date)"}, "doc.yoda.analytics___ugc__store_installation_over_time_store_and_date_row_ranking_backwards": {"name": "analytics___ugc__store_installation_over_time_store_and_date_row_ranking_backwards", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_installation_over_time_store_and_date_row_ranking_backwards", "block_contents": "row ranking for each store and created_date by created_at (i.e, 1 is the last row for each store and created date)"}, "doc.yoda.analytics___ugc__store_installation_over_time_to_time": {"name": "analytics___ugc__store_installation_over_time_to_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_installation_over_time/analytics___ugc__store_installation_over_time.md", "unique_id": "doc.yoda.analytics___ugc__store_installation_over_time_to_time", "block_contents": "store installation status range end timestamp - AVOID USE OF BETWEEN, please use: date >= from_time AND date < to_time"}, "doc.yoda.analytics___ugc__store_metrics_daily": {"name": "analytics___ugc__store_metrics_daily", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily", "block_contents": "Modeled table of ugc store metrics history on a daily level | PK and granularity: metric_date, app_key"}, "doc.yoda.analytics___ugc__store_metrics_daily_app_key": {"name": "analytics___ugc__store_metrics_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_app_key", "block_contents": "yotpo store unique identifier - primary key 2/2"}, "doc.yoda.analytics___ugc__store_metrics_daily_dwh_updated_at": {"name": "analytics___ugc__store_metrics_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_active_tier_0": {"name": "analytics___ugc__store_metrics_daily_is_active_tier_0", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_active_tier_0", "block_contents": "indicator: 0/1. Meaning: order_cnt_l30d > 0 and review_request_sent_cnt_l30d >= 3"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_active_tier_1": {"name": "analytics___ugc__store_metrics_daily_is_active_tier_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_active_tier_1", "block_contents": "indicator: 0/1. Meaning: is_active_tier_0 = 1 and is_map_enabled_l30d = 1"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_active_tier_2": {"name": "analytics___ugc__store_metrics_daily_is_active_tier_2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_active_tier_2", "block_contents": "indicator: 0/1. Meaning: is_active_tier_1 = 1 and is_reviews_widget_loaded_l30d = 1"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_active_tier_3": {"name": "analytics___ugc__store_metrics_daily_is_active_tier_3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_active_tier_3", "block_contents": "indicator: 0/1. Meaning: is_active_tier_2 = 1 and review_cnt_l30d >= 1"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_bottomlinesyndication_enabled": {"name": "analytics___ugc__store_metrics_daily_is_bottomlinesyndication_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_bottomlinesyndication_enabled", "block_contents": "feature_id = 199 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_coupons_enabled": {"name": "analytics___ugc__store_metrics_daily_is_coupons_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_coupons_enabled", "block_contents": "feature_id = 15 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_csseditor_enabled": {"name": "analytics___ugc__store_metrics_daily_is_csseditor_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_csseditor_enabled", "block_contents": "feature_id = 90 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_cssversionededitor_enabled": {"name": "analytics___ugc__store_metrics_daily_is_cssversionededitor_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_cssversionededitor_enabled", "block_contents": "feature_id = 210 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_customtranslations_enabled": {"name": "analytics___ugc__store_metrics_daily_is_customtranslations_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_customtranslations_enabled", "block_contents": "feature_id = 118 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_facebooksyndication_enabled": {"name": "analytics___ugc__store_metrics_daily_is_facebooksyndication_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_facebooksyndication_enabled", "block_contents": "feature_id = 380 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_googlefeed_enabled": {"name": "analytics___ugc__store_metrics_daily_is_googlefeed_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_googlefeed_enabled", "block_contents": "feature_id = 84 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_googlefeed_enabled_l30d": {"name": "analytics___ugc__store_metrics_daily_is_googlefeed_enabled_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_googlefeed_enabled_l30d", "block_contents": "max(is_googlefeed_enabled) last 30 days"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_googlesellerrating_enabled": {"name": "analytics___ugc__store_metrics_daily_is_googlesellerrating_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_googlesellerrating_enabled", "block_contents": "feature_id = 89 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_googlesellerrating_enabled_l30d": {"name": "analytics___ugc__store_metrics_daily_is_googlesellerrating_enabled_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_googlesellerrating_enabled_l30d", "block_contents": "max(is_googlesellerrating_enabled) last 30 days"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_map_enabled": {"name": "analytics___ugc__store_metrics_daily_is_map_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_map_enabled", "block_contents": "feature_id = 9 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_map_enabled_l30d": {"name": "analytics___ugc__store_metrics_daily_is_map_enabled_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_map_enabled_l30d", "block_contents": "max(is_map_enabled) last 30 days"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_postman_enabled": {"name": "analytics___ugc__store_metrics_daily_is_postman_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_postman_enabled", "block_contents": "feature_id = 402 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_postman_enabled_l30d": {"name": "analytics___ugc__store_metrics_daily_is_postman_enabled_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_postman_enabled_l30d", "block_contents": "max(is_postman_enabled) last 30 days"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_reminder_enabled": {"name": "analytics___ugc__store_metrics_daily_is_reminder_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_reminder_enabled", "block_contents": "riminder is cosidered enabled when count of (feature_id = 9 is_user_enabled = true and is_disabled = false) is larger then one"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_retailsyndicationwalmart_enabled": {"name": "analytics___ugc__store_metrics_daily_is_retailsyndicationwalmart_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_retailsyndicationwalmart_enabled", "block_contents": "feature_id = 316 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_reviewratingfields_enabled": {"name": "analytics___ugc__store_metrics_daily_is_reviewratingfields_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_reviewratingfields_enabled", "block_contents": "feature_id = 133 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_reviews_export": {"name": "analytics___ugc__store_metrics_daily_is_reviews_export", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_reviews_export", "block_contents": "is reviews file export indicator: 0/1/null"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_reviews_widget_loaded": {"name": "analytics___ugc__store_metrics_daily_is_reviews_widget_loaded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_reviews_widget_loaded", "block_contents": "reviews widget loaded indicator: 0/1"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_reviews_widget_loaded_l30d": {"name": "analytics___ugc__store_metrics_daily_is_reviews_widget_loaded_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_reviews_widget_loaded_l30d", "block_contents": "max(is_reviews_widget_loaded) last 30 days"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_reviewwithpictures_enabled": {"name": "analytics___ugc__store_metrics_daily_is_reviewwithpictures_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_reviewwithpictures_enabled", "block_contents": "feature_id = 138 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_richsnippet_enabled": {"name": "analytics___ugc__store_metrics_daily_is_richsnippet_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_richsnippet_enabled", "block_contents": "feature_id = 3 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_sitereviewafterproductreview_enabled": {"name": "analytics___ugc__store_metrics_daily_is_sitereviewafterproductreview_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_sitereviewafterproductreview_enabled", "block_contents": "feature_id = 339 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_sitereviewafterproductreview_enabled_l30d": {"name": "analytics___ugc__store_metrics_daily_is_sitereviewafterproductreview_enabled_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_sitereviewafterproductreview_enabled_l30d", "block_contents": "max(is_sitereviewafterproductreview_enabled) last 30 days"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_videosinreviews_enabled": {"name": "analytics___ugc__store_metrics_daily_is_videosinreviews_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_videosinreviews_enabled", "block_contents": "feature_id = 279 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_is_widgetv3_enabled": {"name": "analytics___ugc__store_metrics_daily_is_widgetv3_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_is_widgetv3_enabled", "block_contents": "feature_id = 388 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_daily_metric_date": {"name": "analytics___ugc__store_metrics_daily_metric_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_metric_date", "block_contents": "store activeness date - primary key 1/2"}, "doc.yoda.analytics___ugc__store_metrics_daily_order_cnt": {"name": "analytics___ugc__store_metrics_daily_order_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_order_cnt", "block_contents": "number of orders"}, "doc.yoda.analytics___ugc__store_metrics_daily_order_cnt_l30d": {"name": "analytics___ugc__store_metrics_daily_order_cnt_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_order_cnt_l30d", "block_contents": "sum(order_cnt) last 30 days"}, "doc.yoda.analytics___ugc__store_metrics_daily_organization_key": {"name": "analytics___ugc__store_metrics_daily_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_organization_key", "block_contents": "FK: analytics___platform__organization"}, "doc.yoda.analytics___ugc__store_metrics_daily_review_cnt": {"name": "analytics___ugc__store_metrics_daily_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_review_cnt", "block_contents": "number of reviews"}, "doc.yoda.analytics___ugc__store_metrics_daily_review_cnt_l30d": {"name": "analytics___ugc__store_metrics_daily_review_cnt_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_review_cnt_l30d", "block_contents": "sum(review_cnt) last 30 days"}, "doc.yoda.analytics___ugc__store_metrics_daily_review_rating_avg": {"name": "analytics___ugc__store_metrics_daily_review_rating_avg", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_review_rating_avg", "block_contents": "average review rating"}, "doc.yoda.analytics___ugc__store_metrics_daily_review_rating_sum": {"name": "analytics___ugc__store_metrics_daily_review_rating_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_review_rating_sum", "block_contents": "sum of reviews ratings"}, "doc.yoda.analytics___ugc__store_metrics_daily_review_request_sent_cnt": {"name": "analytics___ugc__store_metrics_daily_review_request_sent_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_review_request_sent_cnt", "block_contents": "number of review requests sent"}, "doc.yoda.analytics___ugc__store_metrics_daily_review_request_sent_cnt_l30d": {"name": "analytics___ugc__store_metrics_daily_review_request_sent_cnt_l30d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_review_request_sent_cnt_l30d", "block_contents": "sum(request_sent_cnt) last 30 days"}, "doc.yoda.analytics___ugc__store_metrics_daily_reviewer_cnt": {"name": "analytics___ugc__store_metrics_daily_reviewer_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_reviewer_cnt", "block_contents": "number of unique reviewers"}, "doc.yoda.analytics___ugc__store_metrics_daily_reviews_widget_version": {"name": "analytics___ugc__store_metrics_daily_reviews_widget_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily/analytics___ugc__store_metrics_daily.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_reviews_widget_version", "block_contents": "reviews widget version based on pixel events data: 2/3"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m": {"name": "analytics___ugc__store_metrics_daily_24m", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m", "block_contents": "Modeled table of ugc stores history on a daily level | Granularity & Primary Key: metric_date, app_key"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_app_key": {"name": "analytics___ugc__store_metrics_daily_24m_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_app_key", "block_contents": "yotpo store unique identifier - primary key 1/2"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_dwh_updated_at": {"name": "analytics___ugc__store_metrics_daily_24m_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_created_date": {"name": "analytics___ugc__store_metrics_daily_24m_is_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_created_date", "block_contents": "created date indicator: 0/1"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_free": {"name": "analytics___ugc__store_metrics_daily_24m_is_free", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_free", "block_contents": "plan is free indicator 1/0"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_ht": {"name": "analytics___ugc__store_metrics_daily_24m_is_ht", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_ht", "block_contents": "is_free = 0 and is_ss = 0"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_orders_last_365d": {"name": "analytics___ugc__store_metrics_daily_24m_is_orders_last_365d", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_orders_last_365d", "block_contents": "order in the last year indicator: 0/1"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_reviews_enablement_date": {"name": "analytics___ugc__store_metrics_daily_24m_is_reviews_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_reviews_enablement_date", "block_contents": "reviews enablement date indicator: 0/1"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_ss": {"name": "analytics___ugc__store_metrics_daily_24m_is_ss", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_ss", "block_contents": "self service indicator: 0/1"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_uninstall_date": {"name": "analytics___ugc__store_metrics_daily_24m_is_uninstall_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_uninstall_date", "block_contents": "uninstalled date indicator: 0/1"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_visited_b2b_page": {"name": "analytics___ugc__store_metrics_daily_24m_is_visited_b2b_page", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_is_visited_b2b_page", "block_contents": "visited b2b page indicator: 0/1"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_latest_order_date": {"name": "analytics___ugc__store_metrics_daily_24m_latest_order_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_latest_order_date", "block_contents": "latest order date"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_metric_date": {"name": "analytics___ugc__store_metrics_daily_24m_metric_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_metric_date", "block_contents": "metric_date - primary key 2/2"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_month": {"name": "analytics___ugc__store_metrics_daily_24m_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_month", "block_contents": "month"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_organization_id": {"name": "analytics___ugc__store_metrics_daily_24m_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_organization_id", "block_contents": "organization identifier"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_organization_key": {"name": "analytics___ugc__store_metrics_daily_24m_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_organization_key", "block_contents": "FK: analytics___platform__organization"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_plan_category": {"name": "analytics___ugc__store_metrics_daily_24m_plan_category", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_plan_category", "block_contents": "plan category name: LT/HT"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_plan_group": {"name": "analytics___ugc__store_metrics_daily_24m_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_plan_group", "block_contents": "Pro | Premium | Enterprise | Focus | Powerhouse | Prime | Growth | Free"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_plan_group_change_type": {"name": "analytics___ugc__store_metrics_daily_24m_plan_group_change_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_plan_group_change_type", "block_contents": "plan group change type: upgrade, downgrade, unchanged"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_plan_name": {"name": "analytics___ugc__store_metrics_daily_24m_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_plan_name", "block_contents": "plan name: Reviews - Free, Yotpo Reviews Powerhouse, etc."}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_plan_type": {"name": "analytics___ugc__store_metrics_daily_24m_plan_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_plan_type", "block_contents": "plan type name: Annual, Free, SS"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_platform_group_name": {"name": "analytics___ugc__store_metrics_daily_24m_platform_group_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_platform_group_name", "block_contents": "platform group name: magento, go_daddy_commerce, shopify, etc."}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_platform_name": {"name": "analytics___ugc__store_metrics_daily_24m_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_platform_name", "block_contents": "platform name: magento, americommerce, etsy, etc."}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_previous_day_plan_group": {"name": "analytics___ugc__store_metrics_daily_24m_previous_day_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_previous_day_plan_group", "block_contents": "previous day plan group"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_sf_account_cs_segment": {"name": "analytics___ugc__store_metrics_daily_24m_sf_account_cs_segment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_sf_account_cs_segment", "block_contents": ""}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_created_at": {"name": "analytics___ugc__store_metrics_daily_24m_store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_created_at", "block_contents": "store created timestamp"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_created_date": {"name": "analytics___ugc__store_metrics_daily_24m_store_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_created_date", "block_contents": "store created date"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_domain": {"name": "analytics___ugc__store_metrics_daily_24m_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_domain", "block_contents": "store url domain"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_id": {"name": "analytics___ugc__store_metrics_daily_24m_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_id", "block_contents": "store identifier"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_name": {"name": "analytics___ugc__store_metrics_daily_24m_store_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_name", "block_contents": "store name"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_reviews_enablement_date": {"name": "analytics___ugc__store_metrics_daily_24m_store_reviews_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_reviews_enablement_date", "block_contents": "store reviews created date"}, "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_reviews_enablement_period": {"name": "analytics___ugc__store_metrics_daily_24m_store_reviews_enablement_period", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_daily_24m/analytics___ugc__store_metrics_daily_24m.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_daily_24m_store_reviews_enablement_period", "block_contents": "store reviews enablement period: Before 2019, 2020, 2021/05, 2021/06, etc."}, "doc.yoda.analytics___ugc__store_metrics_monthly": {"name": "analytics___ugc__store_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly", "block_contents": "Modeled table of ugc store metrics history on a monthly level | PK and granularity: metric_month, app_key"}, "doc.yoda.analytics___ugc__store_metrics_monthly_app_key": {"name": "analytics___ugc__store_metrics_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_app_key", "block_contents": "yotpo store unique identifier - primary key 2/2"}, "doc.yoda.analytics___ugc__store_metrics_monthly_dwh_updated_at": {"name": "analytics___ugc__store_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__store_metrics_monthly_is_map_enabled": {"name": "analytics___ugc__store_metrics_monthly_is_map_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_is_map_enabled", "block_contents": "reviews map enablement indicator: 0/1. feature_id = 9 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_monthly_is_postman_enabled": {"name": "analytics___ugc__store_metrics_monthly_is_postman_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_is_postman_enabled", "block_contents": "Postman enablement indicator: 0/1. feature_id = 402 is_user_enabled = true and is_disabled = false"}, "doc.yoda.analytics___ugc__store_metrics_monthly_is_reviews_widget_loaded": {"name": "analytics___ugc__store_metrics_monthly_is_reviews_widget_loaded", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_is_reviews_widget_loaded", "block_contents": "reviews widget loaded indicator: 0/1"}, "doc.yoda.analytics___ugc__store_metrics_monthly_is_widgetv3_enabled": {"name": "analytics___ugc__store_metrics_monthly_is_widgetv3_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_is_widgetv3_enabled", "block_contents": "widget V3 enabled indicator: 0/1"}, "doc.yoda.analytics___ugc__store_metrics_monthly_metric_month": {"name": "analytics___ugc__store_metrics_monthly_metric_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_metric_month", "block_contents": "store activeness month - primary key 1/2"}, "doc.yoda.analytics___ugc__store_metrics_monthly_order_cnt": {"name": "analytics___ugc__store_metrics_monthly_order_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_order_cnt", "block_contents": "number of orders"}, "doc.yoda.analytics___ugc__store_metrics_monthly_order_with_first_email_opened_within_7d_cnt": {"name": "analytics___ugc__store_metrics_monthly_order_with_first_email_opened_within_7d_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_order_with_first_email_opened_within_7d_cnt", "block_contents": "number of orders with a review request with email that opened within 7 days from the first email sent date"}, "doc.yoda.analytics___ugc__store_metrics_monthly_order_with_first_email_opened_within_7d_ratio": {"name": "analytics___ugc__store_metrics_monthly_order_with_first_email_opened_within_7d_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_order_with_first_email_opened_within_7d_ratio", "block_contents": "ratio of orders with a review request with email that opened within 7 days from the first email sent date"}, "doc.yoda.analytics___ugc__store_metrics_monthly_order_with_review_request_and_review_cnt": {"name": "analytics___ugc__store_metrics_monthly_order_with_review_request_and_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_order_with_review_request_and_review_cnt", "block_contents": "number of orders with a review request and a review"}, "doc.yoda.analytics___ugc__store_metrics_monthly_order_with_review_request_cnt": {"name": "analytics___ugc__store_metrics_monthly_order_with_review_request_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_order_with_review_request_cnt", "block_contents": "number of orders with a review request"}, "doc.yoda.analytics___ugc__store_metrics_monthly_order_with_review_request_to_review_ratio": {"name": "analytics___ugc__store_metrics_monthly_order_with_review_request_to_review_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_order_with_review_request_to_review_ratio", "block_contents": "ratio of orders with a review request and a review"}, "doc.yoda.analytics___ugc__store_metrics_monthly_previous_month_review_cnt": {"name": "analytics___ugc__store_metrics_monthly_previous_month_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_previous_month_review_cnt", "block_contents": "number of reviews in the previous month"}, "doc.yoda.analytics___ugc__store_metrics_monthly_review_cnt": {"name": "analytics___ugc__store_metrics_monthly_review_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_review_cnt", "block_contents": "number of reviews"}, "doc.yoda.analytics___ugc__store_metrics_monthly_review_rating_sum": {"name": "analytics___ugc__store_metrics_monthly_review_rating_sum", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_review_rating_sum", "block_contents": "sum of reviews ratings"}, "doc.yoda.analytics___ugc__store_metrics_monthly_review_request_sent_cnt": {"name": "analytics___ugc__store_metrics_monthly_review_request_sent_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_review_request_sent_cnt", "block_contents": "number of review requests sent"}, "doc.yoda.analytics___ugc__store_metrics_monthly_reviewer_cnt": {"name": "analytics___ugc__store_metrics_monthly_reviewer_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_reviewer_cnt", "block_contents": "number of unique reviewers"}, "doc.yoda.analytics___ugc__store_metrics_monthly_reviews_enablement_date": {"name": "analytics___ugc__store_metrics_monthly_reviews_enablement_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_reviews_enablement_date", "block_contents": "reviews enablement date"}, "doc.yoda.analytics___ugc__store_metrics_monthly_reviews_enablement_month": {"name": "analytics___ugc__store_metrics_monthly_reviews_enablement_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_metrics_monthly/analytics___ugc__store_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_metrics_monthly_reviews_enablement_month", "block_contents": "reviews enablement month"}, "doc.yoda.analytics___ugc__store_product_activeness_monthly": {"name": "analytics___ugc__store_product_activeness_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_product_activeness_monthly", "block_contents": "|\nModeled table of ugc stores with activeness indicators in a monthly level.\nThe table includes in each month only stores that are at least active in tier 1 (review_request_sent_cnt >= 3 AND order_cnt > 0).\nPK and granularity: app_key"}, "doc.yoda.analytics___ugc__store_product_activeness_monthly_activeness_month": {"name": "analytics___ugc__store_product_activeness_monthly_activeness_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_product_activeness_monthly_activeness_month", "block_contents": "store activeness month - primary key 1/2"}, "doc.yoda.analytics___ugc__store_product_activeness_monthly_app_key": {"name": "analytics___ugc__store_product_activeness_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_product_activeness_monthly_app_key", "block_contents": "yotpo store unique identifier - primary key 2/2"}, "doc.yoda.analytics___ugc__store_product_activeness_monthly_dwh_updated_at": {"name": "analytics___ugc__store_product_activeness_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_product_activeness_monthly_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__store_product_activeness_monthly_is_active_tier_2": {"name": "analytics___ugc__store_product_activeness_monthly_is_active_tier_2", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_product_activeness_monthly_is_active_tier_2", "block_contents": "ugc product tier 2 activeness indicator: 0/1. Meaning: is_ugc_active_tier_1 = 1 AND is_map_enabled = 1"}, "doc.yoda.analytics___ugc__store_product_activeness_monthly_is_active_tier_3": {"name": "analytics___ugc__store_product_activeness_monthly_is_active_tier_3", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_product_activeness_monthly_is_active_tier_3", "block_contents": "ugc product tier 3 activeness indicator: 0/1. Meaning: is_ugc_active_tier_2 = 1 AND is_reviews_widget_loaded = 1"}, "doc.yoda.analytics___ugc__store_product_activeness_monthly_is_active_tier_4": {"name": "analytics___ugc__store_product_activeness_monthly_is_active_tier_4", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_product_activeness_monthly/analytics___ugc__store_product_activeness_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_product_activeness_monthly_is_active_tier_4", "block_contents": "ugc product tier 4 activeness indicator: 0/1. Meaning: is_ugc_active_tier_3 = 1 AND review_cnt > 0"}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly": {"name": "analytics___ugc__store_widget_metrics_monthly", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly", "block_contents": "UGC stores interactions with specific widget elements over the past 12 months. \nThis table indicates, for each store on a monthly basis, whether it had any interaction with a particular widget element. \nGranularity: app_key, month, widget_element, loaded_widget_version_type."}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_app_key": {"name": "analytics___ugc__store_widget_metrics_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_app_key", "block_contents": "Yotpo store's unique identifier"}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_closing_plan_group": {"name": "analytics___ugc__store_widget_metrics_monthly_closing_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_closing_plan_group", "block_contents": "The closing plan of the organization"}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_dwh_updated_at": {"name": "analytics___ugc__store_widget_metrics_monthly_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_is_active_tier_1": {"name": "analytics___ugc__store_widget_metrics_monthly_is_active_tier_1", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_is_active_tier_1", "block_contents": "Indication if the store was active 1 (at least 3 review requests + at least 1 order) in a certain month"}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_last_3m_orders_avg_bucket": {"name": "analytics___ugc__store_widget_metrics_monthly_last_3m_orders_avg_bucket", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_last_3m_orders_avg_bucket", "block_contents": "Last 3 months orders avg bucket"}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_loaded_widget_version_type": {"name": "analytics___ugc__store_widget_metrics_monthly_loaded_widget_version_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_loaded_widget_version_type", "block_contents": "Version of the widget associated with the loaded, shown, or clicked event"}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_month": {"name": "analytics___ugc__store_widget_metrics_monthly_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_month", "block_contents": ""}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_organization_key": {"name": "analytics___ugc__store_widget_metrics_monthly_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_organization_key", "block_contents": "organization key"}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_platform_name": {"name": "analytics___ugc__store_widget_metrics_monthly_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_platform_name", "block_contents": "Platform Name"}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_store_widget_month_id": {"name": "analytics___ugc__store_widget_metrics_monthly_store_widget_month_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_store_widget_month_id", "block_contents": "PK | unique identifier from combining app_key|month|widget_element_pixel_event|loaded_widget_version_type"}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_widget_element_pixel_event": {"name": "analytics___ugc__store_widget_metrics_monthly_widget_element_pixel_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_widget_element_pixel_event", "block_contents": "The specific widget element with which the store interacted during the month"}, "doc.yoda.analytics___ugc__store_widget_metrics_monthly_widget_version_eligibility": {"name": "analytics___ugc__store_widget_metrics_monthly_widget_version_eligibility", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__store_widget_metrics_monthly/analytics___ugc__store_widget_metrics_monthly.md", "unique_id": "doc.yoda.analytics___ugc__store_widget_metrics_monthly_widget_version_eligibility", "block_contents": "Based on feature ID 388 (WidgetV3). If this feature was enabled for a UGC store in a specific month, the value is 3. If not, the value is 2."}, "doc.yoda.analytics___ugc__unmigrated_review_request_token": {"name": "analytics___ugc__unmigrated_review_request_token", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token", "block_contents": "Incremental table of unmigrated review request tokens.\nPK and granularity: token / email_authentication_id"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_caller_id": {"name": "analytics___ugc__unmigrated_review_request_token_caller_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_caller_id", "block_contents": "caller id"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_caller_type": {"name": "analytics___ugc__unmigrated_review_request_token_caller_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_caller_type", "block_contents": "caller type"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_created_at": {"name": "analytics___ugc__unmigrated_review_request_token_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_created_at", "block_contents": "token creation timestamp"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_created_date": {"name": "analytics___ugc__unmigrated_review_request_token_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_created_date", "block_contents": "token creation date"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_dwh_updated_at": {"name": "analytics___ugc__unmigrated_review_request_token_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_authentication_id": {"name": "analytics___ugc__unmigrated_review_request_token_email_authentication_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_authentication_id", "block_contents": "email authentication id - integer PK"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_review_id": {"name": "analytics___ugc__unmigrated_review_request_token_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_review_id", "block_contents": "review id"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_token": {"name": "analytics___ugc__unmigrated_review_request_token_token", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_token", "block_contents": "review request token - string PK"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_updated_at": {"name": "analytics___ugc__unmigrated_review_request_token_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_updated_date": {"name": "analytics___ugc__unmigrated_review_request_token_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_users_email_control_id": {"name": "analytics___ugc__unmigrated_review_request_token_users_email_control_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token/analytics___ugc__unmigrated_review_request_token.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_users_email_control_id", "block_contents": "users email control id - forign key to ugc_stg__users_email_controls model"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email": {"name": "analytics___ugc__unmigrated_review_request_token_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email", "block_contents": "Incremental table of unmigrated review request token's emails.\nPK and granularity: token / email_authentication_id & users_email_control_id"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_account_id": {"name": "analytics___ugc__unmigrated_review_request_token_email_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_account_id", "block_contents": "yotpo account id"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_caller_id": {"name": "analytics___ugc__unmigrated_review_request_token_email_caller_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_caller_id", "block_contents": "caller id"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_caller_type": {"name": "analytics___ugc__unmigrated_review_request_token_email_caller_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_caller_type", "block_contents": "caller type"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_created_at": {"name": "analytics___ugc__unmigrated_review_request_token_email_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_created_at", "block_contents": "email creation timestamp"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_created_date": {"name": "analytics___ugc__unmigrated_review_request_token_email_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_created_date", "block_contents": "email creation date"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_delivered_at": {"name": "analytics___ugc__unmigrated_review_request_token_email_delivered_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_delivered_at", "block_contents": "email delivered timestamp"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_delivered_date": {"name": "analytics___ugc__unmigrated_review_request_token_email_delivered_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_delivered_date", "block_contents": "email delivered date"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_dwh_updated_at": {"name": "analytics___ugc__unmigrated_review_request_token_email_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_email_address": {"name": "analytics___ugc__unmigrated_review_request_token_email_email_address", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_email_address", "block_contents": "receiver email address"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_email_authentication_id": {"name": "analytics___ugc__unmigrated_review_request_token_email_email_authentication_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_email_authentication_id", "block_contents": "email authentication id - PK 1/2"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_email_type": {"name": "analytics___ugc__unmigrated_review_request_token_email_email_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_email_type", "block_contents": "email type"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_email_type_id": {"name": "analytics___ugc__unmigrated_review_request_token_email_email_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_email_type_id", "block_contents": "email type id"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_form_type_id": {"name": "analytics___ugc__unmigrated_review_request_token_email_form_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_form_type_id", "block_contents": "form type id"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_latest_updated_at": {"name": "analytics___ugc__unmigrated_review_request_token_email_latest_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_latest_updated_at", "block_contents": "The latest updated_at value among the source models' updated_at columns"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_latest_updated_date": {"name": "analytics___ugc__unmigrated_review_request_token_email_latest_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_latest_updated_date", "block_contents": "The latest updated_date value among the source models' updated_date columns"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_review_id": {"name": "analytics___ugc__unmigrated_review_request_token_email_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_review_id", "block_contents": "review id"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_token": {"name": "analytics___ugc__unmigrated_review_request_token_email_token", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_token", "block_contents": "token - PK 1/2"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_token_created_at": {"name": "analytics___ugc__unmigrated_review_request_token_email_token_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_token_created_at", "block_contents": "token creation timestamp"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_token_created_date": {"name": "analytics___ugc__unmigrated_review_request_token_email_token_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_token_created_date", "block_contents": "token creation date"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_token_updated_at": {"name": "analytics___ugc__unmigrated_review_request_token_email_token_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_token_updated_at", "block_contents": "token update timestamp"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_token_updated_date": {"name": "analytics___ugc__unmigrated_review_request_token_email_token_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_token_updated_date", "block_contents": "token update date"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_updated_at": {"name": "analytics___ugc__unmigrated_review_request_token_email_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_updated_at", "block_contents": "email update timestamp"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_updated_date": {"name": "analytics___ugc__unmigrated_review_request_token_email_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_updated_date", "block_contents": "email update date"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_user_name": {"name": "analytics___ugc__unmigrated_review_request_token_email_user_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_user_name", "block_contents": "receiver user name"}, "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_users_email_control_id": {"name": "analytics___ugc__unmigrated_review_request_token_email_users_email_control_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "original_file_path": "models/analytics/ugc/marts/analytics___ugc__unmigrated_review_request_token_email/analytics___ugc__unmigrated_review_request_token_email.md", "unique_id": "doc.yoda.analytics___ugc__unmigrated_review_request_token_email_users_email_control_id", "block_contents": "users email control id - PK 2/2"}, "doc.yoda.analytics___ugc_stg__emails": {"name": "analytics___ugc_stg__emails", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails", "block_contents": "Representation of an email entity in the email analytics system. It is designed to store and manage various attributes and data related to emails, providing a structured and organized way to work with email information."}, "doc.yoda.analytics___ugc_stg__emails_upsolver_schema_version": {"name": "analytics___ugc_stg__emails_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_upsolver_schema_version", "block_contents": "This column stores Upsolver schema version for the table."}, "doc.yoda.analytics___ugc_stg__emails_processing_time": {"name": "analytics___ugc_stg__emails_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_processing_time", "block_contents": "This column store DL processing time."}, "doc.yoda.analytics___ugc_stg__emails_app_key": {"name": "analytics___ugc_stg__emails_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_app_key", "block_contents": "This column stores the appKey (storeId) associated with the application."}, "doc.yoda.analytics___ugc_stg__emails_arrived_early_timestamp": {"name": "analytics___ugc_stg__emails_arrived_early_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_arrived_early_timestamp", "block_contents": "This column captures the timestamp at which the recipient indicated that the email was received earlier than anticipated."}, "doc.yoda.analytics___ugc_stg__emails_batch_id": {"name": "analytics___ugc_stg__emails_batch_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_batch_id", "block_contents": "This column represents the id of the email batch to which the email belongs."}, "doc.yoda.analytics___ugc_stg__emails_batch_subject": {"name": "analytics___ugc_stg__emails_batch_subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_batch_subject", "block_contents": "This column stores the subject of the email batch."}, "doc.yoda.analytics___ugc_stg__emails_clicked_through_timestamp": {"name": "analytics___ugc_stg__emails_clicked_through_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_clicked_through_timestamp", "block_contents": "This column represents the timestamp when the recipient clicked through a link in the email."}, "doc.yoda.analytics___ugc_stg__emails_content_creation_timestamp": {"name": "analytics___ugc_stg__emails_content_creation_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_content_creation_timestamp", "block_contents": "This column represents the timestamp when the email content was created."}, "doc.yoda.analytics___ugc_stg__emails_coupon_code": {"name": "analytics___ugc_stg__emails_coupon_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_coupon_code", "block_contents": "This column stores the coupon code associated with the email."}, "doc.yoda.analytics___ugc_stg__emails_email_address": {"name": "analytics___ugc_stg__emails_email_address", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_email_address", "block_contents": "This column contains the email address of the recipient."}, "doc.yoda.analytics___ugc_stg__emails_email_id": {"name": "analytics___ugc_stg__emails_email_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_email_id", "block_contents": "This column represents the email id. It serves as the primary key for this entity.\nThis column is a reference to yotpoapiprod's review_request_tokens.token and review_request_emails.review_request_token columns."}, "doc.yoda.analytics___ugc_stg__emails_email_sent_date": {"name": "analytics___ugc_stg__emails_email_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_email_sent_date", "block_contents": "This column stores the date when the email was sent."}, "doc.yoda.analytics___ugc_stg__emails_email_sent_timestamp": {"name": "analytics___ugc_stg__emails_email_sent_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_email_sent_timestamp", "block_contents": "This column represents the timestamp when the email was sent."}, "doc.yoda.analytics___ugc_stg__emails_email_type": {"name": "analytics___ugc_stg__emails_email_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_email_type", "block_contents": "This column stores the type of email."}, "doc.yoda.analytics___ugc_stg__emails_failed_timestamp": {"name": "analytics___ugc_stg__emails_failed_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_failed_timestamp", "block_contents": "This column represents the timestamp when sending the email failed."}, "doc.yoda.analytics___ugc_stg__emails_id": {"name": "analytics___ugc_stg__emails_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_id", "block_contents": "This column represents the unique identifier for each email."}, "doc.yoda.analytics___ugc_stg__emails_invalid_address_timestamp": {"name": "analytics___ugc_stg__emails_invalid_address_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_invalid_address_timestamp", "block_contents": "This column represents the timestamp when the recipient's email address was found to be invalid."}, "doc.yoda.analytics___ugc_stg__emails_is_deleted": {"name": "analytics___ugc_stg__emails_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_is_deleted", "block_contents": "This column represents an indicator that signifies whether the email was deleted or not."}, "doc.yoda.analytics___ugc_stg__emails_marked_spam_timestamp": {"name": "analytics___ugc_stg__emails_marked_spam_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_marked_spam_timestamp", "block_contents": "This column represents the timestamp when the email was marked as spam by the recipient."}, "doc.yoda.analytics___ugc_stg__emails_opened_timestamp": {"name": "analytics___ugc_stg__emails_opened_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_opened_timestamp", "block_contents": "This column represents the timestamp when the email was opened by the recipient."}, "doc.yoda.analytics___ugc_stg__emails_order_id": {"name": "analytics___ugc_stg__emails_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_order_id", "block_contents": "This column stores the external ID of the order related to the email."}, "doc.yoda.analytics___ugc_stg__emails_order_timestamp": {"name": "analytics___ugc_stg__emails_order_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_order_timestamp", "block_contents": "This column represents the timestamp of when the order was created (ignoring the review request order timing logic)."}, "doc.yoda.analytics___ugc_stg__emails_platform": {"name": "analytics___ugc_stg__emails_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_platform", "block_contents": "This column stores the platform from which the email was sent."}, "doc.yoda.analytics___ugc_stg__emails_product_id": {"name": "analytics___ugc_stg__emails_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_product_id", "block_contents": "This column stores the external ID of the product related to the email."}, "doc.yoda.analytics___ugc_stg__emails_reminder_num": {"name": "analytics___ugc_stg__emails_reminder_num", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_reminder_num", "block_contents": "This column represents the number of reminders sent for a particular email."}, "doc.yoda.analytics___ugc_stg__emails_review_form": {"name": "analytics___ugc_stg__emails_review_form", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_review_form", "block_contents": "This column represents the form type used for submitting the review."}, "doc.yoda.analytics___ugc_stg__emails_review_type": {"name": "analytics___ugc_stg__emails_review_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_review_type", "block_contents": "This column stores the type of review associated with the email."}, "doc.yoda.analytics___ugc_stg__emails_sku": {"name": "analytics___ugc_stg__emails_sku", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_sku", "block_contents": "This column represents the stock-keeping unit (SKU) associated with the product."}, "doc.yoda.analytics___ugc_stg__emails_unsubscribed_timestamp": {"name": "analytics___ugc_stg__emails_unsubscribed_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__emails/analytics___ugc_stg__emails.md", "unique_id": "doc.yoda.analytics___ugc_stg__emails_unsubscribed_timestamp", "block_contents": "This column represents the timestamp when the recipient unsubscribed from further emails."}, "doc.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping": {"name": "analytics___ugc_stg__ugc_plan_group_change_mapping", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.md", "unique_id": "doc.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping", "block_contents": "static table of ugc plan group change mapping | PK and granularity: current_day_plan_group, previous_day_plan_group"}, "doc.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping_current_day_plan_group": {"name": "analytics___ugc_stg__ugc_plan_group_change_mapping_current_day_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.md", "unique_id": "doc.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping_current_day_plan_group", "block_contents": "current day plan group: free, premium, focus, etc. - primary key 2/2"}, "doc.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping_dwh_updated_at": {"name": "analytics___ugc_stg__ugc_plan_group_change_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.md", "unique_id": "doc.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping_plan_group_change_type": {"name": "analytics___ugc_stg__ugc_plan_group_change_mapping_plan_group_change_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.md", "unique_id": "doc.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping_plan_group_change_type", "block_contents": "plan group change type: upgrade, downgrade, unchanged"}, "doc.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group": {"name": "analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.md", "original_file_path": "models/analytics/ugc/staging/base/analytics___ugc_stg__ugc_plan_group_change_mapping/analytics___ugc_stg__ugc_plan_group_change_mapping.md", "unique_id": "doc.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group", "block_contents": "previous day plan group: free, premium, focus, etc. - primary key 1/2"}, "doc.yoda.analytics___ugc_stg__comment": {"name": "analytics___ugc_stg__comment", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment", "block_contents": "Modeled view of review comments | PK and granularity: comment_id"}, "doc.yoda.analytics___ugc_stg__comment_comment_id": {"name": "analytics___ugc_stg__comment_comment_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_comment_id", "block_contents": "comment identifier - primary key"}, "doc.yoda.analytics___ugc_stg__comment_commentable_id": {"name": "analytics___ugc_stg__comment_commentable_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_commentable_id", "block_contents": "commentable identifier, e.g: review_id"}, "doc.yoda.analytics___ugc_stg__comment_commentable_type": {"name": "analytics___ugc_stg__comment_commentable_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_commentable_type", "block_contents": "commentable type: review, question"}, "doc.yoda.analytics___ugc_stg__comment_commenter_display_name": {"name": "analytics___ugc_stg__comment_commenter_display_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_commenter_display_name", "block_contents": "commenter display name"}, "doc.yoda.analytics___ugc_stg__comment_content": {"name": "analytics___ugc_stg__comment_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_content", "block_contents": "comment content"}, "doc.yoda.analytics___ugc_stg__comment_created_at": {"name": "analytics___ugc_stg__comment_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___ugc_stg__comment_created_date": {"name": "analytics___ugc_stg__comment_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___ugc_stg__comment_is_approved": {"name": "analytics___ugc_stg__comment_is_approved", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_is_approved", "block_contents": "approved indicator: 0/1"}, "doc.yoda.analytics___ugc_stg__comment_is_public": {"name": "analytics___ugc_stg__comment_is_public", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_is_public", "block_contents": "public indicator: 0/1"}, "doc.yoda.analytics___ugc_stg__comment_source_comment_id": {"name": "analytics___ugc_stg__comment_source_comment_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_source_comment_id", "block_contents": "source comment identifier"}, "doc.yoda.analytics___ugc_stg__comment_updated_at": {"name": "analytics___ugc_stg__comment_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc_stg__comment_updated_date": {"name": "analytics___ugc_stg__comment_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc_stg__comment_user_id": {"name": "analytics___ugc_stg__comment_user_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__comment/analytics___ugc_stg__comment.md", "unique_id": "doc.yoda.analytics___ugc_stg__comment_user_id", "block_contents": "user identifier"}, "doc.yoda.analytics___ugc_stg__dirty_words_content": {"name": "analytics___ugc_stg__dirty_words_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "unique_id": "doc.yoda.analytics___ugc_stg__dirty_words_content", "block_contents": "Modeled view of reviews and questions with dirty words | PK and granularity: content_dirty_word_id"}, "doc.yoda.analytics___ugc_stg__dirty_words_content_content_object_id": {"name": "analytics___ugc_stg__dirty_words_content_content_object_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "unique_id": "doc.yoda.analytics___ugc_stg__dirty_words_content_content_object_id", "block_contents": "content object unique identifier, e.g: review_id"}, "doc.yoda.analytics___ugc_stg__dirty_words_content_content_object_type": {"name": "analytics___ugc_stg__dirty_words_content_content_object_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "unique_id": "doc.yoda.analytics___ugc_stg__dirty_words_content_content_object_type", "block_contents": "content object type: review, comment, question, etc."}, "doc.yoda.analytics___ugc_stg__dirty_words_content_created_at": {"name": "analytics___ugc_stg__dirty_words_content_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "unique_id": "doc.yoda.analytics___ugc_stg__dirty_words_content_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___ugc_stg__dirty_words_content_created_date": {"name": "analytics___ugc_stg__dirty_words_content_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "unique_id": "doc.yoda.analytics___ugc_stg__dirty_words_content_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___ugc_stg__dirty_words_content_dirty_words_content": {"name": "analytics___ugc_stg__dirty_words_content_dirty_words_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "unique_id": "doc.yoda.analytics___ugc_stg__dirty_words_content_dirty_words_content", "block_contents": "dirty words content"}, "doc.yoda.analytics___ugc_stg__dirty_words_content_row_id": {"name": "analytics___ugc_stg__dirty_words_content_row_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "unique_id": "doc.yoda.analytics___ugc_stg__dirty_words_content_row_id", "block_contents": "row unique identifier - primary key"}, "doc.yoda.analytics___ugc_stg__dirty_words_content_updated_at": {"name": "analytics___ugc_stg__dirty_words_content_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "unique_id": "doc.yoda.analytics___ugc_stg__dirty_words_content_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc_stg__dirty_words_content_updated_date": {"name": "analytics___ugc_stg__dirty_words_content_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__dirty_words_content/analytics___ugc_stg__dirty_words_content.md", "unique_id": "doc.yoda.analytics___ugc_stg__dirty_words_content_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc_stg__email": {"name": "analytics___ugc_stg__email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email", "block_contents": "Modeled View over email_analytics.emails Granularity & PK: email_id"}, "doc.yoda.analytics___ugc_stg__email_app_key": {"name": "analytics___ugc_stg__email_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_app_key", "block_contents": "The appKey (storeId) associated with the application."}, "doc.yoda.analytics___ugc_stg__email_arrived_early_at": {"name": "analytics___ugc_stg__email_arrived_early_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_arrived_early_at", "block_contents": "The timestamp at which the recipient indicated that the email was received earlier than anticipated."}, "doc.yoda.analytics___ugc_stg__email_batch_id": {"name": "analytics___ugc_stg__email_batch_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_batch_id", "block_contents": "The id of the email batch to which the email belongs."}, "doc.yoda.analytics___ugc_stg__email_batch_subject": {"name": "analytics___ugc_stg__email_batch_subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_batch_subject", "block_contents": "The subject of the email batch."}, "doc.yoda.analytics___ugc_stg__email_clicked_through_at": {"name": "analytics___ugc_stg__email_clicked_through_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_clicked_through_at", "block_contents": "The timestamp when the recipient clicked through a link in the email."}, "doc.yoda.analytics___ugc_stg__email_content_creation_at": {"name": "analytics___ugc_stg__email_content_creation_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_content_creation_at", "block_contents": "The timestamp when the email content was created."}, "doc.yoda.analytics___ugc_stg__email_coupon_code": {"name": "analytics___ugc_stg__email_coupon_code", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_coupon_code", "block_contents": "The coupon code associated with the email."}, "doc.yoda.analytics___ugc_stg__email_email_address": {"name": "analytics___ugc_stg__email_email_address", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_email_address", "block_contents": "The email address of the recipient."}, "doc.yoda.analytics___ugc_stg__email_email_analytics_id": {"name": "analytics___ugc_stg__email_email_analytics_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_email_analytics_id", "block_contents": "PK: email_analytics_id"}, "doc.yoda.analytics___ugc_stg__email_email_id": {"name": "analytics___ugc_stg__email_email_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_email_id", "block_contents": "PK: email_id\nThis is a reference to yotpoapiprod's review_request_tokens.token and review_request_emails.review_request_token columns."}, "doc.yoda.analytics___ugc_stg__email_email_sent_at": {"name": "analytics___ugc_stg__email_email_sent_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_email_sent_at", "block_contents": "The timestamp when the email was sent."}, "doc.yoda.analytics___ugc_stg__email_email_sent_date": {"name": "analytics___ugc_stg__email_email_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_email_sent_date", "block_contents": "The date when the email was sent."}, "doc.yoda.analytics___ugc_stg__email_email_type": {"name": "analytics___ugc_stg__email_email_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_email_type", "block_contents": "The type of email."}, "doc.yoda.analytics___ugc_stg__email_failed_at": {"name": "analytics___ugc_stg__email_failed_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_failed_at", "block_contents": "The timestamp when sending the email failed."}, "doc.yoda.analytics___ugc_stg__email_invalid_address_at": {"name": "analytics___ugc_stg__email_invalid_address_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_invalid_address_at", "block_contents": "The timestamp when the recipient's email address was found to be invalid."}, "doc.yoda.analytics___ugc_stg__email_marked_spam_at": {"name": "analytics___ugc_stg__email_marked_spam_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_marked_spam_at", "block_contents": "The timestamp when the email was marked as spam by the recipient."}, "doc.yoda.analytics___ugc_stg__email_opened_at": {"name": "analytics___ugc_stg__email_opened_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_opened_at", "block_contents": "The timestamp when the email was opened by the recipient."}, "doc.yoda.analytics___ugc_stg__email_order_at": {"name": "analytics___ugc_stg__email_order_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_order_at", "block_contents": "The timestamp of the order."}, "doc.yoda.analytics___ugc_stg__email_order_id": {"name": "analytics___ugc_stg__email_order_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_order_id", "block_contents": "The id of the order related to the email."}, "doc.yoda.analytics___ugc_stg__email_platform": {"name": "analytics___ugc_stg__email_platform", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_platform", "block_contents": "The platform from which the email was sent."}, "doc.yoda.analytics___ugc_stg__email_product_id": {"name": "analytics___ugc_stg__email_product_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_product_id", "block_contents": "The id of the product related to the email."}, "doc.yoda.analytics___ugc_stg__email_reminder_num": {"name": "analytics___ugc_stg__email_reminder_num", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_reminder_num", "block_contents": "The number of reminders sent for a particular email."}, "doc.yoda.analytics___ugc_stg__email_review_form": {"name": "analytics___ugc_stg__email_review_form", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_review_form", "block_contents": "The form type used for submitting the review."}, "doc.yoda.analytics___ugc_stg__email_review_type": {"name": "analytics___ugc_stg__email_review_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_review_type", "block_contents": "The type of review associated with the email."}, "doc.yoda.analytics___ugc_stg__email_sku": {"name": "analytics___ugc_stg__email_sku", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_sku", "block_contents": "The stock-keeping unit (SKU) associated with the product."}, "doc.yoda.analytics___ugc_stg__email_unsubscribed_at": {"name": "analytics___ugc_stg__email_unsubscribed_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__email/analytics___ugc_stg__email.md", "unique_id": "doc.yoda.analytics___ugc_stg__email_unsubscribed_at", "block_contents": "The timestamp when the recipient unsubscribed from further emails."}, "doc.yoda.analytics___ugc_stg__image": {"name": "analytics___ugc_stg__image", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image", "block_contents": "Modeled view of images | PK and granularity: image_id"}, "doc.yoda.analytics___ugc_stg__image_created_at": {"name": "analytics___ugc_stg__image_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_created_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__image_created_date": {"name": "analytics___ugc_stg__image_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_created_date", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__image_image_content_type": {"name": "analytics___ugc_stg__image_image_content_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_image_content_type", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__image_image_file_name": {"name": "analytics___ugc_stg__image_image_file_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_image_file_name", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__image_image_file_size": {"name": "analytics___ugc_stg__image_image_file_size", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_image_file_size", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__image_image_fingerprint": {"name": "analytics___ugc_stg__image_image_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_image_fingerprint", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__image_image_id": {"name": "analytics___ugc_stg__image_image_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_image_id", "block_contents": "image_id - primary key"}, "doc.yoda.analytics___ugc_stg__image_image_kind": {"name": "analytics___ugc_stg__image_image_kind", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_image_kind", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__image_imageable_id": {"name": "analytics___ugc_stg__image_imageable_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_imageable_id", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__image_imageable_type": {"name": "analytics___ugc_stg__image_imageable_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_imageable_type", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__image_is_published": {"name": "analytics___ugc_stg__image_is_published", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_is_published", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__image_updated_at": {"name": "analytics___ugc_stg__image_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__image_updated_date": {"name": "analytics___ugc_stg__image_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__image/analytics___ugc_stg__image.md", "unique_id": "doc.yoda.analytics___ugc_stg__image_updated_date", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__metadata_type": {"name": "analytics___ugc_stg__metadata_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__metadata_type", "block_contents": "Modeled mapping view of metadata types | PK and granularity: metadata_type_id"}, "doc.yoda.analytics___ugc_stg__metadata_type_created_at": {"name": "analytics___ugc_stg__metadata_type_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__metadata_type_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___ugc_stg__metadata_type_created_date": {"name": "analytics___ugc_stg__metadata_type_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__metadata_type_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___ugc_stg__metadata_type_metadata_name": {"name": "analytics___ugc_stg__metadata_type_metadata_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__metadata_type_metadata_name", "block_contents": "metadata name: country_code, city, device_name, etc."}, "doc.yoda.analytics___ugc_stg__metadata_type_metadata_type_id": {"name": "analytics___ugc_stg__metadata_type_metadata_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__metadata_type_metadata_type_id", "block_contents": "metadata key identifier - primary key"}, "doc.yoda.analytics___ugc_stg__metadata_type_updated_at": {"name": "analytics___ugc_stg__metadata_type_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__metadata_type_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc_stg__metadata_type_updated_date": {"name": "analytics___ugc_stg__metadata_type_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__metadata_type/analytics___ugc_stg__metadata_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__metadata_type_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event": {"name": "analytics___ugc_stg__owner_feature_enablement_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event", "block_contents": "Incremental table over owner_feature, traking changes in owner_feature_id enablement - (3,9,13,15,17,54,72,73,84,89,90,100,107,118,133,138,142,199,210,218,279,316,339,380,388,419)\n402 - added 9/8/2023"}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_created_at": {"name": "analytics___ugc_stg__owner_feature_enablement_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_created_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_disabled": {"name": "analytics___ugc_stg__owner_feature_enablement_event_disabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_disabled", "block_contents": "If is_diabled = 1 the user is not allowed to connect"}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_dwh_updated_at": {"name": "analytics___ugc_stg__owner_feature_enablement_event_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_feature_id": {"name": "analytics___ugc_stg__owner_feature_enablement_event_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_feature_id", "block_contents": "FK - platform_stg__features"}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_floating": {"name": "analytics___ugc_stg__owner_feature_enablement_event_floating", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_floating", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_is_disabled": {"name": "analytics___ugc_stg__owner_feature_enablement_event_is_disabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_is_disabled", "block_contents": "coalesce(disabled,0)"}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_is_floating": {"name": "analytics___ugc_stg__owner_feature_enablement_event_is_floating", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_is_floating", "block_contents": "coalesce(floating,0)"}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_is_user_enabled": {"name": "analytics___ugc_stg__owner_feature_enablement_event_is_user_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_is_user_enabled", "block_contents": "coalesce(user_enabled,0)"}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_owner_feature_id": {"name": "analytics___ugc_stg__owner_feature_enablement_event_owner_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_owner_feature_id", "block_contents": "FK - platform_stg__owners_features"}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_owner_id": {"name": "analytics___ugc_stg__owner_feature_enablement_event_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_owner_id", "block_contents": "ID accourding to owner_type"}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_owner_type": {"name": "analytics___ugc_stg__owner_feature_enablement_event_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_owner_type", "block_contents": "Organization, User, Account"}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_updated_at": {"name": "analytics___ugc_stg__owner_feature_enablement_event_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_user_enabled": {"name": "analytics___ugc_stg__owner_feature_enablement_event_user_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_enablement_event/analytics___ugc_stg__owner_feature_enablement_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_enablement_event_user_enabled", "block_contents": "User/CSM enabled feature"}, "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event": {"name": "analytics___ugc_stg__owner_feature_setting_change_event", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event", "block_contents": "Incremental table over owner_feature_settings, traking changes in owner_feature_id key/value settings for (3,9,13,15,17,54,72,73,84,89,90,100,107,118,133,138,142,199,210,218,279,316,339,380,388,419)"}, "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_created_at": {"name": "analytics___ugc_stg__owner_feature_setting_change_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_created_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_dwh_updated_at": {"name": "analytics___ugc_stg__owner_feature_setting_change_event_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_feature_id": {"name": "analytics___ugc_stg__owner_feature_setting_change_event_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_feature_id", "block_contents": "FK - platform_stg__features"}, "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_is_floating": {"name": "analytics___ugc_stg__owner_feature_setting_change_event_is_floating", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_is_floating", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_key": {"name": "analytics___ugc_stg__owner_feature_setting_change_event_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_key", "block_contents": "Feature settings name"}, "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_owner_feature_id": {"name": "analytics___ugc_stg__owner_feature_setting_change_event_owner_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_owner_feature_id", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_owners_feature_id": {"name": "analytics___ugc_stg__owner_feature_setting_change_event_owners_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_owners_feature_id", "block_contents": "FK - platform_stg__owners_features"}, "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_updated_at": {"name": "analytics___ugc_stg__owner_feature_setting_change_event_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_value": {"name": "analytics___ugc_stg__owner_feature_setting_change_event_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__owner_feature_setting_change_event/analytics___ugc_stg__owner_feature_setting_change_event.md", "unique_id": "doc.yoda.analytics___ugc_stg__owner_feature_setting_change_event_value", "block_contents": "Feature settings value"}, "doc.yoda.analytics___ugc_stg__reminder": {"name": "analytics___ugc_stg__reminder", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder", "block_contents": "Modeled VIEW of ugc_stg__reminders"}, "doc.yoda.analytics___ugc_stg__reminder_body": {"name": "analytics___ugc_stg__reminder_body", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_body", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_bottom": {"name": "analytics___ugc_stg__reminder_bottom", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_bottom", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_created_at": {"name": "analytics___ugc_stg__reminder_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_created_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_days_from_purchase": {"name": "analytics___ugc_stg__reminder_days_from_purchase", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_days_from_purchase", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_didnt_get_product_link": {"name": "analytics___ugc_stg__reminder_didnt_get_product_link", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_didnt_get_product_link", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_email_submission_type_id": {"name": "analytics___ugc_stg__reminder_email_submission_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_email_submission_type_id", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_is_enabled": {"name": "analytics___ugc_stg__reminder_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_is_enabled", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_formless_call_to_action": {"name": "analytics___ugc_stg__reminder_formless_call_to_action", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_formless_call_to_action", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_header": {"name": "analytics___ugc_stg__reminder_header", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_header", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_mail_interval": {"name": "analytics___ugc_stg__reminder_mail_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_mail_interval", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_max_products": {"name": "analytics___ugc_stg__reminder_max_products", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_max_products", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_reminder_id": {"name": "analytics___ugc_stg__reminder_reminder_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_reminder_id", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_store_id": {"name": "analytics___ugc_stg__reminder_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_store_id", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_subject": {"name": "analytics___ugc_stg__reminder_subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_subject", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_updated_at": {"name": "analytics___ugc_stg__reminder_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder/analytics___ugc_stg__reminder.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_snapshot": {"name": "analytics___ugc_stg__reminder_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_snapshot", "block_contents": "Snapshot table on ugc_stg__reminder.\ntracking changes in fields: max_products,mail_interval,enabled,email_submission_type_id,subject,days_from_purchase\nunique key: store id + reminder_id"}, "doc.yoda.analytics___ugc_stg__reminder_snapshot_days_from_purchase": {"name": "analytics___ugc_stg__reminder_snapshot_days_from_purchase", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_snapshot_days_from_purchase", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_snapshot_dwh_updated_at": {"name": "analytics___ugc_stg__reminder_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_snapshot_dwh_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_snapshot_email_submission_type_id": {"name": "analytics___ugc_stg__reminder_snapshot_email_submission_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_snapshot_email_submission_type_id", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_snapshot_is_enabled": {"name": "analytics___ugc_stg__reminder_snapshot_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_snapshot_is_enabled", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_snapshot_mail_interval": {"name": "analytics___ugc_stg__reminder_snapshot_mail_interval", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_snapshot_mail_interval", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_snapshot_max_products": {"name": "analytics___ugc_stg__reminder_snapshot_max_products", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_snapshot_max_products", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_snapshot_reminder_id": {"name": "analytics___ugc_stg__reminder_snapshot_reminder_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_snapshot_reminder_id", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_snapshot_store_id": {"name": "analytics___ugc_stg__reminder_snapshot_store_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_snapshot_store_id", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_snapshot_subject": {"name": "analytics___ugc_stg__reminder_snapshot_subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_snapshot_subject", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__reminder_snapshot_updated_at": {"name": "analytics___ugc_stg__reminder_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__reminder_snapshot/analytics___ugc_stg__reminder_snapshot.md", "unique_id": "doc.yoda.analytics___ugc_stg__reminder_snapshot_updated_at", "block_contents": ""}, "doc.yoda.analytics___ugc_stg__review": {"name": "analytics___ugc_stg__review", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review", "block_contents": "Modeled view of yotpo reviews | PK and granularity: review_id"}, "doc.yoda.analytics___ugc_stg__review_app_key": {"name": "analytics___ugc_stg__review_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___ugc_stg__review_content": {"name": "analytics___ugc_stg__review_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_content", "block_contents": "review content"}, "doc.yoda.analytics___ugc_stg__review_created_at": {"name": "analytics___ugc_stg__review_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___ugc_stg__review_created_date": {"name": "analytics___ugc_stg__review_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___ugc_stg__review_is_deleted": {"name": "analytics___ugc_stg__review_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_is_deleted", "block_contents": "deletion indicator: 0/1"}, "doc.yoda.analytics___ugc_stg__review_is_published": {"name": "analytics___ugc_stg__review_is_published", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_is_published", "block_contents": "publish indicator: 0/1"}, "doc.yoda.analytics___ugc_stg__review_is_shop_owner": {"name": "analytics___ugc_stg__review_is_shop_owner", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_is_shop_owner", "block_contents": "shop_owner indicator: 0/1/null"}, "doc.yoda.analytics___ugc_stg__review_is_syndicated_review": {"name": "analytics___ugc_stg__review_is_syndicated_review", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_is_syndicated_review", "block_contents": "syndicated review: 0/1"}, "doc.yoda.analytics___ugc_stg__review_is_under_archived_section_in_b2b": {"name": "analytics___ugc_stg__review_is_under_archived_section_in_b2b", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_is_under_archived_section_in_b2b", "block_contents": "under archived section in b2b indicator: 0/1"}, "doc.yoda.analytics___ugc_stg__review_is_under_new_section_in_b2b": {"name": "analytics___ugc_stg__review_is_under_new_section_in_b2b", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_is_under_new_section_in_b2b", "block_contents": "under new section in b2b indicator: 0/1"}, "doc.yoda.analytics___ugc_stg__review_is_verified_buyer": {"name": "analytics___ugc_stg__review_is_verified_buyer", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_is_verified_buyer", "block_contents": "verified buyer indicator: 0/1"}, "doc.yoda.analytics___ugc_stg__review_review_id": {"name": "analytics___ugc_stg__review_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_review_id", "block_contents": "review unique identifier - primary key"}, "doc.yoda.analytics___ugc_stg__review_review_source_type_id": {"name": "analytics___ugc_stg__review_review_source_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_review_source_type_id", "block_contents": "review source type identifier"}, "doc.yoda.analytics___ugc_stg__review_review_type_id": {"name": "analytics___ugc_stg__review_review_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_review_type_id", "block_contents": "review type identifier"}, "doc.yoda.analytics___ugc_stg__review_reviewer_display_name": {"name": "analytics___ugc_stg__review_reviewer_display_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_reviewer_display_name", "block_contents": "reviewer display name"}, "doc.yoda.analytics___ugc_stg__review_reviewer_id": {"name": "analytics___ugc_stg__review_reviewer_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_reviewer_id", "block_contents": "reviewer identifier"}, "doc.yoda.analytics___ugc_stg__review_reviewer_type": {"name": "analytics___ugc_stg__review_reviewer_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_reviewer_type", "block_contents": "reviewer type: user/anonymous_user"}, "doc.yoda.analytics___ugc_stg__review_score": {"name": "analytics___ugc_stg__review_score", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_score", "block_contents": "review score"}, "doc.yoda.analytics___ugc_stg__review_sentiment_ratio": {"name": "analytics___ugc_stg__review_sentiment_ratio", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_sentiment_ratio", "block_contents": "review sentiment ratio"}, "doc.yoda.analytics___ugc_stg__review_source_review_id": {"name": "analytics___ugc_stg__review_source_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_source_review_id", "block_contents": "source review identifier"}, "doc.yoda.analytics___ugc_stg__review_title_content": {"name": "analytics___ugc_stg__review_title_content", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_title_content", "block_contents": "title content"}, "doc.yoda.analytics___ugc_stg__review_updated_at": {"name": "analytics___ugc_stg__review_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc_stg__review_updated_date": {"name": "analytics___ugc_stg__review_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc_stg__review_vote_down_cnt": {"name": "analytics___ugc_stg__review_vote_down_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_vote_down_cnt", "block_contents": "vote down count"}, "doc.yoda.analytics___ugc_stg__review_vote_up_cnt": {"name": "analytics___ugc_stg__review_vote_up_cnt", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review/analytics___ugc_stg__review.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_vote_up_cnt", "block_contents": "vote up count"}, "doc.yoda.analytics___ugc_stg__review_image": {"name": "analytics___ugc_stg__review_image", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_image", "block_contents": "Incremental table of review images. PK and granularity: review_id | image_id"}, "doc.yoda.analytics___ugc_stg__review_image_created_date": {"name": "analytics___ugc_stg__review_image_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_image_created_date", "block_contents": "image creation date"}, "doc.yoda.analytics___ugc_stg__review_image_dwh_updated_at": {"name": "analytics___ugc_stg__review_image_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_image_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc_stg__review_image_image_id": {"name": "analytics___ugc_stg__review_image_image_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_image_image_id", "block_contents": "image unique identifier - PK 2/2"}, "doc.yoda.analytics___ugc_stg__review_image_review_id": {"name": "analytics___ugc_stg__review_image_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_image/analytics___ugc_stg__review_image.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_image_review_id", "block_contents": "review unique identifier - PK 1/2"}, "doc.yoda.analytics___ugc_stg__review_metadata": {"name": "analytics___ugc_stg__review_metadata", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_metadata", "block_contents": "Modeled view of reviews metadata | PK and granularity: review_metadata_id"}, "doc.yoda.analytics___ugc_stg__review_metadata_created_at": {"name": "analytics___ugc_stg__review_metadata_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_metadata_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___ugc_stg__review_metadata_created_date": {"name": "analytics___ugc_stg__review_metadata_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_metadata_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___ugc_stg__review_metadata_metadata_type_id": {"name": "analytics___ugc_stg__review_metadata_metadata_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_metadata_metadata_type_id", "block_contents": "metadata key identifier"}, "doc.yoda.analytics___ugc_stg__review_metadata_metadata_type_value": {"name": "analytics___ugc_stg__review_metadata_metadata_type_value", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_metadata_metadata_type_value", "block_contents": "metadata type value: US, New York, Chrome, etc."}, "doc.yoda.analytics___ugc_stg__review_metadata_review_id": {"name": "analytics___ugc_stg__review_metadata_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_metadata_review_id", "block_contents": "review unique identifier"}, "doc.yoda.analytics___ugc_stg__review_metadata_review_metadata_id": {"name": "analytics___ugc_stg__review_metadata_review_metadata_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_metadata_review_metadata_id", "block_contents": "review metadata id unique identifier - primary key"}, "doc.yoda.analytics___ugc_stg__review_metadata_updated_at": {"name": "analytics___ugc_stg__review_metadata_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_metadata_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc_stg__review_metadata_updated_date": {"name": "analytics___ugc_stg__review_metadata_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_metadata/analytics___ugc_stg__review_metadata.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_metadata_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc_stg__review_request_email": {"name": "analytics___ugc_stg__review_request_email", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email", "block_contents": "Modeled view of review request emails messages.\nPK and granularity: channel_message_id"}, "doc.yoda.analytics___ugc_stg__review_request_email_app_key": {"name": "analytics___ugc_stg__review_request_email_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___ugc_stg__review_request_email_caller_id": {"name": "analytics___ugc_stg__review_request_email_caller_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_caller_id", "block_contents": "caller id"}, "doc.yoda.analytics___ugc_stg__review_request_email_caller_type": {"name": "analytics___ugc_stg__review_request_email_caller_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_caller_type", "block_contents": "caller type"}, "doc.yoda.analytics___ugc_stg__review_request_email_channel_message_id": {"name": "analytics___ugc_stg__review_request_email_channel_message_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_channel_message_id", "block_contents": "channel message id - PK"}, "doc.yoda.analytics___ugc_stg__review_request_email_channel_message_id_first_3_digits": {"name": "analytics___ugc_stg__review_request_email_channel_message_id_first_3_digits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_channel_message_id_first_3_digits", "block_contents": "channel message id first 3 digits - technical column for performance improvement"}, "doc.yoda.analytics___ugc_stg__review_request_email_created_at": {"name": "analytics___ugc_stg__review_request_email_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___ugc_stg__review_request_email_created_date": {"name": "analytics___ugc_stg__review_request_email_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___ugc_stg__review_request_email_delivered_at": {"name": "analytics___ugc_stg__review_request_email_delivered_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_delivered_at", "block_contents": "delivered timestamp"}, "doc.yoda.analytics___ugc_stg__review_request_email_delivered_date": {"name": "analytics___ugc_stg__review_request_email_delivered_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_delivered_date", "block_contents": "delivered date"}, "doc.yoda.analytics___ugc_stg__review_request_email_email_address": {"name": "analytics___ugc_stg__review_request_email_email_address", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_email_address", "block_contents": "email address"}, "doc.yoda.analytics___ugc_stg__review_request_email_email_submission_type_id": {"name": "analytics___ugc_stg__review_request_email_email_submission_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_email_submission_type_id", "block_contents": "email submission type id"}, "doc.yoda.analytics___ugc_stg__review_request_email_email_type_id": {"name": "analytics___ugc_stg__review_request_email_email_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_email_type_id", "block_contents": "email type id"}, "doc.yoda.analytics___ugc_stg__review_request_email_products_app_id": {"name": "analytics___ugc_stg__review_request_email_products_app_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_products_app_id", "block_contents": "app id"}, "doc.yoda.analytics___ugc_stg__review_request_email_review_request_token": {"name": "analytics___ugc_stg__review_request_email_review_request_token", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_review_request_token", "block_contents": "review request token"}, "doc.yoda.analytics___ugc_stg__review_request_email_updated_at": {"name": "analytics___ugc_stg__review_request_email_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc_stg__review_request_email_updated_date": {"name": "analytics___ugc_stg__review_request_email_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc_stg__review_request_email_user_name": {"name": "analytics___ugc_stg__review_request_email_user_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_email/analytics___ugc_stg__review_request_email.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_email_user_name", "block_contents": "user name"}, "doc.yoda.analytics___ugc_stg__review_request_sms": {"name": "analytics___ugc_stg__review_request_sms", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms", "block_contents": "Modeled view of review request sms messages.\nPK and granularity: channel_message_id"}, "doc.yoda.analytics___ugc_stg__review_request_sms_app_key": {"name": "analytics___ugc_stg__review_request_sms_app_key", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.analytics___ugc_stg__review_request_sms_caller_id": {"name": "analytics___ugc_stg__review_request_sms_caller_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_caller_id", "block_contents": "caller id"}, "doc.yoda.analytics___ugc_stg__review_request_sms_caller_type": {"name": "analytics___ugc_stg__review_request_sms_caller_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_caller_type", "block_contents": "caller type"}, "doc.yoda.analytics___ugc_stg__review_request_sms_channel_message_id": {"name": "analytics___ugc_stg__review_request_sms_channel_message_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_channel_message_id", "block_contents": "channel message id - PK"}, "doc.yoda.analytics___ugc_stg__review_request_sms_channel_message_id_first_3_digits": {"name": "analytics___ugc_stg__review_request_sms_channel_message_id_first_3_digits", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_channel_message_id_first_3_digits", "block_contents": "channel message id first 3 digits - technical column for performance improvement"}, "doc.yoda.analytics___ugc_stg__review_request_sms_created_at": {"name": "analytics___ugc_stg__review_request_sms_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___ugc_stg__review_request_sms_created_date": {"name": "analytics___ugc_stg__review_request_sms_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___ugc_stg__review_request_sms_delivered_at": {"name": "analytics___ugc_stg__review_request_sms_delivered_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_delivered_at", "block_contents": "delivered timestamp"}, "doc.yoda.analytics___ugc_stg__review_request_sms_delivered_date": {"name": "analytics___ugc_stg__review_request_sms_delivered_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_delivered_date", "block_contents": "delivered date"}, "doc.yoda.analytics___ugc_stg__review_request_sms_email_address": {"name": "analytics___ugc_stg__review_request_sms_email_address", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_email_address", "block_contents": "email address"}, "doc.yoda.analytics___ugc_stg__review_request_sms_review_request_token": {"name": "analytics___ugc_stg__review_request_sms_review_request_token", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_review_request_token", "block_contents": "review request token"}, "doc.yoda.analytics___ugc_stg__review_request_sms_sms_status_type_id": {"name": "analytics___ugc_stg__review_request_sms_sms_status_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_sms_status_type_id", "block_contents": "sms status type id"}, "doc.yoda.analytics___ugc_stg__review_request_sms_sms_type_id": {"name": "analytics___ugc_stg__review_request_sms_sms_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_sms_type_id", "block_contents": "sms type id"}, "doc.yoda.analytics___ugc_stg__review_request_sms_updated_at": {"name": "analytics___ugc_stg__review_request_sms_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc_stg__review_request_sms_updated_date": {"name": "analytics___ugc_stg__review_request_sms_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc_stg__review_request_sms_user_name": {"name": "analytics___ugc_stg__review_request_sms_user_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_request_sms/analytics___ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_request_sms_user_name", "block_contents": "user name"}, "doc.yoda.analytics___ugc_stg__review_source_type": {"name": "analytics___ugc_stg__review_source_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_source_type", "block_contents": "Modeled view of review source types | PK and granularity: review_source_type_id"}, "doc.yoda.analytics___ugc_stg__review_source_type_created_at": {"name": "analytics___ugc_stg__review_source_type_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_source_type_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___ugc_stg__review_source_type_created_date": {"name": "analytics___ugc_stg__review_source_type_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_source_type_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___ugc_stg__review_source_type_review_source_type_id": {"name": "analytics___ugc_stg__review_source_type_review_source_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_source_type_review_source_type_id", "block_contents": "review source type unique identifier - primary key"}, "doc.yoda.analytics___ugc_stg__review_source_type_review_source_type_name": {"name": "analytics___ugc_stg__review_source_type_review_source_type_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_source_type_review_source_type_name", "block_contents": "review source type name: vendor_yotpo_widget, mail_after_invoice, etc."}, "doc.yoda.analytics___ugc_stg__review_source_type_updated_at": {"name": "analytics___ugc_stg__review_source_type_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_source_type_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc_stg__review_source_type_updated_date": {"name": "analytics___ugc_stg__review_source_type_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_source_type/analytics___ugc_stg__review_source_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_source_type_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc_stg__review_subject": {"name": "analytics___ugc_stg__review_subject", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_subject", "block_contents": "Modeled view of review subjects | PK and granularity: review_subject_id"}, "doc.yoda.analytics___ugc_stg__review_subject_account_id": {"name": "analytics___ugc_stg__review_subject_account_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_subject_account_id", "block_contents": "yotpo account unique identifier"}, "doc.yoda.analytics___ugc_stg__review_subject_created_at": {"name": "analytics___ugc_stg__review_subject_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_subject_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___ugc_stg__review_subject_created_date": {"name": "analytics___ugc_stg__review_subject_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_subject_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___ugc_stg__review_subject_is_deactivated": {"name": "analytics___ugc_stg__review_subject_is_deactivated", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_subject_is_deactivated", "block_contents": "deactivated indicator: 0/1"}, "doc.yoda.analytics___ugc_stg__review_subject_review_id": {"name": "analytics___ugc_stg__review_subject_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_subject_review_id", "block_contents": "review unique identifier"}, "doc.yoda.analytics___ugc_stg__review_subject_review_subject_id": {"name": "analytics___ugc_stg__review_subject_review_subject_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_subject_review_subject_id", "block_contents": "review subject unique identifier - primary key"}, "doc.yoda.analytics___ugc_stg__review_subject_subject_entity_type": {"name": "analytics___ugc_stg__review_subject_subject_entity_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_subject_subject_entity_type", "block_contents": "subject entity type: group, site, product"}, "doc.yoda.analytics___ugc_stg__review_subject_subject_id": {"name": "analytics___ugc_stg__review_subject_subject_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_subject_subject_id", "block_contents": "subject identifier"}, "doc.yoda.analytics___ugc_stg__review_subject_updated_at": {"name": "analytics___ugc_stg__review_subject_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_subject_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc_stg__review_subject_updated_date": {"name": "analytics___ugc_stg__review_subject_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_subject/analytics___ugc_stg__review_subject.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_subject_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc_stg__review_type": {"name": "analytics___ugc_stg__review_type", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_type", "block_contents": "Modeled view of review types | PK and granularity: review_type_id"}, "doc.yoda.analytics___ugc_stg__review_type_created_at": {"name": "analytics___ugc_stg__review_type_created_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_type_created_at", "block_contents": "creation timestamp"}, "doc.yoda.analytics___ugc_stg__review_type_created_date": {"name": "analytics___ugc_stg__review_type_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_type_created_date", "block_contents": "creation date"}, "doc.yoda.analytics___ugc_stg__review_type_review_type_id": {"name": "analytics___ugc_stg__review_type_review_type_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_type_review_type_id", "block_contents": "review type id - primary key"}, "doc.yoda.analytics___ugc_stg__review_type_type_description": {"name": "analytics___ugc_stg__review_type_type_description", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_type_type_description", "block_contents": "review type description, e.g: A Site review."}, "doc.yoda.analytics___ugc_stg__review_type_type_name": {"name": "analytics___ugc_stg__review_type_type_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_type_type_name", "block_contents": "review type name: product_and_site_review, product_review, site_review"}, "doc.yoda.analytics___ugc_stg__review_type_updated_at": {"name": "analytics___ugc_stg__review_type_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_type_updated_at", "block_contents": "update timestamp"}, "doc.yoda.analytics___ugc_stg__review_type_updated_date": {"name": "analytics___ugc_stg__review_type_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_type/analytics___ugc_stg__review_type.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_type_updated_date", "block_contents": "update date"}, "doc.yoda.analytics___ugc_stg__review_video": {"name": "analytics___ugc_stg__review_video", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_video", "block_contents": "Incremental table of review videos. PK and granularity: review_id | video_id"}, "doc.yoda.analytics___ugc_stg__review_video_created_date": {"name": "analytics___ugc_stg__review_video_created_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_video_created_date", "block_contents": "video creation date"}, "doc.yoda.analytics___ugc_stg__review_video_dwh_updated_at": {"name": "analytics___ugc_stg__review_video_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_video_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.analytics___ugc_stg__review_video_review_id": {"name": "analytics___ugc_stg__review_video_review_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_video_review_id", "block_contents": "review unique identifier - PK 1/2"}, "doc.yoda.analytics___ugc_stg__review_video_video_id": {"name": "analytics___ugc_stg__review_video_video_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.md", "original_file_path": "models/analytics/ugc/staging/marts_compatible/analytics___ugc_stg__review_video/analytics___ugc_stg__review_video.md", "unique_id": "doc.yoda.analytics___ugc_stg__review_video_video_id", "block_contents": "video unique identifier - PK 2/2"}, "doc.yoda.analytics___utils_stg__calendar": {"name": "analytics___utils_stg__calendar", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar", "block_contents": "Time dimension table - used to perform date explode operation"}, "doc.yoda.analytics___utils_stg__calendar_date": {"name": "analytics___utils_stg__calendar_date", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar_date", "block_contents": "date - Primary Key"}, "doc.yoda.analytics___utils_stg__calendar_day": {"name": "analytics___utils_stg__calendar_day", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar_day", "block_contents": "day number, e.g., 31 when date = '2023-12-31'"}, "doc.yoda.analytics___utils_stg__calendar_day_name": {"name": "analytics___utils_stg__calendar_day_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar_day_name", "block_contents": "day name, e.g., 'Sunday' when date = '2023-12-31'"}, "doc.yoda.analytics___utils_stg__calendar_holiday_flag": {"name": "analytics___utils_stg__calendar_holiday_flag", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar_holiday_flag", "block_contents": "holiday boolean flag, e.g., false when date = '2023-12-31'"}, "doc.yoda.analytics___utils_stg__calendar_id": {"name": "analytics___utils_stg__calendar_id", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar_id", "block_contents": "date id. e.g., 20231231 is the id of 2023-12-31"}, "doc.yoda.analytics___utils_stg__calendar_month": {"name": "analytics___utils_stg__calendar_month", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar_month", "block_contents": "month number, e.g., 12 when date = '2023-12-31'"}, "doc.yoda.analytics___utils_stg__calendar_month_name": {"name": "analytics___utils_stg__calendar_month_name", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar_month_name", "block_contents": "month name, e.g., 'December' when date = '2023-12-31'"}, "doc.yoda.analytics___utils_stg__calendar_quarter": {"name": "analytics___utils_stg__calendar_quarter", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar_quarter", "block_contents": "quarter number, e.g., 4 when date = '2023-12-31'"}, "doc.yoda.analytics___utils_stg__calendar_week": {"name": "analytics___utils_stg__calendar_week", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar_week", "block_contents": "week number, e.g., 52 when date = '2023-12-31'"}, "doc.yoda.analytics___utils_stg__calendar_weekend_flag": {"name": "analytics___utils_stg__calendar_weekend_flag", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar_weekend_flag", "block_contents": "weekend boolean flag, e.g., true when date = '2023-12-31'"}, "doc.yoda.analytics___utils_stg__calendar_year": {"name": "analytics___utils_stg__calendar_year", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "original_file_path": "models/analytics/utils/staging/base/analytics___utils_stg__calendar/analytics___utils_stg__calendar.md", "unique_id": "doc.yoda.analytics___utils_stg__calendar_year", "block_contents": "year number, e.g., 2023 when date = '2023-12-31'"}, "doc.yoda.analytics___utils_stg__unit_test_generic": {"name": "analytics___utils_stg__unit_test_generic", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "original_file_path": "models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "unique_id": "doc.yoda.analytics___utils_stg__unit_test_generic", "block_contents": "Generic view to be used in unit tests."}, "doc.yoda.analytics___utils_stg__unit_test_generic_boolean_field": {"name": "analytics___utils_stg__unit_test_generic_boolean_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "original_file_path": "models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "unique_id": "doc.yoda.analytics___utils_stg__unit_test_generic_boolean_field", "block_contents": ""}, "doc.yoda.analytics___utils_stg__unit_test_generic_date_field": {"name": "analytics___utils_stg__unit_test_generic_date_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "original_file_path": "models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "unique_id": "doc.yoda.analytics___utils_stg__unit_test_generic_date_field", "block_contents": ""}, "doc.yoda.analytics___utils_stg__unit_test_generic_double_field": {"name": "analytics___utils_stg__unit_test_generic_double_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "original_file_path": "models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "unique_id": "doc.yoda.analytics___utils_stg__unit_test_generic_double_field", "block_contents": ""}, "doc.yoda.analytics___utils_stg__unit_test_generic_float_field": {"name": "analytics___utils_stg__unit_test_generic_float_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "original_file_path": "models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "unique_id": "doc.yoda.analytics___utils_stg__unit_test_generic_float_field", "block_contents": ""}, "doc.yoda.analytics___utils_stg__unit_test_generic_int_field": {"name": "analytics___utils_stg__unit_test_generic_int_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "original_file_path": "models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "unique_id": "doc.yoda.analytics___utils_stg__unit_test_generic_int_field", "block_contents": ""}, "doc.yoda.analytics___utils_stg__unit_test_generic_smallint_field": {"name": "analytics___utils_stg__unit_test_generic_smallint_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "original_file_path": "models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "unique_id": "doc.yoda.analytics___utils_stg__unit_test_generic_smallint_field", "block_contents": ""}, "doc.yoda.analytics___utils_stg__unit_test_generic_string_field": {"name": "analytics___utils_stg__unit_test_generic_string_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "original_file_path": "models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "unique_id": "doc.yoda.analytics___utils_stg__unit_test_generic_string_field", "block_contents": ""}, "doc.yoda.analytics___utils_stg__unit_test_generic_timestamp_field": {"name": "analytics___utils_stg__unit_test_generic_timestamp_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "original_file_path": "models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "unique_id": "doc.yoda.analytics___utils_stg__unit_test_generic_timestamp_field", "block_contents": ""}, "doc.yoda.analytics___utils_stg__unit_test_generic_tinyint_field": {"name": "analytics___utils_stg__unit_test_generic_tinyint_field", "resource_type": "doc", "package_name": "yoda", "path": "analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "original_file_path": "models/analytics/utils/staging/marts_compatible/analytics___utils_stg__unit_test_generic/analytics___utils_stg__unit_test_generic.md", "unique_id": "doc.yoda.analytics___utils_stg__unit_test_generic_tinyint_field", "block_contents": ""}, "doc.yoda.communication__email_shopify_orders_analytics_profile": {"name": "communication__email_shopify_orders_analytics_profile", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__email_shopify_orders_analytics_profile", "block_contents": "Wide table with key order_id and information about the email orders used for email analytics reports"}, "doc.yoda.communication__email_shopify_orders_analytics_profile_app_key": {"name": "communication__email_shopify_orders_analytics_profile_app_key", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__email_shopify_orders_analytics_profile_app_key", "block_contents": "Yotpo App Key"}, "doc.yoda.communication__email_shopify_orders_analytics_profile_currency": {"name": "communication__email_shopify_orders_analytics_profile_currency", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__email_shopify_orders_analytics_profile_currency", "block_contents": "Currency (USD, EUR, etc)"}, "doc.yoda.communication__email_shopify_orders_analytics_profile_external_customer_id": {"name": "communication__email_shopify_orders_analytics_profile_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__email_shopify_orders_analytics_profile_external_customer_id", "block_contents": "External Customer ID"}, "doc.yoda.communication__email_shopify_orders_analytics_profile_order_date": {"name": "communication__email_shopify_orders_analytics_profile_order_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__email_shopify_orders_analytics_profile_order_date", "block_contents": "Order date"}, "doc.yoda.communication__email_shopify_orders_analytics_profile_order_id": {"name": "communication__email_shopify_orders_analytics_profile_order_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__email_shopify_orders_analytics_profile_order_id", "block_contents": "Shopify Order ID"}, "doc.yoda.communication__email_shopify_orders_analytics_profile_total_price": {"name": "communication__email_shopify_orders_analytics_profile_total_price", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__email_shopify_orders_analytics_profile/communication__email_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__email_shopify_orders_analytics_profile_total_price", "block_contents": "Amount (decimal)"}, "doc.yoda.communication__sms_shopify_orders_analytics_profile": {"name": "communication__sms_shopify_orders_analytics_profile", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__sms_shopify_orders_analytics_profile", "block_contents": "Wide table with key order_id and information about the sms orders used for sms analytics reports"}, "doc.yoda.communication__sms_shopify_orders_analytics_profile_app_key": {"name": "communication__sms_shopify_orders_analytics_profile_app_key", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__sms_shopify_orders_analytics_profile_app_key", "block_contents": "Yotpo App Key"}, "doc.yoda.communication__sms_shopify_orders_analytics_profile_currency": {"name": "communication__sms_shopify_orders_analytics_profile_currency", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__sms_shopify_orders_analytics_profile_currency", "block_contents": "Currency (USD, EUR, etc)"}, "doc.yoda.communication__sms_shopify_orders_analytics_profile_external_customer_id": {"name": "communication__sms_shopify_orders_analytics_profile_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__sms_shopify_orders_analytics_profile_external_customer_id", "block_contents": "External Customer ID"}, "doc.yoda.communication__sms_shopify_orders_analytics_profile_order_date": {"name": "communication__sms_shopify_orders_analytics_profile_order_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__sms_shopify_orders_analytics_profile_order_date", "block_contents": "Order date"}, "doc.yoda.communication__sms_shopify_orders_analytics_profile_order_id": {"name": "communication__sms_shopify_orders_analytics_profile_order_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__sms_shopify_orders_analytics_profile_order_id", "block_contents": "Shopify Order ID"}, "doc.yoda.communication__sms_shopify_orders_analytics_profile_total_price": {"name": "communication__sms_shopify_orders_analytics_profile_total_price", "resource_type": "doc", "package_name": "yoda", "path": "communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "original_file_path": "models/communication/marts/communication__sms_shopify_orders_analytics_profile/communication__sms_shopify_orders_analytics_profile.md", "unique_id": "doc.yoda.communication__sms_shopify_orders_analytics_profile_total_price", "block_contents": "Amount (decimal)"}, "doc.yoda.communication_stg__apicalls_apikey": {"name": "communication_stg__apicalls_apikey", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_apikey", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_app_id": {"name": "communication_stg__apicalls_app_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_app_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_campaign_id": {"name": "communication_stg__apicalls_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_created": {"name": "communication_stg__apicalls_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_event_id": {"name": "communication_stg__apicalls_event_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_event_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_flow_id": {"name": "communication_stg__apicalls_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_flow_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_flow_step_id": {"name": "communication_stg__apicalls_flow_step_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_flow_step_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_from": {"name": "communication_stg__apicalls_from", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_from", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_id": {"name": "communication_stg__apicalls_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_ip": {"name": "communication_stg__apicalls_ip", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_ip", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_ip_forward": {"name": "communication_stg__apicalls_ip_forward", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_ip_forward", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_is_logical_deleted": {"name": "communication_stg__apicalls_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_is_logical_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_media": {"name": "communication_stg__apicalls_media", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_media", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_message": {"name": "communication_stg__apicalls_message", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_message", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_message_id": {"name": "communication_stg__apicalls_message_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_message_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_message_id_int": {"name": "communication_stg__apicalls_message_id_int", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_message_id_int", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_message_uuid": {"name": "communication_stg__apicalls_message_uuid", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_message_uuid", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_method": {"name": "communication_stg__apicalls_method", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_method", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_modified": {"name": "communication_stg__apicalls_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_parts": {"name": "communication_stg__apicalls_parts", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_parts", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_platform": {"name": "communication_stg__apicalls_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_price_billed": {"name": "communication_stg__apicalls_price_billed", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_price_billed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_price_currency": {"name": "communication_stg__apicalls_price_currency", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_price_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_price_vendor_cost": {"name": "communication_stg__apicalls_price_vendor_cost", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_price_vendor_cost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_processing_time": {"name": "communication_stg__apicalls_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_queue_id": {"name": "communication_stg__apicalls_queue_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_queue_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_referer": {"name": "communication_stg__apicalls_referer", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_referer", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_request_id": {"name": "communication_stg__apicalls_request_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_request_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_sender_type": {"name": "communication_stg__apicalls_sender_type", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_sender_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_spot_user_balance": {"name": "communication_stg__apicalls_spot_user_balance", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_spot_user_balance", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_status": {"name": "communication_stg__apicalls_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_to": {"name": "communication_stg__apicalls_to", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_to", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_ts_ms": {"name": "communication_stg__apicalls_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_type": {"name": "communication_stg__apicalls_type", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_upsolver_schema_version": {"name": "communication_stg__apicalls_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_user_id": {"name": "communication_stg__apicalls_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__apicalls_vendor_name_used": {"name": "communication_stg__apicalls_vendor_name_used", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "original_file_path": "models/communication/staging/base/communication_stg__apicalls/communication_stg__apicalls.md", "unique_id": "doc.yoda.communication_stg__apicalls_vendor_name_used", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__bigcommerce_users": {"name": "communication_stg__bigcommerce_users", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__bigcommerce_users_abandoned_checkouts_sent": {"name": "communication_stg__bigcommerce_users_abandoned_checkouts_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_abandoned_checkouts_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_access_token": {"name": "communication_stg__bigcommerce_users_access_token", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_access_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_app_data": {"name": "communication_stg__bigcommerce_users_app_data", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_app_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_auto_reload": {"name": "communication_stg__bigcommerce_users_auto_reload", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_auto_reload", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_auto_reload_amount": {"name": "communication_stg__bigcommerce_users_auto_reload_amount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_auto_reload_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_auto_reload_cap": {"name": "communication_stg__bigcommerce_users_auto_reload_cap", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_auto_reload_cap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_auto_reload_threshold": {"name": "communication_stg__bigcommerce_users_auto_reload_threshold", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_auto_reload_threshold", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_connected": {"name": "communication_stg__bigcommerce_users_connected", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_connected", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_created": {"name": "communication_stg__bigcommerce_users_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_domain": {"name": "communication_stg__bigcommerce_users_domain", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_domain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_id": {"name": "communication_stg__bigcommerce_users_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_is_logical_deleted": {"name": "communication_stg__bigcommerce_users_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_modified": {"name": "communication_stg__bigcommerce_users_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_notes": {"name": "communication_stg__bigcommerce_users_notes", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_notes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_pinned_navigation": {"name": "communication_stg__bigcommerce_users_pinned_navigation", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_pinned_navigation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_plan_level": {"name": "communication_stg__bigcommerce_users_plan_level", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_plan_level", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_plan_name": {"name": "communication_stg__bigcommerce_users_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_processing_time": {"name": "communication_stg__bigcommerce_users_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_shop_data": {"name": "communication_stg__bigcommerce_users_shop_data", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_shop_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_store": {"name": "communication_stg__bigcommerce_users_store", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_store", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_store_hash": {"name": "communication_stg__bigcommerce_users_store_hash", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_store_hash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_sync_enabled": {"name": "communication_stg__bigcommerce_users_sync_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_sync_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_ts_ms": {"name": "communication_stg__bigcommerce_users_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_upsolver_schema_version": {"name": "communication_stg__bigcommerce_users_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__bigcommerce_users_user_id": {"name": "communication_stg__bigcommerce_users_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "original_file_path": "models/communication/staging/base/communication_stg__bigcommerce_users/communication_stg__bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__bigcommerce_users_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events": {"name": "communication_stg__billing_events", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__billing_events_billing_cycle_end_date": {"name": "communication_stg__billing_events_billing_cycle_end_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_billing_cycle_end_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_campaign_email_count": {"name": "communication_stg__billing_events_campaign_email_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_campaign_email_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_event_timestamp": {"name": "communication_stg__billing_events_event_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_event_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_flow_email_count": {"name": "communication_stg__billing_events_flow_email_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_flow_email_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_operation_type": {"name": "communication_stg__billing_events_operation_type", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_operation_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_price_plan_id": {"name": "communication_stg__billing_events_price_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_price_plan_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_processing_time": {"name": "communication_stg__billing_events_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_request_cost": {"name": "communication_stg__billing_events_request_cost", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_request_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_requested_email_count": {"name": "communication_stg__billing_events_requested_email_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_requested_email_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_source_id": {"name": "communication_stg__billing_events_source_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_source_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_source_name": {"name": "communication_stg__billing_events_source_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_source_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_store_id": {"name": "communication_stg__billing_events_store_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_total_email_count": {"name": "communication_stg__billing_events_total_email_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_total_email_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__billing_events_upsolver_schema_version": {"name": "communication_stg__billing_events_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "original_file_path": "models/communication/staging/base/communication_stg__billing_events/communication_stg__billing_events.md", "unique_id": "doc.yoda.communication_stg__billing_events_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__campaigns_ab_testing_id": {"name": "communication_stg__campaigns_ab_testing_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_ab_testing_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_approved": {"name": "communication_stg__campaigns_approved", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_approved", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_channel": {"name": "communication_stg__campaigns_channel", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_channel", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_created": {"name": "communication_stg__campaigns_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_id": {"name": "communication_stg__campaigns_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_is_logical_deleted": {"name": "communication_stg__campaigns_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_is_logical_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_is_repopulated": {"name": "communication_stg__campaigns_is_repopulated", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_is_repopulated", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_list_id": {"name": "communication_stg__campaigns_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_list_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_message": {"name": "communication_stg__campaigns_message", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_message", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_modified": {"name": "communication_stg__campaigns_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_processing_time": {"name": "communication_stg__campaigns_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_request": {"name": "communication_stg__campaigns_request", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_request", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_scheduled": {"name": "communication_stg__campaigns_scheduled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_scheduled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_sent": {"name": "communication_stg__campaigns_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_status": {"name": "communication_stg__campaigns_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_title": {"name": "communication_stg__campaigns_title", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_title", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_total_sent": {"name": "communication_stg__campaigns_total_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_total_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_ts_ms": {"name": "communication_stg__campaigns_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_upsolver_schema_version": {"name": "communication_stg__campaigns_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_user_id": {"name": "communication_stg__campaigns_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "original_file_path": "models/communication/staging/base/communication_stg__campaigns/communication_stg__campaigns.md", "unique_id": "doc.yoda.communication_stg__campaigns_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__conversation_messages": {"name": "communication_stg__conversation_messages", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__conversation_messages_apicall_id": {"name": "communication_stg__conversation_messages_apicall_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_apicall_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_conversation_id": {"name": "communication_stg__conversation_messages_conversation_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_conversation_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_created": {"name": "communication_stg__conversation_messages_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_direction": {"name": "communication_stg__conversation_messages_direction", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_direction", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_id": {"name": "communication_stg__conversation_messages_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_image_caption": {"name": "communication_stg__conversation_messages_image_caption", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_image_caption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_image_url": {"name": "communication_stg__conversation_messages_image_url", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_image_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_is_logical_deleted": {"name": "communication_stg__conversation_messages_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_message": {"name": "communication_stg__conversation_messages_message", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_modified": {"name": "communication_stg__conversation_messages_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_processing_time": {"name": "communication_stg__conversation_messages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_read": {"name": "communication_stg__conversation_messages_read", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_read", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_ts_ms": {"name": "communication_stg__conversation_messages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_type": {"name": "communication_stg__conversation_messages_type", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_upsolver_schema_version": {"name": "communication_stg__conversation_messages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__conversation_messages_user_id": {"name": "communication_stg__conversation_messages_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "original_file_path": "models/communication/staging/base/communication_stg__conversation_messages/communication_stg__conversation_messages.md", "unique_id": "doc.yoda.communication_stg__conversation_messages_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events": {"name": "communication_stg__email_esp_events", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__email_esp_events_campaign_id": {"name": "communication_stg__email_esp_events_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_created": {"name": "communication_stg__email_esp_events_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_email": {"name": "communication_stg__email_esp_events_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_event_properties": {"name": "communication_stg__email_esp_events_event_properties", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_event_properties", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_event_type": {"name": "communication_stg__email_esp_events_event_type", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_event_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_flow_id": {"name": "communication_stg__email_esp_events_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_id": {"name": "communication_stg__email_esp_events_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_modified": {"name": "communication_stg__email_esp_events_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_processing_time": {"name": "communication_stg__email_esp_events_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_reason": {"name": "communication_stg__email_esp_events_reason", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_reason", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_reference_id": {"name": "communication_stg__email_esp_events_reference_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_reference_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_ts_ms": {"name": "communication_stg__email_esp_events_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_upsolver_schema_version": {"name": "communication_stg__email_esp_events_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_esp_events_user_id": {"name": "communication_stg__email_esp_events_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "original_file_path": "models/communication/staging/base/communication_stg__email_esp_events/communication_stg__email_esp_events.md", "unique_id": "doc.yoda.communication_stg__email_esp_events_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__events_created": {"name": "communication_stg__events_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_id": {"name": "communication_stg__events_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_is_logical_deleted": {"name": "communication_stg__events_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_is_logical_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_modified": {"name": "communication_stg__events_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_name": {"name": "communication_stg__events_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_platform": {"name": "communication_stg__events_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_processing_time": {"name": "communication_stg__events_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_settings": {"name": "communication_stg__events_settings", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_settings", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_status": {"name": "communication_stg__events_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_ts_ms": {"name": "communication_stg__events_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_upsolver_schema_version": {"name": "communication_stg__events_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_user_id": {"name": "communication_stg__events_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__events_webhook": {"name": "communication_stg__events_webhook", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__events/communication_stg__events.md", "original_file_path": "models/communication/staging/base/communication_stg__events/communication_stg__events.md", "unique_id": "doc.yoda.communication_stg__events_webhook", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_created": {"name": "communication_stg__flows_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_flow_settings": {"name": "communication_stg__flows_flow_settings", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_flow_settings", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_flow_trigger": {"name": "communication_stg__flows_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_flow_trigger", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_id": {"name": "communication_stg__flows_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_is_logical_deleted": {"name": "communication_stg__flows_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_is_logical_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_modified": {"name": "communication_stg__flows_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_name": {"name": "communication_stg__flows_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_platform": {"name": "communication_stg__flows_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_processing_time": {"name": "communication_stg__flows_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_snapshot_id": {"name": "communication_stg__flows_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_status": {"name": "communication_stg__flows_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_ts_ms": {"name": "communication_stg__flows_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_upsolver_schema_version": {"name": "communication_stg__flows_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_user_id": {"name": "communication_stg__flows_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__flows/communication_stg__flows.md", "original_file_path": "models/communication/staging/base/communication_stg__flows/communication_stg__flows.md", "unique_id": "doc.yoda.communication_stg__flows_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_created": {"name": "communication_stg__forms_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_dynamic_popup": {"name": "communication_stg__forms_dynamic_popup", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_dynamic_popup", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_event_id": {"name": "communication_stg__forms_event_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_event_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_flow_id": {"name": "communication_stg__forms_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_flow_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_id": {"name": "communication_stg__forms_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_is_logical_deleted": {"name": "communication_stg__forms_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_is_logical_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_modified": {"name": "communication_stg__forms_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_name": {"name": "communication_stg__forms_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_platform": {"name": "communication_stg__forms_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_platform_script_id": {"name": "communication_stg__forms_platform_script_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_platform_script_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_processing_time": {"name": "communication_stg__forms_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_settings": {"name": "communication_stg__forms_settings", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_settings", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_status": {"name": "communication_stg__forms_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_ts_ms": {"name": "communication_stg__forms_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_type": {"name": "communication_stg__forms_type", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_upsolver_schema_version": {"name": "communication_stg__forms_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__forms_user_id": {"name": "communication_stg__forms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__forms/communication_stg__forms.md", "original_file_path": "models/communication/staging/base/communication_stg__forms/communication_stg__forms.md", "unique_id": "doc.yoda.communication_stg__forms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__klaviyo_users": {"name": "communication_stg__klaviyo_users", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__klaviyo_users_all_lists_sync": {"name": "communication_stg__klaviyo_users_all_lists_sync", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_all_lists_sync", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_api_key": {"name": "communication_stg__klaviyo_users_api_key", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_api_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_auto_sync": {"name": "communication_stg__klaviyo_users_auto_sync", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_auto_sync", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_created": {"name": "communication_stg__klaviyo_users_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_id": {"name": "communication_stg__klaviyo_users_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_is_logical_deleted": {"name": "communication_stg__klaviyo_users_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_klaviyo_auto_sync": {"name": "communication_stg__klaviyo_users_klaviyo_auto_sync", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_klaviyo_auto_sync", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_modified": {"name": "communication_stg__klaviyo_users_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_processing_time": {"name": "communication_stg__klaviyo_users_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_smsbump_auto_sync": {"name": "communication_stg__klaviyo_users_smsbump_auto_sync", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_smsbump_auto_sync", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_ts_ms": {"name": "communication_stg__klaviyo_users_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_upsolver_schema_version": {"name": "communication_stg__klaviyo_users_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_users_user_id": {"name": "communication_stg__klaviyo_users_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "original_file_path": "models/communication/staging/base/communication_stg__klaviyo_users/communication_stg__klaviyo_users.md", "unique_id": "doc.yoda.communication_stg__klaviyo_users_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__list_keywords_charge_attempts": {"name": "communication_stg__list_keywords_charge_attempts", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_charge_attempts", "block_contents": "TODO: Update Column charge_attempts Information"}, "doc.yoda.communication_stg__list_keywords_created": {"name": "communication_stg__list_keywords_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_created", "block_contents": "TODO: Update Column created Information"}, "doc.yoda.communication_stg__list_keywords_display_name": {"name": "communication_stg__list_keywords_display_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_display_name", "block_contents": "TODO: Update Column display_name Information"}, "doc.yoda.communication_stg__list_keywords_event_id": {"name": "communication_stg__list_keywords_event_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_event_id", "block_contents": "TODO: Update Column event_id Information"}, "doc.yoda.communication_stg__list_keywords_id": {"name": "communication_stg__list_keywords_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.communication_stg__list_keywords_is_logical_deleted": {"name": "communication_stg__list_keywords_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_is_logical_deleted", "block_contents": "TODO: Update Column is_logical_deleted Information"}, "doc.yoda.communication_stg__list_keywords_keyword": {"name": "communication_stg__list_keywords_keyword", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_keyword", "block_contents": "TODO: Update Column keyword Information"}, "doc.yoda.communication_stg__list_keywords_last_billed": {"name": "communication_stg__list_keywords_last_billed", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_last_billed", "block_contents": "TODO: Update Column last_billed Information"}, "doc.yoda.communication_stg__list_keywords_list_id": {"name": "communication_stg__list_keywords_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_list_id", "block_contents": "TODO: Update Column list_id Information"}, "doc.yoda.communication_stg__list_keywords_max_messages": {"name": "communication_stg__list_keywords_max_messages", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_max_messages", "block_contents": "TODO: Update Column max_messages Information"}, "doc.yoda.communication_stg__list_keywords_modified": {"name": "communication_stg__list_keywords_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_modified", "block_contents": "TODO: Update Column modified Information"}, "doc.yoda.communication_stg__list_keywords_price": {"name": "communication_stg__list_keywords_price", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_price", "block_contents": "TODO: Update Column price Information"}, "doc.yoda.communication_stg__list_keywords_processing_time": {"name": "communication_stg__list_keywords_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_processing_time", "block_contents": "TODO: Update Column processing_time Information"}, "doc.yoda.communication_stg__list_keywords_status": {"name": "communication_stg__list_keywords_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_status", "block_contents": "TODO: Update Column status Information"}, "doc.yoda.communication_stg__list_keywords_subscription_status": {"name": "communication_stg__list_keywords_subscription_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_subscription_status", "block_contents": "TODO: Update Column subscription_status Information"}, "doc.yoda.communication_stg__list_keywords_ts_ms": {"name": "communication_stg__list_keywords_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_ts_ms", "block_contents": "TODO: Update Column ts_ms Information"}, "doc.yoda.communication_stg__list_keywords_upsolver_schema_version": {"name": "communication_stg__list_keywords_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_upsolver_schema_version", "block_contents": "TODO: Update Column upsolver_schema_version Information"}, "doc.yoda.communication_stg__list_keywords_user_id": {"name": "communication_stg__list_keywords_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "original_file_path": "models/communication/staging/base/communication_stg__list_keywords/communication_stg__list_keywords.md", "unique_id": "doc.yoda.communication_stg__list_keywords_user_id", "block_contents": "TODO: Update Column user_id Information"}, "doc.yoda.communication_stg__orders_app_id": {"name": "communication_stg__orders_app_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_app_id", "block_contents": "TODO: Update Column app_id Information"}, "doc.yoda.communication_stg__orders_browser_ip": {"name": "communication_stg__orders_browser_ip", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_browser_ip", "block_contents": "TODO: Update Column browser_ip Information"}, "doc.yoda.communication_stg__orders_buyer_accepts_marketing": {"name": "communication_stg__orders_buyer_accepts_marketing", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_buyer_accepts_marketing", "block_contents": "TODO: Update Column buyer_accepts_marketing Information"}, "doc.yoda.communication_stg__orders_cancel_reason": {"name": "communication_stg__orders_cancel_reason", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_cancel_reason", "block_contents": "TODO: Update Column cancel_reason Information"}, "doc.yoda.communication_stg__orders_cancelled_at": {"name": "communication_stg__orders_cancelled_at", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_cancelled_at", "block_contents": "TODO: Update Column cancelled_at Information"}, "doc.yoda.communication_stg__orders_cart_token": {"name": "communication_stg__orders_cart_token", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_cart_token", "block_contents": "TODO: Update Column cart_token Information"}, "doc.yoda.communication_stg__orders_checkout_id": {"name": "communication_stg__orders_checkout_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_checkout_id", "block_contents": "TODO: Update Column checkout_id Information"}, "doc.yoda.communication_stg__orders_checkout_token": {"name": "communication_stg__orders_checkout_token", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_checkout_token", "block_contents": "TODO: Update Column checkout_token Information"}, "doc.yoda.communication_stg__orders_closed_at": {"name": "communication_stg__orders_closed_at", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_closed_at", "block_contents": "TODO: Update Column closed_at Information"}, "doc.yoda.communication_stg__orders_confirmed": {"name": "communication_stg__orders_confirmed", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_confirmed", "block_contents": "TODO: Update Column confirmed Information"}, "doc.yoda.communication_stg__orders_contact_email": {"name": "communication_stg__orders_contact_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_contact_email", "block_contents": "TODO: Update Column contact_email Information"}, "doc.yoda.communication_stg__orders_created_at": {"name": "communication_stg__orders_created_at", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_created_at", "block_contents": "TODO: Update Column created_at Information"}, "doc.yoda.communication_stg__orders_currency": {"name": "communication_stg__orders_currency", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_currency", "block_contents": "TODO: Update Column currency Information"}, "doc.yoda.communication_stg__orders_customer_id": {"name": "communication_stg__orders_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_customer_id", "block_contents": "TODO: Update Column customer_id Information"}, "doc.yoda.communication_stg__orders_customer_locale": {"name": "communication_stg__orders_customer_locale", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_customer_locale", "block_contents": "TODO: Update Column customer_locale Information"}, "doc.yoda.communication_stg__orders_device_id": {"name": "communication_stg__orders_device_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_device_id", "block_contents": "TODO: Update Column device_id Information"}, "doc.yoda.communication_stg__orders_email": {"name": "communication_stg__orders_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_email", "block_contents": "TODO: Update Column email Information"}, "doc.yoda.communication_stg__orders_financial_status": {"name": "communication_stg__orders_financial_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_financial_status", "block_contents": "TODO: Update Column financial_status Information"}, "doc.yoda.communication_stg__orders_fulfillment_status": {"name": "communication_stg__orders_fulfillment_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_fulfillment_status", "block_contents": "TODO: Update Column fulfillment_status Information"}, "doc.yoda.communication_stg__orders_gateway": {"name": "communication_stg__orders_gateway", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_gateway", "block_contents": "TODO: Update Column gateway Information"}, "doc.yoda.communication_stg__orders_id": {"name": "communication_stg__orders_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.communication_stg__orders_is_logical_deleted": {"name": "communication_stg__orders_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_is_logical_deleted", "block_contents": "TODO: Update Column is_logical_deleted Information"}, "doc.yoda.communication_stg__orders_landing_site": {"name": "communication_stg__orders_landing_site", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_landing_site", "block_contents": "TODO: Update Column landing_site Information"}, "doc.yoda.communication_stg__orders_landing_site_ref": {"name": "communication_stg__orders_landing_site_ref", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_landing_site_ref", "block_contents": "TODO: Update Column landing_site_ref Information"}, "doc.yoda.communication_stg__orders_location_id": {"name": "communication_stg__orders_location_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_location_id", "block_contents": "TODO: Update Column location_id Information"}, "doc.yoda.communication_stg__orders_name": {"name": "communication_stg__orders_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_name", "block_contents": "TODO: Update Column name Information"}, "doc.yoda.communication_stg__orders_note": {"name": "communication_stg__orders_note", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_note", "block_contents": "TODO: Update Column note Information"}, "doc.yoda.communication_stg__orders_number": {"name": "communication_stg__orders_number", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_number", "block_contents": "TODO: Update Column number Information"}, "doc.yoda.communication_stg__orders_order_id": {"name": "communication_stg__orders_order_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_order_id", "block_contents": "TODO: Update Column order_id Information"}, "doc.yoda.communication_stg__orders_order_number": {"name": "communication_stg__orders_order_number", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_order_number", "block_contents": "TODO: Update Column order_number Information"}, "doc.yoda.communication_stg__orders_order_status_url": {"name": "communication_stg__orders_order_status_url", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_order_status_url", "block_contents": "TODO: Update Column order_status_url Information"}, "doc.yoda.communication_stg__orders_phone": {"name": "communication_stg__orders_phone", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_phone", "block_contents": "TODO: Update Column phone Information"}, "doc.yoda.communication_stg__orders_phone_formatted": {"name": "communication_stg__orders_phone_formatted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_phone_formatted", "block_contents": "TODO: Update Column phone_formatted Information"}, "doc.yoda.communication_stg__orders_processed_at": {"name": "communication_stg__orders_processed_at", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_processed_at", "block_contents": "TODO: Update Column processed_at Information"}, "doc.yoda.communication_stg__orders_processing_method": {"name": "communication_stg__orders_processing_method", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_processing_method", "block_contents": "TODO: Update Column processing_method Information"}, "doc.yoda.communication_stg__orders_processing_time": {"name": "communication_stg__orders_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_processing_time", "block_contents": "TODO: Update Column processing_time Information"}, "doc.yoda.communication_stg__orders_reference": {"name": "communication_stg__orders_reference", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_reference", "block_contents": "TODO: Update Column reference Information"}, "doc.yoda.communication_stg__orders_referring_site": {"name": "communication_stg__orders_referring_site", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_referring_site", "block_contents": "TODO: Update Column referring_site Information"}, "doc.yoda.communication_stg__orders_smsbump_user_id": {"name": "communication_stg__orders_smsbump_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_smsbump_user_id", "block_contents": "TODO: Update Column smsbump_user_id Information"}, "doc.yoda.communication_stg__orders_source_identifier": {"name": "communication_stg__orders_source_identifier", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_source_identifier", "block_contents": "TODO: Update Column source_identifier Information"}, "doc.yoda.communication_stg__orders_source_name": {"name": "communication_stg__orders_source_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_source_name", "block_contents": "TODO: Update Column source_name Information"}, "doc.yoda.communication_stg__orders_source_url": {"name": "communication_stg__orders_source_url", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_source_url", "block_contents": "TODO: Update Column source_url Information"}, "doc.yoda.communication_stg__orders_subtotal_price": {"name": "communication_stg__orders_subtotal_price", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_subtotal_price", "block_contents": "TODO: Update Column subtotal_price Information"}, "doc.yoda.communication_stg__orders_tags": {"name": "communication_stg__orders_tags", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_tags", "block_contents": "TODO: Update Column tags Information"}, "doc.yoda.communication_stg__orders_taxes_included": {"name": "communication_stg__orders_taxes_included", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_taxes_included", "block_contents": "TODO: Update Column taxes_included Information"}, "doc.yoda.communication_stg__orders_test": {"name": "communication_stg__orders_test", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_test", "block_contents": "TODO: Update Column test Information"}, "doc.yoda.communication_stg__orders_token": {"name": "communication_stg__orders_token", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_token", "block_contents": "TODO: Update Column token Information"}, "doc.yoda.communication_stg__orders_total_discounts": {"name": "communication_stg__orders_total_discounts", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_total_discounts", "block_contents": "TODO: Update Column total_discounts Information"}, "doc.yoda.communication_stg__orders_total_line_items_price": {"name": "communication_stg__orders_total_line_items_price", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_total_line_items_price", "block_contents": "TODO: Update Column total_line_items_price Information"}, "doc.yoda.communication_stg__orders_total_price": {"name": "communication_stg__orders_total_price", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_total_price", "block_contents": "TODO: Update Column total_price Information"}, "doc.yoda.communication_stg__orders_total_price_usd": {"name": "communication_stg__orders_total_price_usd", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_total_price_usd", "block_contents": "TODO: Update Column total_price_usd Information"}, "doc.yoda.communication_stg__orders_total_tax": {"name": "communication_stg__orders_total_tax", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_total_tax", "block_contents": "TODO: Update Column total_tax Information"}, "doc.yoda.communication_stg__orders_total_weight": {"name": "communication_stg__orders_total_weight", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_total_weight", "block_contents": "TODO: Update Column total_weight Information"}, "doc.yoda.communication_stg__orders_ts_ms": {"name": "communication_stg__orders_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_ts_ms", "block_contents": "TODO: Update Column ts_ms Information"}, "doc.yoda.communication_stg__orders_updated_at": {"name": "communication_stg__orders_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_updated_at", "block_contents": "TODO: Update Column updated_at Information"}, "doc.yoda.communication_stg__orders_upsolver_schema_version": {"name": "communication_stg__orders_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_upsolver_schema_version", "block_contents": "TODO: Update Column upsolver_schema_version Information"}, "doc.yoda.communication_stg__orders_user_id": {"name": "communication_stg__orders_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__orders/communication_stg__orders.md", "original_file_path": "models/communication/staging/base/communication_stg__orders/communication_stg__orders.md", "unique_id": "doc.yoda.communication_stg__orders_user_id", "block_contents": "TODO: Update Column user_id Information"}, "doc.yoda.communication_stg__packages_bonus_credits": {"name": "communication_stg__packages_bonus_credits", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_bonus_credits", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_created": {"name": "communication_stg__packages_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_description": {"name": "communication_stg__packages_description", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_display_name": {"name": "communication_stg__packages_display_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_display_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_id": {"name": "communication_stg__packages_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_is_logical_deleted": {"name": "communication_stg__packages_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_is_logical_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_modified": {"name": "communication_stg__packages_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_name": {"name": "communication_stg__packages_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_payment_key": {"name": "communication_stg__packages_payment_key", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_payment_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_period": {"name": "communication_stg__packages_period", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_period", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_plan_key": {"name": "communication_stg__packages_plan_key", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_plan_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_platform": {"name": "communication_stg__packages_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_price": {"name": "communication_stg__packages_price", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_price", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_processing_time": {"name": "communication_stg__packages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_status": {"name": "communication_stg__packages_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_sub_title": {"name": "communication_stg__packages_sub_title", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_sub_title", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_ts_ms": {"name": "communication_stg__packages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_type": {"name": "communication_stg__packages_type", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_upsolver_schema_version": {"name": "communication_stg__packages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_visible_app": {"name": "communication_stg__packages_visible_app", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_visible_app", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__packages_visible_site": {"name": "communication_stg__packages_visible_site", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__packages/communication_stg__packages.md", "original_file_path": "models/communication/staging/base/communication_stg__packages/communication_stg__packages.md", "unique_id": "doc.yoda.communication_stg__packages_visible_site", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_created": {"name": "communication_stg__phone_to_list_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_id": {"name": "communication_stg__phone_to_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_is_logical_deleted": {"name": "communication_stg__phone_to_list_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_is_logical_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_list_id": {"name": "communication_stg__phone_to_list_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_list_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_modified": {"name": "communication_stg__phone_to_list_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_phone_id": {"name": "communication_stg__phone_to_list_phone_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_phone_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_phone_meta_id": {"name": "communication_stg__phone_to_list_phone_meta_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_phone_meta_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_processing_time": {"name": "communication_stg__phone_to_list_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_source": {"name": "communication_stg__phone_to_list_source", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_source", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_status": {"name": "communication_stg__phone_to_list_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_ts_ms": {"name": "communication_stg__phone_to_list_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_upsolver_schema_version": {"name": "communication_stg__phone_to_list_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phone_to_list_user_id": {"name": "communication_stg__phone_to_list_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "original_file_path": "models/communication/staging/base/communication_stg__phone_to_list/communication_stg__phone_to_list.md", "unique_id": "doc.yoda.communication_stg__phone_to_list_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_country_iso": {"name": "communication_stg__phones_country_iso", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_country_iso", "block_contents": "TODO: Update Column country_iso Information"}, "doc.yoda.communication_stg__phones_created": {"name": "communication_stg__phones_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_created", "block_contents": "TODO: Update Column created Information"}, "doc.yoda.communication_stg__phones_failed_count": {"name": "communication_stg__phones_failed_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_failed_count", "block_contents": "TODO: Update Column failed_count Information"}, "doc.yoda.communication_stg__phones_id": {"name": "communication_stg__phones_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.communication_stg__phones_is_logical_deleted": {"name": "communication_stg__phones_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_is_logical_deleted", "block_contents": "TODO: Update Column is_logical_deleted Information"}, "doc.yoda.communication_stg__phones_is_subscriber": {"name": "communication_stg__phones_is_subscriber", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_is_subscriber", "block_contents": "TODO: Update Column is_subscriber Information"}, "doc.yoda.communication_stg__phones_landline": {"name": "communication_stg__phones_landline", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_landline", "block_contents": "TODO: Update Column landline Information"}, "doc.yoda.communication_stg__phones_modified": {"name": "communication_stg__phones_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_modified", "block_contents": "TODO: Update Column modified Information"}, "doc.yoda.communication_stg__phones_network": {"name": "communication_stg__phones_network", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_network", "block_contents": "TODO: Update Column network Information"}, "doc.yoda.communication_stg__phones_phone": {"name": "communication_stg__phones_phone", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_phone", "block_contents": "TODO: Update Column phone Information"}, "doc.yoda.communication_stg__phones_processing_time": {"name": "communication_stg__phones_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_processing_time", "block_contents": "TODO: Update Column processing_time Information"}, "doc.yoda.communication_stg__phones_ts_ms": {"name": "communication_stg__phones_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_ts_ms", "block_contents": "TODO: Update Column ts_ms Information"}, "doc.yoda.communication_stg__phones_upsolver_schema_version": {"name": "communication_stg__phones_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones/communication_stg__phones.md", "original_file_path": "models/communication/staging/base/communication_stg__phones/communication_stg__phones.md", "unique_id": "doc.yoda.communication_stg__phones_upsolver_schema_version", "block_contents": "TODO: Update Column upsolver_schema_version Information"}, "doc.yoda.communication_stg__phones_meta_birth_date": {"name": "communication_stg__phones_meta_birth_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_birth_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_created": {"name": "communication_stg__phones_meta_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_email": {"name": "communication_stg__phones_meta_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_external_id": {"name": "communication_stg__phones_meta_external_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_external_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_first_name": {"name": "communication_stg__phones_meta_first_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_first_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_gender": {"name": "communication_stg__phones_meta_gender", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_gender", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_id": {"name": "communication_stg__phones_meta_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_initial_source": {"name": "communication_stg__phones_meta_initial_source", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_initial_source", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_is_logical_deleted": {"name": "communication_stg__phones_meta_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_is_logical_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_is_subscriber": {"name": "communication_stg__phones_meta_is_subscriber", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_is_subscriber", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_last_name": {"name": "communication_stg__phones_meta_last_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_last_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_modified": {"name": "communication_stg__phones_meta_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_phone_id": {"name": "communication_stg__phones_meta_phone_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_phone_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_platform": {"name": "communication_stg__phones_meta_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_processing_time": {"name": "communication_stg__phones_meta_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_timezone": {"name": "communication_stg__phones_meta_timezone", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_timezone", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_ts_ms": {"name": "communication_stg__phones_meta_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_upsolver_schema_version": {"name": "communication_stg__phones_meta_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__phones_meta_user_id": {"name": "communication_stg__phones_meta_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "original_file_path": "models/communication/staging/base/communication_stg__phones_meta/communication_stg__phones_meta.md", "unique_id": "doc.yoda.communication_stg__phones_meta_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__profiles": {"name": "communication_stg__profiles", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "original_file_path": "models/communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "unique_id": "doc.yoda.communication_stg__profiles", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__profiles_itemId": {"name": "communication_stg__profiles_itemId", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "original_file_path": "models/communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "unique_id": "doc.yoda.communication_stg__profiles_itemId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__profiles_itemType": {"name": "communication_stg__profiles_itemType", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "original_file_path": "models/communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "unique_id": "doc.yoda.communication_stg__profiles_itemType", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__profiles_lists": {"name": "communication_stg__profiles_lists", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "original_file_path": "models/communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "unique_id": "doc.yoda.communication_stg__profiles_lists", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__profiles_mergedWith": {"name": "communication_stg__profiles_mergedWith", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "original_file_path": "models/communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "unique_id": "doc.yoda.communication_stg__profiles_mergedWith", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__profiles_properties": {"name": "communication_stg__profiles_properties", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "original_file_path": "models/communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "unique_id": "doc.yoda.communication_stg__profiles_properties", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__profiles_systemProperties": {"name": "communication_stg__profiles_systemProperties", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "original_file_path": "models/communication/staging/base/communication_stg__profiles/communication_stg__profiles.md", "unique_id": "doc.yoda.communication_stg__profiles_systemProperties", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders": {"name": "communication_stg__shopify_analytics_orders", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_analytics_orders_ab_campaign_id": {"name": "communication_stg__shopify_analytics_orders_ab_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_ab_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_amount": {"name": "communication_stg__shopify_analytics_orders_amount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_campaign_id": {"name": "communication_stg__shopify_analytics_orders_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_channel": {"name": "communication_stg__shopify_analytics_orders_channel", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_country_iso": {"name": "communication_stg__shopify_analytics_orders_country_iso", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_country_iso", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_created": {"name": "communication_stg__shopify_analytics_orders_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_customer_id": {"name": "communication_stg__shopify_analytics_orders_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_event_id": {"name": "communication_stg__shopify_analytics_orders_event_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_flow_id": {"name": "communication_stg__shopify_analytics_orders_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_flow_snapshot_id": {"name": "communication_stg__shopify_analytics_orders_flow_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_flow_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_flow_step_id": {"name": "communication_stg__shopify_analytics_orders_flow_step_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_flow_step_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_id": {"name": "communication_stg__shopify_analytics_orders_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_is_logical_deleted": {"name": "communication_stg__shopify_analytics_orders_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_order_id": {"name": "communication_stg__shopify_analytics_orders_order_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_processing_time": {"name": "communication_stg__shopify_analytics_orders_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_ref_campaign_id": {"name": "communication_stg__shopify_analytics_orders_ref_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_ref_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_store_id": {"name": "communication_stg__shopify_analytics_orders_store_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_ts_ms": {"name": "communication_stg__shopify_analytics_orders_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_type": {"name": "communication_stg__shopify_analytics_orders_type", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_upsolver_schema_version": {"name": "communication_stg__shopify_analytics_orders_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_analytics_orders_user_id": {"name": "communication_stg__shopify_analytics_orders_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_analytics_orders/communication_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_analytics_orders_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_created": {"name": "communication_stg__shopify_subscription_list_pages_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_created", "block_contents": "TODO: Update Column created Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_handle": {"name": "communication_stg__shopify_subscription_list_pages_handle", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_handle", "block_contents": "TODO: Update Column handle Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_id": {"name": "communication_stg__shopify_subscription_list_pages_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_link_clicks": {"name": "communication_stg__shopify_subscription_list_pages_link_clicks", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_link_clicks", "block_contents": "TODO: Update Column link_clicks Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_link_subscribed": {"name": "communication_stg__shopify_subscription_list_pages_link_subscribed", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_link_subscribed", "block_contents": "TODO: Update Column link_subscribed Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_list_id": {"name": "communication_stg__shopify_subscription_list_pages_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_list_id", "block_contents": "TODO: Update Column list_id Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_modified": {"name": "communication_stg__shopify_subscription_list_pages_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_modified", "block_contents": "TODO: Update Column modified Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_page_id": {"name": "communication_stg__shopify_subscription_list_pages_page_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_page_id", "block_contents": "TODO: Update Column page_id Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_page_short_loyalty_url": {"name": "communication_stg__shopify_subscription_list_pages_page_short_loyalty_url", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_page_short_loyalty_url", "block_contents": "TODO: Update Column page_short_loyalty_url Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_page_short_url": {"name": "communication_stg__shopify_subscription_list_pages_page_short_url", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_page_short_url", "block_contents": "TODO: Update Column page_short_url Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_page_url": {"name": "communication_stg__shopify_subscription_list_pages_page_url", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_page_url", "block_contents": "TODO: Update Column page_url Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_processing_time": {"name": "communication_stg__shopify_subscription_list_pages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_processing_time", "block_contents": "TODO: Update Column processing_time Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_source": {"name": "communication_stg__shopify_subscription_list_pages_source", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_source", "block_contents": "TODO: Update Column source Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_ts_ms": {"name": "communication_stg__shopify_subscription_list_pages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_ts_ms", "block_contents": "TODO: Update Column ts_ms Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_upsolver_schema_version": {"name": "communication_stg__shopify_subscription_list_pages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_upsolver_schema_version", "block_contents": "TODO: Update Column upsolver_schema_version Information"}, "doc.yoda.communication_stg__shopify_subscription_list_pages_user_id": {"name": "communication_stg__shopify_subscription_list_pages_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_subscription_list_pages/communication_stg__shopify_subscription_list_pages.md", "unique_id": "doc.yoda.communication_stg__shopify_subscription_list_pages_user_id", "block_contents": "TODO: Update Column user_id Information"}, "doc.yoda.communication_stg__shopify_user_integrations_created": {"name": "communication_stg__shopify_user_integrations_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "unique_id": "doc.yoda.communication_stg__shopify_user_integrations_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_user_integrations_id": {"name": "communication_stg__shopify_user_integrations_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "unique_id": "doc.yoda.communication_stg__shopify_user_integrations_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_user_integrations_integration_id": {"name": "communication_stg__shopify_user_integrations_integration_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "unique_id": "doc.yoda.communication_stg__shopify_user_integrations_integration_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_user_integrations_is_logical_deleted": {"name": "communication_stg__shopify_user_integrations_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "unique_id": "doc.yoda.communication_stg__shopify_user_integrations_is_logical_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_user_integrations_modified": {"name": "communication_stg__shopify_user_integrations_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "unique_id": "doc.yoda.communication_stg__shopify_user_integrations_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_user_integrations_processing_time": {"name": "communication_stg__shopify_user_integrations_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "unique_id": "doc.yoda.communication_stg__shopify_user_integrations_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_user_integrations_status": {"name": "communication_stg__shopify_user_integrations_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "unique_id": "doc.yoda.communication_stg__shopify_user_integrations_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_user_integrations_ts_ms": {"name": "communication_stg__shopify_user_integrations_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "unique_id": "doc.yoda.communication_stg__shopify_user_integrations_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_user_integrations_upsolver_schema_version": {"name": "communication_stg__shopify_user_integrations_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "unique_id": "doc.yoda.communication_stg__shopify_user_integrations_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_user_integrations_user_id": {"name": "communication_stg__shopify_user_integrations_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_user_integrations/communication_stg__shopify_user_integrations.md", "unique_id": "doc.yoda.communication_stg__shopify_user_integrations_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_abandoned_checkouts_sent": {"name": "communication_stg__shopify_users_abandoned_checkouts_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_abandoned_checkouts_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_access_token": {"name": "communication_stg__shopify_users_access_token", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_access_token", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_app_data": {"name": "communication_stg__shopify_users_app_data", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_app_data", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_associated_user": {"name": "communication_stg__shopify_users_associated_user", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_associated_user", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_auto_reload": {"name": "communication_stg__shopify_users_auto_reload", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_auto_reload", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_auto_reload_amount": {"name": "communication_stg__shopify_users_auto_reload_amount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_auto_reload_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_auto_reload_cap": {"name": "communication_stg__shopify_users_auto_reload_cap", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_auto_reload_cap", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_auto_reload_threshold": {"name": "communication_stg__shopify_users_auto_reload_threshold", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_auto_reload_threshold", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_back_fill_completed": {"name": "communication_stg__shopify_users_back_fill_completed", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_back_fill_completed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_connected": {"name": "communication_stg__shopify_users_connected", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_connected", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_consent_webhook_enabled": {"name": "communication_stg__shopify_users_consent_webhook_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_consent_webhook_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_created": {"name": "communication_stg__shopify_users_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_domain": {"name": "communication_stg__shopify_users_domain", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_domain", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_id": {"name": "communication_stg__shopify_users_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_is_logical_deleted": {"name": "communication_stg__shopify_users_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_is_logical_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_modified": {"name": "communication_stg__shopify_users_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_notes": {"name": "communication_stg__shopify_users_notes", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_notes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_pinned_navigation": {"name": "communication_stg__shopify_users_pinned_navigation", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_pinned_navigation", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_plan": {"name": "communication_stg__shopify_users_plan", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_plan", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_platform": {"name": "communication_stg__shopify_users_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_processing_time": {"name": "communication_stg__shopify_users_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_shop_data": {"name": "communication_stg__shopify_users_shop_data", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_shop_data", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_shopify_store_id": {"name": "communication_stg__shopify_users_shopify_store_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_shopify_store_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_store": {"name": "communication_stg__shopify_users_store", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_store", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_sync_enabled": {"name": "communication_stg__shopify_users_sync_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_sync_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_ts_ms": {"name": "communication_stg__shopify_users_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_upsolver_schema_version": {"name": "communication_stg__shopify_users_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_users_user_id": {"name": "communication_stg__shopify_users_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "original_file_path": "models/communication/staging/base/communication_stg__shopify_users/communication_stg__shopify_users.md", "unique_id": "doc.yoda.communication_stg__shopify_users_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__tmp_email_events": {"name": "communication_stg__tmp_email_events", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "original_file_path": "models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "unique_id": "doc.yoda.communication_stg__tmp_email_events", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__tmp_email_events_app_key": {"name": "communication_stg__tmp_email_events_app_key", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "original_file_path": "models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "unique_id": "doc.yoda.communication_stg__tmp_email_events_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__tmp_email_events_apperance": {"name": "communication_stg__tmp_email_events_apperance", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "original_file_path": "models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "unique_id": "doc.yoda.communication_stg__tmp_email_events_apperance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__tmp_email_events_button_name": {"name": "communication_stg__tmp_email_events_button_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "original_file_path": "models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "unique_id": "doc.yoda.communication_stg__tmp_email_events_button_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__tmp_email_events_id": {"name": "communication_stg__tmp_email_events_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "original_file_path": "models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "unique_id": "doc.yoda.communication_stg__tmp_email_events_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__tmp_email_events_processing_time": {"name": "communication_stg__tmp_email_events_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "original_file_path": "models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "unique_id": "doc.yoda.communication_stg__tmp_email_events_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__tmp_email_events_timestamp": {"name": "communication_stg__tmp_email_events_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "original_file_path": "models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "unique_id": "doc.yoda.communication_stg__tmp_email_events_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__tmp_email_events_ts_ms": {"name": "communication_stg__tmp_email_events_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "original_file_path": "models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "unique_id": "doc.yoda.communication_stg__tmp_email_events_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__tmp_email_events_upsolver_schema_version": {"name": "communication_stg__tmp_email_events_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "original_file_path": "models/communication/staging/base/communication_stg__tmp_email_events/communication_stg__tmp_email_events.md", "unique_id": "doc.yoda.communication_stg__tmp_email_events_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_abuser_notes": {"name": "communication_stg__users_abuser_notes", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_abuser_notes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_abuser_status": {"name": "communication_stg__users_abuser_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_abuser_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_address": {"name": "communication_stg__users_address", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_address", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_affiliate_commission": {"name": "communication_stg__users_affiliate_commission", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_affiliate_commission", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_affiliate_payout_email": {"name": "communication_stg__users_affiliate_payout_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_affiliate_payout_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_affiliate_payout_pref": {"name": "communication_stg__users_affiliate_payout_pref", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_affiliate_payout_pref", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_agreed_terms": {"name": "communication_stg__users_agreed_terms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_agreed_terms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_all_ip": {"name": "communication_stg__users_all_ip", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_all_ip", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_amploa": {"name": "communication_stg__users_amploa", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_amploa", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_automatic_transliteration": {"name": "communication_stg__users_automatic_transliteration", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_automatic_transliteration", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_balance": {"name": "communication_stg__users_balance", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_balance", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_ban_exclude": {"name": "communication_stg__users_ban_exclude", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_ban_exclude", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_bonus_balance": {"name": "communication_stg__users_bonus_balance", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_bonus_balance", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_chat_enabled": {"name": "communication_stg__users_chat_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_chat_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_chat_settings": {"name": "communication_stg__users_chat_settings", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_chat_settings", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_city": {"name": "communication_stg__users_city", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_city", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_collect_checkout_subscribers": {"name": "communication_stg__users_collect_checkout_subscribers", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_collect_checkout_subscribers", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_compliance_accepted_date": {"name": "communication_stg__users_compliance_accepted_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_compliance_accepted_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_contact_card_logo": {"name": "communication_stg__users_contact_card_logo", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_contact_card_logo", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_contact_card_message": {"name": "communication_stg__users_contact_card_message", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_contact_card_message", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_contact_card_name": {"name": "communication_stg__users_contact_card_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_contact_card_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_contact_card_path": {"name": "communication_stg__users_contact_card_path", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_contact_card_path", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_cookie_related_users": {"name": "communication_stg__users_cookie_related_users", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_cookie_related_users", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_countries_limitation_mode": {"name": "communication_stg__users_countries_limitation_mode", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_countries_limitation_mode", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_countries_limitation_values": {"name": "communication_stg__users_countries_limitation_values", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_countries_limitation_values", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_country": {"name": "communication_stg__users_country", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_country", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_created": {"name": "communication_stg__users_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_credits": {"name": "communication_stg__users_credits", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_credits", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_delivery_route": {"name": "communication_stg__users_delivery_route", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_delivery_route", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_discount_data": {"name": "communication_stg__users_discount_data", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_discount_data", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_discounted_mms_price": {"name": "communication_stg__users_discounted_mms_price", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_discounted_mms_price", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_dnd": {"name": "communication_stg__users_dnd", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_dnd", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_dnd_from": {"name": "communication_stg__users_dnd_from", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_dnd_from", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_dnd_to": {"name": "communication_stg__users_dnd_to", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_dnd_to", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_double_opt_in": {"name": "communication_stg__users_double_opt_in", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_double_opt_in", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_double_opt_in_level": {"name": "communication_stg__users_double_opt_in_level", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_double_opt_in_level", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_earnings": {"name": "communication_stg__users_earnings", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_earnings", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_email": {"name": "communication_stg__users_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_email_is_valid": {"name": "communication_stg__users_email_is_valid", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_email_is_valid", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_facebook_id": {"name": "communication_stg__users_facebook_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_facebook_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_facebook_info": {"name": "communication_stg__users_facebook_info", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_facebook_info", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_free_keywords_available_count": {"name": "communication_stg__users_free_keywords_available_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_free_keywords_available_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_google_user_id": {"name": "communication_stg__users_google_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_google_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_gplusurl": {"name": "communication_stg__users_gplusurl", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_gplusurl", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_hash": {"name": "communication_stg__users_hash", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_hash", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_id": {"name": "communication_stg__users_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_industry": {"name": "communication_stg__users_industry", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_industry", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_is_logical_deleted": {"name": "communication_stg__users_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_is_logical_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_is_test": {"name": "communication_stg__users_is_test", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_is_test", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_language": {"name": "communication_stg__users_language", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_language", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_last_available": {"name": "communication_stg__users_last_available", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_last_available", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_last_ip": {"name": "communication_stg__users_last_ip", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_last_ip", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_last_payout": {"name": "communication_stg__users_last_payout", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_last_payout", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_main_subscription_list_id": {"name": "communication_stg__users_main_subscription_list_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_main_subscription_list_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_modified": {"name": "communication_stg__users_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_name": {"name": "communication_stg__users_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_notes": {"name": "communication_stg__users_notes", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_notes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_notes_modified": {"name": "communication_stg__users_notes_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_notes_modified", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_old_passwords": {"name": "communication_stg__users_old_passwords", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_old_passwords", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_onboarding_completed": {"name": "communication_stg__users_onboarding_completed", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_onboarding_completed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_package_id": {"name": "communication_stg__users_package_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_package_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_parent_id": {"name": "communication_stg__users_parent_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_parent_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_partner": {"name": "communication_stg__users_partner", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_partner", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_partner_info": {"name": "communication_stg__users_partner_info", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_partner_info", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_partner_nexmo_price_multiply": {"name": "communication_stg__users_partner_nexmo_price_multiply", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_partner_nexmo_price_multiply", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_partner_type": {"name": "communication_stg__users_partner_type", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_partner_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_password": {"name": "communication_stg__users_password", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_password", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_payment_gateway": {"name": "communication_stg__users_payment_gateway", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_payment_gateway", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_paypal_email": {"name": "communication_stg__users_paypal_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_paypal_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_phone_number": {"name": "communication_stg__users_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_phone_number", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_picture": {"name": "communication_stg__users_picture", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_picture", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_plan": {"name": "communication_stg__users_plan", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_plan", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_plan_price": {"name": "communication_stg__users_plan_price", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_plan_price", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_plan_trial_until": {"name": "communication_stg__users_plan_trial_until", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_plan_trial_until", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_platform": {"name": "communication_stg__users_platform", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_platform_unique_id": {"name": "communication_stg__users_platform_unique_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_platform_unique_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_points": {"name": "communication_stg__users_points", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_points", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_preferred_vendor": {"name": "communication_stg__users_preferred_vendor", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_preferred_vendor", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_price_limit": {"name": "communication_stg__users_price_limit", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_price_limit", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_price_limit_enabled": {"name": "communication_stg__users_price_limit_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_price_limit_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_processing_time": {"name": "communication_stg__users_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_provision_calls_count": {"name": "communication_stg__users_provision_calls_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_provision_calls_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_role": {"name": "communication_stg__users_role", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_role", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_role_id": {"name": "communication_stg__users_role_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_role_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_shaft_status": {"name": "communication_stg__users_shaft_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_shaft_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_signed_promo_id": {"name": "communication_stg__users_signed_promo_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_signed_promo_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_signup_source": {"name": "communication_stg__users_signup_source", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_signup_source", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_smart_sending_ignore_transac_email": {"name": "communication_stg__users_smart_sending_ignore_transac_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_smart_sending_ignore_transac_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_smart_sending_value": {"name": "communication_stg__users_smart_sending_value", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_smart_sending_value", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_state": {"name": "communication_stg__users_state", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_state", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_store_id": {"name": "communication_stg__users_store_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_store_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_strict_marketing_check": {"name": "communication_stg__users_strict_marketing_check", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_strict_marketing_check", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_subscribed": {"name": "communication_stg__users_subscribed", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_subscribed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_subscribed_to_forum": {"name": "communication_stg__users_subscribed_to_forum", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_subscribed_to_forum", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_support_level_id": {"name": "communication_stg__users_support_level_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_support_level_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_system_messages_payer": {"name": "communication_stg__users_system_messages_payer", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_system_messages_payer", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_tfa_enabled": {"name": "communication_stg__users_tfa_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_tfa_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_timezone": {"name": "communication_stg__users_timezone", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_timezone", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_total_downloads": {"name": "communication_stg__users_total_downloads", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_total_downloads", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_total_logins": {"name": "communication_stg__users_total_logins", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_total_logins", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_ts_ms": {"name": "communication_stg__users_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_unsubscribe_reason": {"name": "communication_stg__users_unsubscribe_reason", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_unsubscribe_reason", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_upload_lists_enabled": {"name": "communication_stg__users_upload_lists_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_upload_lists_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_upsolver_schema_version": {"name": "communication_stg__users_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_use_local_number_for_subscription": {"name": "communication_stg__users_use_local_number_for_subscription", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_use_local_number_for_subscription", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_vat_number": {"name": "communication_stg__users_vat_number", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_vat_number", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_vendor_id": {"name": "communication_stg__users_vendor_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_vendor_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_whitelisted": {"name": "communication_stg__users_whitelisted", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_whitelisted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_yotpo_app_key": {"name": "communication_stg__users_yotpo_app_key", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_yotpo_app_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_yotpo_app_secret": {"name": "communication_stg__users_yotpo_app_secret", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_yotpo_app_secret", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_yotpo_organization_id": {"name": "communication_stg__users_yotpo_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_yotpo_organization_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_zipcode": {"name": "communication_stg__users_zipcode", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users/communication_stg__users.md", "original_file_path": "models/communication/staging/base/communication_stg__users/communication_stg__users.md", "unique_id": "doc.yoda.communication_stg__users_zipcode", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_additional_flags": {"name": "communication_stg__users_additional_flags", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__users_additional_flags_added_analytics_script": {"name": "communication_stg__users_additional_flags_added_analytics_script", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_added_analytics_script", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_added_default_flows": {"name": "communication_stg__users_additional_flags_added_default_flows", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_added_default_flows", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_added_default_segments": {"name": "communication_stg__users_additional_flags_added_default_segments", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_added_default_segments", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_added_default_segments_email": {"name": "communication_stg__users_additional_flags_added_default_segments_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_added_default_segments_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_added_default_segments_v1": {"name": "communication_stg__users_additional_flags_added_default_segments_v1", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_added_default_segments_v1", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_additional_vip_tier_loyalty_markers": {"name": "communication_stg__users_additional_flags_additional_vip_tier_loyalty_markers", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_additional_vip_tier_loyalty_markers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_allow_onboarding_email": {"name": "communication_stg__users_additional_flags_allow_onboarding_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_allow_onboarding_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_allow_webhooks_sms_list_segment_events": {"name": "communication_stg__users_additional_flags_allow_webhooks_sms_list_segment_events", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_allow_webhooks_sms_list_segment_events", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_analytics_exports": {"name": "communication_stg__users_additional_flags_analytics_exports", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_analytics_exports", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_app_version": {"name": "communication_stg__users_additional_flags_app_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_app_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_automation_listing_redesign": {"name": "communication_stg__users_additional_flags_automation_listing_redesign", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_automation_listing_redesign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_automation_migration_popup": {"name": "communication_stg__users_additional_flags_automation_migration_popup", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_automation_migration_popup", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_automations_v2": {"name": "communication_stg__users_additional_flags_automations_v2", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_automations_v2", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_back_in_stock": {"name": "communication_stg__users_additional_flags_back_in_stock", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_back_in_stock", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_browse_abandonment_shortcodes": {"name": "communication_stg__users_additional_flags_browse_abandonment_shortcodes", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_browse_abandonment_shortcodes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_campaign_contacts_from_unomi": {"name": "communication_stg__users_additional_flags_campaign_contacts_from_unomi", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_campaign_contacts_from_unomi", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_campaign_microservice": {"name": "communication_stg__users_additional_flags_campaign_microservice", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_campaign_microservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_campaign_results": {"name": "communication_stg__users_additional_flags_campaign_results", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_campaign_results", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_campaigns_auto_reload_credits": {"name": "communication_stg__users_additional_flags_campaigns_auto_reload_credits", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_campaigns_auto_reload_credits", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_campaigns_multiple_segments": {"name": "communication_stg__users_additional_flags_campaigns_multiple_segments", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_campaigns_multiple_segments", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_click_to_buy": {"name": "communication_stg__users_additional_flags_click_to_buy", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_click_to_buy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_collect_checkouts_subscribers_without_events": {"name": "communication_stg__users_additional_flags_collect_checkouts_subscribers_without_events", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_collect_checkouts_subscribers_without_events", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_collect_subscribers_checkout": {"name": "communication_stg__users_additional_flags_collect_subscribers_checkout", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_collect_subscribers_checkout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_collect_subscribers_page_show_cvr_column": {"name": "communication_stg__users_additional_flags_collect_subscribers_page_show_cvr_column", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_collect_subscribers_page_show_cvr_column", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_created": {"name": "communication_stg__users_additional_flags_created", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_cs_enhanced_unomi_profile_creation": {"name": "communication_stg__users_additional_flags_cs_enhanced_unomi_profile_creation", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_cs_enhanced_unomi_profile_creation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_cs_library_page": {"name": "communication_stg__users_additional_flags_cs_library_page", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_cs_library_page", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_cs_tools_looker_analytics": {"name": "communication_stg__users_additional_flags_cs_tools_looker_analytics", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_cs_tools_looker_analytics", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_display_hybrid_popup_migration_times_remaining": {"name": "communication_stg__users_additional_flags_display_hybrid_popup_migration_times_remaining", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_display_hybrid_popup_migration_times_remaining", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_display_new_behavior_popup": {"name": "communication_stg__users_additional_flags_display_new_behavior_popup", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_display_new_behavior_popup", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_duplicate_form_logic": {"name": "communication_stg__users_additional_flags_duplicate_form_logic", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_duplicate_form_logic", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_edit_campaigns": {"name": "communication_stg__users_additional_flags_edit_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_edit_campaigns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_analytics_benchmark": {"name": "communication_stg__users_additional_flags_enable_analytics_benchmark", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_analytics_benchmark", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_auto_response_qr": {"name": "communication_stg__users_additional_flags_enable_auto_response_qr", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_auto_response_qr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_auto_response_social": {"name": "communication_stg__users_additional_flags_enable_auto_response_social", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_auto_response_social", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_group_by_geo_report": {"name": "communication_stg__users_additional_flags_enable_group_by_geo_report", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_group_by_geo_report", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_integrations_test_mode": {"name": "communication_stg__users_additional_flags_enable_integrations_test_mode", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_integrations_test_mode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_klaviyo_flow_conditions": {"name": "communication_stg__users_additional_flags_enable_klaviyo_flow_conditions", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_klaviyo_flow_conditions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_klaviyo_new_consent": {"name": "communication_stg__users_additional_flags_enable_klaviyo_new_consent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_klaviyo_new_consent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_listrak": {"name": "communication_stg__users_additional_flags_enable_listrak", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_listrak", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_looker_realtime_campaign": {"name": "communication_stg__users_additional_flags_enable_looker_realtime_campaign", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_looker_realtime_campaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_looker_sources_reports": {"name": "communication_stg__users_additional_flags_enable_looker_sources_reports", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_looker_sources_reports", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_new_analytics": {"name": "communication_stg__users_additional_flags_enable_new_analytics", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_new_analytics", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_new_analytics_campaign_overview": {"name": "communication_stg__users_additional_flags_enable_new_analytics_campaign_overview", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_new_analytics_campaign_overview", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_enable_new_analytics_campaigns_listing": {"name": "communication_stg__users_additional_flags_enable_new_analytics_campaigns_listing", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_enable_new_analytics_campaigns_listing", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_exclude_generating_recipients_on_validating": {"name": "communication_stg__users_additional_flags_exclude_generating_recipients_on_validating", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_exclude_generating_recipients_on_validating", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_flows_empty_state": {"name": "communication_stg__users_additional_flags_flows_empty_state", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_flows_empty_state", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_flows_library_redesign": {"name": "communication_stg__users_additional_flags_flows_library_redesign", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_flows_library_redesign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_flows_listing_redesign": {"name": "communication_stg__users_additional_flags_flows_listing_redesign", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_flows_listing_redesign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_flows_preview": {"name": "communication_stg__users_additional_flags_flows_preview", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_flows_preview", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_generated_revenue": {"name": "communication_stg__users_additional_flags_generated_revenue", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_generated_revenue", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_generic_collections_available": {"name": "communication_stg__users_additional_flags_generic_collections_available", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_generic_collections_available", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_generic_products_available": {"name": "communication_stg__users_additional_flags_generic_products_available", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_generic_products_available", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_generic_tags_available": {"name": "communication_stg__users_additional_flags_generic_tags_available", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_generic_tags_available", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_hide_cs_editor_store_view": {"name": "communication_stg__users_additional_flags_hide_cs_editor_store_view", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_hide_cs_editor_store_view", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_hide_subscriber_opt_in_preference": {"name": "communication_stg__users_additional_flags_hide_subscriber_opt_in_preference", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_hide_subscriber_opt_in_preference", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_hybrid_popup": {"name": "communication_stg__users_additional_flags_hybrid_popup", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_hybrid_popup", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_id": {"name": "communication_stg__users_additional_flags_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_ignore_transactional_triggers": {"name": "communication_stg__users_additional_flags_ignore_transactional_triggers", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_ignore_transactional_triggers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_import_without_country_code": {"name": "communication_stg__users_additional_flags_import_without_country_code", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_import_without_country_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_increase_customer_loyalty": {"name": "communication_stg__users_additional_flags_increase_customer_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_increase_customer_loyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_litigators_service_enabled": {"name": "communication_stg__users_additional_flags_litigators_service_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_litigators_service_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_mandatory_opt_out_message": {"name": "communication_stg__users_additional_flags_mandatory_opt_out_message", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_mandatory_opt_out_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_modified": {"name": "communication_stg__users_additional_flags_modified", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_multiple_free_keywords": {"name": "communication_stg__users_additional_flags_multiple_free_keywords", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_multiple_free_keywords", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_new_attribution": {"name": "communication_stg__users_additional_flags_new_attribution", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_new_attribution", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_new_balance_logic": {"name": "communication_stg__users_additional_flags_new_balance_logic", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_new_balance_logic", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_new_dashboard_page": {"name": "communication_stg__users_additional_flags_new_dashboard_page", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_new_dashboard_page", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_new_discount_logic": {"name": "communication_stg__users_additional_flags_new_discount_logic", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_new_discount_logic", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_new_home_page_dashboard": {"name": "communication_stg__users_additional_flags_new_home_page_dashboard", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_new_home_page_dashboard", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_new_klaviyo_integration_page": {"name": "communication_stg__users_additional_flags_new_klaviyo_integration_page", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_new_klaviyo_integration_page", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_new_klaviyo_sync_logic": {"name": "communication_stg__users_additional_flags_new_klaviyo_sync_logic", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_new_klaviyo_sync_logic", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_new_loyalty_events": {"name": "communication_stg__users_additional_flags_new_loyalty_events", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_new_loyalty_events", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_new_popup_editor": {"name": "communication_stg__users_additional_flags_new_popup_editor", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_new_popup_editor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_new_request_data_modal": {"name": "communication_stg__users_additional_flags_new_request_data_modal", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_new_request_data_modal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_new_subscribers_page": {"name": "communication_stg__users_additional_flags_new_subscribers_page", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_new_subscribers_page", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_popup_enhancements": {"name": "communication_stg__users_additional_flags_popup_enhancements", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_popup_enhancements", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_processing_time": {"name": "communication_stg__users_additional_flags_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_product_recommendation_engine": {"name": "communication_stg__users_additional_flags_product_recommendation_engine", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_product_recommendation_engine", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_pulling_klavyio_email_sub": {"name": "communication_stg__users_additional_flags_pulling_klavyio_email_sub", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_pulling_klavyio_email_sub", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_push_tags_to_shopify": {"name": "communication_stg__users_additional_flags_push_tags_to_shopify", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_push_tags_to_shopify", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_recharge_set_user_timezone": {"name": "communication_stg__users_additional_flags_recharge_set_user_timezone", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_recharge_set_user_timezone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_request_recipients_split": {"name": "communication_stg__users_additional_flags_request_recipients_split", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_request_recipients_split", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_resource_feedback": {"name": "communication_stg__users_additional_flags_resource_feedback", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_resource_feedback", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_resubscribe_user": {"name": "communication_stg__users_additional_flags_resubscribe_user", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_resubscribe_user", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_segment_events_backfill": {"name": "communication_stg__users_additional_flags_segment_events_backfill", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_segment_events_backfill", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_shopify_sms_consent": {"name": "communication_stg__users_additional_flags_shopify_sms_consent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_shopify_sms_consent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_shopify_transactional_flows": {"name": "communication_stg__users_additional_flags_shopify_transactional_flows", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_shopify_transactional_flows", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_analytics_total_message_parts": {"name": "communication_stg__users_additional_flags_show_analytics_total_message_parts", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_analytics_total_message_parts", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_cs_analytics_page": {"name": "communication_stg__users_additional_flags_show_cs_analytics_page", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_cs_analytics_page", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_cs_analytics_subscription_form": {"name": "communication_stg__users_additional_flags_show_cs_analytics_subscription_form", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_cs_analytics_subscription_form", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_cs_listing_subscribers_types": {"name": "communication_stg__users_additional_flags_show_cs_listing_subscribers_types", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_cs_listing_subscribers_types", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_cs_looker_subscription_form": {"name": "communication_stg__users_additional_flags_show_cs_looker_subscription_form", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_cs_looker_subscription_form", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_dashboard_tools": {"name": "communication_stg__users_additional_flags_show_dashboard_tools", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_dashboard_tools", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_email": {"name": "communication_stg__users_additional_flags_show_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_impressions_conv_rate_subs_form": {"name": "communication_stg__users_additional_flags_show_impressions_conv_rate_subs_form", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_impressions_conv_rate_subs_form", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_looker_analytics": {"name": "communication_stg__users_additional_flags_show_looker_analytics", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_looker_analytics", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_loyalty_reviews_filters": {"name": "communication_stg__users_additional_flags_show_loyalty_reviews_filters", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_loyalty_reviews_filters", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_loyalty_tier_placeholders": {"name": "communication_stg__users_additional_flags_show_loyalty_tier_placeholders", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_loyalty_tier_placeholders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_report": {"name": "communication_stg__users_additional_flags_show_report", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_report", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_reviews_filters": {"name": "communication_stg__users_additional_flags_show_reviews_filters", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_reviews_filters", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_sms_subscribers_from_unomi": {"name": "communication_stg__users_additional_flags_show_sms_subscribers_from_unomi", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_sms_subscribers_from_unomi", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_sub_form_looker_ui": {"name": "communication_stg__users_additional_flags_show_sub_form_looker_ui", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_sub_form_looker_ui", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_subs_analytics_over_unomi": {"name": "communication_stg__users_additional_flags_show_subs_analytics_over_unomi", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_subs_analytics_over_unomi", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_subscriber_collection_looker": {"name": "communication_stg__users_additional_flags_show_subscriber_collection_looker", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_subscriber_collection_looker", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_show_tolstoy": {"name": "communication_stg__users_additional_flags_show_tolstoy", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_show_tolstoy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_sms_payer_last_change": {"name": "communication_stg__users_additional_flags_sms_payer_last_change", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_sms_payer_last_change", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_subscription_flows": {"name": "communication_stg__users_additional_flags_subscription_flows", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_subscription_flows", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_targeted_campaigns_sequence": {"name": "communication_stg__users_additional_flags_targeted_campaigns_sequence", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_targeted_campaigns_sequence", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_text_to_buy": {"name": "communication_stg__users_additional_flags_text_to_buy", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_text_to_buy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_transactional_is_email_subscriber": {"name": "communication_stg__users_additional_flags_transactional_is_email_subscriber", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_transactional_is_email_subscriber", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_transactional_is_sms_subscriber": {"name": "communication_stg__users_additional_flags_transactional_is_sms_subscriber", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_transactional_is_sms_subscriber", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_transactional_message_rules": {"name": "communication_stg__users_additional_flags_transactional_message_rules", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_transactional_message_rules", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_ts_ms": {"name": "communication_stg__users_additional_flags_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_unomi_campaigns_listing_fields": {"name": "communication_stg__users_additional_flags_unomi_campaigns_listing_fields", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_unomi_campaigns_listing_fields", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_unomi_parallel_fetch": {"name": "communication_stg__users_additional_flags_unomi_parallel_fetch", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_unomi_parallel_fetch", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_upsolver_schema_version": {"name": "communication_stg__users_additional_flags_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_use_domestic_prices": {"name": "communication_stg__users_additional_flags_use_domestic_prices", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_use_domestic_prices", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_use_loyalty_shortcodes": {"name": "communication_stg__users_additional_flags_use_loyalty_shortcodes", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_use_loyalty_shortcodes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_use_message_routing_service": {"name": "communication_stg__users_additional_flags_use_message_routing_service", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_use_message_routing_service", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_use_new_salesforce_version": {"name": "communication_stg__users_additional_flags_use_new_salesforce_version", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_use_new_salesforce_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_use_new_sidebar": {"name": "communication_stg__users_additional_flags_use_new_sidebar", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_use_new_sidebar", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_use_onboarding_discount_setup": {"name": "communication_stg__users_additional_flags_use_onboarding_discount_setup", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_use_onboarding_discount_setup", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_use_onboarding_v2": {"name": "communication_stg__users_additional_flags_use_onboarding_v2", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_use_onboarding_v2", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_use_queue_sdk": {"name": "communication_stg__users_additional_flags_use_queue_sdk", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_use_queue_sdk", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_use_review_shortcodes": {"name": "communication_stg__users_additional_flags_use_review_shortcodes", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_use_review_shortcodes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_use_tiptap_composer": {"name": "communication_stg__users_additional_flags_use_tiptap_composer", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_use_tiptap_composer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_use_user_service_messages": {"name": "communication_stg__users_additional_flags_use_user_service_messages", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_use_user_service_messages", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_user_id": {"name": "communication_stg__users_additional_flags_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_welcome_msg_checkout": {"name": "communication_stg__users_additional_flags_welcome_msg_checkout", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_welcome_msg_checkout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_yotpo_active": {"name": "communication_stg__users_additional_flags_yotpo_active", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_yotpo_active", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__users_additional_flags_yotpo_status_last_check": {"name": "communication_stg__users_additional_flags_yotpo_status_last_check", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "original_file_path": "models/communication/staging/base/communication_stg__users_additional_flags/communication_stg__users_additional_flags.md", "unique_id": "doc.yoda.communication_stg__users_additional_flags_yotpo_status_last_check", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__active_users_flags": {"name": "communication_stg__active_users_flags", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.md", "unique_id": "doc.yoda.communication_stg__active_users_flags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__active_users_flags_email_enabled": {"name": "communication_stg__active_users_flags_email_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.md", "unique_id": "doc.yoda.communication_stg__active_users_flags_email_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__active_users_flags_sms_user_id": {"name": "communication_stg__active_users_flags_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.md", "unique_id": "doc.yoda.communication_stg__active_users_flags_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__active_users_flags_user_id": {"name": "communication_stg__active_users_flags_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__active_users_flags/communication_stg__active_users_flags.md", "unique_id": "doc.yoda.communication_stg__active_users_flags_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__automations_abandoned_checkout_active": {"name": "communication_stg__automations_abandoned_checkout_active", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.md", "unique_id": "doc.yoda.communication_stg__automations_abandoned_checkout_active", "block_contents": "Gives information wheather a user has an active abandoned checkout automation. An abandoned checkout automation is any automation with webhook \"checkouts/create\""}, "doc.yoda.communication_stg__automations_abandoned_checkout_active_is_enabled_automation_abandoned_checkout": {"name": "communication_stg__automations_abandoned_checkout_active_is_enabled_automation_abandoned_checkout", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.md", "unique_id": "doc.yoda.communication_stg__automations_abandoned_checkout_active_is_enabled_automation_abandoned_checkout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__automations_abandoned_checkout_active_sms_user_id": {"name": "communication_stg__automations_abandoned_checkout_active_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.md", "unique_id": "doc.yoda.communication_stg__automations_abandoned_checkout_active_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__automations_abandoned_checkout_active_user_id": {"name": "communication_stg__automations_abandoned_checkout_active_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_abandoned_checkout_active/communication_stg__automations_abandoned_checkout_active.md", "unique_id": "doc.yoda.communication_stg__automations_abandoned_checkout_active_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__automations_count_sms_user_id": {"name": "communication_stg__automations_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_count/communication_stg__automations_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_count/communication_stg__automations_count.md", "unique_id": "doc.yoda.communication_stg__automations_count_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__automations_count_smsbumpautomationscount": {"name": "communication_stg__automations_count_smsbumpautomationscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_count/communication_stg__automations_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_count/communication_stg__automations_count.md", "unique_id": "doc.yoda.communication_stg__automations_count_smsbumpautomationscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__automations_count_user_id": {"name": "communication_stg__automations_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_count/communication_stg__automations_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_count/communication_stg__automations_count.md", "unique_id": "doc.yoda.communication_stg__automations_count_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__automations_customer_winback_active": {"name": "communication_stg__automations_customer_winback_active", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.md", "unique_id": "doc.yoda.communication_stg__automations_customer_winback_active", "block_contents": "Gives information wheather a user has an active customer winback automation. A customer winback automatoin is any automation with webhook \"subscription/confirm\""}, "doc.yoda.communication_stg__automations_customer_winback_active_is_enabled_automation_winback": {"name": "communication_stg__automations_customer_winback_active_is_enabled_automation_winback", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.md", "unique_id": "doc.yoda.communication_stg__automations_customer_winback_active_is_enabled_automation_winback", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__automations_customer_winback_active_sms_user_id": {"name": "communication_stg__automations_customer_winback_active_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.md", "unique_id": "doc.yoda.communication_stg__automations_customer_winback_active_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__automations_customer_winback_active_user_id": {"name": "communication_stg__automations_customer_winback_active_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_customer_winback_active/communication_stg__automations_customer_winback_active.md", "unique_id": "doc.yoda.communication_stg__automations_customer_winback_active_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__automations_welcome_active": {"name": "communication_stg__automations_welcome_active", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.md", "unique_id": "doc.yoda.communication_stg__automations_welcome_active", "block_contents": "Gives information wheather a user has an active welcome automation. A welcome automation is any automation with webhook \"subscription/confirm\""}, "doc.yoda.communication_stg__automations_welcome_active_is_enabled_automation_welcome": {"name": "communication_stg__automations_welcome_active_is_enabled_automation_welcome", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.md", "unique_id": "doc.yoda.communication_stg__automations_welcome_active_is_enabled_automation_welcome", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__automations_welcome_active_sms_user_id": {"name": "communication_stg__automations_welcome_active_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.md", "unique_id": "doc.yoda.communication_stg__automations_welcome_active_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__automations_welcome_active_user_id": {"name": "communication_stg__automations_welcome_active_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__automations_welcome_active/communication_stg__automations_welcome_active.md", "unique_id": "doc.yoda.communication_stg__automations_welcome_active_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__campaigns_sent_count": {"name": "communication_stg__campaigns_sent_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__campaigns_sent_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_sent_count_campaigns_count": {"name": "communication_stg__campaigns_sent_count_campaigns_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__campaigns_sent_count_campaigns_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__campaigns_sent_count_sms_user_id": {"name": "communication_stg__campaigns_sent_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__campaigns_sent_count_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__campaigns_sent_count_user_id": {"name": "communication_stg__campaigns_sent_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__campaigns_sent_count/communication_stg__campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__campaigns_sent_count_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__campaigns_sent_last_thirty_days_count": {"name": "communication_stg__campaigns_sent_last_thirty_days_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__campaigns_sent_last_thirty_days_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__campaigns_sent_last_thirty_days_count_campaigns_count_last_thirty_days": {"name": "communication_stg__campaigns_sent_last_thirty_days_count_campaigns_count_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__campaigns_sent_last_thirty_days_count_campaigns_count_last_thirty_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__campaigns_sent_last_thirty_days_count_emailcampaignscount": {"name": "communication_stg__campaigns_sent_last_thirty_days_count_emailcampaignscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__campaigns_sent_last_thirty_days_count_emailcampaignscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__campaigns_sent_last_thirty_days_count_sms_user_id": {"name": "communication_stg__campaigns_sent_last_thirty_days_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__campaigns_sent_last_thirty_days_count_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__campaigns_sent_last_thirty_days_count_user_id": {"name": "communication_stg__campaigns_sent_last_thirty_days_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__campaigns_sent_last_thirty_days_count/communication_stg__campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__campaigns_sent_last_thirty_days_count_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__cs_forms_count_forms_count": {"name": "communication_stg__cs_forms_count_forms_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.md", "unique_id": "doc.yoda.communication_stg__cs_forms_count_forms_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__cs_forms_count_popup_tool_enabled": {"name": "communication_stg__cs_forms_count_popup_tool_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.md", "unique_id": "doc.yoda.communication_stg__cs_forms_count_popup_tool_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__cs_forms_count_sms_user_id": {"name": "communication_stg__cs_forms_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.md", "unique_id": "doc.yoda.communication_stg__cs_forms_count_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__cs_forms_count_user_id": {"name": "communication_stg__cs_forms_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_forms_count/communication_stg__cs_forms_count.md", "unique_id": "doc.yoda.communication_stg__cs_forms_count_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__cs_keywords_count_keywords_count": {"name": "communication_stg__cs_keywords_count_keywords_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_keywords_count/communication_stg__cs_keywords_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_keywords_count/communication_stg__cs_keywords_count.md", "unique_id": "doc.yoda.communication_stg__cs_keywords_count_keywords_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__cs_keywords_count_sms_user_id": {"name": "communication_stg__cs_keywords_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_keywords_count/communication_stg__cs_keywords_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_keywords_count/communication_stg__cs_keywords_count.md", "unique_id": "doc.yoda.communication_stg__cs_keywords_count_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__cs_keywords_count_user_id": {"name": "communication_stg__cs_keywords_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_keywords_count/communication_stg__cs_keywords_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_keywords_count/communication_stg__cs_keywords_count.md", "unique_id": "doc.yoda.communication_stg__cs_keywords_count_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__cs_pages_count_pages_count": {"name": "communication_stg__cs_pages_count_pages_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_pages_count/communication_stg__cs_pages_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_pages_count/communication_stg__cs_pages_count.md", "unique_id": "doc.yoda.communication_stg__cs_pages_count_pages_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__cs_pages_count_sms_user_id": {"name": "communication_stg__cs_pages_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_pages_count/communication_stg__cs_pages_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_pages_count/communication_stg__cs_pages_count.md", "unique_id": "doc.yoda.communication_stg__cs_pages_count_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__cs_pages_count_user_id": {"name": "communication_stg__cs_pages_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__cs_pages_count/communication_stg__cs_pages_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__cs_pages_count/communication_stg__cs_pages_count.md", "unique_id": "doc.yoda.communication_stg__cs_pages_count_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__email_campaigns_count_emailcampaignscount": {"name": "communication_stg__email_campaigns_count_emailcampaignscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_count/communication_stg__email_campaigns_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_count/communication_stg__email_campaigns_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_count_emailcampaignscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__email_campaigns_count_sms_user_id": {"name": "communication_stg__email_campaigns_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_count/communication_stg__email_campaigns_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_count/communication_stg__email_campaigns_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_count_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__email_campaigns_count_user_id": {"name": "communication_stg__email_campaigns_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_count/communication_stg__email_campaigns_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_count/communication_stg__email_campaigns_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_count_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__email_campaigns_sent_count": {"name": "communication_stg__email_campaigns_sent_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_sent_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__email_campaigns_sent_count_email_campaigns_count": {"name": "communication_stg__email_campaigns_sent_count_email_campaigns_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_sent_count_email_campaigns_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_campaigns_sent_count_emailcampaignscount": {"name": "communication_stg__email_campaigns_sent_count_emailcampaignscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_sent_count_emailcampaignscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_campaigns_sent_count_sms_user_id": {"name": "communication_stg__email_campaigns_sent_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_sent_count_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_campaigns_sent_count_user_id": {"name": "communication_stg__email_campaigns_sent_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_count/communication_stg__email_campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_sent_count_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count": {"name": "communication_stg__email_campaigns_sent_last_thirty_days_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count_email_campaigns_count_last_thirty_days": {"name": "communication_stg__email_campaigns_sent_last_thirty_days_count_email_campaigns_count_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count_email_campaigns_count_last_thirty_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count_emailcampaignscount": {"name": "communication_stg__email_campaigns_sent_last_thirty_days_count_emailcampaignscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count_emailcampaignscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count_sms_user_id": {"name": "communication_stg__email_campaigns_sent_last_thirty_days_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count_user_id": {"name": "communication_stg__email_campaigns_sent_last_thirty_days_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_campaigns_sent_last_thirty_days_count/communication_stg__email_campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_intent_popup_first_accept_date": {"name": "communication_stg__email_intent_popup_first_accept_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_first_accept_date", "block_contents": "Gives the date of the first time a user accepted the popup"}, "doc.yoda.communication_stg__email_intent_popup_first_accept_date_email_intent_popup_first_accept_date": {"name": "communication_stg__email_intent_popup_first_accept_date_email_intent_popup_first_accept_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_first_accept_date_email_intent_popup_first_accept_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_intent_popup_first_accept_date_sms_user_id": {"name": "communication_stg__email_intent_popup_first_accept_date_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_first_accept_date_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_intent_popup_first_accept_date_user_id": {"name": "communication_stg__email_intent_popup_first_accept_date_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_accept_date/communication_stg__email_intent_popup_first_accept_date.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_first_accept_date_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_intent_popup_first_decline_date": {"name": "communication_stg__email_intent_popup_first_decline_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_first_decline_date", "block_contents": "Gives the date of the first time a user declined the popup"}, "doc.yoda.communication_stg__email_intent_popup_first_decline_date_email_intent_popup_first_decline_date": {"name": "communication_stg__email_intent_popup_first_decline_date_email_intent_popup_first_decline_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_first_decline_date_email_intent_popup_first_decline_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_intent_popup_first_decline_date_sms_user_id": {"name": "communication_stg__email_intent_popup_first_decline_date_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_first_decline_date_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_intent_popup_first_decline_date_user_id": {"name": "communication_stg__email_intent_popup_first_decline_date_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_first_decline_date/communication_stg__email_intent_popup_first_decline_date.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_first_decline_date_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_intent_popup_status": {"name": "communication_stg__email_intent_popup_status", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__email_intent_popup_status_button_name": {"name": "communication_stg__email_intent_popup_status_button_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_status_button_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_intent_popup_status_email_intent_popup_last_choice": {"name": "communication_stg__email_intent_popup_status_email_intent_popup_last_choice", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_status_email_intent_popup_last_choice", "block_contents": "The last choice of the user, accepted is true, declined is false."}, "doc.yoda.communication_stg__email_intent_popup_status_email_intent_popup_last_choice_date": {"name": "communication_stg__email_intent_popup_status_email_intent_popup_last_choice_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_status_email_intent_popup_last_choice_date", "block_contents": "The date of the last choice from a user, either accepted or declined."}, "doc.yoda.communication_stg__email_intent_popup_status_sms_user_id": {"name": "communication_stg__email_intent_popup_status_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_status_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_intent_popup_status_user_id": {"name": "communication_stg__email_intent_popup_status_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_intent_popup_status/communication_stg__email_intent_popup_status.md", "unique_id": "doc.yoda.communication_stg__email_intent_popup_status_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_shopify_orders_analytics": {"name": "communication_stg__email_shopify_orders_analytics", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__email_shopify_orders_analytics", "block_contents": "Shopify orders which were created after using the Email product"}, "doc.yoda.communication_stg__email_shopify_orders_analytics_app_key": {"name": "communication_stg__email_shopify_orders_analytics_app_key", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__email_shopify_orders_analytics_app_key", "block_contents": "Yotpo App Key"}, "doc.yoda.communication_stg__email_shopify_orders_analytics_currency": {"name": "communication_stg__email_shopify_orders_analytics_currency", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__email_shopify_orders_analytics_currency", "block_contents": "Currency (USD, EUR, etc)"}, "doc.yoda.communication_stg__email_shopify_orders_analytics_external_customer_id": {"name": "communication_stg__email_shopify_orders_analytics_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__email_shopify_orders_analytics_external_customer_id", "block_contents": "External Customer ID"}, "doc.yoda.communication_stg__email_shopify_orders_analytics_order_date": {"name": "communication_stg__email_shopify_orders_analytics_order_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__email_shopify_orders_analytics_order_date", "block_contents": "Order date"}, "doc.yoda.communication_stg__email_shopify_orders_analytics_order_id": {"name": "communication_stg__email_shopify_orders_analytics_order_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__email_shopify_orders_analytics_order_id", "block_contents": "Shopify Order ID"}, "doc.yoda.communication_stg__email_shopify_orders_analytics_total_price": {"name": "communication_stg__email_shopify_orders_analytics_total_price", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_shopify_orders_analytics/communication_stg__email_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__email_shopify_orders_analytics_total_price", "block_contents": "Amount (decimal)"}, "doc.yoda.communication_stg__email_subscribers_count": {"name": "communication_stg__email_subscribers_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.md", "unique_id": "doc.yoda.communication_stg__email_subscribers_count", "block_contents": "Number of email subscribers per store"}, "doc.yoda.communication_stg__email_subscribers_count_emailsubscriberscount": {"name": "communication_stg__email_subscribers_count_emailsubscriberscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.md", "unique_id": "doc.yoda.communication_stg__email_subscribers_count_emailsubscriberscount", "block_contents": "Number of email subscribers"}, "doc.yoda.communication_stg__email_subscribers_count_sms_user_id": {"name": "communication_stg__email_subscribers_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.md", "unique_id": "doc.yoda.communication_stg__email_subscribers_count_sms_user_id", "block_contents": "SMS User ID"}, "doc.yoda.communication_stg__email_subscribers_count_user_id": {"name": "communication_stg__email_subscribers_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_subscribers_count/communication_stg__email_subscribers_count.md", "unique_id": "doc.yoda.communication_stg__email_subscribers_count_user_id", "block_contents": "User ID"}, "doc.yoda.communication_stg__email_usage_avg_last_three_months": {"name": "communication_stg__email_usage_avg_last_three_months", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__email_usage_avg_last_three_months", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__email_usage_avg_last_three_months_email_credits_used_last_three_months_average": {"name": "communication_stg__email_usage_avg_last_three_months_email_credits_used_last_three_months_average", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__email_usage_avg_last_three_months_email_credits_used_last_three_months_average", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_usage_avg_last_three_months_sms_user_id": {"name": "communication_stg__email_usage_avg_last_three_months_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__email_usage_avg_last_three_months_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__email_usage_avg_last_three_months_user_id": {"name": "communication_stg__email_usage_avg_last_three_months_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__email_usage_avg_last_three_months/communication_stg__email_usage_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__email_usage_avg_last_three_months_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_email_campaign_sent": {"name": "communication_stg__first_email_campaign_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__first_email_campaign_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__first_email_campaign_sent_first_email_campaign_sent_date": {"name": "communication_stg__first_email_campaign_sent_first_email_campaign_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__first_email_campaign_sent_first_email_campaign_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_email_campaign_sent_sms_user_id": {"name": "communication_stg__first_email_campaign_sent_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__first_email_campaign_sent_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_email_campaign_sent_user_id": {"name": "communication_stg__first_email_campaign_sent_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_email_campaign_sent/communication_stg__first_email_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__first_email_campaign_sent_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_email_message_sent": {"name": "communication_stg__first_email_message_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.md", "unique_id": "doc.yoda.communication_stg__first_email_message_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__first_email_message_sent_first_email_message_sent_date": {"name": "communication_stg__first_email_message_sent_first_email_message_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.md", "unique_id": "doc.yoda.communication_stg__first_email_message_sent_first_email_message_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_email_message_sent_sms_user_id": {"name": "communication_stg__first_email_message_sent_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.md", "unique_id": "doc.yoda.communication_stg__first_email_message_sent_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_email_message_sent_user_id": {"name": "communication_stg__first_email_message_sent_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_email_message_sent/communication_stg__first_email_message_sent.md", "unique_id": "doc.yoda.communication_stg__first_email_message_sent_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_sms_campaign_sent": {"name": "communication_stg__first_sms_campaign_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__first_sms_campaign_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__first_sms_campaign_sent_first_sms_campaign_sent_date": {"name": "communication_stg__first_sms_campaign_sent_first_sms_campaign_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__first_sms_campaign_sent_first_sms_campaign_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_sms_campaign_sent_sms_user_id": {"name": "communication_stg__first_sms_campaign_sent_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__first_sms_campaign_sent_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_sms_campaign_sent_user_id": {"name": "communication_stg__first_sms_campaign_sent_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_sms_campaign_sent/communication_stg__first_sms_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__first_sms_campaign_sent_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_sms_message_sent": {"name": "communication_stg__first_sms_message_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.md", "unique_id": "doc.yoda.communication_stg__first_sms_message_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__first_sms_message_sent_first_email_message_sent_date": {"name": "communication_stg__first_sms_message_sent_first_email_message_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.md", "unique_id": "doc.yoda.communication_stg__first_sms_message_sent_first_email_message_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_sms_message_sent_first_sms_message_sent_date": {"name": "communication_stg__first_sms_message_sent_first_sms_message_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.md", "unique_id": "doc.yoda.communication_stg__first_sms_message_sent_first_sms_message_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_sms_message_sent_sms_user_id": {"name": "communication_stg__first_sms_message_sent_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.md", "unique_id": "doc.yoda.communication_stg__first_sms_message_sent_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__first_sms_message_sent_user_id": {"name": "communication_stg__first_sms_message_sent_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__first_sms_message_sent/communication_stg__first_sms_message_sent.md", "unique_id": "doc.yoda.communication_stg__first_sms_message_sent_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__flows_abandoned_checkout_active": {"name": "communication_stg__flows_abandoned_checkout_active", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.md", "unique_id": "doc.yoda.communication_stg__flows_abandoned_checkout_active", "block_contents": "Gives information wheather a user has an active abandoned checkout flow. An abandoned checkout flow is any flow with trigger \"checkouts/create\""}, "doc.yoda.communication_stg__flows_abandoned_checkout_active_is_enabled_flows_abandoned_checkout": {"name": "communication_stg__flows_abandoned_checkout_active_is_enabled_flows_abandoned_checkout", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.md", "unique_id": "doc.yoda.communication_stg__flows_abandoned_checkout_active_is_enabled_flows_abandoned_checkout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__flows_abandoned_checkout_active_sms_user_id": {"name": "communication_stg__flows_abandoned_checkout_active_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.md", "unique_id": "doc.yoda.communication_stg__flows_abandoned_checkout_active_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__flows_abandoned_checkout_active_user_id": {"name": "communication_stg__flows_abandoned_checkout_active_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_abandoned_checkout_active/communication_stg__flows_abandoned_checkout_active.md", "unique_id": "doc.yoda.communication_stg__flows_abandoned_checkout_active_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__flows_count_sms_user_id": {"name": "communication_stg__flows_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_count/communication_stg__flows_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_count/communication_stg__flows_count.md", "unique_id": "doc.yoda.communication_stg__flows_count_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_count_smsbumpflowscount": {"name": "communication_stg__flows_count_smsbumpflowscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_count/communication_stg__flows_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_count/communication_stg__flows_count.md", "unique_id": "doc.yoda.communication_stg__flows_count_smsbumpflowscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_count_user_id": {"name": "communication_stg__flows_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_count/communication_stg__flows_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_count/communication_stg__flows_count.md", "unique_id": "doc.yoda.communication_stg__flows_count_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__flows_customer_winback_active": {"name": "communication_stg__flows_customer_winback_active", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.md", "unique_id": "doc.yoda.communication_stg__flows_customer_winback_active", "block_contents": "Gives information wheather a user has an active customer winback flow. A customer winback flow is any flow with trigger \"subscription/confirm\""}, "doc.yoda.communication_stg__flows_customer_winback_active_is_enabled_flows_customer_winback": {"name": "communication_stg__flows_customer_winback_active_is_enabled_flows_customer_winback", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.md", "unique_id": "doc.yoda.communication_stg__flows_customer_winback_active_is_enabled_flows_customer_winback", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__flows_customer_winback_active_sms_user_id": {"name": "communication_stg__flows_customer_winback_active_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.md", "unique_id": "doc.yoda.communication_stg__flows_customer_winback_active_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__flows_customer_winback_active_user_id": {"name": "communication_stg__flows_customer_winback_active_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_customer_winback_active/communication_stg__flows_customer_winback_active.md", "unique_id": "doc.yoda.communication_stg__flows_customer_winback_active_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__flows_welcome_active": {"name": "communication_stg__flows_welcome_active", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.md", "unique_id": "doc.yoda.communication_stg__flows_welcome_active", "block_contents": "Gives information wheather a user has an active welcome flow. A welcome flow is any flow with trigger \"subscription/confirm\""}, "doc.yoda.communication_stg__flows_welcome_active_is_enabled_flows_welcome": {"name": "communication_stg__flows_welcome_active_is_enabled_flows_welcome", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.md", "unique_id": "doc.yoda.communication_stg__flows_welcome_active_is_enabled_flows_welcome", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__flows_welcome_active_sms_user_id": {"name": "communication_stg__flows_welcome_active_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.md", "unique_id": "doc.yoda.communication_stg__flows_welcome_active_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__flows_welcome_active_user_id": {"name": "communication_stg__flows_welcome_active_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__flows_welcome_active/communication_stg__flows_welcome_active.md", "unique_id": "doc.yoda.communication_stg__flows_welcome_active_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__integrations_count_sms_user_id": {"name": "communication_stg__integrations_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__integrations_count/communication_stg__integrations_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__integrations_count/communication_stg__integrations_count.md", "unique_id": "doc.yoda.communication_stg__integrations_count_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__integrations_count_smsbumpintegrationscount": {"name": "communication_stg__integrations_count_smsbumpintegrationscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__integrations_count/communication_stg__integrations_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__integrations_count/communication_stg__integrations_count.md", "unique_id": "doc.yoda.communication_stg__integrations_count_smsbumpintegrationscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__integrations_count_user_id": {"name": "communication_stg__integrations_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__integrations_count/communication_stg__integrations_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__integrations_count/communication_stg__integrations_count.md", "unique_id": "doc.yoda.communication_stg__integrations_count_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__klaviyo_integration_enabled": {"name": "communication_stg__klaviyo_integration_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.md", "unique_id": "doc.yoda.communication_stg__klaviyo_integration_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__klaviyo_integration_enabled_klaviyo_integration_enabled": {"name": "communication_stg__klaviyo_integration_enabled_klaviyo_integration_enabled", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.md", "unique_id": "doc.yoda.communication_stg__klaviyo_integration_enabled_klaviyo_integration_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_integration_enabled_sms_user_id": {"name": "communication_stg__klaviyo_integration_enabled_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.md", "unique_id": "doc.yoda.communication_stg__klaviyo_integration_enabled_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__klaviyo_integration_enabled_user_id": {"name": "communication_stg__klaviyo_integration_enabled_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__klaviyo_integration_enabled/communication_stg__klaviyo_integration_enabled.md", "unique_id": "doc.yoda.communication_stg__klaviyo_integration_enabled_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_email_campaign_sent": {"name": "communication_stg__last_email_campaign_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__last_email_campaign_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__last_email_campaign_sent_first_sms_campaign_sent_date": {"name": "communication_stg__last_email_campaign_sent_first_sms_campaign_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__last_email_campaign_sent_first_sms_campaign_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_email_campaign_sent_last_email_campaign_sent_date": {"name": "communication_stg__last_email_campaign_sent_last_email_campaign_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__last_email_campaign_sent_last_email_campaign_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_email_campaign_sent_sms_user_id": {"name": "communication_stg__last_email_campaign_sent_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__last_email_campaign_sent_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_email_campaign_sent_user_id": {"name": "communication_stg__last_email_campaign_sent_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_campaign_sent/communication_stg__last_email_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__last_email_campaign_sent_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_email_message_sent": {"name": "communication_stg__last_email_message_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.md", "unique_id": "doc.yoda.communication_stg__last_email_message_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__last_email_message_sent_first_email_message_sent_date": {"name": "communication_stg__last_email_message_sent_first_email_message_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.md", "unique_id": "doc.yoda.communication_stg__last_email_message_sent_first_email_message_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_email_message_sent_last_email_message_sent_date": {"name": "communication_stg__last_email_message_sent_last_email_message_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.md", "unique_id": "doc.yoda.communication_stg__last_email_message_sent_last_email_message_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_email_message_sent_sms_user_id": {"name": "communication_stg__last_email_message_sent_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.md", "unique_id": "doc.yoda.communication_stg__last_email_message_sent_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_email_message_sent_user_id": {"name": "communication_stg__last_email_message_sent_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_email_message_sent/communication_stg__last_email_message_sent.md", "unique_id": "doc.yoda.communication_stg__last_email_message_sent_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_sms_campaign_sent": {"name": "communication_stg__last_sms_campaign_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__last_sms_campaign_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__last_sms_campaign_sent_first_sms_campaign_sent_date": {"name": "communication_stg__last_sms_campaign_sent_first_sms_campaign_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__last_sms_campaign_sent_first_sms_campaign_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_sms_campaign_sent_last_sms_campaign_sent_date": {"name": "communication_stg__last_sms_campaign_sent_last_sms_campaign_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__last_sms_campaign_sent_last_sms_campaign_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_sms_campaign_sent_sms_user_id": {"name": "communication_stg__last_sms_campaign_sent_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__last_sms_campaign_sent_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_sms_campaign_sent_user_id": {"name": "communication_stg__last_sms_campaign_sent_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_campaign_sent/communication_stg__last_sms_campaign_sent.md", "unique_id": "doc.yoda.communication_stg__last_sms_campaign_sent_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_sms_message_sent": {"name": "communication_stg__last_sms_message_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.md", "unique_id": "doc.yoda.communication_stg__last_sms_message_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__last_sms_message_sent_first_email_message_sent_date": {"name": "communication_stg__last_sms_message_sent_first_email_message_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.md", "unique_id": "doc.yoda.communication_stg__last_sms_message_sent_first_email_message_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_sms_message_sent_last_sms_message_sent_date": {"name": "communication_stg__last_sms_message_sent_last_sms_message_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.md", "unique_id": "doc.yoda.communication_stg__last_sms_message_sent_last_sms_message_sent_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_sms_message_sent_sms_user_id": {"name": "communication_stg__last_sms_message_sent_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.md", "unique_id": "doc.yoda.communication_stg__last_sms_message_sent_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__last_sms_message_sent_user_id": {"name": "communication_stg__last_sms_message_sent_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__last_sms_message_sent/communication_stg__last_sms_message_sent.md", "unique_id": "doc.yoda.communication_stg__last_sms_message_sent_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__measurements_bigcommerce_users": {"name": "communication_stg__measurements_bigcommerce_users", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__measurements_bigcommerce_users", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__measurements_bigcommerce_users_bigcommerce_plan_name": {"name": "communication_stg__measurements_bigcommerce_users_bigcommerce_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__measurements_bigcommerce_users_bigcommerce_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__measurements_bigcommerce_users_sms_user_id": {"name": "communication_stg__measurements_bigcommerce_users_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__measurements_bigcommerce_users_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__measurements_bigcommerce_users_user_id": {"name": "communication_stg__measurements_bigcommerce_users_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_bigcommerce_users/communication_stg__measurements_bigcommerce_users.md", "unique_id": "doc.yoda.communication_stg__measurements_bigcommerce_users_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__measurements_shopify_users_notification_email": {"name": "communication_stg__measurements_shopify_users_notification_email", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "unique_id": "doc.yoda.communication_stg__measurements_shopify_users_notification_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__measurements_shopify_users_shopifyplan": {"name": "communication_stg__measurements_shopify_users_shopifyplan", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "unique_id": "doc.yoda.communication_stg__measurements_shopify_users_shopifyplan", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__measurements_shopify_users_shopifystoreage": {"name": "communication_stg__measurements_shopify_users_shopifystoreage", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "unique_id": "doc.yoda.communication_stg__measurements_shopify_users_shopifystoreage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__measurements_shopify_users_sms_user_id": {"name": "communication_stg__measurements_shopify_users_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "unique_id": "doc.yoda.communication_stg__measurements_shopify_users_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__measurements_shopify_users_smsbumpautoreload": {"name": "communication_stg__measurements_shopify_users_smsbumpautoreload", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "unique_id": "doc.yoda.communication_stg__measurements_shopify_users_smsbumpautoreload", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__measurements_shopify_users_user_id": {"name": "communication_stg__measurements_shopify_users_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_shopify_users/communication_stg__measurements_shopify_users.md", "unique_id": "doc.yoda.communication_stg__measurements_shopify_users_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__measurements_users_sms_user_id": {"name": "communication_stg__measurements_users_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "unique_id": "doc.yoda.communication_stg__measurements_users_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__measurements_users_smsbump_plan_name": {"name": "communication_stg__measurements_users_smsbump_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "unique_id": "doc.yoda.communication_stg__measurements_users_smsbump_plan_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__measurements_users_smsbumpplantype": {"name": "communication_stg__measurements_users_smsbumpplantype", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "unique_id": "doc.yoda.communication_stg__measurements_users_smsbumpplantype", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__measurements_users_smscreditsamount": {"name": "communication_stg__measurements_users_smscreditsamount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "unique_id": "doc.yoda.communication_stg__measurements_users_smscreditsamount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__measurements_users_userEmail": {"name": "communication_stg__measurements_users_userEmail", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "unique_id": "doc.yoda.communication_stg__measurements_users_userEmail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__measurements_users_user_id": {"name": "communication_stg__measurements_users_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__measurements_users/communication_stg__measurements_users.md", "unique_id": "doc.yoda.communication_stg__measurements_users_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__overall_emails_sent_from_campaigns": {"name": "communication_stg__overall_emails_sent_from_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.md", "unique_id": "doc.yoda.communication_stg__overall_emails_sent_from_campaigns", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__overall_emails_sent_from_campaigns_sms_user_id": {"name": "communication_stg__overall_emails_sent_from_campaigns_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.md", "unique_id": "doc.yoda.communication_stg__overall_emails_sent_from_campaigns_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__overall_emails_sent_from_campaigns_total_email_messages_sent": {"name": "communication_stg__overall_emails_sent_from_campaigns_total_email_messages_sent", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.md", "unique_id": "doc.yoda.communication_stg__overall_emails_sent_from_campaigns_total_email_messages_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__overall_emails_sent_from_campaigns_user_id": {"name": "communication_stg__overall_emails_sent_from_campaigns_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__overall_emails_sent_from_campaigns/communication_stg__overall_emails_sent_from_campaigns.md", "unique_id": "doc.yoda.communication_stg__overall_emails_sent_from_campaigns_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__recently_active_users_sms_user_id": {"name": "communication_stg__recently_active_users_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__recently_active_users/communication_stg__recently_active_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__recently_active_users/communication_stg__recently_active_users.md", "unique_id": "doc.yoda.communication_stg__recently_active_users_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__recently_active_users_user_id": {"name": "communication_stg__recently_active_users_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__recently_active_users/communication_stg__recently_active_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__recently_active_users/communication_stg__recently_active_users.md", "unique_id": "doc.yoda.communication_stg__recently_active_users_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__recently_active_users_yotpo_app_key": {"name": "communication_stg__recently_active_users_yotpo_app_key", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__recently_active_users/communication_stg__recently_active_users.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__recently_active_users/communication_stg__recently_active_users.md", "unique_id": "doc.yoda.communication_stg__recently_active_users_yotpo_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__send_chat_message": {"name": "communication_stg__send_chat_message", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.md", "unique_id": "doc.yoda.communication_stg__send_chat_message", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__send_chat_message_sent_chat_messages": {"name": "communication_stg__send_chat_message_sent_chat_messages", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.md", "unique_id": "doc.yoda.communication_stg__send_chat_message_sent_chat_messages", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__send_chat_message_sms_user_id": {"name": "communication_stg__send_chat_message_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.md", "unique_id": "doc.yoda.communication_stg__send_chat_message_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__send_chat_message_user_id": {"name": "communication_stg__send_chat_message_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__send_chat_message/communication_stg__send_chat_message.md", "unique_id": "doc.yoda.communication_stg__send_chat_message_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__shopify_orders_shopifyorderscount": {"name": "communication_stg__shopify_orders_shopifyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__shopify_orders/communication_stg__shopify_orders.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__shopify_orders/communication_stg__shopify_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_orders_shopifyorderscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_orders_sms_user_id": {"name": "communication_stg__shopify_orders_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__shopify_orders/communication_stg__shopify_orders.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__shopify_orders/communication_stg__shopify_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_orders_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__shopify_orders_user_id": {"name": "communication_stg__shopify_orders_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__shopify_orders/communication_stg__shopify_orders.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__shopify_orders/communication_stg__shopify_orders.md", "unique_id": "doc.yoda.communication_stg__shopify_orders_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__sms_campaigns_count_sms_user_id": {"name": "communication_stg__sms_campaigns_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_count/communication_stg__sms_campaigns_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_count/communication_stg__sms_campaigns_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_count_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__sms_campaigns_count_smscampaignscount": {"name": "communication_stg__sms_campaigns_count_smscampaignscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_count/communication_stg__sms_campaigns_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_count/communication_stg__sms_campaigns_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_count_smscampaignscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__sms_campaigns_count_user_id": {"name": "communication_stg__sms_campaigns_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_count/communication_stg__sms_campaigns_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_count/communication_stg__sms_campaigns_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_count_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__sms_campaigns_sent_count": {"name": "communication_stg__sms_campaigns_sent_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_sent_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__sms_campaigns_sent_count_emailcampaignscount": {"name": "communication_stg__sms_campaigns_sent_count_emailcampaignscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_sent_count_emailcampaignscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__sms_campaigns_sent_count_sms_campaigns_sent_count": {"name": "communication_stg__sms_campaigns_sent_count_sms_campaigns_sent_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_sent_count_sms_campaigns_sent_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__sms_campaigns_sent_count_sms_user_id": {"name": "communication_stg__sms_campaigns_sent_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_sent_count_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__sms_campaigns_sent_count_user_id": {"name": "communication_stg__sms_campaigns_sent_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_count/communication_stg__sms_campaigns_sent_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_sent_count_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count": {"name": "communication_stg__sms_campaigns_sent_last_thirty_days_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count_emailcampaignscount": {"name": "communication_stg__sms_campaigns_sent_last_thirty_days_count_emailcampaignscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count_emailcampaignscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count_sms_campaigns_sent_last_thirty_days": {"name": "communication_stg__sms_campaigns_sent_last_thirty_days_count_sms_campaigns_sent_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count_sms_campaigns_sent_last_thirty_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count_sms_user_id": {"name": "communication_stg__sms_campaigns_sent_last_thirty_days_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count_user_id": {"name": "communication_stg__sms_campaigns_sent_last_thirty_days_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_campaigns_sent_last_thirty_days_count/communication_stg__sms_campaigns_sent_last_thirty_days_count.md", "unique_id": "doc.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__sms_shopify_orders_analytics": {"name": "communication_stg__sms_shopify_orders_analytics", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__sms_shopify_orders_analytics", "block_contents": "Shopify orders which were created after using the SMS product"}, "doc.yoda.communication_stg__sms_shopify_orders_analytics_app_key": {"name": "communication_stg__sms_shopify_orders_analytics_app_key", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__sms_shopify_orders_analytics_app_key", "block_contents": "Yotpo App Key"}, "doc.yoda.communication_stg__sms_shopify_orders_analytics_currency": {"name": "communication_stg__sms_shopify_orders_analytics_currency", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__sms_shopify_orders_analytics_currency", "block_contents": "Currency (USD, EUR, etc)"}, "doc.yoda.communication_stg__sms_shopify_orders_analytics_external_customer_id": {"name": "communication_stg__sms_shopify_orders_analytics_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__sms_shopify_orders_analytics_external_customer_id", "block_contents": "External Customer ID"}, "doc.yoda.communication_stg__sms_shopify_orders_analytics_order_date": {"name": "communication_stg__sms_shopify_orders_analytics_order_date", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__sms_shopify_orders_analytics_order_date", "block_contents": "Shopify date"}, "doc.yoda.communication_stg__sms_shopify_orders_analytics_order_id": {"name": "communication_stg__sms_shopify_orders_analytics_order_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__sms_shopify_orders_analytics_order_id", "block_contents": "Shopify Order ID"}, "doc.yoda.communication_stg__sms_shopify_orders_analytics_total_price": {"name": "communication_stg__sms_shopify_orders_analytics_total_price", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_shopify_orders_analytics/communication_stg__sms_shopify_orders_analytics.md", "unique_id": "doc.yoda.communication_stg__sms_shopify_orders_analytics_total_price", "block_contents": "Amount (decimal)"}, "doc.yoda.communication_stg__sms_subscribers_count_sms_user_id": {"name": "communication_stg__sms_subscribers_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_subscribers_count/communication_stg__sms_subscribers_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_subscribers_count/communication_stg__sms_subscribers_count.md", "unique_id": "doc.yoda.communication_stg__sms_subscribers_count_sms_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__sms_subscribers_count_smssubscriberscount": {"name": "communication_stg__sms_subscribers_count_smssubscriberscount", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_subscribers_count/communication_stg__sms_subscribers_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_subscribers_count/communication_stg__sms_subscribers_count.md", "unique_id": "doc.yoda.communication_stg__sms_subscribers_count_smssubscriberscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__sms_subscribers_count_user_id": {"name": "communication_stg__sms_subscribers_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_subscribers_count/communication_stg__sms_subscribers_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_subscribers_count/communication_stg__sms_subscribers_count.md", "unique_id": "doc.yoda.communication_stg__sms_subscribers_count_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__sms_usage_avg_last_three_months": {"name": "communication_stg__sms_usage_avg_last_three_months", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__sms_usage_avg_last_three_months", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__sms_usage_avg_last_three_months_sms_credits_used_last_three_months_average": {"name": "communication_stg__sms_usage_avg_last_three_months_sms_credits_used_last_three_months_average", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__sms_usage_avg_last_three_months_sms_credits_used_last_three_months_average", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__sms_usage_avg_last_three_months_sms_user_id": {"name": "communication_stg__sms_usage_avg_last_three_months_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__sms_usage_avg_last_three_months_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__sms_usage_avg_last_three_months_user_id": {"name": "communication_stg__sms_usage_avg_last_three_months_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__sms_usage_avg_last_three_months/communication_stg__sms_usage_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__sms_usage_avg_last_three_months_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_orders_avg_last_thirty_days": {"name": "communication_stg__total_orders_avg_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_orders_avg_last_thirty_days", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__total_orders_avg_last_thirty_days_orders_count": {"name": "communication_stg__total_orders_avg_last_thirty_days_orders_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_orders_avg_last_thirty_days_orders_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_orders_avg_last_thirty_days_orders_count_last_thirty_days": {"name": "communication_stg__total_orders_avg_last_thirty_days_orders_count_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_orders_avg_last_thirty_days_orders_count_last_thirty_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_orders_avg_last_thirty_days_sms_user_id": {"name": "communication_stg__total_orders_avg_last_thirty_days_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_orders_avg_last_thirty_days_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_orders_avg_last_thirty_days_user_id": {"name": "communication_stg__total_orders_avg_last_thirty_days_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_thirty_days/communication_stg__total_orders_avg_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_orders_avg_last_thirty_days_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_orders_avg_last_three_months": {"name": "communication_stg__total_orders_avg_last_three_months", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_orders_avg_last_three_months", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__total_orders_avg_last_three_months_orders_count": {"name": "communication_stg__total_orders_avg_last_three_months_orders_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_orders_avg_last_three_months_orders_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_orders_avg_last_three_months_orders_count_last_three_months": {"name": "communication_stg__total_orders_avg_last_three_months_orders_count_last_three_months", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_orders_avg_last_three_months_orders_count_last_three_months", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_orders_avg_last_three_months_sms_user_id": {"name": "communication_stg__total_orders_avg_last_three_months_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_orders_avg_last_three_months_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_orders_avg_last_three_months_user_id": {"name": "communication_stg__total_orders_avg_last_three_months_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_orders_avg_last_three_months/communication_stg__total_orders_avg_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_orders_avg_last_three_months_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_all_channels_all_time": {"name": "communication_stg__total_revenue_all_channels_all_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_all_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__total_revenue_all_channels_all_time_sms_user_id": {"name": "communication_stg__total_revenue_all_channels_all_time_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_all_time_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_all_channels_all_time_total_revenue_all_channels_all_time": {"name": "communication_stg__total_revenue_all_channels_all_time_total_revenue_all_channels_all_time", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_all_time_total_revenue_all_channels_all_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_all_channels_all_time_user_id": {"name": "communication_stg__total_revenue_all_channels_all_time_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_all_time/communication_stg__total_revenue_all_channels_all_time.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_all_time_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_all_channels_last_thirty_days": {"name": "communication_stg__total_revenue_all_channels_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_last_thirty_days", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__total_revenue_all_channels_last_thirty_days_sms_user_id": {"name": "communication_stg__total_revenue_all_channels_last_thirty_days_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_last_thirty_days_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_all_channels_last_thirty_days_total_revenue_all_channels_last_thirty_days": {"name": "communication_stg__total_revenue_all_channels_last_thirty_days_total_revenue_all_channels_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_last_thirty_days_total_revenue_all_channels_last_thirty_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_all_channels_last_thirty_days_user_id": {"name": "communication_stg__total_revenue_all_channels_last_thirty_days_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_thirty_days/communication_stg__total_revenue_all_channels_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_last_thirty_days_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_all_channels_last_three_months": {"name": "communication_stg__total_revenue_all_channels_last_three_months", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_last_three_months", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__total_revenue_all_channels_last_three_months_sms_user_id": {"name": "communication_stg__total_revenue_all_channels_last_three_months_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_last_three_months_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_all_channels_last_three_months_total_revenue_all_channels_last_three_months": {"name": "communication_stg__total_revenue_all_channels_last_three_months_total_revenue_all_channels_last_three_months", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_last_three_months_total_revenue_all_channels_last_three_months", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_all_channels_last_three_months_user_id": {"name": "communication_stg__total_revenue_all_channels_last_three_months_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_all_channels_last_three_months/communication_stg__total_revenue_all_channels_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_all_channels_last_three_months_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_email_last_thirty_days": {"name": "communication_stg__total_revenue_email_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_email_last_thirty_days", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__total_revenue_email_last_thirty_days_sms_user_id": {"name": "communication_stg__total_revenue_email_last_thirty_days_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_email_last_thirty_days_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_email_last_thirty_days_total_revenue_email_last_thirty_days": {"name": "communication_stg__total_revenue_email_last_thirty_days_total_revenue_email_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_email_last_thirty_days_total_revenue_email_last_thirty_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_email_last_thirty_days_user_id": {"name": "communication_stg__total_revenue_email_last_thirty_days_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_thirty_days/communication_stg__total_revenue_email_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_email_last_thirty_days_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_email_last_three_months": {"name": "communication_stg__total_revenue_email_last_three_months", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_email_last_three_months", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__total_revenue_email_last_three_months_sms_user_id": {"name": "communication_stg__total_revenue_email_last_three_months_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_email_last_three_months_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_email_last_three_months_total_revenue_email_last_three_months": {"name": "communication_stg__total_revenue_email_last_three_months_total_revenue_email_last_three_months", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_email_last_three_months_total_revenue_email_last_three_months", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_email_last_three_months_user_id": {"name": "communication_stg__total_revenue_email_last_three_months_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_email_last_three_months/communication_stg__total_revenue_email_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_email_last_three_months_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_sms_last_thirty_days": {"name": "communication_stg__total_revenue_sms_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_sms_last_thirty_days", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__total_revenue_sms_last_thirty_days_sms_user_id": {"name": "communication_stg__total_revenue_sms_last_thirty_days_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_sms_last_thirty_days_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_sms_last_thirty_days_total_revenue_sms_last_thirty_days": {"name": "communication_stg__total_revenue_sms_last_thirty_days_total_revenue_sms_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_sms_last_thirty_days_total_revenue_sms_last_thirty_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_sms_last_thirty_days_user_id": {"name": "communication_stg__total_revenue_sms_last_thirty_days_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_thirty_days/communication_stg__total_revenue_sms_last_thirty_days.md", "unique_id": "doc.yoda.communication_stg__total_revenue_sms_last_thirty_days_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_sms_last_three_months": {"name": "communication_stg__total_revenue_sms_last_three_months", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_sms_last_three_months", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__total_revenue_sms_last_three_months_sms_user_id": {"name": "communication_stg__total_revenue_sms_last_three_months_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_sms_last_three_months_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_sms_last_three_months_total_revenue_sms_last_three_months": {"name": "communication_stg__total_revenue_sms_last_three_months_total_revenue_sms_last_three_months", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_sms_last_three_months_total_revenue_sms_last_three_months", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_revenue_sms_last_three_months_user_id": {"name": "communication_stg__total_revenue_sms_last_three_months_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_revenue_sms_last_three_months/communication_stg__total_revenue_sms_last_three_months.md", "unique_id": "doc.yoda.communication_stg__total_revenue_sms_last_three_months_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_subscribers_email_count": {"name": "communication_stg__total_subscribers_email_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.md", "unique_id": "doc.yoda.communication_stg__total_subscribers_email_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__total_subscribers_email_count_email_subscribers_count": {"name": "communication_stg__total_subscribers_email_count_email_subscribers_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.md", "unique_id": "doc.yoda.communication_stg__total_subscribers_email_count_email_subscribers_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_subscribers_email_count_sms_user_id": {"name": "communication_stg__total_subscribers_email_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.md", "unique_id": "doc.yoda.communication_stg__total_subscribers_email_count_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_subscribers_email_count_user_id": {"name": "communication_stg__total_subscribers_email_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_subscribers_email_count/communication_stg__total_subscribers_email_count.md", "unique_id": "doc.yoda.communication_stg__total_subscribers_email_count_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_subscribers_sms_count": {"name": "communication_stg__total_subscribers_sms_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.md", "unique_id": "doc.yoda.communication_stg__total_subscribers_sms_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.communication_stg__total_subscribers_sms_count_sms_subscribers_count": {"name": "communication_stg__total_subscribers_sms_count_sms_subscribers_count", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.md", "unique_id": "doc.yoda.communication_stg__total_subscribers_sms_count_sms_subscribers_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_subscribers_sms_count_sms_user_id": {"name": "communication_stg__total_subscribers_sms_count_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.md", "unique_id": "doc.yoda.communication_stg__total_subscribers_sms_count_sms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.communication_stg__total_subscribers_sms_count_user_id": {"name": "communication_stg__total_subscribers_sms_count_user_id", "resource_type": "doc", "package_name": "yoda", "path": "communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.md", "original_file_path": "models/communication/staging/marts_compatible/communication_stg__total_subscribers_sms_count/communication_stg__total_subscribers_sms_count.md", "unique_id": "doc.yoda.communication_stg__total_subscribers_sms_count_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__daily_delivered_emails_by_source_name_context_source_name": {"name": "email__daily_delivered_emails_by_source_name_context_source_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.md", "original_file_path": "models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.md", "unique_id": "doc.yoda.email__daily_delivered_emails_by_source_name_context_source_name", "block_contents": "the daily aggregation source name"}, "doc.yoda.email__daily_delivered_emails_by_source_name_date": {"name": "email__daily_delivered_emails_by_source_name_date", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.md", "original_file_path": "models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.md", "unique_id": "doc.yoda.email__daily_delivered_emails_by_source_name_date", "block_contents": "aggregation date in UTC"}, "doc.yoda.email__daily_delivered_emails_by_source_name_total": {"name": "email__daily_delivered_emails_by_source_name_total", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.md", "original_file_path": "models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.md", "unique_id": "doc.yoda.email__daily_delivered_emails_by_source_name_total", "block_contents": "total emails"}, "doc.yoda.email__marts_daily_delivered_emails_by_source_name": {"name": "email__marts_daily_delivered_emails_by_source_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.md", "original_file_path": "models/email/marts/email__daily_delivered_emails_by_source_name/email__daily_delivered_emails_by_source_name.md", "unique_id": "doc.yoda.email__marts_daily_delivered_emails_by_source_name", "block_contents": "an aggregation of daily total emails by source name in UTC"}, "doc.yoda.email__daily_total_email_campaigns_date": {"name": "email__daily_total_email_campaigns_date", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.md", "original_file_path": "models/email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.md", "unique_id": "doc.yoda.email__daily_total_email_campaigns_date", "block_contents": "aggregation date"}, "doc.yoda.email__daily_total_email_campaigns_total": {"name": "email__daily_total_email_campaigns_total", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.md", "original_file_path": "models/email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.md", "unique_id": "doc.yoda.email__daily_total_email_campaigns_total", "block_contents": "total campiagns"}, "doc.yoda.email__marts_daily_total_email_campaigns": {"name": "email__marts_daily_total_email_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.md", "original_file_path": "models/email/marts/email__daily_total_email_campaigns/email__daily_total_email_campaigns.md", "unique_id": "doc.yoda.email__marts_daily_total_email_campaigns", "block_contents": "an aggregation of daily total email marketing campaign in UTC"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi": {"name": "email__email_campaign_click_to_redeem_kpi", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi", "block_contents": "email campaigns with click to redeem block that lead to redeem"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_action_attribute_type": {"name": "email__email_campaign_click_to_redeem_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_action_attribute_type", "block_contents": "points"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_action_attribute_value": {"name": "email__email_campaign_click_to_redeem_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_action_attribute_value", "block_contents": "number of points"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_action_id": {"name": "email__email_campaign_click_to_redeem_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_action_id", "block_contents": "redemption_id"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_action_type": {"name": "email__email_campaign_click_to_redeem_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_action_type", "block_contents": "redemption"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_app_key": {"name": "email__email_campaign_click_to_redeem_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_app_key", "block_contents": "The store app_key"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_customer_email": {"name": "email__email_campaign_click_to_redeem_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_customer_email", "block_contents": "customer_email"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_customer_external_id": {"name": "email__email_campaign_click_to_redeem_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_customer_external_id", "block_contents": "external_id"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_customer_phone_number": {"name": "email__email_campaign_click_to_redeem_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_customer_phone_number", "block_contents": "Field is not in use, always be empty string."}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_id": {"name": "email__email_campaign_click_to_redeem_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_order_id": {"name": "email__email_campaign_click_to_redeem_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_source_id": {"name": "email__email_campaign_click_to_redeem_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_source_id", "block_contents": "email_reference_id"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_source_type": {"name": "email__email_campaign_click_to_redeem_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_source_type", "block_contents": "campaign/email"}, "doc.yoda.email__email_campaign_click_to_redeem_kpi_synergy_id": {"name": "email__email_campaign_click_to_redeem_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_click_to_redeem_kpi/email__email_campaign_click_to_redeem_kpi.md", "unique_id": "doc.yoda.email__email_campaign_click_to_redeem_kpi_synergy_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_loyalty_kpi": {"name": "email__email_campaign_loyalty_kpi", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi", "block_contents": "campaigns that lead to redeem or signups"}, "doc.yoda.email__email_campaign_loyalty_kpi_action_attribute_type": {"name": "email__email_campaign_loyalty_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_action_attribute_type", "block_contents": "for redeem - points, for new_signups - null"}, "doc.yoda.email__email_campaign_loyalty_kpi_action_attribute_value": {"name": "email__email_campaign_loyalty_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_action_attribute_value", "block_contents": "for redeem - number of points, for new_signups - null"}, "doc.yoda.email__email_campaign_loyalty_kpi_action_id": {"name": "email__email_campaign_loyalty_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_action_id", "block_contents": "for redeem - redemption_id, for new_signups - null"}, "doc.yoda.email__email_campaign_loyalty_kpi_action_type": {"name": "email__email_campaign_loyalty_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_action_type", "block_contents": "for redeem - redemption, for new_signups - new_member"}, "doc.yoda.email__email_campaign_loyalty_kpi_app_key": {"name": "email__email_campaign_loyalty_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_app_key", "block_contents": "the store app_key"}, "doc.yoda.email__email_campaign_loyalty_kpi_customer_email": {"name": "email__email_campaign_loyalty_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.email__email_campaign_loyalty_kpi_customer_external_id": {"name": "email__email_campaign_loyalty_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_customer_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_loyalty_kpi_customer_phone_number": {"name": "email__email_campaign_loyalty_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_customer_phone_number", "block_contents": "always be null"}, "doc.yoda.email__email_campaign_loyalty_kpi_external_customer_id": {"name": "email__email_campaign_loyalty_kpi_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_external_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_loyalty_kpi_id": {"name": "email__email_campaign_loyalty_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_loyalty_kpi_order_id": {"name": "email__email_campaign_loyalty_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_loyalty_kpi_source_id": {"name": "email__email_campaign_loyalty_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_source_id", "block_contents": "email_reference_id"}, "doc.yoda.email__email_campaign_loyalty_kpi_source_type": {"name": "email__email_campaign_loyalty_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_source_type", "block_contents": "campaign/email"}, "doc.yoda.email__email_campaign_loyalty_kpi_synergy_id": {"name": "email__email_campaign_loyalty_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_loyalty_kpi/email__email_campaign_loyalty_kpi.md", "unique_id": "doc.yoda.email__email_campaign_loyalty_kpi_synergy_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi": {"name": "email__email_campaign_reviews_block_kpi", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi", "block_contents": "Email-campaigns that has reviews block in them and have order on it"}, "doc.yoda.email__email_campaign_reviews_block_kpi_action_attribute_type": {"name": "email__email_campaign_reviews_block_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_action_attribute_type", "block_contents": "Field is not in use, always be empty string."}, "doc.yoda.email__email_campaign_reviews_block_kpi_action_attribute_value": {"name": "email__email_campaign_reviews_block_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_action_attribute_value", "block_contents": "Field is not in use, always be empty string."}, "doc.yoda.email__email_campaign_reviews_block_kpi_action_id": {"name": "email__email_campaign_reviews_block_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_action_id", "block_contents": "Field is not in use, always be empty string."}, "doc.yoda.email__email_campaign_reviews_block_kpi_action_type": {"name": "email__email_campaign_reviews_block_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_action_type", "block_contents": "Field is not in use, always be empty string."}, "doc.yoda.email__email_campaign_reviews_block_kpi_app_key": {"name": "email__email_campaign_reviews_block_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_app_key", "block_contents": "The store id"}, "doc.yoda.email__email_campaign_reviews_block_kpi_blocks": {"name": "email__email_campaign_reviews_block_kpi_blocks", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_blocks", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_context_delivery_type": {"name": "email__email_campaign_reviews_block_kpi_context_delivery_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_context_delivery_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_context_reference_id": {"name": "email__email_campaign_reviews_block_kpi_context_reference_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_context_reference_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_context_source_id": {"name": "email__email_campaign_reviews_block_kpi_context_source_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_context_source_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_context_source_name": {"name": "email__email_campaign_reviews_block_kpi_context_source_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_context_source_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_context_store_id": {"name": "email__email_campaign_reviews_block_kpi_context_store_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_context_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_customer_email": {"name": "email__email_campaign_reviews_block_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_customer_email", "block_contents": "The customer email"}, "doc.yoda.email__email_campaign_reviews_block_kpi_customer_external_id": {"name": "email__email_campaign_reviews_block_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_customer_external_id", "block_contents": "The customer external id"}, "doc.yoda.email__email_campaign_reviews_block_kpi_customer_id": {"name": "email__email_campaign_reviews_block_kpi_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_customer_phone_number": {"name": "email__email_campaign_reviews_block_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_customer_phone_number", "block_contents": "Field is not in use, always be empty string."}, "doc.yoda.email__email_campaign_reviews_block_kpi_delivery_data_esp": {"name": "email__email_campaign_reviews_block_kpi_delivery_data_esp", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_delivery_data_esp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_delivery_data_ip": {"name": "email__email_campaign_reviews_block_kpi_delivery_data_ip", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_delivery_data_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_email": {"name": "email__email_campaign_reviews_block_kpi_email", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_email_address": {"name": "email__email_campaign_reviews_block_kpi_email_address", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_email_address", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_email_campaign_id": {"name": "email__email_campaign_reviews_block_kpi_email_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_email_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_click_url": {"name": "email__email_campaign_reviews_block_kpi_engagement_data_click_url", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_click_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_ip": {"name": "email__email_campaign_reviews_block_kpi_engagement_data_ip", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_is_bot_event": {"name": "email__email_campaign_reviews_block_kpi_engagement_data_is_bot_event", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_is_bot_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_machine_mpp_open": {"name": "email__email_campaign_reviews_block_kpi_engagement_data_machine_mpp_open", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_machine_mpp_open", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_browser": {"name": "email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_browser", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_browser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_browser_version": {"name": "email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_browser_version", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_browser_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_device": {"name": "email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_device", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_device", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_device_type": {"name": "email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_device_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_device_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_os": {"name": "email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_os", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_os", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_os_version": {"name": "email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_os_version", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_os_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_user_agent_line": {"name": "email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_user_agent_line", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_engagement_data_user_agent_properties_user_agent_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_error_message": {"name": "email__email_campaign_reviews_block_kpi_error_message", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_error_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_event_issuer": {"name": "email__email_campaign_reviews_block_kpi_event_issuer", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_event_issuer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_event_type": {"name": "email__email_campaign_reviews_block_kpi_event_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_event_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_external_attributes_external_event_id": {"name": "email__email_campaign_reviews_block_kpi_external_attributes_external_event_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_external_attributes_external_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_external_attributes_raw_event": {"name": "email__email_campaign_reviews_block_kpi_external_attributes_raw_event", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_external_attributes_raw_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_feedback_code": {"name": "email__email_campaign_reviews_block_kpi_feedback_code", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_feedback_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_headers_event_id": {"name": "email__email_campaign_reviews_block_kpi_headers_event_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_headers_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_headers_event_type": {"name": "email__email_campaign_reviews_block_kpi_headers_event_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_headers_event_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_headers_is_replay": {"name": "email__email_campaign_reviews_block_kpi_headers_is_replay", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_headers_is_replay", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_headers_time_sent": {"name": "email__email_campaign_reviews_block_kpi_headers_time_sent", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_headers_time_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_id": {"name": "email__email_campaign_reviews_block_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_ip_pool_name": {"name": "email__email_campaign_reviews_block_kpi_ip_pool_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_ip_pool_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_mailbox_provider": {"name": "email__email_campaign_reviews_block_kpi_mailbox_provider", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_mailbox_provider", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_name": {"name": "email__email_campaign_reviews_block_kpi_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_order_created": {"name": "email__email_campaign_reviews_block_kpi_order_created", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_order_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_order_id": {"name": "email__email_campaign_reviews_block_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_order_id", "block_contents": "The order id"}, "doc.yoda.email__email_campaign_reviews_block_kpi_partition_date": {"name": "email__email_campaign_reviews_block_kpi_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_processing_time": {"name": "email__email_campaign_reviews_block_kpi_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_productname": {"name": "email__email_campaign_reviews_block_kpi_productname", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_productname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_shopify_order_id": {"name": "email__email_campaign_reviews_block_kpi_shopify_order_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_shopify_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_sms_campaign_id": {"name": "email__email_campaign_reviews_block_kpi_sms_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_sms_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_source_id": {"name": "email__email_campaign_reviews_block_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_source_id", "block_contents": "The email reference id"}, "doc.yoda.email__email_campaign_reviews_block_kpi_source_type": {"name": "email__email_campaign_reviews_block_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_source_type", "block_contents": "The source type. always be campaign/email"}, "doc.yoda.email__email_campaign_reviews_block_kpi_storeid": {"name": "email__email_campaign_reviews_block_kpi_storeid", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_sub_user_name": {"name": "email__email_campaign_reviews_block_kpi_sub_user_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_sub_user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_synergy_id": {"name": "email__email_campaign_reviews_block_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_synergy_id", "block_contents": "The synergy id, always be 270."}, "doc.yoda.email__email_campaign_reviews_block_kpi_timestamp": {"name": "email__email_campaign_reviews_block_kpi_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_block_kpi_yotpo_app_key": {"name": "email__email_campaign_reviews_block_kpi_yotpo_app_key", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_block_kpi/email__email_campaign_reviews_block_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_block_kpi_yotpo_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_campaign_reviews_stars_kpi": {"name": "email__email_campaign_reviews_stars_kpi", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi", "block_contents": "Email-campaigns that has reviews block with star rating in them and have order on it"}, "doc.yoda.email__email_campaign_reviews_stars_kpi_action_attribute_type": {"name": "email__email_campaign_reviews_stars_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_action_attribute_type", "block_contents": "Field is not in use, always be empty string."}, "doc.yoda.email__email_campaign_reviews_stars_kpi_action_attribute_value": {"name": "email__email_campaign_reviews_stars_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_action_attribute_value", "block_contents": "Field is not in use, always be empty string."}, "doc.yoda.email__email_campaign_reviews_stars_kpi_action_id": {"name": "email__email_campaign_reviews_stars_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_action_id", "block_contents": "Field is not in use, always be empty string."}, "doc.yoda.email__email_campaign_reviews_stars_kpi_action_type": {"name": "email__email_campaign_reviews_stars_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_action_type", "block_contents": "Field is not in use, always be empty string."}, "doc.yoda.email__email_campaign_reviews_stars_kpi_app_key": {"name": "email__email_campaign_reviews_stars_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_app_key", "block_contents": "The store id"}, "doc.yoda.email__email_campaign_reviews_stars_kpi_customer_email": {"name": "email__email_campaign_reviews_stars_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_customer_email", "block_contents": "The customer email"}, "doc.yoda.email__email_campaign_reviews_stars_kpi_customer_external_id": {"name": "email__email_campaign_reviews_stars_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_customer_external_id", "block_contents": "The customer external id"}, "doc.yoda.email__email_campaign_reviews_stars_kpi_customer_phone_number": {"name": "email__email_campaign_reviews_stars_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_customer_phone_number", "block_contents": "Field is not in use, always be empty string."}, "doc.yoda.email__email_campaign_reviews_stars_kpi_id": {"name": "email__email_campaign_reviews_stars_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_id", "block_contents": "Table uuid"}, "doc.yoda.email__email_campaign_reviews_stars_kpi_order_id": {"name": "email__email_campaign_reviews_stars_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_order_id", "block_contents": "The order id"}, "doc.yoda.email__email_campaign_reviews_stars_kpi_source_id": {"name": "email__email_campaign_reviews_stars_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_source_id", "block_contents": "The email reference i"}, "doc.yoda.email__email_campaign_reviews_stars_kpi_source_type": {"name": "email__email_campaign_reviews_stars_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_source_type", "block_contents": "The source type. always be campaign/email"}, "doc.yoda.email__email_campaign_reviews_stars_kpi_synergy_id": {"name": "email__email_campaign_reviews_stars_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "original_file_path": "models/email/marts/email__email_campaign_reviews_stars_kpi/email__email_campaign_reviews_stars_kpi.md", "unique_id": "doc.yoda.email__email_campaign_reviews_stars_kpi_synergy_id", "block_contents": "The synergy id, always be 134."}, "doc.yoda.email__email_events_per_source_id_and_ip_pool": {"name": "email__email_events_per_source_id_and_ip_pool", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool", "block_contents": "display all email events unique counters based on source id and pool"}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_campaign_date": {"name": "email__email_events_per_source_id_and_ip_pool_campaign_date", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_campaign_date", "block_contents": "campaign execution date"}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_campaign_id": {"name": "email__email_events_per_source_id_and_ip_pool_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_campaign_id", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_campaign_name": {"name": "email__email_events_per_source_id_and_ip_pool_campaign_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_campaign_name", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_click": {"name": "email__email_events_per_source_id_and_ip_pool_click", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_click", "block_contents": "unique click events per campaigns"}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_contact_card_name": {"name": "email__email_events_per_source_id_and_ip_pool_contact_card_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_contact_card_name", "block_contents": "store name"}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_context_delivery_type": {"name": "email__email_events_per_source_id_and_ip_pool_context_delivery_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_context_delivery_type", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_delivered": {"name": "email__email_events_per_source_id_and_ip_pool_delivered", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_delivered", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_failed": {"name": "email__email_events_per_source_id_and_ip_pool_failed", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_failed", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_from_email": {"name": "email__email_events_per_source_id_and_ip_pool_from_email", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_from_email", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_hard_bounced": {"name": "email__email_events_per_source_id_and_ip_pool_hard_bounced", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_hard_bounced", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_ip_pool_name": {"name": "email__email_events_per_source_id_and_ip_pool_ip_pool_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_ip_pool_name", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_is_authenticated": {"name": "email__email_events_per_source_id_and_ip_pool_is_authenticated", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_is_authenticated", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_open": {"name": "email__email_events_per_source_id_and_ip_pool_open", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_open", "block_contents": "unique open events per campaigns"}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_processing_time": {"name": "email__email_events_per_source_id_and_ip_pool_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_processing_time", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_rejected": {"name": "email__email_events_per_source_id_and_ip_pool_rejected", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_rejected", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_sent": {"name": "email__email_events_per_source_id_and_ip_pool_sent", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_sent", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_soft_bounced": {"name": "email__email_events_per_source_id_and_ip_pool_soft_bounced", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_soft_bounced", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_source_name": {"name": "email__email_events_per_source_id_and_ip_pool_source_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_source_name", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_spam": {"name": "email__email_events_per_source_id_and_ip_pool_spam", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_spam", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_store_app_key": {"name": "email__email_events_per_source_id_and_ip_pool_store_app_key", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_store_app_key", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_sub_user_name": {"name": "email__email_events_per_source_id_and_ip_pool_sub_user_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_sub_user_name", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_subject": {"name": "email__email_events_per_source_id_and_ip_pool_subject", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_subject", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_succeeded": {"name": "email__email_events_per_source_id_and_ip_pool_succeeded", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_succeeded", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ip_pool_unsubscribe": {"name": "email__email_events_per_source_id_and_ip_pool_unsubscribe", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ip_pool/email__email_events_per_source_id_and_ip_pool.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ip_pool_unsubscribe", "block_contents": "unique unsubscribe events per campaigns"}, "doc.yoda.email__email_events_per_source_id_and_isp": {"name": "email__email_events_per_source_id_and_isp", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp", "block_contents": "display unique email events aggregation based on source id and isp"}, "doc.yoda.email__email_events_per_source_id_and_isp_campaign_date": {"name": "email__email_events_per_source_id_and_isp_campaign_date", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_campaign_date", "block_contents": "campaign execution date"}, "doc.yoda.email__email_events_per_source_id_and_isp_campaign_id": {"name": "email__email_events_per_source_id_and_isp_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_campaign_id", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_isp_click": {"name": "email__email_events_per_source_id_and_isp_click", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_click", "block_contents": "unique click counter"}, "doc.yoda.email__email_events_per_source_id_and_isp_contact_card_name": {"name": "email__email_events_per_source_id_and_isp_contact_card_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_contact_card_name", "block_contents": "store name"}, "doc.yoda.email__email_events_per_source_id_and_isp_delivered": {"name": "email__email_events_per_source_id_and_isp_delivered", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_delivered", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_isp_domain": {"name": "email__email_events_per_source_id_and_isp_domain", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_domain", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_isp_hard_bounced": {"name": "email__email_events_per_source_id_and_isp_hard_bounced", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_hard_bounced", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_isp_is_authenticated": {"name": "email__email_events_per_source_id_and_isp_is_authenticated", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_is_authenticated", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_isp_open": {"name": "email__email_events_per_source_id_and_isp_open", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_open", "block_contents": "unique open events counter"}, "doc.yoda.email__email_events_per_source_id_and_isp_processing_time": {"name": "email__email_events_per_source_id_and_isp_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_processing_time", "block_contents": "last procceissing date for specific souce and isp"}, "doc.yoda.email__email_events_per_source_id_and_isp_sent": {"name": "email__email_events_per_source_id_and_isp_sent", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_sent", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_isp_soft_bounced": {"name": "email__email_events_per_source_id_and_isp_soft_bounced", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_soft_bounced", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_isp_source_name": {"name": "email__email_events_per_source_id_and_isp_source_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_source_name", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_isp_spam": {"name": "email__email_events_per_source_id_and_isp_spam", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_spam", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_isp_store_app_key": {"name": "email__email_events_per_source_id_and_isp_store_app_key", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_store_app_key", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_isp_unsubscribe": {"name": "email__email_events_per_source_id_and_isp_unsubscribe", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_isp/email__email_events_per_source_id_and_isp.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_isp_unsubscribe", "block_contents": "unique unsubscribe events counter"}, "doc.yoda.email__email_events_per_source_id_and_ref_id": {"name": "email__email_events_per_source_id_and_ref_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id", "block_contents": "email unique events by reference id"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_campaign_date": {"name": "email__email_events_per_source_id_and_ref_id_campaign_date", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_campaign_date", "block_contents": "campaign execution date"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_campaign_id": {"name": "email__email_events_per_source_id_and_ref_id_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_campaign_id", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ref_id_campaign_name": {"name": "email__email_events_per_source_id_and_ref_id_campaign_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_campaign_name", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ref_id_click": {"name": "email__email_events_per_source_id_and_ref_id_click", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_click", "block_contents": "unique click event per reference id"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_contact_card_name": {"name": "email__email_events_per_source_id_and_ref_id_contact_card_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_contact_card_name", "block_contents": "store name"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_context_reference_id": {"name": "email__email_events_per_source_id_and_ref_id_context_reference_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_context_reference_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_delivered": {"name": "email__email_events_per_source_id_and_ref_id_delivered", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_delivered", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_domain": {"name": "email__email_events_per_source_id_and_ref_id_domain", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_domain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_failed": {"name": "email__email_events_per_source_id_and_ref_id_failed", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_failed", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ref_id_hard_bounced": {"name": "email__email_events_per_source_id_and_ref_id_hard_bounced", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_hard_bounced", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_ip_pool_name": {"name": "email__email_events_per_source_id_and_ref_id_ip_pool_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_ip_pool_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_open": {"name": "email__email_events_per_source_id_and_ref_id_open", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_open", "block_contents": "unique open event per reference id"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_processing_time": {"name": "email__email_events_per_source_id_and_ref_id_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_rejected": {"name": "email__email_events_per_source_id_and_ref_id_rejected", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_rejected", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ref_id_sent": {"name": "email__email_events_per_source_id_and_ref_id_sent", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_soft_bounced": {"name": "email__email_events_per_source_id_and_ref_id_soft_bounced", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_soft_bounced", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_source_name": {"name": "email__email_events_per_source_id_and_ref_id_source_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_source_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_spam": {"name": "email__email_events_per_source_id_and_ref_id_spam", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_spam", "block_contents": "unique spam report event per reference id"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_store_app_key": {"name": "email__email_events_per_source_id_and_ref_id_store_app_key", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_store_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_sub_user_name": {"name": "email__email_events_per_source_id_and_ref_id_sub_user_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_sub_user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email__email_events_per_source_id_and_ref_id_succeeded": {"name": "email__email_events_per_source_id_and_ref_id_succeeded", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_succeeded", "block_contents": ""}, "doc.yoda.email__email_events_per_source_id_and_ref_id_unsubscribe": {"name": "email__email_events_per_source_id_and_ref_id_unsubscribe", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "original_file_path": "models/email/marts/email__email_events_per_source_id_and_ref_id/email__email_events_per_source_id_and_ref_id.md", "unique_id": "doc.yoda.email__email_events_per_source_id_and_ref_id_unsubscribe", "block_contents": "unique unsubscribe event per reference id"}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_Click_level": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_Open_Click_level", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_Click_level", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_Click_level_gmail": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_Open_Click_level_gmail", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_Click_level_gmail", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level_MSFT": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level_MSFT", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level_MSFT", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level_gmail": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level_gmail", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level_gmail", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level_yahoo": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level_yahoo", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Open_engagement_level_yahoo", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Spam_rate_MSFT": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_Spam_rate_MSFT", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Spam_rate_MSFT", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Spam_rate_Yahoo": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_Spam_rate_Yahoo", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_Spam_rate_Yahoo", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_campaign_date": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_campaign_date", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_campaign_date", "block_contents": "campaign execution date"}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_campaign_id": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_campaign_id", "block_contents": "Source id"}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate_MSFT": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate_MSFT", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate_MSFT", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate_Yahoo": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate_Yahoo", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate_Yahoo", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate_gmail": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate_gmail", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_click_rate_gmail", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_contact_card_name": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_contact_card_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_contact_card_name", "block_contents": "store name"}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_delivered": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_delivered", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_delivered", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_delivered_MSFT": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_delivered_MSFT", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_delivered_MSFT", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_delivered_Yahoo": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_delivered_Yahoo", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_delivered_Yahoo", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_delivered_gmail": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_delivered_gmail", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_delivered_gmail", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate_MSFT": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate_MSFT", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate_MSFT", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate_Yahoo": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate_Yahoo", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate_Yahoo", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate_gmail": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate_gmail", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_hard_bounced_rate_gmail", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_ip_pool_name": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_ip_pool_name", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_ip_pool_name", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate_MSFT": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate_MSFT", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate_MSFT", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate_Yahoo": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate_Yahoo", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate_Yahoo", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate_gmail": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate_gmail", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_open_rate_gmail", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_sent": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_sent", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_sent", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_sent_MSFT": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_sent_MSFT", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_sent_MSFT", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_sent_Yahoo": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_sent_Yahoo", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_sent_Yahoo", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_sent_gmail": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_sent_gmail", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_sent_gmail", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate_MSFT": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate_MSFT", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate_MSFT", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate_Yahoo": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate_Yahoo", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate_Yahoo", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate_gmail": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate_gmail", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_soft_bounced_rate_gmail", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_spam_level_MSFT": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_spam_level_MSFT", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_spam_level_MSFT", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_spam_level_Yahoo": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_spam_level_Yahoo", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_spam_level_Yahoo", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_store_app_key": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_store_app_key", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_store_app_key", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_store_on_boarding": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_store_on_boarding", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_store_on_boarding", "block_contents": ""}, "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_total_unsubscribe": {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level_total_unsubscribe", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "original_file_path": "models/email/marts/email__email_events_source_id_per_isp_ip_pool_eng_level/email__email_events_source_id_per_isp_ip_pool_eng_level.md", "unique_id": "doc.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level_total_unsubscribe", "block_contents": ""}, "doc.yoda.email__email_failed_rejected_reasons": {"name": "email__email_failed_rejected_reasons", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "original_file_path": "models/email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "unique_id": "doc.yoda.email__email_failed_rejected_reasons", "block_contents": "campaigns failures reasons"}, "doc.yoda.email__email_failed_rejected_reasons_campaign_id": {"name": "email__email_failed_rejected_reasons_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "original_file_path": "models/email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "unique_id": "doc.yoda.email__email_failed_rejected_reasons_campaign_id", "block_contents": ""}, "doc.yoda.email__email_failed_rejected_reasons_email_address": {"name": "email__email_failed_rejected_reasons_email_address", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "original_file_path": "models/email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "unique_id": "doc.yoda.email__email_failed_rejected_reasons_email_address", "block_contents": "contact email address"}, "doc.yoda.email__email_failed_rejected_reasons_error_message": {"name": "email__email_failed_rejected_reasons_error_message", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "original_file_path": "models/email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "unique_id": "doc.yoda.email__email_failed_rejected_reasons_error_message", "block_contents": "failure rejected error message"}, "doc.yoda.email__email_failed_rejected_reasons_event_type": {"name": "email__email_failed_rejected_reasons_event_type", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "original_file_path": "models/email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "unique_id": "doc.yoda.email__email_failed_rejected_reasons_event_type", "block_contents": "events type rejected or failed"}, "doc.yoda.email__email_failed_rejected_reasons_feedback_code": {"name": "email__email_failed_rejected_reasons_feedback_code", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "original_file_path": "models/email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "unique_id": "doc.yoda.email__email_failed_rejected_reasons_feedback_code", "block_contents": "internal feedback code"}, "doc.yoda.email__email_failed_rejected_reasons_processing_time": {"name": "email__email_failed_rejected_reasons_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "original_file_path": "models/email/marts/email__email_failed_rejected_reasons/email__email_failed_rejected_reasons.md", "unique_id": "doc.yoda.email__email_failed_rejected_reasons_processing_time", "block_contents": "event processing time"}, "doc.yoda.email_stg__authenticated_domain": {"name": "email_stg__authenticated_domain", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "original_file_path": "models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "unique_id": "doc.yoda.email_stg__authenticated_domain", "block_contents": "domain authentication table"}, "doc.yoda.email_stg__authenticated_domain_authenticated_domain_id": {"name": "email_stg__authenticated_domain_authenticated_domain_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "original_file_path": "models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "unique_id": "doc.yoda.email_stg__authenticated_domain_authenticated_domain_id", "block_contents": ""}, "doc.yoda.email_stg__authenticated_domain_dns_records": {"name": "email_stg__authenticated_domain_dns_records", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "original_file_path": "models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "unique_id": "doc.yoda.email_stg__authenticated_domain_dns_records", "block_contents": "list of domain cnames"}, "doc.yoda.email_stg__authenticated_domain_domain_name": {"name": "email_stg__authenticated_domain_domain_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "original_file_path": "models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "unique_id": "doc.yoda.email_stg__authenticated_domain_domain_name", "block_contents": ""}, "doc.yoda.email_stg__authenticated_domain_domain_status_id": {"name": "email_stg__authenticated_domain_domain_status_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "original_file_path": "models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "unique_id": "doc.yoda.email_stg__authenticated_domain_domain_status_id", "block_contents": ""}, "doc.yoda.email_stg__authenticated_domain_esp_domain_id": {"name": "email_stg__authenticated_domain_esp_domain_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "original_file_path": "models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "unique_id": "doc.yoda.email_stg__authenticated_domain_esp_domain_id", "block_contents": "the domain id on sendgrid side"}, "doc.yoda.email_stg__authenticated_domain_processing_time": {"name": "email_stg__authenticated_domain_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "original_file_path": "models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "unique_id": "doc.yoda.email_stg__authenticated_domain_processing_time", "block_contents": ""}, "doc.yoda.email_stg__authenticated_domain_product_id": {"name": "email_stg__authenticated_domain_product_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "original_file_path": "models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "unique_id": "doc.yoda.email_stg__authenticated_domain_product_id", "block_contents": ""}, "doc.yoda.email_stg__authenticated_domain_store_id": {"name": "email_stg__authenticated_domain_store_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "original_file_path": "models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "unique_id": "doc.yoda.email_stg__authenticated_domain_store_id", "block_contents": ""}, "doc.yoda.email_stg__authenticated_domain_subdomain": {"name": "email_stg__authenticated_domain_subdomain", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "original_file_path": "models/email/staging/base/email_stg__authenticated_domain/email_stg__authenticated_domain.md", "unique_id": "doc.yoda.email_stg__authenticated_domain_subdomain", "block_contents": ""}, "doc.yoda.email__base_campaign_events": {"name": "email__base_campaign_events", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email__base_campaign_events", "block_contents": "TODO: Update Table Description"}, "doc.yoda.email_stg__campaign_events_audiences": {"name": "email_stg__campaign_events_audiences", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_audiences", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_audiencesize": {"name": "email_stg__campaign_events_audiencesize", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_audiencesize", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_channelsettings": {"name": "email_stg__campaign_events_channelsettings", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_channelsettings", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_completiontime": {"name": "email_stg__campaign_events_completiontime", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_completiontime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_createdbyuserid": {"name": "email_stg__campaign_events_createdbyuserid", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_createdbyuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_createddate": {"name": "email_stg__campaign_events_createddate", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_createddate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_execution_actualrecipients": {"name": "email_stg__campaign_events_execution_actualrecipients", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_execution_actualrecipients", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_execution_enddatetime": {"name": "email_stg__campaign_events_execution_enddatetime", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_execution_enddatetime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_execution_startdatetime": {"name": "email_stg__campaign_events_execution_startdatetime", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_execution_startdatetime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_execution_totaldelivered": {"name": "email_stg__campaign_events_execution_totaldelivered", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_execution_totaldelivered", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_execution_totaldeliveredwhenstopped": {"name": "email_stg__campaign_events_execution_totaldeliveredwhenstopped", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_execution_totaldeliveredwhenstopped", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_execution_totalfailed": {"name": "email_stg__campaign_events_execution_totalfailed", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_execution_totalfailed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_execution_totalrecipients": {"name": "email_stg__campaign_events_execution_totalrecipients", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_execution_totalrecipients", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_execution_totalskipped": {"name": "email_stg__campaign_events_execution_totalskipped", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_execution_totalskipped", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_id": {"name": "email_stg__campaign_events_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_isarchived": {"name": "email_stg__campaign_events_isarchived", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_isarchived", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_isdeleted": {"name": "email_stg__campaign_events_isdeleted", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_isdeleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_isstopped": {"name": "email_stg__campaign_events_isstopped", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_isstopped", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_lastupdatebyuserid": {"name": "email_stg__campaign_events_lastupdatebyuserid", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_lastupdatebyuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_lastupdatedate": {"name": "email_stg__campaign_events_lastupdatedate", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_lastupdatedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_name": {"name": "email_stg__campaign_events_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_processing_time": {"name": "email_stg__campaign_events_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_reason": {"name": "email_stg__campaign_events_reason", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_reason", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_sendstrategies": {"name": "email_stg__campaign_events_sendstrategies", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_sendstrategies", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_status": {"name": "email_stg__campaign_events_status", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_statusdescription": {"name": "email_stg__campaign_events_statusdescription", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_statusdescription", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_storeid": {"name": "email_stg__campaign_events_storeid", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_substatusstate": {"name": "email_stg__campaign_events_substatusstate", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_substatusstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__campaign_events_upsolver_schema_version": {"name": "email_stg__campaign_events_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "original_file_path": "models/email/staging/base/email_stg__campaign_events/email_stg__campaign_events.md", "unique_id": "doc.yoda.email_stg__campaign_events_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email": {"name": "email_stg__delivered_email", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.email_stg__delivered_email_created_date": {"name": "email_stg__delivered_email_created_date", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_created_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_delivered_email_id": {"name": "email_stg__delivered_email_delivered_email_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_delivered_email_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_delivery_status_id": {"name": "email_stg__delivered_email_delivery_status_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_delivery_status_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_delivery_type_id": {"name": "email_stg__delivered_email_delivery_type_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_delivery_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_email_address": {"name": "email_stg__delivered_email_email_address", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_email_address", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_from_email": {"name": "email_stg__delivered_email_from_email", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_from_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_hash_key": {"name": "email_stg__delivered_email_hash_key", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_hash_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_ip_pool_name": {"name": "email_stg__delivered_email_ip_pool_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_ip_pool_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_processing_time": {"name": "email_stg__delivered_email_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_provider_id": {"name": "email_stg__delivered_email_provider_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_provider_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_reference_id": {"name": "email_stg__delivered_email_reference_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_reference_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_source_id": {"name": "email_stg__delivered_email_source_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_source_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_source_name": {"name": "email_stg__delivered_email_source_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_source_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_status_description": {"name": "email_stg__delivered_email_status_description", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_status_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_sub_user_name": {"name": "email_stg__delivered_email_sub_user_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_sub_user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_subject": {"name": "email_stg__delivered_email_subject", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_subject", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_ts_ms": {"name": "email_stg__delivered_email_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__delivered_email_upsolver_schema_version": {"name": "email_stg__delivered_email_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "original_file_path": "models/email/staging/base/email_stg__delivered_email/email_stg__delivered_email.md", "unique_id": "doc.yoda.email_stg__delivered_email_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__source_engagement_level_dry_run": {"name": "email_stg__source_engagement_level_dry_run", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run", "block_contents": "This table described the engagement level for each campaign. the PK is campaign ID. The engagement level is based on the relative part of \nengaged recipients compare to the total sent."}, "doc.yoda.email_stg__source_engagement_level_dry_run_engaged_profiles_count": {"name": "email_stg__source_engagement_level_dry_run_engaged_profiles_count", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_engaged_profiles_count", "block_contents": "Number of rec that where engaged in the last 60 days compare to the campaign execution date"}, "doc.yoda.email_stg__source_engagement_level_dry_run_engagement_level": {"name": "email_stg__source_engagement_level_dry_run_engagement_level", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_engagement_level", "block_contents": "Rank of the engagement level based on the number engaged_profilies/total_profiles_count"}, "doc.yoda.email_stg__source_engagement_level_dry_run_event_timestamp": {"name": "email_stg__source_engagement_level_dry_run_event_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_event_timestamp", "block_contents": "timestamp when the calculation have done- similar to email_stg__source_engagement_level_dry_run_processing_time in miliseconds"}, "doc.yoda.email_stg__source_engagement_level_dry_run_excluded_audience_ids": {"name": "email_stg__source_engagement_level_dry_run_excluded_audience_ids", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_excluded_audience_ids", "block_contents": ""}, "doc.yoda.email_stg__source_engagement_level_dry_run_excluded_segment_ids": {"name": "email_stg__source_engagement_level_dry_run_excluded_segment_ids", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_excluded_segment_ids", "block_contents": ""}, "doc.yoda.email_stg__source_engagement_level_dry_run_feature_name": {"name": "email_stg__source_engagement_level_dry_run_feature_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_feature_name", "block_contents": "will be source_engagement_level"}, "doc.yoda.email_stg__source_engagement_level_dry_run_feature_version": {"name": "email_stg__source_engagement_level_dry_run_feature_version", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_feature_version", "block_contents": "track after the version of the feature. after every change it will increase by 1"}, "doc.yoda.email_stg__source_engagement_level_dry_run_included_audience_ids": {"name": "email_stg__source_engagement_level_dry_run_included_audience_ids", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_included_audience_ids", "block_contents": ""}, "doc.yoda.email_stg__source_engagement_level_dry_run_included_segment_ids": {"name": "email_stg__source_engagement_level_dry_run_included_segment_ids", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_included_segment_ids", "block_contents": ""}, "doc.yoda.email_stg__source_engagement_level_dry_run_partition_date": {"name": "email_stg__source_engagement_level_dry_run_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_partition_date", "block_contents": "date of the processing time"}, "doc.yoda.email_stg__source_engagement_level_dry_run_processing_time": {"name": "email_stg__source_engagement_level_dry_run_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_processing_time", "block_contents": "campaign execution datetime"}, "doc.yoda.email_stg__source_engagement_level_dry_run_source_id": {"name": "email_stg__source_engagement_level_dry_run_source_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_source_id", "block_contents": ""}, "doc.yoda.email_stg__source_engagement_level_dry_run_store_id": {"name": "email_stg__source_engagement_level_dry_run_store_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_store_id", "block_contents": ""}, "doc.yoda.email_stg__source_engagement_level_dry_run_store_on_boarding": {"name": "email_stg__source_engagement_level_dry_run_store_on_boarding", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_store_on_boarding", "block_contents": "if the store was onboarding when the campaign was executed"}, "doc.yoda.email_stg__source_engagement_level_dry_run_total_profiles_count": {"name": "email_stg__source_engagement_level_dry_run_total_profiles_count", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_total_profiles_count", "block_contents": "total sent according to the segments and list that chosen"}, "doc.yoda.email_stg__source_engagement_level_dry_run_upsolver_schema_version": {"name": "email_stg__source_engagement_level_dry_run_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "original_file_path": "models/email/staging/base/email_stg__source_engagement_level_dry_run/email_stg__source_engagement_level_dry_run.md", "unique_id": "doc.yoda.email_stg__source_engagement_level_dry_run_upsolver_schema_version", "block_contents": ""}, "doc.yoda.email__base_system_email_events": {"name": "email__base_system_email_events", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email__base_system_email_events", "block_contents": "TODO: Update Table Description"}, "doc.yoda.email_stg__system_email_events_context_delivery_type": {"name": "email_stg__system_email_events_context_delivery_type", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_context_delivery_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_context_reference_id": {"name": "email_stg__system_email_events_context_reference_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_context_reference_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_context_source_id": {"name": "email_stg__system_email_events_context_source_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_context_source_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_context_source_name": {"name": "email_stg__system_email_events_context_source_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_context_source_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_context_store_id": {"name": "email_stg__system_email_events_context_store_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_context_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_delivery_data_esp": {"name": "email_stg__system_email_events_delivery_data_esp", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_delivery_data_esp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_delivery_data_ip": {"name": "email_stg__system_email_events_delivery_data_ip", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_delivery_data_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_email_address": {"name": "email_stg__system_email_events_email_address", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_email_address", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_engagement_data_click_url": {"name": "email_stg__system_email_events_engagement_data_click_url", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_engagement_data_click_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_engagement_data_ip": {"name": "email_stg__system_email_events_engagement_data_ip", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_engagement_data_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_engagement_data_is_bot_event": {"name": "email_stg__system_email_events_engagement_data_is_bot_event", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_engagement_data_is_bot_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_engagement_data_machine_mpp_open": {"name": "email_stg__system_email_events_engagement_data_machine_mpp_open", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_engagement_data_machine_mpp_open", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_browser": {"name": "email_stg__system_email_events_engagement_data_user_agent_properties_browser", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_browser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_browser_version": {"name": "email_stg__system_email_events_engagement_data_user_agent_properties_browser_version", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_browser_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_device": {"name": "email_stg__system_email_events_engagement_data_user_agent_properties_device", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_device", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_device_type": {"name": "email_stg__system_email_events_engagement_data_user_agent_properties_device_type", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_device_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_os": {"name": "email_stg__system_email_events_engagement_data_user_agent_properties_os", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_os", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_os_version": {"name": "email_stg__system_email_events_engagement_data_user_agent_properties_os_version", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_os_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_user_agent_line": {"name": "email_stg__system_email_events_engagement_data_user_agent_properties_user_agent_line", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_engagement_data_user_agent_properties_user_agent_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_error_message": {"name": "email_stg__system_email_events_error_message", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_error_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_event_issuer": {"name": "email_stg__system_email_events_event_issuer", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_event_issuer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_event_type": {"name": "email_stg__system_email_events_event_type", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_event_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_external_attributes_external_event_id": {"name": "email_stg__system_email_events_external_attributes_external_event_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_external_attributes_external_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_external_attributes_raw_event": {"name": "email_stg__system_email_events_external_attributes_raw_event", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_external_attributes_raw_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_feedback_code": {"name": "email_stg__system_email_events_feedback_code", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_feedback_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_headers_event_id": {"name": "email_stg__system_email_events_headers_event_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_headers_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_headers_event_type": {"name": "email_stg__system_email_events_headers_event_type", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_headers_event_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_headers_is_replay": {"name": "email_stg__system_email_events_headers_is_replay", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_headers_is_replay", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_headers_time_sent": {"name": "email_stg__system_email_events_headers_time_sent", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_headers_time_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_ip_pool_name": {"name": "email_stg__system_email_events_ip_pool_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_ip_pool_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_mailbox_provider": {"name": "email_stg__system_email_events_mailbox_provider", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_mailbox_provider", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_partition_date": {"name": "email_stg__system_email_events_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_processing_time": {"name": "email_stg__system_email_events_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_productname": {"name": "email_stg__system_email_events_productname", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_productname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_sub_user_name": {"name": "email_stg__system_email_events_sub_user_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_sub_user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_timestamp": {"name": "email_stg__system_email_events_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__system_email_events_upsolver_schema_version": {"name": "email_stg__system_email_events_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "original_file_path": "models/email/staging/base/email_stg__system_email_events/email_stg__system_email_events.md", "unique_id": "doc.yoda.email_stg__system_email_events_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__template_instance_events": {"name": "email_stg__template_instance_events", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "unique_id": "doc.yoda.email_stg__template_instance_events", "block_contents": "unique template instance event\nthis layer will have one latest revision of the template instance (in DL we have all revisions)"}, "doc.yoda.email_stg__template_instance_events_blocks": {"name": "email_stg__template_instance_events_blocks", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "unique_id": "doc.yoda.email_stg__template_instance_events_blocks", "block_contents": "array of blocks of template"}, "doc.yoda.email_stg__template_instance_events_metadata": {"name": "email_stg__template_instance_events_metadata", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "unique_id": "doc.yoda.email_stg__template_instance_events_metadata", "block_contents": "template instance metadata"}, "doc.yoda.email_stg__template_instance_events_partition_date": {"name": "email_stg__template_instance_events_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "unique_id": "doc.yoda.email_stg__template_instance_events_partition_date", "block_contents": "partition date (by date)"}, "doc.yoda.email_stg__template_instance_events_processing_time": {"name": "email_stg__template_instance_events_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "unique_id": "doc.yoda.email_stg__template_instance_events_processing_time", "block_contents": "processing time"}, "doc.yoda.email_stg__template_instance_events_source_id": {"name": "email_stg__template_instance_events_source_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "unique_id": "doc.yoda.email_stg__template_instance_events_source_id", "block_contents": "source id"}, "doc.yoda.email_stg__template_instance_events_source_name": {"name": "email_stg__template_instance_events_source_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "unique_id": "doc.yoda.email_stg__template_instance_events_source_name", "block_contents": "source name"}, "doc.yoda.email_stg__template_instance_events_store_id": {"name": "email_stg__template_instance_events_store_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "unique_id": "doc.yoda.email_stg__template_instance_events_store_id", "block_contents": "store id"}, "doc.yoda.email_stg__template_instance_events_template_instance_id": {"name": "email_stg__template_instance_events_template_instance_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "original_file_path": "models/email/staging/base/email_stg__template_instance_events/email_stg__template_instance_events.md", "unique_id": "doc.yoda.email_stg__template_instance_events_template_instance_id", "block_contents": "template instance if"}, "doc.yoda.email_stg__emails_with_campaign_and_templates": {"name": "email_stg__emails_with_campaign_and_templates", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates", "block_contents": "emails events with campaign events and template"}, "doc.yoda.email_stg__emails_with_campaign_and_templates_batchid": {"name": "email_stg__emails_with_campaign_and_templates_batchid", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates_batchid", "block_contents": "batch id"}, "doc.yoda.email_stg__emails_with_campaign_and_templates_blocks": {"name": "email_stg__emails_with_campaign_and_templates_blocks", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates_blocks", "block_contents": "array of all blocks in the template"}, "doc.yoda.email_stg__emails_with_campaign_and_templates_campaign_id": {"name": "email_stg__emails_with_campaign_and_templates_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates_campaign_id", "block_contents": "campaign id"}, "doc.yoda.email_stg__emails_with_campaign_and_templates_email_address": {"name": "email_stg__emails_with_campaign_and_templates_email_address", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates_email_address", "block_contents": "email address"}, "doc.yoda.email_stg__emails_with_campaign_and_templates_email_reference_id": {"name": "email_stg__emails_with_campaign_and_templates_email_reference_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates_email_reference_id", "block_contents": "email reference id"}, "doc.yoda.email_stg__emails_with_campaign_and_templates_event_type": {"name": "email_stg__emails_with_campaign_and_templates_event_type", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates_event_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__emails_with_campaign_and_templates_id": {"name": "email_stg__emails_with_campaign_and_templates_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__emails_with_campaign_and_templates_name": {"name": "email_stg__emails_with_campaign_and_templates_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates_name", "block_contents": "campaign name"}, "doc.yoda.email_stg__emails_with_campaign_and_templates_processing_time": {"name": "email_stg__emails_with_campaign_and_templates_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.email_stg__emails_with_campaign_and_templates_storeid": {"name": "email_stg__emails_with_campaign_and_templates_storeid", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates_storeid", "block_contents": "store id"}, "doc.yoda.email_stg__emails_with_campaign_and_templates_templateinstanceid": {"name": "email_stg__emails_with_campaign_and_templates_templateinstanceid", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__emails_with_campaign_and_templates/email_stg__emails_with_campaign_and_templates.md", "unique_id": "doc.yoda.email_stg__emails_with_campaign_and_templates_templateinstanceid", "block_contents": "template instance id"}, "doc.yoda.email_stg__system_email_events_with_batch_id": {"name": "email_stg__system_email_events_with_batch_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "unique_id": "doc.yoda.email_stg__system_email_events_with_batch_id", "block_contents": "system email events with extracted batch id for each email"}, "doc.yoda.email_stg__system_email_events_with_batch_id_campaignBatchId": {"name": "email_stg__system_email_events_with_batch_id_campaignBatchId", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "unique_id": "doc.yoda.email_stg__system_email_events_with_batch_id_campaignBatchId", "block_contents": "the batch id"}, "doc.yoda.email_stg__system_email_events_with_batch_id_client_attributes": {"name": "email_stg__system_email_events_with_batch_id_client_attributes", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "unique_id": "doc.yoda.email_stg__system_email_events_with_batch_id_client_attributes", "block_contents": "client attributes which holds the batch id"}, "doc.yoda.email_stg__system_email_events_with_batch_id_context_reference_id": {"name": "email_stg__system_email_events_with_batch_id_context_reference_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "unique_id": "doc.yoda.email_stg__system_email_events_with_batch_id_context_reference_id", "block_contents": "unique id represents the email and campaign id"}, "doc.yoda.email_stg__system_email_events_with_batch_id_context_source_id": {"name": "email_stg__system_email_events_with_batch_id_context_source_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "unique_id": "doc.yoda.email_stg__system_email_events_with_batch_id_context_source_id", "block_contents": "campaign id"}, "doc.yoda.email_stg__system_email_events_with_batch_id_context_source_name": {"name": "email_stg__system_email_events_with_batch_id_context_source_name", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "unique_id": "doc.yoda.email_stg__system_email_events_with_batch_id_context_source_name", "block_contents": "email campaigns"}, "doc.yoda.email_stg__system_email_events_with_batch_id_context_store_id": {"name": "email_stg__system_email_events_with_batch_id_context_store_id", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "unique_id": "doc.yoda.email_stg__system_email_events_with_batch_id_context_store_id", "block_contents": "store id"}, "doc.yoda.email_stg__system_email_events_with_batch_id_email_address": {"name": "email_stg__system_email_events_with_batch_id_email_address", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "unique_id": "doc.yoda.email_stg__system_email_events_with_batch_id_email_address", "block_contents": "email address"}, "doc.yoda.email_stg__system_email_events_with_batch_id_event_type": {"name": "email_stg__system_email_events_with_batch_id_event_type", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "unique_id": "doc.yoda.email_stg__system_email_events_with_batch_id_event_type", "block_contents": "event type"}, "doc.yoda.email_stg__system_email_events_with_batch_id_processing_time": {"name": "email_stg__system_email_events_with_batch_id_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "original_file_path": "models/email/staging/marts_compatible/email_stg__system_email_events_with_batch_id/email_stg__system_email_events_with_batch_id.md", "unique_id": "doc.yoda.email_stg__system_email_events_with_batch_id_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__aws_cost_overview_account_name": {"name": "infra__aws_cost_overview_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_account_name", "block_contents": "Account name (manually)"}, "doc.yoda.infra__aws_cost_overview_amortized_cost": {"name": "infra__aws_cost_overview_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_amortized_cost", "block_contents": "Amortized cost equals usage plus the portion of upfront fees applicable to the period (both used and unused)"}, "doc.yoda.infra__aws_cost_overview_bill_billing_entity": {"name": "infra__aws_cost_overview_bill_billing_entity", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_bill_billing_entity", "block_contents": "AWS Billing Entity (AWS / AWS Marketplace)"}, "doc.yoda.infra__aws_cost_overview_bill_start_date": {"name": "infra__aws_cost_overview_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_bill_start_date", "block_contents": "Billing start time (daily)"}, "doc.yoda.infra__aws_cost_overview_billing_period": {"name": "infra__aws_cost_overview_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_billing_period", "block_contents": "Billing start period (monthly)"}, "doc.yoda.infra__aws_cost_overview_line_item_line_item_type": {"name": "infra__aws_cost_overview_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_line_item_line_item_type", "block_contents": "AWS line item type (Charge/Tax/Credit/etc.)"}, "doc.yoda.infra__aws_cost_overview_line_item_product_code": {"name": "infra__aws_cost_overview_line_item_product_code", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_line_item_product_code", "block_contents": "Product line"}, "doc.yoda.infra__aws_cost_overview_line_item_usage_account_id": {"name": "infra__aws_cost_overview_line_item_usage_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_line_item_usage_account_id", "block_contents": "AWS Account ID"}, "doc.yoda.infra__aws_cost_overview_product_line": {"name": "infra__aws_cost_overview_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_product_line", "block_contents": "Product line"}, "doc.yoda.infra__aws_cost_overview_product_name": {"name": "infra__aws_cost_overview_product_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_product_name", "block_contents": "Either AWS product name or market place name"}, "doc.yoda.infra__aws_cost_overview_product_product_family": {"name": "infra__aws_cost_overview_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_product_product_family", "block_contents": "Product family (Storage/Snapshot/etc)"}, "doc.yoda.infra__aws_cost_overview_resource_tags_user_component": {"name": "infra__aws_cost_overview_resource_tags_user_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_resource_tags_user_component", "block_contents": "Custom tag for component"}, "doc.yoda.infra__aws_cost_overview_resource_tags_user_environment": {"name": "infra__aws_cost_overview_resource_tags_user_environment", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_resource_tags_user_environment", "block_contents": "Custom tag for environment"}, "doc.yoda.infra__aws_cost_overview_resource_tags_user_feature": {"name": "infra__aws_cost_overview_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_resource_tags_user_feature", "block_contents": "User defined feature"}, "doc.yoda.infra__aws_cost_overview_resource_tags_user_group": {"name": "infra__aws_cost_overview_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_resource_tags_user_group", "block_contents": "User defined group"}, "doc.yoda.infra__aws_cost_overview_resource_tags_user_sub_component": {"name": "infra__aws_cost_overview_resource_tags_user_sub_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_resource_tags_user_sub_component", "block_contents": "Custom tag for sub component"}, "doc.yoda.infra__aws_cost_overview_resource_tags_user_team": {"name": "infra__aws_cost_overview_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_resource_tags_user_team", "block_contents": "User defined team"}, "doc.yoda.infra__aws_cost_overview_unblended_cost": {"name": "infra__aws_cost_overview_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__aws_cost_overview_unblended_cost", "block_contents": "Unblended cost (includes the discounts in a single period and not across the period it was given)"}, "doc.yoda.infra__marts_aws_cost_overview": {"name": "infra__marts_aws_cost_overview", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "original_file_path": "models/infra/marts/infra__aws_cost_overview/infra__aws_cost_overview.md", "unique_id": "doc.yoda.infra__marts_aws_cost_overview", "block_contents": "AWS Products Cost Overview"}, "doc.yoda.infra__canary_data_model": {"name": "infra__canary_data_model", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__canary_data_model/infra__canary_data_model.md", "original_file_path": "models/infra/marts/infra__canary_data_model/infra__canary_data_model.md", "unique_id": "doc.yoda.infra__canary_data_model", "block_contents": "Modle used to check airflow end to end"}, "doc.yoda.infra__canary_data_model_app_key": {"name": "infra__canary_data_model_app_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__canary_data_model/infra__canary_data_model.md", "original_file_path": "models/infra/marts/infra__canary_data_model/infra__canary_data_model.md", "unique_id": "doc.yoda.infra__canary_data_model_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__canary_data_model_daily_metric": {"name": "infra__canary_data_model_daily_metric", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__canary_data_model/infra__canary_data_model.md", "original_file_path": "models/infra/marts/infra__canary_data_model/infra__canary_data_model.md", "unique_id": "doc.yoda.infra__canary_data_model_daily_metric", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__canary_segment_model_profile": {"name": "infra__canary_segment_model_profile", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.md", "original_file_path": "models/infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.md", "unique_id": "doc.yoda.infra__canary_segment_model_profile", "block_contents": "A canary model to test segment integration"}, "doc.yoda.infra__canary_segment_model_profile_daily_metric": {"name": "infra__canary_segment_model_profile_daily_metric", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.md", "original_file_path": "models/infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.md", "unique_id": "doc.yoda.infra__canary_segment_model_profile_daily_metric", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__canary_segment_model_profile_userId": {"name": "infra__canary_segment_model_profile_userId", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.md", "original_file_path": "models/infra/marts/infra__canary_segment_model_profile/infra__canary_segment_model_profile.md", "unique_id": "doc.yoda.infra__canary_segment_model_profile_userId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__canary_snowflake_model": {"name": "infra__canary_snowflake_model", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__canary_snowflake_model/infra__canary_snowflake_model.md", "original_file_path": "models/infra/marts/infra__canary_snowflake_model/infra__canary_snowflake_model.md", "unique_id": "doc.yoda.infra__canary_snowflake_model", "block_contents": "Yoda Canary snowflake test model"}, "doc.yoda.infra__canary_snowflake_model_app_key": {"name": "infra__canary_snowflake_model_app_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__canary_snowflake_model/infra__canary_snowflake_model.md", "original_file_path": "models/infra/marts/infra__canary_snowflake_model/infra__canary_snowflake_model.md", "unique_id": "doc.yoda.infra__canary_snowflake_model_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__canary_snowflake_model_daily_metric": {"name": "infra__canary_snowflake_model_daily_metric", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__canary_snowflake_model/infra__canary_snowflake_model.md", "original_file_path": "models/infra/marts/infra__canary_snowflake_model/infra__canary_snowflake_model.md", "unique_id": "doc.yoda.infra__canary_snowflake_model_daily_metric", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__contracts_burn_estimations": {"name": "infra__contracts_burn_estimations", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations", "block_contents": "Burn rate estimations"}, "doc.yoda.infra__contracts_burn_estimations_avg_spent_last_30_days": {"name": "infra__contracts_burn_estimations_avg_spent_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations_avg_spent_last_30_days", "block_contents": "Average burn rate in the last 30 days"}, "doc.yoda.infra__contracts_burn_estimations_budget_left": {"name": "infra__contracts_burn_estimations_budget_left", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations_budget_left", "block_contents": "Budget left"}, "doc.yoda.infra__contracts_burn_estimations_days_until_end_of_contract": {"name": "infra__contracts_burn_estimations_days_until_end_of_contract", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations_days_until_end_of_contract", "block_contents": "Days until the end of the contract"}, "doc.yoda.infra__contracts_burn_estimations_end_date": {"name": "infra__contracts_burn_estimations_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations_end_date", "block_contents": "Contract end date"}, "doc.yoda.infra__contracts_burn_estimations_estimated_days_until_end_of_contract": {"name": "infra__contracts_burn_estimations_estimated_days_until_end_of_contract", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations_estimated_days_until_end_of_contract", "block_contents": "Estimated days until the end of contract"}, "doc.yoda.infra__contracts_burn_estimations_estimated_end_date": {"name": "infra__contracts_burn_estimations_estimated_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations_estimated_end_date", "block_contents": "Estimated contract end date"}, "doc.yoda.infra__contracts_burn_estimations_last_processed_date": {"name": "infra__contracts_burn_estimations_last_processed_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations_last_processed_date", "block_contents": "Last processed date"}, "doc.yoda.infra__contracts_burn_estimations_speculate_budget_left_at_end_of_contract": {"name": "infra__contracts_burn_estimations_speculate_budget_left_at_end_of_contract", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations_speculate_budget_left_at_end_of_contract", "block_contents": "Estimated budget left on the last day of the contract"}, "doc.yoda.infra__contracts_burn_estimations_start_date": {"name": "infra__contracts_burn_estimations_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations_start_date", "block_contents": "Contract start date"}, "doc.yoda.infra__contracts_burn_estimations_vendor": {"name": "infra__contracts_burn_estimations_vendor", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations_vendor", "block_contents": "Vendor name"}, "doc.yoda.infra__contracts_burn_estimations_yearly_budget": {"name": "infra__contracts_burn_estimations_yearly_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "original_file_path": "models/infra/marts/infra__contracts_burn_estimations/infra__contracts_burn_estimations.md", "unique_id": "doc.yoda.infra__contracts_burn_estimations_yearly_budget", "block_contents": "Yearly budget"}, "doc.yoda.infra__contracts_burn_status": {"name": "infra__contracts_burn_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status", "block_contents": "Table containing SAAS vendor burn status"}, "doc.yoda.infra__contracts_burn_status_avg_spent_current_month": {"name": "infra__contracts_burn_status_avg_spent_current_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_avg_spent_current_month", "block_contents": "Avarage spent from the begining of the month"}, "doc.yoda.infra__contracts_burn_status_avg_spent_last_30_days": {"name": "infra__contracts_burn_status_avg_spent_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_avg_spent_last_30_days", "block_contents": "Avarage spent in the past 30 days"}, "doc.yoda.infra__contracts_burn_status_burn_rate_with_estimations": {"name": "infra__contracts_burn_status_burn_rate_with_estimations", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_burn_rate_with_estimations", "block_contents": "Historical burn + estimated future burn rate (based on the past 30 days)"}, "doc.yoda.infra__contracts_burn_status_cumulative_cost_with_current_month": {"name": "infra__contracts_burn_status_cumulative_cost_with_current_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_cumulative_cost_with_current_month", "block_contents": "Cumulative cost with the current month (even if not closed)"}, "doc.yoda.infra__contracts_burn_status_cumulative_cost_without_current_month": {"name": "infra__contracts_burn_status_cumulative_cost_without_current_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_cumulative_cost_without_current_month", "block_contents": "Cumulative cost without the current month"}, "doc.yoda.infra__contracts_burn_status_cumulative_estimated_cost_with_current_month": {"name": "infra__contracts_burn_status_cumulative_estimated_cost_with_current_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_cumulative_estimated_cost_with_current_month", "block_contents": "Cumulative cost with the current month and esmiation until the end of the contract, based on the past 30 days"}, "doc.yoda.infra__contracts_burn_status_date": {"name": "infra__contracts_burn_status_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_date", "block_contents": "Contract start time"}, "doc.yoda.infra__contracts_burn_status_days_count": {"name": "infra__contracts_burn_status_days_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_days_count", "block_contents": "Cumulative days passed from the begining of the contract"}, "doc.yoda.infra__contracts_burn_status_days_in_month": {"name": "infra__contracts_burn_status_days_in_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_days_in_month", "block_contents": "Amount of paid days for the given month (if the contract starts at the last day of the month, it will include only a single day)"}, "doc.yoda.infra__contracts_burn_status_days_left_with_current_momth": {"name": "infra__contracts_burn_status_days_left_with_current_momth", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_days_left_with_current_momth", "block_contents": "Days left until the end of the contract including passed days from the current month"}, "doc.yoda.infra__contracts_burn_status_end_date": {"name": "infra__contracts_burn_status_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_end_date", "block_contents": "Contract end date"}, "doc.yoda.infra__contracts_burn_status_is_closed": {"name": "infra__contracts_burn_status_is_closed", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_is_closed", "block_contents": "Whether the month is closed (passed)"}, "doc.yoda.infra__contracts_burn_status_is_current_month": {"name": "infra__contracts_burn_status_is_current_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_is_current_month", "block_contents": "Is current month"}, "doc.yoda.infra__contracts_burn_status_is_future_month": {"name": "infra__contracts_burn_status_is_future_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_is_future_month", "block_contents": "Is future month"}, "doc.yoda.infra__contracts_burn_status_is_past_month": {"name": "infra__contracts_burn_status_is_past_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_is_past_month", "block_contents": "Is month passed"}, "doc.yoda.infra__contracts_burn_status_last_processed_date": {"name": "infra__contracts_burn_status_last_processed_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_last_processed_date", "block_contents": "Last day included in the cost aggregations"}, "doc.yoda.infra__contracts_burn_status_month": {"name": "infra__contracts_burn_status_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_month", "block_contents": "Month"}, "doc.yoda.infra__contracts_burn_status_monthly_cost": {"name": "infra__contracts_burn_status_monthly_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_monthly_cost", "block_contents": "Monthly cost"}, "doc.yoda.infra__contracts_burn_status_months_count": {"name": "infra__contracts_burn_status_months_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_months_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__contracts_burn_status_months_left": {"name": "infra__contracts_burn_status_months_left", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_months_left", "block_contents": "How many months left until the end of the contract"}, "doc.yoda.infra__contracts_burn_status_num_days": {"name": "infra__contracts_burn_status_num_days", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_num_days", "block_contents": "Number of days for the contract (end - start)"}, "doc.yoda.infra__contracts_burn_status_num_months": {"name": "infra__contracts_burn_status_num_months", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_num_months", "block_contents": "Number of months for the contract (end - start)"}, "doc.yoda.infra__contracts_burn_status_prev_monthly_cost": {"name": "infra__contracts_burn_status_prev_monthly_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_prev_monthly_cost", "block_contents": "Previously monthly cost"}, "doc.yoda.infra__contracts_burn_status_prev_monthly_days_count": {"name": "infra__contracts_burn_status_prev_monthly_days_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_prev_monthly_days_count", "block_contents": "Cumulative days from previous month"}, "doc.yoda.infra__contracts_burn_status_start_date": {"name": "infra__contracts_burn_status_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_start_date", "block_contents": "Contract start time"}, "doc.yoda.infra__contracts_burn_status_total_months_count": {"name": "infra__contracts_burn_status_total_months_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_total_months_count", "block_contents": "Cumulative months count until current month"}, "doc.yoda.infra__contracts_burn_status_vendor": {"name": "infra__contracts_burn_status_vendor", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_vendor", "block_contents": "Vendor (Snowflake/Databricks/Rivery/...)"}, "doc.yoda.infra__contracts_burn_status_year": {"name": "infra__contracts_burn_status_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_year", "block_contents": "Year of the month"}, "doc.yoda.infra__contracts_burn_status_yearly_budget": {"name": "infra__contracts_burn_status_yearly_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "original_file_path": "models/infra/marts/infra__contracts_burn_status/infra__contracts_burn_status.md", "unique_id": "doc.yoda.infra__contracts_burn_status_yearly_budget", "block_contents": "Contract budget"}, "doc.yoda.infra__cost_budget": {"name": "infra__cost_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__cost_budget/infra__cost_budget.md", "original_file_path": "models/infra/marts/infra__cost_budget/infra__cost_budget.md", "unique_id": "doc.yoda.infra__cost_budget", "block_contents": "Budget for all product lines"}, "doc.yoda.infra__cost_budget_daily_budget": {"name": "infra__cost_budget_daily_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__cost_budget/infra__cost_budget.md", "original_file_path": "models/infra/marts/infra__cost_budget/infra__cost_budget.md", "unique_id": "doc.yoda.infra__cost_budget_daily_budget", "block_contents": "Daily budget per product line"}, "doc.yoda.infra__cost_budget_group": {"name": "infra__cost_budget_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__cost_budget/infra__cost_budget.md", "original_file_path": "models/infra/marts/infra__cost_budget/infra__cost_budget.md", "unique_id": "doc.yoda.infra__cost_budget_group", "block_contents": "Group name"}, "doc.yoda.infra__cost_budget_last_updated": {"name": "infra__cost_budget_last_updated", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__cost_budget/infra__cost_budget.md", "original_file_path": "models/infra/marts/infra__cost_budget/infra__cost_budget.md", "unique_id": "doc.yoda.infra__cost_budget_last_updated", "block_contents": "The date of the latest change"}, "doc.yoda.infra__cost_budget_product_line": {"name": "infra__cost_budget_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__cost_budget/infra__cost_budget.md", "original_file_path": "models/infra/marts/infra__cost_budget/infra__cost_budget.md", "unique_id": "doc.yoda.infra__cost_budget_product_line", "block_contents": "Product line"}, "doc.yoda.infra__cost_budget_team": {"name": "infra__cost_budget_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__cost_budget/infra__cost_budget.md", "original_file_path": "models/infra/marts/infra__cost_budget/infra__cost_budget.md", "unique_id": "doc.yoda.infra__cost_budget_team", "block_contents": "Team name"}, "doc.yoda.infra__databricks_costs_availability_zones": {"name": "infra__databricks_costs_availability_zones", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_availability_zones", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_aws_cost": {"name": "infra__databricks_costs_aws_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_aws_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_aws_cost_by_cluster": {"name": "infra__databricks_costs_aws_cost_by_cluster", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_aws_cost_by_cluster", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_aws_cost_by_instance": {"name": "infra__databricks_costs_aws_cost_by_instance", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_aws_cost_by_instance", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_aws_costs": {"name": "infra__databricks_costs_aws_costs", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_aws_costs", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_billing_date": {"name": "infra__databricks_costs_billing_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_billing_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_clusterName": {"name": "infra__databricks_costs_clusterName", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_clusterName", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_cluster_id": {"name": "infra__databricks_costs_cluster_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_cluster_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_component": {"name": "infra__databricks_costs_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_component", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_databricks_cost": {"name": "infra__databricks_costs_databricks_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_databricks_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_databricks_costs": {"name": "infra__databricks_costs_databricks_costs", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_databricks_costs", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_date": {"name": "infra__databricks_costs_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_dbus": {"name": "infra__databricks_costs_dbus", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_dbus", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_instance_count": {"name": "infra__databricks_costs_instance_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_instance_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_instance_type": {"name": "infra__databricks_costs_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_instance_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_is_cluster": {"name": "infra__databricks_costs_is_cluster", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_is_cluster", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_is_job": {"name": "infra__databricks_costs_is_job", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_is_job", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_is_photon": {"name": "infra__databricks_costs_is_photon", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_is_photon", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_is_sql": {"name": "infra__databricks_costs_is_sql", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_is_sql", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_machineHours": {"name": "infra__databricks_costs_machineHours", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_machineHours", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_name": {"name": "infra__databricks_costs_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_pricing_term": {"name": "infra__databricks_costs_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_pricing_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_product_line": {"name": "infra__databricks_costs_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_product_line", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_product_product_family": {"name": "infra__databricks_costs_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_product_product_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_resource_tags_user_feature": {"name": "infra__databricks_costs_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_resource_tags_user_feature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_resource_tags_user_group": {"name": "infra__databricks_costs_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_resource_tags_user_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_resource_tags_user_team": {"name": "infra__databricks_costs_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_resource_tags_user_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__databricks_costs_sku": {"name": "infra__databricks_costs_sku", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_sku", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_total_costs": {"name": "infra__databricks_costs_total_costs", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_total_costs", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_total_machine_hours": {"name": "infra__databricks_costs_total_machine_hours", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_total_machine_hours", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__databricks_costs_type": {"name": "infra__databricks_costs_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__databricks_costs/infra__databricks_costs.md", "original_file_path": "models/infra/marts/infra__databricks_costs/infra__databricks_costs.md", "unique_id": "doc.yoda.infra__databricks_costs_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_account_name": {"name": "infra__ec2_cost_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_account_name", "block_contents": "AWS account"}, "doc.yoda.infra__ec2_cost_ags": {"name": "infra__ec2_cost_ags", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_ags", "block_contents": "Auto-Scaling Group (typo)"}, "doc.yoda.infra__ec2_cost_amortized_cost": {"name": "infra__ec2_cost_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_amortized_cost", "block_contents": "Amortized cost equals usage plus the portion of upfront fees applicable to the period (both used and unused)"}, "doc.yoda.infra__ec2_cost_bill_payer_account_id": {"name": "infra__ec2_cost_bill_payer_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_bill_payer_account_id", "block_contents": "Account ID (identical to line_item_usage_account_id)"}, "doc.yoda.infra__ec2_cost_bill_start_date": {"name": "infra__ec2_cost_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_bill_start_date", "block_contents": "Billing start time (daily)"}, "doc.yoda.infra__ec2_cost_billing_period": {"name": "infra__ec2_cost_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_billing_period", "block_contents": "Billing start period (monthly)"}, "doc.yoda.infra__ec2_cost_is_managed_by_cast_ai": {"name": "infra__ec2_cost_is_managed_by_cast_ai", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_is_managed_by_cast_ai", "block_contents": "Whether the EC2 is managed by Cast.AI"}, "doc.yoda.infra__ec2_cost_line_item_line_item_type": {"name": "infra__ec2_cost_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_line_item_line_item_type", "block_contents": "Cost type (Credit, Usage, Tax)"}, "doc.yoda.infra__ec2_cost_pricing_term": {"name": "infra__ec2_cost_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_pricing_term", "block_contents": "On demand, spot or reserved"}, "doc.yoda.infra__ec2_cost_product_instance_type": {"name": "infra__ec2_cost_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_product_instance_type", "block_contents": "Instance type"}, "doc.yoda.infra__ec2_cost_product_line": {"name": "infra__ec2_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_product_line", "block_contents": "Product line attached to the ec2"}, "doc.yoda.infra__ec2_cost_product_product_family": {"name": "infra__ec2_cost_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_product_product_family", "block_contents": "Type of the charged service (Storage, Compute, etc)"}, "doc.yoda.infra__ec2_cost_product_region": {"name": "infra__ec2_cost_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_product_region", "block_contents": "AWS Region"}, "doc.yoda.infra__ec2_cost_resource_tags_user_component": {"name": "infra__ec2_cost_resource_tags_user_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_resource_tags_user_component", "block_contents": "Custom tag for component"}, "doc.yoda.infra__ec2_cost_resource_tags_user_environment": {"name": "infra__ec2_cost_resource_tags_user_environment", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_resource_tags_user_environment", "block_contents": "Custom tag for environment"}, "doc.yoda.infra__ec2_cost_resource_tags_user_feature": {"name": "infra__ec2_cost_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_resource_tags_user_feature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_resource_tags_user_group": {"name": "infra__ec2_cost_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_resource_tags_user_group", "block_contents": "User tag"}, "doc.yoda.infra__ec2_cost_resource_tags_user_sub_component": {"name": "infra__ec2_cost_resource_tags_user_sub_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_resource_tags_user_sub_component", "block_contents": "Custom tag for sub component"}, "doc.yoda.infra__ec2_cost_resource_tags_user_team": {"name": "infra__ec2_cost_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_resource_tags_user_team", "block_contents": "Team tag"}, "doc.yoda.infra__ec2_cost_unblended_cost": {"name": "infra__ec2_cost_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__ec2_cost_unblended_cost", "block_contents": "Unblended cost (includes the discounts in a single period and not across the period it was given)"}, "doc.yoda.infra__marts_ec2_cost": {"name": "infra__marts_ec2_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost/infra__ec2_cost.md", "original_file_path": "models/infra/marts/infra__ec2_cost/infra__ec2_cost.md", "unique_id": "doc.yoda.infra__marts_ec2_cost", "block_contents": "View which combines both hot and cold for a unified view of EC2 costs. we use hot/cold because the data is constalty updated"}, "doc.yoda.infra__ec2_cost_cold_account_name": {"name": "infra__ec2_cost_cold_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_account_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_ags": {"name": "infra__ec2_cost_cold_ags", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_ags", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_amortized_cost": {"name": "infra__ec2_cost_cold_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_amortized_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_bill_payer_account_id": {"name": "infra__ec2_cost_cold_bill_payer_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_bill_payer_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_bill_start_date": {"name": "infra__ec2_cost_cold_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_bill_start_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_billing_period": {"name": "infra__ec2_cost_cold_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_billing_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_is_managed_by_cast_ai": {"name": "infra__ec2_cost_cold_is_managed_by_cast_ai", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_is_managed_by_cast_ai", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_line_item_line_item_type": {"name": "infra__ec2_cost_cold_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_line_item_line_item_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_pricing_term": {"name": "infra__ec2_cost_cold_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_pricing_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_product_instance_type": {"name": "infra__ec2_cost_cold_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_product_instance_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_product_line": {"name": "infra__ec2_cost_cold_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_product_product_family": {"name": "infra__ec2_cost_cold_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_product_product_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_product_region": {"name": "infra__ec2_cost_cold_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_product_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_resource_tags_user_component": {"name": "infra__ec2_cost_cold_resource_tags_user_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_resource_tags_user_component", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_resource_tags_user_environment": {"name": "infra__ec2_cost_cold_resource_tags_user_environment", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_resource_tags_user_environment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_resource_tags_user_feature": {"name": "infra__ec2_cost_cold_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_resource_tags_user_feature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_resource_tags_user_group": {"name": "infra__ec2_cost_cold_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_resource_tags_user_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_resource_tags_user_product_line": {"name": "infra__ec2_cost_cold_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_resource_tags_user_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_resource_tags_user_sub_component": {"name": "infra__ec2_cost_cold_resource_tags_user_sub_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_resource_tags_user_sub_component", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_resource_tags_user_team": {"name": "infra__ec2_cost_cold_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_resource_tags_user_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_cold_unblended_cost": {"name": "infra__ec2_cost_cold_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__ec2_cost_cold_unblended_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__marts_ec2_cost_cold": {"name": "infra__marts_ec2_cost_cold", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "original_file_path": "models/infra/marts/infra__ec2_cost_cold/infra__ec2_cost_cold.md", "unique_id": "doc.yoda.infra__marts_ec2_cost_cold", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__ec2_cost_hot_account_name": {"name": "infra__ec2_cost_hot_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_account_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_ags": {"name": "infra__ec2_cost_hot_ags", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_ags", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_amortized_cost": {"name": "infra__ec2_cost_hot_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_amortized_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_bill_payer_account_id": {"name": "infra__ec2_cost_hot_bill_payer_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_bill_payer_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_bill_start_date": {"name": "infra__ec2_cost_hot_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_bill_start_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_billing_period": {"name": "infra__ec2_cost_hot_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_billing_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_is_managed_by_cast_ai": {"name": "infra__ec2_cost_hot_is_managed_by_cast_ai", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_is_managed_by_cast_ai", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_line_item_line_item_type": {"name": "infra__ec2_cost_hot_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_line_item_line_item_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_pricing_term": {"name": "infra__ec2_cost_hot_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_pricing_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_product_instance_type": {"name": "infra__ec2_cost_hot_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_product_instance_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_product_line": {"name": "infra__ec2_cost_hot_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_product_product_family": {"name": "infra__ec2_cost_hot_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_product_product_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_product_region": {"name": "infra__ec2_cost_hot_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_product_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_resource_tags_user_component": {"name": "infra__ec2_cost_hot_resource_tags_user_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_resource_tags_user_component", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_resource_tags_user_environment": {"name": "infra__ec2_cost_hot_resource_tags_user_environment", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_resource_tags_user_environment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_resource_tags_user_feature": {"name": "infra__ec2_cost_hot_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_resource_tags_user_feature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_resource_tags_user_group": {"name": "infra__ec2_cost_hot_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_resource_tags_user_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_resource_tags_user_product_line": {"name": "infra__ec2_cost_hot_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_resource_tags_user_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_resource_tags_user_sub_component": {"name": "infra__ec2_cost_hot_resource_tags_user_sub_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_resource_tags_user_sub_component", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_resource_tags_user_team": {"name": "infra__ec2_cost_hot_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_resource_tags_user_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__ec2_cost_hot_unblended_cost": {"name": "infra__ec2_cost_hot_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__ec2_cost_hot_unblended_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__marts_ec2_cost_hot": {"name": "infra__marts_ec2_cost_hot", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "original_file_path": "models/infra/marts/infra__ec2_cost_hot/infra__ec2_cost_hot.md", "unique_id": "doc.yoda.infra__marts_ec2_cost_hot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__elasticcache_cost": {"name": "infra__elasticcache_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost", "block_contents": "Elastic cache costs"}, "doc.yoda.infra__elasticcache_cost_account_name": {"name": "infra__elasticcache_cost_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_account_name", "block_contents": "Account name"}, "doc.yoda.infra__elasticcache_cost_amortized_cost": {"name": "infra__elasticcache_cost_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_amortized_cost", "block_contents": "Amortized cost"}, "doc.yoda.infra__elasticcache_cost_bill_start_date": {"name": "infra__elasticcache_cost_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_bill_start_date", "block_contents": "Start billing date"}, "doc.yoda.infra__elasticcache_cost_billing_period": {"name": "infra__elasticcache_cost_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_billing_period", "block_contents": "Start billing month"}, "doc.yoda.infra__elasticcache_cost_current_generation": {"name": "infra__elasticcache_cost_current_generation", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_current_generation", "block_contents": "Wheather using the latest generation"}, "doc.yoda.infra__elasticcache_cost_engine": {"name": "infra__elasticcache_cost_engine", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_engine", "block_contents": "Engine type (Redis, Memchace)"}, "doc.yoda.infra__elasticcache_cost_line_item_resource_id": {"name": "infra__elasticcache_cost_line_item_resource_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_line_item_resource_id", "block_contents": "ARN"}, "doc.yoda.infra__elasticcache_cost_line_item_usage_account_id": {"name": "infra__elasticcache_cost_line_item_usage_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_line_item_usage_account_id", "block_contents": "Account id"}, "doc.yoda.infra__elasticcache_cost_name": {"name": "infra__elasticcache_cost_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_name", "block_contents": "Name tag"}, "doc.yoda.infra__elasticcache_cost_pricing_term": {"name": "infra__elasticcache_cost_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_pricing_term", "block_contents": "Pricing term (on demand, reserved)"}, "doc.yoda.infra__elasticcache_cost_product_instance_type": {"name": "infra__elasticcache_cost_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_product_instance_type", "block_contents": "Instance type"}, "doc.yoda.infra__elasticcache_cost_product_line": {"name": "infra__elasticcache_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_product_line", "block_contents": "Product line"}, "doc.yoda.infra__elasticcache_cost_product_memory": {"name": "infra__elasticcache_cost_product_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_product_memory", "block_contents": "Instance memory"}, "doc.yoda.infra__elasticcache_cost_product_network_performance": {"name": "infra__elasticcache_cost_product_network_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_product_network_performance", "block_contents": "Instance network capacity"}, "doc.yoda.infra__elasticcache_cost_region": {"name": "infra__elasticcache_cost_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_region", "block_contents": "Region"}, "doc.yoda.infra__elasticcache_cost_resource_tags_user_feature": {"name": "infra__elasticcache_cost_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_resource_tags_user_feature", "block_contents": "Feature tag"}, "doc.yoda.infra__elasticcache_cost_resource_tags_user_group": {"name": "infra__elasticcache_cost_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_resource_tags_user_group", "block_contents": "Group tag"}, "doc.yoda.infra__elasticcache_cost_resource_tags_user_team": {"name": "infra__elasticcache_cost_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_resource_tags_user_team", "block_contents": "Team tag"}, "doc.yoda.infra__elasticcache_cost_unblended_cost": {"name": "infra__elasticcache_cost_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "original_file_path": "models/infra/marts/infra__elasticcache_cost/infra__elasticcache_cost.md", "unique_id": "doc.yoda.infra__elasticcache_cost_unblended_cost", "block_contents": "Unbleded cost"}, "doc.yoda.infra__elasticsearch_cost_billing_day": {"name": "infra__elasticsearch_cost_billing_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_billing_day", "block_contents": "Billing Date"}, "doc.yoda.infra__elasticsearch_cost_cost": {"name": "infra__elasticsearch_cost_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_cost", "block_contents": "Overall elasticsearch cluster cost"}, "doc.yoda.infra__elasticsearch_cost_cpuefficiency": {"name": "infra__elasticsearch_cost_cpuefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_cpuefficiency", "block_contents": "Elasticsearch cluster cpu efficiency"}, "doc.yoda.infra__elasticsearch_cost_day": {"name": "infra__elasticsearch_cost_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_day", "block_contents": "Day of the cost aggregation"}, "doc.yoda.infra__elasticsearch_cost_es_cluster": {"name": "infra__elasticsearch_cost_es_cluster", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_es_cluster", "block_contents": "Elastcisearch cluster name"}, "doc.yoda.infra__elasticsearch_cost_group": {"name": "infra__elasticsearch_cost_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_group", "block_contents": "Group owning the service"}, "doc.yoda.infra__elasticsearch_cost_k8s_cluster": {"name": "infra__elasticsearch_cost_k8s_cluster", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_k8s_cluster", "block_contents": "Kubebrnetes cluster name running the elasticsearch cluster"}, "doc.yoda.infra__elasticsearch_cost_month": {"name": "infra__elasticsearch_cost_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_month", "block_contents": "Month of the cost aggregation"}, "doc.yoda.infra__elasticsearch_cost_namespace": {"name": "infra__elasticsearch_cost_namespace", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_namespace", "block_contents": "Kuberneters namespace"}, "doc.yoda.infra__elasticsearch_cost_product_line": {"name": "infra__elasticsearch_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_product_line", "block_contents": "Product line"}, "doc.yoda.infra__elasticsearch_cost_ramefficiency": {"name": "infra__elasticsearch_cost_ramefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_ramefficiency", "block_contents": "Elasticsearch cluster memory efficiency"}, "doc.yoda.infra__elasticsearch_cost_team": {"name": "infra__elasticsearch_cost_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_team", "block_contents": "Team owning the service"}, "doc.yoda.infra__elasticsearch_cost_uptime_in_minutes": {"name": "infra__elasticsearch_cost_uptime_in_minutes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_uptime_in_minutes", "block_contents": "Elasticsearch cluster uptime in minutes"}, "doc.yoda.infra__elasticsearch_cost_year": {"name": "infra__elasticsearch_cost_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__elasticsearch_cost_year", "block_contents": "Year of the cost aggregation"}, "doc.yoda.infra__marts_elasticsearch_cost": {"name": "infra__marts_elasticsearch_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "original_file_path": "models/infra/marts/infra__elasticsearch_cost/infra__elasticsearch_cost.md", "unique_id": "doc.yoda.infra__marts_elasticsearch_cost", "block_contents": "Elasticsearch cost aggregation table"}, "doc.yoda.infra__git_actions_runs": {"name": "infra__git_actions_runs", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs", "block_contents": "Yotpo repositories workflow runs information as extracted from https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28#list-workflow-runs-for-a-repository"}, "doc.yoda.infra__git_actions_runs_check_suite_id": {"name": "infra__git_actions_runs_check_suite_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_check_suite_id", "block_contents": "The ID of the associated check suite."}, "doc.yoda.infra__git_actions_runs_check_suite_node_id": {"name": "infra__git_actions_runs_check_suite_node_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_check_suite_node_id", "block_contents": "The node ID of the associated check suite."}, "doc.yoda.infra__git_actions_runs_conclusion": {"name": "infra__git_actions_runs_conclusion", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_conclusion", "block_contents": "Can be one of: completed, action_required, cancelled, failure, neutral, skipped, stale, success, timed_out, in_progress, queued, requested, waiting, pending"}, "doc.yoda.infra__git_actions_runs_created_at": {"name": "infra__git_actions_runs_created_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_created_at", "block_contents": "The date time the action was created"}, "doc.yoda.infra__git_actions_runs_duration_in_seconds": {"name": "infra__git_actions_runs_duration_in_seconds", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_duration_in_seconds", "block_contents": "Run duration in seconds"}, "doc.yoda.infra__git_actions_runs_event": {"name": "infra__git_actions_runs_event", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_event", "block_contents": "Returns workflow run triggered by the event you specify. For example, push, pull_request or issue"}, "doc.yoda.infra__git_actions_runs_head_branch": {"name": "infra__git_actions_runs_head_branch", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_head_branch", "block_contents": "The git branch that this action run on"}, "doc.yoda.infra__git_actions_runs_head_sha": {"name": "infra__git_actions_runs_head_sha", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_head_sha", "block_contents": "he SHA of the head commit that points to the version of the workflow being run."}, "doc.yoda.infra__git_actions_runs_id": {"name": "infra__git_actions_runs_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_id", "block_contents": "The ID of the workflow run."}, "doc.yoda.infra__git_actions_runs_name": {"name": "infra__git_actions_runs_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_name", "block_contents": "The name of the workflow run."}, "doc.yoda.infra__git_actions_runs_node_id": {"name": "infra__git_actions_runs_node_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_node_id", "block_contents": "The github node id of the run."}, "doc.yoda.infra__git_actions_runs_repo_name": {"name": "infra__git_actions_runs_repo_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_repo_name", "block_contents": "The name of the git repository that the action run on."}, "doc.yoda.infra__git_actions_runs_run_attempt": {"name": "infra__git_actions_runs_run_attempt", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_run_attempt", "block_contents": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run."}, "doc.yoda.infra__git_actions_runs_run_number": {"name": "infra__git_actions_runs_run_number", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_run_number", "block_contents": "The auto incrementing run number for the workflow run."}, "doc.yoda.infra__git_actions_runs_run_started_at": {"name": "infra__git_actions_runs_run_started_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_run_started_at", "block_contents": "The start time of the latest run. Resets on re-run."}, "doc.yoda.infra__git_actions_runs_status": {"name": "infra__git_actions_runs_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_status", "block_contents": "The status of the run - the final status will be in the conculstion columns"}, "doc.yoda.infra__git_actions_runs_updated_at": {"name": "infra__git_actions_runs_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_updated_at", "block_contents": "The date time the action run was updated"}, "doc.yoda.infra__git_actions_runs_url": {"name": "infra__git_actions_runs_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_url", "block_contents": "The URL to the workflow run."}, "doc.yoda.infra__git_actions_runs_workflow_id": {"name": "infra__git_actions_runs_workflow_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "original_file_path": "models/infra/marts/infra__git_actions_runs/infra__git_actions_runs.md", "unique_id": "doc.yoda.infra__git_actions_runs_workflow_id", "block_contents": "The ID of the parent workflow."}, "doc.yoda.infra__groups_and_teams": {"name": "infra__groups_and_teams", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__groups_and_teams/infra__groups_and_teams.md", "original_file_path": "models/infra/marts/infra__groups_and_teams/infra__groups_and_teams.md", "unique_id": "doc.yoda.infra__groups_and_teams", "block_contents": "All product lines, groups and teams which are generated from AWS and Kubernetes"}, "doc.yoda.infra__groups_and_teams_group": {"name": "infra__groups_and_teams_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__groups_and_teams/infra__groups_and_teams.md", "original_file_path": "models/infra/marts/infra__groups_and_teams/infra__groups_and_teams.md", "unique_id": "doc.yoda.infra__groups_and_teams_group", "block_contents": "Group name"}, "doc.yoda.infra__groups_and_teams_product_line": {"name": "infra__groups_and_teams_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__groups_and_teams/infra__groups_and_teams.md", "original_file_path": "models/infra/marts/infra__groups_and_teams/infra__groups_and_teams.md", "unique_id": "doc.yoda.infra__groups_and_teams_product_line", "block_contents": "Product line"}, "doc.yoda.infra__groups_and_teams_team": {"name": "infra__groups_and_teams_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__groups_and_teams/infra__groups_and_teams.md", "original_file_path": "models/infra/marts/infra__groups_and_teams/infra__groups_and_teams.md", "unique_id": "doc.yoda.infra__groups_and_teams_team", "block_contents": "Team name"}, "doc.yoda.infra__infra_metrics": {"name": "infra__infra_metrics", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__infra_metrics/infra__infra_metrics.md", "original_file_path": "models/infra/marts/infra__infra_metrics/infra__infra_metrics.md", "unique_id": "doc.yoda.infra__infra_metrics", "block_contents": "Exposes infra metrics in addition to yoda models metrics"}, "doc.yoda.infra__infra_metrics_row_number": {"name": "infra__infra_metrics_row_number", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__infra_metrics/infra__infra_metrics.md", "original_file_path": "models/infra/marts/infra__infra_metrics/infra__infra_metrics.md", "unique_id": "doc.yoda.infra__infra_metrics_row_number", "block_contents": "Row number basted on partitioning key and component"}, "doc.yoda.infra__kubernetes_cost_availability_zone": {"name": "infra__kubernetes_cost_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_availability_zone", "block_contents": "pod's availability zone"}, "doc.yoda.infra__kubernetes_cost_billing_day": {"name": "infra__kubernetes_cost_billing_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_billing_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__kubernetes_cost_cluster": {"name": "infra__kubernetes_cost_cluster", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cluster", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__kubernetes_cost_component_normalized": {"name": "infra__kubernetes_cost_component_normalized", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_component_normalized", "block_contents": "Component"}, "doc.yoda.infra__kubernetes_cost_compute_cost": {"name": "infra__kubernetes_cost_compute_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_compute_cost", "block_contents": "Compute cost"}, "doc.yoda.infra__kubernetes_cost_cpuCoreUsageMax": {"name": "infra__kubernetes_cost_cpuCoreUsageMax", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cpuCoreUsageMax", "block_contents": "Maximum CPU usage of the pod"}, "doc.yoda.infra__kubernetes_cost_cpucorehours": {"name": "infra__kubernetes_cost_cpucorehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cpucorehours", "block_contents": "Total CPU hours of the pod"}, "doc.yoda.infra__kubernetes_cost_cpucorerequestaverage": {"name": "infra__kubernetes_cost_cpucorerequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cpucorerequestaverage", "block_contents": "Average Cores requested by the pod"}, "doc.yoda.infra__kubernetes_cost_cpucores": {"name": "infra__kubernetes_cost_cpucores", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cpucores", "block_contents": "Total Cores requested by the pod"}, "doc.yoda.infra__kubernetes_cost_cpucoreusageaverage": {"name": "infra__kubernetes_cost_cpucoreusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cpucoreusageaverage", "block_contents": "Average Cores used by the pod"}, "doc.yoda.infra__kubernetes_cost_cpucost": {"name": "infra__kubernetes_cost_cpucost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cpucost", "block_contents": "Total CPU cost of the pod"}, "doc.yoda.infra__kubernetes_cost_cpuefficiency": {"name": "infra__kubernetes_cost_cpuefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cpuefficiency", "block_contents": "CPU average usage divided by the requested"}, "doc.yoda.infra__kubernetes_cost_data_transfer_cost": {"name": "infra__kubernetes_cost_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_data_transfer_cost", "block_contents": "Data transfer cost"}, "doc.yoda.infra__kubernetes_cost_day": {"name": "infra__kubernetes_cost_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_day", "block_contents": "Day of the week"}, "doc.yoda.infra__kubernetes_cost_ec2_id": {"name": "infra__kubernetes_cost_ec2_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_ec2_id", "block_contents": "EC Instace id that ran the pod"}, "doc.yoda.infra__kubernetes_cost_feature_normalized": {"name": "infra__kubernetes_cost_feature_normalized", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_feature_normalized", "block_contents": "Feature"}, "doc.yoda.infra__kubernetes_cost_group": {"name": "infra__kubernetes_cost_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__kubernetes_cost_is_cast": {"name": "infra__kubernetes_cost_is_cast", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_is_cast", "block_contents": "Indicates if pod is running on instances provisioned"}, "doc.yoda.infra__kubernetes_cost_minutes": {"name": "infra__kubernetes_cost_minutes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_minutes", "block_contents": "Amount of minutes the pod ran"}, "doc.yoda.infra__kubernetes_cost_month": {"name": "infra__kubernetes_cost_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_month", "block_contents": "Month"}, "doc.yoda.infra__kubernetes_cost_name": {"name": "infra__kubernetes_cost_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_name", "block_contents": "Name of the continaer (for debugging)"}, "doc.yoda.infra__kubernetes_cost_namespace": {"name": "infra__kubernetes_cost_namespace", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_namespace", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__kubernetes_cost_networkcost": {"name": "infra__kubernetes_cost_networkcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_networkcost", "block_contents": "Total network cost for a given service"}, "doc.yoda.infra__kubernetes_cost_networkreceivebytes": {"name": "infra__kubernetes_cost_networkreceivebytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_networkreceivebytes", "block_contents": "Total amount of received bytes by the pod"}, "doc.yoda.infra__kubernetes_cost_networktransferbytes": {"name": "infra__kubernetes_cost_networktransferbytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_networktransferbytes", "block_contents": "Total amount of transferred bytes from the pod"}, "doc.yoda.infra__kubernetes_cost_pricing_term": {"name": "infra__kubernetes_cost_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_pricing_term", "block_contents": "Pricing term"}, "doc.yoda.infra__kubernetes_cost_product_instance_type": {"name": "infra__kubernetes_cost_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_product_instance_type", "block_contents": "Product instance type"}, "doc.yoda.infra__kubernetes_cost_product_line": {"name": "infra__kubernetes_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_product_line", "block_contents": "Product line"}, "doc.yoda.infra__kubernetes_cost_product_memory": {"name": "infra__kubernetes_cost_product_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_product_memory", "block_contents": "Product memory"}, "doc.yoda.infra__kubernetes_cost_product_network_performance": {"name": "infra__kubernetes_cost_product_network_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_product_network_performance", "block_contents": "Product network performance"}, "doc.yoda.infra__kubernetes_cost_product_region": {"name": "infra__kubernetes_cost_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_product_region", "block_contents": "Product region"}, "doc.yoda.infra__kubernetes_cost_product_storage": {"name": "infra__kubernetes_cost_product_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_product_storage", "block_contents": "Product storage"}, "doc.yoda.infra__kubernetes_cost_product_vcpu": {"name": "infra__kubernetes_cost_product_vcpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_product_vcpu", "block_contents": "Product Virtual CPU"}, "doc.yoda.infra__kubernetes_cost_productline": {"name": "infra__kubernetes_cost_productline", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_productline", "block_contents": "Product line using the service. The default is taken from kubecost -> properties.labels.productline/product_line"}, "doc.yoda.infra__kubernetes_cost_pvcost": {"name": "infra__kubernetes_cost_pvcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_pvcost", "block_contents": "Total Storage cost for a given service"}, "doc.yoda.infra__kubernetes_cost_ramByteUsageMax": {"name": "infra__kubernetes_cost_ramByteUsageMax", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_ramByteUsageMax", "block_contents": "Maximum amount of actual memory usage"}, "doc.yoda.infra__kubernetes_cost_rambytehours": {"name": "infra__kubernetes_cost_rambytehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_rambytehours", "block_contents": "Hourly amount of memory used"}, "doc.yoda.infra__kubernetes_cost_rambyterequestaverage": {"name": "infra__kubernetes_cost_rambyterequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_rambyterequestaverage", "block_contents": "Average amount of memory used by the pod"}, "doc.yoda.infra__kubernetes_cost_rambytes": {"name": "infra__kubernetes_cost_rambytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_rambytes", "block_contents": "Memory requested in bytes"}, "doc.yoda.infra__kubernetes_cost_rambyteusageaverage": {"name": "infra__kubernetes_cost_rambyteusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_rambyteusageaverage", "block_contents": "Average amount of bytes used by the pod"}, "doc.yoda.infra__kubernetes_cost_ramcost": {"name": "infra__kubernetes_cost_ramcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_ramcost", "block_contents": "Total Memory cost for a given service"}, "doc.yoda.infra__kubernetes_cost_ramefficiency": {"name": "infra__kubernetes_cost_ramefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_ramefficiency", "block_contents": "Average amount of used bytes divided by bytes requested"}, "doc.yoda.infra__kubernetes_cost_release_name": {"name": "infra__kubernetes_cost_release_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_release_name", "block_contents": "Application running the service. The default is taken from kubecost -> properties.labels.app"}, "doc.yoda.infra__kubernetes_cost_resource_tags_user_product_line": {"name": "infra__kubernetes_cost_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_resource_tags_user_product_line", "block_contents": "User product line"}, "doc.yoda.infra__kubernetes_cost_run_id": {"name": "infra__kubernetes_cost_run_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_run_id", "block_contents": "Pod name"}, "doc.yoda.infra__kubernetes_cost_service": {"name": "infra__kubernetes_cost_service", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_service", "block_contents": "Service name (e.g. spark, airflow, flink...). The default is taken from kubecost -> properties.container"}, "doc.yoda.infra__kubernetes_cost_sub_service": {"name": "infra__kubernetes_cost_sub_service", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_sub_service", "block_contents": "Sub service (e.g. worker, executor). The default is taken from kubecost -> properties.container"}, "doc.yoda.infra__kubernetes_cost_subsystem_normalized": {"name": "infra__kubernetes_cost_subsystem_normalized", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_subsystem_normalized", "block_contents": "SubSystem"}, "doc.yoda.infra__kubernetes_cost_system_normalized": {"name": "infra__kubernetes_cost_system_normalized", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_system_normalized", "block_contents": "System"}, "doc.yoda.infra__kubernetes_cost_team": {"name": "infra__kubernetes_cost_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__kubernetes_cost_totalcost": {"name": "infra__kubernetes_cost_totalcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_totalcost", "block_contents": "Total service cost"}, "doc.yoda.infra__kubernetes_cost_totalefficiency": {"name": "infra__kubernetes_cost_totalefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_totalefficiency", "block_contents": "Memory and CPU efficiency"}, "doc.yoda.infra__kubernetes_cost_year": {"name": "infra__kubernetes_cost_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__kubernetes_cost_year", "block_contents": "Year"}, "doc.yoda.infra__marts_kubernetes_cost": {"name": "infra__marts_kubernetes_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost/infra__kubernetes_cost.md", "unique_id": "doc.yoda.infra__marts_kubernetes_cost", "block_contents": "Kubernetes cost table"}, "doc.yoda.infra__kubernetes_cost_cold": {"name": "infra__kubernetes_cost_cold", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold", "block_contents": "Kubernetes cost data except the last three days"}, "doc.yoda.infra__kubernetes_cost_cold_availability_zone": {"name": "infra__kubernetes_cost_cold_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_availability_zone", "block_contents": "Availability zone"}, "doc.yoda.infra__kubernetes_cost_cold_billing_day": {"name": "infra__kubernetes_cost_cold_billing_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_billing_day", "block_contents": "Billing date"}, "doc.yoda.infra__kubernetes_cost_cold_cluster": {"name": "infra__kubernetes_cost_cold_cluster", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_cluster", "block_contents": "K8S cluster name"}, "doc.yoda.infra__kubernetes_cost_cold_component": {"name": "infra__kubernetes_cost_cold_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_component", "block_contents": "Product component"}, "doc.yoda.infra__kubernetes_cost_cold_compute_cost": {"name": "infra__kubernetes_cost_cold_compute_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_compute_cost", "block_contents": "Ec2 instance compute cost"}, "doc.yoda.infra__kubernetes_cost_cold_cpuCoreUsageMax": {"name": "infra__kubernetes_cost_cold_cpuCoreUsageMax", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_cpuCoreUsageMax", "block_contents": "CPU max core usage"}, "doc.yoda.infra__kubernetes_cost_cold_cpucorehours": {"name": "infra__kubernetes_cost_cold_cpucorehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_cpucorehours", "block_contents": "CPU core hours"}, "doc.yoda.infra__kubernetes_cost_cold_cpucorerequestaverage": {"name": "infra__kubernetes_cost_cold_cpucorerequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_cpucorerequestaverage", "block_contents": "CPU core request average"}, "doc.yoda.infra__kubernetes_cost_cold_cpucores": {"name": "infra__kubernetes_cost_cold_cpucores", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_cpucores", "block_contents": "CPU cores"}, "doc.yoda.infra__kubernetes_cost_cold_cpucoreusageaverage": {"name": "infra__kubernetes_cost_cold_cpucoreusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_cpucoreusageaverage", "block_contents": "CPU core usage average"}, "doc.yoda.infra__kubernetes_cost_cold_cpucost": {"name": "infra__kubernetes_cost_cold_cpucost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_cpucost", "block_contents": "CPU cost"}, "doc.yoda.infra__kubernetes_cost_cold_cpuefficiency": {"name": "infra__kubernetes_cost_cold_cpuefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_cpuefficiency", "block_contents": "CPU efficiency"}, "doc.yoda.infra__kubernetes_cost_cold_data_transfer_cost": {"name": "infra__kubernetes_cost_cold_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_data_transfer_cost", "block_contents": "Data transfer cost"}, "doc.yoda.infra__kubernetes_cost_cold_day": {"name": "infra__kubernetes_cost_cold_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_day", "block_contents": "Day"}, "doc.yoda.infra__kubernetes_cost_cold_ec2_id": {"name": "infra__kubernetes_cost_cold_ec2_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_ec2_id", "block_contents": "EC2 instance id"}, "doc.yoda.infra__kubernetes_cost_cold_feature": {"name": "infra__kubernetes_cost_cold_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_feature", "block_contents": "Feature"}, "doc.yoda.infra__kubernetes_cost_cold_group": {"name": "infra__kubernetes_cost_cold_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_group", "block_contents": "Group"}, "doc.yoda.infra__kubernetes_cost_cold_is_cast": {"name": "infra__kubernetes_cost_cold_is_cast", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_is_cast", "block_contents": "Indicates if the pod is managed by castai"}, "doc.yoda.infra__kubernetes_cost_cold_minutes": {"name": "infra__kubernetes_cost_cold_minutes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_minutes", "block_contents": "Minutes"}, "doc.yoda.infra__kubernetes_cost_cold_month": {"name": "infra__kubernetes_cost_cold_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_month", "block_contents": "Month"}, "doc.yoda.infra__kubernetes_cost_cold_name": {"name": "infra__kubernetes_cost_cold_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_name", "block_contents": "Name"}, "doc.yoda.infra__kubernetes_cost_cold_namespace": {"name": "infra__kubernetes_cost_cold_namespace", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_namespace", "block_contents": "Name"}, "doc.yoda.infra__kubernetes_cost_cold_networkcost": {"name": "infra__kubernetes_cost_cold_networkcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_networkcost", "block_contents": "Network cost"}, "doc.yoda.infra__kubernetes_cost_cold_networkreceivebytes": {"name": "infra__kubernetes_cost_cold_networkreceivebytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_networkreceivebytes", "block_contents": "Network receive bytes"}, "doc.yoda.infra__kubernetes_cost_cold_networktransferbytes": {"name": "infra__kubernetes_cost_cold_networktransferbytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_networktransferbytes", "block_contents": "Network transfer bytes"}, "doc.yoda.infra__kubernetes_cost_cold_pricing_term": {"name": "infra__kubernetes_cost_cold_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_pricing_term", "block_contents": "Pricing term - On Demand / Spot"}, "doc.yoda.infra__kubernetes_cost_cold_product_instance_type": {"name": "infra__kubernetes_cost_cold_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_product_instance_type", "block_contents": "Instance type"}, "doc.yoda.infra__kubernetes_cost_cold_product_memory": {"name": "infra__kubernetes_cost_cold_product_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_product_memory", "block_contents": "Product memory"}, "doc.yoda.infra__kubernetes_cost_cold_product_network_performance": {"name": "infra__kubernetes_cost_cold_product_network_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_product_network_performance", "block_contents": "Network performance"}, "doc.yoda.infra__kubernetes_cost_cold_product_region": {"name": "infra__kubernetes_cost_cold_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_product_region", "block_contents": "Product region"}, "doc.yoda.infra__kubernetes_cost_cold_product_storage": {"name": "infra__kubernetes_cost_cold_product_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_product_storage", "block_contents": "Product storage"}, "doc.yoda.infra__kubernetes_cost_cold_product_vcpu": {"name": "infra__kubernetes_cost_cold_product_vcpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_product_vcpu", "block_contents": "Product virtual CPU"}, "doc.yoda.infra__kubernetes_cost_cold_productline": {"name": "infra__kubernetes_cost_cold_productline", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_productline", "block_contents": "Product line"}, "doc.yoda.infra__kubernetes_cost_cold_pvcost": {"name": "infra__kubernetes_cost_cold_pvcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_pvcost", "block_contents": "Persistent volumne cost"}, "doc.yoda.infra__kubernetes_cost_cold_ramByteUsageMax": {"name": "infra__kubernetes_cost_cold_ramByteUsageMax", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_ramByteUsageMax", "block_contents": "RAM byte usage max"}, "doc.yoda.infra__kubernetes_cost_cold_rambytehours": {"name": "infra__kubernetes_cost_cold_rambytehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_rambytehours", "block_contents": "RAM byte hours"}, "doc.yoda.infra__kubernetes_cost_cold_rambyterequestaverage": {"name": "infra__kubernetes_cost_cold_rambyterequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_rambyterequestaverage", "block_contents": "RAM byte request average"}, "doc.yoda.infra__kubernetes_cost_cold_rambytes": {"name": "infra__kubernetes_cost_cold_rambytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_rambytes", "block_contents": "RAM bytes"}, "doc.yoda.infra__kubernetes_cost_cold_rambyteusageaverage": {"name": "infra__kubernetes_cost_cold_rambyteusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_rambyteusageaverage", "block_contents": "RAM byte usage average"}, "doc.yoda.infra__kubernetes_cost_cold_ramcost": {"name": "infra__kubernetes_cost_cold_ramcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_ramcost", "block_contents": "RAM cost"}, "doc.yoda.infra__kubernetes_cost_cold_ramefficiency": {"name": "infra__kubernetes_cost_cold_ramefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_ramefficiency", "block_contents": "RAM efficiency"}, "doc.yoda.infra__kubernetes_cost_cold_release_name": {"name": "infra__kubernetes_cost_cold_release_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_release_name", "block_contents": "Release name"}, "doc.yoda.infra__kubernetes_cost_cold_resource_tags_user_product_line": {"name": "infra__kubernetes_cost_cold_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_resource_tags_user_product_line", "block_contents": "product line ec2 tag"}, "doc.yoda.infra__kubernetes_cost_cold_run_id": {"name": "infra__kubernetes_cost_cold_run_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_run_id", "block_contents": "Run id"}, "doc.yoda.infra__kubernetes_cost_cold_service": {"name": "infra__kubernetes_cost_cold_service", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_service", "block_contents": "Service"}, "doc.yoda.infra__kubernetes_cost_cold_sub_service": {"name": "infra__kubernetes_cost_cold_sub_service", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_sub_service", "block_contents": "Sub service"}, "doc.yoda.infra__kubernetes_cost_cold_subsystem": {"name": "infra__kubernetes_cost_cold_subsystem", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_subsystem", "block_contents": "Sub system"}, "doc.yoda.infra__kubernetes_cost_cold_system": {"name": "infra__kubernetes_cost_cold_system", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_system", "block_contents": "System"}, "doc.yoda.infra__kubernetes_cost_cold_team": {"name": "infra__kubernetes_cost_cold_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_team", "block_contents": "Team"}, "doc.yoda.infra__kubernetes_cost_cold_totalcost": {"name": "infra__kubernetes_cost_cold_totalcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_totalcost", "block_contents": "Total cost"}, "doc.yoda.infra__kubernetes_cost_cold_totalefficiency": {"name": "infra__kubernetes_cost_cold_totalefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_totalefficiency", "block_contents": "Total efficiency"}, "doc.yoda.infra__kubernetes_cost_cold_year": {"name": "infra__kubernetes_cost_cold_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_cold/infra__kubernetes_cost_cold.md", "unique_id": "doc.yoda.infra__kubernetes_cost_cold_year", "block_contents": "Year"}, "doc.yoda.infra__kubernetes_cost_hot": {"name": "infra__kubernetes_cost_hot", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot", "block_contents": "Kubernetes cost data of the last three days"}, "doc.yoda.infra__kubernetes_cost_hot_availability_zone": {"name": "infra__kubernetes_cost_hot_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_availability_zone", "block_contents": "Availability zone"}, "doc.yoda.infra__kubernetes_cost_hot_billing_day": {"name": "infra__kubernetes_cost_hot_billing_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_billing_day", "block_contents": "Billing date"}, "doc.yoda.infra__kubernetes_cost_hot_cluster": {"name": "infra__kubernetes_cost_hot_cluster", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_cluster", "block_contents": "K8S cluster name"}, "doc.yoda.infra__kubernetes_cost_hot_component": {"name": "infra__kubernetes_cost_hot_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_component", "block_contents": "Product component"}, "doc.yoda.infra__kubernetes_cost_hot_compute_cost": {"name": "infra__kubernetes_cost_hot_compute_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_compute_cost", "block_contents": "Ec2 instance compute cost"}, "doc.yoda.infra__kubernetes_cost_hot_cpuCoreUsageMax": {"name": "infra__kubernetes_cost_hot_cpuCoreUsageMax", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_cpuCoreUsageMax", "block_contents": "CPU max core usage"}, "doc.yoda.infra__kubernetes_cost_hot_cpucorehours": {"name": "infra__kubernetes_cost_hot_cpucorehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_cpucorehours", "block_contents": "CPU core hours"}, "doc.yoda.infra__kubernetes_cost_hot_cpucorerequestaverage": {"name": "infra__kubernetes_cost_hot_cpucorerequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_cpucorerequestaverage", "block_contents": "CPU core request average"}, "doc.yoda.infra__kubernetes_cost_hot_cpucores": {"name": "infra__kubernetes_cost_hot_cpucores", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_cpucores", "block_contents": "CPU cores"}, "doc.yoda.infra__kubernetes_cost_hot_cpucoreusageaverage": {"name": "infra__kubernetes_cost_hot_cpucoreusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_cpucoreusageaverage", "block_contents": "CPU core usage average"}, "doc.yoda.infra__kubernetes_cost_hot_cpucost": {"name": "infra__kubernetes_cost_hot_cpucost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_cpucost", "block_contents": "CPU cost"}, "doc.yoda.infra__kubernetes_cost_hot_cpuefficiency": {"name": "infra__kubernetes_cost_hot_cpuefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_cpuefficiency", "block_contents": "CPU efficiency"}, "doc.yoda.infra__kubernetes_cost_hot_data_transfer_cost": {"name": "infra__kubernetes_cost_hot_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_data_transfer_cost", "block_contents": "Data transfer cost"}, "doc.yoda.infra__kubernetes_cost_hot_day": {"name": "infra__kubernetes_cost_hot_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_day", "block_contents": "Day"}, "doc.yoda.infra__kubernetes_cost_hot_ec2_id": {"name": "infra__kubernetes_cost_hot_ec2_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_ec2_id", "block_contents": "EC2 instance id"}, "doc.yoda.infra__kubernetes_cost_hot_feature": {"name": "infra__kubernetes_cost_hot_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_feature", "block_contents": "Feature"}, "doc.yoda.infra__kubernetes_cost_hot_group": {"name": "infra__kubernetes_cost_hot_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_group", "block_contents": "Group"}, "doc.yoda.infra__kubernetes_cost_hot_is_cast": {"name": "infra__kubernetes_cost_hot_is_cast", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_is_cast", "block_contents": "Indicates if the pod is managed by castai"}, "doc.yoda.infra__kubernetes_cost_hot_minutes": {"name": "infra__kubernetes_cost_hot_minutes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_minutes", "block_contents": "Minutes"}, "doc.yoda.infra__kubernetes_cost_hot_month": {"name": "infra__kubernetes_cost_hot_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_month", "block_contents": "Month"}, "doc.yoda.infra__kubernetes_cost_hot_name": {"name": "infra__kubernetes_cost_hot_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_name", "block_contents": "Name"}, "doc.yoda.infra__kubernetes_cost_hot_namespace": {"name": "infra__kubernetes_cost_hot_namespace", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_namespace", "block_contents": "Name"}, "doc.yoda.infra__kubernetes_cost_hot_networkcost": {"name": "infra__kubernetes_cost_hot_networkcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_networkcost", "block_contents": "Network cost"}, "doc.yoda.infra__kubernetes_cost_hot_networkreceivebytes": {"name": "infra__kubernetes_cost_hot_networkreceivebytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_networkreceivebytes", "block_contents": "Network receive bytes"}, "doc.yoda.infra__kubernetes_cost_hot_networktransferbytes": {"name": "infra__kubernetes_cost_hot_networktransferbytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_networktransferbytes", "block_contents": "Network transfer bytes"}, "doc.yoda.infra__kubernetes_cost_hot_pricing_term": {"name": "infra__kubernetes_cost_hot_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_pricing_term", "block_contents": "Pricing term - On Demand / Spot"}, "doc.yoda.infra__kubernetes_cost_hot_product_instance_type": {"name": "infra__kubernetes_cost_hot_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_product_instance_type", "block_contents": "Instance type"}, "doc.yoda.infra__kubernetes_cost_hot_product_memory": {"name": "infra__kubernetes_cost_hot_product_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_product_memory", "block_contents": "Product memory"}, "doc.yoda.infra__kubernetes_cost_hot_product_network_performance": {"name": "infra__kubernetes_cost_hot_product_network_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_product_network_performance", "block_contents": "Network performance"}, "doc.yoda.infra__kubernetes_cost_hot_product_region": {"name": "infra__kubernetes_cost_hot_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_product_region", "block_contents": "Product region"}, "doc.yoda.infra__kubernetes_cost_hot_product_storage": {"name": "infra__kubernetes_cost_hot_product_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_product_storage", "block_contents": "Product storage"}, "doc.yoda.infra__kubernetes_cost_hot_product_vcpu": {"name": "infra__kubernetes_cost_hot_product_vcpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_product_vcpu", "block_contents": "Product virtual CPU"}, "doc.yoda.infra__kubernetes_cost_hot_productline": {"name": "infra__kubernetes_cost_hot_productline", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_productline", "block_contents": "Product line"}, "doc.yoda.infra__kubernetes_cost_hot_pvcost": {"name": "infra__kubernetes_cost_hot_pvcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_pvcost", "block_contents": "Persistent volumne cost"}, "doc.yoda.infra__kubernetes_cost_hot_ramByteUsageMax": {"name": "infra__kubernetes_cost_hot_ramByteUsageMax", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_ramByteUsageMax", "block_contents": "RAM byte usage max"}, "doc.yoda.infra__kubernetes_cost_hot_rambytehours": {"name": "infra__kubernetes_cost_hot_rambytehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_rambytehours", "block_contents": "RAM byte hours"}, "doc.yoda.infra__kubernetes_cost_hot_rambyterequestaverage": {"name": "infra__kubernetes_cost_hot_rambyterequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_rambyterequestaverage", "block_contents": "RAM byte request average"}, "doc.yoda.infra__kubernetes_cost_hot_rambytes": {"name": "infra__kubernetes_cost_hot_rambytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_rambytes", "block_contents": "RAM bytes"}, "doc.yoda.infra__kubernetes_cost_hot_rambyteusageaverage": {"name": "infra__kubernetes_cost_hot_rambyteusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_rambyteusageaverage", "block_contents": "RAM byte usage average"}, "doc.yoda.infra__kubernetes_cost_hot_ramcost": {"name": "infra__kubernetes_cost_hot_ramcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_ramcost", "block_contents": "RAM cost"}, "doc.yoda.infra__kubernetes_cost_hot_ramefficiency": {"name": "infra__kubernetes_cost_hot_ramefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_ramefficiency", "block_contents": "RAM efficiency"}, "doc.yoda.infra__kubernetes_cost_hot_release_name": {"name": "infra__kubernetes_cost_hot_release_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_release_name", "block_contents": "Release name"}, "doc.yoda.infra__kubernetes_cost_hot_resource_tags_user_product_line": {"name": "infra__kubernetes_cost_hot_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_resource_tags_user_product_line", "block_contents": "product line ec2 tag"}, "doc.yoda.infra__kubernetes_cost_hot_run_id": {"name": "infra__kubernetes_cost_hot_run_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_run_id", "block_contents": "Run id"}, "doc.yoda.infra__kubernetes_cost_hot_service": {"name": "infra__kubernetes_cost_hot_service", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_service", "block_contents": "Service"}, "doc.yoda.infra__kubernetes_cost_hot_sub_service": {"name": "infra__kubernetes_cost_hot_sub_service", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_sub_service", "block_contents": "Sub service"}, "doc.yoda.infra__kubernetes_cost_hot_subsystem": {"name": "infra__kubernetes_cost_hot_subsystem", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_subsystem", "block_contents": "Sub system"}, "doc.yoda.infra__kubernetes_cost_hot_system": {"name": "infra__kubernetes_cost_hot_system", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_system", "block_contents": "System"}, "doc.yoda.infra__kubernetes_cost_hot_team": {"name": "infra__kubernetes_cost_hot_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_team", "block_contents": "Team"}, "doc.yoda.infra__kubernetes_cost_hot_totalcost": {"name": "infra__kubernetes_cost_hot_totalcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_totalcost", "block_contents": "Total cost"}, "doc.yoda.infra__kubernetes_cost_hot_totalefficiency": {"name": "infra__kubernetes_cost_hot_totalefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_totalefficiency", "block_contents": "Total efficiency"}, "doc.yoda.infra__kubernetes_cost_hot_year": {"name": "infra__kubernetes_cost_hot_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "original_file_path": "models/infra/marts/infra__kubernetes_cost_hot/infra__kubernetes_cost_hot.md", "unique_id": "doc.yoda.infra__kubernetes_cost_hot_year", "block_contents": "Year"}, "doc.yoda.infra__marts_msk_cost": {"name": "infra__marts_msk_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__marts_msk_cost", "block_contents": "AWS Managed Kafka Costs"}, "doc.yoda.infra__msk_cost_account_name": {"name": "infra__msk_cost_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_account_name", "block_contents": "Account name (not complete, only main ones)"}, "doc.yoda.infra__msk_cost_amortized_cost": {"name": "infra__msk_cost_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_amortized_cost", "block_contents": "Amortized cost equals usage plus the portion of upfront fees applicable to the period (both used and unused)"}, "doc.yoda.infra__msk_cost_arn": {"name": "infra__msk_cost_arn", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_arn", "block_contents": "AWS ARN (ID)"}, "doc.yoda.infra__msk_cost_bill_start_date": {"name": "infra__msk_cost_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_bill_start_date", "block_contents": "Billing start time (daily)"}, "doc.yoda.infra__msk_cost_billing_period": {"name": "infra__msk_cost_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_billing_period", "block_contents": "Billing start period (monthly)"}, "doc.yoda.infra__msk_cost_broker_cost": {"name": "infra__msk_cost_broker_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_broker_cost", "block_contents": "Broker instance costs"}, "doc.yoda.infra__msk_cost_cluster_name": {"name": "infra__msk_cost_cluster_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_cluster_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__msk_cost_data_transfer_cost": {"name": "infra__msk_cost_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_data_transfer_cost", "block_contents": "Data transfer costs"}, "doc.yoda.infra__msk_cost_instance_type": {"name": "infra__msk_cost_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_instance_type", "block_contents": "MSK instance types"}, "doc.yoda.infra__msk_cost_is_graviton": {"name": "infra__msk_cost_is_graviton", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_is_graviton", "block_contents": "Whether the instance types are graviton or not"}, "doc.yoda.infra__msk_cost_is_latest_generation": {"name": "infra__msk_cost_is_latest_generation", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_is_latest_generation", "block_contents": "Whether the storage is of last generation (GP3)"}, "doc.yoda.infra__msk_cost_line_item_resource_id": {"name": "infra__msk_cost_line_item_resource_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_line_item_resource_id", "block_contents": "Cluster ID"}, "doc.yoda.infra__msk_cost_line_item_usage_account_id": {"name": "infra__msk_cost_line_item_usage_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_line_item_usage_account_id", "block_contents": "Account ID"}, "doc.yoda.infra__msk_cost_pricing_term": {"name": "infra__msk_cost_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_pricing_term", "block_contents": "On demand / Reserved / Spots"}, "doc.yoda.infra__msk_cost_product_line": {"name": "infra__msk_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_product_line", "block_contents": "Product line"}, "doc.yoda.infra__msk_cost_region": {"name": "infra__msk_cost_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_region", "block_contents": "Region"}, "doc.yoda.infra__msk_cost_resource_tags_user_feature": {"name": "infra__msk_cost_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_resource_tags_user_feature", "block_contents": "User defined feature"}, "doc.yoda.infra__msk_cost_resource_tags_user_group": {"name": "infra__msk_cost_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_resource_tags_user_group", "block_contents": "User defined group"}, "doc.yoda.infra__msk_cost_resource_tags_user_team": {"name": "infra__msk_cost_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_resource_tags_user_team", "block_contents": "User defined team"}, "doc.yoda.infra__msk_cost_storage_cost": {"name": "infra__msk_cost_storage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_storage_cost", "block_contents": "Storage costs"}, "doc.yoda.infra__msk_cost_storage_family_type": {"name": "infra__msk_cost_storage_family_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_storage_family_type", "block_contents": "Storage family type (GP2/3)"}, "doc.yoda.infra__msk_cost_unblended_cost": {"name": "infra__msk_cost_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_unblended_cost", "block_contents": "Unblended cost (includes the discounts in a single period and not across the period it was given)"}, "doc.yoda.infra__msk_cost_user_name": {"name": "infra__msk_cost_user_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__msk_cost/infra__msk_cost.md", "original_file_path": "models/infra/marts/infra__msk_cost/infra__msk_cost.md", "unique_id": "doc.yoda.infra__msk_cost_user_name", "block_contents": "Username custom tag"}, "doc.yoda.infra__opensearch_cost": {"name": "infra__opensearch_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost", "block_contents": "Opensearch Costs"}, "doc.yoda.infra__opensearch_cost_account_name": {"name": "infra__opensearch_cost_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_account_name", "block_contents": "Account name"}, "doc.yoda.infra__opensearch_cost_amortized_cost": {"name": "infra__opensearch_cost_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_amortized_cost", "block_contents": "Amortized costs"}, "doc.yoda.infra__opensearch_cost_bill_start_date": {"name": "infra__opensearch_cost_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_bill_start_date", "block_contents": "Billing day"}, "doc.yoda.infra__opensearch_cost_billing_period": {"name": "infra__opensearch_cost_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_billing_period", "block_contents": "Billing month"}, "doc.yoda.infra__opensearch_cost_cluster_name": {"name": "infra__opensearch_cost_cluster_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_cluster_name", "block_contents": "Cluster name"}, "doc.yoda.infra__opensearch_cost_line_item_line_item_type": {"name": "infra__opensearch_cost_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_line_item_line_item_type", "block_contents": "Item type"}, "doc.yoda.infra__opensearch_cost_line_item_resource_id": {"name": "infra__opensearch_cost_line_item_resource_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_line_item_resource_id", "block_contents": "ARN"}, "doc.yoda.infra__opensearch_cost_line_item_usage_account_id": {"name": "infra__opensearch_cost_line_item_usage_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_line_item_usage_account_id", "block_contents": "Account Id"}, "doc.yoda.infra__opensearch_cost_line_item_usage_amount": {"name": "infra__opensearch_cost_line_item_usage_amount", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_line_item_usage_amount", "block_contents": "Usage amount"}, "doc.yoda.infra__opensearch_cost_pricing_term": {"name": "infra__opensearch_cost_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_pricing_term", "block_contents": "Pricing term (on demand, reserved)"}, "doc.yoda.infra__opensearch_cost_product_current_generation": {"name": "infra__opensearch_cost_product_current_generation", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_product_current_generation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opensearch_cost_product_instance_family": {"name": "infra__opensearch_cost_product_instance_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_product_instance_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opensearch_cost_product_instance_type": {"name": "infra__opensearch_cost_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_product_instance_type", "block_contents": "Instance type"}, "doc.yoda.infra__opensearch_cost_product_line": {"name": "infra__opensearch_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_product_line", "block_contents": "Product line"}, "doc.yoda.infra__opensearch_cost_product_memory_gib": {"name": "infra__opensearch_cost_product_memory_gib", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_product_memory_gib", "block_contents": "Instance GB"}, "doc.yoda.infra__opensearch_cost_product_product_family": {"name": "infra__opensearch_cost_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_product_product_family", "block_contents": "Product family"}, "doc.yoda.infra__opensearch_cost_product_region": {"name": "infra__opensearch_cost_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_product_region", "block_contents": "Region"}, "doc.yoda.infra__opensearch_cost_product_vcpu": {"name": "infra__opensearch_cost_product_vcpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_product_vcpu", "block_contents": "Instance VCPU"}, "doc.yoda.infra__opensearch_cost_resource_tags_user_feature": {"name": "infra__opensearch_cost_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_resource_tags_user_feature", "block_contents": "Feature tag"}, "doc.yoda.infra__opensearch_cost_resource_tags_user_group": {"name": "infra__opensearch_cost_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_resource_tags_user_group", "block_contents": "Group tag"}, "doc.yoda.infra__opensearch_cost_resource_tags_user_team": {"name": "infra__opensearch_cost_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_resource_tags_user_team", "block_contents": "Team tag"}, "doc.yoda.infra__opensearch_cost_unblended_cost": {"name": "infra__opensearch_cost_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "original_file_path": "models/infra/marts/infra__opensearch_cost/infra__opensearch_cost.md", "unique_id": "doc.yoda.infra__opensearch_cost_unblended_cost", "block_contents": "Unblended costs"}, "doc.yoda.infra__opsgenie_alerts": {"name": "infra__opsgenie_alerts", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts", "block_contents": "OpsGenie alerts table"}, "doc.yoda.infra__opsgenie_alerts_acknowledged": {"name": "infra__opsgenie_alerts_acknowledged", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_acknowledged", "block_contents": "Whether the alert was acknowledged"}, "doc.yoda.infra__opsgenie_alerts_alert_id": {"name": "infra__opsgenie_alerts_alert_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_alert_id", "block_contents": "Alert id generated from tiny_id"}, "doc.yoda.infra__opsgenie_alerts_alert_count": {"name": "infra__opsgenie_alerts_alert_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_alert_count", "block_contents": "Amount of similar alerts"}, "doc.yoda.infra__opsgenie_alerts_createdat": {"name": "infra__opsgenie_alerts_createdat", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_createdat", "block_contents": "When the alert was created"}, "doc.yoda.infra__opsgenie_alerts_domain": {"name": "infra__opsgenie_alerts_domain", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_domain", "block_contents": "A single first domain taken from the alert's tags in case it starts with 'domain:'"}, "doc.yoda.infra__opsgenie_alerts_impact_duration_in_seconds": {"name": "infra__opsgenie_alerts_impact_duration_in_seconds", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_impact_duration_in_seconds", "block_contents": "Duration from the last update"}, "doc.yoda.infra__opsgenie_alerts_integration_name": {"name": "infra__opsgenie_alerts_integration_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_integration_name", "block_contents": "Which integration triggered the alert"}, "doc.yoda.infra__opsgenie_alerts_integration_type": {"name": "infra__opsgenie_alerts_integration_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_integration_type", "block_contents": "Type of the integration which triggered the alert"}, "doc.yoda.infra__opsgenie_alerts_message": {"name": "infra__opsgenie_alerts_message", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_message", "block_contents": "Alert message"}, "doc.yoda.infra__opsgenie_alerts_owner": {"name": "infra__opsgenie_alerts_owner", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_owner", "block_contents": "Owner who acked the alert"}, "doc.yoda.infra__opsgenie_alerts_priority": {"name": "infra__opsgenie_alerts_priority", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_priority", "block_contents": "Alert priority"}, "doc.yoda.infra__opsgenie_alerts_seen": {"name": "infra__opsgenie_alerts_seen", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_seen", "block_contents": "Whether the alert was seen"}, "doc.yoda.infra__opsgenie_alerts_snoozed": {"name": "infra__opsgenie_alerts_snoozed", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_snoozed", "block_contents": "Whether the alert was snoozed"}, "doc.yoda.infra__opsgenie_alerts_source": {"name": "infra__opsgenie_alerts_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_source", "block_contents": "The source of the alert"}, "doc.yoda.infra__opsgenie_alerts_status": {"name": "infra__opsgenie_alerts_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_status", "block_contents": "Status of the alert"}, "doc.yoda.infra__opsgenie_alerts_tags": {"name": "infra__opsgenie_alerts_tags", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_tags", "block_contents": "Concatenated alert tags"}, "doc.yoda.infra__opsgenie_alerts_team": {"name": "infra__opsgenie_alerts_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_team", "block_contents": "Team assigned to the alert"}, "doc.yoda.infra__opsgenie_alerts_updatedat": {"name": "infra__opsgenie_alerts_updatedat", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "original_file_path": "models/infra/marts/infra__opsgenie_alerts/infra__opsgenie_alerts.md", "unique_id": "doc.yoda.infra__opsgenie_alerts_updatedat", "block_contents": "Last time the alert was updated"}, "doc.yoda.infra__opsgenie_incidents": {"name": "infra__opsgenie_incidents", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__opsgenie_incidents_impact_duration_in_seconds": {"name": "infra__opsgenie_incidents_impact_duration_in_seconds", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents_impact_duration_in_seconds", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opsgenie_incidents_impact_end_date": {"name": "infra__opsgenie_incidents_impact_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents_impact_end_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opsgenie_incidents_impact_start_date": {"name": "infra__opsgenie_incidents_impact_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents_impact_start_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opsgenie_incidents_incident_id": {"name": "infra__opsgenie_incidents_incident_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents_incident_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opsgenie_incidents_incident_url": {"name": "infra__opsgenie_incidents_incident_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents_incident_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opsgenie_incidents_message": {"name": "infra__opsgenie_incidents_message", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opsgenie_incidents_priority": {"name": "infra__opsgenie_incidents_priority", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents_priority", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opsgenie_incidents_product_line": {"name": "infra__opsgenie_incidents_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opsgenie_incidents_service_name": {"name": "infra__opsgenie_incidents_service_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents_service_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opsgenie_incidents_tags": {"name": "infra__opsgenie_incidents_tags", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents_tags", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__opsgenie_incidents_team_name": {"name": "infra__opsgenie_incidents_team_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "original_file_path": "models/infra/marts/infra__opsgenie_incidents/infra__opsgenie_incidents.md", "unique_id": "doc.yoda.infra__opsgenie_incidents_team_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2": {"name": "infra__pixel_onsite_v2", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2", "block_contents": "Pixel view over onsite_v2 app id"}, "doc.yoda.infra__pixel_onsite_v2_app_id": {"name": "infra__pixel_onsite_v2_app_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_app_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_colordepth": {"name": "infra__pixel_onsite_v2_br_colordepth", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_colordepth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_cookies": {"name": "infra__pixel_onsite_v2_br_cookies", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_cookies", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_family": {"name": "infra__pixel_onsite_v2_br_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_features_director": {"name": "infra__pixel_onsite_v2_br_features_director", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_features_director", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_features_flash": {"name": "infra__pixel_onsite_v2_br_features_flash", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_features_flash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_features_gears": {"name": "infra__pixel_onsite_v2_br_features_gears", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_features_gears", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_features_java": {"name": "infra__pixel_onsite_v2_br_features_java", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_features_java", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_features_pdf": {"name": "infra__pixel_onsite_v2_br_features_pdf", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_features_pdf", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_features_quicktime": {"name": "infra__pixel_onsite_v2_br_features_quicktime", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_features_quicktime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_features_realplayer": {"name": "infra__pixel_onsite_v2_br_features_realplayer", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_features_realplayer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_features_silverlight": {"name": "infra__pixel_onsite_v2_br_features_silverlight", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_features_silverlight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_features_windowsmedia": {"name": "infra__pixel_onsite_v2_br_features_windowsmedia", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_features_windowsmedia", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_lang": {"name": "infra__pixel_onsite_v2_br_lang", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_lang", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_major": {"name": "infra__pixel_onsite_v2_br_major", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_minor": {"name": "infra__pixel_onsite_v2_br_minor", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_viewheight": {"name": "infra__pixel_onsite_v2_br_viewheight", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_viewheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_br_viewwidth": {"name": "infra__pixel_onsite_v2_br_viewwidth", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_br_viewwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_collector_day": {"name": "infra__pixel_onsite_v2_collector_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_collector_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_collector_epoch": {"name": "infra__pixel_onsite_v2_collector_epoch", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_collector_epoch", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_collector_month": {"name": "infra__pixel_onsite_v2_collector_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_collector_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_collector_tstamp": {"name": "infra__pixel_onsite_v2_collector_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_collector_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_collector_year": {"name": "infra__pixel_onsite_v2_collector_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_collector_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_context": {"name": "infra__pixel_onsite_v2_context", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_context", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_device_family": {"name": "infra__pixel_onsite_v2_device_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_device_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_doc_charset": {"name": "infra__pixel_onsite_v2_doc_charset", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_doc_charset", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_doc_height": {"name": "infra__pixel_onsite_v2_doc_height", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_doc_height", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_doc_width": {"name": "infra__pixel_onsite_v2_doc_width", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_doc_width", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_domain_sessionidx": {"name": "infra__pixel_onsite_v2_domain_sessionidx", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_domain_sessionidx", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_domain_userid": {"name": "infra__pixel_onsite_v2_domain_userid", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_domain_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_dvce_screenheight": {"name": "infra__pixel_onsite_v2_dvce_screenheight", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_dvce_screenheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_dvce_screenwidth": {"name": "infra__pixel_onsite_v2_dvce_screenwidth", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_dvce_screenwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_dvce_tstamp": {"name": "infra__pixel_onsite_v2_dvce_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_dvce_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_event": {"name": "infra__pixel_onsite_v2_event", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_event_id": {"name": "infra__pixel_onsite_v2_event_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_event_vendor": {"name": "infra__pixel_onsite_v2_event_vendor", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_event_vendor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_geo_city": {"name": "infra__pixel_onsite_v2_geo_city", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_geo_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_geo_country": {"name": "infra__pixel_onsite_v2_geo_country", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_geo_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_geo_latitude": {"name": "infra__pixel_onsite_v2_geo_latitude", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_geo_latitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_geo_longitude": {"name": "infra__pixel_onsite_v2_geo_longitude", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_geo_longitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_geo_region": {"name": "infra__pixel_onsite_v2_geo_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_geo_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_geo_zipcode": {"name": "infra__pixel_onsite_v2_geo_zipcode", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_geo_zipcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_hour": {"name": "infra__pixel_onsite_v2_hour", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_hour", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_mkt_campaign": {"name": "infra__pixel_onsite_v2_mkt_campaign", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_mkt_campaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_mkt_content": {"name": "infra__pixel_onsite_v2_mkt_content", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_mkt_content", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_mkt_medium": {"name": "infra__pixel_onsite_v2_mkt_medium", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_mkt_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_mkt_source": {"name": "infra__pixel_onsite_v2_mkt_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_mkt_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_mkt_term": {"name": "infra__pixel_onsite_v2_mkt_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_mkt_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_os_family": {"name": "infra__pixel_onsite_v2_os_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_os_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_os_major": {"name": "infra__pixel_onsite_v2_os_major", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_os_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_os_minor": {"name": "infra__pixel_onsite_v2_os_minor", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_os_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_os_timezone": {"name": "infra__pixel_onsite_v2_os_timezone", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_os_timezone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_page_referrer": {"name": "infra__pixel_onsite_v2_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_page_title": {"name": "infra__pixel_onsite_v2_page_title", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_page_url": {"name": "infra__pixel_onsite_v2_page_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_page_urlfragment": {"name": "infra__pixel_onsite_v2_page_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_page_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_page_urlhost": {"name": "infra__pixel_onsite_v2_page_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_page_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_page_urlpath": {"name": "infra__pixel_onsite_v2_page_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_page_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_page_urlport": {"name": "infra__pixel_onsite_v2_page_urlport", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_page_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_page_urlquery": {"name": "infra__pixel_onsite_v2_page_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_page_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_page_urlscheme": {"name": "infra__pixel_onsite_v2_page_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_page_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_partition_date": {"name": "infra__pixel_onsite_v2_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_platform": {"name": "infra__pixel_onsite_v2_platform", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_pp_xoffset_max": {"name": "infra__pixel_onsite_v2_pp_xoffset_max", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_pp_xoffset_max", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_pp_xoffset_min": {"name": "infra__pixel_onsite_v2_pp_xoffset_min", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_pp_xoffset_min", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_pp_yoffset_max": {"name": "infra__pixel_onsite_v2_pp_yoffset_max", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_pp_yoffset_max", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_pp_yoffset_min": {"name": "infra__pixel_onsite_v2_pp_yoffset_min", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_pp_yoffset_min", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_processing_time": {"name": "infra__pixel_onsite_v2_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_refr_medium": {"name": "infra__pixel_onsite_v2_refr_medium", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_refr_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_refr_source": {"name": "infra__pixel_onsite_v2_refr_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_refr_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_refr_term": {"name": "infra__pixel_onsite_v2_refr_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_refr_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_refr_urlfragment": {"name": "infra__pixel_onsite_v2_refr_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_refr_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_refr_urlhost": {"name": "infra__pixel_onsite_v2_refr_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_refr_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_refr_urlpath": {"name": "infra__pixel_onsite_v2_refr_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_refr_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_refr_urlport": {"name": "infra__pixel_onsite_v2_refr_urlport", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_refr_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_refr_urlquery": {"name": "infra__pixel_onsite_v2_refr_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_refr_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_refr_urlscheme": {"name": "infra__pixel_onsite_v2_refr_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_refr_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_se_action": {"name": "infra__pixel_onsite_v2_se_action", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_se_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_se_category": {"name": "infra__pixel_onsite_v2_se_category", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_se_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_se_label": {"name": "infra__pixel_onsite_v2_se_label", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_se_label", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_se_page_sku": {"name": "infra__pixel_onsite_v2_se_page_sku", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_se_page_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_se_property": {"name": "infra__pixel_onsite_v2_se_property", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_se_property", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_se_testing_groups": {"name": "infra__pixel_onsite_v2_se_testing_groups", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_se_testing_groups", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_se_value": {"name": "infra__pixel_onsite_v2_se_value", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_se_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_tr_currency": {"name": "infra__pixel_onsite_v2_tr_currency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_tr_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_tr_orderid": {"name": "infra__pixel_onsite_v2_tr_orderid", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_tr_orderid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_tr_total": {"name": "infra__pixel_onsite_v2_tr_total", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_tr_total", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_txn_id": {"name": "infra__pixel_onsite_v2_txn_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_txn_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_user_fingerprint": {"name": "infra__pixel_onsite_v2_user_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_user_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_user_id": {"name": "infra__pixel_onsite_v2_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_useragent": {"name": "infra__pixel_onsite_v2_useragent", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_useragent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_v_collector": {"name": "infra__pixel_onsite_v2_v_collector", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_v_collector", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_v_etl": {"name": "infra__pixel_onsite_v2_v_etl", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_v_etl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_v_tracker": {"name": "infra__pixel_onsite_v2_v_tracker", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_v_tracker", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v2_y_fingerprint": {"name": "infra__pixel_onsite_v2_y_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v2/infra__pixel_onsite_v2.md", "unique_id": "doc.yoda.infra__pixel_onsite_v2_y_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3": {"name": "infra__pixel_onsite_v3", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3", "block_contents": "Pixel view over onsite_v3 app ie"}, "doc.yoda.infra__pixel_onsite_v3_app_id": {"name": "infra__pixel_onsite_v3_app_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_app_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_colordepth": {"name": "infra__pixel_onsite_v3_br_colordepth", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_colordepth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_cookies": {"name": "infra__pixel_onsite_v3_br_cookies", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_cookies", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_family": {"name": "infra__pixel_onsite_v3_br_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_features_director": {"name": "infra__pixel_onsite_v3_br_features_director", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_features_director", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_features_flash": {"name": "infra__pixel_onsite_v3_br_features_flash", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_features_flash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_features_gears": {"name": "infra__pixel_onsite_v3_br_features_gears", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_features_gears", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_features_java": {"name": "infra__pixel_onsite_v3_br_features_java", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_features_java", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_features_pdf": {"name": "infra__pixel_onsite_v3_br_features_pdf", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_features_pdf", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_features_quicktime": {"name": "infra__pixel_onsite_v3_br_features_quicktime", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_features_quicktime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_features_realplayer": {"name": "infra__pixel_onsite_v3_br_features_realplayer", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_features_realplayer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_features_silverlight": {"name": "infra__pixel_onsite_v3_br_features_silverlight", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_features_silverlight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_features_windowsmedia": {"name": "infra__pixel_onsite_v3_br_features_windowsmedia", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_features_windowsmedia", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_lang": {"name": "infra__pixel_onsite_v3_br_lang", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_lang", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_major": {"name": "infra__pixel_onsite_v3_br_major", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_minor": {"name": "infra__pixel_onsite_v3_br_minor", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_viewheight": {"name": "infra__pixel_onsite_v3_br_viewheight", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_viewheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_br_viewwidth": {"name": "infra__pixel_onsite_v3_br_viewwidth", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_br_viewwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_collector_day": {"name": "infra__pixel_onsite_v3_collector_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_collector_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_collector_epoch": {"name": "infra__pixel_onsite_v3_collector_epoch", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_collector_epoch", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_collector_month": {"name": "infra__pixel_onsite_v3_collector_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_collector_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_collector_tstamp": {"name": "infra__pixel_onsite_v3_collector_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_collector_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_collector_year": {"name": "infra__pixel_onsite_v3_collector_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_collector_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_context": {"name": "infra__pixel_onsite_v3_context", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_context", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_device_family": {"name": "infra__pixel_onsite_v3_device_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_device_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_doc_charset": {"name": "infra__pixel_onsite_v3_doc_charset", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_doc_charset", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_doc_height": {"name": "infra__pixel_onsite_v3_doc_height", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_doc_height", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_doc_width": {"name": "infra__pixel_onsite_v3_doc_width", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_doc_width", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_domain_sessionidx": {"name": "infra__pixel_onsite_v3_domain_sessionidx", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_domain_sessionidx", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_domain_userid": {"name": "infra__pixel_onsite_v3_domain_userid", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_domain_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_dvce_screenheight": {"name": "infra__pixel_onsite_v3_dvce_screenheight", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_dvce_screenheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_dvce_screenwidth": {"name": "infra__pixel_onsite_v3_dvce_screenwidth", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_dvce_screenwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_dvce_tstamp": {"name": "infra__pixel_onsite_v3_dvce_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_dvce_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_event": {"name": "infra__pixel_onsite_v3_event", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_event_id": {"name": "infra__pixel_onsite_v3_event_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_event_vendor": {"name": "infra__pixel_onsite_v3_event_vendor", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_event_vendor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_geo_city": {"name": "infra__pixel_onsite_v3_geo_city", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_geo_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_geo_country": {"name": "infra__pixel_onsite_v3_geo_country", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_geo_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_geo_latitude": {"name": "infra__pixel_onsite_v3_geo_latitude", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_geo_latitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_geo_longitude": {"name": "infra__pixel_onsite_v3_geo_longitude", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_geo_longitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_geo_region": {"name": "infra__pixel_onsite_v3_geo_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_geo_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_geo_zipcode": {"name": "infra__pixel_onsite_v3_geo_zipcode", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_geo_zipcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_hour": {"name": "infra__pixel_onsite_v3_hour", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_hour", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_mkt_campaign": {"name": "infra__pixel_onsite_v3_mkt_campaign", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_mkt_campaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_mkt_content": {"name": "infra__pixel_onsite_v3_mkt_content", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_mkt_content", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_mkt_medium": {"name": "infra__pixel_onsite_v3_mkt_medium", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_mkt_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_mkt_source": {"name": "infra__pixel_onsite_v3_mkt_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_mkt_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_mkt_term": {"name": "infra__pixel_onsite_v3_mkt_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_mkt_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_os_family": {"name": "infra__pixel_onsite_v3_os_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_os_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_os_major": {"name": "infra__pixel_onsite_v3_os_major", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_os_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_os_minor": {"name": "infra__pixel_onsite_v3_os_minor", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_os_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_os_timezone": {"name": "infra__pixel_onsite_v3_os_timezone", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_os_timezone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_page_referrer": {"name": "infra__pixel_onsite_v3_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_page_title": {"name": "infra__pixel_onsite_v3_page_title", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_page_url": {"name": "infra__pixel_onsite_v3_page_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_page_urlfragment": {"name": "infra__pixel_onsite_v3_page_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_page_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_page_urlhost": {"name": "infra__pixel_onsite_v3_page_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_page_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_page_urlpath": {"name": "infra__pixel_onsite_v3_page_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_page_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_page_urlport": {"name": "infra__pixel_onsite_v3_page_urlport", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_page_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_page_urlquery": {"name": "infra__pixel_onsite_v3_page_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_page_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_page_urlscheme": {"name": "infra__pixel_onsite_v3_page_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_page_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_partition_date": {"name": "infra__pixel_onsite_v3_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_platform": {"name": "infra__pixel_onsite_v3_platform", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_pp_xoffset_max": {"name": "infra__pixel_onsite_v3_pp_xoffset_max", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_pp_xoffset_max", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_pp_xoffset_min": {"name": "infra__pixel_onsite_v3_pp_xoffset_min", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_pp_xoffset_min", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_pp_yoffset_max": {"name": "infra__pixel_onsite_v3_pp_yoffset_max", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_pp_yoffset_max", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_pp_yoffset_min": {"name": "infra__pixel_onsite_v3_pp_yoffset_min", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_pp_yoffset_min", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_processing_time": {"name": "infra__pixel_onsite_v3_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_refr_medium": {"name": "infra__pixel_onsite_v3_refr_medium", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_refr_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_refr_source": {"name": "infra__pixel_onsite_v3_refr_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_refr_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_refr_term": {"name": "infra__pixel_onsite_v3_refr_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_refr_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_refr_urlfragment": {"name": "infra__pixel_onsite_v3_refr_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_refr_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_refr_urlhost": {"name": "infra__pixel_onsite_v3_refr_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_refr_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_refr_urlpath": {"name": "infra__pixel_onsite_v3_refr_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_refr_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_refr_urlport": {"name": "infra__pixel_onsite_v3_refr_urlport", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_refr_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_refr_urlquery": {"name": "infra__pixel_onsite_v3_refr_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_refr_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_refr_urlscheme": {"name": "infra__pixel_onsite_v3_refr_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_refr_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_se_action": {"name": "infra__pixel_onsite_v3_se_action", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_se_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_se_category": {"name": "infra__pixel_onsite_v3_se_category", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_se_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_se_label": {"name": "infra__pixel_onsite_v3_se_label", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_se_label", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_se_page_sku": {"name": "infra__pixel_onsite_v3_se_page_sku", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_se_page_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_se_property": {"name": "infra__pixel_onsite_v3_se_property", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_se_property", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_se_testing_groups": {"name": "infra__pixel_onsite_v3_se_testing_groups", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_se_testing_groups", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_se_value": {"name": "infra__pixel_onsite_v3_se_value", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_se_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_tr_currency": {"name": "infra__pixel_onsite_v3_tr_currency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_tr_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_tr_orderid": {"name": "infra__pixel_onsite_v3_tr_orderid", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_tr_orderid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_tr_total": {"name": "infra__pixel_onsite_v3_tr_total", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_tr_total", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_txn_id": {"name": "infra__pixel_onsite_v3_txn_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_txn_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_user_fingerprint": {"name": "infra__pixel_onsite_v3_user_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_user_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_user_id": {"name": "infra__pixel_onsite_v3_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_useragent": {"name": "infra__pixel_onsite_v3_useragent", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_useragent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_v_collector": {"name": "infra__pixel_onsite_v3_v_collector", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_v_collector", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_v_etl": {"name": "infra__pixel_onsite_v3_v_etl", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_v_etl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_v_tracker": {"name": "infra__pixel_onsite_v3_v_tracker", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_v_tracker", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__pixel_onsite_v3_y_fingerprint": {"name": "infra__pixel_onsite_v3_y_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "original_file_path": "models/infra/marts/infra__pixel_onsite_v3/infra__pixel_onsite_v3.md", "unique_id": "doc.yoda.infra__pixel_onsite_v3_y_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__marts_rds_cost": {"name": "infra__marts_rds_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__marts_rds_cost", "block_contents": "RDS overall cost"}, "doc.yoda.infra__rds_cost_account_name": {"name": "infra__rds_cost_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_account_name", "block_contents": "Account name (incomplete, only main ones)"}, "doc.yoda.infra__rds_cost_bill_start_date": {"name": "infra__rds_cost_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_bill_start_date", "block_contents": "Billing start time (daily)"}, "doc.yoda.infra__rds_cost_billing_period": {"name": "infra__rds_cost_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_billing_period", "block_contents": "Billing start period (monthly)"}, "doc.yoda.infra__rds_cost_data_transfer_cost": {"name": "infra__rds_cost_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_data_transfer_cost", "block_contents": "Data transfer cost"}, "doc.yoda.infra__rds_cost_database_engine": {"name": "infra__rds_cost_database_engine", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_database_engine", "block_contents": "SQL Engine type"}, "doc.yoda.infra__rds_cost_feature": {"name": "infra__rds_cost_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_feature", "block_contents": "Custom feature tag"}, "doc.yoda.infra__rds_cost_instance_cost": {"name": "infra__rds_cost_instance_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_instance_cost", "block_contents": "Instance cost"}, "doc.yoda.infra__rds_cost_instance_type": {"name": "infra__rds_cost_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_instance_type", "block_contents": "RDS instance type"}, "doc.yoda.infra__rds_cost_iops_cost": {"name": "infra__rds_cost_iops_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_iops_cost", "block_contents": "IOPS (usage) cost"}, "doc.yoda.infra__rds_cost_is_graviton": {"name": "infra__rds_cost_is_graviton", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_is_graviton", "block_contents": "Is instance graviton"}, "doc.yoda.infra__rds_cost_is_latest_generation": {"name": "infra__rds_cost_is_latest_generation", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_is_latest_generation", "block_contents": "Is the storage the latest generation"}, "doc.yoda.infra__rds_cost_is_reserved": {"name": "infra__rds_cost_is_reserved", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_is_reserved", "block_contents": "Is RDS reserved"}, "doc.yoda.infra__rds_cost_line_item_resource_id": {"name": "infra__rds_cost_line_item_resource_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_line_item_resource_id", "block_contents": "RDS ARN"}, "doc.yoda.infra__rds_cost_line_item_usage_account_id": {"name": "infra__rds_cost_line_item_usage_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_line_item_usage_account_id", "block_contents": "Account ID"}, "doc.yoda.infra__rds_cost_operational_cost": {"name": "infra__rds_cost_operational_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_operational_cost", "block_contents": "Operation (system) cost"}, "doc.yoda.infra__rds_cost_product_line": {"name": "infra__rds_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_product_line", "block_contents": "Product line"}, "doc.yoda.infra__rds_cost_region": {"name": "infra__rds_cost_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_region", "block_contents": "Region"}, "doc.yoda.infra__rds_cost_reservation_cost": {"name": "infra__rds_cost_reservation_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_reservation_cost", "block_contents": "Reservation cost"}, "doc.yoda.infra__rds_cost_resource_tags_user_feature": {"name": "infra__rds_cost_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_resource_tags_user_feature", "block_contents": "User defined feature"}, "doc.yoda.infra__rds_cost_resource_tags_user_group": {"name": "infra__rds_cost_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_resource_tags_user_group", "block_contents": "User defined group"}, "doc.yoda.infra__rds_cost_resource_tags_user_team": {"name": "infra__rds_cost_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_resource_tags_user_team", "block_contents": "User defined team"}, "doc.yoda.infra__rds_cost_snapshot_cost": {"name": "infra__rds_cost_snapshot_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_snapshot_cost", "block_contents": "Snapshots cost"}, "doc.yoda.infra__rds_cost_storage_cost": {"name": "infra__rds_cost_storage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_storage_cost", "block_contents": "Storage cost"}, "doc.yoda.infra__rds_cost_total_cost": {"name": "infra__rds_cost_total_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rds_cost/infra__rds_cost.md", "original_file_path": "models/infra/marts/infra__rds_cost/infra__rds_cost.md", "unique_id": "doc.yoda.infra__rds_cost_total_cost", "block_contents": "Overall cost"}, "doc.yoda.infra__rivery_contract_statistics": {"name": "infra__rivery_contract_statistics", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics", "block_contents": "Rivery Contract Statistics Table which keeps track of the status of the yearly contract"}, "doc.yoda.infra__rivery_contract_statistics_budget_left": {"name": "infra__rivery_contract_statistics_budget_left", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_budget_left", "block_contents": "Budget left"}, "doc.yoda.infra__rivery_contract_statistics_calculated_monthly_budget": {"name": "infra__rivery_contract_statistics_calculated_monthly_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_calculated_monthly_budget", "block_contents": "Calculated Monthly Budget"}, "doc.yoda.infra__rivery_contract_statistics_contract_end_time": {"name": "infra__rivery_contract_statistics_contract_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_contract_end_time", "block_contents": "Contract End Date"}, "doc.yoda.infra__rivery_contract_statistics_contract_start_time": {"name": "infra__rivery_contract_statistics_contract_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_contract_start_time", "block_contents": "Contract Start Date"}, "doc.yoda.infra__rivery_contract_statistics_cumulative_cost_with_current_month": {"name": "infra__rivery_contract_statistics_cumulative_cost_with_current_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_cumulative_cost_with_current_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__rivery_contract_statistics_cumulative_cost_without_current_month": {"name": "infra__rivery_contract_statistics_cumulative_cost_without_current_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_cumulative_cost_without_current_month", "block_contents": "Cumulative cost without current month"}, "doc.yoda.infra__rivery_contract_statistics_daily_avg_cost": {"name": "infra__rivery_contract_statistics_daily_avg_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_daily_avg_cost", "block_contents": "Daily Average Cost"}, "doc.yoda.infra__rivery_contract_statistics_date": {"name": "infra__rivery_contract_statistics_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_date", "block_contents": "Date"}, "doc.yoda.infra__rivery_contract_statistics_days_count": {"name": "infra__rivery_contract_statistics_days_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_days_count", "block_contents": "Days count from the begining of the contract"}, "doc.yoda.infra__rivery_contract_statistics_days_in_month": {"name": "infra__rivery_contract_statistics_days_in_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_days_in_month", "block_contents": "Amount of days in a month"}, "doc.yoda.infra__rivery_contract_statistics_estimated_months_left_for_renewal_burn_rate": {"name": "infra__rivery_contract_statistics_estimated_months_left_for_renewal_burn_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_estimated_months_left_for_renewal_burn_rate", "block_contents": "Estimated months left for renewal burn rate"}, "doc.yoda.infra__rivery_contract_statistics_estimated_months_left_for_renewal_last_month": {"name": "infra__rivery_contract_statistics_estimated_months_left_for_renewal_last_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_estimated_months_left_for_renewal_last_month", "block_contents": "Estimated months left for renewal based on last month"}, "doc.yoda.infra__rivery_contract_statistics_is_closed_month": {"name": "infra__rivery_contract_statistics_is_closed_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_is_closed_month", "block_contents": "Is the month closed"}, "doc.yoda.infra__rivery_contract_statistics_month": {"name": "infra__rivery_contract_statistics_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_month", "block_contents": "Month"}, "doc.yoda.infra__rivery_contract_statistics_monthly_burn_rate": {"name": "infra__rivery_contract_statistics_monthly_burn_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_monthly_burn_rate", "block_contents": "Monthly burning rate"}, "doc.yoda.infra__rivery_contract_statistics_monthly_cost": {"name": "infra__rivery_contract_statistics_monthly_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_monthly_cost", "block_contents": "Monthly cost"}, "doc.yoda.infra__rivery_contract_statistics_months_count": {"name": "infra__rivery_contract_statistics_months_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_months_count", "block_contents": "Months count from the begining of the contract"}, "doc.yoda.infra__rivery_contract_statistics_months_left": {"name": "infra__rivery_contract_statistics_months_left", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_months_left", "block_contents": "Months left from the begining of the contract"}, "doc.yoda.infra__rivery_contract_statistics_prev_monthly_cost": {"name": "infra__rivery_contract_statistics_prev_monthly_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_prev_monthly_cost", "block_contents": "Previous monthly cost"}, "doc.yoda.infra__rivery_contract_statistics_year": {"name": "infra__rivery_contract_statistics_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_year", "block_contents": "Year"}, "doc.yoda.infra__rivery_contract_statistics_yearly_budget": {"name": "infra__rivery_contract_statistics_yearly_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "original_file_path": "models/infra/marts/infra__rivery_contract_statistics/infra__rivery_contract_statistics.md", "unique_id": "doc.yoda.infra__rivery_contract_statistics_yearly_budget", "block_contents": "Yearly budget"}, "doc.yoda.infra__rivery_daily_usage": {"name": "infra__rivery_daily_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage", "block_contents": "Daily Rivery Usage"}, "doc.yoda.infra__rivery_daily_usage_account_id": {"name": "infra__rivery_daily_usage_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_account_id", "block_contents": "Rivery Account ID"}, "doc.yoda.infra__rivery_daily_usage_cost": {"name": "infra__rivery_daily_usage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_cost", "block_contents": "River cost (based on 0.405$ per single RPU)"}, "doc.yoda.infra__rivery_daily_usage_date": {"name": "infra__rivery_daily_usage_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_date", "block_contents": "Date"}, "doc.yoda.infra__rivery_daily_usage_environment_name": {"name": "infra__rivery_daily_usage_environment_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_environment_name", "block_contents": "Rivery Environment Name"}, "doc.yoda.infra__rivery_daily_usage_failed_runs": {"name": "infra__rivery_daily_usage_failed_runs", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_failed_runs", "block_contents": "Amount of failed runs"}, "doc.yoda.infra__rivery_daily_usage_group_id": {"name": "infra__rivery_daily_usage_group_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_group_id", "block_contents": "River Group id"}, "doc.yoda.infra__rivery_daily_usage_group_name": {"name": "infra__rivery_daily_usage_group_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_group_name", "block_contents": "River Group name"}, "doc.yoda.infra__rivery_daily_usage_is_deleted": {"name": "infra__rivery_daily_usage_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_is_deleted", "block_contents": "Whether the river is deleted"}, "doc.yoda.infra__rivery_daily_usage_is_scheduled": {"name": "infra__rivery_daily_usage_is_scheduled", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_is_scheduled", "block_contents": "Whether the river is scheduled"}, "doc.yoda.infra__rivery_daily_usage_name": {"name": "infra__rivery_daily_usage_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_name", "block_contents": "Name of the river"}, "doc.yoda.infra__rivery_daily_usage_river_name": {"name": "infra__rivery_daily_usage_river_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_river_name", "block_contents": "River name"}, "doc.yoda.infra__rivery_daily_usage_rpu": {"name": "infra__rivery_daily_usage_rpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_rpu", "block_contents": "Total daily used RPU. For some specific groups (like Zuora), there are specifc logic that we apply."}, "doc.yoda.infra__rivery_daily_usage_rpu_before_discount": {"name": "infra__rivery_daily_usage_rpu_before_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_rpu_before_discount", "block_contents": "Total daily used RPU before discounts"}, "doc.yoda.infra__rivery_daily_usage_start_time": {"name": "infra__rivery_daily_usage_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_start_time", "block_contents": "Ingestion time"}, "doc.yoda.infra__rivery_daily_usage_succeeded_runs": {"name": "infra__rivery_daily_usage_succeeded_runs", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_succeeded_runs", "block_contents": "Amount of successful runs"}, "doc.yoda.infra__rivery_daily_usage_total_size_in_MB": {"name": "infra__rivery_daily_usage_total_size_in_MB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "original_file_path": "models/infra/marts/infra__rivery_daily_usage/infra__rivery_daily_usage.md", "unique_id": "doc.yoda.infra__rivery_daily_usage_total_size_in_MB", "block_contents": "Total processed river data in MB"}, "doc.yoda.infra__s3_cost": {"name": "infra__s3_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost", "block_contents": "AWS S3 Cost table which is a union of s3_cost_hot (table, only last two months) and s3_cost_cold (incremental, older than 2 motnhs). We always refresh the last two months because they are likely to change (by AWS)\nReferences:\nhttps://docs.aws.amazon.com/cur/latest/userguide/Lineitem-columns.html\nhttps://wellarchitectedlabs.com/cost/300_labs/300_cur_queries/queries/global/#amortized-cost-by-charge-type"}, "doc.yoda.infra__s3_cost_account_name": {"name": "infra__s3_cost_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_account_name", "block_contents": "Account name (not complete, only main ones)"}, "doc.yoda.infra__s3_cost_amortized_cost": {"name": "infra__s3_cost_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_amortized_cost", "block_contents": "Amortized cost equals usage plus the portion of upfront fees applicable to the period (both used and unused)"}, "doc.yoda.infra__s3_cost_bill_payer_account_id": {"name": "infra__s3_cost_bill_payer_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_bill_payer_account_id", "block_contents": "Account ID (identical to line_item_usage_account_id)"}, "doc.yoda.infra__s3_cost_bill_start_date": {"name": "infra__s3_cost_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_bill_start_date", "block_contents": "Billing date for a specific S3 service (day granularity)"}, "doc.yoda.infra__s3_cost_billing_period": {"name": "infra__s3_cost_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_billing_period", "block_contents": "Billing period date monthly"}, "doc.yoda.infra__s3_cost_bucket": {"name": "infra__s3_cost_bucket", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_bucket", "block_contents": "Bucket Name"}, "doc.yoda.infra__s3_cost_cost": {"name": "infra__s3_cost_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_cost", "block_contents": "Cost per product family/usage type"}, "doc.yoda.infra__s3_cost_credit": {"name": "infra__s3_cost_credit", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_credit", "block_contents": "Any credits that AWS applied to your bill. See the Description column for details. AWS might update reports after they have been finalized if AWS applies a credit to your account for the month after finalizing your bill."}, "doc.yoda.infra__s3_cost_data_transfer_cost": {"name": "infra__s3_cost_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_data_transfer_cost", "block_contents": "Cost of data transfer between regions"}, "doc.yoda.infra__s3_cost_discount": {"name": "infra__s3_cost_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_discount", "block_contents": "Any discounts that AWS applied to your usage. This specific line item name may vary and require parsing based on the discount. For more information, refer to the lineItem/LineItemDescription column."}, "doc.yoda.infra__s3_cost_line_item_line_item_type": {"name": "infra__s3_cost_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_line_item_line_item_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_line_item_usage_type": {"name": "infra__s3_cost_line_item_usage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_line_item_usage_type", "block_contents": "Out/In-Bytes, Requests-Tier,TimedStorage, StorageAnalytics, DataTransfer, Inventory-ObjectsListed, Retrieval, EarlyDelete-ByteHrs"}, "doc.yoda.infra__s3_cost_monthly_cost": {"name": "infra__s3_cost_monthly_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_monthly_cost", "block_contents": "Monthly cost as it appears in AWS billing (https://us-east-1.console.aws.amazon.com/billing/home?region=us-east-1&skipRegion=true#/bills?year=2022&month=11)"}, "doc.yoda.infra__s3_cost_product_line": {"name": "infra__s3_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_product_line", "block_contents": "Product line attached to the bucket. In cases where the bucket is not tagged, we either tag it by custom tagging (until tagged properly), or tag it as untagged"}, "doc.yoda.infra__s3_cost_product_product_family": {"name": "infra__s3_cost_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_product_product_family", "block_contents": "Data Transfer, API Request, Storage, Fee"}, "doc.yoda.infra__s3_cost_resource_tags_user_feature": {"name": "infra__s3_cost_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_resource_tags_user_feature", "block_contents": "User defined feature"}, "doc.yoda.infra__s3_cost_resource_tags_user_group": {"name": "infra__s3_cost_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_resource_tags_user_group", "block_contents": "User defined group"}, "doc.yoda.infra__s3_cost_resource_tags_user_team": {"name": "infra__s3_cost_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_resource_tags_user_team", "block_contents": "User defined team"}, "doc.yoda.infra__s3_cost_tax_cost": {"name": "infra__s3_cost_tax_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_tax_cost", "block_contents": "Any taxes that AWS applied to your bill. For example, VAT or US sales tax."}, "doc.yoda.infra__s3_cost_unblended_cost": {"name": "infra__s3_cost_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_unblended_cost", "block_contents": "Unblended cost equals usage plus upfront fees"}, "doc.yoda.infra__s3_cost_usage_cost": {"name": "infra__s3_cost_usage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_usage_cost", "block_contents": "Any usage that is charged at On-Demand Instance rates."}, "doc.yoda.infra__s3_cost_usage_with_dt_cost": {"name": "infra__s3_cost_usage_with_dt_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost/infra__s3_cost.md", "original_file_path": "models/infra/marts/infra__s3_cost/infra__s3_cost.md", "unique_id": "doc.yoda.infra__s3_cost_usage_with_dt_cost", "block_contents": "Usage and data transfer cost"}, "doc.yoda.infra__s3_cost_cold": {"name": "infra__s3_cost_cold", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold", "block_contents": "AWS S3 Bucket Costs aggregations table based on `AWS Cost and Usage Reports` flushed into `aws-billing-report-costpo` bucket.\nThe table are created [here|https://github.com/YotpoLtd/costpo/blob/master/sql-views.sql#L15] and contains only unchanged data older than 2 months only"}, "doc.yoda.infra__s3_cost_cold_account_name": {"name": "infra__s3_cost_cold_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_account_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_amortized_cost": {"name": "infra__s3_cost_cold_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_amortized_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_bill_payer_account_id": {"name": "infra__s3_cost_cold_bill_payer_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_bill_payer_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_bill_start_date": {"name": "infra__s3_cost_cold_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_bill_start_date", "block_contents": "Billing date for a specific S3 service (day granularity)"}, "doc.yoda.infra__s3_cost_cold_billing_period": {"name": "infra__s3_cost_cold_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_billing_period", "block_contents": "Billing period date monthly"}, "doc.yoda.infra__s3_cost_cold_bucket": {"name": "infra__s3_cost_cold_bucket", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_bucket", "block_contents": "Bucket Name"}, "doc.yoda.infra__s3_cost_cold_cost": {"name": "infra__s3_cost_cold_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_cost", "block_contents": "Cost per product family/usage type"}, "doc.yoda.infra__s3_cost_cold_credit": {"name": "infra__s3_cost_cold_credit", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_credit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_data_transfer_cost": {"name": "infra__s3_cost_cold_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_data_transfer_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_discount": {"name": "infra__s3_cost_cold_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_final_cost": {"name": "infra__s3_cost_cold_final_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_final_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_line_item_line_item_type": {"name": "infra__s3_cost_cold_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_line_item_line_item_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_line_item_usage_type": {"name": "infra__s3_cost_cold_line_item_usage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_line_item_usage_type", "block_contents": "Out/In-Bytes, Requests-Tier,TimedStorage, StorageAnalytics, DataTransfer, Inventory-ObjectsListed, Retrieval, EarlyDelete-ByteHrs"}, "doc.yoda.infra__s3_cost_cold_product_line": {"name": "infra__s3_cost_cold_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_product_product_family": {"name": "infra__s3_cost_cold_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_product_product_family", "block_contents": "Data Transfer, API Request, Storage, Fee"}, "doc.yoda.infra__s3_cost_cold_resource_tags_user_feature": {"name": "infra__s3_cost_cold_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_resource_tags_user_feature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_resource_tags_user_group": {"name": "infra__s3_cost_cold_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_resource_tags_user_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_resource_tags_user_product_line": {"name": "infra__s3_cost_cold_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_resource_tags_user_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_resource_tags_user_team": {"name": "infra__s3_cost_cold_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_resource_tags_user_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_tax_cost": {"name": "infra__s3_cost_cold_tax_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_tax_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_unblended_cost": {"name": "infra__s3_cost_cold_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_unblended_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_cold_usage_cost": {"name": "infra__s3_cost_cold_usage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "original_file_path": "models/infra/marts/infra__s3_cost_cold/infra__s3_cost_cold.md", "unique_id": "doc.yoda.infra__s3_cost_cold_usage_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot": {"name": "infra__s3_cost_hot", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot", "block_contents": "AWS S3 Bucket Costs aggregations table based on `AWS Cost and Usage Reports` flushed into `aws-billing-report-costpo` bucket.\nThe table are created [here|https://github.com/YotpoLtd/costpo/blob/master/sql-views.sql#L15] and contains data that is only for the last 2 months"}, "doc.yoda.infra__s3_cost_hot_account_name": {"name": "infra__s3_cost_hot_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_account_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_amortized_cost": {"name": "infra__s3_cost_hot_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_amortized_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_bill_payer_account_id": {"name": "infra__s3_cost_hot_bill_payer_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_bill_payer_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_bill_start_date": {"name": "infra__s3_cost_hot_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_bill_start_date", "block_contents": "Billing date for a specific S3 service (day granularity)"}, "doc.yoda.infra__s3_cost_hot_billing_period": {"name": "infra__s3_cost_hot_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_billing_period", "block_contents": "Billing period date monthly"}, "doc.yoda.infra__s3_cost_hot_bucket": {"name": "infra__s3_cost_hot_bucket", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_bucket", "block_contents": "Bucket Name"}, "doc.yoda.infra__s3_cost_hot_cost": {"name": "infra__s3_cost_hot_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_cost", "block_contents": "Cost per product family/usage type"}, "doc.yoda.infra__s3_cost_hot_credit": {"name": "infra__s3_cost_hot_credit", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_credit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_data_transfer_cost": {"name": "infra__s3_cost_hot_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_data_transfer_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_discount": {"name": "infra__s3_cost_hot_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_final_cost": {"name": "infra__s3_cost_hot_final_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_final_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_line_item_line_item_type": {"name": "infra__s3_cost_hot_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_line_item_line_item_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_line_item_usage_type": {"name": "infra__s3_cost_hot_line_item_usage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_line_item_usage_type", "block_contents": "Out/In-Bytes, Requests-Tier,TimedStorage, StorageAnalytics, DataTransfer, Inventory-ObjectsListed, Retrieval, EarlyDelete-ByteHrs"}, "doc.yoda.infra__s3_cost_hot_product_line": {"name": "infra__s3_cost_hot_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_product_product_family": {"name": "infra__s3_cost_hot_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_product_product_family", "block_contents": "Data Transfer, API Request, Storage, Fee"}, "doc.yoda.infra__s3_cost_hot_resource_tags_user_feature": {"name": "infra__s3_cost_hot_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_resource_tags_user_feature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_resource_tags_user_group": {"name": "infra__s3_cost_hot_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_resource_tags_user_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_resource_tags_user_product_line": {"name": "infra__s3_cost_hot_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_resource_tags_user_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_resource_tags_user_team": {"name": "infra__s3_cost_hot_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_resource_tags_user_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_tax_cost": {"name": "infra__s3_cost_hot_tax_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_tax_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_unblended_cost": {"name": "infra__s3_cost_hot_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_unblended_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_cost_hot_usage_cost": {"name": "infra__s3_cost_hot_usage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "original_file_path": "models/infra/marts/infra__s3_cost_hot/infra__s3_cost_hot.md", "unique_id": "doc.yoda.infra__s3_cost_hot_usage_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_prefix_aggregations": {"name": "infra__s3_prefix_aggregations", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations", "block_contents": "S3 prefix aggregations table which is based s3 inventory report"}, "doc.yoda.infra__s3_prefix_aggregations_avg_size_in_MB": {"name": "infra__s3_prefix_aggregations_avg_size_in_MB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_avg_size_in_MB", "block_contents": "Avarage prefix aggregation in MB"}, "doc.yoda.infra__s3_prefix_aggregations_billing_day": {"name": "infra__s3_prefix_aggregations_billing_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_billing_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_prefix_aggregations_bucket": {"name": "infra__s3_prefix_aggregations_bucket", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_bucket", "block_contents": "Bucket name"}, "doc.yoda.infra__s3_prefix_aggregations_day": {"name": "infra__s3_prefix_aggregations_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_day", "block_contents": "Day of the inventory"}, "doc.yoda.infra__s3_prefix_aggregations_estimated_storage_cost": {"name": "infra__s3_prefix_aggregations_estimated_storage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_estimated_storage_cost", "block_contents": "Total estimated cost based on storage class"}, "doc.yoda.infra__s3_prefix_aggregations_month": {"name": "infra__s3_prefix_aggregations_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_month", "block_contents": "Month of the inventory"}, "doc.yoda.infra__s3_prefix_aggregations_p20_in_MB": {"name": "infra__s3_prefix_aggregations_p20_in_MB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_p20_in_MB", "block_contents": "Prefix aggregation 0.20 Percentile size in MB"}, "doc.yoda.infra__s3_prefix_aggregations_p50_in_MB": {"name": "infra__s3_prefix_aggregations_p50_in_MB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_p50_in_MB", "block_contents": "Prefix aggregation 0.50 Percentile size in MB"}, "doc.yoda.infra__s3_prefix_aggregations_p75_in_MB": {"name": "infra__s3_prefix_aggregations_p75_in_MB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_p75_in_MB", "block_contents": "Prefix aggregation 0.75 Percentile size in MB"}, "doc.yoda.infra__s3_prefix_aggregations_p99_in_MB": {"name": "infra__s3_prefix_aggregations_p99_in_MB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_p99_in_MB", "block_contents": "Prefix aggregation 0.99 Percentile size in MB"}, "doc.yoda.infra__s3_prefix_aggregations_prefix": {"name": "infra__s3_prefix_aggregations_prefix", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_prefix", "block_contents": "Prefix (S3 path)"}, "doc.yoda.infra__s3_prefix_aggregations_prefix_split_size": {"name": "infra__s3_prefix_aggregations_prefix_split_size", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_prefix_split_size", "block_contents": "The prefix level (1,2..)"}, "doc.yoda.infra__s3_prefix_aggregations_product_line": {"name": "infra__s3_prefix_aggregations_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_prefix_aggregations_total_objects": {"name": "infra__s3_prefix_aggregations_total_objects", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_total_objects", "block_contents": "Amount of objects per prefix"}, "doc.yoda.infra__s3_prefix_aggregations_total_size_in_GB": {"name": "infra__s3_prefix_aggregations_total_size_in_GB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_total_size_in_GB", "block_contents": "Amount of object's size per prefix in GB"}, "doc.yoda.infra__s3_prefix_aggregations_year": {"name": "infra__s3_prefix_aggregations_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_aggregations_year", "block_contents": "Year of the inventory"}, "doc.yoda.infra__s3_prefix_storage_class": {"name": "infra__s3_prefix_storage_class", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "original_file_path": "models/infra/marts/infra__s3_prefix_aggregations/infra__s3_prefix_aggregations.md", "unique_id": "doc.yoda.infra__s3_prefix_storage_class", "block_contents": "The prefix level (1,2..)"}, "doc.yoda.infra__s3_storage_data_summary": {"name": "infra__s3_storage_data_summary", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary", "block_contents": "AWS S3 Storage aggregation based on inventory"}, "doc.yoda.infra__s3_storage_data_summary_avg_size_in_MB": {"name": "infra__s3_storage_data_summary_avg_size_in_MB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_avg_size_in_MB", "block_contents": "Avarage size for a given day"}, "doc.yoda.infra__s3_storage_data_summary_billing_day": {"name": "infra__s3_storage_data_summary_billing_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_billing_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_storage_data_summary_bucket": {"name": "infra__s3_storage_data_summary_bucket", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_bucket", "block_contents": "Bucket name"}, "doc.yoda.infra__s3_storage_data_summary_day": {"name": "infra__s3_storage_data_summary_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_day", "block_contents": "Day of the week"}, "doc.yoda.infra__s3_storage_data_summary_month": {"name": "infra__s3_storage_data_summary_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_month", "block_contents": "Month of the year"}, "doc.yoda.infra__s3_storage_data_summary_p20_in_MB": {"name": "infra__s3_storage_data_summary_p20_in_MB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_p20_in_MB", "block_contents": "20 percentile size for a given day"}, "doc.yoda.infra__s3_storage_data_summary_p50_in_MB": {"name": "infra__s3_storage_data_summary_p50_in_MB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_p50_in_MB", "block_contents": "50 percentile size for a given day"}, "doc.yoda.infra__s3_storage_data_summary_p75_in_MB": {"name": "infra__s3_storage_data_summary_p75_in_MB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_p75_in_MB", "block_contents": "75 percentile size for a given day"}, "doc.yoda.infra__s3_storage_data_summary_p99_in_MB": {"name": "infra__s3_storage_data_summary_p99_in_MB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_p99_in_MB", "block_contents": "99 percentile size for a given day"}, "doc.yoda.infra__s3_storage_data_summary_product_line": {"name": "infra__s3_storage_data_summary_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__s3_storage_data_summary_storage_class": {"name": "infra__s3_storage_data_summary_storage_class", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_storage_class", "block_contents": "Storage class (STANDARD, STANDARD_IA, GLACIER)"}, "doc.yoda.infra__s3_storage_data_summary_total_cost": {"name": "infra__s3_storage_data_summary_total_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_total_cost", "block_contents": "Aggregated cast for a given day"}, "doc.yoda.infra__s3_storage_data_summary_total_objects": {"name": "infra__s3_storage_data_summary_total_objects", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_total_objects", "block_contents": "Total objects for a given day"}, "doc.yoda.infra__s3_storage_data_summary_total_size_in_GB": {"name": "infra__s3_storage_data_summary_total_size_in_GB", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_total_size_in_GB", "block_contents": "Total object size for a given day"}, "doc.yoda.infra__s3_storage_data_summary_year": {"name": "infra__s3_storage_data_summary_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "original_file_path": "models/infra/marts/infra__s3_storage_data_summary/infra__s3_storage_data_summary.md", "unique_id": "doc.yoda.infra__s3_storage_data_summary_year", "block_contents": "Year"}, "doc.yoda.infra__snowflake_automatic_clustering_cost": {"name": "infra__snowflake_automatic_clustering_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost", "block_contents": "Snowflake automatic clustering daily costs"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_account": {"name": "infra__snowflake_automatic_clustering_cost_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_account", "block_contents": "Snowflake account (product / HR)"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_agg_cost": {"name": "infra__snowflake_automatic_clustering_cost_agg_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_agg_cost", "block_contents": "Cost (Credit * 2.58)"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_agg_credits_used": {"name": "infra__snowflake_automatic_clustering_cost_agg_credits_used", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_agg_credits_used", "block_contents": "Overall credits used"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_agg_num_bytes_reclustered": {"name": "infra__snowflake_automatic_clustering_cost_agg_num_bytes_reclustered", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_agg_num_bytes_reclustered", "block_contents": "Amount of bytes which were invloved in the clustering"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_agg_num_rows_reclustered": {"name": "infra__snowflake_automatic_clustering_cost_agg_num_rows_reclustered", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_agg_num_rows_reclustered", "block_contents": "Amount of rows which were invloved in the clustering"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_database_name": {"name": "infra__snowflake_automatic_clustering_cost_database_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_database_name", "block_contents": "Database name"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_date": {"name": "infra__snowflake_automatic_clustering_cost_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_date", "block_contents": "Daily date"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_is_staging": {"name": "infra__snowflake_automatic_clustering_cost_is_staging", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_is_staging", "block_contents": "Whether the table is a staging one"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_is_upsolver": {"name": "infra__snowflake_automatic_clustering_cost_is_upsolver", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_is_upsolver", "block_contents": "Whether the table is a temporary upsolver one"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_product_line": {"name": "infra__snowflake_automatic_clustering_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_product_line", "block_contents": "Owner of the table"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_schema_name": {"name": "infra__snowflake_automatic_clustering_cost_schema_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_schema_name", "block_contents": "Schem name"}, "doc.yoda.infra__snowflake_automatic_clustering_cost_table_name": {"name": "infra__snowflake_automatic_clustering_cost_table_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_automatic_clustering_cost/infra__snowflake_automatic_clustering_cost.md", "unique_id": "doc.yoda.infra__snowflake_automatic_clustering_cost_table_name", "block_contents": "Table name"}, "doc.yoda.infra__snowflake_contract_details": {"name": "infra__snowflake_contract_details", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.md", "original_file_path": "models/infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.md", "unique_id": "doc.yoda.infra__snowflake_contract_details", "block_contents": "Table containing informatino about Snowflake contract"}, "doc.yoda.infra__snowflake_contract_details_end_date": {"name": "infra__snowflake_contract_details_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.md", "original_file_path": "models/infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.md", "unique_id": "doc.yoda.infra__snowflake_contract_details_end_date", "block_contents": "Contract end time"}, "doc.yoda.infra__snowflake_contract_details_start_date": {"name": "infra__snowflake_contract_details_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.md", "original_file_path": "models/infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.md", "unique_id": "doc.yoda.infra__snowflake_contract_details_start_date", "block_contents": "Contract start time"}, "doc.yoda.infra__snowflake_contract_details_yearly_budget": {"name": "infra__snowflake_contract_details_yearly_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.md", "original_file_path": "models/infra/marts/infra__snowflake_contract_details/infra__snowflake_contract_details.md", "unique_id": "doc.yoda.infra__snowflake_contract_details_yearly_budget", "block_contents": "Yearly budget"}, "doc.yoda.infra__snowflake_cost": {"name": "infra__snowflake_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost/infra__snowflake_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_cost/infra__snowflake_cost.md", "unique_id": "doc.yoda.infra__snowflake_cost", "block_contents": "Snowflake cost data"}, "doc.yoda.infra__snowflake_cost_account": {"name": "infra__snowflake_cost_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost/infra__snowflake_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_cost/infra__snowflake_cost.md", "unique_id": "doc.yoda.infra__snowflake_cost_account", "block_contents": "Account (RND/HR)"}, "doc.yoda.infra__snowflake_cost_cost": {"name": "infra__snowflake_cost_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost/infra__snowflake_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_cost/infra__snowflake_cost.md", "unique_id": "doc.yoda.infra__snowflake_cost_cost", "block_contents": "Overall cost (warehouse + materialized views + storage + autoclustering)"}, "doc.yoda.infra__snowflake_cost_date": {"name": "infra__snowflake_cost_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost/infra__snowflake_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_cost/infra__snowflake_cost.md", "unique_id": "doc.yoda.infra__snowflake_cost_date", "block_contents": "Date"}, "doc.yoda.infra__snowflake_cost_product_line": {"name": "infra__snowflake_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost/infra__snowflake_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_cost/infra__snowflake_cost.md", "unique_id": "doc.yoda.infra__snowflake_cost_product_line", "block_contents": "Product line"}, "doc.yoda.infra__snowflake_cost_summary": {"name": "infra__snowflake_cost_summary", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary", "block_contents": "Table summarizing monthly snowflake cost with forcasting"}, "doc.yoda.infra__snowflake_cost_summary_avg_monthly_cost": {"name": "infra__snowflake_cost_summary_avg_monthly_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_avg_monthly_cost", "block_contents": "Avarage of monthly cost (across all closed months)"}, "doc.yoda.infra__snowflake_cost_summary_budget_left": {"name": "infra__snowflake_cost_summary_budget_left", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_budget_left", "block_contents": "Budget left from the begining of the current contract (with history)"}, "doc.yoda.infra__snowflake_cost_summary_calculated_monthly_budget": {"name": "infra__snowflake_cost_summary_calculated_monthly_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_calculated_monthly_budget", "block_contents": "Adaptive budget based on closed months and budget left"}, "doc.yoda.infra__snowflake_cost_summary_contract_end_time": {"name": "infra__snowflake_cost_summary_contract_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_contract_end_time", "block_contents": "Contract end time"}, "doc.yoda.infra__snowflake_cost_summary_contract_start_time": {"name": "infra__snowflake_cost_summary_contract_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_contract_start_time", "block_contents": "Contract start time"}, "doc.yoda.infra__snowflake_cost_summary_cumulative_cost": {"name": "infra__snowflake_cost_summary_cumulative_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_cumulative_cost", "block_contents": "Cumulative monthly cost"}, "doc.yoda.infra__snowflake_cost_summary_cumulative_cost_with_current_month": {"name": "infra__snowflake_cost_summary_cumulative_cost_with_current_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_cumulative_cost_with_current_month", "block_contents": "Cumulative monthly cost with the current month"}, "doc.yoda.infra__snowflake_cost_summary_cumulative_cost_without_current_month": {"name": "infra__snowflake_cost_summary_cumulative_cost_without_current_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_cumulative_cost_without_current_month", "block_contents": "Cumulative monthly cost without the current month"}, "doc.yoda.infra__snowflake_cost_summary_daily_avg_cost": {"name": "infra__snowflake_cost_summary_daily_avg_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_daily_avg_cost", "block_contents": "Daily avarage cost per month"}, "doc.yoda.infra__snowflake_cost_summary_date": {"name": "infra__snowflake_cost_summary_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_date", "block_contents": "Date"}, "doc.yoda.infra__snowflake_cost_summary_days_count": {"name": "infra__snowflake_cost_summary_days_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_days_count", "block_contents": "Cumulative days from the begining of the contract"}, "doc.yoda.infra__snowflake_cost_summary_days_in_month": {"name": "infra__snowflake_cost_summary_days_in_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_days_in_month", "block_contents": "Current month days"}, "doc.yoda.infra__snowflake_cost_summary_end_date": {"name": "infra__snowflake_cost_summary_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_end_date", "block_contents": "Month date"}, "doc.yoda.infra__snowflake_cost_summary_estimated_months_left_for_renewal_burn_rate": {"name": "infra__snowflake_cost_summary_estimated_months_left_for_renewal_burn_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_estimated_months_left_for_renewal_burn_rate", "block_contents": "Estimated months left based on the burn rate"}, "doc.yoda.infra__snowflake_cost_summary_estimated_months_left_for_renewal_last_month": {"name": "infra__snowflake_cost_summary_estimated_months_left_for_renewal_last_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_estimated_months_left_for_renewal_last_month", "block_contents": "Estimated months left based on the last month"}, "doc.yoda.infra__snowflake_cost_summary_is_closed_month": {"name": "infra__snowflake_cost_summary_is_closed_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_is_closed_month", "block_contents": "Is month closed"}, "doc.yoda.infra__snowflake_cost_summary_month": {"name": "infra__snowflake_cost_summary_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_month", "block_contents": "Month"}, "doc.yoda.infra__snowflake_cost_summary_monthly_burn_rate": {"name": "infra__snowflake_cost_summary_monthly_burn_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_monthly_burn_rate", "block_contents": "Monthyl burn rate (AVG of all closed + current months)"}, "doc.yoda.infra__snowflake_cost_summary_monthly_cost": {"name": "infra__snowflake_cost_summary_monthly_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_monthly_cost", "block_contents": "Monthly cost to Snowflake"}, "doc.yoda.infra__snowflake_cost_summary_months_count": {"name": "infra__snowflake_cost_summary_months_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_months_count", "block_contents": "Cumulative months from the begining of the contract"}, "doc.yoda.infra__snowflake_cost_summary_months_left": {"name": "infra__snowflake_cost_summary_months_left", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_months_left", "block_contents": "Months left till the end of the contract"}, "doc.yoda.infra__snowflake_cost_summary_prev_monthly_cost": {"name": "infra__snowflake_cost_summary_prev_monthly_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_prev_monthly_cost", "block_contents": "Previous month cost"}, "doc.yoda.infra__snowflake_cost_summary_start_date": {"name": "infra__snowflake_cost_summary_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_start_date", "block_contents": "Contract start time"}, "doc.yoda.infra__snowflake_cost_summary_year": {"name": "infra__snowflake_cost_summary_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_year", "block_contents": "Year"}, "doc.yoda.infra__snowflake_cost_summary_yearly_budget": {"name": "infra__snowflake_cost_summary_yearly_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "original_file_path": "models/infra/marts/infra__snowflake_cost_summary/infra__snowflake_cost_summary.md", "unique_id": "doc.yoda.infra__snowflake_cost_summary_yearly_budget", "block_contents": "Yearly budget"}, "doc.yoda.infra__snowflake_daily_cost": {"name": "infra__snowflake_daily_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "unique_id": "doc.yoda.infra__snowflake_daily_cost", "block_contents": "Snowflake daily cost"}, "doc.yoda.infra__snowflake_daily_cost_account": {"name": "infra__snowflake_daily_cost_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "unique_id": "doc.yoda.infra__snowflake_daily_cost_account", "block_contents": "Snowflake account (RND / HR)"}, "doc.yoda.infra__snowflake_daily_cost_automatic_clustering_cost": {"name": "infra__snowflake_daily_cost_automatic_clustering_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "unique_id": "doc.yoda.infra__snowflake_daily_cost_automatic_clustering_cost", "block_contents": "Daily automatic clustering cost"}, "doc.yoda.infra__snowflake_daily_cost_date": {"name": "infra__snowflake_daily_cost_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "unique_id": "doc.yoda.infra__snowflake_daily_cost_date", "block_contents": "Date"}, "doc.yoda.infra__snowflake_daily_cost_product_line": {"name": "infra__snowflake_daily_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "unique_id": "doc.yoda.infra__snowflake_daily_cost_product_line", "block_contents": "Product line that is tagged with the resource"}, "doc.yoda.infra__snowflake_daily_cost_storage_cost": {"name": "infra__snowflake_daily_cost_storage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "unique_id": "doc.yoda.infra__snowflake_daily_cost_storage_cost", "block_contents": "Daily storage cost (total used divided by the amount of closed days)"}, "doc.yoda.infra__snowflake_daily_cost_views_cost": {"name": "infra__snowflake_daily_cost_views_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "unique_id": "doc.yoda.infra__snowflake_daily_cost_views_cost", "block_contents": "Daily materialized views cost"}, "doc.yoda.infra__snowflake_daily_cost_warehouse_cost": {"name": "infra__snowflake_daily_cost_warehouse_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_daily_cost/infra__snowflake_daily_cost.md", "unique_id": "doc.yoda.infra__snowflake_daily_cost_warehouse_cost", "block_contents": "Daily warehousing cost"}, "doc.yoda.infra__snowflake_monthly_cost": {"name": "infra__snowflake_monthly_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "unique_id": "doc.yoda.infra__snowflake_monthly_cost", "block_contents": "Snowflake daily cost"}, "doc.yoda.infra__snowflake_monthly_cost_account": {"name": "infra__snowflake_monthly_cost_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "unique_id": "doc.yoda.infra__snowflake_monthly_cost_account", "block_contents": "Snowflake account (RND / HR)"}, "doc.yoda.infra__snowflake_monthly_cost_automatic_clustering_cost": {"name": "infra__snowflake_monthly_cost_automatic_clustering_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "unique_id": "doc.yoda.infra__snowflake_monthly_cost_automatic_clustering_cost", "block_contents": "Monthly automatic clustering cost"}, "doc.yoda.infra__snowflake_monthly_cost_date": {"name": "infra__snowflake_monthly_cost_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "unique_id": "doc.yoda.infra__snowflake_monthly_cost_date", "block_contents": "Date"}, "doc.yoda.infra__snowflake_monthly_cost_month": {"name": "infra__snowflake_monthly_cost_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "unique_id": "doc.yoda.infra__snowflake_monthly_cost_month", "block_contents": "Month"}, "doc.yoda.infra__snowflake_monthly_cost_product_line": {"name": "infra__snowflake_monthly_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "unique_id": "doc.yoda.infra__snowflake_monthly_cost_product_line", "block_contents": "Prodcut line tagged with the resource"}, "doc.yoda.infra__snowflake_monthly_cost_storage_cost": {"name": "infra__snowflake_monthly_cost_storage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "unique_id": "doc.yoda.infra__snowflake_monthly_cost_storage_cost", "block_contents": "Monthly storage cost"}, "doc.yoda.infra__snowflake_monthly_cost_views_cost": {"name": "infra__snowflake_monthly_cost_views_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "unique_id": "doc.yoda.infra__snowflake_monthly_cost_views_cost", "block_contents": "Monthly materialized views cost"}, "doc.yoda.infra__snowflake_monthly_cost_warehouse_cost": {"name": "infra__snowflake_monthly_cost_warehouse_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "unique_id": "doc.yoda.infra__snowflake_monthly_cost_warehouse_cost", "block_contents": "Monthly warehousing cost"}, "doc.yoda.infra__snowflake_monthly_cost_year": {"name": "infra__snowflake_monthly_cost_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_monthly_cost/infra__snowflake_monthly_cost.md", "unique_id": "doc.yoda.infra__snowflake_monthly_cost_year", "block_contents": "Year"}, "doc.yoda.infra__snowflake_query_statistics": {"name": "infra__snowflake_query_statistics", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics", "block_contents": "Snowflake query statistics (extraction logic resides in our ingestion flow in Databricks)"}, "doc.yoda.infra__snowflake_query_statistics_blocked_time": {"name": "infra__snowflake_query_statistics_blocked_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_blocked_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_blocked_time_avg": {"name": "infra__snowflake_query_statistics_blocked_time_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_blocked_time_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_blocked_time_p25": {"name": "infra__snowflake_query_statistics_blocked_time_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_blocked_time_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_blocked_time_p50": {"name": "infra__snowflake_query_statistics_blocked_time_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_blocked_time_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_blocked_time_p75": {"name": "infra__snowflake_query_statistics_blocked_time_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_blocked_time_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_blocked_time_p95": {"name": "infra__snowflake_query_statistics_blocked_time_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_blocked_time_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_compilation_time": {"name": "infra__snowflake_query_statistics_compilation_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_compilation_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_compilation_time_avg": {"name": "infra__snowflake_query_statistics_compilation_time_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_compilation_time_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_compilation_time_p25": {"name": "infra__snowflake_query_statistics_compilation_time_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_compilation_time_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_compilation_time_p50": {"name": "infra__snowflake_query_statistics_compilation_time_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_compilation_time_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_compilation_time_p75": {"name": "infra__snowflake_query_statistics_compilation_time_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_compilation_time_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_compilation_time_p95": {"name": "infra__snowflake_query_statistics_compilation_time_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_compilation_time_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_execution_status": {"name": "infra__snowflake_query_statistics_execution_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_execution_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_execution_time": {"name": "infra__snowflake_query_statistics_execution_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_execution_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_execution_time_avg": {"name": "infra__snowflake_query_statistics_execution_time_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_execution_time_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_execution_time_p25": {"name": "infra__snowflake_query_statistics_execution_time_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_execution_time_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_execution_time_p50": {"name": "infra__snowflake_query_statistics_execution_time_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_execution_time_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_execution_time_p75": {"name": "infra__snowflake_query_statistics_execution_time_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_execution_time_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_execution_time_p95": {"name": "infra__snowflake_query_statistics_execution_time_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_execution_time_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_failed_queries_cnt": {"name": "infra__snowflake_query_statistics_failed_queries_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_failed_queries_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_inbound_data": {"name": "infra__snowflake_query_statistics_inbound_data", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_inbound_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_inbound_data_avg": {"name": "infra__snowflake_query_statistics_inbound_data_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_inbound_data_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_inbound_data_p25": {"name": "infra__snowflake_query_statistics_inbound_data_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_inbound_data_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_inbound_data_p50": {"name": "infra__snowflake_query_statistics_inbound_data_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_inbound_data_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_inbound_data_p75": {"name": "infra__snowflake_query_statistics_inbound_data_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_inbound_data_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_inbound_data_p95": {"name": "infra__snowflake_query_statistics_inbound_data_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_inbound_data_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_max_cluster_cnt": {"name": "infra__snowflake_query_statistics_max_cluster_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_max_cluster_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_min_cluster_cnt": {"name": "infra__snowflake_query_statistics_min_cluster_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_min_cluster_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_outbound_data": {"name": "infra__snowflake_query_statistics_outbound_data", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_outbound_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_outbound_data_avg": {"name": "infra__snowflake_query_statistics_outbound_data_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_outbound_data_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_outbound_data_p25": {"name": "infra__snowflake_query_statistics_outbound_data_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_outbound_data_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_outbound_data_p50": {"name": "infra__snowflake_query_statistics_outbound_data_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_outbound_data_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_outbound_data_p75": {"name": "infra__snowflake_query_statistics_outbound_data_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_outbound_data_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_outbound_data_p95": {"name": "infra__snowflake_query_statistics_outbound_data_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_outbound_data_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_queries_not_using_warehouse_cnt": {"name": "infra__snowflake_query_statistics_queries_not_using_warehouse_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_queries_not_using_warehouse_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_queries_partition_proning_cnt": {"name": "infra__snowflake_query_statistics_queries_partition_proning_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_queries_partition_proning_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_queries_using_warehouse_cnt": {"name": "infra__snowflake_query_statistics_queries_using_warehouse_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_queries_using_warehouse_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_query_type": {"name": "infra__snowflake_query_statistics_query_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_query_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_queue_time": {"name": "infra__snowflake_query_statistics_queue_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_queue_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_queue_time_avg": {"name": "infra__snowflake_query_statistics_queue_time_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_queue_time_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_queue_time_p25": {"name": "infra__snowflake_query_statistics_queue_time_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_queue_time_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_queue_time_p50": {"name": "infra__snowflake_query_statistics_queue_time_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_queue_time_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_queue_time_p75": {"name": "infra__snowflake_query_statistics_queue_time_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_queue_time_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_queue_time_p95": {"name": "infra__snowflake_query_statistics_queue_time_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_queue_time_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache": {"name": "infra__snowflake_query_statistics_scanned_from_cache", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache_avg": {"name": "infra__snowflake_query_statistics_scanned_from_cache_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache_p25": {"name": "infra__snowflake_query_statistics_scanned_from_cache_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache_p50": {"name": "infra__snowflake_query_statistics_scanned_from_cache_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache_p75": {"name": "infra__snowflake_query_statistics_scanned_from_cache_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache_p95": {"name": "infra__snowflake_query_statistics_scanned_from_cache_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_scanned_from_cache_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_spilled_to_local_cnt": {"name": "infra__snowflake_query_statistics_spilled_to_local_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_spilled_to_local_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_spilled_to_remote_cnt": {"name": "infra__snowflake_query_statistics_spilled_to_remote_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_spilled_to_remote_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_start_time": {"name": "infra__snowflake_query_statistics_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_start_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_successful_queries_cnt": {"name": "infra__snowflake_query_statistics_successful_queries_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_successful_queries_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_total_elapsed": {"name": "infra__snowflake_query_statistics_total_elapsed", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_total_elapsed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_total_elapsed_avg": {"name": "infra__snowflake_query_statistics_total_elapsed_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_total_elapsed_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_total_elapsed_p25": {"name": "infra__snowflake_query_statistics_total_elapsed_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_total_elapsed_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_total_elapsed_p50": {"name": "infra__snowflake_query_statistics_total_elapsed_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_total_elapsed_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_total_elapsed_p75": {"name": "infra__snowflake_query_statistics_total_elapsed_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_total_elapsed_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_total_elapsed_p95": {"name": "infra__snowflake_query_statistics_total_elapsed_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_total_elapsed_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_total_queries": {"name": "infra__snowflake_query_statistics_total_queries", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_total_queries", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_user_name": {"name": "infra__snowflake_query_statistics_user_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_warehouse_name": {"name": "infra__snowflake_query_statistics_warehouse_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_warehouse_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_query_statistics_warehouse_size": {"name": "infra__snowflake_query_statistics_warehouse_size", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_query_statistics/infra__snowflake_query_statistics.md", "unique_id": "doc.yoda.infra__snowflake_query_statistics_warehouse_size", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__snowflake_storage_cost": {"name": "infra__snowflake_storage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "unique_id": "doc.yoda.infra__snowflake_storage_cost", "block_contents": "Daily Snowflake Storage Cost"}, "doc.yoda.infra__snowflake_storage_cost_account": {"name": "infra__snowflake_storage_cost_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "unique_id": "doc.yoda.infra__snowflake_storage_cost_account", "block_contents": "Snowflake account (product / HR)"}, "doc.yoda.infra__snowflake_storage_cost_agg_billable_cost": {"name": "infra__snowflake_storage_cost_agg_billable_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "unique_id": "doc.yoda.infra__snowflake_storage_cost_agg_billable_cost", "block_contents": "Daily billable overall storage cost (storage + delete storage)"}, "doc.yoda.infra__snowflake_storage_cost_agg_deleted_storage_cost": {"name": "infra__snowflake_storage_cost_agg_deleted_storage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "unique_id": "doc.yoda.infra__snowflake_storage_cost_agg_deleted_storage_cost", "block_contents": "Daily billable deleted storage cost"}, "doc.yoda.infra__snowflake_storage_cost_agg_storage_cost": {"name": "infra__snowflake_storage_cost_agg_storage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "unique_id": "doc.yoda.infra__snowflake_storage_cost_agg_storage_cost", "block_contents": "Daily billable deleted storage cost"}, "doc.yoda.infra__snowflake_storage_cost_database_name": {"name": "infra__snowflake_storage_cost_database_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "unique_id": "doc.yoda.infra__snowflake_storage_cost_database_name", "block_contents": "Database"}, "doc.yoda.infra__snowflake_storage_cost_usage_date": {"name": "infra__snowflake_storage_cost_usage_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_storage_cost/infra__snowflake_storage_cost.md", "unique_id": "doc.yoda.infra__snowflake_storage_cost_usage_date", "block_contents": "Billable date"}, "doc.yoda.infra__snowflake_views_cost": {"name": "infra__snowflake_views_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "unique_id": "doc.yoda.infra__snowflake_views_cost", "block_contents": "Table containing daily materialized views cost"}, "doc.yoda.infra__snowflake_views_cost_account": {"name": "infra__snowflake_views_cost_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "unique_id": "doc.yoda.infra__snowflake_views_cost_account", "block_contents": "Snowflake account (product / HR)"}, "doc.yoda.infra__snowflake_views_cost_agg_cost": {"name": "infra__snowflake_views_cost_agg_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "unique_id": "doc.yoda.infra__snowflake_views_cost_agg_cost", "block_contents": "Daily matermaterialized views cost"}, "doc.yoda.infra__snowflake_views_cost_agg_credits_used": {"name": "infra__snowflake_views_cost_agg_credits_used", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "unique_id": "doc.yoda.infra__snowflake_views_cost_agg_credits_used", "block_contents": "Daily matermaterialized views credits"}, "doc.yoda.infra__snowflake_views_cost_database_name": {"name": "infra__snowflake_views_cost_database_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "unique_id": "doc.yoda.infra__snowflake_views_cost_database_name", "block_contents": "Database name"}, "doc.yoda.infra__snowflake_views_cost_date": {"name": "infra__snowflake_views_cost_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "unique_id": "doc.yoda.infra__snowflake_views_cost_date", "block_contents": "Date"}, "doc.yoda.infra__snowflake_views_cost_product_line": {"name": "infra__snowflake_views_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "unique_id": "doc.yoda.infra__snowflake_views_cost_product_line", "block_contents": "Onwer of the materialized view"}, "doc.yoda.infra__snowflake_views_cost_schema_name": {"name": "infra__snowflake_views_cost_schema_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "unique_id": "doc.yoda.infra__snowflake_views_cost_schema_name", "block_contents": "Schema name"}, "doc.yoda.infra__snowflake_views_cost_table_name": {"name": "infra__snowflake_views_cost_table_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_views_cost/infra__snowflake_views_cost.md", "unique_id": "doc.yoda.infra__snowflake_views_cost_table_name", "block_contents": "Table name"}, "doc.yoda.infra__snowflake_warehouse_cost": {"name": "infra__snowflake_warehouse_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_cost", "block_contents": "Daily warehouse cost aggregations"}, "doc.yoda.infra__snowflake_warehouse_cost_account": {"name": "infra__snowflake_warehouse_cost_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_cost_account", "block_contents": "Snowflake account (product / HR)"}, "doc.yoda.infra__snowflake_warehouse_cost_agg_cost": {"name": "infra__snowflake_warehouse_cost_agg_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_cost_agg_cost", "block_contents": "Daily cost (composed out of compute credits * 2.58)"}, "doc.yoda.infra__snowflake_warehouse_cost_agg_credits_used": {"name": "infra__snowflake_warehouse_cost_agg_credits_used", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_cost_agg_credits_used", "block_contents": "Daily aggregated credit used"}, "doc.yoda.infra__snowflake_warehouse_cost_agg_credits_used_cloud_services": {"name": "infra__snowflake_warehouse_cost_agg_credits_used_cloud_services", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_cost_agg_credits_used_cloud_services", "block_contents": "Daily aggregated credit used for cloud services"}, "doc.yoda.infra__snowflake_warehouse_cost_agg_credits_used_compute": {"name": "infra__snowflake_warehouse_cost_agg_credits_used_compute", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_cost_agg_credits_used_compute", "block_contents": "Daily aggregated credit used for compute"}, "doc.yoda.infra__snowflake_warehouse_cost_date": {"name": "infra__snowflake_warehouse_cost_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_cost_date", "block_contents": "Date"}, "doc.yoda.infra__snowflake_warehouse_cost_product_line": {"name": "infra__snowflake_warehouse_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_cost_product_line", "block_contents": "Product line"}, "doc.yoda.infra__snowflake_warehouse_cost_warehouse_name": {"name": "infra__snowflake_warehouse_cost_warehouse_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_cost/infra__snowflake_warehouse_cost.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_cost_warehouse_name", "block_contents": "Warehouse name"}, "doc.yoda.infra__snowflake_warehouse_statistics": {"name": "infra__snowflake_warehouse_statistics", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_statistics", "block_contents": "Snowflake warehouse cluster scaling statistics (Every 5 Minutes)"}, "doc.yoda.infra__snowflake_warehouse_statistics_cluster_count": {"name": "infra__snowflake_warehouse_statistics_cluster_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_statistics_cluster_count", "block_contents": "Amount of clusters per given time"}, "doc.yoda.infra__snowflake_warehouse_statistics_date": {"name": "infra__snowflake_warehouse_statistics_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_statistics_date", "block_contents": "date"}, "doc.yoda.infra__snowflake_warehouse_statistics_warehouse_name": {"name": "infra__snowflake_warehouse_statistics_warehouse_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.md", "original_file_path": "models/infra/marts/infra__snowflake_warehouse_statistics/infra__snowflake_warehouse_statistics.md", "unique_id": "doc.yoda.infra__snowflake_warehouse_statistics_warehouse_name", "block_contents": "Warehouse name"}, "doc.yoda.infra__marts_spark_jobs": {"name": "infra__marts_spark_jobs", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__marts_spark_jobs", "block_contents": "Table which aggregates spark jobs with multiple aggregations"}, "doc.yoda.infra__spark_jobs_avg_executor_duration": {"name": "infra__spark_jobs_avg_executor_duration", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_avg_executor_duration", "block_contents": "Average executors duration in minutes"}, "doc.yoda.infra__spark_jobs_component": {"name": "infra__spark_jobs_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_component", "block_contents": "Component of the spark job"}, "doc.yoda.infra__spark_jobs_compute_cost": {"name": "infra__spark_jobs_compute_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_compute_cost", "block_contents": "Only cost compute of the machine that executes the node. This cost may include other pods that are running on the same machine"}, "doc.yoda.infra__spark_jobs_cost": {"name": "infra__spark_jobs_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_cost", "block_contents": "Total cost for a given spark job (computation resources only)"}, "doc.yoda.infra__spark_jobs_cpucorehours": {"name": "infra__spark_jobs_cpucorehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_cpucorehours", "block_contents": "Total cpu hours for a given run"}, "doc.yoda.infra__spark_jobs_cpucost": {"name": "infra__spark_jobs_cpucost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_cpucost", "block_contents": "Total cpu cost for a given run"}, "doc.yoda.infra__spark_jobs_data_transfer_cost": {"name": "infra__spark_jobs_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_data_transfer_cost", "block_contents": "Only data transfer cost of the machine that executes the node. This cost may include other pods that are running on the same machine"}, "doc.yoda.infra__spark_jobs_day": {"name": "infra__spark_jobs_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_day", "block_contents": "Day of the spark job"}, "doc.yoda.infra__spark_jobs_driver_availability_zone": {"name": "infra__spark_jobs_driver_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_availability_zone", "block_contents": "The AZ which the driver was provisioned in"}, "doc.yoda.infra__spark_jobs_driver_avg_network_received_in_bytes": {"name": "infra__spark_jobs_driver_avg_network_received_in_bytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_avg_network_received_in_bytes", "block_contents": "Total average amount of bytes received by the driver for a given job"}, "doc.yoda.infra__spark_jobs_driver_avg_network_transfer_in_bytes": {"name": "infra__spark_jobs_driver_avg_network_transfer_in_bytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_avg_network_transfer_in_bytes", "block_contents": "Total average amount of bytes trasferred from the driver for a given job"}, "doc.yoda.infra__spark_jobs_driver_compute_cost": {"name": "infra__spark_jobs_driver_compute_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_compute_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__spark_jobs_driver_cores": {"name": "infra__spark_jobs_driver_cores", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_cores", "block_contents": "Amount of cores the driver requested"}, "doc.yoda.infra__spark_jobs_driver_cost": {"name": "infra__spark_jobs_driver_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_cost", "block_contents": "Total cost only for the driver"}, "doc.yoda.infra__spark_jobs_driver_cpu_efficiency": {"name": "infra__spark_jobs_driver_cpu_efficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_cpu_efficiency", "block_contents": "Driver CPU average usage devided by the requested CPU"}, "doc.yoda.infra__spark_jobs_driver_cpu_efficiency_by_max": {"name": "infra__spark_jobs_driver_cpu_efficiency_by_max", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_cpu_efficiency_by_max", "block_contents": "Driver CPU max usage devided by the requested CPU"}, "doc.yoda.infra__spark_jobs_driver_data_transfer_cost": {"name": "infra__spark_jobs_driver_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_data_transfer_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__spark_jobs_driver_instance_memory": {"name": "infra__spark_jobs_driver_instance_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_instance_memory", "block_contents": "The amount of memory the EC2 instance which ran the driver has"}, "doc.yoda.infra__spark_jobs_driver_instance_network_performance": {"name": "infra__spark_jobs_driver_instance_network_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_instance_network_performance", "block_contents": "The network performance the EC2 instance which ran the driver has"}, "doc.yoda.infra__spark_jobs_driver_instance_pricing_term": {"name": "infra__spark_jobs_driver_instance_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_instance_pricing_term", "block_contents": "Whether the EC2 instance that ran the driver is spot, on demand or reserved"}, "doc.yoda.infra__spark_jobs_driver_instance_types": {"name": "infra__spark_jobs_driver_instance_types", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_instance_types", "block_contents": "EC2 Instance type which the driver ran on"}, "doc.yoda.infra__spark_jobs_driver_instance_vcpu": {"name": "infra__spark_jobs_driver_instance_vcpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_instance_vcpu", "block_contents": "The amount of virtual cpus the EC2 instance which ran the driver has"}, "doc.yoda.infra__spark_jobs_driver_max_core_usage": {"name": "infra__spark_jobs_driver_max_core_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_max_core_usage", "block_contents": "The maximum amount of cores which was used for a give job"}, "doc.yoda.infra__spark_jobs_driver_max_memory_usage": {"name": "infra__spark_jobs_driver_max_memory_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_max_memory_usage", "block_contents": "The maximum amount of memory which was used for a give job"}, "doc.yoda.infra__spark_jobs_driver_memory_in_bytes": {"name": "infra__spark_jobs_driver_memory_in_bytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_memory_in_bytes", "block_contents": "The amount of memory the driver has requested"}, "doc.yoda.infra__spark_jobs_driver_product_storage": {"name": "infra__spark_jobs_driver_product_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_product_storage", "block_contents": "Whether the instance provisioned has storage or requires EBS"}, "doc.yoda.infra__spark_jobs_driver_ram_efficiency": {"name": "infra__spark_jobs_driver_ram_efficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_ram_efficiency", "block_contents": "The average amount of memory divided by the memory requested by the driver"}, "doc.yoda.infra__spark_jobs_driver_ram_efficiency_by_max": {"name": "infra__spark_jobs_driver_ram_efficiency_by_max", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_driver_ram_efficiency_by_max", "block_contents": "The maximum amount of memory divided by the memory requested by the driver"}, "doc.yoda.infra__spark_jobs_duration": {"name": "infra__spark_jobs_duration", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_duration", "block_contents": "Job duration in minutes"}, "doc.yoda.infra__spark_jobs_executor_avg_network_received_in_bytes": {"name": "infra__spark_jobs_executor_avg_network_received_in_bytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_avg_network_received_in_bytes", "block_contents": "Total average amount of bytes received by the execotors for a given job"}, "doc.yoda.infra__spark_jobs_executor_avg_network_transfer_in_bytes": {"name": "infra__spark_jobs_executor_avg_network_transfer_in_bytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_avg_network_transfer_in_bytes", "block_contents": "Total average amount of bytes transferred from the driver for a given job"}, "doc.yoda.infra__spark_jobs_executor_compute_cost": {"name": "infra__spark_jobs_executor_compute_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_compute_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__spark_jobs_executor_cores": {"name": "infra__spark_jobs_executor_cores", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_cores", "block_contents": "Cores requested by the executor"}, "doc.yoda.infra__spark_jobs_executor_cpu_efficiency": {"name": "infra__spark_jobs_executor_cpu_efficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_cpu_efficiency", "block_contents": "Executor CPU average usage devided by the requested CPU"}, "doc.yoda.infra__spark_jobs_executor_cpu_efficiency_by_max": {"name": "infra__spark_jobs_executor_cpu_efficiency_by_max", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_cpu_efficiency_by_max", "block_contents": "Executor CPU max usage devided by the requested CPU"}, "doc.yoda.infra__spark_jobs_executor_data_transfer_cost": {"name": "infra__spark_jobs_executor_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_data_transfer_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__spark_jobs_executor_max_core_usage": {"name": "infra__spark_jobs_executor_max_core_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_max_core_usage", "block_contents": "Maximum used core across all executors"}, "doc.yoda.infra__spark_jobs_executor_max_memory_usage": {"name": "infra__spark_jobs_executor_max_memory_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_max_memory_usage", "block_contents": "Maximum used memory across all executors"}, "doc.yoda.infra__spark_jobs_executor_memory_in_bytes": {"name": "infra__spark_jobs_executor_memory_in_bytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_memory_in_bytes", "block_contents": "Memory requested by the executor in bytes"}, "doc.yoda.infra__spark_jobs_executor_network_performance": {"name": "infra__spark_jobs_executor_network_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_network_performance", "block_contents": "The network performance of the EC2 instance which ran the driver"}, "doc.yoda.infra__spark_jobs_executor_pricing_term": {"name": "infra__spark_jobs_executor_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_pricing_term", "block_contents": "Whether the EC2 instance that ran the executor is spot, on demand or reserved"}, "doc.yoda.infra__spark_jobs_executor_ram_efficiency": {"name": "infra__spark_jobs_executor_ram_efficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_ram_efficiency", "block_contents": "The average amount of memory the executor used"}, "doc.yoda.infra__spark_jobs_executor_ram_efficiency_by_max": {"name": "infra__spark_jobs_executor_ram_efficiency_by_max", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executor_ram_efficiency_by_max", "block_contents": "The maximum amount of memory the executor used"}, "doc.yoda.infra__spark_jobs_executors_availability_zone": {"name": "infra__spark_jobs_executors_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executors_availability_zone", "block_contents": "Collection of all the AZ across all executors"}, "doc.yoda.infra__spark_jobs_executors_cost": {"name": "infra__spark_jobs_executors_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executors_cost", "block_contents": "Total cost of all executors"}, "doc.yoda.infra__spark_jobs_executors_count": {"name": "infra__spark_jobs_executors_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executors_count", "block_contents": "Total amount of executors which participated in the job"}, "doc.yoda.infra__spark_jobs_executors_instance_types": {"name": "infra__spark_jobs_executors_instance_types", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executors_instance_types", "block_contents": "Collection of instance types across all executors"}, "doc.yoda.infra__spark_jobs_executors_memory": {"name": "infra__spark_jobs_executors_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executors_memory", "block_contents": "The amount of memory the executed request"}, "doc.yoda.infra__spark_jobs_executors_product_storage": {"name": "infra__spark_jobs_executors_product_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executors_product_storage", "block_contents": "Whether the instance comes with storage or if requires an EBS"}, "doc.yoda.infra__spark_jobs_executors_vcpu": {"name": "infra__spark_jobs_executors_vcpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_executors_vcpu", "block_contents": "The amount of virtual cpus the instaces that ran the executor has"}, "doc.yoda.infra__spark_jobs_feature": {"name": "infra__spark_jobs_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_feature", "block_contents": "Feature of the spark job"}, "doc.yoda.infra__spark_jobs_group": {"name": "infra__spark_jobs_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_group", "block_contents": "Group name"}, "doc.yoda.infra__spark_jobs_instance_compute_cost": {"name": "infra__spark_jobs_instance_compute_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_instance_compute_cost", "block_contents": "Only data compute cost of the machine that executes the node. This cost may include other pods that are running on the same machine"}, "doc.yoda.infra__spark_jobs_instance_data_transfer_cost": {"name": "infra__spark_jobs_instance_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_instance_data_transfer_cost", "block_contents": "Only data transfer cost of the machine that executes the node. This cost may include other pods that are running on the same machine"}, "doc.yoda.infra__spark_jobs_instance_total_cost": {"name": "infra__spark_jobs_instance_total_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_instance_total_cost", "block_contents": "Total cost of the machine that executes the node. This cost may include other pods that are running on the same machine"}, "doc.yoda.infra__spark_jobs_is_cast": {"name": "infra__spark_jobs_is_cast", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_is_cast", "block_contents": "Indicate if the spark job executed on pods provisioned by Cast"}, "doc.yoda.infra__spark_jobs_is_driver_OD_candidate": {"name": "infra__spark_jobs_is_driver_OD_candidate", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_is_driver_OD_candidate", "block_contents": "Whether the driver is a candidate to be replaced with spot (based on the amount of minutes the job ran)"}, "doc.yoda.infra__spark_jobs_is_multi_az_cost": {"name": "infra__spark_jobs_is_multi_az_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_is_multi_az_cost", "block_contents": "Whether the job ran on mutiple AZ (and therefore will intorduce data transfer cost)"}, "doc.yoda.infra__spark_jobs_max_executor_duration": {"name": "infra__spark_jobs_max_executor_duration", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_max_executor_duration", "block_contents": "The maximum amount of executor duration"}, "doc.yoda.infra__spark_jobs_min_executor_duration": {"name": "infra__spark_jobs_min_executor_duration", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_min_executor_duration", "block_contents": "The minimum amount of executor duration"}, "doc.yoda.infra__spark_jobs_month": {"name": "infra__spark_jobs_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_month", "block_contents": "The month the job ran on"}, "doc.yoda.infra__spark_jobs_networkcost": {"name": "infra__spark_jobs_networkcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_networkcost", "block_contents": "The amount of network cost for the specific job"}, "doc.yoda.infra__spark_jobs_product_line": {"name": "infra__spark_jobs_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_product_line", "block_contents": "Product line"}, "doc.yoda.infra__spark_jobs_productline": {"name": "infra__spark_jobs_productline", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_productline", "block_contents": "The product line the job is tagged to"}, "doc.yoda.infra__spark_jobs_productline_instance_tag": {"name": "infra__spark_jobs_productline_instance_tag", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_productline_instance_tag", "block_contents": "The product line the EC2 instance is tagged to"}, "doc.yoda.infra__spark_jobs_pvcost": {"name": "infra__spark_jobs_pvcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_pvcost", "block_contents": "The amount of kubernetes storage (PV) cost for the specific job"}, "doc.yoda.infra__spark_jobs_rambytehours": {"name": "infra__spark_jobs_rambytehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_rambytehours", "block_contents": "The amount of ram hours the job has consumed"}, "doc.yoda.infra__spark_jobs_ramcost": {"name": "infra__spark_jobs_ramcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_ramcost", "block_contents": "The amount of memory cost for the specific job"}, "doc.yoda.infra__spark_jobs_region": {"name": "infra__spark_jobs_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_region", "block_contents": "The region the job ran on"}, "doc.yoda.infra__spark_jobs_release_name": {"name": "infra__spark_jobs_release_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_release_name", "block_contents": "The name of the job"}, "doc.yoda.infra__spark_jobs_run_date": {"name": "infra__spark_jobs_run_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_run_date", "block_contents": "Date format of the job execution"}, "doc.yoda.infra__spark_jobs_run_id": {"name": "infra__spark_jobs_run_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_run_id", "block_contents": "The unique job id"}, "doc.yoda.infra__spark_jobs_subsystem": {"name": "infra__spark_jobs_subsystem", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_subsystem", "block_contents": "Sub system of the spark job"}, "doc.yoda.infra__spark_jobs_system": {"name": "infra__spark_jobs_system", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_system", "block_contents": "System of the spark job"}, "doc.yoda.infra__spark_jobs_team": {"name": "infra__spark_jobs_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_team", "block_contents": "Team"}, "doc.yoda.infra__spark_jobs_total_executors_duration": {"name": "infra__spark_jobs_total_executors_duration", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_total_executors_duration", "block_contents": "The total amounts of minutes of the executors"}, "doc.yoda.infra__spark_jobs_total_network_received_in_bytes": {"name": "infra__spark_jobs_total_network_received_in_bytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_total_network_received_in_bytes", "block_contents": "Total amounts of bytes received from the different components of the job"}, "doc.yoda.infra__spark_jobs_total_network_transfer_in_bytes": {"name": "infra__spark_jobs_total_network_transfer_in_bytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_total_network_transfer_in_bytes", "block_contents": "Total amounts of bytes transferred to the different components of the job"}, "doc.yoda.infra__spark_jobs_year": {"name": "infra__spark_jobs_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__spark_jobs/infra__spark_jobs.md", "original_file_path": "models/infra/marts/infra__spark_jobs/infra__spark_jobs.md", "unique_id": "doc.yoda.infra__spark_jobs_year", "block_contents": "The year the job ran on"}, "doc.yoda.infra__sqs_cost": {"name": "infra__sqs_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost", "block_contents": "SQS Costs"}, "doc.yoda.infra__sqs_cost_account_name": {"name": "infra__sqs_cost_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_account_name", "block_contents": "Account name"}, "doc.yoda.infra__sqs_cost_amortized_cost": {"name": "infra__sqs_cost_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_amortized_cost", "block_contents": "Amortized Costs"}, "doc.yoda.infra__sqs_cost_bill_start_date": {"name": "infra__sqs_cost_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_bill_start_date", "block_contents": "Billing day"}, "doc.yoda.infra__sqs_cost_billing_period": {"name": "infra__sqs_cost_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_billing_period", "block_contents": "Billing month"}, "doc.yoda.infra__sqs_cost_cluster_name": {"name": "infra__sqs_cost_cluster_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_cluster_name", "block_contents": "Cluster name"}, "doc.yoda.infra__sqs_cost_line_item_line_item_type": {"name": "infra__sqs_cost_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_line_item_line_item_type", "block_contents": "Item type"}, "doc.yoda.infra__sqs_cost_line_item_operation": {"name": "infra__sqs_cost_line_item_operation", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_line_item_operation", "block_contents": "Operation"}, "doc.yoda.infra__sqs_cost_line_item_resource_id": {"name": "infra__sqs_cost_line_item_resource_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_line_item_resource_id", "block_contents": "ARN"}, "doc.yoda.infra__sqs_cost_line_item_usage_account_id": {"name": "infra__sqs_cost_line_item_usage_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_line_item_usage_account_id", "block_contents": "Account id"}, "doc.yoda.infra__sqs_cost_line_item_usage_amount": {"name": "infra__sqs_cost_line_item_usage_amount", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_line_item_usage_amount", "block_contents": "Usage amount"}, "doc.yoda.infra__sqs_cost_pricing_term": {"name": "infra__sqs_cost_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_pricing_term", "block_contents": "Pricing term"}, "doc.yoda.infra__sqs_cost_product_line": {"name": "infra__sqs_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_product_line", "block_contents": "Product line"}, "doc.yoda.infra__sqs_cost_product_message_delivery_frequency": {"name": "infra__sqs_cost_product_message_delivery_frequency", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_product_message_delivery_frequency", "block_contents": "Message delivery frequency"}, "doc.yoda.infra__sqs_cost_product_product_family": {"name": "infra__sqs_cost_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_product_product_family", "block_contents": "Product family"}, "doc.yoda.infra__sqs_cost_resource_tags_user_feature": {"name": "infra__sqs_cost_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_resource_tags_user_feature", "block_contents": "Feature tag"}, "doc.yoda.infra__sqs_cost_resource_tags_user_group": {"name": "infra__sqs_cost_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_resource_tags_user_group", "block_contents": "Group tag"}, "doc.yoda.infra__sqs_cost_resource_tags_user_team": {"name": "infra__sqs_cost_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_resource_tags_user_team", "block_contents": "Team tag"}, "doc.yoda.infra__sqs_cost_unblended_cost": {"name": "infra__sqs_cost_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sqs_cost/infra__sqs_cost.md", "original_file_path": "models/infra/marts/infra__sqs_cost/infra__sqs_cost.md", "unique_id": "doc.yoda.infra__sqs_cost_unblended_cost", "block_contents": "Unblended costs"}, "doc.yoda.infra__sub_departments_monthly_budget_cur": {"name": "infra__sub_departments_monthly_budget_cur", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.md", "original_file_path": "models/infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.md", "unique_id": "doc.yoda.infra__sub_departments_monthly_budget_cur", "block_contents": "Sub departments budgets"}, "doc.yoda.infra__sub_departments_monthly_budget_cur_budget": {"name": "infra__sub_departments_monthly_budget_cur_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.md", "original_file_path": "models/infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.md", "unique_id": "doc.yoda.infra__sub_departments_monthly_budget_cur_budget", "block_contents": "Budget"}, "doc.yoda.infra__sub_departments_monthly_budget_cur_department": {"name": "infra__sub_departments_monthly_budget_cur_department", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.md", "original_file_path": "models/infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.md", "unique_id": "doc.yoda.infra__sub_departments_monthly_budget_cur_department", "block_contents": "Department"}, "doc.yoda.infra__sub_departments_monthly_budget_cur_department_disply_name": {"name": "infra__sub_departments_monthly_budget_cur_department_disply_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.md", "original_file_path": "models/infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.md", "unique_id": "doc.yoda.infra__sub_departments_monthly_budget_cur_department_disply_name", "block_contents": "Department display name"}, "doc.yoda.infra__sub_departments_monthly_budget_cur_updated_date": {"name": "infra__sub_departments_monthly_budget_cur_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.md", "original_file_path": "models/infra/marts/infra__sub_departments_monthly_budget_cur/infra__sub_departments_monthly_budget_cur.md", "unique_id": "doc.yoda.infra__sub_departments_monthly_budget_cur_updated_date", "block_contents": "Budget update date"}, "doc.yoda.infra__vendor_contracts": {"name": "infra__vendor_contracts", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "original_file_path": "models/infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "unique_id": "doc.yoda.infra__vendor_contracts", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__vendor_contracts_end_date": {"name": "infra__vendor_contracts_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "original_file_path": "models/infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "unique_id": "doc.yoda.infra__vendor_contracts_end_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__vendor_contracts_rate": {"name": "infra__vendor_contracts_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "original_file_path": "models/infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "unique_id": "doc.yoda.infra__vendor_contracts_rate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__vendor_contracts_start_date": {"name": "infra__vendor_contracts_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "original_file_path": "models/infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "unique_id": "doc.yoda.infra__vendor_contracts_start_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__vendor_contracts_vendor": {"name": "infra__vendor_contracts_vendor", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "original_file_path": "models/infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "unique_id": "doc.yoda.infra__vendor_contracts_vendor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__vendor_contracts_yearly_budget": {"name": "infra__vendor_contracts_yearly_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "original_file_path": "models/infra/marts/infra__vendor_contracts/infra__vendor_contracts.md", "unique_id": "doc.yoda.infra__vendor_contracts_yearly_budget", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts": {"name": "infra_stg__alerts", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__alerts_acknowledged": {"name": "infra_stg__alerts_acknowledged", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_acknowledged", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_alert_id": {"name": "infra_stg__alerts_alert_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_alert_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_count": {"name": "infra_stg__alerts_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_createdat": {"name": "infra_stg__alerts_createdat", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_impact_duration_in_seconds": {"name": "infra_stg__alerts_impact_duration_in_seconds", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_impact_duration_in_seconds", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_integration": {"name": "infra_stg__alerts_integration", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_integration", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_message": {"name": "infra_stg__alerts_message", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_owner": {"name": "infra_stg__alerts_owner", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_owner", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_priority": {"name": "infra_stg__alerts_priority", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_priority", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_seen": {"name": "infra_stg__alerts_seen", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_seen", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_snoozed": {"name": "infra_stg__alerts_snoozed", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_snoozed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_source": {"name": "infra_stg__alerts_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_status": {"name": "infra_stg__alerts_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_tags": {"name": "infra_stg__alerts_tags", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_tags", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_teams": {"name": "infra_stg__alerts_teams", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_teams", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__alerts_updatedat": {"name": "infra_stg__alerts_updatedat", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "original_file_path": "models/infra/staging/base/infra_stg__alerts/infra_stg__alerts.md", "unique_id": "doc.yoda.infra_stg__alerts_updatedat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_billing_report_raw_bill_bill_type": {"name": "infra_stg__aws_billing_report_raw_bill_bill_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_bill_bill_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_bill_billing_entity": {"name": "infra_stg__aws_billing_report_raw_bill_billing_entity", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_bill_billing_entity", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_bill_billing_period_end_date": {"name": "infra_stg__aws_billing_report_raw_bill_billing_period_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_bill_billing_period_end_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_bill_billing_period_start_date": {"name": "infra_stg__aws_billing_report_raw_bill_billing_period_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_bill_billing_period_start_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_bill_invoice_id": {"name": "infra_stg__aws_billing_report_raw_bill_invoice_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_bill_invoice_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_bill_payer_account_id": {"name": "infra_stg__aws_billing_report_raw_bill_payer_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_bill_payer_account_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_discount_edp_discount": {"name": "infra_stg__aws_billing_report_raw_discount_edp_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_discount_edp_discount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_discount_private_rate_discount": {"name": "infra_stg__aws_billing_report_raw_discount_private_rate_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_discount_private_rate_discount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_discount_total_discount": {"name": "infra_stg__aws_billing_report_raw_discount_total_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_discount_total_discount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_identity_line_item_id": {"name": "infra_stg__aws_billing_report_raw_identity_line_item_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_identity_line_item_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_identity_time_interval": {"name": "infra_stg__aws_billing_report_raw_identity_time_interval", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_identity_time_interval", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_availability_zone": {"name": "infra_stg__aws_billing_report_raw_line_item_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_availability_zone", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_blended_cost": {"name": "infra_stg__aws_billing_report_raw_line_item_blended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_blended_cost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_blended_rate": {"name": "infra_stg__aws_billing_report_raw_line_item_blended_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_blended_rate", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_currency_code": {"name": "infra_stg__aws_billing_report_raw_line_item_currency_code", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_currency_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_legal_entity": {"name": "infra_stg__aws_billing_report_raw_line_item_legal_entity", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_legal_entity", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_line_item_description": {"name": "infra_stg__aws_billing_report_raw_line_item_line_item_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_line_item_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_line_item_type": {"name": "infra_stg__aws_billing_report_raw_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_line_item_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_net_unblended_cost": {"name": "infra_stg__aws_billing_report_raw_line_item_net_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_net_unblended_cost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_net_unblended_rate": {"name": "infra_stg__aws_billing_report_raw_line_item_net_unblended_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_net_unblended_rate", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_normalization_factor": {"name": "infra_stg__aws_billing_report_raw_line_item_normalization_factor", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_normalization_factor", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_normalized_usage_amount": {"name": "infra_stg__aws_billing_report_raw_line_item_normalized_usage_amount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_normalized_usage_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_operation": {"name": "infra_stg__aws_billing_report_raw_line_item_operation", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_operation", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_product_code": {"name": "infra_stg__aws_billing_report_raw_line_item_product_code", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_product_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_resource_id": {"name": "infra_stg__aws_billing_report_raw_line_item_resource_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_resource_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_tax_type": {"name": "infra_stg__aws_billing_report_raw_line_item_tax_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_tax_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_unblended_cost": {"name": "infra_stg__aws_billing_report_raw_line_item_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_unblended_cost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_unblended_rate": {"name": "infra_stg__aws_billing_report_raw_line_item_unblended_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_unblended_rate", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_usage_account_id": {"name": "infra_stg__aws_billing_report_raw_line_item_usage_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_usage_account_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_usage_amount": {"name": "infra_stg__aws_billing_report_raw_line_item_usage_amount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_usage_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_usage_end_date": {"name": "infra_stg__aws_billing_report_raw_line_item_usage_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_usage_end_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_usage_start_date": {"name": "infra_stg__aws_billing_report_raw_line_item_usage_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_usage_start_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_line_item_usage_type": {"name": "infra_stg__aws_billing_report_raw_line_item_usage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_line_item_usage_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_month": {"name": "infra_stg__aws_billing_report_raw_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_month", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_pricing_currency": {"name": "infra_stg__aws_billing_report_raw_pricing_currency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_pricing_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_pricing_lease_contract_length": {"name": "infra_stg__aws_billing_report_raw_pricing_lease_contract_length", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_pricing_lease_contract_length", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_pricing_offering_class": {"name": "infra_stg__aws_billing_report_raw_pricing_offering_class", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_pricing_offering_class", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_pricing_public_on_demand_cost": {"name": "infra_stg__aws_billing_report_raw_pricing_public_on_demand_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_pricing_public_on_demand_cost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_pricing_public_on_demand_rate": {"name": "infra_stg__aws_billing_report_raw_pricing_public_on_demand_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_pricing_public_on_demand_rate", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_pricing_purchase_option": {"name": "infra_stg__aws_billing_report_raw_pricing_purchase_option", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_pricing_purchase_option", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_pricing_rate_code": {"name": "infra_stg__aws_billing_report_raw_pricing_rate_code", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_pricing_rate_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_pricing_rate_id": {"name": "infra_stg__aws_billing_report_raw_pricing_rate_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_pricing_rate_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_pricing_term": {"name": "infra_stg__aws_billing_report_raw_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_pricing_term", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_pricing_unit": {"name": "infra_stg__aws_billing_report_raw_pricing_unit", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_pricing_unit", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_alarm_type": {"name": "infra_stg__aws_billing_report_raw_product_alarm_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_alarm_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_availability": {"name": "infra_stg__aws_billing_report_raw_product_availability", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_availability", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_availability_zone": {"name": "infra_stg__aws_billing_report_raw_product_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_availability_zone", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_bundle": {"name": "infra_stg__aws_billing_report_raw_product_bundle", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_bundle", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_bundle_description": {"name": "infra_stg__aws_billing_report_raw_product_bundle_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_bundle_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_bundle_group": {"name": "infra_stg__aws_billing_report_raw_product_bundle_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_bundle_group", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_cache_engine": {"name": "infra_stg__aws_billing_report_raw_product_cache_engine", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_cache_engine", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_capacitystatus": {"name": "infra_stg__aws_billing_report_raw_product_capacitystatus", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_capacitystatus", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_category": {"name": "infra_stg__aws_billing_report_raw_product_category", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_category", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_clock_speed": {"name": "infra_stg__aws_billing_report_raw_product_clock_speed", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_clock_speed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_component": {"name": "infra_stg__aws_billing_report_raw_product_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_component", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_compute_family": {"name": "infra_stg__aws_billing_report_raw_product_compute_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_compute_family", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_compute_type": {"name": "infra_stg__aws_billing_report_raw_product_compute_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_compute_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_concurrencyscalingfreeusage": {"name": "infra_stg__aws_billing_report_raw_product_concurrencyscalingfreeusage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_concurrencyscalingfreeusage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_counts_against_quota": {"name": "infra_stg__aws_billing_report_raw_product_counts_against_quota", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_counts_against_quota", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_cputype": {"name": "infra_stg__aws_billing_report_raw_product_cputype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_cputype", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_current_generation": {"name": "infra_stg__aws_billing_report_raw_product_current_generation", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_current_generation", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_data": {"name": "infra_stg__aws_billing_report_raw_product_data", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_data", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_data_transfer_quota": {"name": "infra_stg__aws_billing_report_raw_product_data_transfer_quota", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_data_transfer_quota", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_database_engine": {"name": "infra_stg__aws_billing_report_raw_product_database_engine", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_database_engine", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_datastore_storagetype": {"name": "infra_stg__aws_billing_report_raw_product_datastore_storagetype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_datastore_storagetype", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_dedicated_ebs_throughput": {"name": "infra_stg__aws_billing_report_raw_product_dedicated_ebs_throughput", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_dedicated_ebs_throughput", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_deployment_option": {"name": "infra_stg__aws_billing_report_raw_product_deployment_option", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_deployment_option", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_description": {"name": "infra_stg__aws_billing_report_raw_product_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_durability": {"name": "infra_stg__aws_billing_report_raw_product_durability", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_durability", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_ecu": {"name": "infra_stg__aws_billing_report_raw_product_ecu", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_ecu", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_endpoint": {"name": "infra_stg__aws_billing_report_raw_product_endpoint", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_endpoint", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_endpoint_type": {"name": "infra_stg__aws_billing_report_raw_product_endpoint_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_endpoint_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_engine_code": {"name": "infra_stg__aws_billing_report_raw_product_engine_code", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_engine_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_enhanced_networking_supported": {"name": "infra_stg__aws_billing_report_raw_product_enhanced_networking_supported", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_enhanced_networking_supported", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_event_type": {"name": "infra_stg__aws_billing_report_raw_product_event_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_event_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_execution_frequency": {"name": "infra_stg__aws_billing_report_raw_product_execution_frequency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_execution_frequency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_execution_location": {"name": "infra_stg__aws_billing_report_raw_product_execution_location", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_execution_location", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_fee_code": {"name": "infra_stg__aws_billing_report_raw_product_fee_code", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_fee_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_fee_description": {"name": "infra_stg__aws_billing_report_raw_product_fee_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_fee_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_free_overage": {"name": "infra_stg__aws_billing_report_raw_product_free_overage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_free_overage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_frequency_mode": {"name": "infra_stg__aws_billing_report_raw_product_frequency_mode", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_frequency_mode", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_from_location": {"name": "infra_stg__aws_billing_report_raw_product_from_location", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_from_location", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_from_location_type": {"name": "infra_stg__aws_billing_report_raw_product_from_location_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_from_location_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_gpu": {"name": "infra_stg__aws_billing_report_raw_product_gpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_gpu", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_gpu_memory": {"name": "infra_stg__aws_billing_report_raw_product_gpu_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_gpu_memory", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_granularity": {"name": "infra_stg__aws_billing_report_raw_product_granularity", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_granularity", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_group": {"name": "infra_stg__aws_billing_report_raw_product_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_group", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_group_description": {"name": "infra_stg__aws_billing_report_raw_product_group_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_group_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_insightstype": {"name": "infra_stg__aws_billing_report_raw_product_insightstype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_insightstype", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_instance_family": {"name": "infra_stg__aws_billing_report_raw_product_instance_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_instance_family", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_instance_name": {"name": "infra_stg__aws_billing_report_raw_product_instance_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_instance_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_instance_type": {"name": "infra_stg__aws_billing_report_raw_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_instance_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_instance_type_family": {"name": "infra_stg__aws_billing_report_raw_product_instance_type_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_instance_type_family", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_intel_avx2_available": {"name": "infra_stg__aws_billing_report_raw_product_intel_avx2_available", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_intel_avx2_available", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_intel_avx_available": {"name": "infra_stg__aws_billing_report_raw_product_intel_avx_available", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_intel_avx_available", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_intel_turbo_available": {"name": "infra_stg__aws_billing_report_raw_product_intel_turbo_available", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_intel_turbo_available", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_io": {"name": "infra_stg__aws_billing_report_raw_product_io", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_io", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_license": {"name": "infra_stg__aws_billing_report_raw_product_license", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_license", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_license_model": {"name": "infra_stg__aws_billing_report_raw_product_license_model", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_license_model", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_line": {"name": "infra_stg__aws_billing_report_raw_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_location": {"name": "infra_stg__aws_billing_report_raw_product_location", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_location", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_location_type": {"name": "infra_stg__aws_billing_report_raw_product_location_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_location_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_logs_destination": {"name": "infra_stg__aws_billing_report_raw_product_logs_destination", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_logs_destination", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_max_iops_burst_performance": {"name": "infra_stg__aws_billing_report_raw_product_max_iops_burst_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_max_iops_burst_performance", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_max_iopsvolume": {"name": "infra_stg__aws_billing_report_raw_product_max_iopsvolume", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_max_iopsvolume", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_max_throughputvolume": {"name": "infra_stg__aws_billing_report_raw_product_max_throughputvolume", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_max_throughputvolume", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_max_volume_size": {"name": "infra_stg__aws_billing_report_raw_product_max_volume_size", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_max_volume_size", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_maximum_extended_storage": {"name": "infra_stg__aws_billing_report_raw_product_maximum_extended_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_maximum_extended_storage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_memory": {"name": "infra_stg__aws_billing_report_raw_product_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_memory", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_memory_gib": {"name": "infra_stg__aws_billing_report_raw_product_memory_gib", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_memory_gib", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_memorytype": {"name": "infra_stg__aws_billing_report_raw_product_memorytype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_memorytype", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_message_delivery_frequency": {"name": "infra_stg__aws_billing_report_raw_product_message_delivery_frequency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_message_delivery_frequency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_message_delivery_order": {"name": "infra_stg__aws_billing_report_raw_product_message_delivery_order", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_message_delivery_order", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_min_volume_size": {"name": "infra_stg__aws_billing_report_raw_product_min_volume_size", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_min_volume_size", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_network_performance": {"name": "infra_stg__aws_billing_report_raw_product_network_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_network_performance", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_normalization_size_factor": {"name": "infra_stg__aws_billing_report_raw_product_normalization_size_factor", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_normalization_size_factor", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_operating_system": {"name": "infra_stg__aws_billing_report_raw_product_operating_system", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_operating_system", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_operation": {"name": "infra_stg__aws_billing_report_raw_product_operation", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_operation", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_overage_type": {"name": "infra_stg__aws_billing_report_raw_product_overage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_overage_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_physical_cpu": {"name": "infra_stg__aws_billing_report_raw_product_physical_cpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_physical_cpu", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_physical_gpu": {"name": "infra_stg__aws_billing_report_raw_product_physical_gpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_physical_gpu", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_physical_processor": {"name": "infra_stg__aws_billing_report_raw_product_physical_processor", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_physical_processor", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_pre_installed_sw": {"name": "infra_stg__aws_billing_report_raw_product_pre_installed_sw", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_pre_installed_sw", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_pricing_unit": {"name": "infra_stg__aws_billing_report_raw_product_pricing_unit", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_pricing_unit", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_processor_architecture": {"name": "infra_stg__aws_billing_report_raw_product_processor_architecture", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_processor_architecture", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_processor_features": {"name": "infra_stg__aws_billing_report_raw_product_processor_features", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_processor_features", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_product_family": {"name": "infra_stg__aws_billing_report_raw_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_product_family", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_product_name": {"name": "infra_stg__aws_billing_report_raw_product_product_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_product_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_purchase_option": {"name": "infra_stg__aws_billing_report_raw_product_purchase_option", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_purchase_option", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_purchaseterm": {"name": "infra_stg__aws_billing_report_raw_product_purchaseterm", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_purchaseterm", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_queue_type": {"name": "infra_stg__aws_billing_report_raw_product_queue_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_queue_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_ratetype": {"name": "infra_stg__aws_billing_report_raw_product_ratetype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_ratetype", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_region": {"name": "infra_stg__aws_billing_report_raw_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_region", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_request_description": {"name": "infra_stg__aws_billing_report_raw_product_request_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_request_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_request_type": {"name": "infra_stg__aws_billing_report_raw_product_request_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_request_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_resource_endpoint": {"name": "infra_stg__aws_billing_report_raw_product_resource_endpoint", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_resource_endpoint", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_resource_type": {"name": "infra_stg__aws_billing_report_raw_product_resource_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_resource_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_rootvolume": {"name": "infra_stg__aws_billing_report_raw_product_rootvolume", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_rootvolume", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_routing_target": {"name": "infra_stg__aws_billing_report_raw_product_routing_target", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_routing_target", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_routing_type": {"name": "infra_stg__aws_billing_report_raw_product_routing_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_routing_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_running_mode": {"name": "infra_stg__aws_billing_report_raw_product_running_mode", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_running_mode", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_servicecode": {"name": "infra_stg__aws_billing_report_raw_product_servicecode", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_servicecode", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_servicename": {"name": "infra_stg__aws_billing_report_raw_product_servicename", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_servicename", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_sku": {"name": "infra_stg__aws_billing_report_raw_product_sku", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_sku", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_software_included": {"name": "infra_stg__aws_billing_report_raw_product_software_included", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_software_included", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_software_type": {"name": "infra_stg__aws_billing_report_raw_product_software_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_software_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_standard_storage_retention_included": {"name": "infra_stg__aws_billing_report_raw_product_standard_storage_retention_included", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_standard_storage_retention_included", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_storage": {"name": "infra_stg__aws_billing_report_raw_product_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_storage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_storage_class": {"name": "infra_stg__aws_billing_report_raw_product_storage_class", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_storage_class", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_storage_family": {"name": "infra_stg__aws_billing_report_raw_product_storage_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_storage_family", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_storage_media": {"name": "infra_stg__aws_billing_report_raw_product_storage_media", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_storage_media", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_storage_type": {"name": "infra_stg__aws_billing_report_raw_product_storage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_storage_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_tenancy": {"name": "infra_stg__aws_billing_report_raw_product_tenancy", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_tenancy", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_tiertype": {"name": "infra_stg__aws_billing_report_raw_product_tiertype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_tiertype", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_to_location": {"name": "infra_stg__aws_billing_report_raw_product_to_location", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_to_location", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_to_location_type": {"name": "infra_stg__aws_billing_report_raw_product_to_location_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_to_location_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_transfer_type": {"name": "infra_stg__aws_billing_report_raw_product_transfer_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_transfer_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_type": {"name": "infra_stg__aws_billing_report_raw_product_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_usage_family": {"name": "infra_stg__aws_billing_report_raw_product_usage_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_usage_family", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_usagetype": {"name": "infra_stg__aws_billing_report_raw_product_usagetype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_usagetype", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_uservolume": {"name": "infra_stg__aws_billing_report_raw_product_uservolume", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_uservolume", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_vcpu": {"name": "infra_stg__aws_billing_report_raw_product_vcpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_vcpu", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_version": {"name": "infra_stg__aws_billing_report_raw_product_version", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_volume_api_name": {"name": "infra_stg__aws_billing_report_raw_product_volume_api_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_volume_api_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_volume_type": {"name": "infra_stg__aws_billing_report_raw_product_volume_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_volume_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_product_with_active_users": {"name": "infra_stg__aws_billing_report_raw_product_with_active_users", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_product_with_active_users", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_amortized_upfront_cost_for_usage": {"name": "infra_stg__aws_billing_report_raw_reservation_amortized_upfront_cost_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_amortized_upfront_cost_for_usage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_amortized_upfront_fee_for_billing_period": {"name": "infra_stg__aws_billing_report_raw_reservation_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_effective_cost": {"name": "infra_stg__aws_billing_report_raw_reservation_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_effective_cost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_end_time": {"name": "infra_stg__aws_billing_report_raw_reservation_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_end_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_modification_status": {"name": "infra_stg__aws_billing_report_raw_reservation_modification_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_modification_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_amortized_upfront_cost_for_usage": {"name": "infra_stg__aws_billing_report_raw_reservation_net_amortized_upfront_cost_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_amortized_upfront_cost_for_usage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_amortized_upfront_fee_for_billing_period": {"name": "infra_stg__aws_billing_report_raw_reservation_net_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_effective_cost": {"name": "infra_stg__aws_billing_report_raw_reservation_net_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_effective_cost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_recurring_fee_for_usage": {"name": "infra_stg__aws_billing_report_raw_reservation_net_recurring_fee_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_recurring_fee_for_usage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_unused_amortized_upfront_fee_for_billing_period": {"name": "infra_stg__aws_billing_report_raw_reservation_net_unused_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_unused_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_unused_recurring_fee": {"name": "infra_stg__aws_billing_report_raw_reservation_net_unused_recurring_fee", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_unused_recurring_fee", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_upfront_value": {"name": "infra_stg__aws_billing_report_raw_reservation_net_upfront_value", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_net_upfront_value", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_normalized_units_per_reservation": {"name": "infra_stg__aws_billing_report_raw_reservation_normalized_units_per_reservation", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_normalized_units_per_reservation", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_number_of_reservations": {"name": "infra_stg__aws_billing_report_raw_reservation_number_of_reservations", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_number_of_reservations", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_recurring_fee_for_usage": {"name": "infra_stg__aws_billing_report_raw_reservation_recurring_fee_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_recurring_fee_for_usage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_reservation_a_r_n": {"name": "infra_stg__aws_billing_report_raw_reservation_reservation_a_r_n", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_reservation_a_r_n", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_start_time": {"name": "infra_stg__aws_billing_report_raw_reservation_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_start_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_subscription_id": {"name": "infra_stg__aws_billing_report_raw_reservation_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_subscription_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_total_reserved_normalized_units": {"name": "infra_stg__aws_billing_report_raw_reservation_total_reserved_normalized_units", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_total_reserved_normalized_units", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_total_reserved_units": {"name": "infra_stg__aws_billing_report_raw_reservation_total_reserved_units", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_total_reserved_units", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_units_per_reservation": {"name": "infra_stg__aws_billing_report_raw_reservation_units_per_reservation", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_units_per_reservation", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_unused_amortized_upfront_fee_for_billing_period": {"name": "infra_stg__aws_billing_report_raw_reservation_unused_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_unused_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_unused_normalized_unit_quantity": {"name": "infra_stg__aws_billing_report_raw_reservation_unused_normalized_unit_quantity", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_unused_normalized_unit_quantity", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_unused_quantity": {"name": "infra_stg__aws_billing_report_raw_reservation_unused_quantity", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_unused_quantity", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_unused_recurring_fee": {"name": "infra_stg__aws_billing_report_raw_reservation_unused_recurring_fee", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_unused_recurring_fee", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_reservation_upfront_value": {"name": "infra_stg__aws_billing_report_raw_reservation_upfront_value", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_reservation_upfront_value", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_aws_created_by": {"name": "infra_stg__aws_billing_report_raw_resource_tags_aws_created_by", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_aws_created_by", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_instance_group_role": {"name": "infra_stg__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_instance_group_role", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_instance_group_role", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_job_flow_id": {"name": "infra_stg__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_job_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_aws_elasticmapreduce_job_flow_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_account": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_account", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_asg": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_asg", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_asg", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_cluster_name": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_cluster_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_cluster_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_component": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_component", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_databricks_instance_pool_id": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_databricks_instance_pool_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_databricks_instance_pool_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_docker_compose": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_docker_compose", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_docker_compose", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_environment": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_environment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_environment", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_name": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_product_line": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_product_line", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_service": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_service", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_service", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_sub_componenet": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_sub_componenet", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_sub_componenet", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_sub_component": {"name": "infra_stg__aws_billing_report_raw_resource_tags_user_sub_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_resource_tags_user_sub_component", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_amortized_upfront_commitment_for_billing_period": {"name": "infra_stg__aws_billing_report_raw_savings_plan_amortized_upfront_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_amortized_upfront_commitment_for_billing_period", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_end_time": {"name": "infra_stg__aws_billing_report_raw_savings_plan_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_end_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_instance_type_family": {"name": "infra_stg__aws_billing_report_raw_savings_plan_instance_type_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_instance_type_family", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_net_amortized_upfront_commitment_for_billing_period": {"name": "infra_stg__aws_billing_report_raw_savings_plan_net_amortized_upfront_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_net_amortized_upfront_commitment_for_billing_period", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_net_recurring_commitment_for_billing_period": {"name": "infra_stg__aws_billing_report_raw_savings_plan_net_recurring_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_net_recurring_commitment_for_billing_period", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_net_savings_plan_effective_cost": {"name": "infra_stg__aws_billing_report_raw_savings_plan_net_savings_plan_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_net_savings_plan_effective_cost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_offering_type": {"name": "infra_stg__aws_billing_report_raw_savings_plan_offering_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_offering_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_payment_option": {"name": "infra_stg__aws_billing_report_raw_savings_plan_payment_option", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_payment_option", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_purchase_term": {"name": "infra_stg__aws_billing_report_raw_savings_plan_purchase_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_purchase_term", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_recurring_commitment_for_billing_period": {"name": "infra_stg__aws_billing_report_raw_savings_plan_recurring_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_recurring_commitment_for_billing_period", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_region": {"name": "infra_stg__aws_billing_report_raw_savings_plan_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_region", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_savings_plan_a_r_n": {"name": "infra_stg__aws_billing_report_raw_savings_plan_savings_plan_a_r_n", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_savings_plan_a_r_n", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_savings_plan_effective_cost": {"name": "infra_stg__aws_billing_report_raw_savings_plan_savings_plan_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_savings_plan_effective_cost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_savings_plan_rate": {"name": "infra_stg__aws_billing_report_raw_savings_plan_savings_plan_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_savings_plan_rate", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_start_time": {"name": "infra_stg__aws_billing_report_raw_savings_plan_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_start_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_total_commitment_to_date": {"name": "infra_stg__aws_billing_report_raw_savings_plan_total_commitment_to_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_total_commitment_to_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_used_commitment": {"name": "infra_stg__aws_billing_report_raw_savings_plan_used_commitment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_savings_plan_used_commitment", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_billing_report_raw_year": {"name": "infra_stg__aws_billing_report_raw_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_billing_report_raw/infra_stg__aws_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_billing_report_raw_year", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__base_aws_payer_billing_report_raw": {"name": "infra__base_aws_payer_billing_report_raw", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra__base_aws_payer_billing_report_raw", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_bill_type": {"name": "infra_stg__aws_payer_billing_report_raw_bill_bill_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_bill_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_billing_entity": {"name": "infra_stg__aws_payer_billing_report_raw_bill_billing_entity", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_billing_entity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_billing_period_end_date": {"name": "infra_stg__aws_payer_billing_report_raw_bill_billing_period_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_billing_period_end_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_billing_period_start_date": {"name": "infra_stg__aws_payer_billing_report_raw_bill_billing_period_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_billing_period_start_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_invoice_id": {"name": "infra_stg__aws_payer_billing_report_raw_bill_invoice_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_invoice_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_payer_account_id": {"name": "infra_stg__aws_payer_billing_report_raw_bill_payer_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_bill_payer_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_discount_edp_discount": {"name": "infra_stg__aws_payer_billing_report_raw_discount_edp_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_discount_edp_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_discount_private_rate_discount": {"name": "infra_stg__aws_payer_billing_report_raw_discount_private_rate_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_discount_private_rate_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_discount_total_discount": {"name": "infra_stg__aws_payer_billing_report_raw_discount_total_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_discount_total_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_identity_line_item_id": {"name": "infra_stg__aws_payer_billing_report_raw_identity_line_item_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_identity_line_item_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_identity_time_interval": {"name": "infra_stg__aws_payer_billing_report_raw_identity_time_interval", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_identity_time_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_is_managed_by_cast_ai": {"name": "infra_stg__aws_payer_billing_report_raw_is_managed_by_cast_ai", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_is_managed_by_cast_ai", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_availability_zone": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_availability_zone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_blended_cost": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_blended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_blended_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_blended_rate": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_blended_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_blended_rate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_currency_code": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_currency_code", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_currency_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_legal_entity": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_legal_entity", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_legal_entity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_line_item_description": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_line_item_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_line_item_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_line_item_type": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_line_item_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_net_unblended_cost": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_net_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_net_unblended_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_net_unblended_rate": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_net_unblended_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_net_unblended_rate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_normalization_factor": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_normalization_factor", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_normalization_factor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_normalized_usage_amount": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_normalized_usage_amount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_normalized_usage_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_operation": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_operation", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_operation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_product_code": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_product_code", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_product_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_resource_id": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_resource_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_resource_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_tax_type": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_tax_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_tax_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_unblended_cost": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_unblended_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_unblended_rate": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_unblended_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_unblended_rate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_usage_account_id": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_usage_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_usage_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_usage_amount": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_usage_amount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_usage_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_usage_end_date": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_usage_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_usage_end_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_usage_start_date": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_usage_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_usage_start_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_usage_type": {"name": "infra_stg__aws_payer_billing_report_raw_line_item_usage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_line_item_usage_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_month": {"name": "infra_stg__aws_payer_billing_report_raw_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_currency": {"name": "infra_stg__aws_payer_billing_report_raw_pricing_currency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_lease_contract_length": {"name": "infra_stg__aws_payer_billing_report_raw_pricing_lease_contract_length", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_lease_contract_length", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_offering_class": {"name": "infra_stg__aws_payer_billing_report_raw_pricing_offering_class", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_offering_class", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_public_on_demand_cost": {"name": "infra_stg__aws_payer_billing_report_raw_pricing_public_on_demand_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_public_on_demand_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_public_on_demand_rate": {"name": "infra_stg__aws_payer_billing_report_raw_pricing_public_on_demand_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_public_on_demand_rate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_purchase_option": {"name": "infra_stg__aws_payer_billing_report_raw_pricing_purchase_option", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_purchase_option", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_rate_code": {"name": "infra_stg__aws_payer_billing_report_raw_pricing_rate_code", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_rate_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_rate_id": {"name": "infra_stg__aws_payer_billing_report_raw_pricing_rate_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_rate_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_term": {"name": "infra_stg__aws_payer_billing_report_raw_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_unit": {"name": "infra_stg__aws_payer_billing_report_raw_pricing_unit", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_pricing_unit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_alarm_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_alarm_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_alarm_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_availability": {"name": "infra_stg__aws_payer_billing_report_raw_product_availability", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_availability", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_availability_zone": {"name": "infra_stg__aws_payer_billing_report_raw_product_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_availability_zone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_bundle": {"name": "infra_stg__aws_payer_billing_report_raw_product_bundle", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_bundle", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_bundle_description": {"name": "infra_stg__aws_payer_billing_report_raw_product_bundle_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_bundle_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_bundle_group": {"name": "infra_stg__aws_payer_billing_report_raw_product_bundle_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_bundle_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_cache_engine": {"name": "infra_stg__aws_payer_billing_report_raw_product_cache_engine", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_cache_engine", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_capacitystatus": {"name": "infra_stg__aws_payer_billing_report_raw_product_capacitystatus", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_capacitystatus", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_category": {"name": "infra_stg__aws_payer_billing_report_raw_product_category", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_clock_speed": {"name": "infra_stg__aws_payer_billing_report_raw_product_clock_speed", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_clock_speed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_component": {"name": "infra_stg__aws_payer_billing_report_raw_product_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_component", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_compute_family": {"name": "infra_stg__aws_payer_billing_report_raw_product_compute_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_compute_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_compute_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_compute_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_compute_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_concurrencyscalingfreeusage": {"name": "infra_stg__aws_payer_billing_report_raw_product_concurrencyscalingfreeusage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_concurrencyscalingfreeusage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_counts_against_quota": {"name": "infra_stg__aws_payer_billing_report_raw_product_counts_against_quota", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_counts_against_quota", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_cputype": {"name": "infra_stg__aws_payer_billing_report_raw_product_cputype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_cputype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_current_generation": {"name": "infra_stg__aws_payer_billing_report_raw_product_current_generation", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_current_generation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_data": {"name": "infra_stg__aws_payer_billing_report_raw_product_data", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_data_transfer_quota": {"name": "infra_stg__aws_payer_billing_report_raw_product_data_transfer_quota", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_data_transfer_quota", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_database_engine": {"name": "infra_stg__aws_payer_billing_report_raw_product_database_engine", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_database_engine", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_datastore_storagetype": {"name": "infra_stg__aws_payer_billing_report_raw_product_datastore_storagetype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_datastore_storagetype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_dedicated_ebs_throughput": {"name": "infra_stg__aws_payer_billing_report_raw_product_dedicated_ebs_throughput", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_dedicated_ebs_throughput", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_deployment_option": {"name": "infra_stg__aws_payer_billing_report_raw_product_deployment_option", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_deployment_option", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_description": {"name": "infra_stg__aws_payer_billing_report_raw_product_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_durability": {"name": "infra_stg__aws_payer_billing_report_raw_product_durability", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_durability", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_ecu": {"name": "infra_stg__aws_payer_billing_report_raw_product_ecu", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_ecu", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_endpoint": {"name": "infra_stg__aws_payer_billing_report_raw_product_endpoint", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_endpoint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_endpoint_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_endpoint_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_endpoint_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_engine_code": {"name": "infra_stg__aws_payer_billing_report_raw_product_engine_code", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_engine_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_enhanced_networking_supported": {"name": "infra_stg__aws_payer_billing_report_raw_product_enhanced_networking_supported", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_enhanced_networking_supported", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_event_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_event_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_event_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_execution_frequency": {"name": "infra_stg__aws_payer_billing_report_raw_product_execution_frequency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_execution_frequency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_execution_location": {"name": "infra_stg__aws_payer_billing_report_raw_product_execution_location", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_execution_location", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_fee_code": {"name": "infra_stg__aws_payer_billing_report_raw_product_fee_code", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_fee_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_fee_description": {"name": "infra_stg__aws_payer_billing_report_raw_product_fee_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_fee_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_free_overage": {"name": "infra_stg__aws_payer_billing_report_raw_product_free_overage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_free_overage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_frequency_mode": {"name": "infra_stg__aws_payer_billing_report_raw_product_frequency_mode", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_frequency_mode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_from_location": {"name": "infra_stg__aws_payer_billing_report_raw_product_from_location", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_from_location", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_from_location_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_from_location_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_from_location_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_gpu": {"name": "infra_stg__aws_payer_billing_report_raw_product_gpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_gpu", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_gpu_memory": {"name": "infra_stg__aws_payer_billing_report_raw_product_gpu_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_gpu_memory", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_granularity": {"name": "infra_stg__aws_payer_billing_report_raw_product_granularity", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_granularity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_group": {"name": "infra_stg__aws_payer_billing_report_raw_product_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_group_description": {"name": "infra_stg__aws_payer_billing_report_raw_product_group_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_group_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_insightstype": {"name": "infra_stg__aws_payer_billing_report_raw_product_insightstype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_insightstype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_instance_family": {"name": "infra_stg__aws_payer_billing_report_raw_product_instance_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_instance_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_instance_name": {"name": "infra_stg__aws_payer_billing_report_raw_product_instance_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_instance_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_instance_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_instance_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_instance_type_family": {"name": "infra_stg__aws_payer_billing_report_raw_product_instance_type_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_instance_type_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_intel_avx2_available": {"name": "infra_stg__aws_payer_billing_report_raw_product_intel_avx2_available", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_intel_avx2_available", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_intel_avx_available": {"name": "infra_stg__aws_payer_billing_report_raw_product_intel_avx_available", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_intel_avx_available", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_intel_turbo_available": {"name": "infra_stg__aws_payer_billing_report_raw_product_intel_turbo_available", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_intel_turbo_available", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_io": {"name": "infra_stg__aws_payer_billing_report_raw_product_io", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_io", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_license": {"name": "infra_stg__aws_payer_billing_report_raw_product_license", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_license", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_license_model": {"name": "infra_stg__aws_payer_billing_report_raw_product_license_model", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_license_model", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_line": {"name": "infra_stg__aws_payer_billing_report_raw_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_location": {"name": "infra_stg__aws_payer_billing_report_raw_product_location", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_location", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_location_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_location_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_location_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_logs_destination": {"name": "infra_stg__aws_payer_billing_report_raw_product_logs_destination", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_logs_destination", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_max_iops_burst_performance": {"name": "infra_stg__aws_payer_billing_report_raw_product_max_iops_burst_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_max_iops_burst_performance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_max_iopsvolume": {"name": "infra_stg__aws_payer_billing_report_raw_product_max_iopsvolume", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_max_iopsvolume", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_max_throughputvolume": {"name": "infra_stg__aws_payer_billing_report_raw_product_max_throughputvolume", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_max_throughputvolume", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_max_volume_size": {"name": "infra_stg__aws_payer_billing_report_raw_product_max_volume_size", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_max_volume_size", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_maximum_extended_storage": {"name": "infra_stg__aws_payer_billing_report_raw_product_maximum_extended_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_maximum_extended_storage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_memory": {"name": "infra_stg__aws_payer_billing_report_raw_product_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_memory", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_memory_gib": {"name": "infra_stg__aws_payer_billing_report_raw_product_memory_gib", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_memory_gib", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_memorytype": {"name": "infra_stg__aws_payer_billing_report_raw_product_memorytype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_memorytype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_message_delivery_frequency": {"name": "infra_stg__aws_payer_billing_report_raw_product_message_delivery_frequency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_message_delivery_frequency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_message_delivery_order": {"name": "infra_stg__aws_payer_billing_report_raw_product_message_delivery_order", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_message_delivery_order", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_min_volume_size": {"name": "infra_stg__aws_payer_billing_report_raw_product_min_volume_size", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_min_volume_size", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_name": {"name": "infra_stg__aws_payer_billing_report_raw_product_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_network_performance": {"name": "infra_stg__aws_payer_billing_report_raw_product_network_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_network_performance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_normalization_size_factor": {"name": "infra_stg__aws_payer_billing_report_raw_product_normalization_size_factor", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_normalization_size_factor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_operating_system": {"name": "infra_stg__aws_payer_billing_report_raw_product_operating_system", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_operating_system", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_operation": {"name": "infra_stg__aws_payer_billing_report_raw_product_operation", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_operation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_overage_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_overage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_overage_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_physical_cpu": {"name": "infra_stg__aws_payer_billing_report_raw_product_physical_cpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_physical_cpu", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_physical_gpu": {"name": "infra_stg__aws_payer_billing_report_raw_product_physical_gpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_physical_gpu", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_physical_processor": {"name": "infra_stg__aws_payer_billing_report_raw_product_physical_processor", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_physical_processor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_pre_installed_sw": {"name": "infra_stg__aws_payer_billing_report_raw_product_pre_installed_sw", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_pre_installed_sw", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_pricing_unit": {"name": "infra_stg__aws_payer_billing_report_raw_product_pricing_unit", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_pricing_unit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_processor_architecture": {"name": "infra_stg__aws_payer_billing_report_raw_product_processor_architecture", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_processor_architecture", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_processor_features": {"name": "infra_stg__aws_payer_billing_report_raw_product_processor_features", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_processor_features", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_product_family": {"name": "infra_stg__aws_payer_billing_report_raw_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_product_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_product_name": {"name": "infra_stg__aws_payer_billing_report_raw_product_product_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_product_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_purchase_option": {"name": "infra_stg__aws_payer_billing_report_raw_product_purchase_option", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_purchase_option", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_purchaseterm": {"name": "infra_stg__aws_payer_billing_report_raw_product_purchaseterm", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_purchaseterm", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_queue_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_queue_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_queue_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_ratetype": {"name": "infra_stg__aws_payer_billing_report_raw_product_ratetype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_ratetype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_region": {"name": "infra_stg__aws_payer_billing_report_raw_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_request_description": {"name": "infra_stg__aws_payer_billing_report_raw_product_request_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_request_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_request_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_request_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_request_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_resource_endpoint": {"name": "infra_stg__aws_payer_billing_report_raw_product_resource_endpoint", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_resource_endpoint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_resource_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_resource_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_resource_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_rootvolume": {"name": "infra_stg__aws_payer_billing_report_raw_product_rootvolume", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_rootvolume", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_routing_target": {"name": "infra_stg__aws_payer_billing_report_raw_product_routing_target", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_routing_target", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_routing_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_routing_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_routing_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_running_mode": {"name": "infra_stg__aws_payer_billing_report_raw_product_running_mode", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_running_mode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_servicecode": {"name": "infra_stg__aws_payer_billing_report_raw_product_servicecode", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_servicecode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_servicename": {"name": "infra_stg__aws_payer_billing_report_raw_product_servicename", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_servicename", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_sku": {"name": "infra_stg__aws_payer_billing_report_raw_product_sku", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_software_included": {"name": "infra_stg__aws_payer_billing_report_raw_product_software_included", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_software_included", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_software_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_software_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_software_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_standard_storage_retention_included": {"name": "infra_stg__aws_payer_billing_report_raw_product_standard_storage_retention_included", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_standard_storage_retention_included", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_storage": {"name": "infra_stg__aws_payer_billing_report_raw_product_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_storage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_storage_class": {"name": "infra_stg__aws_payer_billing_report_raw_product_storage_class", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_storage_class", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_storage_family": {"name": "infra_stg__aws_payer_billing_report_raw_product_storage_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_storage_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_storage_media": {"name": "infra_stg__aws_payer_billing_report_raw_product_storage_media", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_storage_media", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_storage_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_storage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_storage_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_tenancy": {"name": "infra_stg__aws_payer_billing_report_raw_product_tenancy", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_tenancy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_tiertype": {"name": "infra_stg__aws_payer_billing_report_raw_product_tiertype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_tiertype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_to_location": {"name": "infra_stg__aws_payer_billing_report_raw_product_to_location", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_to_location", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_to_location_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_to_location_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_to_location_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_transfer_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_transfer_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_transfer_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_usage_family": {"name": "infra_stg__aws_payer_billing_report_raw_product_usage_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_usage_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_usagetype": {"name": "infra_stg__aws_payer_billing_report_raw_product_usagetype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_usagetype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_uservolume": {"name": "infra_stg__aws_payer_billing_report_raw_product_uservolume", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_uservolume", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_vcpu": {"name": "infra_stg__aws_payer_billing_report_raw_product_vcpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_vcpu", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_version": {"name": "infra_stg__aws_payer_billing_report_raw_product_version", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_volume_api_name": {"name": "infra_stg__aws_payer_billing_report_raw_product_volume_api_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_volume_api_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_volume_type": {"name": "infra_stg__aws_payer_billing_report_raw_product_volume_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_volume_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_with_active_users": {"name": "infra_stg__aws_payer_billing_report_raw_product_with_active_users", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_product_with_active_users", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_amortized_upfront_cost_for_usage": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_amortized_upfront_cost_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_amortized_upfront_cost_for_usage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_amortized_upfront_fee_for_billing_period": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_effective_cost": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_effective_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_end_time": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_end_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_modification_status": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_modification_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_modification_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_amortized_upfront_cost_for_usage": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_net_amortized_upfront_cost_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_amortized_upfront_cost_for_usage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_amortized_upfront_fee_for_billing_period": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_net_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_effective_cost": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_net_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_effective_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_recurring_fee_for_usage": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_net_recurring_fee_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_recurring_fee_for_usage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_unused_amortized_upfront_fee_for_billing_period": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_net_unused_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_unused_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_unused_recurring_fee": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_net_unused_recurring_fee", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_unused_recurring_fee", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_upfront_value": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_net_upfront_value", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_net_upfront_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_normalized_units_per_reservation": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_normalized_units_per_reservation", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_normalized_units_per_reservation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_number_of_reservations": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_number_of_reservations", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_number_of_reservations", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_recurring_fee_for_usage": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_recurring_fee_for_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_recurring_fee_for_usage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_reservation_a_r_n": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_reservation_a_r_n", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_reservation_a_r_n", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_start_time": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_start_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_subscription_id": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_subscription_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_total_reserved_normalized_units": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_total_reserved_normalized_units", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_total_reserved_normalized_units", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_total_reserved_units": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_total_reserved_units", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_total_reserved_units", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_units_per_reservation": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_units_per_reservation", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_units_per_reservation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_unused_amortized_upfront_fee_for_billing_period": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_unused_amortized_upfront_fee_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_unused_amortized_upfront_fee_for_billing_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_unused_normalized_unit_quantity": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_unused_normalized_unit_quantity", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_unused_normalized_unit_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_unused_quantity": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_unused_quantity", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_unused_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_unused_recurring_fee": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_unused_recurring_fee", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_unused_recurring_fee", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_upfront_value": {"name": "infra_stg__aws_payer_billing_report_raw_reservation_upfront_value", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_reservation_upfront_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_aws_created_by": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_aws_created_by", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_aws_created_by", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_aws_elasticmapreduce_instance_group_role": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_aws_elasticmapreduce_instance_group_role", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_aws_elasticmapreduce_instance_group_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_aws_elasticmapreduce_job_flow_id": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_aws_elasticmapreduce_job_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_aws_elasticmapreduce_job_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_account": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_account", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_asg": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_asg", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_asg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_cast_cluster_id": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_cast_cluster_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_cast_cluster_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_cast_managed_by": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_cast_managed_by", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_cast_managed_by", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_cast_node_id": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_cast_node_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_cast_node_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_castai": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_castai", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_castai", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_cluster_name": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_cluster_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_cluster_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_component": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_component", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_databricks_instance_pool_id": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_databricks_instance_pool_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_databricks_instance_pool_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_docker_compose": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_docker_compose", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_docker_compose", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_environment": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_environment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_environment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_feature": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_feature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_group": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_iac": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_iac", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_iac", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_name": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_product_line": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_repository": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_repository", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_repository", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_service": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_service", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_service", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_sub_componenet": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_sub_componenet", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_sub_componenet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_sub_component": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_sub_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_sub_component", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_team": {"name": "infra_stg__aws_payer_billing_report_raw_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_resource_tags_user_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_amortized_upfront_commitment_for_billing_period": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_amortized_upfront_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_amortized_upfront_commitment_for_billing_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_end_time": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_end_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_instance_type_family": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_instance_type_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_instance_type_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_net_amortized_upfront_commitment_for_billing_period": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_net_amortized_upfront_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_net_amortized_upfront_commitment_for_billing_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_net_recurring_commitment_for_billing_period": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_net_recurring_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_net_recurring_commitment_for_billing_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_net_savings_plan_effective_cost": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_net_savings_plan_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_net_savings_plan_effective_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_offering_type": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_offering_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_offering_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_payment_option": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_payment_option", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_payment_option", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_purchase_term": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_purchase_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_purchase_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_recurring_commitment_for_billing_period": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_recurring_commitment_for_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_recurring_commitment_for_billing_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_region": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_savings_plan_a_r_n": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_savings_plan_a_r_n", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_savings_plan_a_r_n", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_savings_plan_effective_cost": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_savings_plan_effective_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_savings_plan_effective_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_savings_plan_rate": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_savings_plan_rate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_savings_plan_rate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_start_time": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_start_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_total_commitment_to_date": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_total_commitment_to_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_total_commitment_to_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_used_commitment": {"name": "infra_stg__aws_payer_billing_report_raw_savings_plan_used_commitment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_savings_plan_used_commitment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_payer_billing_report_raw_year": {"name": "infra_stg__aws_payer_billing_report_raw_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__aws_payer_billing_report_raw/infra_stg__aws_payer_billing_report_raw.md", "unique_id": "doc.yoda.infra_stg__aws_payer_billing_report_raw_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__budget": {"name": "infra_stg__budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__budget/infra_stg__budget.md", "original_file_path": "models/infra/staging/base/infra_stg__budget/infra_stg__budget.md", "unique_id": "doc.yoda.infra_stg__budget", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__budget_daily": {"name": "infra_stg__budget_daily", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__budget/infra_stg__budget.md", "original_file_path": "models/infra/staging/base/infra_stg__budget/infra_stg__budget.md", "unique_id": "doc.yoda.infra_stg__budget_daily", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__budget_product_line": {"name": "infra_stg__budget_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__budget/infra_stg__budget.md", "original_file_path": "models/infra/staging/base/infra_stg__budget/infra_stg__budget.md", "unique_id": "doc.yoda.infra_stg__budget_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__budget_updated_at": {"name": "infra_stg__budget_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__budget/infra_stg__budget.md", "original_file_path": "models/infra/staging/base/infra_stg__budget/infra_stg__budget.md", "unique_id": "doc.yoda.infra_stg__budget_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__databricks_cost_raw_clustercustomtags": {"name": "infra_stg__databricks_cost_raw_clustercustomtags", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_clustercustomtags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__databricks_cost_raw_clusterid": {"name": "infra_stg__databricks_cost_raw_clusterid", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_clusterid", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__databricks_cost_raw_clustername": {"name": "infra_stg__databricks_cost_raw_clustername", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_clustername", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__databricks_cost_raw_clusternodetype": {"name": "infra_stg__databricks_cost_raw_clusternodetype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_clusternodetype", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__databricks_cost_raw_clusterowneruserid": {"name": "infra_stg__databricks_cost_raw_clusterowneruserid", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_clusterowneruserid", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__databricks_cost_raw_clusterownerusername": {"name": "infra_stg__databricks_cost_raw_clusterownerusername", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_clusterownerusername", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__databricks_cost_raw_dbus": {"name": "infra_stg__databricks_cost_raw_dbus", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_dbus", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__databricks_cost_raw_machinehours": {"name": "infra_stg__databricks_cost_raw_machinehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_machinehours", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__databricks_cost_raw_sku": {"name": "infra_stg__databricks_cost_raw_sku", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_sku", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__databricks_cost_raw_tags": {"name": "infra_stg__databricks_cost_raw_tags", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__databricks_cost_raw_timestamp": {"name": "infra_stg__databricks_cost_raw_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_timestamp", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__databricks_cost_raw_workspaceid": {"name": "infra_stg__databricks_cost_raw_workspaceid", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__databricks_cost_raw/infra_stg__databricks_cost_raw.md", "unique_id": "doc.yoda.infra_stg__databricks_cost_raw_workspaceid", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__group": {"name": "infra_stg__group", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group", "block_contents": "Segment Group Events (partitioned by partition_date)"}, "doc.yoda.infra_stg__group_admin_user_name": {"name": "infra_stg__group_admin_user_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_admin_user_name", "block_contents": ""}, "doc.yoda.infra_stg__group_anonymous_id": {"name": "infra_stg__group_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_anonymous_id", "block_contents": ""}, "doc.yoda.infra_stg__group_app_key": {"name": "infra_stg__group_app_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_app_key", "block_contents": ""}, "doc.yoda.infra_stg__group_auth_0_user_id": {"name": "infra_stg__group_auth_0_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_auth_0_user_id", "block_contents": ""}, "doc.yoda.infra_stg__group_channel": {"name": "infra_stg__group_channel", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_channel", "block_contents": ""}, "doc.yoda.infra_stg__group_group_id": {"name": "infra_stg__group_group_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_group_id", "block_contents": ""}, "doc.yoda.infra_stg__group_is_ht": {"name": "infra_stg__group_is_ht", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_is_ht", "block_contents": ""}, "doc.yoda.infra_stg__group_is_internal_user": {"name": "infra_stg__group_is_internal_user", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_is_internal_user", "block_contents": ""}, "doc.yoda.infra_stg__group_is_loyalty": {"name": "infra_stg__group_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_is_loyalty", "block_contents": ""}, "doc.yoda.infra_stg__group_is_reviews": {"name": "infra_stg__group_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_is_reviews", "block_contents": ""}, "doc.yoda.infra_stg__group_is_sms": {"name": "infra_stg__group_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_is_sms", "block_contents": ""}, "doc.yoda.infra_stg__group_is_vugc": {"name": "infra_stg__group_is_vugc", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_is_vugc", "block_contents": ""}, "doc.yoda.infra_stg__group_library_name": {"name": "infra_stg__group_library_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_library_name", "block_contents": ""}, "doc.yoda.infra_stg__group_locale": {"name": "infra_stg__group_locale", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_locale", "block_contents": ""}, "doc.yoda.infra_stg__group_loyalty_merchant_id": {"name": "infra_stg__group_loyalty_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_loyalty_merchant_id", "block_contents": ""}, "doc.yoda.infra_stg__group_loyalty_package": {"name": "infra_stg__group_loyalty_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_loyalty_package", "block_contents": ""}, "doc.yoda.infra_stg__group_message_id": {"name": "infra_stg__group_message_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_message_id", "block_contents": ""}, "doc.yoda.infra_stg__group_org_billin_providers": {"name": "infra_stg__group_org_billin_providers", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_billin_providers", "block_contents": ""}, "doc.yoda.infra_stg__group_org_created_at": {"name": "infra_stg__group_org_created_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_created_at", "block_contents": ""}, "doc.yoda.infra_stg__group_org_email": {"name": "infra_stg__group_org_email", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_email", "block_contents": ""}, "doc.yoda.infra_stg__group_org_id": {"name": "infra_stg__group_org_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_id", "block_contents": ""}, "doc.yoda.infra_stg__group_org_industry": {"name": "infra_stg__group_org_industry", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_industry", "block_contents": ""}, "doc.yoda.infra_stg__group_org_is_loyalty": {"name": "infra_stg__group_org_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_is_loyalty", "block_contents": ""}, "doc.yoda.infra_stg__group_org_is_reviews": {"name": "infra_stg__group_org_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_is_reviews", "block_contents": ""}, "doc.yoda.infra_stg__group_org_is_sms": {"name": "infra_stg__group_org_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_is_sms", "block_contents": ""}, "doc.yoda.infra_stg__group_org_is_test": {"name": "infra_stg__group_org_is_test", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_is_test", "block_contents": ""}, "doc.yoda.infra_stg__group_org_is_vugc": {"name": "infra_stg__group_org_is_vugc", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_is_vugc", "block_contents": ""}, "doc.yoda.infra_stg__group_org_key": {"name": "infra_stg__group_org_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_key", "block_contents": ""}, "doc.yoda.infra_stg__group_org_loyalty_monthly_price": {"name": "infra_stg__group_org_loyalty_monthly_price", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_loyalty_monthly_price", "block_contents": ""}, "doc.yoda.infra_stg__group_org_loyalty_package": {"name": "infra_stg__group_org_loyalty_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_loyalty_package", "block_contents": ""}, "doc.yoda.infra_stg__group_org_name": {"name": "infra_stg__group_org_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_name", "block_contents": ""}, "doc.yoda.infra_stg__group_org_organization_key": {"name": "infra_stg__group_org_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_organization_key", "block_contents": ""}, "doc.yoda.infra_stg__group_org_package_extensions": {"name": "infra_stg__group_org_package_extensions", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_package_extensions", "block_contents": ""}, "doc.yoda.infra_stg__group_org_reviews_monthly_price": {"name": "infra_stg__group_org_reviews_monthly_price", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_reviews_monthly_price", "block_contents": ""}, "doc.yoda.infra_stg__group_org_reviews_package": {"name": "infra_stg__group_org_reviews_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_reviews_package", "block_contents": ""}, "doc.yoda.infra_stg__group_org_signup_country": {"name": "infra_stg__group_org_signup_country", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_signup_country", "block_contents": ""}, "doc.yoda.infra_stg__group_org_signup_utm_campaign": {"name": "infra_stg__group_org_signup_utm_campaign", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_signup_utm_campaign", "block_contents": ""}, "doc.yoda.infra_stg__group_org_signup_utm_source": {"name": "infra_stg__group_org_signup_utm_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_signup_utm_source", "block_contents": ""}, "doc.yoda.infra_stg__group_org_sms_monthly_price": {"name": "infra_stg__group_org_sms_monthly_price", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_sms_monthly_price", "block_contents": ""}, "doc.yoda.infra_stg__group_org_sms_package": {"name": "infra_stg__group_org_sms_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_sms_package", "block_contents": ""}, "doc.yoda.infra_stg__group_org_store_count": {"name": "infra_stg__group_org_store_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_store_count", "block_contents": ""}, "doc.yoda.infra_stg__group_org_store_limit": {"name": "infra_stg__group_org_store_limit", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_store_limit", "block_contents": ""}, "doc.yoda.infra_stg__group_org_vugc_monthly_price": {"name": "infra_stg__group_org_vugc_monthly_price", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_vugc_monthly_price", "block_contents": ""}, "doc.yoda.infra_stg__group_org_vugc_package": {"name": "infra_stg__group_org_vugc_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_org_vugc_package", "block_contents": ""}, "doc.yoda.infra_stg__group_page_path": {"name": "infra_stg__group_page_path", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_page_path", "block_contents": ""}, "doc.yoda.infra_stg__group_page_referrer": {"name": "infra_stg__group_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_page_referrer", "block_contents": ""}, "doc.yoda.infra_stg__group_page_title": {"name": "infra_stg__group_page_title", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_page_title", "block_contents": ""}, "doc.yoda.infra_stg__group_page_url": {"name": "infra_stg__group_page_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_page_url", "block_contents": ""}, "doc.yoda.infra_stg__group_partition_date": {"name": "infra_stg__group_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_partition_date", "block_contents": ""}, "doc.yoda.infra_stg__group_platform": {"name": "infra_stg__group_platform", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_platform", "block_contents": ""}, "doc.yoda.infra_stg__group_platform_plan": {"name": "infra_stg__group_platform_plan", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_platform_plan", "block_contents": ""}, "doc.yoda.infra_stg__group_platform_version": {"name": "infra_stg__group_platform_version", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_platform_version", "block_contents": ""}, "doc.yoda.infra_stg__group_processing_time": {"name": "infra_stg__group_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_processing_time", "block_contents": ""}, "doc.yoda.infra_stg__group_reviews_package": {"name": "infra_stg__group_reviews_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_reviews_package", "block_contents": ""}, "doc.yoda.infra_stg__group_sms_bump_plan": {"name": "infra_stg__group_sms_bump_plan", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_sms_bump_plan", "block_contents": ""}, "doc.yoda.infra_stg__group_sms_package": {"name": "infra_stg__group_sms_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_sms_package", "block_contents": ""}, "doc.yoda.infra_stg__group_sms_user_id": {"name": "infra_stg__group_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_sms_user_id", "block_contents": ""}, "doc.yoda.infra_stg__group_store_app_key": {"name": "infra_stg__group_store_app_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_app_key", "block_contents": ""}, "doc.yoda.infra_stg__group_store_created_at": {"name": "infra_stg__group_store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_created_at", "block_contents": ""}, "doc.yoda.infra_stg__group_store_domain": {"name": "infra_stg__group_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_domain", "block_contents": ""}, "doc.yoda.infra_stg__group_store_id": {"name": "infra_stg__group_store_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_id", "block_contents": ""}, "doc.yoda.infra_stg__group_store_is_test": {"name": "infra_stg__group_store_is_test", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_is_test", "block_contents": ""}, "doc.yoda.infra_stg__group_store_loyalty_merchant_id": {"name": "infra_stg__group_store_loyalty_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_loyalty_merchant_id", "block_contents": ""}, "doc.yoda.infra_stg__group_store_name": {"name": "infra_stg__group_store_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_name", "block_contents": ""}, "doc.yoda.infra_stg__group_store_org_id": {"name": "infra_stg__group_store_org_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_org_id", "block_contents": ""}, "doc.yoda.infra_stg__group_store_org_key": {"name": "infra_stg__group_store_org_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_org_key", "block_contents": ""}, "doc.yoda.infra_stg__group_store_platform": {"name": "infra_stg__group_store_platform", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_platform", "block_contents": ""}, "doc.yoda.infra_stg__group_store_platform_domain": {"name": "infra_stg__group_store_platform_domain", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_platform_domain", "block_contents": ""}, "doc.yoda.infra_stg__group_store_platform_plan": {"name": "infra_stg__group_store_platform_plan", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_platform_plan", "block_contents": ""}, "doc.yoda.infra_stg__group_store_reviews_is_valid_platform_credentials": {"name": "infra_stg__group_store_reviews_is_valid_platform_credentials", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_reviews_is_valid_platform_credentials", "block_contents": ""}, "doc.yoda.infra_stg__group_store_sms_user_id": {"name": "infra_stg__group_store_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_sms_user_id", "block_contents": ""}, "doc.yoda.infra_stg__group_store_users_count": {"name": "infra_stg__group_store_users_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_users_count", "block_contents": ""}, "doc.yoda.infra_stg__group_store_users_limit": {"name": "infra_stg__group_store_users_limit", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_store_users_limit", "block_contents": ""}, "doc.yoda.infra_stg__group_timestamp": {"name": "infra_stg__group_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_timestamp", "block_contents": ""}, "doc.yoda.infra_stg__group_upsolver_schema_version": {"name": "infra_stg__group_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_upsolver_schema_version", "block_contents": ""}, "doc.yoda.infra_stg__group_user_id": {"name": "infra_stg__group_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_user_id", "block_contents": ""}, "doc.yoda.infra_stg__group_vugc_package": {"name": "infra_stg__group_vugc_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__group/infra_stg__group.md", "original_file_path": "models/infra/staging/base/infra_stg__group/infra_stg__group.md", "unique_id": "doc.yoda.infra_stg__group_vugc_package", "block_contents": ""}, "doc.yoda.infra_stg__identify": {"name": "infra_stg__identify", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify", "block_contents": "Segment Identify Events (partitioned by partition_date)"}, "doc.yoda.infra_stg__identify_admin_user_name": {"name": "infra_stg__identify_admin_user_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_admin_user_name", "block_contents": ""}, "doc.yoda.infra_stg__identify_anonymous_id": {"name": "infra_stg__identify_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_anonymous_id", "block_contents": ""}, "doc.yoda.infra_stg__identify_app_key": {"name": "infra_stg__identify_app_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_app_key", "block_contents": ""}, "doc.yoda.infra_stg__identify_auth_0_user_id": {"name": "infra_stg__identify_auth_0_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_auth_0_user_id", "block_contents": ""}, "doc.yoda.infra_stg__identify_is_ht": {"name": "infra_stg__identify_is_ht", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_is_ht", "block_contents": ""}, "doc.yoda.infra_stg__identify_is_internal_user": {"name": "infra_stg__identify_is_internal_user", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_is_internal_user", "block_contents": ""}, "doc.yoda.infra_stg__identify_is_loyalty": {"name": "infra_stg__identify_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_is_loyalty", "block_contents": ""}, "doc.yoda.infra_stg__identify_is_reviews": {"name": "infra_stg__identify_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_is_reviews", "block_contents": ""}, "doc.yoda.infra_stg__identify_is_sms": {"name": "infra_stg__identify_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_is_sms", "block_contents": ""}, "doc.yoda.infra_stg__identify_is_vugc": {"name": "infra_stg__identify_is_vugc", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_is_vugc", "block_contents": ""}, "doc.yoda.infra_stg__identify_loyalty_merchant_id": {"name": "infra_stg__identify_loyalty_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_loyalty_merchant_id", "block_contents": ""}, "doc.yoda.infra_stg__identify_loyalty_package": {"name": "infra_stg__identify_loyalty_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_loyalty_package", "block_contents": ""}, "doc.yoda.infra_stg__identify_message_id": {"name": "infra_stg__identify_message_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_message_id", "block_contents": ""}, "doc.yoda.infra_stg__identify_org_id": {"name": "infra_stg__identify_org_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_org_id", "block_contents": ""}, "doc.yoda.infra_stg__identify_org_key": {"name": "infra_stg__identify_org_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_org_key", "block_contents": ""}, "doc.yoda.infra_stg__identify_page_path": {"name": "infra_stg__identify_page_path", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_page_path", "block_contents": ""}, "doc.yoda.infra_stg__identify_page_referrer": {"name": "infra_stg__identify_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_page_referrer", "block_contents": ""}, "doc.yoda.infra_stg__identify_page_title": {"name": "infra_stg__identify_page_title", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_page_title", "block_contents": ""}, "doc.yoda.infra_stg__identify_page_url": {"name": "infra_stg__identify_page_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_page_url", "block_contents": ""}, "doc.yoda.infra_stg__identify_partition_date": {"name": "infra_stg__identify_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_partition_date", "block_contents": ""}, "doc.yoda.infra_stg__identify_platform": {"name": "infra_stg__identify_platform", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_platform", "block_contents": ""}, "doc.yoda.infra_stg__identify_platform_plan": {"name": "infra_stg__identify_platform_plan", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_platform_plan", "block_contents": ""}, "doc.yoda.infra_stg__identify_platform_version": {"name": "infra_stg__identify_platform_version", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_platform_version", "block_contents": ""}, "doc.yoda.infra_stg__identify_processing_time": {"name": "infra_stg__identify_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_processing_time", "block_contents": ""}, "doc.yoda.infra_stg__identify_reviews_package": {"name": "infra_stg__identify_reviews_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_reviews_package", "block_contents": ""}, "doc.yoda.infra_stg__identify_sms_package": {"name": "infra_stg__identify_sms_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_sms_package", "block_contents": ""}, "doc.yoda.infra_stg__identify_sms_user_id": {"name": "infra_stg__identify_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_sms_user_id", "block_contents": ""}, "doc.yoda.infra_stg__identify_store_domain": {"name": "infra_stg__identify_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_store_domain", "block_contents": ""}, "doc.yoda.infra_stg__identify_store_id": {"name": "infra_stg__identify_store_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_store_id", "block_contents": ""}, "doc.yoda.infra_stg__identify_store_platform_domain": {"name": "infra_stg__identify_store_platform_domain", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_store_platform_domain", "block_contents": ""}, "doc.yoda.infra_stg__identify_timestamp": {"name": "infra_stg__identify_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_timestamp", "block_contents": ""}, "doc.yoda.infra_stg__identify_upsolver_schema_version": {"name": "infra_stg__identify_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_upsolver_schema_version", "block_contents": ""}, "doc.yoda.infra_stg__identify_user_app_key": {"name": "infra_stg__identify_user_app_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_user_app_key", "block_contents": ""}, "doc.yoda.infra_stg__identify_user_created_at": {"name": "infra_stg__identify_user_created_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_user_created_at", "block_contents": ""}, "doc.yoda.infra_stg__identify_user_email": {"name": "infra_stg__identify_user_email", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_user_email", "block_contents": ""}, "doc.yoda.infra_stg__identify_user_id": {"name": "infra_stg__identify_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_user_id", "block_contents": ""}, "doc.yoda.infra_stg__identify_user_is_admin": {"name": "infra_stg__identify_user_is_admin", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_user_is_admin", "block_contents": ""}, "doc.yoda.infra_stg__identify_user_is_test": {"name": "infra_stg__identify_user_is_test", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_user_is_test", "block_contents": ""}, "doc.yoda.infra_stg__identify_user_org_id": {"name": "infra_stg__identify_user_org_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_user_org_id", "block_contents": ""}, "doc.yoda.infra_stg__identify_user_org_key": {"name": "infra_stg__identify_user_org_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_user_org_key", "block_contents": ""}, "doc.yoda.infra_stg__identify_user_phone": {"name": "infra_stg__identify_user_phone", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_user_phone", "block_contents": ""}, "doc.yoda.infra_stg__identify_user_role": {"name": "infra_stg__identify_user_role", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_user_role", "block_contents": ""}, "doc.yoda.infra_stg__identify_user_store_id": {"name": "infra_stg__identify_user_store_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_user_store_id", "block_contents": ""}, "doc.yoda.infra_stg__identify_vugc_package": {"name": "infra_stg__identify_vugc_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__identify/infra_stg__identify.md", "original_file_path": "models/infra/staging/base/infra_stg__identify/infra_stg__identify.md", "unique_id": "doc.yoda.infra_stg__identify_vugc_package", "block_contents": ""}, "doc.yoda.infra_stg__incidents": {"name": "infra_stg__incidents", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__incidents_acknowledged": {"name": "infra_stg__incidents_acknowledged", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_acknowledged", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_actions": {"name": "infra_stg__incidents_actions", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_actions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_alias": {"name": "infra_stg__incidents_alias", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_alias", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_count": {"name": "infra_stg__incidents_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_created_at": {"name": "infra_stg__incidents_created_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_description": {"name": "infra_stg__incidents_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_extra_properties": {"name": "infra_stg__incidents_extra_properties", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_extra_properties", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_id": {"name": "infra_stg__incidents_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_impact_end_date": {"name": "infra_stg__incidents_impact_end_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_impact_end_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_impact_start_date": {"name": "infra_stg__incidents_impact_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_impact_start_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_impacted_services": {"name": "infra_stg__incidents_impacted_services", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_impacted_services", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_integration": {"name": "infra_stg__incidents_integration", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_integration", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_is_seen": {"name": "infra_stg__incidents_is_seen", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_is_seen", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_last_occured_at": {"name": "infra_stg__incidents_last_occured_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_last_occured_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_links": {"name": "infra_stg__incidents_links", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_links", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_message": {"name": "infra_stg__incidents_message", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_owner": {"name": "infra_stg__incidents_owner", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_owner", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_owner_team": {"name": "infra_stg__incidents_owner_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_owner_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_owner_team_id": {"name": "infra_stg__incidents_owner_team_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_owner_team_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_priority": {"name": "infra_stg__incidents_priority", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_priority", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_report": {"name": "infra_stg__incidents_report", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_report", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_responders": {"name": "infra_stg__incidents_responders", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_responders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_seen": {"name": "infra_stg__incidents_seen", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_seen", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_snoozed": {"name": "infra_stg__incidents_snoozed", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_snoozed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_source": {"name": "infra_stg__incidents_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_status": {"name": "infra_stg__incidents_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_tags": {"name": "infra_stg__incidents_tags", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_tags", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_teams": {"name": "infra_stg__incidents_teams", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_teams", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_tiny_id": {"name": "infra_stg__incidents_tiny_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_tiny_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__incidents_updated_at": {"name": "infra_stg__incidents_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "original_file_path": "models/infra/staging/base/infra_stg__incidents/infra_stg__incidents.md", "unique_id": "doc.yoda.infra_stg__incidents_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__infra_metrics": {"name": "infra_stg__infra_metrics", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "unique_id": "doc.yoda.infra_stg__infra_metrics", "block_contents": "A table that exposes raw infra metrics"}, "doc.yoda.infra_stg__infra_metrics_component": {"name": "infra_stg__infra_metrics_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "unique_id": "doc.yoda.infra_stg__infra_metrics_component", "block_contents": "the component this metric refers to (i.e git repo name)"}, "doc.yoda.infra_stg__infra_metrics_custom_properties": {"name": "infra_stg__infra_metrics_custom_properties", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "unique_id": "doc.yoda.infra_stg__infra_metrics_custom_properties", "block_contents": "any custom porerties in addition to the key value of the metrics"}, "doc.yoda.infra_stg__infra_metrics_key": {"name": "infra_stg__infra_metrics_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "unique_id": "doc.yoda.infra_stg__infra_metrics_key", "block_contents": "metric key"}, "doc.yoda.infra_stg__infra_metrics_product_line": {"name": "infra_stg__infra_metrics_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "unique_id": "doc.yoda.infra_stg__infra_metrics_product_line", "block_contents": "metric value"}, "doc.yoda.infra_stg__infra_metrics_source": {"name": "infra_stg__infra_metrics_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "unique_id": "doc.yoda.infra_stg__infra_metrics_source", "block_contents": "the source of the metric (i.e github)"}, "doc.yoda.infra_stg__infra_metrics_ts": {"name": "infra_stg__infra_metrics_ts", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "unique_id": "doc.yoda.infra_stg__infra_metrics_ts", "block_contents": "the timestamp the metric was taken"}, "doc.yoda.infra_stg__infra_metrics_value": {"name": "infra_stg__infra_metrics_value", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "original_file_path": "models/infra/staging/base/infra_stg__infra_metrics/infra_stg__infra_metrics.md", "unique_id": "doc.yoda.infra_stg__infra_metrics_value", "block_contents": "the metric's value"}, "doc.yoda.infra_stg__kubecost_delta": {"name": "infra_stg__kubecost_delta", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_delta_cpuCoreHours": {"name": "infra_stg__kubecost_delta_cpuCoreHours", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_cpuCoreHours", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_cpuCoreRequestAverage": {"name": "infra_stg__kubecost_delta_cpuCoreRequestAverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_cpuCoreRequestAverage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_cpuCoreUsageAverage": {"name": "infra_stg__kubecost_delta_cpuCoreUsageAverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_cpuCoreUsageAverage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_cpuCores": {"name": "infra_stg__kubecost_delta_cpuCores", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_cpuCores", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_cpuCost": {"name": "infra_stg__kubecost_delta_cpuCost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_cpuCost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_cpuCostAdjustment": {"name": "infra_stg__kubecost_delta_cpuCostAdjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_cpuCostAdjustment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_cpuEfficiency": {"name": "infra_stg__kubecost_delta_cpuEfficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_cpuEfficiency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_day": {"name": "infra_stg__kubecost_delta_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_end": {"name": "infra_stg__kubecost_delta_end", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_end", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_externalCost": {"name": "infra_stg__kubecost_delta_externalCost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_externalCost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_gpuCost": {"name": "infra_stg__kubecost_delta_gpuCost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_gpuCost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_gpuCostAdjustment": {"name": "infra_stg__kubecost_delta_gpuCostAdjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_gpuCostAdjustment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_gpuCount": {"name": "infra_stg__kubecost_delta_gpuCount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_gpuCount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_gpuHours": {"name": "infra_stg__kubecost_delta_gpuHours", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_gpuHours", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_loadBalancerCost": {"name": "infra_stg__kubecost_delta_loadBalancerCost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_loadBalancerCost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_loadBalancerCostAdjustment": {"name": "infra_stg__kubecost_delta_loadBalancerCostAdjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_loadBalancerCostAdjustment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_minutes": {"name": "infra_stg__kubecost_delta_minutes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_minutes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_month": {"name": "infra_stg__kubecost_delta_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_name": {"name": "infra_stg__kubecost_delta_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_networkCost": {"name": "infra_stg__kubecost_delta_networkCost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_networkCost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_networkCostAdjustment": {"name": "infra_stg__kubecost_delta_networkCostAdjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_networkCostAdjustment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_networkReceiveBytes": {"name": "infra_stg__kubecost_delta_networkReceiveBytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_networkReceiveBytes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_networkTransferBytes": {"name": "infra_stg__kubecost_delta_networkTransferBytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_networkTransferBytes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_properties": {"name": "infra_stg__kubecost_delta_properties", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_properties", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_pvByteHours": {"name": "infra_stg__kubecost_delta_pvByteHours", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_pvByteHours", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_pvBytes": {"name": "infra_stg__kubecost_delta_pvBytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_pvBytes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_pvCost": {"name": "infra_stg__kubecost_delta_pvCost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_pvCost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_pvCostAdjustment": {"name": "infra_stg__kubecost_delta_pvCostAdjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_pvCostAdjustment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_pvs": {"name": "infra_stg__kubecost_delta_pvs", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_pvs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_ramByteHours": {"name": "infra_stg__kubecost_delta_ramByteHours", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_ramByteHours", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_ramByteRequestAverage": {"name": "infra_stg__kubecost_delta_ramByteRequestAverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_ramByteRequestAverage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_ramByteUsageAverage": {"name": "infra_stg__kubecost_delta_ramByteUsageAverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_ramByteUsageAverage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_ramBytes": {"name": "infra_stg__kubecost_delta_ramBytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_ramBytes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_ramCost": {"name": "infra_stg__kubecost_delta_ramCost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_ramCost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_ramCostAdjustment": {"name": "infra_stg__kubecost_delta_ramCostAdjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_ramCostAdjustment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_ramEfficiency": {"name": "infra_stg__kubecost_delta_ramEfficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_ramEfficiency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_rawAllocationOnly": {"name": "infra_stg__kubecost_delta_rawAllocationOnly", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_rawAllocationOnly", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_sharedCost": {"name": "infra_stg__kubecost_delta_sharedCost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_sharedCost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_start": {"name": "infra_stg__kubecost_delta_start", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_start", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_totalCost": {"name": "infra_stg__kubecost_delta_totalCost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_totalCost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_totalEfficiency": {"name": "infra_stg__kubecost_delta_totalEfficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_totalEfficiency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_window": {"name": "infra_stg__kubecost_delta_window", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_window", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_delta_year": {"name": "infra_stg__kubecost_delta_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_delta/infra_stg__kubecost_delta.md", "unique_id": "doc.yoda.infra_stg__kubecost_delta_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubecost_raw_cpucorehours": {"name": "infra_stg__kubecost_raw_cpucorehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_cpucorehours", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_cpucorerequestaverage": {"name": "infra_stg__kubecost_raw_cpucorerequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_cpucorerequestaverage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_cpucores": {"name": "infra_stg__kubecost_raw_cpucores", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_cpucores", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_cpucoreusageaverage": {"name": "infra_stg__kubecost_raw_cpucoreusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_cpucoreusageaverage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_cpucost": {"name": "infra_stg__kubecost_raw_cpucost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_cpucost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_cpucostadjustment": {"name": "infra_stg__kubecost_raw_cpucostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_cpucostadjustment", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_cpuefficiency": {"name": "infra_stg__kubecost_raw_cpuefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_cpuefficiency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_day": {"name": "infra_stg__kubecost_raw_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_day", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_end": {"name": "infra_stg__kubecost_raw_end", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_end", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_externalcost": {"name": "infra_stg__kubecost_raw_externalcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_externalcost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_gpucost": {"name": "infra_stg__kubecost_raw_gpucost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_gpucost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_gpucostadjustment": {"name": "infra_stg__kubecost_raw_gpucostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_gpucostadjustment", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_gpucount": {"name": "infra_stg__kubecost_raw_gpucount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_gpucount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_gpuhours": {"name": "infra_stg__kubecost_raw_gpuhours", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_gpuhours", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_loadbalancercost": {"name": "infra_stg__kubecost_raw_loadbalancercost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_loadbalancercost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_loadbalancercostadjustment": {"name": "infra_stg__kubecost_raw_loadbalancercostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_loadbalancercostadjustment", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_minutes": {"name": "infra_stg__kubecost_raw_minutes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_minutes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_month": {"name": "infra_stg__kubecost_raw_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_month", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_name": {"name": "infra_stg__kubecost_raw_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_networkcost": {"name": "infra_stg__kubecost_raw_networkcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_networkcost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_networkcostadjustment": {"name": "infra_stg__kubecost_raw_networkcostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_networkcostadjustment", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_networkreceivebytes": {"name": "infra_stg__kubecost_raw_networkreceivebytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_networkreceivebytes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_networktransferbytes": {"name": "infra_stg__kubecost_raw_networktransferbytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_networktransferbytes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_properties": {"name": "infra_stg__kubecost_raw_properties", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_properties", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_pvbytehours": {"name": "infra_stg__kubecost_raw_pvbytehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_pvbytehours", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_pvbytes": {"name": "infra_stg__kubecost_raw_pvbytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_pvbytes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_pvcost": {"name": "infra_stg__kubecost_raw_pvcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_pvcost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_pvcostadjustment": {"name": "infra_stg__kubecost_raw_pvcostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_pvcostadjustment", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_pvs": {"name": "infra_stg__kubecost_raw_pvs", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_pvs", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_rambytehours": {"name": "infra_stg__kubecost_raw_rambytehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_rambytehours", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_rambyterequestaverage": {"name": "infra_stg__kubecost_raw_rambyterequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_rambyterequestaverage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_rambytes": {"name": "infra_stg__kubecost_raw_rambytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_rambytes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_rambyteusageaverage": {"name": "infra_stg__kubecost_raw_rambyteusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_rambyteusageaverage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_ramcost": {"name": "infra_stg__kubecost_raw_ramcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_ramcost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_ramcostadjustment": {"name": "infra_stg__kubecost_raw_ramcostadjustment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_ramcostadjustment", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_ramefficiency": {"name": "infra_stg__kubecost_raw_ramefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_ramefficiency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_rawallocationonly": {"name": "infra_stg__kubecost_raw_rawallocationonly", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_rawallocationonly", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_sharedcost": {"name": "infra_stg__kubecost_raw_sharedcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_sharedcost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_start": {"name": "infra_stg__kubecost_raw_start", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_start", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_totalcost": {"name": "infra_stg__kubecost_raw_totalcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_totalcost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_totalefficiency": {"name": "infra_stg__kubecost_raw_totalefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_totalefficiency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_window": {"name": "infra_stg__kubecost_raw_window", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_window", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubecost_raw_year": {"name": "infra_stg__kubecost_raw_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__kubecost_raw/infra_stg__kubecost_raw.md", "unique_id": "doc.yoda.infra_stg__kubecost_raw_year", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__page": {"name": "infra_stg__page", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page", "block_contents": "Segment Page Events (partitioned by partition_date)"}, "doc.yoda.infra_stg__page_admin_user_name": {"name": "infra_stg__page_admin_user_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_admin_user_name", "block_contents": ""}, "doc.yoda.infra_stg__page_anonymous_id": {"name": "infra_stg__page_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_anonymous_id", "block_contents": ""}, "doc.yoda.infra_stg__page_app_key": {"name": "infra_stg__page_app_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_app_key", "block_contents": ""}, "doc.yoda.infra_stg__page_auth_0_user_id": {"name": "infra_stg__page_auth_0_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_auth_0_user_id", "block_contents": ""}, "doc.yoda.infra_stg__page_campaign_content": {"name": "infra_stg__page_campaign_content", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_campaign_content", "block_contents": ""}, "doc.yoda.infra_stg__page_campaign_medium": {"name": "infra_stg__page_campaign_medium", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_campaign_medium", "block_contents": ""}, "doc.yoda.infra_stg__page_campaign_source": {"name": "infra_stg__page_campaign_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_campaign_source", "block_contents": ""}, "doc.yoda.infra_stg__page_channel": {"name": "infra_stg__page_channel", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_channel", "block_contents": ""}, "doc.yoda.infra_stg__page_is_desktop": {"name": "infra_stg__page_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_is_desktop", "block_contents": ""}, "doc.yoda.infra_stg__page_is_ht": {"name": "infra_stg__page_is_ht", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_is_ht", "block_contents": ""}, "doc.yoda.infra_stg__page_is_internal_user": {"name": "infra_stg__page_is_internal_user", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_is_internal_user", "block_contents": ""}, "doc.yoda.infra_stg__page_is_loyalty": {"name": "infra_stg__page_is_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_is_loyalty", "block_contents": ""}, "doc.yoda.infra_stg__page_is_mobile": {"name": "infra_stg__page_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_is_mobile", "block_contents": ""}, "doc.yoda.infra_stg__page_is_reviews": {"name": "infra_stg__page_is_reviews", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_is_reviews", "block_contents": ""}, "doc.yoda.infra_stg__page_is_sms": {"name": "infra_stg__page_is_sms", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_is_sms", "block_contents": ""}, "doc.yoda.infra_stg__page_is_tablet": {"name": "infra_stg__page_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_is_tablet", "block_contents": ""}, "doc.yoda.infra_stg__page_is_vugc": {"name": "infra_stg__page_is_vugc", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_is_vugc", "block_contents": ""}, "doc.yoda.infra_stg__page_library_name": {"name": "infra_stg__page_library_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_library_name", "block_contents": ""}, "doc.yoda.infra_stg__page_locale": {"name": "infra_stg__page_locale", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_locale", "block_contents": ""}, "doc.yoda.infra_stg__page_loyalty_merchant_id": {"name": "infra_stg__page_loyalty_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_loyalty_merchant_id", "block_contents": ""}, "doc.yoda.infra_stg__page_loyalty_package": {"name": "infra_stg__page_loyalty_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_loyalty_package", "block_contents": ""}, "doc.yoda.infra_stg__page_message_id": {"name": "infra_stg__page_message_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_message_id", "block_contents": ""}, "doc.yoda.infra_stg__page_name": {"name": "infra_stg__page_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_name", "block_contents": ""}, "doc.yoda.infra_stg__page_org_id": {"name": "infra_stg__page_org_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_org_id", "block_contents": ""}, "doc.yoda.infra_stg__page_org_key": {"name": "infra_stg__page_org_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_org_key", "block_contents": ""}, "doc.yoda.infra_stg__page_original_referrer": {"name": "infra_stg__page_original_referrer", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_original_referrer", "block_contents": ""}, "doc.yoda.infra_stg__page_page_context": {"name": "infra_stg__page_page_context", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_page_context", "block_contents": ""}, "doc.yoda.infra_stg__page_page_name": {"name": "infra_stg__page_page_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_page_name", "block_contents": ""}, "doc.yoda.infra_stg__page_page_path": {"name": "infra_stg__page_page_path", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_page_path", "block_contents": ""}, "doc.yoda.infra_stg__page_page_referrer": {"name": "infra_stg__page_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_page_referrer", "block_contents": ""}, "doc.yoda.infra_stg__page_page_search": {"name": "infra_stg__page_page_search", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_page_search", "block_contents": ""}, "doc.yoda.infra_stg__page_page_sub_context": {"name": "infra_stg__page_page_sub_context", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_page_sub_context", "block_contents": ""}, "doc.yoda.infra_stg__page_page_title": {"name": "infra_stg__page_page_title", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_page_title", "block_contents": ""}, "doc.yoda.infra_stg__page_page_url": {"name": "infra_stg__page_page_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_page_url", "block_contents": ""}, "doc.yoda.infra_stg__page_partition_date": {"name": "infra_stg__page_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_partition_date", "block_contents": ""}, "doc.yoda.infra_stg__page_platform": {"name": "infra_stg__page_platform", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_platform", "block_contents": ""}, "doc.yoda.infra_stg__page_platform_plan": {"name": "infra_stg__page_platform_plan", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_platform_plan", "block_contents": ""}, "doc.yoda.infra_stg__page_platform_version": {"name": "infra_stg__page_platform_version", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_platform_version", "block_contents": ""}, "doc.yoda.infra_stg__page_processing_time": {"name": "infra_stg__page_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_processing_time", "block_contents": ""}, "doc.yoda.infra_stg__page_product": {"name": "infra_stg__page_product", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_product", "block_contents": ""}, "doc.yoda.infra_stg__page_reviews_package": {"name": "infra_stg__page_reviews_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_reviews_package", "block_contents": ""}, "doc.yoda.infra_stg__page_session_id": {"name": "infra_stg__page_session_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_session_id", "block_contents": ""}, "doc.yoda.infra_stg__page_sms_package": {"name": "infra_stg__page_sms_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_sms_package", "block_contents": ""}, "doc.yoda.infra_stg__page_sms_user_id": {"name": "infra_stg__page_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_sms_user_id", "block_contents": ""}, "doc.yoda.infra_stg__page_state": {"name": "infra_stg__page_state", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_state", "block_contents": ""}, "doc.yoda.infra_stg__page_store_domain": {"name": "infra_stg__page_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_store_domain", "block_contents": ""}, "doc.yoda.infra_stg__page_store_id": {"name": "infra_stg__page_store_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_store_id", "block_contents": ""}, "doc.yoda.infra_stg__page_store_platform_domain": {"name": "infra_stg__page_store_platform_domain", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_store_platform_domain", "block_contents": ""}, "doc.yoda.infra_stg__page_tab_name": {"name": "infra_stg__page_tab_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_tab_name", "block_contents": ""}, "doc.yoda.infra_stg__page_timestamp": {"name": "infra_stg__page_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_timestamp", "block_contents": ""}, "doc.yoda.infra_stg__page_upsolver_schema_version": {"name": "infra_stg__page_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_upsolver_schema_version", "block_contents": ""}, "doc.yoda.infra_stg__page_user_id": {"name": "infra_stg__page_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_user_id", "block_contents": ""}, "doc.yoda.infra_stg__page_violated_event": {"name": "infra_stg__page_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_violated_event", "block_contents": ""}, "doc.yoda.infra_stg__page_vugc_package": {"name": "infra_stg__page_vugc_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page/infra_stg__page.md", "original_file_path": "models/infra/staging/base/infra_stg__page/infra_stg__page.md", "unique_id": "doc.yoda.infra_stg__page_vugc_package", "block_contents": ""}, "doc.yoda.infra_stg__page_track": {"name": "infra_stg__page_track", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track", "block_contents": "Segment Track Events, partitioned by partition_date. There are multiple views for each track event registed in Segment (with it's dedicated schema)."}, "doc.yoda.infra_stg__page_track_accountid": {"name": "infra_stg__page_track_accountid", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_accountid", "block_contents": ""}, "doc.yoda.infra_stg__page_track_admin": {"name": "infra_stg__page_track_admin", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_admin", "block_contents": ""}, "doc.yoda.infra_stg__page_track_adminname": {"name": "infra_stg__page_track_adminname", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_adminname", "block_contents": ""}, "doc.yoda.infra_stg__page_track_anonymous_id": {"name": "infra_stg__page_track_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_anonymous_id", "block_contents": ""}, "doc.yoda.infra_stg__page_track_appkey": {"name": "infra_stg__page_track_appkey", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_appkey", "block_contents": ""}, "doc.yoda.infra_stg__page_track_billingprovider": {"name": "infra_stg__page_track_billingprovider", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_billingprovider", "block_contents": ""}, "doc.yoda.infra_stg__page_track_billingproviders": {"name": "infra_stg__page_track_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_billingproviders", "block_contents": ""}, "doc.yoda.infra_stg__page_track_channel": {"name": "infra_stg__page_track_channel", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_channel", "block_contents": ""}, "doc.yoda.infra_stg__page_track_chargeid": {"name": "infra_stg__page_track_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_chargeid", "block_contents": ""}, "doc.yoda.infra_stg__page_track_chargeprice": {"name": "infra_stg__page_track_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_chargeprice", "block_contents": ""}, "doc.yoda.infra_stg__page_track_chargifybalance": {"name": "infra_stg__page_track_chargifybalance", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_chargifybalance", "block_contents": ""}, "doc.yoda.infra_stg__page_track_chargifyrevenue": {"name": "infra_stg__page_track_chargifyrevenue", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_chargifyrevenue", "block_contents": ""}, "doc.yoda.infra_stg__page_track_createdat": {"name": "infra_stg__page_track_createdat", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_createdat", "block_contents": ""}, "doc.yoda.infra_stg__page_track_creditcardlast4digits": {"name": "infra_stg__page_track_creditcardlast4digits", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_creditcardlast4digits", "block_contents": ""}, "doc.yoda.infra_stg__page_track_creditcardtype": {"name": "infra_stg__page_track_creditcardtype", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_creditcardtype", "block_contents": ""}, "doc.yoda.infra_stg__page_track_daysindunning": {"name": "infra_stg__page_track_daysindunning", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_daysindunning", "block_contents": ""}, "doc.yoda.infra_stg__page_track_daysinvalidfacebooktoken": {"name": "infra_stg__page_track_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_daysinvalidfacebooktoken", "block_contents": ""}, "doc.yoda.infra_stg__page_track_daysinvalidpinteresttoken": {"name": "infra_stg__page_track_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_daysinvalidpinteresttoken", "block_contents": ""}, "doc.yoda.infra_stg__page_track_daysinvalidtwittertoken": {"name": "infra_stg__page_track_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_daysinvalidtwittertoken", "block_contents": ""}, "doc.yoda.infra_stg__page_track_daystorenewal": {"name": "infra_stg__page_track_daystorenewal", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_daystorenewal", "block_contents": ""}, "doc.yoda.infra_stg__page_track_email": {"name": "infra_stg__page_track_email", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_email", "block_contents": ""}, "doc.yoda.infra_stg__page_track_event_name": {"name": "infra_stg__page_track_event_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_event_name", "block_contents": ""}, "doc.yoda.infra_stg__page_track_groupid": {"name": "infra_stg__page_track_groupid", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_groupid", "block_contents": ""}, "doc.yoda.infra_stg__page_track_intercomuserhash": {"name": "infra_stg__page_track_intercomuserhash", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_intercomuserhash", "block_contents": ""}, "doc.yoda.infra_stg__page_track_is_desktop": {"name": "infra_stg__page_track_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_is_desktop", "block_contents": ""}, "doc.yoda.infra_stg__page_track_is_duplicated_2": {"name": "infra_stg__page_track_is_duplicated_2", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_is_duplicated_2", "block_contents": ""}, "doc.yoda.infra_stg__page_track_is_mobile": {"name": "infra_stg__page_track_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_is_mobile", "block_contents": ""}, "doc.yoda.infra_stg__page_track_is_tablet": {"name": "infra_stg__page_track_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_is_tablet", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isautopublishenabled": {"name": "infra_stg__page_track_isautopublishenabled", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isautopublishenabled", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isenabledcoupons": {"name": "infra_stg__page_track_isenabledcoupons", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isenabledcoupons", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isenabledcustomreviews": {"name": "infra_stg__page_track_isenabledcustomreviews", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isenabledcustomreviews", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isenabledgsr": {"name": "infra_stg__page_track_isenabledgsr", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isenabledgsr", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isenabledmap": {"name": "infra_stg__page_track_isenabledmap", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isenabledmap", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isenabledpla": {"name": "infra_stg__page_track_isenabledpla", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isenabledpla", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isenabledpromotedproductsemail": {"name": "infra_stg__page_track_isenabledpromotedproductsemail", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isenabledpromotedproductsemail", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isenabledpromotedproductswidget": {"name": "infra_stg__page_track_isenabledpromotedproductswidget", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isenabledpromotedproductswidget", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isenabledqna": {"name": "infra_stg__page_track_isenabledqna", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isenabledqna", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isenabledrichsnippets": {"name": "infra_stg__page_track_isenabledrichsnippets", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isenabledrichsnippets", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishasbadge": {"name": "infra_stg__page_track_ishasbadge", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishasbadge", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishascomments": {"name": "infra_stg__page_track_ishascomments", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishascomments", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishasconverttositereview": {"name": "infra_stg__page_track_ishasconverttositereview", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishasconverttositereview", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishascoupons": {"name": "infra_stg__page_track_ishascoupons", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishascoupons", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishascsseditor": {"name": "infra_stg__page_track_ishascsseditor", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishascsseditor", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishascustomreviews": {"name": "infra_stg__page_track_ishascustomreviews", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishascustomreviews", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishasdedicatedpage": {"name": "infra_stg__page_track_ishasdedicatedpage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishasdedicatedpage", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishasgsr": {"name": "infra_stg__page_track_ishasgsr", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishasgsr", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishasnewmainwidgetlayout": {"name": "infra_stg__page_track_ishasnewmainwidgetlayout", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishasnewmainwidgetlayout", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishaspla": {"name": "infra_stg__page_track_ishaspla", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishaspla", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishaspromotedproductsemail": {"name": "infra_stg__page_track_ishaspromotedproductsemail", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishaspromotedproductsemail", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishaspromotedproductswidget": {"name": "infra_stg__page_track_ishaspromotedproductswidget", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishaspromotedproductswidget", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishasqna": {"name": "infra_stg__page_track_ishasqna", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishasqna", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishasreviewscarousel": {"name": "infra_stg__page_track_ishasreviewscarousel", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishasreviewscarousel", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishasreviewstab": {"name": "infra_stg__page_track_ishasreviewstab", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishasreviewstab", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishasrichsnippets": {"name": "infra_stg__page_track_ishasrichsnippets", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishasrichsnippets", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishassentmai": {"name": "infra_stg__page_track_ishassentmai", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishassentmai", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishassentmap": {"name": "infra_stg__page_track_ishassentmap", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishassentmap", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishassentmas": {"name": "infra_stg__page_track_ishassentmas", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishassentmas", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishassentsitereminder": {"name": "infra_stg__page_track_ishassentsitereminder", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishassentsitereminder", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishassenttpr": {"name": "infra_stg__page_track_ishassenttpr", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishassenttpr", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishassenttsr": {"name": "infra_stg__page_track_ishassenttsr", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishassenttsr", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishasshoppableinstagram": {"name": "infra_stg__page_track_ishasshoppableinstagram", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishasshoppableinstagram", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishassocialpush": {"name": "infra_stg__page_track_ishassocialpush", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishassocialpush", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishasstarrating": {"name": "infra_stg__page_track_ishasstarrating", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishasstarrating", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishastpr": {"name": "infra_stg__page_track_ishastpr", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishastpr", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ishastsr": {"name": "infra_stg__page_track_ishastsr", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ishastsr", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isinvalidfacebooktoken": {"name": "infra_stg__page_track_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isinvalidfacebooktoken", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isinvalidfacebooktokendate": {"name": "infra_stg__page_track_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isinvalidfacebooktokendate", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isinvalidpinteresttoken": {"name": "infra_stg__page_track_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isinvalidpinteresttoken", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isinvalidpinteresttokendate": {"name": "infra_stg__page_track_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isinvalidpinteresttokendate", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isinvalidtwittertoken": {"name": "infra_stg__page_track_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isinvalidtwittertoken", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isinvalidtwittertokendate": {"name": "infra_stg__page_track_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isinvalidtwittertokendate", "block_contents": ""}, "doc.yoda.infra_stg__page_track_ismapcustomfieldsenabled": {"name": "infra_stg__page_track_ismapcustomfieldsenabled", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_ismapcustomfieldsenabled", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isnewslettersubscribed": {"name": "infra_stg__page_track_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isnewslettersubscribed", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isreceivesentimentnotification": {"name": "infra_stg__page_track_isreceivesentimentnotification", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isreceivesentimentnotification", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isreviewswidgetinstalled": {"name": "infra_stg__page_track_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isreviewswidgetinstalled", "block_contents": ""}, "doc.yoda.infra_stg__page_track_issystemnotificationssubscribed": {"name": "infra_stg__page_track_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_issystemnotificationssubscribed", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isuserscountlimitreached": {"name": "infra_stg__page_track_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isuserscountlimitreached", "block_contents": ""}, "doc.yoda.infra_stg__page_track_isusingpackagesservice": {"name": "infra_stg__page_track_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_isusingpackagesservice", "block_contents": ""}, "doc.yoda.infra_stg__page_track_lastconversionordertime": {"name": "infra_stg__page_track_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_lastconversionordertime", "block_contents": ""}, "doc.yoda.infra_stg__page_track_library_name": {"name": "infra_stg__page_track_library_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_library_name", "block_contents": ""}, "doc.yoda.infra_stg__page_track_locale": {"name": "infra_stg__page_track_locale", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_locale", "block_contents": ""}, "doc.yoda.infra_stg__page_track_message_id": {"name": "infra_stg__page_track_message_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_message_id", "block_contents": ""}, "doc.yoda.infra_stg__page_track_name": {"name": "infra_stg__page_track_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_name", "block_contents": ""}, "doc.yoda.infra_stg__page_track_nameoncreditcard": {"name": "infra_stg__page_track_nameoncreditcard", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_nameoncreditcard", "block_contents": ""}, "doc.yoda.infra_stg__page_track_nextchargedate": {"name": "infra_stg__page_track_nextchargedate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_nextchargedate", "block_contents": ""}, "doc.yoda.infra_stg__page_track_package": {"name": "infra_stg__page_track_package", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_package", "block_contents": ""}, "doc.yoda.infra_stg__page_track_packagecategories": {"name": "infra_stg__page_track_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_packagecategories", "block_contents": ""}, "doc.yoda.infra_stg__page_track_packageextensions": {"name": "infra_stg__page_track_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_packageextensions", "block_contents": ""}, "doc.yoda.infra_stg__page_track_page_path": {"name": "infra_stg__page_track_page_path", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_page_path", "block_contents": ""}, "doc.yoda.infra_stg__page_track_page_referrer": {"name": "infra_stg__page_track_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_page_referrer", "block_contents": ""}, "doc.yoda.infra_stg__page_track_page_title": {"name": "infra_stg__page_track_page_title", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_page_title", "block_contents": ""}, "doc.yoda.infra_stg__page_track_page_url": {"name": "infra_stg__page_track_page_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_page_url", "block_contents": ""}, "doc.yoda.infra_stg__page_track_pagecategory": {"name": "infra_stg__page_track_pagecategory", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_pagecategory", "block_contents": ""}, "doc.yoda.infra_stg__page_track_partition_date": {"name": "infra_stg__page_track_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_partition_date", "block_contents": ""}, "doc.yoda.infra_stg__page_track_path": {"name": "infra_stg__page_track_path", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_path", "block_contents": ""}, "doc.yoda.infra_stg__page_track_paysvia": {"name": "infra_stg__page_track_paysvia", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_paysvia", "block_contents": ""}, "doc.yoda.infra_stg__page_track_pendingrrs": {"name": "infra_stg__page_track_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_pendingrrs", "block_contents": ""}, "doc.yoda.infra_stg__page_track_phone": {"name": "infra_stg__page_track_phone", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_phone", "block_contents": ""}, "doc.yoda.infra_stg__page_track_pixelversion": {"name": "infra_stg__page_track_pixelversion", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_pixelversion", "block_contents": ""}, "doc.yoda.infra_stg__page_track_planname": {"name": "infra_stg__page_track_planname", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_planname", "block_contents": ""}, "doc.yoda.infra_stg__page_track_platform": {"name": "infra_stg__page_track_platform", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_platform", "block_contents": ""}, "doc.yoda.infra_stg__page_track_processing_time": {"name": "infra_stg__page_track_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_processing_time", "block_contents": ""}, "doc.yoda.infra_stg__page_track_recurringpaymentinterval": {"name": "infra_stg__page_track_recurringpaymentinterval", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_recurringpaymentinterval", "block_contents": ""}, "doc.yoda.infra_stg__page_track_renewaldate": {"name": "infra_stg__page_track_renewaldate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_renewaldate", "block_contents": ""}, "doc.yoda.infra_stg__page_track_role": {"name": "infra_stg__page_track_role", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_role", "block_contents": ""}, "doc.yoda.infra_stg__page_track_rrmonthlylimit": {"name": "infra_stg__page_track_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_rrmonthlylimit", "block_contents": ""}, "doc.yoda.infra_stg__page_track_rrssentinbillingcycle": {"name": "infra_stg__page_track_rrssentinbillingcycle", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_rrssentinbillingcycle", "block_contents": ""}, "doc.yoda.infra_stg__page_track_session_id": {"name": "infra_stg__page_track_session_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_session_id", "block_contents": ""}, "doc.yoda.infra_stg__page_track_signupcountry": {"name": "infra_stg__page_track_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_signupcountry", "block_contents": ""}, "doc.yoda.infra_stg__page_track_signupmonthlyorderscount": {"name": "infra_stg__page_track_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_signupmonthlyorderscount", "block_contents": ""}, "doc.yoda.infra_stg__page_track_signupphone": {"name": "infra_stg__page_track_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_signupphone", "block_contents": ""}, "doc.yoda.infra_stg__page_track_signuputmcampaign": {"name": "infra_stg__page_track_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_signuputmcampaign", "block_contents": ""}, "doc.yoda.infra_stg__page_track_signuputmmedium": {"name": "infra_stg__page_track_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_signuputmmedium", "block_contents": ""}, "doc.yoda.infra_stg__page_track_signuputmsource": {"name": "infra_stg__page_track_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_signuputmsource", "block_contents": ""}, "doc.yoda.infra_stg__page_track_storecount": {"name": "infra_stg__page_track_storecount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_storecount", "block_contents": ""}, "doc.yoda.infra_stg__page_track_storedomain": {"name": "infra_stg__page_track_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_storedomain", "block_contents": ""}, "doc.yoda.infra_stg__page_track_subscriptionstate": {"name": "infra_stg__page_track_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_subscriptionstate", "block_contents": ""}, "doc.yoda.infra_stg__page_track_timestamp": {"name": "infra_stg__page_track_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_timestamp", "block_contents": ""}, "doc.yoda.infra_stg__page_track_title": {"name": "infra_stg__page_track_title", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_title", "block_contents": ""}, "doc.yoda.infra_stg__page_track_traits_email": {"name": "infra_stg__page_track_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_traits_email", "block_contents": ""}, "doc.yoda.infra_stg__page_track_traits_name": {"name": "infra_stg__page_track_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_traits_name", "block_contents": ""}, "doc.yoda.infra_stg__page_track_traits_plan": {"name": "infra_stg__page_track_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_traits_plan", "block_contents": ""}, "doc.yoda.infra_stg__page_track_uiversion": {"name": "infra_stg__page_track_uiversion", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_uiversion", "block_contents": ""}, "doc.yoda.infra_stg__page_track_upsolver_schema_version": {"name": "infra_stg__page_track_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_upsolver_schema_version", "block_contents": ""}, "doc.yoda.infra_stg__page_track_url": {"name": "infra_stg__page_track_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_url", "block_contents": ""}, "doc.yoda.infra_stg__page_track_user_id": {"name": "infra_stg__page_track_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_user_id", "block_contents": ""}, "doc.yoda.infra_stg__page_track_userid": {"name": "infra_stg__page_track_userid", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_userid", "block_contents": ""}, "doc.yoda.infra_stg__page_track_violated_event": {"name": "infra_stg__page_track_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_violated_event", "block_contents": ""}, "doc.yoda.infra_stg__page_track_website": {"name": "infra_stg__page_track_website", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_website", "block_contents": ""}, "doc.yoda.infra_stg__page_track_yotpoip": {"name": "infra_stg__page_track_yotpoip", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_yotpoip", "block_contents": ""}, "doc.yoda.infra_stg__page_track_yotpoproductscore": {"name": "infra_stg__page_track_yotpoproductscore", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_yotpoproductscore", "block_contents": ""}, "doc.yoda.infra_stg__page_track_yotpoproductscorev2": {"name": "infra_stg__page_track_yotpoproductscorev2", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "original_file_path": "models/infra/staging/base/infra_stg__page_track/infra_stg__page_track.md", "unique_id": "doc.yoda.infra_stg__page_track_yotpoproductscorev2", "block_contents": ""}, "doc.yoda.infra_stg__pixel_enrichment": {"name": "infra_stg__pixel_enrichment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment", "block_contents": "Pixel data ever since the 2022-12-01, reference - https://docs.google.com/document/d/1kmhB2ZgTzGgRVXFHP8rMhm_GKtEDHNF0cTmSeGPPuAI/edit?usp=sharing"}, "doc.yoda.infra_stg__pixel_enrichment_app_id": {"name": "infra_stg__pixel_enrichment_app_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_app_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_colordepth": {"name": "infra_stg__pixel_enrichment_br_colordepth", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_colordepth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_cookies": {"name": "infra_stg__pixel_enrichment_br_cookies", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_cookies", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_family": {"name": "infra_stg__pixel_enrichment_br_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_features_director": {"name": "infra_stg__pixel_enrichment_br_features_director", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_features_director", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_features_flash": {"name": "infra_stg__pixel_enrichment_br_features_flash", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_features_flash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_features_gears": {"name": "infra_stg__pixel_enrichment_br_features_gears", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_features_gears", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_features_java": {"name": "infra_stg__pixel_enrichment_br_features_java", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_features_java", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_features_pdf": {"name": "infra_stg__pixel_enrichment_br_features_pdf", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_features_pdf", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_features_quicktime": {"name": "infra_stg__pixel_enrichment_br_features_quicktime", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_features_quicktime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_features_realplayer": {"name": "infra_stg__pixel_enrichment_br_features_realplayer", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_features_realplayer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_features_silverlight": {"name": "infra_stg__pixel_enrichment_br_features_silverlight", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_features_silverlight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_features_windowsmedia": {"name": "infra_stg__pixel_enrichment_br_features_windowsmedia", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_features_windowsmedia", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_lang": {"name": "infra_stg__pixel_enrichment_br_lang", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_lang", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_major": {"name": "infra_stg__pixel_enrichment_br_major", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_minor": {"name": "infra_stg__pixel_enrichment_br_minor", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_viewheight": {"name": "infra_stg__pixel_enrichment_br_viewheight", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_viewheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_br_viewwidth": {"name": "infra_stg__pixel_enrichment_br_viewwidth", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_br_viewwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_collector_day": {"name": "infra_stg__pixel_enrichment_collector_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_collector_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_collector_epoch": {"name": "infra_stg__pixel_enrichment_collector_epoch", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_collector_epoch", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_collector_month": {"name": "infra_stg__pixel_enrichment_collector_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_collector_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_collector_tstamp": {"name": "infra_stg__pixel_enrichment_collector_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_collector_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_collector_year": {"name": "infra_stg__pixel_enrichment_collector_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_collector_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_context": {"name": "infra_stg__pixel_enrichment_context", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_context", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_device_family": {"name": "infra_stg__pixel_enrichment_device_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_device_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_doc_charset": {"name": "infra_stg__pixel_enrichment_doc_charset", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_doc_charset", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_doc_height": {"name": "infra_stg__pixel_enrichment_doc_height", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_doc_height", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_doc_width": {"name": "infra_stg__pixel_enrichment_doc_width", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_doc_width", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_domain_sessionidx": {"name": "infra_stg__pixel_enrichment_domain_sessionidx", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_domain_sessionidx", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_domain_userid": {"name": "infra_stg__pixel_enrichment_domain_userid", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_domain_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_dvce_screenheight": {"name": "infra_stg__pixel_enrichment_dvce_screenheight", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_dvce_screenheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_dvce_screenwidth": {"name": "infra_stg__pixel_enrichment_dvce_screenwidth", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_dvce_screenwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_dvce_tstamp": {"name": "infra_stg__pixel_enrichment_dvce_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_dvce_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_event": {"name": "infra_stg__pixel_enrichment_event", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_event_id": {"name": "infra_stg__pixel_enrichment_event_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_event_vendor": {"name": "infra_stg__pixel_enrichment_event_vendor", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_event_vendor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_geo_city": {"name": "infra_stg__pixel_enrichment_geo_city", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_geo_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_geo_country": {"name": "infra_stg__pixel_enrichment_geo_country", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_geo_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_geo_latitude": {"name": "infra_stg__pixel_enrichment_geo_latitude", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_geo_latitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_geo_longitude": {"name": "infra_stg__pixel_enrichment_geo_longitude", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_geo_longitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_geo_region": {"name": "infra_stg__pixel_enrichment_geo_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_geo_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_geo_zipcode": {"name": "infra_stg__pixel_enrichment_geo_zipcode", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_geo_zipcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_hour": {"name": "infra_stg__pixel_enrichment_hour", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_hour", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_mkt_campaign": {"name": "infra_stg__pixel_enrichment_mkt_campaign", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_mkt_campaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_mkt_content": {"name": "infra_stg__pixel_enrichment_mkt_content", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_mkt_content", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_mkt_medium": {"name": "infra_stg__pixel_enrichment_mkt_medium", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_mkt_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_mkt_source": {"name": "infra_stg__pixel_enrichment_mkt_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_mkt_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_mkt_term": {"name": "infra_stg__pixel_enrichment_mkt_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_mkt_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_os_family": {"name": "infra_stg__pixel_enrichment_os_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_os_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_os_major": {"name": "infra_stg__pixel_enrichment_os_major", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_os_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_os_minor": {"name": "infra_stg__pixel_enrichment_os_minor", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_os_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_os_timezone": {"name": "infra_stg__pixel_enrichment_os_timezone", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_os_timezone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_page_referrer": {"name": "infra_stg__pixel_enrichment_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_page_title": {"name": "infra_stg__pixel_enrichment_page_title", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_page_url": {"name": "infra_stg__pixel_enrichment_page_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_page_urlfragment": {"name": "infra_stg__pixel_enrichment_page_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_page_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_page_urlhost": {"name": "infra_stg__pixel_enrichment_page_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_page_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_page_urlpath": {"name": "infra_stg__pixel_enrichment_page_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_page_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_page_urlport": {"name": "infra_stg__pixel_enrichment_page_urlport", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_page_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_page_urlquery": {"name": "infra_stg__pixel_enrichment_page_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_page_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_page_urlscheme": {"name": "infra_stg__pixel_enrichment_page_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_page_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_partition_date": {"name": "infra_stg__pixel_enrichment_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_platform": {"name": "infra_stg__pixel_enrichment_platform", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_pp_xoffset_max": {"name": "infra_stg__pixel_enrichment_pp_xoffset_max", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_pp_xoffset_max", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_pp_xoffset_min": {"name": "infra_stg__pixel_enrichment_pp_xoffset_min", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_pp_xoffset_min", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_pp_yoffset_max": {"name": "infra_stg__pixel_enrichment_pp_yoffset_max", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_pp_yoffset_max", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_pp_yoffset_min": {"name": "infra_stg__pixel_enrichment_pp_yoffset_min", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_pp_yoffset_min", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_processing_time": {"name": "infra_stg__pixel_enrichment_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_refr_medium": {"name": "infra_stg__pixel_enrichment_refr_medium", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_refr_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_refr_source": {"name": "infra_stg__pixel_enrichment_refr_source", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_refr_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_refr_term": {"name": "infra_stg__pixel_enrichment_refr_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_refr_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_refr_urlfragment": {"name": "infra_stg__pixel_enrichment_refr_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_refr_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_refr_urlhost": {"name": "infra_stg__pixel_enrichment_refr_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_refr_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_refr_urlpath": {"name": "infra_stg__pixel_enrichment_refr_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_refr_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_refr_urlport": {"name": "infra_stg__pixel_enrichment_refr_urlport", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_refr_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_refr_urlquery": {"name": "infra_stg__pixel_enrichment_refr_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_refr_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_refr_urlscheme": {"name": "infra_stg__pixel_enrichment_refr_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_refr_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_se_action": {"name": "infra_stg__pixel_enrichment_se_action", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_se_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_se_category": {"name": "infra_stg__pixel_enrichment_se_category", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_se_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_se_label": {"name": "infra_stg__pixel_enrichment_se_label", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_se_label", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_se_page_sku": {"name": "infra_stg__pixel_enrichment_se_page_sku", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_se_page_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_se_property": {"name": "infra_stg__pixel_enrichment_se_property", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_se_property", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_se_testing_groups": {"name": "infra_stg__pixel_enrichment_se_testing_groups", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_se_testing_groups", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_se_value": {"name": "infra_stg__pixel_enrichment_se_value", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_se_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_tr_currency": {"name": "infra_stg__pixel_enrichment_tr_currency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_tr_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_tr_orderid": {"name": "infra_stg__pixel_enrichment_tr_orderid", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_tr_orderid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_tr_total": {"name": "infra_stg__pixel_enrichment_tr_total", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_tr_total", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_txn_id": {"name": "infra_stg__pixel_enrichment_txn_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_txn_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_user_fingerprint": {"name": "infra_stg__pixel_enrichment_user_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_user_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_user_id": {"name": "infra_stg__pixel_enrichment_user_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_useragent": {"name": "infra_stg__pixel_enrichment_useragent", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_useragent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_v_collector": {"name": "infra_stg__pixel_enrichment_v_collector", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_v_collector", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_v_etl": {"name": "infra_stg__pixel_enrichment_v_etl", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_v_etl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_v_tracker": {"name": "infra_stg__pixel_enrichment_v_tracker", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_v_tracker", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__pixel_enrichment_y_fingerprint": {"name": "infra_stg__pixel_enrichment_y_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "original_file_path": "models/infra/staging/base/infra_stg__pixel_enrichment/infra_stg__pixel_enrichment.md", "unique_id": "doc.yoda.infra_stg__pixel_enrichment_y_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos": {"name": "infra_stg__repos", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos", "block_contents": "Yotpo oranization git repo as extracted from https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#list-organization-repositories"}, "doc.yoda.infra_stg__repos_archived": {"name": "infra_stg__repos_archived", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_archived", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_default_branch": {"name": "infra_stg__repos_default_branch", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_default_branch", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_description": {"name": "infra_stg__repos_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_disabled": {"name": "infra_stg__repos_disabled", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_disabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_fork": {"name": "infra_stg__repos_fork", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_fork", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_forks_count": {"name": "infra_stg__repos_forks_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_forks_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_full_name": {"name": "infra_stg__repos_full_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_full_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_has_discussions": {"name": "infra_stg__repos_has_discussions", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_has_discussions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_has_downloads": {"name": "infra_stg__repos_has_downloads", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_has_downloads", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_has_issues": {"name": "infra_stg__repos_has_issues", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_has_issues", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_has_pages": {"name": "infra_stg__repos_has_pages", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_has_pages", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_has_projects": {"name": "infra_stg__repos_has_projects", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_has_projects", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_has_wiki": {"name": "infra_stg__repos_has_wiki", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_has_wiki", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_id": {"name": "infra_stg__repos_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_is_template": {"name": "infra_stg__repos_is_template", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_is_template", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_name": {"name": "infra_stg__repos_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_node_id": {"name": "infra_stg__repos_node_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_node_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_open_issues_count": {"name": "infra_stg__repos_open_issues_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_open_issues_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_private": {"name": "infra_stg__repos_private", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_private", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_pushed_at": {"name": "infra_stg__repos_pushed_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_pushed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_size": {"name": "infra_stg__repos_size", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_size", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_stargazers_count": {"name": "infra_stg__repos_stargazers_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_stargazers_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_url": {"name": "infra_stg__repos_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_visibility": {"name": "infra_stg__repos_visibility", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_visibility", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__repos_watchers_count": {"name": "infra_stg__repos_watchers_count", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__repos/infra_stg__repos.md", "original_file_path": "models/infra/staging/base/infra_stg__repos/infra_stg__repos.md", "unique_id": "doc.yoda.infra_stg__repos_watchers_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_environments": {"name": "infra_stg__rivery_environments", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.md", "unique_id": "doc.yoda.infra_stg__rivery_environments", "block_contents": "Rivery table containing all of our environments"}, "doc.yoda.infra_stg__rivery_environments_account_id": {"name": "infra_stg__rivery_environments_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.md", "unique_id": "doc.yoda.infra_stg__rivery_environments_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_environments_id": {"name": "infra_stg__rivery_environments_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.md", "unique_id": "doc.yoda.infra_stg__rivery_environments_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_environments_is_deleted": {"name": "infra_stg__rivery_environments_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.md", "unique_id": "doc.yoda.infra_stg__rivery_environments_is_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_environments_name": {"name": "infra_stg__rivery_environments_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_environments/infra_stg__rivery_environments.md", "unique_id": "doc.yoda.infra_stg__rivery_environments_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_groups": {"name": "infra_stg__rivery_groups", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.md", "unique_id": "doc.yoda.infra_stg__rivery_groups", "block_contents": "Rivery table containing all of our river groups"}, "doc.yoda.infra_stg__rivery_groups_account_id": {"name": "infra_stg__rivery_groups_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.md", "unique_id": "doc.yoda.infra_stg__rivery_groups_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_groups_environment_id": {"name": "infra_stg__rivery_groups_environment_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.md", "unique_id": "doc.yoda.infra_stg__rivery_groups_environment_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_groups_id": {"name": "infra_stg__rivery_groups_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.md", "unique_id": "doc.yoda.infra_stg__rivery_groups_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_groups_name": {"name": "infra_stg__rivery_groups_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_groups/infra_stg__rivery_groups.md", "unique_id": "doc.yoda.infra_stg__rivery_groups_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage": {"name": "infra_stg__rivery_rivers_usage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage", "block_contents": "Rivery usage table which getting extracted by https://yotpo.cloud.databricks.com/?o=5080138803352597#notebook/4361014601830155"}, "doc.yoda.infra_stg__rivery_rivers_usage_account_id": {"name": "infra_stg__rivery_rivers_usage_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_canceled": {"name": "infra_stg__rivery_rivers_usage_canceled", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_canceled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_cross_id": {"name": "infra_stg__rivery_rivers_usage_cross_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_cross_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_datasource_id": {"name": "infra_stg__rivery_rivers_usage_datasource_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_datasource_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_dry_runs": {"name": "infra_stg__rivery_rivers_usage_dry_runs", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_dry_runs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_end_time": {"name": "infra_stg__rivery_rivers_usage_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_end_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_environment_id": {"name": "infra_stg__rivery_rivers_usage_environment_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_environment_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_failed": {"name": "infra_stg__rivery_rivers_usage_failed", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_failed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_group_id": {"name": "infra_stg__rivery_rivers_usage_group_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_is_deleted": {"name": "infra_stg__rivery_rivers_usage_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_is_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_is_master_river": {"name": "infra_stg__rivery_rivers_usage_is_master_river", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_is_master_river", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_is_multi": {"name": "infra_stg__rivery_rivers_usage_is_multi", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_is_multi", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_is_scheduled": {"name": "infra_stg__rivery_rivers_usage_is_scheduled", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_is_scheduled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_is_sub_river": {"name": "infra_stg__rivery_rivers_usage_is_sub_river", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_is_sub_river", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_last_run": {"name": "infra_stg__rivery_rivers_usage_last_run", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_last_run", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_master_river_id": {"name": "infra_stg__rivery_rivers_usage_master_river_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_master_river_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_pending": {"name": "infra_stg__rivery_rivers_usage_pending", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_pending", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_river_id": {"name": "infra_stg__rivery_rivers_usage_river_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_river_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_river_name": {"name": "infra_stg__rivery_rivers_usage_river_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_river_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_running": {"name": "infra_stg__rivery_rivers_usage_running", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_running", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_start_time": {"name": "infra_stg__rivery_rivers_usage_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_start_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_succeeded": {"name": "infra_stg__rivery_rivers_usage_succeeded", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_succeeded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_total_files": {"name": "infra_stg__rivery_rivers_usage_total_files", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_total_files", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_total_size": {"name": "infra_stg__rivery_rivers_usage_total_size", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_total_size", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__rivery_rivers_usage_units": {"name": "infra_stg__rivery_rivers_usage_units", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "original_file_path": "models/infra/staging/base/infra_stg__rivery_rivers_usage/infra_stg__rivery_rivers_usage.md", "unique_id": "doc.yoda.infra_stg__rivery_rivers_usage_units", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__base_s3_inventory": {"name": "infra__base_s3_inventory", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra__base_s3_inventory", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__s3_inventory_raw_bucket": {"name": "infra_stg__s3_inventory_raw_bucket", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_bucket", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_day": {"name": "infra_stg__s3_inventory_raw_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_e_tag": {"name": "infra_stg__s3_inventory_raw_e_tag", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_e_tag", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_encryption_status": {"name": "infra_stg__s3_inventory_raw_encryption_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_encryption_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_intelligent_tiering_access_tier": {"name": "infra_stg__s3_inventory_raw_intelligent_tiering_access_tier", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_intelligent_tiering_access_tier", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_is_multipart_uploaded": {"name": "infra_stg__s3_inventory_raw_is_multipart_uploaded", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_is_multipart_uploaded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_key": {"name": "infra_stg__s3_inventory_raw_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_last_modified_date": {"name": "infra_stg__s3_inventory_raw_last_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_last_modified_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_month": {"name": "infra_stg__s3_inventory_raw_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_object_lock_legal_hold_status": {"name": "infra_stg__s3_inventory_raw_object_lock_legal_hold_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_object_lock_legal_hold_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_object_lock_mode": {"name": "infra_stg__s3_inventory_raw_object_lock_mode", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_object_lock_mode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_object_lock_retain_until_date": {"name": "infra_stg__s3_inventory_raw_object_lock_retain_until_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_object_lock_retain_until_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_product_line": {"name": "infra_stg__s3_inventory_raw_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_replication_status": {"name": "infra_stg__s3_inventory_raw_replication_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_replication_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_size": {"name": "infra_stg__s3_inventory_raw_size", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_size", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_storage_class": {"name": "infra_stg__s3_inventory_raw_storage_class", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_storage_class", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__s3_inventory_raw_year": {"name": "infra_stg__s3_inventory_raw_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "original_file_path": "models/infra/staging/base/infra_stg__s3_inventory_raw/infra_stg__s3_inventory_raw.md", "unique_id": "doc.yoda.infra_stg__s3_inventory_raw_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__services": {"name": "infra_stg__services", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__services/infra_stg__services.md", "original_file_path": "models/infra/staging/base/infra_stg__services/infra_stg__services.md", "unique_id": "doc.yoda.infra_stg__services", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__services_description": {"name": "infra_stg__services_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__services/infra_stg__services.md", "original_file_path": "models/infra/staging/base/infra_stg__services/infra_stg__services.md", "unique_id": "doc.yoda.infra_stg__services_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__services_id": {"name": "infra_stg__services_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__services/infra_stg__services.md", "original_file_path": "models/infra/staging/base/infra_stg__services/infra_stg__services.md", "unique_id": "doc.yoda.infra_stg__services_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__services_is_external": {"name": "infra_stg__services_is_external", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__services/infra_stg__services.md", "original_file_path": "models/infra/staging/base/infra_stg__services/infra_stg__services.md", "unique_id": "doc.yoda.infra_stg__services_is_external", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__services_links": {"name": "infra_stg__services_links", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__services/infra_stg__services.md", "original_file_path": "models/infra/staging/base/infra_stg__services/infra_stg__services.md", "unique_id": "doc.yoda.infra_stg__services_links", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__services_name": {"name": "infra_stg__services_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__services/infra_stg__services.md", "original_file_path": "models/infra/staging/base/infra_stg__services/infra_stg__services.md", "unique_id": "doc.yoda.infra_stg__services_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__services_tags": {"name": "infra_stg__services_tags", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__services/infra_stg__services.md", "original_file_path": "models/infra/staging/base/infra_stg__services/infra_stg__services.md", "unique_id": "doc.yoda.infra_stg__services_tags", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__services_team_id": {"name": "infra_stg__services_team_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__services/infra_stg__services.md", "original_file_path": "models/infra/staging/base/infra_stg__services/infra_stg__services.md", "unique_id": "doc.yoda.infra_stg__services_team_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history": {"name": "infra_stg__snowflake_automatic_clustering_history", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_account": {"name": "infra_stg__snowflake_automatic_clustering_history_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_account", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_credits_used": {"name": "infra_stg__snowflake_automatic_clustering_history_credits_used", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_credits_used", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_database_id": {"name": "infra_stg__snowflake_automatic_clustering_history_database_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_database_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_database_name": {"name": "infra_stg__snowflake_automatic_clustering_history_database_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_database_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_end_time": {"name": "infra_stg__snowflake_automatic_clustering_history_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_end_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_num_bytes_reclustered": {"name": "infra_stg__snowflake_automatic_clustering_history_num_bytes_reclustered", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_num_bytes_reclustered", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_num_rows_reclustered": {"name": "infra_stg__snowflake_automatic_clustering_history_num_rows_reclustered", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_num_rows_reclustered", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_schema_id": {"name": "infra_stg__snowflake_automatic_clustering_history_schema_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_schema_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_schema_name": {"name": "infra_stg__snowflake_automatic_clustering_history_schema_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_schema_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_start_time": {"name": "infra_stg__snowflake_automatic_clustering_history_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_start_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_table_id": {"name": "infra_stg__snowflake_automatic_clustering_history_table_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_table_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_automatic_clustering_history_table_name": {"name": "infra_stg__snowflake_automatic_clustering_history_table_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_automatic_clustering_history/infra_stg__snowflake_automatic_clustering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_automatic_clustering_history_table_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_database_storage_usage_history": {"name": "infra_stg__snowflake_database_storage_usage_history", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_database_storage_usage_history", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__snowflake_database_storage_usage_history_account": {"name": "infra_stg__snowflake_database_storage_usage_history_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_database_storage_usage_history_account", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_database_storage_usage_history_average_database_bytes": {"name": "infra_stg__snowflake_database_storage_usage_history_average_database_bytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_database_storage_usage_history_average_database_bytes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_database_storage_usage_history_average_failsafe_bytes": {"name": "infra_stg__snowflake_database_storage_usage_history_average_failsafe_bytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_database_storage_usage_history_average_failsafe_bytes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_database_storage_usage_history_database_id": {"name": "infra_stg__snowflake_database_storage_usage_history_database_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_database_storage_usage_history_database_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_database_storage_usage_history_database_name": {"name": "infra_stg__snowflake_database_storage_usage_history_database_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_database_storage_usage_history_database_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_database_storage_usage_history_deleted": {"name": "infra_stg__snowflake_database_storage_usage_history_deleted", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_database_storage_usage_history_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_database_storage_usage_history_usage_date": {"name": "infra_stg__snowflake_database_storage_usage_history_usage_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_database_storage_usage_history/infra_stg__snowflake_database_storage_usage_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_database_storage_usage_history_usage_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history": {"name": "infra_stg__snowflake_materialized_view_refresh_history", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_account": {"name": "infra_stg__snowflake_materialized_view_refresh_history_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_account", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_credits_used": {"name": "infra_stg__snowflake_materialized_view_refresh_history_credits_used", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_credits_used", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_database_id": {"name": "infra_stg__snowflake_materialized_view_refresh_history_database_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_database_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_database_name": {"name": "infra_stg__snowflake_materialized_view_refresh_history_database_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_database_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_end_time": {"name": "infra_stg__snowflake_materialized_view_refresh_history_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_end_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_schema_id": {"name": "infra_stg__snowflake_materialized_view_refresh_history_schema_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_schema_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_schema_name": {"name": "infra_stg__snowflake_materialized_view_refresh_history_schema_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_schema_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_start_time": {"name": "infra_stg__snowflake_materialized_view_refresh_history_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_start_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_table_id": {"name": "infra_stg__snowflake_materialized_view_refresh_history_table_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_table_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_table_name": {"name": "infra_stg__snowflake_materialized_view_refresh_history_table_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_materialized_view_refresh_history/infra_stg__snowflake_materialized_view_refresh_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_materialized_view_refresh_history_table_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics": {"name": "infra_stg__snowflake_queries_statistics", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__snowflake_queries_statistics_EXECUTION_STATUS": {"name": "infra_stg__snowflake_queries_statistics_EXECUTION_STATUS", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_EXECUTION_STATUS", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time": {"name": "infra_stg__snowflake_queries_statistics_blocked_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time_avg": {"name": "infra_stg__snowflake_queries_statistics_blocked_time_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time_p25": {"name": "infra_stg__snowflake_queries_statistics_blocked_time_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time_p50": {"name": "infra_stg__snowflake_queries_statistics_blocked_time_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time_p75": {"name": "infra_stg__snowflake_queries_statistics_blocked_time_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time_p95": {"name": "infra_stg__snowflake_queries_statistics_blocked_time_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_blocked_time_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time": {"name": "infra_stg__snowflake_queries_statistics_compilation_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time_avg": {"name": "infra_stg__snowflake_queries_statistics_compilation_time_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time_p25": {"name": "infra_stg__snowflake_queries_statistics_compilation_time_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time_p50": {"name": "infra_stg__snowflake_queries_statistics_compilation_time_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time_p75": {"name": "infra_stg__snowflake_queries_statistics_compilation_time_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time_p95": {"name": "infra_stg__snowflake_queries_statistics_compilation_time_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_compilation_time_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time": {"name": "infra_stg__snowflake_queries_statistics_execution_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time_avg": {"name": "infra_stg__snowflake_queries_statistics_execution_time_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time_p25": {"name": "infra_stg__snowflake_queries_statistics_execution_time_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time_p50": {"name": "infra_stg__snowflake_queries_statistics_execution_time_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time_p75": {"name": "infra_stg__snowflake_queries_statistics_execution_time_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time_p95": {"name": "infra_stg__snowflake_queries_statistics_execution_time_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_execution_time_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data": {"name": "infra_stg__snowflake_queries_statistics_inbound_data", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data_avg": {"name": "infra_stg__snowflake_queries_statistics_inbound_data_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data_p25": {"name": "infra_stg__snowflake_queries_statistics_inbound_data_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data_p50": {"name": "infra_stg__snowflake_queries_statistics_inbound_data_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data_p75": {"name": "infra_stg__snowflake_queries_statistics_inbound_data_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data_p95": {"name": "infra_stg__snowflake_queries_statistics_inbound_data_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_inbound_data_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_max_cluster_cnt": {"name": "infra_stg__snowflake_queries_statistics_max_cluster_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_max_cluster_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_min_cluster_cnt": {"name": "infra_stg__snowflake_queries_statistics_min_cluster_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_min_cluster_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data": {"name": "infra_stg__snowflake_queries_statistics_outbound_data", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data_avg": {"name": "infra_stg__snowflake_queries_statistics_outbound_data_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data_p25": {"name": "infra_stg__snowflake_queries_statistics_outbound_data_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data_p50": {"name": "infra_stg__snowflake_queries_statistics_outbound_data_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data_p75": {"name": "infra_stg__snowflake_queries_statistics_outbound_data_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data_p95": {"name": "infra_stg__snowflake_queries_statistics_outbound_data_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_outbound_data_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_queries_partition_proning_cnt": {"name": "infra_stg__snowflake_queries_statistics_queries_partition_proning_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_queries_partition_proning_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_query_type": {"name": "infra_stg__snowflake_queries_statistics_query_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_query_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time": {"name": "infra_stg__snowflake_queries_statistics_queue_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time_avg": {"name": "infra_stg__snowflake_queries_statistics_queue_time_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time_p25": {"name": "infra_stg__snowflake_queries_statistics_queue_time_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time_p50": {"name": "infra_stg__snowflake_queries_statistics_queue_time_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time_p75": {"name": "infra_stg__snowflake_queries_statistics_queue_time_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time_p95": {"name": "infra_stg__snowflake_queries_statistics_queue_time_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_queue_time_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache": {"name": "infra_stg__snowflake_queries_statistics_scanned_from_cache", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache_avg": {"name": "infra_stg__snowflake_queries_statistics_scanned_from_cache_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache_p25": {"name": "infra_stg__snowflake_queries_statistics_scanned_from_cache_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache_p50": {"name": "infra_stg__snowflake_queries_statistics_scanned_from_cache_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache_p75": {"name": "infra_stg__snowflake_queries_statistics_scanned_from_cache_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache_p95": {"name": "infra_stg__snowflake_queries_statistics_scanned_from_cache_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_scanned_from_cache_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_spilled_to_local_cnt": {"name": "infra_stg__snowflake_queries_statistics_spilled_to_local_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_spilled_to_local_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_spilled_to_remote_cnt": {"name": "infra_stg__snowflake_queries_statistics_spilled_to_remote_cnt", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_spilled_to_remote_cnt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_start_time": {"name": "infra_stg__snowflake_queries_statistics_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_start_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed": {"name": "infra_stg__snowflake_queries_statistics_total_elapsed", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed_avg": {"name": "infra_stg__snowflake_queries_statistics_total_elapsed_avg", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed_avg", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed_p25": {"name": "infra_stg__snowflake_queries_statistics_total_elapsed_p25", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed_p25", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed_p50": {"name": "infra_stg__snowflake_queries_statistics_total_elapsed_p50", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed_p50", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed_p75": {"name": "infra_stg__snowflake_queries_statistics_total_elapsed_p75", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed_p75", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed_p95": {"name": "infra_stg__snowflake_queries_statistics_total_elapsed_p95", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_total_elapsed_p95", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_total_queries": {"name": "infra_stg__snowflake_queries_statistics_total_queries", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_total_queries", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_user_name": {"name": "infra_stg__snowflake_queries_statistics_user_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_warehouse_name": {"name": "infra_stg__snowflake_queries_statistics_warehouse_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_warehouse_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_queries_statistics_warehouse_size": {"name": "infra_stg__snowflake_queries_statistics_warehouse_size", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_queries_statistics/infra_stg__snowflake_queries_statistics.md", "unique_id": "doc.yoda.infra_stg__snowflake_queries_statistics_warehouse_size", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references": {"name": "infra_stg__snowflake_tag_references", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__snowflake_tag_references_column_id": {"name": "infra_stg__snowflake_tag_references_column_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_column_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_column_name": {"name": "infra_stg__snowflake_tag_references_column_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_column_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_domain": {"name": "infra_stg__snowflake_tag_references_domain", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_domain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_object_database": {"name": "infra_stg__snowflake_tag_references_object_database", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_object_database", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_object_deleted": {"name": "infra_stg__snowflake_tag_references_object_deleted", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_object_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_object_id": {"name": "infra_stg__snowflake_tag_references_object_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_object_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_object_name": {"name": "infra_stg__snowflake_tag_references_object_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_object_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_object_schema": {"name": "infra_stg__snowflake_tag_references_object_schema", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_object_schema", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_tag_database": {"name": "infra_stg__snowflake_tag_references_tag_database", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_tag_database", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_tag_id": {"name": "infra_stg__snowflake_tag_references_tag_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_tag_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_tag_name": {"name": "infra_stg__snowflake_tag_references_tag_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_tag_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_tag_schema": {"name": "infra_stg__snowflake_tag_references_tag_schema", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_tag_schema", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_tag_references_tag_value": {"name": "infra_stg__snowflake_tag_references_tag_value", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_tag_references/infra_stg__snowflake_tag_references.md", "unique_id": "doc.yoda.infra_stg__snowflake_tag_references_tag_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_events": {"name": "infra_stg__snowflake_warehouse_events", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_events", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__snowflake_warehouse_events_cluster_number": {"name": "infra_stg__snowflake_warehouse_events_cluster_number", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_events_cluster_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_events_event_name": {"name": "infra_stg__snowflake_warehouse_events_event_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_events_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_events_event_state": {"name": "infra_stg__snowflake_warehouse_events_event_state", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_events_event_state", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_events_timestamp": {"name": "infra_stg__snowflake_warehouse_events_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_events_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_events_warehouse_name": {"name": "infra_stg__snowflake_warehouse_events_warehouse_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_events/infra_stg__snowflake_warehouse_events.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_events_warehouse_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_metering_history": {"name": "infra_stg__snowflake_warehouse_metering_history", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_metering_history", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__snowflake_warehouse_metering_history_account": {"name": "infra_stg__snowflake_warehouse_metering_history_account", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_metering_history_account", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_metering_history_credits_used": {"name": "infra_stg__snowflake_warehouse_metering_history_credits_used", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_metering_history_credits_used", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_metering_history_credits_used_cloud_services": {"name": "infra_stg__snowflake_warehouse_metering_history_credits_used_cloud_services", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_metering_history_credits_used_cloud_services", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_metering_history_credits_used_compute": {"name": "infra_stg__snowflake_warehouse_metering_history_credits_used_compute", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_metering_history_credits_used_compute", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_metering_history_end_time": {"name": "infra_stg__snowflake_warehouse_metering_history_end_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_metering_history_end_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_metering_history_start_time": {"name": "infra_stg__snowflake_warehouse_metering_history_start_time", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_metering_history_start_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_metering_history_warehouse_id": {"name": "infra_stg__snowflake_warehouse_metering_history_warehouse_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_metering_history_warehouse_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__snowflake_warehouse_metering_history_warehouse_name": {"name": "infra_stg__snowflake_warehouse_metering_history_warehouse_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "original_file_path": "models/infra/staging/base/infra_stg__snowflake_warehouse_metering_history/infra_stg__snowflake_warehouse_metering_history.md", "unique_id": "doc.yoda.infra_stg__snowflake_warehouse_metering_history_warehouse_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__sub_departments_monthly_budget": {"name": "infra_stg__sub_departments_monthly_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.md", "original_file_path": "models/infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.md", "unique_id": "doc.yoda.infra_stg__sub_departments_monthly_budget", "block_contents": ""}, "doc.yoda.infra_stg__sub_departments_monthly_budget_budget": {"name": "infra_stg__sub_departments_monthly_budget_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.md", "original_file_path": "models/infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.md", "unique_id": "doc.yoda.infra_stg__sub_departments_monthly_budget_budget", "block_contents": ""}, "doc.yoda.infra_stg__sub_departments_monthly_budget_change_date": {"name": "infra_stg__sub_departments_monthly_budget_change_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.md", "original_file_path": "models/infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.md", "unique_id": "doc.yoda.infra_stg__sub_departments_monthly_budget_change_date", "block_contents": ""}, "doc.yoda.infra_stg__sub_departments_monthly_budget_department": {"name": "infra_stg__sub_departments_monthly_budget_department", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.md", "original_file_path": "models/infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.md", "unique_id": "doc.yoda.infra_stg__sub_departments_monthly_budget_department", "block_contents": ""}, "doc.yoda.infra_stg__sub_departments_monthly_budget_department_disply_name": {"name": "infra_stg__sub_departments_monthly_budget_department_disply_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.md", "original_file_path": "models/infra/staging/base/infra_stg__sub_departments_monthly_budget/infra_stg__sub_departments_monthly_budget.md", "unique_id": "doc.yoda.infra_stg__sub_departments_monthly_budget_department_disply_name", "block_contents": ""}, "doc.yoda.infra_stg__team_budget": {"name": "infra_stg__team_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "original_file_path": "models/infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "unique_id": "doc.yoda.infra_stg__team_budget", "block_contents": ""}, "doc.yoda.infra_stg__team_budget_budget": {"name": "infra_stg__team_budget_budget", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "original_file_path": "models/infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "unique_id": "doc.yoda.infra_stg__team_budget_budget", "block_contents": ""}, "doc.yoda.infra_stg__team_budget_group": {"name": "infra_stg__team_budget_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "original_file_path": "models/infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "unique_id": "doc.yoda.infra_stg__team_budget_group", "block_contents": ""}, "doc.yoda.infra_stg__team_budget_product_line": {"name": "infra_stg__team_budget_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "original_file_path": "models/infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "unique_id": "doc.yoda.infra_stg__team_budget_product_line", "block_contents": ""}, "doc.yoda.infra_stg__team_budget_team": {"name": "infra_stg__team_budget_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "original_file_path": "models/infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "unique_id": "doc.yoda.infra_stg__team_budget_team", "block_contents": ""}, "doc.yoda.infra_stg__team_budget_updated_at": {"name": "infra_stg__team_budget_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "original_file_path": "models/infra/staging/base/infra_stg__team_budget/infra_stg__team_budget.md", "unique_id": "doc.yoda.infra_stg__team_budget_updated_at", "block_contents": ""}, "doc.yoda.infra_stg__teams": {"name": "infra_stg__teams", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__teams/infra_stg__teams.md", "original_file_path": "models/infra/staging/base/infra_stg__teams/infra_stg__teams.md", "unique_id": "doc.yoda.infra_stg__teams", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__teams_description": {"name": "infra_stg__teams_description", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__teams/infra_stg__teams.md", "original_file_path": "models/infra/staging/base/infra_stg__teams/infra_stg__teams.md", "unique_id": "doc.yoda.infra_stg__teams_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__teams_id": {"name": "infra_stg__teams_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__teams/infra_stg__teams.md", "original_file_path": "models/infra/staging/base/infra_stg__teams/infra_stg__teams.md", "unique_id": "doc.yoda.infra_stg__teams_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__teams_links": {"name": "infra_stg__teams_links", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__teams/infra_stg__teams.md", "original_file_path": "models/infra/staging/base/infra_stg__teams/infra_stg__teams.md", "unique_id": "doc.yoda.infra_stg__teams_links", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__teams_name": {"name": "infra_stg__teams_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__teams/infra_stg__teams.md", "original_file_path": "models/infra/staging/base/infra_stg__teams/infra_stg__teams.md", "unique_id": "doc.yoda.infra_stg__teams_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__upsolver_outputs": {"name": "infra_stg__upsolver_outputs", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "original_file_path": "models/infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "unique_id": "doc.yoda.infra_stg__upsolver_outputs", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__upsolver_outputs_databaseName": {"name": "infra_stg__upsolver_outputs_databaseName", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "original_file_path": "models/infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "unique_id": "doc.yoda.infra_stg__upsolver_outputs_databaseName", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__upsolver_outputs_name": {"name": "infra_stg__upsolver_outputs_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "original_file_path": "models/infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "unique_id": "doc.yoda.infra_stg__upsolver_outputs_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__upsolver_outputs_tableName": {"name": "infra_stg__upsolver_outputs_tableName", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "original_file_path": "models/infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "unique_id": "doc.yoda.infra_stg__upsolver_outputs_tableName", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__upsolver_outputs_ts": {"name": "infra_stg__upsolver_outputs_ts", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "original_file_path": "models/infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "unique_id": "doc.yoda.infra_stg__upsolver_outputs_ts", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__upsolver_outputs_workspaceName": {"name": "infra_stg__upsolver_outputs_workspaceName", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "original_file_path": "models/infra/staging/base/infra_stg__upsolver_outputs/infra_stg__upsolver_outputs.md", "unique_id": "doc.yoda.infra_stg__upsolver_outputs_workspaceName", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs": {"name": "infra_stg__workflow_runs", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs", "block_contents": "Yotpo github repositories worfklow actions runs"}, "doc.yoda.infra_stg__workflow_runs_check_suite_id": {"name": "infra_stg__workflow_runs_check_suite_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_check_suite_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_check_suite_node_id": {"name": "infra_stg__workflow_runs_check_suite_node_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_check_suite_node_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_conclusion": {"name": "infra_stg__workflow_runs_conclusion", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_conclusion", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_created_at": {"name": "infra_stg__workflow_runs_created_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_event": {"name": "infra_stg__workflow_runs_event", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_head_branch": {"name": "infra_stg__workflow_runs_head_branch", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_head_branch", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_head_sha": {"name": "infra_stg__workflow_runs_head_sha", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_head_sha", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_id": {"name": "infra_stg__workflow_runs_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_name": {"name": "infra_stg__workflow_runs_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_node_id": {"name": "infra_stg__workflow_runs_node_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_node_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_repo_name": {"name": "infra_stg__workflow_runs_repo_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_repo_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_run_attempt": {"name": "infra_stg__workflow_runs_run_attempt", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_run_attempt", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_run_number": {"name": "infra_stg__workflow_runs_run_number", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_run_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_run_started_at": {"name": "infra_stg__workflow_runs_run_started_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_run_started_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_status": {"name": "infra_stg__workflow_runs_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_updated_at": {"name": "infra_stg__workflow_runs_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_url": {"name": "infra_stg__workflow_runs_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflow_runs_workflow_id": {"name": "infra_stg__workflow_runs_workflow_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "original_file_path": "models/infra/staging/base/infra_stg__workflow_runs/infra_stg__workflow_runs.md", "unique_id": "doc.yoda.infra_stg__workflow_runs_workflow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflows": {"name": "infra_stg__workflows", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "original_file_path": "models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "unique_id": "doc.yoda.infra_stg__workflows", "block_contents": "Yotpo github actions metadata as extracted from https://docs.github.com/en/rest/actions/workflows?apiVersion=2022-11-28#list-repository-workflows"}, "doc.yoda.infra_stg__workflows_created_at": {"name": "infra_stg__workflows_created_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "original_file_path": "models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "unique_id": "doc.yoda.infra_stg__workflows_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflows_id": {"name": "infra_stg__workflows_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "original_file_path": "models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "unique_id": "doc.yoda.infra_stg__workflows_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflows_name": {"name": "infra_stg__workflows_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "original_file_path": "models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "unique_id": "doc.yoda.infra_stg__workflows_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflows_node_id": {"name": "infra_stg__workflows_node_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "original_file_path": "models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "unique_id": "doc.yoda.infra_stg__workflows_node_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflows_path": {"name": "infra_stg__workflows_path", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "original_file_path": "models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "unique_id": "doc.yoda.infra_stg__workflows_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflows_repo_name": {"name": "infra_stg__workflows_repo_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "original_file_path": "models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "unique_id": "doc.yoda.infra_stg__workflows_repo_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflows_state": {"name": "infra_stg__workflows_state", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "original_file_path": "models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "unique_id": "doc.yoda.infra_stg__workflows_state", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflows_updated_at": {"name": "infra_stg__workflows_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "original_file_path": "models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "unique_id": "doc.yoda.infra_stg__workflows_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__workflows_url": {"name": "infra_stg__workflows_url", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "original_file_path": "models/infra/staging/base/infra_stg__workflows/infra_stg__workflows.md", "unique_id": "doc.yoda.infra_stg__workflows_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost": {"name": "infra_stg__aws_s3_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost", "block_contents": "Aggregated AWS S3 cost table based on AWS Billing report"}, "doc.yoda.infra_stg__aws_s3_cost_account_name": {"name": "infra_stg__aws_s3_cost_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_account_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_amortized_cost": {"name": "infra_stg__aws_s3_cost_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_amortized_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_bill_payer_account_id": {"name": "infra_stg__aws_s3_cost_bill_payer_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_bill_payer_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_bill_start_date": {"name": "infra_stg__aws_s3_cost_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_bill_start_date", "block_contents": "Billing date for a specific S3 service (day granularity)"}, "doc.yoda.infra_stg__aws_s3_cost_billing_period": {"name": "infra_stg__aws_s3_cost_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_billing_period", "block_contents": "Billing period date monthly"}, "doc.yoda.infra_stg__aws_s3_cost_bucket": {"name": "infra_stg__aws_s3_cost_bucket", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_bucket", "block_contents": "Bucket name"}, "doc.yoda.infra_stg__aws_s3_cost_cost": {"name": "infra_stg__aws_s3_cost_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_cost", "block_contents": "Sum of unblended cost per day"}, "doc.yoda.infra_stg__aws_s3_cost_credit": {"name": "infra_stg__aws_s3_cost_credit", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_credit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_data_transfer_cost": {"name": "infra_stg__aws_s3_cost_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_data_transfer_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_discount": {"name": "infra_stg__aws_s3_cost_discount", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_final_cost": {"name": "infra_stg__aws_s3_cost_final_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_final_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_line_item_line_item_type": {"name": "infra_stg__aws_s3_cost_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_line_item_line_item_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_line_item_usage_type": {"name": "infra_stg__aws_s3_cost_line_item_usage_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_line_item_usage_type", "block_contents": "Out/In-Bytes, Requests-Tier,TimedStorage, StorageAnalytics, DataTransfer, Inventory-ObjectsListed, Retrieval, EarlyDelete-ByteHrs"}, "doc.yoda.infra_stg__aws_s3_cost_product_line": {"name": "infra_stg__aws_s3_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_product_product_family": {"name": "infra_stg__aws_s3_cost_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_product_product_family", "block_contents": "Data Transfer, API Request, Storage, Fee"}, "doc.yoda.infra_stg__aws_s3_cost_resource_tags_user_feature": {"name": "infra_stg__aws_s3_cost_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_resource_tags_user_feature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_resource_tags_user_group": {"name": "infra_stg__aws_s3_cost_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_resource_tags_user_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_resource_tags_user_product_line": {"name": "infra_stg__aws_s3_cost_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_resource_tags_user_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_resource_tags_user_team": {"name": "infra_stg__aws_s3_cost_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_resource_tags_user_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_tax_cost": {"name": "infra_stg__aws_s3_cost_tax_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_tax_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_unblended_cost": {"name": "infra_stg__aws_s3_cost_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_unblended_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_cost_usage_cost": {"name": "infra_stg__aws_s3_cost_usage_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_cost/infra_stg__aws_s3_cost.md", "unique_id": "doc.yoda.infra_stg__aws_s3_cost_usage_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_inventory_data": {"name": "infra_stg__aws_s3_inventory_data", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data", "block_contents": "S3 Inventory table set up [here|https://github.com/YotpoLtd/costpo/blob/master/dags/dags/s3_cost.py] and scheduled [here|https://airflow-data-infra.data-group.yotpo.xyz/graph?dag_id=s3_cost]"}, "doc.yoda.infra_stg__aws_s3_inventory_data_bucket": {"name": "infra_stg__aws_s3_inventory_data_bucket", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_bucket", "block_contents": "Bucket name"}, "doc.yoda.infra_stg__aws_s3_inventory_data_day": {"name": "infra_stg__aws_s3_inventory_data_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_day", "block_contents": "Day of the month"}, "doc.yoda.infra_stg__aws_s3_inventory_data_e_tag": {"name": "infra_stg__aws_s3_inventory_data_e_tag", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_e_tag", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_encryption_status": {"name": "infra_stg__aws_s3_inventory_data_encryption_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_encryption_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_intelligent_tiering_access_tier": {"name": "infra_stg__aws_s3_inventory_data_intelligent_tiering_access_tier", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_intelligent_tiering_access_tier", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_is_multipart_uploaded": {"name": "infra_stg__aws_s3_inventory_data_is_multipart_uploaded", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_is_multipart_uploaded", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_key": {"name": "infra_stg__aws_s3_inventory_data_key", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_last_modified_date": {"name": "infra_stg__aws_s3_inventory_data_last_modified_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_last_modified_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_month": {"name": "infra_stg__aws_s3_inventory_data_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_month", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_object_lock_legal_hold_status": {"name": "infra_stg__aws_s3_inventory_data_object_lock_legal_hold_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_object_lock_legal_hold_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_object_lock_mode": {"name": "infra_stg__aws_s3_inventory_data_object_lock_mode", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_object_lock_mode", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_object_lock_retain_until_date": {"name": "infra_stg__aws_s3_inventory_data_object_lock_retain_until_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_object_lock_retain_until_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_prefix1": {"name": "infra_stg__aws_s3_inventory_data_prefix1", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_prefix1", "block_contents": "Object name split by Prefix (/) - first level (root)"}, "doc.yoda.infra_stg__aws_s3_inventory_data_prefix2": {"name": "infra_stg__aws_s3_inventory_data_prefix2", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_prefix2", "block_contents": "Object name split by Prefix (/) - second level"}, "doc.yoda.infra_stg__aws_s3_inventory_data_product_line": {"name": "infra_stg__aws_s3_inventory_data_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__aws_s3_inventory_data_replication_status": {"name": "infra_stg__aws_s3_inventory_data_replication_status", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_replication_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_size": {"name": "infra_stg__aws_s3_inventory_data_size", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_size", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_storage_class": {"name": "infra_stg__aws_s3_inventory_data_storage_class", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_storage_class", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__aws_s3_inventory_data_year": {"name": "infra_stg__aws_s3_inventory_data_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__aws_s3_inventory_data/infra_stg__aws_s3_inventory_data.md", "unique_id": "doc.yoda.infra_stg__aws_s3_inventory_data_year", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra__staging_ec2_cost": {"name": "infra__staging_ec2_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra__staging_ec2_cost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__ec2_cost_account_name": {"name": "infra_stg__ec2_cost_account_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_account_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_ags": {"name": "infra_stg__ec2_cost_ags", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_ags", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_amortized_cost": {"name": "infra_stg__ec2_cost_amortized_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_amortized_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_bill_payer_account_id": {"name": "infra_stg__ec2_cost_bill_payer_account_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_bill_payer_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_bill_start_date": {"name": "infra_stg__ec2_cost_bill_start_date", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_bill_start_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_billing_period": {"name": "infra_stg__ec2_cost_billing_period", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_billing_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_is_managed_by_cast_ai": {"name": "infra_stg__ec2_cost_is_managed_by_cast_ai", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_is_managed_by_cast_ai", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_line_item_line_item_type": {"name": "infra_stg__ec2_cost_line_item_line_item_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_line_item_line_item_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_pricing_term": {"name": "infra_stg__ec2_cost_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_pricing_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_product_instance_type": {"name": "infra_stg__ec2_cost_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_product_instance_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_product_line": {"name": "infra_stg__ec2_cost_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_product_product_family": {"name": "infra_stg__ec2_cost_product_product_family", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_product_product_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_product_region": {"name": "infra_stg__ec2_cost_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_product_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_resource_tags_user_component": {"name": "infra_stg__ec2_cost_resource_tags_user_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_resource_tags_user_component", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_resource_tags_user_environment": {"name": "infra_stg__ec2_cost_resource_tags_user_environment", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_resource_tags_user_environment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_resource_tags_user_feature": {"name": "infra_stg__ec2_cost_resource_tags_user_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_resource_tags_user_feature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_resource_tags_user_group": {"name": "infra_stg__ec2_cost_resource_tags_user_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_resource_tags_user_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_resource_tags_user_product_line": {"name": "infra_stg__ec2_cost_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_resource_tags_user_product_line", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_resource_tags_user_sub_component": {"name": "infra_stg__ec2_cost_resource_tags_user_sub_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_resource_tags_user_sub_component", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_resource_tags_user_team": {"name": "infra_stg__ec2_cost_resource_tags_user_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_resource_tags_user_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__ec2_cost_unblended_cost": {"name": "infra_stg__ec2_cost_unblended_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__ec2_cost/infra_stg__ec2_cost.md", "unique_id": "doc.yoda.infra_stg__ec2_cost_unblended_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra__staging_kubernetes_cost": {"name": "infra__staging_kubernetes_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra__staging_kubernetes_cost", "block_contents": "TODO: Update Table Description"}, "doc.yoda.infra_stg__kubernetes_cost_availability_zone": {"name": "infra_stg__kubernetes_cost_availability_zone", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_availability_zone", "block_contents": "Availability zone"}, "doc.yoda.infra_stg__kubernetes_cost_billing_day": {"name": "infra_stg__kubernetes_cost_billing_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_billing_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_cluster": {"name": "infra_stg__kubernetes_cost_cluster", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_cluster", "block_contents": "Cluster"}, "doc.yoda.infra_stg__kubernetes_cost_component": {"name": "infra_stg__kubernetes_cost_component", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_component", "block_contents": "Component"}, "doc.yoda.infra_stg__kubernetes_cost_compute_cost": {"name": "infra_stg__kubernetes_cost_compute_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_compute_cost", "block_contents": "Compute cost"}, "doc.yoda.infra_stg__kubernetes_cost_cpuCoreUsageMax": {"name": "infra_stg__kubernetes_cost_cpuCoreUsageMax", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_cpuCoreUsageMax", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_cpucorehours": {"name": "infra_stg__kubernetes_cost_cpucorehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_cpucorehours", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_cpucorerequestaverage": {"name": "infra_stg__kubernetes_cost_cpucorerequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_cpucorerequestaverage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_cpucores": {"name": "infra_stg__kubernetes_cost_cpucores", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_cpucores", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_cpucoreusageaverage": {"name": "infra_stg__kubernetes_cost_cpucoreusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_cpucoreusageaverage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_cpucost": {"name": "infra_stg__kubernetes_cost_cpucost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_cpucost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_cpuefficiency": {"name": "infra_stg__kubernetes_cost_cpuefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_cpuefficiency", "block_contents": "CPU efficiency"}, "doc.yoda.infra_stg__kubernetes_cost_data_transfer_cost": {"name": "infra_stg__kubernetes_cost_data_transfer_cost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_data_transfer_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_day": {"name": "infra_stg__kubernetes_cost_day", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_ec2_id": {"name": "infra_stg__kubernetes_cost_ec2_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_ec2_id", "block_contents": "EC2 instance id"}, "doc.yoda.infra_stg__kubernetes_cost_feature": {"name": "infra_stg__kubernetes_cost_feature", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_feature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_group": {"name": "infra_stg__kubernetes_cost_group", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_group", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_is_cast": {"name": "infra_stg__kubernetes_cost_is_cast", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_is_cast", "block_contents": "Indicates if the pod is managed by castai"}, "doc.yoda.infra_stg__kubernetes_cost_minutes": {"name": "infra_stg__kubernetes_cost_minutes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_minutes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_month": {"name": "infra_stg__kubernetes_cost_month", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_name": {"name": "infra_stg__kubernetes_cost_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_namespace": {"name": "infra_stg__kubernetes_cost_namespace", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_namespace", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_networkcost": {"name": "infra_stg__kubernetes_cost_networkcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_networkcost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_networkreceivebytes": {"name": "infra_stg__kubernetes_cost_networkreceivebytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_networkreceivebytes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_networktransferbytes": {"name": "infra_stg__kubernetes_cost_networktransferbytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_networktransferbytes", "block_contents": "Network transfer bytes"}, "doc.yoda.infra_stg__kubernetes_cost_pricing_term": {"name": "infra_stg__kubernetes_cost_pricing_term", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_pricing_term", "block_contents": "Pricing term - On demand / Spot"}, "doc.yoda.infra_stg__kubernetes_cost_product_instance_type": {"name": "infra_stg__kubernetes_cost_product_instance_type", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_product_instance_type", "block_contents": "Product instance type"}, "doc.yoda.infra_stg__kubernetes_cost_product_memory": {"name": "infra_stg__kubernetes_cost_product_memory", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_product_memory", "block_contents": "Product memory"}, "doc.yoda.infra_stg__kubernetes_cost_product_network_performance": {"name": "infra_stg__kubernetes_cost_product_network_performance", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_product_network_performance", "block_contents": "Product network performance"}, "doc.yoda.infra_stg__kubernetes_cost_product_region": {"name": "infra_stg__kubernetes_cost_product_region", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_product_region", "block_contents": "Product region"}, "doc.yoda.infra_stg__kubernetes_cost_product_storage": {"name": "infra_stg__kubernetes_cost_product_storage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_product_storage", "block_contents": "Product storage"}, "doc.yoda.infra_stg__kubernetes_cost_product_vcpu": {"name": "infra_stg__kubernetes_cost_product_vcpu", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_product_vcpu", "block_contents": "Product virtual CPU"}, "doc.yoda.infra_stg__kubernetes_cost_productline": {"name": "infra_stg__kubernetes_cost_productline", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_productline", "block_contents": "Product line that is tagged to the resource. Each service gathers it from a different label"}, "doc.yoda.infra_stg__kubernetes_cost_pvcost": {"name": "infra_stg__kubernetes_cost_pvcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_pvcost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_ramByteUsageMax": {"name": "infra_stg__kubernetes_cost_ramByteUsageMax", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_ramByteUsageMax", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_rambytehours": {"name": "infra_stg__kubernetes_cost_rambytehours", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_rambytehours", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_rambyterequestaverage": {"name": "infra_stg__kubernetes_cost_rambyterequestaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_rambyterequestaverage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_rambytes": {"name": "infra_stg__kubernetes_cost_rambytes", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_rambytes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_rambyteusageaverage": {"name": "infra_stg__kubernetes_cost_rambyteusageaverage", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_rambyteusageaverage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_ramcost": {"name": "infra_stg__kubernetes_cost_ramcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_ramcost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_ramefficiency": {"name": "infra_stg__kubernetes_cost_ramefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_ramefficiency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_release_name": {"name": "infra_stg__kubernetes_cost_release_name", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_release_name", "block_contents": "Name of a feature which are executed by a service, for instance spark job name"}, "doc.yoda.infra_stg__kubernetes_cost_resource_tags_user_product_line": {"name": "infra_stg__kubernetes_cost_resource_tags_user_product_line", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_resource_tags_user_product_line", "block_contents": "Product line , EC2 tag"}, "doc.yoda.infra_stg__kubernetes_cost_run_id": {"name": "infra_stg__kubernetes_cost_run_id", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_run_id", "block_contents": "Pod name (or a dedicated service run id, for instance, spark job id)"}, "doc.yoda.infra_stg__kubernetes_cost_service": {"name": "infra_stg__kubernetes_cost_service", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_service", "block_contents": "Service running by the pod (e.g. spark/airflow/ect.)"}, "doc.yoda.infra_stg__kubernetes_cost_sub_service": {"name": "infra_stg__kubernetes_cost_sub_service", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_sub_service", "block_contents": "Sub service running by the pod (e.g. spark executor/worker)"}, "doc.yoda.infra_stg__kubernetes_cost_subsystem": {"name": "infra_stg__kubernetes_cost_subsystem", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_subsystem", "block_contents": "Sub System"}, "doc.yoda.infra_stg__kubernetes_cost_system": {"name": "infra_stg__kubernetes_cost_system", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_system", "block_contents": "System"}, "doc.yoda.infra_stg__kubernetes_cost_team": {"name": "infra_stg__kubernetes_cost_team", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_team", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_totalcost": {"name": "infra_stg__kubernetes_cost_totalcost", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_totalcost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_totalefficiency": {"name": "infra_stg__kubernetes_cost_totalefficiency", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_totalefficiency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.infra_stg__kubernetes_cost_year": {"name": "infra_stg__kubernetes_cost_year", "resource_type": "doc", "package_name": "yoda", "path": "infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "original_file_path": "models/infra/staging/marts_compatible/infra_stg__kubernetes_cost/infra_stg__kubernetes_cost.md", "unique_id": "doc.yoda.infra_stg__kubernetes_cost_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot": {"name": "loyalty__dim_consumer_entity_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_aov": {"name": "loyalty__dim_consumer_entity_daily_snapshot_aov", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_aov", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_aov_usd": {"name": "loyalty__dim_consumer_entity_daily_snapshot_aov_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_aov_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_app_key": {"name": "loyalty__dim_consumer_entity_daily_snapshot_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_asavg_star_rating": {"name": "loyalty__dim_consumer_entity_daily_snapshot_asavg_star_rating", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_asavg_star_rating", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_avg_sentiment": {"name": "loyalty__dim_consumer_entity_daily_snapshot_avg_sentiment", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_avg_sentiment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_billing_cities": {"name": "loyalty__dim_consumer_entity_daily_snapshot_billing_cities", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_billing_cities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_billing_country_codes": {"name": "loyalty__dim_consumer_entity_daily_snapshot_billing_country_codes", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_billing_country_codes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_birthday": {"name": "loyalty__dim_consumer_entity_daily_snapshot_birthday", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_birthday", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_birthday_last_sent": {"name": "loyalty__dim_consumer_entity_daily_snapshot_birthday_last_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_birthday_last_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_channel": {"name": "loyalty__dim_consumer_entity_daily_snapshot_channel", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_company_name": {"name": "loyalty__dim_consumer_entity_daily_snapshot_company_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_company_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_count_negative_reviews": {"name": "loyalty__dim_consumer_entity_daily_snapshot_count_negative_reviews", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_count_negative_reviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_count_positive_reviews": {"name": "loyalty__dim_consumer_entity_daily_snapshot_count_positive_reviews", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_count_positive_reviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_count_reviews": {"name": "loyalty__dim_consumer_entity_daily_snapshot_count_reviews", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_count_reviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_created_at": {"name": "loyalty__dim_consumer_entity_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_customer_id": {"name": "loyalty__dim_consumer_entity_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_customer_opted_in_at": {"name": "loyalty__dim_consumer_entity_daily_snapshot_customer_opted_in_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_customer_opted_in_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_email": {"name": "loyalty__dim_consumer_entity_daily_snapshot_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_email_sent_count": {"name": "loyalty__dim_consumer_entity_daily_snapshot_email_sent_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_email_sent_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_name": {"name": "loyalty__dim_consumer_entity_daily_snapshot_first_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_purchase_at": {"name": "loyalty__dim_consumer_entity_daily_snapshot_first_purchase_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_purchase_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value": {"name": "loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value_cents": {"name": "loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value_on_base_currency": {"name": "loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value_on_base_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value_usd": {"name": "loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_purchase_value_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_redemption_date": {"name": "loyalty__dim_consumer_entity_daily_snapshot_first_redemption_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_first_redemption_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_id": {"name": "loyalty__dim_consumer_entity_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_is_loyalty_member": {"name": "loyalty__dim_consumer_entity_daily_snapshot_is_loyalty_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_is_loyalty_member", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_is_member": {"name": "loyalty__dim_consumer_entity_daily_snapshot_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_is_member", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_last_name": {"name": "loyalty__dim_consumer_entity_daily_snapshot_last_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_last_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_last_purchase_at": {"name": "loyalty__dim_consumer_entity_daily_snapshot_last_purchase_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_last_purchase_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_last_redemption_date": {"name": "loyalty__dim_consumer_entity_daily_snapshot_last_redemption_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_last_redemption_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_last_review_sentiment": {"name": "loyalty__dim_consumer_entity_daily_snapshot_last_review_sentiment", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_last_review_sentiment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_last_review_star_rating": {"name": "loyalty__dim_consumer_entity_daily_snapshot_last_review_star_rating", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_last_review_star_rating", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_cents": {"name": "loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_cents_applied_to_campaigns": {"name": "loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_cents_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_cents_applied_to_campaigns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency": {"name": "loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency_applied_to_campaigns": {"name": "loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency_applied_to_campaigns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_usd": {"name": "loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_usd_applied_to_campaigns": {"name": "loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_usd_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_lifetime_spend_usd_applied_to_campaigns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_likelihood_to_make_a_purchase": {"name": "loyalty__dim_consumer_entity_daily_snapshot_likelihood_to_make_a_purchase", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_likelihood_to_make_a_purchase", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_merchant_id": {"name": "loyalty__dim_consumer_entity_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_name": {"name": "loyalty__dim_consumer_entity_daily_snapshot_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_not_eligible": {"name": "loyalty__dim_consumer_entity_daily_snapshot_not_eligible", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_not_eligible", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_points_balance": {"name": "loyalty__dim_consumer_entity_daily_snapshot_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_points_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_points_earned": {"name": "loyalty__dim_consumer_entity_daily_snapshot_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_points_earned", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_points_redeemed": {"name": "loyalty__dim_consumer_entity_daily_snapshot_points_redeemed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_points_redeemed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referral_amount_cents": {"name": "loyalty__dim_consumer_entity_daily_snapshot_referral_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referral_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referral_amount_on_base_currency": {"name": "loyalty__dim_consumer_entity_daily_snapshot_referral_amount_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referral_amount_on_base_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referral_amount_usd": {"name": "loyalty__dim_consumer_entity_daily_snapshot_referral_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referral_amount_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referral_links_clicked": {"name": "loyalty__dim_consumer_entity_daily_snapshot_referral_links_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referral_links_clicked", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referral_orders": {"name": "loyalty__dim_consumer_entity_daily_snapshot_referral_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referral_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referred_by_customer": {"name": "loyalty__dim_consumer_entity_daily_snapshot_referred_by_customer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_referred_by_customer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_remaining_to_next_tier": {"name": "loyalty__dim_consumer_entity_daily_snapshot_remaining_to_next_tier", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_remaining_to_next_tier", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_shipping_cities": {"name": "loyalty__dim_consumer_entity_daily_snapshot_shipping_cities", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_shipping_cities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_shipping_country_codes": {"name": "loyalty__dim_consumer_entity_daily_snapshot_shipping_country_codes", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_shipping_country_codes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_topics": {"name": "loyalty__dim_consumer_entity_daily_snapshot_topics", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_topics", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_amount_deducted_points": {"name": "loyalty__dim_consumer_entity_daily_snapshot_total_amount_deducted_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_amount_deducted_points", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_coupons_used": {"name": "loyalty__dim_consumer_entity_daily_snapshot_total_coupons_used", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_coupons_used", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_purchases": {"name": "loyalty__dim_consumer_entity_daily_snapshot_total_purchases", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_purchases", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_purchases_applied_to_campaigns": {"name": "loyalty__dim_consumer_entity_daily_snapshot_total_purchases_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_purchases_applied_to_campaigns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_refunds": {"name": "loyalty__dim_consumer_entity_daily_snapshot_total_refunds", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_refunds", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_times_point_redeemed": {"name": "loyalty__dim_consumer_entity_daily_snapshot_total_times_point_redeemed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_total_times_point_redeemed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_user_id": {"name": "loyalty__dim_consumer_entity_daily_snapshot_user_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_vip_tier_id": {"name": "loyalty__dim_consumer_entity_daily_snapshot_vip_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_vip_tier_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_vip_tier_name": {"name": "loyalty__dim_consumer_entity_daily_snapshot_vip_tier_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_vip_tier_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_vip_tier_next_id": {"name": "loyalty__dim_consumer_entity_daily_snapshot_vip_tier_next_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_vip_tier_next_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_vip_tier_next_name": {"name": "loyalty__dim_consumer_entity_daily_snapshot_vip_tier_next_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__consumer_entity_daily_snapshot/loyalty__dim_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_consumer_entity_daily_snapshot_vip_tier_next_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__customer_group_date_history": {"name": "loyalty__customer_group_date_history", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "unique_id": "doc.yoda.loyalty__customer_group_date_history", "block_contents": "Table holds category and value for each group_customer_id.\nThe value for each category will update only when a new relevant value is found.\nGranularity: group_customer_id | merchant_group_id | category"}, "doc.yoda.loyalty__customer_group_date_history_category": {"name": "loyalty__customer_group_date_history_category", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "unique_id": "doc.yoda.loyalty__customer_group_date_history_category", "block_contents": "category name example: 'last_reset_date'"}, "doc.yoda.loyalty__customer_group_date_history_dwh_updated_at": {"name": "loyalty__customer_group_date_history_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "unique_id": "doc.yoda.loyalty__customer_group_date_history_dwh_updated_at", "block_contents": "row update date"}, "doc.yoda.loyalty__customer_group_date_history_group_customer_id": {"name": "loyalty__customer_group_date_history_group_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "unique_id": "doc.yoda.loyalty__customer_group_date_history_group_customer_id", "block_contents": ""}, "doc.yoda.loyalty__customer_group_date_history_merchant_group_id": {"name": "loyalty__customer_group_date_history_merchant_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "unique_id": "doc.yoda.loyalty__customer_group_date_history_merchant_group_id", "block_contents": ""}, "doc.yoda.loyalty__customer_group_date_history_value": {"name": "loyalty__customer_group_date_history_value", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "original_file_path": "models/loyalty/marts/loyalty__customer_group_date_history/loyalty__customer_group_date_history.md", "unique_id": "doc.yoda.loyalty__customer_group_date_history_value", "block_contents": "category value example: for category: 'last_reset_date' the value will be the date of the latest point tranaction reset date"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily": {"name": "loyalty__customer_point_transaction_metrics_daily", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily", "block_contents": "Aggregated daily table for group_customer_id point transactions.\nContains only dates where customer_group had points tranaction.\nGranularity: date | group_customer_id"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_closing_outstanding_points_sum": {"name": "loyalty__customer_point_transaction_metrics_daily_closing_outstanding_points_sum", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_closing_outstanding_points_sum", "block_contents": "Sum of all point balances calculated at the end of each day (i.e. taking into account all point transactions that occurred on that date)\nNote: This number should be equal to opening_outstanding_points_sum + outstanding_points_difference_sum"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_date": {"name": "loyalty__customer_point_transaction_metrics_daily_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_date", "block_contents": "PK"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_dwh_updated_at": {"name": "loyalty__customer_point_transaction_metrics_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_dwh_updated_at", "block_contents": "table update timestamp"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_earned_points_sum": {"name": "loyalty__customer_point_transaction_metrics_daily_earned_points_sum", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_earned_points_sum", "block_contents": "Sum of positive earning transactions per date"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_earned_reversed_points_sum": {"name": "loyalty__customer_point_transaction_metrics_daily_earned_reversed_points_sum", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_earned_reversed_points_sum", "block_contents": "Sum of negative earning transactions per date"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_expired_points_sum": {"name": "loyalty__customer_point_transaction_metrics_daily_expired_points_sum", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_expired_points_sum", "block_contents": "Sum of negative balance-only transactions with one of the following reason types across customers per date:\nPoint Expiration, Opt Out , Manual Adjustment AND description = Manually expire points"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_group_customer_id": {"name": "loyalty__customer_point_transaction_metrics_daily_group_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_group_customer_id", "block_contents": "PK"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_is_point_reset_date": {"name": "loyalty__customer_point_transaction_metrics_daily_is_point_reset_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_is_point_reset_date", "block_contents": "indicator = 1 if there was a reset of points in point transaction"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_merchant_group_id": {"name": "loyalty__customer_point_transaction_metrics_daily_merchant_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_merchant_group_id", "block_contents": ""}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_negative_outstanding_points_sum": {"name": "loyalty__customer_point_transaction_metrics_daily_negative_outstanding_points_sum", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_negative_outstanding_points_sum", "block_contents": "Sum of outstanding_points that are < 0 for per date"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_opening_outstanding_points_sum": {"name": "loyalty__customer_point_transaction_metrics_daily_opening_outstanding_points_sum", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_opening_outstanding_points_sum", "block_contents": "last date closing_outstanding_points_sum"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_outstanding_points_difference_sum": {"name": "loyalty__customer_point_transaction_metrics_daily_outstanding_points_difference_sum", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_outstanding_points_difference_sum", "block_contents": "Points earned - Points earning reversed - Points redeemed + Points reimbursed - Points expired per date"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_positive_outstanding_points_sum": {"name": "loyalty__customer_point_transaction_metrics_daily_positive_outstanding_points_sum", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_positive_outstanding_points_sum", "block_contents": "Sum of outstanding_points that are > 0 for per date"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_redeemed_points_sum": {"name": "loyalty__customer_point_transaction_metrics_daily_redeemed_points_sum", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_redeemed_points_sum", "block_contents": "Sum of negative balance-only transactions with reason_type = Redemption OR [reason_type = Manual Adjustment AND description = \u201cRedeem points for a discount\u201d] per date"}, "doc.yoda.loyalty__customer_point_transaction_metrics_daily_reimbursed_points_sum": {"name": "loyalty__customer_point_transaction_metrics_daily_reimbursed_points_sum", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__customer_point_transaction_metrics_daily/loyalty__customer_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__customer_point_transaction_metrics_daily_reimbursed_points_sum", "block_contents": "Sum of positive balance-only transactions per date"}, "doc.yoda.loyalty__dim_campaigns_daily_snapshot_dwh_updated_at": {"name": "loyalty__dim_campaigns_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_campaigns_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_campaigns_daily_snapshot_id": {"name": "loyalty__dim_campaigns_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_campaigns_daily_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_campaigns_daily_snapshot_min_spend_cents": {"name": "loyalty__dim_campaigns_daily_snapshot_min_spend_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_campaigns_daily_snapshot_min_spend_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_campaigns_daily_snapshot_type": {"name": "loyalty__dim_campaigns_daily_snapshot_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_campaigns_daily_snapshot/loyalty__dim_campaigns_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_campaigns_daily_snapshot_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_customer_id": {"name": "loyalty__dim_customer_birthdays_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_day": {"name": "loyalty__dim_customer_birthdays_daily_snapshot_day", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_day", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_dwh_updated_at": {"name": "loyalty__dim_customer_birthdays_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_group_customer_id": {"name": "loyalty__dim_customer_birthdays_daily_snapshot_group_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_group_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_last_sent": {"name": "loyalty__dim_customer_birthdays_daily_snapshot_last_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_last_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_merchant_id": {"name": "loyalty__dim_customer_birthdays_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_month": {"name": "loyalty__dim_customer_birthdays_daily_snapshot_month", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_month", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_year": {"name": "loyalty__dim_customer_birthdays_daily_snapshot_year", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customer_birthdays_daily_snapshot/loyalty__dim_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customer_birthdays_daily_snapshot_year", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_created_at": {"name": "loyalty__dim_customers_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_dwh_updated_at": {"name": "loyalty__dim_customers_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_email": {"name": "loyalty__dim_customers_daily_snapshot_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_email_sent_count": {"name": "loyalty__dim_customers_daily_snapshot_email_sent_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_email_sent_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_exclude_from_reports": {"name": "loyalty__dim_customers_daily_snapshot_exclude_from_reports", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_exclude_from_reports", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_first_name": {"name": "loyalty__dim_customers_daily_snapshot_first_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_first_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_group_customer_id": {"name": "loyalty__dim_customers_daily_snapshot_group_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_group_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_group_id": {"name": "loyalty__dim_customers_daily_snapshot_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_group_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_id": {"name": "loyalty__dim_customers_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_is_loyalty_member": {"name": "loyalty__dim_customers_daily_snapshot_is_loyalty_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_is_loyalty_member", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_is_member": {"name": "loyalty__dim_customers_daily_snapshot_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_is_member", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_last_name": {"name": "loyalty__dim_customers_daily_snapshot_last_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_last_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_last_purchase_at": {"name": "loyalty__dim_customers_daily_snapshot_last_purchase_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_last_purchase_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_last_seen_at": {"name": "loyalty__dim_customers_daily_snapshot_last_seen_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_last_seen_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_merchant_id": {"name": "loyalty__dim_customers_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_name": {"name": "loyalty__dim_customers_daily_snapshot_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_opted_in_at": {"name": "loyalty__dim_customers_daily_snapshot_opted_in_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_opted_in_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_phone_number": {"name": "loyalty__dim_customers_daily_snapshot_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_phone_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_platform_account_created_at": {"name": "loyalty__dim_customers_daily_snapshot_platform_account_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_platform_account_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_points_balance": {"name": "loyalty__dim_customers_daily_snapshot_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_points_balance", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_points_earned": {"name": "loyalty__dim_customers_daily_snapshot_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_points_earned", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_referred_by_customer_id": {"name": "loyalty__dim_customers_daily_snapshot_referred_by_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_referred_by_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_state": {"name": "loyalty__dim_customers_daily_snapshot_state", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_state", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_store_account_id": {"name": "loyalty__dim_customers_daily_snapshot_store_account_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_store_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_tier_entry_date": {"name": "loyalty__dim_customers_daily_snapshot_tier_entry_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_tier_entry_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_tier_expiration_date": {"name": "loyalty__dim_customers_daily_snapshot_tier_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_tier_expiration_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_updated_at": {"name": "loyalty__dim_customers_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_daily_snapshot_vip_tier_id": {"name": "loyalty__dim_customers_daily_snapshot_vip_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_daily_snapshot/loyalty__dim_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_daily_snapshot_vip_tier_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_action": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_action", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_created_at": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_updated_at": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_created_at": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_updated_at": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_dwh_updated_at": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_email": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_expired_at": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_expired_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_expired_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_history_id": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_history_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_history_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_id": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_is_member": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_is_member", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_merchant_id": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_points_balance": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_points_balance", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_points_earned": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_points_earned", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_rank": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_rank", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_tier_entry_date": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_tier_entry_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_tier_entry_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_tier_expiration_date": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_tier_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_tier_expiration_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_tier_name": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_tier_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_tier_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_vip_tier_id": {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_vip_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot/loyalty__dim_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot_vip_tier_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_account_yotpo_industry": {"name": "loyalty__dim_merchants_daily_snapshot_account_yotpo_industry", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_account_yotpo_industry", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_account_yotpo_industry_confidence_level": {"name": "loyalty__dim_merchants_daily_snapshot_account_yotpo_industry_confidence_level", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_account_yotpo_industry_confidence_level", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_account_yotpo_sub_industry": {"name": "loyalty__dim_merchants_daily_snapshot_account_yotpo_sub_industry", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_account_yotpo_sub_industry", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_app_key": {"name": "loyalty__dim_merchants_daily_snapshot_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_app_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_company_name": {"name": "loyalty__dim_merchants_daily_snapshot_company_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_company_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_created_at": {"name": "loyalty__dim_merchants_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_currency": {"name": "loyalty__dim_merchants_daily_snapshot_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_dwh_updated_at": {"name": "loyalty__dim_merchants_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_group_id": {"name": "loyalty__dim_merchants_daily_snapshot_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_group_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_guid": {"name": "loyalty__dim_merchants_daily_snapshot_guid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_guid", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_id": {"name": "loyalty__dim_merchants_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_is_account_data_excluded": {"name": "loyalty__dim_merchants_daily_snapshot_is_account_data_excluded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_is_account_data_excluded", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_on_free_trial": {"name": "loyalty__dim_merchants_daily_snapshot_on_free_trial", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_on_free_trial", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_platform": {"name": "loyalty__dim_merchants_daily_snapshot_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_test_account": {"name": "loyalty__dim_merchants_daily_snapshot_test_account", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_test_account", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_updated_at": {"name": "loyalty__dim_merchants_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_merchants_daily_snapshot_website": {"name": "loyalty__dim_merchants_daily_snapshot_website", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_merchants_daily_snapshot/loyalty__dim_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_merchants_daily_snapshot_website", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_amount": {"name": "loyalty__dim_referral_codes_daily_snapshot_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_amount_cents": {"name": "loyalty__dim_referral_codes_daily_snapshot_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_amount_usd": {"name": "loyalty__dim_referral_codes_daily_snapshot_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_amount_usd", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_campaign_id": {"name": "loyalty__dim_referral_codes_daily_snapshot_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_completed_at": {"name": "loyalty__dim_referral_codes_daily_snapshot_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_completed_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_created_at": {"name": "loyalty__dim_referral_codes_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_currency": {"name": "loyalty__dim_referral_codes_daily_snapshot_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_customer_id": {"name": "loyalty__dim_referral_codes_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_dwh_updated_at": {"name": "loyalty__dim_referral_codes_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_links_clicked": {"name": "loyalty__dim_referral_codes_daily_snapshot_links_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_links_clicked", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_merchant_id": {"name": "loyalty__dim_referral_codes_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_referral_code_id": {"name": "loyalty__dim_referral_codes_daily_snapshot_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_referral_code_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_referral_id": {"name": "loyalty__dim_referral_codes_daily_snapshot_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_referral_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_referred_customer_id": {"name": "loyalty__dim_referral_codes_daily_snapshot_referred_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_referred_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_shares": {"name": "loyalty__dim_referral_codes_daily_snapshot_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_codes_daily_snapshot/loyalty__dim_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_codes_daily_snapshot_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_amount_cents": {"name": "loyalty__dim_referral_discount_codes_daily_snapshot_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_average_amount_cents": {"name": "loyalty__dim_referral_discount_codes_daily_snapshot_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_average_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_campaign_id": {"name": "loyalty__dim_referral_discount_codes_daily_snapshot_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_created_at": {"name": "loyalty__dim_referral_discount_codes_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_customer_id": {"name": "loyalty__dim_referral_discount_codes_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_dwh_updated_at": {"name": "loyalty__dim_referral_discount_codes_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_id": {"name": "loyalty__dim_referral_discount_codes_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_merchant_id": {"name": "loyalty__dim_referral_discount_codes_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_orders": {"name": "loyalty__dim_referral_discount_codes_daily_snapshot_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_redemption_option_id": {"name": "loyalty__dim_referral_discount_codes_daily_snapshot_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_redemption_option_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_updated_at": {"name": "loyalty__dim_referral_discount_codes_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_referral_discount_codes_daily_snapshot/loyalty__dim_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_referral_discount_codes_daily_snapshot_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_created_at": {"name": "loyalty__dim_subscriptions_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_current": {"name": "loyalty__dim_subscriptions_daily_snapshot_current", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_current", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_daily_amount": {"name": "loyalty__dim_subscriptions_daily_snapshot_daily_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_daily_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_daily_amount_usd": {"name": "loyalty__dim_subscriptions_daily_snapshot_daily_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_daily_amount_usd", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_dwh_updated_at": {"name": "loyalty__dim_subscriptions_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_id": {"name": "loyalty__dim_subscriptions_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_merchant_currency": {"name": "loyalty__dim_subscriptions_daily_snapshot_merchant_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_merchant_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_merchant_id": {"name": "loyalty__dim_subscriptions_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_monthly_amount": {"name": "loyalty__dim_subscriptions_daily_snapshot_monthly_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_monthly_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_monthly_amount_usd": {"name": "loyalty__dim_subscriptions_daily_snapshot_monthly_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_monthly_amount_usd", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_plan_id": {"name": "loyalty__dim_subscriptions_daily_snapshot_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_plan_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_updated_at": {"name": "loyalty__dim_subscriptions_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_was_current": {"name": "loyalty__dim_subscriptions_daily_snapshot_was_current", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_was_current", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_yearly_amount": {"name": "loyalty__dim_subscriptions_daily_snapshot_yearly_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_yearly_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_yearly_amount_usd": {"name": "loyalty__dim_subscriptions_daily_snapshot_yearly_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_subscriptions_daily_snapshot/loyalty__dim_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_subscriptions_daily_snapshot_yearly_amount_usd", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_description": {"name": "loyalty__dim_vip_tiers_daily_snapshot_description", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_dwh_updated_at": {"name": "loyalty__dim_vip_tiers_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_id": {"name": "loyalty__dim_vip_tiers_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_merchant_id": {"name": "loyalty__dim_vip_tiers_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_name": {"name": "loyalty__dim_vip_tiers_daily_snapshot_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_points_earned": {"name": "loyalty__dim_vip_tiers_daily_snapshot_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_points_earned", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_rank": {"name": "loyalty__dim_vip_tiers_daily_snapshot_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_daily_snapshot/loyalty__dim_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_daily_snapshot_rank", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_action": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_action", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_action_performed_at": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_action_performed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_action_performed_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_calculated_rank": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_calculated_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_calculated_rank", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_created_at": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_customer_id": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_dwh_updated_at": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_expired_at": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_expired_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_expired_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_id": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_merchant_id": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_name": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_next_action": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_next_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_next_action", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_next_action_performed_at": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_next_action_performed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_next_action_performed_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_next_tier_name": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_next_tier_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_next_tier_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_next_tier_rank": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_next_tier_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_next_tier_rank", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_rank": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_rank", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_tier_entry_date": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_tier_entry_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_tier_entry_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_tier_expiration_date": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_tier_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_tier_expiration_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_tier_id": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_tier_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_updated_at": {"name": "loyalty__dim_vip_tiers_history_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_vip_tiers_history_daily_snapshot/loyalty__dim_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_vip_tiers_history_daily_snapshot_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_app_key": {"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_app_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_created_at": {"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_dwh_updated_at": {"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_has_secret": {"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot_has_secret", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_has_secret", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_id": {"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_merchant_id": {"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_org_key": {"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot_org_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_org_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_updated_at": {"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__dim_yotpo_platform_accounts_daily_snapshot/loyalty__dim_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_dates_for_investment_metric_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date": {"name": "loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_dates_for_investment_metric_daily_snapshot/loyalty__fact_dates_for_investment_metric_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_clicked": {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_clicked", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_clicked_at": {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot_clicked_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_clicked_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_customer_id": {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_email_campaign_id": {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot_email_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_email_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_marked_as_spam": {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot_marked_as_spam", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_marked_as_spam", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_marked_as_spam_at": {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot_marked_as_spam_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_marked_as_spam_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_merchant_id": {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_sent_at": {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot_sent_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_sent_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_unsubscribed": {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot_unsubscribed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_unsubscribed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_unsubscribed_at": {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot_unsubscribed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_email_campaigns_emails_daily_snapshot/loyalty__fact_email_campaigns_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot_unsubscribed_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_perks_daily_snapshot_completed": {"name": "loyalty__fact_perks_daily_snapshot_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_perks_daily_snapshot_completed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_perks_daily_snapshot_completed_at": {"name": "loyalty__fact_perks_daily_snapshot_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_perks_daily_snapshot_completed_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_perks_daily_snapshot_created_at": {"name": "loyalty__fact_perks_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_perks_daily_snapshot_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_perks_daily_snapshot_customer_id": {"name": "loyalty__fact_perks_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_perks_daily_snapshot_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_perks_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_perks_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_perks_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_perks_daily_snapshot_id": {"name": "loyalty__fact_perks_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_perks_daily_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_perks_daily_snapshot_is_member": {"name": "loyalty__fact_perks_daily_snapshot_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_perks_daily_snapshot_is_member", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_perks_daily_snapshot_merchant_id": {"name": "loyalty__fact_perks_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_perks_daily_snapshot_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_perks_daily_snapshot_reversed": {"name": "loyalty__fact_perks_daily_snapshot_reversed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_perks_daily_snapshot_reversed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_perks_daily_snapshot_reward_points": {"name": "loyalty__fact_perks_daily_snapshot_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_perks_daily_snapshot/loyalty__fact_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_perks_daily_snapshot_reward_points", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_created_date": {"name": "loyalty__fact_purchase_items_daily_snapshot_created_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_created_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_purchase_items_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_id": {"name": "loyalty__fact_purchase_items_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_price": {"name": "loyalty__fact_purchase_items_daily_snapshot_price", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_price", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_price_cents": {"name": "loyalty__fact_purchase_items_daily_snapshot_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_price_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_price_usd": {"name": "loyalty__fact_purchase_items_daily_snapshot_price_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_price_usd", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_product_id": {"name": "loyalty__fact_purchase_items_daily_snapshot_product_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_product_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_purchase_id": {"name": "loyalty__fact_purchase_items_daily_snapshot_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_purchase_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_purchase_item_currency": {"name": "loyalty__fact_purchase_items_daily_snapshot_purchase_item_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_purchase_item_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_quantity": {"name": "loyalty__fact_purchase_items_daily_snapshot_quantity", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchase_items_daily_snapshot/loyalty__fact_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchase_items_daily_snapshot_quantity", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot": {"name": "loyalty__fact_purchases_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot", "block_contents": "Daily snapshot of enriched loyalty purchases data, equivalent to default.swell_purchases_view"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_amount_cents": {"name": "loyalty__fact_purchases_daily_snapshot_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_amount_cents", "block_contents": "TODO: Update Column amount_cents Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_amount_refunded": {"name": "loyalty__fact_purchases_daily_snapshot_amount_refunded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_amount_refunded", "block_contents": "TODO: Update Column amount_refunded Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_amount_refunded_cents": {"name": "loyalty__fact_purchases_daily_snapshot_amount_refunded_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_amount_refunded_cents", "block_contents": "TODO: Update Column amount_refunded_cents Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_amount_refunded_on_base_currency": {"name": "loyalty__fact_purchases_daily_snapshot_amount_refunded_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_amount_refunded_on_base_currency", "block_contents": "TODO: Update Column amount_refunded_on_base_currency Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_amount_refunded_usd": {"name": "loyalty__fact_purchases_daily_snapshot_amount_refunded_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_amount_refunded_usd", "block_contents": "TODO: Update Column amount_refunded_usd Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_applied_to_campaigns": {"name": "loyalty__fact_purchases_daily_snapshot_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_applied_to_campaigns", "block_contents": "TODO: Update Column applied_to_campaigns Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_base_currency": {"name": "loyalty__fact_purchases_daily_snapshot_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_base_currency", "block_contents": "TODO: Update Column base_currency Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_base_currency_exchange_rate_to_usd": {"name": "loyalty__fact_purchases_daily_snapshot_base_currency_exchange_rate_to_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_base_currency_exchange_rate_to_usd", "block_contents": "TODO: Update Column base_currency_exchange_rate_to_usd Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_billing_city": {"name": "loyalty__fact_purchases_daily_snapshot_billing_city", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_billing_city", "block_contents": "TODO: Update Column billing_city Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_billing_country_code": {"name": "loyalty__fact_purchases_daily_snapshot_billing_country_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_billing_country_code", "block_contents": "TODO: Update Column billing_country_code Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_cnt_loyalty_redemptions": {"name": "loyalty__fact_purchases_daily_snapshot_cnt_loyalty_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_cnt_loyalty_redemptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_cnt_referrals_redemptions": {"name": "loyalty__fact_purchases_daily_snapshot_cnt_referrals_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_cnt_referrals_redemptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_count_redemptions": {"name": "loyalty__fact_purchases_daily_snapshot_count_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_count_redemptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_created_at": {"name": "loyalty__fact_purchases_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_created_at", "block_contents": "TODO: Update Column created_at Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_currency": {"name": "loyalty__fact_purchases_daily_snapshot_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_currency", "block_contents": "TODO: Update Column currency Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_customer_id": {"name": "loyalty__fact_purchases_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_customer_id", "block_contents": "TODO: Update Column customer_id Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_customer_opted_in_at": {"name": "loyalty__fact_purchases_daily_snapshot_customer_opted_in_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_customer_opted_in_at", "block_contents": "TODO: Update Column customer_opted_in_at Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_purchases_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_first_point_redemptions_id": {"name": "loyalty__fact_purchases_daily_snapshot_first_point_redemptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_first_point_redemptions_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_id": {"name": "loyalty__fact_purchases_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_customer_opt_in": {"name": "loyalty__fact_purchases_daily_snapshot_is_customer_opt_in", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_customer_opt_in", "block_contents": "TODO: Update Column is_customer_opt_in Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_full_refunded": {"name": "loyalty__fact_purchases_daily_snapshot_is_full_refunded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_full_refunded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_member": {"name": "loyalty__fact_purchases_daily_snapshot_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_member", "block_contents": "TODO: Update Column is_member Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_redeam": {"name": "loyalty__fact_purchases_daily_snapshot_is_redeam", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_redeam", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_redeem": {"name": "loyalty__fact_purchases_daily_snapshot_is_redeem", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_redeem", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_redemption_tied_to_purchase": {"name": "loyalty__fact_purchases_daily_snapshot_is_redemption_tied_to_purchase", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_redemption_tied_to_purchase", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_refunded": {"name": "loyalty__fact_purchases_daily_snapshot_is_refunded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_is_refunded", "block_contents": "TODO: Update Column is_refunded Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_loyalty_purchase_total_discount": {"name": "loyalty__fact_purchases_daily_snapshot_loyalty_purchase_total_discount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_loyalty_purchase_total_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_merchant_id": {"name": "loyalty__fact_purchases_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column merchant_id Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_min_spend_cents": {"name": "loyalty__fact_purchases_daily_snapshot_min_spend_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_min_spend_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_order_id": {"name": "loyalty__fact_purchases_daily_snapshot_order_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_order_id", "block_contents": "TODO: Update Column order_id Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_processor_type": {"name": "loyalty__fact_purchases_daily_snapshot_processor_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_processor_type", "block_contents": "TODO: Update Column processor_type Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_purchase_amount": {"name": "loyalty__fact_purchases_daily_snapshot_purchase_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_purchase_amount", "block_contents": "TODO: Update Column purchase_amount Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_purchase_amount_on_base_currency": {"name": "loyalty__fact_purchases_daily_snapshot_purchase_amount_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_purchase_amount_on_base_currency", "block_contents": "TODO: Update Column purchase_amount_on_base_currency Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_purchase_amount_usd": {"name": "loyalty__fact_purchases_daily_snapshot_purchase_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_purchase_amount_usd", "block_contents": "TODO: Update Column purchase_amount_usd Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_referral_discount_code_id": {"name": "loyalty__fact_purchases_daily_snapshot_referral_discount_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_referral_discount_code_id", "block_contents": "TODO: Update Column referral_discount_code_id Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_referral_id": {"name": "loyalty__fact_purchases_daily_snapshot_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_referral_id", "block_contents": "TODO: Update Column referral_id Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_referral_purchase_total_discount": {"name": "loyalty__fact_purchases_daily_snapshot_referral_purchase_total_discount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_referral_purchase_total_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_shipping_city": {"name": "loyalty__fact_purchases_daily_snapshot_shipping_city", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_shipping_city", "block_contents": "TODO: Update Column shipping_city Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_shipping_country_code": {"name": "loyalty__fact_purchases_daily_snapshot_shipping_country_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_shipping_country_code", "block_contents": "TODO: Update Column shipping_country_code Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_shopper_currency_exchange_rate_to_usd": {"name": "loyalty__fact_purchases_daily_snapshot_shopper_currency_exchange_rate_to_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_shopper_currency_exchange_rate_to_usd", "block_contents": "TODO: Update Column shopper_currency_exchange_rate_to_usd Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_source_redemption": {"name": "loyalty__fact_purchases_daily_snapshot_source_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_source_redemption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_swell_discount_cost": {"name": "loyalty__fact_purchases_daily_snapshot_swell_discount_cost", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_swell_discount_cost", "block_contents": "TODO: Update Column swell_discount_cost Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_swell_discount_cost_cents": {"name": "loyalty__fact_purchases_daily_snapshot_swell_discount_cost_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_swell_discount_cost_cents", "block_contents": "TODO: Update Column swell_discount_cost_cents Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_swell_discount_cost_on_base_currency": {"name": "loyalty__fact_purchases_daily_snapshot_swell_discount_cost_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_swell_discount_cost_on_base_currency", "block_contents": "TODO: Update Column swell_discount_cost_on_base_currency Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_swell_discount_cost_usd": {"name": "loyalty__fact_purchases_daily_snapshot_swell_discount_cost_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_swell_discount_cost_usd", "block_contents": "TODO: Update Column swell_discount_cost_usd Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_total_refunds": {"name": "loyalty__fact_purchases_daily_snapshot_total_refunds", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_total_refunds", "block_contents": "TODO: Update Column total_refunds Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_type": {"name": "loyalty__fact_purchases_daily_snapshot_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_updated_at": {"name": "loyalty__fact_purchases_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_updated_at", "block_contents": "TODO: Update Column updated_at Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_user_agent": {"name": "loyalty__fact_purchases_daily_snapshot_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_user_agent", "block_contents": "TODO: Update Column user_agent Information"}, "doc.yoda.loyalty__fact_purchases_daily_snapshot_user_agent_hash": {"name": "loyalty__fact_purchases_daily_snapshot_user_agent_hash", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_daily_snapshot/loyalty__fact_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_daily_snapshot_user_agent_hash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_purchases_redemptions_daily_snapshot": {"name": "loyalty__fact_purchases_redemptions_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_redemptions_daily_snapshot", "block_contents": "Associative table between loyalty purchases and loyalty point redemptions, equivalent to default.swell_purchases_redemptions_view"}, "doc.yoda.loyalty__fact_purchases_redemptions_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_purchases_redemptions_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_redemptions_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_purchases_redemptions_daily_snapshot_id": {"name": "loyalty__fact_purchases_redemptions_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_redemptions_daily_snapshot_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.loyalty__fact_purchases_redemptions_daily_snapshot_purchase_id": {"name": "loyalty__fact_purchases_redemptions_daily_snapshot_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_redemptions_daily_snapshot_purchase_id", "block_contents": "TODO: Update Column purchase_id Information"}, "doc.yoda.loyalty__fact_purchases_redemptions_daily_snapshot_redemption_id": {"name": "loyalty__fact_purchases_redemptions_daily_snapshot_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_purchases_redemptions_daily_snapshot/loyalty__fact_purchases_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_purchases_redemptions_daily_snapshot_redemption_id", "block_contents": "TODO: Update Column redemption_id Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot": {"name": "loyalty__fact_redemptions_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot", "block_contents": "Daily snapshot of enriched loyalty redemptions (both point redemptions and direct rewards), equivalent to default.swell_redemptions_view"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_amount_deducted": {"name": "loyalty__fact_redemptions_daily_snapshot_amount_deducted", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_amount_deducted", "block_contents": "TODO: Update Column amount_deducted Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_amount_deducted_cents": {"name": "loyalty__fact_redemptions_daily_snapshot_amount_deducted_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_amount_deducted_cents", "block_contents": "TODO: Update Column amount_deducted_cents Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_amount_deducted_points": {"name": "loyalty__fact_redemptions_daily_snapshot_amount_deducted_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_amount_deducted_points", "block_contents": "TODO: Update Column amount_deducted_points Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_amount_deducted_usd": {"name": "loyalty__fact_redemptions_daily_snapshot_amount_deducted_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_amount_deducted_usd", "block_contents": "TODO: Update Column amount_deducted_usd Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_code": {"name": "loyalty__fact_redemptions_daily_snapshot_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_code", "block_contents": "TODO: Update Column code Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_created_at": {"name": "loyalty__fact_redemptions_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_created_at", "block_contents": "TODO: Update Column created_at Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_customer_id": {"name": "loyalty__fact_redemptions_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_customer_id", "block_contents": "TODO: Update Column customer_id Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_discount_percentage": {"name": "loyalty__fact_redemptions_daily_snapshot_discount_percentage", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_discount_percentage", "block_contents": "TODO: Update Column discount_percentage Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_discount_type": {"name": "loyalty__fact_redemptions_daily_snapshot_discount_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_discount_type", "block_contents": "TODO: Update Column discount_type Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_redemptions_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_is_delayed_redemption": {"name": "loyalty__fact_redemptions_daily_snapshot_is_delayed_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_is_delayed_redemption", "block_contents": "TODO: Update Column is_delayed_redemption Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_is_redemption_points_deducted": {"name": "loyalty__fact_redemptions_daily_snapshot_is_redemption_points_deducted", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_is_redemption_points_deducted", "block_contents": "TODO: Update Column is_redemption_points_deducted Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_is_referred_redemption": {"name": "loyalty__fact_redemptions_daily_snapshot_is_referred_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_is_referred_redemption", "block_contents": "TODO: Update Column is_referred_redemption Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_is_referring_redemption": {"name": "loyalty__fact_redemptions_daily_snapshot_is_referring_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_is_referring_redemption", "block_contents": "TODO: Update Column is_referring_redemption Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_merchant_id": {"name": "loyalty__fact_redemptions_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column merchant_id Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_point_redemptions_id": {"name": "loyalty__fact_redemptions_daily_snapshot_point_redemptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_point_redemptions_id", "block_contents": "TODO: Update Column point_redemptions_id Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_redemption_codes_id": {"name": "loyalty__fact_redemptions_daily_snapshot_redemption_codes_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_redemption_codes_id", "block_contents": "TODO: Update Column redemption_codes_id Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_redemption_option_currnecy": {"name": "loyalty__fact_redemptions_daily_snapshot_redemption_option_currnecy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_redemption_option_currnecy", "block_contents": "TODO: Update Column redemption_option_currnecy Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_redemption_option_id": {"name": "loyalty__fact_redemptions_daily_snapshot_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_redemption_option_id", "block_contents": "TODO: Update Column redemption_option_id Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_redemption_source": {"name": "loyalty__fact_redemptions_daily_snapshot_redemption_source", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_redemption_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_updated_at": {"name": "loyalty__fact_redemptions_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_updated_at", "block_contents": "TODO: Update Column updated_at Information"}, "doc.yoda.loyalty__fact_redemptions_daily_snapshot_uses": {"name": "loyalty__fact_redemptions_daily_snapshot_uses", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_daily_snapshot/loyalty__fact_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_daily_snapshot_uses", "block_contents": "TODO: Update Column uses Information"}, "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot": {"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot", "block_contents": "Joined table over redemptions and purchases redemptions daily snapshot tables"}, "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_customer_id": {"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_customer_id", "block_contents": "The internal loyalty id of the customer that made the redemption"}, "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referred_redemption": {"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referred_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referred_redemption", "block_contents": "Wether this redemption was given to the customer for being referred by a friend"}, "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referring_redemption": {"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referring_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referring_redemption", "block_contents": "Wether this redemption was given to the customer for referring a friend"}, "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_merchant_id": {"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_merchant_id", "block_contents": "The internal loyalty id of the merchant"}, "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_point_redemption_id": {"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot_point_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_point_redemption_id", "block_contents": "The internal loyalty id of the redemption"}, "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_purchase_id": {"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_purchase_id", "block_contents": "The internal loyalty id of the purchase the redemption was used on"}, "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_redemption_created_at": {"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot_redemption_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_redemptions_with_purchases_daily_snapshot/loyalty__fact_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot_redemption_created_at", "block_contents": "The time at which point the customer redeemed"}, "doc.yoda.loyalty__fact_referral_perks_daily_snapshot": {"name": "loyalty__fact_referral_perks_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_perks_daily_snapshot", "block_contents": "Daily snapshot of referral perks, equivalent to default.swell_referral_perks_view"}, "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_created_at": {"name": "loyalty__fact_referral_perks_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_created_at", "block_contents": "TODO: Update Column created_at Information"}, "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_customer_id": {"name": "loyalty__fact_referral_perks_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_customer_id", "block_contents": "TODO: Update Column customer_id Information"}, "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_referral_perks_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_id": {"name": "loyalty__fact_referral_perks_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_merchant_id": {"name": "loyalty__fact_referral_perks_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column merchant_id Information"}, "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_redemption_option_id": {"name": "loyalty__fact_referral_perks_daily_snapshot_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_perks_daily_snapshot/loyalty__fact_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_perks_daily_snapshot_redemption_option_id", "block_contents": "TODO: Update Column redemption_option_id Information"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot": {"name": "loyalty__fact_referral_receipts_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot", "block_contents": "Daily snapshot of clicks on referral links, equivalent to default.swell_referral_receipts_view"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_completed_at": {"name": "loyalty__fact_referral_receipts_daily_snapshot_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_completed_at", "block_contents": "TODO: Update Column completed_at Information"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_created_at": {"name": "loyalty__fact_referral_receipts_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_created_at", "block_contents": "TODO: Update Column created_at Information"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_customer_id": {"name": "loyalty__fact_referral_receipts_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_customer_id", "block_contents": "TODO: Update Column customer_id Information"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_referral_receipts_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_id": {"name": "loyalty__fact_referral_receipts_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_is_reversed": {"name": "loyalty__fact_referral_receipts_daily_snapshot_is_reversed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_is_reversed", "block_contents": "TODO: Update Column is_reversed Information"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_merchant_id": {"name": "loyalty__fact_referral_receipts_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column merchant_id Information"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_referral_code_id": {"name": "loyalty__fact_referral_receipts_daily_snapshot_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_referral_code_id", "block_contents": "TODO: Update Column referral_code_id Information"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_referral_discount_code_id": {"name": "loyalty__fact_referral_receipts_daily_snapshot_referral_discount_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_referral_discount_code_id", "block_contents": "TODO: Update Column referral_discount_code_id Information"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_referral_id": {"name": "loyalty__fact_referral_receipts_daily_snapshot_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_referral_id", "block_contents": "TODO: Update Column referral_id Information"}, "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_referred_customer_id": {"name": "loyalty__fact_referral_receipts_daily_snapshot_referred_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_receipts_daily_snapshot/loyalty__fact_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_receipts_daily_snapshot_referred_customer_id", "block_contents": "TODO: Update Column referred_customer_id Information"}, "doc.yoda.loyalty__fact_referral_shares_daily_snapshot": {"name": "loyalty__fact_referral_shares_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_shares_daily_snapshot", "block_contents": "Daily snapshot of all referral link shares, equivalent to default.swell_referral_shares_view"}, "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_created_at": {"name": "loyalty__fact_referral_shares_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_created_at", "block_contents": "TODO: Update Column created_at Information"}, "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_customer_id": {"name": "loyalty__fact_referral_shares_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_customer_id", "block_contents": "TODO: Update Column customer_id Information"}, "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_referral_shares_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_id": {"name": "loyalty__fact_referral_shares_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_merchant_id": {"name": "loyalty__fact_referral_shares_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column merchant_id Information"}, "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_referral_code_id": {"name": "loyalty__fact_referral_shares_daily_snapshot_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_referral_code_id", "block_contents": "TODO: Update Column referral_code_id Information"}, "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_type": {"name": "loyalty__fact_referral_shares_daily_snapshot_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_type", "block_contents": "TODO: Update Column type Information"}, "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_updated_at": {"name": "loyalty__fact_referral_shares_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_shares_daily_snapshot/loyalty__fact_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_shares_daily_snapshot_updated_at", "block_contents": "TODO: Update Column updated_at Information"}, "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot": {"name": "loyalty__fact_referral_snapshots_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot", "block_contents": "Daily snapshot of daily referral link shares and clicks per merchant, equivalent to default.swell_referral_snapshots_view"}, "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot_day": {"name": "loyalty__fact_referral_snapshots_daily_snapshot_day", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot_day", "block_contents": "TODO: Update Column day Information"}, "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_referral_snapshots_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot_id": {"name": "loyalty__fact_referral_snapshots_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot_links_clicked": {"name": "loyalty__fact_referral_snapshots_daily_snapshot_links_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot_links_clicked", "block_contents": "TODO: Update Column links_clicked Information"}, "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot_merchant_id": {"name": "loyalty__fact_referral_snapshots_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referral_snapshots_daily_snapshot/loyalty__fact_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referral_snapshots_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column merchant_id Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_amount_cents": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_amount_cents", "block_contents": "TODO: Update Column amount_cents Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_average_amount_cents": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_average_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_campaign_id": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_campaign_id", "block_contents": "TODO: Update Column campaign_id Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_completed_at": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_completed_at", "block_contents": "TODO: Update Column completed_at Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_count_ua": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_count_ua", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_count_ua", "block_contents": "TODO: Update Column count_ua Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_created_at": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_created_at", "block_contents": "TODO: Update Column created_at Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_currency": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_currency", "block_contents": "TODO: Update Column currency Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_customer_id": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_customer_id", "block_contents": "TODO: Update Column customer_id Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_external_product_id": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_external_product_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_external_product_id", "block_contents": "TODO: Update Column external_product_id Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_id": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_ip_address": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_ip_address", "block_contents": "TODO: Update Column ip_address Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_is_apple_private_relay_ip": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_is_apple_private_relay_ip", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_is_apple_private_relay_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_link_share_type": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_link_share_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_link_share_type", "block_contents": "TODO: Update Column link_share_type Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_manually_override_status": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_manually_override_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_manually_override_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_merchant_id": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column merchant_id Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_orders": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_orders", "block_contents": "TODO: Update Column orders Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_points_balance": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_points_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_points_earned": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_points_earned", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_referral_code_id": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_referral_code_id", "block_contents": "TODO: Update Column referral_code_id Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_referred_user_perk_id": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_referred_user_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_referred_user_perk_id", "block_contents": "TODO: Update Column referred_user_perk_id Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_referrer_perk_id": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_referrer_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_referrer_perk_id", "block_contents": "TODO: Update Column referrer_perk_id Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_referring_host": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_referring_host", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_referring_host", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_updated_at": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_updated_at", "block_contents": "TODO: Update Column updated_at Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_user_agent": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_user_agent", "block_contents": "TODO: Update Column user_agent Information"}, "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_user_agent_id": {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_referrals_without_crawlers_daily_snapshot/loyalty__fact_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot_user_agent_id", "block_contents": "TODO: Update Column user_agent_id Information"}, "doc.yoda.loyalty__fact_refund_items_daily_snapshot": {"name": "loyalty__fact_refund_items_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refund_items_daily_snapshot", "block_contents": "Daily snapshot of loyalty refund items, equivalent to default.swell_refund_items_view"}, "doc.yoda.loyalty__fact_refund_items_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_refund_items_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refund_items_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_refund_items_daily_snapshot_id": {"name": "loyalty__fact_refund_items_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refund_items_daily_snapshot_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.loyalty__fact_refund_items_daily_snapshot_purchase_item_id": {"name": "loyalty__fact_refund_items_daily_snapshot_purchase_item_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refund_items_daily_snapshot_purchase_item_id", "block_contents": "TODO: Update Column purchase_item_id Information"}, "doc.yoda.loyalty__fact_refund_items_daily_snapshot_quantity": {"name": "loyalty__fact_refund_items_daily_snapshot_quantity", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refund_items_daily_snapshot_quantity", "block_contents": "TODO: Update Column quantity Information"}, "doc.yoda.loyalty__fact_refund_items_daily_snapshot_refund_id": {"name": "loyalty__fact_refund_items_daily_snapshot_refund_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refund_items_daily_snapshot/loyalty__fact_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refund_items_daily_snapshot_refund_id", "block_contents": "TODO: Update Column refund_id Information"}, "doc.yoda.loyalty__fact_refunds_daily_snapshot": {"name": "loyalty__fact_refunds_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refunds_daily_snapshot", "block_contents": "Daily snapshot of enriched loyalty refunds data, equivalent to default.swell_refunds_view"}, "doc.yoda.loyalty__fact_refunds_daily_snapshot_amount_cents": {"name": "loyalty__fact_refunds_daily_snapshot_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refunds_daily_snapshot_amount_cents", "block_contents": "TODO: Update Column amount_cents Information"}, "doc.yoda.loyalty__fact_refunds_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_refunds_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refunds_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_refunds_daily_snapshot_purchase_id": {"name": "loyalty__fact_refunds_daily_snapshot_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refunds_daily_snapshot_purchase_id", "block_contents": "TODO: Update Column purchase_id Information"}, "doc.yoda.loyalty__fact_refunds_daily_snapshot_refund_amount": {"name": "loyalty__fact_refunds_daily_snapshot_refund_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refunds_daily_snapshot_refund_amount", "block_contents": "TODO: Update Column refund_amount Information"}, "doc.yoda.loyalty__fact_refunds_daily_snapshot_refund_amount_usd": {"name": "loyalty__fact_refunds_daily_snapshot_refund_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refunds_daily_snapshot_refund_amount_usd", "block_contents": "TODO: Update Column refund_amount_usd Information"}, "doc.yoda.loyalty__fact_refunds_daily_snapshot_refund_currency": {"name": "loyalty__fact_refunds_daily_snapshot_refund_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refunds_daily_snapshot_refund_currency", "block_contents": "TODO: Update Column refund_currency Information"}, "doc.yoda.loyalty__fact_refunds_daily_snapshot_refund_id": {"name": "loyalty__fact_refunds_daily_snapshot_refund_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refunds_daily_snapshot_refund_id", "block_contents": "TODO: Update Column refund_id Information"}, "doc.yoda.loyalty__fact_refunds_daily_snapshot_refunded_at": {"name": "loyalty__fact_refunds_daily_snapshot_refunded_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_refunds_daily_snapshot/loyalty__fact_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_refunds_daily_snapshot_refunded_at", "block_contents": "TODO: Update Column refunded_at Information"}, "doc.yoda.loyalty__fact_user_actions_daily_snapshot": {"name": "loyalty__fact_user_actions_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_user_actions_daily_snapshot", "block_contents": "Daily snapshot of loyalty customers' actions, equivalent to default.swell_user_actions_view"}, "doc.yoda.loyalty__fact_user_actions_daily_snapshot_created_at": {"name": "loyalty__fact_user_actions_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_user_actions_daily_snapshot_created_at", "block_contents": "TODO: Update Column created_at Information"}, "doc.yoda.loyalty__fact_user_actions_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_user_actions_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_user_actions_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_user_actions_daily_snapshot_id": {"name": "loyalty__fact_user_actions_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_user_actions_daily_snapshot_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.loyalty__fact_user_actions_daily_snapshot_merchant_id": {"name": "loyalty__fact_user_actions_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_user_actions_daily_snapshot/loyalty__fact_user_actions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_user_actions_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column merchant_id Information"}, "doc.yoda.loyalty__fact_user_agents_daily_snapshot": {"name": "loyalty__fact_user_agents_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_user_agents_daily_snapshot", "block_contents": "Daily snapshot of loyalty user agents data, equivalent to default.swell_user_agents_view"}, "doc.yoda.loyalty__fact_user_agents_daily_snapshot_dwh_updated_at": {"name": "loyalty__fact_user_agents_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_user_agents_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column dwh_updated_at Information"}, "doc.yoda.loyalty__fact_user_agents_daily_snapshot_id": {"name": "loyalty__fact_user_agents_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_user_agents_daily_snapshot_id", "block_contents": "TODO: Update Column id Information"}, "doc.yoda.loyalty__fact_user_agents_daily_snapshot_user_agent": {"name": "loyalty__fact_user_agents_daily_snapshot_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_user_agents_daily_snapshot_user_agent", "block_contents": "TODO: Update Column user_agent Information"}, "doc.yoda.loyalty__fact_user_agents_daily_snapshot_user_agent_hash": {"name": "loyalty__fact_user_agents_daily_snapshot_user_agent_hash", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__fact_user_agents_daily_snapshot/loyalty__fact_user_agents_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__fact_user_agents_daily_snapshot_user_agent_hash", "block_contents": "TODO: Update Column user_agent_hash Information"}, "doc.yoda.loyalty__merchant_point_transaction_metrics_daily": {"name": "loyalty__merchant_point_transaction_metrics_daily", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__merchant_point_transaction_metrics_daily", "block_contents": "Aggregated daily table for merchant_group_id point transactions across all merchant's customer_groups.\nContains only dates where group_customer had points tranaction.\nIf customer has been reset historic data will not show in table.\nGranularity: date | merchant_group_id"}, "doc.yoda.loyalty__merchant_point_transaction_metrics_daily_dwh_updated_at": {"name": "loyalty__merchant_point_transaction_metrics_daily_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.md", "original_file_path": "models/loyalty/marts/loyalty__merchant_point_transaction_metrics_daily/loyalty__merchant_point_transaction_metrics_daily.md", "unique_id": "doc.yoda.loyalty__merchant_point_transaction_metrics_daily_dwh_updated_at", "block_contents": "table update timestamp"}, "doc.yoda.loyalty__opted_in_customers": {"name": "loyalty__opted_in_customers", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "original_file_path": "models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "unique_id": "doc.yoda.loyalty__opted_in_customers", "block_contents": "Table containing all the customers who are opted into the merchants' loyalty programs"}, "doc.yoda.loyalty__opted_in_customers_app_key": {"name": "loyalty__opted_in_customers_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "original_file_path": "models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "unique_id": "doc.yoda.loyalty__opted_in_customers_app_key", "block_contents": "Merchant unique identifier in Yotpo platform"}, "doc.yoda.loyalty__opted_in_customers_customer_email": {"name": "loyalty__opted_in_customers_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "original_file_path": "models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "unique_id": "doc.yoda.loyalty__opted_in_customers_customer_email", "block_contents": "Customer's email"}, "doc.yoda.loyalty__opted_in_customers_customer_external_id": {"name": "loyalty__opted_in_customers_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "original_file_path": "models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "unique_id": "doc.yoda.loyalty__opted_in_customers_customer_external_id", "block_contents": "Customer identifier on the ecommerce platform - not all ecommerce platforms have ids for guest customers"}, "doc.yoda.loyalty__opted_in_customers_customer_id": {"name": "loyalty__opted_in_customers_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "original_file_path": "models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "unique_id": "doc.yoda.loyalty__opted_in_customers_customer_id", "block_contents": "Customer identifier in the loyalty system"}, "doc.yoda.loyalty__opted_in_customers_opted_in_at": {"name": "loyalty__opted_in_customers_opted_in_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "original_file_path": "models/loyalty/marts/loyalty__opted_in_customers/loyalty__opted_in_customers.md", "unique_id": "doc.yoda.loyalty__opted_in_customers_opted_in_at", "block_contents": "The date in which the customer has opted into the loyalty program - can not be older than the merchant's creation time in loyalty"}, "doc.yoda.loyalty__marts_pixel_events": {"name": "loyalty__marts_pixel_events", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__marts_pixel_events", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__pixel_events_collector_tstamp": {"name": "loyalty__pixel_events_collector_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_collector_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_customer_id": {"name": "loyalty__pixel_events_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_domain_userid": {"name": "loyalty__pixel_events_domain_userid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_domain_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_filled_customer_id": {"name": "loyalty__pixel_events_filled_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_filled_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_hour": {"name": "loyalty__pixel_events_hour", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_hour", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_is_checkout": {"name": "loyalty__pixel_events_is_checkout", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_is_checkout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_is_mobile": {"name": "loyalty__pixel_events_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_last_seen_at": {"name": "loyalty__pixel_events_last_seen_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_last_seen_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_merchant_id": {"name": "loyalty__pixel_events_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_page_url": {"name": "loyalty__pixel_events_page_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_partition_date": {"name": "loyalty__pixel_events_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_se_action": {"name": "loyalty__pixel_events_se_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_se_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_se_category": {"name": "loyalty__pixel_events_se_category", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_se_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_se_label": {"name": "loyalty__pixel_events_se_label", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_se_label", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_se_property": {"name": "loyalty__pixel_events_se_property", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_se_property", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_se_value": {"name": "loyalty__pixel_events_se_value", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_se_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__pixel_events_share_type": {"name": "loyalty__pixel_events_share_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__pixel_events/loyalty__pixel_events.md", "unique_id": "doc.yoda.loyalty__pixel_events_share_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__redeemed_purchases": {"name": "loyalty__redeemed_purchases", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases", "block_contents": "Loyalty purchases made with redemption, matches to redeemed purchases in loyalty ROI dashboard. One entry per redemption on purchase"}, "doc.yoda.loyalty__redeemed_purchases_amount_deducted_points": {"name": "loyalty__redeemed_purchases_amount_deducted_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_amount_deducted_points", "block_contents": "Points Redeemed"}, "doc.yoda.loyalty__redeemed_purchases_app_key": {"name": "loyalty__redeemed_purchases_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_app_key", "block_contents": "merchant's unique identifier in the yotpo platform"}, "doc.yoda.loyalty__redeemed_purchases_customer_email": {"name": "loyalty__redeemed_purchases_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_customer_email", "block_contents": "Customer email"}, "doc.yoda.loyalty__redeemed_purchases_external_customer_id": {"name": "loyalty__redeemed_purchases_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_external_customer_id", "block_contents": "the purchase's customer's unique identifier in the ecommerce platform"}, "doc.yoda.loyalty__redeemed_purchases_external_order_id": {"name": "loyalty__redeemed_purchases_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_external_order_id", "block_contents": "the purchase's unique identifier in the ecommerce platform - could be duplicated with different redemption values"}, "doc.yoda.loyalty__redeemed_purchases_order_date": {"name": "loyalty__redeemed_purchases_order_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_order_date", "block_contents": "the date of the purchase"}, "doc.yoda.loyalty__redeemed_purchases_order_total": {"name": "loyalty__redeemed_purchases_order_total", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_order_total", "block_contents": "the total value of the purchase"}, "doc.yoda.loyalty__redeemed_purchases_redemption_id": {"name": "loyalty__redeemed_purchases_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_redemption_id", "block_contents": "Redemption_id"}, "doc.yoda.loyalty__redeemed_purchases_redemption_option_id": {"name": "loyalty__redeemed_purchases_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases/loyalty__redeemed_purchases.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_redemption_option_id", "block_contents": "Redemption_option_id"}, "doc.yoda.loyalty__redeemed_purchases_with_subs_redemption_option": {"name": "loyalty__redeemed_purchases_with_subs_redemption_option", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_with_subs_redemption_option", "block_contents": "Orders with the yotpo_subs_fixed_amount redemption option"}, "doc.yoda.loyalty__redeemed_purchases_with_subs_redemption_option_amount": {"name": "loyalty__redeemed_purchases_with_subs_redemption_option_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_with_subs_redemption_option_amount", "block_contents": "The amount redeemed according to the redemption option"}, "doc.yoda.loyalty__redeemed_purchases_with_subs_redemption_option_app_key": {"name": "loyalty__redeemed_purchases_with_subs_redemption_option_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_with_subs_redemption_option_app_key", "block_contents": "The merchant's unique identifier in Yotpo platform"}, "doc.yoda.loyalty__redeemed_purchases_with_subs_redemption_option_order_id": {"name": "loyalty__redeemed_purchases_with_subs_redemption_option_order_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_with_subs_redemption_option_order_id", "block_contents": "The order id"}, "doc.yoda.loyalty__redeemed_purchases_with_subs_redemption_option_point_redemption_id": {"name": "loyalty__redeemed_purchases_with_subs_redemption_option_point_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.md", "original_file_path": "models/loyalty/marts/loyalty__redeemed_purchases_with_subs_redemption_option/loyalty__redeemed_purchases_with_subs_redemption_option.md", "unique_id": "doc.yoda.loyalty__redeemed_purchases_with_subs_redemption_option_point_redemption_id", "block_contents": "The point redemption ID"}, "doc.yoda.loyalty__redemptions": {"name": "loyalty__redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "original_file_path": "models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "unique_id": "doc.yoda.loyalty__redemptions", "block_contents": "Loyalty redemptions with customer external id and store account"}, "doc.yoda.loyalty__redemptions_amount_deducted_points": {"name": "loyalty__redemptions_amount_deducted_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "original_file_path": "models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "unique_id": "doc.yoda.loyalty__redemptions_amount_deducted_points", "block_contents": "Amount deducted points"}, "doc.yoda.loyalty__redemptions_app_key": {"name": "loyalty__redemptions_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "original_file_path": "models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "unique_id": "doc.yoda.loyalty__redemptions_app_key", "block_contents": "App key"}, "doc.yoda.loyalty__redemptions_created_at": {"name": "loyalty__redemptions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "original_file_path": "models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "unique_id": "doc.yoda.loyalty__redemptions_created_at", "block_contents": "Creation date"}, "doc.yoda.loyalty__redemptions_customer_email": {"name": "loyalty__redemptions_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "original_file_path": "models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "unique_id": "doc.yoda.loyalty__redemptions_customer_email", "block_contents": "Customer email"}, "doc.yoda.loyalty__redemptions_external_customer_id": {"name": "loyalty__redemptions_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "original_file_path": "models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "unique_id": "doc.yoda.loyalty__redemptions_external_customer_id", "block_contents": "External customer id"}, "doc.yoda.loyalty__redemptions_redemption_id": {"name": "loyalty__redemptions_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "original_file_path": "models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "unique_id": "doc.yoda.loyalty__redemptions_redemption_id", "block_contents": "Redemption id"}, "doc.yoda.loyalty__redemptions_redemption_option_id": {"name": "loyalty__redemptions_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "original_file_path": "models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "unique_id": "doc.yoda.loyalty__redemptions_redemption_option_id", "block_contents": "Redemption option id"}, "doc.yoda.loyalty__redemptions_redemption_source": {"name": "loyalty__redemptions_redemption_source", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "original_file_path": "models/loyalty/marts/loyalty__redemptions/loyalty__redemptions.md", "unique_id": "doc.yoda.loyalty__redemptions_redemption_source", "block_contents": "Redemption source. examples: synergy_subscription/synergy_sms"}, "doc.yoda.loyalty__review_earning_rule_loyalty": {"name": "loyalty__review_earning_rule_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty", "block_contents": "Data on review earning rule in loyalty"}, "doc.yoda.loyalty__review_earning_rule_loyalty_action_attribute_type": {"name": "loyalty__review_earning_rule_loyalty_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_action_attribute_type", "block_contents": "Rating"}, "doc.yoda.loyalty__review_earning_rule_loyalty_action_attribute_value": {"name": "loyalty__review_earning_rule_loyalty_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_action_attribute_value", "block_contents": "Rating score"}, "doc.yoda.loyalty__review_earning_rule_loyalty_action_id": {"name": "loyalty__review_earning_rule_loyalty_action_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_action_id", "block_contents": "The revew_id"}, "doc.yoda.loyalty__review_earning_rule_loyalty_action_type": {"name": "loyalty__review_earning_rule_loyalty_action_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_action_type", "block_contents": "Review"}, "doc.yoda.loyalty__review_earning_rule_loyalty_app_key": {"name": "loyalty__review_earning_rule_loyalty_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_app_key", "block_contents": "Merchant app key"}, "doc.yoda.loyalty__review_earning_rule_loyalty_customer_email": {"name": "loyalty__review_earning_rule_loyalty_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_customer_email", "block_contents": "Customer email"}, "doc.yoda.loyalty__review_earning_rule_loyalty_customer_external_id": {"name": "loyalty__review_earning_rule_loyalty_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_customer_external_id", "block_contents": "Platform customer id"}, "doc.yoda.loyalty__review_earning_rule_loyalty_customer_id": {"name": "loyalty__review_earning_rule_loyalty_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_customer_id", "block_contents": "Loyalty customer id"}, "doc.yoda.loyalty__review_earning_rule_loyalty_customer_phone_number": {"name": "loyalty__review_earning_rule_loyalty_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_customer_phone_number", "block_contents": "Customer phone number"}, "doc.yoda.loyalty__review_earning_rule_loyalty_dwh_updated_at": {"name": "loyalty__review_earning_rule_loyalty_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_dwh_updated_at", "block_contents": "Row apdated at"}, "doc.yoda.loyalty__review_earning_rule_loyalty_id": {"name": "loyalty__review_earning_rule_loyalty_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_id", "block_contents": "Unique identifier"}, "doc.yoda.loyalty__review_earning_rule_loyalty_order_id": {"name": "loyalty__review_earning_rule_loyalty_order_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_order_id", "block_contents": "Review order id"}, "doc.yoda.loyalty__review_earning_rule_loyalty_source_id": {"name": "loyalty__review_earning_rule_loyalty_source_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_source_id", "block_contents": "Earning rule id"}, "doc.yoda.loyalty__review_earning_rule_loyalty_source_type": {"name": "loyalty__review_earning_rule_loyalty_source_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_source_type", "block_contents": "Earning rule"}, "doc.yoda.loyalty__review_earning_rule_loyalty_synergy_id": {"name": "loyalty__review_earning_rule_loyalty_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_synergy_id", "block_contents": "Widget key"}, "doc.yoda.loyalty__review_earning_rule_loyalty_updated_at": {"name": "loyalty__review_earning_rule_loyalty_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__review_earning_rule_loyalty/loyalty__review_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__review_earning_rule_loyalty_updated_at", "block_contents": "Campaign finished"}, "doc.yoda.loyalty__sms_earning_rule_loyalty": {"name": "loyalty__sms_earning_rule_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty", "block_contents": "Data on review earning rule in loyalty"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_action_attribute_type": {"name": "loyalty__sms_earning_rule_loyalty_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_action_attribute_type", "block_contents": "null"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_action_attribute_value": {"name": "loyalty__sms_earning_rule_loyalty_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_action_attribute_value", "block_contents": "null"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_action_id": {"name": "loyalty__sms_earning_rule_loyalty_action_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_action_id", "block_contents": "null"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_action_type": {"name": "loyalty__sms_earning_rule_loyalty_action_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_action_type", "block_contents": "new subscriber"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_app_key": {"name": "loyalty__sms_earning_rule_loyalty_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_app_key", "block_contents": "merchant app key"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_customer_email": {"name": "loyalty__sms_earning_rule_loyalty_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_customer_email", "block_contents": "Customer email"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_customer_external_id": {"name": "loyalty__sms_earning_rule_loyalty_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_customer_external_id", "block_contents": "Platform customer id"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_customer_id": {"name": "loyalty__sms_earning_rule_loyalty_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_customer_id", "block_contents": "Loyalty customer id"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_customer_phone_number": {"name": "loyalty__sms_earning_rule_loyalty_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_customer_phone_number", "block_contents": "Customer phone number"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_dwh_updated_at": {"name": "loyalty__sms_earning_rule_loyalty_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_dwh_updated_at", "block_contents": "Row apdated at"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_id": {"name": "loyalty__sms_earning_rule_loyalty_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_id", "block_contents": "Unique identifier"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_order_id": {"name": "loyalty__sms_earning_rule_loyalty_order_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_order_id", "block_contents": "null"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_source_id": {"name": "loyalty__sms_earning_rule_loyalty_source_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_source_id", "block_contents": "Earning rule id"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_source_type": {"name": "loyalty__sms_earning_rule_loyalty_source_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_source_type", "block_contents": "Earning rule"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_synergy_id": {"name": "loyalty__sms_earning_rule_loyalty_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_synergy_id", "block_contents": "Widget key"}, "doc.yoda.loyalty__sms_earning_rule_loyalty_updated_at": {"name": "loyalty__sms_earning_rule_loyalty_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "original_file_path": "models/loyalty/marts/loyalty__sms_earning_rule_loyalty/loyalty__sms_earning_rule_loyalty.md", "unique_id": "doc.yoda.loyalty__sms_earning_rule_loyalty_updated_at", "block_contents": "Campaign finished"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_aov": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_aov", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_aov", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_aov_usd": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_aov_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_aov_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_app_key": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_asavg_star_rating": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_asavg_star_rating", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_asavg_star_rating", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_avg_sentiment": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_avg_sentiment", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_avg_sentiment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_billing_cities": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_billing_cities", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_billing_cities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_billing_country_codes": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_billing_country_codes", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_billing_country_codes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_birthday": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_birthday", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_birthday", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_birthday_last_sent": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_birthday_last_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_birthday_last_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_channel": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_channel", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_company_name": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_company_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_company_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_count_negative_reviews": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_count_negative_reviews", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_count_negative_reviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_count_positive_reviews": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_count_positive_reviews", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_count_positive_reviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_count_reviews": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_count_reviews", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_count_reviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_created_at": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_customer_opted_in_at": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_customer_opted_in_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_customer_opted_in_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_email": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_email_sent_count": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_email_sent_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_email_sent_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_name": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_first_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_at": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value_cents": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value_on_base_currency": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value_on_base_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value_usd": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_purchase_value_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_redemption_date": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_first_redemption_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_first_redemption_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_id": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_is_loyalty_member": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_is_loyalty_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_is_loyalty_member", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_is_member": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_is_member", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_last_name": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_last_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_last_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_last_purchase_at": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_last_purchase_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_last_purchase_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_last_redemption_date": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_last_redemption_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_last_redemption_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_last_review_sentiment": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_last_review_sentiment", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_last_review_sentiment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_last_review_star_rating": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_last_review_star_rating", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_last_review_star_rating", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_cents": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_cents_applied_to_campaigns": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_cents_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_cents_applied_to_campaigns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency_applied_to_campaigns": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_on_base_currency_applied_to_campaigns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_usd": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_usd_applied_to_campaigns": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_usd_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_lifetime_spend_usd_applied_to_campaigns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_likelihood_to_make_a_purchase": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_likelihood_to_make_a_purchase", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_likelihood_to_make_a_purchase", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_name": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_not_eligible": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_not_eligible", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_not_eligible", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_points_balance": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_points_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_points_earned": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_points_earned", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_points_redeemed": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_points_redeemed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_points_redeemed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referral_amount_cents": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_referral_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referral_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referral_amount_on_base_currency": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_referral_amount_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referral_amount_on_base_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referral_amount_usd": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_referral_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referral_amount_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referral_links_clicked": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_referral_links_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referral_links_clicked", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referral_orders": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_referral_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referral_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referred_by_customer": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_referred_by_customer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_referred_by_customer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_remaining_to_next_tier": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_remaining_to_next_tier", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_remaining_to_next_tier", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_shipping_cities": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_shipping_cities", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_shipping_cities", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_shipping_country_codes": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_shipping_country_codes", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_shipping_country_codes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_topics": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_topics", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_topics", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_amount_deducted_points": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_total_amount_deducted_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_amount_deducted_points", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_coupons_used": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_total_coupons_used", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_coupons_used", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_purchases": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_total_purchases", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_purchases", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_purchases_applied_to_campaigns": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_total_purchases_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_purchases_applied_to_campaigns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_refunds": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_total_refunds", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_refunds", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_times_point_redeemed": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_total_times_point_redeemed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_total_times_point_redeemed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_user_id": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_user_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_id": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_name": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_next_id": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_next_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_next_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_next_name": {"name": "loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_next_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_consumer_entity_daily_snapshot/loyalty__snowflake_consumer_entity_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_consumer_entity_daily_snapshot_vip_tier_next_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_customer_birthdays_daily_snapshot": {"name": "loyalty__marts_snowflake_customer_birthdays_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_customer_birthdays_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_customer_id": {"name": "loyalty__snowflake_customer_birthdays_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_day": {"name": "loyalty__snowflake_customer_birthdays_daily_snapshot_day", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_customer_birthdays_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_group_customer_id": {"name": "loyalty__snowflake_customer_birthdays_daily_snapshot_group_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_group_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_last_sent": {"name": "loyalty__snowflake_customer_birthdays_daily_snapshot_last_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_last_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_customer_birthdays_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_month": {"name": "loyalty__snowflake_customer_birthdays_daily_snapshot_month", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_year": {"name": "loyalty__snowflake_customer_birthdays_daily_snapshot_year", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customer_birthdays_daily_snapshot/loyalty__snowflake_customer_birthdays_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_customers_daily_snapshot": {"name": "loyalty__marts_snowflake_customers_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_customers_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_created_at": {"name": "loyalty__snowflake_customers_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_customers_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_email": {"name": "loyalty__snowflake_customers_daily_snapshot_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_email_sent_count": {"name": "loyalty__snowflake_customers_daily_snapshot_email_sent_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_email_sent_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_exclude_from_reports": {"name": "loyalty__snowflake_customers_daily_snapshot_exclude_from_reports", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_exclude_from_reports", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_first_name": {"name": "loyalty__snowflake_customers_daily_snapshot_first_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_first_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_group_customer_id": {"name": "loyalty__snowflake_customers_daily_snapshot_group_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_group_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_group_id": {"name": "loyalty__snowflake_customers_daily_snapshot_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_id": {"name": "loyalty__snowflake_customers_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_is_member": {"name": "loyalty__snowflake_customers_daily_snapshot_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_is_member", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_last_name": {"name": "loyalty__snowflake_customers_daily_snapshot_last_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_last_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_last_purchase_at": {"name": "loyalty__snowflake_customers_daily_snapshot_last_purchase_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_last_purchase_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_last_seen_at": {"name": "loyalty__snowflake_customers_daily_snapshot_last_seen_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_last_seen_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_customers_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_name": {"name": "loyalty__snowflake_customers_daily_snapshot_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_opted_in_at": {"name": "loyalty__snowflake_customers_daily_snapshot_opted_in_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_opted_in_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_phone_number": {"name": "loyalty__snowflake_customers_daily_snapshot_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_phone_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_platform_account_created_at": {"name": "loyalty__snowflake_customers_daily_snapshot_platform_account_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_platform_account_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_points_balance": {"name": "loyalty__snowflake_customers_daily_snapshot_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_points_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_points_earned": {"name": "loyalty__snowflake_customers_daily_snapshot_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_points_earned", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_referred_by_customer_id": {"name": "loyalty__snowflake_customers_daily_snapshot_referred_by_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_referred_by_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_state": {"name": "loyalty__snowflake_customers_daily_snapshot_state", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_state", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_store_account_id": {"name": "loyalty__snowflake_customers_daily_snapshot_store_account_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_store_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_tier_entry_date": {"name": "loyalty__snowflake_customers_daily_snapshot_tier_entry_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_tier_entry_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_tier_expiration_date": {"name": "loyalty__snowflake_customers_daily_snapshot_tier_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_tier_expiration_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_updated_at": {"name": "loyalty__snowflake_customers_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_daily_snapshot_vip_tier_id": {"name": "loyalty__snowflake_customers_daily_snapshot_vip_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_daily_snapshot/loyalty__snowflake_customers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_daily_snapshot_vip_tier_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_customers_with_vip_tiers_history_daily_snapshot": {"name": "loyalty__marts_snowflake_customers_with_vip_tiers_history_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_customers_with_vip_tiers_history_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_action": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_created_at": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_updated_at": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_created_at": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_updated_at": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_customer_vip_tiers_history_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_email": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_expired_at": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_expired_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_expired_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_history_id": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_history_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_history_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_id": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_is_member": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_is_member", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_points_balance": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_points_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_points_earned": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_points_earned", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_rank": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_rank", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_tier_entry_date": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_tier_entry_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_tier_entry_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_tier_expiration_date": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_tier_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_tier_expiration_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_tier_name": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_tier_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_tier_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_vip_tier_id": {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_vip_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot/loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot_vip_tier_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_dates_for_investment_metric_daily_snapshot": {"name": "loyalty__marts_snowflake_dates_for_investment_metric_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_dates_for_investment_metric_daily_snapshot/loyalty__snowflake_dates_for_investment_metric_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_dates_for_investment_metric_daily_snapshot/loyalty__snowflake_dates_for_investment_metric_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_dates_for_investment_metric_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_dates_for_investment_metric_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_dates_for_investment_metric_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_dates_for_investment_metric_daily_snapshot/loyalty__snowflake_dates_for_investment_metric_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_dates_for_investment_metric_daily_snapshot/loyalty__snowflake_dates_for_investment_metric_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_dates_for_investment_metric_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_dates_for_investment_metric_daily_snapshot_investment_date": {"name": "loyalty__snowflake_dates_for_investment_metric_daily_snapshot_investment_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_dates_for_investment_metric_daily_snapshot/loyalty__snowflake_dates_for_investment_metric_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_dates_for_investment_metric_daily_snapshot/loyalty__snowflake_dates_for_investment_metric_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_dates_for_investment_metric_daily_snapshot_investment_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_email_campagins_emails_daily_snapshot": {"name": "loyalty__marts_snowflake_email_campagins_emails_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_email_campagins_emails_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_clicked": {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_clicked", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_clicked_at": {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot_clicked_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_clicked_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_customer_id": {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_email_campaign_id": {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot_email_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_email_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_marked_as_spam": {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot_marked_as_spam", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_marked_as_spam", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_marked_as_spam_at": {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot_marked_as_spam_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_marked_as_spam_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_sent_at": {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot_sent_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_sent_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_unsubscribed": {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot_unsubscribed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_unsubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_unsubscribed_at": {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot_unsubscribed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campagins_emails_daily_snapshot/loyalty__snowflake_email_campagins_emails_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot_unsubscribed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_email_campaigns": {"name": "loyalty__marts_snowflake_email_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_email_campaigns", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_email_campaigns_activated_at": {"name": "loyalty__snowflake_email_campaigns_activated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_activated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_active": {"name": "loyalty__snowflake_email_campaigns_active", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_active", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_body": {"name": "loyalty__snowflake_email_campaigns_body", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_body", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_campaign_id": {"name": "loyalty__snowflake_email_campaigns_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_created_at": {"name": "loyalty__snowflake_email_campaigns_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_delay_days": {"name": "loyalty__snowflake_email_campaigns_delay_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_delay_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_email_bounced_count": {"name": "loyalty__snowflake_email_campaigns_email_bounced_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_email_bounced_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_email_clicked_count": {"name": "loyalty__snowflake_email_campaigns_email_clicked_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_email_clicked_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_email_delayed_count": {"name": "loyalty__snowflake_email_campaigns_email_delayed_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_email_delayed_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_email_marked_as_spam_count": {"name": "loyalty__snowflake_email_campaigns_email_marked_as_spam_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_email_marked_as_spam_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_email_opened_count": {"name": "loyalty__snowflake_email_campaigns_email_opened_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_email_opened_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_email_rejected_count": {"name": "loyalty__snowflake_email_campaigns_email_rejected_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_email_rejected_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_email_sent_count": {"name": "loyalty__snowflake_email_campaigns_email_sent_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_email_sent_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_email_soft_bounced_count": {"name": "loyalty__snowflake_email_campaigns_email_soft_bounced_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_email_soft_bounced_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_email_unsubscribed_count": {"name": "loyalty__snowflake_email_campaigns_email_unsubscribed_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_email_unsubscribed_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_id": {"name": "loyalty__snowflake_email_campaigns_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_layout": {"name": "loyalty__snowflake_email_campaigns_layout", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_layout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_merchant_id": {"name": "loyalty__snowflake_email_campaigns_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_sent": {"name": "loyalty__snowflake_email_campaigns_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_sent_at": {"name": "loyalty__snowflake_email_campaigns_sent_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_sent_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_show_recommendations": {"name": "loyalty__snowflake_email_campaigns_show_recommendations", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_show_recommendations", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_start_job_id": {"name": "loyalty__snowflake_email_campaigns_start_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_start_job_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_starts_at": {"name": "loyalty__snowflake_email_campaigns_starts_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_starts_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_subject": {"name": "loyalty__snowflake_email_campaigns_subject", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_subject", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_type": {"name": "loyalty__snowflake_email_campaigns_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_email_campaigns_updated_at": {"name": "loyalty__snowflake_email_campaigns_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_email_campaigns/loyalty__snowflake_email_campaigns.md", "unique_id": "doc.yoda.loyalty__snowflake_email_campaigns_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_merchants_daily_snapshot": {"name": "loyalty__marts_snowflake_merchants_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_merchants_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_account_yotpo_industry": {"name": "loyalty__snowflake_merchants_daily_snapshot_account_yotpo_industry", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_account_yotpo_industry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_account_yotpo_industry_confidence_level": {"name": "loyalty__snowflake_merchants_daily_snapshot_account_yotpo_industry_confidence_level", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_account_yotpo_industry_confidence_level", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_account_yotpo_sub_industry": {"name": "loyalty__snowflake_merchants_daily_snapshot_account_yotpo_sub_industry", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_account_yotpo_sub_industry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_app_key": {"name": "loyalty__snowflake_merchants_daily_snapshot_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_company_name": {"name": "loyalty__snowflake_merchants_daily_snapshot_company_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_company_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_created_at": {"name": "loyalty__snowflake_merchants_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_currency": {"name": "loyalty__snowflake_merchants_daily_snapshot_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_merchants_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_group_id": {"name": "loyalty__snowflake_merchants_daily_snapshot_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_guid": {"name": "loyalty__snowflake_merchants_daily_snapshot_guid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_guid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_id": {"name": "loyalty__snowflake_merchants_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_is_account_data_excluded": {"name": "loyalty__snowflake_merchants_daily_snapshot_is_account_data_excluded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_is_account_data_excluded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_on_free_trial": {"name": "loyalty__snowflake_merchants_daily_snapshot_on_free_trial", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_on_free_trial", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_platform": {"name": "loyalty__snowflake_merchants_daily_snapshot_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_test_account": {"name": "loyalty__snowflake_merchants_daily_snapshot_test_account", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_test_account", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_updated_at": {"name": "loyalty__snowflake_merchants_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_website": {"name": "loyalty__snowflake_merchants_daily_snapshot_website", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_merchants_daily_snapshot/loyalty__snowflake_merchants_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_merchants_daily_snapshot_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_perks_daily_snapshot": {"name": "loyalty__marts_snowflake_perks_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_perks_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_perks_daily_snapshot_completed": {"name": "loyalty__snowflake_perks_daily_snapshot_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_perks_daily_snapshot_completed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_perks_daily_snapshot_completed_at": {"name": "loyalty__snowflake_perks_daily_snapshot_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_perks_daily_snapshot_completed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_perks_daily_snapshot_created_at": {"name": "loyalty__snowflake_perks_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_perks_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_perks_daily_snapshot_customer_id": {"name": "loyalty__snowflake_perks_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_perks_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_perks_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_perks_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_perks_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_perks_daily_snapshot_id": {"name": "loyalty__snowflake_perks_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_perks_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_perks_daily_snapshot_is_member": {"name": "loyalty__snowflake_perks_daily_snapshot_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_perks_daily_snapshot_is_member", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_perks_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_perks_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_perks_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_perks_daily_snapshot_reversed": {"name": "loyalty__snowflake_perks_daily_snapshot_reversed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_perks_daily_snapshot_reversed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_perks_daily_snapshot_reward_points": {"name": "loyalty__snowflake_perks_daily_snapshot_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_perks_daily_snapshot/loyalty__snowflake_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_perks_daily_snapshot_reward_points", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_loyalty_pixel_events": {"name": "loyalty__marts_snowflake_loyalty_pixel_events", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_loyalty_pixel_events", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_pixel_events_collector_date": {"name": "loyalty__snowflake_pixel_events_collector_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_collector_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_collector_tstamp": {"name": "loyalty__snowflake_pixel_events_collector_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_collector_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_customer_id": {"name": "loyalty__snowflake_pixel_events_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_domain_userid": {"name": "loyalty__snowflake_pixel_events_domain_userid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_domain_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_filled_customer_id": {"name": "loyalty__snowflake_pixel_events_filled_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_filled_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_hour": {"name": "loyalty__snowflake_pixel_events_hour", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_hour", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_is_checkout": {"name": "loyalty__snowflake_pixel_events_is_checkout", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_is_checkout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_is_mobile": {"name": "loyalty__snowflake_pixel_events_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_last_seen_at": {"name": "loyalty__snowflake_pixel_events_last_seen_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_last_seen_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_merchant_id": {"name": "loyalty__snowflake_pixel_events_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_page_url": {"name": "loyalty__snowflake_pixel_events_page_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_partition_date": {"name": "loyalty__snowflake_pixel_events_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_se_action": {"name": "loyalty__snowflake_pixel_events_se_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_se_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_se_category": {"name": "loyalty__snowflake_pixel_events_se_category", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_se_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_se_label": {"name": "loyalty__snowflake_pixel_events_se_label", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_se_label", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_se_property": {"name": "loyalty__snowflake_pixel_events_se_property", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_se_property", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_se_value": {"name": "loyalty__snowflake_pixel_events_se_value", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_se_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_pixel_events_share_type": {"name": "loyalty__snowflake_pixel_events_share_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_pixel_events/loyalty__snowflake_pixel_events.md", "unique_id": "doc.yoda.loyalty__snowflake_pixel_events_share_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_plans": {"name": "loyalty__marts_snowflake_plans", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_plans", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_plans_base_price_cents": {"name": "loyalty__snowflake_plans_base_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "unique_id": "doc.yoda.loyalty__snowflake_plans_base_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_plans_capped_amount_cents": {"name": "loyalty__snowflake_plans_capped_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "unique_id": "doc.yoda.loyalty__snowflake_plans_capped_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_plans_created_at": {"name": "loyalty__snowflake_plans_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "unique_id": "doc.yoda.loyalty__snowflake_plans_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_plans_id": {"name": "loyalty__snowflake_plans_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "unique_id": "doc.yoda.loyalty__snowflake_plans_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_plans_included_orders": {"name": "loyalty__snowflake_plans_included_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "unique_id": "doc.yoda.loyalty__snowflake_plans_included_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_plans_name": {"name": "loyalty__snowflake_plans_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "unique_id": "doc.yoda.loyalty__snowflake_plans_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_plans_per_order_price_cents": {"name": "loyalty__snowflake_plans_per_order_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "unique_id": "doc.yoda.loyalty__snowflake_plans_per_order_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_plans_updated_at": {"name": "loyalty__snowflake_plans_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_plans/loyalty__snowflake_plans.md", "unique_id": "doc.yoda.loyalty__snowflake_plans_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_purchase_items_daily_snapshot": {"name": "loyalty__marts_snowflake_purchase_items_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_purchase_items_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_purchase_items_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_id": {"name": "loyalty__snowflake_purchase_items_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_price": {"name": "loyalty__snowflake_purchase_items_daily_snapshot_price", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_price_cents": {"name": "loyalty__snowflake_purchase_items_daily_snapshot_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_price_usd": {"name": "loyalty__snowflake_purchase_items_daily_snapshot_price_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_price_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_product_id": {"name": "loyalty__snowflake_purchase_items_daily_snapshot_product_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_purchase_id": {"name": "loyalty__snowflake_purchase_items_daily_snapshot_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_purchase_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_purchase_item_currency": {"name": "loyalty__snowflake_purchase_items_daily_snapshot_purchase_item_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_purchase_item_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_quantity": {"name": "loyalty__snowflake_purchase_items_daily_snapshot_quantity", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchase_items_daily_snapshot/loyalty__snowflake_purchase_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchase_items_daily_snapshot_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_purchases_daily_snapshot": {"name": "loyalty__marts_snowflake_purchases_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_purchases_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_amount_cents": {"name": "loyalty__snowflake_purchases_daily_snapshot_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_amount_refunded": {"name": "loyalty__snowflake_purchases_daily_snapshot_amount_refunded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_amount_refunded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_amount_refunded_cents": {"name": "loyalty__snowflake_purchases_daily_snapshot_amount_refunded_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_amount_refunded_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_amount_refunded_on_base_currency": {"name": "loyalty__snowflake_purchases_daily_snapshot_amount_refunded_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_amount_refunded_on_base_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_amount_refunded_usd": {"name": "loyalty__snowflake_purchases_daily_snapshot_amount_refunded_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_amount_refunded_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_applied_to_campaigns": {"name": "loyalty__snowflake_purchases_daily_snapshot_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_applied_to_campaigns", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_base_currency": {"name": "loyalty__snowflake_purchases_daily_snapshot_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_base_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_base_currency_exchange_rate_to_usd": {"name": "loyalty__snowflake_purchases_daily_snapshot_base_currency_exchange_rate_to_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_base_currency_exchange_rate_to_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_billing_city": {"name": "loyalty__snowflake_purchases_daily_snapshot_billing_city", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_billing_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_billing_country_code": {"name": "loyalty__snowflake_purchases_daily_snapshot_billing_country_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_billing_country_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_cnt_loyalty_redemptions": {"name": "loyalty__snowflake_purchases_daily_snapshot_cnt_loyalty_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_cnt_loyalty_redemptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_cnt_referrals_redemptions": {"name": "loyalty__snowflake_purchases_daily_snapshot_cnt_referrals_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_cnt_referrals_redemptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_count_redemptions": {"name": "loyalty__snowflake_purchases_daily_snapshot_count_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_count_redemptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_created_at": {"name": "loyalty__snowflake_purchases_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_currency": {"name": "loyalty__snowflake_purchases_daily_snapshot_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_customer_id": {"name": "loyalty__snowflake_purchases_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_customer_opted_in_at": {"name": "loyalty__snowflake_purchases_daily_snapshot_customer_opted_in_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_customer_opted_in_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_purchases_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_first_point_redemptions_id": {"name": "loyalty__snowflake_purchases_daily_snapshot_first_point_redemptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_first_point_redemptions_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_id": {"name": "loyalty__snowflake_purchases_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_customer_opt_in": {"name": "loyalty__snowflake_purchases_daily_snapshot_is_customer_opt_in", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_customer_opt_in", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_full_refunded": {"name": "loyalty__snowflake_purchases_daily_snapshot_is_full_refunded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_full_refunded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_member": {"name": "loyalty__snowflake_purchases_daily_snapshot_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_member", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_redeem": {"name": "loyalty__snowflake_purchases_daily_snapshot_is_redeem", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_redeem", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_redemption_tied_to_purchase": {"name": "loyalty__snowflake_purchases_daily_snapshot_is_redemption_tied_to_purchase", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_redemption_tied_to_purchase", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_refunded": {"name": "loyalty__snowflake_purchases_daily_snapshot_is_refunded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_is_refunded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_loyalty_purchase_total_discount": {"name": "loyalty__snowflake_purchases_daily_snapshot_loyalty_purchase_total_discount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_loyalty_purchase_total_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_purchases_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_order_id": {"name": "loyalty__snowflake_purchases_daily_snapshot_order_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_processor_type": {"name": "loyalty__snowflake_purchases_daily_snapshot_processor_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_processor_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_purchase_amount": {"name": "loyalty__snowflake_purchases_daily_snapshot_purchase_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_purchase_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_purchase_amount_on_base_currency": {"name": "loyalty__snowflake_purchases_daily_snapshot_purchase_amount_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_purchase_amount_on_base_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_purchase_amount_usd": {"name": "loyalty__snowflake_purchases_daily_snapshot_purchase_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_purchase_amount_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_referral_discount_code_id": {"name": "loyalty__snowflake_purchases_daily_snapshot_referral_discount_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_referral_discount_code_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_referral_id": {"name": "loyalty__snowflake_purchases_daily_snapshot_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_referral_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_referral_purchase_total_discount": {"name": "loyalty__snowflake_purchases_daily_snapshot_referral_purchase_total_discount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_referral_purchase_total_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_shipping_city": {"name": "loyalty__snowflake_purchases_daily_snapshot_shipping_city", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_shipping_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_shipping_country_code": {"name": "loyalty__snowflake_purchases_daily_snapshot_shipping_country_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_shipping_country_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_shopper_currency_exchange_rate_to_usd": {"name": "loyalty__snowflake_purchases_daily_snapshot_shopper_currency_exchange_rate_to_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_shopper_currency_exchange_rate_to_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_source_redemption": {"name": "loyalty__snowflake_purchases_daily_snapshot_source_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_source_redemption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost": {"name": "loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost_cents": {"name": "loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost_on_base_currency": {"name": "loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost_on_base_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost_on_base_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost_usd": {"name": "loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_swell_discount_cost_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_total_refunds": {"name": "loyalty__snowflake_purchases_daily_snapshot_total_refunds", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_total_refunds", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_updated_at": {"name": "loyalty__snowflake_purchases_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_user_agent": {"name": "loyalty__snowflake_purchases_daily_snapshot_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_daily_snapshot/loyalty__snowflake_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_daily_snapshot_user_agent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_purchases_redemptions_daily_snapshot": {"name": "loyalty__marts_snowflake_purchases_redemptions_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_purchases_redemptions_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_purchases_redemptions_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot_id": {"name": "loyalty__snowflake_purchases_redemptions_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot_purchase_id": {"name": "loyalty__snowflake_purchases_redemptions_daily_snapshot_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot_purchase_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot_redemption_id": {"name": "loyalty__snowflake_purchases_redemptions_daily_snapshot_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_purchases_redemptions_daily_snapshot/loyalty__snowflake_purchases_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot_redemption_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_redemptions_daily_snapshot": {"name": "loyalty__marts_snowflake_redemptions_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_redemptions_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_amount_deducted": {"name": "loyalty__snowflake_redemptions_daily_snapshot_amount_deducted", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_amount_deducted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_amount_deducted_cents": {"name": "loyalty__snowflake_redemptions_daily_snapshot_amount_deducted_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_amount_deducted_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_amount_deducted_points": {"name": "loyalty__snowflake_redemptions_daily_snapshot_amount_deducted_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_amount_deducted_points", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_amount_deducted_usd": {"name": "loyalty__snowflake_redemptions_daily_snapshot_amount_deducted_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_amount_deducted_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_code": {"name": "loyalty__snowflake_redemptions_daily_snapshot_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_created_at": {"name": "loyalty__snowflake_redemptions_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_customer_id": {"name": "loyalty__snowflake_redemptions_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_discount_percentage": {"name": "loyalty__snowflake_redemptions_daily_snapshot_discount_percentage", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_discount_percentage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_discount_type": {"name": "loyalty__snowflake_redemptions_daily_snapshot_discount_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_discount_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_redemptions_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_is_delayed_redemption": {"name": "loyalty__snowflake_redemptions_daily_snapshot_is_delayed_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_is_delayed_redemption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_is_redemption_points_deducted": {"name": "loyalty__snowflake_redemptions_daily_snapshot_is_redemption_points_deducted", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_is_redemption_points_deducted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_is_referred_redemption": {"name": "loyalty__snowflake_redemptions_daily_snapshot_is_referred_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_is_referred_redemption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_is_referring_redemption": {"name": "loyalty__snowflake_redemptions_daily_snapshot_is_referring_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_is_referring_redemption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_redemptions_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_point_redemptions_id": {"name": "loyalty__snowflake_redemptions_daily_snapshot_point_redemptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_point_redemptions_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_redemption_codes_id": {"name": "loyalty__snowflake_redemptions_daily_snapshot_redemption_codes_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_redemption_codes_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_redemption_option_currnecy": {"name": "loyalty__snowflake_redemptions_daily_snapshot_redemption_option_currnecy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_redemption_option_currnecy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_redemption_option_id": {"name": "loyalty__snowflake_redemptions_daily_snapshot_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_redemption_option_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_updated_at": {"name": "loyalty__snowflake_redemptions_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_uses": {"name": "loyalty__snowflake_redemptions_daily_snapshot_uses", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_daily_snapshot/loyalty__snowflake_redemptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_daily_snapshot_uses", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot": {"name": "loyalty__snowflake_redemptions_with_purchases_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_customer_id": {"name": "loyalty__snowflake_redemptions_with_purchases_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_is_referred_redemption": {"name": "loyalty__snowflake_redemptions_with_purchases_daily_snapshot_is_referred_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_is_referred_redemption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_is_referring_redemption": {"name": "loyalty__snowflake_redemptions_with_purchases_daily_snapshot_is_referring_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_is_referring_redemption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_redemptions_with_purchases_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_point_redemption_id": {"name": "loyalty__snowflake_redemptions_with_purchases_daily_snapshot_point_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_point_redemption_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_purchase_id": {"name": "loyalty__snowflake_redemptions_with_purchases_daily_snapshot_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_purchase_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_redemption_created_at": {"name": "loyalty__snowflake_redemptions_with_purchases_daily_snapshot_redemption_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_redemptions_with_purchases_daily_snapshot/loyalty__snowflake_redemptions_with_purchases_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot_redemption_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_referral_codes_daily_snapshot": {"name": "loyalty__marts_snowflake_referral_codes_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_referral_codes_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_amount": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_amount_cents": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_amount_usd": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_amount_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_campaign_id": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_completed_at": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_completed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_created_at": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_currency": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_customer_id": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_links_clicked": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_links_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_links_clicked", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_referral_code_id": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_referral_code_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_referral_id": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_referral_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_referred_customer_id": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_referred_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_referred_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_shares": {"name": "loyalty__snowflake_referral_codes_daily_snapshot_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_codes_daily_snapshot/loyalty__snowflake_referral_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_codes_daily_snapshot_shares", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_referral_discount_codes_daily_snapshot": {"name": "loyalty__marts_snowflake_referral_discount_codes_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_referral_discount_codes_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_amount_cents": {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_average_amount_cents": {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_average_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_campaign_id": {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_created_at": {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_customer_id": {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_id": {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_orders": {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_redemption_option_id": {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_redemption_option_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_updated_at": {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_discount_codes_daily_snapshot/loyalty__snowflake_referral_discount_codes_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_referral_perks_daily_snapshot": {"name": "loyalty__marts_snowflake_referral_perks_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_referral_perks_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_created_at": {"name": "loyalty__snowflake_referral_perks_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_customer_id": {"name": "loyalty__snowflake_referral_perks_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_referral_perks_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_id": {"name": "loyalty__snowflake_referral_perks_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_referral_perks_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_redemption_option_id": {"name": "loyalty__snowflake_referral_perks_daily_snapshot_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_perks_daily_snapshot/loyalty__snowflake_referral_perks_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_perks_daily_snapshot_redemption_option_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_referral_receipts_daily_snapshot": {"name": "loyalty__marts_snowflake_referral_receipts_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_referral_receipts_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_completed_at": {"name": "loyalty__snowflake_referral_receipts_daily_snapshot_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_completed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_created_at": {"name": "loyalty__snowflake_referral_receipts_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_customer_id": {"name": "loyalty__snowflake_referral_receipts_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_referral_receipts_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_id": {"name": "loyalty__snowflake_referral_receipts_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_is_reversed": {"name": "loyalty__snowflake_referral_receipts_daily_snapshot_is_reversed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_is_reversed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_referral_receipts_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_referral_code_id": {"name": "loyalty__snowflake_referral_receipts_daily_snapshot_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_referral_code_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_referral_discount_code_id": {"name": "loyalty__snowflake_referral_receipts_daily_snapshot_referral_discount_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_referral_discount_code_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_referral_id": {"name": "loyalty__snowflake_referral_receipts_daily_snapshot_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_referral_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_referred_customer_id": {"name": "loyalty__snowflake_referral_receipts_daily_snapshot_referred_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_receipts_daily_snapshot/loyalty__snowflake_referral_receipts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_receipts_daily_snapshot_referred_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_referral_shares_daily_snapshot": {"name": "loyalty__marts_snowflake_referral_shares_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_referral_shares_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_created_at": {"name": "loyalty__snowflake_referral_shares_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_customer_id": {"name": "loyalty__snowflake_referral_shares_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_referral_shares_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_id": {"name": "loyalty__snowflake_referral_shares_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_referral_shares_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_referral_code_id": {"name": "loyalty__snowflake_referral_shares_daily_snapshot_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_referral_code_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_type": {"name": "loyalty__snowflake_referral_shares_daily_snapshot_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_updated_at": {"name": "loyalty__snowflake_referral_shares_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_shares_daily_snapshot/loyalty__snowflake_referral_shares_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_shares_daily_snapshot_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_referral_snapshots_daily_snapshot": {"name": "loyalty__marts_snowflake_referral_snapshots_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_referral_snapshots_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot_day": {"name": "loyalty__snowflake_referral_snapshots_daily_snapshot_day", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_referral_snapshots_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot_id": {"name": "loyalty__snowflake_referral_snapshots_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot_links_clicked": {"name": "loyalty__snowflake_referral_snapshots_daily_snapshot_links_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot_links_clicked", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_referral_snapshots_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referral_snapshots_daily_snapshot/loyalty__snowflake_referral_snapshots_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_referrals": {"name": "loyalty__marts_snowflake_referrals", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_referrals", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_referrals_amount_cents": {"name": "loyalty__snowflake_referrals_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_average_amount_cents": {"name": "loyalty__snowflake_referrals_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_average_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_campaign_id": {"name": "loyalty__snowflake_referrals_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_completed_at": {"name": "loyalty__snowflake_referrals_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_completed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_created_at": {"name": "loyalty__snowflake_referrals_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_currency": {"name": "loyalty__snowflake_referrals_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_customer_id": {"name": "loyalty__snowflake_referrals_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_external_product_id": {"name": "loyalty__snowflake_referrals_external_product_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_external_product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_id": {"name": "loyalty__snowflake_referrals_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_ip_address": {"name": "loyalty__snowflake_referrals_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_ip_address", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_is_apple_private_relay_ip": {"name": "loyalty__snowflake_referrals_is_apple_private_relay_ip", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_is_apple_private_relay_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_link_share_type": {"name": "loyalty__snowflake_referrals_link_share_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_link_share_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_manually_override_status": {"name": "loyalty__snowflake_referrals_manually_override_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_manually_override_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_merchant_id": {"name": "loyalty__snowflake_referrals_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_orders": {"name": "loyalty__snowflake_referrals_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_points_balance": {"name": "loyalty__snowflake_referrals_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_points_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_points_earned": {"name": "loyalty__snowflake_referrals_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_points_earned", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_referral_code_id": {"name": "loyalty__snowflake_referrals_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_referral_code_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_referred_user_perk_id": {"name": "loyalty__snowflake_referrals_referred_user_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_referred_user_perk_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_referrer_perk_id": {"name": "loyalty__snowflake_referrals_referrer_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_referrer_perk_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_referring_host": {"name": "loyalty__snowflake_referrals_referring_host", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_referring_host", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_updated_at": {"name": "loyalty__snowflake_referrals_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_user_agent_id": {"name": "loyalty__snowflake_referrals_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals/loyalty__snowflake_referrals.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_user_agent_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_referrals_without_crawlers_daily_snapshot": {"name": "loyalty__marts_snowflake_referrals_without_crawlers_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_referrals_without_crawlers_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_amount_cents": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_campaign_id": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_completed_at": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_completed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_count_ua": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_count_ua", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_count_ua", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_created_at": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_currency": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_customer_id": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_external_product_id": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_external_product_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_external_product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_id": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_ip_address": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_ip_address", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_link_share_type": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_link_share_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_link_share_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_orders": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_referral_code_id": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_referral_code_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_referred_user_perk_id": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_referred_user_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_referred_user_perk_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_referrer_perk_id": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_referrer_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_referrer_perk_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_updated_at": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_user_agent": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_user_agent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_user_agent_id": {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_referrals_without_crawlers_daily_snapshot/loyalty__snowflake_referrals_without_crawlers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot_user_agent_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_refund_items_daily_snapshot": {"name": "loyalty__marts_snowflake_refund_items_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_refund_items_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_refund_items_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_refund_items_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refund_items_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_refund_items_daily_snapshot_id": {"name": "loyalty__snowflake_refund_items_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refund_items_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_refund_items_daily_snapshot_purchase_item_id": {"name": "loyalty__snowflake_refund_items_daily_snapshot_purchase_item_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refund_items_daily_snapshot_purchase_item_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_refund_items_daily_snapshot_quantity": {"name": "loyalty__snowflake_refund_items_daily_snapshot_quantity", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refund_items_daily_snapshot_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_refund_items_daily_snapshot_refund_id": {"name": "loyalty__snowflake_refund_items_daily_snapshot_refund_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refund_items_daily_snapshot/loyalty__snowflake_refund_items_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refund_items_daily_snapshot_refund_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_refunds_daily_snapshot": {"name": "loyalty__marts_snowflake_refunds_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_refunds_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_amount_cents": {"name": "loyalty__snowflake_refunds_daily_snapshot_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_refunds_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_purchase_id": {"name": "loyalty__snowflake_refunds_daily_snapshot_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_purchase_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_refund_amount": {"name": "loyalty__snowflake_refunds_daily_snapshot_refund_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_refund_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_refund_amount_usd": {"name": "loyalty__snowflake_refunds_daily_snapshot_refund_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_refund_amount_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_refund_currency": {"name": "loyalty__snowflake_refunds_daily_snapshot_refund_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_refund_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_refund_id": {"name": "loyalty__snowflake_refunds_daily_snapshot_refund_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_refund_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_refunded_at": {"name": "loyalty__snowflake_refunds_daily_snapshot_refunded_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_refunds_daily_snapshot/loyalty__snowflake_refunds_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_refunds_daily_snapshot_refunded_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_subscriptions": {"name": "loyalty__marts_snowflake_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_subscriptions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_subscriptions_base_price_cents": {"name": "loyalty__snowflake_subscriptions_base_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_base_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_billing_provider": {"name": "loyalty__snowflake_subscriptions_billing_provider", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_billing_provider", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_charge_status": {"name": "loyalty__snowflake_subscriptions_charge_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_charge_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_created_at": {"name": "loyalty__snowflake_subscriptions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_current": {"name": "loyalty__snowflake_subscriptions_current", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_current", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_id": {"name": "loyalty__snowflake_subscriptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_included_orders": {"name": "loyalty__snowflake_subscriptions_included_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_included_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_last_usage_charge_at": {"name": "loyalty__snowflake_subscriptions_last_usage_charge_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_last_usage_charge_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_manual_price_cents": {"name": "loyalty__snowflake_subscriptions_manual_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_manual_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_merchant_id": {"name": "loyalty__snowflake_subscriptions_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_overdue": {"name": "loyalty__snowflake_subscriptions_overdue", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_overdue", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_pending": {"name": "loyalty__snowflake_subscriptions_pending", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_pending", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_per_order_price_cents": {"name": "loyalty__snowflake_subscriptions_per_order_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_per_order_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_percentage_of_redemptions": {"name": "loyalty__snowflake_subscriptions_percentage_of_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_percentage_of_redemptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_percentage_of_referrals": {"name": "loyalty__snowflake_subscriptions_percentage_of_referrals", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_percentage_of_referrals", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_plan_id": {"name": "loyalty__snowflake_subscriptions_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_plan_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_recurring_charge_id": {"name": "loyalty__snowflake_subscriptions_recurring_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_recurring_charge_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_updated_at": {"name": "loyalty__snowflake_subscriptions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_was_current": {"name": "loyalty__snowflake_subscriptions_was_current", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions/loyalty__snowflake_subscriptions.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_was_current", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_subscriptions_daily_snapshot": {"name": "loyalty__marts_snowflake_subscriptions_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_subscriptions_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_created_at": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_current": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_current", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_current", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_daily_amount": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_daily_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_daily_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_daily_amount_usd": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_daily_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_daily_amount_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_id": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_merchant_currency": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_merchant_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_merchant_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_monthly_amount": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_monthly_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_monthly_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_monthly_amount_usd": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_monthly_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_monthly_amount_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_plan_id": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_plan_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_updated_at": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_was_current": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_was_current", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_was_current", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_yearly_amount": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_yearly_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_yearly_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_yearly_amount_usd": {"name": "loyalty__snowflake_subscriptions_daily_snapshot_yearly_amount_usd", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_subscriptions_daily_snapshot/loyalty__snowflake_subscriptions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_subscriptions_daily_snapshot_yearly_amount_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_user_actions_daily_snapshot": {"name": "loyalty__marts_snowflake_user_actions_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_user_actions_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_user_actions_daily_snapshot_created_at": {"name": "loyalty__snowflake_user_actions_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_user_actions_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_user_actions_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_user_actions_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_user_actions_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_user_actions_daily_snapshot_id": {"name": "loyalty__snowflake_user_actions_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_user_actions_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_user_actions_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_user_actions_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_actions_daily_snapshot/loyalty__snowflake_user_actions_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_user_actions_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_user_agents_daily_snapshot": {"name": "loyalty__marts_snowflake_user_agents_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_user_agents_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_user_agents_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_user_agents_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_user_agents_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_user_agents_daily_snapshot_id": {"name": "loyalty__snowflake_user_agents_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_user_agents_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_user_agents_daily_snapshot_user_agent": {"name": "loyalty__snowflake_user_agents_daily_snapshot_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_user_agents_daily_snapshot_user_agent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_user_agents_daily_snapshot_user_agent_hash": {"name": "loyalty__snowflake_user_agents_daily_snapshot_user_agent_hash", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_user_agents_daily_snapshot/loyalty__snowflake_user_agents_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_user_agents_daily_snapshot_user_agent_hash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_vip_tiers_daily_snapshot": {"name": "loyalty__marts_snowflake_vip_tiers_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_vip_tiers_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_description": {"name": "loyalty__snowflake_vip_tiers_daily_snapshot_description", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_vip_tiers_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_id": {"name": "loyalty__snowflake_vip_tiers_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_vip_tiers_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_name": {"name": "loyalty__snowflake_vip_tiers_daily_snapshot_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_points_earned": {"name": "loyalty__snowflake_vip_tiers_daily_snapshot_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_points_earned", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_rank": {"name": "loyalty__snowflake_vip_tiers_daily_snapshot_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_daily_snapshot/loyalty__snowflake_vip_tiers_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_daily_snapshot_rank", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_vip_tiers_history_daily_snapshot": {"name": "loyalty__marts_snowflake_vip_tiers_history_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_vip_tiers_history_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_action": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_action_performed_at": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_action_performed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_action_performed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_calculated_rank": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_calculated_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_calculated_rank", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_created_at": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_customer_id": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_expired_at": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_expired_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_expired_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_id": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_name": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_next_action": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_next_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_next_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_next_action_performed_at": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_next_action_performed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_next_action_performed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_next_tier_name": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_next_tier_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_next_tier_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_next_tier_rank": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_next_tier_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_next_tier_rank", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_rank": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_rank", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_tier_entry_date": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_tier_entry_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_tier_entry_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_tier_expiration_date": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_tier_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_tier_expiration_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_tier_id": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_tier_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_updated_at": {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_vip_tiers_history_daily_snapshot/loyalty__snowflake_vip_tiers_history_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__marts_snowflake_yotpo_platform_accounts_daily_snapshot": {"name": "loyalty__marts_snowflake_yotpo_platform_accounts_daily_snapshot", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__marts_snowflake_yotpo_platform_accounts_daily_snapshot", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_app_key": {"name": "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_created_at": {"name": "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_dwh_updated_at": {"name": "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_has_secret": {"name": "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_has_secret", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_has_secret", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_id": {"name": "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_merchant_id": {"name": "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_org_key": {"name": "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_org_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_org_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_updated_at": {"name": "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "original_file_path": "models/loyalty/marts/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot/loyalty__snowflake_yotpo_platform_accounts_daily_snapshot.md", "unique_id": "doc.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi": {"name": "loyalty__tier_expiring_reminder_kpi", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi", "block_contents": "Data on tier expiring reminder"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_action_attribute_type": {"name": "loyalty__tier_expiring_reminder_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_action_attribute_type", "block_contents": "NULL"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_action_attribute_value": {"name": "loyalty__tier_expiring_reminder_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_action_attribute_value", "block_contents": "NULL"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_action_id": {"name": "loyalty__tier_expiring_reminder_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_action_id", "block_contents": "NULL"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_action_type": {"name": "loyalty__tier_expiring_reminder_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_action_type", "block_contents": "tier maintained/tier earned"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_app_key": {"name": "loyalty__tier_expiring_reminder_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_app_key", "block_contents": "Merchant app key"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_customer_email": {"name": "loyalty__tier_expiring_reminder_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_customer_email", "block_contents": "Customer email"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_customer_external_id": {"name": "loyalty__tier_expiring_reminder_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_customer_external_id", "block_contents": "Platform customer id"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_customer_phone_number": {"name": "loyalty__tier_expiring_reminder_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_customer_phone_number", "block_contents": "Customer phone number"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_dwh_updated_at": {"name": "loyalty__tier_expiring_reminder_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_dwh_updated_at", "block_contents": "Row apdated at"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_id": {"name": "loyalty__tier_expiring_reminder_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_id", "block_contents": "Unique identifier"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_order_id": {"name": "loyalty__tier_expiring_reminder_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_order_id", "block_contents": "NULL"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_source_id": {"name": "loyalty__tier_expiring_reminder_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_source_id", "block_contents": "Tsms_id/email_id"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_source_type": {"name": "loyalty__tier_expiring_reminder_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_source_type", "block_contents": "sms_flow/email_flow"}, "doc.yoda.loyalty__tier_expiring_reminder_kpi_synergy_id": {"name": "loyalty__tier_expiring_reminder_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "original_file_path": "models/loyalty/marts/loyalty__tier_expiring_reminder_kpi/loyalty__tier_expiring_reminder_kpi.md", "unique_id": "doc.yoda.loyalty__tier_expiring_reminder_kpi_synergy_id", "block_contents": "Widget key"}, "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake": {"name": "loyalty__widgetrepodb_customizations_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_created_at": {"name": "loyalty__widgetrepodb_customizations_to_snowflake_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_css_resource_path": {"name": "loyalty__widgetrepodb_customizations_to_snowflake_css_resource_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_css_resource_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_id": {"name": "loyalty__widgetrepodb_customizations_to_snowflake_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_processing_time": {"name": "loyalty__widgetrepodb_customizations_to_snowflake_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_settings_resource_path": {"name": "loyalty__widgetrepodb_customizations_to_snowflake_settings_resource_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_settings_resource_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_ts_ms": {"name": "loyalty__widgetrepodb_customizations_to_snowflake_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_updated_at": {"name": "loyalty__widgetrepodb_customizations_to_snowflake_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_upsolver_schema_version": {"name": "loyalty__widgetrepodb_customizations_to_snowflake_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_customizations_to_snowflake/loyalty__widgetrepodb_customizations_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_customizations_to_snowflake_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_created_at": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_css_override_id": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake_css_override_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_css_override_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_customization_id": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake_customization_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_customization_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_id": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_instance_id": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake_instance_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_instance_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_processing_time": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_static_content_id": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake_static_content_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_static_content_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_template_id": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake_template_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_template_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_ts_ms": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_updated_at": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_upsolver_schema_version": {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instance_versions_to_snowflake/loyalty__widgetrepodb_instance_versions_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake": {"name": "loyalty__widgetrepodb_instances_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_active": {"name": "loyalty__widgetrepodb_instances_to_snowflake_active", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_active", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_auto_update": {"name": "loyalty__widgetrepodb_instances_to_snowflake_auto_update", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_auto_update", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_created_at": {"name": "loyalty__widgetrepodb_instances_to_snowflake_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_current_instance_version_id": {"name": "loyalty__widgetrepodb_instances_to_snowflake_current_instance_version_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_current_instance_version_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_deleted": {"name": "loyalty__widgetrepodb_instances_to_snowflake_deleted", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_guid": {"name": "loyalty__widgetrepodb_instances_to_snowflake_guid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_guid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_id": {"name": "loyalty__widgetrepodb_instances_to_snowflake_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_name": {"name": "loyalty__widgetrepodb_instances_to_snowflake_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_parent_instance_id": {"name": "loyalty__widgetrepodb_instances_to_snowflake_parent_instance_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_parent_instance_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_processing_time": {"name": "loyalty__widgetrepodb_instances_to_snowflake_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_ts_ms": {"name": "loyalty__widgetrepodb_instances_to_snowflake_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_updated_at": {"name": "loyalty__widgetrepodb_instances_to_snowflake_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_upsolver_schema_version": {"name": "loyalty__widgetrepodb_instances_to_snowflake_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_widget_type_id": {"name": "loyalty__widgetrepodb_instances_to_snowflake_widget_type_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_instances_to_snowflake/loyalty__widgetrepodb_instances_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_instances_to_snowflake_widget_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake": {"name": "loyalty__widgetrepodb_static_contents_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_created_at": {"name": "loyalty__widgetrepodb_static_contents_to_snowflake_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_id": {"name": "loyalty__widgetrepodb_static_contents_to_snowflake_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_processing_time": {"name": "loyalty__widgetrepodb_static_contents_to_snowflake_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_resource_path": {"name": "loyalty__widgetrepodb_static_contents_to_snowflake_resource_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_resource_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_ts_ms": {"name": "loyalty__widgetrepodb_static_contents_to_snowflake_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_updated_at": {"name": "loyalty__widgetrepodb_static_contents_to_snowflake_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_upsolver_schema_version": {"name": "loyalty__widgetrepodb_static_contents_to_snowflake_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_static_contents_to_snowflake/loyalty__widgetrepodb_static_contents_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_static_contents_to_snowflake_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake": {"name": "loyalty__widgetrepodb_templates_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_created_at": {"name": "loyalty__widgetrepodb_templates_to_snowflake_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_customization_schema_path": {"name": "loyalty__widgetrepodb_templates_to_snowflake_customization_schema_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_customization_schema_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_dependency_group_id": {"name": "loyalty__widgetrepodb_templates_to_snowflake_dependency_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_dependency_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_id": {"name": "loyalty__widgetrepodb_templates_to_snowflake_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_processing_time": {"name": "loyalty__widgetrepodb_templates_to_snowflake_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_resource_path": {"name": "loyalty__widgetrepodb_templates_to_snowflake_resource_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_resource_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_ts_ms": {"name": "loyalty__widgetrepodb_templates_to_snowflake_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_updated_at": {"name": "loyalty__widgetrepodb_templates_to_snowflake_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_upsolver_schema_version": {"name": "loyalty__widgetrepodb_templates_to_snowflake_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_version": {"name": "loyalty__widgetrepodb_templates_to_snowflake_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_widget_type_id": {"name": "loyalty__widgetrepodb_templates_to_snowflake_widget_type_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_templates_to_snowflake/loyalty__widgetrepodb_templates_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_templates_to_snowflake_widget_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake": {"name": "loyalty__widgetrepodb_widget_types_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_created_at": {"name": "loyalty__widgetrepodb_widget_types_to_snowflake_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_default_customization_id": {"name": "loyalty__widgetrepodb_widget_types_to_snowflake_default_customization_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_default_customization_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_default_template_id": {"name": "loyalty__widgetrepodb_widget_types_to_snowflake_default_template_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_default_template_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_id": {"name": "loyalty__widgetrepodb_widget_types_to_snowflake_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_name": {"name": "loyalty__widgetrepodb_widget_types_to_snowflake_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_processing_time": {"name": "loyalty__widgetrepodb_widget_types_to_snowflake_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_ts_ms": {"name": "loyalty__widgetrepodb_widget_types_to_snowflake_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_updated_at": {"name": "loyalty__widgetrepodb_widget_types_to_snowflake_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_upsolver_schema_version": {"name": "loyalty__widgetrepodb_widget_types_to_snowflake_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "original_file_path": "models/loyalty/marts/loyalty__widgetrepodb_widget_types_to_snowflake/loyalty__widgetrepodb_widget_types_to_snowflake.md", "unique_id": "doc.yoda.loyalty__widgetrepodb_widget_types_to_snowflake_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__campaign_activation_histories": {"name": "loyalty_stg__campaign_activation_histories", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "unique_id": "doc.yoda.loyalty_stg__campaign_activation_histories", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaign_activation_histories_active": {"name": "loyalty_stg__campaign_activation_histories_active", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "unique_id": "doc.yoda.loyalty_stg__campaign_activation_histories_active", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__campaign_activation_histories_campaign_id": {"name": "loyalty_stg__campaign_activation_histories_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "unique_id": "doc.yoda.loyalty_stg__campaign_activation_histories_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__campaign_activation_histories_created_at": {"name": "loyalty_stg__campaign_activation_histories_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "unique_id": "doc.yoda.loyalty_stg__campaign_activation_histories_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__campaign_activation_histories_data_primary_key_524fd5cd8814c3069c72dac0f300db96": {"name": "loyalty_stg__campaign_activation_histories_data_primary_key_524fd5cd8814c3069c72dac0f300db96", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "unique_id": "doc.yoda.loyalty_stg__campaign_activation_histories_data_primary_key_524fd5cd8814c3069c72dac0f300db96", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__campaign_activation_histories_id": {"name": "loyalty_stg__campaign_activation_histories_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "unique_id": "doc.yoda.loyalty_stg__campaign_activation_histories_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__campaign_activation_histories_processing_time": {"name": "loyalty_stg__campaign_activation_histories_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "unique_id": "doc.yoda.loyalty_stg__campaign_activation_histories_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__campaign_activation_histories_updated_at": {"name": "loyalty_stg__campaign_activation_histories_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "unique_id": "doc.yoda.loyalty_stg__campaign_activation_histories_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__campaign_activation_histories_upsolver_schema_version": {"name": "loyalty_stg__campaign_activation_histories_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaign_activation_histories/loyalty_stg__campaign_activation_histories.md", "unique_id": "doc.yoda.loyalty_stg__campaign_activation_histories_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__campaigns_action_filter": {"name": "loyalty_stg__campaigns_action_filter", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_action_filter", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_action_name": {"name": "loyalty_stg__campaigns_action_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_action_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_activated_at": {"name": "loyalty_stg__campaigns_activated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_activated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_active": {"name": "loyalty_stg__campaigns_active", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_active", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_admin_display_name": {"name": "loyalty_stg__campaigns_admin_display_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_admin_display_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_admin_only": {"name": "loyalty_stg__campaigns_admin_only", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_admin_only", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_already_completed": {"name": "loyalty_stg__campaigns_already_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_already_completed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_answer": {"name": "loyalty_stg__campaigns_answer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_answer", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_api_key": {"name": "loyalty_stg__campaigns_api_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_api_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_api_secret": {"name": "loyalty_stg__campaigns_api_secret", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_api_secret", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_archived": {"name": "loyalty_stg__campaigns_archived", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_archived", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_ask_year": {"name": "loyalty_stg__campaigns_ask_year", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_ask_year", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_background_image_id": {"name": "loyalty_stg__campaigns_background_image_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_background_image_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_campaign_codes_count": {"name": "loyalty_stg__campaigns_campaign_codes_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_campaign_codes_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_campaign_tiers": {"name": "loyalty_stg__campaigns_campaign_tiers", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_campaign_tiers", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_created_at": {"name": "loyalty_stg__campaigns_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_cta_text": {"name": "loyalty_stg__campaigns_cta_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_cta_text", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_currency": {"name": "loyalty_stg__campaigns_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_custom_url": {"name": "loyalty_stg__campaigns_custom_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_custom_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_customer_tags": {"name": "loyalty_stg__campaigns_customer_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_customer_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_days_until_next_action": {"name": "loyalty_stg__campaigns_days_until_next_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_days_until_next_action", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_default_email_body": {"name": "loyalty_stg__campaigns_default_email_body", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_default_email_body", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_default_email_subject": {"name": "loyalty_stg__campaigns_default_email_subject", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_default_email_subject", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_default_share_text": {"name": "loyalty_stg__campaigns_default_share_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_default_share_text", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_default_share_text_header": {"name": "loyalty_stg__campaigns_default_share_text_header", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_default_share_text_header", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_default_sms_text": {"name": "loyalty_stg__campaigns_default_sms_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_default_sms_text", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_delay_reward": {"name": "loyalty_stg__campaigns_delay_reward", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_delay_reward", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_delay_reward_days": {"name": "loyalty_stg__campaigns_delay_reward_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_delay_reward_days", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_details": {"name": "loyalty_stg__campaigns_details", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_details", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_display_order": {"name": "loyalty_stg__campaigns_display_order", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_display_order", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_entity_id": {"name": "loyalty_stg__campaigns_entity_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_entity_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_exclude_audience_ids": {"name": "loyalty_stg__campaigns_exclude_audience_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_exclude_audience_ids", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_exclude_customer_tags": {"name": "loyalty_stg__campaigns_exclude_customer_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_exclude_customer_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_exclude_order_tags": {"name": "loyalty_stg__campaigns_exclude_order_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_exclude_order_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_exclude_product_by_types": {"name": "loyalty_stg__campaigns_exclude_product_by_types", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_exclude_product_by_types", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_expired": {"name": "loyalty_stg__campaigns_expired", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_expired", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_expired_at": {"name": "loyalty_stg__campaigns_expired_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_expired_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_extra_copy1": {"name": "loyalty_stg__campaigns_extra_copy1", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_extra_copy1", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_extra_copy2": {"name": "loyalty_stg__campaigns_extra_copy2", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_extra_copy2", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_extra_copy3": {"name": "loyalty_stg__campaigns_extra_copy3", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_extra_copy3", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_facebook_description": {"name": "loyalty_stg__campaigns_facebook_description", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_facebook_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_goal_purchases": {"name": "loyalty_stg__campaigns_goal_purchases", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_goal_purchases", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_goal_spend_cents": {"name": "loyalty_stg__campaigns_goal_spend_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_goal_spend_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_hidden": {"name": "loyalty_stg__campaigns_hidden", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_hidden", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_hours_until_next_action": {"name": "loyalty_stg__campaigns_hours_until_next_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_hours_until_next_action", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_icon": {"name": "loyalty_stg__campaigns_icon", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_icon", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_id": {"name": "loyalty_stg__campaigns_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_image_id": {"name": "loyalty_stg__campaigns_image_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_image_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_include_audience_ids": {"name": "loyalty_stg__campaigns_include_audience_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_include_audience_ids", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_last_scanned_review_id": {"name": "loyalty_stg__campaigns_last_scanned_review_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_last_scanned_review_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_max_perks_per_user": {"name": "loyalty_stg__campaigns_max_perks_per_user", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_max_perks_per_user", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_max_perks_total": {"name": "loyalty_stg__campaigns_max_perks_total", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_max_perks_total", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_merchant_id": {"name": "loyalty_stg__campaigns_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_min_actions_required": {"name": "loyalty_stg__campaigns_min_actions_required", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_min_actions_required", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_min_spend_cents": {"name": "loyalty_stg__campaigns_min_spend_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_min_spend_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_minutes_between_actions": {"name": "loyalty_stg__campaigns_minutes_between_actions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_minutes_between_actions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_minutes_between_perks": {"name": "loyalty_stg__campaigns_minutes_between_perks", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_minutes_between_perks", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_must_be_customer": {"name": "loyalty_stg__campaigns_must_be_customer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_must_be_customer", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_order_tags": {"name": "loyalty_stg__campaigns_order_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_order_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_overflow_enabled": {"name": "loyalty_stg__campaigns_overflow_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_overflow_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_product_map_strategy": {"name": "loyalty_stg__campaigns_product_map_strategy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_product_map_strategy", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_product_restrictions_reward": {"name": "loyalty_stg__campaigns_product_restrictions_reward", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_product_restrictions_reward", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_question": {"name": "loyalty_stg__campaigns_question", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_question", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_receipts_escalation_email": {"name": "loyalty_stg__campaigns_receipts_escalation_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_receipts_escalation_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_receipts_notification_email": {"name": "loyalty_stg__campaigns_receipts_notification_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_receipts_notification_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_redemption_option_id": {"name": "loyalty_stg__campaigns_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_redemption_option_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_referral_auto_apply_coupon": {"name": "loyalty_stg__campaigns_referral_auto_apply_coupon", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_referral_auto_apply_coupon", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_referral_host": {"name": "loyalty_stg__campaigns_referral_host", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_referral_host", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_referral_query_params": {"name": "loyalty_stg__campaigns_referral_query_params", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_referral_query_params", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_referral_redemption_option_id": {"name": "loyalty_stg__campaigns_referral_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_referral_redemption_option_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_referral_redirect_url": {"name": "loyalty_stg__campaigns_referral_redirect_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_referral_redirect_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_referral_reward_points": {"name": "loyalty_stg__campaigns_referral_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_referral_reward_points", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_referred_user_target_campaign_id": {"name": "loyalty_stg__campaigns_referred_user_target_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_referred_user_target_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_referrer_target_campaign_id": {"name": "loyalty_stg__campaigns_referrer_target_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_referrer_target_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_require_product_by_ids": {"name": "loyalty_stg__campaigns_require_product_by_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_require_product_by_ids", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_require_product_by_tags": {"name": "loyalty_stg__campaigns_require_product_by_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_require_product_by_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_require_product_by_types": {"name": "loyalty_stg__campaigns_require_product_by_types", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_require_product_by_types", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_required_order_comparison": {"name": "loyalty_stg__campaigns_required_order_comparison", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_required_order_comparison", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_required_order_count": {"name": "loyalty_stg__campaigns_required_order_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_required_order_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_requires_referral_code": {"name": "loyalty_stg__campaigns_requires_referral_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_requires_referral_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_reward_media_filter": {"name": "loyalty_stg__campaigns_reward_media_filter", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_reward_media_filter", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_reward_percentage": {"name": "loyalty_stg__campaigns_reward_percentage", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_reward_percentage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_reward_points": {"name": "loyalty_stg__campaigns_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_reward_points", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_reward_product_id_map": {"name": "loyalty_stg__campaigns_reward_product_id_map", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_reward_product_id_map", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_reward_text": {"name": "loyalty_stg__campaigns_reward_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_reward_text", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_reward_type": {"name": "loyalty_stg__campaigns_reward_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_reward_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_share_header": {"name": "loyalty_stg__campaigns_share_header", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_share_header", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_share_image_id": {"name": "loyalty_stg__campaigns_share_image_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_share_image_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_share_text": {"name": "loyalty_stg__campaigns_share_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_share_text", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_show_in_admin": {"name": "loyalty_stg__campaigns_show_in_admin", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_show_in_admin", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_show_in_rewards_popup": {"name": "loyalty_stg__campaigns_show_in_rewards_popup", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_show_in_rewards_popup", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_title": {"name": "loyalty_stg__campaigns_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_title", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_type": {"name": "loyalty_stg__campaigns_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_updated_at": {"name": "loyalty_stg__campaigns_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_url": {"name": "loyalty_stg__campaigns_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_use_account_creation_date": {"name": "loyalty_stg__campaigns_use_account_creation_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_use_account_creation_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_use_custom_url": {"name": "loyalty_stg__campaigns_use_custom_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_use_custom_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_use_oauth": {"name": "loyalty_stg__campaigns_use_oauth", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_use_oauth", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_username": {"name": "loyalty_stg__campaigns_username", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_username", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__campaigns_vip_tier_id": {"name": "loyalty_stg__campaigns_vip_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__campaigns/loyalty_stg__campaigns.md", "unique_id": "doc.yoda.loyalty_stg__campaigns_vip_tier_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__config_item": {"name": "loyalty_stg__config_item", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__config_item/loyalty_stg__config_item.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__config_item/loyalty_stg__config_item.md", "unique_id": "doc.yoda.loyalty_stg__config_item", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__container_balance_usage": {"name": "loyalty_stg__container_balance_usage", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__container_balance_usage/loyalty_stg__container_balance_usage.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__container_balance_usage/loyalty_stg__container_balance_usage.md", "unique_id": "doc.yoda.loyalty_stg__container_balance_usage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__currency_rates_base": {"name": "loyalty_stg__currency_rates_base", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.md", "unique_id": "doc.yoda.loyalty_stg__currency_rates_base", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__currency_rates_country": {"name": "loyalty_stg__currency_rates_country", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.md", "unique_id": "doc.yoda.loyalty_stg__currency_rates_country", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__currency_rates_currency": {"name": "loyalty_stg__currency_rates_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.md", "unique_id": "doc.yoda.loyalty_stg__currency_rates_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__currency_rates_date": {"name": "loyalty_stg__currency_rates_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.md", "unique_id": "doc.yoda.loyalty_stg__currency_rates_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__currency_rates_day_of_currency_exchange": {"name": "loyalty_stg__currency_rates_day_of_currency_exchange", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__currency_rates/loyalty_stg__currency_rates.md", "unique_id": "doc.yoda.loyalty_stg__currency_rates_day_of_currency_exchange", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customer_birthdays_created_at": {"name": "loyalty_stg__customer_birthdays_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "unique_id": "doc.yoda.loyalty_stg__customer_birthdays_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customer_birthdays_day": {"name": "loyalty_stg__customer_birthdays_day", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "unique_id": "doc.yoda.loyalty_stg__customer_birthdays_day", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customer_birthdays_group_customer_id": {"name": "loyalty_stg__customer_birthdays_group_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "unique_id": "doc.yoda.loyalty_stg__customer_birthdays_group_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customer_birthdays_id": {"name": "loyalty_stg__customer_birthdays_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "unique_id": "doc.yoda.loyalty_stg__customer_birthdays_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customer_birthdays_last_sent": {"name": "loyalty_stg__customer_birthdays_last_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "unique_id": "doc.yoda.loyalty_stg__customer_birthdays_last_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customer_birthdays_month": {"name": "loyalty_stg__customer_birthdays_month", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "unique_id": "doc.yoda.loyalty_stg__customer_birthdays_month", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customer_birthdays_updated_at": {"name": "loyalty_stg__customer_birthdays_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "unique_id": "doc.yoda.loyalty_stg__customer_birthdays_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customer_birthdays_year": {"name": "loyalty_stg__customer_birthdays_year", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customer_birthdays/loyalty_stg__customer_birthdays.md", "unique_id": "doc.yoda.loyalty_stg__customer_birthdays_year", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_accepts_marketing": {"name": "loyalty_stg__customers_accepts_marketing", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_accepts_marketing", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_created_at": {"name": "loyalty_stg__customers_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_currency": {"name": "loyalty_stg__customers_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_first_name": {"name": "loyalty_stg__customers_first_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_first_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_group_customer_id": {"name": "loyalty_stg__customers_group_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_group_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_has_provided_tax_details": {"name": "loyalty_stg__customers_has_provided_tax_details", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_has_provided_tax_details", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_id": {"name": "loyalty_stg__customers_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_identity_id": {"name": "loyalty_stg__customers_identity_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_identity_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_is_locked": {"name": "loyalty_stg__customers_is_locked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_is_locked", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_is_member": {"name": "loyalty_stg__customers_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_is_member", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_last_name": {"name": "loyalty_stg__customers_last_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_last_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_last_purchase_at": {"name": "loyalty_stg__customers_last_purchase_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_last_purchase_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_merchant_id": {"name": "loyalty_stg__customers_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_name": {"name": "loyalty_stg__customers_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_perks_redeemed": {"name": "loyalty_stg__customers_perks_redeemed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_perks_redeemed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_phone_number": {"name": "loyalty_stg__customers_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_phone_number", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_pos_account_id": {"name": "loyalty_stg__customers_pos_account_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_pos_account_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_processor_id": {"name": "loyalty_stg__customers_processor_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_processor_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_referral_code_id": {"name": "loyalty_stg__customers_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_referral_code_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_referred_by_customer_id": {"name": "loyalty_stg__customers_referred_by_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_referred_by_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_source": {"name": "loyalty_stg__customers_source", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_source", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_store_account_id": {"name": "loyalty_stg__customers_store_account_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_store_account_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_tags": {"name": "loyalty_stg__customers_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_total_purchases": {"name": "loyalty_stg__customers_total_purchases", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_total_purchases", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_total_spend_cents": {"name": "loyalty_stg__customers_total_spend_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_total_spend_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_updated_at": {"name": "loyalty_stg__customers_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_user_id": {"name": "loyalty_stg__customers_user_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers/loyalty_stg__customers.md", "unique_id": "doc.yoda.loyalty_stg__customers_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_opt_in_created_at": {"name": "loyalty_stg__customers_opt_in_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "unique_id": "doc.yoda.loyalty_stg__customers_opt_in_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_opt_in_customer_id": {"name": "loyalty_stg__customers_opt_in_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "unique_id": "doc.yoda.loyalty_stg__customers_opt_in_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_opt_in_id": {"name": "loyalty_stg__customers_opt_in_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "unique_id": "doc.yoda.loyalty_stg__customers_opt_in_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_opt_in_merchant_id": {"name": "loyalty_stg__customers_opt_in_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "unique_id": "doc.yoda.loyalty_stg__customers_opt_in_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_opt_in_opted_in_at": {"name": "loyalty_stg__customers_opt_in_opted_in_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "unique_id": "doc.yoda.loyalty_stg__customers_opt_in_opted_in_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_opt_in_source_type": {"name": "loyalty_stg__customers_opt_in_source_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "unique_id": "doc.yoda.loyalty_stg__customers_opt_in_source_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_opt_in_updated_at": {"name": "loyalty_stg__customers_opt_in_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_opt_in/loyalty_stg__customers_opt_in.md", "unique_id": "doc.yoda.loyalty_stg__customers_opt_in_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_platform_accounts": {"name": "loyalty_stg__customers_platform_accounts", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__customers_platform_accounts", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_platform_accounts_created_at": {"name": "loyalty_stg__customers_platform_accounts_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__customers_platform_accounts_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customers_platform_accounts_customer_id": {"name": "loyalty_stg__customers_platform_accounts_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__customers_platform_accounts_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customers_platform_accounts_id": {"name": "loyalty_stg__customers_platform_accounts_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__customers_platform_accounts_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customers_platform_accounts_merchant_id": {"name": "loyalty_stg__customers_platform_accounts_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__customers_platform_accounts_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customers_platform_accounts_platform_account_created_at": {"name": "loyalty_stg__customers_platform_accounts_platform_account_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__customers_platform_accounts_platform_account_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customers_platform_accounts_processing_time": {"name": "loyalty_stg__customers_platform_accounts_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__customers_platform_accounts_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customers_platform_accounts_ts_ms": {"name": "loyalty_stg__customers_platform_accounts_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__customers_platform_accounts_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customers_platform_accounts_updated_at": {"name": "loyalty_stg__customers_platform_accounts_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__customers_platform_accounts_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customers_platform_accounts_upsolver_schema_version": {"name": "loyalty_stg__customers_platform_accounts_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_platform_accounts/loyalty_stg__customers_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__customers_platform_accounts_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customers_vip_tiers_created_at": {"name": "loyalty_stg__customers_vip_tiers_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_customer_id": {"name": "loyalty_stg__customers_vip_tiers_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_history_id": {"name": "loyalty_stg__customers_vip_tiers_history_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_history_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_id": {"name": "loyalty_stg__customers_vip_tiers_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_merchant_id": {"name": "loyalty_stg__customers_vip_tiers_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_state": {"name": "loyalty_stg__customers_vip_tiers_state", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_state", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_tier_entry_date": {"name": "loyalty_stg__customers_vip_tiers_tier_entry_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_tier_entry_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_tier_expiration_date": {"name": "loyalty_stg__customers_vip_tiers_tier_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_tier_expiration_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_tier_id": {"name": "loyalty_stg__customers_vip_tiers_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_tier_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_updated_at": {"name": "loyalty_stg__customers_vip_tiers_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers/loyalty_stg__customers_vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_history__id": {"name": "loyalty_stg__customers_vip_tiers_history__id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_history__id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customers_vip_tiers_history_action": {"name": "loyalty_stg__customers_vip_tiers_history_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_history_action", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_history_created_at": {"name": "loyalty_stg__customers_vip_tiers_history_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_history_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_history_customer_id": {"name": "loyalty_stg__customers_vip_tiers_history_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_history_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_history_expired_at": {"name": "loyalty_stg__customers_vip_tiers_history_expired_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_history_expired_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_history_merchant_id": {"name": "loyalty_stg__customers_vip_tiers_history_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_history_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_history_tier_entry_date": {"name": "loyalty_stg__customers_vip_tiers_history_tier_entry_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_history_tier_entry_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_history_tier_expiration_date": {"name": "loyalty_stg__customers_vip_tiers_history_tier_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_history_tier_expiration_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_history_tier_id": {"name": "loyalty_stg__customers_vip_tiers_history_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_history_tier_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customers_vip_tiers_history_updated_at": {"name": "loyalty_stg__customers_vip_tiers_history_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customers_vip_tiers_history/loyalty_stg__customers_vip_tiers_history.md", "unique_id": "doc.yoda.loyalty_stg__customers_vip_tiers_history_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customizations": {"name": "loyalty_stg__customizations", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "unique_id": "doc.yoda.loyalty_stg__customizations", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__customizations_created_at": {"name": "loyalty_stg__customizations_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "unique_id": "doc.yoda.loyalty_stg__customizations_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customizations_css_resource_path": {"name": "loyalty_stg__customizations_css_resource_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "unique_id": "doc.yoda.loyalty_stg__customizations_css_resource_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customizations_id": {"name": "loyalty_stg__customizations_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "unique_id": "doc.yoda.loyalty_stg__customizations_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customizations_processing_time": {"name": "loyalty_stg__customizations_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "unique_id": "doc.yoda.loyalty_stg__customizations_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customizations_settings_resource_path": {"name": "loyalty_stg__customizations_settings_resource_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "unique_id": "doc.yoda.loyalty_stg__customizations_settings_resource_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customizations_ts_ms": {"name": "loyalty_stg__customizations_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "unique_id": "doc.yoda.loyalty_stg__customizations_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customizations_updated_at": {"name": "loyalty_stg__customizations_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "unique_id": "doc.yoda.loyalty_stg__customizations_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__customizations_upsolver_schema_version": {"name": "loyalty_stg__customizations_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__customizations/loyalty_stg__customizations.md", "unique_id": "doc.yoda.loyalty_stg__customizations_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaign_emails_bounced": {"name": "loyalty_stg__email_campaign_emails_bounced", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_bounced", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_bounced_at": {"name": "loyalty_stg__email_campaign_emails_bounced_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_bounced_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_clicked": {"name": "loyalty_stg__email_campaign_emails_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_clicked", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_clicked_at": {"name": "loyalty_stg__email_campaign_emails_clicked_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_clicked_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_created_at": {"name": "loyalty_stg__email_campaign_emails_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_customer_id": {"name": "loyalty_stg__email_campaign_emails_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_delayed": {"name": "loyalty_stg__email_campaign_emails_delayed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_delayed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_delayed_at": {"name": "loyalty_stg__email_campaign_emails_delayed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_delayed_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_email_campaign_id": {"name": "loyalty_stg__email_campaign_emails_email_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_email_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_id": {"name": "loyalty_stg__email_campaign_emails_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_marked_as_spam": {"name": "loyalty_stg__email_campaign_emails_marked_as_spam", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_marked_as_spam", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_marked_as_spam_at": {"name": "loyalty_stg__email_campaign_emails_marked_as_spam_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_marked_as_spam_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_merchant_id": {"name": "loyalty_stg__email_campaign_emails_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_opened": {"name": "loyalty_stg__email_campaign_emails_opened", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_opened", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_opened_at": {"name": "loyalty_stg__email_campaign_emails_opened_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_opened_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_rejected": {"name": "loyalty_stg__email_campaign_emails_rejected", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_rejected", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_rejected_at": {"name": "loyalty_stg__email_campaign_emails_rejected_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_rejected_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_sent": {"name": "loyalty_stg__email_campaign_emails_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_sent_at": {"name": "loyalty_stg__email_campaign_emails_sent_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_sent_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_soft_bounced": {"name": "loyalty_stg__email_campaign_emails_soft_bounced", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_soft_bounced", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_unsubscribed": {"name": "loyalty_stg__email_campaign_emails_unsubscribed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_unsubscribed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_unsubscribed_at": {"name": "loyalty_stg__email_campaign_emails_unsubscribed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_unsubscribed_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaign_emails_updated_at": {"name": "loyalty_stg__email_campaign_emails_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaign_emails/loyalty_stg__email_campaign_emails.md", "unique_id": "doc.yoda.loyalty_stg__email_campaign_emails_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__base_email_campaigns": {"name": "loyalty__base_email_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty__base_email_campaigns", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__email_campaigns_activated_at": {"name": "loyalty_stg__email_campaigns_activated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_activated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_active": {"name": "loyalty_stg__email_campaigns_active", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_active", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_body": {"name": "loyalty_stg__email_campaigns_body", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_body", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_campaign_id": {"name": "loyalty_stg__email_campaigns_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_created_at": {"name": "loyalty_stg__email_campaigns_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_delay_days": {"name": "loyalty_stg__email_campaigns_delay_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_delay_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_email_bounced_count": {"name": "loyalty_stg__email_campaigns_email_bounced_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_email_bounced_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_email_clicked_count": {"name": "loyalty_stg__email_campaigns_email_clicked_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_email_clicked_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_email_delayed_count": {"name": "loyalty_stg__email_campaigns_email_delayed_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_email_delayed_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_email_marked_as_spam_count": {"name": "loyalty_stg__email_campaigns_email_marked_as_spam_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_email_marked_as_spam_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_email_opened_count": {"name": "loyalty_stg__email_campaigns_email_opened_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_email_opened_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_email_rejected_count": {"name": "loyalty_stg__email_campaigns_email_rejected_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_email_rejected_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_email_sent_count": {"name": "loyalty_stg__email_campaigns_email_sent_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_email_sent_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_email_soft_bounced_count": {"name": "loyalty_stg__email_campaigns_email_soft_bounced_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_email_soft_bounced_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_email_unsubscribed_count": {"name": "loyalty_stg__email_campaigns_email_unsubscribed_count", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_email_unsubscribed_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_id": {"name": "loyalty_stg__email_campaigns_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_layout": {"name": "loyalty_stg__email_campaigns_layout", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_layout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_merchant_id": {"name": "loyalty_stg__email_campaigns_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_sent": {"name": "loyalty_stg__email_campaigns_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_sent_at": {"name": "loyalty_stg__email_campaigns_sent_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_sent_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_show_recommendations": {"name": "loyalty_stg__email_campaigns_show_recommendations", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_show_recommendations", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_start_job_id": {"name": "loyalty_stg__email_campaigns_start_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_start_job_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_starts_at": {"name": "loyalty_stg__email_campaigns_starts_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_starts_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_subject": {"name": "loyalty_stg__email_campaigns_subject", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_subject", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_type": {"name": "loyalty_stg__email_campaigns_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__email_campaigns_updated_at": {"name": "loyalty_stg__email_campaigns_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__email_campaigns/loyalty_stg__email_campaigns.md", "unique_id": "doc.yoda.loyalty_stg__email_campaigns_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__group_customers_created_at": {"name": "loyalty_stg__group_customers_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "unique_id": "doc.yoda.loyalty_stg__group_customers_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__group_customers_email": {"name": "loyalty_stg__group_customers_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "unique_id": "doc.yoda.loyalty_stg__group_customers_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__group_customers_exclude_from_reports": {"name": "loyalty_stg__group_customers_exclude_from_reports", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "unique_id": "doc.yoda.loyalty_stg__group_customers_exclude_from_reports", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__group_customers_group_id": {"name": "loyalty_stg__group_customers_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "unique_id": "doc.yoda.loyalty_stg__group_customers_group_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__group_customers_id": {"name": "loyalty_stg__group_customers_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "unique_id": "doc.yoda.loyalty_stg__group_customers_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__group_customers_last_seen_at": {"name": "loyalty_stg__group_customers_last_seen_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "unique_id": "doc.yoda.loyalty_stg__group_customers_last_seen_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__group_customers_points_balance": {"name": "loyalty_stg__group_customers_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "unique_id": "doc.yoda.loyalty_stg__group_customers_points_balance", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__group_customers_points_earned": {"name": "loyalty_stg__group_customers_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "unique_id": "doc.yoda.loyalty_stg__group_customers_points_earned", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__group_customers_points_expire_at": {"name": "loyalty_stg__group_customers_points_expire_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "unique_id": "doc.yoda.loyalty_stg__group_customers_points_expire_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__group_customers_subscribed": {"name": "loyalty_stg__group_customers_subscribed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "unique_id": "doc.yoda.loyalty_stg__group_customers_subscribed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__group_customers_updated_at": {"name": "loyalty_stg__group_customers_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__group_customers/loyalty_stg__group_customers.md", "unique_id": "doc.yoda.loyalty_stg__group_customers_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__base_install_loyalty": {"name": "loyalty__base_install_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty__base_install_loyalty", "block_contents": "Segment install events of loyalty by merchant"}, "doc.yoda.loyalty_stg__install_loyalty_accountid": {"name": "loyalty_stg__install_loyalty_accountid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_adminname": {"name": "loyalty_stg__install_loyalty_adminname", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_anonymous_id": {"name": "loyalty_stg__install_loyalty_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_appkey": {"name": "loyalty_stg__install_loyalty_appkey", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_billingproviders": {"name": "loyalty_stg__install_loyalty_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_billingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_channel": {"name": "loyalty_stg__install_loyalty_channel", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_chargeid": {"name": "loyalty_stg__install_loyalty_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_chargeprice": {"name": "loyalty_stg__install_loyalty_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_company_name": {"name": "loyalty_stg__install_loyalty_company_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_company_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_createdat": {"name": "loyalty_stg__install_loyalty_createdat", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_currentplan": {"name": "loyalty_stg__install_loyalty_currentplan", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_currentplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_daysinvalidfacebooktoken": {"name": "loyalty_stg__install_loyalty_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_daysinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_daysinvalidpinteresttoken": {"name": "loyalty_stg__install_loyalty_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_daysinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_daysinvalidtwittertoken": {"name": "loyalty_stg__install_loyalty_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_daysinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_email": {"name": "loyalty_stg__install_loyalty_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_event_name": {"name": "loyalty_stg__install_loyalty_event_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_groupid": {"name": "loyalty_stg__install_loyalty_groupid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_initialnumoforders": {"name": "loyalty_stg__install_loyalty_initialnumoforders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_initialnumoforders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_is_desktop": {"name": "loyalty_stg__install_loyalty_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_is_mobile": {"name": "loyalty_stg__install_loyalty_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_is_tablet": {"name": "loyalty_stg__install_loyalty_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_isinvalidfacebooktoken": {"name": "loyalty_stg__install_loyalty_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_isinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_isinvalidfacebooktokendate": {"name": "loyalty_stg__install_loyalty_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_isinvalidfacebooktokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_isinvalidpinteresttoken": {"name": "loyalty_stg__install_loyalty_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_isinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_isinvalidpinteresttokendate": {"name": "loyalty_stg__install_loyalty_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_isinvalidpinteresttokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_isinvalidtwittertoken": {"name": "loyalty_stg__install_loyalty_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_isinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_isinvalidtwittertokendate": {"name": "loyalty_stg__install_loyalty_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_isinvalidtwittertokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_isnewslettersubscribed": {"name": "loyalty_stg__install_loyalty_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_isreviewswidgetinstalled": {"name": "loyalty_stg__install_loyalty_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_issystemnotificationssubscribed": {"name": "loyalty_stg__install_loyalty_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_isuserscountlimitreached": {"name": "loyalty_stg__install_loyalty_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_isusingpackagesservice": {"name": "loyalty_stg__install_loyalty_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_lastconversionordertime": {"name": "loyalty_stg__install_loyalty_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_library_name": {"name": "loyalty_stg__install_loyalty_library_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_locale": {"name": "loyalty_stg__install_loyalty_locale", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_loyaltyemail": {"name": "loyalty_stg__install_loyalty_loyaltyemail", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_loyaltyemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_loyaltypackage": {"name": "loyalty_stg__install_loyalty_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_merchant_id": {"name": "loyalty_stg__install_loyalty_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_message_id": {"name": "loyalty_stg__install_loyalty_message_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_name": {"name": "loyalty_stg__install_loyalty_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_owner": {"name": "loyalty_stg__install_loyalty_owner", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_owner", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_package": {"name": "loyalty_stg__install_loyalty_package", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_packagecategories": {"name": "loyalty_stg__install_loyalty_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_packageextensions": {"name": "loyalty_stg__install_loyalty_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_packageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_page_path": {"name": "loyalty_stg__install_loyalty_page_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_page_referrer": {"name": "loyalty_stg__install_loyalty_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_page_title": {"name": "loyalty_stg__install_loyalty_page_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_page_url": {"name": "loyalty_stg__install_loyalty_page_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_partition_date": {"name": "loyalty_stg__install_loyalty_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_pendingrrs": {"name": "loyalty_stg__install_loyalty_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_phone": {"name": "loyalty_stg__install_loyalty_phone", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_planname": {"name": "loyalty_stg__install_loyalty_planname", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_platform": {"name": "loyalty_stg__install_loyalty_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_platform_plan": {"name": "loyalty_stg__install_loyalty_platform_plan", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_platform_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_processing_time": {"name": "loyalty_stg__install_loyalty_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_product": {"name": "loyalty_stg__install_loyalty_product", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_role": {"name": "loyalty_stg__install_loyalty_role", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_rrmonthlylimit": {"name": "loyalty_stg__install_loyalty_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_signupcountry": {"name": "loyalty_stg__install_loyalty_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_signupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_signupmonthlyorderscount": {"name": "loyalty_stg__install_loyalty_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_signupmonthlyorderscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_signupphone": {"name": "loyalty_stg__install_loyalty_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_signupphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_signuputmcampaign": {"name": "loyalty_stg__install_loyalty_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_signuputmmedium": {"name": "loyalty_stg__install_loyalty_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_signuputmsource": {"name": "loyalty_stg__install_loyalty_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_storecount": {"name": "loyalty_stg__install_loyalty_storecount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_storedomain": {"name": "loyalty_stg__install_loyalty_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_subscriptionstate": {"name": "loyalty_stg__install_loyalty_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_subscriptionstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_timestamp": {"name": "loyalty_stg__install_loyalty_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_traits_email": {"name": "loyalty_stg__install_loyalty_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_traits_name": {"name": "loyalty_stg__install_loyalty_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_traits_plan": {"name": "loyalty_stg__install_loyalty_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_upsolver_schema_version": {"name": "loyalty_stg__install_loyalty_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_user_id": {"name": "loyalty_stg__install_loyalty_user_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_userid": {"name": "loyalty_stg__install_loyalty_userid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_violated_event": {"name": "loyalty_stg__install_loyalty_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_website": {"name": "loyalty_stg__install_loyalty_website", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__install_loyalty_yotpoip": {"name": "loyalty_stg__install_loyalty_yotpoip", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__install_loyalty/loyalty_stg__install_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__install_loyalty_yotpoip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instance_versions": {"name": "loyalty_stg__instance_versions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__instance_versions_created_at": {"name": "loyalty_stg__instance_versions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instance_versions_css_override_id": {"name": "loyalty_stg__instance_versions_css_override_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions_css_override_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instance_versions_customization_id": {"name": "loyalty_stg__instance_versions_customization_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions_customization_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instance_versions_id": {"name": "loyalty_stg__instance_versions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instance_versions_instance_id": {"name": "loyalty_stg__instance_versions_instance_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions_instance_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instance_versions_processing_time": {"name": "loyalty_stg__instance_versions_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instance_versions_static_content_id": {"name": "loyalty_stg__instance_versions_static_content_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions_static_content_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instance_versions_template_id": {"name": "loyalty_stg__instance_versions_template_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions_template_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instance_versions_ts_ms": {"name": "loyalty_stg__instance_versions_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instance_versions_updated_at": {"name": "loyalty_stg__instance_versions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instance_versions_upsolver_schema_version": {"name": "loyalty_stg__instance_versions_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instance_versions/loyalty_stg__instance_versions.md", "unique_id": "doc.yoda.loyalty_stg__instance_versions_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances": {"name": "loyalty_stg__instances", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__instances_active": {"name": "loyalty_stg__instances_active", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_active", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_auto_update": {"name": "loyalty_stg__instances_auto_update", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_auto_update", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_created_at": {"name": "loyalty_stg__instances_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_current_instance_version_id": {"name": "loyalty_stg__instances_current_instance_version_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_current_instance_version_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_deleted": {"name": "loyalty_stg__instances_deleted", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_guid": {"name": "loyalty_stg__instances_guid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_guid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_id": {"name": "loyalty_stg__instances_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_name": {"name": "loyalty_stg__instances_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_parent_instance_id": {"name": "loyalty_stg__instances_parent_instance_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_parent_instance_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_processing_time": {"name": "loyalty_stg__instances_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_ts_ms": {"name": "loyalty_stg__instances_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_updated_at": {"name": "loyalty_stg__instances_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_upsolver_schema_version": {"name": "loyalty_stg__instances_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__instances_widget_type_id": {"name": "loyalty_stg__instances_widget_type_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__instances/loyalty_stg__instances.md", "unique_id": "doc.yoda.loyalty_stg__instances_widget_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__base_known_crawlers": {"name": "loyalty__base_known_crawlers", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__known_crawlers/loyalty_stg__known_crawlers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__known_crawlers/loyalty_stg__known_crawlers.md", "unique_id": "doc.yoda.loyalty__base_known_crawlers", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__known_crawlers_crawler_name": {"name": "loyalty_stg__known_crawlers_crawler_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__known_crawlers/loyalty_stg__known_crawlers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__known_crawlers/loyalty_stg__known_crawlers.md", "unique_id": "doc.yoda.loyalty_stg__known_crawlers_crawler_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__merchants_affiliate_include_shipping": {"name": "loyalty_stg__merchants_affiliate_include_shipping", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_affiliate_include_shipping", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_affiliate_order_price_setting": {"name": "loyalty_stg__merchants_affiliate_order_price_setting", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_affiliate_order_price_setting", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_allow_program_overwrite": {"name": "loyalty_stg__merchants_allow_program_overwrite", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_allow_program_overwrite", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_api_access_enabled": {"name": "loyalty_stg__merchants_api_access_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_api_access_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_api_key": {"name": "loyalty_stg__merchants_api_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_api_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_bricknmortar": {"name": "loyalty_stg__merchants_bricknmortar", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_bricknmortar", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_can_generate_coupons": {"name": "loyalty_stg__merchants_can_generate_coupons", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_can_generate_coupons", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_cash_payout_setting": {"name": "loyalty_stg__merchants_cash_payout_setting", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_cash_payout_setting", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_code_based_referral_program_on_demand": {"name": "loyalty_stg__merchants_code_based_referral_program_on_demand", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_code_based_referral_program_on_demand", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_collection_exclusions": {"name": "loyalty_stg__merchants_collection_exclusions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_collection_exclusions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_company_name": {"name": "loyalty_stg__merchants_company_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_company_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_completed_onboarding": {"name": "loyalty_stg__merchants_completed_onboarding", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_completed_onboarding", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_completed_profile": {"name": "loyalty_stg__merchants_completed_profile", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_completed_profile", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_contact_email": {"name": "loyalty_stg__merchants_contact_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_contact_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_created_at": {"name": "loyalty_stg__merchants_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_cross_origin_store_accounts": {"name": "loyalty_stg__merchants_cross_origin_store_accounts", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_cross_origin_store_accounts", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_currency": {"name": "loyalty_stg__merchants_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_custom_chat_group": {"name": "loyalty_stg__merchants_custom_chat_group", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_custom_chat_group", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_custom_script_url": {"name": "loyalty_stg__merchants_custom_script_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_custom_script_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_customer_tags": {"name": "loyalty_stg__merchants_customer_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_customer_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_default_payout_percentage": {"name": "loyalty_stg__merchants_default_payout_percentage", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_default_payout_percentage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_default_paypal_email_subject": {"name": "loyalty_stg__merchants_default_paypal_email_subject", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_default_paypal_email_subject", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_delete_used_coupons_enable": {"name": "loyalty_stg__merchants_delete_used_coupons_enable", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_delete_used_coupons_enable", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_description": {"name": "loyalty_stg__merchants_description", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_discount_code_based_referral_program_enabled": {"name": "loyalty_stg__merchants_discount_code_based_referral_program_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_discount_code_based_referral_program_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_discount_code_generation_strategy": {"name": "loyalty_stg__merchants_discount_code_generation_strategy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_discount_code_generation_strategy", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_discount_stacking_order": {"name": "loyalty_stg__merchants_discount_stacking_order", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_discount_stacking_order", "block_contents": ""}, "doc.yoda.loyalty_stg__merchants_discount_stacking_product": {"name": "loyalty_stg__merchants_discount_stacking_product", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_discount_stacking_product", "block_contents": ""}, "doc.yoda.loyalty_stg__merchants_discount_stacking_shipping": {"name": "loyalty_stg__merchants_discount_stacking_shipping", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_discount_stacking_shipping", "block_contents": ""}, "doc.yoda.loyalty_stg__merchants_email_header_image_content_type": {"name": "loyalty_stg__merchants_email_header_image_content_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_email_header_image_content_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_email_header_image_file_name": {"name": "loyalty_stg__merchants_email_header_image_file_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_email_header_image_file_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_email_header_image_file_size": {"name": "loyalty_stg__merchants_email_header_image_file_size", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_email_header_image_file_size", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_email_header_image_updated_at": {"name": "loyalty_stg__merchants_email_header_image_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_email_header_image_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_email_header_width": {"name": "loyalty_stg__merchants_email_header_width", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_email_header_width", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_email_layout": {"name": "loyalty_stg__merchants_email_layout", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_email_layout", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_email_layout_html": {"name": "loyalty_stg__merchants_email_layout_html", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_email_layout_html", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_exclude_customer_tags": {"name": "loyalty_stg__merchants_exclude_customer_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_exclude_customer_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_facebook_app_id": {"name": "loyalty_stg__merchants_facebook_app_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_facebook_app_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_featured": {"name": "loyalty_stg__merchants_featured", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_featured", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_first_time_referral_discounts_enable_flag": {"name": "loyalty_stg__merchants_first_time_referral_discounts_enable_flag", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_first_time_referral_discounts_enable_flag", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_force_store_accounts": {"name": "loyalty_stg__merchants_force_store_accounts", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_force_store_accounts", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_free_products_enabled": {"name": "loyalty_stg__merchants_free_products_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_free_products_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_free_trial_expiration_job_id": {"name": "loyalty_stg__merchants_free_trial_expiration_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_free_trial_expiration_job_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_free_trial_expires_at": {"name": "loyalty_stg__merchants_free_trial_expires_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_free_trial_expires_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_from_email": {"name": "loyalty_stg__merchants_from_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_from_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_from_name": {"name": "loyalty_stg__merchants_from_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_from_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_group_id": {"name": "loyalty_stg__merchants_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_group_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_guid": {"name": "loyalty_stg__merchants_guid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_guid", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_has_analytics_installed": {"name": "loyalty_stg__merchants_has_analytics_installed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_has_analytics_installed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_has_rewards_installed": {"name": "loyalty_stg__merchants_has_rewards_installed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_has_rewards_installed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_has_store": {"name": "loyalty_stg__merchants_has_store", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_has_store", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_id": {"name": "loyalty_stg__merchants_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_include_purchases_with_details": {"name": "loyalty_stg__merchants_include_purchases_with_details", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_include_purchases_with_details", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_include_shipping": {"name": "loyalty_stg__merchants_include_shipping", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_include_shipping", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_include_storefront_css": {"name": "loyalty_stg__merchants_include_storefront_css", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_include_storefront_css", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_install_order_volume": {"name": "loyalty_stg__merchants_install_order_volume", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_install_order_volume", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_installed_analytics_at": {"name": "loyalty_stg__merchants_installed_analytics_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_installed_analytics_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_installed_rewards_at": {"name": "loyalty_stg__merchants_installed_rewards_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_installed_rewards_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_invoice_job_id": {"name": "loyalty_stg__merchants_invoice_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_invoice_job_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_is_approved": {"name": "loyalty_stg__merchants_is_approved", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_is_approved", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_limit_redemptions": {"name": "loyalty_stg__merchants_limit_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_limit_redemptions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_logo_content_type": {"name": "loyalty_stg__merchants_logo_content_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_logo_content_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_logo_file_name": {"name": "loyalty_stg__merchants_logo_file_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_logo_file_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_logo_file_size": {"name": "loyalty_stg__merchants_logo_file_size", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_logo_file_size", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_logo_updated_at": {"name": "loyalty_stg__merchants_logo_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_logo_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_logo_url": {"name": "loyalty_stg__merchants_logo_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_logo_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_loyalty_opt_in_strategy": {"name": "loyalty_stg__merchants_loyalty_opt_in_strategy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_loyalty_opt_in_strategy", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_manual_adjustment_admin_only": {"name": "loyalty_stg__merchants_manual_adjustment_admin_only", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_manual_adjustment_admin_only", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_metafield_namespace": {"name": "loyalty_stg__merchants_metafield_namespace", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_metafield_namespace", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_nav_exclusions": {"name": "loyalty_stg__merchants_nav_exclusions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_nav_exclusions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_oauth_app_id": {"name": "loyalty_stg__merchants_oauth_app_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_oauth_app_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_on_free_trial": {"name": "loyalty_stg__merchants_on_free_trial", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_on_free_trial", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_order_paid_state": {"name": "loyalty_stg__merchants_order_paid_state", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_order_paid_state", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_order_paid_status": {"name": "loyalty_stg__merchants_order_paid_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_order_paid_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_order_price_setting": {"name": "loyalty_stg__merchants_order_price_setting", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_order_price_setting", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_owner_id": {"name": "loyalty_stg__merchants_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_owner_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_plan": {"name": "loyalty_stg__merchants_plan", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_plan", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_platform": {"name": "loyalty_stg__merchants_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_platform_engine": {"name": "loyalty_stg__merchants_platform_engine", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_platform_engine", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_points_per_dollar": {"name": "loyalty_stg__merchants_points_per_dollar", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_points_per_dollar", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_points_reminder_delay_days": {"name": "loyalty_stg__merchants_points_reminder_delay_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_points_reminder_delay_days", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_process_discounts_webhook": {"name": "loyalty_stg__merchants_process_discounts_webhook", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_process_discounts_webhook", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_process_order_state": {"name": "loyalty_stg__merchants_process_order_state", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_process_order_state", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_process_order_status": {"name": "loyalty_stg__merchants_process_order_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_process_order_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_process_order_webhook": {"name": "loyalty_stg__merchants_process_order_webhook", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_process_order_webhook", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_process_refund_status": {"name": "loyalty_stg__merchants_process_refund_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_process_refund_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_product_exclusions": {"name": "loyalty_stg__merchants_product_exclusions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_product_exclusions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_program_first_activated_at": {"name": "loyalty_stg__merchants_program_first_activated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_program_first_activated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__merchants_program_live": {"name": "loyalty_stg__merchants_program_live", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_program_live", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_program_locked": {"name": "loyalty_stg__merchants_program_locked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_program_locked", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_referral_avoid_ip_and_user_agent": {"name": "loyalty_stg__merchants_referral_avoid_ip_and_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_referral_avoid_ip_and_user_agent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_referral_opt_in_strategy": {"name": "loyalty_stg__merchants_referral_opt_in_strategy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_referral_opt_in_strategy", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_referral_reminder_days": {"name": "loyalty_stg__merchants_referral_reminder_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_referral_reminder_days", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_round_discounts_strategy": {"name": "loyalty_stg__merchants_round_discounts_strategy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_round_discounts_strategy", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_security_level": {"name": "loyalty_stg__merchants_security_level", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_security_level", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_setup_rewards_page": {"name": "loyalty_stg__merchants_setup_rewards_page", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_setup_rewards_page", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_show_billing_information": {"name": "loyalty_stg__merchants_show_billing_information", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_show_billing_information", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_slug": {"name": "loyalty_stg__merchants_slug", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_slug", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_source": {"name": "loyalty_stg__merchants_source", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_source", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_store_account_login_url": {"name": "loyalty_stg__merchants_store_account_login_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_store_account_login_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_store_account_registration_url": {"name": "loyalty_stg__merchants_store_account_registration_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_store_account_registration_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_store_id": {"name": "loyalty_stg__merchants_store_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_store_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_stripe_customer_id": {"name": "loyalty_stg__merchants_stripe_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_stripe_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_swell_redemptions_enabled": {"name": "loyalty_stg__merchants_swell_redemptions_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_swell_redemptions_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_sync_fields_with_processor": {"name": "loyalty_stg__merchants_sync_fields_with_processor", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_sync_fields_with_processor", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_sync_newsletter_with_platform": {"name": "loyalty_stg__merchants_sync_newsletter_with_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_sync_newsletter_with_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_sync_tiers_with_platform": {"name": "loyalty_stg__merchants_sync_tiers_with_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_sync_tiers_with_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_test_account": {"name": "loyalty_stg__merchants_test_account", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_test_account", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_third_party_id": {"name": "loyalty_stg__merchants_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_third_party_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_time_zone": {"name": "loyalty_stg__merchants_time_zone", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_time_zone", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_uninstalled_analytics_at": {"name": "loyalty_stg__merchants_uninstalled_analytics_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_uninstalled_analytics_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_uninstalled_rewards_at": {"name": "loyalty_stg__merchants_uninstalled_rewards_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_uninstalled_rewards_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_updated_at": {"name": "loyalty_stg__merchants_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_usage_charge_job_id": {"name": "loyalty_stg__merchants_usage_charge_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_usage_charge_job_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_used_coupons_delete_after_days": {"name": "loyalty_stg__merchants_used_coupons_delete_after_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_used_coupons_delete_after_days", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_value_per_subscriber_cents": {"name": "loyalty_stg__merchants_value_per_subscriber_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_value_per_subscriber_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_verified_email_domain": {"name": "loyalty_stg__merchants_verified_email_domain", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_verified_email_domain", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_vip_tiers_job_running": {"name": "loyalty_stg__merchants_vip_tiers_job_running", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_vip_tiers_job_running", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_webhook_token": {"name": "loyalty_stg__merchants_webhook_token", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_webhook_token", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_webhook_url": {"name": "loyalty_stg__merchants_webhook_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_webhook_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_website": {"name": "loyalty_stg__merchants_website", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_website", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_weekly_digest_enabled": {"name": "loyalty_stg__merchants_weekly_digest_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_weekly_digest_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_bg_color": {"name": "loyalty_stg__merchants_widget_bg_color", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_bg_color", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_brand_color": {"name": "loyalty_stg__merchants_widget_brand_color", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_brand_color", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_distance_from_end": {"name": "loyalty_stg__merchants_widget_distance_from_end", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_distance_from_end", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_enabled": {"name": "loyalty_stg__merchants_widget_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_expanded_by_default": {"name": "loyalty_stg__merchants_widget_expanded_by_default", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_expanded_by_default", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_font_family": {"name": "loyalty_stg__merchants_widget_font_family", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_font_family", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_font_url": {"name": "loyalty_stg__merchants_widget_font_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_font_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_header_text": {"name": "loyalty_stg__merchants_widget_header_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_header_text", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_height": {"name": "loyalty_stg__merchants_widget_height", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_height", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_location": {"name": "loyalty_stg__merchants_widget_location", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_location", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_location_mobile": {"name": "loyalty_stg__merchants_widget_location_mobile", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_location_mobile", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_mobile": {"name": "loyalty_stg__merchants_widget_mobile", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_mobile", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_rounded": {"name": "loyalty_stg__merchants_widget_rounded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_rounded", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_text": {"name": "loyalty_stg__merchants_widget_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_text", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_text_color": {"name": "loyalty_stg__merchants_widget_text_color", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_text_color", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__merchants_widget_theme": {"name": "loyalty_stg__merchants_widget_theme", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__merchants/loyalty_stg__merchants.md", "unique_id": "doc.yoda.loyalty_stg__merchants_widget_theme", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__base_onsite_v3": {"name": "loyalty__base_onsite_v3", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty__base_onsite_v3", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__onsite_v3_br_colordepth": {"name": "loyalty_stg__onsite_v3_br_colordepth", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_colordepth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_cookies": {"name": "loyalty_stg__onsite_v3_br_cookies", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_cookies", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_family": {"name": "loyalty_stg__onsite_v3_br_family", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_features_director": {"name": "loyalty_stg__onsite_v3_br_features_director", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_features_director", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_features_flash": {"name": "loyalty_stg__onsite_v3_br_features_flash", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_features_flash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_features_gears": {"name": "loyalty_stg__onsite_v3_br_features_gears", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_features_gears", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_features_java": {"name": "loyalty_stg__onsite_v3_br_features_java", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_features_java", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_features_pdf": {"name": "loyalty_stg__onsite_v3_br_features_pdf", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_features_pdf", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_features_quicktime": {"name": "loyalty_stg__onsite_v3_br_features_quicktime", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_features_quicktime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_features_realplayer": {"name": "loyalty_stg__onsite_v3_br_features_realplayer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_features_realplayer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_features_silverlight": {"name": "loyalty_stg__onsite_v3_br_features_silverlight", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_features_silverlight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_features_windowsmedia": {"name": "loyalty_stg__onsite_v3_br_features_windowsmedia", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_features_windowsmedia", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_lang": {"name": "loyalty_stg__onsite_v3_br_lang", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_lang", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_major": {"name": "loyalty_stg__onsite_v3_br_major", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_minor": {"name": "loyalty_stg__onsite_v3_br_minor", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_viewheight": {"name": "loyalty_stg__onsite_v3_br_viewheight", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_viewheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_br_viewwidth": {"name": "loyalty_stg__onsite_v3_br_viewwidth", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_br_viewwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_collector_day": {"name": "loyalty_stg__onsite_v3_collector_day", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_collector_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_collector_epoch": {"name": "loyalty_stg__onsite_v3_collector_epoch", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_collector_epoch", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_collector_month": {"name": "loyalty_stg__onsite_v3_collector_month", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_collector_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_collector_tstamp": {"name": "loyalty_stg__onsite_v3_collector_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_collector_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_collector_year": {"name": "loyalty_stg__onsite_v3_collector_year", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_collector_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_context": {"name": "loyalty_stg__onsite_v3_context", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_context", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_device_family": {"name": "loyalty_stg__onsite_v3_device_family", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_device_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_doc_charset": {"name": "loyalty_stg__onsite_v3_doc_charset", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_doc_charset", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_doc_height": {"name": "loyalty_stg__onsite_v3_doc_height", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_doc_height", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_doc_width": {"name": "loyalty_stg__onsite_v3_doc_width", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_doc_width", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_domain_sessionidx": {"name": "loyalty_stg__onsite_v3_domain_sessionidx", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_domain_sessionidx", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_domain_userid": {"name": "loyalty_stg__onsite_v3_domain_userid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_domain_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_dvce_screenheight": {"name": "loyalty_stg__onsite_v3_dvce_screenheight", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_dvce_screenheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_dvce_screenwidth": {"name": "loyalty_stg__onsite_v3_dvce_screenwidth", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_dvce_screenwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_dvce_tstamp": {"name": "loyalty_stg__onsite_v3_dvce_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_dvce_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_event": {"name": "loyalty_stg__onsite_v3_event", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_event_id": {"name": "loyalty_stg__onsite_v3_event_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_event_vendor": {"name": "loyalty_stg__onsite_v3_event_vendor", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_event_vendor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_geo_city": {"name": "loyalty_stg__onsite_v3_geo_city", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_geo_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_geo_country": {"name": "loyalty_stg__onsite_v3_geo_country", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_geo_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_geo_latitude": {"name": "loyalty_stg__onsite_v3_geo_latitude", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_geo_latitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_geo_longitude": {"name": "loyalty_stg__onsite_v3_geo_longitude", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_geo_longitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_geo_region": {"name": "loyalty_stg__onsite_v3_geo_region", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_geo_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_geo_zipcode": {"name": "loyalty_stg__onsite_v3_geo_zipcode", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_geo_zipcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_hour": {"name": "loyalty_stg__onsite_v3_hour", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_hour", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_mkt_campaign": {"name": "loyalty_stg__onsite_v3_mkt_campaign", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_mkt_campaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_mkt_content": {"name": "loyalty_stg__onsite_v3_mkt_content", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_mkt_content", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_mkt_medium": {"name": "loyalty_stg__onsite_v3_mkt_medium", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_mkt_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_mkt_source": {"name": "loyalty_stg__onsite_v3_mkt_source", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_mkt_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_mkt_term": {"name": "loyalty_stg__onsite_v3_mkt_term", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_mkt_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_os_family": {"name": "loyalty_stg__onsite_v3_os_family", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_os_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_os_major": {"name": "loyalty_stg__onsite_v3_os_major", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_os_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_os_minor": {"name": "loyalty_stg__onsite_v3_os_minor", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_os_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_os_timezone": {"name": "loyalty_stg__onsite_v3_os_timezone", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_os_timezone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_page_referrer": {"name": "loyalty_stg__onsite_v3_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_page_title": {"name": "loyalty_stg__onsite_v3_page_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_page_url": {"name": "loyalty_stg__onsite_v3_page_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_page_urlfragment": {"name": "loyalty_stg__onsite_v3_page_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_page_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_page_urlhost": {"name": "loyalty_stg__onsite_v3_page_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_page_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_page_urlpath": {"name": "loyalty_stg__onsite_v3_page_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_page_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_page_urlport": {"name": "loyalty_stg__onsite_v3_page_urlport", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_page_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_page_urlquery": {"name": "loyalty_stg__onsite_v3_page_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_page_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_page_urlscheme": {"name": "loyalty_stg__onsite_v3_page_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_page_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_partition_date": {"name": "loyalty_stg__onsite_v3_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_platform": {"name": "loyalty_stg__onsite_v3_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_processing_time": {"name": "loyalty_stg__onsite_v3_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_refr_medium": {"name": "loyalty_stg__onsite_v3_refr_medium", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_refr_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_refr_source": {"name": "loyalty_stg__onsite_v3_refr_source", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_refr_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_refr_term": {"name": "loyalty_stg__onsite_v3_refr_term", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_refr_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_refr_urlfragment": {"name": "loyalty_stg__onsite_v3_refr_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_refr_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_refr_urlhost": {"name": "loyalty_stg__onsite_v3_refr_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_refr_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_refr_urlpath": {"name": "loyalty_stg__onsite_v3_refr_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_refr_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_refr_urlport": {"name": "loyalty_stg__onsite_v3_refr_urlport", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_refr_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_refr_urlquery": {"name": "loyalty_stg__onsite_v3_refr_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_refr_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_refr_urlscheme": {"name": "loyalty_stg__onsite_v3_refr_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_refr_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_se_action": {"name": "loyalty_stg__onsite_v3_se_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_se_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_se_category": {"name": "loyalty_stg__onsite_v3_se_category", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_se_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_se_label": {"name": "loyalty_stg__onsite_v3_se_label", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_se_label", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_se_property": {"name": "loyalty_stg__onsite_v3_se_property", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_se_property", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_se_value": {"name": "loyalty_stg__onsite_v3_se_value", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_se_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_txn_id": {"name": "loyalty_stg__onsite_v3_txn_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_txn_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_user_fingerprint": {"name": "loyalty_stg__onsite_v3_user_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_user_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_useragent": {"name": "loyalty_stg__onsite_v3_useragent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_useragent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_v_collector": {"name": "loyalty_stg__onsite_v3_v_collector", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_v_collector", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_v_etl": {"name": "loyalty_stg__onsite_v3_v_etl", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_v_etl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_v_tracker": {"name": "loyalty_stg__onsite_v3_v_tracker", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_v_tracker", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__onsite_v3_y_fingerprint": {"name": "loyalty_stg__onsite_v3_y_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__onsite_v3/loyalty_stg__onsite_v3.md", "unique_id": "doc.yoda.loyalty_stg__onsite_v3_y_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__perks_admin_only": {"name": "loyalty_stg__perks_admin_only", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_admin_only", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_award_job_id": {"name": "loyalty_stg__perks_award_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_award_job_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_awarded": {"name": "loyalty_stg__perks_awarded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_awarded", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_awarded_at": {"name": "loyalty_stg__perks_awarded_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_awarded_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_balance_only": {"name": "loyalty_stg__perks_balance_only", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_balance_only", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_campaign_id": {"name": "loyalty_stg__perks_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_completed": {"name": "loyalty_stg__perks_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_completed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_completed_action": {"name": "loyalty_stg__perks_completed_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_completed_action", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_completed_at": {"name": "loyalty_stg__perks_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_completed_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_created_at": {"name": "loyalty_stg__perks_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_currency": {"name": "loyalty_stg__perks_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_customer_id": {"name": "loyalty_stg__perks_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_expiration_job_id": {"name": "loyalty_stg__perks_expiration_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_expiration_job_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_expired": {"name": "loyalty_stg__perks_expired", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_expired", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_expired_at": {"name": "loyalty_stg__perks_expired_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_expired_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_expires_at": {"name": "loyalty_stg__perks_expires_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_expires_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_hidden": {"name": "loyalty_stg__perks_hidden", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_hidden", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_history_title": {"name": "loyalty_stg__perks_history_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_history_title", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_id": {"name": "loyalty_stg__perks_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_identity_id": {"name": "loyalty_stg__perks_identity_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_identity_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_merchant_id": {"name": "loyalty_stg__perks_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_original_awarded_at": {"name": "loyalty_stg__perks_original_awarded_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_original_awarded_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_pending": {"name": "loyalty_stg__perks_pending", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_pending", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_point_transactions": {"name": "loyalty_stg__perks_point_transactions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_point_transactions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_points_multiplier": {"name": "loyalty_stg__perks_points_multiplier", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_points_multiplier", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_points_transactions": {"name": "loyalty_stg__perks_points_transactions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_points_transactions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_redeemable": {"name": "loyalty_stg__perks_redeemable", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_redeemable", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_redemption_option_id": {"name": "loyalty_stg__perks_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_redemption_option_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_referral_id": {"name": "loyalty_stg__perks_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_referral_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_reversed": {"name": "loyalty_stg__perks_reversed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_reversed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_reversed_at": {"name": "loyalty_stg__perks_reversed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_reversed_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_reward_points": {"name": "loyalty_stg__perks_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_reward_points", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_updated_at": {"name": "loyalty_stg__perks_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks/loyalty_stg__perks.md", "unique_id": "doc.yoda.loyalty_stg__perks_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_user_actions_created_at": {"name": "loyalty_stg__perks_user_actions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.md", "unique_id": "doc.yoda.loyalty_stg__perks_user_actions_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_user_actions_perk_id": {"name": "loyalty_stg__perks_user_actions_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.md", "unique_id": "doc.yoda.loyalty_stg__perks_user_actions_perk_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_user_actions_updated_at": {"name": "loyalty_stg__perks_user_actions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.md", "unique_id": "doc.yoda.loyalty_stg__perks_user_actions_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__perks_user_actions_user_action_id": {"name": "loyalty_stg__perks_user_actions_user_action_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__perks_user_actions/loyalty_stg__perks_user_actions.md", "unique_id": "doc.yoda.loyalty_stg__perks_user_actions_user_action_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__base_plans": {"name": "loyalty__base_plans", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "unique_id": "doc.yoda.loyalty__base_plans", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__plans_base_price_cents": {"name": "loyalty_stg__plans_base_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "unique_id": "doc.yoda.loyalty_stg__plans_base_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__plans_capped_amount_cents": {"name": "loyalty_stg__plans_capped_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "unique_id": "doc.yoda.loyalty_stg__plans_capped_amount_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__plans_created_at": {"name": "loyalty_stg__plans_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "unique_id": "doc.yoda.loyalty_stg__plans_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__plans_id": {"name": "loyalty_stg__plans_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "unique_id": "doc.yoda.loyalty_stg__plans_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__plans_included_orders": {"name": "loyalty_stg__plans_included_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "unique_id": "doc.yoda.loyalty_stg__plans_included_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__plans_name": {"name": "loyalty_stg__plans_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "unique_id": "doc.yoda.loyalty_stg__plans_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__plans_per_order_price_cents": {"name": "loyalty_stg__plans_per_order_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "unique_id": "doc.yoda.loyalty_stg__plans_per_order_price_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__plans_updated_at": {"name": "loyalty_stg__plans_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__plans/loyalty_stg__plans.md", "unique_id": "doc.yoda.loyalty_stg__plans_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_redemptions_amount": {"name": "loyalty_stg__point_redemptions_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_api_version": {"name": "loyalty_stg__point_redemptions_api_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_api_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_approved": {"name": "loyalty_stg__point_redemptions_approved", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_approved", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_approved_at": {"name": "loyalty_stg__point_redemptions_approved_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_approved_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_at_checkout": {"name": "loyalty_stg__point_redemptions_at_checkout", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_at_checkout", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_cart_id": {"name": "loyalty_stg__point_redemptions_cart_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_cart_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_cost_cents": {"name": "loyalty_stg__point_redemptions_cost_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_cost_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_created_at": {"name": "loyalty_stg__point_redemptions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_currency": {"name": "loyalty_stg__point_redemptions_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_customer_id": {"name": "loyalty_stg__point_redemptions_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_deleted": {"name": "loyalty_stg__point_redemptions_deleted", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_id": {"name": "loyalty_stg__point_redemptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_identity_id": {"name": "loyalty_stg__point_redemptions_identity_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_identity_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_is_admin": {"name": "loyalty_stg__point_redemptions_is_admin", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_is_admin", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_is_pos": {"name": "loyalty_stg__point_redemptions_is_pos", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_is_pos", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_merchant_id": {"name": "loyalty_stg__point_redemptions_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_perk_id": {"name": "loyalty_stg__point_redemptions_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_perk_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_point_transactions": {"name": "loyalty_stg__point_redemptions_point_transactions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_point_transactions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_redemption_option_id": {"name": "loyalty_stg__point_redemptions_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_redemption_option_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_redemption_source": {"name": "loyalty_stg__point_redemptions_redemption_source", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_redemption_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_redemptions_referral_id": {"name": "loyalty_stg__point_redemptions_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_referral_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_refunded_amount": {"name": "loyalty_stg__point_redemptions_refunded_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_refunded_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_reversed": {"name": "loyalty_stg__point_redemptions_reversed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_reversed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_reward_text": {"name": "loyalty_stg__point_redemptions_reward_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_reward_text", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_reward_title": {"name": "loyalty_stg__point_redemptions_reward_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_reward_title", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_third_party_order_id": {"name": "loyalty_stg__point_redemptions_third_party_order_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_third_party_order_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_updated_at": {"name": "loyalty_stg__point_redemptions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_value_cents": {"name": "loyalty_stg__point_redemptions_value_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_value_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_redemptions_visible": {"name": "loyalty_stg__point_redemptions_visible", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__point_redemptions/loyalty_stg__point_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__point_redemptions_visible", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__points_container_expiration": {"name": "loyalty_stg__points_container_expiration", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__points_container_expiration/loyalty_stg__points_container_expiration.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__points_container_expiration/loyalty_stg__points_container_expiration.md", "unique_id": "doc.yoda.loyalty_stg__points_container_expiration", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__points_state": {"name": "loyalty_stg__points_state", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__points_state/loyalty_stg__points_state.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__points_state/loyalty_stg__points_state.md", "unique_id": "doc.yoda.loyalty_stg__points_state", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__points_transaction": {"name": "loyalty_stg__points_transaction", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__points_transaction/loyalty_stg__points_transaction.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__points_transaction/loyalty_stg__points_transaction.md", "unique_id": "doc.yoda.loyalty_stg__points_transaction", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_created_at": {"name": "loyalty_stg__processors_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_guid": {"name": "loyalty_stg__processors_guid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_guid", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_has_authorized": {"name": "loyalty_stg__processors_has_authorized", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_has_authorized", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_id": {"name": "loyalty_stg__processors_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_import_completed": {"name": "loyalty_stg__processors_import_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_import_completed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_import_records_processed": {"name": "loyalty_stg__processors_import_records_processed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_import_records_processed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_import_started": {"name": "loyalty_stg__processors_import_started", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_import_started", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_import_total_records": {"name": "loyalty_stg__processors_import_total_records", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_import_total_records", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_last_fetch_at": {"name": "loyalty_stg__processors_last_fetch_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_last_fetch_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_last_page_number": {"name": "loyalty_stg__processors_last_page_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_last_page_number", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_merchant_id": {"name": "loyalty_stg__processors_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_name": {"name": "loyalty_stg__processors_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_oauth_token_id": {"name": "loyalty_stg__processors_oauth_token_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_oauth_token_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_paused": {"name": "loyalty_stg__processors_paused", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_paused", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_permissions": {"name": "loyalty_stg__processors_permissions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_permissions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_type": {"name": "loyalty_stg__processors_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__processors_updated_at": {"name": "loyalty_stg__processors_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__processors/loyalty_stg__processors.md", "unique_id": "doc.yoda.loyalty_stg__processors_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_category_id": {"name": "loyalty_stg__purchase_items_category_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_category_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_created_at": {"name": "loyalty_stg__purchase_items_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_currency": {"name": "loyalty_stg__purchase_items_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_id": {"name": "loyalty_stg__purchase_items_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_price_cents": {"name": "loyalty_stg__purchase_items_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_price_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_product_id": {"name": "loyalty_stg__purchase_items_product_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_product_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_product_type": {"name": "loyalty_stg__purchase_items_product_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_product_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_purchase_id": {"name": "loyalty_stg__purchase_items_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_purchase_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_quantity": {"name": "loyalty_stg__purchase_items_quantity", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_quantity", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_tags": {"name": "loyalty_stg__purchase_items_tags", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_third_party_id": {"name": "loyalty_stg__purchase_items_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_third_party_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_title": {"name": "loyalty_stg__purchase_items_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_title", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_updated_at": {"name": "loyalty_stg__purchase_items_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchase_items_vendor": {"name": "loyalty_stg__purchase_items_vendor", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchase_items/loyalty_stg__purchase_items.md", "unique_id": "doc.yoda.loyalty_stg__purchase_items_vendor", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_affiliate_amount": {"name": "loyalty_stg__purchases_affiliate_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_affiliate_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_amount_cents": {"name": "loyalty_stg__purchases_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_applied_to_campaigns": {"name": "loyalty_stg__purchases_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_applied_to_campaigns", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_avs_postal_match": {"name": "loyalty_stg__purchases_avs_postal_match", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_avs_postal_match", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_avs_result_code": {"name": "loyalty_stg__purchases_avs_result_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_avs_result_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_avs_street_match": {"name": "loyalty_stg__purchases_avs_street_match", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_avs_street_match", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_before_swellrewards": {"name": "loyalty_stg__purchases_before_swellrewards", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_before_swellrewards", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_billing_address1": {"name": "loyalty_stg__purchases_billing_address1", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_billing_address1", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_billing_address2": {"name": "loyalty_stg__purchases_billing_address2", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_billing_address2", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_billing_city": {"name": "loyalty_stg__purchases_billing_city", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_billing_city", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_billing_country_code": {"name": "loyalty_stg__purchases_billing_country_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_billing_country_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_billing_first_name": {"name": "loyalty_stg__purchases_billing_first_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_billing_first_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_billing_last_name": {"name": "loyalty_stg__purchases_billing_last_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_billing_last_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_billing_phone": {"name": "loyalty_stg__purchases_billing_phone", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_billing_phone", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_billing_zip": {"name": "loyalty_stg__purchases_billing_zip", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_billing_zip", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_browser_country_code": {"name": "loyalty_stg__purchases_browser_country_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_browser_country_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_channel_type": {"name": "loyalty_stg__purchases_channel_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_channel_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_chargeback_protection": {"name": "loyalty_stg__purchases_chargeback_protection", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_chargeback_protection", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_clerk_employee_id": {"name": "loyalty_stg__purchases_clerk_employee_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_clerk_employee_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_clerk_name": {"name": "loyalty_stg__purchases_clerk_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_clerk_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_created_at": {"name": "loyalty_stg__purchases_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_credit_card_bin": {"name": "loyalty_stg__purchases_credit_card_bin", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_credit_card_bin", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_credit_card_company": {"name": "loyalty_stg__purchases_credit_card_company", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_credit_card_company", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_credit_card_number": {"name": "loyalty_stg__purchases_credit_card_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_credit_card_number", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_currency": {"name": "loyalty_stg__purchases_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_customer_id": {"name": "loyalty_stg__purchases_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_cvv_result_code": {"name": "loyalty_stg__purchases_cvv_result_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_cvv_result_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_eligible_for_vip_tiers": {"name": "loyalty_stg__purchases_eligible_for_vip_tiers", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_eligible_for_vip_tiers", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_fee_amount_cents": {"name": "loyalty_stg__purchases_fee_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_fee_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_fraud_review": {"name": "loyalty_stg__purchases_fraud_review", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_fraud_review", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_gateway": {"name": "loyalty_stg__purchases_gateway", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_gateway", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_has_swell_user": {"name": "loyalty_stg__purchases_has_swell_user", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_has_swell_user", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_id": {"name": "loyalty_stg__purchases_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_ip_address": {"name": "loyalty_stg__purchases_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_ip_address", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_is_refunded": {"name": "loyalty_stg__purchases_is_refunded", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_is_refunded", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_is_repeat": {"name": "loyalty_stg__purchases_is_repeat", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_is_repeat", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_landing_site": {"name": "loyalty_stg__purchases_landing_site", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_landing_site", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_merchant_id": {"name": "loyalty_stg__purchases_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_order_id": {"name": "loyalty_stg__purchases_order_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_order_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_processor_id": {"name": "loyalty_stg__purchases_processor_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_processor_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_redemption_code_id": {"name": "loyalty_stg__purchases_redemption_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_redemption_code_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_referral_discount_code_id": {"name": "loyalty_stg__purchases_referral_discount_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_referral_discount_code_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_referral_id": {"name": "loyalty_stg__purchases_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_referral_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_referring_site": {"name": "loyalty_stg__purchases_referring_site", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_referring_site", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_sender_email": {"name": "loyalty_stg__purchases_sender_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_sender_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_shipping_address1": {"name": "loyalty_stg__purchases_shipping_address1", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_shipping_address1", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_shipping_address2": {"name": "loyalty_stg__purchases_shipping_address2", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_shipping_address2", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_shipping_city": {"name": "loyalty_stg__purchases_shipping_city", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_shipping_city", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_shipping_country_code": {"name": "loyalty_stg__purchases_shipping_country_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_shipping_country_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_shipping_first_name": {"name": "loyalty_stg__purchases_shipping_first_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_shipping_first_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_shipping_last_name": {"name": "loyalty_stg__purchases_shipping_last_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_shipping_last_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_shipping_phone": {"name": "loyalty_stg__purchases_shipping_phone", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_shipping_phone", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_shipping_zip": {"name": "loyalty_stg__purchases_shipping_zip", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_shipping_zip", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_store_account_id": {"name": "loyalty_stg__purchases_store_account_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_store_account_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_store_address": {"name": "loyalty_stg__purchases_store_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_store_address", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_store_city": {"name": "loyalty_stg__purchases_store_city", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_store_city", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_store_state": {"name": "loyalty_stg__purchases_store_state", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_store_state", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_swell_discount_cost_cents": {"name": "loyalty_stg__purchases_swell_discount_cost_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_swell_discount_cost_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_synced_to_analytics": {"name": "loyalty_stg__purchases_synced_to_analytics", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_synced_to_analytics", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_transaction_hash": {"name": "loyalty_stg__purchases_transaction_hash", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_transaction_hash", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_transaction_id": {"name": "loyalty_stg__purchases_transaction_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_transaction_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_updated_at": {"name": "loyalty_stg__purchases_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_user_agent": {"name": "loyalty_stg__purchases_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_user_agent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_user_agent_id": {"name": "loyalty_stg__purchases_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_user_agent_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_user_id": {"name": "loyalty_stg__purchases_user_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_vip_tier_eligibility_job_id": {"name": "loyalty_stg__purchases_vip_tier_eligibility_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases/loyalty_stg__purchases.md", "unique_id": "doc.yoda.loyalty_stg__purchases_vip_tier_eligibility_job_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_redemptions_created_at": {"name": "loyalty_stg__purchases_redemptions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__purchases_redemptions_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_redemptions_id": {"name": "loyalty_stg__purchases_redemptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__purchases_redemptions_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_redemptions_purchase_id": {"name": "loyalty_stg__purchases_redemptions_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__purchases_redemptions_purchase_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_redemptions_redemption_id": {"name": "loyalty_stg__purchases_redemptions_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__purchases_redemptions_redemption_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_redemptions_updated_at": {"name": "loyalty_stg__purchases_redemptions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_redemptions/loyalty_stg__purchases_redemptions.md", "unique_id": "doc.yoda.loyalty_stg__purchases_redemptions_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_with_currency_amount_cents": {"name": "loyalty_stg__purchases_with_currency_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "unique_id": "doc.yoda.loyalty_stg__purchases_with_currency_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_with_currency_created_at": {"name": "loyalty_stg__purchases_with_currency_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "unique_id": "doc.yoda.loyalty_stg__purchases_with_currency_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_with_currency_currency_symbol": {"name": "loyalty_stg__purchases_with_currency_currency_symbol", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "unique_id": "doc.yoda.loyalty_stg__purchases_with_currency_currency_symbol", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_with_currency_external_exchange_rate": {"name": "loyalty_stg__purchases_with_currency_external_exchange_rate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "unique_id": "doc.yoda.loyalty_stg__purchases_with_currency_external_exchange_rate", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_with_currency_id": {"name": "loyalty_stg__purchases_with_currency_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "unique_id": "doc.yoda.loyalty_stg__purchases_with_currency_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_with_currency_loyalty_exchange_rate": {"name": "loyalty_stg__purchases_with_currency_loyalty_exchange_rate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "unique_id": "doc.yoda.loyalty_stg__purchases_with_currency_loyalty_exchange_rate", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_with_currency_merchant_id": {"name": "loyalty_stg__purchases_with_currency_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "unique_id": "doc.yoda.loyalty_stg__purchases_with_currency_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_with_currency_purchase_id": {"name": "loyalty_stg__purchases_with_currency_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "unique_id": "doc.yoda.loyalty_stg__purchases_with_currency_purchase_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__purchases_with_currency_updated_at": {"name": "loyalty_stg__purchases_with_currency_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__purchases_with_currency/loyalty_stg__purchases_with_currency.md", "unique_id": "doc.yoda.loyalty_stg__purchases_with_currency_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_amount_used_cents": {"name": "loyalty_stg__redemption_codes_amount_used_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_amount_used_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_code": {"name": "loyalty_stg__redemption_codes_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_created_at": {"name": "loyalty_stg__redemption_codes_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_id": {"name": "loyalty_stg__redemption_codes_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_merchant_id": {"name": "loyalty_stg__redemption_codes_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_point_redemption_id": {"name": "loyalty_stg__redemption_codes_point_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_point_redemption_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_recharge_third_party_id": {"name": "loyalty_stg__redemption_codes_recharge_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_recharge_third_party_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_redemption_option_id": {"name": "loyalty_stg__redemption_codes_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_redemption_option_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_third_party_id": {"name": "loyalty_stg__redemption_codes_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_third_party_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_third_party_rule_id": {"name": "loyalty_stg__redemption_codes_third_party_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_third_party_rule_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_updated_at": {"name": "loyalty_stg__redemption_codes_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_used": {"name": "loyalty_stg__redemption_codes_used", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_used", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_codes_uses": {"name": "loyalty_stg__redemption_codes_uses", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_codes/loyalty_stg__redemption_codes.md", "unique_id": "doc.yoda.loyalty_stg__redemption_codes_uses", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_amount": {"name": "loyalty_stg__redemption_options_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_applies_once": {"name": "loyalty_stg__redemption_options_applies_once", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_applies_once", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_applies_to_any_or_all_attributes": {"name": "loyalty_stg__redemption_options_applies_to_any_or_all_attributes", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_applies_to_any_or_all_attributes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_applies_to_attributes": {"name": "loyalty_stg__redemption_options_applies_to_attributes", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_applies_to_attributes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_applies_to_id": {"name": "loyalty_stg__redemption_options_applies_to_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_applies_to_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_applies_to_product_type": {"name": "loyalty_stg__redemption_options_applies_to_product_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_applies_to_product_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_applies_to_resource": {"name": "loyalty_stg__redemption_options_applies_to_resource", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_applies_to_resource", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_applies_to_values": {"name": "loyalty_stg__redemption_options_applies_to_values", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_applies_to_values", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_automatically_apply": {"name": "loyalty_stg__redemption_options_automatically_apply", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_automatically_apply", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_background_image_id": {"name": "loyalty_stg__redemption_options_background_image_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_background_image_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_cart_greater_than_cents": {"name": "loyalty_stg__redemption_options_cart_greater_than_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_cart_greater_than_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_charset": {"name": "loyalty_stg__redemption_options_charset", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_charset", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_code_length": {"name": "loyalty_stg__redemption_options_code_length", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_code_length", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_collection_ids": {"name": "loyalty_stg__redemption_options_collection_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_collection_ids", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_cost_text": {"name": "loyalty_stg__redemption_options_cost_text", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_cost_text", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_coupon_cancellation_url": {"name": "loyalty_stg__redemption_options_coupon_cancellation_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_coupon_cancellation_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_coupons_pool_amount": {"name": "loyalty_stg__redemption_options_coupons_pool_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_coupons_pool_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_created_at": {"name": "loyalty_stg__redemption_options_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_currency": {"name": "loyalty_stg__redemption_options_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_custom_coupon_cost_cents": {"name": "loyalty_stg__redemption_options_custom_coupon_cost_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_custom_coupon_cost_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_customer_ids": {"name": "loyalty_stg__redemption_options_customer_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_customer_ids", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_deleted": {"name": "loyalty_stg__redemption_options_deleted", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_deleted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_description": {"name": "loyalty_stg__redemption_options_description", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_discount_amount_cents": {"name": "loyalty_stg__redemption_options_discount_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_discount_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_discount_percentage": {"name": "loyalty_stg__redemption_options_discount_percentage", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_discount_percentage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_discount_rate_cents": {"name": "loyalty_stg__redemption_options_discount_rate_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_discount_rate_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_discount_type": {"name": "loyalty_stg__redemption_options_discount_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_discount_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_display_in_admin": {"name": "loyalty_stg__redemption_options_display_in_admin", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_display_in_admin", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_display_in_popup": {"name": "loyalty_stg__redemption_options_display_in_popup", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_display_in_popup", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_display_order": {"name": "loyalty_stg__redemption_options_display_order", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_display_order", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_duration": {"name": "loyalty_stg__redemption_options_duration", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_duration", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_expires_after": {"name": "loyalty_stg__redemption_options_expires_after", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_expires_after", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_free_product_cost_cents": {"name": "loyalty_stg__redemption_options_free_product_cost_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_free_product_cost_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_free_shipping_less_than_cents": {"name": "loyalty_stg__redemption_options_free_shipping_less_than_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_free_shipping_less_than_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_generic_url": {"name": "loyalty_stg__redemption_options_generic_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_generic_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_group_ids": {"name": "loyalty_stg__redemption_options_group_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_group_ids", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_icon": {"name": "loyalty_stg__redemption_options_icon", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_icon", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_id": {"name": "loyalty_stg__redemption_options_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_image": {"name": "loyalty_stg__redemption_options_image", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_image", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_is_offline": {"name": "loyalty_stg__redemption_options_is_offline", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_is_offline", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_is_pos": {"name": "loyalty_stg__redemption_options_is_pos", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_is_pos", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_merchant_id": {"name": "loyalty_stg__redemption_options_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_min_amount": {"name": "loyalty_stg__redemption_options_min_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_min_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_name": {"name": "loyalty_stg__redemption_options_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_once_per_customer": {"name": "loyalty_stg__redemption_options_once_per_customer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_once_per_customer", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_prefix": {"name": "loyalty_stg__redemption_options_prefix", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_prefix", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_product_ids": {"name": "loyalty_stg__redemption_options_product_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_product_ids", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_quantity": {"name": "loyalty_stg__redemption_options_quantity", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_quantity", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_redemption_codes_webhook_threshold": {"name": "loyalty_stg__redemption_options_redemption_codes_webhook_threshold", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_redemption_codes_webhook_threshold", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_restrict_to_redeeming_customer": {"name": "loyalty_stg__redemption_options_restrict_to_redeeming_customer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_restrict_to_redeeming_customer", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_reward_intro": {"name": "loyalty_stg__redemption_options_reward_intro", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_reward_intro", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_saved_search_ids": {"name": "loyalty_stg__redemption_options_saved_search_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_saved_search_ids", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_secret": {"name": "loyalty_stg__redemption_options_secret", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_secret", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_segment_ids": {"name": "loyalty_stg__redemption_options_segment_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_segment_ids", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_show_online": {"name": "loyalty_stg__redemption_options_show_online", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_show_online", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_single_use": {"name": "loyalty_stg__redemption_options_single_use", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_single_use", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_skip_platform_create": {"name": "loyalty_stg__redemption_options_skip_platform_create", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_skip_platform_create", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_third_party_id": {"name": "loyalty_stg__redemption_options_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_third_party_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_title": {"name": "loyalty_stg__redemption_options_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_title", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_type": {"name": "loyalty_stg__redemption_options_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_updated_at": {"name": "loyalty_stg__redemption_options_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_usage_limit": {"name": "loyalty_stg__redemption_options_usage_limit", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_usage_limit", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_value_cents": {"name": "loyalty_stg__redemption_options_value_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_value_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__redemption_options_variant_ids": {"name": "loyalty_stg__redemption_options_variant_ids", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__redemption_options/loyalty_stg__redemption_options.md", "unique_id": "doc.yoda.loyalty_stg__redemption_options_variant_ids", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_amount_cents": {"name": "loyalty_stg__referral_codes_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_average_amount_cents": {"name": "loyalty_stg__referral_codes_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_average_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_campaign_id": {"name": "loyalty_stg__referral_codes_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_clicks": {"name": "loyalty_stg__referral_codes_clicks", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_clicks", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_code": {"name": "loyalty_stg__referral_codes_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_copy_link_shares": {"name": "loyalty_stg__referral_codes_copy_link_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_copy_link_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_created_at": {"name": "loyalty_stg__referral_codes_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_customer_id": {"name": "loyalty_stg__referral_codes_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_email_shares": {"name": "loyalty_stg__referral_codes_email_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_email_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_emails_sent": {"name": "loyalty_stg__referral_codes_emails_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_emails_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_emails_viewed": {"name": "loyalty_stg__referral_codes_emails_viewed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_emails_viewed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_expiration_final_reminder_job_id": {"name": "loyalty_stg__referral_codes_expiration_final_reminder_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_expiration_final_reminder_job_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_expiration_reminder_job_id": {"name": "loyalty_stg__referral_codes_expiration_reminder_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_expiration_reminder_job_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_expire_job_id": {"name": "loyalty_stg__referral_codes_expire_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_expire_job_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_expired": {"name": "loyalty_stg__referral_codes_expired", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_expired", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_expires_at": {"name": "loyalty_stg__referral_codes_expires_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_expires_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_facebook_messenger_shares": {"name": "loyalty_stg__referral_codes_facebook_messenger_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_facebook_messenger_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_facebook_shares": {"name": "loyalty_stg__referral_codes_facebook_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_facebook_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_id": {"name": "loyalty_stg__referral_codes_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_identity_id": {"name": "loyalty_stg__referral_codes_identity_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_identity_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_invalid_clicks": {"name": "loyalty_stg__referral_codes_invalid_clicks", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_invalid_clicks", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_links_clicked": {"name": "loyalty_stg__referral_codes_links_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_links_clicked", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_links_clicked_from_email": {"name": "loyalty_stg__referral_codes_links_clicked_from_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_links_clicked_from_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_links_clicked_from_facebook": {"name": "loyalty_stg__referral_codes_links_clicked_from_facebook", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_links_clicked_from_facebook", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_links_clicked_from_twitter": {"name": "loyalty_stg__referral_codes_links_clicked_from_twitter", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_links_clicked_from_twitter", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_merchant_id": {"name": "loyalty_stg__referral_codes_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_orders": {"name": "loyalty_stg__referral_codes_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_personal_email_shares": {"name": "loyalty_stg__referral_codes_personal_email_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_personal_email_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_shares": {"name": "loyalty_stg__referral_codes_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_sms_shares": {"name": "loyalty_stg__referral_codes_sms_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_sms_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_target_referrals": {"name": "loyalty_stg__referral_codes_target_referrals", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_target_referrals", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_twitter_shares": {"name": "loyalty_stg__referral_codes_twitter_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_twitter_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_updated_at": {"name": "loyalty_stg__referral_codes_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_codes_whatsapp_shares": {"name": "loyalty_stg__referral_codes_whatsapp_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_codes/loyalty_stg__referral_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_codes_whatsapp_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_amount_cents": {"name": "loyalty_stg__referral_discount_codes_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_amount_used_cents": {"name": "loyalty_stg__referral_discount_codes_amount_used_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_amount_used_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_average_amount_cents": {"name": "loyalty_stg__referral_discount_codes_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_average_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_batch_id": {"name": "loyalty_stg__referral_discount_codes_batch_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_batch_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_campaign_id": {"name": "loyalty_stg__referral_discount_codes_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_code": {"name": "loyalty_stg__referral_discount_codes_code", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_code", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_created_at": {"name": "loyalty_stg__referral_discount_codes_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_customer_id": {"name": "loyalty_stg__referral_discount_codes_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_id": {"name": "loyalty_stg__referral_discount_codes_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_merchant_id": {"name": "loyalty_stg__referral_discount_codes_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_orders": {"name": "loyalty_stg__referral_discount_codes_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_redemption_option_id": {"name": "loyalty_stg__referral_discount_codes_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_redemption_option_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_third_party_id": {"name": "loyalty_stg__referral_discount_codes_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_third_party_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_third_party_rule_id": {"name": "loyalty_stg__referral_discount_codes_third_party_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_third_party_rule_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_updated_at": {"name": "loyalty_stg__referral_discount_codes_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_used": {"name": "loyalty_stg__referral_discount_codes_used", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_used", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_discount_codes_uses": {"name": "loyalty_stg__referral_discount_codes_uses", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_discount_codes/loyalty_stg__referral_discount_codes.md", "unique_id": "doc.yoda.loyalty_stg__referral_discount_codes_uses", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_completed_at": {"name": "loyalty_stg__referral_receipts_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_completed_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_created_at": {"name": "loyalty_stg__referral_receipts_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_customer_id": {"name": "loyalty_stg__referral_receipts_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_email": {"name": "loyalty_stg__referral_receipts_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_id": {"name": "loyalty_stg__referral_receipts_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_is_reversed": {"name": "loyalty_stg__referral_receipts_is_reversed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_is_reversed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_merchant_id": {"name": "loyalty_stg__referral_receipts_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_referral_code_id": {"name": "loyalty_stg__referral_receipts_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_referral_code_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_referral_discount_code_id": {"name": "loyalty_stg__referral_receipts_referral_discount_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_referral_discount_code_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_referral_id": {"name": "loyalty_stg__referral_receipts_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_referral_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_referred_customer_id": {"name": "loyalty_stg__referral_receipts_referred_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_referred_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_reminder_job_id": {"name": "loyalty_stg__referral_receipts_reminder_job_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_reminder_job_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_signed_up_at": {"name": "loyalty_stg__referral_receipts_signed_up_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_signed_up_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_source": {"name": "loyalty_stg__referral_receipts_source", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_source", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_receipts_updated_at": {"name": "loyalty_stg__referral_receipts_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_receipts/loyalty_stg__referral_receipts.md", "unique_id": "doc.yoda.loyalty_stg__referral_receipts_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_shares_created_at": {"name": "loyalty_stg__referral_shares_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "unique_id": "doc.yoda.loyalty_stg__referral_shares_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_shares_customer_id": {"name": "loyalty_stg__referral_shares_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "unique_id": "doc.yoda.loyalty_stg__referral_shares_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_shares_id": {"name": "loyalty_stg__referral_shares_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "unique_id": "doc.yoda.loyalty_stg__referral_shares_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_shares_ip_address": {"name": "loyalty_stg__referral_shares_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "unique_id": "doc.yoda.loyalty_stg__referral_shares_ip_address", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_shares_merchant_id": {"name": "loyalty_stg__referral_shares_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "unique_id": "doc.yoda.loyalty_stg__referral_shares_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_shares_referral_code_id": {"name": "loyalty_stg__referral_shares_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "unique_id": "doc.yoda.loyalty_stg__referral_shares_referral_code_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_shares_type": {"name": "loyalty_stg__referral_shares_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "unique_id": "doc.yoda.loyalty_stg__referral_shares_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_shares_updated_at": {"name": "loyalty_stg__referral_shares_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "unique_id": "doc.yoda.loyalty_stg__referral_shares_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_shares_user_agent_id": {"name": "loyalty_stg__referral_shares_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_shares/loyalty_stg__referral_shares.md", "unique_id": "doc.yoda.loyalty_stg__referral_shares_user_agent_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_amount_cents": {"name": "loyalty_stg__referral_snapshots_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_average_amount_cents": {"name": "loyalty_stg__referral_snapshots_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_average_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_copy_link_shares": {"name": "loyalty_stg__referral_snapshots_copy_link_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_copy_link_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_created_at": {"name": "loyalty_stg__referral_snapshots_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_day": {"name": "loyalty_stg__referral_snapshots_day", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_day", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_email_shares": {"name": "loyalty_stg__referral_snapshots_email_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_email_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_emails_sent": {"name": "loyalty_stg__referral_snapshots_emails_sent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_emails_sent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_emails_viewed": {"name": "loyalty_stg__referral_snapshots_emails_viewed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_emails_viewed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_facebook_messenger_shares": {"name": "loyalty_stg__referral_snapshots_facebook_messenger_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_facebook_messenger_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_facebook_shares": {"name": "loyalty_stg__referral_snapshots_facebook_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_facebook_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_id": {"name": "loyalty_stg__referral_snapshots_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_links_clicked": {"name": "loyalty_stg__referral_snapshots_links_clicked", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_links_clicked", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_links_clicked_from_email": {"name": "loyalty_stg__referral_snapshots_links_clicked_from_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_links_clicked_from_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_links_clicked_from_facebook": {"name": "loyalty_stg__referral_snapshots_links_clicked_from_facebook", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_links_clicked_from_facebook", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_links_clicked_from_twitter": {"name": "loyalty_stg__referral_snapshots_links_clicked_from_twitter", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_links_clicked_from_twitter", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_merchant_id": {"name": "loyalty_stg__referral_snapshots_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_orders": {"name": "loyalty_stg__referral_snapshots_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_personal_email_shares": {"name": "loyalty_stg__referral_snapshots_personal_email_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_personal_email_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_shares": {"name": "loyalty_stg__referral_snapshots_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_sms_shares": {"name": "loyalty_stg__referral_snapshots_sms_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_sms_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_twitter_shares": {"name": "loyalty_stg__referral_snapshots_twitter_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_twitter_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_updated_at": {"name": "loyalty_stg__referral_snapshots_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referral_snapshots_whatsapp_shares": {"name": "loyalty_stg__referral_snapshots_whatsapp_shares", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referral_snapshots/loyalty_stg__referral_snapshots.md", "unique_id": "doc.yoda.loyalty_stg__referral_snapshots_whatsapp_shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_amount_cents": {"name": "loyalty_stg__referrals_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_average_amount_cents": {"name": "loyalty_stg__referrals_average_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_average_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_campaign_id": {"name": "loyalty_stg__referrals_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_completed_at": {"name": "loyalty_stg__referrals_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_completed_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_created_at": {"name": "loyalty_stg__referrals_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_currency": {"name": "loyalty_stg__referrals_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_customer_id": {"name": "loyalty_stg__referrals_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_external_product_id": {"name": "loyalty_stg__referrals_external_product_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_external_product_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_id": {"name": "loyalty_stg__referrals_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_ip_address": {"name": "loyalty_stg__referrals_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_ip_address", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_is_apple_private_relay_ip": {"name": "loyalty_stg__referrals_is_apple_private_relay_ip", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_is_apple_private_relay_ip", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_link_share_type": {"name": "loyalty_stg__referrals_link_share_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_link_share_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_manually_override_status": {"name": "loyalty_stg__referrals_manually_override_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_manually_override_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_merchant_id": {"name": "loyalty_stg__referrals_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_orders": {"name": "loyalty_stg__referrals_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_points_balance": {"name": "loyalty_stg__referrals_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_points_balance", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_points_earned": {"name": "loyalty_stg__referrals_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_points_earned", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_referral_code_id": {"name": "loyalty_stg__referrals_referral_code_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_referral_code_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_referred_user_perk_id": {"name": "loyalty_stg__referrals_referred_user_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_referred_user_perk_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_referrer_perk_id": {"name": "loyalty_stg__referrals_referrer_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_referrer_perk_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_referring_host": {"name": "loyalty_stg__referrals_referring_host", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_referring_host", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_updated_at": {"name": "loyalty_stg__referrals_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__referrals_user_agent_id": {"name": "loyalty_stg__referrals_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__referrals/loyalty_stg__referrals.md", "unique_id": "doc.yoda.loyalty_stg__referrals_user_agent_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refund_items_created_at": {"name": "loyalty_stg__refund_items_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "unique_id": "doc.yoda.loyalty_stg__refund_items_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refund_items_discount_allocation_amount_cents": {"name": "loyalty_stg__refund_items_discount_allocation_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "unique_id": "doc.yoda.loyalty_stg__refund_items_discount_allocation_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refund_items_id": {"name": "loyalty_stg__refund_items_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "unique_id": "doc.yoda.loyalty_stg__refund_items_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refund_items_purchase_item_id": {"name": "loyalty_stg__refund_items_purchase_item_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "unique_id": "doc.yoda.loyalty_stg__refund_items_purchase_item_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refund_items_quantity": {"name": "loyalty_stg__refund_items_quantity", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "unique_id": "doc.yoda.loyalty_stg__refund_items_quantity", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refund_items_refund_id": {"name": "loyalty_stg__refund_items_refund_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "unique_id": "doc.yoda.loyalty_stg__refund_items_refund_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refund_items_third_party_id": {"name": "loyalty_stg__refund_items_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "unique_id": "doc.yoda.loyalty_stg__refund_items_third_party_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refund_items_updated_at": {"name": "loyalty_stg__refund_items_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refund_items/loyalty_stg__refund_items.md", "unique_id": "doc.yoda.loyalty_stg__refund_items_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_amount_cents": {"name": "loyalty_stg__refunds_amount_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_amount_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_amount_cents_in_shopper_currency": {"name": "loyalty_stg__refunds_amount_cents_in_shopper_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_amount_cents_in_shopper_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_created_at": {"name": "loyalty_stg__refunds_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_currency": {"name": "loyalty_stg__refunds_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_gift_card_amount": {"name": "loyalty_stg__refunds_gift_card_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_gift_card_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_gift_card_cents": {"name": "loyalty_stg__refunds_gift_card_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_gift_card_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_id": {"name": "loyalty_stg__refunds_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_purchase_id": {"name": "loyalty_stg__refunds_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_purchase_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_refund_id": {"name": "loyalty_stg__refunds_refund_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_refund_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_swell_gift_card_amount": {"name": "loyalty_stg__refunds_swell_gift_card_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_swell_gift_card_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_swell_gift_card_cents": {"name": "loyalty_stg__refunds_swell_gift_card_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_swell_gift_card_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_total_amount": {"name": "loyalty_stg__refunds_total_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_total_amount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__refunds_updated_at": {"name": "loyalty_stg__refunds_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__refunds/loyalty_stg__refunds.md", "unique_id": "doc.yoda.loyalty_stg__refunds_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__static_contents": {"name": "loyalty_stg__static_contents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "unique_id": "doc.yoda.loyalty_stg__static_contents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__static_contents_created_at": {"name": "loyalty_stg__static_contents_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "unique_id": "doc.yoda.loyalty_stg__static_contents_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__static_contents_id": {"name": "loyalty_stg__static_contents_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "unique_id": "doc.yoda.loyalty_stg__static_contents_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__static_contents_processing_time": {"name": "loyalty_stg__static_contents_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "unique_id": "doc.yoda.loyalty_stg__static_contents_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__static_contents_resource_path": {"name": "loyalty_stg__static_contents_resource_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "unique_id": "doc.yoda.loyalty_stg__static_contents_resource_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__static_contents_ts_ms": {"name": "loyalty_stg__static_contents_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "unique_id": "doc.yoda.loyalty_stg__static_contents_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__static_contents_updated_at": {"name": "loyalty_stg__static_contents_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "unique_id": "doc.yoda.loyalty_stg__static_contents_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__static_contents_upsolver_schema_version": {"name": "loyalty_stg__static_contents_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__static_contents/loyalty_stg__static_contents.md", "unique_id": "doc.yoda.loyalty_stg__static_contents_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__subscriptions_base_price_cents": {"name": "loyalty_stg__subscriptions_base_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_base_price_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_billing_provider": {"name": "loyalty_stg__subscriptions_billing_provider", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_billing_provider", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_charge_status": {"name": "loyalty_stg__subscriptions_charge_status", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_charge_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_created_at": {"name": "loyalty_stg__subscriptions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_current": {"name": "loyalty_stg__subscriptions_current", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_current", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_id": {"name": "loyalty_stg__subscriptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_included_orders": {"name": "loyalty_stg__subscriptions_included_orders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_included_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_last_usage_charge_at": {"name": "loyalty_stg__subscriptions_last_usage_charge_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_last_usage_charge_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_manual_price_cents": {"name": "loyalty_stg__subscriptions_manual_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_manual_price_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_merchant_id": {"name": "loyalty_stg__subscriptions_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_overdue": {"name": "loyalty_stg__subscriptions_overdue", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_overdue", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_pending": {"name": "loyalty_stg__subscriptions_pending", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_pending", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_per_order_price_cents": {"name": "loyalty_stg__subscriptions_per_order_price_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_per_order_price_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_percentage_of_redemptions": {"name": "loyalty_stg__subscriptions_percentage_of_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_percentage_of_redemptions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_percentage_of_referrals": {"name": "loyalty_stg__subscriptions_percentage_of_referrals", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_percentage_of_referrals", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_plan_id": {"name": "loyalty_stg__subscriptions_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_plan_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_recurring_charge_id": {"name": "loyalty_stg__subscriptions_recurring_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_recurring_charge_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_updated_at": {"name": "loyalty_stg__subscriptions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__subscriptions_was_current": {"name": "loyalty_stg__subscriptions_was_current", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__subscriptions/loyalty_stg__subscriptions.md", "unique_id": "doc.yoda.loyalty_stg__subscriptions_was_current", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_created_at": {"name": "loyalty_stg__swell_vip_tiers_settings_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_custom_start_date": {"name": "loyalty_stg__swell_vip_tiers_settings_custom_start_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_custom_start_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_delay_purchase_eligibility_days": {"name": "loyalty_stg__swell_vip_tiers_settings_delay_purchase_eligibility_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_delay_purchase_eligibility_days", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_delay_purchase_eligibility_enabled": {"name": "loyalty_stg__swell_vip_tiers_settings_delay_purchase_eligibility_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_delay_purchase_eligibility_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_dropping_policy": {"name": "loyalty_stg__swell_vip_tiers_settings_dropping_policy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_dropping_policy", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_entry_fulfillment_timeframe": {"name": "loyalty_stg__swell_vip_tiers_settings_entry_fulfillment_timeframe", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_entry_fulfillment_timeframe", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_include_actions_pre_opt_in": {"name": "loyalty_stg__swell_vip_tiers_settings_include_actions_pre_opt_in", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_include_actions_pre_opt_in", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_is_vip_enabled": {"name": "loyalty_stg__swell_vip_tiers_settings_is_vip_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_is_vip_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_last_enabled_type": {"name": "loyalty_stg__swell_vip_tiers_settings_last_enabled_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_last_enabled_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_merchant_id": {"name": "loyalty_stg__swell_vip_tiers_settings_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_sync_to_platform": {"name": "loyalty_stg__swell_vip_tiers_settings_sync_to_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_sync_to_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_type": {"name": "loyalty_stg__swell_vip_tiers_settings_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__swell_vip_tiers_settings_updated_at": {"name": "loyalty_stg__swell_vip_tiers_settings_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__swell_vip_tiers_settings/loyalty_stg__swell_vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__swell_vip_tiers_settings_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__templates": {"name": "loyalty_stg__templates", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__templates_created_at": {"name": "loyalty_stg__templates_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__templates_customization_schema_path": {"name": "loyalty_stg__templates_customization_schema_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates_customization_schema_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__templates_dependency_group_id": {"name": "loyalty_stg__templates_dependency_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates_dependency_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__templates_id": {"name": "loyalty_stg__templates_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__templates_processing_time": {"name": "loyalty_stg__templates_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__templates_resource_path": {"name": "loyalty_stg__templates_resource_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates_resource_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__templates_ts_ms": {"name": "loyalty_stg__templates_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__templates_updated_at": {"name": "loyalty_stg__templates_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__templates_upsolver_schema_version": {"name": "loyalty_stg__templates_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__templates_version": {"name": "loyalty_stg__templates_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__templates_widget_type_id": {"name": "loyalty_stg__templates_widget_type_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__templates/loyalty_stg__templates.md", "unique_id": "doc.yoda.loyalty_stg__templates_widget_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty__base_uninstall_loyalty": {"name": "loyalty__base_uninstall_loyalty", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty__base_uninstall_loyalty", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__uninstall_loyalty_accountid": {"name": "loyalty_stg__uninstall_loyalty_accountid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_adminname": {"name": "loyalty_stg__uninstall_loyalty_adminname", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_anonymous_id": {"name": "loyalty_stg__uninstall_loyalty_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_appkey": {"name": "loyalty_stg__uninstall_loyalty_appkey", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_billingproviders": {"name": "loyalty_stg__uninstall_loyalty_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_billingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_channel": {"name": "loyalty_stg__uninstall_loyalty_channel", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_chargeid": {"name": "loyalty_stg__uninstall_loyalty_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_chargeprice": {"name": "loyalty_stg__uninstall_loyalty_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_company_name": {"name": "loyalty_stg__uninstall_loyalty_company_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_company_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_createdat": {"name": "loyalty_stg__uninstall_loyalty_createdat", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_currentplan": {"name": "loyalty_stg__uninstall_loyalty_currentplan", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_currentplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_daysinvalidfacebooktoken": {"name": "loyalty_stg__uninstall_loyalty_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_daysinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_daysinvalidpinteresttoken": {"name": "loyalty_stg__uninstall_loyalty_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_daysinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_daysinvalidtwittertoken": {"name": "loyalty_stg__uninstall_loyalty_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_daysinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_email": {"name": "loyalty_stg__uninstall_loyalty_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_event_name": {"name": "loyalty_stg__uninstall_loyalty_event_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_groupid": {"name": "loyalty_stg__uninstall_loyalty_groupid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_initialbucketnumoforders": {"name": "loyalty_stg__uninstall_loyalty_initialbucketnumoforders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_initialbucketnumoforders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_initialnumoforders": {"name": "loyalty_stg__uninstall_loyalty_initialnumoforders", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_initialnumoforders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_is_desktop": {"name": "loyalty_stg__uninstall_loyalty_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_is_mobile": {"name": "loyalty_stg__uninstall_loyalty_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_is_tablet": {"name": "loyalty_stg__uninstall_loyalty_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidfacebooktoken": {"name": "loyalty_stg__uninstall_loyalty_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidfacebooktokendate": {"name": "loyalty_stg__uninstall_loyalty_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidfacebooktokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidpinteresttoken": {"name": "loyalty_stg__uninstall_loyalty_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidpinteresttokendate": {"name": "loyalty_stg__uninstall_loyalty_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidpinteresttokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidtwittertoken": {"name": "loyalty_stg__uninstall_loyalty_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidtwittertokendate": {"name": "loyalty_stg__uninstall_loyalty_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_isinvalidtwittertokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_isnewslettersubscribed": {"name": "loyalty_stg__uninstall_loyalty_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_isreviewswidgetinstalled": {"name": "loyalty_stg__uninstall_loyalty_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_issystemnotificationssubscribed": {"name": "loyalty_stg__uninstall_loyalty_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_isuserscountlimitreached": {"name": "loyalty_stg__uninstall_loyalty_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_isusingpackagesservice": {"name": "loyalty_stg__uninstall_loyalty_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_last30daysbucketorder": {"name": "loyalty_stg__uninstall_loyalty_last30daysbucketorder", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_last30daysbucketorder", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_last30daysorder": {"name": "loyalty_stg__uninstall_loyalty_last30daysorder", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_last30daysorder", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_lastconversionordertime": {"name": "loyalty_stg__uninstall_loyalty_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_library_name": {"name": "loyalty_stg__uninstall_loyalty_library_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_locale": {"name": "loyalty_stg__uninstall_loyalty_locale", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_loyaltyemail": {"name": "loyalty_stg__uninstall_loyalty_loyaltyemail", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_loyaltyemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_loyaltypackage": {"name": "loyalty_stg__uninstall_loyalty_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_merchant_id": {"name": "loyalty_stg__uninstall_loyalty_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_message_id": {"name": "loyalty_stg__uninstall_loyalty_message_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_name": {"name": "loyalty_stg__uninstall_loyalty_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_owner": {"name": "loyalty_stg__uninstall_loyalty_owner", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_owner", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_package": {"name": "loyalty_stg__uninstall_loyalty_package", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_packagecategories": {"name": "loyalty_stg__uninstall_loyalty_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_packageextensions": {"name": "loyalty_stg__uninstall_loyalty_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_packageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_page_path": {"name": "loyalty_stg__uninstall_loyalty_page_path", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_page_referrer": {"name": "loyalty_stg__uninstall_loyalty_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_page_title": {"name": "loyalty_stg__uninstall_loyalty_page_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_page_url": {"name": "loyalty_stg__uninstall_loyalty_page_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_partition_date": {"name": "loyalty_stg__uninstall_loyalty_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_pendingrrs": {"name": "loyalty_stg__uninstall_loyalty_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_phone": {"name": "loyalty_stg__uninstall_loyalty_phone", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_planname": {"name": "loyalty_stg__uninstall_loyalty_planname", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_platform": {"name": "loyalty_stg__uninstall_loyalty_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_platform_plan": {"name": "loyalty_stg__uninstall_loyalty_platform_plan", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_platform_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_processing_time": {"name": "loyalty_stg__uninstall_loyalty_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_product": {"name": "loyalty_stg__uninstall_loyalty_product", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_role": {"name": "loyalty_stg__uninstall_loyalty_role", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_rrmonthlylimit": {"name": "loyalty_stg__uninstall_loyalty_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_signupcountry": {"name": "loyalty_stg__uninstall_loyalty_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_signupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_signupmonthlyorderscount": {"name": "loyalty_stg__uninstall_loyalty_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_signupmonthlyorderscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_signupphone": {"name": "loyalty_stg__uninstall_loyalty_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_signupphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_signuputmcampaign": {"name": "loyalty_stg__uninstall_loyalty_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_signuputmmedium": {"name": "loyalty_stg__uninstall_loyalty_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_signuputmsource": {"name": "loyalty_stg__uninstall_loyalty_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_storecount": {"name": "loyalty_stg__uninstall_loyalty_storecount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_storedomain": {"name": "loyalty_stg__uninstall_loyalty_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_subscriptionstate": {"name": "loyalty_stg__uninstall_loyalty_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_subscriptionstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_timestamp": {"name": "loyalty_stg__uninstall_loyalty_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_traits_email": {"name": "loyalty_stg__uninstall_loyalty_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_traits_name": {"name": "loyalty_stg__uninstall_loyalty_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_traits_plan": {"name": "loyalty_stg__uninstall_loyalty_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_user_id": {"name": "loyalty_stg__uninstall_loyalty_user_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_userid": {"name": "loyalty_stg__uninstall_loyalty_userid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_violated_event": {"name": "loyalty_stg__uninstall_loyalty_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_website": {"name": "loyalty_stg__uninstall_loyalty_website", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__uninstall_loyalty_yotpoip": {"name": "loyalty_stg__uninstall_loyalty_yotpoip", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__uninstall_loyalty/loyalty_stg__uninstall_loyalty.md", "unique_id": "doc.yoda.loyalty_stg__uninstall_loyalty_yotpoip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__user_actions_action_creation_time": {"name": "loyalty_stg__user_actions_action_creation_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_action_creation_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_applied_to_campaigns": {"name": "loyalty_stg__user_actions_applied_to_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_applied_to_campaigns", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_campaign_id": {"name": "loyalty_stg__user_actions_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_campaign_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_created_at": {"name": "loyalty_stg__user_actions_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_customer_id": {"name": "loyalty_stg__user_actions_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_email": {"name": "loyalty_stg__user_actions_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_has_swell_user": {"name": "loyalty_stg__user_actions_has_swell_user", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_has_swell_user", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_history_title": {"name": "loyalty_stg__user_actions_history_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_history_title", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_id": {"name": "loyalty_stg__user_actions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_ip_address": {"name": "loyalty_stg__user_actions_ip_address", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_ip_address", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_merchant_id": {"name": "loyalty_stg__user_actions_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_metadata": {"name": "loyalty_stg__user_actions_metadata", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_metadata", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_name": {"name": "loyalty_stg__user_actions_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_parent_perk_id": {"name": "loyalty_stg__user_actions_parent_perk_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_parent_perk_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_referral_id": {"name": "loyalty_stg__user_actions_referral_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_referral_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_reward_points": {"name": "loyalty_stg__user_actions_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_reward_points", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_synced_to_analytics": {"name": "loyalty_stg__user_actions_synced_to_analytics", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_synced_to_analytics", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_third_party_id": {"name": "loyalty_stg__user_actions_third_party_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_third_party_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_type": {"name": "loyalty_stg__user_actions_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_updated_at": {"name": "loyalty_stg__user_actions_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_user_agent_id": {"name": "loyalty_stg__user_actions_user_agent_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_user_agent_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_actions_user_id": {"name": "loyalty_stg__user_actions_user_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_actions/loyalty_stg__user_actions.md", "unique_id": "doc.yoda.loyalty_stg__user_actions_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_agents_created_at": {"name": "loyalty_stg__user_agents_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.md", "unique_id": "doc.yoda.loyalty_stg__user_agents_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_agents_id": {"name": "loyalty_stg__user_agents_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.md", "unique_id": "doc.yoda.loyalty_stg__user_agents_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_agents_updated_at": {"name": "loyalty_stg__user_agents_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.md", "unique_id": "doc.yoda.loyalty_stg__user_agents_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_agents_user_agent": {"name": "loyalty_stg__user_agents_user_agent", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.md", "unique_id": "doc.yoda.loyalty_stg__user_agents_user_agent", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__user_agents_user_agent_hash": {"name": "loyalty_stg__user_agents_user_agent_hash", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__user_agents/loyalty_stg__user_agents.md", "unique_id": "doc.yoda.loyalty_stg__user_agents_user_agent_hash", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_background_image_id": {"name": "loyalty_stg__vip_tiers_background_image_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_background_image_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_created_at": {"name": "loyalty_stg__vip_tiers_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_currency": {"name": "loyalty_stg__vip_tiers_currency", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_description": {"name": "loyalty_stg__vip_tiers_description", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_earned_title": {"name": "loyalty_stg__vip_tiers_earned_title", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_earned_title", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_id": {"name": "loyalty_stg__vip_tiers_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_merchant_id": {"name": "loyalty_stg__vip_tiers_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_name": {"name": "loyalty_stg__vip_tiers_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_points_multiplier": {"name": "loyalty_stg__vip_tiers_points_multiplier", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_points_multiplier", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_rank": {"name": "loyalty_stg__vip_tiers_rank", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_rank", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_redemption_option_id": {"name": "loyalty_stg__vip_tiers_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_redemption_option_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_reward_points": {"name": "loyalty_stg__vip_tiers_reward_points", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_reward_points", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_should_mirror_entry": {"name": "loyalty_stg__vip_tiers_should_mirror_entry", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_should_mirror_entry", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_type": {"name": "loyalty_stg__vip_tiers_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_updated_at": {"name": "loyalty_stg__vip_tiers_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers/loyalty_stg__vip_tiers.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty__base_vip_tiers_settings": {"name": "loyalty__base_vip_tiers_settings", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty__base_vip_tiers_settings", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_settings_created_at": {"name": "loyalty_stg__vip_tiers_settings_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_custom_start_date": {"name": "loyalty_stg__vip_tiers_settings_custom_start_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_custom_start_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_delay_purchase_eligibility_days": {"name": "loyalty_stg__vip_tiers_settings_delay_purchase_eligibility_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_delay_purchase_eligibility_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_delay_purchase_eligibility_enabled": {"name": "loyalty_stg__vip_tiers_settings_delay_purchase_eligibility_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_delay_purchase_eligibility_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_dropping_policy": {"name": "loyalty_stg__vip_tiers_settings_dropping_policy", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_dropping_policy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_entry_fulfillment_timeframe": {"name": "loyalty_stg__vip_tiers_settings_entry_fulfillment_timeframe", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_entry_fulfillment_timeframe", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_id": {"name": "loyalty_stg__vip_tiers_settings_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_include_actions_pre_opt_in": {"name": "loyalty_stg__vip_tiers_settings_include_actions_pre_opt_in", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_include_actions_pre_opt_in", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_is_enabled": {"name": "loyalty_stg__vip_tiers_settings_is_enabled", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_is_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_last_enabled_type": {"name": "loyalty_stg__vip_tiers_settings_last_enabled_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_last_enabled_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_merchant_id": {"name": "loyalty_stg__vip_tiers_settings_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_sync_to_platform": {"name": "loyalty_stg__vip_tiers_settings_sync_to_platform", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_sync_to_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_tier_expiring_reminder_days": {"name": "loyalty_stg__vip_tiers_settings_tier_expiring_reminder_days", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_tier_expiring_reminder_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_type": {"name": "loyalty_stg__vip_tiers_settings_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_settings_updated_at": {"name": "loyalty_stg__vip_tiers_settings_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_settings/loyalty_stg__vip_tiers_settings.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_settings_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_amount_spent_cents": {"name": "loyalty_stg__vip_tiers_thresholds_amount_spent_cents", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_amount_spent_cents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_campaign_completed": {"name": "loyalty_stg__vip_tiers_thresholds_campaign_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_campaign_completed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_created_at": {"name": "loyalty_stg__vip_tiers_thresholds_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_id": {"name": "loyalty_stg__vip_tiers_thresholds_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_merchant_id": {"name": "loyalty_stg__vip_tiers_thresholds_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_points_earned": {"name": "loyalty_stg__vip_tiers_thresholds_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_points_earned", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_purchases_made": {"name": "loyalty_stg__vip_tiers_thresholds_purchases_made", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_purchases_made", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_referrals_completed": {"name": "loyalty_stg__vip_tiers_thresholds_referrals_completed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_referrals_completed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_requirements_needed": {"name": "loyalty_stg__vip_tiers_thresholds_requirements_needed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_requirements_needed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_tier_id": {"name": "loyalty_stg__vip_tiers_thresholds_tier_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_tier_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_type": {"name": "loyalty_stg__vip_tiers_thresholds_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__vip_tiers_thresholds_updated_at": {"name": "loyalty_stg__vip_tiers_thresholds_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__vip_tiers_thresholds/loyalty_stg__vip_tiers_thresholds.md", "unique_id": "doc.yoda.loyalty_stg__vip_tiers_thresholds_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__widget_types": {"name": "loyalty_stg__widget_types", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "unique_id": "doc.yoda.loyalty_stg__widget_types", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__widget_types_created_at": {"name": "loyalty_stg__widget_types_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "unique_id": "doc.yoda.loyalty_stg__widget_types_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__widget_types_default_customization_id": {"name": "loyalty_stg__widget_types_default_customization_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "unique_id": "doc.yoda.loyalty_stg__widget_types_default_customization_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__widget_types_default_template_id": {"name": "loyalty_stg__widget_types_default_template_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "unique_id": "doc.yoda.loyalty_stg__widget_types_default_template_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__widget_types_id": {"name": "loyalty_stg__widget_types_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "unique_id": "doc.yoda.loyalty_stg__widget_types_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__widget_types_name": {"name": "loyalty_stg__widget_types_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "unique_id": "doc.yoda.loyalty_stg__widget_types_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__widget_types_processing_time": {"name": "loyalty_stg__widget_types_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "unique_id": "doc.yoda.loyalty_stg__widget_types_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__widget_types_ts_ms": {"name": "loyalty_stg__widget_types_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "unique_id": "doc.yoda.loyalty_stg__widget_types_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__widget_types_updated_at": {"name": "loyalty_stg__widget_types_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "unique_id": "doc.yoda.loyalty_stg__widget_types_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__widget_types_upsolver_schema_version": {"name": "loyalty_stg__widget_types_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__widget_types/loyalty_stg__widget_types.md", "unique_id": "doc.yoda.loyalty_stg__widget_types_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__yotpo_platform_accounts_app_key": {"name": "loyalty_stg__yotpo_platform_accounts_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__yotpo_platform_accounts_app_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__yotpo_platform_accounts_app_secret": {"name": "loyalty_stg__yotpo_platform_accounts_app_secret", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__yotpo_platform_accounts_app_secret", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__yotpo_platform_accounts_created_at": {"name": "loyalty_stg__yotpo_platform_accounts_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__yotpo_platform_accounts_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__yotpo_platform_accounts_id": {"name": "loyalty_stg__yotpo_platform_accounts_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__yotpo_platform_accounts_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__yotpo_platform_accounts_merchant_id": {"name": "loyalty_stg__yotpo_platform_accounts_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__yotpo_platform_accounts_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__yotpo_platform_accounts_org_key": {"name": "loyalty_stg__yotpo_platform_accounts_org_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__yotpo_platform_accounts_org_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__yotpo_platform_accounts_updated_at": {"name": "loyalty_stg__yotpo_platform_accounts_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "original_file_path": "models/loyalty/staging/base/loyalty_stg__yotpo_platform_accounts/loyalty_stg__yotpo_platform_accounts.md", "unique_id": "doc.yoda.loyalty_stg__yotpo_platform_accounts_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase": {"name": "loyalty_stg__all_redemption_to_purchase", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase", "block_contents": "the table join redaemption with purchase by 2 way\ntied - by table purchases_redemptions\nuntied - All customers that received a loyalty reward and made a purchase 24 hours post the reward. \nFor a purchase that has more than one redemption, all of them will be aggregated together to leave the unique purchase_id"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_cnt_loyalty_redemptions": {"name": "loyalty_stg__all_redemption_to_purchase_cnt_loyalty_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_cnt_loyalty_redemptions", "block_contents": "count loyalty redemptions used in a purchase (loyalty redemptions= isn't included referral redemptions)"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_cnt_referrals_redemptions": {"name": "loyalty_stg__all_redemption_to_purchase_cnt_referrals_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_cnt_referrals_redemptions", "block_contents": "count only referral redemptions used in a purchase"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_count_redemptions": {"name": "loyalty_stg__all_redemption_to_purchase_count_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_count_redemptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_customer_id": {"name": "loyalty_stg__all_redemption_to_purchase_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_first_point_redemptions_id": {"name": "loyalty_stg__all_redemption_to_purchase_first_point_redemptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_first_point_redemptions_id", "block_contents": "the point redemption id used in a purchase, if hav"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_is_redemption_tied_to_purchase": {"name": "loyalty_stg__all_redemption_to_purchase_is_redemption_tied_to_purchase", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_is_redemption_tied_to_purchase", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_is_referral_redemption": {"name": "loyalty_stg__all_redemption_to_purchase_is_referral_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_is_referral_redemption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_loyalty_purchase_total_discount": {"name": "loyalty_stg__all_redemption_to_purchase_loyalty_purchase_total_discount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_loyalty_purchase_total_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_merchant_id": {"name": "loyalty_stg__all_redemption_to_purchase_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_point_redemptions_id": {"name": "loyalty_stg__all_redemption_to_purchase_point_redemptions_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_point_redemptions_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_purchase_id": {"name": "loyalty_stg__all_redemption_to_purchase_purchase_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_purchase_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_redemption_option_id": {"name": "loyalty_stg__all_redemption_to_purchase_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_redemption_option_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_referral_purchase_total_discount": {"name": "loyalty_stg__all_redemption_to_purchase_referral_purchase_total_discount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_referral_purchase_total_discount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__all_redemption_to_purchase_source_redemption": {"name": "loyalty_stg__all_redemption_to_purchase_source_redemption", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__all_redemption_to_purchase/loyalty_stg__all_redemption_to_purchase.md", "unique_id": "doc.yoda.loyalty_stg__all_redemption_to_purchase_source_redemption", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__domain_useradmin_to_customer_id": {"name": "loyalty_stg__domain_useradmin_to_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.md", "unique_id": "doc.yoda.loyalty_stg__domain_useradmin_to_customer_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__domain_useradmin_to_customer_id_customer_id": {"name": "loyalty_stg__domain_useradmin_to_customer_id_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.md", "unique_id": "doc.yoda.loyalty_stg__domain_useradmin_to_customer_id_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__domain_useradmin_to_customer_id_domain_userid": {"name": "loyalty_stg__domain_useradmin_to_customer_id_domain_userid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.md", "unique_id": "doc.yoda.loyalty_stg__domain_useradmin_to_customer_id_domain_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__domain_useradmin_to_customer_id_partition_date": {"name": "loyalty_stg__domain_useradmin_to_customer_id_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__domain_useradmin_to_customer_id/loyalty_stg__domain_useradmin_to_customer_id.md", "unique_id": "doc.yoda.loyalty_stg__domain_useradmin_to_customer_id_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__enriched_customers": {"name": "loyalty_stg__enriched_customers", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers", "block_contents": "Customers joined with group customers such that each customer record contains the additional attributes stored in group_customers table"}, "doc.yoda.loyalty_stg__enriched_customers_created_at": {"name": "loyalty_stg__enriched_customers_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_created_at", "block_contents": "TODO: Update Column created_at Information"}, "doc.yoda.loyalty_stg__enriched_customers_customer_id": {"name": "loyalty_stg__enriched_customers_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_customer_id", "block_contents": "TODO: Update Column customer_id Information"}, "doc.yoda.loyalty_stg__enriched_customers_email": {"name": "loyalty_stg__enriched_customers_email", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_email", "block_contents": "coming from group customers"}, "doc.yoda.loyalty_stg__enriched_customers_exclude_from_reports": {"name": "loyalty_stg__enriched_customers_exclude_from_reports", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_exclude_from_reports", "block_contents": "coming from group customers"}, "doc.yoda.loyalty_stg__enriched_customers_first_name": {"name": "loyalty_stg__enriched_customers_first_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_first_name", "block_contents": "TODO: Update Column first_name Information"}, "doc.yoda.loyalty_stg__enriched_customers_group_customer_id": {"name": "loyalty_stg__enriched_customers_group_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_group_customer_id", "block_contents": "each customer is assigned to a group customer, customers can share group customer if they are in same group"}, "doc.yoda.loyalty_stg__enriched_customers_group_id": {"name": "loyalty_stg__enriched_customers_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_group_id", "block_contents": "TODO: Update Column group_id Information"}, "doc.yoda.loyalty_stg__enriched_customers_is_member": {"name": "loyalty_stg__enriched_customers_is_member", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_is_member", "block_contents": "wether the customer has opened an account with the store"}, "doc.yoda.loyalty_stg__enriched_customers_last_name": {"name": "loyalty_stg__enriched_customers_last_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_last_name", "block_contents": "TODO: Update Column last_name Information"}, "doc.yoda.loyalty_stg__enriched_customers_last_purchase_at": {"name": "loyalty_stg__enriched_customers_last_purchase_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_last_purchase_at", "block_contents": "TODO: Update Column last_purchase_at Information"}, "doc.yoda.loyalty_stg__enriched_customers_last_seen_at": {"name": "loyalty_stg__enriched_customers_last_seen_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_last_seen_at", "block_contents": "coming from group customers"}, "doc.yoda.loyalty_stg__enriched_customers_merchant_id": {"name": "loyalty_stg__enriched_customers_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_merchant_id", "block_contents": "TODO: Update Column merchant_id Information"}, "doc.yoda.loyalty_stg__enriched_customers_name": {"name": "loyalty_stg__enriched_customers_name", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_name", "block_contents": "TODO: Update Column name Information"}, "doc.yoda.loyalty_stg__enriched_customers_phone_number": {"name": "loyalty_stg__enriched_customers_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_phone_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__enriched_customers_points_balance": {"name": "loyalty_stg__enriched_customers_points_balance", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_points_balance", "block_contents": "coming from group customers"}, "doc.yoda.loyalty_stg__enriched_customers_points_earned": {"name": "loyalty_stg__enriched_customers_points_earned", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_points_earned", "block_contents": "coming from group customers"}, "doc.yoda.loyalty_stg__enriched_customers_referred_by_customer_id": {"name": "loyalty_stg__enriched_customers_referred_by_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_referred_by_customer_id", "block_contents": "TODO: Update Column referred_by_customer_id Information"}, "doc.yoda.loyalty_stg__enriched_customers_store_account_id": {"name": "loyalty_stg__enriched_customers_store_account_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_store_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__enriched_customers_updated_at": {"name": "loyalty_stg__enriched_customers_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__enriched_customers/loyalty_stg__enriched_customers.md", "unique_id": "doc.yoda.loyalty_stg__enriched_customers_updated_at", "block_contents": "TODO: Update Column updated_at Information"}, "doc.yoda.loyalty__staging_normalized_pixel_events": {"name": "loyalty__staging_normalized_pixel_events", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty__staging_normalized_pixel_events", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__normalized_pixel_events_collector_tstamp": {"name": "loyalty_stg__normalized_pixel_events_collector_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_collector_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_customer_id": {"name": "loyalty_stg__normalized_pixel_events_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_domain_userid": {"name": "loyalty_stg__normalized_pixel_events_domain_userid", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_domain_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_is_checkout": {"name": "loyalty_stg__normalized_pixel_events_is_checkout", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_is_checkout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_is_mobile": {"name": "loyalty_stg__normalized_pixel_events_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_page_url": {"name": "loyalty_stg__normalized_pixel_events_page_url", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_partition_date": {"name": "loyalty_stg__normalized_pixel_events_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_se_action": {"name": "loyalty_stg__normalized_pixel_events_se_action", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_se_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_se_category": {"name": "loyalty_stg__normalized_pixel_events_se_category", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_se_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_se_label": {"name": "loyalty_stg__normalized_pixel_events_se_label", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_se_label", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_se_property": {"name": "loyalty_stg__normalized_pixel_events_se_property", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_se_property", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_se_value": {"name": "loyalty_stg__normalized_pixel_events_se_value", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_se_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__normalized_pixel_events_share_type": {"name": "loyalty_stg__normalized_pixel_events_share_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__normalized_pixel_events/loyalty_stg__normalized_pixel_events.md", "unique_id": "doc.yoda.loyalty_stg__normalized_pixel_events_share_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction": {"name": "loyalty_stg__point_transaction", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction", "block_contents": "TODO: Update Table Description"}, "doc.yoda.loyalty_stg__point_transaction_app_key": {"name": "loyalty_stg__point_transaction_app_key", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_created_at": {"name": "loyalty_stg__point_transaction_created_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_created_date": {"name": "loyalty_stg__point_transaction_created_date", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_created_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_customer_group_id": {"name": "loyalty_stg__point_transaction_customer_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_customer_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_debug_data": {"name": "loyalty_stg__point_transaction_debug_data", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_debug_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_dwh_updated_at": {"name": "loyalty_stg__point_transaction_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_dwh_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_is_expired": {"name": "loyalty_stg__point_transaction_is_expired", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_is_expired", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_is_redeemed": {"name": "loyalty_stg__point_transaction_is_redeemed", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_is_redeemed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_is_transaction_type_balance_only": {"name": "loyalty_stg__point_transaction_is_transaction_type_balance_only", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_is_transaction_type_balance_only", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_is_transaction_type_earning": {"name": "loyalty_stg__point_transaction_is_transaction_type_earning", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_is_transaction_type_earning", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_is_transaction_type_reset": {"name": "loyalty_stg__point_transaction_is_transaction_type_reset", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_is_transaction_type_reset", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_merchant_group_id": {"name": "loyalty_stg__point_transaction_merchant_group_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_merchant_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_original_transaction_at": {"name": "loyalty_stg__point_transaction_original_transaction_at", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_original_transaction_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_original_transaction_id": {"name": "loyalty_stg__point_transaction_original_transaction_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_original_transaction_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_page_cursor": {"name": "loyalty_stg__point_transaction_page_cursor", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_page_cursor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_points_transaction_amount": {"name": "loyalty_stg__point_transaction_points_transaction_amount", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_points_transaction_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_reason_description": {"name": "loyalty_stg__point_transaction_reason_description", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_reason_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_reason_type": {"name": "loyalty_stg__point_transaction_reason_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_reason_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_transaction_id": {"name": "loyalty_stg__point_transaction_transaction_id", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_transaction_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.loyalty_stg__point_transaction_transaction_type": {"name": "loyalty_stg__point_transaction_transaction_type", "resource_type": "doc", "package_name": "yoda", "path": "loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "original_file_path": "models/loyalty/staging/marts_compatible/loyalty_stg__point_transaction/loyalty_stg__point_transaction.md", "unique_id": "doc.yoda.loyalty_stg__point_transaction_transaction_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_bigcommerce_plan_name": {"name": "north_bound__segment_profile_bigcommerce_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_bigcommerce_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_campaigns_count": {"name": "north_bound__segment_profile_campaigns_count", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_campaigns_count", "block_contents": "Number of campaigns"}, "doc.yoda.north_bound__segment_profile_campaigns_count_last_thirty_days": {"name": "north_bound__segment_profile_campaigns_count_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_campaigns_count_last_thirty_days", "block_contents": "Campaigns sent last 30 days"}, "doc.yoda.north_bound__segment_profile_email_campaigns_count": {"name": "north_bound__segment_profile_email_campaigns_count", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_email_campaigns_count", "block_contents": "Number of email campaigns sent"}, "doc.yoda.north_bound__segment_profile_email_campaigns_count_last_thirty_days": {"name": "north_bound__segment_profile_email_campaigns_count_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_email_campaigns_count_last_thirty_days", "block_contents": "Number of email campaigns sent last thirty days"}, "doc.yoda.north_bound__segment_profile_email_credits_used": {"name": "north_bound__segment_profile_email_credits_used", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_email_credits_used", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_email_enabled": {"name": "north_bound__segment_profile_email_enabled", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_email_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_email_intent_popup_first_accept_date": {"name": "north_bound__segment_profile_email_intent_popup_first_accept_date", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_email_intent_popup_first_accept_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_email_intent_popup_first_decline_date": {"name": "north_bound__segment_profile_email_intent_popup_first_decline_date", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_email_intent_popup_first_decline_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_email_intent_popup_last_choice": {"name": "north_bound__segment_profile_email_intent_popup_last_choice", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_email_intent_popup_last_choice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_email_subscribers_count": {"name": "north_bound__segment_profile_email_subscribers_count", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_email_subscribers_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_emailcampaignscount": {"name": "north_bound__segment_profile_emailcampaignscount", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_emailcampaignscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_emailsubscriberscount": {"name": "north_bound__segment_profile_emailsubscriberscount", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_emailsubscriberscount", "block_contents": "Number of email subscribers, values are in buckets"}, "doc.yoda.north_bound__segment_profile_first_email_campaign_sent_date": {"name": "north_bound__segment_profile_first_email_campaign_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_first_email_campaign_sent_date", "block_contents": "Date of first sent campaign"}, "doc.yoda.north_bound__segment_profile_first_email_message_sent_date": {"name": "north_bound__segment_profile_first_email_message_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_first_email_message_sent_date", "block_contents": "Date of first sent email message"}, "doc.yoda.north_bound__segment_profile_first_sms_campaign_sent_date": {"name": "north_bound__segment_profile_first_sms_campaign_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_first_sms_campaign_sent_date", "block_contents": "Date of first sms campaign sent"}, "doc.yoda.north_bound__segment_profile_first_sms_message_sent_date": {"name": "north_bound__segment_profile_first_sms_message_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_first_sms_message_sent_date", "block_contents": "Date of first sms message sent"}, "doc.yoda.north_bound__segment_profile_forms_count": {"name": "north_bound__segment_profile_forms_count", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_forms_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_is_enabled_automation_abandoned_checkout": {"name": "north_bound__segment_profile_is_enabled_automation_abandoned_checkout", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_is_enabled_automation_abandoned_checkout", "block_contents": "Is abandonend checkout automation enabled"}, "doc.yoda.north_bound__segment_profile_is_enabled_automation_welcome": {"name": "north_bound__segment_profile_is_enabled_automation_welcome", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_is_enabled_automation_welcome", "block_contents": "Is welcome automation enabled"}, "doc.yoda.north_bound__segment_profile_is_enabled_automation_winback": {"name": "north_bound__segment_profile_is_enabled_automation_winback", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_is_enabled_automation_winback", "block_contents": "Is winback automation enabled"}, "doc.yoda.north_bound__segment_profile_is_enabled_flows_abandoned_checkout": {"name": "north_bound__segment_profile_is_enabled_flows_abandoned_checkout", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_is_enabled_flows_abandoned_checkout", "block_contents": "Is abandoned checkout flow enabled"}, "doc.yoda.north_bound__segment_profile_is_enabled_flows_customer_winback": {"name": "north_bound__segment_profile_is_enabled_flows_customer_winback", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_is_enabled_flows_customer_winback", "block_contents": "Is customer winback flow enabled"}, "doc.yoda.north_bound__segment_profile_is_enabled_flows_welcome": {"name": "north_bound__segment_profile_is_enabled_flows_welcome", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_is_enabled_flows_welcome", "block_contents": "Is welcome flow enabled"}, "doc.yoda.north_bound__segment_profile_is_using_bigcommerce": {"name": "north_bound__segment_profile_is_using_bigcommerce", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_is_using_bigcommerce", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_is_using_shopify": {"name": "north_bound__segment_profile_is_using_shopify", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_is_using_shopify", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_keywords_count": {"name": "north_bound__segment_profile_keywords_count", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_keywords_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_klaviyo_integration_enabled": {"name": "north_bound__segment_profile_klaviyo_integration_enabled", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_klaviyo_integration_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_last_email_campaign_sent_date": {"name": "north_bound__segment_profile_last_email_campaign_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_last_email_campaign_sent_date", "block_contents": "Date of last email campaign sent"}, "doc.yoda.north_bound__segment_profile_last_email_message_sent_date": {"name": "north_bound__segment_profile_last_email_message_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_last_email_message_sent_date", "block_contents": "Date of last email message sent"}, "doc.yoda.north_bound__segment_profile_last_sms_campaign_sent_date": {"name": "north_bound__segment_profile_last_sms_campaign_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_last_sms_campaign_sent_date", "block_contents": "Date of last sms campaign sent"}, "doc.yoda.north_bound__segment_profile_last_sms_message_sent_date": {"name": "north_bound__segment_profile_last_sms_message_sent_date", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_last_sms_message_sent_date", "block_contents": "Date of last sms message sent"}, "doc.yoda.north_bound__segment_profile_notification_email": {"name": "north_bound__segment_profile_notification_email", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_notification_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_orders_count_last_thirty_days": {"name": "north_bound__segment_profile_orders_count_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_orders_count_last_thirty_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_orders_count_last_three_months": {"name": "north_bound__segment_profile_orders_count_last_three_months", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_orders_count_last_three_months", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_pages_count": {"name": "north_bound__segment_profile_pages_count", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_pages_count", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_popup_tool_enabled": {"name": "north_bound__segment_profile_popup_tool_enabled", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_popup_tool_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_sent_chat_messages": {"name": "north_bound__segment_profile_sent_chat_messages", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_sent_chat_messages", "block_contents": "Has user sent chat messages"}, "doc.yoda.north_bound__segment_profile_shopifyorderscount": {"name": "north_bound__segment_profile_shopifyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_shopifyorderscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_shopifyplan": {"name": "north_bound__segment_profile_shopifyplan", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_shopifyplan", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_shopifystoreage": {"name": "north_bound__segment_profile_shopifystoreage", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_shopifystoreage", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_sms_campaigns_sent_count": {"name": "north_bound__segment_profile_sms_campaigns_sent_count", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_sms_campaigns_sent_count", "block_contents": "Total campaigns sent"}, "doc.yoda.north_bound__segment_profile_sms_campaigns_sent_last_thirty_days": {"name": "north_bound__segment_profile_sms_campaigns_sent_last_thirty_days", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_sms_campaigns_sent_last_thirty_days", "block_contents": "Total campaigns sent last 30 days"}, "doc.yoda.north_bound__segment_profile_sms_credits_used": {"name": "north_bound__segment_profile_sms_credits_used", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_sms_credits_used", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_sms_subscribers_count": {"name": "north_bound__segment_profile_sms_subscribers_count", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_sms_subscribers_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_smsbump_plan_name": {"name": "north_bound__segment_profile_smsbump_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_smsbump_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_smsbumpautomationscount": {"name": "north_bound__segment_profile_smsbumpautomationscount", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_smsbumpautomationscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_smsbumpautoreload": {"name": "north_bound__segment_profile_smsbumpautoreload", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_smsbumpautoreload", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_smsbumpcstoolscount": {"name": "north_bound__segment_profile_smsbumpcstoolscount", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_smsbumpcstoolscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_smsbumpflowscount": {"name": "north_bound__segment_profile_smsbumpflowscount", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_smsbumpflowscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_smsbumpintegrationscount": {"name": "north_bound__segment_profile_smsbumpintegrationscount", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_smsbumpintegrationscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_smsbumpplantype": {"name": "north_bound__segment_profile_smsbumpplantype", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_smsbumpplantype", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_smscampaignscount": {"name": "north_bound__segment_profile_smscampaignscount", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_smscampaignscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_smscreditsamount": {"name": "north_bound__segment_profile_smscreditsamount", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_smscreditsamount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_smssubscriberscount": {"name": "north_bound__segment_profile_smssubscriberscount", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_smssubscriberscount", "block_contents": "TODO: Update Table Description"}, "doc.yoda.north_bound__segment_profile_total_email_messages_sent": {"name": "north_bound__segment_profile_total_email_messages_sent", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_total_email_messages_sent", "block_contents": "Number of email messages sent"}, "doc.yoda.north_bound__segment_profile_userEmail": {"name": "north_bound__segment_profile_userEmail", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_userEmail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.north_bound__segment_profile_userId": {"name": "north_bound__segment_profile_userId", "resource_type": "doc", "package_name": "yoda", "path": "north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "original_file_path": "models/north_bound/marts/north_bound__segment_profile/north_bound__segment_profile.md", "unique_id": "doc.yoda.north_bound__segment_profile_userId", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__cdp_streaming_aggregated_events": {"name": "platform__cdp_streaming_aggregated_events", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events", "block_contents": "Platform singas CDP streaming aggregated events table, used for singas business metrics and internal usage"}, "doc.yoda.platform__cdp_streaming_aggregated_events_date": {"name": "platform__cdp_streaming_aggregated_events_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events_date", "block_contents": "Aggregated event date in 01/01/1970 format"}, "doc.yoda.platform__cdp_streaming_aggregated_events_datetime": {"name": "platform__cdp_streaming_aggregated_events_datetime", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events_datetime", "block_contents": "Aggregated event date in datetime format"}, "doc.yoda.platform__cdp_streaming_aggregated_events_day": {"name": "platform__cdp_streaming_aggregated_events_day", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events_day", "block_contents": "Aggregated event day"}, "doc.yoda.platform__cdp_streaming_aggregated_events_event_type": {"name": "platform__cdp_streaming_aggregated_events_event_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events_event_type", "block_contents": "Aggregated event type"}, "doc.yoda.platform__cdp_streaming_aggregated_events_mode": {"name": "platform__cdp_streaming_aggregated_events_mode", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events_mode", "block_contents": "Aggregated event mode (batch/stream/ etc)"}, "doc.yoda.platform__cdp_streaming_aggregated_events_month": {"name": "platform__cdp_streaming_aggregated_events_month", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events_month", "block_contents": "Aggregated event month"}, "doc.yoda.platform__cdp_streaming_aggregated_events_product": {"name": "platform__cdp_streaming_aggregated_events_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events_product", "block_contents": "Aggregated event product line"}, "doc.yoda.platform__cdp_streaming_aggregated_events_store_id": {"name": "platform__cdp_streaming_aggregated_events_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events_store_id", "block_contents": "Aggregated event store id"}, "doc.yoda.platform__cdp_streaming_aggregated_events_timestamp": {"name": "platform__cdp_streaming_aggregated_events_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events_timestamp", "block_contents": "Aggregated event timestamp"}, "doc.yoda.platform__cdp_streaming_aggregated_events_topic_name": {"name": "platform__cdp_streaming_aggregated_events_topic_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events_topic_name", "block_contents": "Aggregated event topic name"}, "doc.yoda.platform__cdp_streaming_aggregated_events_year": {"name": "platform__cdp_streaming_aggregated_events_year", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "original_file_path": "models/platform/marts/platform__cdp_streaming_aggregated_events/platform__cdp_streaming_aggregated_events.md", "unique_id": "doc.yoda.platform__cdp_streaming_aggregated_events_year", "block_contents": "Aggregated event year"}, "doc.yoda.platform__customer_dimensions_metrics": {"name": "platform__customer_dimensions_metrics", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics", "block_contents": "Table holding the customer dimensions and metrics for shopper"}, "doc.yoda.platform__customer_dimensions_metrics_app_key": {"name": "platform__customer_dimensions_metrics_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_app_key", "block_contents": "The unique identifier of the merchant"}, "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_30d": {"name": "platform__customer_dimensions_metrics_avg_order_value_30d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_30d", "block_contents": "The average order value in the last 30 days"}, "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_30d_trend": {"name": "platform__customer_dimensions_metrics_avg_order_value_30d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_30d_trend", "block_contents": "The average order value in the period of 30 to 60 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_365d": {"name": "platform__customer_dimensions_metrics_avg_order_value_365d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_365d", "block_contents": "The average order value in the last 365 days"}, "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_365d_trend": {"name": "platform__customer_dimensions_metrics_avg_order_value_365d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_365d_trend", "block_contents": "The average order value in the period of 365 to 730 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_7d": {"name": "platform__customer_dimensions_metrics_avg_order_value_7d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_7d", "block_contents": "The average order value in the last 7 days"}, "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_7d_trend": {"name": "platform__customer_dimensions_metrics_avg_order_value_7d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_7d_trend", "block_contents": "The average order value in the period of 7 to 14 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_90d": {"name": "platform__customer_dimensions_metrics_avg_order_value_90d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_90d", "block_contents": "The average order value in the last 90 days"}, "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_90d_trend": {"name": "platform__customer_dimensions_metrics_avg_order_value_90d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_order_value_90d_trend", "block_contents": "The average order value in the period of 90 to 180 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_30d": {"name": "platform__customer_dimensions_metrics_avg_time_between_orders_30d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_30d", "block_contents": "The average time between orders in seconds in the last 30 days"}, "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_30d_trend": {"name": "platform__customer_dimensions_metrics_avg_time_between_orders_30d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_30d_trend", "block_contents": "The average time between orders in seconds in the period of 30 to 60 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_365d": {"name": "platform__customer_dimensions_metrics_avg_time_between_orders_365d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_365d", "block_contents": "The average time between orders in seconds in the last 365 days"}, "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_365d_trend": {"name": "platform__customer_dimensions_metrics_avg_time_between_orders_365d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_365d_trend", "block_contents": "The average time between orders in seconds in the period of 365 to 730 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_7d": {"name": "platform__customer_dimensions_metrics_avg_time_between_orders_7d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_7d", "block_contents": "The average time between orders in seconds in the last 7 days"}, "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_7d_trend": {"name": "platform__customer_dimensions_metrics_avg_time_between_orders_7d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_7d_trend", "block_contents": "The average time between orders in seconds in the period of 7 to 14 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_90d": {"name": "platform__customer_dimensions_metrics_avg_time_between_orders_90d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_90d", "block_contents": "The average time between orders in seconds in the last 90 days"}, "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_90d_trend": {"name": "platform__customer_dimensions_metrics_avg_time_between_orders_90d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_avg_time_between_orders_90d_trend", "block_contents": "The average time between orders in seconds in the period of 90 to 180 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_brand_affection": {"name": "platform__customer_dimensions_metrics_brand_affection", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_brand_affection", "block_contents": "The brand affection category"}, "doc.yoda.platform__customer_dimensions_metrics_churn_risk": {"name": "platform__customer_dimensions_metrics_churn_risk", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_churn_risk", "block_contents": "The churn risk dimension (e.g. High, Medium, Low) - inversion of likely_to_purchase"}, "doc.yoda.platform__customer_dimensions_metrics_customer_id": {"name": "platform__customer_dimensions_metrics_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_customer_id", "block_contents": "The customer id"}, "doc.yoda.platform__customer_dimensions_metrics_email": {"name": "platform__customer_dimensions_metrics_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_email", "block_contents": "The customer email"}, "doc.yoda.platform__customer_dimensions_metrics_engagement_with_marketing_material": {"name": "platform__customer_dimensions_metrics_engagement_with_marketing_material", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_engagement_with_marketing_material", "block_contents": "The dimension score (e.g. unsubscribed, non an sms user, ignores, engaging, highly engaged)"}, "doc.yoda.platform__customer_dimensions_metrics_last_order_timestamp": {"name": "platform__customer_dimensions_metrics_last_order_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_last_order_timestamp", "block_contents": "The timestamp of the last order of the customer"}, "doc.yoda.platform__customer_dimensions_metrics_likely_to_purchase": {"name": "platform__customer_dimensions_metrics_likely_to_purchase", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_likely_to_purchase", "block_contents": "The likely to buy dimension (e.g. Low, Medium, High)"}, "doc.yoda.platform__customer_dimensions_metrics_loyalty_rank": {"name": "platform__customer_dimensions_metrics_loyalty_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_loyalty_rank", "block_contents": "The loyalty tier rank (taken the int value of the vipTierRank field without transformation)"}, "doc.yoda.platform__customer_dimensions_metrics_loyalty_tier": {"name": "platform__customer_dimensions_metrics_loyalty_tier", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_loyalty_tier", "block_contents": "The loyalty tier name (taken the string value of the vipTierName field with trailing spaces removed)"}, "doc.yoda.platform__customer_dimensions_metrics_num_orders_30d": {"name": "platform__customer_dimensions_metrics_num_orders_30d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_num_orders_30d", "block_contents": "The number of orders in the last 30 days"}, "doc.yoda.platform__customer_dimensions_metrics_num_orders_30d_trend": {"name": "platform__customer_dimensions_metrics_num_orders_30d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_num_orders_30d_trend", "block_contents": "The number of orders in the period of 30 to 60 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_num_orders_365d": {"name": "platform__customer_dimensions_metrics_num_orders_365d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_num_orders_365d", "block_contents": "The number of orders in the last 365 days"}, "doc.yoda.platform__customer_dimensions_metrics_num_orders_365d_trend": {"name": "platform__customer_dimensions_metrics_num_orders_365d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_num_orders_365d_trend", "block_contents": "The number of orders in the period of 365 to 730 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_num_orders_7d": {"name": "platform__customer_dimensions_metrics_num_orders_7d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_num_orders_7d", "block_contents": "The number of orders in the last 7 days"}, "doc.yoda.platform__customer_dimensions_metrics_num_orders_7d_trend": {"name": "platform__customer_dimensions_metrics_num_orders_7d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_num_orders_7d_trend", "block_contents": "The number of orders in the period of 7 to 14 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_num_orders_90d": {"name": "platform__customer_dimensions_metrics_num_orders_90d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_num_orders_90d", "block_contents": "The number of orders in the last 90 days"}, "doc.yoda.platform__customer_dimensions_metrics_num_orders_90d_trend": {"name": "platform__customer_dimensions_metrics_num_orders_90d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_num_orders_90d_trend", "block_contents": "The number of orders in the period of 90 to 180 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_phone": {"name": "platform__customer_dimensions_metrics_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_phone", "block_contents": "The customer phone"}, "doc.yoda.platform__customer_dimensions_metrics_platform": {"name": "platform__customer_dimensions_metrics_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_platform", "block_contents": "The customer platform"}, "doc.yoda.platform__customer_dimensions_metrics_returning_buyers": {"name": "platform__customer_dimensions_metrics_returning_buyers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_returning_buyers", "block_contents": "The dimension score (e.g. prospects, single surchase, repeat purchase, frequent shopper)"}, "doc.yoda.platform__customer_dimensions_metrics_updated_at": {"name": "platform__customer_dimensions_metrics_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics/platform__customer_dimensions_metrics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_updated_at", "block_contents": "The date of segmentation"}, "doc.yoda.platform__customer_dimensions_metrics_analytics": {"name": "platform__customer_dimensions_metrics_analytics", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics", "block_contents": "Table holding the customer dimensions and metrics for shopper"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_app_key": {"name": "platform__customer_dimensions_metrics_analytics_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_app_key", "block_contents": "The unique identifier of the merchant"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_brand_affection_rank": {"name": "platform__customer_dimensions_metrics_analytics_brand_affection_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_brand_affection_rank", "block_contents": "The brand affection rank"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_churn_risk_rank": {"name": "platform__customer_dimensions_metrics_analytics_churn_risk_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_churn_risk_rank", "block_contents": "The churn risk rank - inversion of likely_to_purchase"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_customer_id": {"name": "platform__customer_dimensions_metrics_analytics_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_customer_id", "block_contents": "The customer id"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_dwh_updated_at": {"name": "platform__customer_dimensions_metrics_analytics_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_dwh_updated_at", "block_contents": "The date of writing the record"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_email": {"name": "platform__customer_dimensions_metrics_analytics_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_email", "block_contents": "The customer email"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_engagement_with_marketing_material_rank": {"name": "platform__customer_dimensions_metrics_analytics_engagement_with_marketing_material_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_engagement_with_marketing_material_rank", "block_contents": "The engagement with marketing material rank"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_last_order_timestamp": {"name": "platform__customer_dimensions_metrics_analytics_last_order_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_last_order_timestamp", "block_contents": "The timestamp of the last order of the customer"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_likely_to_purchase_rank": {"name": "platform__customer_dimensions_metrics_analytics_likely_to_purchase_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_likely_to_purchase_rank", "block_contents": "The likely to purchase rank"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_loyalty_tier_rank": {"name": "platform__customer_dimensions_metrics_analytics_loyalty_tier_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_loyalty_tier_rank", "block_contents": "The loyalty tier rank"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_phone": {"name": "platform__customer_dimensions_metrics_analytics_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_phone", "block_contents": "The customer phone"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_platform": {"name": "platform__customer_dimensions_metrics_analytics_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_platform", "block_contents": "The customer platform"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_returning_buyers_rank": {"name": "platform__customer_dimensions_metrics_analytics_returning_buyers_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_returning_buyers_rank", "block_contents": "The returning buyers rank"}, "doc.yoda.platform__customer_dimensions_metrics_analytics_updated_at": {"name": "platform__customer_dimensions_metrics_analytics_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_analytics/platform__customer_dimensions_metrics_analytics.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_analytics_updated_at", "block_contents": "The date of segmentation"}, "doc.yoda.platform__customer_dimensions_metrics_inc": {"name": "platform__customer_dimensions_metrics_inc", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc", "block_contents": "Table holding the customer dimensions and metrics for shopper"}, "doc.yoda.platform__customer_dimensions_metrics_inc_app_key": {"name": "platform__customer_dimensions_metrics_inc_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_app_key", "block_contents": "The unique identifier of the merchant"}, "doc.yoda.platform__customer_dimensions_metrics_inc_avg_time_between_orders": {"name": "platform__customer_dimensions_metrics_inc_avg_time_between_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_avg_time_between_orders", "block_contents": "The average time between orders"}, "doc.yoda.platform__customer_dimensions_metrics_inc_brand_affection": {"name": "platform__customer_dimensions_metrics_inc_brand_affection", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_brand_affection", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__customer_dimensions_metrics_inc_churn_risk": {"name": "platform__customer_dimensions_metrics_inc_churn_risk", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_churn_risk", "block_contents": "The churn risk dimension"}, "doc.yoda.platform__customer_dimensions_metrics_inc_customer_id": {"name": "platform__customer_dimensions_metrics_inc_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_customer_id", "block_contents": "The unique customer id"}, "doc.yoda.platform__customer_dimensions_metrics_inc_date": {"name": "platform__customer_dimensions_metrics_inc_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_date", "block_contents": "The date of segmentation"}, "doc.yoda.platform__customer_dimensions_metrics_inc_engagement_with_marketing_material": {"name": "platform__customer_dimensions_metrics_inc_engagement_with_marketing_material", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_engagement_with_marketing_material", "block_contents": "The engagement with marketing material dimension"}, "doc.yoda.platform__customer_dimensions_metrics_inc_likely_to_purchase": {"name": "platform__customer_dimensions_metrics_inc_likely_to_purchase", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_likely_to_purchase", "block_contents": "The likely to purchse dimension"}, "doc.yoda.platform__customer_dimensions_metrics_inc_loyalty_tier": {"name": "platform__customer_dimensions_metrics_inc_loyalty_tier", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_loyalty_tier", "block_contents": "The loyalty dimension"}, "doc.yoda.platform__customer_dimensions_metrics_inc_num_orders": {"name": "platform__customer_dimensions_metrics_inc_num_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_num_orders", "block_contents": "The number of orders for a customer on the particular date"}, "doc.yoda.platform__customer_dimensions_metrics_inc_returning_buyers": {"name": "platform__customer_dimensions_metrics_inc_returning_buyers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_returning_buyers", "block_contents": "The returning buyers dimension"}, "doc.yoda.platform__customer_dimensions_metrics_inc_total_price": {"name": "platform__customer_dimensions_metrics_inc_total_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc/platform__customer_dimensions_metrics_inc.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_total_price", "block_contents": "The total amount spent by the customer on the given day"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_app_key": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_app_key", "block_contents": "The unique identifier of the merchant"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_avg_time_between_orders": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_avg_time_between_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_avg_time_between_orders", "block_contents": "The average time between orders"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_brand_affection": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_brand_affection", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_brand_affection", "block_contents": "The brand affection dimension"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_customer_id": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_customer_id", "block_contents": "The unique customer id"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_date": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_date", "block_contents": "The date of segmentation"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_engagement_with_marketing_material": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_engagement_with_marketing_material", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_engagement_with_marketing_material", "block_contents": "The engagement with marketing material dimension"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_likely_to_purchase": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_likely_to_purchase", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_likely_to_purchase", "block_contents": "The likely to purchse dimension"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_loyalty_rank": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_loyalty_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_loyalty_rank", "block_contents": "The loyalty rank of the tier"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_loyalty_tier": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_loyalty_tier", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_loyalty_tier", "block_contents": "The loyalty tier"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_num_orders": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_num_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_num_orders", "block_contents": "The number of orders for a customer on the particular date"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_returning_buyers": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_returning_buyers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_returning_buyers", "block_contents": "The returning buyers dimension"}, "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_total_price": {"name": "platform__customer_dimensions_metrics_inc_to_snowflake_total_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_inc_to_snowflake/platform__customer_dimensions_metrics_inc_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_inc_to_snowflake_total_price", "block_contents": "The total amount spent by the customer on the given day"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake": {"name": "platform__customer_dimensions_metrics_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake", "block_contents": "Exported platform__customer_dimensions_metrics model in Snowflake"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_app_key": {"name": "platform__customer_dimensions_metrics_to_snowflake_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_app_key", "block_contents": "The unique identifier of the merchant"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_30d": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_order_value_30d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_30d", "block_contents": "The average order value in the last 30 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_30d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_order_value_30d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_30d_trend", "block_contents": "The average order value in the period of 30 to 60 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_365d": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_order_value_365d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_365d", "block_contents": "The average order value in the last 365 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_365d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_order_value_365d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_365d_trend", "block_contents": "The average order value in the period of 365 to 730 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_7d": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_order_value_7d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_7d", "block_contents": "The average order value in the last 7 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_7d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_order_value_7d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_7d_trend", "block_contents": "The average order value in the period of 7 to 14 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_90d": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_order_value_90d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_90d", "block_contents": "The average order value in the last 90 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_90d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_order_value_90d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_order_value_90d_trend", "block_contents": "The average time between orders in seconds in the last 90 to 180 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_30d": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_30d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_30d", "block_contents": "The average time between orders in seconds in the last 30 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_30d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_30d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_30d_trend", "block_contents": "The average time between orders in seconds in the period of 30 to 60 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_365d": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_365d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_365d", "block_contents": "The average time between orders in seconds in the last 365 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_365d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_365d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_365d_trend", "block_contents": "The average time between orders in seconds in the period of 365 to 730 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_7d": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_7d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_7d", "block_contents": "The average time between orders in seconds in the last 7 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_7d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_7d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_7d_trend", "block_contents": "The average time between orders in seconds in the period of 7 to 14 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_90d": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_90d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_90d", "block_contents": "The average time between orders in seconds in the last 90 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_90d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_90d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_avg_time_between_orders_90d_trend", "block_contents": "The average time between orders in seconds in the period of 90 to 180 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_brand_affection": {"name": "platform__customer_dimensions_metrics_to_snowflake_brand_affection", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_brand_affection", "block_contents": "The brand affection category"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_customer_id": {"name": "platform__customer_dimensions_metrics_to_snowflake_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_customer_id", "block_contents": "The customer id"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_engagement_with_marketing_material": {"name": "platform__customer_dimensions_metrics_to_snowflake_engagement_with_marketing_material", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_engagement_with_marketing_material", "block_contents": "The dimension score (e.g. unsubscribed, non an sms user, ignores, engaging, highly engaged)"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_likely_to_purchase": {"name": "platform__customer_dimensions_metrics_to_snowflake_likely_to_purchase", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_likely_to_purchase", "block_contents": "The likely to purchase dimension (e.g. High, Medium, Low)"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_loyalty_rank": {"name": "platform__customer_dimensions_metrics_to_snowflake_loyalty_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_loyalty_rank", "block_contents": "The loyalty tier rank (taken the int value of the vipTierRank field without transformation)"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_loyalty_tier": {"name": "platform__customer_dimensions_metrics_to_snowflake_loyalty_tier", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_loyalty_tier", "block_contents": "The loyalty tier name (taken the string value of the vipTierName field with trailing spaces removed)"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_30d": {"name": "platform__customer_dimensions_metrics_to_snowflake_num_orders_30d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_30d", "block_contents": "The number of orders in the last 30 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_30d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_num_orders_30d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_30d_trend", "block_contents": "The number of orders in the period of 30 to 60 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_365d": {"name": "platform__customer_dimensions_metrics_to_snowflake_num_orders_365d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_365d", "block_contents": "The number of orders in the last 365 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_365d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_num_orders_365d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_365d_trend", "block_contents": "The number of orders in the period of 365 to 730 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_7d": {"name": "platform__customer_dimensions_metrics_to_snowflake_num_orders_7d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_7d", "block_contents": "The number of orders in the last 7 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_7d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_num_orders_7d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_7d_trend", "block_contents": "The number of orders in the period of 7 to 14 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_90d": {"name": "platform__customer_dimensions_metrics_to_snowflake_num_orders_90d", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_90d", "block_contents": "The number of orders in the last 90 days"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_90d_trend": {"name": "platform__customer_dimensions_metrics_to_snowflake_num_orders_90d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_num_orders_90d_trend", "block_contents": "The number of orders in the period of 90 to 180 days ago"}, "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_returning_buyers": {"name": "platform__customer_dimensions_metrics_to_snowflake_returning_buyers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "original_file_path": "models/platform/marts/platform__customer_dimensions_metrics_to_snowflake/platform__customer_dimensions_metrics_to_snowflake.md", "unique_id": "doc.yoda.platform__customer_dimensions_metrics_to_snowflake_returning_buyers", "block_contents": "The dimension score (e.g. prospects, single surchase, repeat purchase, frequent shopper)"}, "doc.yoda.platform__dim_stores_app_key": {"name": "platform__dim_stores_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_app_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_dwh_updated_at": {"name": "platform__dim_stores_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_dwh_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_is_active_store": {"name": "platform__dim_stores_is_active_store", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_is_active_store", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_is_blacklisted": {"name": "platform__dim_stores_is_blacklisted", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_is_blacklisted", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_is_test_store": {"name": "platform__dim_stores_is_test_store", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_is_test_store", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_company_name": {"name": "platform__dim_stores_loyalty_company_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_company_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_contact_email": {"name": "platform__dim_stores_loyalty_contact_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_contact_email", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_currency": {"name": "platform__dim_stores_loyalty_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_currency", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_group_id": {"name": "platform__dim_stores_loyalty_group_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_group_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_is_completed_profile": {"name": "platform__dim_stores_loyalty_is_completed_profile", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_is_completed_profile", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_is_redemptions_enabled": {"name": "platform__dim_stores_loyalty_is_redemptions_enabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_is_redemptions_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_is_test_account": {"name": "platform__dim_stores_loyalty_is_test_account", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_is_test_account", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_is_vip_enabled": {"name": "platform__dim_stores_loyalty_is_vip_enabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_is_vip_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_opt_in_strategy": {"name": "platform__dim_stores_loyalty_opt_in_strategy", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_opt_in_strategy", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_plan": {"name": "platform__dim_stores_loyalty_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_plan", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_plan_name": {"name": "platform__dim_stores_loyalty_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__dim_stores_loyalty_platform": {"name": "platform__dim_stores_loyalty_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_platform", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_loyalty_vip_type": {"name": "platform__dim_stores_loyalty_vip_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_loyalty_vip_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_merchant_created_at": {"name": "platform__dim_stores_merchant_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_merchant_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_merchant_id": {"name": "platform__dim_stores_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_merchant_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_organization_id": {"name": "platform__dim_stores_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_organization_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_platform_name": {"name": "platform__dim_stores_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_platform_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_referral_opt_in_strategy": {"name": "platform__dim_stores_referral_opt_in_strategy", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_referral_opt_in_strategy", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_store_created_at": {"name": "platform__dim_stores_store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_store_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_store_domain": {"name": "platform__dim_stores_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_store_domain", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_store_id": {"name": "platform__dim_stores_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_store_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_store_language": {"name": "platform__dim_stores_store_language", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_store_language", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__dim_stores_store_name": {"name": "platform__dim_stores_store_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__dim_stores/platform__dim_stores.md", "original_file_path": "models/platform/marts/platform__dim_stores/platform__dim_stores.md", "unique_id": "doc.yoda.platform__dim_stores_store_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__integrations_adoption": {"name": "platform__integrations_adoption", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "unique_id": "doc.yoda.platform__integrations_adoption", "block_contents": "Contains snapshot of the integrationscenter.store_applications for every day table with only the relevant columns"}, "doc.yoda.platform__integrations_adoption_store_id": {"name": "platform__integrations_adoption_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "unique_id": "doc.yoda.platform__integrations_adoption_store_id", "block_contents": "TThe id of the store for which the row of information is"}, "doc.yoda.platform__integrations_adoption_application_id": {"name": "platform__integrations_adoption_application_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "unique_id": "doc.yoda.platform__integrations_adoption_application_id", "block_contents": "The id of an application that is either connected or disconnected for a specific store"}, "doc.yoda.platform__integrations_adoption_application_name": {"name": "platform__integrations_adoption_application_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "unique_id": "doc.yoda.platform__integrations_adoption_application_name", "block_contents": "The name of the application corresponding to the application_id"}, "doc.yoda.platform__integrations_adoption_created_at": {"name": "platform__integrations_adoption_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "unique_id": "doc.yoda.platform__integrations_adoption_created_at", "block_contents": "The date at which the application was first installed"}, "doc.yoda.platform__integrations_adoption_disconnected_at": {"name": "platform__integrations_adoption_disconnected_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "unique_id": "doc.yoda.platform__integrations_adoption_disconnected_at", "block_contents": "The date at which the application was disconnecter or NULL if it is still connected"}, "doc.yoda.platform__integrations_adoption_updated_at": {"name": "platform__integrations_adoption_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "unique_id": "doc.yoda.platform__integrations_adoption_updated_at", "block_contents": "The date at which the status of the connection of the application was changed"}, "doc.yoda.platform__integrations_adoption_snapshot_date": {"name": "platform__integrations_adoption_snapshot_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "original_file_path": "models/platform/marts/platform__integrations_adoption/platform__integrations_adoption.md", "unique_id": "doc.yoda.platform__integrations_adoption_snapshot_date", "block_contents": "The date for which this row in the table is"}, "doc.yoda.platform__integrations_adoption_per_application": {"name": "platform__integrations_adoption_per_application", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "unique_id": "doc.yoda.platform__integrations_adoption_per_application", "block_contents": "Contains info for each week how many times each applications was installed, disconnected or reinstalled"}, "doc.yoda.platform__integrations_adoption_per_application_application_id": {"name": "platform__integrations_adoption_per_application_application_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "unique_id": "doc.yoda.platform__integrations_adoption_per_application_application_id", "block_contents": "The id of the application"}, "doc.yoda.platform__integrations_adoption_per_application_application_name": {"name": "platform__integrations_adoption_per_application_application_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "unique_id": "doc.yoda.platform__integrations_adoption_per_application_application_name", "block_contents": "The name of the application for the corresponding application_id"}, "doc.yoda.platform__integrations_adoption_per_application_total_installs": {"name": "platform__integrations_adoption_per_application_total_installs", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "unique_id": "doc.yoda.platform__integrations_adoption_per_application_total_installs", "block_contents": "The total amount of installation of an application for all stores for a specific timestamp"}, "doc.yoda.platform__integrations_adoption_per_application_total_disconnects": {"name": "platform__integrations_adoption_per_application_total_disconnects", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "unique_id": "doc.yoda.platform__integrations_adoption_per_application_total_disconnects", "block_contents": "The total amount of disconnects of an application for all stores for a specific timestamp"}, "doc.yoda.platform__integrations_adoption_per_application_snapshot_date": {"name": "platform__integrations_adoption_per_application_snapshot_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_application/platform__integrations_adoption_per_application.md", "unique_id": "doc.yoda.platform__integrations_adoption_per_application_snapshot_date", "block_contents": "The specific date when the snapshot was taken"}, "doc.yoda.platform__integrations_adoption_per_store": {"name": "platform__integrations_adoption_per_store", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.md", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.md", "unique_id": "doc.yoda.platform__integrations_adoption_per_store", "block_contents": "Contains info for each store how many installs, disconnectes and reinstalls it made per given week"}, "doc.yoda.platform__integrations_adoption_per_store_store_id": {"name": "platform__integrations_adoption_per_store_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.md", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.md", "unique_id": "doc.yoda.platform__integrations_adoption_per_store_store_id", "block_contents": "The specific store_id for which the statistic for a given week is"}, "doc.yoda.platform__integrations_adoption_per_store_total_installs": {"name": "platform__integrations_adoption_per_store_total_installs", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.md", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.md", "unique_id": "doc.yoda.platform__integrations_adoption_per_store_total_installs", "block_contents": "The total amount of installed applications at a specific timestamp for a specific store"}, "doc.yoda.platform__integrations_adoption_per_store_total_disconnects": {"name": "platform__integrations_adoption_per_store_total_disconnects", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.md", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.md", "unique_id": "doc.yoda.platform__integrations_adoption_per_store_total_disconnects", "block_contents": "The total amount of disconnected applications at a specific timestamp for a specific store"}, "doc.yoda.platform__integrations_adoption_per_store_snapshot_date": {"name": "platform__integrations_adoption_per_store_snapshot_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.md", "original_file_path": "models/platform/marts/platform__integrations_adoption_per_store/platform__integrations_adoption_per_store.md", "unique_id": "doc.yoda.platform__integrations_adoption_per_store_snapshot_date", "block_contents": "The specific date when the snapshot was taken"}, "doc.yoda.platform__orders_with_product_lines_attribution": {"name": "platform__orders_with_product_lines_attribution", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution", "block_contents": "Data of orders with the value attributed by each product line and the total value"}, "doc.yoda.platform__orders_with_product_lines_attribution_app_key": {"name": "platform__orders_with_product_lines_attribution_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_app_key", "block_contents": "Merchant's unique identifier in Yotpo platform"}, "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_last_30_days": {"name": "platform__orders_with_product_lines_attribution_email_attributed_revenue_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_last_30_days", "block_contents": "Total revenue generated by email product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_last_365_days": {"name": "platform__orders_with_product_lines_attribution_email_attributed_revenue_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_last_365_days", "block_contents": "Total revenue generated by email product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_last_7_days": {"name": "platform__orders_with_product_lines_attribution_email_attributed_revenue_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_last_7_days", "block_contents": "Total revenue generated by email product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_last_90_days": {"name": "platform__orders_with_product_lines_attribution_email_attributed_revenue_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_last_90_days", "block_contents": "Total revenue generated by email product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_30_days": {"name": "platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_30_days", "block_contents": "Total email revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_365_days": {"name": "platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_365_days", "block_contents": "Total email revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_7_days": {"name": "platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_7_days", "block_contents": "Total email revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_90_days": {"name": "platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_email_attributed_revenue_trend_90_days", "block_contents": "Total email revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_30_days": {"name": "platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_30_days", "block_contents": "Total revenue generated by loyalty product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_365_days": {"name": "platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_365_days", "block_contents": "Total revenue generated by loyalty product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_7_days": {"name": "platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_7_days", "block_contents": "Total revenue generated by loyalty product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_90_days": {"name": "platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_last_90_days", "block_contents": "Total revenue generated by loyalty product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_30_days": {"name": "platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_30_days", "block_contents": "Total loyalty revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_365_days": {"name": "platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_365_days", "block_contents": "Total loyalty revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_7_days": {"name": "platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_7_days", "block_contents": "Total loyalty revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_90_days": {"name": "platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_loyalty_attributed_revenue_trend_90_days", "block_contents": "Total loyalty revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_30_days": {"name": "platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_30_days", "block_contents": "Total revenue generated by reviews product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_365_days": {"name": "platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_365_days", "block_contents": "Total revenue generated by reviews product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_7_days": {"name": "platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_7_days", "block_contents": "Total revenue generated by reviews product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_90_days": {"name": "platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_last_90_days", "block_contents": "Total revenue generated by reviews product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_30_days": {"name": "platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_30_days", "block_contents": "Total reviews revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_365_days": {"name": "platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_365_days", "block_contents": "Total reviews revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_7_days": {"name": "platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_7_days", "block_contents": "Total reviews revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_90_days": {"name": "platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_reviews_attributed_revenue_trend_90_days", "block_contents": "Total reviews revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_30_days": {"name": "platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_30_days", "block_contents": "Total revenue generated by SMS product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_365_days": {"name": "platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_365_days", "block_contents": "Total revenue generated by SMS product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_7_days": {"name": "platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_7_days", "block_contents": "Total revenue generated by SMS product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_90_days": {"name": "platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_last_90_days", "block_contents": "Total revenue generated by SMS product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_30_days": {"name": "platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_30_days", "block_contents": "Total SMS revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_365_days": {"name": "platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_365_days", "block_contents": "Total SMS revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_7_days": {"name": "platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_7_days", "block_contents": "Total SMS revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_90_days": {"name": "platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_sms_attributed_revenue_trend_90_days", "block_contents": "Total SMS revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_30_days": {"name": "platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_30_days", "block_contents": "Total revenue generated by subscription product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_365_days": {"name": "platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_365_days", "block_contents": "Total revenue generated by subscription product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_7_days": {"name": "platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_7_days", "block_contents": "Total revenue generated by subscription product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_90_days": {"name": "platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_last_90_days", "block_contents": "Total revenue generated by subscription product for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_30_days": {"name": "platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_30_days", "block_contents": "Total subscription revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_365_days": {"name": "platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_365_days", "block_contents": "Total subscription revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_7_days": {"name": "platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_7_days", "block_contents": "Total subscription revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_90_days": {"name": "platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_subscriptions_attributed_revenue_trend_90_days", "block_contents": "Total subscription revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_orders_last_30_days": {"name": "platform__orders_with_product_lines_attribution_total_orders_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_orders_last_30_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_orders_last_365_days": {"name": "platform__orders_with_product_lines_attribution_total_orders_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_orders_last_365_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_orders_last_7_days": {"name": "platform__orders_with_product_lines_attribution_total_orders_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_orders_last_7_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_orders_last_90_days": {"name": "platform__orders_with_product_lines_attribution_total_orders_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_orders_last_90_days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_last_30_days": {"name": "platform__orders_with_product_lines_attribution_total_revenue_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_last_30_days", "block_contents": "Total revenue generated by all products for the given time range (Total revenue is calculated without including reviews currently)"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_last_365_days": {"name": "platform__orders_with_product_lines_attribution_total_revenue_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_last_365_days", "block_contents": "Total revenue generated by all products for the given time range (Total revenue is calculated without including reviews currently)"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_last_7_days": {"name": "platform__orders_with_product_lines_attribution_total_revenue_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_last_7_days", "block_contents": "Total revenue generated by all products for the given time range (Total revenue is calculated without including reviews currently)"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_last_90_days": {"name": "platform__orders_with_product_lines_attribution_total_revenue_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_last_90_days", "block_contents": "Total revenue generated by all products for the given time range (Total revenue is calculated without including reviews currently)"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_trend_30_days": {"name": "platform__orders_with_product_lines_attribution_total_revenue_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_trend_30_days", "block_contents": "Total revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_trend_365_days": {"name": "platform__orders_with_product_lines_attribution_total_revenue_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_trend_365_days", "block_contents": "Total revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_trend_7_days": {"name": "platform__orders_with_product_lines_attribution_total_revenue_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_trend_7_days", "block_contents": "Total revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_trend_90_days": {"name": "platform__orders_with_product_lines_attribution_total_revenue_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution/platform__orders_with_product_lines_attribution.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_total_revenue_trend_90_days", "block_contents": "Total revenue growth for the given time range"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily": {"name": "platform__orders_with_product_lines_attribution_daily", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily", "block_contents": "Data of orders with the value attributed by each product line and the total value per each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_app_key": {"name": "platform__orders_with_product_lines_attribution_daily_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_app_key", "block_contents": "Merchant's unique identifier in Yotpo platform"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_email_attributed_orders": {"name": "platform__orders_with_product_lines_attribution_daily_daily_email_attributed_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_email_attributed_orders", "block_contents": "Total orders generated by email product for each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_email_attributed_revenue": {"name": "platform__orders_with_product_lines_attribution_daily_daily_email_attributed_revenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_email_attributed_revenue", "block_contents": "Total revenue generated by email product for each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_loyalty_attributed_orders": {"name": "platform__orders_with_product_lines_attribution_daily_daily_loyalty_attributed_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_loyalty_attributed_orders", "block_contents": "Total orders generated by loyalty product for each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_loyalty_attributed_revenue": {"name": "platform__orders_with_product_lines_attribution_daily_daily_loyalty_attributed_revenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_loyalty_attributed_revenue", "block_contents": "Total revenue generated by loyalty product for each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_reviews_attributed_orders": {"name": "platform__orders_with_product_lines_attribution_daily_daily_reviews_attributed_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_reviews_attributed_orders", "block_contents": "Total orders generated by reviews product for each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_reviews_attributed_revenue": {"name": "platform__orders_with_product_lines_attribution_daily_daily_reviews_attributed_revenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_reviews_attributed_revenue", "block_contents": "Total revenue generated by reviews product for each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_sms_attributed_orders": {"name": "platform__orders_with_product_lines_attribution_daily_daily_sms_attributed_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_sms_attributed_orders", "block_contents": "Total orders generated by sms product for each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_sms_attributed_revenue": {"name": "platform__orders_with_product_lines_attribution_daily_daily_sms_attributed_revenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_sms_attributed_revenue", "block_contents": "Total revenue generated by sms product for each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_subscriptions_attributed_orders": {"name": "platform__orders_with_product_lines_attribution_daily_daily_subscriptions_attributed_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_subscriptions_attributed_orders", "block_contents": "Total orders generated by subscriptions product for each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_subscriptions_attributed_revenue": {"name": "platform__orders_with_product_lines_attribution_daily_daily_subscriptions_attributed_revenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_daily_subscriptions_attributed_revenue", "block_contents": "Total revenue generated by subscriptions product for each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_order_date": {"name": "platform__orders_with_product_lines_attribution_daily_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_order_date", "block_contents": "Date for which the revenues were calculated"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_total_orders": {"name": "platform__orders_with_product_lines_attribution_daily_total_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_total_orders", "block_contents": "Total orders generated by all product lines for each day"}, "doc.yoda.platform__orders_with_product_lines_attribution_daily_total_revenue": {"name": "platform__orders_with_product_lines_attribution_daily_total_revenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "original_file_path": "models/platform/marts/platform__orders_with_product_lines_attribution_daily/platform__orders_with_product_lines_attribution_daily.md", "unique_id": "doc.yoda.platform__orders_with_product_lines_attribution_daily_total_revenue", "block_contents": "Total revenue generated by all product lines for each day"}, "doc.yoda.platform__owners_packages_organization_view_created_at": {"name": "platform__owners_packages_organization_view_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.md", "original_file_path": "models/platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.md", "unique_id": "doc.yoda.platform__owners_packages_organization_view_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__owners_packages_organization_view_organization_key": {"name": "platform__owners_packages_organization_view_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.md", "original_file_path": "models/platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.md", "unique_id": "doc.yoda.platform__owners_packages_organization_view_organization_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__owners_packages_organization_view_package_id": {"name": "platform__owners_packages_organization_view_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.md", "original_file_path": "models/platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.md", "unique_id": "doc.yoda.platform__owners_packages_organization_view_package_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__owners_packages_organization_view_started_at": {"name": "platform__owners_packages_organization_view_started_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.md", "original_file_path": "models/platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.md", "unique_id": "doc.yoda.platform__owners_packages_organization_view_started_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__owners_packages_organization_view_updated_at": {"name": "platform__owners_packages_organization_view_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.md", "original_file_path": "models/platform/marts/platform__owners_packages_organization_view/platform__owners_packages_organization_view.md", "unique_id": "doc.yoda.platform__owners_packages_organization_view_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__owners_packages_store_view_created_at": {"name": "platform__owners_packages_store_view_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.md", "original_file_path": "models/platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.md", "unique_id": "doc.yoda.platform__owners_packages_store_view_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__owners_packages_store_view_package_id": {"name": "platform__owners_packages_store_view_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.md", "original_file_path": "models/platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.md", "unique_id": "doc.yoda.platform__owners_packages_store_view_package_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__owners_packages_store_view_started_at": {"name": "platform__owners_packages_store_view_started_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.md", "original_file_path": "models/platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.md", "unique_id": "doc.yoda.platform__owners_packages_store_view_started_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__owners_packages_store_view_store_id": {"name": "platform__owners_packages_store_view_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.md", "original_file_path": "models/platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.md", "unique_id": "doc.yoda.platform__owners_packages_store_view_store_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__owners_packages_store_view_updated_at": {"name": "platform__owners_packages_store_view_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.md", "original_file_path": "models/platform/marts/platform__owners_packages_store_view/platform__owners_packages_store_view.md", "unique_id": "doc.yoda.platform__owners_packages_store_view_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__retention_metrics_average_order_value": {"name": "platform__retention_metrics_average_order_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value", "block_contents": "Data for the \"Average per order\" metrics of the retention metrics dashboard"}, "doc.yoda.platform__retention_metrics_average_order_value_app_key": {"name": "platform__retention_metrics_average_order_value_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_app_key", "block_contents": "Merchant's unique identifier in Yotpo platform"}, "doc.yoda.platform__retention_metrics_average_order_value_engaged_customers_orders_count_by_date": {"name": "platform__retention_metrics_average_order_value_engaged_customers_orders_count_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_engaged_customers_orders_count_by_date", "block_contents": "The number of orders made by engaged customers per date"}, "doc.yoda.platform__retention_metrics_average_order_value_loyal_customers_orders_count_by_date": {"name": "platform__retention_metrics_average_order_value_loyal_customers_orders_count_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_loyal_customers_orders_count_by_date", "block_contents": "The number of orders made by loyal customers per date"}, "doc.yoda.platform__retention_metrics_average_order_value_new_customers_orders_count_by_date": {"name": "platform__retention_metrics_average_order_value_new_customers_orders_count_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_new_customers_orders_count_by_date", "block_contents": "The number of orders made by new customers per date"}, "doc.yoda.platform__retention_metrics_average_order_value_order_date": {"name": "platform__retention_metrics_average_order_value_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_order_date", "block_contents": "The date for which the data is calculated"}, "doc.yoda.platform__retention_metrics_average_order_value_returning_customers_orders_count_by_date": {"name": "platform__retention_metrics_average_order_value_returning_customers_orders_count_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_returning_customers_orders_count_by_date", "block_contents": "The number of orders made by returning customers per date"}, "doc.yoda.platform__retention_metrics_average_order_value_total_engaged_customers_sales_value_by_date": {"name": "platform__retention_metrics_average_order_value_total_engaged_customers_sales_value_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_total_engaged_customers_sales_value_by_date", "block_contents": "The total revenue made by engaged customers per date"}, "doc.yoda.platform__retention_metrics_average_order_value_total_new_customers_sales_value_by_date": {"name": "platform__retention_metrics_average_order_value_total_new_customers_sales_value_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_total_new_customers_sales_value_by_date", "block_contents": "The total revenue made by new customers per date"}, "doc.yoda.platform__retention_metrics_average_order_value_total_returning_customers_sales_value_by_date": {"name": "platform__retention_metrics_average_order_value_total_returning_customers_sales_value_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value/platform__retention_metrics_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_total_returning_customers_sales_value_by_date", "block_contents": "The total revenue made by new customers per date"}, "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake": {"name": "platform__retention_metrics_average_order_value_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_app_key": {"name": "platform__retention_metrics_average_order_value_to_snowflake_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_engaged_customers_orders_count_by_date": {"name": "platform__retention_metrics_average_order_value_to_snowflake_engaged_customers_orders_count_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_engaged_customers_orders_count_by_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_loyal_customers_orders_count_by_date": {"name": "platform__retention_metrics_average_order_value_to_snowflake_loyal_customers_orders_count_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_loyal_customers_orders_count_by_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_new_customers_orders_count_by_date": {"name": "platform__retention_metrics_average_order_value_to_snowflake_new_customers_orders_count_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_new_customers_orders_count_by_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_order_date": {"name": "platform__retention_metrics_average_order_value_to_snowflake_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_order_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_returning_customers_orders_count_by_date": {"name": "platform__retention_metrics_average_order_value_to_snowflake_returning_customers_orders_count_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_returning_customers_orders_count_by_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_total_engaged_customers_sales_value_by_date": {"name": "platform__retention_metrics_average_order_value_to_snowflake_total_engaged_customers_sales_value_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_total_engaged_customers_sales_value_by_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_total_new_customers_sales_value_by_date": {"name": "platform__retention_metrics_average_order_value_to_snowflake_total_new_customers_sales_value_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_total_new_customers_sales_value_by_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_total_returning_customers_sales_value_by_date": {"name": "platform__retention_metrics_average_order_value_to_snowflake_total_returning_customers_sales_value_by_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_average_order_value_to_snowflake/platform__retention_metrics_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_average_order_value_to_snowflake_total_returning_customers_sales_value_by_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_bar_chart_total_sales": {"name": "platform__retention_metrics_bar_chart_total_sales", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "original_file_path": "models/platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "unique_id": "doc.yoda.platform__retention_metrics_bar_chart_total_sales", "block_contents": "Model that contains the total value of revenue for each merchant by segmentation tier for the last 12 months.\n\n It unites the values for the current month - which uses daily segmentation of users as a reference and values for the past 11 months which use the last date of each month as a reference for the segmentation of merchant's customers."}, "doc.yoda.platform__retention_metrics_bar_chart_total_sales_app_key": {"name": "platform__retention_metrics_bar_chart_total_sales_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "original_file_path": "models/platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "unique_id": "doc.yoda.platform__retention_metrics_bar_chart_total_sales_app_key", "block_contents": "The unique identifier for the merchant"}, "doc.yoda.platform__retention_metrics_bar_chart_total_sales_date_of_segmentation": {"name": "platform__retention_metrics_bar_chart_total_sales_date_of_segmentation", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "original_file_path": "models/platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "unique_id": "doc.yoda.platform__retention_metrics_bar_chart_total_sales_date_of_segmentation", "block_contents": "Column that contains the value of the date used for the segmentation of the merchant's customers."}, "doc.yoda.platform__retention_metrics_bar_chart_total_sales_total_sales_engaged_customers": {"name": "platform__retention_metrics_bar_chart_total_sales_total_sales_engaged_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "original_file_path": "models/platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "unique_id": "doc.yoda.platform__retention_metrics_bar_chart_total_sales_total_sales_engaged_customers", "block_contents": "Total sales for the engaged customers of the merchant"}, "doc.yoda.platform__retention_metrics_bar_chart_total_sales_total_sales_new_customers": {"name": "platform__retention_metrics_bar_chart_total_sales_total_sales_new_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "original_file_path": "models/platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "unique_id": "doc.yoda.platform__retention_metrics_bar_chart_total_sales_total_sales_new_customers", "block_contents": "Total sales for the new customers of the merchant"}, "doc.yoda.platform__retention_metrics_bar_chart_total_sales_total_sales_returning_customers": {"name": "platform__retention_metrics_bar_chart_total_sales_total_sales_returning_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "original_file_path": "models/platform/marts/platform__retention_metrics_bar_chart_total_sales/platform__retention_metrics_bar_chart_total_sales.md", "unique_id": "doc.yoda.platform__retention_metrics_bar_chart_total_sales_total_sales_returning_customers", "block_contents": "Total sales for the returning customers of the merchant"}, "doc.yoda.platform__retention_metrics_customer_segment_ratio": {"name": "platform__retention_metrics_customer_segment_ratio", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "original_file_path": "models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "unique_id": "doc.yoda.platform__retention_metrics_customer_segment_ratio", "block_contents": "The distribution of unique customers across the different retention segments. Total are all the customers who purchased at least once in the last 12 months"}, "doc.yoda.platform__retention_metrics_customer_segment_ratio_app_key": {"name": "platform__retention_metrics_customer_segment_ratio_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "original_file_path": "models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "unique_id": "doc.yoda.platform__retention_metrics_customer_segment_ratio_app_key", "block_contents": "Merchant's unique identifier in Yotpo"}, "doc.yoda.platform__retention_metrics_customer_segment_ratio_engaged_ratio": {"name": "platform__retention_metrics_customer_segment_ratio_engaged_ratio", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "original_file_path": "models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "unique_id": "doc.yoda.platform__retention_metrics_customer_segment_ratio_engaged_ratio", "block_contents": "% of customers that are considered engaged"}, "doc.yoda.platform__retention_metrics_customer_segment_ratio_new_ratio": {"name": "platform__retention_metrics_customer_segment_ratio_new_ratio", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "original_file_path": "models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "unique_id": "doc.yoda.platform__retention_metrics_customer_segment_ratio_new_ratio", "block_contents": "% of customers that are considered new"}, "doc.yoda.platform__retention_metrics_customer_segment_ratio_returning_ratio": {"name": "platform__retention_metrics_customer_segment_ratio_returning_ratio", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "original_file_path": "models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "unique_id": "doc.yoda.platform__retention_metrics_customer_segment_ratio_returning_ratio", "block_contents": "% of customers that are considered returning"}, "doc.yoda.platform__retention_metrics_customer_segment_ratio_trend": {"name": "platform__retention_metrics_customer_segment_ratio_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "original_file_path": "models/platform/marts/platform__retention_metrics_customer_segment_ratio/platform__retention_metrics_customer_segment_ratio.md", "unique_id": "doc.yoda.platform__retention_metrics_customer_segment_ratio_trend", "block_contents": "the trend for which the % were calculated"}, "doc.yoda.platform__retention_metrics_orders": {"name": "platform__retention_metrics_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "unique_id": "doc.yoda.platform__retention_metrics_orders", "block_contents": "Raw data representing orders from the last 12 months with their respective segment"}, "doc.yoda.platform__retention_metrics_orders_app_key": {"name": "platform__retention_metrics_orders_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "unique_id": "doc.yoda.platform__retention_metrics_orders_app_key", "block_contents": "Merchant's unique identifier in the Yotpo platform"}, "doc.yoda.platform__retention_metrics_orders_external_customer_id": {"name": "platform__retention_metrics_orders_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "unique_id": "doc.yoda.platform__retention_metrics_orders_external_customer_id", "block_contents": "Order's customer's unique identifier in the platform"}, "doc.yoda.platform__retention_metrics_orders_order_date": {"name": "platform__retention_metrics_orders_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "unique_id": "doc.yoda.platform__retention_metrics_orders_order_date", "block_contents": "Order submission date"}, "doc.yoda.platform__retention_metrics_orders_order_total": {"name": "platform__retention_metrics_orders_order_total", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "unique_id": "doc.yoda.platform__retention_metrics_orders_order_total", "block_contents": "Order total value. It is calculated by either taking the total_price or order_sum_account_currency values which are the order value in merchant currency for either shopify or non-shopify platforms. \nIf those fields are not present, then check if the order currency is the same as merchant currency and if so, then use order_sum_order_currency value which is the order value in order currency.\nIf the two currencies are not the same, then convert the order_sum_order_currency value to merchant currency."}, "doc.yoda.platform__retention_metrics_orders_segment": {"name": "platform__retention_metrics_orders_segment", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders/platform__retention_metrics_orders.md", "unique_id": "doc.yoda.platform__retention_metrics_orders_segment", "block_contents": "Purchase's customer's segment according to behavior in past 12 months"}, "doc.yoda.platform__retention_metrics_orders_to_snowflake": {"name": "platform__retention_metrics_orders_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_orders_to_snowflake", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__retention_metrics_orders_to_snowflake_app_key": {"name": "platform__retention_metrics_orders_to_snowflake_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_orders_to_snowflake_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_orders_to_snowflake_external_customer_id": {"name": "platform__retention_metrics_orders_to_snowflake_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_orders_to_snowflake_external_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_orders_to_snowflake_order_date": {"name": "platform__retention_metrics_orders_to_snowflake_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_orders_to_snowflake_order_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_orders_to_snowflake_order_total": {"name": "platform__retention_metrics_orders_to_snowflake_order_total", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_orders_to_snowflake_order_total", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_orders_to_snowflake_segment": {"name": "platform__retention_metrics_orders_to_snowflake_segment", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_orders_to_snowflake/platform__retention_metrics_orders_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_orders_to_snowflake_segment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_returning_customers": {"name": "platform__retention_metrics_returning_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers", "block_contents": "Table, with precalculated count, percentage and trend of returning customers for a predefined timeframes."}, "doc.yoda.platform__retention_metrics_returning_customers_app_key": {"name": "platform__retention_metrics_returning_customers_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_app_key", "block_contents": "Merchant's unique identifier"}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_count_last_30_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_count_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_count_last_30_days", "block_contents": "Total number of repeating customers for given time period"}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_count_last_365_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_count_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_count_last_365_days", "block_contents": "Total number of repeating customers for given time period"}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_count_last_7_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_count_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_count_last_7_days", "block_contents": "Total number of repeating customers for given time period"}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_count_last_90_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_count_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_count_last_90_days", "block_contents": "Total number of repeating customers for given time period"}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_trend_last_30_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_trend_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_trend_last_30_days", "block_contents": "The trend for the last 30 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe."}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_trend_last_365_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_trend_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_trend_last_365_days", "block_contents": "The trend for the last 365 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe."}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_trend_last_7_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_trend_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_trend_last_7_days", "block_contents": "The trend for the last 7 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe."}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_trend_last_90_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_trend_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_trend_last_90_days", "block_contents": "The trend for the last 90 days, calculated by comparing the percentage of returning customers for the last timeframe to the previous timeframe."}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_value_last_30_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_value_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_value_last_30_days", "block_contents": "The percent of returning customers for the last 30 days."}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_value_last_365_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_value_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_value_last_365_days", "block_contents": "The percent of returning customers for the last 365 days."}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_value_last_7_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_value_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_value_last_7_days", "block_contents": "The percent of returning customers for the last 7 days."}, "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_value_last_90_days": {"name": "platform__retention_metrics_returning_customers_returning_customers_value_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_returning_customers_value_last_90_days", "block_contents": "The percent of returning customers for the last 90 days."}, "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_trend_last_30_days": {"name": "platform__retention_metrics_returning_customers_sales_rate_trend_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_trend_last_30_days", "block_contents": "Percentage growth of the rate based on 30 days back"}, "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_trend_last_365_days": {"name": "platform__retention_metrics_returning_customers_sales_rate_trend_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_trend_last_365_days", "block_contents": "Percentage growth of the rate based on 365 days back"}, "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_trend_last_7_days": {"name": "platform__retention_metrics_returning_customers_sales_rate_trend_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_trend_last_7_days", "block_contents": "Percentage growth of the rate based on 7 days back"}, "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_trend_last_90_days": {"name": "platform__retention_metrics_returning_customers_sales_rate_trend_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_trend_last_90_days", "block_contents": "Percentage growth of the rate based on 90 days back"}, "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_value_last_30_days": {"name": "platform__retention_metrics_returning_customers_sales_rate_value_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_value_last_30_days", "block_contents": "The rate of returning customers revenue versus all revenue for the last 30 days."}, "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_value_last_365_days": {"name": "platform__retention_metrics_returning_customers_sales_rate_value_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_value_last_365_days", "block_contents": "The rate of returning customers revenue versus all revenue for the last 365 days."}, "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_value_last_7_days": {"name": "platform__retention_metrics_returning_customers_sales_rate_value_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_value_last_7_days", "block_contents": "The rate of returning customers revenue versus all revenue for the last 7 days."}, "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_value_last_90_days": {"name": "platform__retention_metrics_returning_customers_sales_rate_value_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_returning_customers/platform__retention_metrics_returning_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_returning_customers_sales_rate_value_last_90_days", "block_contents": "The rate of returning customers revenue versus all revenue for the last 90 days."}, "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments": {"name": "platform__retention_metrics_total_revenue_trends_by_segments", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "unique_id": "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "block_contents": "Model that contains the total revenue by each segment for the desired time-ranges(7,30,90,365 days ago)\n and the respective revenue values for the trends ranges (previous 7,30,90,365 days ago)"}, "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments_app_key": {"name": "platform__retention_metrics_total_revenue_trends_by_segments_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "unique_id": "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments_app_key", "block_contents": "Merchant's unique identifier"}, "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_engaged": {"name": "platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_engaged", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "unique_id": "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_engaged", "block_contents": "total revenue for engaged customers"}, "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_new": {"name": "platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_new", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "unique_id": "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_new", "block_contents": "total revenue for new customers"}, "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_returning": {"name": "platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_returning", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "unique_id": "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_returning", "block_contents": "total revenue for returning customers"}, "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments_trend": {"name": "platform__retention_metrics_total_revenue_trends_by_segments_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_revenue_trends_by_segments/platform__retention_metrics_total_revenue_trends_by_segments.md", "unique_id": "doc.yoda.platform__retention_metrics_total_revenue_trends_by_segments_trend", "block_contents": "the trend for which the revenues were calculated"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers": {"name": "platform__retention_metrics_total_sales_and_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers", "block_contents": "Table holding total revenue and total customers per merchant"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_app_key": {"name": "platform__retention_metrics_total_sales_and_customers_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_app_key", "block_contents": "Merchant's unique identifier"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_count_last_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_customers_count_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_count_last_30_days", "block_contents": "Customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_count_last_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_customers_count_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_count_last_365_days", "block_contents": "Customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_count_last_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_customers_count_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_count_last_7_days", "block_contents": "Customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_count_last_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_customers_count_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_count_last_90_days", "block_contents": "Customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_trend_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_customers_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_trend_30_days", "block_contents": "Customers count growth per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_trend_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_customers_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_trend_365_days", "block_contents": "Customers count growth per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_trend_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_customers_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_trend_7_days", "block_contents": "Customers count growth per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_trend_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_customers_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_customers_trend_90_days", "block_contents": "Customers count growth per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_last_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_engaged_count_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_last_30_days", "block_contents": "Engaged customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_last_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_engaged_count_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_last_365_days", "block_contents": "Engaged customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_last_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_engaged_count_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_last_7_days", "block_contents": "Engaged customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_last_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_engaged_count_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_last_90_days", "block_contents": "Engaged customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_trend_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_engaged_count_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_trend_30_days", "block_contents": "Engaged customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_trend_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_engaged_count_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_trend_365_days", "block_contents": "Engaged customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_trend_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_engaged_count_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_trend_7_days", "block_contents": "Engaged customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_trend_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_engaged_count_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_engaged_count_trend_90_days", "block_contents": "Engaged customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_last_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_new_count_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_last_30_days", "block_contents": "New customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_last_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_new_count_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_last_365_days", "block_contents": "New customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_last_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_new_count_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_last_7_days", "block_contents": "New customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_last_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_new_count_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_last_90_days", "block_contents": "New customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_trend_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_new_count_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_trend_30_days", "block_contents": "New customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_trend_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_new_count_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_trend_365_days", "block_contents": "New customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_trend_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_new_count_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_trend_7_days", "block_contents": "New customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_trend_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_new_count_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_new_count_trend_90_days", "block_contents": "New customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_last_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_returning_count_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_last_30_days", "block_contents": "Returning customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_last_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_returning_count_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_last_365_days", "block_contents": "Returning customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_last_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_returning_count_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_last_7_days", "block_contents": "Returning customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_last_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_returning_count_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_last_90_days", "block_contents": "Returning customers count per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_trend_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_returning_count_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_trend_30_days", "block_contents": "Returning customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_trend_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_returning_count_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_trend_365_days", "block_contents": "Returning customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_trend_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_returning_count_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_trend_7_days", "block_contents": "Returning customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_trend_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_returning_count_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_returning_count_trend_90_days", "block_contents": "Returning customers growth percantage per merchant for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_30_days", "block_contents": "Merchant engaged revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_365_days", "block_contents": "Merchant engaged revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_7_days", "block_contents": "Merchant engaged revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_last_90_days", "block_contents": "Merchant engaged revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_30_days", "block_contents": "Merchant engaged revenue growth percentage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_365_days", "block_contents": "Merchant engaged revenue growth percentage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_7_days", "block_contents": "Merchant engaged revenue growth percentage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_engaged_trend_90_days", "block_contents": "Merchant engaged revenue growth percentage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_last_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_last_30_days", "block_contents": "Merchant total revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_last_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_last_365_days", "block_contents": "Merchant total revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_last_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_last_7_days", "block_contents": "Merchant total revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_last_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_last_90_days", "block_contents": "Merchant total revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_last_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_new_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_last_30_days", "block_contents": "Merchant new revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_last_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_new_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_last_365_days", "block_contents": "Merchant new revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_last_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_new_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_last_7_days", "block_contents": "Merchant new revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_last_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_new_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_last_90_days", "block_contents": "Merchant new revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_trend_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_new_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_trend_30_days", "block_contents": "Merchant new revenue growth percantage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_trend_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_new_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_trend_365_days", "block_contents": "Merchant new revenue growth percantage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_trend_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_new_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_trend_7_days", "block_contents": "Merchant new revenue growth percantage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_trend_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_new_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_new_trend_90_days", "block_contents": "Merchant new revenue growth percantage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_last_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_returning_last_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_last_30_days", "block_contents": "Merchant returning revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_last_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_returning_last_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_last_365_days", "block_contents": "Merchant returning revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_last_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_returning_last_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_last_7_days", "block_contents": "Merchant returning revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_last_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_returning_last_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_last_90_days", "block_contents": "Merchant returning revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_30_days", "block_contents": "Merchant returning revenue growth percantage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_365_days", "block_contents": "Merchant returning revenue growth percantage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_7_days", "block_contents": "Merchant returning revenue growth percantage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_returning_trend_90_days", "block_contents": "Merchant returning revenue growth percantage for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_trend_30_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_trend_30_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_trend_30_days", "block_contents": "Merchant growth total revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_trend_365_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_trend_365_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_trend_365_days", "block_contents": "Merchant growth total revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_trend_7_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_trend_7_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_trend_7_days", "block_contents": "Merchant growth total revenue for the selected period"}, "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_trend_90_days": {"name": "platform__retention_metrics_total_sales_and_customers_revenue_trend_90_days", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "original_file_path": "models/platform/marts/platform__retention_metrics_total_sales_and_customers/platform__retention_metrics_total_sales_and_customers.md", "unique_id": "doc.yoda.platform__retention_metrics_total_sales_and_customers_revenue_trend_90_days", "block_contents": "Merchant growth total revenue for the selected period"}, "doc.yoda.platform__retention_metrics_trends_average_order_value": {"name": "platform__retention_metrics_trends_average_order_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value", "block_contents": "Data for the \"Average per order\" metrics trends of the retention metrics dashboard"}, "doc.yoda.platform__retention_metrics_trends_average_order_value_aov_for_engaged_customersr": {"name": "platform__retention_metrics_trends_average_order_value_aov_for_engaged_customersr", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value_aov_for_engaged_customersr", "block_contents": "AOV for engaged customers for a specified trend"}, "doc.yoda.platform__retention_metrics_trends_average_order_value_aov_for_new_customers": {"name": "platform__retention_metrics_trends_average_order_value_aov_for_new_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value_aov_for_new_customers", "block_contents": "AOV for new customers for a specified trend"}, "doc.yoda.platform__retention_metrics_trends_average_order_value_aov_for_returning_customers": {"name": "platform__retention_metrics_trends_average_order_value_aov_for_returning_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value_aov_for_returning_customers", "block_contents": "AOV for returning customers for a specified trend"}, "doc.yoda.platform__retention_metrics_trends_average_order_value_app_key": {"name": "platform__retention_metrics_trends_average_order_value_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value_app_key", "block_contents": "Merchant's unique identifier in Yotpo platform"}, "doc.yoda.platform__retention_metrics_trends_average_order_value_trend": {"name": "platform__retention_metrics_trends_average_order_value_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value/platform__retention_metrics_trends_average_order_value.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value_trend", "block_contents": "The trend: Last 7/30/90/365 days"}, "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake": {"name": "platform__retention_metrics_trends_average_order_value_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake_aov_for_engaged_customers": {"name": "platform__retention_metrics_trends_average_order_value_to_snowflake_aov_for_engaged_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake_aov_for_engaged_customers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake_aov_for_new_customers": {"name": "platform__retention_metrics_trends_average_order_value_to_snowflake_aov_for_new_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake_aov_for_new_customers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake_aov_for_returning_customers": {"name": "platform__retention_metrics_trends_average_order_value_to_snowflake_aov_for_returning_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake_aov_for_returning_customers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake_app_key": {"name": "platform__retention_metrics_trends_average_order_value_to_snowflake_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake_trend": {"name": "platform__retention_metrics_trends_average_order_value_to_snowflake_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_order_value_to_snowflake/platform__retention_metrics_trends_average_order_value_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake_trend", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer": {"name": "platform__retention_metrics_trends_average_sales_per_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_aov_for_engaged_customers": {"name": "platform__retention_metrics_trends_average_sales_per_customer_aov_for_engaged_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_aov_for_engaged_customers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_aov_for_loyal_customers": {"name": "platform__retention_metrics_trends_average_sales_per_customer_aov_for_loyal_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_aov_for_loyal_customers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_aov_for_new_customers": {"name": "platform__retention_metrics_trends_average_sales_per_customer_aov_for_new_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_aov_for_new_customers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_aov_for_returning_customers": {"name": "platform__retention_metrics_trends_average_sales_per_customer_aov_for_returning_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_aov_for_returning_customers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_app_key": {"name": "platform__retention_metrics_trends_average_sales_per_customer_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_avg_per_engaged_customer": {"name": "platform__retention_metrics_trends_average_sales_per_customer_avg_per_engaged_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_avg_per_engaged_customer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_avg_per_new_customer": {"name": "platform__retention_metrics_trends_average_sales_per_customer_avg_per_new_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_avg_per_new_customer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_avg_per_returning_customer": {"name": "platform__retention_metrics_trends_average_sales_per_customer_avg_per_returning_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_avg_per_returning_customer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_trend": {"name": "platform__retention_metrics_trends_average_sales_per_customer_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer/platform__retention_metrics_trends_average_sales_per_customer.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_trend", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake": {"name": "platform__retention_metrics_trends_average_sales_per_customer_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_app_key": {"name": "platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_avg_per_engaged_customer": {"name": "platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_avg_per_engaged_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_avg_per_engaged_customer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_avg_per_new_customer": {"name": "platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_avg_per_new_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_avg_per_new_customer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_avg_per_returning_customer": {"name": "platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_avg_per_returning_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_avg_per_returning_customer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_trend": {"name": "platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "original_file_path": "models/platform/marts/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake/platform__retention_metrics_trends_average_sales_per_customer_to_snowflake.md", "unique_id": "doc.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake_trend", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__sms_store_verification": {"name": "platform__sms_store_verification", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification", "block_contents": "Aggregated SMS store verification process metrics"}, "doc.yoda.platform__sms_store_verification_products_avg_price": {"name": "platform__sms_store_verification_products_avg_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_products_avg_price", "block_contents": "The average price of all the store products."}, "doc.yoda.platform__sms_store_verification_products_createdat_stddev": {"name": "platform__sms_store_verification_products_createdat_stddev", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_products_createdat_stddev", "block_contents": "The standard deviation of the creation date of all the store products"}, "doc.yoda.platform__sms_store_verification_products_price_stddev": {"name": "platform__sms_store_verification_products_price_stddev", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_products_price_stddev", "block_contents": "The standard deviation of the store procuts prices"}, "doc.yoda.platform__sms_store_verification_products_count": {"name": "platform__sms_store_verification_products_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_products_count", "block_contents": "Number of store products"}, "doc.yoda.platform__sms_store_verification_store_id": {"name": "platform__sms_store_verification_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_store_id", "block_contents": "The store ID (app key)"}, "doc.yoda.platform__sms_store_verification_yotpo_created_at": {"name": "platform__sms_store_verification_yotpo_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_yotpo_created_at", "block_contents": "Account creation at Yotpo"}, "doc.yoda.platform__sms_store_verification_yotpo_age": {"name": "platform__sms_store_verification_yotpo_age", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_yotpo_age", "block_contents": "Number of days passed since creation at Yotpo"}, "doc.yoda.platform__sms_store_verification_shopify_plan": {"name": "platform__sms_store_verification_shopify_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_shopify_plan", "block_contents": "Shopify internal plan name, i.e.: basic, frozen, shopify_plus"}, "doc.yoda.platform__sms_store_verification_domain": {"name": "platform__sms_store_verification_domain", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_domain", "block_contents": "Shopify domain"}, "doc.yoda.platform__sms_store_verification_shopify_plan_display_name": {"name": "platform__sms_store_verification_shopify_plan_display_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_shopify_plan_display_name", "block_contents": "Shopify display plan name, i.e.: Shopify Plus, Basic Shopify, frozen"}, "doc.yoda.platform__sms_store_verification_shop_owner": {"name": "platform__sms_store_verification_shop_owner", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_shop_owner", "block_contents": "Shop owner name in Shopify"}, "doc.yoda.platform__sms_store_verification_password_enabled": {"name": "platform__sms_store_verification_password_enabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_password_enabled", "block_contents": "Is the store website is password protected"}, "doc.yoda.platform__sms_store_verification_shopify_created_at": {"name": "platform__sms_store_verification_shopify_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_shopify_created_at", "block_contents": "Date the shopify store was created"}, "doc.yoda.platform__sms_store_verification_shopify_minus_yotpo_created": {"name": "platform__sms_store_verification_shopify_minus_yotpo_created", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_shopify_minus_yotpo_created", "block_contents": "Days passed between store created in Shopify and store created in Yotpo"}, "doc.yoda.platform__sms_store_verification_table_updated_date": {"name": "platform__sms_store_verification_table_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_table_updated_date", "block_contents": "Date updated this table"}, "doc.yoda.platform__sms_store_verification_orders_count": {"name": "platform__sms_store_verification_orders_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_orders_count", "block_contents": "Number of orders the store had"}, "doc.yoda.platform__sms_store_verification_orders_max_date_spread": {"name": "platform__sms_store_verification_orders_max_date_spread", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_orders_max_date_spread", "block_contents": "Days between first and last orders"}, "doc.yoda.platform__sms_store_verification_customers_count": {"name": "platform__sms_store_verification_customers_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_customers_count", "block_contents": "Number of customers the store has"}, "doc.yoda.platform__sms_store_verification_yotpo_plan_name": {"name": "platform__sms_store_verification_yotpo_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_yotpo_plan_name", "block_contents": "Yotpo SMS plan name, i.e.: Free, Powerhouse Plus 2"}, "doc.yoda.platform__sms_store_verification_plan_type_ht_lt": {"name": "platform__sms_store_verification_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_plan_type_ht_lt", "block_contents": "HT for high touch / LT for low touch"}, "doc.yoda.platform__sms_store_verification_labels": {"name": "platform__sms_store_verification_labels", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "original_file_path": "models/platform/marts/platform__sms_store_verification/platform__sms_store_verification.md", "unique_id": "doc.yoda.platform__sms_store_verification_labels", "block_contents": "Number labels the store and the store products has, comma separated such as: sex, violence, drags etc."}, "doc.yoda.platform__sms_store_verification_to_snowflake": {"name": "platform__sms_store_verification_to_snowflake", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake", "block_contents": "Aggregated SMS store verification process metrics"}, "doc.yoda.platform__sms_store_verification_to_snowflake_products_avg_price": {"name": "platform__sms_store_verification_to_snowflake_products_avg_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_products_avg_price", "block_contents": "The average price of all the store products."}, "doc.yoda.platform__sms_store_verification_to_snowflake_products_createdat_stddev": {"name": "platform__sms_store_verification_to_snowflake_products_createdat_stddev", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_products_createdat_stddev", "block_contents": "The standard deviation of the creation date of all the store products"}, "doc.yoda.platform__sms_store_verification_to_snowflake_products_price_stddev": {"name": "platform__sms_store_verification_to_snowflake_products_price_stddev", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_products_price_stddev", "block_contents": "The standard deviation of the store procuts prices"}, "doc.yoda.platform__sms_store_verification_to_snowflake_products_count": {"name": "platform__sms_store_verification_to_snowflake_products_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_products_count", "block_contents": "Number of store products"}, "doc.yoda.platform__sms_store_verification_to_snowflake_store_id": {"name": "platform__sms_store_verification_to_snowflake_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_store_id", "block_contents": "The store ID (app key)"}, "doc.yoda.platform__sms_store_verification_to_snowflake_yotpo_created_at": {"name": "platform__sms_store_verification_to_snowflake_yotpo_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_yotpo_created_at", "block_contents": "Account creation at Yotpo"}, "doc.yoda.platform__sms_store_verification_to_snowflake_yotpo_age": {"name": "platform__sms_store_verification_to_snowflake_yotpo_age", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_yotpo_age", "block_contents": "Number of days passed since creation at Yotpo"}, "doc.yoda.platform__sms_store_verification_to_snowflake_shopify_plan": {"name": "platform__sms_store_verification_to_snowflake_shopify_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_shopify_plan", "block_contents": "Shopify internal plan name, i.e.: basic, frozen, shopify_plus"}, "doc.yoda.platform__sms_store_verification_to_snowflake_domain": {"name": "platform__sms_store_verification_to_snowflake_domain", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_domain", "block_contents": "Shopify domain"}, "doc.yoda.platform__sms_store_verification_to_snowflake_shopify_plan_display_name": {"name": "platform__sms_store_verification_to_snowflake_shopify_plan_display_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_shopify_plan_display_name", "block_contents": "Shopify display plan name, i.e.: Shopify Plus, Basic Shopify, frozen"}, "doc.yoda.platform__sms_store_verification_to_snowflake_shop_owner": {"name": "platform__sms_store_verification_to_snowflake_shop_owner", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_shop_owner", "block_contents": "Shop owner name in Shopify"}, "doc.yoda.platform__sms_store_verification_to_snowflake_password_enabled": {"name": "platform__sms_store_verification_to_snowflake_password_enabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_password_enabled", "block_contents": "Is the store website is password protected"}, "doc.yoda.platform__sms_store_verification_to_snowflake_shopify_created_at": {"name": "platform__sms_store_verification_to_snowflake_shopify_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_shopify_created_at", "block_contents": "Date the shopify store was created"}, "doc.yoda.platform__sms_store_verification_to_snowflake_shopify_minus_yotpo_created": {"name": "platform__sms_store_verification_to_snowflake_shopify_minus_yotpo_created", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_shopify_minus_yotpo_created", "block_contents": "Days passed between store created in Shopify and store created in Yotpo"}, "doc.yoda.platform__sms_store_verification_to_snowflake_table_updated_date": {"name": "platform__sms_store_verification_to_snowflake_table_updated_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_table_updated_date", "block_contents": "Date updated this table"}, "doc.yoda.platform__sms_store_verification_to_snowflake_orders_count": {"name": "platform__sms_store_verification_to_snowflake_orders_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_orders_count", "block_contents": "Number of orders the store had"}, "doc.yoda.platform__sms_store_verification_to_snowflake_orders_max_date_spread": {"name": "platform__sms_store_verification_to_snowflake_orders_max_date_spread", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_orders_max_date_spread", "block_contents": "Days between first and last orders"}, "doc.yoda.platform__sms_store_verification_to_snowflake_customers_count": {"name": "platform__sms_store_verification_to_snowflake_customers_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_customers_count", "block_contents": "Number of customers the store has"}, "doc.yoda.platform__sms_store_verification_to_snowflake_yotpo_plan_name": {"name": "platform__sms_store_verification_to_snowflake_yotpo_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_yotpo_plan_name", "block_contents": "Yotpo SMS plan name, i.e.: Free, Powerhouse Plus 2"}, "doc.yoda.platform__sms_store_verification_to_snowflake_plan_type_ht_lt": {"name": "platform__sms_store_verification_to_snowflake_plan_type_ht_lt", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_plan_type_ht_lt", "block_contents": "HT for high touch / LT for low touch"}, "doc.yoda.platform__sms_store_verification_to_snowflake_labels": {"name": "platform__sms_store_verification_to_snowflake_labels", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "original_file_path": "models/platform/marts/platform__sms_store_verification_to_snowflake/platform__sms_store_verification_to_snowflake.md", "unique_id": "doc.yoda.platform__sms_store_verification_to_snowflake_labels", "block_contents": "Number labels the store and the store products has, comma separated such as: sex, violence, drags etc."}, "doc.yoda.platform__synergies_kpi": {"name": "platform__synergies_kpi", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi", "block_contents": "A table that includes a union of all the KPIs synergies tables.\ngranularity: synergy_id, app_key, customer_email, customer_phone_number, customer_external_id, source_type, source_id, action_type, action_id, order_id"}, "doc.yoda.platform__synergies_kpi_action_attribute_type": {"name": "platform__synergies_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_action_attribute_type", "block_contents": "action attribute type, e.g: rating"}, "doc.yoda.platform__synergies_kpi_action_attribute_value": {"name": "platform__synergies_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_action_attribute_value", "block_contents": "action attribute value, e.g: 5 (review rating)"}, "doc.yoda.platform__synergies_kpi_action_id": {"name": "platform__synergies_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_action_id", "block_contents": "action unique identifier, e.g: review_id - primary key 9/10"}, "doc.yoda.platform__synergies_kpi_action_type": {"name": "platform__synergies_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_action_type", "block_contents": "customer (shopper) action type: review, new_subscriber, etc. - primary key 8/10"}, "doc.yoda.platform__synergies_kpi_app_key": {"name": "platform__synergies_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_app_key", "block_contents": "yotpo store unique identifier - primary key 2/10"}, "doc.yoda.platform__synergies_kpi_customer_email": {"name": "platform__synergies_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_customer_email", "block_contents": "customer (shopper) email - primary key 3/10"}, "doc.yoda.platform__synergies_kpi_customer_external_id": {"name": "platform__synergies_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_customer_external_id", "block_contents": "customer (shopper) external id - primary key 5/10"}, "doc.yoda.platform__synergies_kpi_customer_phone_number": {"name": "platform__synergies_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_customer_phone_number", "block_contents": "customer (shopper) phone number - primary key 4/10"}, "doc.yoda.platform__synergies_kpi_dwh_updated_at": {"name": "platform__synergies_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.platform__synergies_kpi_id": {"name": "platform__synergies_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_id", "block_contents": "synergy source record unique identifier"}, "doc.yoda.platform__synergies_kpi_order_id": {"name": "platform__synergies_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_order_id", "block_contents": "order id - primary key 10/10"}, "doc.yoda.platform__synergies_kpi_source": {"name": "platform__synergies_kpi_source", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_source", "block_contents": "source model name, e.g: loyalty__review_earning_rule_loyalty"}, "doc.yoda.platform__synergies_kpi_source_id": {"name": "platform__synergies_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_source_id", "block_contents": "source unique identifier, e.g: earning_rule_id - primary key 7/10"}, "doc.yoda.platform__synergies_kpi_source_type": {"name": "platform__synergies_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_source_type", "block_contents": "source type: earning_rule, flow, etc. - primary key 6/10"}, "doc.yoda.platform__synergies_kpi_synergy_id": {"name": "platform__synergies_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "original_file_path": "models/platform/marts/platform__synergies_kpi/platform__synergies_kpi.md", "unique_id": "doc.yoda.platform__synergies_kpi_synergy_id", "block_contents": "synergy widget unique identifier - primary key 1/10"}, "doc.yoda.platform_stg__account_created": {"name": "platform_stg__account_created", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__account_created_account_id": {"name": "platform_stg__account_created_account_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_accountid": {"name": "platform_stg__account_created_accountid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_adminname": {"name": "platform_stg__account_created_adminname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_adminusername": {"name": "platform_stg__account_created_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_anonymous_id": {"name": "platform_stg__account_created_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_appkey": {"name": "platform_stg__account_created_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_billingproviders": {"name": "platform_stg__account_created_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_billingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_channel": {"name": "platform_stg__account_created_channel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_chargeid": {"name": "platform_stg__account_created_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_chargeprice": {"name": "platform_stg__account_created_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_createdat": {"name": "platform_stg__account_created_createdat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_daysinvalidfacebooktoken": {"name": "platform_stg__account_created_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_daysinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_daysinvalidpinteresttoken": {"name": "platform_stg__account_created_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_daysinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_daysinvalidtwittertoken": {"name": "platform_stg__account_created_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_daysinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_email": {"name": "platform_stg__account_created_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_event_name": {"name": "platform_stg__account_created_event_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_groupid": {"name": "platform_stg__account_created_groupid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_is_desktop": {"name": "platform_stg__account_created_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_is_mobile": {"name": "platform_stg__account_created_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_is_tablet": {"name": "platform_stg__account_created_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isfirstaccount": {"name": "platform_stg__account_created_isfirstaccount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isfirstaccount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isinternaluser": {"name": "platform_stg__account_created_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isinternaluser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isinvalidfacebooktoken": {"name": "platform_stg__account_created_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isinvalidfacebooktokendate": {"name": "platform_stg__account_created_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isinvalidfacebooktokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isinvalidpinteresttoken": {"name": "platform_stg__account_created_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isinvalidpinteresttokendate": {"name": "platform_stg__account_created_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isinvalidpinteresttokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isinvalidtwittertoken": {"name": "platform_stg__account_created_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isinvalidtwittertokendate": {"name": "platform_stg__account_created_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isinvalidtwittertokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isloyalty": {"name": "platform_stg__account_created_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isnewslettersubscribed": {"name": "platform_stg__account_created_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isreviews": {"name": "platform_stg__account_created_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isreviewswidgetinstalled": {"name": "platform_stg__account_created_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_issms": {"name": "platform_stg__account_created_issms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_issystemnotificationssubscribed": {"name": "platform_stg__account_created_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isuserscountlimitreached": {"name": "platform_stg__account_created_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isusingpackagesservice": {"name": "platform_stg__account_created_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_isvugc": {"name": "platform_stg__account_created_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_lastconversionordertime": {"name": "platform_stg__account_created_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_library_name": {"name": "platform_stg__account_created_library_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_locale": {"name": "platform_stg__account_created_locale", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_loyaltymerchantid": {"name": "platform_stg__account_created_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_loyaltypackage": {"name": "platform_stg__account_created_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_message_id": {"name": "platform_stg__account_created_message_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_name": {"name": "platform_stg__account_created_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_orgid": {"name": "platform_stg__account_created_orgid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_orgkey": {"name": "platform_stg__account_created_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_package": {"name": "platform_stg__account_created_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_packagecategories": {"name": "platform_stg__account_created_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_packageextensions": {"name": "platform_stg__account_created_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_packageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_page_path": {"name": "platform_stg__account_created_page_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_page_referrer": {"name": "platform_stg__account_created_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_page_title": {"name": "platform_stg__account_created_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_page_url": {"name": "platform_stg__account_created_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_partition_date": {"name": "platform_stg__account_created_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_pendingrrs": {"name": "platform_stg__account_created_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_phone": {"name": "platform_stg__account_created_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_planintent": {"name": "platform_stg__account_created_planintent", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_planintent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_planname": {"name": "platform_stg__account_created_planname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_platform": {"name": "platform_stg__account_created_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_platformplan": {"name": "platform_stg__account_created_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_processing_time": {"name": "platform_stg__account_created_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_productintent": {"name": "platform_stg__account_created_productintent", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_productintent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_reviewspackage": {"name": "platform_stg__account_created_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_role": {"name": "platform_stg__account_created_role", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_rrmonthlylimit": {"name": "platform_stg__account_created_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_signupcountry": {"name": "platform_stg__account_created_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_signupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_signupmonthlyorderscount": {"name": "platform_stg__account_created_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_signupmonthlyorderscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_signupphone": {"name": "platform_stg__account_created_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_signupphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_signuputmcampaign": {"name": "platform_stg__account_created_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_signuputmmedium": {"name": "platform_stg__account_created_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_signuputmsource": {"name": "platform_stg__account_created_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_smspackage": {"name": "platform_stg__account_created_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_smsuserid": {"name": "platform_stg__account_created_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_storecount": {"name": "platform_stg__account_created_storecount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_storedomain": {"name": "platform_stg__account_created_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_storeid": {"name": "platform_stg__account_created_storeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_storeplatformdomain": {"name": "platform_stg__account_created_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_subscriptionstate": {"name": "platform_stg__account_created_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_subscriptionstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_timestamp": {"name": "platform_stg__account_created_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_traits_email": {"name": "platform_stg__account_created_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_traits_name": {"name": "platform_stg__account_created_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_traits_plan": {"name": "platform_stg__account_created_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_upsolver_schema_version": {"name": "platform_stg__account_created_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_user_id": {"name": "platform_stg__account_created_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_useremail": {"name": "platform_stg__account_created_useremail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_useremail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_userid": {"name": "platform_stg__account_created_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_violated_event": {"name": "platform_stg__account_created_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_vugcpackage": {"name": "platform_stg__account_created_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_created_website": {"name": "platform_stg__account_created_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "original_file_path": "models/platform/staging/base/platform_stg__account_created/platform_stg__account_created.md", "unique_id": "doc.yoda.platform_stg__account_created_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms": {"name": "platform_stg__account_platforms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__account_platforms_account_id": {"name": "platform_stg__account_platforms_account_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_created_at": {"name": "platform_stg__account_platforms_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_deleted": {"name": "platform_stg__account_platforms_deleted", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_encrypted_data": {"name": "platform_stg__account_platforms_encrypted_data", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_encrypted_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_external_account_id": {"name": "platform_stg__account_platforms_external_account_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_external_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_external_shop_domain": {"name": "platform_stg__account_platforms_external_shop_domain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_external_shop_domain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_failed_attempts": {"name": "platform_stg__account_platforms_failed_attempts", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_failed_attempts", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_id": {"name": "platform_stg__account_platforms_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_plan_name": {"name": "platform_stg__account_platforms_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_platform_type_id": {"name": "platform_stg__account_platforms_platform_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_platform_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_plugin_version": {"name": "platform_stg__account_platforms_plugin_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_plugin_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_processing_time": {"name": "platform_stg__account_platforms_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_secondary_activated_charge_at": {"name": "platform_stg__account_platforms_secondary_activated_charge_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_secondary_activated_charge_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_secondary_cancelled_charge_at": {"name": "platform_stg__account_platforms_secondary_cancelled_charge_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_secondary_cancelled_charge_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_secondary_recurring_charge_id": {"name": "platform_stg__account_platforms_secondary_recurring_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_secondary_recurring_charge_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_shop_currency": {"name": "platform_stg__account_platforms_shop_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_shop_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_shop_domain": {"name": "platform_stg__account_platforms_shop_domain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_shop_domain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_shop_token": {"name": "platform_stg__account_platforms_shop_token", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_shop_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_shop_user_name": {"name": "platform_stg__account_platforms_shop_user_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_shop_user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_ts_ms": {"name": "platform_stg__account_platforms_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_updated_at": {"name": "platform_stg__account_platforms_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_upsolver_schema_version": {"name": "platform_stg__account_platforms_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_valid_credentials": {"name": "platform_stg__account_platforms_valid_credentials", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_valid_credentials", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__account_platforms_version": {"name": "platform_stg__account_platforms_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__account_platforms/platform_stg__account_platforms.md", "unique_id": "doc.yoda.platform_stg__account_platforms_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__accounts_account_type_id": {"name": "platform_stg__accounts_account_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_account_type_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_app_key": {"name": "platform_stg__accounts_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_app_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_auto_login_popup": {"name": "platform_stg__accounts_auto_login_popup", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_auto_login_popup", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_auto_social_push": {"name": "platform_stg__accounts_auto_social_push", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_auto_social_push", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_bottom_line_installed": {"name": "platform_stg__accounts_bottom_line_installed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_bottom_line_installed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_callback_url": {"name": "platform_stg__accounts_callback_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_callback_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_category_id": {"name": "platform_stg__accounts_category_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_category_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_coupons_expiration_date": {"name": "platform_stg__accounts_coupons_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_coupons_expiration_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_created_at": {"name": "platform_stg__accounts_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_custom_design": {"name": "platform_stg__accounts_custom_design", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_custom_design", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_custom_platform_name": {"name": "platform_stg__accounts_custom_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_custom_platform_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_customer_language": {"name": "platform_stg__accounts_customer_language", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_customer_language", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_customer_mails_sender_name": {"name": "platform_stg__accounts_customer_mails_sender_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_customer_mails_sender_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_domain": {"name": "platform_stg__accounts_domain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_domain", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_id": {"name": "platform_stg__accounts_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_install_step": {"name": "platform_stg__accounts_install_step", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_install_step", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_is_active": {"name": "platform_stg__accounts_is_active", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_is_active", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_is_auto_publish": {"name": "platform_stg__accounts_is_auto_publish", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_is_auto_publish", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_is_test": {"name": "platform_stg__accounts_is_test", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_is_test", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_map_up_sell_title": {"name": "platform_stg__accounts_map_up_sell_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_map_up_sell_title", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_minisite_cname": {"name": "platform_stg__accounts_minisite_cname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_minisite_cname", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_minisite_subdomain": {"name": "platform_stg__accounts_minisite_subdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_minisite_subdomain", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_minisite_subdomain_active": {"name": "platform_stg__accounts_minisite_subdomain_active", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_minisite_subdomain_active", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_minisite_website": {"name": "platform_stg__accounts_minisite_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_minisite_website", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_minisite_website_name": {"name": "platform_stg__accounts_minisite_website_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_minisite_website_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_name": {"name": "platform_stg__accounts_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_organization_id": {"name": "platform_stg__accounts_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_organization_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_partner_key": {"name": "platform_stg__accounts_partner_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_partner_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_referal": {"name": "platform_stg__accounts_referal", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_referal", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_reviews_me_account_description": {"name": "platform_stg__accounts_reviews_me_account_description", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_reviews_me_account_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_reviews_me_account_name": {"name": "platform_stg__accounts_reviews_me_account_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_reviews_me_account_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_reviews_me_crawlable": {"name": "platform_stg__accounts_reviews_me_crawlable", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_reviews_me_crawlable", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_secret": {"name": "platform_stg__accounts_secret", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_secret", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_slug": {"name": "platform_stg__accounts_slug", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_slug", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_support_url": {"name": "platform_stg__accounts_support_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_support_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_updated_at": {"name": "platform_stg__accounts_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__accounts_url": {"name": "platform_stg__accounts_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "original_file_path": "models/platform/staging/base/platform_stg__accounts/platform_stg__accounts.md", "unique_id": "doc.yoda.platform_stg__accounts_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__activation_step": {"name": "platform_stg__activation_step", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__activation_step_accountid": {"name": "platform_stg__activation_step_accountid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_addedstarrating": {"name": "platform_stg__activation_step_addedstarrating", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_addedstarrating", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_adminname": {"name": "platform_stg__activation_step_adminname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_adminusername": {"name": "platform_stg__activation_step_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_anonymous_id": {"name": "platform_stg__activation_step_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_appkey": {"name": "platform_stg__activation_step_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_appstate": {"name": "platform_stg__activation_step_appstate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_appstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_arrnumofdays": {"name": "platform_stg__activation_step_arrnumofdays", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_arrnumofdays", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_auth0userid": {"name": "platform_stg__activation_step_auth0userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_auth0userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_autoinstallavailable": {"name": "platform_stg__activation_step_autoinstallavailable", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_autoinstallavailable", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_autoinstallmainwidgetavailable": {"name": "platform_stg__activation_step_autoinstallmainwidgetavailable", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_autoinstallmainwidgetavailable", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_autoinstallstarratingavailable": {"name": "platform_stg__activation_step_autoinstallstarratingavailable", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_autoinstallstarratingavailable", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_billingproviders": {"name": "platform_stg__activation_step_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_billingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_channel": {"name": "platform_stg__activation_step_channel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_chargeid": {"name": "platform_stg__activation_step_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_chargeprice": {"name": "platform_stg__activation_step_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_createdat": {"name": "platform_stg__activation_step_createdat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_daysinvalidfacebooktoken": {"name": "platform_stg__activation_step_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_daysinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_daysinvalidpinteresttoken": {"name": "platform_stg__activation_step_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_daysinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_daysinvalidtwittertoken": {"name": "platform_stg__activation_step_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_daysinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_email": {"name": "platform_stg__activation_step_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_endscenario": {"name": "platform_stg__activation_step_endscenario", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_endscenario", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_event_name": {"name": "platform_stg__activation_step_event_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_groupid": {"name": "platform_stg__activation_step_groupid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_installedplatformname": {"name": "platform_stg__activation_step_installedplatformname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_installedplatformname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_is_desktop": {"name": "platform_stg__activation_step_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_is_mobile": {"name": "platform_stg__activation_step_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_is_tablet": {"name": "platform_stg__activation_step_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isabandonedcard": {"name": "platform_stg__activation_step_isabandonedcard", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isabandonedcard", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isabandonedcart": {"name": "platform_stg__activation_step_isabandonedcart", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isabandonedcart", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isautoinstalled": {"name": "platform_stg__activation_step_isautoinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isautoinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isautopublishenabled": {"name": "platform_stg__activation_step_isautopublishenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isautopublishenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isbodyupdated": {"name": "platform_stg__activation_step_isbodyupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isbodyupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isbuttonupdated": {"name": "platform_stg__activation_step_isbuttonupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isbuttonupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_iscodecopy": {"name": "platform_stg__activation_step_iscodecopy", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_iscodecopy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_iscolorupdated": {"name": "platform_stg__activation_step_iscolorupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_iscolorupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_iscustomerwinback": {"name": "platform_stg__activation_step_iscustomerwinback", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_iscustomerwinback", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isdefaultupdated": {"name": "platform_stg__activation_step_isdefaultupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isdefaultupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isdesignupdated": {"name": "platform_stg__activation_step_isdesignupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isdesignupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isdiscountincluded": {"name": "platform_stg__activation_step_isdiscountincluded", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isdiscountincluded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isdomainupdated": {"name": "platform_stg__activation_step_isdomainupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isdomainupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isenabledarr": {"name": "platform_stg__activation_step_isenabledarr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isenabledarr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isenabledmap": {"name": "platform_stg__activation_step_isenabledmap", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isenabledmap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isfontadded": {"name": "platform_stg__activation_step_isfontadded", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isfontadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isfontupdated": {"name": "platform_stg__activation_step_isfontupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isfontupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isfromnameupdated": {"name": "platform_stg__activation_step_isfromnameupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isfromnameupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isinternaluser": {"name": "platform_stg__activation_step_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isinternaluser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isinvalidfacebooktoken": {"name": "platform_stg__activation_step_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isinvalidfacebooktokendate": {"name": "platform_stg__activation_step_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isinvalidfacebooktokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isinvalidpinteresttoken": {"name": "platform_stg__activation_step_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isinvalidpinteresttokendate": {"name": "platform_stg__activation_step_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isinvalidpinteresttokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isinvalidtwittertoken": {"name": "platform_stg__activation_step_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isinvalidtwittertokendate": {"name": "platform_stg__activation_step_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isinvalidtwittertokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_islogoadded": {"name": "platform_stg__activation_step_islogoadded", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_islogoadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isloyalty": {"name": "platform_stg__activation_step_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_ismailpreviewed": {"name": "platform_stg__activation_step_ismailpreviewed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_ismailpreviewed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_ismainwidgetautoinstalledsuccessfully": {"name": "platform_stg__activation_step_ismainwidgetautoinstalledsuccessfully", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_ismainwidgetautoinstalledsuccessfully", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_ismultipleproducts": {"name": "platform_stg__activation_step_ismultipleproducts", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_ismultipleproducts", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isnewslettersubscribed": {"name": "platform_stg__activation_step_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isoptionsamountchanged": {"name": "platform_stg__activation_step_isoptionsamountchanged", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isoptionsamountchanged", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_ispointsreminder": {"name": "platform_stg__activation_step_ispointsreminder", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_ispointsreminder", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_ispostpurchaseupsell": {"name": "platform_stg__activation_step_ispostpurchaseupsell", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_ispostpurchaseupsell", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_ispreviewstore": {"name": "platform_stg__activation_step_ispreviewstore", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_ispreviewstore", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isproductreview": {"name": "platform_stg__activation_step_isproductreview", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isproductreview", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isproductupdated": {"name": "platform_stg__activation_step_isproductupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isproductupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isredemptionreminder": {"name": "platform_stg__activation_step_isredemptionreminder", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isredemptionreminder", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isretroactivesend": {"name": "platform_stg__activation_step_isretroactivesend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isretroactivesend", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isreviews": {"name": "platform_stg__activation_step_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isreviewswidgetinstalled": {"name": "platform_stg__activation_step_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isscriptcopy": {"name": "platform_stg__activation_step_isscriptcopy", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isscriptcopy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_issecondaryemailadded": {"name": "platform_stg__activation_step_issecondaryemailadded", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_issecondaryemailadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_issenderemailchanged": {"name": "platform_stg__activation_step_issenderemailchanged", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_issenderemailchanged", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_issendernamechanged": {"name": "platform_stg__activation_step_issendernamechanged", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_issendernamechanged", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isshopify2": {"name": "platform_stg__activation_step_isshopify2", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isshopify2", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isskipped": {"name": "platform_stg__activation_step_isskipped", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isskipped", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_issms": {"name": "platform_stg__activation_step_issms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isspacingupdated": {"name": "platform_stg__activation_step_isspacingupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isspacingupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isstarratingautoinstalledsuccessfully": {"name": "platform_stg__activation_step_isstarratingautoinstalledsuccessfully", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isstarratingautoinstalledsuccessfully", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_issubjectupdated": {"name": "platform_stg__activation_step_issubjectupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_issubjectupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_issubscriptionconfirmation": {"name": "platform_stg__activation_step_issubscriptionconfirmation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_issubscriptionconfirmation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_issubscriptionrenewalreminder": {"name": "platform_stg__activation_step_issubscriptionrenewalreminder", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_issubscriptionrenewalreminder", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_issystemnotificationssubscribed": {"name": "platform_stg__activation_step_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isuserscountlimitreached": {"name": "platform_stg__activation_step_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isusingpackagesservice": {"name": "platform_stg__activation_step_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_isvugc": {"name": "platform_stg__activation_step_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_iswidgetv3": {"name": "platform_stg__activation_step_iswidgetv3", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_iswidgetv3", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_lastconversionordertime": {"name": "platform_stg__activation_step_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_layouttype": {"name": "platform_stg__activation_step_layouttype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_layouttype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_library_name": {"name": "platform_stg__activation_step_library_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_locale": {"name": "platform_stg__activation_step_locale", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_loyaltymerchantid": {"name": "platform_stg__activation_step_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_loyaltypackage": {"name": "platform_stg__activation_step_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_message_id": {"name": "platform_stg__activation_step_message_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_name": {"name": "platform_stg__activation_step_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_newcolor": {"name": "platform_stg__activation_step_newcolor", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_newcolor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_newfont": {"name": "platform_stg__activation_step_newfont", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_newfont", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_noresultsareshown": {"name": "platform_stg__activation_step_noresultsareshown", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_noresultsareshown", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_numofdays": {"name": "platform_stg__activation_step_numofdays", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_numofdays", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_numofinstagramphotos": {"name": "platform_stg__activation_step_numofinstagramphotos", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_numofinstagramphotos", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_numofmanualphotos": {"name": "platform_stg__activation_step_numofmanualphotos", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_numofmanualphotos", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_numofreviewsphotos": {"name": "platform_stg__activation_step_numofreviewsphotos", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_numofreviewsphotos", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_numofrowitems": {"name": "platform_stg__activation_step_numofrowitems", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_numofrowitems", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_numoftotalphotos": {"name": "platform_stg__activation_step_numoftotalphotos", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_numoftotalphotos", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_objectposition": {"name": "platform_stg__activation_step_objectposition", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_objectposition", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_onboardingversion": {"name": "platform_stg__activation_step_onboardingversion", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_onboardingversion", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_optionnum": {"name": "platform_stg__activation_step_optionnum", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_optionnum", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_orgid": {"name": "platform_stg__activation_step_orgid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_orgkey": {"name": "platform_stg__activation_step_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_os20": {"name": "platform_stg__activation_step_os20", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_os20", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_owner": {"name": "platform_stg__activation_step_owner", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_owner", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_package": {"name": "platform_stg__activation_step_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_packagecategories": {"name": "platform_stg__activation_step_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_packageextensions": {"name": "platform_stg__activation_step_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_packageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_page_path": {"name": "platform_stg__activation_step_page_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_page_referrer": {"name": "platform_stg__activation_step_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_page_title": {"name": "platform_stg__activation_step_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_page_url": {"name": "platform_stg__activation_step_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_partition_date": {"name": "platform_stg__activation_step_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_path": {"name": "platform_stg__activation_step_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_paymentfailedenabled": {"name": "platform_stg__activation_step_paymentfailedenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_paymentfailedenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_pendingrrs": {"name": "platform_stg__activation_step_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_phone": {"name": "platform_stg__activation_step_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_placementtype": {"name": "platform_stg__activation_step_placementtype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_placementtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_planname": {"name": "platform_stg__activation_step_planname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_platform": {"name": "platform_stg__activation_step_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_platformplan": {"name": "platform_stg__activation_step_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_processing_time": {"name": "platform_stg__activation_step_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_product": {"name": "platform_stg__activation_step_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_programstrategy": {"name": "platform_stg__activation_step_programstrategy", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_programstrategy", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_redemptionreminder": {"name": "platform_stg__activation_step_redemptionreminder", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_redemptionreminder", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_retroactivesentnumofdays": {"name": "platform_stg__activation_step_retroactivesentnumofdays", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_retroactivesentnumofdays", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_reviewspackage": {"name": "platform_stg__activation_step_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_rewardreceived": {"name": "platform_stg__activation_step_rewardreceived", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_rewardreceived", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_rewardspackage": {"name": "platform_stg__activation_step_rewardspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_rewardspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_role": {"name": "platform_stg__activation_step_role", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_rrmonthlylimit": {"name": "platform_stg__activation_step_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_selectedindustry": {"name": "platform_stg__activation_step_selectedindustry", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_selectedindustry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_selectedtemplate": {"name": "platform_stg__activation_step_selectedtemplate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_selectedtemplate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_sentemailinstructions": {"name": "platform_stg__activation_step_sentemailinstructions", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_sentemailinstructions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_sfchatused": {"name": "platform_stg__activation_step_sfchatused", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_sfchatused", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_signupcountry": {"name": "platform_stg__activation_step_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_signupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_signupmonthlyorderscount": {"name": "platform_stg__activation_step_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_signupmonthlyorderscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_signupphone": {"name": "platform_stg__activation_step_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_signupphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_signuputmcampaign": {"name": "platform_stg__activation_step_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_signuputmmedium": {"name": "platform_stg__activation_step_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_signuputmsource": {"name": "platform_stg__activation_step_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_smspackage": {"name": "platform_stg__activation_step_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_smsuserid": {"name": "platform_stg__activation_step_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_source": {"name": "platform_stg__activation_step_source", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_status": {"name": "platform_stg__activation_step_status", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_stepname": {"name": "platform_stg__activation_step_stepname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_stepname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_stepnum": {"name": "platform_stg__activation_step_stepnum", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_stepnum", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_storecount": {"name": "platform_stg__activation_step_storecount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_storedomain": {"name": "platform_stg__activation_step_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_storehasklaviyopopup": {"name": "platform_stg__activation_step_storehasklaviyopopup", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_storehasklaviyopopup", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_storeid": {"name": "platform_stg__activation_step_storeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_storeplatformdomain": {"name": "platform_stg__activation_step_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptioncanceledenabled": {"name": "platform_stg__activation_step_subscriptioncanceledenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptioncanceledenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionpurchasedenabled": {"name": "platform_stg__activation_step_subscriptionpurchasedenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionpurchasedenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionsemailactivateenabled": {"name": "platform_stg__activation_step_subscriptionsemailactivateenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionsemailactivateenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionsemailactivateenabledsms": {"name": "platform_stg__activation_step_subscriptionsemailactivateenabledsms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionsemailactivateenabledsms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionsemailbillingfailedenabled": {"name": "platform_stg__activation_step_subscriptionsemailbillingfailedenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionsemailbillingfailedenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionsemailbillingfailedenabledsms": {"name": "platform_stg__activation_step_subscriptionsemailbillingfailedenabledsms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionsemailbillingfailedenabledsms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionsemailcancelledenabled": {"name": "platform_stg__activation_step_subscriptionsemailcancelledenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionsemailcancelledenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionsemailcancelledenabledsms": {"name": "platform_stg__activation_step_subscriptionsemailcancelledenabledsms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionsemailcancelledenabledsms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionsemailmanagementenabled": {"name": "platform_stg__activation_step_subscriptionsemailmanagementenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionsemailmanagementenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionsemailmanagementenabledsms": {"name": "platform_stg__activation_step_subscriptionsemailmanagementenabledsms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionsemailmanagementenabledsms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionsemailupcomingbillingenabled": {"name": "platform_stg__activation_step_subscriptionsemailupcomingbillingenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionsemailupcomingbillingenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionsemailupcomingbillingenabledsms": {"name": "platform_stg__activation_step_subscriptionsemailupcomingbillingenabledsms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionsemailupcomingbillingenabledsms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_subscriptionstate": {"name": "platform_stg__activation_step_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_subscriptionstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_templatetype": {"name": "platform_stg__activation_step_templatetype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_templatetype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_timestamp": {"name": "platform_stg__activation_step_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_title": {"name": "platform_stg__activation_step_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_traits_email": {"name": "platform_stg__activation_step_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_traits_name": {"name": "platform_stg__activation_step_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_traits_plan": {"name": "platform_stg__activation_step_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_upsolver_schema_version": {"name": "platform_stg__activation_step_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_url": {"name": "platform_stg__activation_step_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_user_id": {"name": "platform_stg__activation_step_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_useremail": {"name": "platform_stg__activation_step_useremail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_useremail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_userid": {"name": "platform_stg__activation_step_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_violated_event": {"name": "platform_stg__activation_step_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_vugcpackage": {"name": "platform_stg__activation_step_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_website": {"name": "platform_stg__activation_step_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_widgetlayout": {"name": "platform_stg__activation_step_widgetlayout", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_widgetlayout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_widgetversion": {"name": "platform_stg__activation_step_widgetversion", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_widgetversion", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__activation_step_yotpoip": {"name": "platform_stg__activation_step_yotpoip", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "original_file_path": "models/platform/staging/base/platform_stg__activation_step/platform_stg__activation_step.md", "unique_id": "doc.yoda.platform_stg__activation_step_yotpoip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed": {"name": "platform_stg__app_install_completed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__app_install_completed_actioncontext": {"name": "platform_stg__app_install_completed_actioncontext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_actioncontext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_adminusername": {"name": "platform_stg__app_install_completed_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_anonymous_id": {"name": "platform_stg__app_install_completed_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_appkey": {"name": "platform_stg__app_install_completed_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_channel": {"name": "platform_stg__app_install_completed_channel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_context": {"name": "platform_stg__app_install_completed_context", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_context", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_event_name": {"name": "platform_stg__app_install_completed_event_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_flowtype": {"name": "platform_stg__app_install_completed_flowtype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_flowtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_is_desktop": {"name": "platform_stg__app_install_completed_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_is_mobile": {"name": "platform_stg__app_install_completed_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_is_tablet": {"name": "platform_stg__app_install_completed_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_isadditionalaccount": {"name": "platform_stg__app_install_completed_isadditionalaccount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_isadditionalaccount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_isht": {"name": "platform_stg__app_install_completed_isht", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_isht", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_isinternaluser": {"name": "platform_stg__app_install_completed_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_isinternaluser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_isloyalty": {"name": "platform_stg__app_install_completed_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_isreviews": {"name": "platform_stg__app_install_completed_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_issms": {"name": "platform_stg__app_install_completed_issms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_isvugc": {"name": "platform_stg__app_install_completed_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_library_name": {"name": "platform_stg__app_install_completed_library_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_locale": {"name": "platform_stg__app_install_completed_locale", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_loyaltymerchantid": {"name": "platform_stg__app_install_completed_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_loyaltypackage": {"name": "platform_stg__app_install_completed_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_message_id": {"name": "platform_stg__app_install_completed_message_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_orgid": {"name": "platform_stg__app_install_completed_orgid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_orgkey": {"name": "platform_stg__app_install_completed_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_package": {"name": "platform_stg__app_install_completed_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_packagecategories": {"name": "platform_stg__app_install_completed_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_page_path": {"name": "platform_stg__app_install_completed_page_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_page_referrer": {"name": "platform_stg__app_install_completed_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_page_title": {"name": "platform_stg__app_install_completed_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_page_url": {"name": "platform_stg__app_install_completed_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_partition_date": {"name": "platform_stg__app_install_completed_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_platform": {"name": "platform_stg__app_install_completed_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_platformplan": {"name": "platform_stg__app_install_completed_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_processing_time": {"name": "platform_stg__app_install_completed_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_product": {"name": "platform_stg__app_install_completed_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_productintent": {"name": "platform_stg__app_install_completed_productintent", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_productintent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_reviewspackage": {"name": "platform_stg__app_install_completed_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_smspackage": {"name": "platform_stg__app_install_completed_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_smsuserid": {"name": "platform_stg__app_install_completed_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_storedomain": {"name": "platform_stg__app_install_completed_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_storeid": {"name": "platform_stg__app_install_completed_storeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_storeplatformdomain": {"name": "platform_stg__app_install_completed_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_timestamp": {"name": "platform_stg__app_install_completed_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_upsolver_schema_version": {"name": "platform_stg__app_install_completed_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_user_id": {"name": "platform_stg__app_install_completed_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_useremail": {"name": "platform_stg__app_install_completed_useremail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_useremail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_userid": {"name": "platform_stg__app_install_completed_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_violated_event": {"name": "platform_stg__app_install_completed_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_install_completed_vugcpackage": {"name": "platform_stg__app_install_completed_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "original_file_path": "models/platform/staging/base/platform_stg__app_install_completed/platform_stg__app_install_completed.md", "unique_id": "doc.yoda.platform_stg__app_install_completed_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled": {"name": "platform_stg__app_uninstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__app_uninstalled_accountappkey": {"name": "platform_stg__app_uninstalled_accountappkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_accountappkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_accountid": {"name": "platform_stg__app_uninstalled_accountid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_adminname": {"name": "platform_stg__app_uninstalled_adminname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_adminusername": {"name": "platform_stg__app_uninstalled_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_anonymous_id": {"name": "platform_stg__app_uninstalled_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_appdevelopername": {"name": "platform_stg__app_uninstalled_appdevelopername", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_appdevelopername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_appid": {"name": "platform_stg__app_uninstalled_appid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_appid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_appkey": {"name": "platform_stg__app_uninstalled_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_appname": {"name": "platform_stg__app_uninstalled_appname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_appname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_category": {"name": "platform_stg__app_uninstalled_category", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_channel": {"name": "platform_stg__app_uninstalled_channel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_createdat": {"name": "platform_stg__app_uninstalled_createdat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_email": {"name": "platform_stg__app_uninstalled_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_event_name": {"name": "platform_stg__app_uninstalled_event_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_groupid": {"name": "platform_stg__app_uninstalled_groupid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_is_desktop": {"name": "platform_stg__app_uninstalled_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_is_mobile": {"name": "platform_stg__app_uninstalled_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_is_tablet": {"name": "platform_stg__app_uninstalled_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_isht": {"name": "platform_stg__app_uninstalled_isht", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_isht", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_isinternaluser": {"name": "platform_stg__app_uninstalled_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_isinternaluser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_isloyalty": {"name": "platform_stg__app_uninstalled_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_isnewslettersubscribed": {"name": "platform_stg__app_uninstalled_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_isreviews": {"name": "platform_stg__app_uninstalled_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_isreviewswidgetinstalled": {"name": "platform_stg__app_uninstalled_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_issms": {"name": "platform_stg__app_uninstalled_issms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_issystemnotificationssubscribed": {"name": "platform_stg__app_uninstalled_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_isuserscountlimitreached": {"name": "platform_stg__app_uninstalled_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_isusingpackagesservice": {"name": "platform_stg__app_uninstalled_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_isvugc": {"name": "platform_stg__app_uninstalled_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_lastconversionordertime": {"name": "platform_stg__app_uninstalled_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_library_name": {"name": "platform_stg__app_uninstalled_library_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_locale": {"name": "platform_stg__app_uninstalled_locale", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_loyaltymerchantid": {"name": "platform_stg__app_uninstalled_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_loyaltypackage": {"name": "platform_stg__app_uninstalled_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_message_id": {"name": "platform_stg__app_uninstalled_message_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_name": {"name": "platform_stg__app_uninstalled_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_orgid": {"name": "platform_stg__app_uninstalled_orgid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_orgkey": {"name": "platform_stg__app_uninstalled_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_package": {"name": "platform_stg__app_uninstalled_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_packagecategories": {"name": "platform_stg__app_uninstalled_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_page_path": {"name": "platform_stg__app_uninstalled_page_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_page_referrer": {"name": "platform_stg__app_uninstalled_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_page_title": {"name": "platform_stg__app_uninstalled_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_page_url": {"name": "platform_stg__app_uninstalled_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_partition_date": {"name": "platform_stg__app_uninstalled_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_path": {"name": "platform_stg__app_uninstalled_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_pendingrrs": {"name": "platform_stg__app_uninstalled_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_planname": {"name": "platform_stg__app_uninstalled_planname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_platform": {"name": "platform_stg__app_uninstalled_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_platformplan": {"name": "platform_stg__app_uninstalled_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_processing_time": {"name": "platform_stg__app_uninstalled_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_product": {"name": "platform_stg__app_uninstalled_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_reviewspackage": {"name": "platform_stg__app_uninstalled_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_role": {"name": "platform_stg__app_uninstalled_role", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_rrmonthlylimit": {"name": "platform_stg__app_uninstalled_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_signuputmcampaign": {"name": "platform_stg__app_uninstalled_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_signuputmmedium": {"name": "platform_stg__app_uninstalled_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_signuputmsource": {"name": "platform_stg__app_uninstalled_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_smspackage": {"name": "platform_stg__app_uninstalled_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_smsuserid": {"name": "platform_stg__app_uninstalled_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_storecount": {"name": "platform_stg__app_uninstalled_storecount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_storedomain": {"name": "platform_stg__app_uninstalled_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_storeid": {"name": "platform_stg__app_uninstalled_storeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_storeplatformdomain": {"name": "platform_stg__app_uninstalled_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_timestamp": {"name": "platform_stg__app_uninstalled_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_title": {"name": "platform_stg__app_uninstalled_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_traits_email": {"name": "platform_stg__app_uninstalled_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_traits_name": {"name": "platform_stg__app_uninstalled_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_traits_plan": {"name": "platform_stg__app_uninstalled_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_upsolver_schema_version": {"name": "platform_stg__app_uninstalled_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_url": {"name": "platform_stg__app_uninstalled_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_user_id": {"name": "platform_stg__app_uninstalled_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_useremail": {"name": "platform_stg__app_uninstalled_useremail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_useremail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_userid": {"name": "platform_stg__app_uninstalled_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_violated_event": {"name": "platform_stg__app_uninstalled_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_vugcpackage": {"name": "platform_stg__app_uninstalled_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_website": {"name": "platform_stg__app_uninstalled_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__app_uninstalled_yotpoip": {"name": "platform_stg__app_uninstalled_yotpoip", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "original_file_path": "models/platform/staging/base/platform_stg__app_uninstalled/platform_stg__app_uninstalled.md", "unique_id": "doc.yoda.platform_stg__app_uninstalled_yotpoip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__apps_account_id": {"name": "platform_stg__apps_account_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__apps/platform_stg__apps.md", "original_file_path": "models/platform/staging/base/platform_stg__apps/platform_stg__apps.md", "unique_id": "doc.yoda.platform_stg__apps_account_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__apps_created_at": {"name": "platform_stg__apps_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__apps/platform_stg__apps.md", "original_file_path": "models/platform/staging/base/platform_stg__apps/platform_stg__apps.md", "unique_id": "doc.yoda.platform_stg__apps_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__apps_disabled": {"name": "platform_stg__apps_disabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__apps/platform_stg__apps.md", "original_file_path": "models/platform/staging/base/platform_stg__apps/platform_stg__apps.md", "unique_id": "doc.yoda.platform_stg__apps_disabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__apps_id": {"name": "platform_stg__apps_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__apps/platform_stg__apps.md", "original_file_path": "models/platform/staging/base/platform_stg__apps/platform_stg__apps.md", "unique_id": "doc.yoda.platform_stg__apps_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__apps_moderator_role_id": {"name": "platform_stg__apps_moderator_role_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__apps/platform_stg__apps.md", "original_file_path": "models/platform/staging/base/platform_stg__apps/platform_stg__apps.md", "unique_id": "doc.yoda.platform_stg__apps_moderator_role_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__apps_processing_time": {"name": "platform_stg__apps_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__apps/platform_stg__apps.md", "original_file_path": "models/platform/staging/base/platform_stg__apps/platform_stg__apps.md", "unique_id": "doc.yoda.platform_stg__apps_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__apps_ts_ms": {"name": "platform_stg__apps_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__apps/platform_stg__apps.md", "original_file_path": "models/platform/staging/base/platform_stg__apps/platform_stg__apps.md", "unique_id": "doc.yoda.platform_stg__apps_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__apps_updated_at": {"name": "platform_stg__apps_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__apps/platform_stg__apps.md", "original_file_path": "models/platform/staging/base/platform_stg__apps/platform_stg__apps.md", "unique_id": "doc.yoda.platform_stg__apps_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__apps_upsolver_schema_version": {"name": "platform_stg__apps_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__apps/platform_stg__apps.md", "original_file_path": "models/platform/staging/base/platform_stg__apps/platform_stg__apps.md", "unique_id": "doc.yoda.platform_stg__apps_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__apps_user_id": {"name": "platform_stg__apps_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__apps/platform_stg__apps.md", "original_file_path": "models/platform/staging/base/platform_stg__apps/platform_stg__apps.md", "unique_id": "doc.yoda.platform_stg__apps_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__attribute_sets": {"name": "platform_stg__attribute_sets", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__attribute_sets_attributable_id": {"name": "platform_stg__attribute_sets_attributable_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_attributable_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__attribute_sets_attributable_type": {"name": "platform_stg__attribute_sets_attributable_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_attributable_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__attribute_sets_brand": {"name": "platform_stg__attribute_sets_brand", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_brand", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__attribute_sets_created_at": {"name": "platform_stg__attribute_sets_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__attribute_sets_external_sku": {"name": "platform_stg__attribute_sets_external_sku", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_external_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__attribute_sets_id": {"name": "platform_stg__attribute_sets_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__attribute_sets_mpn": {"name": "platform_stg__attribute_sets_mpn", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_mpn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__attribute_sets_processing_time": {"name": "platform_stg__attribute_sets_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__attribute_sets_sku": {"name": "platform_stg__attribute_sets_sku", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__attribute_sets_ts_ms": {"name": "platform_stg__attribute_sets_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__attribute_sets_updated_at": {"name": "platform_stg__attribute_sets_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__attribute_sets_upsolver_schema_version": {"name": "platform_stg__attribute_sets_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "original_file_path": "models/platform/staging/base/platform_stg__attribute_sets/platform_stg__attribute_sets.md", "unique_id": "doc.yoda.platform_stg__attribute_sets_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b": {"name": "platform_stg__b2b", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__b2b_accountid": {"name": "platform_stg__b2b_accountid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_admin": {"name": "platform_stg__b2b_admin", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_admin", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_adminname": {"name": "platform_stg__b2b_adminname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_adminusername": {"name": "platform_stg__b2b_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_anonymous_id": {"name": "platform_stg__b2b_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_appkey": {"name": "platform_stg__b2b_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_auth0userid": {"name": "platform_stg__b2b_auth0userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_auth0userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_billingproviders": {"name": "platform_stg__b2b_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_billingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_category": {"name": "platform_stg__b2b_category", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_channel": {"name": "platform_stg__b2b_channel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_chargeid": {"name": "platform_stg__b2b_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_chargeprice": {"name": "platform_stg__b2b_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_createdat": {"name": "platform_stg__b2b_createdat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_ctacontext": {"name": "platform_stg__b2b_ctacontext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_ctacontext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_ctatype": {"name": "platform_stg__b2b_ctatype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_ctatype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_dashboardmetricname": {"name": "platform_stg__b2b_dashboardmetricname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_dashboardmetricname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_dashboardmetricvalue": {"name": "platform_stg__b2b_dashboardmetricvalue", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_dashboardmetricvalue", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_dashboardtipname": {"name": "platform_stg__b2b_dashboardtipname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_dashboardtipname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_daysinvalidfacebooktoken": {"name": "platform_stg__b2b_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_daysinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_daysinvalidpinteresttoken": {"name": "platform_stg__b2b_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_daysinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_daysinvalidtwittertoken": {"name": "platform_stg__b2b_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_daysinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_email": {"name": "platform_stg__b2b_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_errortext": {"name": "platform_stg__b2b_errortext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_errortext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_event_name": {"name": "platform_stg__b2b_event_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_failedreviews": {"name": "platform_stg__b2b_failedreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_failedreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_groupid": {"name": "platform_stg__b2b_groupid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_importedreviews": {"name": "platform_stg__b2b_importedreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_importedreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_is_desktop": {"name": "platform_stg__b2b_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_is_first_time": {"name": "platform_stg__b2b_is_first_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_is_first_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_is_mobile": {"name": "platform_stg__b2b_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_is_tablet": {"name": "platform_stg__b2b_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_iscompleted": {"name": "platform_stg__b2b_iscompleted", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_iscompleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isinternaluser": {"name": "platform_stg__b2b_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isinternaluser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isinvalidfacebooktoken": {"name": "platform_stg__b2b_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isinvalidfacebooktokendate": {"name": "platform_stg__b2b_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isinvalidfacebooktokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isinvalidpinteresttoken": {"name": "platform_stg__b2b_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isinvalidpinteresttokendate": {"name": "platform_stg__b2b_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isinvalidpinteresttokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isinvalidtwittertoken": {"name": "platform_stg__b2b_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isinvalidtwittertokendate": {"name": "platform_stg__b2b_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isinvalidtwittertokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isloyalty": {"name": "platform_stg__b2b_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isnewslettersubscribed": {"name": "platform_stg__b2b_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isreviews": {"name": "platform_stg__b2b_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isreviewswidgetinstalled": {"name": "platform_stg__b2b_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_issms": {"name": "platform_stg__b2b_issms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_issystemnotificationssubscribed": {"name": "platform_stg__b2b_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isuserscountlimitreached": {"name": "platform_stg__b2b_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isusingpackagesservice": {"name": "platform_stg__b2b_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_isvugc": {"name": "platform_stg__b2b_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_lastconversionordertime": {"name": "platform_stg__b2b_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_library_name": {"name": "platform_stg__b2b_library_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_locale": {"name": "platform_stg__b2b_locale", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_loyaltymerchantid": {"name": "platform_stg__b2b_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_loyaltypackage": {"name": "platform_stg__b2b_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_message_id": {"name": "platform_stg__b2b_message_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_name": {"name": "platform_stg__b2b_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_numberoftips": {"name": "platform_stg__b2b_numberoftips", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_numberoftips", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_numoftasksdone": {"name": "platform_stg__b2b_numoftasksdone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_numoftasksdone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_orgid": {"name": "platform_stg__b2b_orgid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_orgkey": {"name": "platform_stg__b2b_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_package": {"name": "platform_stg__b2b_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_packagecategories": {"name": "platform_stg__b2b_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_packageextensions": {"name": "platform_stg__b2b_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_packageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_page_path": {"name": "platform_stg__b2b_page_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_page_referrer": {"name": "platform_stg__b2b_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_page_title": {"name": "platform_stg__b2b_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_page_url": {"name": "platform_stg__b2b_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_pagecategory": {"name": "platform_stg__b2b_pagecategory", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_pagecategory", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_pagetitle": {"name": "platform_stg__b2b_pagetitle", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_pagetitle", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_partition_date": {"name": "platform_stg__b2b_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_path": {"name": "platform_stg__b2b_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_pendingrrs": {"name": "platform_stg__b2b_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_phasename": {"name": "platform_stg__b2b_phasename", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_phasename", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_phone": {"name": "platform_stg__b2b_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_planname": {"name": "platform_stg__b2b_planname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_platform": {"name": "platform_stg__b2b_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_platformplan": {"name": "platform_stg__b2b_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_processing_time": {"name": "platform_stg__b2b_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_reviewspackage": {"name": "platform_stg__b2b_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_role": {"name": "platform_stg__b2b_role", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_rrmonthlylimit": {"name": "platform_stg__b2b_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_signupcountry": {"name": "platform_stg__b2b_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_signupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_signupmonthlyorderscount": {"name": "platform_stg__b2b_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_signupmonthlyorderscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_signupphone": {"name": "platform_stg__b2b_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_signupphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_signuputmcampaign": {"name": "platform_stg__b2b_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_signuputmmedium": {"name": "platform_stg__b2b_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_signuputmsource": {"name": "platform_stg__b2b_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_smspackage": {"name": "platform_stg__b2b_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_smsuserid": {"name": "platform_stg__b2b_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_status": {"name": "platform_stg__b2b_status", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_storecount": {"name": "platform_stg__b2b_storecount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_storedomain": {"name": "platform_stg__b2b_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_storeid": {"name": "platform_stg__b2b_storeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_storeplatformdomain": {"name": "platform_stg__b2b_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_subscriptionstate": {"name": "platform_stg__b2b_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_subscriptionstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_tabname": {"name": "platform_stg__b2b_tabname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_tabname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_timestamp": {"name": "platform_stg__b2b_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_title": {"name": "platform_stg__b2b_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_traits_email": {"name": "platform_stg__b2b_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_traits_name": {"name": "platform_stg__b2b_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_traits_plan": {"name": "platform_stg__b2b_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_uiversion": {"name": "platform_stg__b2b_uiversion", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_uiversion", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_upsolver_schema_version": {"name": "platform_stg__b2b_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_url": {"name": "platform_stg__b2b_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_user_id": {"name": "platform_stg__b2b_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_useremail": {"name": "platform_stg__b2b_useremail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_useremail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_userid": {"name": "platform_stg__b2b_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_violated_event": {"name": "platform_stg__b2b_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_vugcpackage": {"name": "platform_stg__b2b_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_website": {"name": "platform_stg__b2b_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__b2b_yotpoip": {"name": "platform_stg__b2b_yotpoip", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "original_file_path": "models/platform/staging/base/platform_stg__b2b/platform_stg__b2b.md", "unique_id": "doc.yoda.platform_stg__b2b_yotpoip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__billing_audits": {"name": "platform_stg__billing_audits", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits", "block_contents": "Audits to billing actions"}, "doc.yoda.platform_stg__billing_audits_action": {"name": "platform_stg__billing_audits_action", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_action", "block_contents": "action"}, "doc.yoda.platform_stg__billing_audits_app_key": {"name": "platform_stg__billing_audits_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_app_key", "block_contents": "app_key"}, "doc.yoda.platform_stg__billing_audits_category_name": {"name": "platform_stg__billing_audits_category_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_category_name", "block_contents": "category_name"}, "doc.yoda.platform_stg__billing_audits_date": {"name": "platform_stg__billing_audits_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_date", "block_contents": "audits_date"}, "doc.yoda.platform_stg__billing_audits_id": {"name": "platform_stg__billing_audits_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_id", "block_contents": "audits_id"}, "doc.yoda.platform_stg__billing_audits_metadata": {"name": "platform_stg__billing_audits_metadata", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_metadata", "block_contents": "audits_metadata"}, "doc.yoda.platform_stg__billing_audits_organization_key": {"name": "platform_stg__billing_audits_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_organization_key", "block_contents": "organization_key"}, "doc.yoda.platform_stg__billing_audits_processing_time": {"name": "platform_stg__billing_audits_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_processing_time", "block_contents": "processing_time"}, "doc.yoda.platform_stg__billing_audits_source": {"name": "platform_stg__billing_audits_source", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_source", "block_contents": "audits_source"}, "doc.yoda.platform_stg__billing_audits_subscription_provider_id": {"name": "platform_stg__billing_audits_subscription_provider_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_subscription_provider_id", "block_contents": "subscription_provider_id"}, "doc.yoda.platform_stg__billing_audits_ts_ms": {"name": "platform_stg__billing_audits_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_ts_ms", "block_contents": "ts_ms"}, "doc.yoda.platform_stg__billing_audits_upsolver_schema_version": {"name": "platform_stg__billing_audits_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__billing_audits/platform_stg__billing_audits.md", "unique_id": "doc.yoda.platform_stg__billing_audits_upsolver_schema_version", "block_contents": "upsolver_schema_version"}, "doc.yoda.platform_stg__categories": {"name": "platform_stg__categories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__categories/platform_stg__categories.md", "original_file_path": "models/platform/staging/base/platform_stg__categories/platform_stg__categories.md", "unique_id": "doc.yoda.platform_stg__categories", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__categories_allow_multiple_packages": {"name": "platform_stg__categories_allow_multiple_packages", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__categories/platform_stg__categories.md", "original_file_path": "models/platform/staging/base/platform_stg__categories/platform_stg__categories.md", "unique_id": "doc.yoda.platform_stg__categories_allow_multiple_packages", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__categories_id": {"name": "platform_stg__categories_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__categories/platform_stg__categories.md", "original_file_path": "models/platform/staging/base/platform_stg__categories/platform_stg__categories.md", "unique_id": "doc.yoda.platform_stg__categories_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__categories_name": {"name": "platform_stg__categories_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__categories/platform_stg__categories.md", "original_file_path": "models/platform/staging/base/platform_stg__categories/platform_stg__categories.md", "unique_id": "doc.yoda.platform_stg__categories_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__categories_processing_time": {"name": "platform_stg__categories_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__categories/platform_stg__categories.md", "original_file_path": "models/platform/staging/base/platform_stg__categories/platform_stg__categories.md", "unique_id": "doc.yoda.platform_stg__categories_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__categories_ts_ms": {"name": "platform_stg__categories_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__categories/platform_stg__categories.md", "original_file_path": "models/platform/staging/base/platform_stg__categories/platform_stg__categories.md", "unique_id": "doc.yoda.platform_stg__categories_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__categories_upsolver_schema_version": {"name": "platform_stg__categories_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__categories/platform_stg__categories.md", "original_file_path": "models/platform/staging/base/platform_stg__categories/platform_stg__categories.md", "unique_id": "doc.yoda.platform_stg__categories_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__cdp_streaming_events": {"name": "platform_stg__cdp_streaming_events", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "original_file_path": "models/platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "unique_id": "doc.yoda.platform_stg__cdp_streaming_events", "block_contents": "Platform singas CDP streaming events staging table"}, "doc.yoda.platform_stg__cdp_streaming_events_date": {"name": "platform_stg__cdp_streaming_events_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "original_file_path": "models/platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "unique_id": "doc.yoda.platform_stg__cdp_streaming_events_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__cdp_streaming_events_datetime": {"name": "platform_stg__cdp_streaming_events_datetime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "original_file_path": "models/platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "unique_id": "doc.yoda.platform_stg__cdp_streaming_events_datetime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__cdp_streaming_events_key": {"name": "platform_stg__cdp_streaming_events_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "original_file_path": "models/platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "unique_id": "doc.yoda.platform_stg__cdp_streaming_events_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__cdp_streaming_events_mode": {"name": "platform_stg__cdp_streaming_events_mode", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "original_file_path": "models/platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "unique_id": "doc.yoda.platform_stg__cdp_streaming_events_mode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__cdp_streaming_events_timestamp": {"name": "platform_stg__cdp_streaming_events_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "original_file_path": "models/platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "unique_id": "doc.yoda.platform_stg__cdp_streaming_events_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__cdp_streaming_events_topic": {"name": "platform_stg__cdp_streaming_events_topic", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "original_file_path": "models/platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "unique_id": "doc.yoda.platform_stg__cdp_streaming_events_topic", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__cdp_streaming_events_value": {"name": "platform_stg__cdp_streaming_events_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "original_file_path": "models/platform/staging/base/platform_stg__cdp_streaming_events/platform_stg__cdp_streaming_events.md", "unique_id": "doc.yoda.platform_stg__cdp_streaming_events_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__currency_rates_base": {"name": "platform_stg__currency_rates_base", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.md", "original_file_path": "models/platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.md", "unique_id": "doc.yoda.platform_stg__currency_rates_base", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__currency_rates_country": {"name": "platform_stg__currency_rates_country", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.md", "original_file_path": "models/platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.md", "unique_id": "doc.yoda.platform_stg__currency_rates_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__currency_rates_currency": {"name": "platform_stg__currency_rates_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.md", "original_file_path": "models/platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.md", "unique_id": "doc.yoda.platform_stg__currency_rates_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__currency_rates_date": {"name": "platform_stg__currency_rates_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.md", "original_file_path": "models/platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.md", "unique_id": "doc.yoda.platform_stg__currency_rates_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__currency_rates_day_of_currency_exchange": {"name": "platform_stg__currency_rates_day_of_currency_exchange", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.md", "original_file_path": "models/platform/staging/base/platform_stg__currency_rates/platform_stg__currency_rates.md", "unique_id": "doc.yoda.platform_stg__currency_rates_day_of_currency_exchange", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes": {"name": "platform_stg__custom_attributes", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__custom_attributes_attributable_id": {"name": "platform_stg__custom_attributes_attributable_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_attributable_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_attributable_type": {"name": "platform_stg__custom_attributes_attributable_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_attributable_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_boolean_value": {"name": "platform_stg__custom_attributes_boolean_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_boolean_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_created_at": {"name": "platform_stg__custom_attributes_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_id": {"name": "platform_stg__custom_attributes_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_key": {"name": "platform_stg__custom_attributes_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_namespace": {"name": "platform_stg__custom_attributes_namespace", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_namespace", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_partitioning_time": {"name": "platform_stg__custom_attributes_partitioning_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_partitioning_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_processing_time": {"name": "platform_stg__custom_attributes_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_string_value": {"name": "platform_stg__custom_attributes_string_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_string_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_ts_ms": {"name": "platform_stg__custom_attributes_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_updated_at": {"name": "platform_stg__custom_attributes_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_upsolver_schema_version": {"name": "platform_stg__custom_attributes_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__custom_attributes_value_type": {"name": "platform_stg__custom_attributes_value_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "original_file_path": "models/platform/staging/base/platform_stg__custom_attributes/platform_stg__custom_attributes.md", "unique_id": "doc.yoda.platform_stg__custom_attributes_value_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset": {"name": "platform_stg__customer_dataset", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset", "block_contents": "Shopper event data collected from product lines"}, "doc.yoda.platform_stg__customer_dataset_lists": {"name": "platform_stg__customer_dataset_lists", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_lists", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_loyaltyCampaignStatusChanged": {"name": "platform_stg__customer_dataset_loyaltyCampaignStatusChanged", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_loyaltyCampaignStatusChanged", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_loyaltyPointsChanged": {"name": "platform_stg__customer_dataset_loyaltyPointsChanged", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_loyaltyPointsChanged", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_loyaltyTierChanged": {"name": "platform_stg__customer_dataset_loyaltyTierChanged", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_loyaltyTierChanged", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_mergedWith": {"name": "platform_stg__customer_dataset_mergedWith", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_mergedWith", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_orderUpdated": {"name": "platform_stg__customer_dataset_orderUpdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_orderUpdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_profileId": {"name": "platform_stg__customer_dataset_profileId", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_profileId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_properties": {"name": "platform_stg__customer_dataset_properties", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_properties", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_reviewCreated": {"name": "platform_stg__customer_dataset_reviewCreated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_reviewCreated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_smsConverted": {"name": "platform_stg__customer_dataset_smsConverted", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_smsConverted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_smsEngaged": {"name": "platform_stg__customer_dataset_smsEngaged", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_smsEngaged", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_smsPartOfCampaign": {"name": "platform_stg__customer_dataset_smsPartOfCampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_smsPartOfCampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_smsSubscribed": {"name": "platform_stg__customer_dataset_smsSubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_smsSubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_smsUnsubscribed": {"name": "platform_stg__customer_dataset_smsUnsubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_smsUnsubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_storeId": {"name": "platform_stg__customer_dataset_storeId", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_storeId", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_systemProperties": {"name": "platform_stg__customer_dataset_systemProperties", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset/platform_stg__customer_dataset.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_systemProperties", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__customer_dataset_reduced": {"name": "platform_stg__customer_dataset_reduced", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__customer_dataset_reduced/platform_stg__customer_dataset_reduced.md", "original_file_path": "models/platform/staging/base/platform_stg__customer_dataset_reduced/platform_stg__customer_dataset_reduced.md", "unique_id": "doc.yoda.platform_stg__customer_dataset_reduced", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__dim_calendar": {"name": "platform_stg__dim_calendar", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar", "block_contents": "Contains all dates that any model can refer to"}, "doc.yoda.platform_stg__dim_calendar_date": {"name": "platform_stg__dim_calendar_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__dim_calendar_day": {"name": "platform_stg__dim_calendar_day", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__dim_calendar_day_name": {"name": "platform_stg__dim_calendar_day_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar_day_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__dim_calendar_holiday_flag": {"name": "platform_stg__dim_calendar_holiday_flag", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar_holiday_flag", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__dim_calendar_id": {"name": "platform_stg__dim_calendar_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__dim_calendar_month": {"name": "platform_stg__dim_calendar_month", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__dim_calendar_month_name": {"name": "platform_stg__dim_calendar_month_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar_month_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__dim_calendar_quarter": {"name": "platform_stg__dim_calendar_quarter", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar_quarter", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__dim_calendar_week": {"name": "platform_stg__dim_calendar_week", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar_week", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__dim_calendar_weekend_flag": {"name": "platform_stg__dim_calendar_weekend_flag", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar_weekend_flag", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__dim_calendar_year": {"name": "platform_stg__dim_calendar_year", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "original_file_path": "models/platform/staging/base/platform_stg__dim_calendar/platform_stg__dim_calendar.md", "unique_id": "doc.yoda.platform_stg__dim_calendar_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__base_features": {"name": "platform__base_features", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform__base_features", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__features_created_at": {"name": "platform_stg__features_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform_stg__features_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__features_default_user_enabled": {"name": "platform_stg__features_default_user_enabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform_stg__features_default_user_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__features_description": {"name": "platform_stg__features_description", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform_stg__features_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__features_feature_key": {"name": "platform_stg__features_feature_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform_stg__features_feature_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__features_id": {"name": "platform_stg__features_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform_stg__features_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__features_name": {"name": "platform_stg__features_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform_stg__features_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__features_new": {"name": "platform_stg__features_new", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform_stg__features_new", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__features_owner_type": {"name": "platform_stg__features_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform_stg__features_owner_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__features_processing_time": {"name": "platform_stg__features_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform_stg__features_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__features_ts_ms": {"name": "platform_stg__features_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform_stg__features_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__features_updated_at": {"name": "platform_stg__features_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__features/platform_stg__features.md", "original_file_path": "models/platform/staging/base/platform_stg__features/platform_stg__features.md", "unique_id": "doc.yoda.platform_stg__features_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__file_exported": {"name": "platform_stg__file_exported", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_accountid": {"name": "platform_stg__file_exported_accountid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_accountid", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_adminname": {"name": "platform_stg__file_exported_adminname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_adminname", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_adminusername": {"name": "platform_stg__file_exported_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_adminusername", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_anonymous_id": {"name": "platform_stg__file_exported_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_anonymous_id", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_appkey": {"name": "platform_stg__file_exported_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_appkey", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_auth0userid": {"name": "platform_stg__file_exported_auth0userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_auth0userid", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_billingproviders": {"name": "platform_stg__file_exported_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_billingproviders", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_channel": {"name": "platform_stg__file_exported_channel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_channel", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_chargeid": {"name": "platform_stg__file_exported_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_chargeid", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_chargeprice": {"name": "platform_stg__file_exported_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_chargeprice", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_createdat": {"name": "platform_stg__file_exported_createdat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_createdat", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_createdbyemail": {"name": "platform_stg__file_exported_createdbyemail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_createdbyemail", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_dategranularity": {"name": "platform_stg__file_exported_dategranularity", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_dategranularity", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_daysinvalidfacebooktoken": {"name": "platform_stg__file_exported_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_daysinvalidfacebooktoken", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_daysinvalidpinteresttoken": {"name": "platform_stg__file_exported_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_daysinvalidpinteresttoken", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_daysinvalidtwittertoken": {"name": "platform_stg__file_exported_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_daysinvalidtwittertoken", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_email": {"name": "platform_stg__file_exported_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_email", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_event_name": {"name": "platform_stg__file_exported_event_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_event_name", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_expirationperiodindays": {"name": "platform_stg__file_exported_expirationperiodindays", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_expirationperiodindays", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_exportcontext": {"name": "platform_stg__file_exported_exportcontext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_exportcontext", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_exportformat": {"name": "platform_stg__file_exported_exportformat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_exportformat", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_exportgroup": {"name": "platform_stg__file_exported_exportgroup", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_exportgroup", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_failreason": {"name": "platform_stg__file_exported_failreason", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_failreason", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_fileurl": {"name": "platform_stg__file_exported_fileurl", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_fileurl", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_frequency": {"name": "platform_stg__file_exported_frequency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_frequency", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_groupid": {"name": "platform_stg__file_exported_groupid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_groupid", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_is_desktop": {"name": "platform_stg__file_exported_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_is_desktop", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_is_duplicated_2": {"name": "platform_stg__file_exported_is_duplicated_2", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_is_duplicated_2", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_is_mobile": {"name": "platform_stg__file_exported_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_is_mobile", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_is_tablet": {"name": "platform_stg__file_exported_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_is_tablet", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isempty": {"name": "platform_stg__file_exported_isempty", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isempty", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isinternaluser": {"name": "platform_stg__file_exported_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isinternaluser", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isinvalidfacebooktoken": {"name": "platform_stg__file_exported_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isinvalidfacebooktoken", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isinvalidfacebooktokendate": {"name": "platform_stg__file_exported_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isinvalidfacebooktokendate", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isinvalidpinteresttoken": {"name": "platform_stg__file_exported_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isinvalidpinteresttoken", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isinvalidpinteresttokendate": {"name": "platform_stg__file_exported_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isinvalidpinteresttokendate", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isinvalidtwittertoken": {"name": "platform_stg__file_exported_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isinvalidtwittertoken", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isinvalidtwittertokendate": {"name": "platform_stg__file_exported_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isinvalidtwittertokendate", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isloyalty": {"name": "platform_stg__file_exported_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isloyalty", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isnewslettersubscribed": {"name": "platform_stg__file_exported_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isnewslettersubscribed", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isreviews": {"name": "platform_stg__file_exported_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isreviews", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isreviewswidgetinstalled": {"name": "platform_stg__file_exported_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isreviewswidgetinstalled", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isschedule": {"name": "platform_stg__file_exported_isschedule", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isschedule", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_issms": {"name": "platform_stg__file_exported_issms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_issms", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_issystemnotificationssubscribed": {"name": "platform_stg__file_exported_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_issystemnotificationssubscribed", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isuserscountlimitreached": {"name": "platform_stg__file_exported_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isuserscountlimitreached", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isusingpackagesservice": {"name": "platform_stg__file_exported_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isusingpackagesservice", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_isvugc": {"name": "platform_stg__file_exported_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_isvugc", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_lastconversionordertime": {"name": "platform_stg__file_exported_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_lastconversionordertime", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_library_name": {"name": "platform_stg__file_exported_library_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_library_name", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_locale": {"name": "platform_stg__file_exported_locale", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_locale", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_loyaltymerchantid": {"name": "platform_stg__file_exported_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_loyaltymerchantid", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_loyaltypackage": {"name": "platform_stg__file_exported_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_loyaltypackage", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_message_id": {"name": "platform_stg__file_exported_message_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_message_id", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_name": {"name": "platform_stg__file_exported_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_name", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_numofrows": {"name": "platform_stg__file_exported_numofrows", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_numofrows", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_orgid": {"name": "platform_stg__file_exported_orgid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_orgid", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_orgkey": {"name": "platform_stg__file_exported_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_orgkey", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_owner": {"name": "platform_stg__file_exported_owner", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_owner", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_package": {"name": "platform_stg__file_exported_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_package", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_packagecategories": {"name": "platform_stg__file_exported_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_packagecategories", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_packageextensions": {"name": "platform_stg__file_exported_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_packageextensions", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_page_path": {"name": "platform_stg__file_exported_page_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_page_path", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_page_referrer": {"name": "platform_stg__file_exported_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_page_referrer", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_page_title": {"name": "platform_stg__file_exported_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_page_title", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_page_url": {"name": "platform_stg__file_exported_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_page_url", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_partition_date": {"name": "platform_stg__file_exported_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_partition_date", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_path": {"name": "platform_stg__file_exported_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_path", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_pendingrrs": {"name": "platform_stg__file_exported_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_pendingrrs", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_phone": {"name": "platform_stg__file_exported_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_phone", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_planname": {"name": "platform_stg__file_exported_planname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_planname", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_platform": {"name": "platform_stg__file_exported_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_platform", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_platformplan": {"name": "platform_stg__file_exported_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_platformplan", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_processing_time": {"name": "platform_stg__file_exported_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_processing_time", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_product": {"name": "platform_stg__file_exported_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_product", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_recipientemail": {"name": "platform_stg__file_exported_recipientemail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_recipientemail", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_reportmonthday": {"name": "platform_stg__file_exported_reportmonthday", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_reportmonthday", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_reportname": {"name": "platform_stg__file_exported_reportname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_reportname", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_reporttimeframe": {"name": "platform_stg__file_exported_reporttimeframe", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_reporttimeframe", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_reporttype": {"name": "platform_stg__file_exported_reporttype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_reporttype", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_reportweekday": {"name": "platform_stg__file_exported_reportweekday", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_reportweekday", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_reviewspackage": {"name": "platform_stg__file_exported_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_reviewspackage", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_role": {"name": "platform_stg__file_exported_role", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_role", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_rrmonthlylimit": {"name": "platform_stg__file_exported_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_rrmonthlylimit", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_session_id": {"name": "platform_stg__file_exported_session_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_session_id", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_signupcountry": {"name": "platform_stg__file_exported_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_signupcountry", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_signupmonthlyorderscount": {"name": "platform_stg__file_exported_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_signupmonthlyorderscount", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_signupphone": {"name": "platform_stg__file_exported_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_signupphone", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_signuputmcampaign": {"name": "platform_stg__file_exported_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_signuputmcampaign", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_signuputmmedium": {"name": "platform_stg__file_exported_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_signuputmmedium", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_signuputmsource": {"name": "platform_stg__file_exported_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_signuputmsource", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_smspackage": {"name": "platform_stg__file_exported_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_smspackage", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_smsuserid": {"name": "platform_stg__file_exported_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_smsuserid", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_state": {"name": "platform_stg__file_exported_state", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_state", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_storecount": {"name": "platform_stg__file_exported_storecount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_storecount", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_storedomain": {"name": "platform_stg__file_exported_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_storedomain", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_storeid": {"name": "platform_stg__file_exported_storeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_storeid", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_storeplatformdomain": {"name": "platform_stg__file_exported_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_storeplatformdomain", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_subscriptionstate": {"name": "platform_stg__file_exported_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_subscriptionstate", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_timestamp": {"name": "platform_stg__file_exported_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_timestamp", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_title": {"name": "platform_stg__file_exported_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_title", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_totalrows": {"name": "platform_stg__file_exported_totalrows", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_totalrows", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_traits_email": {"name": "platform_stg__file_exported_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_traits_email", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_traits_name": {"name": "platform_stg__file_exported_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_traits_name", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_traits_plan": {"name": "platform_stg__file_exported_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_traits_plan", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_upsolver_schema_version": {"name": "platform_stg__file_exported_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_upsolver_schema_version", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_url": {"name": "platform_stg__file_exported_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_url", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_urldaystimeframe": {"name": "platform_stg__file_exported_urldaystimeframe", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_urldaystimeframe", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_user_id": {"name": "platform_stg__file_exported_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_user_id", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_useremail": {"name": "platform_stg__file_exported_useremail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_useremail", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_userid": {"name": "platform_stg__file_exported_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_userid", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_violated_event": {"name": "platform_stg__file_exported_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_violated_event", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_vugcpackage": {"name": "platform_stg__file_exported_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_vugcpackage", "block_contents": ""}, "doc.yoda.platform_stg__file_exported_website": {"name": "platform_stg__file_exported_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "original_file_path": "models/platform/staging/base/platform_stg__file_exported/platform_stg__file_exported.md", "unique_id": "doc.yoda.platform_stg__file_exported_website", "block_contents": ""}, "doc.yoda.platform_stg__fulfillments_created_at": {"name": "platform_stg__fulfillments_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__fulfillments_external_id": {"name": "platform_stg__fulfillments_external_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_external_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__fulfillments_fulfillment_at": {"name": "platform_stg__fulfillments_fulfillment_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_fulfillment_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__fulfillments_fulfillment_date": {"name": "platform_stg__fulfillments_fulfillment_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_fulfillment_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__fulfillments_fulfillment_status_type_id": {"name": "platform_stg__fulfillments_fulfillment_status_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_fulfillment_status_type_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__fulfillments_id": {"name": "platform_stg__fulfillments_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__fulfillments_order_id": {"name": "platform_stg__fulfillments_order_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_order_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__fulfillments_shipment_status_type_id": {"name": "platform_stg__fulfillments_shipment_status_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_shipment_status_type_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__fulfillments_tracking_company": {"name": "platform_stg__fulfillments_tracking_company", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_tracking_company", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__fulfillments_tracking_number": {"name": "platform_stg__fulfillments_tracking_number", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_tracking_number", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__fulfillments_tracking_url": {"name": "platform_stg__fulfillments_tracking_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_tracking_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__fulfillments_updated_at": {"name": "platform_stg__fulfillments_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "original_file_path": "models/platform/staging/base/platform_stg__fulfillments/platform_stg__fulfillments.md", "unique_id": "doc.yoda.platform_stg__fulfillments_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__groups": {"name": "platform_stg__groups", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__groups/platform_stg__groups.md", "original_file_path": "models/platform/staging/base/platform_stg__groups/platform_stg__groups.md", "unique_id": "doc.yoda.platform_stg__groups", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__groups_created_at": {"name": "platform_stg__groups_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__groups/platform_stg__groups.md", "original_file_path": "models/platform/staging/base/platform_stg__groups/platform_stg__groups.md", "unique_id": "doc.yoda.platform_stg__groups_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__groups_id": {"name": "platform_stg__groups_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__groups/platform_stg__groups.md", "original_file_path": "models/platform/staging/base/platform_stg__groups/platform_stg__groups.md", "unique_id": "doc.yoda.platform_stg__groups_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__groups_name": {"name": "platform_stg__groups_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__groups/platform_stg__groups.md", "original_file_path": "models/platform/staging/base/platform_stg__groups/platform_stg__groups.md", "unique_id": "doc.yoda.platform_stg__groups_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__groups_processing_time": {"name": "platform_stg__groups_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__groups/platform_stg__groups.md", "original_file_path": "models/platform/staging/base/platform_stg__groups/platform_stg__groups.md", "unique_id": "doc.yoda.platform_stg__groups_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__groups_store_id": {"name": "platform_stg__groups_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__groups/platform_stg__groups.md", "original_file_path": "models/platform/staging/base/platform_stg__groups/platform_stg__groups.md", "unique_id": "doc.yoda.platform_stg__groups_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__groups_ts_ms": {"name": "platform_stg__groups_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__groups/platform_stg__groups.md", "original_file_path": "models/platform/staging/base/platform_stg__groups/platform_stg__groups.md", "unique_id": "doc.yoda.platform_stg__groups_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__groups_updated_at": {"name": "platform_stg__groups_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__groups/platform_stg__groups.md", "original_file_path": "models/platform/staging/base/platform_stg__groups/platform_stg__groups.md", "unique_id": "doc.yoda.platform_stg__groups_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__groups_upsolver_schema_version": {"name": "platform_stg__groups_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__groups/platform_stg__groups.md", "original_file_path": "models/platform/staging/base/platform_stg__groups/platform_stg__groups.md", "unique_id": "doc.yoda.platform_stg__groups_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__gtins": {"name": "platform_stg__gtins", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__gtins_created_at": {"name": "platform_stg__gtins_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__gtins_declared_type": {"name": "platform_stg__gtins_declared_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins_declared_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__gtins_detected_type": {"name": "platform_stg__gtins_detected_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins_detected_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__gtins_gtinable_id": {"name": "platform_stg__gtins_gtinable_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins_gtinable_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__gtins_gtinable_type": {"name": "platform_stg__gtins_gtinable_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins_gtinable_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__gtins_id": {"name": "platform_stg__gtins_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__gtins_processing_time": {"name": "platform_stg__gtins_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__gtins_ts_ms": {"name": "platform_stg__gtins_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__gtins_updated_at": {"name": "platform_stg__gtins_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__gtins_upsolver_schema_version": {"name": "platform_stg__gtins_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__gtins_value": {"name": "platform_stg__gtins_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "original_file_path": "models/platform/staging/base/platform_stg__gtins/platform_stg__gtins.md", "unique_id": "doc.yoda.platform_stg__gtins_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached": {"name": "platform_stg__limit_reached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__limit_reached_accountid": {"name": "platform_stg__limit_reached_accountid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_actualcount": {"name": "platform_stg__limit_reached_actualcount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_actualcount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_adminname": {"name": "platform_stg__limit_reached_adminname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_adminusername": {"name": "platform_stg__limit_reached_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_anonymous_id": {"name": "platform_stg__limit_reached_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_appkey": {"name": "platform_stg__limit_reached_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_auth0userid": {"name": "platform_stg__limit_reached_auth0userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_auth0userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_billingproviders": {"name": "platform_stg__limit_reached_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_billingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_cap": {"name": "platform_stg__limit_reached_cap", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_cap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_channel": {"name": "platform_stg__limit_reached_channel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_chargeid": {"name": "platform_stg__limit_reached_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_chargeprice": {"name": "platform_stg__limit_reached_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_createdat": {"name": "platform_stg__limit_reached_createdat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_daysinvalidfacebooktoken": {"name": "platform_stg__limit_reached_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_daysinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_daysinvalidpinteresttoken": {"name": "platform_stg__limit_reached_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_daysinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_daysinvalidtwittertoken": {"name": "platform_stg__limit_reached_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_daysinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_email": {"name": "platform_stg__limit_reached_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_event_name": {"name": "platform_stg__limit_reached_event_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_gap": {"name": "platform_stg__limit_reached_gap", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_gap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_groupid": {"name": "platform_stg__limit_reached_groupid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_is_desktop": {"name": "platform_stg__limit_reached_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_is_mobile": {"name": "platform_stg__limit_reached_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_is_tablet": {"name": "platform_stg__limit_reached_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isht": {"name": "platform_stg__limit_reached_isht", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isht", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isinternaluser": {"name": "platform_stg__limit_reached_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isinternaluser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isinvalidfacebooktoken": {"name": "platform_stg__limit_reached_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isinvalidfacebooktokendate": {"name": "platform_stg__limit_reached_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isinvalidfacebooktokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isinvalidpinteresttoken": {"name": "platform_stg__limit_reached_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isinvalidpinteresttokendate": {"name": "platform_stg__limit_reached_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isinvalidpinteresttokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isinvalidtwittertoken": {"name": "platform_stg__limit_reached_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isinvalidtwittertokendate": {"name": "platform_stg__limit_reached_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isinvalidtwittertokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isloyalty": {"name": "platform_stg__limit_reached_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isnewslettersubscribed": {"name": "platform_stg__limit_reached_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isreviews": {"name": "platform_stg__limit_reached_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isreviewswidgetinstalled": {"name": "platform_stg__limit_reached_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_issms": {"name": "platform_stg__limit_reached_issms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_issystemnotificationssubscribed": {"name": "platform_stg__limit_reached_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isuserscountlimitreached": {"name": "platform_stg__limit_reached_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isusingpackagesservice": {"name": "platform_stg__limit_reached_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_isvugc": {"name": "platform_stg__limit_reached_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_lastconversionordertime": {"name": "platform_stg__limit_reached_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_library_name": {"name": "platform_stg__limit_reached_library_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_limittype": {"name": "platform_stg__limit_reached_limittype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_limittype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_locale": {"name": "platform_stg__limit_reached_locale", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_loyaltymerchantid": {"name": "platform_stg__limit_reached_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_loyaltypackage": {"name": "platform_stg__limit_reached_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_message_id": {"name": "platform_stg__limit_reached_message_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_name": {"name": "platform_stg__limit_reached_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_orgid": {"name": "platform_stg__limit_reached_orgid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_orgkey": {"name": "platform_stg__limit_reached_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_package": {"name": "platform_stg__limit_reached_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_packagecategories": {"name": "platform_stg__limit_reached_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_packageextensions": {"name": "platform_stg__limit_reached_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_packageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_page_path": {"name": "platform_stg__limit_reached_page_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_page_referrer": {"name": "platform_stg__limit_reached_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_page_title": {"name": "platform_stg__limit_reached_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_page_url": {"name": "platform_stg__limit_reached_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_partition_date": {"name": "platform_stg__limit_reached_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_path": {"name": "platform_stg__limit_reached_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_pctreached": {"name": "platform_stg__limit_reached_pctreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_pctreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_pendingrrs": {"name": "platform_stg__limit_reached_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_phone": {"name": "platform_stg__limit_reached_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_planname": {"name": "platform_stg__limit_reached_planname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_platform": {"name": "platform_stg__limit_reached_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_platformplan": {"name": "platform_stg__limit_reached_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_processing_time": {"name": "platform_stg__limit_reached_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_product": {"name": "platform_stg__limit_reached_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_reviewspackage": {"name": "platform_stg__limit_reached_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_role": {"name": "platform_stg__limit_reached_role", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_rrmonthlylimit": {"name": "platform_stg__limit_reached_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_signupcountry": {"name": "platform_stg__limit_reached_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_signupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_signupmonthlyorderscount": {"name": "platform_stg__limit_reached_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_signupmonthlyorderscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_signupphone": {"name": "platform_stg__limit_reached_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_signupphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_signuputmcampaign": {"name": "platform_stg__limit_reached_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_signuputmmedium": {"name": "platform_stg__limit_reached_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_signuputmsource": {"name": "platform_stg__limit_reached_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_smspackage": {"name": "platform_stg__limit_reached_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_smsuserid": {"name": "platform_stg__limit_reached_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_storecount": {"name": "platform_stg__limit_reached_storecount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_storedomain": {"name": "platform_stg__limit_reached_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_storeid": {"name": "platform_stg__limit_reached_storeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_storeplatformdomain": {"name": "platform_stg__limit_reached_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_subscriptionstate": {"name": "platform_stg__limit_reached_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_subscriptionstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_timestamp": {"name": "platform_stg__limit_reached_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_title": {"name": "platform_stg__limit_reached_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_traits_email": {"name": "platform_stg__limit_reached_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_traits_name": {"name": "platform_stg__limit_reached_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_traits_plan": {"name": "platform_stg__limit_reached_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_upsolver_schema_version": {"name": "platform_stg__limit_reached_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_url": {"name": "platform_stg__limit_reached_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_user_id": {"name": "platform_stg__limit_reached_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_useremail": {"name": "platform_stg__limit_reached_useremail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_useremail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_userid": {"name": "platform_stg__limit_reached_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_violated_event": {"name": "platform_stg__limit_reached_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_vugcpackage": {"name": "platform_stg__limit_reached_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_website": {"name": "platform_stg__limit_reached_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__limit_reached_yotpoip": {"name": "platform_stg__limit_reached_yotpoip", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "original_file_path": "models/platform/staging/base/platform_stg__limit_reached/platform_stg__limit_reached.md", "unique_id": "doc.yoda.platform_stg__limit_reached_yotpoip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding": {"name": "platform_stg__onboarding", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__onboarding_accountid": {"name": "platform_stg__onboarding_accountid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_accountselectedpoints": {"name": "platform_stg__onboarding_accountselectedpoints", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_accountselectedpoints", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_adminname": {"name": "platform_stg__onboarding_adminname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_adminusername": {"name": "platform_stg__onboarding_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_accountid": {"name": "platform_stg__onboarding_analytics_data_accountid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_adminname": {"name": "platform_stg__onboarding_analytics_data_adminname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_appkey": {"name": "platform_stg__onboarding_analytics_data_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_billingprovider": {"name": "platform_stg__onboarding_analytics_data_billingprovider", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_billingprovider", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_billingproviders": {"name": "platform_stg__onboarding_analytics_data_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_billingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_chargeid": {"name": "platform_stg__onboarding_analytics_data_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_chargeprice": {"name": "platform_stg__onboarding_analytics_data_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_chargifybalance": {"name": "platform_stg__onboarding_analytics_data_chargifybalance", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_chargifybalance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_chargifyrevenue": {"name": "platform_stg__onboarding_analytics_data_chargifyrevenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_chargifyrevenue", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_createdat": {"name": "platform_stg__onboarding_analytics_data_createdat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_creditcardlast4digits": {"name": "platform_stg__onboarding_analytics_data_creditcardlast4digits", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_creditcardlast4digits", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_creditcardtype": {"name": "platform_stg__onboarding_analytics_data_creditcardtype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_creditcardtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_daysindunning": {"name": "platform_stg__onboarding_analytics_data_daysindunning", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_daysindunning", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_daysinvalidfacebooktoken": {"name": "platform_stg__onboarding_analytics_data_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_daysinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_daysinvalidpinteresttoken": {"name": "platform_stg__onboarding_analytics_data_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_daysinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_daysinvalidtwittertoken": {"name": "platform_stg__onboarding_analytics_data_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_daysinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_daystorenewal": {"name": "platform_stg__onboarding_analytics_data_daystorenewal", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_daystorenewal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_email": {"name": "platform_stg__onboarding_analytics_data_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_groupid": {"name": "platform_stg__onboarding_analytics_data_groupid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_intercomuserhash": {"name": "platform_stg__onboarding_analytics_data_intercomuserhash", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_intercomuserhash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isautopublishenabled": {"name": "platform_stg__onboarding_analytics_data_isautopublishenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isautopublishenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isenabledcoupons": {"name": "platform_stg__onboarding_analytics_data_isenabledcoupons", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isenabledcoupons", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isenabledcustomreviews": {"name": "platform_stg__onboarding_analytics_data_isenabledcustomreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isenabledcustomreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isenabledgsr": {"name": "platform_stg__onboarding_analytics_data_isenabledgsr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isenabledgsr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isenabledmap": {"name": "platform_stg__onboarding_analytics_data_isenabledmap", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isenabledmap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isenabledpla": {"name": "platform_stg__onboarding_analytics_data_isenabledpla", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isenabledpla", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isenabledpromotedproductsemail": {"name": "platform_stg__onboarding_analytics_data_isenabledpromotedproductsemail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isenabledpromotedproductsemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isenabledpromotedproductswidget": {"name": "platform_stg__onboarding_analytics_data_isenabledpromotedproductswidget", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isenabledpromotedproductswidget", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isenabledqna": {"name": "platform_stg__onboarding_analytics_data_isenabledqna", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isenabledqna", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isenabledrichsnippets": {"name": "platform_stg__onboarding_analytics_data_isenabledrichsnippets", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isenabledrichsnippets", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishasbadge": {"name": "platform_stg__onboarding_analytics_data_ishasbadge", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishasbadge", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishascomments": {"name": "platform_stg__onboarding_analytics_data_ishascomments", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishascomments", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishasconverttositereview": {"name": "platform_stg__onboarding_analytics_data_ishasconverttositereview", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishasconverttositereview", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishascoupons": {"name": "platform_stg__onboarding_analytics_data_ishascoupons", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishascoupons", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishascsseditor": {"name": "platform_stg__onboarding_analytics_data_ishascsseditor", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishascsseditor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishascustomreviews": {"name": "platform_stg__onboarding_analytics_data_ishascustomreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishascustomreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishasdedicatedpage": {"name": "platform_stg__onboarding_analytics_data_ishasdedicatedpage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishasdedicatedpage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishasgsr": {"name": "platform_stg__onboarding_analytics_data_ishasgsr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishasgsr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishasnewmainwidgetlayout": {"name": "platform_stg__onboarding_analytics_data_ishasnewmainwidgetlayout", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishasnewmainwidgetlayout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishaspla": {"name": "platform_stg__onboarding_analytics_data_ishaspla", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishaspla", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishaspromotedproductsemail": {"name": "platform_stg__onboarding_analytics_data_ishaspromotedproductsemail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishaspromotedproductsemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishaspromotedproductswidget": {"name": "platform_stg__onboarding_analytics_data_ishaspromotedproductswidget", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishaspromotedproductswidget", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishasqna": {"name": "platform_stg__onboarding_analytics_data_ishasqna", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishasqna", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishasreviewscarousel": {"name": "platform_stg__onboarding_analytics_data_ishasreviewscarousel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishasreviewscarousel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishasreviewstab": {"name": "platform_stg__onboarding_analytics_data_ishasreviewstab", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishasreviewstab", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishasrichsnippets": {"name": "platform_stg__onboarding_analytics_data_ishasrichsnippets", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishasrichsnippets", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishassentmai": {"name": "platform_stg__onboarding_analytics_data_ishassentmai", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishassentmai", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishassentmap": {"name": "platform_stg__onboarding_analytics_data_ishassentmap", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishassentmap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishassentmas": {"name": "platform_stg__onboarding_analytics_data_ishassentmas", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishassentmas", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishassentsitereminder": {"name": "platform_stg__onboarding_analytics_data_ishassentsitereminder", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishassentsitereminder", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishassenttpr": {"name": "platform_stg__onboarding_analytics_data_ishassenttpr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishassenttpr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishassenttsr": {"name": "platform_stg__onboarding_analytics_data_ishassenttsr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishassenttsr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishasshoppableinstagram": {"name": "platform_stg__onboarding_analytics_data_ishasshoppableinstagram", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishasshoppableinstagram", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishassocialpush": {"name": "platform_stg__onboarding_analytics_data_ishassocialpush", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishassocialpush", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishasstarrating": {"name": "platform_stg__onboarding_analytics_data_ishasstarrating", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishasstarrating", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishastpr": {"name": "platform_stg__onboarding_analytics_data_ishastpr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishastpr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ishastsr": {"name": "platform_stg__onboarding_analytics_data_ishastsr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ishastsr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidfacebooktoken": {"name": "platform_stg__onboarding_analytics_data_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidfacebooktokendate": {"name": "platform_stg__onboarding_analytics_data_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidfacebooktokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidpinteresttoken": {"name": "platform_stg__onboarding_analytics_data_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidpinteresttokendate": {"name": "platform_stg__onboarding_analytics_data_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidpinteresttokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidtwittertoken": {"name": "platform_stg__onboarding_analytics_data_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidtwittertokendate": {"name": "platform_stg__onboarding_analytics_data_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isinvalidtwittertokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_ismapcustomfieldsenabled": {"name": "platform_stg__onboarding_analytics_data_ismapcustomfieldsenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_ismapcustomfieldsenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isnewslettersubscribed": {"name": "platform_stg__onboarding_analytics_data_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isreceivesentimentnotification": {"name": "platform_stg__onboarding_analytics_data_isreceivesentimentnotification", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isreceivesentimentnotification", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isreviewswidgetinstalled": {"name": "platform_stg__onboarding_analytics_data_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_issystemnotificationssubscribed": {"name": "platform_stg__onboarding_analytics_data_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isuserscountlimitreached": {"name": "platform_stg__onboarding_analytics_data_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_isusingpackagesservice": {"name": "platform_stg__onboarding_analytics_data_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_lastconversionordertime": {"name": "platform_stg__onboarding_analytics_data_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_name": {"name": "platform_stg__onboarding_analytics_data_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_nameoncreditcard": {"name": "platform_stg__onboarding_analytics_data_nameoncreditcard", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_nameoncreditcard", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_nextchargedate": {"name": "platform_stg__onboarding_analytics_data_nextchargedate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_nextchargedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_package": {"name": "platform_stg__onboarding_analytics_data_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_packagecategories": {"name": "platform_stg__onboarding_analytics_data_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_packageextensions": {"name": "platform_stg__onboarding_analytics_data_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_packageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_paysvia": {"name": "platform_stg__onboarding_analytics_data_paysvia", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_paysvia", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_pendingrrs": {"name": "platform_stg__onboarding_analytics_data_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_phone": {"name": "platform_stg__onboarding_analytics_data_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_pixelversion": {"name": "platform_stg__onboarding_analytics_data_pixelversion", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_pixelversion", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_planname": {"name": "platform_stg__onboarding_analytics_data_planname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_platform": {"name": "platform_stg__onboarding_analytics_data_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_recurringpaymentinterval": {"name": "platform_stg__onboarding_analytics_data_recurringpaymentinterval", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_recurringpaymentinterval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_renewaldate": {"name": "platform_stg__onboarding_analytics_data_renewaldate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_renewaldate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_role": {"name": "platform_stg__onboarding_analytics_data_role", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_rrmonthlylimit": {"name": "platform_stg__onboarding_analytics_data_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_rrssentinbillingcycle": {"name": "platform_stg__onboarding_analytics_data_rrssentinbillingcycle", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_rrssentinbillingcycle", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_signupcountry": {"name": "platform_stg__onboarding_analytics_data_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_signupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_signupmonthlyorderscount": {"name": "platform_stg__onboarding_analytics_data_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_signupmonthlyorderscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_signupphone": {"name": "platform_stg__onboarding_analytics_data_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_signupphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_signuputmcampaign": {"name": "platform_stg__onboarding_analytics_data_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_signuputmmedium": {"name": "platform_stg__onboarding_analytics_data_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_signuputmsource": {"name": "platform_stg__onboarding_analytics_data_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_storecount": {"name": "platform_stg__onboarding_analytics_data_storecount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_storedomain": {"name": "platform_stg__onboarding_analytics_data_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_subscriptionstate": {"name": "platform_stg__onboarding_analytics_data_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_subscriptionstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_traits_email": {"name": "platform_stg__onboarding_analytics_data_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_traits_name": {"name": "platform_stg__onboarding_analytics_data_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_traits_plan": {"name": "platform_stg__onboarding_analytics_data_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_userid": {"name": "platform_stg__onboarding_analytics_data_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_website": {"name": "platform_stg__onboarding_analytics_data_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_yotpoip": {"name": "platform_stg__onboarding_analytics_data_yotpoip", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_yotpoip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_yotpoproductscore": {"name": "platform_stg__onboarding_analytics_data_yotpoproductscore", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_yotpoproductscore", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_analytics_data_yotpoproductscorev2": {"name": "platform_stg__onboarding_analytics_data_yotpoproductscorev2", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_analytics_data_yotpoproductscorev2", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_anonymous_id": {"name": "platform_stg__onboarding_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_appkey": {"name": "platform_stg__onboarding_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_billingproviders": {"name": "platform_stg__onboarding_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_billingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_birthdayselectedpoints": {"name": "platform_stg__onboarding_birthdayselectedpoints", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_birthdayselectedpoints", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_category": {"name": "platform_stg__onboarding_category", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_channel": {"name": "platform_stg__onboarding_channel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_chargeid": {"name": "platform_stg__onboarding_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_chargeprice": {"name": "platform_stg__onboarding_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_createdat": {"name": "platform_stg__onboarding_createdat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_ctaname": {"name": "platform_stg__onboarding_ctaname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_ctaname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_ctatext": {"name": "platform_stg__onboarding_ctatext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_ctatext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_customerpoints": {"name": "platform_stg__onboarding_customerpoints", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_customerpoints", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_daysinvalidfacebooktoken": {"name": "platform_stg__onboarding_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_daysinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_daysinvalidpinteresttoken": {"name": "platform_stg__onboarding_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_daysinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_daysinvalidtwittertoken": {"name": "platform_stg__onboarding_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_daysinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_email": {"name": "platform_stg__onboarding_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_event_name": {"name": "platform_stg__onboarding_event_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_frienddiscount": {"name": "platform_stg__onboarding_frienddiscount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_frienddiscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_groupid": {"name": "platform_stg__onboarding_groupid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_is_desktop": {"name": "platform_stg__onboarding_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_is_mobile": {"name": "platform_stg__onboarding_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_is_tablet": {"name": "platform_stg__onboarding_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isautopublishenabled": {"name": "platform_stg__onboarding_isautopublishenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isautopublishenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isbodyupdated": {"name": "platform_stg__onboarding_isbodyupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isbodyupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_iscopycode": {"name": "platform_stg__onboarding_iscopycode", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_iscopycode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_iscustomertabclicked": {"name": "platform_stg__onboarding_iscustomertabclicked", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_iscustomertabclicked", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isenabledmap": {"name": "platform_stg__onboarding_isenabledmap", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isenabledmap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isfriendtabclicked": {"name": "platform_stg__onboarding_isfriendtabclicked", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isfriendtabclicked", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isinvalidfacebooktoken": {"name": "platform_stg__onboarding_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isinvalidfacebooktokendate": {"name": "platform_stg__onboarding_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isinvalidfacebooktokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isinvalidpinteresttoken": {"name": "platform_stg__onboarding_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isinvalidpinteresttokendate": {"name": "platform_stg__onboarding_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isinvalidpinteresttokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isinvalidtwittertoken": {"name": "platform_stg__onboarding_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isinvalidtwittertokendate": {"name": "platform_stg__onboarding_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isinvalidtwittertokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isloyalty": {"name": "platform_stg__onboarding_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isnewslettersubscribed": {"name": "platform_stg__onboarding_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isprimarycolorupdated": {"name": "platform_stg__onboarding_isprimarycolorupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isprimarycolorupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_ispullpastordersenabled": {"name": "platform_stg__onboarding_ispullpastordersenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_ispullpastordersenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isreferralsselected": {"name": "platform_stg__onboarding_isreferralsselected", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isreferralsselected", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isreviews": {"name": "platform_stg__onboarding_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isreviewswidgetinstalled": {"name": "platform_stg__onboarding_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_issecondarycolorupdated": {"name": "platform_stg__onboarding_issecondarycolorupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_issecondarycolorupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_issendcode": {"name": "platform_stg__onboarding_issendcode", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_issendcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_issignatureupdated": {"name": "platform_stg__onboarding_issignatureupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_issignatureupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_issms": {"name": "platform_stg__onboarding_issms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isstarscolorupdated": {"name": "platform_stg__onboarding_isstarscolorupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isstarscolorupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_issubjectupdated": {"name": "platform_stg__onboarding_issubjectupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_issubjectupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_issystemnotificationssubscribed": {"name": "platform_stg__onboarding_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_istabpositionupdated": {"name": "platform_stg__onboarding_istabpositionupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_istabpositionupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isuserscountlimitreached": {"name": "platform_stg__onboarding_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isusingpackagesservice": {"name": "platform_stg__onboarding_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_isvugc": {"name": "platform_stg__onboarding_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_iswidgetfontupdated": {"name": "platform_stg__onboarding_iswidgetfontupdated", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_iswidgetfontupdated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_lastconversionordertime": {"name": "platform_stg__onboarding_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_library_name": {"name": "platform_stg__onboarding_library_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_locale": {"name": "platform_stg__onboarding_locale", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_loyaltymerchantid": {"name": "platform_stg__onboarding_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_loyaltypackage": {"name": "platform_stg__onboarding_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_message_id": {"name": "platform_stg__onboarding_message_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_name": {"name": "platform_stg__onboarding_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_numberorders": {"name": "platform_stg__onboarding_numberorders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_numberorders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_numofpoints": {"name": "platform_stg__onboarding_numofpoints", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_numofpoints", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_orgid": {"name": "platform_stg__onboarding_orgid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_orgkey": {"name": "platform_stg__onboarding_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_os20": {"name": "platform_stg__onboarding_os20", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_os20", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_package": {"name": "platform_stg__onboarding_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_packagecategories": {"name": "platform_stg__onboarding_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_packageextensions": {"name": "platform_stg__onboarding_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_packageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_page_path": {"name": "platform_stg__onboarding_page_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_page_referrer": {"name": "platform_stg__onboarding_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_page_title": {"name": "platform_stg__onboarding_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_page_url": {"name": "platform_stg__onboarding_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_pagecategory": {"name": "platform_stg__onboarding_pagecategory", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_pagecategory", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_partition_date": {"name": "platform_stg__onboarding_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_path": {"name": "platform_stg__onboarding_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_pendingrrs": {"name": "platform_stg__onboarding_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_phase": {"name": "platform_stg__onboarding_phase", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_phase", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_phasename": {"name": "platform_stg__onboarding_phasename", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_phasename", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_phone": {"name": "platform_stg__onboarding_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_planname": {"name": "platform_stg__onboarding_planname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_platform": {"name": "platform_stg__onboarding_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_platformplan": {"name": "platform_stg__onboarding_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_processing_time": {"name": "platform_stg__onboarding_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_purchaseselectedpoints": {"name": "platform_stg__onboarding_purchaseselectedpoints", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_purchaseselectedpoints", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_reviewspackage": {"name": "platform_stg__onboarding_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_role": {"name": "platform_stg__onboarding_role", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_rrmonthlylimit": {"name": "platform_stg__onboarding_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_signupcountry": {"name": "platform_stg__onboarding_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_signupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_signupmonthlyorderscount": {"name": "platform_stg__onboarding_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_signupmonthlyorderscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_signupphone": {"name": "platform_stg__onboarding_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_signupphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_signuputmcampaign": {"name": "platform_stg__onboarding_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_signuputmmedium": {"name": "platform_stg__onboarding_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_signuputmsource": {"name": "platform_stg__onboarding_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_smspackage": {"name": "platform_stg__onboarding_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_smsuserid": {"name": "platform_stg__onboarding_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_status": {"name": "platform_stg__onboarding_status", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_storecount": {"name": "platform_stg__onboarding_storecount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_storedomain": {"name": "platform_stg__onboarding_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_storeid": {"name": "platform_stg__onboarding_storeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_storeplatformdomain": {"name": "platform_stg__onboarding_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_subscriptionstate": {"name": "platform_stg__onboarding_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_subscriptionstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_timestamp": {"name": "platform_stg__onboarding_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_title": {"name": "platform_stg__onboarding_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_traits_email": {"name": "platform_stg__onboarding_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_traits_name": {"name": "platform_stg__onboarding_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_traits_plan": {"name": "platform_stg__onboarding_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_upsolver_schema_version": {"name": "platform_stg__onboarding_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_url": {"name": "platform_stg__onboarding_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_user_id": {"name": "platform_stg__onboarding_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_userid": {"name": "platform_stg__onboarding_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_value1": {"name": "platform_stg__onboarding_value1", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_value1", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_value2": {"name": "platform_stg__onboarding_value2", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_value2", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_value3": {"name": "platform_stg__onboarding_value3", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_value3", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_violated_event": {"name": "platform_stg__onboarding_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_vugcpackage": {"name": "platform_stg__onboarding_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_website": {"name": "platform_stg__onboarding_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onboarding_yotpoip": {"name": "platform_stg__onboarding_yotpoip", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "original_file_path": "models/platform/staging/base/platform_stg__onboarding/platform_stg__onboarding.md", "unique_id": "doc.yoda.platform_stg__onboarding_yotpoip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__base_onsite_v2": {"name": "platform__base_onsite_v2", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform__base_onsite_v2", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__onsite_v2_br_colordepth": {"name": "platform_stg__onsite_v2_br_colordepth", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_colordepth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_cookies": {"name": "platform_stg__onsite_v2_br_cookies", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_cookies", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_family": {"name": "platform_stg__onsite_v2_br_family", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_features_director": {"name": "platform_stg__onsite_v2_br_features_director", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_features_director", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_features_flash": {"name": "platform_stg__onsite_v2_br_features_flash", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_features_flash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_features_gears": {"name": "platform_stg__onsite_v2_br_features_gears", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_features_gears", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_features_java": {"name": "platform_stg__onsite_v2_br_features_java", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_features_java", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_features_pdf": {"name": "platform_stg__onsite_v2_br_features_pdf", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_features_pdf", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_features_quicktime": {"name": "platform_stg__onsite_v2_br_features_quicktime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_features_quicktime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_features_realplayer": {"name": "platform_stg__onsite_v2_br_features_realplayer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_features_realplayer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_features_silverlight": {"name": "platform_stg__onsite_v2_br_features_silverlight", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_features_silverlight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_features_windowsmedia": {"name": "platform_stg__onsite_v2_br_features_windowsmedia", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_features_windowsmedia", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_lang": {"name": "platform_stg__onsite_v2_br_lang", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_lang", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_major": {"name": "platform_stg__onsite_v2_br_major", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_minor": {"name": "platform_stg__onsite_v2_br_minor", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_viewheight": {"name": "platform_stg__onsite_v2_br_viewheight", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_viewheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_br_viewwidth": {"name": "platform_stg__onsite_v2_br_viewwidth", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_br_viewwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_collector_day": {"name": "platform_stg__onsite_v2_collector_day", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_collector_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_collector_epoch": {"name": "platform_stg__onsite_v2_collector_epoch", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_collector_epoch", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_collector_month": {"name": "platform_stg__onsite_v2_collector_month", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_collector_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_collector_tstamp": {"name": "platform_stg__onsite_v2_collector_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_collector_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_collector_year": {"name": "platform_stg__onsite_v2_collector_year", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_collector_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_context": {"name": "platform_stg__onsite_v2_context", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_context", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_device_family": {"name": "platform_stg__onsite_v2_device_family", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_device_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_doc_charset": {"name": "platform_stg__onsite_v2_doc_charset", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_doc_charset", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_doc_height": {"name": "platform_stg__onsite_v2_doc_height", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_doc_height", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_doc_width": {"name": "platform_stg__onsite_v2_doc_width", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_doc_width", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_domain_sessionidx": {"name": "platform_stg__onsite_v2_domain_sessionidx", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_domain_sessionidx", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_domain_userid": {"name": "platform_stg__onsite_v2_domain_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_domain_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_dvce_screenheight": {"name": "platform_stg__onsite_v2_dvce_screenheight", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_dvce_screenheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_dvce_screenwidth": {"name": "platform_stg__onsite_v2_dvce_screenwidth", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_dvce_screenwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_dvce_tstamp": {"name": "platform_stg__onsite_v2_dvce_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_dvce_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_event": {"name": "platform_stg__onsite_v2_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_event_id": {"name": "platform_stg__onsite_v2_event_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_event_vendor": {"name": "platform_stg__onsite_v2_event_vendor", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_event_vendor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_geo_city": {"name": "platform_stg__onsite_v2_geo_city", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_geo_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_geo_country": {"name": "platform_stg__onsite_v2_geo_country", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_geo_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_geo_latitude": {"name": "platform_stg__onsite_v2_geo_latitude", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_geo_latitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_geo_longitude": {"name": "platform_stg__onsite_v2_geo_longitude", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_geo_longitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_geo_region": {"name": "platform_stg__onsite_v2_geo_region", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_geo_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_geo_zipcode": {"name": "platform_stg__onsite_v2_geo_zipcode", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_geo_zipcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_hour": {"name": "platform_stg__onsite_v2_hour", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_hour", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_mkt_campaign": {"name": "platform_stg__onsite_v2_mkt_campaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_mkt_campaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_mkt_content": {"name": "platform_stg__onsite_v2_mkt_content", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_mkt_content", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_mkt_medium": {"name": "platform_stg__onsite_v2_mkt_medium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_mkt_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_mkt_source": {"name": "platform_stg__onsite_v2_mkt_source", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_mkt_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_mkt_term": {"name": "platform_stg__onsite_v2_mkt_term", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_mkt_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_os_family": {"name": "platform_stg__onsite_v2_os_family", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_os_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_os_major": {"name": "platform_stg__onsite_v2_os_major", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_os_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_os_minor": {"name": "platform_stg__onsite_v2_os_minor", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_os_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_os_timezone": {"name": "platform_stg__onsite_v2_os_timezone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_os_timezone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_page_referrer": {"name": "platform_stg__onsite_v2_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_page_title": {"name": "platform_stg__onsite_v2_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_page_url": {"name": "platform_stg__onsite_v2_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_page_urlfragment": {"name": "platform_stg__onsite_v2_page_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_page_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_page_urlhost": {"name": "platform_stg__onsite_v2_page_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_page_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_page_urlpath": {"name": "platform_stg__onsite_v2_page_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_page_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_page_urlport": {"name": "platform_stg__onsite_v2_page_urlport", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_page_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_page_urlquery": {"name": "platform_stg__onsite_v2_page_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_page_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_page_urlscheme": {"name": "platform_stg__onsite_v2_page_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_page_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_partition_date": {"name": "platform_stg__onsite_v2_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_platform": {"name": "platform_stg__onsite_v2_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_pp_xoffset_max": {"name": "platform_stg__onsite_v2_pp_xoffset_max", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_pp_xoffset_max", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_pp_xoffset_min": {"name": "platform_stg__onsite_v2_pp_xoffset_min", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_pp_xoffset_min", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_pp_yoffset_max": {"name": "platform_stg__onsite_v2_pp_yoffset_max", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_pp_yoffset_max", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_pp_yoffset_min": {"name": "platform_stg__onsite_v2_pp_yoffset_min", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_pp_yoffset_min", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_processing_time": {"name": "platform_stg__onsite_v2_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_refr_medium": {"name": "platform_stg__onsite_v2_refr_medium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_refr_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_refr_source": {"name": "platform_stg__onsite_v2_refr_source", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_refr_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_refr_term": {"name": "platform_stg__onsite_v2_refr_term", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_refr_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_refr_urlfragment": {"name": "platform_stg__onsite_v2_refr_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_refr_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_refr_urlhost": {"name": "platform_stg__onsite_v2_refr_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_refr_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_refr_urlpath": {"name": "platform_stg__onsite_v2_refr_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_refr_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_refr_urlport": {"name": "platform_stg__onsite_v2_refr_urlport", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_refr_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_refr_urlquery": {"name": "platform_stg__onsite_v2_refr_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_refr_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_refr_urlscheme": {"name": "platform_stg__onsite_v2_refr_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_refr_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_se_action": {"name": "platform_stg__onsite_v2_se_action", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_se_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_se_category": {"name": "platform_stg__onsite_v2_se_category", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_se_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_se_label": {"name": "platform_stg__onsite_v2_se_label", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_se_label", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_se_page_sku": {"name": "platform_stg__onsite_v2_se_page_sku", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_se_page_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_se_property": {"name": "platform_stg__onsite_v2_se_property", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_se_property", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_se_testing_groups": {"name": "platform_stg__onsite_v2_se_testing_groups", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_se_testing_groups", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_se_value": {"name": "platform_stg__onsite_v2_se_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_se_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_tr_currency": {"name": "platform_stg__onsite_v2_tr_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_tr_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_tr_orderid": {"name": "platform_stg__onsite_v2_tr_orderid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_tr_orderid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_tr_total": {"name": "platform_stg__onsite_v2_tr_total", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_tr_total", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_txn_id": {"name": "platform_stg__onsite_v2_txn_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_txn_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_user_fingerprint": {"name": "platform_stg__onsite_v2_user_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_user_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_user_id": {"name": "platform_stg__onsite_v2_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_useragent": {"name": "platform_stg__onsite_v2_useragent", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_useragent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_v_collector": {"name": "platform_stg__onsite_v2_v_collector", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_v_collector", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_v_etl": {"name": "platform_stg__onsite_v2_v_etl", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_v_etl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_v_tracker": {"name": "platform_stg__onsite_v2_v_tracker", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_v_tracker", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v2_y_fingerprint": {"name": "platform_stg__onsite_v2_y_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v2/platform_stg__onsite_v2.md", "unique_id": "doc.yoda.platform_stg__onsite_v2_y_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__base_onsite_v3": {"name": "platform__base_onsite_v3", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform__base_onsite_v3", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__onsite_v3_br_colordepth": {"name": "platform_stg__onsite_v3_br_colordepth", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_colordepth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_cookies": {"name": "platform_stg__onsite_v3_br_cookies", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_cookies", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_family": {"name": "platform_stg__onsite_v3_br_family", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_features_director": {"name": "platform_stg__onsite_v3_br_features_director", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_features_director", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_features_flash": {"name": "platform_stg__onsite_v3_br_features_flash", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_features_flash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_features_gears": {"name": "platform_stg__onsite_v3_br_features_gears", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_features_gears", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_features_java": {"name": "platform_stg__onsite_v3_br_features_java", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_features_java", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_features_pdf": {"name": "platform_stg__onsite_v3_br_features_pdf", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_features_pdf", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_features_quicktime": {"name": "platform_stg__onsite_v3_br_features_quicktime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_features_quicktime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_features_realplayer": {"name": "platform_stg__onsite_v3_br_features_realplayer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_features_realplayer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_features_silverlight": {"name": "platform_stg__onsite_v3_br_features_silverlight", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_features_silverlight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_features_windowsmedia": {"name": "platform_stg__onsite_v3_br_features_windowsmedia", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_features_windowsmedia", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_lang": {"name": "platform_stg__onsite_v3_br_lang", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_lang", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_major": {"name": "platform_stg__onsite_v3_br_major", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_minor": {"name": "platform_stg__onsite_v3_br_minor", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_viewheight": {"name": "platform_stg__onsite_v3_br_viewheight", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_viewheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_br_viewwidth": {"name": "platform_stg__onsite_v3_br_viewwidth", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_br_viewwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_collector_day": {"name": "platform_stg__onsite_v3_collector_day", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_collector_day", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_collector_epoch": {"name": "platform_stg__onsite_v3_collector_epoch", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_collector_epoch", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_collector_month": {"name": "platform_stg__onsite_v3_collector_month", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_collector_month", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_collector_tstamp": {"name": "platform_stg__onsite_v3_collector_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_collector_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_collector_year": {"name": "platform_stg__onsite_v3_collector_year", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_collector_year", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_context": {"name": "platform_stg__onsite_v3_context", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_context", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_device_family": {"name": "platform_stg__onsite_v3_device_family", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_device_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_doc_charset": {"name": "platform_stg__onsite_v3_doc_charset", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_doc_charset", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_doc_height": {"name": "platform_stg__onsite_v3_doc_height", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_doc_height", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_doc_width": {"name": "platform_stg__onsite_v3_doc_width", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_doc_width", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_domain_sessionidx": {"name": "platform_stg__onsite_v3_domain_sessionidx", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_domain_sessionidx", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_domain_userid": {"name": "platform_stg__onsite_v3_domain_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_domain_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_dvce_screenheight": {"name": "platform_stg__onsite_v3_dvce_screenheight", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_dvce_screenheight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_dvce_screenwidth": {"name": "platform_stg__onsite_v3_dvce_screenwidth", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_dvce_screenwidth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_dvce_tstamp": {"name": "platform_stg__onsite_v3_dvce_tstamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_dvce_tstamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_event": {"name": "platform_stg__onsite_v3_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_event_id": {"name": "platform_stg__onsite_v3_event_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_event_vendor": {"name": "platform_stg__onsite_v3_event_vendor", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_event_vendor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_geo_city": {"name": "platform_stg__onsite_v3_geo_city", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_geo_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_geo_country": {"name": "platform_stg__onsite_v3_geo_country", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_geo_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_geo_latitude": {"name": "platform_stg__onsite_v3_geo_latitude", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_geo_latitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_geo_longitude": {"name": "platform_stg__onsite_v3_geo_longitude", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_geo_longitude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_geo_region": {"name": "platform_stg__onsite_v3_geo_region", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_geo_region", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_geo_zipcode": {"name": "platform_stg__onsite_v3_geo_zipcode", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_geo_zipcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_hour": {"name": "platform_stg__onsite_v3_hour", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_hour", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_mkt_campaign": {"name": "platform_stg__onsite_v3_mkt_campaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_mkt_campaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_mkt_content": {"name": "platform_stg__onsite_v3_mkt_content", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_mkt_content", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_mkt_medium": {"name": "platform_stg__onsite_v3_mkt_medium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_mkt_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_mkt_source": {"name": "platform_stg__onsite_v3_mkt_source", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_mkt_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_mkt_term": {"name": "platform_stg__onsite_v3_mkt_term", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_mkt_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_os_family": {"name": "platform_stg__onsite_v3_os_family", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_os_family", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_os_major": {"name": "platform_stg__onsite_v3_os_major", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_os_major", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_os_minor": {"name": "platform_stg__onsite_v3_os_minor", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_os_minor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_os_timezone": {"name": "platform_stg__onsite_v3_os_timezone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_os_timezone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_page_referrer": {"name": "platform_stg__onsite_v3_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_page_title": {"name": "platform_stg__onsite_v3_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_page_url": {"name": "platform_stg__onsite_v3_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_page_urlfragment": {"name": "platform_stg__onsite_v3_page_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_page_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_page_urlhost": {"name": "platform_stg__onsite_v3_page_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_page_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_page_urlpath": {"name": "platform_stg__onsite_v3_page_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_page_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_page_urlport": {"name": "platform_stg__onsite_v3_page_urlport", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_page_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_page_urlquery": {"name": "platform_stg__onsite_v3_page_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_page_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_page_urlscheme": {"name": "platform_stg__onsite_v3_page_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_page_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_partition_date": {"name": "platform_stg__onsite_v3_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_platform": {"name": "platform_stg__onsite_v3_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_processing_time": {"name": "platform_stg__onsite_v3_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_refr_medium": {"name": "platform_stg__onsite_v3_refr_medium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_refr_medium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_refr_source": {"name": "platform_stg__onsite_v3_refr_source", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_refr_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_refr_term": {"name": "platform_stg__onsite_v3_refr_term", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_refr_term", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_refr_urlfragment": {"name": "platform_stg__onsite_v3_refr_urlfragment", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_refr_urlfragment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_refr_urlhost": {"name": "platform_stg__onsite_v3_refr_urlhost", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_refr_urlhost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_refr_urlpath": {"name": "platform_stg__onsite_v3_refr_urlpath", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_refr_urlpath", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_refr_urlport": {"name": "platform_stg__onsite_v3_refr_urlport", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_refr_urlport", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_refr_urlquery": {"name": "platform_stg__onsite_v3_refr_urlquery", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_refr_urlquery", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_refr_urlscheme": {"name": "platform_stg__onsite_v3_refr_urlscheme", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_refr_urlscheme", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_se_action": {"name": "platform_stg__onsite_v3_se_action", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_se_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_se_category": {"name": "platform_stg__onsite_v3_se_category", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_se_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_se_label": {"name": "platform_stg__onsite_v3_se_label", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_se_label", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_se_property": {"name": "platform_stg__onsite_v3_se_property", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_se_property", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_se_value": {"name": "platform_stg__onsite_v3_se_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_se_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_txn_id": {"name": "platform_stg__onsite_v3_txn_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_txn_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_user_fingerprint": {"name": "platform_stg__onsite_v3_user_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_user_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_useragent": {"name": "platform_stg__onsite_v3_useragent", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_useragent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_v_collector": {"name": "platform_stg__onsite_v3_v_collector", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_v_collector", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_v_etl": {"name": "platform_stg__onsite_v3_v_etl", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_v_etl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_v_tracker": {"name": "platform_stg__onsite_v3_v_tracker", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_v_tracker", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__onsite_v3_y_fingerprint": {"name": "platform_stg__onsite_v3_y_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "original_file_path": "models/platform/staging/base/platform_stg__onsite_v3/platform_stg__onsite_v3.md", "unique_id": "doc.yoda.platform_stg__onsite_v3_y_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines": {"name": "platform_stg__order_lines", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__order_lines_cost": {"name": "platform_stg__order_lines_cost", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_coupon_code": {"name": "platform_stg__order_lines_coupon_code", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_coupon_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_coupon_used": {"name": "platform_stg__order_lines_coupon_used", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_coupon_used", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_created_at": {"name": "platform_stg__order_lines_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_custom_properties": {"name": "platform_stg__order_lines_custom_properties", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_custom_properties", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_external_id": {"name": "platform_stg__order_lines_external_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_external_variant_id": {"name": "platform_stg__order_lines_external_variant_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_external_variant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_id": {"name": "platform_stg__order_lines_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_order_id": {"name": "platform_stg__order_lines_order_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_processing_time": {"name": "platform_stg__order_lines_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_product_id": {"name": "platform_stg__order_lines_product_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_quantity": {"name": "platform_stg__order_lines_quantity", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_subtotal_price": {"name": "platform_stg__order_lines_subtotal_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_subtotal_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_ts_ms": {"name": "platform_stg__order_lines_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_updated_at": {"name": "platform_stg__order_lines_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_upsolver_schema_version": {"name": "platform_stg__order_lines_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__order_lines_variant_id": {"name": "platform_stg__order_lines_variant_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "original_file_path": "models/platform/staging/base/platform_stg__order_lines/platform_stg__order_lines.md", "unique_id": "doc.yoda.platform_stg__order_lines_variant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_account_currency_iso": {"name": "platform_stg__orders_account_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_account_currency_iso", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_app_key": {"name": "platform_stg__orders_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_billing_address_id": {"name": "platform_stg__orders_billing_address_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_billing_address_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_buyer_accepts_email_marketing": {"name": "platform_stg__orders_buyer_accepts_email_marketing", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_buyer_accepts_email_marketing", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_buyer_accepts_marketing": {"name": "platform_stg__orders_buyer_accepts_marketing", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_buyer_accepts_marketing", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_buyer_accepts_sms_marketing": {"name": "platform_stg__orders_buyer_accepts_sms_marketing", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_buyer_accepts_sms_marketing", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_checkout_token": {"name": "platform_stg__orders_checkout_token", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_checkout_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_created_at": {"name": "platform_stg__orders_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_custom_properties": {"name": "platform_stg__orders_custom_properties", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_custom_properties", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_email": {"name": "platform_stg__orders_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_external_customer_id": {"name": "platform_stg__orders_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_external_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_external_id": {"name": "platform_stg__orders_external_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_external_order_display_name": {"name": "platform_stg__orders_external_order_display_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_external_order_display_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_external_order_id": {"name": "platform_stg__orders_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_external_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_first_name": {"name": "platform_stg__orders_first_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_first_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_id": {"name": "platform_stg__orders_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_landing_site_url": {"name": "platform_stg__orders_landing_site_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_landing_site_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_last_name": {"name": "platform_stg__orders_last_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_last_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_order_currency_iso": {"name": "platform_stg__orders_order_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_order_currency_iso", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_order_date": {"name": "platform_stg__orders_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_order_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_order_sum_account_currency": {"name": "platform_stg__orders_order_sum_account_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_order_sum_account_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_order_sum_order_currency": {"name": "platform_stg__orders_order_sum_order_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_order_sum_order_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_order_update_date": {"name": "platform_stg__orders_order_update_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_order_update_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_payment_method": {"name": "platform_stg__orders_payment_method", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_payment_method", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_payment_status_id": {"name": "platform_stg__orders_payment_status_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_payment_status_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_phone_number": {"name": "platform_stg__orders_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_phone_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_platform_type": {"name": "platform_stg__orders_platform_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_platform_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_processing_time": {"name": "platform_stg__orders_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_shipping_address_id": {"name": "platform_stg__orders_shipping_address_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_shipping_address_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_source": {"name": "platform_stg__orders_source", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_total_price": {"name": "platform_stg__orders_total_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_total_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_ts_ms": {"name": "platform_stg__orders_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_updated_at": {"name": "platform_stg__orders_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__orders_upsolver_schema_version": {"name": "platform_stg__orders_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__orders/platform_stg__orders.md", "original_file_path": "models/platform/staging/base/platform_stg__orders/platform_stg__orders.md", "unique_id": "doc.yoda.platform_stg__orders_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__organizations_created_at": {"name": "platform_stg__organizations_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__organizations/platform_stg__organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.md", "unique_id": "doc.yoda.platform_stg__organizations_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__organizations_id": {"name": "platform_stg__organizations_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__organizations/platform_stg__organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.md", "unique_id": "doc.yoda.platform_stg__organizations_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__organizations_name": {"name": "platform_stg__organizations_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__organizations/platform_stg__organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.md", "unique_id": "doc.yoda.platform_stg__organizations_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__organizations_organization_key": {"name": "platform_stg__organizations_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__organizations/platform_stg__organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.md", "unique_id": "doc.yoda.platform_stg__organizations_organization_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__organizations_updated_at": {"name": "platform_stg__organizations_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__organizations/platform_stg__organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__organizations/platform_stg__organizations.md", "unique_id": "doc.yoda.platform_stg__organizations_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__base_owner_feature_settings": {"name": "platform__base_owner_feature_settings", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "unique_id": "doc.yoda.platform__base_owner_feature_settings", "block_contents": "packages owner_feature_settings"}, "doc.yoda.platform_stg__owner_feature_settings_created_at": {"name": "platform_stg__owner_feature_settings_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "unique_id": "doc.yoda.platform_stg__owner_feature_settings_created_at", "block_contents": "created_at"}, "doc.yoda.platform_stg__owner_feature_settings_floating": {"name": "platform_stg__owner_feature_settings_floating", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "unique_id": "doc.yoda.platform_stg__owner_feature_settings_floating", "block_contents": "feature_settings_floating"}, "doc.yoda.platform_stg__owner_feature_settings_id": {"name": "platform_stg__owner_feature_settings_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "unique_id": "doc.yoda.platform_stg__owner_feature_settings_id", "block_contents": "id"}, "doc.yoda.platform_stg__owner_feature_settings_key": {"name": "platform_stg__owner_feature_settings_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "unique_id": "doc.yoda.platform_stg__owner_feature_settings_key", "block_contents": "key"}, "doc.yoda.platform_stg__owner_feature_settings_owners_feature_id": {"name": "platform_stg__owner_feature_settings_owners_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "unique_id": "doc.yoda.platform_stg__owner_feature_settings_owners_feature_id", "block_contents": "owners_feature_id"}, "doc.yoda.platform_stg__owner_feature_settings_processing_time": {"name": "platform_stg__owner_feature_settings_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "unique_id": "doc.yoda.platform_stg__owner_feature_settings_processing_time", "block_contents": "processing_time"}, "doc.yoda.platform_stg__owner_feature_settings_ts_ms": {"name": "platform_stg__owner_feature_settings_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "unique_id": "doc.yoda.platform_stg__owner_feature_settings_ts_ms", "block_contents": "ts_ms"}, "doc.yoda.platform_stg__owner_feature_settings_updated_at": {"name": "platform_stg__owner_feature_settings_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "unique_id": "doc.yoda.platform_stg__owner_feature_settings_updated_at", "block_contents": "updated_at"}, "doc.yoda.platform_stg__owner_feature_settings_upsolver_schema_version": {"name": "platform_stg__owner_feature_settings_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "unique_id": "doc.yoda.platform_stg__owner_feature_settings_upsolver_schema_version", "block_contents": "schema_version"}, "doc.yoda.platform_stg__owner_feature_settings_value": {"name": "platform_stg__owner_feature_settings_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__owner_feature_settings/platform_stg__owner_feature_settings.md", "unique_id": "doc.yoda.platform_stg__owner_feature_settings_value", "block_contents": "value"}, "doc.yoda.platform__base_owners_features": {"name": "platform__base_owners_features", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform__base_owners_features", "block_contents": "package owners features"}, "doc.yoda.platform_stg__owners_features_created_at": {"name": "platform_stg__owners_features_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_created_at", "block_contents": "created_at"}, "doc.yoda.platform_stg__owners_features_disabled": {"name": "platform_stg__owners_features_disabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_disabled", "block_contents": "disabled"}, "doc.yoda.platform_stg__owners_features_feature_id": {"name": "platform_stg__owners_features_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_feature_id", "block_contents": "feature_id"}, "doc.yoda.platform_stg__owners_features_floating": {"name": "platform_stg__owners_features_floating", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_floating", "block_contents": "floating"}, "doc.yoda.platform_stg__owners_features_id": {"name": "platform_stg__owners_features_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_id", "block_contents": "id"}, "doc.yoda.platform_stg__owners_features_owner_id": {"name": "platform_stg__owners_features_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_owner_id", "block_contents": "owner id"}, "doc.yoda.platform_stg__owners_features_owner_type": {"name": "platform_stg__owners_features_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_owner_type", "block_contents": "owner type: store/organization"}, "doc.yoda.platform_stg__owners_features_processing_time": {"name": "platform_stg__owners_features_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_processing_time", "block_contents": "processing time"}, "doc.yoda.platform_stg__owners_features_ts_ms": {"name": "platform_stg__owners_features_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_ts_ms", "block_contents": "ts ms"}, "doc.yoda.platform_stg__owners_features_updated_at": {"name": "platform_stg__owners_features_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_updated_at", "block_contents": "updated ad"}, "doc.yoda.platform_stg__owners_features_upsolver_schema_version": {"name": "platform_stg__owners_features_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_upsolver_schema_version", "block_contents": "upsolver_schema_version"}, "doc.yoda.platform_stg__owners_features_user_enabled": {"name": "platform_stg__owners_features_user_enabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_features/platform_stg__owners_features.md", "unique_id": "doc.yoda.platform_stg__owners_features_user_enabled", "block_contents": "enabled"}, "doc.yoda.platform_stg__owners_package_audits": {"name": "platform_stg__owners_package_audits", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits", "block_contents": "package audits to owners_packaget table"}, "doc.yoda.platform_stg__owners_package_audits_action": {"name": "platform_stg__owners_package_audits_action", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_action", "block_contents": "action"}, "doc.yoda.platform_stg__owners_package_audits_created_at": {"name": "platform_stg__owners_package_audits_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_created_at", "block_contents": "created at"}, "doc.yoda.platform_stg__owners_package_audits_from_package_id": {"name": "platform_stg__owners_package_audits_from_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_from_package_id", "block_contents": "package id"}, "doc.yoda.platform_stg__owners_package_audits_id": {"name": "platform_stg__owners_package_audits_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_id", "block_contents": "id"}, "doc.yoda.platform_stg__owners_package_audits_owner_id": {"name": "platform_stg__owners_package_audits_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_owner_id", "block_contents": "owner id"}, "doc.yoda.platform_stg__owners_package_audits_owner_type": {"name": "platform_stg__owners_package_audits_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_owner_type", "block_contents": "owner type"}, "doc.yoda.platform_stg__owners_package_audits_processing_time": {"name": "platform_stg__owners_package_audits_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_processing_time", "block_contents": "processing time"}, "doc.yoda.platform_stg__owners_package_audits_reason": {"name": "platform_stg__owners_package_audits_reason", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_reason", "block_contents": "reason"}, "doc.yoda.platform_stg__owners_package_audits_to_package_id": {"name": "platform_stg__owners_package_audits_to_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_to_package_id", "block_contents": "package id"}, "doc.yoda.platform_stg__owners_package_audits_ts_ms": {"name": "platform_stg__owners_package_audits_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_ts_ms", "block_contents": "ts ms"}, "doc.yoda.platform_stg__owners_package_audits_updated_at": {"name": "platform_stg__owners_package_audits_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_updated_at", "block_contents": "updated at"}, "doc.yoda.platform_stg__owners_package_audits_upsolver_schema_version": {"name": "platform_stg__owners_package_audits_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_package_audits/platform_stg__owners_package_audits.md", "unique_id": "doc.yoda.platform_stg__owners_package_audits_upsolver_schema_version", "block_contents": "upsolver_schema_version"}, "doc.yoda.platform_stg__owners_packages_created_at": {"name": "platform_stg__owners_packages_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "unique_id": "doc.yoda.platform_stg__owners_packages_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__owners_packages_id": {"name": "platform_stg__owners_packages_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "unique_id": "doc.yoda.platform_stg__owners_packages_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__owners_packages_owner_id": {"name": "platform_stg__owners_packages_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "unique_id": "doc.yoda.platform_stg__owners_packages_owner_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__owners_packages_owner_type": {"name": "platform_stg__owners_packages_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "unique_id": "doc.yoda.platform_stg__owners_packages_owner_type", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__owners_packages_package_id": {"name": "platform_stg__owners_packages_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "unique_id": "doc.yoda.platform_stg__owners_packages_package_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__owners_packages_started_at": {"name": "platform_stg__owners_packages_started_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "unique_id": "doc.yoda.platform_stg__owners_packages_started_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__owners_packages_updated_at": {"name": "platform_stg__owners_packages_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages/platform_stg__owners_packages.md", "unique_id": "doc.yoda.platform_stg__owners_packages_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__owners_packages_history": {"name": "platform_stg__owners_packages_history", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history", "block_contents": "owners packages history"}, "doc.yoda.platform_stg__owners_packages_history_created_at": {"name": "platform_stg__owners_packages_history_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history_created_at", "block_contents": "created_at"}, "doc.yoda.platform_stg__owners_packages_history_deleted_at": {"name": "platform_stg__owners_packages_history_deleted_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history_deleted_at", "block_contents": "deleted_at"}, "doc.yoda.platform_stg__owners_packages_history_id": {"name": "platform_stg__owners_packages_history_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history_id", "block_contents": "history_id"}, "doc.yoda.platform_stg__owners_packages_history_owner_id": {"name": "platform_stg__owners_packages_history_owner_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history_owner_id", "block_contents": "owner_id"}, "doc.yoda.platform_stg__owners_packages_history_owner_type": {"name": "platform_stg__owners_packages_history_owner_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history_owner_type", "block_contents": "owner_type"}, "doc.yoda.platform_stg__owners_packages_history_package_id": {"name": "platform_stg__owners_packages_history_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history_package_id", "block_contents": "package_id"}, "doc.yoda.platform_stg__owners_packages_history_processing_time": {"name": "platform_stg__owners_packages_history_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history_processing_time", "block_contents": "processing_time"}, "doc.yoda.platform_stg__owners_packages_history_started_at": {"name": "platform_stg__owners_packages_history_started_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history_started_at", "block_contents": "started_at"}, "doc.yoda.platform_stg__owners_packages_history_ts_ms": {"name": "platform_stg__owners_packages_history_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history_ts_ms", "block_contents": "ts_ms"}, "doc.yoda.platform_stg__owners_packages_history_updated_at": {"name": "platform_stg__owners_packages_history_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history_updated_at", "block_contents": "history_updated_at"}, "doc.yoda.platform_stg__owners_packages_history_upsolver_schema_version": {"name": "platform_stg__owners_packages_history_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__owners_packages_history/platform_stg__owners_packages_history.md", "unique_id": "doc.yoda.platform_stg__owners_packages_history_upsolver_schema_version", "block_contents": "upsolver_schema_version"}, "doc.yoda.platform_stg__package_feature_settings": {"name": "platform_stg__package_feature_settings", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "unique_id": "doc.yoda.platform_stg__package_feature_settings", "block_contents": "package_feature_settings"}, "doc.yoda.platform_stg__package_feature_settings_id": {"name": "platform_stg__package_feature_settings_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "unique_id": "doc.yoda.platform_stg__package_feature_settings_id", "block_contents": "id"}, "doc.yoda.platform_stg__package_feature_settings_key": {"name": "platform_stg__package_feature_settings_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "unique_id": "doc.yoda.platform_stg__package_feature_settings_key", "block_contents": "key"}, "doc.yoda.platform_stg__package_feature_settings_package_feature_id": {"name": "platform_stg__package_feature_settings_package_feature_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "unique_id": "doc.yoda.platform_stg__package_feature_settings_package_feature_id", "block_contents": "package_feature_id"}, "doc.yoda.platform_stg__package_feature_settings_processing_time": {"name": "platform_stg__package_feature_settings_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "unique_id": "doc.yoda.platform_stg__package_feature_settings_processing_time", "block_contents": "processing_time"}, "doc.yoda.platform_stg__package_feature_settings_ts_ms": {"name": "platform_stg__package_feature_settings_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "unique_id": "doc.yoda.platform_stg__package_feature_settings_ts_ms", "block_contents": "ts_ms"}, "doc.yoda.platform_stg__package_feature_settings_upsolver_schema_version": {"name": "platform_stg__package_feature_settings_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "unique_id": "doc.yoda.platform_stg__package_feature_settings_upsolver_schema_version", "block_contents": "upsolver_schema_version"}, "doc.yoda.platform_stg__package_feature_settings_value": {"name": "platform_stg__package_feature_settings_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_feature_settings/platform_stg__package_feature_settings.md", "unique_id": "doc.yoda.platform_stg__package_feature_settings_value", "block_contents": "value"}, "doc.yoda.platform_stg__package_features": {"name": "platform_stg__package_features", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "unique_id": "doc.yoda.platform_stg__package_features", "block_contents": "package_features"}, "doc.yoda.platform_stg__package_features_created_at": {"name": "platform_stg__package_features_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "unique_id": "doc.yoda.platform_stg__package_features_created_at", "block_contents": "created_at"}, "doc.yoda.platform_stg__package_features_feature_key": {"name": "platform_stg__package_features_feature_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "unique_id": "doc.yoda.platform_stg__package_features_feature_key", "block_contents": "feature_key"}, "doc.yoda.platform_stg__package_features_feature_name": {"name": "platform_stg__package_features_feature_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "unique_id": "doc.yoda.platform_stg__package_features_feature_name", "block_contents": "feature_name"}, "doc.yoda.platform_stg__package_features_id": {"name": "platform_stg__package_features_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "unique_id": "doc.yoda.platform_stg__package_features_id", "block_contents": "id"}, "doc.yoda.platform_stg__package_features_package_id": {"name": "platform_stg__package_features_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "unique_id": "doc.yoda.platform_stg__package_features_package_id", "block_contents": "package_id"}, "doc.yoda.platform_stg__package_features_processing_time": {"name": "platform_stg__package_features_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "unique_id": "doc.yoda.platform_stg__package_features_processing_time", "block_contents": "processing_time"}, "doc.yoda.platform_stg__package_features_promoted": {"name": "platform_stg__package_features_promoted", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "unique_id": "doc.yoda.platform_stg__package_features_promoted", "block_contents": "promoted"}, "doc.yoda.platform_stg__package_features_ts_ms": {"name": "platform_stg__package_features_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "unique_id": "doc.yoda.platform_stg__package_features_ts_ms", "block_contents": "ts_ms"}, "doc.yoda.platform_stg__package_features_updated_at": {"name": "platform_stg__package_features_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "unique_id": "doc.yoda.platform_stg__package_features_updated_at", "block_contents": "updated_at"}, "doc.yoda.platform_stg__package_features_upsolver_schema_version": {"name": "platform_stg__package_features_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__package_features/platform_stg__package_features.md", "unique_id": "doc.yoda.platform_stg__package_features_upsolver_schema_version", "block_contents": "upsolver_schema_version"}, "doc.yoda.platform_stg__package_provider_settings": {"name": "platform_stg__package_provider_settings", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "unique_id": "doc.yoda.platform_stg__package_provider_settings", "block_contents": "package package_provider_settings table"}, "doc.yoda.platform_stg__package_provider_settings_id": {"name": "platform_stg__package_provider_settings_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "unique_id": "doc.yoda.platform_stg__package_provider_settings_id", "block_contents": "id"}, "doc.yoda.platform_stg__package_provider_settings_package_name": {"name": "platform_stg__package_provider_settings_package_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "unique_id": "doc.yoda.platform_stg__package_provider_settings_package_name", "block_contents": "package name"}, "doc.yoda.platform_stg__package_provider_settings_processing_time": {"name": "platform_stg__package_provider_settings_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "unique_id": "doc.yoda.platform_stg__package_provider_settings_processing_time", "block_contents": "processing_time"}, "doc.yoda.platform_stg__package_provider_settings_provider_type_id": {"name": "platform_stg__package_provider_settings_provider_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "unique_id": "doc.yoda.platform_stg__package_provider_settings_provider_type_id", "block_contents": "billing provider_type_id"}, "doc.yoda.platform_stg__package_provider_settings_setting_type": {"name": "platform_stg__package_provider_settings_setting_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "unique_id": "doc.yoda.platform_stg__package_provider_settings_setting_type", "block_contents": "setting_type"}, "doc.yoda.platform_stg__package_provider_settings_ts_ms": {"name": "platform_stg__package_provider_settings_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "unique_id": "doc.yoda.platform_stg__package_provider_settings_ts_ms", "block_contents": "ts ms"}, "doc.yoda.platform_stg__package_provider_settings_upsolver_schema_version": {"name": "platform_stg__package_provider_settings_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "unique_id": "doc.yoda.platform_stg__package_provider_settings_upsolver_schema_version", "block_contents": "upsolver_schema_version"}, "doc.yoda.platform_stg__package_provider_settings_value": {"name": "platform_stg__package_provider_settings_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_provider_settings/platform_stg__package_provider_settings.md", "unique_id": "doc.yoda.platform_stg__package_provider_settings_value", "block_contents": "value"}, "doc.yoda.platform_stg__package_tag_types": {"name": "platform_stg__package_tag_types", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "unique_id": "doc.yoda.platform_stg__package_tag_types", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__package_tag_types_created_at": {"name": "platform_stg__package_tag_types_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "unique_id": "doc.yoda.platform_stg__package_tag_types_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tag_types_id": {"name": "platform_stg__package_tag_types_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "unique_id": "doc.yoda.platform_stg__package_tag_types_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tag_types_processing_time": {"name": "platform_stg__package_tag_types_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "unique_id": "doc.yoda.platform_stg__package_tag_types_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tag_types_tag_type": {"name": "platform_stg__package_tag_types_tag_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "unique_id": "doc.yoda.platform_stg__package_tag_types_tag_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tag_types_ts_ms": {"name": "platform_stg__package_tag_types_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "unique_id": "doc.yoda.platform_stg__package_tag_types_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tag_types_updated_at": {"name": "platform_stg__package_tag_types_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "unique_id": "doc.yoda.platform_stg__package_tag_types_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tag_types_upsolver_schema_version": {"name": "platform_stg__package_tag_types_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tag_types/platform_stg__package_tag_types.md", "unique_id": "doc.yoda.platform_stg__package_tag_types_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tags": {"name": "platform_stg__package_tags", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "unique_id": "doc.yoda.platform_stg__package_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__package_tags_created_at": {"name": "platform_stg__package_tags_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "unique_id": "doc.yoda.platform_stg__package_tags_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tags_id": {"name": "platform_stg__package_tags_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "unique_id": "doc.yoda.platform_stg__package_tags_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tags_package_id": {"name": "platform_stg__package_tags_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "unique_id": "doc.yoda.platform_stg__package_tags_package_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tags_package_tag_type_id": {"name": "platform_stg__package_tags_package_tag_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "unique_id": "doc.yoda.platform_stg__package_tags_package_tag_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tags_processing_time": {"name": "platform_stg__package_tags_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "unique_id": "doc.yoda.platform_stg__package_tags_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tags_ts_ms": {"name": "platform_stg__package_tags_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "unique_id": "doc.yoda.platform_stg__package_tags_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tags_updated_at": {"name": "platform_stg__package_tags_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "unique_id": "doc.yoda.platform_stg__package_tags_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_tags_upsolver_schema_version": {"name": "platform_stg__package_tags_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "original_file_path": "models/platform/staging/base/platform_stg__package_tags/platform_stg__package_tags.md", "unique_id": "doc.yoda.platform_stg__package_tags_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings": {"name": "platform_stg__package_usages_settings", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__package_usages_settings_created_at": {"name": "platform_stg__package_usages_settings_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_description": {"name": "platform_stg__package_usages_settings_description", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_id": {"name": "platform_stg__package_usages_settings_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_limit": {"name": "platform_stg__package_usages_settings_limit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_limit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_metric_name": {"name": "platform_stg__package_usages_settings_metric_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_metric_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_package_name": {"name": "platform_stg__package_usages_settings_package_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_package_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_per_unit_price": {"name": "platform_stg__package_usages_settings_per_unit_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_per_unit_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_processing_time": {"name": "platform_stg__package_usages_settings_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_provider_type_id": {"name": "platform_stg__package_usages_settings_provider_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_provider_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_term_text": {"name": "platform_stg__package_usages_settings_term_text", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_term_text", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_ts_ms": {"name": "platform_stg__package_usages_settings_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_updated_at": {"name": "platform_stg__package_usages_settings_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__package_usages_settings_upsolver_schema_version": {"name": "platform_stg__package_usages_settings_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__package_usages_settings/platform_stg__package_usages_settings.md", "unique_id": "doc.yoda.platform_stg__package_usages_settings_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__packages_category_id": {"name": "platform_stg__packages_category_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__packages/platform_stg__packages.md", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.md", "unique_id": "doc.yoda.platform_stg__packages_category_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__packages_category_priority": {"name": "platform_stg__packages_category_priority", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__packages/platform_stg__packages.md", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.md", "unique_id": "doc.yoda.platform_stg__packages_category_priority", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__packages_description": {"name": "platform_stg__packages_description", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__packages/platform_stg__packages.md", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.md", "unique_id": "doc.yoda.platform_stg__packages_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__packages_display_name": {"name": "platform_stg__packages_display_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__packages/platform_stg__packages.md", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.md", "unique_id": "doc.yoda.platform_stg__packages_display_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__packages_downgrade_package_id": {"name": "platform_stg__packages_downgrade_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__packages/platform_stg__packages.md", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.md", "unique_id": "doc.yoda.platform_stg__packages_downgrade_package_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__packages_id": {"name": "platform_stg__packages_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__packages/platform_stg__packages.md", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.md", "unique_id": "doc.yoda.platform_stg__packages_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__packages_name": {"name": "platform_stg__packages_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__packages/platform_stg__packages.md", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.md", "unique_id": "doc.yoda.platform_stg__packages_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__packages_old_package_id": {"name": "platform_stg__packages_old_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__packages/platform_stg__packages.md", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.md", "unique_id": "doc.yoda.platform_stg__packages_old_package_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__packages_package_key": {"name": "platform_stg__packages_package_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__packages/platform_stg__packages.md", "original_file_path": "models/platform/staging/base/platform_stg__packages/platform_stg__packages.md", "unique_id": "doc.yoda.platform_stg__packages_package_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__plan_settings": {"name": "platform_stg__plan_settings", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "unique_id": "doc.yoda.platform_stg__plan_settings", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__plan_settings_category_name": {"name": "platform_stg__plan_settings_category_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "unique_id": "doc.yoda.platform_stg__plan_settings_category_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__plan_settings_id": {"name": "platform_stg__plan_settings_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "unique_id": "doc.yoda.platform_stg__plan_settings_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__plan_settings_plan_name": {"name": "platform_stg__plan_settings_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "unique_id": "doc.yoda.platform_stg__plan_settings_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__plan_settings_processing_time": {"name": "platform_stg__plan_settings_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "unique_id": "doc.yoda.platform_stg__plan_settings_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__plan_settings_setting_type": {"name": "platform_stg__plan_settings_setting_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "unique_id": "doc.yoda.platform_stg__plan_settings_setting_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__plan_settings_ts_ms": {"name": "platform_stg__plan_settings_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "unique_id": "doc.yoda.platform_stg__plan_settings_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__plan_settings_upsolver_schema_version": {"name": "platform_stg__plan_settings_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "unique_id": "doc.yoda.platform_stg__plan_settings_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__plan_settings_value": {"name": "platform_stg__plan_settings_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__plan_settings/platform_stg__plan_settings.md", "unique_id": "doc.yoda.platform_stg__plan_settings_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__platform_package_features": {"name": "platform_stg__platform_package_features", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "unique_id": "doc.yoda.platform_stg__platform_package_features", "block_contents": "package platform_package_features"}, "doc.yoda.platform_stg__platform_package_features_created_at": {"name": "platform_stg__platform_package_features_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "unique_id": "doc.yoda.platform_stg__platform_package_features_created_at", "block_contents": "created_at"}, "doc.yoda.platform_stg__platform_package_features_feature_key": {"name": "platform_stg__platform_package_features_feature_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "unique_id": "doc.yoda.platform_stg__platform_package_features_feature_key", "block_contents": "key"}, "doc.yoda.platform_stg__platform_package_features_id": {"name": "platform_stg__platform_package_features_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "unique_id": "doc.yoda.platform_stg__platform_package_features_id", "block_contents": "id"}, "doc.yoda.platform_stg__platform_package_features_package_id": {"name": "platform_stg__platform_package_features_package_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "unique_id": "doc.yoda.platform_stg__platform_package_features_package_id", "block_contents": "package_id"}, "doc.yoda.platform_stg__platform_package_features_platform_name": {"name": "platform_stg__platform_package_features_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "unique_id": "doc.yoda.platform_stg__platform_package_features_platform_name", "block_contents": "name"}, "doc.yoda.platform_stg__platform_package_features_processing_time": {"name": "platform_stg__platform_package_features_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "unique_id": "doc.yoda.platform_stg__platform_package_features_processing_time", "block_contents": "processing_time"}, "doc.yoda.platform_stg__platform_package_features_ts_ms": {"name": "platform_stg__platform_package_features_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "unique_id": "doc.yoda.platform_stg__platform_package_features_ts_ms", "block_contents": "ts_ms"}, "doc.yoda.platform_stg__platform_package_features_updated_at": {"name": "platform_stg__platform_package_features_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "unique_id": "doc.yoda.platform_stg__platform_package_features_updated_at", "block_contents": "updated_at"}, "doc.yoda.platform_stg__platform_package_features_upsolver_schema_version": {"name": "platform_stg__platform_package_features_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_package_features/platform_stg__platform_package_features.md", "unique_id": "doc.yoda.platform_stg__platform_package_features_upsolver_schema_version", "block_contents": "upsolver_schema_version"}, "doc.yoda.platform_stg__platform_types_description": {"name": "platform_stg__platform_types_description", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "unique_id": "doc.yoda.platform_stg__platform_types_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__platform_types_id": {"name": "platform_stg__platform_types_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "unique_id": "doc.yoda.platform_stg__platform_types_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__platform_types_is_supports_past_orders": {"name": "platform_stg__platform_types_is_supports_past_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "unique_id": "doc.yoda.platform_stg__platform_types_is_supports_past_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__platform_types_is_supports_pull_orders": {"name": "platform_stg__platform_types_is_supports_pull_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "unique_id": "doc.yoda.platform_stg__platform_types_is_supports_pull_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__platform_types_platform_name": {"name": "platform_stg__platform_types_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "unique_id": "doc.yoda.platform_stg__platform_types_platform_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__platform_types_updated_at": {"name": "platform_stg__platform_types_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "original_file_path": "models/platform/staging/base/platform_stg__platform_types/platform_stg__platform_types.md", "unique_id": "doc.yoda.platform_stg__platform_types_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed": {"name": "platform_stg__popup_displayed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__popup_displayed_accountid": {"name": "platform_stg__popup_displayed_accountid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_actioncontext": {"name": "platform_stg__popup_displayed_actioncontext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_actioncontext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_actionlocation": {"name": "platform_stg__popup_displayed_actionlocation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_actionlocation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_actiontype": {"name": "platform_stg__popup_displayed_actiontype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_actiontype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_admin": {"name": "platform_stg__popup_displayed_admin", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_admin", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_adminname": {"name": "platform_stg__popup_displayed_adminname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_adminusername": {"name": "platform_stg__popup_displayed_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_anonymous_id": {"name": "platform_stg__popup_displayed_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_appkey": {"name": "platform_stg__popup_displayed_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_auth0userid": {"name": "platform_stg__popup_displayed_auth0userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_auth0userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_billingproviders": {"name": "platform_stg__popup_displayed_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_billingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_btncontext": {"name": "platform_stg__popup_displayed_btncontext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_btncontext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_btnlocation": {"name": "platform_stg__popup_displayed_btnlocation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_btnlocation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_btnname": {"name": "platform_stg__popup_displayed_btnname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_btnname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_btntext": {"name": "platform_stg__popup_displayed_btntext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_btntext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_campaigntype": {"name": "platform_stg__popup_displayed_campaigntype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_campaigntype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_category": {"name": "platform_stg__popup_displayed_category", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_channel": {"name": "platform_stg__popup_displayed_channel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_chargeid": {"name": "platform_stg__popup_displayed_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_chargeprice": {"name": "platform_stg__popup_displayed_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_company_name": {"name": "platform_stg__popup_displayed_company_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_company_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_count": {"name": "platform_stg__popup_displayed_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_createdat": {"name": "platform_stg__popup_displayed_createdat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_ctalocation": {"name": "platform_stg__popup_displayed_ctalocation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_ctalocation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_ctaname": {"name": "platform_stg__popup_displayed_ctaname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_ctaname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_ctatext": {"name": "platform_stg__popup_displayed_ctatext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_ctatext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_ctatype": {"name": "platform_stg__popup_displayed_ctatype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_ctatype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_daysinvalidfacebooktoken": {"name": "platform_stg__popup_displayed_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_daysinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_daysinvalidpinteresttoken": {"name": "platform_stg__popup_displayed_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_daysinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_daysinvalidtwittertoken": {"name": "platform_stg__popup_displayed_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_daysinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_email": {"name": "platform_stg__popup_displayed_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_event_name": {"name": "platform_stg__popup_displayed_event_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_eventtype": {"name": "platform_stg__popup_displayed_eventtype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_eventtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_featurename": {"name": "platform_stg__popup_displayed_featurename", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_featurename", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_field": {"name": "platform_stg__popup_displayed_field", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_field", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_gallerytype": {"name": "platform_stg__popup_displayed_gallerytype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_gallerytype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_groupid": {"name": "platform_stg__popup_displayed_groupid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_installedplatformname": {"name": "platform_stg__popup_displayed_installedplatformname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_installedplatformname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_is_desktop": {"name": "platform_stg__popup_displayed_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_is_mobile": {"name": "platform_stg__popup_displayed_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_is_tablet": {"name": "platform_stg__popup_displayed_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isenabled": {"name": "platform_stg__popup_displayed_isenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_iserror": {"name": "platform_stg__popup_displayed_iserror", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_iserror", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isinternaluser": {"name": "platform_stg__popup_displayed_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isinternaluser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isinvalidfacebooktoken": {"name": "platform_stg__popup_displayed_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isinvalidfacebooktokendate": {"name": "platform_stg__popup_displayed_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isinvalidfacebooktokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isinvalidpinteresttoken": {"name": "platform_stg__popup_displayed_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isinvalidpinteresttokendate": {"name": "platform_stg__popup_displayed_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isinvalidpinteresttokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isinvalidtwittertoken": {"name": "platform_stg__popup_displayed_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isinvalidtwittertokendate": {"name": "platform_stg__popup_displayed_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isinvalidtwittertokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isloyalty": {"name": "platform_stg__popup_displayed_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isnewslettersubscribed": {"name": "platform_stg__popup_displayed_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isreviews": {"name": "platform_stg__popup_displayed_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isreviewswidgetinstalled": {"name": "platform_stg__popup_displayed_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_issms": {"name": "platform_stg__popup_displayed_issms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_issystemnotificationssubscribed": {"name": "platform_stg__popup_displayed_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_istargeted": {"name": "platform_stg__popup_displayed_istargeted", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_istargeted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isuserscountlimitreached": {"name": "platform_stg__popup_displayed_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isusingpackagesservice": {"name": "platform_stg__popup_displayed_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_isvugc": {"name": "platform_stg__popup_displayed_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_lastconversionordertime": {"name": "platform_stg__popup_displayed_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_layout": {"name": "platform_stg__popup_displayed_layout", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_layout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_library_name": {"name": "platform_stg__popup_displayed_library_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_locale": {"name": "platform_stg__popup_displayed_locale", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_loyaltyemail": {"name": "platform_stg__popup_displayed_loyaltyemail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_loyaltyemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_loyaltymerchantid": {"name": "platform_stg__popup_displayed_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_loyaltypackage": {"name": "platform_stg__popup_displayed_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_merchant_id": {"name": "platform_stg__popup_displayed_merchant_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_merchant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_message_id": {"name": "platform_stg__popup_displayed_message_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_mobiletabposition": {"name": "platform_stg__popup_displayed_mobiletabposition", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_mobiletabposition", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_name": {"name": "platform_stg__popup_displayed_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_numoferrors": {"name": "platform_stg__popup_displayed_numoferrors", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_numoferrors", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_numofformaterror": {"name": "platform_stg__popup_displayed_numofformaterror", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_numofformaterror", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_numofformaterrors": {"name": "platform_stg__popup_displayed_numofformaterrors", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_numofformaterrors", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_numofsizeerror": {"name": "platform_stg__popup_displayed_numofsizeerror", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_numofsizeerror", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_numofsizeerrors": {"name": "platform_stg__popup_displayed_numofsizeerrors", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_numofsizeerrors", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_orgid": {"name": "platform_stg__popup_displayed_orgid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_orgkey": {"name": "platform_stg__popup_displayed_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_os20": {"name": "platform_stg__popup_displayed_os20", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_os20", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_owner": {"name": "platform_stg__popup_displayed_owner", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_owner", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_package": {"name": "platform_stg__popup_displayed_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_packagecategories": {"name": "platform_stg__popup_displayed_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_packageextensions": {"name": "platform_stg__popup_displayed_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_packageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_page_path": {"name": "platform_stg__popup_displayed_page_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_page_referrer": {"name": "platform_stg__popup_displayed_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_page_title": {"name": "platform_stg__popup_displayed_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_page_url": {"name": "platform_stg__popup_displayed_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_pagecategory": {"name": "platform_stg__popup_displayed_pagecategory", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_pagecategory", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_pagecontext": {"name": "platform_stg__popup_displayed_pagecontext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_pagecontext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_pagename": {"name": "platform_stg__popup_displayed_pagename", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_pagename", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_pagesubcontext": {"name": "platform_stg__popup_displayed_pagesubcontext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_pagesubcontext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_partition_date": {"name": "platform_stg__popup_displayed_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_path": {"name": "platform_stg__popup_displayed_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_pendingrrs": {"name": "platform_stg__popup_displayed_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_phone": {"name": "platform_stg__popup_displayed_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_planname": {"name": "platform_stg__popup_displayed_planname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_platform": {"name": "platform_stg__popup_displayed_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_platform_plan": {"name": "platform_stg__popup_displayed_platform_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_platform_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_platformplan": {"name": "platform_stg__popup_displayed_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_popupcontext": {"name": "platform_stg__popup_displayed_popupcontext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_popupcontext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_popuplocation": {"name": "platform_stg__popup_displayed_popuplocation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_popuplocation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_popupname": {"name": "platform_stg__popup_displayed_popupname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_popupname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_popupsubcontext": {"name": "platform_stg__popup_displayed_popupsubcontext", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_popupsubcontext", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_processing_time": {"name": "platform_stg__popup_displayed_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_product": {"name": "platform_stg__popup_displayed_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_producturl": {"name": "platform_stg__popup_displayed_producturl", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_producturl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_reasons": {"name": "platform_stg__popup_displayed_reasons", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_reasons", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_reviewspackage": {"name": "platform_stg__popup_displayed_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_role": {"name": "platform_stg__popup_displayed_role", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_rrmonthlylimit": {"name": "platform_stg__popup_displayed_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_signupcountry": {"name": "platform_stg__popup_displayed_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_signupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_signupmonthlyorderscount": {"name": "platform_stg__popup_displayed_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_signupmonthlyorderscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_signupphone": {"name": "platform_stg__popup_displayed_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_signupphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_signuputmcampaign": {"name": "platform_stg__popup_displayed_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_signuputmmedium": {"name": "platform_stg__popup_displayed_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_signuputmsource": {"name": "platform_stg__popup_displayed_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_smspackage": {"name": "platform_stg__popup_displayed_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_smsuserid": {"name": "platform_stg__popup_displayed_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_source": {"name": "platform_stg__popup_displayed_source", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_state": {"name": "platform_stg__popup_displayed_state", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_state", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_status": {"name": "platform_stg__popup_displayed_status", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_storecount": {"name": "platform_stg__popup_displayed_storecount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_storedomain": {"name": "platform_stg__popup_displayed_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_storeid": {"name": "platform_stg__popup_displayed_storeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_storeplatformdomain": {"name": "platform_stg__popup_displayed_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_subscriptionstate": {"name": "platform_stg__popup_displayed_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_subscriptionstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_tabname": {"name": "platform_stg__popup_displayed_tabname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_tabname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_tabposition": {"name": "platform_stg__popup_displayed_tabposition", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_tabposition", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_thirty_day_order_volume": {"name": "platform_stg__popup_displayed_thirty_day_order_volume", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_thirty_day_order_volume", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_thirty_day_revenue_cents": {"name": "platform_stg__popup_displayed_thirty_day_revenue_cents", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_thirty_day_revenue_cents", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_timestamp": {"name": "platform_stg__popup_displayed_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_title": {"name": "platform_stg__popup_displayed_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_traits_email": {"name": "platform_stg__popup_displayed_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_traits_name": {"name": "platform_stg__popup_displayed_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_traits_package": {"name": "platform_stg__popup_displayed_traits_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_traits_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_traits_plan": {"name": "platform_stg__popup_displayed_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_traits_platform": {"name": "platform_stg__popup_displayed_traits_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_traits_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_uiversion": {"name": "platform_stg__popup_displayed_uiversion", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_uiversion", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_upsolver_schema_version": {"name": "platform_stg__popup_displayed_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_url": {"name": "platform_stg__popup_displayed_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_user_id": {"name": "platform_stg__popup_displayed_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_useremail": {"name": "platform_stg__popup_displayed_useremail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_useremail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_userid": {"name": "platform_stg__popup_displayed_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_violated_event": {"name": "platform_stg__popup_displayed_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_vugcpackage": {"name": "platform_stg__popup_displayed_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_website": {"name": "platform_stg__popup_displayed_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__popup_displayed_yotpoip": {"name": "platform_stg__popup_displayed_yotpoip", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "original_file_path": "models/platform/staging/base/platform_stg__popup_displayed/platform_stg__popup_displayed.md", "unique_id": "doc.yoda.platform_stg__popup_displayed_yotpoip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled": {"name": "platform_stg__product_enabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__product_enabled_accountid": {"name": "platform_stg__product_enabled_accountid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_adminname": {"name": "platform_stg__product_enabled_adminname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_adminusername": {"name": "platform_stg__product_enabled_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_anonymous_id": {"name": "platform_stg__product_enabled_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_appkey": {"name": "platform_stg__product_enabled_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_billingproviders": {"name": "platform_stg__product_enabled_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_billingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_channel": {"name": "platform_stg__product_enabled_channel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_chargeid": {"name": "platform_stg__product_enabled_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_chargeprice": {"name": "platform_stg__product_enabled_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_createdat": {"name": "platform_stg__product_enabled_createdat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_daysinvalidfacebooktoken": {"name": "platform_stg__product_enabled_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_daysinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_daysinvalidpinteresttoken": {"name": "platform_stg__product_enabled_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_daysinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_daysinvalidtwittertoken": {"name": "platform_stg__product_enabled_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_daysinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_email": {"name": "platform_stg__product_enabled_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_enablementlocation": {"name": "platform_stg__product_enabled_enablementlocation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_enablementlocation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_enablementsource": {"name": "platform_stg__product_enabled_enablementsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_enablementsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_event_name": {"name": "platform_stg__product_enabled_event_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_groupid": {"name": "platform_stg__product_enabled_groupid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_is_desktop": {"name": "platform_stg__product_enabled_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_is_mobile": {"name": "platform_stg__product_enabled_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_is_tablet": {"name": "platform_stg__product_enabled_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isfirstproduct": {"name": "platform_stg__product_enabled_isfirstproduct", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isfirstproduct", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isinternaluser": {"name": "platform_stg__product_enabled_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isinternaluser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isinvalidfacebooktoken": {"name": "platform_stg__product_enabled_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isinvalidfacebooktokendate": {"name": "platform_stg__product_enabled_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isinvalidfacebooktokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isinvalidpinteresttoken": {"name": "platform_stg__product_enabled_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isinvalidpinteresttokendate": {"name": "platform_stg__product_enabled_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isinvalidpinteresttokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isinvalidtwittertoken": {"name": "platform_stg__product_enabled_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isinvalidtwittertokendate": {"name": "platform_stg__product_enabled_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isinvalidtwittertokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isloyalty": {"name": "platform_stg__product_enabled_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isnewslettersubscribed": {"name": "platform_stg__product_enabled_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isreviews": {"name": "platform_stg__product_enabled_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isreviewswidgetinstalled": {"name": "platform_stg__product_enabled_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_issms": {"name": "platform_stg__product_enabled_issms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_issystemnotificationssubscribed": {"name": "platform_stg__product_enabled_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isuserscountlimitreached": {"name": "platform_stg__product_enabled_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isusingpackagesservice": {"name": "platform_stg__product_enabled_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_isvugc": {"name": "platform_stg__product_enabled_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_lastconversionordertime": {"name": "platform_stg__product_enabled_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_library_name": {"name": "platform_stg__product_enabled_library_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_locale": {"name": "platform_stg__product_enabled_locale", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_loyaltymerchantid": {"name": "platform_stg__product_enabled_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_loyaltypackage": {"name": "platform_stg__product_enabled_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_message_id": {"name": "platform_stg__product_enabled_message_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_name": {"name": "platform_stg__product_enabled_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_newpackage": {"name": "platform_stg__product_enabled_newpackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_newpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_orgid": {"name": "platform_stg__product_enabled_orgid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_orgkey": {"name": "platform_stg__product_enabled_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_package": {"name": "platform_stg__product_enabled_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_packagecategories": {"name": "platform_stg__product_enabled_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_packageextensions": {"name": "platform_stg__product_enabled_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_packageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_page_path": {"name": "platform_stg__product_enabled_page_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_page_referrer": {"name": "platform_stg__product_enabled_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_page_title": {"name": "platform_stg__product_enabled_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_page_url": {"name": "platform_stg__product_enabled_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_partition_date": {"name": "platform_stg__product_enabled_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_pendingrrs": {"name": "platform_stg__product_enabled_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_phone": {"name": "platform_stg__product_enabled_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_planname": {"name": "platform_stg__product_enabled_planname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_platform": {"name": "platform_stg__product_enabled_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_platformplan": {"name": "platform_stg__product_enabled_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_processing_time": {"name": "platform_stg__product_enabled_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_product": {"name": "platform_stg__product_enabled_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_referrercampaign": {"name": "platform_stg__product_enabled_referrercampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_referrercampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_referrerproduct": {"name": "platform_stg__product_enabled_referrerproduct", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_referrerproduct", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_reviewspackage": {"name": "platform_stg__product_enabled_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_role": {"name": "platform_stg__product_enabled_role", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_rrmonthlylimit": {"name": "platform_stg__product_enabled_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_signupcountry": {"name": "platform_stg__product_enabled_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_signupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_signupmonthlyorderscount": {"name": "platform_stg__product_enabled_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_signupmonthlyorderscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_signupphone": {"name": "platform_stg__product_enabled_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_signupphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_signuputmcampaign": {"name": "platform_stg__product_enabled_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_signuputmmedium": {"name": "platform_stg__product_enabled_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_signuputmsource": {"name": "platform_stg__product_enabled_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_smspackage": {"name": "platform_stg__product_enabled_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_smsuserid": {"name": "platform_stg__product_enabled_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_storecount": {"name": "platform_stg__product_enabled_storecount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_storedomain": {"name": "platform_stg__product_enabled_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_storeid": {"name": "platform_stg__product_enabled_storeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_storeplatformdomain": {"name": "platform_stg__product_enabled_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_subscriptionstate": {"name": "platform_stg__product_enabled_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_subscriptionstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_timestamp": {"name": "platform_stg__product_enabled_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_traits_email": {"name": "platform_stg__product_enabled_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_traits_name": {"name": "platform_stg__product_enabled_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_traits_plan": {"name": "platform_stg__product_enabled_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_upsolver_schema_version": {"name": "platform_stg__product_enabled_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_user_id": {"name": "platform_stg__product_enabled_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_useremail": {"name": "platform_stg__product_enabled_useremail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_useremail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_userid": {"name": "platform_stg__product_enabled_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_violated_event": {"name": "platform_stg__product_enabled_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_vugcpackage": {"name": "platform_stg__product_enabled_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__product_enabled_website": {"name": "platform_stg__product_enabled_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "original_file_path": "models/platform/staging/base/platform_stg__product_enabled/platform_stg__product_enabled.md", "unique_id": "doc.yoda.platform_stg__product_enabled_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__base_products": {"name": "platform__base_products", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform__base_products", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__products_compare_at_price": {"name": "platform_stg__products_compare_at_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_compare_at_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_created_at": {"name": "platform_stg__products_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_currency": {"name": "platform_stg__products_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_custom_properties": {"name": "platform_stg__products_custom_properties", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_custom_properties", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_description": {"name": "platform_stg__products_description", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_external_created_at": {"name": "platform_stg__products_external_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_external_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_external_id": {"name": "platform_stg__products_external_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_external_updated_at": {"name": "platform_stg__products_external_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_external_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_group_id": {"name": "platform_stg__products_group_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_handle": {"name": "platform_stg__products_handle", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_handle", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_id": {"name": "platform_stg__products_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_inventory_quantity": {"name": "platform_stg__products_inventory_quantity", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_inventory_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_is_discontinued": {"name": "platform_stg__products_is_discontinued", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_is_discontinued", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_is_valid_url_format": {"name": "platform_stg__products_is_valid_url_format", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_is_valid_url_format", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_name": {"name": "platform_stg__products_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_price": {"name": "platform_stg__products_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_processing_time": {"name": "platform_stg__products_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_sku": {"name": "platform_stg__products_sku", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_status": {"name": "platform_stg__products_status", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_store_id": {"name": "platform_stg__products_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_ts_ms": {"name": "platform_stg__products_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_updated_at": {"name": "platform_stg__products_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_upsolver_schema_version": {"name": "platform_stg__products_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__products_url": {"name": "platform_stg__products_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__products/platform_stg__products.md", "original_file_path": "models/platform/staging/base/platform_stg__products/platform_stg__products.md", "unique_id": "doc.yoda.platform_stg__products_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__provider_types": {"name": "platform_stg__provider_types", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "original_file_path": "models/platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "unique_id": "doc.yoda.platform_stg__provider_types", "block_contents": "billing provider type codes"}, "doc.yoda.platform_stg__provider_types_id": {"name": "platform_stg__provider_types_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "original_file_path": "models/platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "unique_id": "doc.yoda.platform_stg__provider_types_id", "block_contents": "id"}, "doc.yoda.platform_stg__provider_types_name": {"name": "platform_stg__provider_types_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "original_file_path": "models/platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "unique_id": "doc.yoda.platform_stg__provider_types_name", "block_contents": "name"}, "doc.yoda.platform_stg__provider_types_processing_time": {"name": "platform_stg__provider_types_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "original_file_path": "models/platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "unique_id": "doc.yoda.platform_stg__provider_types_processing_time", "block_contents": "processing_time"}, "doc.yoda.platform_stg__provider_types_ts_ms": {"name": "platform_stg__provider_types_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "original_file_path": "models/platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "unique_id": "doc.yoda.platform_stg__provider_types_ts_ms", "block_contents": "ts_ms"}, "doc.yoda.platform_stg__provider_types_upsolver_schema_version": {"name": "platform_stg__provider_types_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "original_file_path": "models/platform/staging/base/platform_stg__provider_types/platform_stg__provider_types.md", "unique_id": "doc.yoda.platform_stg__provider_types_upsolver_schema_version", "block_contents": "schema_version"}, "doc.yoda.platform_stg__sections": {"name": "platform_stg__sections", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__sections/platform_stg__sections.md", "original_file_path": "models/platform/staging/base/platform_stg__sections/platform_stg__sections.md", "unique_id": "doc.yoda.platform_stg__sections", "block_contents": "View of yotpo home screen widgets sections"}, "doc.yoda.platform_stg__sections_created_at": {"name": "platform_stg__sections_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__sections/platform_stg__sections.md", "original_file_path": "models/platform/staging/base/platform_stg__sections/platform_stg__sections.md", "unique_id": "doc.yoda.platform_stg__sections_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__sections_id": {"name": "platform_stg__sections_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__sections/platform_stg__sections.md", "original_file_path": "models/platform/staging/base/platform_stg__sections/platform_stg__sections.md", "unique_id": "doc.yoda.platform_stg__sections_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__sections_name": {"name": "platform_stg__sections_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__sections/platform_stg__sections.md", "original_file_path": "models/platform/staging/base/platform_stg__sections/platform_stg__sections.md", "unique_id": "doc.yoda.platform_stg__sections_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__sections_processing_time": {"name": "platform_stg__sections_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__sections/platform_stg__sections.md", "original_file_path": "models/platform/staging/base/platform_stg__sections/platform_stg__sections.md", "unique_id": "doc.yoda.platform_stg__sections_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__sections_ts_ms": {"name": "platform_stg__sections_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__sections/platform_stg__sections.md", "original_file_path": "models/platform/staging/base/platform_stg__sections/platform_stg__sections.md", "unique_id": "doc.yoda.platform_stg__sections_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__sections_updated_at": {"name": "platform_stg__sections_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__sections/platform_stg__sections.md", "original_file_path": "models/platform/staging/base/platform_stg__sections/platform_stg__sections.md", "unique_id": "doc.yoda.platform_stg__sections_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__sections_upsolver_schema_version": {"name": "platform_stg__sections_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__sections/platform_stg__sections.md", "original_file_path": "models/platform/staging/base/platform_stg__sections/platform_stg__sections.md", "unique_id": "doc.yoda.platform_stg__sections_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__store_applications_application_id": {"name": "platform_stg__store_applications_application_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "original_file_path": "models/platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "unique_id": "doc.yoda.platform_stg__store_applications_application_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__store_applications_created_at": {"name": "platform_stg__store_applications_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "original_file_path": "models/platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "unique_id": "doc.yoda.platform_stg__store_applications_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__store_applications_disconnected_at": {"name": "platform_stg__store_applications_disconnected_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "original_file_path": "models/platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "unique_id": "doc.yoda.platform_stg__store_applications_disconnected_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__store_applications_id": {"name": "platform_stg__store_applications_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "original_file_path": "models/platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "unique_id": "doc.yoda.platform_stg__store_applications_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__store_applications_processing_time": {"name": "platform_stg__store_applications_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "original_file_path": "models/platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "unique_id": "doc.yoda.platform_stg__store_applications_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__store_applications_store_id": {"name": "platform_stg__store_applications_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "original_file_path": "models/platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "unique_id": "doc.yoda.platform_stg__store_applications_store_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__store_applications_ts_ms": {"name": "platform_stg__store_applications_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "original_file_path": "models/platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "unique_id": "doc.yoda.platform_stg__store_applications_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__store_applications_updated_at": {"name": "platform_stg__store_applications_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "original_file_path": "models/platform/staging/base/platform_stg__store_applications/platform_stg__store_applications.md", "unique_id": "doc.yoda.platform_stg__store_applications_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform__loyalty_stg__email_campaign_emails_id": {"name": "platform__loyalty_stg__email_campaign_emails_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.md", "unique_id": "doc.yoda.platform__loyalty_stg__email_campaign_emails_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__loyalty_stg__email_campaign_emails_is_blacklisted": {"name": "platform__loyalty_stg__email_campaign_emails_is_blacklisted", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.md", "unique_id": "doc.yoda.platform__loyalty_stg__email_campaign_emails_is_blacklisted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__loyalty_stg__email_campaign_emails_platform_type_id": {"name": "platform__loyalty_stg__email_campaign_emails_platform_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.md", "unique_id": "doc.yoda.platform__loyalty_stg__email_campaign_emails_platform_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__loyalty_stg__email_campaign_emails_store_id": {"name": "platform__loyalty_stg__email_campaign_emails_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.md", "unique_id": "doc.yoda.platform__loyalty_stg__email_campaign_emails_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__loyalty_stg__email_campaign_emails_updated_at": {"name": "platform__loyalty_stg__email_campaign_emails_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.md", "original_file_path": "models/platform/staging/base/platform_stg__store_platforms/platform_stg__store_platforms.md", "unique_id": "doc.yoda.platform__loyalty_stg__email_campaign_emails_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__stores_app_key": {"name": "platform_stg__stores_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__stores/platform_stg__stores.md", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.md", "unique_id": "doc.yoda.platform_stg__stores_app_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__stores_is_active": {"name": "platform_stg__stores_is_active", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__stores/platform_stg__stores.md", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.md", "unique_id": "doc.yoda.platform_stg__stores_is_active", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__stores_is_test": {"name": "platform_stg__stores_is_test", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__stores/platform_stg__stores.md", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.md", "unique_id": "doc.yoda.platform_stg__stores_is_test", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__stores_organization_id": {"name": "platform_stg__stores_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__stores/platform_stg__stores.md", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.md", "unique_id": "doc.yoda.platform_stg__stores_organization_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__stores_store_created_at": {"name": "platform_stg__stores_store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__stores/platform_stg__stores.md", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.md", "unique_id": "doc.yoda.platform_stg__stores_store_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__stores_store_domain": {"name": "platform_stg__stores_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__stores/platform_stg__stores.md", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.md", "unique_id": "doc.yoda.platform_stg__stores_store_domain", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__stores_store_id": {"name": "platform_stg__stores_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__stores/platform_stg__stores.md", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.md", "unique_id": "doc.yoda.platform_stg__stores_store_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__stores_store_language": {"name": "platform_stg__stores_store_language", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__stores/platform_stg__stores.md", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.md", "unique_id": "doc.yoda.platform_stg__stores_store_language", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__stores_store_name": {"name": "platform_stg__stores_store_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__stores/platform_stg__stores.md", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.md", "unique_id": "doc.yoda.platform_stg__stores_store_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__stores_updated_at": {"name": "platform_stg__stores_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__stores/platform_stg__stores.md", "original_file_path": "models/platform/staging/base/platform_stg__stores/platform_stg__stores.md", "unique_id": "doc.yoda.platform_stg__stores_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__subscription_cycle_usages": {"name": "platform_stg__subscription_cycle_usages", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages", "block_contents": "billing subscription cycle usages table"}, "doc.yoda.platform_stg__subscription_cycle_usages_billing_cycle_date": {"name": "platform_stg__subscription_cycle_usages_billing_cycle_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_billing_cycle_date", "block_contents": "billing_cycle_date"}, "doc.yoda.platform_stg__subscription_cycle_usages_carried_paid_usages": {"name": "platform_stg__subscription_cycle_usages_carried_paid_usages", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_carried_paid_usages", "block_contents": "carried_paid_usage"}, "doc.yoda.platform_stg__subscription_cycle_usages_closed_at": {"name": "platform_stg__subscription_cycle_usages_closed_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_closed_at", "block_contents": "closed_at"}, "doc.yoda.platform_stg__subscription_cycle_usages_created_at": {"name": "platform_stg__subscription_cycle_usages_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_created_at", "block_contents": "created_at"}, "doc.yoda.platform_stg__subscription_cycle_usages_id": {"name": "platform_stg__subscription_cycle_usages_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_id", "block_contents": "id"}, "doc.yoda.platform_stg__subscription_cycle_usages_overages_cap": {"name": "platform_stg__subscription_cycle_usages_overages_cap", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_overages_cap", "block_contents": "overages_cap"}, "doc.yoda.platform_stg__subscription_cycle_usages_package_usages_setting_id": {"name": "platform_stg__subscription_cycle_usages_package_usages_setting_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_package_usages_setting_id", "block_contents": "package_usages_setting_id"}, "doc.yoda.platform_stg__subscription_cycle_usages_processing_time": {"name": "platform_stg__subscription_cycle_usages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_processing_time", "block_contents": "processing_time"}, "doc.yoda.platform_stg__subscription_cycle_usages_subscription_provider_id": {"name": "platform_stg__subscription_cycle_usages_subscription_provider_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_subscription_provider_id", "block_contents": "subscription_provider_id"}, "doc.yoda.platform_stg__subscription_cycle_usages_ts_ms": {"name": "platform_stg__subscription_cycle_usages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_ts_ms", "block_contents": "ts_ms"}, "doc.yoda.platform_stg__subscription_cycle_usages_updated_at": {"name": "platform_stg__subscription_cycle_usages_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_updated_at", "block_contents": "updated_at"}, "doc.yoda.platform_stg__subscription_cycle_usages_upsolver_schema_version": {"name": "platform_stg__subscription_cycle_usages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_upsolver_schema_version", "block_contents": "upsolver_schema_version"}, "doc.yoda.platform_stg__subscription_cycle_usages_usages_count": {"name": "platform_stg__subscription_cycle_usages_usages_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_cycle_usages/platform_stg__subscription_cycle_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_cycle_usages_usages_count", "block_contents": "usages_count"}, "doc.yoda.platform_stg__subscription_pending_usages": {"name": "platform_stg__subscription_pending_usages", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages", "block_contents": "billing usges daily - pending records - subscription_pending_usages table"}, "doc.yoda.platform_stg__subscription_pending_usages_created_at": {"name": "platform_stg__subscription_pending_usages_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_exceeded_usages": {"name": "platform_stg__subscription_pending_usages_exceeded_usages", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_exceeded_usages", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_free_usages": {"name": "platform_stg__subscription_pending_usages_free_usages", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_free_usages", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_id": {"name": "platform_stg__subscription_pending_usages_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_package_usages_setting_id": {"name": "platform_stg__subscription_pending_usages_package_usages_setting_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_package_usages_setting_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_paid_amount": {"name": "platform_stg__subscription_pending_usages_paid_amount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_paid_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_paid_usages": {"name": "platform_stg__subscription_pending_usages_paid_usages", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_paid_usages", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_process_completed_at": {"name": "platform_stg__subscription_pending_usages_process_completed_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_process_completed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_process_started_at": {"name": "platform_stg__subscription_pending_usages_process_started_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_process_started_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_processing_time": {"name": "platform_stg__subscription_pending_usages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_provider_charge_id": {"name": "platform_stg__subscription_pending_usages_provider_charge_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_provider_charge_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_subscription_provider_id": {"name": "platform_stg__subscription_pending_usages_subscription_provider_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_subscription_provider_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_ts_ms": {"name": "platform_stg__subscription_pending_usages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_updated_at": {"name": "platform_stg__subscription_pending_usages_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_upsolver_schema_version": {"name": "platform_stg__subscription_pending_usages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_usages_count": {"name": "platform_stg__subscription_pending_usages_usages_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_usages_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_pending_usages_uuid": {"name": "platform_stg__subscription_pending_usages_uuid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_pending_usages/platform_stg__subscription_pending_usages.md", "unique_id": "doc.yoda.platform_stg__subscription_pending_usages_uuid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers": {"name": "platform_stg__subscription_providers", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers", "block_contents": "Billing subscirption record for managed organization/stores per each category."}, "doc.yoda.platform_stg__subscription_providers_app_key": {"name": "platform_stg__subscription_providers_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_category_name": {"name": "platform_stg__subscription_providers_category_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_category_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_created_at": {"name": "platform_stg__subscription_providers_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_deleted_at": {"name": "platform_stg__subscription_providers_deleted_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_deleted_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_external_subscription_metadata": {"name": "platform_stg__subscription_providers_external_subscription_metadata", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_external_subscription_metadata", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_id": {"name": "platform_stg__subscription_providers_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_organization_key": {"name": "platform_stg__subscription_providers_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_organization_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_processing_time": {"name": "platform_stg__subscription_providers_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_provider_type_id": {"name": "platform_stg__subscription_providers_provider_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_provider_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_subscription_status_id": {"name": "platform_stg__subscription_providers_subscription_status_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_subscription_status_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_ts_ms": {"name": "platform_stg__subscription_providers_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_updated_at": {"name": "platform_stg__subscription_providers_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_providers_upsolver_schema_version": {"name": "platform_stg__subscription_providers_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_providers/platform_stg__subscription_providers.md", "unique_id": "doc.yoda.platform_stg__subscription_providers_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_statuses": {"name": "platform_stg__subscription_statuses", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "unique_id": "doc.yoda.platform_stg__subscription_statuses", "block_contents": "Billing statuses of subsciription providers"}, "doc.yoda.platform_stg__subscription_statuses_id": {"name": "platform_stg__subscription_statuses_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "unique_id": "doc.yoda.platform_stg__subscription_statuses_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_statuses_processing_time": {"name": "platform_stg__subscription_statuses_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "unique_id": "doc.yoda.platform_stg__subscription_statuses_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_statuses_status": {"name": "platform_stg__subscription_statuses_status", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "unique_id": "doc.yoda.platform_stg__subscription_statuses_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_statuses_ts_ms": {"name": "platform_stg__subscription_statuses_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "unique_id": "doc.yoda.platform_stg__subscription_statuses_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_statuses_upsolver_schema_version": {"name": "platform_stg__subscription_statuses_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_statuses/platform_stg__subscription_statuses.md", "unique_id": "doc.yoda.platform_stg__subscription_statuses_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_usages_settings": {"name": "platform_stg__subscription_usages_settings", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "unique_id": "doc.yoda.platform_stg__subscription_usages_settings", "block_contents": "Billign subscription usages settings table"}, "doc.yoda.platform_stg__subscription_usages_settings_created_at": {"name": "platform_stg__subscription_usages_settings_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "unique_id": "doc.yoda.platform_stg__subscription_usages_settings_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_usages_settings_id": {"name": "platform_stg__subscription_usages_settings_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "unique_id": "doc.yoda.platform_stg__subscription_usages_settings_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_usages_settings_metric_name": {"name": "platform_stg__subscription_usages_settings_metric_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "unique_id": "doc.yoda.platform_stg__subscription_usages_settings_metric_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_usages_settings_overages_cap": {"name": "platform_stg__subscription_usages_settings_overages_cap", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "unique_id": "doc.yoda.platform_stg__subscription_usages_settings_overages_cap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_usages_settings_processing_time": {"name": "platform_stg__subscription_usages_settings_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "unique_id": "doc.yoda.platform_stg__subscription_usages_settings_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_usages_settings_subscription_provider_id": {"name": "platform_stg__subscription_usages_settings_subscription_provider_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "unique_id": "doc.yoda.platform_stg__subscription_usages_settings_subscription_provider_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_usages_settings_ts_ms": {"name": "platform_stg__subscription_usages_settings_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "unique_id": "doc.yoda.platform_stg__subscription_usages_settings_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_usages_settings_updated_at": {"name": "platform_stg__subscription_usages_settings_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "unique_id": "doc.yoda.platform_stg__subscription_usages_settings_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__subscription_usages_settings_upsolver_schema_version": {"name": "platform_stg__subscription_usages_settings_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__subscription_usages_settings/platform_stg__subscription_usages_settings.md", "unique_id": "doc.yoda.platform_stg__subscription_usages_settings_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__synergies_crud": {"name": "platform_stg__synergies_crud", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "unique_id": "doc.yoda.platform_stg__synergies_crud", "block_contents": "View of product synergies enabled/disabled events"}, "doc.yoda.platform_stg__synergies_crud_created_at": {"name": "platform_stg__synergies_crud_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "unique_id": "doc.yoda.platform_stg__synergies_crud_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__synergies_crud_id": {"name": "platform_stg__synergies_crud_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "unique_id": "doc.yoda.platform_stg__synergies_crud_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__synergies_crud_op": {"name": "platform_stg__synergies_crud_op", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "unique_id": "doc.yoda.platform_stg__synergies_crud_op", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__synergies_crud_processing_time": {"name": "platform_stg__synergies_crud_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "unique_id": "doc.yoda.platform_stg__synergies_crud_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__synergies_crud_status": {"name": "platform_stg__synergies_crud_status", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "unique_id": "doc.yoda.platform_stg__synergies_crud_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__synergies_crud_store_id": {"name": "platform_stg__synergies_crud_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "unique_id": "doc.yoda.platform_stg__synergies_crud_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__synergies_crud_ts_ms": {"name": "platform_stg__synergies_crud_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "unique_id": "doc.yoda.platform_stg__synergies_crud_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__synergies_crud_updated_at": {"name": "platform_stg__synergies_crud_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "unique_id": "doc.yoda.platform_stg__synergies_crud_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__synergies_crud_upsolver_schema_version": {"name": "platform_stg__synergies_crud_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "unique_id": "doc.yoda.platform_stg__synergies_crud_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__synergies_crud_widget_id": {"name": "platform_stg__synergies_crud_widget_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "original_file_path": "models/platform/staging/base/platform_stg__synergies_crud/platform_stg__synergies_crud.md", "unique_id": "doc.yoda.platform_stg__synergies_crud_widget_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__base_timezone_country_mapping": {"name": "platform__base_timezone_country_mapping", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "original_file_path": "models/platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "unique_id": "doc.yoda.platform__base_timezone_country_mapping", "block_contents": ""}, "doc.yoda.platform_stg__timezone_country_mapping_country_code": {"name": "platform_stg__timezone_country_mapping_country_code", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "original_file_path": "models/platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "unique_id": "doc.yoda.platform_stg__timezone_country_mapping_country_code", "block_contents": ""}, "doc.yoda.platform_stg__timezone_country_mapping_country_name": {"name": "platform_stg__timezone_country_mapping_country_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "original_file_path": "models/platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "unique_id": "doc.yoda.platform_stg__timezone_country_mapping_country_name", "block_contents": ""}, "doc.yoda.platform_stg__timezone_country_mapping_dwh_updated_at": {"name": "platform_stg__timezone_country_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "original_file_path": "models/platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "unique_id": "doc.yoda.platform_stg__timezone_country_mapping_dwh_updated_at", "block_contents": ""}, "doc.yoda.platform_stg__timezone_country_mapping_region_name": {"name": "platform_stg__timezone_country_mapping_region_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "original_file_path": "models/platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "unique_id": "doc.yoda.platform_stg__timezone_country_mapping_region_name", "block_contents": ""}, "doc.yoda.platform_stg__timezone_country_mapping_timezone": {"name": "platform_stg__timezone_country_mapping_timezone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "original_file_path": "models/platform/staging/base/platform_stg__timezone_country_mapping/platform_stg__timezone_country_mapping.md", "unique_id": "doc.yoda.platform_stg__timezone_country_mapping_timezone", "block_contents": ""}, "doc.yoda.platform_stg__uninstalled_yotpo": {"name": "platform_stg__uninstalled_yotpo", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__uninstalled_yotpo_accountid": {"name": "platform_stg__uninstalled_yotpo_accountid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_accountid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_adminname": {"name": "platform_stg__uninstalled_yotpo_adminname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_adminname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_anonymous_id": {"name": "platform_stg__uninstalled_yotpo_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_appkey": {"name": "platform_stg__uninstalled_yotpo_appkey", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_billingprovider": {"name": "platform_stg__uninstalled_yotpo_billingprovider", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_billingprovider", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_billingproviders": {"name": "platform_stg__uninstalled_yotpo_billingproviders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_billingproviders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_channel": {"name": "platform_stg__uninstalled_yotpo_channel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_chargeid": {"name": "platform_stg__uninstalled_yotpo_chargeid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_chargeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_chargeprice": {"name": "platform_stg__uninstalled_yotpo_chargeprice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_chargeprice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_chargifybalance": {"name": "platform_stg__uninstalled_yotpo_chargifybalance", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_chargifybalance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_chargifyrevenue": {"name": "platform_stg__uninstalled_yotpo_chargifyrevenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_chargifyrevenue", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_createdat": {"name": "platform_stg__uninstalled_yotpo_createdat", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_createdat", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_creditcardlast4digits": {"name": "platform_stg__uninstalled_yotpo_creditcardlast4digits", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_creditcardlast4digits", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_creditcardtype": {"name": "platform_stg__uninstalled_yotpo_creditcardtype", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_creditcardtype", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_daysindunning": {"name": "platform_stg__uninstalled_yotpo_daysindunning", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_daysindunning", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_daysinvalidfacebooktoken": {"name": "platform_stg__uninstalled_yotpo_daysinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_daysinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_daysinvalidpinteresttoken": {"name": "platform_stg__uninstalled_yotpo_daysinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_daysinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_daysinvalidtwittertoken": {"name": "platform_stg__uninstalled_yotpo_daysinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_daysinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_daystorenewal": {"name": "platform_stg__uninstalled_yotpo_daystorenewal", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_daystorenewal", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_email": {"name": "platform_stg__uninstalled_yotpo_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_event_name": {"name": "platform_stg__uninstalled_yotpo_event_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_groupid": {"name": "platform_stg__uninstalled_yotpo_groupid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_groupid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_intercomuserhash": {"name": "platform_stg__uninstalled_yotpo_intercomuserhash", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_intercomuserhash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_is_desktop": {"name": "platform_stg__uninstalled_yotpo_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_is_mobile": {"name": "platform_stg__uninstalled_yotpo_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_is_tablet": {"name": "platform_stg__uninstalled_yotpo_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isautopublishenabled": {"name": "platform_stg__uninstalled_yotpo_isautopublishenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isautopublishenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isenabledcoupons": {"name": "platform_stg__uninstalled_yotpo_isenabledcoupons", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isenabledcoupons", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isenabledcustomreviews": {"name": "platform_stg__uninstalled_yotpo_isenabledcustomreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isenabledcustomreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isenabledgsr": {"name": "platform_stg__uninstalled_yotpo_isenabledgsr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isenabledgsr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isenabledmap": {"name": "platform_stg__uninstalled_yotpo_isenabledmap", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isenabledmap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isenabledpla": {"name": "platform_stg__uninstalled_yotpo_isenabledpla", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isenabledpla", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isenabledpromotedproductsemail": {"name": "platform_stg__uninstalled_yotpo_isenabledpromotedproductsemail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isenabledpromotedproductsemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isenabledpromotedproductswidget": {"name": "platform_stg__uninstalled_yotpo_isenabledpromotedproductswidget", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isenabledpromotedproductswidget", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isenabledqna": {"name": "platform_stg__uninstalled_yotpo_isenabledqna", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isenabledqna", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isenabledrichsnippets": {"name": "platform_stg__uninstalled_yotpo_isenabledrichsnippets", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isenabledrichsnippets", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishasbadge": {"name": "platform_stg__uninstalled_yotpo_ishasbadge", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishasbadge", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishascomments": {"name": "platform_stg__uninstalled_yotpo_ishascomments", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishascomments", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishasconverttositereview": {"name": "platform_stg__uninstalled_yotpo_ishasconverttositereview", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishasconverttositereview", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishascoupons": {"name": "platform_stg__uninstalled_yotpo_ishascoupons", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishascoupons", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishascsseditor": {"name": "platform_stg__uninstalled_yotpo_ishascsseditor", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishascsseditor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishascustomreviews": {"name": "platform_stg__uninstalled_yotpo_ishascustomreviews", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishascustomreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishasdedicatedpage": {"name": "platform_stg__uninstalled_yotpo_ishasdedicatedpage", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishasdedicatedpage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishasgsr": {"name": "platform_stg__uninstalled_yotpo_ishasgsr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishasgsr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishasnewmainwidgetlayout": {"name": "platform_stg__uninstalled_yotpo_ishasnewmainwidgetlayout", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishasnewmainwidgetlayout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishaspla": {"name": "platform_stg__uninstalled_yotpo_ishaspla", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishaspla", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishaspromotedproductsemail": {"name": "platform_stg__uninstalled_yotpo_ishaspromotedproductsemail", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishaspromotedproductsemail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishaspromotedproductswidget": {"name": "platform_stg__uninstalled_yotpo_ishaspromotedproductswidget", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishaspromotedproductswidget", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishasqna": {"name": "platform_stg__uninstalled_yotpo_ishasqna", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishasqna", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishasreviewscarousel": {"name": "platform_stg__uninstalled_yotpo_ishasreviewscarousel", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishasreviewscarousel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishasreviewstab": {"name": "platform_stg__uninstalled_yotpo_ishasreviewstab", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishasreviewstab", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishasrichsnippets": {"name": "platform_stg__uninstalled_yotpo_ishasrichsnippets", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishasrichsnippets", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishassentmai": {"name": "platform_stg__uninstalled_yotpo_ishassentmai", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishassentmai", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishassentmap": {"name": "platform_stg__uninstalled_yotpo_ishassentmap", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishassentmap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishassentmas": {"name": "platform_stg__uninstalled_yotpo_ishassentmas", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishassentmas", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishassentsitereminder": {"name": "platform_stg__uninstalled_yotpo_ishassentsitereminder", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishassentsitereminder", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishassenttpr": {"name": "platform_stg__uninstalled_yotpo_ishassenttpr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishassenttpr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishassenttsr": {"name": "platform_stg__uninstalled_yotpo_ishassenttsr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishassenttsr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishasshoppableinstagram": {"name": "platform_stg__uninstalled_yotpo_ishasshoppableinstagram", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishasshoppableinstagram", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishassocialpush": {"name": "platform_stg__uninstalled_yotpo_ishassocialpush", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishassocialpush", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishasstarrating": {"name": "platform_stg__uninstalled_yotpo_ishasstarrating", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishasstarrating", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishastpr": {"name": "platform_stg__uninstalled_yotpo_ishastpr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishastpr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ishastsr": {"name": "platform_stg__uninstalled_yotpo_ishastsr", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ishastsr", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidfacebooktoken": {"name": "platform_stg__uninstalled_yotpo_isinvalidfacebooktoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidfacebooktoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidfacebooktokendate": {"name": "platform_stg__uninstalled_yotpo_isinvalidfacebooktokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidfacebooktokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidpinteresttoken": {"name": "platform_stg__uninstalled_yotpo_isinvalidpinteresttoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidpinteresttoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidpinteresttokendate": {"name": "platform_stg__uninstalled_yotpo_isinvalidpinteresttokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidpinteresttokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidtwittertoken": {"name": "platform_stg__uninstalled_yotpo_isinvalidtwittertoken", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidtwittertoken", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidtwittertokendate": {"name": "platform_stg__uninstalled_yotpo_isinvalidtwittertokendate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isinvalidtwittertokendate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_ismapcustomfieldsenabled": {"name": "platform_stg__uninstalled_yotpo_ismapcustomfieldsenabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_ismapcustomfieldsenabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isnewslettersubscribed": {"name": "platform_stg__uninstalled_yotpo_isnewslettersubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isnewslettersubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isreceivesentimentnotification": {"name": "platform_stg__uninstalled_yotpo_isreceivesentimentnotification", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isreceivesentimentnotification", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isreviewswidgetinstalled": {"name": "platform_stg__uninstalled_yotpo_isreviewswidgetinstalled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isreviewswidgetinstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_issystemnotificationssubscribed": {"name": "platform_stg__uninstalled_yotpo_issystemnotificationssubscribed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_issystemnotificationssubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isuserscountlimitreached": {"name": "platform_stg__uninstalled_yotpo_isuserscountlimitreached", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isuserscountlimitreached", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_isusingpackagesservice": {"name": "platform_stg__uninstalled_yotpo_isusingpackagesservice", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_isusingpackagesservice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_lastconversionordertime": {"name": "platform_stg__uninstalled_yotpo_lastconversionordertime", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_lastconversionordertime", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_library_name": {"name": "platform_stg__uninstalled_yotpo_library_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_locale": {"name": "platform_stg__uninstalled_yotpo_locale", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_message_id": {"name": "platform_stg__uninstalled_yotpo_message_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_name": {"name": "platform_stg__uninstalled_yotpo_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_nameoncreditcard": {"name": "platform_stg__uninstalled_yotpo_nameoncreditcard", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_nameoncreditcard", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_nextchargedate": {"name": "platform_stg__uninstalled_yotpo_nextchargedate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_nextchargedate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_package": {"name": "platform_stg__uninstalled_yotpo_package", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_packagecategories": {"name": "platform_stg__uninstalled_yotpo_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_packageextensions": {"name": "platform_stg__uninstalled_yotpo_packageextensions", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_packageextensions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_page_path": {"name": "platform_stg__uninstalled_yotpo_page_path", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_page_referrer": {"name": "platform_stg__uninstalled_yotpo_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_page_title": {"name": "platform_stg__uninstalled_yotpo_page_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_page_url": {"name": "platform_stg__uninstalled_yotpo_page_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_partition_date": {"name": "platform_stg__uninstalled_yotpo_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_paysvia": {"name": "platform_stg__uninstalled_yotpo_paysvia", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_paysvia", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_pendingrrs": {"name": "platform_stg__uninstalled_yotpo_pendingrrs", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_pendingrrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_phone": {"name": "platform_stg__uninstalled_yotpo_phone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_pixelversion": {"name": "platform_stg__uninstalled_yotpo_pixelversion", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_pixelversion", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_planname": {"name": "platform_stg__uninstalled_yotpo_planname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_planname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_platform": {"name": "platform_stg__uninstalled_yotpo_platform", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_processing_time": {"name": "platform_stg__uninstalled_yotpo_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_recurringpaymentinterval": {"name": "platform_stg__uninstalled_yotpo_recurringpaymentinterval", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_recurringpaymentinterval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_renewaldate": {"name": "platform_stg__uninstalled_yotpo_renewaldate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_renewaldate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_role": {"name": "platform_stg__uninstalled_yotpo_role", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_rrmonthlylimit": {"name": "platform_stg__uninstalled_yotpo_rrmonthlylimit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_rrmonthlylimit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_rrssentinbillingcycle": {"name": "platform_stg__uninstalled_yotpo_rrssentinbillingcycle", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_rrssentinbillingcycle", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_signupcountry": {"name": "platform_stg__uninstalled_yotpo_signupcountry", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_signupcountry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_signupmonthlyorderscount": {"name": "platform_stg__uninstalled_yotpo_signupmonthlyorderscount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_signupmonthlyorderscount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_signupphone": {"name": "platform_stg__uninstalled_yotpo_signupphone", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_signupphone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_signuputmcampaign": {"name": "platform_stg__uninstalled_yotpo_signuputmcampaign", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_signuputmcampaign", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_signuputmmedium": {"name": "platform_stg__uninstalled_yotpo_signuputmmedium", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_signuputmmedium", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_signuputmsource": {"name": "platform_stg__uninstalled_yotpo_signuputmsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_signuputmsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_storecount": {"name": "platform_stg__uninstalled_yotpo_storecount", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_storecount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_storedomain": {"name": "platform_stg__uninstalled_yotpo_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_subscriptionstate": {"name": "platform_stg__uninstalled_yotpo_subscriptionstate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_subscriptionstate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_timestamp": {"name": "platform_stg__uninstalled_yotpo_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_traits_email": {"name": "platform_stg__uninstalled_yotpo_traits_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_traits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_traits_name": {"name": "platform_stg__uninstalled_yotpo_traits_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_traits_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_traits_plan": {"name": "platform_stg__uninstalled_yotpo_traits_plan", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_traits_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_uninstallsource": {"name": "platform_stg__uninstalled_yotpo_uninstallsource", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_uninstallsource", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_upsolver_schema_version": {"name": "platform_stg__uninstalled_yotpo_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_user_id": {"name": "platform_stg__uninstalled_yotpo_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_userid": {"name": "platform_stg__uninstalled_yotpo_userid", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_violated_event": {"name": "platform_stg__uninstalled_yotpo_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_website": {"name": "platform_stg__uninstalled_yotpo_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_website", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_yotpoproductscore": {"name": "platform_stg__uninstalled_yotpo_yotpoproductscore", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_yotpoproductscore", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__uninstalled_yotpo_yotpoproductscorev2": {"name": "platform_stg__uninstalled_yotpo_yotpoproductscorev2", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "original_file_path": "models/platform/staging/base/platform_stg__uninstalled_yotpo/platform_stg__uninstalled_yotpo.md", "unique_id": "doc.yoda.platform_stg__uninstalled_yotpo_yotpoproductscorev2", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages": {"name": "platform_stg__usages", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages", "block_contents": "Billing usages that were added by product lines"}, "doc.yoda.platform_stg__usages_backfill": {"name": "platform_stg__usages_backfill", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_backfill", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_category_name": {"name": "platform_stg__usages_category_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_category_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_created_at": {"name": "platform_stg__usages_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_description": {"name": "platform_stg__usages_description", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_id": {"name": "platform_stg__usages_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_metric_name": {"name": "platform_stg__usages_metric_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_metric_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_organization_key": {"name": "platform_stg__usages_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_organization_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_package_name": {"name": "platform_stg__usages_package_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_package_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_processing_time": {"name": "platform_stg__usages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_store_id": {"name": "platform_stg__usages_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_subscription_pending_usage_id": {"name": "platform_stg__usages_subscription_pending_usage_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_subscription_pending_usage_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_ts_ms": {"name": "platform_stg__usages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_units": {"name": "platform_stg__usages_units", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_units", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_updated_at": {"name": "platform_stg__usages_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_upsolver_schema_version": {"name": "platform_stg__usages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_usage_external_id": {"name": "platform_stg__usages_usage_external_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages/platform_stg__usages.md", "original_file_path": "models/platform/staging/base/platform_stg__usages/platform_stg__usages.md", "unique_id": "doc.yoda.platform_stg__usages_usage_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history": {"name": "platform_stg__usages_history", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history", "block_contents": "Billing all history of usages that were added to billing by product lines"}, "doc.yoda.platform_stg__usages_history_backfill": {"name": "platform_stg__usages_history_backfill", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_backfill", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_category_name": {"name": "platform_stg__usages_history_category_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_category_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_created_at": {"name": "platform_stg__usages_history_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_description": {"name": "platform_stg__usages_history_description", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_id": {"name": "platform_stg__usages_history_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_is_deleted": {"name": "platform_stg__usages_history_is_deleted", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_is_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_metric_name": {"name": "platform_stg__usages_history_metric_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_metric_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_organization_key": {"name": "platform_stg__usages_history_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_organization_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_package_name": {"name": "platform_stg__usages_history_package_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_package_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_processing_time": {"name": "platform_stg__usages_history_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_store_id": {"name": "platform_stg__usages_history_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_subscription_pending_usage_id": {"name": "platform_stg__usages_history_subscription_pending_usage_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_subscription_pending_usage_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_ts_ms": {"name": "platform_stg__usages_history_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_units": {"name": "platform_stg__usages_history_units", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_units", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_updated_at": {"name": "platform_stg__usages_history_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_upsolver_schema_version": {"name": "platform_stg__usages_history_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_history_usage_external_id": {"name": "platform_stg__usages_history_usage_external_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_history/platform_stg__usages_history.md", "unique_id": "doc.yoda.platform_stg__usages_history_usage_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_tiers_settings": {"name": "platform_stg__usages_tiers_settings", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "unique_id": "doc.yoda.platform_stg__usages_tiers_settings", "block_contents": "Billing usages tiers settings"}, "doc.yoda.platform_stg__usages_tiers_settings_created_at": {"name": "platform_stg__usages_tiers_settings_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "unique_id": "doc.yoda.platform_stg__usages_tiers_settings_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_tiers_settings_id": {"name": "platform_stg__usages_tiers_settings_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "unique_id": "doc.yoda.platform_stg__usages_tiers_settings_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_tiers_settings_max_limit": {"name": "platform_stg__usages_tiers_settings_max_limit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "unique_id": "doc.yoda.platform_stg__usages_tiers_settings_max_limit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_tiers_settings_min_limit": {"name": "platform_stg__usages_tiers_settings_min_limit", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "unique_id": "doc.yoda.platform_stg__usages_tiers_settings_min_limit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_tiers_settings_package_usages_setting_id": {"name": "platform_stg__usages_tiers_settings_package_usages_setting_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "unique_id": "doc.yoda.platform_stg__usages_tiers_settings_package_usages_setting_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_tiers_settings_per_unit_price": {"name": "platform_stg__usages_tiers_settings_per_unit_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "unique_id": "doc.yoda.platform_stg__usages_tiers_settings_per_unit_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_tiers_settings_processing_time": {"name": "platform_stg__usages_tiers_settings_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "unique_id": "doc.yoda.platform_stg__usages_tiers_settings_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_tiers_settings_ts_ms": {"name": "platform_stg__usages_tiers_settings_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "unique_id": "doc.yoda.platform_stg__usages_tiers_settings_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_tiers_settings_updated_at": {"name": "platform_stg__usages_tiers_settings_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "unique_id": "doc.yoda.platform_stg__usages_tiers_settings_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__usages_tiers_settings_upsolver_schema_version": {"name": "platform_stg__usages_tiers_settings_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "original_file_path": "models/platform/staging/base/platform_stg__usages_tiers_settings/platform_stg__usages_tiers_settings.md", "unique_id": "doc.yoda.platform_stg__usages_tiers_settings_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations": {"name": "platform_stg__users_organizations", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations", "block_contents": "Junction table between users and organizations."}, "doc.yoda.platform_stg__users_organizations_add_to_future_stores": {"name": "platform_stg__users_organizations_add_to_future_stores", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_add_to_future_stores", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations_created_at": {"name": "platform_stg__users_organizations_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations_default_role_id": {"name": "platform_stg__users_organizations_default_role_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_default_role_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations_deleted_from_organization": {"name": "platform_stg__users_organizations_deleted_from_organization", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_deleted_from_organization", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations_id": {"name": "platform_stg__users_organizations_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations_invites_counter": {"name": "platform_stg__users_organizations_invites_counter", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_invites_counter", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations_organization_id": {"name": "platform_stg__users_organizations_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_organization_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations_processing_time": {"name": "platform_stg__users_organizations_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations_ts_ms": {"name": "platform_stg__users_organizations_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations_updated_at": {"name": "platform_stg__users_organizations_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations_upsolver_schema_version": {"name": "platform_stg__users_organizations_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__users_organizations_user_id": {"name": "platform_stg__users_organizations_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "original_file_path": "models/platform/staging/base/platform_stg__users_organizations/platform_stg__users_organizations.md", "unique_id": "doc.yoda.platform_stg__users_organizations_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform__base_variants": {"name": "platform__base_variants", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform__base_variants", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__variants_compare_at_price": {"name": "platform_stg__variants_compare_at_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_compare_at_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_created_at": {"name": "platform_stg__variants_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_currency": {"name": "platform_stg__variants_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_custom_properties": {"name": "platform_stg__variants_custom_properties", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_custom_properties", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_description": {"name": "platform_stg__variants_description", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_external_created_at": {"name": "platform_stg__variants_external_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_external_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_external_id": {"name": "platform_stg__variants_external_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_external_updated_at": {"name": "platform_stg__variants_external_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_external_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_id": {"name": "platform_stg__variants_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_inventory_quantity": {"name": "platform_stg__variants_inventory_quantity", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_inventory_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_is_discontinued": {"name": "platform_stg__variants_is_discontinued", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_is_discontinued", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_is_valid_url_format": {"name": "platform_stg__variants_is_valid_url_format", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_is_valid_url_format", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_name": {"name": "platform_stg__variants_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_price": {"name": "platform_stg__variants_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_processing_time": {"name": "platform_stg__variants_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_product_id": {"name": "platform_stg__variants_product_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_sku": {"name": "platform_stg__variants_sku", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_ts_ms": {"name": "platform_stg__variants_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_updated_at": {"name": "platform_stg__variants_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_upsolver_schema_version": {"name": "platform_stg__variants_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__variants_url": {"name": "platform_stg__variants_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__variants/platform_stg__variants.md", "original_file_path": "models/platform/staging/base/platform_stg__variants/platform_stg__variants.md", "unique_id": "doc.yoda.platform_stg__variants_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widget_configurations": {"name": "platform_stg__widget_configurations", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "original_file_path": "models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "unique_id": "doc.yoda.platform_stg__widget_configurations", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__widget_configurations_configuration_key": {"name": "platform_stg__widget_configurations_configuration_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "original_file_path": "models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "unique_id": "doc.yoda.platform_stg__widget_configurations_configuration_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widget_configurations_created_at": {"name": "platform_stg__widget_configurations_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "original_file_path": "models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "unique_id": "doc.yoda.platform_stg__widget_configurations_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widget_configurations_id": {"name": "platform_stg__widget_configurations_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "original_file_path": "models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "unique_id": "doc.yoda.platform_stg__widget_configurations_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widget_configurations_processing_time": {"name": "platform_stg__widget_configurations_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "original_file_path": "models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "unique_id": "doc.yoda.platform_stg__widget_configurations_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widget_configurations_ts_ms": {"name": "platform_stg__widget_configurations_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "original_file_path": "models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "unique_id": "doc.yoda.platform_stg__widget_configurations_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widget_configurations_updated_at": {"name": "platform_stg__widget_configurations_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "original_file_path": "models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "unique_id": "doc.yoda.platform_stg__widget_configurations_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widget_configurations_upsolver_schema_version": {"name": "platform_stg__widget_configurations_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "original_file_path": "models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "unique_id": "doc.yoda.platform_stg__widget_configurations_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widget_configurations_value": {"name": "platform_stg__widget_configurations_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "original_file_path": "models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "unique_id": "doc.yoda.platform_stg__widget_configurations_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widget_configurations_widget_id": {"name": "platform_stg__widget_configurations_widget_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "original_file_path": "models/platform/staging/base/platform_stg__widget_configurations/platform_stg__widget_configurations.md", "unique_id": "doc.yoda.platform_stg__widget_configurations_widget_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widgets": {"name": "platform_stg__widgets", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "unique_id": "doc.yoda.platform_stg__widgets", "block_contents": "View of yotpo home screen widgets"}, "doc.yoda.platform_stg__widgets_created_at": {"name": "platform_stg__widgets_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "unique_id": "doc.yoda.platform_stg__widgets_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widgets_id": {"name": "platform_stg__widgets_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "unique_id": "doc.yoda.platform_stg__widgets_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widgets_processing_time": {"name": "platform_stg__widgets_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "unique_id": "doc.yoda.platform_stg__widgets_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widgets_product_line_id": {"name": "platform_stg__widgets_product_line_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "unique_id": "doc.yoda.platform_stg__widgets_product_line_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widgets_product_line_section_id": {"name": "platform_stg__widgets_product_line_section_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "unique_id": "doc.yoda.platform_stg__widgets_product_line_section_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widgets_section_id": {"name": "platform_stg__widgets_section_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "unique_id": "doc.yoda.platform_stg__widgets_section_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widgets_ts_ms": {"name": "platform_stg__widgets_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "unique_id": "doc.yoda.platform_stg__widgets_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widgets_updated_at": {"name": "platform_stg__widgets_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "unique_id": "doc.yoda.platform_stg__widgets_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widgets_upsolver_schema_version": {"name": "platform_stg__widgets_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "unique_id": "doc.yoda.platform_stg__widgets_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__widgets_widget_key": {"name": "platform_stg__widgets_widget_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "original_file_path": "models/platform/staging/base/platform_stg__widgets/platform_stg__widgets.md", "unique_id": "doc.yoda.platform_stg__widgets_widget_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.platform_stg__all_accounts_account_type_id": {"name": "platform_stg__all_accounts_account_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_account_type_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_app_key": {"name": "platform_stg__all_accounts_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_app_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_auto_login_popup": {"name": "platform_stg__all_accounts_auto_login_popup", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_auto_login_popup", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_auto_social_push": {"name": "platform_stg__all_accounts_auto_social_push", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_auto_social_push", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_bottom_line_installed": {"name": "platform_stg__all_accounts_bottom_line_installed", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_bottom_line_installed", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_callback_url": {"name": "platform_stg__all_accounts_callback_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_callback_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_category_id": {"name": "platform_stg__all_accounts_category_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_category_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_coupons_expiration_date": {"name": "platform_stg__all_accounts_coupons_expiration_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_coupons_expiration_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_created_at": {"name": "platform_stg__all_accounts_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_custom_design": {"name": "platform_stg__all_accounts_custom_design", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_custom_design", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_custom_platform_name": {"name": "platform_stg__all_accounts_custom_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_custom_platform_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_customer_language": {"name": "platform_stg__all_accounts_customer_language", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_customer_language", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_customer_mails_sender_name": {"name": "platform_stg__all_accounts_customer_mails_sender_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_customer_mails_sender_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_domain": {"name": "platform_stg__all_accounts_domain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_domain", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_id": {"name": "platform_stg__all_accounts_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_install_step": {"name": "platform_stg__all_accounts_install_step", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_install_step", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_is_active": {"name": "platform_stg__all_accounts_is_active", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_is_active", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_is_auto_publish": {"name": "platform_stg__all_accounts_is_auto_publish", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_is_auto_publish", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_is_test": {"name": "platform_stg__all_accounts_is_test", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_is_test", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_map_up_sell_title": {"name": "platform_stg__all_accounts_map_up_sell_title", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_map_up_sell_title", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_minisite_cname": {"name": "platform_stg__all_accounts_minisite_cname", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_minisite_cname", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_minisite_subdomain": {"name": "platform_stg__all_accounts_minisite_subdomain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_minisite_subdomain", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_minisite_subdomain_active": {"name": "platform_stg__all_accounts_minisite_subdomain_active", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_minisite_subdomain_active", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_minisite_website": {"name": "platform_stg__all_accounts_minisite_website", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_minisite_website", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_minisite_website_name": {"name": "platform_stg__all_accounts_minisite_website_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_minisite_website_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_name": {"name": "platform_stg__all_accounts_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_organization_id": {"name": "platform_stg__all_accounts_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_organization_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_partner_key": {"name": "platform_stg__all_accounts_partner_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_partner_key", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_referal": {"name": "platform_stg__all_accounts_referal", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_referal", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_reviews_me_account_description": {"name": "platform_stg__all_accounts_reviews_me_account_description", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_reviews_me_account_description", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_reviews_me_account_name": {"name": "platform_stg__all_accounts_reviews_me_account_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_reviews_me_account_name", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_reviews_me_crawlable": {"name": "platform_stg__all_accounts_reviews_me_crawlable", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_reviews_me_crawlable", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_secret": {"name": "platform_stg__all_accounts_secret", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_secret", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_slug": {"name": "platform_stg__all_accounts_slug", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_slug", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_support_url": {"name": "platform_stg__all_accounts_support_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_support_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_updated_at": {"name": "platform_stg__all_accounts_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_accounts_url": {"name": "platform_stg__all_accounts_url", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_accounts/platform_stg__all_accounts.md", "unique_id": "doc.yoda.platform_stg__all_accounts_url", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_apps_account_id": {"name": "platform_stg__all_apps_account_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "unique_id": "doc.yoda.platform_stg__all_apps_account_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_apps_created_at": {"name": "platform_stg__all_apps_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "unique_id": "doc.yoda.platform_stg__all_apps_created_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_apps_disabled": {"name": "platform_stg__all_apps_disabled", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "unique_id": "doc.yoda.platform_stg__all_apps_disabled", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_apps_id": {"name": "platform_stg__all_apps_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "unique_id": "doc.yoda.platform_stg__all_apps_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_apps_moderator_role_id": {"name": "platform_stg__all_apps_moderator_role_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "unique_id": "doc.yoda.platform_stg__all_apps_moderator_role_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_apps_processing_time": {"name": "platform_stg__all_apps_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "unique_id": "doc.yoda.platform_stg__all_apps_processing_time", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_apps_ts_ms": {"name": "platform_stg__all_apps_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "unique_id": "doc.yoda.platform_stg__all_apps_ts_ms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_apps_updated_at": {"name": "platform_stg__all_apps_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "unique_id": "doc.yoda.platform_stg__all_apps_updated_at", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_apps_upsolver_schema_version": {"name": "platform_stg__all_apps_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "unique_id": "doc.yoda.platform_stg__all_apps_upsolver_schema_version", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__all_apps_user_id": {"name": "platform_stg__all_apps_user_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__all_apps/platform_stg__all_apps.md", "unique_id": "doc.yoda.platform_stg__all_apps_user_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__customer_dimensions_brand_affection": {"name": "platform_stg__customer_dimensions_brand_affection", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_brand_affection", "block_contents": "The brand affection dimension of every customer"}, "doc.yoda.platform_stg__customer_dimensions_brand_affection_brand_affection": {"name": "platform_stg__customer_dimensions_brand_affection_brand_affection", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_brand_affection_brand_affection", "block_contents": "The brand affection category"}, "doc.yoda.platform_stg__customer_dimensions_brand_affection_brand_affection_rank": {"name": "platform_stg__customer_dimensions_brand_affection_brand_affection_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_brand_affection_brand_affection_rank", "block_contents": "The brand affection rank from 0 to 4"}, "doc.yoda.platform_stg__customer_dimensions_brand_affection_customer_id": {"name": "platform_stg__customer_dimensions_brand_affection_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection/platform_stg__customer_dimensions_brand_affection.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_brand_affection_customer_id", "block_contents": "The unique customer id"}, "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc": {"name": "platform_stg__customer_dimensions_brand_affection_inc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc", "block_contents": "The brand affection dimension of every customer"}, "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc_app_key": {"name": "platform_stg__customer_dimensions_brand_affection_inc_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc_app_key", "block_contents": "The store id"}, "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc_brand_affection": {"name": "platform_stg__customer_dimensions_brand_affection_inc_brand_affection", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc_brand_affection", "block_contents": "The brand affection category"}, "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc_brand_affection_rank": {"name": "platform_stg__customer_dimensions_brand_affection_inc_brand_affection_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc_brand_affection_rank", "block_contents": "The brand affection rank from 0 to 4"}, "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc_customer_id": {"name": "platform_stg__customer_dimensions_brand_affection_inc_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc_customer_id", "block_contents": "The unique customer id"}, "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc_date": {"name": "platform_stg__customer_dimensions_brand_affection_inc_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_brand_affection_inc/platform_stg__customer_dimensions_brand_affection_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_brand_affection_inc_date", "block_contents": "The date of segmentation"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics": {"name": "platform_stg__customer_dimensions_business_metrics", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics", "block_contents": "This table holds the business metrics for the customer dimensions snapshot table"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_app_key": {"name": "platform_stg__customer_dimensions_business_metrics_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_app_key", "block_contents": "The store id of the merchant"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_30d": {"name": "platform_stg__customer_dimensions_business_metrics_avg_order_value_30d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_30d", "block_contents": "The average order value in the last 30 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_30d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_avg_order_value_30d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_30d_trend", "block_contents": "The average order value in the period of 30 to 60 days ago"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_365d": {"name": "platform_stg__customer_dimensions_business_metrics_avg_order_value_365d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_365d", "block_contents": "The average order value in the last 365 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_365d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_avg_order_value_365d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_365d_trend", "block_contents": "The average order value in the period of 365 to 730 days ago"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_7d": {"name": "platform_stg__customer_dimensions_business_metrics_avg_order_value_7d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_7d", "block_contents": "The average order value in the last 7 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_7d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_avg_order_value_7d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_7d_trend", "block_contents": "The average order value in the period of 7 to 14 days ago"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_90d": {"name": "platform_stg__customer_dimensions_business_metrics_avg_order_value_90d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_90d", "block_contents": "The average order value in the last 90 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_90d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_avg_order_value_90d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_order_value_90d_trend", "block_contents": "The average time between orders in seconds in the last 90 to 180 days ago"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_30d": {"name": "platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_30d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_30d", "block_contents": "The average time between orders in seconds in the last 30 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_30d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_30d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_30d_trend", "block_contents": "The average time between orders in seconds in the period of 30 to 60 days ago"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_365d": {"name": "platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_365d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_365d", "block_contents": "The average time between orders in seconds in the last 365 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_365d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_365d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_365d_trend", "block_contents": "The average time between orders in seconds in the period of 365 to 730 days ago"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_7d": {"name": "platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_7d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_7d", "block_contents": "The average time between orders in seconds in the last 7 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_7d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_7d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_7d_trend", "block_contents": "The average time between orders in seconds in the period of 7 to 14 days ago"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_90d": {"name": "platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_90d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_90d", "block_contents": "The average time between orders in seconds in the last 90 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_90d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_90d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_avg_time_between_orders_90d_trend", "block_contents": "The average time between orders in seconds in the period of 90 to 180 days ago"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_customer_id": {"name": "platform_stg__customer_dimensions_business_metrics_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_customer_id", "block_contents": "The customer id"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_last_order_timestamp": {"name": "platform_stg__customer_dimensions_business_metrics_last_order_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_last_order_timestamp", "block_contents": "The timestamp of the last order of the customer"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_30d": {"name": "platform_stg__customer_dimensions_business_metrics_num_orders_30d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_30d", "block_contents": "The number of orders in the last 30 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_30d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_num_orders_30d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_30d_trend", "block_contents": "The number of orders in the period of 30 to 60 days ago"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_365d": {"name": "platform_stg__customer_dimensions_business_metrics_num_orders_365d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_365d", "block_contents": "The number of orders in the last 365 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_365d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_num_orders_365d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_365d_trend", "block_contents": "The number of orders in the period of 365 to 730 days ago"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_7d": {"name": "platform_stg__customer_dimensions_business_metrics_num_orders_7d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_7d", "block_contents": "The number of orders in the last 7 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_7d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_num_orders_7d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_7d_trend", "block_contents": "The number of orders in the period of 7 to 14 days ago"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_90d": {"name": "platform_stg__customer_dimensions_business_metrics_num_orders_90d", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_90d", "block_contents": "The number of orders in the last 90 days"}, "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_90d_trend": {"name": "platform_stg__customer_dimensions_business_metrics_num_orders_90d_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_business_metrics/platform_stg__customer_dimensions_business_metrics.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_business_metrics_num_orders_90d_trend", "block_contents": "The number of orders in the period of 90 to 180 days ago"}, "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material": {"name": "platform_stg__customer_dimensions_engagement_marketing_material", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material", "block_contents": "This table holds the dimension score of a customer for the engagement marketing material dimension"}, "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_customer_id": {"name": "platform_stg__customer_dimensions_engagement_marketing_material_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_customer_id", "block_contents": "The customer id"}, "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material": {"name": "platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material", "block_contents": "The dimension score (e.g. unsubscribed, non an sms user, ignores, engaging, highly engaged)"}, "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank": {"name": "platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material/platform_stg__customer_dimensions_engagement_marketing_material.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank", "block_contents": "The dimension rank from 0 to 5"}, "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc": {"name": "platform_stg__customer_dimensions_engagement_marketing_material_inc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc", "block_contents": "This table holds the dimension score of a customer for the engagement marketing material dimension for each date an event occured"}, "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc_app_key": {"name": "platform_stg__customer_dimensions_engagement_marketing_material_inc_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc_app_key", "block_contents": "The store id"}, "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc_customer_id": {"name": "platform_stg__customer_dimensions_engagement_marketing_material_inc_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc_customer_id", "block_contents": "The profile id"}, "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc_date": {"name": "platform_stg__customer_dimensions_engagement_marketing_material_inc_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc_date", "block_contents": "The date of segmentation"}, "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc_engagement_with_marketing_material": {"name": "platform_stg__customer_dimensions_engagement_marketing_material_inc_engagement_with_marketing_material", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc_engagement_with_marketing_material", "block_contents": "The dimension score (e.g. unsubscribed, non an sms user, ignores, engaging, highly engaged)"}, "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc_engagement_with_marketing_material_rank": {"name": "platform_stg__customer_dimensions_engagement_marketing_material_inc_engagement_with_marketing_material_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_engagement_marketing_material_inc/platform_stg__customer_dimensions_engagement_marketing_material_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc_engagement_with_marketing_material_rank", "block_contents": "The dimension rank from 0 to 5"}, "doc.yoda.platform_stg__customer_dimensions_loyalty_program": {"name": "platform_stg__customer_dimensions_loyalty_program", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_loyalty_program", "block_contents": "This table holds the dimension score of a customer for the loyalty program dimension"}, "doc.yoda.platform_stg__customer_dimensions_loyalty_program_customer_id": {"name": "platform_stg__customer_dimensions_loyalty_program_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_loyalty_program_customer_id", "block_contents": "The customer id"}, "doc.yoda.platform_stg__customer_dimensions_loyalty_program_loyalty_rank": {"name": "platform_stg__customer_dimensions_loyalty_program_loyalty_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_loyalty_program_loyalty_rank", "block_contents": "The loyalty tier rank (taken the int value of the vipTierRank field without transformation)"}, "doc.yoda.platform_stg__customer_dimensions_loyalty_program_loyalty_tier": {"name": "platform_stg__customer_dimensions_loyalty_program_loyalty_tier", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program/platform_stg__customer_dimensions_loyalty_program.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_loyalty_program_loyalty_tier", "block_contents": "The loyalty tier name (taken the string value of the vipTierName field with trailing spaces removed)"}, "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc": {"name": "platform_stg__customer_dimensions_loyalty_program_inc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc", "block_contents": "This table holds the dimension score of a customer for the loyalty program dimension for every date there is a loyalty change"}, "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc_app_key": {"name": "platform_stg__customer_dimensions_loyalty_program_inc_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc_app_key", "block_contents": "The store id"}, "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc_customer_id": {"name": "platform_stg__customer_dimensions_loyalty_program_inc_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc_customer_id", "block_contents": "The profile id"}, "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc_date": {"name": "platform_stg__customer_dimensions_loyalty_program_inc_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc_date", "block_contents": "The date of segmentation"}, "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc_loyalty_rank": {"name": "platform_stg__customer_dimensions_loyalty_program_inc_loyalty_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc_loyalty_rank", "block_contents": "The loyalty tier rank (taken the int value of the vipTierRank field without transformation)"}, "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc_loyalty_tier": {"name": "platform_stg__customer_dimensions_loyalty_program_inc_loyalty_tier", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_loyalty_program_inc/platform_stg__customer_dimensions_loyalty_program_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_loyalty_program_inc_loyalty_tier", "block_contents": "The loyalty tier name (taken the string value of the vipTierName field with trailing spaces removed)"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers": {"name": "platform_stg__customer_dimensions_returning_buyers", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers", "block_contents": "This table holds the dimension score of a customer for the returning buyes dimension"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_customer_id": {"name": "platform_stg__customer_dimensions_returning_buyers_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_customer_id", "block_contents": "The customer id"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_num_orders": {"name": "platform_stg__customer_dimensions_returning_buyers_num_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_num_orders", "block_contents": "The number of orders"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_returning_buyers": {"name": "platform_stg__customer_dimensions_returning_buyers_returning_buyers", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_returning_buyers", "block_contents": "The dimension score (e.g. prospects, single surchase, repeat purchase, frequent shopper)"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank": {"name": "platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers/platform_stg__customer_dimensions_returning_buyers.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank", "block_contents": "The dimension rank from 0 to 3"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc": {"name": "platform_stg__customer_dimensions_returning_buyers_inc", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc", "block_contents": "This table holds the dimension score of a customer for the returning buyes dimension"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_app_key": {"name": "platform_stg__customer_dimensions_returning_buyers_inc_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_app_key", "block_contents": "The store id"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_avg_time_between_orders": {"name": "platform_stg__customer_dimensions_returning_buyers_inc_avg_time_between_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_avg_time_between_orders", "block_contents": "The average time between orders"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_customer_id": {"name": "platform_stg__customer_dimensions_returning_buyers_inc_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_customer_id", "block_contents": "The customer id"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_date": {"name": "platform_stg__customer_dimensions_returning_buyers_inc_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_date", "block_contents": "The date of segmentation"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_num_orders": {"name": "platform_stg__customer_dimensions_returning_buyers_inc_num_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_num_orders", "block_contents": "The number of orders on the given day"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_returning_buyers": {"name": "platform_stg__customer_dimensions_returning_buyers_inc_returning_buyers", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_returning_buyers", "block_contents": "The dimension score (e.g. prospects, single surchase, repeat purchase, frequent shopper)"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_returning_buyers_rank": {"name": "platform_stg__customer_dimensions_returning_buyers_inc_returning_buyers_rank", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_returning_buyers_rank", "block_contents": "The dimension rank from 0 to 3"}, "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_total_price": {"name": "platform_stg__customer_dimensions_returning_buyers_inc_total_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__customer_dimensions_returning_buyers_inc/platform_stg__customer_dimensions_returning_buyers_inc.md", "unique_id": "doc.yoda.platform_stg__customer_dimensions_returning_buyers_inc_total_price", "block_contents": "The total amount spent on the given day"}, "doc.yoda.platform_stg__digest": {"name": "platform_stg__digest", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest", "block_contents": "Platform play monthly email digest data"}, "doc.yoda.platform_stg__digest_app_key": {"name": "platform_stg__digest_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_app_key", "block_contents": "Account app_key"}, "doc.yoda.platform_stg__digest_email": {"name": "platform_stg__digest_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_email", "block_contents": "User email"}, "doc.yoda.platform_stg__digest_email_attributed_revenue": {"name": "platform_stg__digest_email_attributed_revenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_email_attributed_revenue", "block_contents": "Revenue attributed to the Email product"}, "doc.yoda.platform_stg__digest_email_attributed_revenue_trend": {"name": "platform_stg__digest_email_attributed_revenue_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_email_attributed_revenue_trend", "block_contents": "Trend of the revenue attributed to the Email product"}, "doc.yoda.platform_stg__digest_email_product": {"name": "platform_stg__digest_email_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_email_product", "block_contents": "Has email product flag"}, "doc.yoda.platform_stg__digest_engaged_customers_count": {"name": "platform_stg__digest_engaged_customers_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_engaged_customers_count", "block_contents": "Count of customers in segment 'engaged'"}, "doc.yoda.platform_stg__digest_engaged_customers_count_trend": {"name": "platform_stg__digest_engaged_customers_count_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_engaged_customers_count_trend", "block_contents": "Gworth of count of customers in segment 'engaged'"}, "doc.yoda.platform_stg__digest_engaged_customers_sales": {"name": "platform_stg__digest_engaged_customers_sales", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_engaged_customers_sales", "block_contents": "Revenue of customers in segment 'engaged'"}, "doc.yoda.platform_stg__digest_engaged_customers_sales_trend": {"name": "platform_stg__digest_engaged_customers_sales_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_engaged_customers_sales_trend", "block_contents": "Growth of revenue of customers in segment 'engaged'"}, "doc.yoda.platform_stg__digest_id": {"name": "platform_stg__digest_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_id", "block_contents": "User id"}, "doc.yoda.platform_stg__digest_is_high_touch": {"name": "platform_stg__digest_is_high_touch", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_is_high_touch", "block_contents": "Is high touch flag"}, "doc.yoda.platform_stg__digest_loyalty_attributed_revenue": {"name": "platform_stg__digest_loyalty_attributed_revenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_loyalty_attributed_revenue", "block_contents": "Revenue attributed to the Loyalty product"}, "doc.yoda.platform_stg__digest_loyalty_attributed_revenue_trend": {"name": "platform_stg__digest_loyalty_attributed_revenue_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_loyalty_attributed_revenue_trend", "block_contents": "Trend of the revenue attributed to the Loyalty product"}, "doc.yoda.platform_stg__digest_loyalty_product": {"name": "platform_stg__digest_loyalty_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_loyalty_product", "block_contents": "Has loyalty product flag"}, "doc.yoda.platform_stg__digest_new_customers_count": {"name": "platform_stg__digest_new_customers_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_new_customers_count", "block_contents": "Count of customers in segment 'new'"}, "doc.yoda.platform_stg__digest_new_customers_count_trend": {"name": "platform_stg__digest_new_customers_count_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_new_customers_count_trend", "block_contents": "Gworth of count of customers in segment 'new'"}, "doc.yoda.platform_stg__digest_new_customers_sales": {"name": "platform_stg__digest_new_customers_sales", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_new_customers_sales", "block_contents": "Revenue of customers in segment 'new'"}, "doc.yoda.platform_stg__digest_new_customers_sales_trend": {"name": "platform_stg__digest_new_customers_sales_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_new_customers_sales_trend", "block_contents": "Growth of revenue of customers in segment 'new'"}, "doc.yoda.platform_stg__digest_repeating_customers_rate": {"name": "platform_stg__digest_repeating_customers_rate", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_repeating_customers_rate", "block_contents": "Repeating customers [returning + engaged] percentage"}, "doc.yoda.platform_stg__digest_repeating_customers_rate_trend": {"name": "platform_stg__digest_repeating_customers_rate_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_repeating_customers_rate_trend", "block_contents": "Repeating customers [returning + engaged] growth percentage"}, "doc.yoda.platform_stg__digest_repeating_customers_sales": {"name": "platform_stg__digest_repeating_customers_sales", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_repeating_customers_sales", "block_contents": "Sales percentage from repeating customers [returning + engaged]"}, "doc.yoda.platform_stg__digest_repeating_customers_sales_trend": {"name": "platform_stg__digest_repeating_customers_sales_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_repeating_customers_sales_trend", "block_contents": "Growth percentage sales from repeating customers [returning + engaged]"}, "doc.yoda.platform_stg__digest_returning_customers_count": {"name": "platform_stg__digest_returning_customers_count", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_returning_customers_count", "block_contents": "Number of customers in segment 'returning'"}, "doc.yoda.platform_stg__digest_returning_customers_count_trend": {"name": "platform_stg__digest_returning_customers_count_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_returning_customers_count_trend", "block_contents": "Growth of customers in segment 'returning"}, "doc.yoda.platform_stg__digest_returning_customers_sales": {"name": "platform_stg__digest_returning_customers_sales", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_returning_customers_sales", "block_contents": "Revenue from customers in segment 'returning'"}, "doc.yoda.platform_stg__digest_returning_customers_sales_trend": {"name": "platform_stg__digest_returning_customers_sales_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_returning_customers_sales_trend", "block_contents": "Growth percentage of revenue from customers in segment 'returning'"}, "doc.yoda.platform_stg__digest_reviews_attributed_revenue": {"name": "platform_stg__digest_reviews_attributed_revenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_reviews_attributed_revenue", "block_contents": "Revenue attributed to the Reviews product"}, "doc.yoda.platform_stg__digest_reviews_attributed_revenue_trend": {"name": "platform_stg__digest_reviews_attributed_revenue_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_reviews_attributed_revenue_trend", "block_contents": "Trend of the revenue attributed to the Reviews product"}, "doc.yoda.platform_stg__digest_reviews_product": {"name": "platform_stg__digest_reviews_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_reviews_product", "block_contents": "Has reviews product flag"}, "doc.yoda.platform_stg__digest_shop_currency": {"name": "platform_stg__digest_shop_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_shop_currency", "block_contents": "Shop currency of the merchant account"}, "doc.yoda.platform_stg__digest_sms_attributed_revenue": {"name": "platform_stg__digest_sms_attributed_revenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_sms_attributed_revenue", "block_contents": "Revenue attributed to the SMS product"}, "doc.yoda.platform_stg__digest_sms_attributed_revenue_trend": {"name": "platform_stg__digest_sms_attributed_revenue_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_sms_attributed_revenue_trend", "block_contents": "Trend of the revenue attributed to the Sms product"}, "doc.yoda.platform_stg__digest_sms_product": {"name": "platform_stg__digest_sms_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_sms_product", "block_contents": "Has sms product flag"}, "doc.yoda.platform_stg__digest_subscriptions_attributed_revenue": {"name": "platform_stg__digest_subscriptions_attributed_revenue", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_subscriptions_attributed_revenue", "block_contents": "Revenue attributed to the Subscriptions product"}, "doc.yoda.platform_stg__digest_subscriptions_attributed_revenue_trend": {"name": "platform_stg__digest_subscriptions_attributed_revenue_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_subscriptions_attributed_revenue_trend", "block_contents": "Trend of the revenue attributed to the Subscriptions product"}, "doc.yoda.platform_stg__digest_subscriptions_product": {"name": "platform_stg__digest_subscriptions_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest/platform_stg__digest.md", "unique_id": "doc.yoda.platform_stg__digest_subscriptions_product", "block_contents": "Has subscriptions product flag"}, "doc.yoda.platform_stg__digest_accounts": {"name": "platform_stg__digest_accounts", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "unique_id": "doc.yoda.platform_stg__digest_accounts", "block_contents": "Accounts for the platform email digest"}, "doc.yoda.platform_stg__digest_accounts_app_key": {"name": "platform_stg__digest_accounts_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "unique_id": "doc.yoda.platform_stg__digest_accounts_app_key", "block_contents": "Account app key"}, "doc.yoda.platform_stg__digest_accounts_email": {"name": "platform_stg__digest_accounts_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "unique_id": "doc.yoda.platform_stg__digest_accounts_email", "block_contents": "Target user email"}, "doc.yoda.platform_stg__digest_accounts_email_product": {"name": "platform_stg__digest_accounts_email_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "unique_id": "doc.yoda.platform_stg__digest_accounts_email_product", "block_contents": "Email product flag"}, "doc.yoda.platform_stg__digest_accounts_id": {"name": "platform_stg__digest_accounts_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "unique_id": "doc.yoda.platform_stg__digest_accounts_id", "block_contents": "Target user id"}, "doc.yoda.platform_stg__digest_accounts_is_high_touch": {"name": "platform_stg__digest_accounts_is_high_touch", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "unique_id": "doc.yoda.platform_stg__digest_accounts_is_high_touch", "block_contents": "High touch flag"}, "doc.yoda.platform_stg__digest_accounts_loyalty_product": {"name": "platform_stg__digest_accounts_loyalty_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "unique_id": "doc.yoda.platform_stg__digest_accounts_loyalty_product", "block_contents": "Loyalty product flag"}, "doc.yoda.platform_stg__digest_accounts_reviews_product": {"name": "platform_stg__digest_accounts_reviews_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "unique_id": "doc.yoda.platform_stg__digest_accounts_reviews_product", "block_contents": "Reviews product flag"}, "doc.yoda.platform_stg__digest_accounts_sms_product": {"name": "platform_stg__digest_accounts_sms_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "unique_id": "doc.yoda.platform_stg__digest_accounts_sms_product", "block_contents": "Sms product flag"}, "doc.yoda.platform_stg__digest_accounts_subscriptions_product": {"name": "platform_stg__digest_accounts_subscriptions_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__digest_accounts/platform_stg__digest_accounts.md", "unique_id": "doc.yoda.platform_stg__digest_accounts_subscriptions_product", "block_contents": "Subscriptions product flag"}, "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency": {"name": "platform_stg__email_shopify_orders_to_shop_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency", "block_contents": "Contains email attributed orders with currency exchange done with current exchange rates for the date of the order."}, "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency_app_key": {"name": "platform_stg__email_shopify_orders_to_shop_currency_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency_app_key", "block_contents": "Unique identifier of the merchant"}, "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency_order_date": {"name": "platform_stg__email_shopify_orders_to_shop_currency_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency_order_date", "block_contents": "The date of the order"}, "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency_order_id": {"name": "platform_stg__email_shopify_orders_to_shop_currency_order_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency_order_id", "block_contents": "External order id"}, "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency_shop_currency": {"name": "platform_stg__email_shopify_orders_to_shop_currency_shop_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency_shop_currency", "block_contents": "Column containing the shop currency"}, "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency_total_price": {"name": "platform_stg__email_shopify_orders_to_shop_currency_total_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__email_shopify_orders_to_shop_currency/platform_stg__email_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__email_shopify_orders_to_shop_currency_total_price", "block_contents": "Total order price in shop currency"}, "doc.yoda.platform__ic_store_applications": {"name": "platform__ic_store_applications", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "unique_id": "doc.yoda.platform__ic_store_applications", "block_contents": "Table containing partial columns from the original store_applications table"}, "doc.yoda.platform_stg__ic_store_applications_store_id": {"name": "platform_stg__ic_store_applications_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "unique_id": "doc.yoda.platform_stg__ic_store_applications_store_id", "block_contents": "The store id"}, "doc.yoda.platform_stg__ic_store_applications_application_id": {"name": "platform_stg__ic_store_applications_application_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "unique_id": "doc.yoda.platform_stg__ic_store_applications_application_id", "block_contents": "The application id"}, "doc.yoda.platform_stg__ic_store_applications_disconnected_at": {"name": "platform_stg__ic_store_applications_disconnected_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "unique_id": "doc.yoda.platform_stg__ic_store_applications_disconnected_at", "block_contents": "The date when an application was disconnected. NULL if it is connected"}, "doc.yoda.platform_stg__ic_store_applications_created_at": {"name": "platform_stg__ic_store_applications_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "unique_id": "doc.yoda.platform_stg__ic_store_applications_created_at", "block_contents": "The date where the application connection with the store was firstly created"}, "doc.yoda.platform_stg__ic_store_applications_updated_at": {"name": "platform_stg__ic_store_applications_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__ic_store_applications/platform_stg__ic_store_applications.md", "unique_id": "doc.yoda.platform_stg__ic_store_applications_updated_at", "block_contents": "The latest date when a change in the application connection status was made"}, "doc.yoda.platform__integrations_names": {"name": "platform__integrations_names", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__integrations_names/platform_stg__integrations_names.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__integrations_names/platform_stg__integrations_names.md", "unique_id": "doc.yoda.platform__integrations_names", "block_contents": "Table containing applications_id and corresponding name for each application"}, "doc.yoda.platform_stg__integrations_names_application_id": {"name": "platform_stg__integrations_names_application_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__integrations_names/platform_stg__integrations_names.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__integrations_names/platform_stg__integrations_names.md", "unique_id": "doc.yoda.platform_stg__integrations_names_application_id", "block_contents": "An application id"}, "doc.yoda.platform_stg__integrations_names_application_name": {"name": "platform_stg__integrations_names_application_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__integrations_names/platform_stg__integrations_names.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__integrations_names/platform_stg__integrations_names.md", "unique_id": "doc.yoda.platform_stg__integrations_names_application_name", "block_contents": "The corresonding name for an application_id"}, "doc.yoda.platform_stg__merchant_platform_id": {"name": "platform_stg__merchant_platform_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__merchant_platform_id/platform_stg__merchant_platform_id.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__merchant_platform_id/platform_stg__merchant_platform_id.md", "unique_id": "doc.yoda.platform_stg__merchant_platform_id", "block_contents": "Table contains mapping between merchant app_key and his platform_type_id"}, "doc.yoda.platform_stg__merchant_platform_id_app_key": {"name": "platform_stg__merchant_platform_id_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__merchant_platform_id/platform_stg__merchant_platform_id.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__merchant_platform_id/platform_stg__merchant_platform_id.md", "unique_id": "doc.yoda.platform_stg__merchant_platform_id_app_key", "block_contents": "Merchant's unique identifyer"}, "doc.yoda.platform_stg__merchant_platform_id_platform_type_id": {"name": "platform_stg__merchant_platform_id_platform_type_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__merchant_platform_id/platform_stg__merchant_platform_id.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__merchant_platform_id/platform_stg__merchant_platform_id.md", "unique_id": "doc.yoda.platform_stg__merchant_platform_id_platform_type_id", "block_contents": "The id of the platform.\n\n| id | platform_name |\n|-----|-------------------------|\n| 1 | shopify |\n| 2 | general |\n| 3 | bigcommerce |\n| 4 | three_d_cart |\n| 5 | magento |\n| 6 | volusion |\n| 7 | shoppingcartelite |\n| 8 | prestashop |\n| 9 | cscart |\n| 10 | opencart |\n| 11 | ebay |\n| 12 | woocommerce |\n| 13 | storenvy |\n| 14 | etsy |\n| 15 | one_and_one_my_web_site |\n| 16 | wix |\n| 17 | tictail |\n| 18 | eccube |\n| 19 | symphony |\n| 20 | commerce_guys |\n| 21 | go_daddy_commerce |\n| 22 | seoshop |\n| 23 | zepo |\n| 24 | wp_ecommerce |\n| 25 | generic_non_ecommerce |\n| 26 | shoplo |\n| 27 | americommerce |\n| 28 | miva |\n| 29 | pixafy |\n| 30 | ecwid |\n| 31 | magento2 |\n| 32 | volusion2 |\n| 33 | commerce_cloud |\n| 34 | hybris |\n| 35 | amazon |"}, "doc.yoda.platform_stg__merchant_shop_currency": {"name": "platform_stg__merchant_shop_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__merchant_shop_currency/platform_stg__merchant_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__merchant_shop_currency/platform_stg__merchant_shop_currency.md", "unique_id": "doc.yoda.platform_stg__merchant_shop_currency", "block_contents": "Table containing app_key and it's shop currency"}, "doc.yoda.platform_stg__merchant_shop_currency_app_key": {"name": "platform_stg__merchant_shop_currency_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__merchant_shop_currency/platform_stg__merchant_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__merchant_shop_currency/platform_stg__merchant_shop_currency.md", "unique_id": "doc.yoda.platform_stg__merchant_shop_currency_app_key", "block_contents": "Unique merchant identifier"}, "doc.yoda.platform_stg__merchant_shop_currency_shop_currency": {"name": "platform_stg__merchant_shop_currency_shop_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__merchant_shop_currency/platform_stg__merchant_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__merchant_shop_currency/platform_stg__merchant_shop_currency.md", "unique_id": "doc.yoda.platform_stg__merchant_shop_currency_shop_currency", "block_contents": "Currency of merchant's account"}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_current_month", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month", "block_contents": "Model that contains the total value of revenue for each merchant by segmentation tier for the current month."}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month_app_key": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_current_month_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month_app_key", "block_contents": "The unique identifier for the merchant"}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month_date_of_segmentation": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_current_month_date_of_segmentation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month_date_of_segmentation", "block_contents": "Column that contains the value of the date used for the segmentation of the merchant's customers."}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month_total_engaged_customers_sales_current_month": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_current_month_total_engaged_customers_sales_current_month", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month_total_engaged_customers_sales_current_month", "block_contents": "Total sales for the engaged customers of the merchant"}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month_total_new_customers_sales_current_month": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_current_month_total_new_customers_sales_current_month", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month_total_new_customers_sales_current_month", "block_contents": "Total sales for the new customers of the merchant"}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month_total_returning_customers_sales_current_month": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_current_month_total_returning_customers_sales_current_month", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_current_month/platform_stg__retention_metrics_bar_chart_total_sales_current_month.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month_total_returning_customers_sales_current_month", "block_contents": "Total sales for the returning customers of the merchant"}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_monthly", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly", "block_contents": "Model that contains the total value of revenue for each merchant by segmentation tier for the last 11 months."}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly_app_key": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly_app_key", "block_contents": "The unique identifier for the merchant"}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly_date_of_segmentation": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_monthly_date_of_segmentation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly_date_of_segmentation", "block_contents": "Column that contains the value of the date used for the segmentation of the merchant's customers."}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly_total_engaged_customers_sales_for_date_of_segmentation": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_monthly_total_engaged_customers_sales_for_date_of_segmentation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly_total_engaged_customers_sales_for_date_of_segmentation", "block_contents": "Total sales for the engaged customers of the merchant"}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly_total_new_customers_sales_for_date_of_segmentation": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_monthly_total_new_customers_sales_for_date_of_segmentation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly_total_new_customers_sales_for_date_of_segmentation", "block_contents": "Total sales for the new customers of the merchant"}, "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly_total_returning_customers_sales_for_date_of_segmentation": {"name": "platform_stg__retention_metrics_bar_chart_total_sales_monthly_total_returning_customers_sales_for_date_of_segmentation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_bar_chart_total_sales_monthly/platform_stg__retention_metrics_bar_chart_total_sales_monthly.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly_total_returning_customers_sales_for_date_of_segmentation", "block_contents": "Total sales for the returning customers of the merchant"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "block_contents": "AOV for each segment for the last 7, 30, 90 and 365 days"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value_aov_for_engaged_customers": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_order_value_aov_for_engaged_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value_aov_for_engaged_customers", "block_contents": "AOV for engaged customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value_aov_for_new_customers": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_order_value_aov_for_new_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value_aov_for_new_customers", "block_contents": "AOV for new customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value_aov_for_returning_customers": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_order_value_aov_for_returning_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value_aov_for_returning_customers", "block_contents": "AOV for returning customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value_app_key": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_order_value_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value_app_key", "block_contents": "The merchant's identifier"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value_trend": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_order_value_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_order_value/platform_stg__retention_metrics_current_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value_trend", "block_contents": "The trend: Last 7/30/9/365 days"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "block_contents": "Average sales per customer for each segment for the last 7, 30, 90 and 365 days"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_app_key": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_app_key", "block_contents": "The merchant's identifier"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_engaged_customer": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_engaged_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_engaged_customer", "block_contents": "Average sales per customer for engaged customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_new_customer": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_new_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_new_customer", "block_contents": "Average sales per customer for new customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_returning_customer": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_returning_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_returning_customer", "block_contents": "Average sales per customer for returning customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_trend": {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer/platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_trend", "block_contents": "The trend: Last 7/30/90/365 days"}, "doc.yoda.platform_stg__retention_metrics_mock_orders": {"name": "platform_stg__retention_metrics_mock_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_mock_orders", "block_contents": "Table with mock orders used to load instead of production orders in dev environment."}, "doc.yoda.platform_stg__retention_metrics_mock_orders_app_key": {"name": "platform_stg__retention_metrics_mock_orders_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_mock_orders_app_key", "block_contents": "Mock app key. Each test uses unique app key."}, "doc.yoda.platform_stg__retention_metrics_mock_orders_external_customer_id": {"name": "platform_stg__retention_metrics_mock_orders_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_mock_orders_external_customer_id", "block_contents": "Mock external customer id."}, "doc.yoda.platform_stg__retention_metrics_mock_orders_id": {"name": "platform_stg__retention_metrics_mock_orders_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_mock_orders_id", "block_contents": "Random uuid."}, "doc.yoda.platform_stg__retention_metrics_mock_orders_order_date": {"name": "platform_stg__retention_metrics_mock_orders_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_mock_orders_order_date", "block_contents": "Date used for specific test case."}, "doc.yoda.platform_stg__retention_metrics_mock_orders_total_price": {"name": "platform_stg__retention_metrics_mock_orders_total_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_mock_orders/platform_stg__retention_metrics_mock_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_mock_orders_total_price", "block_contents": "Amount of order."}, "doc.yoda.platform_stg__retention_metrics_orders": {"name": "platform_stg__retention_metrics_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__retention_metrics_orders_account_currency_iso": {"name": "platform_stg__retention_metrics_orders_account_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_account_currency_iso", "block_contents": "The merchant currency"}, "doc.yoda.platform_stg__retention_metrics_orders_app_key": {"name": "platform_stg__retention_metrics_orders_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_app_key", "block_contents": "The merchant id"}, "doc.yoda.platform_stg__retention_metrics_orders_email": {"name": "platform_stg__retention_metrics_orders_email", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_email", "block_contents": "The email of the shopper"}, "doc.yoda.platform_stg__retention_metrics_orders_external_customer_id": {"name": "platform_stg__retention_metrics_orders_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_external_customer_id", "block_contents": "The unique shopper identifier, this is either the one provided by the merchant platform (if not null) or the email"}, "doc.yoda.platform_stg__retention_metrics_orders_id": {"name": "platform_stg__retention_metrics_orders_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_id", "block_contents": "The id of the order"}, "doc.yoda.platform_stg__retention_metrics_orders_order_currency_iso": {"name": "platform_stg__retention_metrics_orders_order_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_order_currency_iso", "block_contents": "The currency of the order"}, "doc.yoda.platform_stg__retention_metrics_orders_order_date": {"name": "platform_stg__retention_metrics_orders_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_order_date", "block_contents": "The date when order was registered"}, "doc.yoda.platform_stg__retention_metrics_orders_order_sum_account_currency": {"name": "platform_stg__retention_metrics_orders_order_sum_account_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_order_sum_account_currency", "block_contents": "The order value in account currency"}, "doc.yoda.platform_stg__retention_metrics_orders_order_sum_order_currency": {"name": "platform_stg__retention_metrics_orders_order_sum_order_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_order_sum_order_currency", "block_contents": "The order value in order currency"}, "doc.yoda.platform_stg__retention_metrics_orders_platform_type": {"name": "platform_stg__retention_metrics_orders_platform_type", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_platform_type", "block_contents": "The merchant platform where order was registered"}, "doc.yoda.platform_stg__retention_metrics_orders_total_price": {"name": "platform_stg__retention_metrics_orders_total_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders/platform_stg__retention_metrics_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_total_price", "block_contents": "The total price of the order in merchant currency"}, "doc.yoda.platform_stg__retention_metrics_orders_in_merchant_currency": {"name": "platform_stg__retention_metrics_orders_in_merchant_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_in_merchant_currency", "block_contents": "Raw data representing orders"}, "doc.yoda.platform_stg__retention_metrics_orders_in_merchant_currency_app_key": {"name": "platform_stg__retention_metrics_orders_in_merchant_currency_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_in_merchant_currency_app_key", "block_contents": "Merchant's unique identifier in the Yotpo platform"}, "doc.yoda.platform_stg__retention_metrics_orders_in_merchant_currency_external_customer_id": {"name": "platform_stg__retention_metrics_orders_in_merchant_currency_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_in_merchant_currency_external_customer_id", "block_contents": "Order's customer's unique identifier in the platform (external_customer_id if present, otherwise the email of the shopper)"}, "doc.yoda.platform_stg__retention_metrics_orders_in_merchant_currency_order_date": {"name": "platform_stg__retention_metrics_orders_in_merchant_currency_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_in_merchant_currency_order_date", "block_contents": "Order submission date"}, "doc.yoda.platform_stg__retention_metrics_orders_in_merchant_currency_total_price": {"name": "platform_stg__retention_metrics_orders_in_merchant_currency_total_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_orders_in_merchant_currency/platform_stg__retention_metrics_orders_in_merchant_currency.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_orders_in_merchant_currency_total_price", "block_contents": "Order total value. It is calculated by either taking the total_price or order_sum_account_currency values which are the order value in merchant currency for either shopify or non-shopify platforms. \nIf those fields are not present, then check if the order currency is the same as merchant currency and if so, then use order_sum_order_currency value which is the order value in order currency.\nIf the two currencies are not the same, then convert the order_sum_order_currency value to merchant currency."}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "block_contents": "AOV for each segment for the previous 7, 30, 90 and 365 days"}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_engaged_customers": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_engaged_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_engaged_customers", "block_contents": "AOV for engaged customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_new_customers": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_new_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_new_customers", "block_contents": "AOV for new customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_returning_customers": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_returning_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_returning_customers", "block_contents": "AOV for returning customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_app_key": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_app_key", "block_contents": "The merchant's identifier"}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_trend": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value/platform_stg__retention_metrics_previous_segment_for_trend_average_order_value.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_trend", "block_contents": "The trend: Previous 7/30/9/365 days"}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "block_contents": "Average sales per customer for each segment for the previous 7, 30, 90 and 365 days"}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_app_key": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_app_key", "block_contents": "The merchant's identifier"}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_engaged_customer": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_engaged_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_engaged_customer", "block_contents": "Average sales per customer for engaged customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_new_customer": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_new_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_new_customer", "block_contents": "Average sales per customer for new customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_returning_customer": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_returning_customer", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_returning_customer", "block_contents": "Average sales per customer for returning customers of each merchant"}, "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_trend": {"name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_trend", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer/platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_trend", "block_contents": "The trend: Previous 7/30/90/365 days"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers": {"name": "platform_stg__retention_metrics_segmented_customers", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers", "block_contents": "Customers segments for platform play retention metrics dashboard"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_app_key": {"name": "platform_stg__retention_metrics_segmented_customers_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_app_key", "block_contents": "Merchant's unique identifier in Yotpo platform"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_external_customer_id": {"name": "platform_stg__retention_metrics_segmented_customers_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_external_customer_id", "block_contents": "Customers' unique identifier in the ecommerce platform"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_segment": {"name": "platform_stg__retention_metrics_segmented_customers_segment", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_segment", "block_contents": "Customers segment, can only be in the highest that matches: Engaged - at least 4 orders in the past 12 months and one in the past month; Returning - more than 1 order in the past 12 months; New - one order in the past 12 months"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_segment_30_days_ago": {"name": "platform_stg__retention_metrics_segmented_customers_segment_30_days_ago", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_segment_30_days_ago", "block_contents": "Customer's segment based on the 30 days trend"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_segment_365_days_ago": {"name": "platform_stg__retention_metrics_segmented_customers_segment_365_days_ago", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_segment_365_days_ago", "block_contents": "Customer's segment based on the 365 days trend"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_segment_7_days_ago": {"name": "platform_stg__retention_metrics_segmented_customers_segment_7_days_ago", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_segment_7_days_ago", "block_contents": "Customer's segment based on the 7 days trend"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_segment_90_days_ago": {"name": "platform_stg__retention_metrics_segmented_customers_segment_90_days_ago", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers/platform_stg__retention_metrics_segmented_customers.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_segment_90_days_ago", "block_contents": "Customer's segment based on the 90 days trend"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_monthly": {"name": "platform_stg__retention_metrics_segmented_customers_monthly", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "block_contents": "Model which segments merchant's customers based on the number and the dates of their orders."}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_monthly_app_key": {"name": "platform_stg__retention_metrics_segmented_customers_monthly_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_monthly_app_key", "block_contents": "The app_key which identifies an unique merchant"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_monthly_date_of_segmentation": {"name": "platform_stg__retention_metrics_segmented_customers_monthly_date_of_segmentation", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_monthly_date_of_segmentation", "block_contents": "Date on which segmentation was done(Segmentation always goes back one year calculating the orders and dates of customers)"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_monthly_external_customer_id": {"name": "platform_stg__retention_metrics_segmented_customers_monthly_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_monthly_external_customer_id", "block_contents": "The external_customer_id helps us identify an unique merchant's identifier for his customer"}, "doc.yoda.platform_stg__retention_metrics_segmented_customers_monthly_segment": {"name": "platform_stg__retention_metrics_segmented_customers_monthly_segment", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_segmented_customers_monthly/platform_stg__retention_metrics_segmented_customers_monthly.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_segmented_customers_monthly_segment", "block_contents": "Customers segment, can only be in the highest that matches: Engaged - at least 4 orders in the past 12 months and one in the past month; Returning - more than 1 order in the past 12 months; New - one order in the past 12 months"}, "doc.yoda.platform_stg__retention_metrics_trends_orders": {"name": "platform_stg__retention_metrics_trends_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_trends_orders", "block_contents": "Orders with segments for each trend"}, "doc.yoda.platform_stg__retention_metrics_trends_orders_app_key": {"name": "platform_stg__retention_metrics_trends_orders_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_trends_orders_app_key", "block_contents": "Represents the order's merchant"}, "doc.yoda.platform_stg__retention_metrics_trends_orders_external_customer_id": {"name": "platform_stg__retention_metrics_trends_orders_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_trends_orders_external_customer_id", "block_contents": "Represents the customer who placed the order"}, "doc.yoda.platform_stg__retention_metrics_trends_orders_order_date": {"name": "platform_stg__retention_metrics_trends_orders_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_trends_orders_order_date", "block_contents": "The date that the order was placed in"}, "doc.yoda.platform_stg__retention_metrics_trends_orders_order_total": {"name": "platform_stg__retention_metrics_trends_orders_order_total", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_trends_orders_order_total", "block_contents": "The order's value"}, "doc.yoda.platform_stg__retention_metrics_trends_orders_segment": {"name": "platform_stg__retention_metrics_trends_orders_segment", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_trends_orders_segment", "block_contents": "The segment of the customer who placed the order, based on today's segmentation"}, "doc.yoda.platform_stg__retention_metrics_trends_orders_segment_30_days_ago": {"name": "platform_stg__retention_metrics_trends_orders_segment_30_days_ago", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_trends_orders_segment_30_days_ago", "block_contents": "The segment of the customer who placed the order, based on the 30 days trend"}, "doc.yoda.platform_stg__retention_metrics_trends_orders_segment_365_days_ago": {"name": "platform_stg__retention_metrics_trends_orders_segment_365_days_ago", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_trends_orders_segment_365_days_ago", "block_contents": "The segment of the customer who placed the order, based on the 365 days trend"}, "doc.yoda.platform_stg__retention_metrics_trends_orders_segment_7_days_ago": {"name": "platform_stg__retention_metrics_trends_orders_segment_7_days_ago", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_trends_orders_segment_7_days_ago", "block_contents": "The segment of the customer who placed the order, based on the 7 days trend"}, "doc.yoda.platform_stg__retention_metrics_trends_orders_segment_90_days_ago": {"name": "platform_stg__retention_metrics_trends_orders_segment_90_days_ago", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__retention_metrics_trends_orders/platform_stg__retention_metrics_trends_orders.md", "unique_id": "doc.yoda.platform_stg__retention_metrics_trends_orders_segment_90_days_ago", "block_contents": "The segment of the customer who placed the order, based on the 90 days trend"}, "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency": {"name": "platform_stg__sms_shopify_orders_to_shop_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency", "block_contents": "Contains sms attributed orders with currency exchange done with current exchange rates for the date of the order."}, "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency_app_key": {"name": "platform_stg__sms_shopify_orders_to_shop_currency_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency_app_key", "block_contents": "Unique identifier of the merchant"}, "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency_order_date": {"name": "platform_stg__sms_shopify_orders_to_shop_currency_order_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency_order_date", "block_contents": "The date of the order"}, "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency_order_id": {"name": "platform_stg__sms_shopify_orders_to_shop_currency_order_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency_order_id", "block_contents": "External order id"}, "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency_shop_currency": {"name": "platform_stg__sms_shopify_orders_to_shop_currency_shop_currency", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency_shop_currency", "block_contents": "Column containing the shop currency"}, "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency_total_price": {"name": "platform_stg__sms_shopify_orders_to_shop_currency_total_price", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__sms_shopify_orders_to_shop_currency/platform_stg__sms_shopify_orders_to_shop_currency.md", "unique_id": "doc.yoda.platform_stg__sms_shopify_orders_to_shop_currency_total_price", "block_contents": "Total order price in shop currency"}, "doc.yoda.platform_stg__stores_enrichment_app_key": {"name": "platform_stg__stores_enrichment_app_key", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_app_key", "block_contents": "TODO: Update Column app_key Information"}, "doc.yoda.platform_stg__stores_enrichment_is_active": {"name": "platform_stg__stores_enrichment_is_active", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_is_active", "block_contents": "TODO: Update Column is_active Information"}, "doc.yoda.platform_stg__stores_enrichment_is_blacklisted": {"name": "platform_stg__stores_enrichment_is_blacklisted", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_is_blacklisted", "block_contents": "TODO: Update Column is_blacklisted Information"}, "doc.yoda.platform_stg__stores_enrichment_is_supports_past_orders": {"name": "platform_stg__stores_enrichment_is_supports_past_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_is_supports_past_orders", "block_contents": "TODO: Update Column is_supports_past_orders Information"}, "doc.yoda.platform_stg__stores_enrichment_is_supports_pull_orders": {"name": "platform_stg__stores_enrichment_is_supports_pull_orders", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_is_supports_pull_orders", "block_contents": "TODO: Update Column is_supports_pull_orders Information"}, "doc.yoda.platform_stg__stores_enrichment_is_test": {"name": "platform_stg__stores_enrichment_is_test", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_is_test", "block_contents": "TODO: Update Column is_test Information"}, "doc.yoda.platform_stg__stores_enrichment_organization_id": {"name": "platform_stg__stores_enrichment_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_organization_id", "block_contents": "TODO: Update Column organization_id Information"}, "doc.yoda.platform_stg__stores_enrichment_platform_name": {"name": "platform_stg__stores_enrichment_platform_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_platform_name", "block_contents": "TODO: Update Column platform_name Information"}, "doc.yoda.platform_stg__stores_enrichment_store_created_at": {"name": "platform_stg__stores_enrichment_store_created_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_store_created_at", "block_contents": "TODO: Update Column store_created_at Information"}, "doc.yoda.platform_stg__stores_enrichment_store_domain": {"name": "platform_stg__stores_enrichment_store_domain", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_store_domain", "block_contents": "TODO: Update Column store_domain Information"}, "doc.yoda.platform_stg__stores_enrichment_store_id": {"name": "platform_stg__stores_enrichment_store_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_store_id", "block_contents": "TODO: Update Table Description"}, "doc.yoda.platform_stg__stores_enrichment_store_language": {"name": "platform_stg__stores_enrichment_store_language", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_store_language", "block_contents": "TODO: Update Column store_language Information"}, "doc.yoda.platform_stg__stores_enrichment_store_name": {"name": "platform_stg__stores_enrichment_store_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_store_name", "block_contents": "TODO: Update Column store_name Information"}, "doc.yoda.platform_stg__stores_enrichment_updated_at": {"name": "platform_stg__stores_enrichment_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__stores_enrichment/platform_stg__stores_enrichment.md", "unique_id": "doc.yoda.platform_stg__stores_enrichment_updated_at", "block_contents": "TODO: Update Column updated_at Information"}, "doc.yoda.platform_stg__synergy_product_mapping": {"name": "platform_stg__synergy_product_mapping", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "unique_id": "doc.yoda.platform_stg__synergy_product_mapping", "block_contents": "Static Hard-Coded mapping table of synergies and products | PK and granularity: synergy_id, product"}, "doc.yoda.platform_stg__synergy_product_mapping_dwh_updated_at": {"name": "platform_stg__synergy_product_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "unique_id": "doc.yoda.platform_stg__synergy_product_mapping_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.platform_stg__synergy_product_mapping_is_action_product": {"name": "platform_stg__synergy_product_mapping_is_action_product", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "unique_id": "doc.yoda.platform_stg__synergy_product_mapping_is_action_product", "block_contents": "synergy action product indicator: 0/1"}, "doc.yoda.platform_stg__synergy_product_mapping_product_name": {"name": "platform_stg__synergy_product_mapping_product_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "unique_id": "doc.yoda.platform_stg__synergy_product_mapping_product_name", "block_contents": "product_name -- product name: reviews, loyalty, sms, email, subscriptions - primary key 2/2"}, "doc.yoda.platform_stg__synergy_product_mapping_synergy_id": {"name": "platform_stg__synergy_product_mapping_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "unique_id": "doc.yoda.platform_stg__synergy_product_mapping_synergy_id", "block_contents": "synergy widget unique identifier - primary key 1/2"}, "doc.yoda.platform_stg__synergy_product_mapping_synergy_name": {"name": "platform_stg__synergy_product_mapping_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_product_mapping/platform_stg__synergy_product_mapping.md", "unique_id": "doc.yoda.platform_stg__synergy_product_mapping_synergy_name", "block_contents": "synergy widget name: sms_flows_cdp_redemption_created, video_review_earning_rule_loyalty, etc."}, "doc.yoda.platform_stg__synergy_start_date_mapping": {"name": "platform_stg__synergy_start_date_mapping", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.md", "unique_id": "doc.yoda.platform_stg__synergy_start_date_mapping", "block_contents": "Static Hard-Coded mapping table of synergies start date in order to skip incorrect data in a some synergies | PK and granularity: synergy_id"}, "doc.yoda.platform_stg__synergy_start_date_mapping_dwh_updated_at": {"name": "platform_stg__synergy_start_date_mapping_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.md", "unique_id": "doc.yoda.platform_stg__synergy_start_date_mapping_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.platform_stg__synergy_start_date_mapping_start_date": {"name": "platform_stg__synergy_start_date_mapping_start_date", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.md", "unique_id": "doc.yoda.platform_stg__synergy_start_date_mapping_start_date", "block_contents": "synergy start date"}, "doc.yoda.platform_stg__synergy_start_date_mapping_synergy_id": {"name": "platform_stg__synergy_start_date_mapping_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.md", "unique_id": "doc.yoda.platform_stg__synergy_start_date_mapping_synergy_id", "block_contents": "synergy widget unique identifier - primary key"}, "doc.yoda.platform_stg__synergy_start_date_mapping_synergy_name": {"name": "platform_stg__synergy_start_date_mapping_synergy_name", "resource_type": "doc", "package_name": "yoda", "path": "platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.md", "original_file_path": "models/platform/staging/marts_compatible/platform_stg__synergy_start_date_mapping/platform_stg__synergy_start_date_mapping.md", "unique_id": "doc.yoda.platform_stg__synergy_start_date_mapping_synergy_name", "block_contents": "synergy widget name, e.g: sms_campaigns_vip_tier, image_review_earning_rule_loyalty"}, "doc.yoda.sms__api_calls_with_customer": {"name": "sms__api_calls_with_customer", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "unique_id": "doc.yoda.sms__api_calls_with_customer", "block_contents": "Api calls with external customer id"}, "doc.yoda.sms__api_calls_with_customer_app_key": {"name": "sms__api_calls_with_customer_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "unique_id": "doc.yoda.sms__api_calls_with_customer_app_key", "block_contents": "App key"}, "doc.yoda.sms__api_calls_with_customer_campaign_id": {"name": "sms__api_calls_with_customer_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "unique_id": "doc.yoda.sms__api_calls_with_customer_campaign_id", "block_contents": "campaign id"}, "doc.yoda.sms__api_calls_with_customer_customer_external_id": {"name": "sms__api_calls_with_customer_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "unique_id": "doc.yoda.sms__api_calls_with_customer_customer_external_id", "block_contents": "Customer external id"}, "doc.yoda.sms__api_calls_with_customer_flow_id": {"name": "sms__api_calls_with_customer_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "unique_id": "doc.yoda.sms__api_calls_with_customer_flow_id", "block_contents": "Flow id"}, "doc.yoda.sms__api_calls_with_customer_flow_trigger": {"name": "sms__api_calls_with_customer_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "unique_id": "doc.yoda.sms__api_calls_with_customer_flow_trigger", "block_contents": "Flow type"}, "doc.yoda.sms__api_calls_with_customer_modified": {"name": "sms__api_calls_with_customer_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "unique_id": "doc.yoda.sms__api_calls_with_customer_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__api_calls_with_customer_phone_number": {"name": "sms__api_calls_with_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "unique_id": "doc.yoda.sms__api_calls_with_customer_phone_number", "block_contents": "Customer phone number"}, "doc.yoda.sms__api_calls_with_customer_sms_created": {"name": "sms__api_calls_with_customer_sms_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "unique_id": "doc.yoda.sms__api_calls_with_customer_sms_created", "block_contents": "Sms created date"}, "doc.yoda.sms__api_calls_with_customer_sms_id": {"name": "sms__api_calls_with_customer_sms_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "unique_id": "doc.yoda.sms__api_calls_with_customer_sms_id", "block_contents": "SMS id"}, "doc.yoda.sms__api_calls_with_customer_user_id": {"name": "sms__api_calls_with_customer_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "original_file_path": "models/sms/marts/sms__api_calls_with_customer/sms__api_calls_with_customer.md", "unique_id": "doc.yoda.sms__api_calls_with_customer_user_id", "block_contents": "User id"}, "doc.yoda.sms__daily_revenue": {"name": "sms__daily_revenue", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.md", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.md", "unique_id": "doc.yoda.sms__daily_revenue", "block_contents": "Table that aggregtes SMS cost"}, "doc.yoda.sms__daily_revenue_by_campaign": {"name": "sms__daily_revenue_by_campaign", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.md", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.md", "unique_id": "doc.yoda.sms__daily_revenue_by_campaign", "block_contents": "Total amount of SMS fired from campaigns"}, "doc.yoda.sms__daily_revenue_by_flow": {"name": "sms__daily_revenue_by_flow", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.md", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.md", "unique_id": "doc.yoda.sms__daily_revenue_by_flow", "block_contents": "Total amount of SMS fired from flows"}, "doc.yoda.sms__daily_revenue_date": {"name": "sms__daily_revenue_date", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.md", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.md", "unique_id": "doc.yoda.sms__daily_revenue_date", "block_contents": "Aggregation date"}, "doc.yoda.sms__daily_revenue_message_status": {"name": "sms__daily_revenue_message_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.md", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.md", "unique_id": "doc.yoda.sms__daily_revenue_message_status", "block_contents": "SMS delivery status"}, "doc.yoda.sms__daily_revenue_organic": {"name": "sms__daily_revenue_organic", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.md", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.md", "unique_id": "doc.yoda.sms__daily_revenue_organic", "block_contents": "Total amount of SMS fired organically"}, "doc.yoda.sms__daily_revenue_platform": {"name": "sms__daily_revenue_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.md", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.md", "unique_id": "doc.yoda.sms__daily_revenue_platform", "block_contents": "Platform attributed to the delivery"}, "doc.yoda.sms__daily_revenue_total_price_billed": {"name": "sms__daily_revenue_total_price_billed", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.md", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.md", "unique_id": "doc.yoda.sms__daily_revenue_total_price_billed", "block_contents": "Total billing amount of SMS"}, "doc.yoda.sms__daily_revenue_total_revenue": {"name": "sms__daily_revenue_total_revenue", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.md", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.md", "unique_id": "doc.yoda.sms__daily_revenue_total_revenue", "block_contents": "Total revenuw of SMS"}, "doc.yoda.sms__daily_revenue_total_sms_sent": {"name": "sms__daily_revenue_total_sms_sent", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.md", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.md", "unique_id": "doc.yoda.sms__daily_revenue_total_sms_sent", "block_contents": "Total amount of SMS"}, "doc.yoda.sms__daily_revenue_total_vendor_cost": {"name": "sms__daily_revenue_total_vendor_cost", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__daily_revenue/sms__daily_revenue.md", "original_file_path": "models/sms/marts/sms__daily_revenue/sms__daily_revenue.md", "unique_id": "doc.yoda.sms__daily_revenue_total_vendor_cost", "block_contents": "Total vendor cost of SMS"}, "doc.yoda.sms__flows_links_clicks": {"name": "sms__flows_links_clicks", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "original_file_path": "models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "unique_id": "doc.yoda.sms__flows_links_clicks", "block_contents": "flows links clicks"}, "doc.yoda.sms__flows_links_clicks_clicks_count": {"name": "sms__flows_links_clicks_clicks_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "original_file_path": "models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "unique_id": "doc.yoda.sms__flows_links_clicks_clicks_count", "block_contents": "clicks count"}, "doc.yoda.sms__flows_links_clicks_flow_trigger": {"name": "sms__flows_links_clicks_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "original_file_path": "models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "unique_id": "doc.yoda.sms__flows_links_clicks_flow_trigger", "block_contents": "flow trigger"}, "doc.yoda.sms__flows_links_clicks_link": {"name": "sms__flows_links_clicks_link", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "original_file_path": "models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "unique_id": "doc.yoda.sms__flows_links_clicks_link", "block_contents": "link"}, "doc.yoda.sms__flows_links_clicks_number": {"name": "sms__flows_links_clicks_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "original_file_path": "models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "unique_id": "doc.yoda.sms__flows_links_clicks_number", "block_contents": "phone number"}, "doc.yoda.sms__flows_links_clicks_processing_time": {"name": "sms__flows_links_clicks_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "original_file_path": "models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "unique_id": "doc.yoda.sms__flows_links_clicks_processing_time", "block_contents": "processing time"}, "doc.yoda.sms__flows_links_clicks_sms_id": {"name": "sms__flows_links_clicks_sms_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "original_file_path": "models/sms/marts/sms__flows_links_clicks/sms__flows_links_clicks.md", "unique_id": "doc.yoda.sms__flows_links_clicks_sms_id", "block_contents": "clicks id"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi": {"name": "sms__loyalty_sms_campaigns_email_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi", "block_contents": "loyalty sms campaigns email kpi table"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_action_attribute_type": {"name": "sms__loyalty_sms_campaigns_email_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_action_attribute_type", "block_contents": "points"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_action_attribute_value": {"name": "sms__loyalty_sms_campaigns_email_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_action_attribute_value", "block_contents": "points value"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_action_id": {"name": "sms__loyalty_sms_campaigns_email_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_action_id", "block_contents": "redemption_id"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_action_type": {"name": "sms__loyalty_sms_campaigns_email_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_action_type", "block_contents": "redemption"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_app_key": {"name": "sms__loyalty_sms_campaigns_email_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_customer_email": {"name": "sms__loyalty_sms_campaigns_email_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_customer_external_id": {"name": "sms__loyalty_sms_campaigns_email_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_customer_phone_number": {"name": "sms__loyalty_sms_campaigns_email_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at": {"name": "sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at", "block_contents": "current timestamp"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_id": {"name": "sms__loyalty_sms_campaigns_email_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_id", "block_contents": "uuid function"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_order_id": {"name": "sms__loyalty_sms_campaigns_email_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_order_id", "block_contents": "shopify order id"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_source_id": {"name": "sms__loyalty_sms_campaigns_email_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_source_id", "block_contents": "email reference id"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_source_type": {"name": "sms__loyalty_sms_campaigns_email_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_source_type", "block_contents": "campaigns/email"}, "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_synergy_id": {"name": "sms__loyalty_sms_campaigns_email_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_kpi/sms__loyalty_sms_campaigns_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_kpi_synergy_id", "block_contents": "synergy id from google docs file"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi", "block_contents": "loyalty sms campaigns email reward program kpi table"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_action_attribute_type": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_action_attribute_type", "block_contents": "null"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_action_attribute_value": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_action_attribute_value", "block_contents": "null"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_action_id": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_action_id", "block_contents": "null"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_action_type": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_action_type", "block_contents": "new member"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_app_key": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_email": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_external_id": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_phone_number": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_dwh_updated_at": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_dwh_updated_at", "block_contents": "current timestamp"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_id": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_id", "block_contents": "uuid function"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_order_id": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_order_id", "block_contents": "null"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_source_id": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_source_id", "block_contents": "email reference id"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_source_type": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_source_type", "block_contents": "campaigns/email"}, "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id": {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_email_reward_program_kpi/sms__loyalty_sms_campaigns_email_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id", "block_contents": "synergy id from google docs file"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi": {"name": "sms__loyalty_sms_campaigns_sms_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi", "block_contents": "sms loyalty for sms campaigns kpi"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_action_attribute_type": {"name": "sms__loyalty_sms_campaigns_sms_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_action_attribute_type", "block_contents": "points"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_action_attribute_value": {"name": "sms__loyalty_sms_campaigns_sms_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_action_attribute_value", "block_contents": "points value"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_action_id": {"name": "sms__loyalty_sms_campaigns_sms_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_action_id", "block_contents": "redemption id"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_action_type": {"name": "sms__loyalty_sms_campaigns_sms_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_action_type", "block_contents": "redemption"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_app_key": {"name": "sms__loyalty_sms_campaigns_sms_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_customer_email": {"name": "sms__loyalty_sms_campaigns_sms_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_customer_external_id": {"name": "sms__loyalty_sms_campaigns_sms_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_customer_phone_number": {"name": "sms__loyalty_sms_campaigns_sms_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at": {"name": "sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at", "block_contents": "current timestamp"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_id": {"name": "sms__loyalty_sms_campaigns_sms_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_id", "block_contents": "uuid function"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_order_id": {"name": "sms__loyalty_sms_campaigns_sms_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_order_id", "block_contents": "order id"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_source_id": {"name": "sms__loyalty_sms_campaigns_sms_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_source_id", "block_contents": "apicalls id"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_source_type": {"name": "sms__loyalty_sms_campaigns_sms_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_source_type", "block_contents": "campaign/sms"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_synergy_id": {"name": "sms__loyalty_sms_campaigns_sms_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_kpi/sms__loyalty_sms_campaigns_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_kpi_synergy_id", "block_contents": "synergy id from google docs"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "block_contents": "sms campaigns sms kpi table for reward program campaign"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_attribute_type": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_attribute_type", "block_contents": "null value"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_attribute_value": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_attribute_value", "block_contents": "null value"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_id": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_id", "block_contents": "null value"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_type": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_type", "block_contents": "new member"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_app_key": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_email": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_external_id": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_phone_number": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_dwh_updated_at": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_dwh_updated_at", "block_contents": "current timestamp"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_id": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_id", "block_contents": "uuid method"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_order_id": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_order_id", "block_contents": "order id"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_id": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_id", "block_contents": "apicalls id"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_type": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_type", "block_contents": "campaigns/sms"}, "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id": {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_campaigns_sms_reward_program_kpi/sms__loyalty_sms_campaigns_sms_reward_program_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id", "block_contents": "synergy id from google docs file"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi": {"name": "sms__loyalty_sms_flows_email_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi", "block_contents": "loyalty sms flows email kpi table"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_action_attribute_type": {"name": "sms__loyalty_sms_flows_email_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_action_attribute_type", "block_contents": "points"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_action_attribute_value": {"name": "sms__loyalty_sms_flows_email_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_action_attribute_value", "block_contents": "points value"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_action_id": {"name": "sms__loyalty_sms_flows_email_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_action_id", "block_contents": "redemption id"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_action_type": {"name": "sms__loyalty_sms_flows_email_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_action_type", "block_contents": "redemption"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_app_key": {"name": "sms__loyalty_sms_flows_email_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_customer_email": {"name": "sms__loyalty_sms_flows_email_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_customer_external_id": {"name": "sms__loyalty_sms_flows_email_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_customer_phone_number": {"name": "sms__loyalty_sms_flows_email_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_dwh_updated_at": {"name": "sms__loyalty_sms_flows_email_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_dwh_updated_at", "block_contents": "current timestamp"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_id": {"name": "sms__loyalty_sms_flows_email_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_id", "block_contents": "uuid function"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_order_id": {"name": "sms__loyalty_sms_flows_email_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_order_id", "block_contents": "shopify order id"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_source_id": {"name": "sms__loyalty_sms_flows_email_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_source_id", "block_contents": "email reference id"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_source_type": {"name": "sms__loyalty_sms_flows_email_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_source_type", "block_contents": "flows/emmail"}, "doc.yoda.sms__loyalty_sms_flows_email_kpi_synergy_id": {"name": "sms__loyalty_sms_flows_email_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_email_kpi/sms__loyalty_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_email_kpi_synergy_id", "block_contents": "synergy id from google docs"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi": {"name": "sms__loyalty_sms_flows_sms_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi", "block_contents": "loyalty sms flows sms kpi table"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_action_attribute_type": {"name": "sms__loyalty_sms_flows_sms_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_action_attribute_type", "block_contents": "points"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_action_attribute_value": {"name": "sms__loyalty_sms_flows_sms_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_action_attribute_value", "block_contents": "points value"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_action_id": {"name": "sms__loyalty_sms_flows_sms_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_action_id", "block_contents": "redemption id"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_action_type": {"name": "sms__loyalty_sms_flows_sms_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_action_type", "block_contents": "redemption"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_app_key": {"name": "sms__loyalty_sms_flows_sms_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_customer_email": {"name": "sms__loyalty_sms_flows_sms_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_customer_external_id": {"name": "sms__loyalty_sms_flows_sms_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_customer_phone_number": {"name": "sms__loyalty_sms_flows_sms_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_dwh_updated_at": {"name": "sms__loyalty_sms_flows_sms_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_dwh_updated_at", "block_contents": "current timestamp"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_id": {"name": "sms__loyalty_sms_flows_sms_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_id", "block_contents": "uuid function"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_order_id": {"name": "sms__loyalty_sms_flows_sms_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_order_id", "block_contents": "order id"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_source_id": {"name": "sms__loyalty_sms_flows_sms_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_source_id", "block_contents": "sms apicalls id"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_source_type": {"name": "sms__loyalty_sms_flows_sms_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_source_type", "block_contents": "flow/sms"}, "doc.yoda.sms__loyalty_sms_flows_sms_kpi_synergy_id": {"name": "sms__loyalty_sms_flows_sms_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__loyalty_sms_flows_sms_kpi/sms__loyalty_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__loyalty_sms_flows_sms_kpi_synergy_id", "block_contents": "synergy id from google docs file"}, "doc.yoda.sms__multipass_login_kpi": {"name": "sms__multipass_login_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi", "block_contents": "Seamless Shopify login (for Loyalty)"}, "doc.yoda.sms__multipass_login_kpi_action_attribute_type": {"name": "sms__multipass_login_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_action_attribute_type", "block_contents": "NULL"}, "doc.yoda.sms__multipass_login_kpi_action_attribute_value": {"name": "sms__multipass_login_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_action_attribute_value", "block_contents": "NULL"}, "doc.yoda.sms__multipass_login_kpi_action_id": {"name": "sms__multipass_login_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_action_id", "block_contents": "NULL"}, "doc.yoda.sms__multipass_login_kpi_action_type": {"name": "sms__multipass_login_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_action_type", "block_contents": "login into store account / new member"}, "doc.yoda.sms__multipass_login_kpi_app_key": {"name": "sms__multipass_login_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_app_key", "block_contents": "App key"}, "doc.yoda.sms__multipass_login_kpi_customer_email": {"name": "sms__multipass_login_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_customer_email", "block_contents": "Customer email"}, "doc.yoda.sms__multipass_login_kpi_customer_external_id": {"name": "sms__multipass_login_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_customer_external_id", "block_contents": "Customer external id"}, "doc.yoda.sms__multipass_login_kpi_customer_phone_number": {"name": "sms__multipass_login_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_customer_phone_number", "block_contents": "Customer phone number"}, "doc.yoda.sms__multipass_login_kpi_dwh_updated_at": {"name": "sms__multipass_login_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_dwh_updated_at", "block_contents": "Current timestamp"}, "doc.yoda.sms__multipass_login_kpi_id": {"name": "sms__multipass_login_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_id", "block_contents": "uuid"}, "doc.yoda.sms__multipass_login_kpi_order_id": {"name": "sms__multipass_login_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_order_id", "block_contents": "NULL"}, "doc.yoda.sms__multipass_login_kpi_source_id": {"name": "sms__multipass_login_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_source_id", "block_contents": "SMS message id"}, "doc.yoda.sms__multipass_login_kpi_source_type": {"name": "sms__multipass_login_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_source_type", "block_contents": "SMS campaign"}, "doc.yoda.sms__multipass_login_kpi_synergy_id": {"name": "sms__multipass_login_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "original_file_path": "models/sms/marts/sms__multipass_login_kpi/sms__multipass_login_kpi.md", "unique_id": "doc.yoda.sms__multipass_login_kpi_synergy_id", "block_contents": "145"}, "doc.yoda.sms__reviews_sms_flows_email_kpi": {"name": "sms__reviews_sms_flows_email_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi", "block_contents": "reviews sms flows email kpi table"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_action_attribute_type": {"name": "sms__reviews_sms_flows_email_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_action_attribute_type", "block_contents": "rating"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_action_attribute_value": {"name": "sms__reviews_sms_flows_email_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_action_attribute_value", "block_contents": "rating score"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_action_id": {"name": "sms__reviews_sms_flows_email_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_action_id", "block_contents": "review id"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_action_type": {"name": "sms__reviews_sms_flows_email_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_action_type", "block_contents": "review"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_app_key": {"name": "sms__reviews_sms_flows_email_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_customer_email": {"name": "sms__reviews_sms_flows_email_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_customer_external_id": {"name": "sms__reviews_sms_flows_email_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_customer_phone_number": {"name": "sms__reviews_sms_flows_email_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_dwh_updated_at": {"name": "sms__reviews_sms_flows_email_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_dwh_updated_at", "block_contents": "current timestamp"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_id": {"name": "sms__reviews_sms_flows_email_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_id", "block_contents": "uuid function"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_order_id": {"name": "sms__reviews_sms_flows_email_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_order_id", "block_contents": "shopify order id"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_source_id": {"name": "sms__reviews_sms_flows_email_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_source_id", "block_contents": "email reference id"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_source_type": {"name": "sms__reviews_sms_flows_email_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_source_type", "block_contents": "flow/email"}, "doc.yoda.sms__reviews_sms_flows_email_kpi_synergy_id": {"name": "sms__reviews_sms_flows_email_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_email_kpi/sms__reviews_sms_flows_email_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_email_kpi_synergy_id", "block_contents": "synergy id from google doc file"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi": {"name": "sms__reviews_sms_flows_sms_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi", "block_contents": "reviews sms flows sms kpi table"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_action_attribute_type": {"name": "sms__reviews_sms_flows_sms_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_action_attribute_type", "block_contents": "rating"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_action_attribute_value": {"name": "sms__reviews_sms_flows_sms_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_action_attribute_value", "block_contents": "rating score"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_action_id": {"name": "sms__reviews_sms_flows_sms_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_action_id", "block_contents": "review id"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_action_type": {"name": "sms__reviews_sms_flows_sms_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_action_type", "block_contents": "review"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_app_key": {"name": "sms__reviews_sms_flows_sms_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_customer_email": {"name": "sms__reviews_sms_flows_sms_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_customer_external_id": {"name": "sms__reviews_sms_flows_sms_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_customer_phone_number": {"name": "sms__reviews_sms_flows_sms_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_dwh_updated_at": {"name": "sms__reviews_sms_flows_sms_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_dwh_updated_at", "block_contents": "current timestamp"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_id": {"name": "sms__reviews_sms_flows_sms_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_id", "block_contents": "uuid function"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_order_id": {"name": "sms__reviews_sms_flows_sms_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_order_id", "block_contents": "shopify order id"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_source_id": {"name": "sms__reviews_sms_flows_sms_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_source_id", "block_contents": "apicalls id"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_source_type": {"name": "sms__reviews_sms_flows_sms_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_source_type", "block_contents": "flow/sms"}, "doc.yoda.sms__reviews_sms_flows_sms_kpi_synergy_id": {"name": "sms__reviews_sms_flows_sms_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__reviews_sms_flows_sms_kpi/sms__reviews_sms_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__reviews_sms_flows_sms_kpi_synergy_id", "block_contents": "synergy id from google doc file"}, "doc.yoda.sms__sms_double_points_campaign_kpi": {"name": "sms__sms_double_points_campaign_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi", "block_contents": "Double points campaign kpi table"}, "doc.yoda.sms__sms_double_points_campaign_kpi_action_attribute_type": {"name": "sms__sms_double_points_campaign_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_action_attribute_type", "block_contents": "null"}, "doc.yoda.sms__sms_double_points_campaign_kpi_action_attribute_value": {"name": "sms__sms_double_points_campaign_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_action_attribute_value", "block_contents": "null"}, "doc.yoda.sms__sms_double_points_campaign_kpi_action_id": {"name": "sms__sms_double_points_campaign_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_action_id", "block_contents": "null"}, "doc.yoda.sms__sms_double_points_campaign_kpi_action_type": {"name": "sms__sms_double_points_campaign_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_action_type", "block_contents": "null"}, "doc.yoda.sms__sms_double_points_campaign_kpi_app_key": {"name": "sms__sms_double_points_campaign_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms__sms_double_points_campaign_kpi_campaign_id": {"name": "sms__sms_double_points_campaign_kpi_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_campaign_id", "block_contents": "campaign id"}, "doc.yoda.sms__sms_double_points_campaign_kpi_channel": {"name": "sms__sms_double_points_campaign_kpi_channel", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_channel", "block_contents": "kpi channel"}, "doc.yoda.sms__sms_double_points_campaign_kpi_customer_email": {"name": "sms__sms_double_points_campaign_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms__sms_double_points_campaign_kpi_customer_external_id": {"name": "sms__sms_double_points_campaign_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms__sms_double_points_campaign_kpi_customer_phone_number": {"name": "sms__sms_double_points_campaign_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms__sms_double_points_campaign_kpi_dwh_updated_at": {"name": "sms__sms_double_points_campaign_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_dwh_updated_at", "block_contents": "current timestamp"}, "doc.yoda.sms__sms_double_points_campaign_kpi_id": {"name": "sms__sms_double_points_campaign_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__sms_double_points_campaign_kpi_order_id": {"name": "sms__sms_double_points_campaign_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_order_id", "block_contents": "order id"}, "doc.yoda.sms__sms_double_points_campaign_kpi_source_id": {"name": "sms__sms_double_points_campaign_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_source_id", "block_contents": "sms id"}, "doc.yoda.sms__sms_double_points_campaign_kpi_source_type": {"name": "sms__sms_double_points_campaign_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_source_type", "block_contents": "sms_campaign"}, "doc.yoda.sms__sms_double_points_campaign_kpi_synergy_id": {"name": "sms__sms_double_points_campaign_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_synergy_id", "block_contents": "synergy id"}, "doc.yoda.sms__sms_double_points_campaign_kpi_user_id": {"name": "sms__sms_double_points_campaign_kpi_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "original_file_path": "models/sms/marts/sms__sms_double_points_campaign_kpi/sms__sms_double_points_campaign_kpi.md", "unique_id": "doc.yoda.sms__sms_double_points_campaign_kpi_user_id", "block_contents": "user id"}, "doc.yoda.sms__snowflake_sms_flows_reviews": {"name": "sms__snowflake_sms_flows_reviews", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "original_file_path": "models/sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "unique_id": "doc.yoda.sms__snowflake_sms_flows_reviews", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms__snowflake_sms_flows_reviews_app_key": {"name": "sms__snowflake_sms_flows_reviews_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "original_file_path": "models/sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "unique_id": "doc.yoda.sms__snowflake_sms_flows_reviews_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__snowflake_sms_flows_reviews_flow_id": {"name": "sms__snowflake_sms_flows_reviews_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "original_file_path": "models/sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "unique_id": "doc.yoda.sms__snowflake_sms_flows_reviews_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__snowflake_sms_flows_reviews_message_prepare": {"name": "sms__snowflake_sms_flows_reviews_message_prepare", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "original_file_path": "models/sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "unique_id": "doc.yoda.sms__snowflake_sms_flows_reviews_message_prepare", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__snowflake_sms_flows_reviews_review_created": {"name": "sms__snowflake_sms_flows_reviews_review_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "original_file_path": "models/sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "unique_id": "doc.yoda.sms__snowflake_sms_flows_reviews_review_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__snowflake_sms_flows_reviews_review_id": {"name": "sms__snowflake_sms_flows_reviews_review_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "original_file_path": "models/sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "unique_id": "doc.yoda.sms__snowflake_sms_flows_reviews_review_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__snowflake_sms_flows_reviews_sms_source": {"name": "sms__snowflake_sms_flows_reviews_sms_source", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "original_file_path": "models/sms/marts/sms__snowflake_sms_flows_reviews/sms__snowflake_sms_flows_reviews.md", "unique_id": "doc.yoda.sms__snowflake_sms_flows_reviews_sms_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__social_proof_flows_email_kpi": {"name": "sms__social_proof_flows_email_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi", "block_contents": "abandoned checkout social proof star rating flows email kpi table"}, "doc.yoda.sms__social_proof_flows_email_kpi_action_attribute_type": {"name": "sms__social_proof_flows_email_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_action_attribute_type", "block_contents": "null"}, "doc.yoda.sms__social_proof_flows_email_kpi_action_attribute_value": {"name": "sms__social_proof_flows_email_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_action_attribute_value", "block_contents": "null"}, "doc.yoda.sms__social_proof_flows_email_kpi_action_id": {"name": "sms__social_proof_flows_email_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_action_id", "block_contents": "null"}, "doc.yoda.sms__social_proof_flows_email_kpi_action_type": {"name": "sms__social_proof_flows_email_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_action_type", "block_contents": "null"}, "doc.yoda.sms__social_proof_flows_email_kpi_app_key": {"name": "sms__social_proof_flows_email_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms__social_proof_flows_email_kpi_customer_email": {"name": "sms__social_proof_flows_email_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms__social_proof_flows_email_kpi_customer_external_id": {"name": "sms__social_proof_flows_email_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms__social_proof_flows_email_kpi_customer_phone_number": {"name": "sms__social_proof_flows_email_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms__social_proof_flows_email_kpi_dwh_updated_at": {"name": "sms__social_proof_flows_email_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_dwh_updated_at", "block_contents": "current timestamp"}, "doc.yoda.sms__social_proof_flows_email_kpi_id": {"name": "sms__social_proof_flows_email_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_id", "block_contents": "uuid function"}, "doc.yoda.sms__social_proof_flows_email_kpi_order_id": {"name": "sms__social_proof_flows_email_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_order_id", "block_contents": "shopify order id"}, "doc.yoda.sms__social_proof_flows_email_kpi_source_id": {"name": "sms__social_proof_flows_email_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_source_id", "block_contents": "email reference id"}, "doc.yoda.sms__social_proof_flows_email_kpi_source_type": {"name": "sms__social_proof_flows_email_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_source_type", "block_contents": "flow/email"}, "doc.yoda.sms__social_proof_flows_email_kpi_synergy_id": {"name": "sms__social_proof_flows_email_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_email_kpi/sms__social_proof_flows_email_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_email_kpi_synergy_id", "block_contents": "synergy id from google docs file"}, "doc.yoda.sms__social_proof_flows_sms_kpi": {"name": "sms__social_proof_flows_sms_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi", "block_contents": "abandoned checkout social proof star rating flows sms kpi table"}, "doc.yoda.sms__social_proof_flows_sms_kpi_action_attribute_type": {"name": "sms__social_proof_flows_sms_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_action_attribute_type", "block_contents": "null"}, "doc.yoda.sms__social_proof_flows_sms_kpi_action_attribute_value": {"name": "sms__social_proof_flows_sms_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_action_attribute_value", "block_contents": "null"}, "doc.yoda.sms__social_proof_flows_sms_kpi_action_id": {"name": "sms__social_proof_flows_sms_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_action_id", "block_contents": "null"}, "doc.yoda.sms__social_proof_flows_sms_kpi_action_type": {"name": "sms__social_proof_flows_sms_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_action_type", "block_contents": "null"}, "doc.yoda.sms__social_proof_flows_sms_kpi_app_key": {"name": "sms__social_proof_flows_sms_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms__social_proof_flows_sms_kpi_customer_email": {"name": "sms__social_proof_flows_sms_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms__social_proof_flows_sms_kpi_customer_external_id": {"name": "sms__social_proof_flows_sms_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms__social_proof_flows_sms_kpi_customer_phone_number": {"name": "sms__social_proof_flows_sms_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms__social_proof_flows_sms_kpi_dwh_updated_at": {"name": "sms__social_proof_flows_sms_kpi_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_dwh_updated_at", "block_contents": "current timestamp"}, "doc.yoda.sms__social_proof_flows_sms_kpi_id": {"name": "sms__social_proof_flows_sms_kpi_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_id", "block_contents": "uuid function"}, "doc.yoda.sms__social_proof_flows_sms_kpi_order_id": {"name": "sms__social_proof_flows_sms_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_order_id", "block_contents": "shopify order id"}, "doc.yoda.sms__social_proof_flows_sms_kpi_source_id": {"name": "sms__social_proof_flows_sms_kpi_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_source_id", "block_contents": "apicalls id"}, "doc.yoda.sms__social_proof_flows_sms_kpi_source_type": {"name": "sms__social_proof_flows_sms_kpi_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_source_type", "block_contents": "flow/sms"}, "doc.yoda.sms__social_proof_flows_sms_kpi_synergy_id": {"name": "sms__social_proof_flows_sms_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "original_file_path": "models/sms/marts/sms__social_proof_flows_sms_kpi/sms__social_proof_flows_sms_kpi.md", "unique_id": "doc.yoda.sms__social_proof_flows_sms_kpi_synergy_id", "block_contents": "synergy id from google docs file"}, "doc.yoda.sms__base_apicalls": {"name": "sms__base_apicalls", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms__base_apicalls", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__apicalls_apikey": {"name": "sms_stg__apicalls_apikey", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_apikey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_app_id": {"name": "sms_stg__apicalls_app_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_app_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_campaign_id": {"name": "sms_stg__apicalls_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_country_iso": {"name": "sms_stg__apicalls_country_iso", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_country_iso", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_created": {"name": "sms_stg__apicalls_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_event_id": {"name": "sms_stg__apicalls_event_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_flow_id": {"name": "sms_stg__apicalls_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_flow_step_id": {"name": "sms_stg__apicalls_flow_step_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_flow_step_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_from": {"name": "sms_stg__apicalls_from", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_from", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_id": {"name": "sms_stg__apicalls_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_ip": {"name": "sms_stg__apicalls_ip", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_ip_forward": {"name": "sms_stg__apicalls_ip_forward", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_ip_forward", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_is_logical_deleted": {"name": "sms_stg__apicalls_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_media": {"name": "sms_stg__apicalls_media", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_media", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_message": {"name": "sms_stg__apicalls_message", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_message_id": {"name": "sms_stg__apicalls_message_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_message_id_int": {"name": "sms_stg__apicalls_message_id_int", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_message_id_int", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_message_notification_type": {"name": "sms_stg__apicalls_message_notification_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_message_notification_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_message_uuid": {"name": "sms_stg__apicalls_message_uuid", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_message_uuid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_method": {"name": "sms_stg__apicalls_method", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_method", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_modified": {"name": "sms_stg__apicalls_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_parts": {"name": "sms_stg__apicalls_parts", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_parts", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_platform": {"name": "sms_stg__apicalls_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_price_billed": {"name": "sms_stg__apicalls_price_billed", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_price_billed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_price_currency": {"name": "sms_stg__apicalls_price_currency", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_price_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_price_vendor_cost": {"name": "sms_stg__apicalls_price_vendor_cost", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_price_vendor_cost", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_processing_time": {"name": "sms_stg__apicalls_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_queue_id": {"name": "sms_stg__apicalls_queue_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_queue_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_referer": {"name": "sms_stg__apicalls_referer", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_referer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_request_id": {"name": "sms_stg__apicalls_request_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_request_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_sender_type": {"name": "sms_stg__apicalls_sender_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_sender_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_spot_user_balance": {"name": "sms_stg__apicalls_spot_user_balance", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_spot_user_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_status": {"name": "sms_stg__apicalls_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_to": {"name": "sms_stg__apicalls_to", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_to", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_ts_ms": {"name": "sms_stg__apicalls_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_type": {"name": "sms_stg__apicalls_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_upsolver_schema_version": {"name": "sms_stg__apicalls_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_user_id": {"name": "sms_stg__apicalls_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__apicalls_vendor_name_used": {"name": "sms_stg__apicalls_vendor_name_used", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "original_file_path": "models/sms/staging/base/sms_stg__apicalls/sms_stg__apicalls.md", "unique_id": "doc.yoda.sms_stg__apicalls_vendor_name_used", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__base_bigcommerce_users": {"name": "sms__base_bigcommerce_users", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms__base_bigcommerce_users", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__bigcommerce_users_abandoned_checkouts_sent": {"name": "sms_stg__bigcommerce_users_abandoned_checkouts_sent", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_abandoned_checkouts_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_access_token": {"name": "sms_stg__bigcommerce_users_access_token", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_access_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_app_data": {"name": "sms_stg__bigcommerce_users_app_data", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_app_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_auto_reload": {"name": "sms_stg__bigcommerce_users_auto_reload", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_auto_reload", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_auto_reload_amount": {"name": "sms_stg__bigcommerce_users_auto_reload_amount", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_auto_reload_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_auto_reload_cap": {"name": "sms_stg__bigcommerce_users_auto_reload_cap", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_auto_reload_cap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_auto_reload_threshold": {"name": "sms_stg__bigcommerce_users_auto_reload_threshold", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_auto_reload_threshold", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_connected": {"name": "sms_stg__bigcommerce_users_connected", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_connected", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_created": {"name": "sms_stg__bigcommerce_users_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_domain": {"name": "sms_stg__bigcommerce_users_domain", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_domain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_id": {"name": "sms_stg__bigcommerce_users_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_is_logical_deleted": {"name": "sms_stg__bigcommerce_users_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_modified": {"name": "sms_stg__bigcommerce_users_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_notes": {"name": "sms_stg__bigcommerce_users_notes", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_notes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_pinned_navigation": {"name": "sms_stg__bigcommerce_users_pinned_navigation", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_pinned_navigation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_plan_level": {"name": "sms_stg__bigcommerce_users_plan_level", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_plan_level", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_plan_name": {"name": "sms_stg__bigcommerce_users_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_processing_time": {"name": "sms_stg__bigcommerce_users_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_shop_data": {"name": "sms_stg__bigcommerce_users_shop_data", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_shop_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_store": {"name": "sms_stg__bigcommerce_users_store", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_store", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_store_hash": {"name": "sms_stg__bigcommerce_users_store_hash", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_store_hash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_sync_enabled": {"name": "sms_stg__bigcommerce_users_sync_enabled", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_sync_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_ts_ms": {"name": "sms_stg__bigcommerce_users_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_upsolver_schema_version": {"name": "sms_stg__bigcommerce_users_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__bigcommerce_users_user_id": {"name": "sms_stg__bigcommerce_users_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "original_file_path": "models/sms/staging/base/sms_stg__bigcommerce_users/sms_stg__bigcommerce_users.md", "unique_id": "doc.yoda.sms_stg__bigcommerce_users_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_lists": {"name": "sms_stg__campaign_lists", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "unique_id": "doc.yoda.sms_stg__campaign_lists", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__campaign_lists_campaign_id": {"name": "sms_stg__campaign_lists_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "unique_id": "doc.yoda.sms_stg__campaign_lists_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_lists_exclude": {"name": "sms_stg__campaign_lists_exclude", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "unique_id": "doc.yoda.sms_stg__campaign_lists_exclude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_lists_id": {"name": "sms_stg__campaign_lists_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "unique_id": "doc.yoda.sms_stg__campaign_lists_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_lists_list_id": {"name": "sms_stg__campaign_lists_list_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "unique_id": "doc.yoda.sms_stg__campaign_lists_list_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_lists_processing_time": {"name": "sms_stg__campaign_lists_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "unique_id": "doc.yoda.sms_stg__campaign_lists_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_lists_scheduled": {"name": "sms_stg__campaign_lists_scheduled", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "unique_id": "doc.yoda.sms_stg__campaign_lists_scheduled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_lists_ts_ms": {"name": "sms_stg__campaign_lists_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "unique_id": "doc.yoda.sms_stg__campaign_lists_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_lists_upsolver_schema_version": {"name": "sms_stg__campaign_lists_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "unique_id": "doc.yoda.sms_stg__campaign_lists_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_lists_user_id": {"name": "sms_stg__campaign_lists_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_lists/sms_stg__campaign_lists.md", "unique_id": "doc.yoda.sms_stg__campaign_lists_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_relations": {"name": "sms_stg__campaign_relations", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "unique_id": "doc.yoda.sms_stg__campaign_relations", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__campaign_relations_campaign_id": {"name": "sms_stg__campaign_relations_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "unique_id": "doc.yoda.sms_stg__campaign_relations_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_relations_created": {"name": "sms_stg__campaign_relations_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "unique_id": "doc.yoda.sms_stg__campaign_relations_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_relations_id": {"name": "sms_stg__campaign_relations_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "unique_id": "doc.yoda.sms_stg__campaign_relations_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_relations_modified": {"name": "sms_stg__campaign_relations_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "unique_id": "doc.yoda.sms_stg__campaign_relations_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_relations_processing_time": {"name": "sms_stg__campaign_relations_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "unique_id": "doc.yoda.sms_stg__campaign_relations_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_relations_resource_id": {"name": "sms_stg__campaign_relations_resource_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "unique_id": "doc.yoda.sms_stg__campaign_relations_resource_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_relations_resource_type": {"name": "sms_stg__campaign_relations_resource_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "unique_id": "doc.yoda.sms_stg__campaign_relations_resource_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_relations_ts_ms": {"name": "sms_stg__campaign_relations_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "unique_id": "doc.yoda.sms_stg__campaign_relations_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_relations_upsolver_schema_version": {"name": "sms_stg__campaign_relations_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "unique_id": "doc.yoda.sms_stg__campaign_relations_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaign_relations_user_id": {"name": "sms_stg__campaign_relations_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "original_file_path": "models/sms/staging/base/sms_stg__campaign_relations/sms_stg__campaign_relations.md", "unique_id": "doc.yoda.sms_stg__campaign_relations_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns": {"name": "sms_stg__campaigns", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__campaigns_ab_testing_id": {"name": "sms_stg__campaigns_ab_testing_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_ab_testing_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_approved": {"name": "sms_stg__campaigns_approved", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_approved", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_channel": {"name": "sms_stg__campaigns_channel", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_created": {"name": "sms_stg__campaigns_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_id": {"name": "sms_stg__campaigns_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_is_logical_deleted": {"name": "sms_stg__campaigns_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_is_repopulated": {"name": "sms_stg__campaigns_is_repopulated", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_is_repopulated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_list_id": {"name": "sms_stg__campaigns_list_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_list_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_message": {"name": "sms_stg__campaigns_message", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_modified": {"name": "sms_stg__campaigns_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_processing_time": {"name": "sms_stg__campaigns_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_request": {"name": "sms_stg__campaigns_request", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_request", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_scheduled": {"name": "sms_stg__campaigns_scheduled", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_scheduled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_sent": {"name": "sms_stg__campaigns_sent", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_status": {"name": "sms_stg__campaigns_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_title": {"name": "sms_stg__campaigns_title", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_total_sent": {"name": "sms_stg__campaigns_total_sent", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_total_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_ts_ms": {"name": "sms_stg__campaigns_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_upsolver_schema_version": {"name": "sms_stg__campaigns_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__campaigns_user_id": {"name": "sms_stg__campaigns_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__campaigns/sms_stg__campaigns.md", "unique_id": "doc.yoda.sms_stg__campaigns_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data": {"name": "sms_stg__comm_analytics_data", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__comm_analytics_data_aggregation_date": {"name": "sms_stg__comm_analytics_data_aggregation_date", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_aggregation_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_channel": {"name": "sms_stg__comm_analytics_data_channel", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_converted_flow_id": {"name": "sms_stg__comm_analytics_data_converted_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_converted_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_marketing_messages": {"name": "sms_stg__comm_analytics_data_marketing_messages", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_marketing_messages", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_message_count": {"name": "sms_stg__comm_analytics_data_message_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_message_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_source_creation_date": {"name": "sms_stg__comm_analytics_data_source_creation_date", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_source_creation_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_source_execution_date": {"name": "sms_stg__comm_analytics_data_source_execution_date", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_source_execution_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_source_id": {"name": "sms_stg__comm_analytics_data_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_source_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_source_message": {"name": "sms_stg__comm_analytics_data_source_message", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_source_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_source_name": {"name": "sms_stg__comm_analytics_data_source_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_source_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_source_status": {"name": "sms_stg__comm_analytics_data_source_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_source_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_source_trigger": {"name": "sms_stg__comm_analytics_data_source_trigger", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_source_trigger", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_source_type": {"name": "sms_stg__comm_analytics_data_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_source_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_store_id": {"name": "sms_stg__comm_analytics_data_store_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_sub_source_id": {"name": "sms_stg__comm_analytics_data_sub_source_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_sub_source_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_sub_source_type": {"name": "sms_stg__comm_analytics_data_sub_source_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_sub_source_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_active_subscriptions": {"name": "sms_stg__comm_analytics_data_total_active_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_active_subscriptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_bounce": {"name": "sms_stg__comm_analytics_data_total_bounce", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_bounce", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_clicks": {"name": "sms_stg__comm_analytics_data_total_clicks", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_clicks", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_deferred": {"name": "sms_stg__comm_analytics_data_total_deferred", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_deferred", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_delivered": {"name": "sms_stg__comm_analytics_data_total_delivered", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_delivered", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_drop": {"name": "sms_stg__comm_analytics_data_total_drop", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_drop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_failed": {"name": "sms_stg__comm_analytics_data_total_failed", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_failed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_hard_bounce": {"name": "sms_stg__comm_analytics_data_total_hard_bounce", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_hard_bounce", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_open": {"name": "sms_stg__comm_analytics_data_total_open", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_open", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_orders": {"name": "sms_stg__comm_analytics_data_total_orders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_orders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_processed": {"name": "sms_stg__comm_analytics_data_total_processed", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_processed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_restricted": {"name": "sms_stg__comm_analytics_data_total_restricted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_restricted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_revenue": {"name": "sms_stg__comm_analytics_data_total_revenue", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_revenue", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_sent": {"name": "sms_stg__comm_analytics_data_total_sent", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_skipped": {"name": "sms_stg__comm_analytics_data_total_skipped", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_skipped", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_smart_sending": {"name": "sms_stg__comm_analytics_data_total_smart_sending", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_smart_sending", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_soft_bounce": {"name": "sms_stg__comm_analytics_data_total_soft_bounce", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_soft_bounce", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_spam": {"name": "sms_stg__comm_analytics_data_total_spam", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_spam", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_spent": {"name": "sms_stg__comm_analytics_data_total_spent", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_spent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_subscriptions": {"name": "sms_stg__comm_analytics_data_total_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_subscriptions", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_suppressed": {"name": "sms_stg__comm_analytics_data_total_suppressed", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_suppressed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_total_unsubscribed": {"name": "sms_stg__comm_analytics_data_total_unsubscribed", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_total_unsubscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__comm_analytics_data_transactional_messages": {"name": "sms_stg__comm_analytics_data_transactional_messages", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "original_file_path": "models/sms/staging/base/sms_stg__comm_analytics_data/sms_stg__comm_analytics_data.md", "unique_id": "doc.yoda.sms_stg__comm_analytics_data_transactional_messages", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers": {"name": "sms_stg__customers", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__customers_accepts_marketing": {"name": "sms_stg__customers_accepts_marketing", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_accepts_marketing", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_created_at": {"name": "sms_stg__customers_created_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_customer_id": {"name": "sms_stg__customers_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_default_address": {"name": "sms_stg__customers_default_address", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_default_address", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_deleted": {"name": "sms_stg__customers_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_email": {"name": "sms_stg__customers_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_first_name": {"name": "sms_stg__customers_first_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_first_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_id": {"name": "sms_stg__customers_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_is_logical_deleted": {"name": "sms_stg__customers_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_last_name": {"name": "sms_stg__customers_last_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_last_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_last_order_id": {"name": "sms_stg__customers_last_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_last_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_last_order_name": {"name": "sms_stg__customers_last_order_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_last_order_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_orders_count": {"name": "sms_stg__customers_orders_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_orders_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_phone": {"name": "sms_stg__customers_phone", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_phone_formatted": {"name": "sms_stg__customers_phone_formatted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_phone_formatted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_processing_time": {"name": "sms_stg__customers_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_smsbump_user_id": {"name": "sms_stg__customers_smsbump_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_smsbump_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_state": {"name": "sms_stg__customers_state", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_state", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_timezone": {"name": "sms_stg__customers_timezone", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_timezone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_total_spent": {"name": "sms_stg__customers_total_spent", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_total_spent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_ts_ms": {"name": "sms_stg__customers_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_updated_at": {"name": "sms_stg__customers_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_upsolver_schema_version": {"name": "sms_stg__customers_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_verified_email": {"name": "sms_stg__customers_verified_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers/sms_stg__customers.md", "original_file_path": "models/sms/staging/base/sms_stg__customers/sms_stg__customers.md", "unique_id": "doc.yoda.sms_stg__customers_verified_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses": {"name": "sms_stg__customers_addresses", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__customers_addresses_address1": {"name": "sms_stg__customers_addresses_address1", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_address1", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_address2": {"name": "sms_stg__customers_addresses_address2", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_address2", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_address_id": {"name": "sms_stg__customers_addresses_address_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_address_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_city": {"name": "sms_stg__customers_addresses_city", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_company": {"name": "sms_stg__customers_addresses_company", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_company", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_country": {"name": "sms_stg__customers_addresses_country", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_country_code": {"name": "sms_stg__customers_addresses_country_code", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_country_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_country_name": {"name": "sms_stg__customers_addresses_country_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_country_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_customer_id": {"name": "sms_stg__customers_addresses_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_default": {"name": "sms_stg__customers_addresses_default", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_default", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_deleted": {"name": "sms_stg__customers_addresses_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_first_name": {"name": "sms_stg__customers_addresses_first_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_first_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_id": {"name": "sms_stg__customers_addresses_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_last_name": {"name": "sms_stg__customers_addresses_last_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_last_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_name": {"name": "sms_stg__customers_addresses_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_phone": {"name": "sms_stg__customers_addresses_phone", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_phone_formatted": {"name": "sms_stg__customers_addresses_phone_formatted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_phone_formatted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_processing_time": {"name": "sms_stg__customers_addresses_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_province": {"name": "sms_stg__customers_addresses_province", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_province", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_province_code": {"name": "sms_stg__customers_addresses_province_code", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_province_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_smsbump_customer_id": {"name": "sms_stg__customers_addresses_smsbump_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_smsbump_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_smsbump_user_id": {"name": "sms_stg__customers_addresses_smsbump_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_smsbump_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_ts_ms": {"name": "sms_stg__customers_addresses_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_upsolver_schema_version": {"name": "sms_stg__customers_addresses_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__customers_addresses_zip": {"name": "sms_stg__customers_addresses_zip", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "original_file_path": "models/sms/staging/base/sms_stg__customers_addresses/sms_stg__customers_addresses.md", "unique_id": "doc.yoda.sms_stg__customers_addresses_zip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages": {"name": "sms_stg__default_predefined_messages", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__default_predefined_messages_active": {"name": "sms_stg__default_predefined_messages_active", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_active", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages_category": {"name": "sms_stg__default_predefined_messages_category", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages_created": {"name": "sms_stg__default_predefined_messages_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages_default_message": {"name": "sms_stg__default_predefined_messages_default_message", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_default_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages_id": {"name": "sms_stg__default_predefined_messages_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages_modified": {"name": "sms_stg__default_predefined_messages_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages_processing_time": {"name": "sms_stg__default_predefined_messages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages_sub_category": {"name": "sms_stg__default_predefined_messages_sub_category", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_sub_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages_trigger": {"name": "sms_stg__default_predefined_messages_trigger", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_trigger", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages_ts_ms": {"name": "sms_stg__default_predefined_messages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages_type": {"name": "sms_stg__default_predefined_messages_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__default_predefined_messages_upsolver_schema_version": {"name": "sms_stg__default_predefined_messages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "original_file_path": "models/sms/staging/base/sms_stg__default_predefined_messages/sms_stg__default_predefined_messages.md", "unique_id": "doc.yoda.sms_stg__default_predefined_messages_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges": {"name": "sms_stg__email_charges", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__email_charges_campaign_email_count": {"name": "sms_stg__email_charges_campaign_email_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_campaign_email_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_created": {"name": "sms_stg__email_charges_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_currency": {"name": "sms_stg__email_charges_currency", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_flow_email_count": {"name": "sms_stg__email_charges_flow_email_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_flow_email_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_id": {"name": "sms_stg__email_charges_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_modified": {"name": "sms_stg__email_charges_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_price": {"name": "sms_stg__email_charges_price", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_processing_time": {"name": "sms_stg__email_charges_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_total_emails": {"name": "sms_stg__email_charges_total_emails", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_total_emails", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_ts_ms": {"name": "sms_stg__email_charges_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_type": {"name": "sms_stg__email_charges_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_upsolver_schema_version": {"name": "sms_stg__email_charges_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_charges_user_id": {"name": "sms_stg__email_charges_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "original_file_path": "models/sms/staging/base/sms_stg__email_charges/sms_stg__email_charges.md", "unique_id": "doc.yoda.sms_stg__email_charges_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_to_sms_campaigns": {"name": "sms_stg__email_to_sms_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__email_to_sms_campaigns/sms_stg__email_to_sms_campaigns.md", "original_file_path": "models/sms/staging/base/sms_stg__email_to_sms_campaigns/sms_stg__email_to_sms_campaigns.md", "unique_id": "doc.yoda.sms_stg__email_to_sms_campaigns", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms__base_events": {"name": "sms__base_events", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms__base_events", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__events_created": {"name": "sms_stg__events_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_id": {"name": "sms_stg__events_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_is_logical_deleted": {"name": "sms_stg__events_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_modified": {"name": "sms_stg__events_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_name": {"name": "sms_stg__events_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_platform": {"name": "sms_stg__events_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_processing_time": {"name": "sms_stg__events_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_settings": {"name": "sms_stg__events_settings", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_settings", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_status": {"name": "sms_stg__events_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_ts_ms": {"name": "sms_stg__events_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_upsolver_schema_version": {"name": "sms_stg__events_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_user_id": {"name": "sms_stg__events_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__events_webhook": {"name": "sms_stg__events_webhook", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__events/sms_stg__events.md", "original_file_path": "models/sms/staging/base/sms_stg__events/sms_stg__events.md", "unique_id": "doc.yoda.sms_stg__events_webhook", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks": {"name": "sms_stg__flow_link_clicks", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__flow_link_clicks_clicks_count": {"name": "sms_stg__flow_link_clicks_clicks_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_clicks_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_created": {"name": "sms_stg__flow_link_clicks_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_flow_id": {"name": "sms_stg__flow_link_clicks_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_flow_step_id": {"name": "sms_stg__flow_link_clicks_flow_step_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_flow_step_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_id": {"name": "sms_stg__flow_link_clicks_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_is_logical_deleted": {"name": "sms_stg__flow_link_clicks_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_link_id": {"name": "sms_stg__flow_link_clicks_link_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_link_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_modified": {"name": "sms_stg__flow_link_clicks_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_number": {"name": "sms_stg__flow_link_clicks_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_processing_time": {"name": "sms_stg__flow_link_clicks_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_ts_ms": {"name": "sms_stg__flow_link_clicks_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_ua": {"name": "sms_stg__flow_link_clicks_ua", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_ua", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_upsolver_schema_version": {"name": "sms_stg__flow_link_clicks_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_link_clicks_user_id": {"name": "sms_stg__flow_link_clicks_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_link_clicks/sms_stg__flow_link_clicks.md", "unique_id": "doc.yoda.sms_stg__flow_link_clicks_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_links": {"name": "sms_stg__flow_links", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__flow_links_ab_entity_id": {"name": "sms_stg__flow_links_ab_entity_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links_ab_entity_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_links_clicks_count": {"name": "sms_stg__flow_links_clicks_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links_clicks_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_links_created": {"name": "sms_stg__flow_links_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_links_flow_id": {"name": "sms_stg__flow_links_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_links_flow_step_id": {"name": "sms_stg__flow_links_flow_step_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links_flow_step_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_links_id": {"name": "sms_stg__flow_links_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_links_link": {"name": "sms_stg__flow_links_link", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links_link", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_links_modified": {"name": "sms_stg__flow_links_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_links_processing_time": {"name": "sms_stg__flow_links_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_links_ts_ms": {"name": "sms_stg__flow_links_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flow_links_upsolver_schema_version": {"name": "sms_stg__flow_links_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "original_file_path": "models/sms/staging/base/sms_stg__flow_links/sms_stg__flow_links.md", "unique_id": "doc.yoda.sms_stg__flow_links_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__base_flows": {"name": "sms__base_flows", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms__base_flows", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__flows_created": {"name": "sms_stg__flows_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_flow_settings": {"name": "sms_stg__flows_flow_settings", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_flow_settings", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_flow_trigger": {"name": "sms_stg__flows_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_flow_trigger", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_id": {"name": "sms_stg__flows_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_is_logical_deleted": {"name": "sms_stg__flows_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_modified": {"name": "sms_stg__flows_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_name": {"name": "sms_stg__flows_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_platform": {"name": "sms_stg__flows_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_processing_time": {"name": "sms_stg__flows_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_snapshot_id": {"name": "sms_stg__flows_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_status": {"name": "sms_stg__flows_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_ts_ms": {"name": "sms_stg__flows_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_upsolver_schema_version": {"name": "sms_stg__flows_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__flows_user_id": {"name": "sms_stg__flows_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__flows/sms_stg__flows.md", "original_file_path": "models/sms/staging/base/sms_stg__flows/sms_stg__flows.md", "unique_id": "doc.yoda.sms_stg__flows_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms": {"name": "sms_stg__forms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__forms_created": {"name": "sms_stg__forms_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_dynamic_popup": {"name": "sms_stg__forms_dynamic_popup", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_dynamic_popup", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_event_id": {"name": "sms_stg__forms_event_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_flow_id": {"name": "sms_stg__forms_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_id": {"name": "sms_stg__forms_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_is_logical_deleted": {"name": "sms_stg__forms_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_modified": {"name": "sms_stg__forms_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_name": {"name": "sms_stg__forms_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_platform": {"name": "sms_stg__forms_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_platform_script_id": {"name": "sms_stg__forms_platform_script_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_platform_script_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_processing_time": {"name": "sms_stg__forms_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_settings": {"name": "sms_stg__forms_settings", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_settings", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_status": {"name": "sms_stg__forms_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_ts_ms": {"name": "sms_stg__forms_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_type": {"name": "sms_stg__forms_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_upsolver_schema_version": {"name": "sms_stg__forms_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__forms_user_id": {"name": "sms_stg__forms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__forms/sms_stg__forms.md", "original_file_path": "models/sms/staging/base/sms_stg__forms/sms_stg__forms.md", "unique_id": "doc.yoda.sms_stg__forms_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__free_credits_logs": {"name": "sms_stg__free_credits_logs", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "unique_id": "doc.yoda.sms_stg__free_credits_logs", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__free_credits_logs_amount": {"name": "sms_stg__free_credits_logs_amount", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "unique_id": "doc.yoda.sms_stg__free_credits_logs_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__free_credits_logs_created_at": {"name": "sms_stg__free_credits_logs_created_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "unique_id": "doc.yoda.sms_stg__free_credits_logs_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__free_credits_logs_id": {"name": "sms_stg__free_credits_logs_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "unique_id": "doc.yoda.sms_stg__free_credits_logs_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__free_credits_logs_is_logical_deleted": {"name": "sms_stg__free_credits_logs_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "unique_id": "doc.yoda.sms_stg__free_credits_logs_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__free_credits_logs_processing_time": {"name": "sms_stg__free_credits_logs_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "unique_id": "doc.yoda.sms_stg__free_credits_logs_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__free_credits_logs_source": {"name": "sms_stg__free_credits_logs_source", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "unique_id": "doc.yoda.sms_stg__free_credits_logs_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__free_credits_logs_store_name": {"name": "sms_stg__free_credits_logs_store_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "unique_id": "doc.yoda.sms_stg__free_credits_logs_store_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__free_credits_logs_ts_ms": {"name": "sms_stg__free_credits_logs_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "unique_id": "doc.yoda.sms_stg__free_credits_logs_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__free_credits_logs_upsolver_schema_version": {"name": "sms_stg__free_credits_logs_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "unique_id": "doc.yoda.sms_stg__free_credits_logs_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__free_credits_logs_user_id": {"name": "sms_stg__free_credits_logs_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "original_file_path": "models/sms/staging/base/sms_stg__free_credits_logs/sms_stg__free_credits_logs.md", "unique_id": "doc.yoda.sms_stg__free_credits_logs_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks": {"name": "sms_stg__link_clicks", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__link_clicks_campaign_id": {"name": "sms_stg__link_clicks_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_clicks_count": {"name": "sms_stg__link_clicks_clicks_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_clicks_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_created": {"name": "sms_stg__link_clicks_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_event_id": {"name": "sms_stg__link_clicks_event_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_id": {"name": "sms_stg__link_clicks_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_is_logical_deleted": {"name": "sms_stg__link_clicks_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_link_id": {"name": "sms_stg__link_clicks_link_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_link_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_modified": {"name": "sms_stg__link_clicks_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_number": {"name": "sms_stg__link_clicks_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_processing_time": {"name": "sms_stg__link_clicks_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_ts_ms": {"name": "sms_stg__link_clicks_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_ua": {"name": "sms_stg__link_clicks_ua", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_ua", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_upsolver_schema_version": {"name": "sms_stg__link_clicks_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__link_clicks_user_id": {"name": "sms_stg__link_clicks_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "original_file_path": "models/sms/staging/base/sms_stg__link_clicks/sms_stg__link_clicks.md", "unique_id": "doc.yoda.sms_stg__link_clicks_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists": {"name": "sms_stg__lists", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__lists_count": {"name": "sms_stg__lists_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists_created": {"name": "sms_stg__lists_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists_id": {"name": "sms_stg__lists_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists_is_email_list": {"name": "sms_stg__lists_is_email_list", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_is_email_list", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists_is_hidden": {"name": "sms_stg__lists_is_hidden", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_is_hidden", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists_list_name": {"name": "sms_stg__lists_list_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_list_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists_modified": {"name": "sms_stg__lists_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists_processing_time": {"name": "sms_stg__lists_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists_segment_id": {"name": "sms_stg__lists_segment_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_segment_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists_ts_ms": {"name": "sms_stg__lists_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists_upsolver_schema_version": {"name": "sms_stg__lists_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__lists_user_id": {"name": "sms_stg__lists_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__lists/sms_stg__lists.md", "original_file_path": "models/sms/staging/base/sms_stg__lists/sms_stg__lists.md", "unique_id": "doc.yoda.sms_stg__lists_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__base_loyalty_flows_data": {"name": "sms__base_loyalty_flows_data", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "original_file_path": "models/sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "unique_id": "doc.yoda.sms__base_loyalty_flows_data", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__loyalty_flows_data_condition": {"name": "sms_stg__loyalty_flows_data_condition", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "original_file_path": "models/sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "unique_id": "doc.yoda.sms_stg__loyalty_flows_data_condition", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__loyalty_flows_data_flow_trigger": {"name": "sms_stg__loyalty_flows_data_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "original_file_path": "models/sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "unique_id": "doc.yoda.sms_stg__loyalty_flows_data_flow_trigger", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__loyalty_flows_data_id": {"name": "sms_stg__loyalty_flows_data_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "original_file_path": "models/sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "unique_id": "doc.yoda.sms_stg__loyalty_flows_data_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__loyalty_flows_data_shortcode": {"name": "sms_stg__loyalty_flows_data_shortcode", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "original_file_path": "models/sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "unique_id": "doc.yoda.sms_stg__loyalty_flows_data_shortcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__loyalty_flows_data_user_id": {"name": "sms_stg__loyalty_flows_data_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "original_file_path": "models/sms/staging/base/sms_stg__loyalty_flows_data/sms_stg__loyalty_flows_data.md", "unique_id": "doc.yoda.sms_stg__loyalty_flows_data_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders": {"name": "sms_stg__orders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__orders_app_id": {"name": "sms_stg__orders_app_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_app_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_browser_ip": {"name": "sms_stg__orders_browser_ip", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_browser_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_buyer_accepts_marketing": {"name": "sms_stg__orders_buyer_accepts_marketing", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_buyer_accepts_marketing", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_cancel_reason": {"name": "sms_stg__orders_cancel_reason", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_cancel_reason", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_cancelled_at": {"name": "sms_stg__orders_cancelled_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_cancelled_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_cart_token": {"name": "sms_stg__orders_cart_token", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_cart_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_checkout_id": {"name": "sms_stg__orders_checkout_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_checkout_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_checkout_token": {"name": "sms_stg__orders_checkout_token", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_checkout_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_closed_at": {"name": "sms_stg__orders_closed_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_closed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_confirmed": {"name": "sms_stg__orders_confirmed", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_confirmed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_contact_email": {"name": "sms_stg__orders_contact_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_contact_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_created_at": {"name": "sms_stg__orders_created_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_currency": {"name": "sms_stg__orders_currency", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_currency", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_customer_id": {"name": "sms_stg__orders_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_customer_locale": {"name": "sms_stg__orders_customer_locale", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_customer_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_device_id": {"name": "sms_stg__orders_device_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_device_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_email": {"name": "sms_stg__orders_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_financial_status": {"name": "sms_stg__orders_financial_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_financial_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_fulfillment_status": {"name": "sms_stg__orders_fulfillment_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_fulfillment_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_gateway": {"name": "sms_stg__orders_gateway", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_gateway", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_id": {"name": "sms_stg__orders_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_is_logical_deleted": {"name": "sms_stg__orders_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_landing_site": {"name": "sms_stg__orders_landing_site", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_landing_site", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_landing_site_ref": {"name": "sms_stg__orders_landing_site_ref", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_landing_site_ref", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_location_id": {"name": "sms_stg__orders_location_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_location_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_name": {"name": "sms_stg__orders_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_note": {"name": "sms_stg__orders_note", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_note", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_number": {"name": "sms_stg__orders_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_order_id": {"name": "sms_stg__orders_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_order_number": {"name": "sms_stg__orders_order_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_order_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_order_status_url": {"name": "sms_stg__orders_order_status_url", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_order_status_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_phone": {"name": "sms_stg__orders_phone", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_phone_formatted": {"name": "sms_stg__orders_phone_formatted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_phone_formatted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_processed_at": {"name": "sms_stg__orders_processed_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_processed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_processing_method": {"name": "sms_stg__orders_processing_method", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_processing_method", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_processing_time": {"name": "sms_stg__orders_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_reference": {"name": "sms_stg__orders_reference", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_reference", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_referring_site": {"name": "sms_stg__orders_referring_site", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_referring_site", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_smsbump_user_id": {"name": "sms_stg__orders_smsbump_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_smsbump_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_source_identifier": {"name": "sms_stg__orders_source_identifier", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_source_identifier", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_source_name": {"name": "sms_stg__orders_source_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_source_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_source_url": {"name": "sms_stg__orders_source_url", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_source_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_subtotal_price": {"name": "sms_stg__orders_subtotal_price", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_subtotal_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_tags": {"name": "sms_stg__orders_tags", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_tags", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_taxes_included": {"name": "sms_stg__orders_taxes_included", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_taxes_included", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_test": {"name": "sms_stg__orders_test", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_test", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_token": {"name": "sms_stg__orders_token", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_total_discounts": {"name": "sms_stg__orders_total_discounts", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_total_discounts", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_total_line_items_price": {"name": "sms_stg__orders_total_line_items_price", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_total_line_items_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_total_price": {"name": "sms_stg__orders_total_price", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_total_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_total_price_usd": {"name": "sms_stg__orders_total_price_usd", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_total_price_usd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_total_tax": {"name": "sms_stg__orders_total_tax", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_total_tax", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_total_weight": {"name": "sms_stg__orders_total_weight", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_total_weight", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_ts_ms": {"name": "sms_stg__orders_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_updated_at": {"name": "sms_stg__orders_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_upsolver_schema_version": {"name": "sms_stg__orders_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__orders_user_id": {"name": "sms_stg__orders_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__orders/sms_stg__orders.md", "original_file_path": "models/sms/staging/base/sms_stg__orders/sms_stg__orders.md", "unique_id": "doc.yoda.sms_stg__orders_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages": {"name": "sms_stg__packages", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__packages_bonus_credits": {"name": "sms_stg__packages_bonus_credits", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_bonus_credits", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_created": {"name": "sms_stg__packages_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_description": {"name": "sms_stg__packages_description", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_display_name": {"name": "sms_stg__packages_display_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_display_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_id": {"name": "sms_stg__packages_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_is_logical_deleted": {"name": "sms_stg__packages_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_modified": {"name": "sms_stg__packages_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_name": {"name": "sms_stg__packages_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_payment_key": {"name": "sms_stg__packages_payment_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_payment_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_period": {"name": "sms_stg__packages_period", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_period", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_plan_key": {"name": "sms_stg__packages_plan_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_plan_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_platform": {"name": "sms_stg__packages_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_price": {"name": "sms_stg__packages_price", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_processing_time": {"name": "sms_stg__packages_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_status": {"name": "sms_stg__packages_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_sub_title": {"name": "sms_stg__packages_sub_title", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_sub_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_ts_ms": {"name": "sms_stg__packages_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_type": {"name": "sms_stg__packages_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_upsolver_schema_version": {"name": "sms_stg__packages_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_visible_app": {"name": "sms_stg__packages_visible_app", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_visible_app", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__packages_visible_site": {"name": "sms_stg__packages_visible_site", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__packages/sms_stg__packages.md", "original_file_path": "models/sms/staging/base/sms_stg__packages/sms_stg__packages.md", "unique_id": "doc.yoda.sms_stg__packages_visible_site", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases": {"name": "sms_stg__purchases", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__purchases_affiliate_id": {"name": "sms_stg__purchases_affiliate_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_affiliate_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_amount_added": {"name": "sms_stg__purchases_amount_added", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_amount_added", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_amount_paid": {"name": "sms_stg__purchases_amount_paid", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_amount_paid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_cart": {"name": "sms_stg__purchases_cart", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_cart", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_created": {"name": "sms_stg__purchases_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_discount_code": {"name": "sms_stg__purchases_discount_code", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_discount_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_downloads_history": {"name": "sms_stg__purchases_downloads_history", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_downloads_history", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_gateway": {"name": "sms_stg__purchases_gateway", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_gateway", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_id": {"name": "sms_stg__purchases_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_invoice": {"name": "sms_stg__purchases_invoice", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_invoice", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_ipnlog": {"name": "sms_stg__purchases_ipnlog", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_ipnlog", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_is_logical_deleted": {"name": "sms_stg__purchases_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_last_downloaded": {"name": "sms_stg__purchases_last_downloaded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_last_downloaded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_licenses": {"name": "sms_stg__purchases_licenses", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_licenses", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_modified": {"name": "sms_stg__purchases_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_notes": {"name": "sms_stg__purchases_notes", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_notes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_number": {"name": "sms_stg__purchases_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_platform": {"name": "sms_stg__purchases_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_processing_time": {"name": "sms_stg__purchases_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_product": {"name": "sms_stg__purchases_product", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_product_id": {"name": "sms_stg__purchases_product_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_purchase_info": {"name": "sms_stg__purchases_purchase_info", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_purchase_info", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_purchased_from": {"name": "sms_stg__purchases_purchased_from", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_purchased_from", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_purchased_on": {"name": "sms_stg__purchases_purchased_on", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_purchased_on", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_rating": {"name": "sms_stg__purchases_rating", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_rating", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_reason": {"name": "sms_stg__purchases_reason", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_reason", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_reminders": {"name": "sms_stg__purchases_reminders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_reminders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_shopify_charge_response": {"name": "sms_stg__purchases_shopify_charge_response", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_shopify_charge_response", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_status": {"name": "sms_stg__purchases_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_store_id": {"name": "sms_stg__purchases_store_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_ts_ms": {"name": "sms_stg__purchases_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_type": {"name": "sms_stg__purchases_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_upsolver_schema_version": {"name": "sms_stg__purchases_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_user_id": {"name": "sms_stg__purchases_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__purchases_vendor_id": {"name": "sms_stg__purchases_vendor_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "original_file_path": "models/sms/staging/base/sms_stg__purchases/sms_stg__purchases.md", "unique_id": "doc.yoda.sms_stg__purchases_vendor_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_analytics_orders": {"name": "sms_stg__shopify_analytics_orders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_analytics_orders/sms_stg__shopify_analytics_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_analytics_orders/sms_stg__shopify_analytics_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_analytics_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes": {"name": "sms_stg__shopify_campaign_discount_codes", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_ab_campaign_id": {"name": "sms_stg__shopify_campaign_discount_codes_ab_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_ab_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_auto_generated": {"name": "sms_stg__shopify_campaign_discount_codes_auto_generated", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_auto_generated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_campaign_id": {"name": "sms_stg__shopify_campaign_discount_codes_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_created": {"name": "sms_stg__shopify_campaign_discount_codes_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_discount_code": {"name": "sms_stg__shopify_campaign_discount_codes_discount_code", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_discount_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_id": {"name": "sms_stg__shopify_campaign_discount_codes_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_is_logical_deleted": {"name": "sms_stg__shopify_campaign_discount_codes_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_modified": {"name": "sms_stg__shopify_campaign_discount_codes_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_processing_time": {"name": "sms_stg__shopify_campaign_discount_codes_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_ts_ms": {"name": "sms_stg__shopify_campaign_discount_codes_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_upsolver_schema_version": {"name": "sms_stg__shopify_campaign_discount_codes_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_discount_codes_user_id": {"name": "sms_stg__shopify_campaign_discount_codes_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_discount_codes/sms_stg__shopify_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_discount_codes_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders": {"name": "sms_stg__shopify_campaign_orders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__shopify_campaign_orders_ab_campaign_id": {"name": "sms_stg__shopify_campaign_orders_ab_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_ab_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_amount": {"name": "sms_stg__shopify_campaign_orders_amount", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_campaign_id": {"name": "sms_stg__shopify_campaign_orders_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_channel": {"name": "sms_stg__shopify_campaign_orders_channel", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_created": {"name": "sms_stg__shopify_campaign_orders_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_id": {"name": "sms_stg__shopify_campaign_orders_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_is_logical_deleted": {"name": "sms_stg__shopify_campaign_orders_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_modified": {"name": "sms_stg__shopify_campaign_orders_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_order_id": {"name": "sms_stg__shopify_campaign_orders_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_phone": {"name": "sms_stg__shopify_campaign_orders_phone", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_processing_time": {"name": "sms_stg__shopify_campaign_orders_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_ts_ms": {"name": "sms_stg__shopify_campaign_orders_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_upsolver_schema_version": {"name": "sms_stg__shopify_campaign_orders_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_campaign_orders_user_id": {"name": "sms_stg__shopify_campaign_orders_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_campaign_orders/sms_stg__shopify_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_campaign_orders_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders": {"name": "sms_stg__shopify_flows_orders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__shopify_flows_orders_ab_entity_id": {"name": "sms_stg__shopify_flows_orders_ab_entity_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_ab_entity_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_amount": {"name": "sms_stg__shopify_flows_orders_amount", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_conversion_source": {"name": "sms_stg__shopify_flows_orders_conversion_source", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_conversion_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_created": {"name": "sms_stg__shopify_flows_orders_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_flow_id": {"name": "sms_stg__shopify_flows_orders_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_flow_snapshot_id": {"name": "sms_stg__shopify_flows_orders_flow_snapshot_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_flow_snapshot_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_flow_step_id": {"name": "sms_stg__shopify_flows_orders_flow_step_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_flow_step_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_id": {"name": "sms_stg__shopify_flows_orders_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_is_logical_deleted": {"name": "sms_stg__shopify_flows_orders_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_modified": {"name": "sms_stg__shopify_flows_orders_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_order_id": {"name": "sms_stg__shopify_flows_orders_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_phone": {"name": "sms_stg__shopify_flows_orders_phone", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_processing_time": {"name": "sms_stg__shopify_flows_orders_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_recovered": {"name": "sms_stg__shopify_flows_orders_recovered", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_recovered", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_shopify_customer_id": {"name": "sms_stg__shopify_flows_orders_shopify_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_shopify_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_ts_ms": {"name": "sms_stg__shopify_flows_orders_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_upsolver_schema_version": {"name": "sms_stg__shopify_flows_orders_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_flows_orders_user_id": {"name": "sms_stg__shopify_flows_orders_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_flows_orders/sms_stg__shopify_flows_orders.md", "unique_id": "doc.yoda.sms_stg__shopify_flows_orders_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments": {"name": "sms_stg__shopify_segments", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__shopify_segments_created": {"name": "sms_stg__shopify_segments_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments_id": {"name": "sms_stg__shopify_segments_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments_last_updated": {"name": "sms_stg__shopify_segments_last_updated", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_last_updated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments_modified": {"name": "sms_stg__shopify_segments_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments_platform": {"name": "sms_stg__shopify_segments_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments_processing_time": {"name": "sms_stg__shopify_segments_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments_segment_rules": {"name": "sms_stg__shopify_segments_segment_rules", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_segment_rules", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments_status": {"name": "sms_stg__shopify_segments_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments_ts_ms": {"name": "sms_stg__shopify_segments_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments_upsolver_schema_version": {"name": "sms_stg__shopify_segments_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments_used_in_unomi": {"name": "sms_stg__shopify_segments_used_in_unomi", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_used_in_unomi", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_segments_user_id": {"name": "sms_stg__shopify_segments_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_segments/sms_stg__shopify_segments.md", "unique_id": "doc.yoda.sms_stg__shopify_segments_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__base_shopify_users": {"name": "sms__base_shopify_users", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms__base_shopify_users", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__shopify_users_abandoned_checkouts_sent": {"name": "sms_stg__shopify_users_abandoned_checkouts_sent", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_abandoned_checkouts_sent", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_access_token": {"name": "sms_stg__shopify_users_access_token", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_access_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_app_data": {"name": "sms_stg__shopify_users_app_data", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_app_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_associated_user": {"name": "sms_stg__shopify_users_associated_user", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_associated_user", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_auto_reload": {"name": "sms_stg__shopify_users_auto_reload", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_auto_reload", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_auto_reload_amount": {"name": "sms_stg__shopify_users_auto_reload_amount", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_auto_reload_amount", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_auto_reload_cap": {"name": "sms_stg__shopify_users_auto_reload_cap", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_auto_reload_cap", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_auto_reload_threshold": {"name": "sms_stg__shopify_users_auto_reload_threshold", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_auto_reload_threshold", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_back_fill_completed": {"name": "sms_stg__shopify_users_back_fill_completed", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_back_fill_completed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_connected": {"name": "sms_stg__shopify_users_connected", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_connected", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_consent_webhook_enabled": {"name": "sms_stg__shopify_users_consent_webhook_enabled", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_consent_webhook_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_created": {"name": "sms_stg__shopify_users_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_domain": {"name": "sms_stg__shopify_users_domain", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_domain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_id": {"name": "sms_stg__shopify_users_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_is_logical_deleted": {"name": "sms_stg__shopify_users_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_modified": {"name": "sms_stg__shopify_users_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_notes": {"name": "sms_stg__shopify_users_notes", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_notes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_pinned_navigation": {"name": "sms_stg__shopify_users_pinned_navigation", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_pinned_navigation", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_plan": {"name": "sms_stg__shopify_users_plan", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_platform": {"name": "sms_stg__shopify_users_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_processing_time": {"name": "sms_stg__shopify_users_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_shop_data": {"name": "sms_stg__shopify_users_shop_data", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_shop_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_shopify_store_id": {"name": "sms_stg__shopify_users_shopify_store_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_shopify_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_store": {"name": "sms_stg__shopify_users_store", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_store", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_sync_enabled": {"name": "sms_stg__shopify_users_sync_enabled", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_sync_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_ts_ms": {"name": "sms_stg__shopify_users_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_upsolver_schema_version": {"name": "sms_stg__shopify_users_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__shopify_users_user_id": {"name": "sms_stg__shopify_users_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "original_file_path": "models/sms/staging/base/sms_stg__shopify_users/sms_stg__shopify_users.md", "unique_id": "doc.yoda.sms_stg__shopify_users_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_campaign_created": {"name": "sms_campaign_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_campaign_created", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__sms_campaign_created_abtestgroupsize": {"name": "sms_stg__sms_campaign_created_abtestgroupsize", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_abtestgroupsize", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_abtestingnumberoftestgroups": {"name": "sms_stg__sms_campaign_created_abtestingnumberoftestgroups", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_abtestingnumberoftestgroups", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_abtestperiod": {"name": "sms_stg__sms_campaign_created_abtestperiod", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_abtestperiod", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_abwinningmetric": {"name": "sms_stg__sms_campaign_created_abwinningmetric", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_abwinningmetric", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_adminusername": {"name": "sms_stg__sms_campaign_created_adminusername", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_adminusername", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_anonymous_id": {"name": "sms_stg__sms_campaign_created_anonymous_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_anonymous_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_appkey": {"name": "sms_stg__sms_campaign_created_appkey", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_appkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_audiencesize": {"name": "sms_stg__sms_campaign_created_audiencesize", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_audiencesize", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_auth0userid": {"name": "sms_stg__sms_campaign_created_auth0userid", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_auth0userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_campaignid": {"name": "sms_stg__sms_campaign_created_campaignid", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_campaignid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_channel": {"name": "sms_stg__sms_campaign_created_channel", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_channel", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_clicktobuyadded": {"name": "sms_stg__sms_campaign_created_clicktobuyadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_clicktobuyadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_contentedited": {"name": "sms_stg__sms_campaign_created_contentedited", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_contentedited", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_customname": {"name": "sms_stg__sms_campaign_created_customname", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_customname", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_discountadded": {"name": "sms_stg__sms_campaign_created_discountadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_discountadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_discountcodeadded": {"name": "sms_stg__sms_campaign_created_discountcodeadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_discountcodeadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_discounturladded": {"name": "sms_stg__sms_campaign_created_discounturladded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_discounturladded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_discountvalueadded": {"name": "sms_stg__sms_campaign_created_discountvalueadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_discountvalueadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_emojiadded": {"name": "sms_stg__sms_campaign_created_emojiadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_emojiadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_event_name": {"name": "sms_stg__sms_campaign_created_event_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_event_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_excludedaudience": {"name": "sms_stg__sms_campaign_created_excludedaudience", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_excludedaudience", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_firstnameadded": {"name": "sms_stg__sms_campaign_created_firstnameadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_firstnameadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_haslists": {"name": "sms_stg__sms_campaign_created_haslists", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_haslists", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_hasloyaltysegments": {"name": "sms_stg__sms_campaign_created_hasloyaltysegments", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_hasloyaltysegments", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_haspredictivesegments": {"name": "sms_stg__sms_campaign_created_haspredictivesegments", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_haspredictivesegments", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_hasreviewssegments": {"name": "sms_stg__sms_campaign_created_hasreviewssegments", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_hasreviewssegments", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_imageadded": {"name": "sms_stg__sms_campaign_created_imageadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_imageadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_is_desktop": {"name": "sms_stg__sms_campaign_created_is_desktop", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_is_desktop", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_is_mobile": {"name": "sms_stg__sms_campaign_created_is_mobile", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_is_mobile", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_is_tablet": {"name": "sms_stg__sms_campaign_created_is_tablet", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_is_tablet", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_isabtesting": {"name": "sms_stg__sms_campaign_created_isabtesting", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_isabtesting", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_isdatechanged": {"name": "sms_stg__sms_campaign_created_isdatechanged", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_isdatechanged", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_isinternaluser": {"name": "sms_stg__sms_campaign_created_isinternaluser", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_isinternaluser", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_isloyalty": {"name": "sms_stg__sms_campaign_created_isloyalty", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_isloyalty", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_isreviews": {"name": "sms_stg__sms_campaign_created_isreviews", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_isreviews", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_isscheduled": {"name": "sms_stg__sms_campaign_created_isscheduled", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_isscheduled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_issmartsending": {"name": "sms_stg__sms_campaign_created_issmartsending", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_issmartsending", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_issms": {"name": "sms_stg__sms_campaign_created_issms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_issms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_istimezonebased": {"name": "sms_stg__sms_campaign_created_istimezonebased", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_istimezonebased", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_isvugc": {"name": "sms_stg__sms_campaign_created_isvugc", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_isvugc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_lastnameadded": {"name": "sms_stg__sms_campaign_created_lastnameadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_lastnameadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_library_name": {"name": "sms_stg__sms_campaign_created_library_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_library_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_locale": {"name": "sms_stg__sms_campaign_created_locale", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_locale", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_loyaltymerchantid": {"name": "sms_stg__sms_campaign_created_loyaltymerchantid", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_loyaltymerchantid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_loyaltypackage": {"name": "sms_stg__sms_campaign_created_loyaltypackage", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_loyaltypackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_loyalyshortcodeadded": {"name": "sms_stg__sms_campaign_created_loyalyshortcodeadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_loyalyshortcodeadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_message_id": {"name": "sms_stg__sms_campaign_created_message_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_message_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_orgid": {"name": "sms_stg__sms_campaign_created_orgid", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_orgid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_orgkey": {"name": "sms_stg__sms_campaign_created_orgkey", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_orgkey", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_package": {"name": "sms_stg__sms_campaign_created_package", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_package", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_packagecategories": {"name": "sms_stg__sms_campaign_created_packagecategories", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_packagecategories", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_page_path": {"name": "sms_stg__sms_campaign_created_page_path", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_page_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_page_referrer": {"name": "sms_stg__sms_campaign_created_page_referrer", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_page_referrer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_page_title": {"name": "sms_stg__sms_campaign_created_page_title", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_page_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_page_url": {"name": "sms_stg__sms_campaign_created_page_url", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_page_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_partition_date": {"name": "sms_stg__sms_campaign_created_partition_date", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_partition_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_path": {"name": "sms_stg__sms_campaign_created_path", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_platform": {"name": "sms_stg__sms_campaign_created_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_platformplan": {"name": "sms_stg__sms_campaign_created_platformplan", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_platformplan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_processing_time": {"name": "sms_stg__sms_campaign_created_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_product": {"name": "sms_stg__sms_campaign_created_product", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_product", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_reviewspackage": {"name": "sms_stg__sms_campaign_created_reviewspackage", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_reviewspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_reviewsshortcodeadded": {"name": "sms_stg__sms_campaign_created_reviewsshortcodeadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_reviewsshortcodeadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_sitenameadded": {"name": "sms_stg__sms_campaign_created_sitenameadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_sitenameadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_siteurladded": {"name": "sms_stg__sms_campaign_created_siteurladded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_siteurladded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_smspackage": {"name": "sms_stg__sms_campaign_created_smspackage", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_smspackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_smsuserid": {"name": "sms_stg__sms_campaign_created_smsuserid", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_smsuserid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_storedomain": {"name": "sms_stg__sms_campaign_created_storedomain", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_storedomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_storeid": {"name": "sms_stg__sms_campaign_created_storeid", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_storeid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_storeplatformdomain": {"name": "sms_stg__sms_campaign_created_storeplatformdomain", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_storeplatformdomain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_targetedaudience": {"name": "sms_stg__sms_campaign_created_targetedaudience", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_targetedaudience", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_texttobuyadded": {"name": "sms_stg__sms_campaign_created_texttobuyadded", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_texttobuyadded", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_timechosen": {"name": "sms_stg__sms_campaign_created_timechosen", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_timechosen", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_timestamp": {"name": "sms_stg__sms_campaign_created_timestamp", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_timestamp", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_title": {"name": "sms_stg__sms_campaign_created_title", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_upsolver_schema_version": {"name": "sms_stg__sms_campaign_created_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_url": {"name": "sms_stg__sms_campaign_created_url", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_activebuyers": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_activebuyers", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_activebuyers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_allemailsubscribers": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_allemailsubscribers", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_allemailsubscribers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_churnrisk": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_churnrisk", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_churnrisk", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_emailconvertedsubscriberslast7days": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_emailconvertedsubscriberslast7days", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_emailconvertedsubscriberslast7days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_enagagedemailsubscirberslast30days": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_enagagedemailsubscirberslast30days", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_enagagedemailsubscirberslast30days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_engagedemailsubscriberslast30days": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_engagedemailsubscriberslast30days", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_engagedemailsubscriberslast30days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_haventpurchasedsincelastmonth": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_haventpurchasedsincelastmonth", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_haventpurchasedsincelastmonth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_haventpurchasetsincelastmonth": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_haventpurchasetsincelastmonth", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_haventpurchasetsincelastmonth", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_potentialbuyers": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_potentialbuyers", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_potentialbuyers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_purchasesbyemailsubscriberslast30days": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_purchasesbyemailsubscriberslast30days", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_purchasesbyemailsubscriberslast30days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_repeatbuyers": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_repeatbuyers", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_repeatbuyers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_smsconvertedsubscriberslast7days": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_smsconvertedsubscriberslast7days", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_smsconvertedsubscriberslast7days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_smsengagedsubscribers": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_smsengagedsubscribers", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_smsengagedsubscribers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_softbouncedsubscriberslast7days": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_softbouncedsubscriberslast7days", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_softbouncedsubscriberslast7days", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_subscribersnotpurchased": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_subscribersnotpurchased", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_subscribersnotpurchased", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_textmarketinglist": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_textmarketinglist", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_textmarketinglist", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_top1sendedrs": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_top1sendedrs", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_top1sendedrs", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_top1senders": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_top1senders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_top1senders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_top1spenders": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_top1spenders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_top1spenders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_topsenders": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_topsenders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_topsenders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_topspenders": {"name": "sms_stg__sms_campaign_created_usedpredefinedsegments_topspenders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedpredefinedsegments_topspenders", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_usedtemplate": {"name": "sms_stg__sms_campaign_created_usedtemplate", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_usedtemplate", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_user_id": {"name": "sms_stg__sms_campaign_created_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_useremail": {"name": "sms_stg__sms_campaign_created_useremail", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_useremail", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_userid": {"name": "sms_stg__sms_campaign_created_userid", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_userid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_violated_event": {"name": "sms_stg__sms_campaign_created_violated_event", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_violated_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_campaign_created_vugcpackage": {"name": "sms_stg__sms_campaign_created_vugcpackage", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_campaign_created/sms_stg__sms_campaign_created.md", "unique_id": "doc.yoda.sms_stg__sms_campaign_created_vugcpackage", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions": {"name": "sms_stg__sms_loyalty_redemptions", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_campaign_id": {"name": "sms_stg__sms_loyalty_redemptions_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_campaign_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_created": {"name": "sms_stg__sms_loyalty_redemptions_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_discount_code": {"name": "sms_stg__sms_loyalty_redemptions_discount_code", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_discount_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_flow_id": {"name": "sms_stg__sms_loyalty_redemptions_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_flow_step_id": {"name": "sms_stg__sms_loyalty_redemptions_flow_step_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_flow_step_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_id": {"name": "sms_stg__sms_loyalty_redemptions_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_processing_time": {"name": "sms_stg__sms_loyalty_redemptions_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_redemption_id": {"name": "sms_stg__sms_loyalty_redemptions_redemption_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_redemption_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_redemption_option_id": {"name": "sms_stg__sms_loyalty_redemptions_redemption_option_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_redemption_option_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_ts_ms": {"name": "sms_stg__sms_loyalty_redemptions_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_upsolver_schema_version": {"name": "sms_stg__sms_loyalty_redemptions_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_loyalty_redemptions_user_id": {"name": "sms_stg__sms_loyalty_redemptions_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "original_file_path": "models/sms/staging/base/sms_stg__sms_loyalty_redemptions/sms_stg__sms_loyalty_redemptions.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_redemptions_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__base_track_flows_adoption": {"name": "sms__base_track_flows_adoption", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms__base_track_flows_adoption", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__track_flows_adoption_action": {"name": "sms_stg__track_flows_adoption_action", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms_stg__track_flows_adoption_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__track_flows_adoption_changes": {"name": "sms_stg__track_flows_adoption_changes", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms_stg__track_flows_adoption_changes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__track_flows_adoption_created": {"name": "sms_stg__track_flows_adoption_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms_stg__track_flows_adoption_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__track_flows_adoption_flow_id": {"name": "sms_stg__track_flows_adoption_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms_stg__track_flows_adoption_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__track_flows_adoption_flow_trigger": {"name": "sms_stg__track_flows_adoption_flow_trigger", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms_stg__track_flows_adoption_flow_trigger", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__track_flows_adoption_flow_type": {"name": "sms_stg__track_flows_adoption_flow_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms_stg__track_flows_adoption_flow_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__track_flows_adoption_id": {"name": "sms_stg__track_flows_adoption_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms_stg__track_flows_adoption_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__track_flows_adoption_processing_time": {"name": "sms_stg__track_flows_adoption_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms_stg__track_flows_adoption_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__track_flows_adoption_ts_ms": {"name": "sms_stg__track_flows_adoption_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms_stg__track_flows_adoption_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__track_flows_adoption_upsolver_schema_version": {"name": "sms_stg__track_flows_adoption_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms_stg__track_flows_adoption_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__track_flows_adoption_user_id": {"name": "sms_stg__track_flows_adoption_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "original_file_path": "models/sms/staging/base/sms_stg__track_flows_adoption/sms_stg__track_flows_adoption.md", "unique_id": "doc.yoda.sms_stg__track_flows_adoption_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__base_users": {"name": "sms__base_users", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms__base_users", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__users_abuser_notes": {"name": "sms_stg__users_abuser_notes", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_abuser_notes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_abuser_status": {"name": "sms_stg__users_abuser_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_abuser_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_address": {"name": "sms_stg__users_address", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_address", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_affiliate_commission": {"name": "sms_stg__users_affiliate_commission", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_affiliate_commission", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_affiliate_payout_email": {"name": "sms_stg__users_affiliate_payout_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_affiliate_payout_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_affiliate_payout_pref": {"name": "sms_stg__users_affiliate_payout_pref", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_affiliate_payout_pref", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_agreed_terms": {"name": "sms_stg__users_agreed_terms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_agreed_terms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_all_ip": {"name": "sms_stg__users_all_ip", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_all_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_amploa": {"name": "sms_stg__users_amploa", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_amploa", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_automatic_transliteration": {"name": "sms_stg__users_automatic_transliteration", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_automatic_transliteration", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_balance": {"name": "sms_stg__users_balance", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_ban_exclude": {"name": "sms_stg__users_ban_exclude", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_ban_exclude", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_bonus_balance": {"name": "sms_stg__users_bonus_balance", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_bonus_balance", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_chat_enabled": {"name": "sms_stg__users_chat_enabled", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_chat_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_chat_settings": {"name": "sms_stg__users_chat_settings", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_chat_settings", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_city": {"name": "sms_stg__users_city", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_city", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_collect_checkout_subscribers": {"name": "sms_stg__users_collect_checkout_subscribers", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_collect_checkout_subscribers", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_compliance_accepted_date": {"name": "sms_stg__users_compliance_accepted_date", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_compliance_accepted_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_contact_card_logo": {"name": "sms_stg__users_contact_card_logo", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_contact_card_logo", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_contact_card_message": {"name": "sms_stg__users_contact_card_message", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_contact_card_message", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_contact_card_name": {"name": "sms_stg__users_contact_card_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_contact_card_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_contact_card_path": {"name": "sms_stg__users_contact_card_path", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_contact_card_path", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_cookie_related_users": {"name": "sms_stg__users_cookie_related_users", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_cookie_related_users", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_countries_limitation_mode": {"name": "sms_stg__users_countries_limitation_mode", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_countries_limitation_mode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_countries_limitation_values": {"name": "sms_stg__users_countries_limitation_values", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_countries_limitation_values", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_country": {"name": "sms_stg__users_country", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_created": {"name": "sms_stg__users_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_credits": {"name": "sms_stg__users_credits", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_credits", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_delivery_route": {"name": "sms_stg__users_delivery_route", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_delivery_route", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_discount_data": {"name": "sms_stg__users_discount_data", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_discount_data", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_discounted_mms_price": {"name": "sms_stg__users_discounted_mms_price", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_discounted_mms_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_dnd": {"name": "sms_stg__users_dnd", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_dnd", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_dnd_from": {"name": "sms_stg__users_dnd_from", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_dnd_from", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_dnd_to": {"name": "sms_stg__users_dnd_to", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_dnd_to", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_double_opt_in": {"name": "sms_stg__users_double_opt_in", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_double_opt_in", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_double_opt_in_level": {"name": "sms_stg__users_double_opt_in_level", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_double_opt_in_level", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_earnings": {"name": "sms_stg__users_earnings", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_earnings", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_email": {"name": "sms_stg__users_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_email_is_valid": {"name": "sms_stg__users_email_is_valid", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_email_is_valid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_facebook_id": {"name": "sms_stg__users_facebook_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_facebook_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_facebook_info": {"name": "sms_stg__users_facebook_info", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_facebook_info", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_free_keywords_available_count": {"name": "sms_stg__users_free_keywords_available_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_free_keywords_available_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_google_user_id": {"name": "sms_stg__users_google_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_google_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_gplusurl": {"name": "sms_stg__users_gplusurl", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_gplusurl", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_hash": {"name": "sms_stg__users_hash", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_hash", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_id": {"name": "sms_stg__users_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_industry": {"name": "sms_stg__users_industry", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_industry", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_is_logical_deleted": {"name": "sms_stg__users_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_is_test": {"name": "sms_stg__users_is_test", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_is_test", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_language": {"name": "sms_stg__users_language", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_language", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_last_available": {"name": "sms_stg__users_last_available", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_last_available", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_last_ip": {"name": "sms_stg__users_last_ip", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_last_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_last_payout": {"name": "sms_stg__users_last_payout", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_last_payout", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_main_subscription_list_id": {"name": "sms_stg__users_main_subscription_list_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_main_subscription_list_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_modified": {"name": "sms_stg__users_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_name": {"name": "sms_stg__users_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_notes": {"name": "sms_stg__users_notes", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_notes", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_notes_modified": {"name": "sms_stg__users_notes_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_notes_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_old_passwords": {"name": "sms_stg__users_old_passwords", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_old_passwords", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_onboarding_completed": {"name": "sms_stg__users_onboarding_completed", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_onboarding_completed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_package_id": {"name": "sms_stg__users_package_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_package_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_parent_id": {"name": "sms_stg__users_parent_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_parent_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_partner": {"name": "sms_stg__users_partner", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_partner", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_partner_info": {"name": "sms_stg__users_partner_info", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_partner_info", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_partner_nexmo_price_multiply": {"name": "sms_stg__users_partner_nexmo_price_multiply", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_partner_nexmo_price_multiply", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_partner_type": {"name": "sms_stg__users_partner_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_partner_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_password": {"name": "sms_stg__users_password", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_password", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_payment_gateway": {"name": "sms_stg__users_payment_gateway", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_payment_gateway", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_paypal_email": {"name": "sms_stg__users_paypal_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_paypal_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_phone_number": {"name": "sms_stg__users_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_phone_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_picture": {"name": "sms_stg__users_picture", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_picture", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_plan": {"name": "sms_stg__users_plan", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_plan", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_plan_price": {"name": "sms_stg__users_plan_price", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_plan_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_plan_trial_until": {"name": "sms_stg__users_plan_trial_until", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_plan_trial_until", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_platform": {"name": "sms_stg__users_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_platform_unique_id": {"name": "sms_stg__users_platform_unique_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_platform_unique_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_points": {"name": "sms_stg__users_points", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_points", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_preferred_vendor": {"name": "sms_stg__users_preferred_vendor", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_preferred_vendor", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_price_limit": {"name": "sms_stg__users_price_limit", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_price_limit", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_price_limit_enabled": {"name": "sms_stg__users_price_limit_enabled", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_price_limit_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_processing_time": {"name": "sms_stg__users_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_provision_calls_count": {"name": "sms_stg__users_provision_calls_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_provision_calls_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_role": {"name": "sms_stg__users_role", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_role", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_role_id": {"name": "sms_stg__users_role_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_role_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_shaft_status": {"name": "sms_stg__users_shaft_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_shaft_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_signed_promo_id": {"name": "sms_stg__users_signed_promo_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_signed_promo_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_signup_source": {"name": "sms_stg__users_signup_source", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_signup_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_smart_sending_ignore_transac_email": {"name": "sms_stg__users_smart_sending_ignore_transac_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_smart_sending_ignore_transac_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_smart_sending_value": {"name": "sms_stg__users_smart_sending_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_smart_sending_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_state": {"name": "sms_stg__users_state", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_state", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_store_id": {"name": "sms_stg__users_store_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_strict_marketing_check": {"name": "sms_stg__users_strict_marketing_check", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_strict_marketing_check", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_subscribed": {"name": "sms_stg__users_subscribed", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_subscribed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_subscribed_to_forum": {"name": "sms_stg__users_subscribed_to_forum", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_subscribed_to_forum", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_support_level_id": {"name": "sms_stg__users_support_level_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_support_level_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_system_messages_payer": {"name": "sms_stg__users_system_messages_payer", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_system_messages_payer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_tfa_enabled": {"name": "sms_stg__users_tfa_enabled", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_tfa_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_timezone": {"name": "sms_stg__users_timezone", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_timezone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_total_downloads": {"name": "sms_stg__users_total_downloads", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_total_downloads", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_total_logins": {"name": "sms_stg__users_total_logins", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_total_logins", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_ts_ms": {"name": "sms_stg__users_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_unsubscribe_reason": {"name": "sms_stg__users_unsubscribe_reason", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_unsubscribe_reason", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_upload_lists_enabled": {"name": "sms_stg__users_upload_lists_enabled", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_upload_lists_enabled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_upsolver_schema_version": {"name": "sms_stg__users_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_use_local_number_for_subscription": {"name": "sms_stg__users_use_local_number_for_subscription", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_use_local_number_for_subscription", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_vat_number": {"name": "sms_stg__users_vat_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_vat_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_vendor_id": {"name": "sms_stg__users_vendor_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_vendor_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_whitelisted": {"name": "sms_stg__users_whitelisted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_whitelisted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_yotpo_app_key": {"name": "sms_stg__users_yotpo_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_yotpo_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_yotpo_app_secret": {"name": "sms_stg__users_yotpo_app_secret", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_yotpo_app_secret", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_yotpo_organization_id": {"name": "sms_stg__users_yotpo_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_yotpo_organization_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_zipcode": {"name": "sms_stg__users_zipcode", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users/sms_stg__users.md", "original_file_path": "models/sms/staging/base/sms_stg__users/sms_stg__users.md", "unique_id": "doc.yoda.sms_stg__users_zipcode", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log": {"name": "sms_stg__users_events_log", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__users_events_log_created": {"name": "sms_stg__users_events_log_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log_event": {"name": "sms_stg__users_events_log_event", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_event", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log_event_details": {"name": "sms_stg__users_events_log_event_details", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_event_details", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log_event_type": {"name": "sms_stg__users_events_log_event_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_event_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log_id": {"name": "sms_stg__users_events_log_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log_is_logical_deleted": {"name": "sms_stg__users_events_log_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log_platform": {"name": "sms_stg__users_events_log_platform", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_platform", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log_platform_user_id": {"name": "sms_stg__users_events_log_platform_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_platform_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log_processing_time": {"name": "sms_stg__users_events_log_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log_ts_ms": {"name": "sms_stg__users_events_log_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log_upsolver_schema_version": {"name": "sms_stg__users_events_log_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__users_events_log_user_id": {"name": "sms_stg__users_events_log_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "original_file_path": "models/sms/staging/base/sms_stg__users_events_log/sms_stg__users_events_log.md", "unique_id": "doc.yoda.sms_stg__users_events_log_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms__base_yotpo_organizations": {"name": "sms__base_yotpo_organizations", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "unique_id": "doc.yoda.sms__base_yotpo_organizations", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__yotpo_organizations_ac_requests_id": {"name": "sms_stg__yotpo_organizations_ac_requests_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "unique_id": "doc.yoda.sms_stg__yotpo_organizations_ac_requests_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_organizations_created": {"name": "sms_stg__yotpo_organizations_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "unique_id": "doc.yoda.sms_stg__yotpo_organizations_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_organizations_id": {"name": "sms_stg__yotpo_organizations_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "unique_id": "doc.yoda.sms_stg__yotpo_organizations_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_organizations_is_logical_deleted": {"name": "sms_stg__yotpo_organizations_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "unique_id": "doc.yoda.sms_stg__yotpo_organizations_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_organizations_modified": {"name": "sms_stg__yotpo_organizations_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "unique_id": "doc.yoda.sms_stg__yotpo_organizations_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_organizations_organization_key": {"name": "sms_stg__yotpo_organizations_organization_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "unique_id": "doc.yoda.sms_stg__yotpo_organizations_organization_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_organizations_organization_name": {"name": "sms_stg__yotpo_organizations_organization_name", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "unique_id": "doc.yoda.sms_stg__yotpo_organizations_organization_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_organizations_processing_time": {"name": "sms_stg__yotpo_organizations_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "unique_id": "doc.yoda.sms_stg__yotpo_organizations_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_organizations_ts_ms": {"name": "sms_stg__yotpo_organizations_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "unique_id": "doc.yoda.sms_stg__yotpo_organizations_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_organizations_upsolver_schema_version": {"name": "sms_stg__yotpo_organizations_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_organizations/sms_stg__yotpo_organizations.md", "unique_id": "doc.yoda.sms_stg__yotpo_organizations_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates": {"name": "sms_stg__yotpo_status_updates", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates", "block_contents": "TODO: Update Table Description"}, "doc.yoda.sms_stg__yotpo_status_updates_created": {"name": "sms_stg__yotpo_status_updates_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_created", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_event_id": {"name": "sms_stg__yotpo_status_updates_event_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_flow_id": {"name": "sms_stg__yotpo_status_updates_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_flow_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_from": {"name": "sms_stg__yotpo_status_updates_from", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_from", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_id": {"name": "sms_stg__yotpo_status_updates_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_modified": {"name": "sms_stg__yotpo_status_updates_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_modified", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_processing_time": {"name": "sms_stg__yotpo_status_updates_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_queue_id": {"name": "sms_stg__yotpo_status_updates_queue_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_queue_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_status": {"name": "sms_stg__yotpo_status_updates_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_to": {"name": "sms_stg__yotpo_status_updates_to", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_to", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_ts_ms": {"name": "sms_stg__yotpo_status_updates_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_upsolver_schema_version": {"name": "sms_stg__yotpo_status_updates_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_user_id": {"name": "sms_stg__yotpo_status_updates_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__yotpo_status_updates_uuid": {"name": "sms_stg__yotpo_status_updates_uuid", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "original_file_path": "models/sms/staging/base/sms_stg__yotpo_status_updates/sms_stg__yotpo_status_updates.md", "unique_id": "doc.yoda.sms_stg__yotpo_status_updates_uuid", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__email_sms_campaign_orders": {"name": "sms_stg__email_sms_campaign_orders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__email_sms_campaign_orders", "block_contents": "SMS and Emails campaigns with orders"}, "doc.yoda.sms_stg__email_sms_campaign_orders_customer_id": {"name": "sms_stg__email_sms_campaign_orders_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__email_sms_campaign_orders_customer_id", "block_contents": "shopify customer id"}, "doc.yoda.sms_stg__email_sms_campaign_orders_email": {"name": "sms_stg__email_sms_campaign_orders_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__email_sms_campaign_orders_email", "block_contents": "customer email"}, "doc.yoda.sms_stg__email_sms_campaign_orders_email_campaign_id": {"name": "sms_stg__email_sms_campaign_orders_email_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__email_sms_campaign_orders_email_campaign_id", "block_contents": "email campaign id"}, "doc.yoda.sms_stg__email_sms_campaign_orders_order_created": {"name": "sms_stg__email_sms_campaign_orders_order_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__email_sms_campaign_orders_order_created", "block_contents": "order created"}, "doc.yoda.sms_stg__email_sms_campaign_orders_shopify_order_id": {"name": "sms_stg__email_sms_campaign_orders_shopify_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__email_sms_campaign_orders_shopify_order_id", "block_contents": "shopify order id"}, "doc.yoda.sms_stg__email_sms_campaign_orders_sms_campaign_id": {"name": "sms_stg__email_sms_campaign_orders_sms_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__email_sms_campaign_orders_sms_campaign_id", "block_contents": "sms campaign id"}, "doc.yoda.sms_stg__email_sms_campaign_orders_yotpo_app_key": {"name": "sms_stg__email_sms_campaign_orders_yotpo_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__email_sms_campaign_orders/sms_stg__email_sms_campaign_orders.md", "unique_id": "doc.yoda.sms_stg__email_sms_campaign_orders_yotpo_app_key", "block_contents": "Yotpo app key"}, "doc.yoda.sms_stg__one_click_campaigns_subscriptions": {"name": "sms_stg__one_click_campaigns_subscriptions", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "unique_id": "doc.yoda.sms_stg__one_click_campaigns_subscriptions", "block_contents": "one click campaigns subscriptions"}, "doc.yoda.sms_stg__one_click_campaigns_subscriptions_clicks_count": {"name": "sms_stg__one_click_campaigns_subscriptions_clicks_count", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "unique_id": "doc.yoda.sms_stg__one_click_campaigns_subscriptions_clicks_count", "block_contents": "link clicks count"}, "doc.yoda.sms_stg__one_click_campaigns_subscriptions_customer_email": {"name": "sms_stg__one_click_campaigns_subscriptions_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "unique_id": "doc.yoda.sms_stg__one_click_campaigns_subscriptions_customer_email", "block_contents": "custoemr email"}, "doc.yoda.sms_stg__one_click_campaigns_subscriptions_customer_id": {"name": "sms_stg__one_click_campaigns_subscriptions_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "unique_id": "doc.yoda.sms_stg__one_click_campaigns_subscriptions_customer_id", "block_contents": "shopify customer id"}, "doc.yoda.sms_stg__one_click_campaigns_subscriptions_customer_phone": {"name": "sms_stg__one_click_campaigns_subscriptions_customer_phone", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "unique_id": "doc.yoda.sms_stg__one_click_campaigns_subscriptions_customer_phone", "block_contents": "customer phone"}, "doc.yoda.sms_stg__one_click_campaigns_subscriptions_product_id": {"name": "sms_stg__one_click_campaigns_subscriptions_product_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "unique_id": "doc.yoda.sms_stg__one_click_campaigns_subscriptions_product_id", "block_contents": "product id"}, "doc.yoda.sms_stg__one_click_campaigns_subscriptions_sent_time": {"name": "sms_stg__one_click_campaigns_subscriptions_sent_time", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "unique_id": "doc.yoda.sms_stg__one_click_campaigns_subscriptions_sent_time", "block_contents": "sent time"}, "doc.yoda.sms_stg__one_click_campaigns_subscriptions_sms_id": {"name": "sms_stg__one_click_campaigns_subscriptions_sms_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "unique_id": "doc.yoda.sms_stg__one_click_campaigns_subscriptions_sms_id", "block_contents": "link clicks id"}, "doc.yoda.sms_stg__one_click_campaigns_subscriptions_store_id": {"name": "sms_stg__one_click_campaigns_subscriptions_store_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__one_click_campaigns_subscriptions/sms_stg__one_click_campaigns_subscriptions.md", "unique_id": "doc.yoda.sms_stg__one_click_campaigns_subscriptions_store_id", "block_contents": "merchant app key"}, "doc.yoda.sms_stg__sms_email_campaign_discount_codes": {"name": "sms_stg__sms_email_campaign_discount_codes", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__sms_email_campaign_discount_codes", "block_contents": "SMS Email campaign discount codes"}, "doc.yoda.sms_stg__sms_email_campaign_discount_codes_ab_campaign_id": {"name": "sms_stg__sms_email_campaign_discount_codes_ab_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__sms_email_campaign_discount_codes_ab_campaign_id", "block_contents": "ab campaign id"}, "doc.yoda.sms_stg__sms_email_campaign_discount_codes_discount_code": {"name": "sms_stg__sms_email_campaign_discount_codes_discount_code", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__sms_email_campaign_discount_codes_discount_code", "block_contents": "discount code"}, "doc.yoda.sms_stg__sms_email_campaign_discount_codes_email_campaign_id": {"name": "sms_stg__sms_email_campaign_discount_codes_email_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__sms_email_campaign_discount_codes_email_campaign_id", "block_contents": "email campaign id"}, "doc.yoda.sms_stg__sms_email_campaign_discount_codes_sms_campaign_id": {"name": "sms_stg__sms_email_campaign_discount_codes_sms_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__sms_email_campaign_discount_codes_sms_campaign_id", "block_contents": "sms campaign id"}, "doc.yoda.sms_stg__sms_email_campaign_discount_codes_yotpo_app_key": {"name": "sms_stg__sms_email_campaign_discount_codes_yotpo_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_email_campaign_discount_codes/sms_stg__sms_email_campaign_discount_codes.md", "unique_id": "doc.yoda.sms_stg__sms_email_campaign_discount_codes_yotpo_app_key", "block_contents": "yotpo app key"}, "doc.yoda.sms_stg__sms_flows_reviews": {"name": "sms_stg__sms_flows_reviews", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "unique_id": "doc.yoda.sms_stg__sms_flows_reviews", "block_contents": "sms flows reviews"}, "doc.yoda.sms_stg__sms_flows_reviews_app_key": {"name": "sms_stg__sms_flows_reviews_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "unique_id": "doc.yoda.sms_stg__sms_flows_reviews_app_key", "block_contents": "Yotpo app key"}, "doc.yoda.sms_stg__sms_flows_reviews_flow_id": {"name": "sms_stg__sms_flows_reviews_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "unique_id": "doc.yoda.sms_stg__sms_flows_reviews_flow_id", "block_contents": "flow id"}, "doc.yoda.sms_stg__sms_flows_reviews_message_prepare": {"name": "sms_stg__sms_flows_reviews_message_prepare", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "unique_id": "doc.yoda.sms_stg__sms_flows_reviews_message_prepare", "block_contents": "message prepare date time"}, "doc.yoda.sms_stg__sms_flows_reviews_review_created": {"name": "sms_stg__sms_flows_reviews_review_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "unique_id": "doc.yoda.sms_stg__sms_flows_reviews_review_created", "block_contents": "review created"}, "doc.yoda.sms_stg__sms_flows_reviews_review_id": {"name": "sms_stg__sms_flows_reviews_review_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "unique_id": "doc.yoda.sms_stg__sms_flows_reviews_review_id", "block_contents": "review id"}, "doc.yoda.sms_stg__sms_flows_reviews_sms_source": {"name": "sms_stg__sms_flows_reviews_sms_source", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "unique_id": "doc.yoda.sms_stg__sms_flows_reviews_sms_source", "block_contents": "SMS/Email/SMS collect review"}, "doc.yoda.sms_stg__sms_flows_reviews_smsbump_user_id": {"name": "sms_stg__sms_flows_reviews_smsbump_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_flows_reviews/sms_stg__sms_flows_reviews.md", "unique_id": "doc.yoda.sms_stg__sms_flows_reviews_smsbump_user_id", "block_contents": "SMSBump user id"}, "doc.yoda.sms_stg__sms_loyalty_campaigns": {"name": "sms_stg__sms_loyalty_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns", "block_contents": "sms loyalty campaigns"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_campaign_id": {"name": "sms_stg__sms_loyalty_campaigns_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_campaign_id", "block_contents": "campaign id"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_store_id": {"name": "sms_stg__sms_loyalty_campaigns_store_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_store_id", "block_contents": "merchant app key"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_synergy_id": {"name": "sms_stg__sms_loyalty_campaigns_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_synergy_id", "block_contents": "synergy id from google docs"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_user_id": {"name": "sms_stg__sms_loyalty_campaigns_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns/sms_stg__sms_loyalty_campaigns.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_user_id", "block_contents": "merchant user id"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi": {"name": "sms_stg__sms_loyalty_campaigns_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi", "block_contents": "sms loyalty campaigns kpi private table"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_action_attribute_type": {"name": "sms_stg__sms_loyalty_campaigns_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_action_attribute_type", "block_contents": "points"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_action_attribute_value": {"name": "sms_stg__sms_loyalty_campaigns_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_action_attribute_value", "block_contents": "points value"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_action_id": {"name": "sms_stg__sms_loyalty_campaigns_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_action_id", "block_contents": "redemption id"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_action_type": {"name": "sms_stg__sms_loyalty_campaigns_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_action_type", "block_contents": "redemption"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_app_key": {"name": "sms_stg__sms_loyalty_campaigns_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_campaign_id": {"name": "sms_stg__sms_loyalty_campaigns_kpi_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_campaign_id", "block_contents": "campaign id"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_channel": {"name": "sms_stg__sms_loyalty_campaigns_kpi_channel", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_channel", "block_contents": "sms/email"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_customer_email": {"name": "sms_stg__sms_loyalty_campaigns_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_external_customer_id": {"name": "sms_stg__sms_loyalty_campaigns_kpi_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_external_customer_id", "block_contents": "shopify customer id"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_order_id": {"name": "sms_stg__sms_loyalty_campaigns_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_order_id", "block_contents": "order id"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_synergy_id": {"name": "sms_stg__sms_loyalty_campaigns_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_synergy_id", "block_contents": "synergy id from google docs"}, "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_user_id": {"name": "sms_stg__sms_loyalty_campaigns_kpi_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_campaigns_kpi/sms_stg__sms_loyalty_campaigns_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_campaigns_kpi_user_id", "block_contents": "smsbump merchant id"}, "doc.yoda.sms_stg__sms_loyalty_custom_campaigns": {"name": "sms_stg__sms_loyalty_custom_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_custom_campaigns", "block_contents": "sms custom campaigns with loyalty parts"}, "doc.yoda.sms_stg__sms_loyalty_custom_campaigns_campaign_id": {"name": "sms_stg__sms_loyalty_custom_campaigns_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_custom_campaigns_campaign_id", "block_contents": "campaign id"}, "doc.yoda.sms_stg__sms_loyalty_custom_campaigns_store_id": {"name": "sms_stg__sms_loyalty_custom_campaigns_store_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_custom_campaigns_store_id", "block_contents": "merchant yotpo app key"}, "doc.yoda.sms_stg__sms_loyalty_custom_campaigns_synergy_id": {"name": "sms_stg__sms_loyalty_custom_campaigns_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_custom_campaigns_synergy_id", "block_contents": "synergy id from google docs file"}, "doc.yoda.sms_stg__sms_loyalty_custom_campaigns_user_id": {"name": "sms_stg__sms_loyalty_custom_campaigns_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_custom_campaigns/sms_stg__sms_loyalty_custom_campaigns.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_custom_campaigns_user_id", "block_contents": "SMSBump user id"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi": {"name": "sms_stg__sms_loyalty_flows_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi", "block_contents": "sms loyalty flows kpi"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_action_attribute_type": {"name": "sms_stg__sms_loyalty_flows_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_action_attribute_type", "block_contents": "points"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_action_attribute_value": {"name": "sms_stg__sms_loyalty_flows_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_action_attribute_value", "block_contents": "points value"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_action_id": {"name": "sms_stg__sms_loyalty_flows_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_action_id", "block_contents": "redemption id"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_action_type": {"name": "sms_stg__sms_loyalty_flows_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_action_type", "block_contents": "redemption"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_app_key": {"name": "sms_stg__sms_loyalty_flows_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_customer_email": {"name": "sms_stg__sms_loyalty_flows_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_customer_external_id": {"name": "sms_stg__sms_loyalty_flows_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_customer_phone_number": {"name": "sms_stg__sms_loyalty_flows_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_flow_id": {"name": "sms_stg__sms_loyalty_flows_kpi_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_flow_id", "block_contents": "flow id"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_order_created": {"name": "sms_stg__sms_loyalty_flows_kpi_order_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_order_created", "block_contents": "order created date"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_order_id": {"name": "sms_stg__sms_loyalty_flows_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_order_id", "block_contents": "order id"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_synergy_id": {"name": "sms_stg__sms_loyalty_flows_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_synergy_id", "block_contents": "synergy id from google docs"}, "doc.yoda.sms_stg__sms_loyalty_flows_kpi_user_id": {"name": "sms_stg__sms_loyalty_flows_kpi_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_loyalty_flows_kpi/sms_stg__sms_loyalty_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_loyalty_flows_kpi_user_id", "block_contents": "SMSBump user id"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi": {"name": "sms_stg__sms_reviews_flows_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi", "block_contents": "sms reviews flows kpi table"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_action_attribute_type": {"name": "sms_stg__sms_reviews_flows_kpi_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_action_attribute_type", "block_contents": "rating"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_action_attribute_value": {"name": "sms_stg__sms_reviews_flows_kpi_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_action_attribute_value", "block_contents": "rating score"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_action_id": {"name": "sms_stg__sms_reviews_flows_kpi_action_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_action_id", "block_contents": "review id"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_action_type": {"name": "sms_stg__sms_reviews_flows_kpi_action_type", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_action_type", "block_contents": "review"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_app_key": {"name": "sms_stg__sms_reviews_flows_kpi_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_customer_email": {"name": "sms_stg__sms_reviews_flows_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_customer_external_id": {"name": "sms_stg__sms_reviews_flows_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_customer_phone_number": {"name": "sms_stg__sms_reviews_flows_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_flow_id": {"name": "sms_stg__sms_reviews_flows_kpi_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_flow_id", "block_contents": "flow id"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_queue_id": {"name": "sms_stg__sms_reviews_flows_kpi_queue_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_queue_id", "block_contents": "queue id"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_review_token": {"name": "sms_stg__sms_reviews_flows_kpi_review_token", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_review_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_synergy_id": {"name": "sms_stg__sms_reviews_flows_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_synergy_id", "block_contents": "synergy id from google doc file"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_token": {"name": "sms_stg__sms_reviews_flows_kpi_token", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_token", "block_contents": "review uuid token"}, "doc.yoda.sms_stg__sms_reviews_flows_kpi_user_id": {"name": "sms_stg__sms_reviews_flows_kpi_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__sms_reviews_flows_kpi/sms_stg__sms_reviews_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__sms_reviews_flows_kpi_user_id", "block_contents": "smsbump user id"}, "doc.yoda.sms_stg__social_proof_flows_kpi": {"name": "sms_stg__social_proof_flows_kpi", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__social_proof_flows_kpi", "block_contents": "abandoned checkout flows with social proof star rating shortcode"}, "doc.yoda.sms_stg__social_proof_flows_kpi_customer_email": {"name": "sms_stg__social_proof_flows_kpi_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__social_proof_flows_kpi_customer_email", "block_contents": "customer email"}, "doc.yoda.sms_stg__social_proof_flows_kpi_customer_external_id": {"name": "sms_stg__social_proof_flows_kpi_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__social_proof_flows_kpi_customer_external_id", "block_contents": "shopify customer id"}, "doc.yoda.sms_stg__social_proof_flows_kpi_customer_phone_number": {"name": "sms_stg__social_proof_flows_kpi_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__social_proof_flows_kpi_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms_stg__social_proof_flows_kpi_flow_id": {"name": "sms_stg__social_proof_flows_kpi_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__social_proof_flows_kpi_flow_id", "block_contents": "flow id"}, "doc.yoda.sms_stg__social_proof_flows_kpi_order_created": {"name": "sms_stg__social_proof_flows_kpi_order_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__social_proof_flows_kpi_order_created", "block_contents": "order created"}, "doc.yoda.sms_stg__social_proof_flows_kpi_order_id": {"name": "sms_stg__social_proof_flows_kpi_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__social_proof_flows_kpi_order_id", "block_contents": "shopify order id"}, "doc.yoda.sms_stg__social_proof_flows_kpi_store_id": {"name": "sms_stg__social_proof_flows_kpi_store_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__social_proof_flows_kpi_store_id", "block_contents": "merchant app key"}, "doc.yoda.sms_stg__social_proof_flows_kpi_synergy_id": {"name": "sms_stg__social_proof_flows_kpi_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__social_proof_flows_kpi_synergy_id", "block_contents": "synergy id from google docs file"}, "doc.yoda.sms_stg__social_proof_flows_kpi_user_id": {"name": "sms_stg__social_proof_flows_kpi_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__social_proof_flows_kpi/sms_stg__social_proof_flows_kpi.md", "unique_id": "doc.yoda.sms_stg__social_proof_flows_kpi_user_id", "block_contents": "smsbump user id (merchant)"}, "doc.yoda.sms_stg__subscription_segmentation_campaigns": {"name": "sms_stg__subscription_segmentation_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_segmentation_campaigns", "block_contents": "subscription segmentation campaigns"}, "doc.yoda.sms_stg__subscription_segmentation_campaigns_app_key": {"name": "sms_stg__subscription_segmentation_campaigns_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_segmentation_campaigns_app_key", "block_contents": "app key"}, "doc.yoda.sms_stg__subscription_segmentation_campaigns_campaign_id": {"name": "sms_stg__subscription_segmentation_campaigns_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_segmentation_campaigns_campaign_id", "block_contents": "campaign id"}, "doc.yoda.sms_stg__subscription_segmentation_campaigns_status": {"name": "sms_stg__subscription_segmentation_campaigns_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_segmentation_campaigns_status", "block_contents": "campaign status"}, "doc.yoda.sms_stg__subscription_segmentation_campaigns_user_id": {"name": "sms_stg__subscription_segmentation_campaigns_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_segmentation_campaigns/sms_stg__subscription_segmentation_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_segmentation_campaigns_user_id", "block_contents": "merchant id"}, "doc.yoda.sms_stg__subscription_sms_campaigns": {"name": "sms_stg__subscription_sms_campaigns", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_sms_campaigns", "block_contents": "subscription segment used in campaigns"}, "doc.yoda.sms_stg__subscription_sms_campaigns_app_key": {"name": "sms_stg__subscription_sms_campaigns_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_sms_campaigns_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms_stg__subscription_sms_campaigns_campaign_id": {"name": "sms_stg__subscription_sms_campaigns_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_sms_campaigns_campaign_id", "block_contents": "campaign id"}, "doc.yoda.sms_stg__subscription_sms_campaigns_customer_external_id": {"name": "sms_stg__subscription_sms_campaigns_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_sms_campaigns_customer_external_id", "block_contents": "customer external id"}, "doc.yoda.sms_stg__subscription_sms_campaigns_order_id": {"name": "sms_stg__subscription_sms_campaigns_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_sms_campaigns_order_id", "block_contents": "order id"}, "doc.yoda.sms_stg__subscription_sms_campaigns_phone_number": {"name": "sms_stg__subscription_sms_campaigns_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_sms_campaigns_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms_stg__subscription_sms_campaigns_sms_id": {"name": "sms_stg__subscription_sms_campaigns_sms_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_sms_campaigns_sms_id", "block_contents": "sms id"}, "doc.yoda.sms_stg__subscription_sms_campaigns_status": {"name": "sms_stg__subscription_sms_campaigns_status", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_sms_campaigns_status", "block_contents": "campaign status"}, "doc.yoda.sms_stg__subscription_sms_campaigns_user_id": {"name": "sms_stg__subscription_sms_campaigns_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_sms_campaigns/sms_stg__subscription_sms_campaigns.md", "unique_id": "doc.yoda.sms_stg__subscription_sms_campaigns_user_id", "block_contents": "user id"}, "doc.yoda.sms_stg__subscription_upsell_flow": {"name": "sms_stg__subscription_upsell_flow", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow", "block_contents": "post purchase subscription upsell flow with sms and/or order"}, "doc.yoda.sms_stg__subscription_upsell_flow_app_key": {"name": "sms_stg__subscription_upsell_flow_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_app_key", "block_contents": "merchant app key"}, "doc.yoda.sms_stg__subscription_upsell_flow_customer_email": {"name": "sms_stg__subscription_upsell_flow_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_customer_email", "block_contents": "customer email"}, "doc.yoda.sms_stg__subscription_upsell_flow_customer_external_id": {"name": "sms_stg__subscription_upsell_flow_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_customer_external_id", "block_contents": "customer external id"}, "doc.yoda.sms_stg__subscription_upsell_flow_customer_phone_number": {"name": "sms_stg__subscription_upsell_flow_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_customer_phone_number", "block_contents": "customer phone number"}, "doc.yoda.sms_stg__subscription_upsell_flow_order_created": {"name": "sms_stg__subscription_upsell_flow_order_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_order_created", "block_contents": "order created"}, "doc.yoda.sms_stg__subscription_upsell_flow_order_id": {"name": "sms_stg__subscription_upsell_flow_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_order_id", "block_contents": "order id"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms_created": {"name": "sms_stg__subscription_upsell_flow_sms_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms_created", "block_contents": "sms created"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms_id": {"name": "sms_stg__subscription_upsell_flow_sms_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow/sms_stg__subscription_upsell_flow.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms_id", "block_contents": "sms api calls id"}, "doc.yoda.sms_stg__subscription_upsell_flow_orders": {"name": "sms_stg__subscription_upsell_flow_orders", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_orders", "block_contents": "upsell flow orders"}, "doc.yoda.sms_stg__subscription_upsell_flow_orders_created": {"name": "sms_stg__subscription_upsell_flow_orders_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_orders_created", "block_contents": "order created"}, "doc.yoda.sms_stg__subscription_upsell_flow_orders_flow_id": {"name": "sms_stg__subscription_upsell_flow_orders_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_orders_flow_id", "block_contents": "flow id"}, "doc.yoda.sms_stg__subscription_upsell_flow_orders_order_id": {"name": "sms_stg__subscription_upsell_flow_orders_order_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_orders_order_id", "block_contents": "order id"}, "doc.yoda.sms_stg__subscription_upsell_flow_orders_phone": {"name": "sms_stg__subscription_upsell_flow_orders_phone", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_orders_phone", "block_contents": "phone number"}, "doc.yoda.sms_stg__subscription_upsell_flow_orders_row_num": {"name": "sms_stg__subscription_upsell_flow_orders_row_num", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_orders_row_num", "block_contents": "row number"}, "doc.yoda.sms_stg__subscription_upsell_flow_orders_shopify_customer_id": {"name": "sms_stg__subscription_upsell_flow_orders_shopify_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_orders_shopify_customer_id", "block_contents": "customer id"}, "doc.yoda.sms_stg__subscription_upsell_flow_orders_user_id": {"name": "sms_stg__subscription_upsell_flow_orders_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_orders/sms_stg__subscription_upsell_flow_orders.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_orders_user_id", "block_contents": "smsbump user id"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms": {"name": "sms_stg__subscription_upsell_flow_sms", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms", "block_contents": "upsell flow sms"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms_app_key": {"name": "sms_stg__subscription_upsell_flow_sms_app_key", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms_app_key", "block_contents": "app key"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms_customer_external_id": {"name": "sms_stg__subscription_upsell_flow_sms_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms_customer_external_id", "block_contents": "customer id"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms_flow_id": {"name": "sms_stg__subscription_upsell_flow_sms_flow_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms_flow_id", "block_contents": "flow id"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms_phone": {"name": "sms_stg__subscription_upsell_flow_sms_phone", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms_phone", "block_contents": "customer phone number"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms_row_num": {"name": "sms_stg__subscription_upsell_flow_sms_row_num", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms_row_num", "block_contents": "row number"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms_sms_created": {"name": "sms_stg__subscription_upsell_flow_sms_sms_created", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms_sms_created", "block_contents": "sms created"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms_sms_id": {"name": "sms_stg__subscription_upsell_flow_sms_sms_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms_sms_id", "block_contents": "sms id"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms_sms_modified": {"name": "sms_stg__subscription_upsell_flow_sms_sms_modified", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms_sms_modified", "block_contents": "sms modified"}, "doc.yoda.sms_stg__subscription_upsell_flow_sms_user_id": {"name": "sms_stg__subscription_upsell_flow_sms_user_id", "resource_type": "doc", "package_name": "yoda", "path": "sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "original_file_path": "models/sms/staging/marts_compatible/sms_stg__subscription_upsell_flow_sms/sms_stg__subscription_upsell_flow_sms.md", "unique_id": "doc.yoda.sms_stg__subscription_upsell_flow_sms_user_id", "block_contents": "smsbump user id"}, "doc.yoda.subscriptions__customer_journey_event": {"name": "subscriptions__customer_journey_event", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event", "block_contents": "Customer journey events"}, "doc.yoda.subscriptions__customer_journey_event_created_at": {"name": "subscriptions__customer_journey_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_created_at", "block_contents": "Record created at"}, "doc.yoda.subscriptions__customer_journey_event_customer_id": {"name": "subscriptions__customer_journey_event_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_customer_id", "block_contents": "The customer associated with the event"}, "doc.yoda.subscriptions__customer_journey_event_event_initiator": {"name": "subscriptions__customer_journey_event_event_initiator", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_event_initiator", "block_contents": "The intiator of the event"}, "doc.yoda.subscriptions__customer_journey_event_event_origin": {"name": "subscriptions__customer_journey_event_event_origin", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_event_origin", "block_contents": "Where does the event took place (Customer Portal, Shopify, SMS reply, System, Yotpo Subscriptions)"}, "doc.yoda.subscriptions__customer_journey_event_event_time": {"name": "subscriptions__customer_journey_event_event_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_event_time", "block_contents": "The event creation time"}, "doc.yoda.subscriptions__customer_journey_event_event_type": {"name": "subscriptions__customer_journey_event_event_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_event_type", "block_contents": "The event description"}, "doc.yoda.subscriptions__customer_journey_event_id": {"name": "subscriptions__customer_journey_event_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_id", "block_contents": "Table identifier"}, "doc.yoda.subscriptions__customer_journey_event_properties": {"name": "subscriptions__customer_journey_event_properties", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_properties", "block_contents": "Event raw additional data"}, "doc.yoda.subscriptions__customer_journey_event_source_domain": {"name": "subscriptions__customer_journey_event_source_domain", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_source_domain", "block_contents": "Product line"}, "doc.yoda.subscriptions__customer_journey_event_source_id": {"name": "subscriptions__customer_journey_event_source_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_source_id", "block_contents": "The object unique identifier on which the event occured (example: for subscription product line it's the subscription contract external id)"}, "doc.yoda.subscriptions__customer_journey_event_store_id": {"name": "subscriptions__customer_journey_event_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_store_id", "block_contents": "The store identifier"}, "doc.yoda.subscriptions__customer_journey_event_updated_at": {"name": "subscriptions__customer_journey_event_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__customer_journey_event/subscriptions__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions__customer_journey_event_updated_at", "block_contents": "Record updated at"}, "doc.yoda.subscriptions__marts_recurrent_event_rule": {"name": "subscriptions__marts_recurrent_event_rule", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__marts_recurrent_event_rule", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__recurrent_event_rule_created_at": {"name": "subscriptions__recurrent_event_rule_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_id": {"name": "subscriptions__recurrent_event_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_interval_count": {"name": "subscriptions__recurrent_event_rule_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_is_canceled": {"name": "subscriptions__recurrent_event_rule_is_canceled", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_is_canceled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_is_logical_deleted": {"name": "subscriptions__recurrent_event_rule_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_next_due_date": {"name": "subscriptions__recurrent_event_rule_next_due_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_next_due_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_obj_id": {"name": "subscriptions__recurrent_event_rule_obj_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_obj_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_obj_type": {"name": "subscriptions__recurrent_event_rule_obj_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_obj_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_plan_interval": {"name": "subscriptions__recurrent_event_rule_plan_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_plan_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_processing_time": {"name": "subscriptions__recurrent_event_rule_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_ts_ms": {"name": "subscriptions__recurrent_event_rule_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_updated_at": {"name": "subscriptions__recurrent_event_rule_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__recurrent_event_rule_upsolver_schema_version": {"name": "subscriptions__recurrent_event_rule_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__recurrent_event_rule/subscriptions__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__recurrent_event_rule_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event": {"name": "subscriptions__snowflake_cancelation_intent_event", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_cancelation_reason_option_id": {"name": "subscriptions__snowflake_cancelation_intent_event_cancelation_reason_option_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_cancelation_reason_option_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_comment": {"name": "subscriptions__snowflake_cancelation_intent_event_comment", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_comment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_created_at": {"name": "subscriptions__snowflake_cancelation_intent_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_customer_id": {"name": "subscriptions__snowflake_cancelation_intent_event_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_event_origin": {"name": "subscriptions__snowflake_cancelation_intent_event_event_origin", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_event_origin", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_id": {"name": "subscriptions__snowflake_cancelation_intent_event_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_processing_time": {"name": "subscriptions__snowflake_cancelation_intent_event_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_product_id": {"name": "subscriptions__snowflake_cancelation_intent_event_product_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_resolution": {"name": "subscriptions__snowflake_cancelation_intent_event_resolution", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_resolution", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_subscription_id": {"name": "subscriptions__snowflake_cancelation_intent_event_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_subscription_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_ts_ms": {"name": "subscriptions__snowflake_cancelation_intent_event_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_updated_at": {"name": "subscriptions__snowflake_cancelation_intent_event_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_upsolver_schema_version": {"name": "subscriptions__snowflake_cancelation_intent_event_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_intent_event_variant_id": {"name": "subscriptions__snowflake_cancelation_intent_event_variant_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_intent_event/subscriptions__snowflake_cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_intent_event_variant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_reason_option": {"name": "subscriptions__snowflake_cancelation_reason_option", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_reason_option", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_cancelation_reason_option_created_at": {"name": "subscriptions__snowflake_cancelation_reason_option_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_reason_option_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_reason_option_id": {"name": "subscriptions__snowflake_cancelation_reason_option_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_reason_option_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_reason_option_is_active": {"name": "subscriptions__snowflake_cancelation_reason_option_is_active", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_reason_option_is_active", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_reason_option_processing_time": {"name": "subscriptions__snowflake_cancelation_reason_option_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_reason_option_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_reason_option_reason_text": {"name": "subscriptions__snowflake_cancelation_reason_option_reason_text", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_reason_option_reason_text", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_reason_option_store_id": {"name": "subscriptions__snowflake_cancelation_reason_option_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_reason_option_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_reason_option_ts_ms": {"name": "subscriptions__snowflake_cancelation_reason_option_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_reason_option_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_reason_option_updated_at": {"name": "subscriptions__snowflake_cancelation_reason_option_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_reason_option_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_cancelation_reason_option_upsolver_schema_version": {"name": "subscriptions__snowflake_cancelation_reason_option_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_cancelation_reason_option/subscriptions__snowflake_cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions__snowflake_cancelation_reason_option_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__marts_snowflake_recurrent_event_rule": {"name": "subscriptions__marts_snowflake_recurrent_event_rule", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__marts_snowflake_recurrent_event_rule", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_created_at": {"name": "subscriptions__snowflake_recurrent_event_rule_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_id": {"name": "subscriptions__snowflake_recurrent_event_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_interval_count": {"name": "subscriptions__snowflake_recurrent_event_rule_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_is_canceled": {"name": "subscriptions__snowflake_recurrent_event_rule_is_canceled", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_is_canceled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_is_logical_deleted": {"name": "subscriptions__snowflake_recurrent_event_rule_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_next_due_date": {"name": "subscriptions__snowflake_recurrent_event_rule_next_due_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_next_due_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_obj_id": {"name": "subscriptions__snowflake_recurrent_event_rule_obj_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_obj_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_obj_type": {"name": "subscriptions__snowflake_recurrent_event_rule_obj_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_obj_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_plan_interval": {"name": "subscriptions__snowflake_recurrent_event_rule_plan_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_plan_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_processing_time": {"name": "subscriptions__snowflake_recurrent_event_rule_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_ts_ms": {"name": "subscriptions__snowflake_recurrent_event_rule_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_updated_at": {"name": "subscriptions__snowflake_recurrent_event_rule_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_recurrent_event_rule_upsolver_schema_version": {"name": "subscriptions__snowflake_recurrent_event_rule_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_recurrent_event_rule/subscriptions__snowflake_recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__snowflake_recurrent_event_rule_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__marts_snowflake_status": {"name": "subscriptions__marts_snowflake_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "unique_id": "doc.yoda.subscriptions__marts_snowflake_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_status_created_at": {"name": "subscriptions__snowflake_status_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "unique_id": "doc.yoda.subscriptions__snowflake_status_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_status_id": {"name": "subscriptions__snowflake_status_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "unique_id": "doc.yoda.subscriptions__snowflake_status_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_status_is_logical_deleted": {"name": "subscriptions__snowflake_status_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "unique_id": "doc.yoda.subscriptions__snowflake_status_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_status_num": {"name": "subscriptions__snowflake_status_num", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "unique_id": "doc.yoda.subscriptions__snowflake_status_num", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_status_processing_time": {"name": "subscriptions__snowflake_status_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "unique_id": "doc.yoda.subscriptions__snowflake_status_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_status_text": {"name": "subscriptions__snowflake_status_text", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "unique_id": "doc.yoda.subscriptions__snowflake_status_text", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_status_ts_ms": {"name": "subscriptions__snowflake_status_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "unique_id": "doc.yoda.subscriptions__snowflake_status_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_status_updated_at": {"name": "subscriptions__snowflake_status_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "unique_id": "doc.yoda.subscriptions__snowflake_status_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_status_upsolver_schema_version": {"name": "subscriptions__snowflake_status_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_status/subscriptions__snowflake_status.md", "unique_id": "doc.yoda.subscriptions__snowflake_status_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__marts_snowflake_subscription_contract": {"name": "subscriptions__marts_snowflake_subscription_contract", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__marts_snowflake_subscription_contract", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_subscription_contract_billing_policy_interval": {"name": "subscriptions__snowflake_subscription_contract_billing_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_billing_policy_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_billing_policy_interval_count": {"name": "subscriptions__snowflake_subscription_contract_billing_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_billing_policy_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_created_at": {"name": "subscriptions__snowflake_subscription_contract_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_delivery_policy_interval": {"name": "subscriptions__snowflake_subscription_contract_delivery_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_delivery_policy_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_delivery_policy_interval_count": {"name": "subscriptions__snowflake_subscription_contract_delivery_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_delivery_policy_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_external_customer_id": {"name": "subscriptions__snowflake_subscription_contract_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_external_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_external_id": {"name": "subscriptions__snowflake_subscription_contract_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_id": {"name": "subscriptions__snowflake_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_is_logical_deleted": {"name": "subscriptions__snowflake_subscription_contract_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_original_order_external_id": {"name": "subscriptions__snowflake_subscription_contract_original_order_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_original_order_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_processing_time": {"name": "subscriptions__snowflake_subscription_contract_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_status": {"name": "subscriptions__snowflake_subscription_contract_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_status_last_updated_at": {"name": "subscriptions__snowflake_subscription_contract_status_last_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_status_last_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_store_id": {"name": "subscriptions__snowflake_subscription_contract_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_ts_ms": {"name": "subscriptions__snowflake_subscription_contract_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_updated_at": {"name": "subscriptions__snowflake_subscription_contract_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_upsolver_schema_version": {"name": "subscriptions__snowflake_subscription_contract_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract/subscriptions__snowflake_subscription_contract.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__marts_snowflake_subscription_contract_line_policy": {"name": "subscriptions__marts_snowflake_subscription_contract_line_policy", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__marts_snowflake_subscription_contract_line_policy", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_delivery_policy_interval": {"name": "subscriptions__snowflake_subscription_contract_line_policy_delivery_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_delivery_policy_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_delivery_policy_interval_count": {"name": "subscriptions__snowflake_subscription_contract_line_policy_delivery_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_delivery_policy_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_inventory_quantity": {"name": "subscriptions__snowflake_subscription_contract_line_policy_inventory_quantity", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_inventory_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_product_external_id": {"name": "subscriptions__snowflake_subscription_contract_line_policy_product_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_product_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_product_title": {"name": "subscriptions__snowflake_subscription_contract_line_policy_product_title", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_product_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_quantity": {"name": "subscriptions__snowflake_subscription_contract_line_policy_quantity", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_sku": {"name": "subscriptions__snowflake_subscription_contract_line_policy_sku", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_store_id": {"name": "subscriptions__snowflake_subscription_contract_line_policy_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_subscription_contract_id": {"name": "subscriptions__snowflake_subscription_contract_line_policy_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_subscription_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_subscription_contract_external_id": {"name": "subscriptions__snowflake_subscription_contract_line_policy_subscription_contract_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_subscription_contract_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_variant_external_id": {"name": "subscriptions__snowflake_subscription_contract_line_policy_variant_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_variant_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_variant_title": {"name": "subscriptions__snowflake_subscription_contract_line_policy_variant_title", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_line_policy/subscriptions__snowflake_subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_line_policy_variant_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__marts_snowflake_subscription_contract_order": {"name": "subscriptions__marts_snowflake_subscription_contract_order", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__marts_snowflake_subscription_contract_order", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_created_at": {"name": "subscriptions__snowflake_subscription_contract_order_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_external_order_id": {"name": "subscriptions__snowflake_subscription_contract_order_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_external_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_external_subscription_contract_id": {"name": "subscriptions__snowflake_subscription_contract_order_external_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_external_subscription_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_id": {"name": "subscriptions__snowflake_subscription_contract_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_is_logical_deleted": {"name": "subscriptions__snowflake_subscription_contract_order_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_processing_time": {"name": "subscriptions__snowflake_subscription_contract_order_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_store_id": {"name": "subscriptions__snowflake_subscription_contract_order_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_ts_ms": {"name": "subscriptions__snowflake_subscription_contract_order_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_updated_at": {"name": "subscriptions__snowflake_subscription_contract_order_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_upsolver_schema_version": {"name": "subscriptions__snowflake_subscription_contract_order_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order/subscriptions__snowflake_subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines": {"name": "subscriptions__snowflake_subscription_contract_order_lines", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_external_order_id": {"name": "subscriptions__snowflake_subscription_contract_order_lines_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_external_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_external_subscription_contract_id": {"name": "subscriptions__snowflake_subscription_contract_order_lines_external_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_external_subscription_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_order_date": {"name": "subscriptions__snowflake_subscription_contract_order_lines_order_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_order_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_order_line_total": {"name": "subscriptions__snowflake_subscription_contract_order_lines_order_line_total", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_order_line_total", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_product_external_id": {"name": "subscriptions__snowflake_subscription_contract_order_lines_product_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_product_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_store_id": {"name": "subscriptions__snowflake_subscription_contract_order_lines_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_variant_external_id": {"name": "subscriptions__snowflake_subscription_contract_order_lines_variant_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_order_lines/subscriptions__snowflake_subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_order_lines_variant_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_contract_status_changes": {"name": "subscriptions__snowflake_subscription_contract_status_changes", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_contract_status_changes/subscriptions__snowflake_subscription_contract_status_changes.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_contract_status_changes/subscriptions__snowflake_subscription_contract_status_changes.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_contract_status_changes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_subscription_line_action": {"name": "subscriptions__snowflake_subscription_line_action", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_action_status": {"name": "subscriptions__snowflake_subscription_line_action_action_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_action_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_action_type": {"name": "subscriptions__snowflake_subscription_line_action_action_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_action_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_created_at": {"name": "subscriptions__snowflake_subscription_line_action_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_external_line_id": {"name": "subscriptions__snowflake_subscription_line_action_external_line_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_external_line_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_external_subscription_contract_id": {"name": "subscriptions__snowflake_subscription_line_action_external_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_external_subscription_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_external_variant_id": {"name": "subscriptions__snowflake_subscription_line_action_external_variant_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_external_variant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_id": {"name": "subscriptions__snowflake_subscription_line_action_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_processing_time": {"name": "subscriptions__snowflake_subscription_line_action_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_quantity": {"name": "subscriptions__snowflake_subscription_line_action_quantity", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_store_id": {"name": "subscriptions__snowflake_subscription_line_action_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_total_price": {"name": "subscriptions__snowflake_subscription_line_action_total_price", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_total_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_ts_ms": {"name": "subscriptions__snowflake_subscription_line_action_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_updated_at": {"name": "subscriptions__snowflake_subscription_line_action_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_line_action_upsolver_schema_version": {"name": "subscriptions__snowflake_subscription_line_action_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_line_action/subscriptions__snowflake_subscription_line_action.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_line_action_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_merchant_migration_date": {"name": "subscriptions__snowflake_subscription_merchant_migration_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_merchant_migration_date/subscriptions__snowflake_subscription_merchant_migration_date.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_merchant_migration_date/subscriptions__snowflake_subscription_merchant_migration_date.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_merchant_migration_date", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_subscription_merchant_migration_date_migration_date": {"name": "subscriptions__snowflake_subscription_merchant_migration_date_migration_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_merchant_migration_date/subscriptions__snowflake_subscription_merchant_migration_date.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_merchant_migration_date/subscriptions__snowflake_subscription_merchant_migration_date.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_merchant_migration_date_migration_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_merchant_migration_date_store_id": {"name": "subscriptions__snowflake_subscription_merchant_migration_date_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_merchant_migration_date/subscriptions__snowflake_subscription_merchant_migration_date.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_merchant_migration_date/subscriptions__snowflake_subscription_merchant_migration_date.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_merchant_migration_date_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__marts_snowflake_subscription_total_orders": {"name": "subscriptions__marts_snowflake_subscription_total_orders", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__marts_snowflake_subscription_total_orders", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_subscription_total_orders_account_currency_iso": {"name": "subscriptions__snowflake_subscription_total_orders_account_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_total_orders_account_currency_iso", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_total_orders_app_key": {"name": "subscriptions__snowflake_subscription_total_orders_app_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_total_orders_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_total_orders_external_customer_id": {"name": "subscriptions__snowflake_subscription_total_orders_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_total_orders_external_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_total_orders_external_id": {"name": "subscriptions__snowflake_subscription_total_orders_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_total_orders_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_total_orders_external_order_id": {"name": "subscriptions__snowflake_subscription_total_orders_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_total_orders_external_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_total_orders_order_currency_iso": {"name": "subscriptions__snowflake_subscription_total_orders_order_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_total_orders_order_currency_iso", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_total_orders_order_date": {"name": "subscriptions__snowflake_subscription_total_orders_order_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_total_orders_order_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscription_total_orders_total_price": {"name": "subscriptions__snowflake_subscription_total_orders_total_price", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscription_total_orders/subscriptions__snowflake_subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscription_total_orders_total_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__marts_snowflake_subscriptions_accounts": {"name": "subscriptions__marts_snowflake_subscriptions_accounts", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "unique_id": "doc.yoda.subscriptions__marts_snowflake_subscriptions_accounts", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__snowflake_subscriptions_accounts_app_key": {"name": "subscriptions__snowflake_subscriptions_accounts_app_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscriptions_accounts_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscriptions_accounts_domain": {"name": "subscriptions__snowflake_subscriptions_accounts_domain", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscriptions_accounts_domain", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscriptions_accounts_finished_date": {"name": "subscriptions__snowflake_subscriptions_accounts_finished_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscriptions_accounts_finished_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscriptions_accounts_first_product_enabled_at": {"name": "subscriptions__snowflake_subscriptions_accounts_first_product_enabled_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscriptions_accounts_first_product_enabled_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscriptions_accounts_is_finised": {"name": "subscriptions__snowflake_subscriptions_accounts_is_finised", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscriptions_accounts_is_finised", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscriptions_accounts_is_test": {"name": "subscriptions__snowflake_subscriptions_accounts_is_test", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscriptions_accounts_is_test", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscriptions_accounts_uninstalled": {"name": "subscriptions__snowflake_subscriptions_accounts_uninstalled", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscriptions_accounts_uninstalled", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscriptions_accounts_uninstalled_at": {"name": "subscriptions__snowflake_subscriptions_accounts_uninstalled_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscriptions_accounts_uninstalled_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__snowflake_subscriptions_accounts_url": {"name": "subscriptions__snowflake_subscriptions_accounts_url", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__snowflake_subscriptions_accounts/subscriptions__snowflake_subscriptions_accounts.md", "unique_id": "doc.yoda.subscriptions__snowflake_subscriptions_accounts_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__marts_status": {"name": "subscriptions__marts_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__status/subscriptions__status.md", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.md", "unique_id": "doc.yoda.subscriptions__marts_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions__status_created_at": {"name": "subscriptions__status_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__status/subscriptions__status.md", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.md", "unique_id": "doc.yoda.subscriptions__status_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__status_id": {"name": "subscriptions__status_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__status/subscriptions__status.md", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.md", "unique_id": "doc.yoda.subscriptions__status_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__status_is_logical_deleted": {"name": "subscriptions__status_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__status/subscriptions__status.md", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.md", "unique_id": "doc.yoda.subscriptions__status_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__status_num": {"name": "subscriptions__status_num", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__status/subscriptions__status.md", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.md", "unique_id": "doc.yoda.subscriptions__status_num", "block_contents": "The status id"}, "doc.yoda.subscriptions__status_processing_time": {"name": "subscriptions__status_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__status/subscriptions__status.md", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.md", "unique_id": "doc.yoda.subscriptions__status_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__status_text": {"name": "subscriptions__status_text", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__status/subscriptions__status.md", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.md", "unique_id": "doc.yoda.subscriptions__status_text", "block_contents": "The status description"}, "doc.yoda.subscriptions__status_ts_ms": {"name": "subscriptions__status_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__status/subscriptions__status.md", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.md", "unique_id": "doc.yoda.subscriptions__status_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__status_updated_at": {"name": "subscriptions__status_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__status/subscriptions__status.md", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.md", "unique_id": "doc.yoda.subscriptions__status_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__status_upsolver_schema_version": {"name": "subscriptions__status_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__status/subscriptions__status.md", "original_file_path": "models/subscriptions/marts/subscriptions__status/subscriptions__status.md", "unique_id": "doc.yoda.subscriptions__status_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports": {"name": "subscriptions__store_customers_exports", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports", "block_contents": "Data source of subscriptions customers data, taken from csv files produced by the app code\nExported to looker for live analytics scrapping purposes (by Yotpo clients)"}, "doc.yoda.subscriptions__store_customers_exports_BILLING_INTERVAL_FREQUENCY": {"name": "subscriptions__store_customers_exports_BILLING_INTERVAL_FREQUENCY", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_BILLING_INTERVAL_FREQUENCY", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_BILLING_INTERVAL_UNIT": {"name": "subscriptions__store_customers_exports_BILLING_INTERVAL_UNIT", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_BILLING_INTERVAL_UNIT", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_CREATED_AT": {"name": "subscriptions__store_customers_exports_CREATED_AT", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_CREATED_AT", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_CURRENCY_CODE": {"name": "subscriptions__store_customers_exports_CURRENCY_CODE", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_CURRENCY_CODE", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_CUSTOMER_EMAIL": {"name": "subscriptions__store_customers_exports_CUSTOMER_EMAIL", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_CUSTOMER_EMAIL", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_DELIVERY_PRICE": {"name": "subscriptions__store_customers_exports_DELIVERY_PRICE", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_DELIVERY_PRICE", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_EXPIRES_AFTER_NUM_BILLING_CYCLES": {"name": "subscriptions__store_customers_exports_EXPIRES_AFTER_NUM_BILLING_CYCLES", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_EXPIRES_AFTER_NUM_BILLING_CYCLES", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_EXTERNAL_CUSTOMER_ID": {"name": "subscriptions__store_customers_exports_EXTERNAL_CUSTOMER_ID", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_EXTERNAL_CUSTOMER_ID", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_EXTERNAL_PRODUCT_ID": {"name": "subscriptions__store_customers_exports_EXTERNAL_PRODUCT_ID", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_EXTERNAL_PRODUCT_ID", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_EXTERNAL_SUBSCRIPTION_ID": {"name": "subscriptions__store_customers_exports_EXTERNAL_SUBSCRIPTION_ID", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_EXTERNAL_SUBSCRIPTION_ID", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_EXTERNAL_VARIANT_ID": {"name": "subscriptions__store_customers_exports_EXTERNAL_VARIANT_ID", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_EXTERNAL_VARIANT_ID", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_NEXT_BILLING_DATE": {"name": "subscriptions__store_customers_exports_NEXT_BILLING_DATE", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_NEXT_BILLING_DATE", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_ORDER_INTERVAL_FREQUENCY": {"name": "subscriptions__store_customers_exports_ORDER_INTERVAL_FREQUENCY", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_ORDER_INTERVAL_FREQUENCY", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_ORDER_INTERVAL_UNIT": {"name": "subscriptions__store_customers_exports_ORDER_INTERVAL_UNIT", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_ORDER_INTERVAL_UNIT", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_PRODUCT_TITLE": {"name": "subscriptions__store_customers_exports_PRODUCT_TITLE", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_PRODUCT_TITLE", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_QUANTITY": {"name": "subscriptions__store_customers_exports_QUANTITY", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_QUANTITY", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_RECURRING_PRICE": {"name": "subscriptions__store_customers_exports_RECURRING_PRICE", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_RECURRING_PRICE", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_ADDRESS1": {"name": "subscriptions__store_customers_exports_SHIPPING_ADDRESS_ADDRESS1", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_ADDRESS1", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_ADDRESS2": {"name": "subscriptions__store_customers_exports_SHIPPING_ADDRESS_ADDRESS2", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_ADDRESS2", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_CITY": {"name": "subscriptions__store_customers_exports_SHIPPING_ADDRESS_CITY", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_CITY", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_COUNTRY": {"name": "subscriptions__store_customers_exports_SHIPPING_ADDRESS_COUNTRY", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_COUNTRY", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_FIRST_NAME": {"name": "subscriptions__store_customers_exports_SHIPPING_ADDRESS_FIRST_NAME", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_FIRST_NAME", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_LAST_NAME": {"name": "subscriptions__store_customers_exports_SHIPPING_ADDRESS_LAST_NAME", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_LAST_NAME", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_PHONE": {"name": "subscriptions__store_customers_exports_SHIPPING_ADDRESS_PHONE", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_PHONE", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_PROVINCE_CODE": {"name": "subscriptions__store_customers_exports_SHIPPING_ADDRESS_PROVINCE_CODE", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_PROVINCE_CODE", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_ZIP": {"name": "subscriptions__store_customers_exports_SHIPPING_ADDRESS_ZIP", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_SHIPPING_ADDRESS_ZIP", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_SKU": {"name": "subscriptions__store_customers_exports_SKU", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_SKU", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_STATUS": {"name": "subscriptions__store_customers_exports_STATUS", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_STATUS", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_TOTAL_RECURRING_ORDERS": {"name": "subscriptions__store_customers_exports_TOTAL_RECURRING_ORDERS", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_TOTAL_RECURRING_ORDERS", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_UPDATED_AT": {"name": "subscriptions__store_customers_exports_UPDATED_AT", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_UPDATED_AT", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__store_customers_exports_VARIANT_TITLE": {"name": "subscriptions__store_customers_exports_VARIANT_TITLE", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "original_file_path": "models/subscriptions/marts/subscriptions__store_customers_exports/subscriptions__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions__store_customers_exports_VARIANT_TITLE", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__marts_subscription_accounts": {"name": "subscriptions__marts_subscription_accounts", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "unique_id": "doc.yoda.subscriptions__marts_subscription_accounts", "block_contents": "All accounts with subscription package"}, "doc.yoda.subscriptions__subscription_accounts_app_key": {"name": "subscriptions__subscription_accounts_app_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "unique_id": "doc.yoda.subscriptions__subscription_accounts_app_key", "block_contents": "the account store_id / app_key"}, "doc.yoda.subscriptions__subscription_accounts_domain": {"name": "subscriptions__subscription_accounts_domain", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "unique_id": "doc.yoda.subscriptions__subscription_accounts_domain", "block_contents": "the account domain"}, "doc.yoda.subscriptions__subscription_accounts_finished_date": {"name": "subscriptions__subscription_accounts_finished_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "unique_id": "doc.yoda.subscriptions__subscription_accounts_finished_date", "block_contents": "the date which the account finished the onboarding"}, "doc.yoda.subscriptions__subscription_accounts_first_product_enabled_at": {"name": "subscriptions__subscription_accounts_first_product_enabled_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "unique_id": "doc.yoda.subscriptions__subscription_accounts_first_product_enabled_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_accounts_is_finised": {"name": "subscriptions__subscription_accounts_is_finised", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "unique_id": "doc.yoda.subscriptions__subscription_accounts_is_finised", "block_contents": "Whether the account finished the onboarding or not"}, "doc.yoda.subscriptions__subscription_accounts_is_test": {"name": "subscriptions__subscription_accounts_is_test", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "unique_id": "doc.yoda.subscriptions__subscription_accounts_is_test", "block_contents": "is it internal test account"}, "doc.yoda.subscriptions__subscription_accounts_uninstalled": {"name": "subscriptions__subscription_accounts_uninstalled", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "unique_id": "doc.yoda.subscriptions__subscription_accounts_uninstalled", "block_contents": "whether the account uninstalled subscriptions app"}, "doc.yoda.subscriptions__subscription_accounts_uninstalled_at": {"name": "subscriptions__subscription_accounts_uninstalled_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "unique_id": "doc.yoda.subscriptions__subscription_accounts_uninstalled_at", "block_contents": "the date which the account uninstalled the subscriptions app"}, "doc.yoda.subscriptions__subscription_accounts_url": {"name": "subscriptions__subscription_accounts_url", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_accounts/subscriptions__subscription_accounts.md", "unique_id": "doc.yoda.subscriptions__subscription_accounts_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__marts_subscription_contract": {"name": "subscriptions__marts_subscription_contract", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__marts_subscription_contract", "block_contents": "Subscription contract with basic metadata"}, "doc.yoda.subscriptions__subscription_contract_billing_policy_interval": {"name": "subscriptions__subscription_contract_billing_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_billing_policy_interval", "block_contents": "the interval type of the billing cycle"}, "doc.yoda.subscriptions__subscription_contract_billing_policy_interval_count": {"name": "subscriptions__subscription_contract_billing_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_billing_policy_interval_count", "block_contents": "the interval count of the billing cycle"}, "doc.yoda.subscriptions__subscription_contract_created_at": {"name": "subscriptions__subscription_contract_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_delivery_policy_interval": {"name": "subscriptions__subscription_contract_delivery_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_delivery_policy_interval", "block_contents": "the interval type of the delivery cycle"}, "doc.yoda.subscriptions__subscription_contract_delivery_policy_interval_count": {"name": "subscriptions__subscription_contract_delivery_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_delivery_policy_interval_count", "block_contents": "the interval count of the delivery cycle"}, "doc.yoda.subscriptions__subscription_contract_external_customer_id": {"name": "subscriptions__subscription_contract_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_external_customer_id", "block_contents": "the external id of the shopper"}, "doc.yoda.subscriptions__subscription_contract_external_id": {"name": "subscriptions__subscription_contract_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_external_id", "block_contents": "the external id of the subscription contract"}, "doc.yoda.subscriptions__subscription_contract_id": {"name": "subscriptions__subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_is_logical_deleted": {"name": "subscriptions__subscription_contract_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_original_order_external_id": {"name": "subscriptions__subscription_contract_original_order_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_original_order_external_id", "block_contents": "the external order id of the order that the subscription contract was created from"}, "doc.yoda.subscriptions__subscription_contract_processing_time": {"name": "subscriptions__subscription_contract_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_status": {"name": "subscriptions__subscription_contract_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_status", "block_contents": "the status id of the subscription contract"}, "doc.yoda.subscriptions__subscription_contract_status_last_updated_at": {"name": "subscriptions__subscription_contract_status_last_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_status_last_updated_at", "block_contents": "the date of that the last status of the subscription contract was changed"}, "doc.yoda.subscriptions__subscription_contract_store_id": {"name": "subscriptions__subscription_contract_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_store_id", "block_contents": "the owner's store id of the subscription contract"}, "doc.yoda.subscriptions__subscription_contract_ts_ms": {"name": "subscriptions__subscription_contract_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_updated_at": {"name": "subscriptions__subscription_contract_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_upsolver_schema_version": {"name": "subscriptions__subscription_contract_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract/subscriptions__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_line": {"name": "subscriptions__subscription_contract_line", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line", "block_contents": "a product reference within a subscription"}, "doc.yoda.subscriptions__subscription_contract_line_created_at": {"name": "subscriptions__subscription_contract_line_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_line_currency_code": {"name": "subscriptions__subscription_contract_line_currency_code", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_currency_code", "block_contents": "the currency code related to the product price"}, "doc.yoda.subscriptions__subscription_contract_line_discounted_price": {"name": "subscriptions__subscription_contract_line_discounted_price", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_discounted_price", "block_contents": "the discounted price of the product within a subscription"}, "doc.yoda.subscriptions__subscription_contract_line_id": {"name": "subscriptions__subscription_contract_line_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_line_price": {"name": "subscriptions__subscription_contract_line_price", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_price", "block_contents": "the current price of the product within a subscription"}, "doc.yoda.subscriptions__subscription_contract_line_processing_time": {"name": "subscriptions__subscription_contract_line_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_line_product_external_id": {"name": "subscriptions__subscription_contract_line_product_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_product_external_id", "block_contents": "the product external id"}, "doc.yoda.subscriptions__subscription_contract_line_quantity": {"name": "subscriptions__subscription_contract_line_quantity", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_quantity", "block_contents": "the quantity of the product within a subscription"}, "doc.yoda.subscriptions__subscription_contract_line_subscription_contract_id": {"name": "subscriptions__subscription_contract_line_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_subscription_contract_id", "block_contents": "the internal subscription contract id"}, "doc.yoda.subscriptions__subscription_contract_line_ts_ms": {"name": "subscriptions__subscription_contract_line_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_line_updated_at": {"name": "subscriptions__subscription_contract_line_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_line_upsolver_schema_version": {"name": "subscriptions__subscription_contract_line_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_line_variant_external_id": {"name": "subscriptions__subscription_contract_line_variant_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line/subscriptions__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_variant_external_id", "block_contents": "the variant external id"}, "doc.yoda.subscriptions__marts_subscription_contract_line_policy": {"name": "subscriptions__marts_subscription_contract_line_policy", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__marts_subscription_contract_line_policy", "block_contents": "table to represent a product in a subscription"}, "doc.yoda.subscriptions__subscription_contract_line_policy_delivery_policy_interval": {"name": "subscriptions__subscription_contract_line_policy_delivery_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_delivery_policy_interval", "block_contents": "the interval type of the delivery cycle"}, "doc.yoda.subscriptions__subscription_contract_line_policy_delivery_policy_interval_count": {"name": "subscriptions__subscription_contract_line_policy_delivery_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_delivery_policy_interval_count", "block_contents": "the interval count of the delivery cycle"}, "doc.yoda.subscriptions__subscription_contract_line_policy_inventory_quantity": {"name": "subscriptions__subscription_contract_line_policy_inventory_quantity", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_inventory_quantity", "block_contents": "the product / variant inventory quantity"}, "doc.yoda.subscriptions__subscription_contract_line_policy_product_external_id": {"name": "subscriptions__subscription_contract_line_policy_product_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_product_external_id", "block_contents": "the product external id"}, "doc.yoda.subscriptions__subscription_contract_line_policy_product_title": {"name": "subscriptions__subscription_contract_line_policy_product_title", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_product_title", "block_contents": "the product name"}, "doc.yoda.subscriptions__subscription_contract_line_policy_quantity": {"name": "subscriptions__subscription_contract_line_policy_quantity", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_quantity", "block_contents": "the quantity of the product within a single subscription"}, "doc.yoda.subscriptions__subscription_contract_line_policy_sku": {"name": "subscriptions__subscription_contract_line_policy_sku", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_sku", "block_contents": "the product sku"}, "doc.yoda.subscriptions__subscription_contract_line_policy_store_id": {"name": "subscriptions__subscription_contract_line_policy_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_store_id", "block_contents": "the owner's store id of the subscription"}, "doc.yoda.subscriptions__subscription_contract_line_policy_subscription_contract_id": {"name": "subscriptions__subscription_contract_line_policy_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_subscription_contract_id", "block_contents": "the internal subscription contract id"}, "doc.yoda.subscriptions__subscription_contract_line_policy_subscription_contract_external_id": {"name": "subscriptions__subscription_contract_line_policy_subscription_contract_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_subscription_contract_external_id", "block_contents": "the external subscription contract id"}, "doc.yoda.subscriptions__subscription_contract_line_policy_variant_external_id": {"name": "subscriptions__subscription_contract_line_policy_variant_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_variant_external_id", "block_contents": "the variant external id"}, "doc.yoda.subscriptions__subscription_contract_line_policy_variant_title": {"name": "subscriptions__subscription_contract_line_policy_variant_title", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_line_policy/subscriptions__subscription_contract_line_policy.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_line_policy_variant_title", "block_contents": "the variant name"}, "doc.yoda.subscriptions__marts_subscription_contract_order": {"name": "subscriptions__marts_subscription_contract_order", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__marts_subscription_contract_order", "block_contents": "orders of subscription contracts"}, "doc.yoda.subscriptions__subscription_contract_order_created_at": {"name": "subscriptions__subscription_contract_order_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_external_order_id": {"name": "subscriptions__subscription_contract_order_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_external_order_id", "block_contents": "the external order id"}, "doc.yoda.subscriptions__subscription_contract_order_external_subscription_contract_id": {"name": "subscriptions__subscription_contract_order_external_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_external_subscription_contract_id", "block_contents": "the external subscription contract id"}, "doc.yoda.subscriptions__subscription_contract_order_id": {"name": "subscriptions__subscription_contract_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_is_logical_deleted": {"name": "subscriptions__subscription_contract_order_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_processing_time": {"name": "subscriptions__subscription_contract_order_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_store_id": {"name": "subscriptions__subscription_contract_order_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_store_id", "block_contents": "the order's store id"}, "doc.yoda.subscriptions__subscription_contract_order_ts_ms": {"name": "subscriptions__subscription_contract_order_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_updated_at": {"name": "subscriptions__subscription_contract_order_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_upsolver_schema_version": {"name": "subscriptions__subscription_contract_order_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order/subscriptions__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_lines": {"name": "subscriptions__subscription_contract_order_lines", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_lines", "block_contents": "A list of all order lines in subscription orders"}, "doc.yoda.subscriptions__subscription_contract_order_lines_external_order_id": {"name": "subscriptions__subscription_contract_order_lines_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_lines_external_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_lines_external_subscription_contract_id": {"name": "subscriptions__subscription_contract_order_lines_external_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_lines_external_subscription_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_lines_order_date": {"name": "subscriptions__subscription_contract_order_lines_order_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_lines_order_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_lines_order_line_total": {"name": "subscriptions__subscription_contract_order_lines_order_line_total", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_lines_order_line_total", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_lines_product_external_id": {"name": "subscriptions__subscription_contract_order_lines_product_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_lines_product_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_lines_store_id": {"name": "subscriptions__subscription_contract_order_lines_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_lines_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_order_lines_variant_external_id": {"name": "subscriptions__subscription_contract_order_lines_variant_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_order_lines/subscriptions__subscription_contract_order_lines.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_order_lines_variant_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_contract_status_changes": {"name": "subscriptions__subscription_contract_status_changes", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_status_changes", "block_contents": "This table is an incremental status timeline of subscription contracts"}, "doc.yoda.subscriptions__subscription_contract_status_changes_store_id": {"name": "subscriptions__subscription_contract_status_changes_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_status_changes_store_id", "block_contents": "Store id"}, "doc.yoda.subscriptions__subscription_contract_status_changes_external_id": {"name": "subscriptions__subscription_contract_status_changes_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_status_changes_external_id", "block_contents": "Subscription external id"}, "doc.yoda.subscriptions__subscription_contract_status_changes_status": {"name": "subscriptions__subscription_contract_status_changes_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_status_changes_status", "block_contents": "Subscription status (active,cancelled, etc.)"}, "doc.yoda.subscriptions__subscription_contract_status_changes_status_last_updated_at": {"name": "subscriptions__subscription_contract_status_changes_status_last_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_status_changes_status_last_updated_at", "block_contents": "Timestamp of the last status change for the subscription"}, "doc.yoda.subscriptions__subscription_contract_status_changes_created_at": {"name": "subscriptions__subscription_contract_status_changes_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_status_changes_created_at", "block_contents": "Creation timestamp of the subscription"}, "doc.yoda.subscriptions__subscription_contract_status_changes_updated_at": {"name": "subscriptions__subscription_contract_status_changes_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_status_changes_updated_at", "block_contents": "Update timestamp of the subcription"}, "doc.yoda.subscriptions__subscription_contract_status_changes_dwh_updated_at": {"name": "subscriptions__subscription_contract_status_changes_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_contract_status_changes/subscriptions__subscription_contract_status_changes.md", "unique_id": "doc.yoda.subscriptions__subscription_contract_status_changes_dwh_updated_at", "block_contents": "Last run timestamp"}, "doc.yoda.subscriptions__subscription_merchant_migration_date": {"name": "subscriptions__subscription_merchant_migration_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.md", "unique_id": "doc.yoda.subscriptions__subscription_merchant_migration_date", "block_contents": "table containing the merchant's migration date to yotpo subs from other subs providers"}, "doc.yoda.subscriptions__subscription_merchant_migration_date_migration_date": {"name": "subscriptions__subscription_merchant_migration_date_migration_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.md", "unique_id": "doc.yoda.subscriptions__subscription_merchant_migration_date_migration_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_merchant_migration_date_store_id": {"name": "subscriptions__subscription_merchant_migration_date_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_merchant_migration_date/subscriptions__subscription_merchant_migration_date.md", "unique_id": "doc.yoda.subscriptions__subscription_merchant_migration_date_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__marts_subscription_total_orders": {"name": "subscriptions__marts_subscription_total_orders", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__marts_subscription_total_orders", "block_contents": "All orders of accounts with subscriptions package"}, "doc.yoda.subscriptions__subscription_total_orders_account_currency_iso": {"name": "subscriptions__subscription_total_orders_account_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__subscription_total_orders_account_currency_iso", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_total_orders_app_key": {"name": "subscriptions__subscription_total_orders_app_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__subscription_total_orders_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_total_orders_external_customer_id": {"name": "subscriptions__subscription_total_orders_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__subscription_total_orders_external_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_total_orders_external_id": {"name": "subscriptions__subscription_total_orders_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__subscription_total_orders_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_total_orders_external_order_id": {"name": "subscriptions__subscription_total_orders_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__subscription_total_orders_external_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_total_orders_order_currency_iso": {"name": "subscriptions__subscription_total_orders_order_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__subscription_total_orders_order_currency_iso", "block_contents": "the currency of the order"}, "doc.yoda.subscriptions__subscription_total_orders_order_date": {"name": "subscriptions__subscription_total_orders_order_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__subscription_total_orders_order_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__subscription_total_orders_total_price": {"name": "subscriptions__subscription_total_orders_total_price", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscription_total_orders/subscriptions__subscription_total_orders.md", "unique_id": "doc.yoda.subscriptions__subscription_total_orders_total_price", "block_contents": "the total price of the order"}, "doc.yoda.subscriptions__subscriptions_attributed_orders": {"name": "subscriptions__subscriptions_attributed_orders", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "unique_id": "doc.yoda.subscriptions__subscriptions_attributed_orders", "block_contents": "Subscription attributed orders for the retention dashbaord metrics"}, "doc.yoda.subscriptions__subscriptions_attributed_orders_app_key": {"name": "subscriptions__subscriptions_attributed_orders_app_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "unique_id": "doc.yoda.subscriptions__subscriptions_attributed_orders_app_key", "block_contents": "merchant's unique identifier in the yotpo platform"}, "doc.yoda.subscriptions__subscriptions_attributed_orders_external_customer_id": {"name": "subscriptions__subscriptions_attributed_orders_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "unique_id": "doc.yoda.subscriptions__subscriptions_attributed_orders_external_customer_id", "block_contents": "the order's customer's unique identifier in the ecommerce platform"}, "doc.yoda.subscriptions__subscriptions_attributed_orders_external_order_id": {"name": "subscriptions__subscriptions_attributed_orders_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "unique_id": "doc.yoda.subscriptions__subscriptions_attributed_orders_external_order_id", "block_contents": "the order's unique identifier in the ecommerce platform"}, "doc.yoda.subscriptions__subscriptions_attributed_orders_order_date": {"name": "subscriptions__subscriptions_attributed_orders_order_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "unique_id": "doc.yoda.subscriptions__subscriptions_attributed_orders_order_date", "block_contents": "the date of the purchase"}, "doc.yoda.subscriptions__subscriptions_attributed_orders_order_total": {"name": "subscriptions__subscriptions_attributed_orders_order_total", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "original_file_path": "models/subscriptions/marts/subscriptions__subscriptions_attributed_orders/subscriptions__subscriptions_attributed_orders.md", "unique_id": "doc.yoda.subscriptions__subscriptions_attributed_orders_order_total", "block_contents": "the total value of the purchase"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign": {"name": "subscriptions__synergy_kpi_one_click_campaign", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign", "block_contents": "Synergies attribution KPI table to measure the one click campaigns."}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_action_attribute_type": {"name": "subscriptions__synergy_kpi_one_click_campaign_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_action_attribute_type", "block_contents": "null"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_action_attribute_value": {"name": "subscriptions__synergy_kpi_one_click_campaign_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_action_attribute_value", "block_contents": "null"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_action_id": {"name": "subscriptions__synergy_kpi_one_click_campaign_action_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_action_id", "block_contents": "Whether customer clicked on the SMS link or not"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_action_type": {"name": "subscriptions__synergy_kpi_one_click_campaign_action_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_action_type", "block_contents": "sms click"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_app_key": {"name": "subscriptions__synergy_kpi_one_click_campaign_app_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_app_key", "block_contents": "Merchant's store ID"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_customer_email": {"name": "subscriptions__synergy_kpi_one_click_campaign_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_customer_email", "block_contents": "Customer email"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_customer_external_id": {"name": "subscriptions__synergy_kpi_one_click_campaign_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_customer_external_id", "block_contents": "Customer ID in Shopify"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_customer_phone_number": {"name": "subscriptions__synergy_kpi_one_click_campaign_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_customer_phone_number", "block_contents": "Customer phone number"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_dwh_updated_at": {"name": "subscriptions__synergy_kpi_one_click_campaign_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_dwh_updated_at", "block_contents": "Row updated at"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_id": {"name": "subscriptions__synergy_kpi_one_click_campaign_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_id", "block_contents": "Unique identifier"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_order_id": {"name": "subscriptions__synergy_kpi_one_click_campaign_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_order_id", "block_contents": "ID of the created order, 0 if not exist"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_source_id": {"name": "subscriptions__synergy_kpi_one_click_campaign_source_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_source_id", "block_contents": "SMS message ID"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_source_type": {"name": "subscriptions__synergy_kpi_one_click_campaign_source_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_source_type", "block_contents": "flow(sms)"}, "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_synergy_id": {"name": "subscriptions__synergy_kpi_one_click_campaign_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_one_click_campaign/subscriptions__synergy_kpi_one_click_campaign.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_one_click_campaign_synergy_id", "block_contents": "'Subscription payment failure notification flow' ID"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points": {"name": "subscriptions__synergy_kpi_redeemed_points", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points", "block_contents": "Synergies attribution KPI table to measure the redeemed points on subscription."}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_action_attribute_type": {"name": "subscriptions__synergy_kpi_redeemed_points_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_action_attribute_type", "block_contents": "Points"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_action_attribute_value": {"name": "subscriptions__synergy_kpi_redeemed_points_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_action_attribute_value", "block_contents": "Number of redeemed points"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_action_id": {"name": "subscriptions__synergy_kpi_redeemed_points_action_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_action_id", "block_contents": "Redeemed coupon ID"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_action_type": {"name": "subscriptions__synergy_kpi_redeemed_points_action_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_action_type", "block_contents": "Redemption"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_app_key": {"name": "subscriptions__synergy_kpi_redeemed_points_app_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_app_key", "block_contents": "Merchant's store ID"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_customer_email": {"name": "subscriptions__synergy_kpi_redeemed_points_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_customer_email", "block_contents": "Customer email"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_customer_external_id": {"name": "subscriptions__synergy_kpi_redeemed_points_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_customer_external_id", "block_contents": "Customer ID in Shopify"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_customer_phone_number": {"name": "subscriptions__synergy_kpi_redeemed_points_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_customer_phone_number", "block_contents": "Customer phone number"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_dwh_updated_at": {"name": "subscriptions__synergy_kpi_redeemed_points_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_dwh_updated_at", "block_contents": "Row updated at"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_id": {"name": "subscriptions__synergy_kpi_redeemed_points_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_id", "block_contents": "Unique identifier"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_order_id": {"name": "subscriptions__synergy_kpi_redeemed_points_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_order_id", "block_contents": "ID of the order the redemption was made for"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_source_id": {"name": "subscriptions__synergy_kpi_redeemed_points_source_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_source_id", "block_contents": "Subscription ID"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_source_type": {"name": "subscriptions__synergy_kpi_redeemed_points_source_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_source_type", "block_contents": "subscription"}, "doc.yoda.subscriptions__synergy_kpi_redeemed_points_synergy_id": {"name": "subscriptions__synergy_kpi_redeemed_points_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_redeemed_points/subscriptions__synergy_kpi_redeemed_points.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_redeemed_points_synergy_id", "block_contents": "'Subscription redeemed points flow' ID"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure": {"name": "subscriptions__synergy_kpi_sms_payment_failure", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure", "block_contents": "Synergies attribution KPI table to measure the connection between SMS payment failures clicks to the corresponding successful order creation."}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_action_attribute_type": {"name": "subscriptions__synergy_kpi_sms_payment_failure_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_action_attribute_type", "block_contents": "null"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_action_attribute_value": {"name": "subscriptions__synergy_kpi_sms_payment_failure_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_action_attribute_value", "block_contents": "null"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_action_id": {"name": "subscriptions__synergy_kpi_sms_payment_failure_action_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_action_id", "block_contents": "Whether customer clicked on the SMS link or not"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_action_type": {"name": "subscriptions__synergy_kpi_sms_payment_failure_action_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_action_type", "block_contents": "sms click"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_app_key": {"name": "subscriptions__synergy_kpi_sms_payment_failure_app_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_app_key", "block_contents": "Merchant's store ID"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_customer_email": {"name": "subscriptions__synergy_kpi_sms_payment_failure_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_customer_email", "block_contents": "Customer email"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_customer_external_id": {"name": "subscriptions__synergy_kpi_sms_payment_failure_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_customer_external_id", "block_contents": "Customer ID in Shopify"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_customer_phone_number": {"name": "subscriptions__synergy_kpi_sms_payment_failure_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_customer_phone_number", "block_contents": "Customer phone number"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_dwh_updated_at": {"name": "subscriptions__synergy_kpi_sms_payment_failure_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_dwh_updated_at", "block_contents": "Row updated at"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_id": {"name": "subscriptions__synergy_kpi_sms_payment_failure_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_id", "block_contents": "Unique identifier"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_order_id": {"name": "subscriptions__synergy_kpi_sms_payment_failure_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_order_id", "block_contents": "ID of the created order, 0 if not exist"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_source_id": {"name": "subscriptions__synergy_kpi_sms_payment_failure_source_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_source_id", "block_contents": "SMS message ID"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_source_type": {"name": "subscriptions__synergy_kpi_sms_payment_failure_source_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_source_type", "block_contents": "flow(sms)"}, "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_synergy_id": {"name": "subscriptions__synergy_kpi_sms_payment_failure_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_payment_failure/subscriptions__synergy_kpi_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_payment_failure_synergy_id", "block_contents": "'Subscription payment failure notification flow' ID"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell": {"name": "subscriptions__synergy_kpi_sms_upsell", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell", "block_contents": "Synergies attribution KPI table to measure the connection between upsell SMS messages to created orders and subscriptions"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_action_attribute_type": {"name": "subscriptions__synergy_kpi_sms_upsell_action_attribute_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_action_attribute_type", "block_contents": "NULL"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_action_attribute_value": {"name": "subscriptions__synergy_kpi_sms_upsell_action_attribute_value", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_action_attribute_value", "block_contents": "NULL"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_action_id": {"name": "subscriptions__synergy_kpi_sms_upsell_action_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_action_id", "block_contents": "Subscription ID if present, NULL otherwise"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_action_type": {"name": "subscriptions__synergy_kpi_sms_upsell_action_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_action_type", "block_contents": "subscritption"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_app_key": {"name": "subscriptions__synergy_kpi_sms_upsell_app_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_app_key", "block_contents": "Merchant's store ID"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_customer_email": {"name": "subscriptions__synergy_kpi_sms_upsell_customer_email", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_customer_email", "block_contents": "Customer email"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_customer_external_id": {"name": "subscriptions__synergy_kpi_sms_upsell_customer_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_customer_external_id", "block_contents": "Customer ID in Shopify"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_customer_phone_number": {"name": "subscriptions__synergy_kpi_sms_upsell_customer_phone_number", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_customer_phone_number", "block_contents": "Customer phone number"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_dwh_updated_at": {"name": "subscriptions__synergy_kpi_sms_upsell_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_dwh_updated_at", "block_contents": "Row updated at"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_id": {"name": "subscriptions__synergy_kpi_sms_upsell_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_id", "block_contents": "Unique identifier"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_order_id": {"name": "subscriptions__synergy_kpi_sms_upsell_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_order_id", "block_contents": "ID of the created order, NULL if not exist"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_source_id": {"name": "subscriptions__synergy_kpi_sms_upsell_source_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_source_id", "block_contents": "SMS message ID"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_source_type": {"name": "subscriptions__synergy_kpi_sms_upsell_source_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_source_type", "block_contents": "SMS campaign"}, "doc.yoda.subscriptions__synergy_kpi_sms_upsell_synergy_id": {"name": "subscriptions__synergy_kpi_sms_upsell_synergy_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "original_file_path": "models/subscriptions/marts/subscriptions__synergy_kpi_sms_upsell/subscriptions__synergy_kpi_sms_upsell.md", "unique_id": "doc.yoda.subscriptions__synergy_kpi_sms_upsell_synergy_id", "block_contents": "'One-click SMS Campaign from Subscriptions (increase Subscriptions)' ID"}, "doc.yoda.subscriptions_stg__app_webhooks": {"name": "subscriptions_stg__app_webhooks", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "unique_id": "doc.yoda.subscriptions_stg__app_webhooks", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions_stg__app_webhooks_action": {"name": "subscriptions_stg__app_webhooks_action", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "unique_id": "doc.yoda.subscriptions_stg__app_webhooks_action", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__app_webhooks_created_at": {"name": "subscriptions_stg__app_webhooks_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "unique_id": "doc.yoda.subscriptions_stg__app_webhooks_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__app_webhooks_id": {"name": "subscriptions_stg__app_webhooks_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "unique_id": "doc.yoda.subscriptions_stg__app_webhooks_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__app_webhooks_message_time": {"name": "subscriptions_stg__app_webhooks_message_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "unique_id": "doc.yoda.subscriptions_stg__app_webhooks_message_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__app_webhooks_processing_time": {"name": "subscriptions_stg__app_webhooks_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "unique_id": "doc.yoda.subscriptions_stg__app_webhooks_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__app_webhooks_store_id": {"name": "subscriptions_stg__app_webhooks_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "unique_id": "doc.yoda.subscriptions_stg__app_webhooks_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__app_webhooks_ts_ms": {"name": "subscriptions_stg__app_webhooks_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "unique_id": "doc.yoda.subscriptions_stg__app_webhooks_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__app_webhooks_updated_at": {"name": "subscriptions_stg__app_webhooks_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "unique_id": "doc.yoda.subscriptions_stg__app_webhooks_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__app_webhooks_upsolver_schema_version": {"name": "subscriptions_stg__app_webhooks_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__app_webhooks/subscriptions_stg__app_webhooks.md", "unique_id": "doc.yoda.subscriptions_stg__app_webhooks_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__billing_attempt_response": {"name": "subscriptions_stg__billing_attempt_response", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response", "block_contents": "Shopify's billing attempt responses"}, "doc.yoda.subscriptions_stg__billing_attempt_response_created_at": {"name": "subscriptions_stg__billing_attempt_response_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_created_at", "block_contents": "Created At"}, "doc.yoda.subscriptions_stg__billing_attempt_response_error_message": {"name": "subscriptions_stg__billing_attempt_response_error_message", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_error_message", "block_contents": "Billing failure error message. NULL in case of success"}, "doc.yoda.subscriptions_stg__billing_attempt_response_external_id": {"name": "subscriptions_stg__billing_attempt_response_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_external_id", "block_contents": "Response external ID"}, "doc.yoda.subscriptions_stg__billing_attempt_response_external_order_id": {"name": "subscriptions_stg__billing_attempt_response_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_external_order_id", "block_contents": "External Shopify's order ID. In case of failure the value is 0"}, "doc.yoda.subscriptions_stg__billing_attempt_response_external_subscription_contract_id": {"name": "subscriptions_stg__billing_attempt_response_external_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_external_subscription_contract_id", "block_contents": "External Shopify's subscription contract ID"}, "doc.yoda.subscriptions_stg__billing_attempt_response_id": {"name": "subscriptions_stg__billing_attempt_response_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_id", "block_contents": "ID"}, "doc.yoda.subscriptions_stg__billing_attempt_response_idempotency_key": {"name": "subscriptions_stg__billing_attempt_response_idempotency_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_idempotency_key", "block_contents": "Foreign Key for billing_attempt_request table"}, "doc.yoda.subscriptions_stg__billing_attempt_response_is_logical_deleted": {"name": "subscriptions_stg__billing_attempt_response_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_is_logical_deleted", "block_contents": "Is logical deleted"}, "doc.yoda.subscriptions_stg__billing_attempt_response_processing_time": {"name": "subscriptions_stg__billing_attempt_response_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_processing_time", "block_contents": "Processing time"}, "doc.yoda.subscriptions_stg__billing_attempt_response_ready": {"name": "subscriptions_stg__billing_attempt_response_ready", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_ready", "block_contents": "Ready"}, "doc.yoda.subscriptions_stg__billing_attempt_response_status": {"name": "subscriptions_stg__billing_attempt_response_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_status", "block_contents": "Billing attempt status: 12 - success, 13 - Failure"}, "doc.yoda.subscriptions_stg__billing_attempt_response_store_id": {"name": "subscriptions_stg__billing_attempt_response_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_store_id", "block_contents": "Merchant's store ID"}, "doc.yoda.subscriptions_stg__billing_attempt_response_ts_ms": {"name": "subscriptions_stg__billing_attempt_response_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_ts_ms", "block_contents": "ts ms"}, "doc.yoda.subscriptions_stg__billing_attempt_response_upsolver_schema_version": {"name": "subscriptions_stg__billing_attempt_response_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__billing_attempt_response/subscriptions_stg__billing_attempt_response.md", "unique_id": "doc.yoda.subscriptions_stg__billing_attempt_response_upsolver_schema_version", "block_contents": "Upsolver schema version"}, "doc.yoda.subscriptions_stg__cancelation_intent_event": {"name": "subscriptions_stg__cancelation_intent_event", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_cancelation_reason_option_id": {"name": "subscriptions_stg__cancelation_intent_event_cancelation_reason_option_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_cancelation_reason_option_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_comment": {"name": "subscriptions_stg__cancelation_intent_event_comment", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_comment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_created_at": {"name": "subscriptions_stg__cancelation_intent_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_customer_id": {"name": "subscriptions_stg__cancelation_intent_event_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_event_origin": {"name": "subscriptions_stg__cancelation_intent_event_event_origin", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_event_origin", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_id": {"name": "subscriptions_stg__cancelation_intent_event_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_processing_time": {"name": "subscriptions_stg__cancelation_intent_event_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_product_id": {"name": "subscriptions_stg__cancelation_intent_event_product_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_resolution": {"name": "subscriptions_stg__cancelation_intent_event_resolution", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_resolution", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_subscription_id": {"name": "subscriptions_stg__cancelation_intent_event_subscription_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_subscription_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_ts_ms": {"name": "subscriptions_stg__cancelation_intent_event_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_updated_at": {"name": "subscriptions_stg__cancelation_intent_event_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_upsolver_schema_version": {"name": "subscriptions_stg__cancelation_intent_event_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_intent_event_variant_id": {"name": "subscriptions_stg__cancelation_intent_event_variant_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_intent_event/subscriptions_stg__cancelation_intent_event.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_intent_event_variant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_reason_option": {"name": "subscriptions_stg__cancelation_reason_option", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_reason_option", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions_stg__cancelation_reason_option_created_at": {"name": "subscriptions_stg__cancelation_reason_option_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_reason_option_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_reason_option_id": {"name": "subscriptions_stg__cancelation_reason_option_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_reason_option_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_reason_option_is_active": {"name": "subscriptions_stg__cancelation_reason_option_is_active", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_reason_option_is_active", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_reason_option_processing_time": {"name": "subscriptions_stg__cancelation_reason_option_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_reason_option_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_reason_option_reason_text": {"name": "subscriptions_stg__cancelation_reason_option_reason_text", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_reason_option_reason_text", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_reason_option_store_id": {"name": "subscriptions_stg__cancelation_reason_option_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_reason_option_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_reason_option_ts_ms": {"name": "subscriptions_stg__cancelation_reason_option_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_reason_option_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_reason_option_updated_at": {"name": "subscriptions_stg__cancelation_reason_option_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_reason_option_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__cancelation_reason_option_upsolver_schema_version": {"name": "subscriptions_stg__cancelation_reason_option_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__cancelation_reason_option/subscriptions_stg__cancelation_reason_option.md", "unique_id": "doc.yoda.subscriptions_stg__cancelation_reason_option_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__customer_journey_event": {"name": "subscriptions_stg__customer_journey_event", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event", "block_contents": "subscriptions customer journey events table"}, "doc.yoda.subscriptions_stg__customer_journey_event_created_at": {"name": "subscriptions_stg__customer_journey_event_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_created_at", "block_contents": "Record created at"}, "doc.yoda.subscriptions_stg__customer_journey_event_customer_id": {"name": "subscriptions_stg__customer_journey_event_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_customer_id", "block_contents": "The customer associated with the event"}, "doc.yoda.subscriptions_stg__customer_journey_event_event_initiator": {"name": "subscriptions_stg__customer_journey_event_event_initiator", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_event_initiator", "block_contents": "The intiator of the event"}, "doc.yoda.subscriptions_stg__customer_journey_event_event_origin": {"name": "subscriptions_stg__customer_journey_event_event_origin", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_event_origin", "block_contents": "Where does the event took place (Customer Portal, Shopify, SMS reply, System, Yotpo Subscriptions)"}, "doc.yoda.subscriptions_stg__customer_journey_event_event_time": {"name": "subscriptions_stg__customer_journey_event_event_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_event_time", "block_contents": "The event creation time"}, "doc.yoda.subscriptions_stg__customer_journey_event_event_type": {"name": "subscriptions_stg__customer_journey_event_event_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_event_type", "block_contents": "The event description"}, "doc.yoda.subscriptions_stg__customer_journey_event_id": {"name": "subscriptions_stg__customer_journey_event_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_id", "block_contents": "Table identifier"}, "doc.yoda.subscriptions_stg__customer_journey_event_properties": {"name": "subscriptions_stg__customer_journey_event_properties", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_properties", "block_contents": "Event raw additional data"}, "doc.yoda.subscriptions_stg__customer_journey_event_source_domain": {"name": "subscriptions_stg__customer_journey_event_source_domain", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_source_domain", "block_contents": "Product line"}, "doc.yoda.subscriptions_stg__customer_journey_event_source_id": {"name": "subscriptions_stg__customer_journey_event_source_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_source_id", "block_contents": "The object unique identifier on which the event occured (example: for subscription product line it's the subscription contract external id)"}, "doc.yoda.subscriptions_stg__customer_journey_event_store_id": {"name": "subscriptions_stg__customer_journey_event_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_store_id", "block_contents": "The store identifier"}, "doc.yoda.subscriptions_stg__customer_journey_event_updated_at": {"name": "subscriptions_stg__customer_journey_event_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__customer_journey_event/subscriptions_stg__customer_journey_event.md", "unique_id": "doc.yoda.subscriptions_stg__customer_journey_event_updated_at", "block_contents": "Record updated at"}, "doc.yoda.subscriptions_stg__product": {"name": "subscriptions_stg__product", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "unique_id": "doc.yoda.subscriptions_stg__product", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions_stg__product_created_at": {"name": "subscriptions_stg__product_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "unique_id": "doc.yoda.subscriptions_stg__product_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__product_external_id": {"name": "subscriptions_stg__product_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "unique_id": "doc.yoda.subscriptions_stg__product_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__product_id": {"name": "subscriptions_stg__product_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "unique_id": "doc.yoda.subscriptions_stg__product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__product_processing_time": {"name": "subscriptions_stg__product_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "unique_id": "doc.yoda.subscriptions_stg__product_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__product_ts_ms": {"name": "subscriptions_stg__product_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "unique_id": "doc.yoda.subscriptions_stg__product_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__product_updated_at": {"name": "subscriptions_stg__product_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "unique_id": "doc.yoda.subscriptions_stg__product_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__product_upsolver_schema_version": {"name": "subscriptions_stg__product_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__product/subscriptions_stg__product.md", "unique_id": "doc.yoda.subscriptions_stg__product_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__base_recurrent_event_rule": {"name": "subscriptions__base_recurrent_event_rule", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions__base_recurrent_event_rule", "block_contents": "A rules for recurrent events such billing attempt, sending upcoming billing"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_created_at": {"name": "subscriptions_stg__recurrent_event_rule_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_id": {"name": "subscriptions_stg__recurrent_event_rule_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_interval_count": {"name": "subscriptions_stg__recurrent_event_rule_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_interval_count", "block_contents": "the interval count of the recurrent event"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_is_canceled": {"name": "subscriptions_stg__recurrent_event_rule_is_canceled", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_is_canceled", "block_contents": "whether the rule is canceled or not"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_is_logical_deleted": {"name": "subscriptions_stg__recurrent_event_rule_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_next_due_date": {"name": "subscriptions_stg__recurrent_event_rule_next_due_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_next_due_date", "block_contents": "the next date when the rule will be triggered"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_obj_id": {"name": "subscriptions_stg__recurrent_event_rule_obj_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_obj_id", "block_contents": "the internal subscription contract id"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_obj_type": {"name": "subscriptions_stg__recurrent_event_rule_obj_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_obj_type", "block_contents": "the type of the event"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_plan_interval": {"name": "subscriptions_stg__recurrent_event_rule_plan_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_plan_interval", "block_contents": "the interval type of the recurrent event"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_processing_time": {"name": "subscriptions_stg__recurrent_event_rule_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_ts_ms": {"name": "subscriptions_stg__recurrent_event_rule_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_updated_at": {"name": "subscriptions_stg__recurrent_event_rule_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__recurrent_event_rule_upsolver_schema_version": {"name": "subscriptions_stg__recurrent_event_rule_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__recurrent_event_rule/subscriptions_stg__recurrent_event_rule.md", "unique_id": "doc.yoda.subscriptions_stg__recurrent_event_rule_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan": {"name": "subscriptions_stg__selling_plan", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions_stg__selling_plan_created_at": {"name": "subscriptions_stg__selling_plan_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_id": {"name": "subscriptions_stg__selling_plan_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_name": {"name": "subscriptions_stg__selling_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_pricing_policy_adjustment_type": {"name": "subscriptions_stg__selling_plan_pricing_policy_adjustment_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_pricing_policy_adjustment_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_pricing_policy_value": {"name": "subscriptions_stg__selling_plan_pricing_policy_value", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_pricing_policy_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_processing_time": {"name": "subscriptions_stg__selling_plan_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_recurring_pricing_policy_after_cycle": {"name": "subscriptions_stg__selling_plan_recurring_pricing_policy_after_cycle", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_recurring_pricing_policy_after_cycle", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_selling_plan_group_id": {"name": "subscriptions_stg__selling_plan_selling_plan_group_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_selling_plan_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_ts_ms": {"name": "subscriptions_stg__selling_plan_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_updated_at": {"name": "subscriptions_stg__selling_plan_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_upsolver_schema_version": {"name": "subscriptions_stg__selling_plan_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan/subscriptions_stg__selling_plan.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group": {"name": "subscriptions_stg__selling_plan_group", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions_stg__selling_plan_group_created_at": {"name": "subscriptions_stg__selling_plan_group_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_external_id": {"name": "subscriptions_stg__selling_plan_group_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_external_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_id": {"name": "subscriptions_stg__selling_plan_group_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_processing_time": {"name": "subscriptions_stg__selling_plan_group_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_selling_plan_group_status": {"name": "subscriptions_stg__selling_plan_group_selling_plan_group_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_selling_plan_group_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_store_id": {"name": "subscriptions_stg__selling_plan_group_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_ts_ms": {"name": "subscriptions_stg__selling_plan_group_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_updated_at": {"name": "subscriptions_stg__selling_plan_group_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_upsolver_schema_version": {"name": "subscriptions_stg__selling_plan_group_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group/subscriptions_stg__selling_plan_group.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_product": {"name": "subscriptions_stg__selling_plan_group_product", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_product", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions_stg__selling_plan_group_product_created_at": {"name": "subscriptions_stg__selling_plan_group_product_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_product_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_product_id": {"name": "subscriptions_stg__selling_plan_group_product_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_product_processing_time": {"name": "subscriptions_stg__selling_plan_group_product_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_product_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_product_product_id": {"name": "subscriptions_stg__selling_plan_group_product_product_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_product_product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_product_selling_plan_group_id": {"name": "subscriptions_stg__selling_plan_group_product_selling_plan_group_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_product_selling_plan_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_product_ts_ms": {"name": "subscriptions_stg__selling_plan_group_product_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_product_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__selling_plan_group_product_upsolver_schema_version": {"name": "subscriptions_stg__selling_plan_group_product_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__selling_plan_group_product/subscriptions_stg__selling_plan_group_product.md", "unique_id": "doc.yoda.subscriptions_stg__selling_plan_group_product_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__base_status": {"name": "subscriptions__base_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "unique_id": "doc.yoda.subscriptions__base_status", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions_stg__status_created_at": {"name": "subscriptions_stg__status_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "unique_id": "doc.yoda.subscriptions_stg__status_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__status_id": {"name": "subscriptions_stg__status_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "unique_id": "doc.yoda.subscriptions_stg__status_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__status_is_logical_deleted": {"name": "subscriptions_stg__status_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "unique_id": "doc.yoda.subscriptions_stg__status_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__status_num": {"name": "subscriptions_stg__status_num", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "unique_id": "doc.yoda.subscriptions_stg__status_num", "block_contents": "The status id"}, "doc.yoda.subscriptions_stg__status_processing_time": {"name": "subscriptions_stg__status_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "unique_id": "doc.yoda.subscriptions_stg__status_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__status_text": {"name": "subscriptions_stg__status_text", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "unique_id": "doc.yoda.subscriptions_stg__status_text", "block_contents": "The status description"}, "doc.yoda.subscriptions_stg__status_ts_ms": {"name": "subscriptions_stg__status_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "unique_id": "doc.yoda.subscriptions_stg__status_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__status_updated_at": {"name": "subscriptions_stg__status_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "unique_id": "doc.yoda.subscriptions_stg__status_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__status_upsolver_schema_version": {"name": "subscriptions_stg__status_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__status/subscriptions_stg__status.md", "unique_id": "doc.yoda.subscriptions_stg__status_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__store_customers_exports": {"name": "subscriptions_stg__store_customers_exports", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__store_customers_exports/subscriptions_stg__store_customers_exports.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__store_customers_exports/subscriptions_stg__store_customers_exports.md", "unique_id": "doc.yoda.subscriptions_stg__store_customers_exports", "block_contents": "Data source of subscriptions customers data, taken from csv files produced by the app code\nExported to looker for live analytics scrapping purposes (by Yotpo clients)"}, "doc.yoda.subscriptions__base_subscription_contract": {"name": "subscriptions__base_subscription_contract", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions__base_subscription_contract", "block_contents": "Subscription contract with basic metadata"}, "doc.yoda.subscriptions_stg__subscription_contract_billing_policy_interval": {"name": "subscriptions_stg__subscription_contract_billing_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_billing_policy_interval", "block_contents": "the interval type of the billing cycle"}, "doc.yoda.subscriptions_stg__subscription_contract_billing_policy_interval_count": {"name": "subscriptions_stg__subscription_contract_billing_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_billing_policy_interval_count", "block_contents": "the interval count of the billing cycle"}, "doc.yoda.subscriptions_stg__subscription_contract_created_at": {"name": "subscriptions_stg__subscription_contract_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_delivery_policy_interval": {"name": "subscriptions_stg__subscription_contract_delivery_policy_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_delivery_policy_interval", "block_contents": "the interval type of the delivery cycle"}, "doc.yoda.subscriptions_stg__subscription_contract_delivery_policy_interval_count": {"name": "subscriptions_stg__subscription_contract_delivery_policy_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_delivery_policy_interval_count", "block_contents": "the interval count of the delivery cycle"}, "doc.yoda.subscriptions_stg__subscription_contract_external_customer_id": {"name": "subscriptions_stg__subscription_contract_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_external_customer_id", "block_contents": "the external id of the shopper"}, "doc.yoda.subscriptions_stg__subscription_contract_external_id": {"name": "subscriptions_stg__subscription_contract_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_external_id", "block_contents": "the external id of the subscription contract"}, "doc.yoda.subscriptions_stg__subscription_contract_id": {"name": "subscriptions_stg__subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_is_logical_deleted": {"name": "subscriptions_stg__subscription_contract_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_original_order_external_id": {"name": "subscriptions_stg__subscription_contract_original_order_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_original_order_external_id", "block_contents": "the external order id of the order that the subscription contract was created from"}, "doc.yoda.subscriptions_stg__subscription_contract_processing_time": {"name": "subscriptions_stg__subscription_contract_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_status": {"name": "subscriptions_stg__subscription_contract_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_status", "block_contents": "the status id of the subscription contract"}, "doc.yoda.subscriptions_stg__subscription_contract_status_last_updated_at": {"name": "subscriptions_stg__subscription_contract_status_last_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_status_last_updated_at", "block_contents": "the date of that the last status of the subscription contract was changed"}, "doc.yoda.subscriptions_stg__subscription_contract_store_id": {"name": "subscriptions_stg__subscription_contract_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_store_id", "block_contents": "the owner's store id of the subscription contract"}, "doc.yoda.subscriptions_stg__subscription_contract_ts_ms": {"name": "subscriptions_stg__subscription_contract_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_updated_at": {"name": "subscriptions_stg__subscription_contract_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_upsolver_schema_version": {"name": "subscriptions_stg__subscription_contract_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract/subscriptions_stg__subscription_contract.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions__base_subscription_contract_line": {"name": "subscriptions__base_subscription_contract_line", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions__base_subscription_contract_line", "block_contents": "a product reference within a subscription"}, "doc.yoda.subscriptions_stg__subscription_contract_line_created_at": {"name": "subscriptions_stg__subscription_contract_line_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_line_currency_code": {"name": "subscriptions_stg__subscription_contract_line_currency_code", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_currency_code", "block_contents": "currency code"}, "doc.yoda.subscriptions_stg__subscription_contract_line_discounted_price": {"name": "subscriptions_stg__subscription_contract_line_discounted_price", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_discounted_price", "block_contents": "TODO: Update Column {col_name} Information\nthe discounted price of the product within a subscription"}, "doc.yoda.subscriptions_stg__subscription_contract_line_id": {"name": "subscriptions_stg__subscription_contract_line_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_line_price": {"name": "subscriptions_stg__subscription_contract_line_price", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_price", "block_contents": "the current price of the product within a subscription"}, "doc.yoda.subscriptions_stg__subscription_contract_line_processing_time": {"name": "subscriptions_stg__subscription_contract_line_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_line_product_external_id": {"name": "subscriptions_stg__subscription_contract_line_product_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_product_external_id", "block_contents": "the product external id"}, "doc.yoda.subscriptions_stg__subscription_contract_line_quantity": {"name": "subscriptions_stg__subscription_contract_line_quantity", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_quantity", "block_contents": "the quantity of the product within a subscription"}, "doc.yoda.subscriptions_stg__subscription_contract_line_subscription_contract_id": {"name": "subscriptions_stg__subscription_contract_line_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_subscription_contract_id", "block_contents": "the internal subscription contract id"}, "doc.yoda.subscriptions_stg__subscription_contract_line_ts_ms": {"name": "subscriptions_stg__subscription_contract_line_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_line_updated_at": {"name": "subscriptions_stg__subscription_contract_line_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_line_upsolver_schema_version": {"name": "subscriptions_stg__subscription_contract_line_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_line_variant_external_id": {"name": "subscriptions_stg__subscription_contract_line_variant_external_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_line/subscriptions_stg__subscription_contract_line.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_line_variant_external_id", "block_contents": "the variant external id"}, "doc.yoda.subscriptions__base_subscription_contract_order": {"name": "subscriptions__base_subscription_contract_order", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions__base_subscription_contract_order", "block_contents": "orders of subscription contracts"}, "doc.yoda.subscriptions_stg__subscription_contract_order_created_at": {"name": "subscriptions_stg__subscription_contract_order_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_order_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_order_external_order_id": {"name": "subscriptions_stg__subscription_contract_order_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_order_external_order_id", "block_contents": "the external order id"}, "doc.yoda.subscriptions_stg__subscription_contract_order_external_subscription_contract_id": {"name": "subscriptions_stg__subscription_contract_order_external_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_order_external_subscription_contract_id", "block_contents": "the external subscription contract id"}, "doc.yoda.subscriptions_stg__subscription_contract_order_id": {"name": "subscriptions_stg__subscription_contract_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_order_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_order_is_logical_deleted": {"name": "subscriptions_stg__subscription_contract_order_is_logical_deleted", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_order_is_logical_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_order_processing_time": {"name": "subscriptions_stg__subscription_contract_order_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_order_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_order_store_id": {"name": "subscriptions_stg__subscription_contract_order_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_order_store_id", "block_contents": "the order's store id"}, "doc.yoda.subscriptions_stg__subscription_contract_order_ts_ms": {"name": "subscriptions_stg__subscription_contract_order_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_order_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_order_updated_at": {"name": "subscriptions_stg__subscription_contract_order_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_order_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_contract_order_upsolver_schema_version": {"name": "subscriptions_stg__subscription_contract_order_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_contract_order/subscriptions_stg__subscription_contract_order.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_contract_order_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request": {"name": "subscriptions_stg__subscription_creation_request", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions_stg__subscription_creation_request_billing_interval": {"name": "subscriptions_stg__subscription_creation_request_billing_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_billing_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_billing_interval_count": {"name": "subscriptions_stg__subscription_creation_request_billing_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_billing_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_contract_id": {"name": "subscriptions_stg__subscription_creation_request_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_created_at": {"name": "subscriptions_stg__subscription_creation_request_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_currency_code": {"name": "subscriptions_stg__subscription_creation_request_currency_code", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_currency_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_delivery_interval": {"name": "subscriptions_stg__subscription_creation_request_delivery_interval", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_delivery_interval", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_delivery_interval_count": {"name": "subscriptions_stg__subscription_creation_request_delivery_interval_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_delivery_interval_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_delivery_price": {"name": "subscriptions_stg__subscription_creation_request_delivery_price", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_delivery_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_id": {"name": "subscriptions_stg__subscription_creation_request_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_idempotency_key": {"name": "subscriptions_stg__subscription_creation_request_idempotency_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_idempotency_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_line_number": {"name": "subscriptions_stg__subscription_creation_request_line_number", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_line_number", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_next_billing_date": {"name": "subscriptions_stg__subscription_creation_request_next_billing_date", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_next_billing_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_payment_method_id": {"name": "subscriptions_stg__subscription_creation_request_payment_method_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_payment_method_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_payment_provider_customer_id": {"name": "subscriptions_stg__subscription_creation_request_payment_provider_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_payment_provider_customer_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_payment_provider_payment_method_id": {"name": "subscriptions_stg__subscription_creation_request_payment_provider_payment_method_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_payment_provider_payment_method_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_payment_provider_type": {"name": "subscriptions_stg__subscription_creation_request_payment_provider_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_payment_provider_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_processing_time": {"name": "subscriptions_stg__subscription_creation_request_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_request_status": {"name": "subscriptions_stg__subscription_creation_request_request_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_request_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_selling_plan_name": {"name": "subscriptions_stg__subscription_creation_request_selling_plan_name", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_selling_plan_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_shipping_code": {"name": "subscriptions_stg__subscription_creation_request_shipping_code", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_shipping_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_store_id": {"name": "subscriptions_stg__subscription_creation_request_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_subscription_status": {"name": "subscriptions_stg__subscription_creation_request_subscription_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_subscription_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_ts_ms": {"name": "subscriptions_stg__subscription_creation_request_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_updated_at": {"name": "subscriptions_stg__subscription_creation_request_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_uploaded_file_id": {"name": "subscriptions_stg__subscription_creation_request_uploaded_file_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_uploaded_file_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_creation_request_upsolver_schema_version": {"name": "subscriptions_stg__subscription_creation_request_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_creation_request/subscriptions_stg__subscription_creation_request.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_creation_request_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action": {"name": "subscriptions_stg__subscription_line_action", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action", "block_contents": "TODO: Update Table Description"}, "doc.yoda.subscriptions_stg__subscription_line_action_action_status": {"name": "subscriptions_stg__subscription_line_action_action_status", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_action_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_action_type": {"name": "subscriptions_stg__subscription_line_action_action_type", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_action_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_created_at": {"name": "subscriptions_stg__subscription_line_action_created_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_external_line_id": {"name": "subscriptions_stg__subscription_line_action_external_line_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_external_line_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_external_subscription_contract_id": {"name": "subscriptions_stg__subscription_line_action_external_subscription_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_external_subscription_contract_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_external_variant_id": {"name": "subscriptions_stg__subscription_line_action_external_variant_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_external_variant_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_id": {"name": "subscriptions_stg__subscription_line_action_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_processing_time": {"name": "subscriptions_stg__subscription_line_action_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_quantity": {"name": "subscriptions_stg__subscription_line_action_quantity", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_quantity", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_store_id": {"name": "subscriptions_stg__subscription_line_action_store_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_store_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_total_price": {"name": "subscriptions_stg__subscription_line_action_total_price", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_total_price", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_ts_ms": {"name": "subscriptions_stg__subscription_line_action_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_updated_at": {"name": "subscriptions_stg__subscription_line_action_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__subscription_line_action_upsolver_schema_version": {"name": "subscriptions_stg__subscription_line_action_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "original_file_path": "models/subscriptions/staging/base/subscriptions_stg__subscription_line_action/subscriptions_stg__subscription_line_action.md", "unique_id": "doc.yoda.subscriptions_stg__subscription_line_action_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.subscriptions_stg__synergy_sms_payment_failure": {"name": "subscriptions_stg__synergy_sms_payment_failure", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_sms_payment_failure", "block_contents": "SMS query for getting relevant information for the 'Subscription payment failure notification flow' attributions KPI"}, "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_app_key": {"name": "subscriptions_stg__synergy_sms_payment_failure_app_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_app_key", "block_contents": "Merchant's store ID"}, "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_clicks_count": {"name": "subscriptions_stg__synergy_sms_payment_failure_clicks_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_clicks_count", "block_contents": "How many times the customer clicked on the link in the SMS"}, "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_contract_id": {"name": "subscriptions_stg__synergy_sms_payment_failure_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_contract_id", "block_contents": "Subscription' contract ID as extracted from the SMS link"}, "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_customer_id": {"name": "subscriptions_stg__synergy_sms_payment_failure_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_customer_id", "block_contents": "Customer ID as extracted from the SMS link"}, "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_email": {"name": "subscriptions_stg__synergy_sms_payment_failure_email", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_email", "block_contents": "Customer email as extracted from the SMS link"}, "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_number": {"name": "subscriptions_stg__synergy_sms_payment_failure_number", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_number", "block_contents": "Customer's phone number"}, "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_processing_time": {"name": "subscriptions_stg__synergy_sms_payment_failure_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_processing_time", "block_contents": "Time of the SMS sent"}, "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_sms_id": {"name": "subscriptions_stg__synergy_sms_payment_failure_sms_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_sms_payment_failure/subscriptions_stg__synergy_sms_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_sms_payment_failure_sms_id", "block_contents": "ID of the sent SMS"}, "doc.yoda.subscriptions_stg__synergy_subs_payment_failure": {"name": "subscriptions_stg__synergy_subs_payment_failure", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_subs_payment_failure", "block_contents": "Subscription order for each SMS message of type 'payment failure'"}, "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_app_key": {"name": "subscriptions_stg__synergy_subs_payment_failure_app_key", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_app_key", "block_contents": "Merchant's store ID"}, "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_clicks_count": {"name": "subscriptions_stg__synergy_subs_payment_failure_clicks_count", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_clicks_count", "block_contents": "How many times the customer clicked on the link in the SMS"}, "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_contract_id": {"name": "subscriptions_stg__synergy_subs_payment_failure_contract_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_contract_id", "block_contents": "Subscription' contract ID"}, "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_customer_id": {"name": "subscriptions_stg__synergy_subs_payment_failure_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_customer_id", "block_contents": "Customer ID"}, "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_email": {"name": "subscriptions_stg__synergy_subs_payment_failure_email", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_email", "block_contents": "Customer Email"}, "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_number": {"name": "subscriptions_stg__synergy_subs_payment_failure_number", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_number", "block_contents": "Customer phone number"}, "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_order_id": {"name": "subscriptions_stg__synergy_subs_payment_failure_order_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_order_id", "block_contents": "Order ID which occured at a specific time range after the SMS message was sent."}, "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_processing_time": {"name": "subscriptions_stg__synergy_subs_payment_failure_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_processing_time", "block_contents": "Time of the SMS sent"}, "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_sms_id": {"name": "subscriptions_stg__synergy_subs_payment_failure_sms_id", "resource_type": "doc", "package_name": "yoda", "path": "subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "original_file_path": "models/subscriptions/staging/marts_compatible/subscriptions_stg__synergy_subs_payment_failure/subscriptions_stg__synergy_subs_payment_failure.md", "unique_id": "doc.yoda.subscriptions_stg__synergy_subs_payment_failure_sms_id", "block_contents": "ID of the sent SMS"}, "doc.yoda.support__review_request": {"name": "support__review_request", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request", "block_contents": "view of review requests for support looker backoffice report | PK and granularity: channel_name | channel_message_id"}, "doc.yoda.support__review_request_app_key": {"name": "support__review_request_app_key", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_app_key", "block_contents": "yotpo store unique identifier"}, "doc.yoda.support__review_request_caller_id": {"name": "support__review_request_caller_id", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_caller_id", "block_contents": "caller id"}, "doc.yoda.support__review_request_caller_type": {"name": "support__review_request_caller_type", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_caller_type", "block_contents": "caller type"}, "doc.yoda.support__review_request_channel_id": {"name": "support__review_request_channel_id", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_channel_id", "block_contents": "channel id: caller id of the channel - PK 2/2"}, "doc.yoda.support__review_request_channel_type": {"name": "support__review_request_channel_type", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_channel_type", "block_contents": "channel type: Email/SMS/Flow"}, "doc.yoda.support__review_request_delivered_at": {"name": "support__review_request_delivered_at", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_delivered_at", "block_contents": "message delivered timestamp"}, "doc.yoda.support__review_request_delivered_date": {"name": "support__review_request_delivered_date", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_delivered_date", "block_contents": "message delivered date"}, "doc.yoda.support__review_request_dwh_updated_at": {"name": "support__review_request_dwh_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_dwh_updated_at", "block_contents": "record's writing timestamp"}, "doc.yoda.support__review_request_email_number_per_order": {"name": "support__review_request_email_number_per_order", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_email_number_per_order", "block_contents": "email rank per order"}, "doc.yoda.support__review_request_first_review_created_at": {"name": "support__review_request_first_review_created_at", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_first_review_created_at", "block_contents": "first review creation timestamp"}, "doc.yoda.support__review_request_form_type": {"name": "support__review_request_form_type", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_form_type", "block_contents": "form type: in_mail_form/formless/media_queries"}, "doc.yoda.support__review_request_is_reviewed": {"name": "support__review_request_is_reviewed", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_is_reviewed", "block_contents": "reviewed indicator"}, "doc.yoda.support__review_request_num_of_days_from_order_to_review_request": {"name": "support__review_request_num_of_days_from_order_to_review_request", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_num_of_days_from_order_to_review_request", "block_contents": "number of days from order to review request"}, "doc.yoda.support__review_request_num_of_days_from_review_request_to_review": {"name": "support__review_request_num_of_days_from_review_request_to_review", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_num_of_days_from_review_request_to_review", "block_contents": "number of days from review request to review"}, "doc.yoda.support__review_request_number_of_images": {"name": "support__review_request_number_of_images", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_number_of_images", "block_contents": "number of images"}, "doc.yoda.support__review_request_number_of_reviews": {"name": "support__review_request_number_of_reviews", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_number_of_reviews", "block_contents": "number of reviews"}, "doc.yoda.support__review_request_number_of_reviews_with_images": {"name": "support__review_request_number_of_reviews_with_images", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_number_of_reviews_with_images", "block_contents": "number of reviews with image"}, "doc.yoda.support__review_request_number_of_reviews_with_videos": {"name": "support__review_request_number_of_reviews_with_videos", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_number_of_reviews_with_videos", "block_contents": "number of reviews with video"}, "doc.yoda.support__review_request_number_of_videos": {"name": "support__review_request_number_of_videos", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_number_of_videos", "block_contents": "number of videos"}, "doc.yoda.support__review_request_organization_id": {"name": "support__review_request_organization_id", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_organization_id", "block_contents": "organization identifier"}, "doc.yoda.support__review_request_review_request_number_per_order": {"name": "support__review_request_review_request_number_per_order", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_review_request_number_per_order", "block_contents": "message rank per order"}, "doc.yoda.support__review_request_review_request_order_created_at": {"name": "support__review_request_review_request_order_created_at", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_review_request_order_created_at", "block_contents": "order creation timestamp"}, "doc.yoda.support__review_request_review_request_order_id": {"name": "support__review_request_review_request_order_id", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_review_request_order_id", "block_contents": "order id"}, "doc.yoda.support__review_request_review_request_order_number_of_products": {"name": "support__review_request_review_request_order_number_of_products", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_review_request_order_number_of_products", "block_contents": "order number of products"}, "doc.yoda.support__review_request_review_request_type_id": {"name": "support__review_request_review_request_type_id", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_review_request_type_id", "block_contents": "message type id"}, "doc.yoda.support__review_request_review_source_type_id": {"name": "support__review_request_review_source_type_id", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_review_source_type_id", "block_contents": "review source type id"}, "doc.yoda.support__review_request_review_source_type_name": {"name": "support__review_request_review_source_type_name", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_review_source_type_name", "block_contents": "message type"}, "doc.yoda.support__review_request_sms_number_per_order": {"name": "support__review_request_sms_number_per_order", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_sms_number_per_order", "block_contents": "sms rank per order"}, "doc.yoda.support__review_request_source": {"name": "support__review_request_source", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_source", "block_contents": "source: review_request_email/review_request_sms/email_authentications - PK 1/2"}, "doc.yoda.support__review_request_store_id": {"name": "support__review_request_store_id", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_store_id", "block_contents": "yotpo account id"}, "doc.yoda.support__review_request_token": {"name": "support__review_request_token", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_token", "block_contents": "token"}, "doc.yoda.support__review_request_user_email": {"name": "support__review_request_user_email", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_user_email", "block_contents": "email address"}, "doc.yoda.support__review_request_user_name": {"name": "support__review_request_user_name", "resource_type": "doc", "package_name": "yoda", "path": "support/marts/support__review_request/support__review_request.md", "original_file_path": "models/support/marts/support__review_request/support__review_request.md", "unique_id": "doc.yoda.support__review_request_user_name", "block_contents": "user name"}, "doc.yoda.ugc__export_reviews": {"name": "ugc__export_reviews", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews", "block_contents": "This table is used in reviews app moderation view for exporting data to CSV."}, "doc.yoda.ugc__export_reviews_app_key": {"name": "ugc__export_reviews_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_comment_content": {"name": "ugc__export_reviews_comment_content", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_comment_content", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_comment_date": {"name": "ugc__export_reviews_comment_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_comment_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_comment_public": {"name": "ugc__export_reviews_comment_public", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_comment_public", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_country_code": {"name": "ugc__export_reviews_country_code", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_country_code", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_device_type": {"name": "ugc__export_reviews_device_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_device_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_incentivized_flag": {"name": "ugc__export_reviews_incentivized_flag", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_incentivized_flag", "block_contents": "Boolean flag indicating whether a review was incentivized"}, "doc.yoda.ugc__export_reviews_order_date": {"name": "ugc__export_reviews_order_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_order_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_order_id": {"name": "ugc__export_reviews_order_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_order_id", "block_contents": "External id of the order from orders table."}, "doc.yoda.ugc__export_reviews_product_brand": {"name": "ugc__export_reviews_product_brand", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_brand", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_category": {"name": "ugc__export_reviews_product_category", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_category", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_created_at": {"name": "ugc__export_reviews_product_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_description": {"name": "ugc__export_reviews_product_description", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_group_id": {"name": "ugc__export_reviews_product_group_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_group_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_handle": {"name": "ugc__export_reviews_product_handle", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_handle", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_id": {"name": "ugc__export_reviews_product_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_image_url": {"name": "ugc__export_reviews_product_image_url", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_image_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_internal_id": {"name": "ugc__export_reviews_product_internal_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_internal_id", "block_contents": "Yotpo internal id of product; not exposed in report"}, "doc.yoda.ugc__export_reviews_product_isbn": {"name": "ugc__export_reviews_product_isbn", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_isbn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_mpn": {"name": "ugc__export_reviews_product_mpn", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_mpn", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_sku": {"name": "ugc__export_reviews_product_sku", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_sku", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_title": {"name": "ugc__export_reviews_product_title", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_upc": {"name": "ugc__export_reviews_product_upc", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_upc", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_product_url": {"name": "ugc__export_reviews_product_url", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_product_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_profanity_flag": {"name": "ugc__export_reviews_profanity_flag", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_profanity_flag", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_published_image_urls": {"name": "ugc__export_reviews_published_image_urls", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_published_image_urls", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_published_video_urls": {"name": "ugc__export_reviews_published_video_urls", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_published_video_urls", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_pushed_to_social": {"name": "ugc__export_reviews_pushed_to_social", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_pushed_to_social", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_review_content": {"name": "ugc__export_reviews_review_content", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_review_content", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_review_creation_date": {"name": "ugc__export_reviews_review_creation_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_review_creation_date", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_review_id": {"name": "ugc__export_reviews_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_review_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_review_score": {"name": "ugc__export_reviews_review_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_review_score", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_review_source": {"name": "ugc__export_reviews_review_source", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_review_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_review_tag_ids": {"name": "ugc__export_reviews_review_tag_ids", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_review_tag_ids", "block_contents": "Array with tag ids of tags of given review"}, "doc.yoda.ugc__export_reviews_review_tags": {"name": "ugc__export_reviews_review_tags", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_review_tags", "block_contents": "Concatenated list of tags of a review joined with ';'"}, "doc.yoda.ugc__export_reviews_review_title": {"name": "ugc__export_reviews_review_title", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_review_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_review_type": {"name": "ugc__export_reviews_review_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_review_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_reviewer_display_name": {"name": "ugc__export_reviews_reviewer_display_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_reviewer_display_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_reviewer_email": {"name": "ugc__export_reviews_reviewer_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_reviewer_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_sentiment_score": {"name": "ugc__export_reviews_sentiment_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_sentiment_score", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_status": {"name": "ugc__export_reviews_status", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_status_details": {"name": "ugc__export_reviews_status_details", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_status_details", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_unpublished_image_urls": {"name": "ugc__export_reviews_unpublished_image_urls", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_unpublished_image_urls", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_unpublished_video_urls": {"name": "ugc__export_reviews_unpublished_video_urls", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_unpublished_video_urls", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_user_type": {"name": "ugc__export_reviews_user_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_user_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_votes_down": {"name": "ugc__export_reviews_votes_down", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_votes_down", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__export_reviews_votes_up": {"name": "ugc__export_reviews_votes_up", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "original_file_path": "models/ugc/marts/ugc__export_reviews/ugc__export_reviews.md", "unique_id": "doc.yoda.ugc__export_reviews_votes_up", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc__partial_reviewed_orders": {"name": "ugc__partial_reviewed_orders", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders", "block_contents": "Table with all orders of users that have reviewed in particular shops.\nAn order from shop `S` by customer `C` is added to the table if the customer `C` has any review in the shop `S`."}, "doc.yoda.ugc__partial_reviewed_orders_account_currency_iso": {"name": "ugc__partial_reviewed_orders_account_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_account_currency_iso", "block_contents": "Account currency"}, "doc.yoda.ugc__partial_reviewed_orders_app_key": {"name": "ugc__partial_reviewed_orders_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_app_key", "block_contents": "App_key of the store"}, "doc.yoda.ugc__partial_reviewed_orders_created_at": {"name": "ugc__partial_reviewed_orders_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_created_at", "block_contents": "Order creation date in Yotpo's DB"}, "doc.yoda.ugc__partial_reviewed_orders_email": {"name": "ugc__partial_reviewed_orders_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_email", "block_contents": "Email of the customer"}, "doc.yoda.ugc__partial_reviewed_orders_external_order_id": {"name": "ugc__partial_reviewed_orders_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_external_order_id", "block_contents": "External order id"}, "doc.yoda.ugc__partial_reviewed_orders_id": {"name": "ugc__partial_reviewed_orders_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_id", "block_contents": "Id of the order"}, "doc.yoda.ugc__partial_reviewed_orders_order_currency_iso": {"name": "ugc__partial_reviewed_orders_order_currency_iso", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_order_currency_iso", "block_contents": "The order local currency"}, "doc.yoda.ugc__partial_reviewed_orders_order_date": {"name": "ugc__partial_reviewed_orders_order_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_order_date", "block_contents": "Order creation date"}, "doc.yoda.ugc__partial_reviewed_orders_order_sum_account_currency": {"name": "ugc__partial_reviewed_orders_order_sum_account_currency", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_order_sum_account_currency", "block_contents": "Order value in account currency"}, "doc.yoda.ugc__partial_reviewed_orders_order_sum_order_currency": {"name": "ugc__partial_reviewed_orders_order_sum_order_currency", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_order_sum_order_currency", "block_contents": "Order value in local currency"}, "doc.yoda.ugc__partial_reviewed_orders_review_created_at": {"name": "ugc__partial_reviewed_orders_review_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_review_created_at", "block_contents": "Date of the latest review by the ordering user"}, "doc.yoda.ugc__partial_reviewed_orders_total_price": {"name": "ugc__partial_reviewed_orders_total_price", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "original_file_path": "models/ugc/marts/ugc__partial_reviewed_orders/ugc__partial_reviewed_orders.md", "unique_id": "doc.yoda.ugc__partial_reviewed_orders_total_price", "block_contents": "Order total price"}, "doc.yoda.ugc__reporting_crf": {"name": "ugc__reporting_crf", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "original_file_path": "models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "unique_id": "doc.yoda.ugc__reporting_crf", "block_contents": "Table containing custom review form questions and answers for each reporting relevant review containing them."}, "doc.yoda.ugc__reporting_crf_app_key": {"name": "ugc__reporting_crf_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "original_file_path": "models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "unique_id": "doc.yoda.ugc__reporting_crf_app_key", "block_contents": "App (store) id"}, "doc.yoda.ugc__reporting_crf_field_name": {"name": "ugc__reporting_crf_field_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "original_file_path": "models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "unique_id": "doc.yoda.ugc__reporting_crf_field_name", "block_contents": "Custom field name; custom question in the review form"}, "doc.yoda.ugc__reporting_crf_field_value": {"name": "ugc__reporting_crf_field_value", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "original_file_path": "models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "unique_id": "doc.yoda.ugc__reporting_crf_field_value", "block_contents": "Custom field value; custom question answer in the review form"}, "doc.yoda.ugc__reporting_crf_review_date": {"name": "ugc__reporting_crf_review_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "original_file_path": "models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "unique_id": "doc.yoda.ugc__reporting_crf_review_date", "block_contents": "Review creation date"}, "doc.yoda.ugc__reporting_crf_review_id": {"name": "ugc__reporting_crf_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "original_file_path": "models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "unique_id": "doc.yoda.ugc__reporting_crf_review_id", "block_contents": "Review identifier"}, "doc.yoda.ugc__reporting_crf_review_score": {"name": "ugc__reporting_crf_review_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "original_file_path": "models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "unique_id": "doc.yoda.ugc__reporting_crf_review_score", "block_contents": "Review socre"}, "doc.yoda.ugc__reporting_crf_sentiment_score": {"name": "ugc__reporting_crf_sentiment_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "original_file_path": "models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "unique_id": "doc.yoda.ugc__reporting_crf_sentiment_score", "block_contents": "Review sentiment socre"}, "doc.yoda.ugc__reporting_crf_updated_at": {"name": "ugc__reporting_crf_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "original_file_path": "models/ugc/marts/ugc__reporting_crf/ugc__reporting_crf.md", "unique_id": "doc.yoda.ugc__reporting_crf_updated_at", "block_contents": "Last updated date"}, "doc.yoda.ugc__reporting_reviews": {"name": "ugc__reporting_reviews", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews", "block_contents": "Table dedicated for reviews reports. Feature for premium customers available under analytics menu in review app; refreshed daily."}, "doc.yoda.ugc__reporting_reviews_app_key": {"name": "ugc__reporting_reviews_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_app_key", "block_contents": "App (store) id"}, "doc.yoda.ugc__reporting_reviews_comment_content": {"name": "ugc__reporting_reviews_comment_content", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_comment_content", "block_contents": "Comment content"}, "doc.yoda.ugc__reporting_reviews_comment_date": {"name": "ugc__reporting_reviews_comment_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_comment_date", "block_contents": "Comment date"}, "doc.yoda.ugc__reporting_reviews_comment_public": {"name": "ugc__reporting_reviews_comment_public", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_comment_public", "block_contents": "Comment public - boolean flag; 1 (true) if comment is publicly available"}, "doc.yoda.ugc__reporting_reviews_date": {"name": "ugc__reporting_reviews_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_date", "block_contents": "Review date"}, "doc.yoda.ugc__reporting_reviews_id": {"name": "ugc__reporting_reviews_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_id", "block_contents": "Review id"}, "doc.yoda.ugc__reporting_reviews_incentivized_flag": {"name": "ugc__reporting_reviews_incentivized_flag", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_incentivized_flag", "block_contents": "Boolean flag indicating whether a review was incentivized"}, "doc.yoda.ugc__reporting_reviews_product_created_at": {"name": "ugc__reporting_reviews_product_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_product_created_at", "block_contents": "Creation time of the product containing the review"}, "doc.yoda.ugc__reporting_reviews_product_description": {"name": "ugc__reporting_reviews_product_description", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_product_description", "block_contents": "Description of the product containing the review"}, "doc.yoda.ugc__reporting_reviews_product_group_id": {"name": "ugc__reporting_reviews_product_group_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_product_group_id", "block_contents": "Id of the product group of product containing the review; technical column used for joins"}, "doc.yoda.ugc__reporting_reviews_product_group_name": {"name": "ugc__reporting_reviews_product_group_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_product_group_name", "block_contents": "Product group name"}, "doc.yoda.ugc__reporting_reviews_product_handle": {"name": "ugc__reporting_reviews_product_handle", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_product_handle", "block_contents": "Product handle - autogenerated shopify id used to generate product url"}, "doc.yoda.ugc__reporting_reviews_product_id": {"name": "ugc__reporting_reviews_product_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_product_id", "block_contents": "Id of the product containing the review"}, "doc.yoda.ugc__reporting_reviews_product_internal_id": {"name": "ugc__reporting_reviews_product_internal_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_product_internal_id", "block_contents": "Yotpo internal id of product; not exposed in report; used for joins"}, "doc.yoda.ugc__reporting_reviews_product_title": {"name": "ugc__reporting_reviews_product_title", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_product_title", "block_contents": "Title of the product containing the review"}, "doc.yoda.ugc__reporting_reviews_profanity_flag": {"name": "ugc__reporting_reviews_profanity_flag", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_profanity_flag", "block_contents": "Boolean flag whether a dirty word was written in the review"}, "doc.yoda.ugc__reporting_reviews_published_image_urls": {"name": "ugc__reporting_reviews_published_image_urls", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_published_image_urls", "block_contents": "Colon seperated published image urls"}, "doc.yoda.ugc__reporting_reviews_published_video_urls": {"name": "ugc__reporting_reviews_published_video_urls", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_published_video_urls", "block_contents": "Colon seperated published videos urls"}, "doc.yoda.ugc__reporting_reviews_pushed_to_social": {"name": "ugc__reporting_reviews_pushed_to_social", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_pushed_to_social", "block_contents": "Whether the review pushed to social media (FB / Twitter)"}, "doc.yoda.ugc__reporting_reviews_review_content": {"name": "ugc__reporting_reviews_review_content", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_review_content", "block_contents": "Review content"}, "doc.yoda.ugc__reporting_reviews_review_creation_date": {"name": "ugc__reporting_reviews_review_creation_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_review_creation_date", "block_contents": "Review creation date"}, "doc.yoda.ugc__reporting_reviews_review_date": {"name": "ugc__reporting_reviews_review_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_review_date", "block_contents": "Review creation date"}, "doc.yoda.ugc__reporting_reviews_review_form_id": {"name": "ugc__reporting_reviews_review_form_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_review_form_id", "block_contents": "Review Form Id - review of the form used for CRF (custom review form)"}, "doc.yoda.ugc__reporting_reviews_review_id": {"name": "ugc__reporting_reviews_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_review_id", "block_contents": "Review id"}, "doc.yoda.ugc__reporting_reviews_review_score": {"name": "ugc__reporting_reviews_review_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_review_score", "block_contents": "Review score"}, "doc.yoda.ugc__reporting_reviews_review_source": {"name": "ugc__reporting_reviews_review_source", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_review_source", "block_contents": "Review source - values: import; vendor_yotpo_widget; automatic_site_review_request_sms; widget_v2_dedicated_page; unknown; mail_after_invoice;mail_after_service; vendor_landing_page; site_review_after_product; reminder; automatic_product_review_request_sms; widget_v2; syndication;widget_v2_facebook_tab;targeted_product_review_request;testimonials_request;multiple_review_request;site_reminder;site_review_after_product_sms;multiple_review_request_sms;vendor;resend_reminder;anonymous_testimonials_request"}, "doc.yoda.ugc__reporting_reviews_review_title": {"name": "ugc__reporting_reviews_review_title", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_review_title", "block_contents": "Review title"}, "doc.yoda.ugc__reporting_reviews_review_type": {"name": "ugc__reporting_reviews_review_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_review_type", "block_contents": "Review type (product/site)"}, "doc.yoda.ugc__reporting_reviews_reviewer_display_name": {"name": "ugc__reporting_reviews_reviewer_display_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_reviewer_display_name", "block_contents": "Reviewer display name"}, "doc.yoda.ugc__reporting_reviews_reviewer_email": {"name": "ugc__reporting_reviews_reviewer_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_reviewer_email", "block_contents": "Reviewer email"}, "doc.yoda.ugc__reporting_reviews_sentiment_score": {"name": "ugc__reporting_reviews_sentiment_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_sentiment_score", "block_contents": "Review sentiment score"}, "doc.yoda.ugc__reporting_reviews_status": {"name": "ugc__reporting_reviews_status", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_status", "block_contents": "Review status (published/unpublished)"}, "doc.yoda.ugc__reporting_reviews_status_details": {"name": "ugc__reporting_reviews_status_details", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_status_details", "block_contents": "Detailed reasony why review was not published"}, "doc.yoda.ugc__reporting_reviews_unpublished_image_urls": {"name": "ugc__reporting_reviews_unpublished_image_urls", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_unpublished_image_urls", "block_contents": "Colon seperated unpublished image urls"}, "doc.yoda.ugc__reporting_reviews_unpublished_video_urls": {"name": "ugc__reporting_reviews_unpublished_video_urls", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_unpublished_video_urls", "block_contents": "Colon seperated unpublished videos urls"}, "doc.yoda.ugc__reporting_reviews_user_type": {"name": "ugc__reporting_reviews_user_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_user_type", "block_contents": "User type (User/AnonymousUser)"}, "doc.yoda.ugc__reporting_reviews_votes_down": {"name": "ugc__reporting_reviews_votes_down", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_votes_down", "block_contents": "Reviews sum of votes down"}, "doc.yoda.ugc__reporting_reviews_votes_up": {"name": "ugc__reporting_reviews_votes_up", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "original_file_path": "models/ugc/marts/ugc__reporting_reviews/ugc__reporting_reviews.md", "unique_id": "doc.yoda.ugc__reporting_reviews_votes_up", "block_contents": "Reviews sum of votes up"}, "doc.yoda.ugc__shopper_experience_order_aggregation": {"name": "ugc__shopper_experience_order_aggregation", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation", "block_contents": "Pixel aggregated data for orders per currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_app_key": {"name": "ugc__shopper_experience_order_aggregation_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_app_key", "block_contents": "App key"}, "doc.yoda.ugc__shopper_experience_order_aggregation_currency": {"name": "ugc__shopper_experience_order_aggregation_currency", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_currency", "block_contents": "Currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_date": {"name": "ugc__shopper_experience_order_aggregation_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_date", "block_contents": "Date"}, "doc.yoda.ugc__shopper_experience_order_aggregation_interacted_users": {"name": "ugc__shopper_experience_order_aggregation_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_interacted_users", "block_contents": "Total interacted users per currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_interacted_users_with_orders": {"name": "ugc__shopper_experience_order_aggregation_interacted_users_with_orders", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_interacted_users_with_orders", "block_contents": "Amount of interacted users that placed an order per currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_interacted_users_without_orders": {"name": "ugc__shopper_experience_order_aggregation_interacted_users_without_orders", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_interacted_users_without_orders", "block_contents": "Amount of interacted users that did not place an order per currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_non_interacted_users": {"name": "ugc__shopper_experience_order_aggregation_non_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_non_interacted_users", "block_contents": "Total non interacted users per currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_non_interacted_users_with_orders": {"name": "ugc__shopper_experience_order_aggregation_non_interacted_users_with_orders", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_non_interacted_users_with_orders", "block_contents": "Amount of non interacted users that placed an order per currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_non_interacted_users_without_orders": {"name": "ugc__shopper_experience_order_aggregation_non_interacted_users_without_orders", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_non_interacted_users_without_orders", "block_contents": "Amount of non interacted users that did not place an order per currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_orders_count_of_interacted_users": {"name": "ugc__shopper_experience_order_aggregation_orders_count_of_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_orders_count_of_interacted_users", "block_contents": "Total orders of interacted users per currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_orders_count_of_non_interacted_users": {"name": "ugc__shopper_experience_order_aggregation_orders_count_of_non_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_orders_count_of_non_interacted_users", "block_contents": "Total orders of non interacted users per currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_orders_sum_of_interacted_users": {"name": "ugc__shopper_experience_order_aggregation_orders_sum_of_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_orders_sum_of_interacted_users", "block_contents": "Sum of the orders of interacted users per currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_orders_sum_of_non_interacted_users": {"name": "ugc__shopper_experience_order_aggregation_orders_sum_of_non_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_orders_sum_of_non_interacted_users", "block_contents": "Sum of the orders of non interacted users per currency"}, "doc.yoda.ugc__shopper_experience_order_aggregation_total_users": {"name": "ugc__shopper_experience_order_aggregation_total_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_order_aggregation/ugc__shopper_experience_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_order_aggregation_total_users", "block_contents": "All users per currency"}, "doc.yoda.ugc__shopper_experience_store_aggregation": {"name": "ugc__shopper_experience_store_aggregation", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_store_aggregation", "block_contents": "Pixel aggregation data"}, "doc.yoda.ugc__shopper_experience_store_aggregation_app_key": {"name": "ugc__shopper_experience_store_aggregation_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_store_aggregation_app_key", "block_contents": "App key"}, "doc.yoda.ugc__shopper_experience_store_aggregation_date": {"name": "ugc__shopper_experience_store_aggregation_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_store_aggregation_date", "block_contents": "Date"}, "doc.yoda.ugc__shopper_experience_store_aggregation_interacted_users": {"name": "ugc__shopper_experience_store_aggregation_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_store_aggregation_interacted_users", "block_contents": "Amount of unique users that interacted with at least one widget"}, "doc.yoda.ugc__shopper_experience_store_aggregation_interacted_users_with_orders": {"name": "ugc__shopper_experience_store_aggregation_interacted_users_with_orders", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_store_aggregation_interacted_users_with_orders", "block_contents": "Amount of unique users that interacted with at least one widget and placed at least one order"}, "doc.yoda.ugc__shopper_experience_store_aggregation_interacted_users_without_orders": {"name": "ugc__shopper_experience_store_aggregation_interacted_users_without_orders", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_store_aggregation_interacted_users_without_orders", "block_contents": "Amount of unique users that interacted with at least one widget and did not place any order"}, "doc.yoda.ugc__shopper_experience_store_aggregation_non_interacted_users": {"name": "ugc__shopper_experience_store_aggregation_non_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_store_aggregation_non_interacted_users", "block_contents": "Amount of unique users that did not interact with any widget"}, "doc.yoda.ugc__shopper_experience_store_aggregation_non_interacted_users_with_orders": {"name": "ugc__shopper_experience_store_aggregation_non_interacted_users_with_orders", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_store_aggregation_non_interacted_users_with_orders", "block_contents": "Amount of unique users that did not interact with any widget and placed at least one order"}, "doc.yoda.ugc__shopper_experience_store_aggregation_non_interacted_users_without_orders": {"name": "ugc__shopper_experience_store_aggregation_non_interacted_users_without_orders", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_store_aggregation_non_interacted_users_without_orders", "block_contents": "Amount of unique users that did not interact with any widget and did not place any order"}, "doc.yoda.ugc__shopper_experience_store_aggregation_total_users": {"name": "ugc__shopper_experience_store_aggregation_total_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_store_aggregation/ugc__shopper_experience_store_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_store_aggregation_total_users", "block_contents": "Amount of all unique users"}, "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation": {"name": "ugc__shopper_experience_widget_engagement_aggregation", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation", "block_contents": "Pixel aggregated data for widget engagmenet"}, "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation_app_key": {"name": "ugc__shopper_experience_widget_engagement_aggregation_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation_app_key", "block_contents": "App key"}, "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation_date": {"name": "ugc__shopper_experience_widget_engagement_aggregation_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation_date", "block_contents": "Date"}, "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation_total_interacted_users": {"name": "ugc__shopper_experience_widget_engagement_aggregation_total_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation_total_interacted_users", "block_contents": "Amount of interacted users per widget"}, "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation_total_non_interacted_users": {"name": "ugc__shopper_experience_widget_engagement_aggregation_total_non_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation_total_non_interacted_users", "block_contents": "Amount of non interacted users per widget"}, "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation_widget": {"name": "ugc__shopper_experience_widget_engagement_aggregation_widget", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_engagement_aggregation/ugc__shopper_experience_widget_engagement_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_engagement_aggregation_widget", "block_contents": "Widget name"}, "doc.yoda.ugc__shopper_experience_widget_order_aggregation": {"name": "ugc__shopper_experience_widget_order_aggregation", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_order_aggregation", "block_contents": "Pixel aggregated data for orders per widget per currency"}, "doc.yoda.ugc__shopper_experience_widget_order_aggregation_app_key": {"name": "ugc__shopper_experience_widget_order_aggregation_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_order_aggregation_app_key", "block_contents": "App key"}, "doc.yoda.ugc__shopper_experience_widget_order_aggregation_currency": {"name": "ugc__shopper_experience_widget_order_aggregation_currency", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_order_aggregation_currency", "block_contents": "Currency"}, "doc.yoda.ugc__shopper_experience_widget_order_aggregation_date": {"name": "ugc__shopper_experience_widget_order_aggregation_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_order_aggregation_date", "block_contents": "Date"}, "doc.yoda.ugc__shopper_experience_widget_order_aggregation_orders_count": {"name": "ugc__shopper_experience_widget_order_aggregation_orders_count", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_order_aggregation_orders_count", "block_contents": "Amount of all orders per widget per currency"}, "doc.yoda.ugc__shopper_experience_widget_order_aggregation_orders_count_of_interacted_users": {"name": "ugc__shopper_experience_widget_order_aggregation_orders_count_of_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_order_aggregation_orders_count_of_interacted_users", "block_contents": "Orders amount of interacted users per widget per currency"}, "doc.yoda.ugc__shopper_experience_widget_order_aggregation_orders_count_of_non_interacted_users": {"name": "ugc__shopper_experience_widget_order_aggregation_orders_count_of_non_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_order_aggregation_orders_count_of_non_interacted_users", "block_contents": "Orders amount of non interacted users per widget per currency"}, "doc.yoda.ugc__shopper_experience_widget_order_aggregation_orders_sum_interacted_users": {"name": "ugc__shopper_experience_widget_order_aggregation_orders_sum_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_order_aggregation_orders_sum_interacted_users", "block_contents": "Orders sum of interacted users per widget per currency"}, "doc.yoda.ugc__shopper_experience_widget_order_aggregation_orders_sum_non_interacted_users": {"name": "ugc__shopper_experience_widget_order_aggregation_orders_sum_non_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_order_aggregation_orders_sum_non_interacted_users", "block_contents": "Orders sum of non interacted users per widget per currency"}, "doc.yoda.ugc__shopper_experience_widget_order_aggregation_total_non_interacted_users": {"name": "ugc__shopper_experience_widget_order_aggregation_total_non_interacted_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_order_aggregation_total_non_interacted_users", "block_contents": "Amount of non interacted users per widget per currency"}, "doc.yoda.ugc__shopper_experience_widget_order_aggregation_widget": {"name": "ugc__shopper_experience_widget_order_aggregation_widget", "resource_type": "doc", "package_name": "yoda", "path": "ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "original_file_path": "models/ugc/marts/ugc__shopper_experience_widget_order_aggregation/ugc__shopper_experience_widget_order_aggregation.md", "unique_id": "doc.yoda.ugc__shopper_experience_widget_order_aggregation_widget", "block_contents": "Widget name"}, "doc.yoda.ugc_stg__anonymous_users": {"name": "ugc_stg__anonymous_users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "unique_id": "doc.yoda.ugc_stg__anonymous_users", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__anonymous_users_created_at": {"name": "ugc_stg__anonymous_users_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "unique_id": "doc.yoda.ugc_stg__anonymous_users_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__anonymous_users_display_name": {"name": "ugc_stg__anonymous_users_display_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "unique_id": "doc.yoda.ugc_stg__anonymous_users_display_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__anonymous_users_email": {"name": "ugc_stg__anonymous_users_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "unique_id": "doc.yoda.ugc_stg__anonymous_users_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__anonymous_users_id": {"name": "ugc_stg__anonymous_users_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "unique_id": "doc.yoda.ugc_stg__anonymous_users_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__anonymous_users_processing_time": {"name": "ugc_stg__anonymous_users_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "unique_id": "doc.yoda.ugc_stg__anonymous_users_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__anonymous_users_token": {"name": "ugc_stg__anonymous_users_token", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "unique_id": "doc.yoda.ugc_stg__anonymous_users_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__anonymous_users_ts_ms": {"name": "ugc_stg__anonymous_users_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "unique_id": "doc.yoda.ugc_stg__anonymous_users_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__anonymous_users_updated_at": {"name": "ugc_stg__anonymous_users_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "unique_id": "doc.yoda.ugc_stg__anonymous_users_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__anonymous_users_upsolver_schema_version": {"name": "ugc_stg__anonymous_users_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "unique_id": "doc.yoda.ugc_stg__anonymous_users_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__anonymous_users_user_id": {"name": "ugc_stg__anonymous_users_user_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__anonymous_users/ugc_stg__anonymous_users.md", "unique_id": "doc.yoda.ugc_stg__anonymous_users_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments": {"name": "ugc_stg__comments", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__comments_approved": {"name": "ugc_stg__comments_approved", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_approved", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_commentable_id": {"name": "ugc_stg__comments_commentable_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_commentable_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_commentable_type": {"name": "ugc_stg__comments_commentable_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_commentable_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_commenter_display_name": {"name": "ugc_stg__comments_commenter_display_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_commenter_display_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_content": {"name": "ugc_stg__comments_content", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_content", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_created_at": {"name": "ugc_stg__comments_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_id": {"name": "ugc_stg__comments_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_processing_time": {"name": "ugc_stg__comments_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_public": {"name": "ugc_stg__comments_public", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_public", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_source_comment_id": {"name": "ugc_stg__comments_source_comment_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_source_comment_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_ts_ms": {"name": "ugc_stg__comments_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_updated_at": {"name": "ugc_stg__comments_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_upsolver_schema_version": {"name": "ugc_stg__comments_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_user_id": {"name": "ugc_stg__comments_user_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__comments_user_type": {"name": "ugc_stg__comments_user_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "original_file_path": "models/ugc/staging/base/ugc_stg__comments/ugc_stg__comments.md", "unique_id": "doc.yoda.ugc_stg__comments_user_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__dirty_words": {"name": "ugc_stg__dirty_words", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "original_file_path": "models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "unique_id": "doc.yoda.ugc_stg__dirty_words", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__dirty_words_created_at": {"name": "ugc_stg__dirty_words_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "original_file_path": "models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "unique_id": "doc.yoda.ugc_stg__dirty_words_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__dirty_words_id": {"name": "ugc_stg__dirty_words_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "original_file_path": "models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "unique_id": "doc.yoda.ugc_stg__dirty_words_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__dirty_words_model_id": {"name": "ugc_stg__dirty_words_model_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "original_file_path": "models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "unique_id": "doc.yoda.ugc_stg__dirty_words_model_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__dirty_words_model_type": {"name": "ugc_stg__dirty_words_model_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "original_file_path": "models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "unique_id": "doc.yoda.ugc_stg__dirty_words_model_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__dirty_words_processing_time": {"name": "ugc_stg__dirty_words_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "original_file_path": "models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "unique_id": "doc.yoda.ugc_stg__dirty_words_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__dirty_words_ts_ms": {"name": "ugc_stg__dirty_words_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "original_file_path": "models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "unique_id": "doc.yoda.ugc_stg__dirty_words_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__dirty_words_updated_at": {"name": "ugc_stg__dirty_words_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "original_file_path": "models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "unique_id": "doc.yoda.ugc_stg__dirty_words_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__dirty_words_upsolver_schema_version": {"name": "ugc_stg__dirty_words_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "original_file_path": "models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "unique_id": "doc.yoda.ugc_stg__dirty_words_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__dirty_words_words": {"name": "ugc_stg__dirty_words_words", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "original_file_path": "models/ugc/staging/base/ugc_stg__dirty_words/ugc_stg__dirty_words.md", "unique_id": "doc.yoda.ugc_stg__dirty_words_words", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications": {"name": "ugc_stg__email_authentications", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__email_authentications_caller_id": {"name": "ugc_stg__email_authentications_caller_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_caller_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_caller_type": {"name": "ugc_stg__email_authentications_caller_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_caller_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_created_at": {"name": "ugc_stg__email_authentications_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_id": {"name": "ugc_stg__email_authentications_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_partitioning_time": {"name": "ugc_stg__email_authentications_partitioning_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_partitioning_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_processing_time": {"name": "ugc_stg__email_authentications_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_repliable_id": {"name": "ugc_stg__email_authentications_repliable_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_repliable_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_repliable_type": {"name": "ugc_stg__email_authentications_repliable_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_repliable_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_token": {"name": "ugc_stg__email_authentications_token", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_ts_ms": {"name": "ugc_stg__email_authentications_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_updated_at": {"name": "ugc_stg__email_authentications_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_upsolver_schema_version": {"name": "ugc_stg__email_authentications_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_authentications_users_email_control_id": {"name": "ugc_stg__email_authentications_users_email_control_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_authentications/ugc_stg__email_authentications.md", "unique_id": "doc.yoda.ugc_stg__email_authentications_users_email_control_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_types": {"name": "ugc_stg__email_types", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__email_types_b2c": {"name": "ugc_stg__email_types_b2c", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types_b2c", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_types_created_at": {"name": "ugc_stg__email_types_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_types_id": {"name": "ugc_stg__email_types_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_types_name": {"name": "ugc_stg__email_types_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_types_processing_time": {"name": "ugc_stg__email_types_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_types_reply_type": {"name": "ugc_stg__email_types_reply_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types_reply_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_types_require_authentication": {"name": "ugc_stg__email_types_require_authentication", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types_require_authentication", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_types_template": {"name": "ugc_stg__email_types_template", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types_template", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_types_ts_ms": {"name": "ugc_stg__email_types_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_types_updated_at": {"name": "ugc_stg__email_types_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__email_types_upsolver_schema_version": {"name": "ugc_stg__email_types_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__email_types/ugc_stg__email_types.md", "unique_id": "doc.yoda.ugc_stg__email_types_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images": {"name": "ugc_stg__images", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__images_created_at": {"name": "ugc_stg__images_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_id": {"name": "ugc_stg__images_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_image_content_type": {"name": "ugc_stg__images_image_content_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_image_content_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_image_file_name": {"name": "ugc_stg__images_image_file_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_image_file_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_image_file_size": {"name": "ugc_stg__images_image_file_size", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_image_file_size", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_image_fingerprint": {"name": "ugc_stg__images_image_fingerprint", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_image_fingerprint", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_image_height": {"name": "ugc_stg__images_image_height", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_image_height", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_image_updated_at": {"name": "ugc_stg__images_image_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_image_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_image_width": {"name": "ugc_stg__images_image_width", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_image_width", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_imageable_id": {"name": "ugc_stg__images_imageable_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_imageable_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_imageable_type": {"name": "ugc_stg__images_imageable_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_imageable_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_kind": {"name": "ugc_stg__images_kind", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_kind", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_processing_time": {"name": "ugc_stg__images_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_published": {"name": "ugc_stg__images_published", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_published", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_ts_ms": {"name": "ugc_stg__images_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_updated_at": {"name": "ugc_stg__images_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_upsolver_schema_version": {"name": "ugc_stg__images_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_url": {"name": "ugc_stg__images_url", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_url", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_user_id": {"name": "ugc_stg__images_user_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__images_yotpo_resource_id": {"name": "ugc_stg__images_yotpo_resource_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "original_file_path": "models/ugc/staging/base/ugc_stg__images/ugc_stg__images.md", "unique_id": "doc.yoda.ugc_stg__images_yotpo_resource_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__metadata_types": {"name": "ugc_stg__metadata_types", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "unique_id": "doc.yoda.ugc_stg__metadata_types", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__metadata_types_created_at": {"name": "ugc_stg__metadata_types_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "unique_id": "doc.yoda.ugc_stg__metadata_types_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__metadata_types_id": {"name": "ugc_stg__metadata_types_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "unique_id": "doc.yoda.ugc_stg__metadata_types_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__metadata_types_processing_time": {"name": "ugc_stg__metadata_types_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "unique_id": "doc.yoda.ugc_stg__metadata_types_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__metadata_types_ts_ms": {"name": "ugc_stg__metadata_types_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "unique_id": "doc.yoda.ugc_stg__metadata_types_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__metadata_types_updated_at": {"name": "ugc_stg__metadata_types_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "unique_id": "doc.yoda.ugc_stg__metadata_types_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__metadata_types_upsolver_schema_version": {"name": "ugc_stg__metadata_types_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "unique_id": "doc.yoda.ugc_stg__metadata_types_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__metadata_types_value": {"name": "ugc_stg__metadata_types_value", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__metadata_types/ugc_stg__metadata_types.md", "unique_id": "doc.yoda.ugc_stg__metadata_types_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__moderation_audits": {"name": "ugc_stg__moderation_audits", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__moderation_audits_action_type": {"name": "ugc_stg__moderation_audits_action_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits_action_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__moderation_audits_created_at": {"name": "ugc_stg__moderation_audits_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__moderation_audits_display_name": {"name": "ugc_stg__moderation_audits_display_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits_display_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__moderation_audits_email": {"name": "ugc_stg__moderation_audits_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__moderation_audits_id": {"name": "ugc_stg__moderation_audits_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__moderation_audits_processing_time": {"name": "ugc_stg__moderation_audits_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__moderation_audits_reason": {"name": "ugc_stg__moderation_audits_reason", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits_reason", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__moderation_audits_review_id": {"name": "ugc_stg__moderation_audits_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits_review_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__moderation_audits_ts_ms": {"name": "ugc_stg__moderation_audits_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__moderation_audits_updated_at": {"name": "ugc_stg__moderation_audits_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__moderation_audits_upsolver_schema_version": {"name": "ugc_stg__moderation_audits_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "original_file_path": "models/ugc/staging/base/ugc_stg__moderation_audits/ugc_stg__moderation_audits.md", "unique_id": "doc.yoda.ugc_stg__moderation_audits_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media": {"name": "ugc_stg__mongo_gallery_media", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__mongo_gallery_media__id": {"name": "ugc_stg__mongo_gallery_media__id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media__id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_created_at": {"name": "ugc_stg__mongo_gallery_media_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_entry_id": {"name": "ugc_stg__mongo_gallery_media_entry_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_entry_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_gallery_id": {"name": "ugc_stg__mongo_gallery_media_gallery_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_gallery_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_media_id": {"name": "ugc_stg__mongo_gallery_media_media_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_media_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_media_type": {"name": "ugc_stg__mongo_gallery_media_media_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_media_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_mention": {"name": "ugc_stg__mongo_gallery_media_mention", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_mention", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_origin_gm_id": {"name": "ugc_stg__mongo_gallery_media_origin_gm_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_origin_gm_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_permission_request": {"name": "ugc_stg__mongo_gallery_media_permission_request", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_permission_request", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_published_at": {"name": "ugc_stg__mongo_gallery_media_published_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_published_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_review_syndication": {"name": "ugc_stg__mongo_gallery_media_review_syndication", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_review_syndication", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_show_in_new": {"name": "ugc_stg__mongo_gallery_media_show_in_new", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_show_in_new", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_source_account_app_key": {"name": "ugc_stg__mongo_gallery_media_source_account_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_source_account_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_starred": {"name": "ugc_stg__mongo_gallery_media_starred", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_starred", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_status": {"name": "ugc_stg__mongo_gallery_media_status", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_status", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_syndicated_image_id": {"name": "ugc_stg__mongo_gallery_media_syndicated_image_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_syndicated_image_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_tagged_products": {"name": "ugc_stg__mongo_gallery_media_tagged_products", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_tagged_products", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_text": {"name": "ugc_stg__mongo_gallery_media_text", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_text", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_thumbs_down": {"name": "ugc_stg__mongo_gallery_media_thumbs_down", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_thumbs_down", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_thumbs_up": {"name": "ugc_stg__mongo_gallery_media_thumbs_up", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_thumbs_up", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_updated_at": {"name": "ugc_stg__mongo_gallery_media_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_video": {"name": "ugc_stg__mongo_gallery_media_video", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_video", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__mongo_gallery_media_vms_syndication": {"name": "ugc_stg__mongo_gallery_media_vms_syndication", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "original_file_path": "models/ugc/staging/base/ugc_stg__mongo_gallery_media/ugc_stg__mongo_gallery_media.md", "unique_id": "doc.yoda.ugc_stg__mongo_gallery_media_vms_syndication", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reminders": {"name": "ugc_stg__reminders", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders", "block_contents": "The reminders table containes information related to the different automatic review requests configurations.\n\nEach entry describes a reminder.\n\nLegacy customers may have more than 2 review requests.\n\nCustomers using the new \"postman\" review request feature will have 1 to 2 reminders per account.\n\n \n\nMain usage example:\n\nreminders_max_products = 3\n\ndays_from_purchase = 14\n\nreminders_mail_interval = 5\n\nAn order with 10 products:\n\n- will recive 3 emails.\n\n- First email after 14 days from purchase date\n\n- Second email, 5 days after the first and 19 days from purchase date\n\n- Third email, 5 days after the second and 24 days from purchase date"}, "doc.yoda.ugc_stg__reminders_account_id": {"name": "ugc_stg__reminders_account_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_account_id", "block_contents": "The store assosiated account id"}, "doc.yoda.ugc_stg__reminders_body": {"name": "ugc_stg__reminders_body", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_body", "block_contents": "Seems to be an unused legacy column, currently created null for new customers"}, "doc.yoda.ugc_stg__reminders_bottom": {"name": "ugc_stg__reminders_bottom", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_bottom", "block_contents": "Used as the text at the lower part of the review request email"}, "doc.yoda.ugc_stg__reminders_created_at": {"name": "ugc_stg__reminders_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_created_at", "block_contents": "The date and time at which the reminder was created"}, "doc.yoda.ugc_stg__reminders_days_from_purchase": {"name": "ugc_stg__reminders_days_from_purchase", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_days_from_purchase", "block_contents": "The days after which the email should be delivered.\n\nContranry to the column name, the trigger for the email may be different and it could be the amount of days from when the order was delivered or fulfilled."}, "doc.yoda.ugc_stg__reminders_didnt_get_product_link": {"name": "ugc_stg__reminders_didnt_get_product_link", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_didnt_get_product_link", "block_contents": "Seems to be an unused legacy column, currently created null for new customers"}, "doc.yoda.ugc_stg__reminders_email_submission_type_id": {"name": "ugc_stg__reminders_email_submission_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_email_submission_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reminders_enabled": {"name": "ugc_stg__reminders_enabled", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_enabled", "block_contents": "Is the email enabled and emails are sending or not."}, "doc.yoda.ugc_stg__reminders_formless_call_to_action": {"name": "ugc_stg__reminders_formless_call_to_action", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_formless_call_to_action", "block_contents": "Seems to be a legacy column - TBD."}, "doc.yoda.ugc_stg__reminders_header": {"name": "ugc_stg__reminders_header", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_header", "block_contents": "Seems to be a legacy column - TBD."}, "doc.yoda.ugc_stg__reminders_id": {"name": "ugc_stg__reminders_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_id", "block_contents": "The reminders primary key"}, "doc.yoda.ugc_stg__reminders_mail_interval": {"name": "ugc_stg__reminders_mail_interval", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_mail_interval", "block_contents": "The amount of days between emails for each product on the same order."}, "doc.yoda.ugc_stg__reminders_max_products": {"name": "ugc_stg__reminders_max_products", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_max_products", "block_contents": "Maximum amount of products that will recive an email per order."}, "doc.yoda.ugc_stg__reminders_processing_time": {"name": "ugc_stg__reminders_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reminders_subject": {"name": "ugc_stg__reminders_subject", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_subject", "block_contents": "The email subject line"}, "doc.yoda.ugc_stg__reminders_ts_ms": {"name": "ugc_stg__reminders_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reminders_updated_at": {"name": "ugc_stg__reminders_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_updated_at", "block_contents": "The date and time at which the reminder was updated"}, "doc.yoda.ugc_stg__reminders_upsolver_schema_version": {"name": "ugc_stg__reminders_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reminders/ugc_stg__reminders.md", "unique_id": "doc.yoda.ugc_stg__reminders_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__retailer": {"name": "ugc_stg__retailer", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "original_file_path": "models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "unique_id": "doc.yoda.ugc_stg__retailer", "block_contents": "Retailer table"}, "doc.yoda.ugc_stg__retailer_created_at": {"name": "ugc_stg__retailer_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "original_file_path": "models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "unique_id": "doc.yoda.ugc_stg__retailer_created_at", "block_contents": "Created at"}, "doc.yoda.ugc_stg__retailer_file_name_format": {"name": "ugc_stg__retailer_file_name_format", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "original_file_path": "models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "unique_id": "doc.yoda.ugc_stg__retailer_file_name_format", "block_contents": "File name format"}, "doc.yoda.ugc_stg__retailer_id": {"name": "ugc_stg__retailer_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "original_file_path": "models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "unique_id": "doc.yoda.ugc_stg__retailer_id", "block_contents": "Id"}, "doc.yoda.ugc_stg__retailer_processing_time": {"name": "ugc_stg__retailer_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "original_file_path": "models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "unique_id": "doc.yoda.ugc_stg__retailer_processing_time", "block_contents": "Processing time"}, "doc.yoda.ugc_stg__retailer_retailer_name": {"name": "ugc_stg__retailer_retailer_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "original_file_path": "models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "unique_id": "doc.yoda.ugc_stg__retailer_retailer_name", "block_contents": "Retailer name"}, "doc.yoda.ugc_stg__retailer_ts_ms": {"name": "ugc_stg__retailer_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "original_file_path": "models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "unique_id": "doc.yoda.ugc_stg__retailer_ts_ms", "block_contents": "ts_ms"}, "doc.yoda.ugc_stg__retailer_updated_at": {"name": "ugc_stg__retailer_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "original_file_path": "models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "unique_id": "doc.yoda.ugc_stg__retailer_updated_at", "block_contents": "Updated at"}, "doc.yoda.ugc_stg__retailer_upsolver_schema_version": {"name": "ugc_stg__retailer_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "original_file_path": "models/ugc/staging/base/ugc_stg__retailer/ugc_stg__retailer.md", "unique_id": "doc.yoda.ugc_stg__retailer_upsolver_schema_version", "block_contents": "Upsolver schema version"}, "doc.yoda.ugc_stg__review_contents": {"name": "ugc_stg__review_contents", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__review_contents_created_at": {"name": "ugc_stg__review_contents_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_contents_id": {"name": "ugc_stg__review_contents_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_contents_int_value": {"name": "ugc_stg__review_contents_int_value", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents_int_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_contents_processing_time": {"name": "ugc_stg__review_contents_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_contents_review_form_field_id": {"name": "ugc_stg__review_contents_review_form_field_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents_review_form_field_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_contents_review_id": {"name": "ugc_stg__review_contents_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents_review_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_contents_string_value": {"name": "ugc_stg__review_contents_string_value", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents_string_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_contents_text_value": {"name": "ugc_stg__review_contents_text_value", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents_text_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_contents_ts_ms": {"name": "ugc_stg__review_contents_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_contents_updated_at": {"name": "ugc_stg__review_contents_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_contents_upsolver_schema_version": {"name": "ugc_stg__review_contents_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_contents/ugc_stg__review_contents.md", "unique_id": "doc.yoda.ugc_stg__review_contents_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_field_types": {"name": "ugc_stg__review_form_field_types", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "unique_id": "doc.yoda.ugc_stg__review_form_field_types", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__review_form_field_types_created_at": {"name": "ugc_stg__review_form_field_types_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "unique_id": "doc.yoda.ugc_stg__review_form_field_types_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_field_types_id": {"name": "ugc_stg__review_form_field_types_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "unique_id": "doc.yoda.ugc_stg__review_form_field_types_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_field_types_name": {"name": "ugc_stg__review_form_field_types_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "unique_id": "doc.yoda.ugc_stg__review_form_field_types_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_field_types_processing_time": {"name": "ugc_stg__review_form_field_types_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "unique_id": "doc.yoda.ugc_stg__review_form_field_types_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_field_types_ts_ms": {"name": "ugc_stg__review_form_field_types_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "unique_id": "doc.yoda.ugc_stg__review_form_field_types_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_field_types_updated_at": {"name": "ugc_stg__review_form_field_types_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "unique_id": "doc.yoda.ugc_stg__review_form_field_types_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_field_types_upsolver_schema_version": {"name": "ugc_stg__review_form_field_types_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_field_types/ugc_stg__review_form_field_types.md", "unique_id": "doc.yoda.ugc_stg__review_form_field_types_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields": {"name": "ugc_stg__review_form_fields", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__review_form_fields_created_at": {"name": "ugc_stg__review_form_fields_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_display_variant": {"name": "ugc_stg__review_form_fields_display_variant", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_display_variant", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_guidelines": {"name": "ugc_stg__review_form_fields_guidelines", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_guidelines", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_id": {"name": "ugc_stg__review_form_fields_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_mandatory": {"name": "ugc_stg__review_form_fields_mandatory", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_mandatory", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_options": {"name": "ugc_stg__review_form_fields_options", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_options", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_order": {"name": "ugc_stg__review_form_fields_order", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_order", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_processing_time": {"name": "ugc_stg__review_form_fields_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_review_form_field_type_id": {"name": "ugc_stg__review_form_fields_review_form_field_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_review_form_field_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_review_form_id": {"name": "ugc_stg__review_form_fields_review_form_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_review_form_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_slug": {"name": "ugc_stg__review_form_fields_slug", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_slug", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_sub_title": {"name": "ugc_stg__review_form_fields_sub_title", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_sub_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_title": {"name": "ugc_stg__review_form_fields_title", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_ts_ms": {"name": "ugc_stg__review_form_fields_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_updated_at": {"name": "ugc_stg__review_form_fields_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_form_fields_upsolver_schema_version": {"name": "ugc_stg__review_form_fields_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_form_fields/ugc_stg__review_form_fields.md", "unique_id": "doc.yoda.ugc_stg__review_form_fields_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_metadatas": {"name": "ugc_stg__review_metadatas", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "unique_id": "doc.yoda.ugc_stg__review_metadatas", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__review_metadatas_created_at": {"name": "ugc_stg__review_metadatas_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "unique_id": "doc.yoda.ugc_stg__review_metadatas_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_metadatas_id": {"name": "ugc_stg__review_metadatas_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "unique_id": "doc.yoda.ugc_stg__review_metadatas_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_metadatas_metadata_type_id": {"name": "ugc_stg__review_metadatas_metadata_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "unique_id": "doc.yoda.ugc_stg__review_metadatas_metadata_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_metadatas_metadata_type_value": {"name": "ugc_stg__review_metadatas_metadata_type_value", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "unique_id": "doc.yoda.ugc_stg__review_metadatas_metadata_type_value", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_metadatas_processing_time": {"name": "ugc_stg__review_metadatas_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "unique_id": "doc.yoda.ugc_stg__review_metadatas_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_metadatas_review_id": {"name": "ugc_stg__review_metadatas_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "unique_id": "doc.yoda.ugc_stg__review_metadatas_review_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_metadatas_ts_ms": {"name": "ugc_stg__review_metadatas_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "unique_id": "doc.yoda.ugc_stg__review_metadatas_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_metadatas_updated_at": {"name": "ugc_stg__review_metadatas_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "unique_id": "doc.yoda.ugc_stg__review_metadatas_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_metadatas_upsolver_schema_version": {"name": "ugc_stg__review_metadatas_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_metadatas/ugc_stg__review_metadatas.md", "unique_id": "doc.yoda.ugc_stg__review_metadatas_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_order_line": {"name": "ugc_stg__review_order_line", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_order_line/ugc_stg__review_order_line.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_order_line/ugc_stg__review_order_line.md", "unique_id": "doc.yoda.ugc_stg__review_order_line", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__review_request_emails": {"name": "ugc_stg__review_request_emails", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__review_request_emails_app_key": {"name": "ugc_stg__review_request_emails_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_caller_id": {"name": "ugc_stg__review_request_emails_caller_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_caller_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_caller_type": {"name": "ugc_stg__review_request_emails_caller_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_caller_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_created_at": {"name": "ugc_stg__review_request_emails_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_creation_context": {"name": "ugc_stg__review_request_emails_creation_context", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_creation_context", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_date_to_deliver": {"name": "ugc_stg__review_request_emails_date_to_deliver", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_date_to_deliver", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_delivered_at": {"name": "ugc_stg__review_request_emails_delivered_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_delivered_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_email_submission_type_id": {"name": "ugc_stg__review_request_emails_email_submission_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_email_submission_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_email_type_id": {"name": "ugc_stg__review_request_emails_email_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_email_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_id": {"name": "ugc_stg__review_request_emails_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_processing_time": {"name": "ugc_stg__review_request_emails_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_products_app_id": {"name": "ugc_stg__review_request_emails_products_app_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_products_app_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_review_request_token": {"name": "ugc_stg__review_request_emails_review_request_token", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_review_request_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_ts_ms": {"name": "ugc_stg__review_request_emails_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_updated_at": {"name": "ugc_stg__review_request_emails_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_upsolver_schema_version": {"name": "ugc_stg__review_request_emails_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_user_email": {"name": "ugc_stg__review_request_emails_user_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_user_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_emails_user_name": {"name": "ugc_stg__review_request_emails_user_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_emails/ugc_stg__review_request_emails.md", "unique_id": "doc.yoda.ugc_stg__review_request_emails_user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms": {"name": "ugc_stg__review_request_sms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__review_request_sms_app_key": {"name": "ugc_stg__review_request_sms_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_caller_id": {"name": "ugc_stg__review_request_sms_caller_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_caller_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_caller_type": {"name": "ugc_stg__review_request_sms_caller_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_caller_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_created_at": {"name": "ugc_stg__review_request_sms_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_delivered_at": {"name": "ugc_stg__review_request_sms_delivered_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_delivered_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_id": {"name": "ugc_stg__review_request_sms_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_processing_time": {"name": "ugc_stg__review_request_sms_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_review_request_token": {"name": "ugc_stg__review_request_sms_review_request_token", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_review_request_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_sms_status_type_id": {"name": "ugc_stg__review_request_sms_sms_status_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_sms_status_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_sms_type_id": {"name": "ugc_stg__review_request_sms_sms_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_sms_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_ts_ms": {"name": "ugc_stg__review_request_sms_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_updated_at": {"name": "ugc_stg__review_request_sms_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_upsolver_schema_version": {"name": "ugc_stg__review_request_sms_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_user_email": {"name": "ugc_stg__review_request_sms_user_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_user_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_sms_user_name": {"name": "ugc_stg__review_request_sms_user_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_sms/ugc_stg__review_request_sms.md", "unique_id": "doc.yoda.ugc_stg__review_request_sms_user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens": {"name": "ugc_stg__review_request_tokens", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__review_request_tokens_caller_id": {"name": "ugc_stg__review_request_tokens_caller_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_caller_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_caller_type": {"name": "ugc_stg__review_request_tokens_caller_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_caller_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_created_at": {"name": "ugc_stg__review_request_tokens_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_id": {"name": "ugc_stg__review_request_tokens_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_processing_time": {"name": "ugc_stg__review_request_tokens_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_repliable_identifier": {"name": "ugc_stg__review_request_tokens_repliable_identifier", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_repliable_identifier", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_repliable_type": {"name": "ugc_stg__review_request_tokens_repliable_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_repliable_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_review_id": {"name": "ugc_stg__review_request_tokens_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_review_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_review_source_type_id": {"name": "ugc_stg__review_request_tokens_review_source_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_review_source_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_token": {"name": "ugc_stg__review_request_tokens_token", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_ts_ms": {"name": "ugc_stg__review_request_tokens_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_updated_at": {"name": "ugc_stg__review_request_tokens_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_request_tokens_upsolver_schema_version": {"name": "ugc_stg__review_request_tokens_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_request_tokens/ugc_stg__review_request_tokens.md", "unique_id": "doc.yoda.ugc_stg__review_request_tokens_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_source_types": {"name": "ugc_stg__review_source_types", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "unique_id": "doc.yoda.ugc_stg__review_source_types", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__review_source_types_created_at": {"name": "ugc_stg__review_source_types_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "unique_id": "doc.yoda.ugc_stg__review_source_types_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_source_types_id": {"name": "ugc_stg__review_source_types_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "unique_id": "doc.yoda.ugc_stg__review_source_types_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_source_types_name": {"name": "ugc_stg__review_source_types_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "unique_id": "doc.yoda.ugc_stg__review_source_types_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_source_types_processing_time": {"name": "ugc_stg__review_source_types_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "unique_id": "doc.yoda.ugc_stg__review_source_types_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_source_types_ts_ms": {"name": "ugc_stg__review_source_types_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "unique_id": "doc.yoda.ugc_stg__review_source_types_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_source_types_updated_at": {"name": "ugc_stg__review_source_types_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "unique_id": "doc.yoda.ugc_stg__review_source_types_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_source_types_upsolver_schema_version": {"name": "ugc_stg__review_source_types_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_source_types/ugc_stg__review_source_types.md", "unique_id": "doc.yoda.ugc_stg__review_source_types_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_tags": {"name": "ugc_stg__review_tags", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_tags/ugc_stg__review_tags.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_tags/ugc_stg__review_tags.md", "unique_id": "doc.yoda.ugc_stg__review_tags", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__review_types": {"name": "ugc_stg__review_types", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "unique_id": "doc.yoda.ugc_stg__review_types", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__review_types_created_at": {"name": "ugc_stg__review_types_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "unique_id": "doc.yoda.ugc_stg__review_types_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_types_description": {"name": "ugc_stg__review_types_description", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "unique_id": "doc.yoda.ugc_stg__review_types_description", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_types_id": {"name": "ugc_stg__review_types_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "unique_id": "doc.yoda.ugc_stg__review_types_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_types_name": {"name": "ugc_stg__review_types_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "unique_id": "doc.yoda.ugc_stg__review_types_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_types_processing_time": {"name": "ugc_stg__review_types_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "unique_id": "doc.yoda.ugc_stg__review_types_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_types_ts_ms": {"name": "ugc_stg__review_types_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "unique_id": "doc.yoda.ugc_stg__review_types_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_types_updated_at": {"name": "ugc_stg__review_types_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "unique_id": "doc.yoda.ugc_stg__review_types_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__review_types_upsolver_schema_version": {"name": "ugc_stg__review_types_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "original_file_path": "models/ugc/staging/base/ugc_stg__review_types/ugc_stg__review_types.md", "unique_id": "doc.yoda.ugc_stg__review_types_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews": {"name": "ugc_stg__reviews", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__reviews_app_key": {"name": "ugc_stg__reviews_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_archived": {"name": "ugc_stg__reviews_archived", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_archived", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_content": {"name": "ugc_stg__reviews_content", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_content", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_created_at": {"name": "ugc_stg__reviews_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_deleted": {"name": "ugc_stg__reviews_deleted", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_deleted", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_escalated": {"name": "ugc_stg__reviews_escalated", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_escalated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_facebook_pushed": {"name": "ugc_stg__reviews_facebook_pushed", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_facebook_pushed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_id": {"name": "ugc_stg__reviews_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_new": {"name": "ugc_stg__reviews_new", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_new", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_processing_time": {"name": "ugc_stg__reviews_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_review_source_type_id": {"name": "ugc_stg__reviews_review_source_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_review_source_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_review_type_id": {"name": "ugc_stg__reviews_review_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_review_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_reviewer_display_name": {"name": "ugc_stg__reviews_reviewer_display_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_reviewer_display_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_score": {"name": "ugc_stg__reviews_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_score", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_sentiment": {"name": "ugc_stg__reviews_sentiment", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_sentiment", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_shop_owner": {"name": "ugc_stg__reviews_shop_owner", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_shop_owner", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_source_app_key": {"name": "ugc_stg__reviews_source_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_source_app_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_source_review_id": {"name": "ugc_stg__reviews_source_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_source_review_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_title": {"name": "ugc_stg__reviews_title", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_title", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_ts_ms": {"name": "ugc_stg__reviews_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_twitter_pushed": {"name": "ugc_stg__reviews_twitter_pushed", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_twitter_pushed", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_updated_at": {"name": "ugc_stg__reviews_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_upsolver_schema_version": {"name": "ugc_stg__reviews_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_user_id": {"name": "ugc_stg__reviews_user_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_user_type": {"name": "ugc_stg__reviews_user_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_user_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_verified_buyer": {"name": "ugc_stg__reviews_verified_buyer", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_verified_buyer", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_votes_down": {"name": "ugc_stg__reviews_votes_down", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_votes_down", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_votes_up": {"name": "ugc_stg__reviews_votes_up", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews/ugc_stg__reviews.md", "unique_id": "doc.yoda.ugc_stg__reviews_votes_up", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_incentivized": {"name": "ugc_stg__reviews_incentivized", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "unique_id": "doc.yoda.ugc_stg__reviews_incentivized", "block_contents": "This table stores data about reviews that were incentivized."}, "doc.yoda.ugc_stg__reviews_incentivized_created_at": {"name": "ugc_stg__reviews_incentivized_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "unique_id": "doc.yoda.ugc_stg__reviews_incentivized_created_at", "block_contents": "The date and time at which the entry was created"}, "doc.yoda.ugc_stg__reviews_incentivized_id": {"name": "ugc_stg__reviews_incentivized_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "unique_id": "doc.yoda.ugc_stg__reviews_incentivized_id", "block_contents": "Incentivized reviews primary key"}, "doc.yoda.ugc_stg__reviews_incentivized_processing_time": {"name": "ugc_stg__reviews_incentivized_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "unique_id": "doc.yoda.ugc_stg__reviews_incentivized_processing_time", "block_contents": "The date and time at which the entry was processed"}, "doc.yoda.ugc_stg__reviews_incentivized_review_id": {"name": "ugc_stg__reviews_incentivized_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "unique_id": "doc.yoda.ugc_stg__reviews_incentivized_review_id", "block_contents": "Id of review for which the entry was created (Foreign key from reviews table)"}, "doc.yoda.ugc_stg__reviews_incentivized_reviews_incentivized_type_id": {"name": "ugc_stg__reviews_incentivized_reviews_incentivized_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "unique_id": "doc.yoda.ugc_stg__reviews_incentivized_reviews_incentivized_type_id", "block_contents": "Id of incentivized review type"}, "doc.yoda.ugc_stg__reviews_incentivized_ts_ms": {"name": "ugc_stg__reviews_incentivized_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "unique_id": "doc.yoda.ugc_stg__reviews_incentivized_ts_ms", "block_contents": "Timestamp"}, "doc.yoda.ugc_stg__reviews_incentivized_updated_at": {"name": "ugc_stg__reviews_incentivized_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_incentivized/ugc_stg__reviews_incentivized.md", "unique_id": "doc.yoda.ugc_stg__reviews_incentivized_updated_at", "block_contents": "The date and time at which the entry was updated"}, "doc.yoda.ugc_stg__reviews_subjects": {"name": "ugc_stg__reviews_subjects", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__reviews_subjects_account_id": {"name": "ugc_stg__reviews_subjects_account_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_subjects_created_at": {"name": "ugc_stg__reviews_subjects_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_subjects_deactivated": {"name": "ugc_stg__reviews_subjects_deactivated", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects_deactivated", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_subjects_id": {"name": "ugc_stg__reviews_subjects_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_subjects_processing_time": {"name": "ugc_stg__reviews_subjects_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_subjects_review_id": {"name": "ugc_stg__reviews_subjects_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects_review_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_subjects_subject_entity_type": {"name": "ugc_stg__reviews_subjects_subject_entity_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects_subject_entity_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_subjects_subject_id": {"name": "ugc_stg__reviews_subjects_subject_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects_subject_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_subjects_ts_ms": {"name": "ugc_stg__reviews_subjects_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_subjects_updated_at": {"name": "ugc_stg__reviews_subjects_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__reviews_subjects_upsolver_schema_version": {"name": "ugc_stg__reviews_subjects_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "original_file_path": "models/ugc/staging/base/ugc_stg__reviews_subjects/ugc_stg__reviews_subjects.md", "unique_id": "doc.yoda.ugc_stg__reviews_subjects_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares": {"name": "ugc_stg__shares", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__shares_created_at": {"name": "ugc_stg__shares_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_id": {"name": "ugc_stg__shares_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_image_id": {"name": "ugc_stg__shares_image_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_image_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_metric1": {"name": "ugc_stg__shares_metric1", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_metric1", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_metric2": {"name": "ugc_stg__shares_metric2", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_metric2", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_metric3": {"name": "ugc_stg__shares_metric3", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_metric3", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_post_id": {"name": "ugc_stg__shares_post_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_post_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_processing_time": {"name": "ugc_stg__shares_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_review_id": {"name": "ugc_stg__shares_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_review_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_signature": {"name": "ugc_stg__shares_signature", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_signature", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_social_network_id": {"name": "ugc_stg__shares_social_network_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_social_network_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_social_push_type_id": {"name": "ugc_stg__shares_social_push_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_social_push_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_ts_ms": {"name": "ugc_stg__shares_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_updated_at": {"name": "ugc_stg__shares_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shares_upsolver_schema_version": {"name": "ugc_stg__shares_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "original_file_path": "models/ugc/staging/base/ugc_stg__shares/ugc_stg__shares.md", "unique_id": "doc.yoda.ugc_stg__shares_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__syndicated_accounts": {"name": "ugc_stg__syndicated_accounts", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts", "block_contents": "Shopify Shop syndicated accounts"}, "doc.yoda.ugc_stg__syndicated_accounts_account_status": {"name": "ugc_stg__syndicated_accounts_account_status", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_account_status", "block_contents": "Status"}, "doc.yoda.ugc_stg__syndicated_accounts_created_at": {"name": "ugc_stg__syndicated_accounts_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_created_at", "block_contents": "Created at"}, "doc.yoda.ugc_stg__syndicated_accounts_feed_ftp_upload_address": {"name": "ugc_stg__syndicated_accounts_feed_ftp_upload_address", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_feed_ftp_upload_address", "block_contents": "Feed FTP upload address"}, "doc.yoda.ugc_stg__syndicated_accounts_id": {"name": "ugc_stg__syndicated_accounts_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_id", "block_contents": "Id"}, "doc.yoda.ugc_stg__syndicated_accounts_integration_start_date": {"name": "ugc_stg__syndicated_accounts_integration_start_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_integration_start_date", "block_contents": "Integration start date"}, "doc.yoda.ugc_stg__syndicated_accounts_last_full_feed_date": {"name": "ugc_stg__syndicated_accounts_last_full_feed_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_last_full_feed_date", "block_contents": "Last full feed date"}, "doc.yoda.ugc_stg__syndicated_accounts_last_full_feed_start_date": {"name": "ugc_stg__syndicated_accounts_last_full_feed_start_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_last_full_feed_start_date", "block_contents": "Last full feed start date"}, "doc.yoda.ugc_stg__syndicated_accounts_last_uploaded_date": {"name": "ugc_stg__syndicated_accounts_last_uploaded_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_last_uploaded_date", "block_contents": "Last uploaded date"}, "doc.yoda.ugc_stg__syndicated_accounts_processing_time": {"name": "ugc_stg__syndicated_accounts_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_processing_time", "block_contents": "Processing time"}, "doc.yoda.ugc_stg__syndicated_accounts_report_ftp_download_address": {"name": "ugc_stg__syndicated_accounts_report_ftp_download_address", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_report_ftp_download_address", "block_contents": "Report FTP download address"}, "doc.yoda.ugc_stg__syndicated_accounts_retailer_id": {"name": "ugc_stg__syndicated_accounts_retailer_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_retailer_id", "block_contents": "Retailer id"}, "doc.yoda.ugc_stg__syndicated_accounts_store_id": {"name": "ugc_stg__syndicated_accounts_store_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_store_id", "block_contents": "App key"}, "doc.yoda.ugc_stg__syndicated_accounts_ts_ms": {"name": "ugc_stg__syndicated_accounts_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_ts_ms", "block_contents": "ts_ms"}, "doc.yoda.ugc_stg__syndicated_accounts_updated_at": {"name": "ugc_stg__syndicated_accounts_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_updated_at", "block_contents": "Updated at"}, "doc.yoda.ugc_stg__syndicated_accounts_upsolver_schema_version": {"name": "ugc_stg__syndicated_accounts_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "original_file_path": "models/ugc/staging/base/ugc_stg__syndicated_accounts/ugc_stg__syndicated_accounts.md", "unique_id": "doc.yoda.ugc_stg__syndicated_accounts_upsolver_schema_version", "block_contents": "Upsolver schema version"}, "doc.yoda.ugc_stg__tags_to_reviews": {"name": "ugc_stg__tags_to_reviews", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__tags_to_reviews/ugc_stg__tags_to_reviews.md", "original_file_path": "models/ugc/staging/base/ugc_stg__tags_to_reviews/ugc_stg__tags_to_reviews.md", "unique_id": "doc.yoda.ugc_stg__tags_to_reviews", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__users": {"name": "ugc_stg__users", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__users_active": {"name": "ugc_stg__users_active", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_active", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_bio": {"name": "ugc_stg__users_bio", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_bio", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_company": {"name": "ugc_stg__users_company", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_company", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_confirmation_sent_at": {"name": "ugc_stg__users_confirmation_sent_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_confirmation_sent_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_confirmation_token": {"name": "ugc_stg__users_confirmation_token", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_confirmation_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_confirmed_at": {"name": "ugc_stg__users_confirmed_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_confirmed_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_created_at": {"name": "ugc_stg__users_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_current_sign_in_at": {"name": "ugc_stg__users_current_sign_in_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_current_sign_in_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_current_sign_in_ip": {"name": "ugc_stg__users_current_sign_in_ip", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_current_sign_in_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_display_name": {"name": "ugc_stg__users_display_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_display_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email": {"name": "ugc_stg__users_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_encrypted_password": {"name": "ugc_stg__users_encrypted_password", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_encrypted_password", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_failed_attempts": {"name": "ugc_stg__users_failed_attempts", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_failed_attempts", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_featured_image_id": {"name": "ugc_stg__users_featured_image_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_featured_image_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_first_name": {"name": "ugc_stg__users_first_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_first_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_id": {"name": "ugc_stg__users_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_last_name": {"name": "ugc_stg__users_last_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_last_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_last_sign_in_at": {"name": "ugc_stg__users_last_sign_in_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_last_sign_in_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_last_sign_in_ip": {"name": "ugc_stg__users_last_sign_in_ip", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_last_sign_in_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_locked_at": {"name": "ugc_stg__users_locked_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_locked_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_masked_pii": {"name": "ugc_stg__users_masked_pii", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_masked_pii", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_password_updated_at": {"name": "ugc_stg__users_password_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_password_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_phone": {"name": "ugc_stg__users_phone", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_phone", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_position": {"name": "ugc_stg__users_position", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_position", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_privilege_type_id": {"name": "ugc_stg__users_privilege_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_privilege_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_processing_time": {"name": "ugc_stg__users_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_remember_created_at": {"name": "ugc_stg__users_remember_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_remember_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_reset_password_sent_at": {"name": "ugc_stg__users_reset_password_sent_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_reset_password_sent_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_reset_password_token": {"name": "ugc_stg__users_reset_password_token", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_reset_password_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_sign_in_count": {"name": "ugc_stg__users_sign_in_count", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_sign_in_count", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_sign_up_country": {"name": "ugc_stg__users_sign_up_country", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_sign_up_country", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_sign_up_ip": {"name": "ugc_stg__users_sign_up_ip", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_sign_up_ip", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_slug": {"name": "ugc_stg__users_slug", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_slug", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_social_image": {"name": "ugc_stg__users_social_image", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_social_image", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_social_score": {"name": "ugc_stg__users_social_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_social_score", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_temp_email": {"name": "ugc_stg__users_temp_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_temp_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_ts_ms": {"name": "ugc_stg__users_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_unconfirmed_email": {"name": "ugc_stg__users_unconfirmed_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_unconfirmed_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_unlock_token": {"name": "ugc_stg__users_unlock_token", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_unlock_token", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_updated_at": {"name": "ugc_stg__users_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_upsolver_schema_version": {"name": "ugc_stg__users_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_yotpo_score": {"name": "ugc_stg__users_yotpo_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users/ugc_stg__users.md", "unique_id": "doc.yoda.ugc_stg__users_yotpo_score", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls": {"name": "ugc_stg__users_email_controls", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__users_email_controls_account_id": {"name": "ugc_stg__users_email_controls_account_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_created_at": {"name": "ugc_stg__users_email_controls_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_date_to_deliver": {"name": "ugc_stg__users_email_controls_date_to_deliver", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_date_to_deliver", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_delivered_at": {"name": "ugc_stg__users_email_controls_delivered_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_delivered_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_email_type_id": {"name": "ugc_stg__users_email_controls_email_type_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_email_type_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_formless": {"name": "ugc_stg__users_email_controls_formless", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_formless", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_id": {"name": "ugc_stg__users_email_controls_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_in_progress": {"name": "ugc_stg__users_email_controls_in_progress", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_in_progress", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_invalidated_at": {"name": "ugc_stg__users_email_controls_invalidated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_invalidated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_processing_time": {"name": "ugc_stg__users_email_controls_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_ts_ms": {"name": "ugc_stg__users_email_controls_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_updated_at": {"name": "ugc_stg__users_email_controls_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_upsolver_schema_version": {"name": "ugc_stg__users_email_controls_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_user_email": {"name": "ugc_stg__users_email_controls_user_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_user_email", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__users_email_controls_user_name": {"name": "ugc_stg__users_email_controls_user_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "original_file_path": "models/ugc/staging/base/ugc_stg__users_email_controls/ugc_stg__users_email_controls.md", "unique_id": "doc.yoda.ugc_stg__users_email_controls_user_name", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__videos": {"name": "ugc_stg__videos", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "unique_id": "doc.yoda.ugc_stg__videos", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__videos_created_at": {"name": "ugc_stg__videos_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "unique_id": "doc.yoda.ugc_stg__videos_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__videos_id": {"name": "ugc_stg__videos_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "unique_id": "doc.yoda.ugc_stg__videos_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__videos_processing_time": {"name": "ugc_stg__videos_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "unique_id": "doc.yoda.ugc_stg__videos_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__videos_published": {"name": "ugc_stg__videos_published", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "unique_id": "doc.yoda.ugc_stg__videos_published", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__videos_ts_ms": {"name": "ugc_stg__videos_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "unique_id": "doc.yoda.ugc_stg__videos_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__videos_updated_at": {"name": "ugc_stg__videos_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "unique_id": "doc.yoda.ugc_stg__videos_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__videos_upsolver_schema_version": {"name": "ugc_stg__videos_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "unique_id": "doc.yoda.ugc_stg__videos_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__videos_video_key": {"name": "ugc_stg__videos_video_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "unique_id": "doc.yoda.ugc_stg__videos_video_key", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__videos_videoable_id": {"name": "ugc_stg__videos_videoable_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "unique_id": "doc.yoda.ugc_stg__videos_videoable_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__videos_videoable_type": {"name": "ugc_stg__videos_videoable_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "original_file_path": "models/ugc/staging/base/ugc_stg__videos/ugc_stg__videos.md", "unique_id": "doc.yoda.ugc_stg__videos_videoable_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__votes": {"name": "ugc_stg__votes", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "unique_id": "doc.yoda.ugc_stg__votes", "block_contents": "TODO: Update Table Description"}, "doc.yoda.ugc_stg__votes_created_at": {"name": "ugc_stg__votes_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "unique_id": "doc.yoda.ugc_stg__votes_created_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__votes_id": {"name": "ugc_stg__votes_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "unique_id": "doc.yoda.ugc_stg__votes_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__votes_processing_time": {"name": "ugc_stg__votes_processing_time", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "unique_id": "doc.yoda.ugc_stg__votes_processing_time", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__votes_ts_ms": {"name": "ugc_stg__votes_ts_ms", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "unique_id": "doc.yoda.ugc_stg__votes_ts_ms", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__votes_updated_at": {"name": "ugc_stg__votes_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "unique_id": "doc.yoda.ugc_stg__votes_updated_at", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__votes_upsolver_schema_version": {"name": "ugc_stg__votes_upsolver_schema_version", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "unique_id": "doc.yoda.ugc_stg__votes_upsolver_schema_version", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__votes_user_id": {"name": "ugc_stg__votes_user_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "unique_id": "doc.yoda.ugc_stg__votes_user_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__votes_vote": {"name": "ugc_stg__votes_vote", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "unique_id": "doc.yoda.ugc_stg__votes_vote", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__votes_voteable_id": {"name": "ugc_stg__votes_voteable_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "unique_id": "doc.yoda.ugc_stg__votes_voteable_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__votes_voteable_type": {"name": "ugc_stg__votes_voteable_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "original_file_path": "models/ugc/staging/base/ugc_stg__votes/ugc_stg__votes.md", "unique_id": "doc.yoda.ugc_stg__votes_voteable_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts": {"name": "ugc_stg__relevant_reporting_reviews_accounts", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "unique_id": "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts", "block_contents": "Accounts that are applicable for reviews"}, "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts_account_id": {"name": "ugc_stg__relevant_reporting_reviews_accounts_account_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "unique_id": "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts_account_id", "block_contents": "Account id"}, "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts_account_name": {"name": "ugc_stg__relevant_reporting_reviews_accounts_account_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "unique_id": "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts_account_name", "block_contents": "Account name"}, "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts_account_url": {"name": "ugc_stg__relevant_reporting_reviews_accounts_account_url", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "unique_id": "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts_account_url", "block_contents": "Account URL"}, "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts_app_key": {"name": "ugc_stg__relevant_reporting_reviews_accounts_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "unique_id": "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts_app_key", "block_contents": "Account App (store) ID"}, "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts_name": {"name": "ugc_stg__relevant_reporting_reviews_accounts_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reporting_reviews_accounts/ugc_stg__relevant_reporting_reviews_accounts.md", "unique_id": "doc.yoda.ugc_stg__relevant_reporting_reviews_accounts_name", "block_contents": "Package name"}, "doc.yoda.ugc_stg__relevant_reviews_subject": {"name": "ugc_stg__relevant_reviews_subject", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject", "block_contents": "Relevant reviews for applicable accounts"}, "doc.yoda.ugc_stg__relevant_reviews_subject_account_id": {"name": "ugc_stg__relevant_reviews_subject_account_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_account_id", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__relevant_reviews_subject_app_key": {"name": "ugc_stg__relevant_reviews_subject_app_key", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_app_key", "block_contents": "Review app key"}, "doc.yoda.ugc_stg__relevant_reviews_subject_archived": {"name": "ugc_stg__relevant_reviews_subject_archived", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_archived", "block_contents": "Whether the review is archived"}, "doc.yoda.ugc_stg__relevant_reviews_subject_created_at": {"name": "ugc_stg__relevant_reviews_subject_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_created_at", "block_contents": "Review creation time"}, "doc.yoda.ugc_stg__relevant_reviews_subject_deactivated": {"name": "ugc_stg__relevant_reviews_subject_deactivated", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_deactivated", "block_contents": "Whether the review is deactivated"}, "doc.yoda.ugc_stg__relevant_reviews_subject_escalated": {"name": "ugc_stg__relevant_reviews_subject_escalated", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_escalated", "block_contents": "Whether the review is escalated"}, "doc.yoda.ugc_stg__relevant_reviews_subject_pushed_to_social": {"name": "ugc_stg__relevant_reviews_subject_pushed_to_social", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_pushed_to_social", "block_contents": "Whether the review pushed to social media (FB / Twitter)"}, "doc.yoda.ugc_stg__relevant_reviews_subject_review_content": {"name": "ugc_stg__relevant_reviews_subject_review_content", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_review_content", "block_contents": "Review content"}, "doc.yoda.ugc_stg__relevant_reviews_subject_review_date": {"name": "ugc_stg__relevant_reviews_subject_review_date", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_review_date", "block_contents": "Creation date of the review"}, "doc.yoda.ugc_stg__relevant_reviews_subject_review_id": {"name": "ugc_stg__relevant_reviews_subject_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_review_id", "block_contents": "Review ID"}, "doc.yoda.ugc_stg__relevant_reviews_subject_review_score": {"name": "ugc_stg__relevant_reviews_subject_review_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_review_score", "block_contents": "Review score"}, "doc.yoda.ugc_stg__relevant_reviews_subject_review_source": {"name": "ugc_stg__relevant_reviews_subject_review_source", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_review_source", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__relevant_reviews_subject_review_title": {"name": "ugc_stg__relevant_reviews_subject_review_title", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_review_title", "block_contents": "Review title"}, "doc.yoda.ugc_stg__relevant_reviews_subject_review_type": {"name": "ugc_stg__relevant_reviews_subject_review_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_review_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__relevant_reviews_subject_reviewer_display_name": {"name": "ugc_stg__relevant_reviews_subject_reviewer_display_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_reviewer_display_name", "block_contents": "Review displat name"}, "doc.yoda.ugc_stg__relevant_reviews_subject_sentiment_score": {"name": "ugc_stg__relevant_reviews_subject_sentiment_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_sentiment_score", "block_contents": "Review score"}, "doc.yoda.ugc_stg__relevant_reviews_subject_status": {"name": "ugc_stg__relevant_reviews_subject_status", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_status", "block_contents": "Review status"}, "doc.yoda.ugc_stg__relevant_reviews_subject_subject_entity_type": {"name": "ugc_stg__relevant_reviews_subject_subject_entity_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_subject_entity_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__relevant_reviews_subject_subject_id": {"name": "ugc_stg__relevant_reviews_subject_subject_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_subject_id", "block_contents": "Review subject (product/site/group) id"}, "doc.yoda.ugc_stg__relevant_reviews_subject_updated_at": {"name": "ugc_stg__relevant_reviews_subject_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_updated_at", "block_contents": "Last update date of the review"}, "doc.yoda.ugc_stg__relevant_reviews_subject_user_id": {"name": "ugc_stg__relevant_reviews_subject_user_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_user_id", "block_contents": "User id submitting the review"}, "doc.yoda.ugc_stg__relevant_reviews_subject_user_type": {"name": "ugc_stg__relevant_reviews_subject_user_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__relevant_reviews_subject/ugc_stg__relevant_reviews_subject.md", "unique_id": "doc.yoda.ugc_stg__relevant_reviews_subject_user_type", "block_contents": "TODO: Update Column {col_name} Information"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill": {"name": "ugc_stg__shopify_shop_reviews_backfill", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill", "block_contents": "Table containing all backfill reviews to be syndicated into Shopify Shop"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_content": {"name": "ugc_stg__shopify_shop_reviews_backfill_content", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_content", "block_contents": "Review content"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_created_at": {"name": "ugc_stg__shopify_shop_reviews_backfill_created_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_created_at", "block_contents": "Review created at"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_destroyed": {"name": "ugc_stg__shopify_shop_reviews_backfill_destroyed", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_destroyed", "block_contents": "If the review was destroyed"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_external_customer_id": {"name": "ugc_stg__shopify_shop_reviews_backfill_external_customer_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_external_customer_id", "block_contents": "External customer id"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_external_order_id": {"name": "ugc_stg__shopify_shop_reviews_backfill_external_order_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_external_order_id", "block_contents": "External order id"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_external_product_id": {"name": "ugc_stg__shopify_shop_reviews_backfill_external_product_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_external_product_id", "block_contents": "External product id"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_external_variant_id": {"name": "ugc_stg__shopify_shop_reviews_backfill_external_variant_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_external_variant_id", "block_contents": "External variant id"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_internal_product_id": {"name": "ugc_stg__shopify_shop_reviews_backfill_internal_product_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_internal_product_id", "block_contents": "Yotpo product id"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_merchant_replied_at": {"name": "ugc_stg__shopify_shop_reviews_backfill_merchant_replied_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_merchant_replied_at", "block_contents": "Merchant comment created at"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_merchant_reply": {"name": "ugc_stg__shopify_shop_reviews_backfill_merchant_reply", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_merchant_reply", "block_contents": "Merchant comment content"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_order_line_id": {"name": "ugc_stg__shopify_shop_reviews_backfill_order_line_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_order_line_id", "block_contents": "Order line id"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_published": {"name": "ugc_stg__shopify_shop_reviews_backfill_published", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_published", "block_contents": "Review published flag"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_published_at": {"name": "ugc_stg__shopify_shop_reviews_backfill_published_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_published_at", "block_contents": "Review publish date"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_review_id": {"name": "ugc_stg__shopify_shop_reviews_backfill_review_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_review_id", "block_contents": "Review id"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_reviewer_display_name": {"name": "ugc_stg__shopify_shop_reviews_backfill_reviewer_display_name", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_reviewer_display_name", "block_contents": "Review author display name"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_reviewer_email": {"name": "ugc_stg__shopify_shop_reviews_backfill_reviewer_email", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_reviewer_email", "block_contents": "Reviewer email"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_score": {"name": "ugc_stg__shopify_shop_reviews_backfill_score", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_score", "block_contents": "Review score"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_source": {"name": "ugc_stg__shopify_shop_reviews_backfill_source", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_source", "block_contents": "Review source"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_store_id": {"name": "ugc_stg__shopify_shop_reviews_backfill_store_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_store_id", "block_contents": "App key"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_title": {"name": "ugc_stg__shopify_shop_reviews_backfill_title", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_title", "block_contents": "Review title"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_type": {"name": "ugc_stg__shopify_shop_reviews_backfill_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_type", "block_contents": "Review type"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_updated_at": {"name": "ugc_stg__shopify_shop_reviews_backfill_updated_at", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_updated_at", "block_contents": "Review updated at"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_user_id": {"name": "ugc_stg__shopify_shop_reviews_backfill_user_id", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_user_id", "block_contents": "User id"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_user_type": {"name": "ugc_stg__shopify_shop_reviews_backfill_user_type", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_user_type", "block_contents": "User type"}, "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_verified_buyer": {"name": "ugc_stg__shopify_shop_reviews_backfill_verified_buyer", "resource_type": "doc", "package_name": "yoda", "path": "ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "original_file_path": "models/ugc/staging/marts_compatible/ugc_stg__shopify_shop_reviews_backfill/ugc_stg__shopify_shop_reviews_backfill.md", "unique_id": "doc.yoda.ugc_stg__shopify_shop_reviews_backfill_verified_buyer", "block_contents": "Review verified buyer flag"}, "doc.dbt.__overview__": {"name": "__overview__", "resource_type": "doc", "package_name": "dbt", "path": "overview.md", "original_file_path": "docs/overview.md", "unique_id": "doc.dbt.__overview__", "block_contents": "### Welcome!\n\nWelcome to the auto-generated documentation for your dbt project!\n\n### Navigation\n\nYou can use the `Project` and `Database` navigation tabs on the left side of the window to explore the models\nin your project.\n\n#### Project Tab\nThe `Project` tab mirrors the directory structure of your dbt project. In this tab, you can see all of the\nmodels defined in your dbt project, as well as models imported from dbt packages.\n\n#### Database Tab\nThe `Database` tab also exposes your models, but in a format that looks more like a database explorer. This view\nshows relations (tables and views) grouped into database schemas. Note that ephemeral models are _not_ shown\nin this interface, as they do not exist in the database.\n\n### Graph Exploration\nYou can click the blue icon on the bottom-right corner of the page to view the lineage graph of your models.\n\nOn model pages, you'll see the immediate parents and children of the model you're exploring. By clicking the `Expand`\nbutton at the top-right of this lineage pane, you'll be able to see all of the models that are used to build,\nor are built from, the model you're exploring.\n\nOnce expanded, you'll be able to use the `--select` and `--exclude` model selection syntax to filter the\nmodels in the graph. For more information on model selection, check out the [dbt docs](https://docs.getdbt.com/docs/model-selection-syntax).\n\nNote that you can also right-click on models to interactively filter and explore the graph.\n\n---\n\n### More information\n\n- [What is dbt](https://docs.getdbt.com/docs/introduction)?\n- Read the [dbt viewpoint](https://docs.getdbt.com/docs/viewpoint)\n- [Installation](https://docs.getdbt.com/docs/installation)\n- Join the [dbt Community](https://www.getdbt.com/community/) for questions and discussion"}}, "exposures": {"exposure.yoda.analytics___cs__24h": {"name": "analytics___cs__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/cs/exposures/scheduling/analytics___cs__24h.yml", "original_file_path": "models/analytics/cs/exposures/scheduling/analytics___cs__24h.yml", "unique_id": "exposure.yoda.analytics___cs__24h", "fqn": ["yoda", "analytics", "cs", "exposures", "scheduling", "analytics___cs__24h"], "type": "application", "owner": {"email": "sdaya@yotpo.com", "name": "shachar daya"}, "description": "Customer Service at 02 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-06-05", "upstream_models_freshness": [{"model_name": "analytics___finance__organization_product_revenue_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___finance__organization_product_revenue_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account_product", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account_tracking_daily", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__deal_summary_product", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__onboarding_project", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__opportunity", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__opportunity_line_item", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__custom_field_history", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__dim_sf_users_scd", "freshness": "AUTO"}, {"model_name": "analytics___sms__store", "freshness": "AUTO"}, {"model_name": "analytics___sms__store_metrics_monthly", "freshness": "AUTO"}, {"model_name": "platform_stg__dim_calendar", "freshness": "AUTO"}]}}, "tags": ["analytics", "yoda_scheduling", "cs"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___cs__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___cs__onboarding_project", "model.yoda.analytics___cs__opportunity_won_sale_daily", "model.yoda.analytics___cs__account_acv_metrics_daily", "model.yoda.analytics___cs__opportunity_won_product_start_date", "model.yoda.analytics___cs__opportunity_main_product_change", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___cs__organization_first_ht_opportunity"]}, "refs": [{"name": "analytics___cs__onboarding_project", "package": null, "version": null}, {"name": "analytics___cs__opportunity_won_sale_daily", "package": null, "version": null}, {"name": "analytics___cs__account_acv_metrics_daily", "package": null, "version": null}, {"name": "analytics___cs__opportunity_won_product_start_date", "package": null, "version": null}, {"name": "analytics___cs__opportunity_main_product_change", "package": null, "version": null}, {"name": "analytics___cs__opportunity_product", "package": null, "version": null}, {"name": "analytics___cs__organization_first_ht_opportunity", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082635.6925755}, "exposure.yoda.analytics___delivery__24h": {"name": "analytics___delivery__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/delivery/exposures/scheduling/analytics___delivery__24h.yml", "original_file_path": "models/analytics/delivery/exposures/scheduling/analytics___delivery__24h.yml", "unique_id": "exposure.yoda.analytics___delivery__24h", "fqn": ["yoda", "analytics", "delivery", "exposures", "scheduling", "analytics___delivery__24h"], "type": "application", "owner": {"email": "sstein@yotpo.com", "name": "shira stein"}, "description": "Delivery at 02 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-10-24", "upstream_models_freshness": [{"model_name": "analytics___finance__organization_product_revenue_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__service_case", "freshness": "AUTO"}]}}, "tags": ["analytics", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___delivery__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___delivery__organization_customer_care_over_time"]}, "refs": [{"name": "analytics___delivery__organization_customer_care_over_time", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082636.2368124}, "exposure.yoda.analytics___finance__24h": {"name": "analytics___finance__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/finance/exposures/scheduling/analytics___finance__24h.yml", "original_file_path": "models/analytics/finance/exposures/scheduling/analytics___finance__24h.yml", "unique_id": "exposure.yoda.analytics___finance__24h", "fqn": ["yoda", "analytics", "finance", "exposures", "scheduling", "analytics___finance__24h"], "type": "application", "owner": {"email": "sstein@yotpo.com", "name": "shira stein"}, "description": "finance analytics daily at 02:30 am dag", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-03-02", "upstream_models_freshness": [{"model_name": "analytics___cs__organization_first_ht_opportunity", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__account", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__contact", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__invoice", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__invoiceitem", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__order", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__orderaction", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__ordermrr", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__product", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__productrateplan", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__productrateplancharge", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__rateplan", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__rateplancharge", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__rateplanchargetier", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__shopify_billing_events", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__subscription", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization_name", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization_plan_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization_product_segment_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__plan", "freshness": "AUTO"}, {"model_name": "analytics___platform__store", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_plan_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_platform_account", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__organization", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__product_plan_name_rank", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__shopify_billing_charge_plan_mapping", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__opportunity", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_conversion_rate", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_opportunity_field_history", "freshness": "AUTO"}, {"model_name": "analytics___sms__free_credit_details", "freshness": "AUTO"}, {"model_name": "analytics___sms__store", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__api_calls", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__email_charge", "freshness": "AUTO"}, {"model_name": "analytics___utils_stg__calendar", "freshness": "365d"}, {"model_name": "platform_stg__dim_calendar", "freshness": "AUTO"}]}}, "tags": ["finance", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___finance__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___finance__zuora_product", "model.yoda.analytics___finance__zuora_subscription", "model.yoda.analytics___finance__zuora_order_mrr_details", "model.yoda.analytics___finance_stg__zuora_rateplan_charge", "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier", "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge", "model.yoda.analytics___finance__rate_plan_mrr_details", "model.yoda.analytics___finance__zuora_subscription_mrr_over_time", "model.yoda.analytics___finance_stg__zuora_subscription", "model.yoda.analytics___finance_stg__zuora_rateplan", "model.yoda.analytics___finance_stg__zuora_account", "model.yoda.analytics___finance_stg__zuora_order", "model.yoda.analytics___finance_stg__zuora_invoice", "model.yoda.analytics___finance_stg__zuora_order_action", "model.yoda.analytics___finance_stg__zuora_order_mrr", "model.yoda.analytics___finance_stg__zuora_product", "model.yoda.analytics___finance_stg__zuora_product_rateplan", "model.yoda.analytics___finance_stg__shopify_billing_event", "model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time", "model.yoda.analytics___finance__zuora_rateplan_charge", "model.yoda.analytics___finance__zuora_organization_plan_rank_daily", "model.yoda.analytics___finance__zuora_parent_organization", "model.yoda.analytics___finance_stg__zuora_invoice_item", "model.yoda.analytics___finance__shopify_billing_store_mapping", "model.yoda.analytics___finance__sf_opportunity_free_month_over_time", "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly", "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily", "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly", "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time", "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge", "model.yoda.analytics___finance__zuora_invoice", "model.yoda.analytics___finance__zuora_invoice_item", "model.yoda.analytics___finance__zuora_organization_product_usage_charge", "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily", "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__shopify_store_mapping", "model.yoda.analytics___finance__shopify_billing_event", "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily", "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly", "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__zuora_subscription_mrr_daily", "model.yoda.analytics___finance__zuora_organization_product_mrr_daily", "model.yoda.analytics___finance__zuora_subscription_mrr_monthly", "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly", "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly", "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly", "model.yoda.analytics___finance__organization_product_revenue_monthly", "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly", "model.yoda.analytics___finance__organization_product_revenue_monthly_lean", "model.yoda.analytics___finance__organization_revenue_monthly", "model.yoda.analytics___finance_stg__zuora_contact", "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard"]}, "refs": [{"name": "analytics___finance__zuora_account", "package": null, "version": null}, {"name": "analytics___finance__zuora_product", "package": null, "version": null}, {"name": "analytics___finance__zuora_subscription", "package": null, "version": null}, {"name": "analytics___finance__zuora_order_mrr_details", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_rateplan_charge", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_rateplan_charge_tier", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_product_rateplan_charge", "package": null, "version": null}, {"name": "analytics___finance__rate_plan_mrr_details", "package": null, "version": null}, {"name": "analytics___finance__zuora_subscription_mrr_over_time", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_subscription", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_rateplan", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_account", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_order", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_invoice", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_order_action", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_order_mrr", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_product", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_product_rateplan", "package": null, "version": null}, {"name": "analytics___finance_stg__shopify_billing_event", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_subscription_mrr_over_time", "package": null, "version": null}, {"name": "analytics___finance__zuora_rateplan_charge", "package": null, "version": null}, {"name": "analytics___finance__zuora_organization_plan_rank_daily", "package": null, "version": null}, {"name": "analytics___finance__zuora_parent_organization", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_invoice_item", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_store_mapping", "package": null, "version": null}, {"name": "analytics___finance__sf_opportunity_free_month_over_time", "package": null, "version": null}, {"name": "analytics___finance__communication_store_product_usage_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_organization_product_mrr_daily", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_organization_product_mrr_monthly", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_store_product_deactivated_over_time", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_store_product_uninstalled_over_time", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_daily", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_store_product_usage_charge", "package": null, "version": null}, {"name": "analytics___finance__zuora_invoice", "package": null, "version": null}, {"name": "analytics___finance__zuora_invoice_item", "package": null, "version": null}, {"name": "analytics___finance__zuora_organization_product_usage_charge", "package": null, "version": null}, {"name": "analytics___finance__zuora_organization_product_usage_revenue_daily", "package": null, "version": null}, {"name": "analytics___finance__zuora_organization_product_usage_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance__shopify_store_mapping", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_event", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_store_product_mrr_daily", "package": null, "version": null}, {"name": "analytics___finance__shopify_billing_store_product_mrr_monthly", "package": null, "version": null}, {"name": "analytics___finance__communication_organization_product_usage_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance__organization_product_usage_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance__zuora_subscription_mrr_daily", "package": null, "version": null}, {"name": "analytics___finance__zuora_organization_product_mrr_daily", "package": null, "version": null}, {"name": "analytics___finance__zuora_subscription_mrr_monthly", "package": null, "version": null}, {"name": "analytics___finance__zuora_organization_product_mrr_monthly", "package": null, "version": null}, {"name": "analytics___finance__zuora_organization_product_group_mrr_monthly", "package": null, "version": null}, {"name": "analytics___finance__organization_product_recurring_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance__organization_product_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance__organization_product_revenue_metrics_monthly", "package": null, "version": null}, {"name": "analytics___finance__organization_product_revenue_monthly_lean", "package": null, "version": null}, {"name": "analytics___finance__organization_revenue_monthly", "package": null, "version": null}, {"name": "analytics___finance_stg__zuora_contact", "package": null, "version": null}, {"name": "analytics___finance__organization_product_mom_mrr_cycle_dashboard", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082636.324637}, "exposure.yoda.analytics___finance__at_01_30": {"name": "analytics___finance__at_01_30", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/finance/exposures/scheduling/analytics___finance__at_01_30.yml", "original_file_path": "models/analytics/finance/exposures/scheduling/analytics___finance__at_01_30.yml", "unique_id": "exposure.yoda.analytics___finance__at_01_30", "fqn": ["yoda", "analytics", "finance", "exposures", "scheduling", "analytics___finance__at_01_30"], "type": "application", "owner": {"email": "cdemyanov@yotpo.com", "name": "coral demyanov"}, "description": "finance daily at 01:30 am dag", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 1 * * *", "start_date": "2022-11-02", "upstream_models_freshness": []}}, "tags": ["finance", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___finance__at_01_30", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___finance_stg__subscription", "model.yoda.analytics___finance_stg__rateplan", "model.yoda.analytics___finance_stg__account", "model.yoda.analytics___finance_stg__order", "model.yoda.analytics___finance_stg__invoice", "model.yoda.analytics___finance_stg__orderaction", "model.yoda.analytics___finance_stg__ordermrr", "model.yoda.analytics___finance_stg__product", "model.yoda.analytics___finance_stg__productrateplan", "model.yoda.analytics___finance_stg__shopify_billing_events", "model.yoda.analytics___finance_stg__rateplancharge", "model.yoda.analytics___finance_stg__rateplanchargetier", "model.yoda.analytics___finance_stg__productrateplancharge", "model.yoda.analytics___finance_stg__invoiceitem", "model.yoda.analytics___finance_stg__contact"]}, "refs": [{"name": "analytics___finance_stg__subscription", "package": null, "version": null}, {"name": "analytics___finance_stg__rateplan", "package": null, "version": null}, {"name": "analytics___finance_stg__account", "package": null, "version": null}, {"name": "analytics___finance_stg__order", "package": null, "version": null}, {"name": "analytics___finance_stg__invoice", "package": null, "version": null}, {"name": "analytics___finance_stg__orderaction", "package": null, "version": null}, {"name": "analytics___finance_stg__ordermrr", "package": null, "version": null}, {"name": "analytics___finance_stg__product", "package": null, "version": null}, {"name": "analytics___finance_stg__productrateplan", "package": null, "version": null}, {"name": "analytics___finance_stg__shopify_billing_events", "package": null, "version": null}, {"name": "analytics___finance_stg__rateplancharge", "package": null, "version": null}, {"name": "analytics___finance_stg__rateplanchargetier", "package": null, "version": null}, {"name": "analytics___finance_stg__productrateplancharge", "package": null, "version": null}, {"name": "analytics___finance_stg__invoiceitem", "package": null, "version": null}, {"name": "analytics___finance_stg__contact", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082636.3513184}, "exposure.yoda.analytics___gtm__24h": {"name": "analytics___gtm__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/gtm/exposures/scheduling/analytics___gtm__24h.yml", "original_file_path": "models/analytics/gtm/exposures/scheduling/analytics___gtm__24h.yml", "unique_id": "exposure.yoda.analytics___gtm__24h", "fqn": ["yoda", "analytics", "gtm", "exposures", "scheduling", "analytics___gtm__24h"], "type": "application", "owner": {"email": "tomer.inbal@yotpo.com", "name": "tomer inbal"}, "description": "Go to Market at 02 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-08-30", "upstream_models_freshness": [{"model_name": "analytics___gtm_stg__stg_nerd_acv_goals", "freshness": "AUTO"}, {"model_name": "analytics___gtm_stg__stg_nerd_sal_goals", "freshness": "AUTO"}, {"model_name": "analytics___new_revenue__deal_product", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__campaign_member_field_history", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__lead", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__mql", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__opportunity", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__partner_engagement", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__task", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__user_overtime", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_campaign", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_contact", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_cs_lead", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_event", "freshness": "AUTO"}]}}, "tags": ["analytics", "gtm", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___gtm__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___gtm_stg__acv_goal", "model.yoda.analytics___gtm_stg__sal_goal", "model.yoda.analytics___gtm__acv_goal_daily", "model.yoda.analytics___gtm__sal_goal_daily", "model.yoda.analytics___gtm__opportunity_attribution", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "model.yoda.analytics___gtm__opportunity_goal", "model.yoda.analytics___gtm__opporunity_dg_funnel", "model.yoda.analytics___gtm__crossell_opportunity_attribution", "model.yoda.analytics___gtm__new_sale_opportunity_attribution"]}, "refs": [{"name": "analytics___gtm_stg__acv_goal", "package": null, "version": null}, {"name": "analytics___gtm_stg__sal_goal", "package": null, "version": null}, {"name": "analytics___gtm__acv_goal_daily", "package": null, "version": null}, {"name": "analytics___gtm__sal_goal_daily", "package": null, "version": null}, {"name": "analytics___gtm__opportunity_attribution", "package": null, "version": null}, {"name": "analytics___gtm__new_sale_opportunity_attribution_action", "package": null, "version": null}, {"name": "analytics___gtm__opportunity_goal", "package": null, "version": null}, {"name": "analytics___gtm__opporunity_dg_funnel", "package": null, "version": null}, {"name": "analytics___gtm__crossell_opportunity_attribution", "package": null, "version": null}, {"name": "analytics___gtm__new_sale_opportunity_attribution", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082641.6599457}, "exposure.yoda.analytics___gtm__at_01_30": {"name": "analytics___gtm__at_01_30", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/gtm/exposures/scheduling/analytics___gtm__at_01_30.yml", "original_file_path": "models/analytics/gtm/exposures/scheduling/analytics___gtm__at_01_30.yml", "unique_id": "exposure.yoda.analytics___gtm__at_01_30", "fqn": ["yoda", "analytics", "gtm", "exposures", "scheduling", "analytics___gtm__at_01_30"], "type": "application", "owner": {"email": "tomer.inbal@yotpo.com", "name": "tomer inbal"}, "description": "Go to Market at 01 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 1 * * *", "start_date": "2023-08-30"}}, "tags": ["gtm", "analytics", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___gtm__at_01_30", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___gtm_stg__stg_nerd_acv_goals", "model.yoda.analytics___gtm_stg__stg_nerd_sal_goals"]}, "refs": [{"name": "analytics___gtm_stg__stg_nerd_acv_goals", "package": null, "version": null}, {"name": "analytics___gtm_stg__stg_nerd_sal_goals", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082641.667635}, "exposure.yoda.analytics___loyalty__24h": {"name": "analytics___loyalty__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/loyalty/exposures/scheduling/analytics___loyalty__24h.yml", "original_file_path": "models/analytics/loyalty/exposures/scheduling/analytics___loyalty__24h.yml", "unique_id": "exposure.yoda.analytics___loyalty__24h", "fqn": ["yoda", "analytics", "loyalty", "exposures", "scheduling", "analytics___loyalty__24h"], "type": "application", "owner": {"email": "koalas@yotpo.com", "name": "data group"}, "description": "Loyalty At 02 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2021-12-13", "upstream_models_freshness": [{"model_name": "analytics___platform__store", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_pixel_metrics_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__currency_exchange_rate", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account_product", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account_tracking_daily", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_opportunity", "freshness": "AUTO"}, {"model_name": "analytics___utils_stg__calendar", "freshness": "365d"}, {"model_name": "loyalty_stg__campaign_activation_histories", "freshness": "AUTO"}, {"model_name": "loyalty_stg__campaigns", "freshness": "AUTO"}, {"model_name": "loyalty_stg__config_item", "freshness": "3650d"}, {"model_name": "loyalty_stg__currency_rates", "freshness": "AUTO"}, {"model_name": "loyalty_stg__customers_vip_tiers", "freshness": "AUTO"}, {"model_name": "loyalty_stg__install_loyalty", "freshness": "AUTO"}, {"model_name": "loyalty_stg__merchants", "freshness": "AUTO"}, {"model_name": "loyalty_stg__perks", "freshness": "AUTO"}, {"model_name": "loyalty_stg__plans", "freshness": "AUTO"}, {"model_name": "loyalty_stg__point_redemptions", "freshness": "AUTO"}, {"model_name": "loyalty_stg__processors", "freshness": "AUTO"}, {"model_name": "loyalty_stg__purchases", "freshness": "AUTO"}, {"model_name": "loyalty_stg__purchases_redemptions", "freshness": "AUTO"}, {"model_name": "loyalty_stg__redemption_codes", "freshness": "AUTO"}, {"model_name": "loyalty_stg__redemption_options", "freshness": "AUTO"}, {"model_name": "loyalty_stg__referral_codes", "freshness": "AUTO"}, {"model_name": "loyalty_stg__referrals", "freshness": "AUTO"}, {"model_name": "loyalty_stg__subscriptions", "freshness": "AUTO"}, {"model_name": "loyalty_stg__swell_vip_tiers_settings", "freshness": "AUTO"}, {"model_name": "loyalty_stg__uninstall_loyalty", "freshness": "AUTO"}, {"model_name": "loyalty_stg__vip_tiers", "freshness": "AUTO"}, {"model_name": "loyalty_stg__yotpo_platform_accounts", "freshness": "AUTO"}, {"model_name": "platform_stg__dim_calendar", "freshness": "3650d"}]}}, "tags": ["yoda_scheduling", "loyalty", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=analytics___loyalty__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___loyalty_stg__merchant", "model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.analytics___loyalty_stg__swell_referral_codes", "model.yoda.analytics___loyalty_stg__redemption_option", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty_stg__point_redemption", "model.yoda.analytics___loyalty_stg__earning_rule", "model.yoda.analytics___loyalty_stg__swell_referrals", "model.yoda.analytics___loyalty__merchant_metrics_daily", "model.yoda.analytics___loyalty__daily_merchant", "model.yoda.analytics___loyalty_stg__segment_uninstall", "model.yoda.analytics___loyalty_stg__loyalty_subscription", "model.yoda.analytics___loyalty_stg__loyalty_plan", "model.yoda.analytics___loyalty_stg__segment_install_event_details", "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__organization_metrics_monthly", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.analytics___loyalty_stg__redemption_code", "model.yoda.analytics___loyalty_stg__purchase_redemption", "model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___loyalty_stg__perk", "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly", "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "model.yoda.analytics___loyalty_stg__earning_rule_activation_history", "model.yoda.analytics___loyalty__earning_rule_activation_daily", "model.yoda.analytics___loyalty__plan_metrics_daily", "model.yoda.analytics___loyalty__plan_metrics_monthly", "model.yoda.analytics___loyalty__merchant_activeness_daily", "model.yoda.analytics___loyalty_stg__processor", "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly", "model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats", "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings", "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time", "model.yoda.analytics___loyalty__merchant_monthly_element_activation"]}, "refs": [{"name": "analytics___loyalty_stg__merchant", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_account", "package": null, "version": null}, {"name": "analytics___loyalty_stg__swell_referral_codes", "package": null, "version": null}, {"name": "analytics___loyalty_stg__redemption_option", "package": null, "version": null}, {"name": "analytics___loyalty__merchant", "package": null, "version": null}, {"name": "analytics___loyalty_stg__point_redemption", "package": null, "version": null}, {"name": "analytics___loyalty_stg__earning_rule", "package": null, "version": null}, {"name": "analytics___loyalty_stg__swell_referrals", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_metrics_daily", "package": null, "version": null}, {"name": "analytics___loyalty__daily_merchant", "package": null, "version": null}, {"name": "analytics___loyalty_stg__segment_uninstall", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_subscription", "package": null, "version": null}, {"name": "analytics___loyalty_stg__loyalty_plan", "package": null, "version": null}, {"name": "analytics___loyalty_stg__segment_install_event_details", "package": null, "version": null}, {"name": "analytics___loyalty_stg__merchant_segment_event_over_time", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_daily", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_monthly", "package": null, "version": null}, {"name": "analytics___loyalty__organization_metrics_monthly", "package": null, "version": null}, {"name": "analytics___loyalty_stg__purchase", "package": null, "version": null}, {"name": "analytics___loyalty_stg__redemption_code", "package": null, "version": null}, {"name": "analytics___loyalty_stg__purchase_redemption", "package": null, "version": null}, {"name": "analytics___loyalty__redemption_details", "package": null, "version": null}, {"name": "analytics___loyalty_stg__perk", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_retention_cohort_monthly", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_metrics_cohort", "package": null, "version": null}, {"name": "analytics___loyalty_stg__earning_rule_activation_history", "package": null, "version": null}, {"name": "analytics___loyalty__earning_rule_activation_daily", "package": null, "version": null}, {"name": "analytics___loyalty__plan_metrics_daily", "package": null, "version": null}, {"name": "analytics___loyalty__plan_metrics_monthly", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_activeness_daily", "package": null, "version": null}, {"name": "analytics___loyalty_stg__processor", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_value_cohort_monthly", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "package": null, "version": null}, {"name": "analytics___loyalty__ht_customers_vip_tiers_stats", "package": null, "version": null}, {"name": "analytics___loyalty_stg__point_expiration_policy_settings", "package": null, "version": null}, {"name": "analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "package": null, "version": null}, {"name": "analytics___loyalty__point_expiration_policy_settings_over_time", "package": null, "version": null}, {"name": "analytics___loyalty__merchant_monthly_element_activation", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082642.1687293}, "exposure.yoda.analytics___marketing__24h": {"name": "analytics___marketing__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/marketing/exposures/scheduling/analytics___marketing__24h.yml", "original_file_path": "models/analytics/marketing/exposures/scheduling/analytics___marketing__24h.yml", "unique_id": "exposure.yoda.analytics___marketing__24h", "fqn": ["yoda", "analytics", "marketing", "exposures", "scheduling", "analytics___marketing__24h"], "type": "application", "owner": {"email": "tomer.inbal@yotpo.com", "name": "tomer inbal"}, "description": "Marketing at 02 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-09-04", "upstream_models_freshness": [{"model_name": "analytics___gtm__opportunity_goal", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__lead", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__mql", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__opportunity", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__dim_sf_users_scd", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_contact", "freshness": "AUTO"}]}}, "tags": ["analytics", "marketing", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___marketing__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___marketing__mql_opportunity_goal"]}, "refs": [{"name": "analytics___marketing__mql_opportunity_goal", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082643.8049753}, "exposure.yoda.analytics___new_revenue__24h": {"name": "analytics___new_revenue__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/new_revenue/exposures/scheduling/analytics___new_revenue__24h.yml", "original_file_path": "models/analytics/new_revenue/exposures/scheduling/analytics___new_revenue__24h.yml", "unique_id": "exposure.yoda.analytics___new_revenue__24h", "fqn": ["yoda", "analytics", "new_revenue", "exposures", "scheduling", "analytics___new_revenue__24h"], "type": "application", "owner": {"email": "tomer.inbal@yotpo.com", "name": "bi-dev"}, "description": "New Revenue at 02 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-04-20", "upstream_models_freshness": [{"model_name": "analytics___gtm__acv_goal_daily", "freshness": "AUTO"}, {"model_name": "analytics___gtm__sal_goal_daily", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__deal_summary_product", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__opportunity", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__opportunity_line_item", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__dim_sf_users_scd", "freshness": "AUTO"}, {"model_name": "analytics___sms__store_metrics_daily", "freshness": "AUTO"}]}}, "tags": ["new_revenue", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___new_revenue__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___new_revenue__deal_product", "model.yoda.analytics___new_revenue__operational_performance_daily", "model.yoda.analytics___new_revenue__deal_product_scd"]}, "refs": [{"name": "analytics___new_revenue__deal_product", "package": null, "version": null}, {"name": "analytics___new_revenue__operational_performance_daily", "package": null, "version": null}, {"name": "analytics___new_revenue__deal_product_scd", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082643.8969882}, "exposure.yoda.analytics___partners__24h": {"name": "analytics___partners__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/partners/exposures/scheduling/analytics___partners__24h.yml", "original_file_path": "models/analytics/partners/exposures/scheduling/analytics___partners__24h.yml", "unique_id": "exposure.yoda.analytics___partners__24h", "fqn": ["yoda", "analytics", "partners", "exposures", "scheduling", "analytics___partners__24h"], "type": "application", "owner": {"email": "michael.kobaivanov@yotpo.com", "name": "michael kobaivanov"}, "description": "Partners at 02 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-05-31", "upstream_models_freshness": [{"model_name": "analytics___partners_stg__partner_manager_goals", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__opportunity", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__partner_engagement", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__dim_sf_users_scd", "freshness": "AUTO"}]}}, "tags": ["analytics", "yoda_scheduling", "partners"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___partners__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___partners__partner_engagement_opportunity", "model.yoda.analytics___partners_stg__manager_goals", "model.yoda.analytics___partners__manager_performance_monthly"]}, "refs": [{"name": "analytics___partners__partner_engagement_opportunity", "package": null, "version": null}, {"name": "analytics___partners_stg__manager_goals", "package": null, "version": null}, {"name": "analytics___partners__manager_performance_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082644.054543}, "exposure.yoda.analytics___partners__at_01_30": {"name": "analytics___partners__at_01_30", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/partners/exposures/scheduling/analytics___partners__at_01_30.yml", "original_file_path": "models/analytics/partners/exposures/scheduling/analytics___partners__at_01_30.yml", "unique_id": "exposure.yoda.analytics___partners__at_01_30", "fqn": ["yoda", "analytics", "partners", "exposures", "scheduling", "analytics___partners__at_01_30"], "type": "application", "owner": {"email": "tomer.inbal@yotpo.com", "name": "tomer inbal"}, "description": "Partners at 01 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 1 * * *", "start_date": "2023-06-26"}}, "tags": ["partners", "analytics", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___partners__at_01_30", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___partners_stg__partner_manager_goals"]}, "refs": [{"name": "analytics___partners_stg__partner_manager_goals", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082644.06068}, "exposure.yoda.analytics___platform__24h": {"name": "analytics___platform__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/platform/exposures/scheduling/analytics___platform__24h.yml", "original_file_path": "models/analytics/platform/exposures/scheduling/analytics___platform__24h.yml", "unique_id": "exposure.yoda.analytics___platform__24h", "fqn": ["yoda", "analytics", "platform", "exposures", "scheduling", "analytics___platform__24h"], "type": "application", "owner": {"email": "lior.shabi@yotpo.com", "name": "lior shabi"}, "description": "platform general analytics mart models daily at 02:30 dag", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-01-12", "upstream_models_freshness": [{"model_name": "analytics___finance__organization_product_revenue_monthly", "freshness": "AUTO"}, {"model_name": "analytics___finance__organization_revenue_monthly", "freshness": "AUTO"}, {"model_name": "analytics___cs__opportunity_won_product_start_date", "freshness": "AUTO"}, {"model_name": "analytics___delivery__organization_customer_care_over_time", "freshness": "AUTO"}, {"model_name": "analytics___finance__zuora_account", "freshness": "AUTO"}, {"model_name": "analytics___finance__zuora_parent_organization", "freshness": "AUTO"}, {"model_name": "analytics___finance_stg__zuora_contact", "freshness": "AUTO"}, {"model_name": "analytics___loyalty__merchant_plan_monthly", "freshness": "AUTO"}, {"model_name": "analytics___loyalty_stg__loyalty_account", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization_plan_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization_plan_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_order_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__account", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__account_platform", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__category", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__organization", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__owner_feature", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__platform_type", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__question", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__similar_store", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__store_user_mapping", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__user", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__opportunity", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_account", "freshness": "AUTO"}, {"model_name": "analytics___sms__store", "freshness": "AUTO"}, {"model_name": "analytics___sms__store_activeness_daily", "freshness": "AUTO"}, {"model_name": "analytics___sms__store_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___subscriptions__store_activeness_daily", "freshness": "AUTO"}, {"model_name": "analytics___synergies__organization_synergy_activeness_monthly", "freshness": "AUTO"}, {"model_name": "analytics___ugc__store_installation_over_time", "freshness": "AUTO"}, {"model_name": "analytics___ugc__store_product_activeness_monthly", "freshness": "AUTO"}, {"model_name": "platform_stg__dim_calendar", "freshness": "AUTO"}]}}, "tags": ["platform", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___platform__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__store_metrics_daily", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___platform__store_activeness_daily", "model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__question_details", "model.yoda.analytics___platform__store_platform_account", "model.yoda.analytics___platform__store_product_activeness_monthly", "model.yoda.analytics___platform__opportunity_ht_ss_over_time", "model.yoda.analytics___platform__organization_opportunity_monthly", "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "model.yoda.analytics___platform__store_snapshot_daily", "model.yoda.analytics___platform__organization_product_segment_daily", "model.yoda.analytics___platform__organization_product_segment_monthly", "model.yoda.analytics___platform__organization_segment_monthly", "model.yoda.analytics___platform__organization_platform", "model.yoda.analytics___platform__organization_industry", "model.yoda.analytics___platform__organization_country", "model.yoda.analytics___platform__organization_product_activeness_monthly", "model.yoda.analytics___platform__organization_name"]}, "refs": [{"name": "analytics___platform__store", "package": null, "version": null}, {"name": "analytics___platform__organization", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___platform__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__store_activeness_daily", "package": null, "version": null}, {"name": "analytics___platform__organization_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__question_details", "package": null, "version": null}, {"name": "analytics___platform__store_platform_account", "package": null, "version": null}, {"name": "analytics___platform__store_product_activeness_monthly", "package": null, "version": null}, {"name": "analytics___platform__opportunity_ht_ss_over_time", "package": null, "version": null}, {"name": "analytics___platform__organization_opportunity_monthly", "package": null, "version": null}, {"name": "analytics___platform__store_dynamic_date_explode_from_creation", "package": null, "version": null}, {"name": "analytics___platform__store_snapshot_daily", "package": null, "version": null}, {"name": "analytics___platform__organization_product_segment_daily", "package": null, "version": null}, {"name": "analytics___platform__organization_product_segment_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_segment_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_platform", "package": null, "version": null}, {"name": "analytics___platform__organization_industry", "package": null, "version": null}, {"name": "analytics___platform__organization_country", "package": null, "version": null}, {"name": "analytics___platform__organization_product_activeness_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_name", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082644.315774}, "exposure.yoda.analytics___platform__At_00_30": {"name": "analytics___platform__At_00_30", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/platform/exposures/scheduling/analytics___platform__At_00_30.yml", "original_file_path": "models/analytics/platform/exposures/scheduling/analytics___platform__At_00_30.yml", "unique_id": "exposure.yoda.analytics___platform__At_00_30", "fqn": ["yoda", "analytics", "platform", "exposures", "scheduling", "analytics___platform__At_00_30"], "type": "application", "owner": {"email": "koalas@yotpo.com", "name": "data group"}, "description": "Platform At 00 30 DAG - Will be renamed to analytics___platform_snapshot_at_00_30", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 0 * * *", "start_date": "2022-08-22", "upstream_models_freshness": [{"model_name": "analytics___platform_stg__owner_plan", "freshness": "7d"}]}}, "tags": ["yoda_scheduling", "platform", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=analytics___platform__At_00_30", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___platform_stg__owner_plan_snapshot"]}, "refs": [{"name": "analytics___platform_stg__owner_plan_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082644.3256688}, "exposure.yoda.analytics___platform__order_24h": {"name": "analytics___platform__order_24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/platform/exposures/scheduling/analytics___platform__order_24h.yml", "original_file_path": "models/analytics/platform/exposures/scheduling/analytics___platform__order_24h.yml", "unique_id": "exposure.yoda.analytics___platform__order_24h", "fqn": ["yoda", "analytics", "platform", "exposures", "scheduling", "analytics___platform__order_24h"], "type": "application", "owner": {"email": "lior.shabi@yotpo.com", "name": "lior shabi"}, "description": "platform orders analytics models daily at 02:30 dag", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-09-26", "upstream_models_freshness": [{"model_name": "analytics___loyalty_stg__loyalty_account", "freshness": "AUTO"}, {"model_name": "analytics___loyalty_stg__purchase", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__currency_exchange_rate", "freshness": "AUTO"}, {"model_name": "analytics___sms__store", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__shopify_orders", "freshness": "AUTO"}, {"model_name": "platform_stg__fulfillments", "freshness": "AUTO"}, {"model_name": "platform_stg__order_lines", "freshness": "AUTO"}, {"model_name": "platform_stg__orders", "freshness": "AUTO"}]}}, "tags": ["platform", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___platform__order_24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___platform_stg__store_order", "model.yoda.analytics___platform_stg__fulfillment", "model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___platform__order", "model.yoda.analytics___platform_stg__order_line", "model.yoda.analytics___platform__order_metrics"]}, "refs": [{"name": "analytics___platform_stg__store_order", "package": null, "version": null}, {"name": "analytics___platform_stg__fulfillment", "package": null, "version": null}, {"name": "analytics___platform__store_order_daily", "package": null, "version": null}, {"name": "analytics___platform__order", "package": null, "version": null}, {"name": "analytics___platform_stg__order_line", "package": null, "version": null}, {"name": "analytics___platform__order_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082644.3375628}, "exposure.yoda.analytics___platform__pixel_24h": {"name": "analytics___platform__pixel_24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/platform/exposures/scheduling/analytics___platform__pixel_24h.yml", "original_file_path": "models/analytics/platform/exposures/scheduling/analytics___platform__pixel_24h.yml", "unique_id": "exposure.yoda.analytics___platform__pixel_24h", "fqn": ["yoda", "analytics", "platform", "exposures", "scheduling", "analytics___platform__pixel_24h"], "type": "application", "owner": {"email": "lior.shabi@yotpo.com", "name": "lior shabi"}, "description": "platform pixel analytics models daily at 02:30 dag", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-09-26", "upstream_models_freshness": [{"model_name": "analytics___loyalty__merchant", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__pixel_action_mapping", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__pixel_category_mapping", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__pixel_duration_mapping", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__pixel_os_family_mobile_mapping", "freshness": "AUTO"}, {"model_name": "platform_stg__onsite_v2", "freshness": "AUTO"}, {"model_name": "platform_stg__onsite_v3", "freshness": "AUTO"}]}}, "tags": ["platform", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___platform__pixel_24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three", "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three", "model.yoda.analytics___platform__store_pixel_metrics_daily"]}, "refs": [{"name": "analytics___platform_stg__ugc_pixel_widget_v_two", "package": null, "version": null}, {"name": "analytics___platform_stg__ugc_pixel_widget_v_three", "package": null, "version": null}, {"name": "analytics___platform_stg__loyalty_pixel_widget_v_two", "package": null, "version": null}, {"name": "analytics___platform_stg__loyalty_pixel_widget_v_three", "package": null, "version": null}, {"name": "analytics___platform_stg__subscriptions_pixel_widget_v_three", "package": null, "version": null}, {"name": "analytics___platform__store_pixel_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082644.3507638}, "exposure.yoda.analytics___platform__plan_24h": {"name": "analytics___platform__plan_24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/platform/exposures/scheduling/analytics___platform__plan_24h.yml", "original_file_path": "models/analytics/platform/exposures/scheduling/analytics___platform__plan_24h.yml", "unique_id": "exposure.yoda.analytics___platform__plan_24h", "fqn": ["yoda", "analytics", "platform", "exposures", "scheduling", "analytics___platform__plan_24h"], "type": "application", "owner": {"email": "lior.shabi@yotpo.com", "name": "lior shabi"}, "description": "platform plan analytics models daily at 02:30 dag", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-09-26", "upstream_models_freshness": [{"model_name": "analytics___finance__zuora_account", "freshness": "AUTO"}, {"model_name": "analytics___finance__zuora_organization_plan_rank_daily", "freshness": "AUTO"}, {"model_name": "analytics___loyalty__merchant_plan_daily", "freshness": "3h"}, {"model_name": "analytics___platform__store", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__owner_plan_snapshot", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__product_plan_name_rank", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__saas_organization_daily_history", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__static_deprecated_package", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__opportunity", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__opportunity_line_item", "freshness": "AUTO"}, {"model_name": "analytics___sms__store_plan_daily", "freshness": "AUTO"}, {"model_name": "platform_stg__dim_calendar", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization", "freshness": "AUTO"}, {"model_name": "platform_stg__categories", "freshness": "AUTO"}, {"model_name": "platform_stg__owners_packages", "freshness": "AUTO"}, {"model_name": "platform_stg__owners_packages_history", "freshness": "AUTO"}, {"model_name": "platform_stg__package_tag_types", "freshness": "AUTO"}, {"model_name": "platform_stg__package_tags", "freshness": "AUTO"}, {"model_name": "platform_stg__packages", "freshness": "AUTO"}]}}, "tags": ["platform", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___platform__plan_24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___platform__plan", "model.yoda.analytics___platform__platform_store_plan_over_time", "model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__owner_plan_event", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___platform_stg__plan_tag_type", "model.yoda.analytics___platform_stg__plan_tag", "model.yoda.analytics___platform_stg__plan_category", "model.yoda.analytics___platform_stg__owner_plan", "model.yoda.analytics___platform_stg__owner_plan_event_details", "model.yoda.analytics___platform_stg__plan", "model.yoda.analytics___platform_stg__owner_plan_history"]}, "refs": [{"name": "analytics___platform__plan", "package": null, "version": null}, {"name": "analytics___platform__platform_store_plan_over_time", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_monthly", "package": null, "version": null}, {"name": "analytics___platform__owner_plan_event", "package": null, "version": null}, {"name": "analytics___platform__store_plan_daily", "package": null, "version": null}, {"name": "analytics___platform__organization_plan_daily", "package": null, "version": null}, {"name": "analytics___platform_stg__plan_tag_type", "package": null, "version": null}, {"name": "analytics___platform_stg__plan_tag", "package": null, "version": null}, {"name": "analytics___platform_stg__plan_category", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_plan", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_plan_event_details", "package": null, "version": null}, {"name": "analytics___platform_stg__plan", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_plan_history", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082644.37392}, "exposure.yoda.analytics___platform__product_metrics_24h": {"name": "analytics___platform__product_metrics_24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/platform/exposures/scheduling/analytics___platform__product_metrics_24h.yml", "original_file_path": "models/analytics/platform/exposures/scheduling/analytics___platform__product_metrics_24h.yml", "unique_id": "exposure.yoda.analytics___platform__product_metrics_24h", "fqn": ["yoda", "analytics", "platform", "exposures", "scheduling", "analytics___platform__product_metrics_24h"], "type": "application", "owner": {"email": "tomer.inbal@yotpo.com", "name": "tomer inbal"}, "description": "Product Metrics at 02 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-09-19", "upstream_models_freshness": [{"model_name": "analytics___loyalty__merchant_plan_daily", "freshness": "AUTO"}, {"model_name": "analytics___loyalty__merchant_plan_metrics_cohort", "freshness": "AUTO"}, {"model_name": "analytics___loyalty__merchant_plan_value_cohort_monthly", "freshness": "AUTO"}, {"model_name": "analytics___loyalty__organization_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__store", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_dynamic_date_explode_from_creation", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account_product", "freshness": "AUTO"}, {"model_name": "analytics___sms__store_metrics_daily", "freshness": "AUTO"}, {"model_name": "analytics___sms__store_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___synergies__activation_level_daily", "freshness": "AUTO"}, {"model_name": "analytics___ugc__store_metrics_daily", "freshness": "AUTO"}, {"model_name": "analytics___ugc__store_metrics_monthly", "freshness": "AUTO"}]}}, "tags": ["analytics", "yoda_scheduling", "product_metrics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___platform__product_metrics_24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___platform__store_product_metrics_daily", "model.yoda.analytics___platform__store_product_metrics_monthly", "model.yoda.analytics___platform__store_product_metrics_daily_snapshot", "model.yoda.analytics___platform__store_product_metrics_daily_diff", "model.yoda.analytics___platform__store_product_metrics_lifetime", "model.yoda.analytics___platform__store_product_metrics_lifetime_scd", "model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot", "model.yoda.analytics___platform__store_product_metrics_monthly_unpivot", "model.yoda.analytics___platform__organization_product_metrics_monthly", "model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot", "model.yoda.analytics___platform__product_metrics_snapshot_monthly"]}, "refs": [{"name": "analytics___platform__store_product_metrics_daily", "package": null, "version": null}, {"name": "analytics___platform__store_product_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__store_product_metrics_daily_snapshot", "package": null, "version": null}, {"name": "analytics___platform__store_product_metrics_daily_diff", "package": null, "version": null}, {"name": "analytics___platform__store_product_metrics_lifetime", "package": null, "version": null}, {"name": "analytics___platform__store_product_metrics_lifetime_scd", "package": null, "version": null}, {"name": "analytics___platform__store_product_metrics_lifetime_unpivot", "package": null, "version": null}, {"name": "analytics___platform__store_product_metrics_monthly_unpivot", "package": null, "version": null}, {"name": "analytics___platform__organization_product_metrics_monthly", "package": null, "version": null}, {"name": "analytics___platform__organization_product_metrics_monthly_unpivot", "package": null, "version": null}, {"name": "analytics___platform__product_metrics_snapshot_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082644.3928857}, "exposure.yoda.analytics___platform__schedule_once_models": {"name": "analytics___platform__schedule_once_models", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/platform/exposures/scheduling/analytics___platform__schedule_once_models.yml", "original_file_path": "models/analytics/platform/exposures/scheduling/analytics___platform__schedule_once_models.yml", "unique_id": "exposure.yoda.analytics___platform__schedule_once_models", "fqn": ["yoda", "analytics", "platform", "exposures", "scheduling", "analytics___platform__schedule_once_models"], "type": "application", "owner": {"email": "doron.kruh@yotpo.com", "name": "doron kruh"}, "description": "models that should be run only once", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@once", "start_date": "2022-12-28", "upstream_models_freshness": []}}, "tags": ["platform", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___platform__schedule_once_models", "depends_on": {"macros": [], "nodes": ["model.yoda.platform_stg__dim_calendar", "model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.analytics___platform_stg__pixel_duration_mapping", "model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping", "model.yoda.analytics___platform_stg__deprecated_packages", "model.yoda.analytics___platform_stg__static_deprecated_package", "model.yoda.analytics___platform_stg__saas_store_plan_history", "model.yoda.analytics___platform_stg__subscriptions_contract_history", "model.yoda.analytics___platform_stg__saas_organization_daily_history", "model.yoda.analytics___platform_stg__product_plan_name_rank", "model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping", "model.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "model.yoda.platform_stg__timezone_country_mapping", "model.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27"]}, "refs": [{"name": "platform_stg__dim_calendar", "package": null, "version": null}, {"name": "analytics___platform_stg__pixel_category_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__pixel_action_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__pixel_duration_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__pixel_os_family_mobile_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__deprecated_packages", "package": null, "version": null}, {"name": "analytics___platform_stg__static_deprecated_package", "package": null, "version": null}, {"name": "analytics___platform_stg__saas_store_plan_history", "package": null, "version": null}, {"name": "analytics___platform_stg__subscriptions_contract_history", "package": null, "version": null}, {"name": "analytics___platform_stg__saas_organization_daily_history", "package": null, "version": null}, {"name": "analytics___platform_stg__product_plan_name_rank", "package": null, "version": null}, {"name": "analytics___platform_stg__shopify_billing_charge_plan_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "package": null, "version": null}, {"name": "platform_stg__timezone_country_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082644.4053206}, "exposure.yoda.analytics___platform__segment_24h": {"name": "analytics___platform__segment_24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/platform/exposures/scheduling/analytics___platform__segment_24h.yml", "original_file_path": "models/analytics/platform/exposures/scheduling/analytics___platform__segment_24h.yml", "unique_id": "exposure.yoda.analytics___platform__segment_24h", "fqn": ["yoda", "analytics", "platform", "exposures", "scheduling", "analytics___platform__segment_24h"], "type": "application", "owner": {"email": "lior.shabi@yotpo.com", "name": "lior shabi"}, "description": "platform segment analytics models daily at 02:30 dag", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-09-26", "upstream_models_freshness": [{"model_name": "infra_stg__page", "freshness": "AUTO"}, {"model_name": "platform_stg__account_created", "freshness": "AUTO"}, {"model_name": "platform_stg__activation_step", "freshness": "AUTO"}, {"model_name": "platform_stg__app_install_completed", "freshness": "AUTO"}, {"model_name": "platform_stg__app_uninstalled", "freshness": "AUTO"}, {"model_name": "platform_stg__b2b", "freshness": "AUTO"}, {"model_name": "platform_stg__file_exported", "freshness": "AUTO"}, {"model_name": "platform_stg__limit_reached", "freshness": "AUTO"}, {"model_name": "platform_stg__onboarding", "freshness": "AUTO"}, {"model_name": "platform_stg__popup_displayed", "freshness": "AUTO"}, {"model_name": "platform_stg__product_enabled", "freshness": "AUTO"}, {"model_name": "platform_stg__uninstalled_yotpo", "freshness": "AUTO"}]}}, "tags": ["platform", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___platform__segment_24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___platform_stg__segment_app_install_completed", "model.yoda.analytics___platform_stg__segment_app_uninstalled", "model.yoda.analytics___platform_stg__segment_activation_step", "model.yoda.analytics___platform_stg__segment_onboarding", "model.yoda.analytics___platform_stg__segment_b_to_b", "model.yoda.analytics___platform_stg__segment_product_enabled", "model.yoda.analytics___platform_stg__segment_popup_displayed", "model.yoda.analytics___platform_stg__segment_uninstalled_yotpo", "model.yoda.analytics___platform_stg__segment_account_created", "model.yoda.analytics___platform_stg__segment_limit_reached", "model.yoda.analytics___platform_stg__segment_page_event", "model.yoda.analytics___platform_stg__segment_file_exported"]}, "refs": [{"name": "analytics___platform_stg__segment_app_install_completed", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_app_uninstalled", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_activation_step", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_onboarding", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_b_to_b", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_product_enabled", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_popup_displayed", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_uninstalled_yotpo", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_account_created", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_limit_reached", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_page_event", "package": null, "version": null}, {"name": "analytics___platform_stg__segment_file_exported", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082644.4244738}, "exposure.yoda.analytics___platform__staging_24h": {"name": "analytics___platform__staging_24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/platform/exposures/scheduling/analytics___platform__staging_24h.yml", "original_file_path": "models/analytics/platform/exposures/scheduling/analytics___platform__staging_24h.yml", "unique_id": "exposure.yoda.analytics___platform__staging_24h", "fqn": ["yoda", "analytics", "platform", "exposures", "scheduling", "analytics___platform__staging_24h"], "type": "application", "owner": {"email": "lior.shabi@yotpo.com", "name": "lior shabi"}, "description": "platform general analytics staging models daily at 02:00 dag", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 2 * * *", "start_date": "2023-01-12", "upstream_models_freshness": [{"model_name": "platform_stg__account_platforms", "freshness": "AUTO"}, {"model_name": "platform_stg__accounts", "freshness": "AUTO"}, {"model_name": "platform_stg__apps", "freshness": "AUTO"}, {"model_name": "platform_stg__categories", "freshness": "AUTO"}, {"model_name": "platform_stg__currency_rates", "freshness": "AUTO"}, {"model_name": "platform_stg__features", "freshness": "AUTO"}, {"model_name": "platform_stg__organizations", "freshness": "AUTO"}, {"model_name": "platform_stg__owner_feature_settings", "freshness": "AUTO"}, {"model_name": "platform_stg__owners_features", "freshness": "AUTO"}, {"model_name": "platform_stg__platform_types", "freshness": "AUTO"}, {"model_name": "platform_stg__products", "freshness": "AUTO"}, {"model_name": "ugc_stg__users", "freshness": "AUTO"}]}}, "tags": ["platform", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___platform__staging_24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___platform_stg__questions", "model.yoda.analytics___platform_stg__account", "model.yoda.analytics___platform_stg__account_platform", "model.yoda.analytics___platform_stg__platform_type", "model.yoda.analytics___platform_stg__organization", "model.yoda.analytics___platform_stg__currency_exchange_rate", "model.yoda.analytics___platform_stg__category", "model.yoda.analytics___platform_stg__similar_store", "model.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping", "model.yoda.analytics___platform_stg__product", "model.yoda.analytics___platform_stg__owner_feature", "model.yoda.analytics___platform_stg__owner_feature_setting", "model.yoda.analytics___platform_stg__feature", "model.yoda.analytics___platform_stg__question", "model.yoda.analytics___platform_stg__similar_stores", "model.yoda.analytics___platform_stg__phone_code_country_mapping", "model.yoda.analytics___platform_stg__store_user_mapping", "model.yoda.analytics___platform_stg__user"]}, "refs": [{"name": "analytics___platform_stg__questions", "package": null, "version": null}, {"name": "analytics___platform_stg__account", "package": null, "version": null}, {"name": "analytics___platform_stg__account_platform", "package": null, "version": null}, {"name": "analytics___platform_stg__platform_type", "package": null, "version": null}, {"name": "analytics___platform_stg__organization", "package": null, "version": null}, {"name": "analytics___platform_stg__currency_exchange_rate", "package": null, "version": null}, {"name": "analytics___platform_stg__category", "package": null, "version": null}, {"name": "analytics___platform_stg__similar_store", "package": null, "version": null}, {"name": "analytics___platform_stg__sms_loyalty_synergy_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__product", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_feature", "package": null, "version": null}, {"name": "analytics___platform_stg__owner_feature_setting", "package": null, "version": null}, {"name": "analytics___platform_stg__feature", "package": null, "version": null}, {"name": "analytics___platform_stg__question", "package": null, "version": null}, {"name": "analytics___platform_stg__similar_stores", "package": null, "version": null}, {"name": "analytics___platform_stg__phone_code_country_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__store_user_mapping", "package": null, "version": null}, {"name": "analytics___platform_stg__user", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082644.4453335}, "exposure.yoda.analytics___salesforce__24h": {"name": "analytics___salesforce__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/salesforce/exposures/scheduling/analytics___salesforce__24h.yml", "original_file_path": "models/analytics/salesforce/exposures/scheduling/analytics___salesforce__24h.yml", "unique_id": "exposure.yoda.analytics___salesforce__24h", "fqn": ["yoda", "analytics", "salesforce", "exposures", "scheduling", "analytics___salesforce__24h"], "type": "application", "owner": {"email": "sstein@yotpo.com", "name": "bi-dev"}, "description": "Salesforce At 02 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-01-31", "upstream_models_freshness": [{"model_name": "analytics___platform__organization", "freshness": "AUTO"}, {"model_name": "analytics___platform__store", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__organization", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__account_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__account_product_c_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__campaign", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__case_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__contact", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__cs_lead_c", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__cs_lead_c_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__custom_field_history_tracking_c", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__datedconversionrate", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__deal_summary_new_c", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__deal_summary_new_c_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__event", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__lead", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__livechattranscript_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mql_c", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mql_c_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__onboarding_project_c_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__opportunity", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__opportunity_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__opportunity_prediction_c_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__opportunityfieldhistory", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__opportunitylineitem_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__partner_referral_c_full", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__task", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__user", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__user_full", "freshness": "AUTO"}, {"model_name": "platform_stg__dim_calendar", "freshness": "3650d"}]}}, "tags": ["salesforce", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___salesforce__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce_stg__mc_opportunity", "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item", "model.yoda.analytics___salesforce__opportunity_line_item", "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript", "model.yoda.analytics___salesforce_stg__opportunity_prediction", "model.yoda.analytics___salesforce_stg__mc_lead", "model.yoda.analytics___salesforce__lead", "model.yoda.analytics___salesforce_stg__mc_campaign", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__mc_contact", "model.yoda.analytics___salesforce_stg__mc_partner_referral", "model.yoda.analytics___salesforce_stg__mc_task", "model.yoda.analytics___salesforce__partner_engagement", "model.yoda.analytics___salesforce_stg__mc_conversion_rate", "model.yoda.analytics___salesforce_stg__fact_account_profile_daily", "model.yoda.analytics___salesforce__account_tracking_daily", "model.yoda.analytics___salesforce_stg__mc_service_case", "model.yoda.analytics___salesforce__service_case", "model.yoda.analytics___salesforce__live_chat_transcript", "model.yoda.analytics___salesforce_stg__mc_deal_summary", "model.yoda.analytics___salesforce__deal_summary", "model.yoda.analytics___salesforce__deal_summary_product", "model.yoda.analytics___salesforce__task", "model.yoda.analytics___salesforce_stg__mc_account_product", "model.yoda.analytics___salesforce__account_product", "model.yoda.analytics___salesforce_stg__mc_onboarding_project", "model.yoda.analytics___salesforce__onboarding_project", "model.yoda.analytics___salesforce_stg__custom_field_history", "model.yoda.analytics___salesforce__campaign_member_field_history", "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history", "model.yoda.analytics___salesforce_stg__mc_event", "model.yoda.analytics___salesforce_stg__mc_mql", "model.yoda.analytics___salesforce__mql", "model.yoda.analytics___salesforce_stg__mc_user", "model.yoda.analytics___salesforce__user_role_scd", "model.yoda.analytics___salesforce__user_overtime", "model.yoda.analytics___salesforce_stg__mc_cs_lead"]}, "refs": [{"name": "analytics___salesforce_stg__mc_account", "package": null, "version": null}, {"name": "analytics___salesforce__account", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_users_scd", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_opportunity_line_item", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity_line_item", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_live_chat_transcript", "package": null, "version": null}, {"name": "analytics___salesforce_stg__opportunity_prediction", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_lead", "package": null, "version": null}, {"name": "analytics___salesforce__lead", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_campaign", "package": null, "version": null}, {"name": "analytics___salesforce__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_contact", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_partner_referral", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_task", "package": null, "version": null}, {"name": "analytics___salesforce__partner_engagement", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_conversion_rate", "package": null, "version": null}, {"name": "analytics___salesforce_stg__fact_account_profile_daily", "package": null, "version": null}, {"name": "analytics___salesforce__account_tracking_daily", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_service_case", "package": null, "version": null}, {"name": "analytics___salesforce__service_case", "package": null, "version": null}, {"name": "analytics___salesforce__live_chat_transcript", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_deal_summary", "package": null, "version": null}, {"name": "analytics___salesforce__deal_summary", "package": null, "version": null}, {"name": "analytics___salesforce__deal_summary_product", "package": null, "version": null}, {"name": "analytics___salesforce__task", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_account_product", "package": null, "version": null}, {"name": "analytics___salesforce__account_product", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_onboarding_project", "package": null, "version": null}, {"name": "analytics___salesforce__onboarding_project", "package": null, "version": null}, {"name": "analytics___salesforce_stg__custom_field_history", "package": null, "version": null}, {"name": "analytics___salesforce__campaign_member_field_history", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_opportunity_field_history", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_event", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_mql", "package": null, "version": null}, {"name": "analytics___salesforce__mql", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_user", "package": null, "version": null}, {"name": "analytics___salesforce__user_role_scd", "package": null, "version": null}, {"name": "analytics___salesforce__user_overtime", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mc_cs_lead", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082649.1965597}, "exposure.yoda.analytics___salesforce__at_01_30": {"name": "analytics___salesforce__at_01_30", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/salesforce/exposures/scheduling/analytics___salesforce__at_01_30.yml", "original_file_path": "models/analytics/salesforce/exposures/scheduling/analytics___salesforce__at_01_30.yml", "unique_id": "exposure.yoda.analytics___salesforce__at_01_30", "fqn": ["yoda", "analytics", "salesforce", "exposures", "scheduling", "analytics___salesforce__at_01_30"], "type": "application", "owner": {"email": "tomer.inbal@yotpo.com", "name": "bi-dev"}, "description": "Salesforce At 01 30 sorces DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 1 * * *", "start_date": "2023-01-31"}}, "tags": ["salesforce", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___salesforce__at_01_30", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___salesforce_stg__account_full", "model.yoda.analytics___salesforce_stg__opportunity_full", "model.yoda.analytics___salesforce_stg__opportunitylineitem_full", "model.yoda.analytics___salesforce_stg__livechattranscript_full", "model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full", "model.yoda.analytics___salesforce_stg__lead", "model.yoda.analytics___salesforce_stg__partner_referral_c_full", "model.yoda.analytics___salesforce_stg__task", "model.yoda.analytics___salesforce_stg__datedconversionrate", "model.yoda.analytics___salesforce_stg__case_full", "model.yoda.analytics___salesforce_stg__deal_summary_new_c_full", "model.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping", "model.yoda.analytics___salesforce_stg__campaign", "model.yoda.analytics___salesforce_stg__contact", "model.yoda.analytics___salesforce_stg__account_product_c_full", "model.yoda.analytics___salesforce_stg__onboarding_project_c_full", "model.yoda.analytics___salesforce_stg__custom_field_history_tracking_c", "model.yoda.analytics___salesforce_stg__opportunityfieldhistory", "model.yoda.analytics___salesforce_stg__event", "model.yoda.analytics___salesforce_stg__mql_c", "model.yoda.analytics___salesforce_stg__mql_c_full", "model.yoda.analytics___salesforce_stg__opportunity", "model.yoda.analytics___salesforce_stg__user", "model.yoda.analytics___salesforce_stg__user_full", "model.yoda.analytics___salesforce_stg__deal_summary_new_c", "model.yoda.analytics___salesforce_stg__cs_lead_c", "model.yoda.analytics___salesforce_stg__cs_lead_c_full"]}, "refs": [{"name": "analytics___salesforce_stg__account_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__opportunity_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__opportunitylineitem_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__livechattranscript_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__opportunity_prediction_c_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__lead", "package": null, "version": null}, {"name": "analytics___salesforce_stg__partner_referral_c_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__task", "package": null, "version": null}, {"name": "analytics___salesforce_stg__datedconversionrate", "package": null, "version": null}, {"name": "analytics___salesforce_stg__case_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__deal_summary_new_c_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__dim_sf_campaign_member_mapping", "package": null, "version": null}, {"name": "analytics___salesforce_stg__campaign", "package": null, "version": null}, {"name": "analytics___salesforce_stg__contact", "package": null, "version": null}, {"name": "analytics___salesforce_stg__account_product_c_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__onboarding_project_c_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__custom_field_history_tracking_c", "package": null, "version": null}, {"name": "analytics___salesforce_stg__opportunityfieldhistory", "package": null, "version": null}, {"name": "analytics___salesforce_stg__event", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mql_c", "package": null, "version": null}, {"name": "analytics___salesforce_stg__mql_c_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__opportunity", "package": null, "version": null}, {"name": "analytics___salesforce_stg__user", "package": null, "version": null}, {"name": "analytics___salesforce_stg__user_full", "package": null, "version": null}, {"name": "analytics___salesforce_stg__deal_summary_new_c", "package": null, "version": null}, {"name": "analytics___salesforce_stg__cs_lead_c", "package": null, "version": null}, {"name": "analytics___salesforce_stg__cs_lead_c_full", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082649.2210188}, "exposure.yoda.analytics___salesforce__enrichment_24h": {"name": "analytics___salesforce__enrichment_24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/salesforce/exposures/scheduling/analytics___salesforce__enrichment_24h.yml", "original_file_path": "models/analytics/salesforce/exposures/scheduling/analytics___salesforce__enrichment_24h.yml", "unique_id": "exposure.yoda.analytics___salesforce__enrichment_24h", "fqn": ["yoda", "analytics", "salesforce", "exposures", "scheduling", "analytics___salesforce__enrichment_24h"], "type": "application", "owner": {"email": "tomer.inbal@yotpo.com", "name": "tomer inbal"}, "description": "Salesforce Enrichment At 02 30 analytics DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-07-13", "upstream_models_freshness": [{"model_name": "analytics___platform__organization", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization_plan_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform__plan", "freshness": "AUTO"}, {"model_name": "analytics___platform__product_metrics_snapshot_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_plan_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_product_metrics_daily_diff", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account_product", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__account_full", "freshness": "AUTO"}, {"model_name": "analytics___sms__store_metrics_monthly", "freshness": "AUTO"}]}}, "tags": ["salesforce", "write_to_salesforce", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___salesforce__enrichment_24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily", "model.yoda.analytics___salesforce__account_enrichment", "model.yoda.analytics___salesforce__account_enrichment_snapshot_daily", "model.yoda.analytics___salesforce__account_enrichment_daily_diff", "model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly", "model.yoda.analytics___salesforce__new_organization"]}, "refs": [{"name": "analytics___salesforce__store_product_metrics_snapshot_daily", "package": null, "version": null}, {"name": "analytics___salesforce__account_enrichment", "package": null, "version": null}, {"name": "analytics___salesforce__account_enrichment_snapshot_daily", "package": null, "version": null}, {"name": "analytics___salesforce__account_enrichment_daily_diff", "package": null, "version": null}, {"name": "analytics___salesforce__store_product_metrics_snapshot_monthly", "package": null, "version": null}, {"name": "analytics___salesforce__new_organization", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082649.242067}, "exposure.yoda.analytics___sms__24h": {"name": "analytics___sms__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/sms/exposures/scheduling/analytics___sms__24h.yml", "original_file_path": "models/analytics/sms/exposures/scheduling/analytics___sms__24h.yml", "unique_id": "exposure.yoda.analytics___sms__24h", "fqn": ["yoda", "analytics", "sms", "exposures", "scheduling", "analytics___sms__24h"], "type": "application", "owner": {"email": "lior.shabi@yotpo.com", "name": "bi-dev"}, "description": "sms analytics daily at 0230 dag", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-01-01", "upstream_models_freshness": [{"model_name": "analytics___platform__store_metrics_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_order_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__phone_code_country_mapping", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_account", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__analytics_data", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__api_calls", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__bigcommerce_user", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__campaign", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__event", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__fact_agg_sms_user_profile_daily", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__flow", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__form", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__free_credit_high_touch_bonus", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__free_credit_log", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__organization_identifier_conversion", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__plan", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__purchase", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__shopify_customer", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__shopify_user", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__sms_user", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__user_date_explode_from_creation", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__user_event_log", "freshness": "AUTO"}, {"model_name": "analytics___utils_stg__calendar", "freshness": "365d"}, {"model_name": "platform_stg__timezone_country_mapping", "freshness": "AUTO"}]}}, "tags": ["sms", "analytics", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___sms__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___sms__store_plan_over_time", "model.yoda.analytics___sms__store_plan_daily", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__store_activeness_daily", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms__store_metrics_monthly", "model.yoda.analytics___sms__free_credit_details", "model.yoda.analytics___sms__deliverability_daily", "model.yoda.analytics___sms__user_installation_over_time", "model.yoda.analytics___sms__user_open_over_time", "model.yoda.analytics___sms__user_activeness_daily", "model.yoda.analytics___sms__user_plan_over_time", "model.yoda.analytics___sms__user_plan_daily", "model.yoda.analytics___sms__user_plan_monthly", "model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___sms__organization_metrics_monthly", "model.yoda.analytics___sms__purchase", "model.yoda.analytics___sms__user_dates_history", "model.yoda.analytics___sms__user_store_dates_history", "model.yoda.analytics___sms__store_cohort", "model.yoda.analytics___sms__store_receiving_country_metrics", "model.yoda.analytics___sms__user_pop_up_status", "model.yoda.analytics___sms__user_pop_up_status_snapshot", "model.yoda.analytics___sms__user_pop_up_status_over_time", "model.yoda.analytics___sms__user_customer", "model.yoda.analytics___sms__campaign_message_dates", "model.yoda.analytics___sms__automation_message_dates", "model.yoda.analytics___sms__flow_message_dates", "model.yoda.analytics___sms__store_metrics"]}, "refs": [{"name": "analytics___sms__store_plan_over_time", "package": null, "version": null}, {"name": "analytics___sms__store_plan_daily", "package": null, "version": null}, {"name": "analytics___sms__store", "package": null, "version": null}, {"name": "analytics___sms__store_activeness_daily", "package": null, "version": null}, {"name": "analytics___sms__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___sms__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___sms__free_credit_details", "package": null, "version": null}, {"name": "analytics___sms__deliverability_daily", "package": null, "version": null}, {"name": "analytics___sms__user_installation_over_time", "package": null, "version": null}, {"name": "analytics___sms__user_open_over_time", "package": null, "version": null}, {"name": "analytics___sms__user_activeness_daily", "package": null, "version": null}, {"name": "analytics___sms__user_plan_over_time", "package": null, "version": null}, {"name": "analytics___sms__user_plan_daily", "package": null, "version": null}, {"name": "analytics___sms__user_plan_monthly", "package": null, "version": null}, {"name": "analytics___sms__user_metrics_daily", "package": null, "version": null}, {"name": "analytics___sms__organization_metrics_monthly", "package": null, "version": null}, {"name": "analytics___sms__purchase", "package": null, "version": null}, {"name": "analytics___sms__user_dates_history", "package": null, "version": null}, {"name": "analytics___sms__user_store_dates_history", "package": null, "version": null}, {"name": "analytics___sms__store_cohort", "package": null, "version": null}, {"name": "analytics___sms__store_receiving_country_metrics", "package": null, "version": null}, {"name": "analytics___sms__user_pop_up_status", "package": null, "version": null}, {"name": "analytics___sms__user_pop_up_status_snapshot", "package": null, "version": null}, {"name": "analytics___sms__user_pop_up_status_over_time", "package": null, "version": null}, {"name": "analytics___sms__user_customer", "package": null, "version": null}, {"name": "analytics___sms__campaign_message_dates", "package": null, "version": null}, {"name": "analytics___sms__automation_message_dates", "package": null, "version": null}, {"name": "analytics___sms__flow_message_dates", "package": null, "version": null}, {"name": "analytics___sms__store_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082657.79199}, "exposure.yoda.analytics___sms__staging_24h": {"name": "analytics___sms__staging_24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/sms/exposures/scheduling/analytics___sms__staging_24h.yml", "original_file_path": "models/analytics/sms/exposures/scheduling/analytics___sms__staging_24h.yml", "unique_id": "exposure.yoda.analytics___sms__staging_24h", "fqn": ["yoda", "analytics", "sms", "exposures", "scheduling", "analytics___sms__staging_24h"], "type": "application", "owner": {"email": "lior.shabi@yotpo.com", "name": "bi-dev"}, "description": "sms analytics staging models daily at 0200 dag", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 2 * * *", "start_date": "2023-08-20", "upstream_models_freshness": [{"model_name": "analytics___platform_stg__phone_code_country_mapping", "freshness": "AUTO"}, {"model_name": "platform_stg__dim_calendar", "freshness": "AUTO"}, {"model_name": "sms_stg__apicalls", "freshness": "AUTO"}, {"model_name": "sms_stg__bigcommerce_users", "freshness": "AUTO"}, {"model_name": "sms_stg__campaign_lists", "freshness": "AUTO"}, {"model_name": "sms_stg__campaign_relations", "freshness": "AUTO"}, {"model_name": "sms_stg__campaigns", "freshness": "AUTO"}, {"model_name": "sms_stg__comm_analytics_data", "freshness": "AUTO"}, {"model_name": "sms_stg__customers", "freshness": "AUTO"}, {"model_name": "sms_stg__default_predefined_messages", "freshness": "AUTO"}, {"model_name": "sms_stg__email_charges", "freshness": "AUTO"}, {"model_name": "sms_stg__events", "freshness": "AUTO"}, {"model_name": "sms_stg__flows", "freshness": "AUTO"}, {"model_name": "sms_stg__forms", "freshness": "AUTO"}, {"model_name": "sms_stg__free_credits_logs", "freshness": "AUTO"}, {"model_name": "sms_stg__lists", "freshness": "AUTO"}, {"model_name": "sms_stg__loyalty_flows_data", "freshness": "AUTO"}, {"model_name": "sms_stg__orders", "freshness": "AUTO"}, {"model_name": "sms_stg__packages", "freshness": "AUTO"}, {"model_name": "sms_stg__purchases", "freshness": "AUTO"}, {"model_name": "sms_stg__shopify_campaign_orders", "freshness": "AUTO"}, {"model_name": "sms_stg__shopify_flows_orders", "freshness": "AUTO"}, {"model_name": "sms_stg__shopify_segments", "freshness": "AUTO"}, {"model_name": "sms_stg__shopify_users", "freshness": "AUTO"}, {"model_name": "sms_stg__sms_campaign_created", "freshness": "AUTO"}, {"model_name": "sms_stg__track_flows_adoption", "freshness": "AUTO"}, {"model_name": "sms_stg__users", "freshness": "AUTO"}, {"model_name": "sms_stg__users_events_log", "freshness": "AUTO"}, {"model_name": "sms_stg__yotpo_organizations", "freshness": "AUTO"}]}}, "tags": ["sms", "analytics", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___sms__staging_24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__shopify_user", "model.yoda.analytics___sms_stg__bigcommerce_user", "model.yoda.analytics___sms_stg__event_deletion_tracking", "model.yoda.analytics___sms_stg__event", "model.yoda.analytics___sms_stg__flow_deletion_tracking", "model.yoda.analytics___sms_stg__flow", "model.yoda.analytics___sms_stg__loyalty_flow", "model.yoda.analytics___sms_stg__track_flow_adoption", "model.yoda.analytics___sms_stg__segment_sms_campaign", "model.yoda.analytics___sms_stg__user_event_log", "model.yoda.analytics___sms_stg__plan", "model.yoda.analytics___sms_stg__organization_identifier_conversion", "model.yoda.analytics___sms_stg__shopify_orders", "model.yoda.analytics___sms_stg__shopify_customer", "model.yoda.analytics___sms_stg__campaign_deletion_tracking", "model.yoda.analytics___sms_stg__campaign", "model.yoda.analytics___sms_stg__purchase", "model.yoda.analytics___sms_stg__form", "model.yoda.analytics___sms_stg__analytics_data", "model.yoda.analytics___sms_stg__campaign_list", "model.yoda.analytics___sms_stg__list", "model.yoda.analytics___sms_stg__shopify_segment", "model.yoda.analytics___sms_stg__campaign_relation", "model.yoda.analytics___sms_stg__default_predefined_message", "model.yoda.analytics___sms_stg__shopify_flow_order", "model.yoda.analytics___sms_stg__shopify_campaign_order", "model.yoda.analytics___sms_stg__free_credit_log", "model.yoda.analytics___sms_stg__email_charge", "model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily", "model.yoda.analytics___sms_stg__free_credit_high_touch_bonus", "model.yoda.analytics___sms_stg__user_date_explode_from_creation"]}, "refs": [{"name": "analytics___sms_stg__api_calls", "package": null, "version": null}, {"name": "analytics___sms_stg__sms_user", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_user", "package": null, "version": null}, {"name": "analytics___sms_stg__bigcommerce_user", "package": null, "version": null}, {"name": "analytics___sms_stg__event_deletion_tracking", "package": null, "version": null}, {"name": "analytics___sms_stg__event", "package": null, "version": null}, {"name": "analytics___sms_stg__flow_deletion_tracking", "package": null, "version": null}, {"name": "analytics___sms_stg__flow", "package": null, "version": null}, {"name": "analytics___sms_stg__loyalty_flow", "package": null, "version": null}, {"name": "analytics___sms_stg__track_flow_adoption", "package": null, "version": null}, {"name": "analytics___sms_stg__segment_sms_campaign", "package": null, "version": null}, {"name": "analytics___sms_stg__user_event_log", "package": null, "version": null}, {"name": "analytics___sms_stg__plan", "package": null, "version": null}, {"name": "analytics___sms_stg__organization_identifier_conversion", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_orders", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_customer", "package": null, "version": null}, {"name": "analytics___sms_stg__campaign_deletion_tracking", "package": null, "version": null}, {"name": "analytics___sms_stg__campaign", "package": null, "version": null}, {"name": "analytics___sms_stg__purchase", "package": null, "version": null}, {"name": "analytics___sms_stg__form", "package": null, "version": null}, {"name": "analytics___sms_stg__analytics_data", "package": null, "version": null}, {"name": "analytics___sms_stg__campaign_list", "package": null, "version": null}, {"name": "analytics___sms_stg__list", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_segment", "package": null, "version": null}, {"name": "analytics___sms_stg__campaign_relation", "package": null, "version": null}, {"name": "analytics___sms_stg__default_predefined_message", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_flow_order", "package": null, "version": null}, {"name": "analytics___sms_stg__shopify_campaign_order", "package": null, "version": null}, {"name": "analytics___sms_stg__free_credit_log", "package": null, "version": null}, {"name": "analytics___sms_stg__email_charge", "package": null, "version": null}, {"name": "analytics___sms_stg__fact_agg_sms_user_profile_daily", "package": null, "version": null}, {"name": "analytics___sms_stg__free_credit_high_touch_bonus", "package": null, "version": null}, {"name": "analytics___sms_stg__user_date_explode_from_creation", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082657.835413}, "exposure.yoda.analytics___subscriptions__24h": {"name": "analytics___subscriptions__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/subscriptions/exposures/scheduling/analytics___subscriptions__24h.yml", "original_file_path": "models/analytics/subscriptions/exposures/scheduling/analytics___subscriptions__24h.yml", "unique_id": "exposure.yoda.analytics___subscriptions__24h", "fqn": ["yoda", "analytics", "subscriptions", "exposures", "scheduling", "analytics___subscriptions__24h"], "type": "application", "owner": {"email": "cdemyanov@yotpo.com", "name": ""}, "description": "BI subscriptions models scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2022-12-19", "upstream_models_freshness": [{"model_name": "analytics___platform__organization", "freshness": "AUTO"}, {"model_name": "analytics___platform__store", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__owner_feature", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__owner_feature_setting", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__segment_app_install_completed", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__segment_app_uninstalled", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__segment_page_event", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__segment_product_enabled", "freshness": "AUTO"}, {"model_name": "analytics___subscriptions_stg__subscription_ended_v2", "freshness": "AUTO"}, {"model_name": "analytics___subscriptions_stg__subscription_started_v2", "freshness": "AUTO"}, {"model_name": "analytics___synergies__store_enablement_daily", "freshness": "AUTO"}, {"model_name": "platform_stg__dim_calendar", "freshness": "AUTO"}, {"model_name": "subscriptions__subscription_accounts", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__app_webhooks", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__customer_journey_event", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__product", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__selling_plan", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__selling_plan_group", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__selling_plan_group_product", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__status", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__subscription_contract", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__subscription_contract_order", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__subscription_creation_request", "freshness": "AUTO"}]}}, "tags": ["subscriptions", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___subscriptions__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract", "model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order", "model.yoda.analytics___subscriptions__store_installation_over_time", "model.yoda.analytics___subscriptions__store_activeness_daily", "model.yoda.analytics___subscriptions_stg__subscriptions_store", "model.yoda.analytics___subscriptions_stg__mc_product", "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request", "model.yoda.analytics___subscriptions_stg__mc_selling_plan", "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group", "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product", "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two", "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two", "model.yoda.analytics___subscriptions_stg__mc_status", "model.yoda.analytics___subscriptions_stg__contract_event_details", "model.yoda.analytics___subscriptions_stg__customer_journey_event", "model.yoda.analytics___subscriptions_stg__contract_snapshot", "model.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot", "model.yoda.analytics___subscriptions__contract_over_time", "model.yoda.analytics___subscriptions__subscription_contract_daily", "model.yoda.analytics___subscriptions__subscription_contract_monthly", "model.yoda.analytics___subscriptions__store_feature_activation", "model.yoda.analytics___subscriptions__store", "model.yoda.analytics___subscriptions_stg__mc_app_webhook"]}, "refs": [{"name": "analytics___subscriptions_stg__mc_subscription_contract", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_subscription_contract_order", "package": null, "version": null}, {"name": "analytics___subscriptions__store_installation_over_time", "package": null, "version": null}, {"name": "analytics___subscriptions__store_activeness_daily", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__subscriptions_store", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_product", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_subscription_creation_request", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_selling_plan", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_selling_plan_group", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_selling_plan_group_product", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__segment_subscription_ended_v_two", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__segment_subscription_started_v_two", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_status", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__contract_event_details", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__customer_journey_event", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__contract_snapshot", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__subscription_contract_before_snapshot", "package": null, "version": null}, {"name": "analytics___subscriptions__contract_over_time", "package": null, "version": null}, {"name": "analytics___subscriptions__subscription_contract_daily", "package": null, "version": null}, {"name": "analytics___subscriptions__subscription_contract_monthly", "package": null, "version": null}, {"name": "analytics___subscriptions__store_feature_activation", "package": null, "version": null}, {"name": "analytics___subscriptions__store", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__mc_app_webhook", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082660.703263}, "exposure.yoda.analytics___subscriptions__subscriptions_tables_to_snowflake": {"name": "analytics___subscriptions__subscriptions_tables_to_snowflake", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/subscriptions/exposures/scheduling/analytics___subscriptions__subscriptions_tables_to_snowflake.yml", "original_file_path": "models/analytics/subscriptions/exposures/scheduling/analytics___subscriptions__subscriptions_tables_to_snowflake.yml", "unique_id": "exposure.yoda.analytics___subscriptions__subscriptions_tables_to_snowflake", "fqn": ["yoda", "analytics", "subscriptions", "exposures", "scheduling", "analytics___subscriptions__subscriptions_tables_to_snowflake"], "type": "application", "owner": {"email": "omamiya@yotpo.com", "name": ""}, "description": "models : subscriptions__subscription_accounts scheduling ", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 */4 * * *", "start_date": "2022-12-06", "upstream_models_freshness": []}}, "tags": ["subscriptions", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.k8s.yotpo.xyz/graph?dag_id=analytics___subscriptions__subscriptions_tables_to_snowflake", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___subscriptions_stg__subscription_started_v2", "model.yoda.analytics___subscriptions_stg__subscription_ended_v2"]}, "refs": [{"name": "analytics___subscriptions_stg__subscription_started_v2", "package": null, "version": null}, {"name": "analytics___subscriptions_stg__subscription_ended_v2", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082660.713582}, "exposure.yoda.analytics___synergies__24h": {"name": "analytics___synergies__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/synergies/exposures/scheduling/analytics___synergies__24h.yml", "original_file_path": "models/analytics/synergies/exposures/scheduling/analytics___synergies__24h.yml", "unique_id": "exposure.yoda.analytics___synergies__24h", "fqn": ["yoda", "analytics", "synergies", "exposures", "scheduling", "analytics___synergies__24h"], "type": "application", "owner": {"email": "lior.shabi@yotpo.com", "name": "lior shabi"}, "description": "analytics for product synergies data", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-04-17", "upstream_models_freshness": [{"model_name": "analytics___loyalty__merchant", "freshness": "AUTO"}, {"model_name": "analytics___loyalty__redemption_details", "freshness": "AUTO"}, {"model_name": "analytics___loyalty_stg__earning_rule", "freshness": "AUTO"}, {"model_name": "analytics___loyalty_stg__loyalty_account", "freshness": "AUTO"}, {"model_name": "analytics___loyalty_stg__perk", "freshness": "AUTO"}, {"model_name": "analytics___loyalty_stg__point_redemption", "freshness": "AUTO"}, {"model_name": "analytics___loyalty_stg__purchase", "freshness": "AUTO"}, {"model_name": "analytics___loyalty_stg__purchase_redemption", "freshness": "AUTO"}, {"model_name": "analytics___loyalty_stg__redemption_code", "freshness": "AUTO"}, {"model_name": "analytics___platform__store", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_dynamic_date_explode_from_creation", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_plan_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_product_activeness_monthly", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_account", "freshness": "AUTO"}, {"model_name": "analytics___salesforce_stg__mc_account_product", "freshness": "AUTO"}, {"model_name": "analytics___sms__store", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__api_calls", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__campaign", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__campaign_list", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__campaign_relation", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__default_predefined_message", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__flow", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__list", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__shopify_campaign_order", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__shopify_flow_order", "freshness": "AUTO"}, {"model_name": "analytics___sms_stg__shopify_segment", "freshness": "AUTO"}, {"model_name": "analytics___subscriptions_stg__customer_journey_event", "freshness": "AUTO"}, {"model_name": "analytics___subscriptions_stg__subscriptions_store", "freshness": "AUTO"}, {"model_name": "analytics___ugc__review", "freshness": "AUTO"}, {"model_name": "analytics___ugc__store_metrics_monthly", "freshness": "AUTO"}, {"model_name": "platform__orders_with_product_lines_attribution_daily", "freshness": "AUTO"}, {"model_name": "platform__synergies_kpi", "freshness": "AUTO"}, {"model_name": "platform_stg__currency_rates", "freshness": "AUTO"}, {"model_name": "platform_stg__dim_calendar", "freshness": "AUTO"}, {"model_name": "platform_stg__sections", "freshness": "AUTO"}, {"model_name": "platform_stg__synergies_crud", "freshness": "AUTO"}, {"model_name": "platform_stg__synergy_product_mapping", "freshness": "AUTO"}, {"model_name": "platform_stg__synergy_start_date_mapping", "freshness": "AUTO"}, {"model_name": "platform_stg__widget_configurations", "freshness": "AUTO"}, {"model_name": "platform_stg__widgets", "freshness": "AUTO"}]}}, "tags": ["analytics", "yoda_scheduling", "synergies"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___synergies__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___synergies_stg__home_screen_section", "model.yoda.analytics___synergies_stg__home_screen_widget", "model.yoda.analytics___synergies_stg__enablement_event", "model.yoda.analytics___synergies_stg__synergy_widget", "model.yoda.analytics___synergies__store_enablement_over_time", "model.yoda.analytics___synergies__store_enablement_daily", "model.yoda.analytics___synergies__store_enablement_monthly", "model.yoda.analytics___synergies__store_activeness_monthly", "model.yoda.analytics___synergies__eligible_store_monthly", "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly", "model.yoda.analytics___synergies__store_synergy_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_metrics_monthly", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "model.yoda.analytics___synergies__loyalty_store_metrics_monthly", "model.yoda.analytics___synergies__kpi_ranked_action", "model.yoda.analytics___synergies__synergy_metrics_monthly", "model.yoda.analytics___synergies_stg__home_screen_widget_configuration", "model.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "model.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily", "model.yoda.analytics___synergies__activation_level_daily", "model.yoda.analytics___synergies__organization_synergy_activeness_monthly"]}, "refs": [{"name": "analytics___synergies_stg__home_screen_section", "package": null, "version": null}, {"name": "analytics___synergies_stg__home_screen_widget", "package": null, "version": null}, {"name": "analytics___synergies_stg__enablement_event", "package": null, "version": null}, {"name": "analytics___synergies_stg__synergy_widget", "package": null, "version": null}, {"name": "analytics___synergies__store_enablement_over_time", "package": null, "version": null}, {"name": "analytics___synergies__store_enablement_daily", "package": null, "version": null}, {"name": "analytics___synergies__store_enablement_monthly", "package": null, "version": null}, {"name": "analytics___synergies__store_activeness_monthly", "package": null, "version": null}, {"name": "analytics___synergies__eligible_store_monthly", "package": null, "version": null}, {"name": "analytics___synergies__ugc_store_synergy_metrics_monthly", "package": null, "version": null}, {"name": "analytics___synergies__store_synergy_metrics_monthly", "package": null, "version": null}, {"name": "analytics___synergies__ugc_store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___synergies__loyalty_store_synergy_metrics_monthly", "package": null, "version": null}, {"name": "analytics___synergies__loyalty_store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___synergies__kpi_ranked_action", "package": null, "version": null}, {"name": "analytics___synergies__synergy_metrics_monthly", "package": null, "version": null}, {"name": "analytics___synergies_stg__home_screen_widget_configuration", "package": null, "version": null}, {"name": "analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "package": null, "version": null}, {"name": "analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "package": null, "version": null}, {"name": "analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "package": null, "version": null}, {"name": "analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "package": null, "version": null}, {"name": "analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "package": null, "version": null}, {"name": "analytics___synergies__store_activeness_daily", "package": null, "version": null}, {"name": "analytics___synergies__store_last_thirty_days_activeness_daily", "package": null, "version": null}, {"name": "analytics___synergies__activation_level_daily", "package": null, "version": null}, {"name": "analytics___synergies__organization_synergy_activeness_monthly", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082661.8213258}, "exposure.yoda.analytics___ugc__24h": {"name": "analytics___ugc__24h", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/ugc/exposures/scheduling/analytics___ugc__24h.yml", "original_file_path": "models/analytics/ugc/exposures/scheduling/analytics___ugc__24h.yml", "unique_id": "exposure.yoda.analytics___ugc__24h", "fqn": ["yoda", "analytics", "ugc", "exposures", "scheduling", "analytics___ugc__24h"], "type": "application", "owner": {"email": "sstein@yotpo.com", "name": "shira stein"}, "description": "UGC analytics every 24 hours", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-01-10", "upstream_models_freshness": [{"model_name": "analytics___platform__order", "freshness": "AUTO"}, {"model_name": "analytics___platform__order_metrics", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization_plan_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization_plan_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__organization_product_segment_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform__store", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_metrics_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_order_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_pixel_metrics_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_plan_daily", "freshness": "AUTO"}, {"model_name": "analytics___platform__store_product_activeness_monthly", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__account", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__feature", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__order_line", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__owner_feature", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__owner_feature_setting", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__product", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__segment_activation_step", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__segment_app_uninstalled", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__segment_b_to_b", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__segment_file_exported", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__segment_onboarding", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__segment_uninstalled_yotpo", "freshness": "AUTO"}, {"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "analytics___ugc_stg__reminder_snapshot", "freshness": "AUTO"}, {"model_name": "platform_stg__dim_calendar", "freshness": "AUTO"}, {"model_name": "ugc_stg__comments", "freshness": "AUTO"}, {"model_name": "ugc_stg__dirty_words", "freshness": "AUTO"}, {"model_name": "ugc_stg__email_authentications", "freshness": "AUTO"}, {"model_name": "ugc_stg__email_types", "freshness": "AUTO"}, {"model_name": "ugc_stg__images", "freshness": "AUTO"}, {"model_name": "ugc_stg__metadata_types", "freshness": "AUTO"}, {"model_name": "ugc_stg__reminders", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_metadatas", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_request_emails", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_request_sms", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_request_tokens", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_source_types", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_types", "freshness": "AUTO"}, {"model_name": "ugc_stg__reviews", "freshness": "AUTO"}, {"model_name": "ugc_stg__reviews_subjects", "freshness": "AUTO"}, {"model_name": "ugc_stg__users_email_controls", "freshness": "AUTO"}, {"model_name": "ugc_stg__videos", "freshness": "AUTO"}]}}, "tags": ["ugc", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___ugc__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event", "model.yoda.analytics___ugc_stg__owner_feature_setting_change_event", "model.yoda.analytics___ugc__store_feature_over_time", "model.yoda.analytics___ugc__store_metrics_daily_24m", "model.yoda.analytics___ugc_stg__dirty_words_content", "model.yoda.analytics___ugc_stg__review_subject", "model.yoda.analytics___ugc_stg__review", "model.yoda.analytics___ugc_stg__comment", "model.yoda.analytics___ugc_stg__review_type", "model.yoda.analytics___ugc_stg__review_source_type", "model.yoda.analytics___ugc_stg__metadata_type", "model.yoda.analytics___ugc_stg__review_metadata", "model.yoda.analytics___ugc__review", "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping", "model.yoda.analytics___ugc__store_installation_over_time", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc_stg__reminder", "model.yoda.analytics___ugc_stg__emails", "model.yoda.analytics___ugc_stg__email", "model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_metrics_monthly", "model.yoda.analytics___ugc__store_product_activeness_monthly", "model.yoda.analytics___ugc_stg__image", "model.yoda.analytics___ugc__image", "model.yoda.analytics___ugc__platform_order_to_review_monthly", "model.yoda.analytics___ugc__order_to_review_rate_cohort", "model.yoda.analytics___ugc__store_first_time_activity_metrics", "model.yoda.analytics___ugc__organization_first_time_activity_metrics", "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort", "model.yoda.analytics___ugc__owner_first_time_activity_metrics", "model.yoda.analytics___ugc__active_metrics_monthly", "model.yoda.analytics___ugc__owner_order_to_review_monthly", "model.yoda.analytics___ugc__organization_metrics_monthly", "model.yoda.analytics___ugc__store_widget_metrics_monthly", "model.yoda.analytics___ugc__unmigrated_review_request_token", "model.yoda.analytics___ugc__unmigrated_review_request_token_email", "model.yoda.analytics___ugc__postman_feature_email_usage_monthly", "model.yoda.analytics___ugc_stg__review_image", "model.yoda.analytics___ugc_stg__review_video", "model.yoda.analytics___ugc__review_request_token", "model.yoda.analytics___ugc__review_request_token_message", "model.yoda.analytics___ugc__review_request", "model.yoda.analytics___ugc_stg__review_request_email", "model.yoda.analytics___ugc_stg__review_request_sms"]}, "refs": [{"name": "analytics___ugc_stg__owner_feature_enablement_event", "package": null, "version": null}, {"name": "analytics___ugc_stg__owner_feature_setting_change_event", "package": null, "version": null}, {"name": "analytics___ugc__store_feature_over_time", "package": null, "version": null}, {"name": "analytics___ugc__store_metrics_daily_24m", "package": null, "version": null}, {"name": "analytics___ugc_stg__dirty_words_content", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_subject", "package": null, "version": null}, {"name": "analytics___ugc_stg__review", "package": null, "version": null}, {"name": "analytics___ugc_stg__comment", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_type", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_source_type", "package": null, "version": null}, {"name": "analytics___ugc_stg__metadata_type", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_metadata", "package": null, "version": null}, {"name": "analytics___ugc__review", "package": null, "version": null}, {"name": "analytics___ugc_stg__ugc_plan_group_change_mapping", "package": null, "version": null}, {"name": "analytics___ugc__store_installation_over_time", "package": null, "version": null}, {"name": "analytics___ugc__store_metrics_daily", "package": null, "version": null}, {"name": "analytics___ugc_stg__reminder", "package": null, "version": null}, {"name": "analytics___ugc_stg__emails", "package": null, "version": null}, {"name": "analytics___ugc_stg__email", "package": null, "version": null}, {"name": "analytics___ugc__store", "package": null, "version": null}, {"name": "analytics___ugc__store_metrics_monthly", "package": null, "version": null}, {"name": "analytics___ugc__store_product_activeness_monthly", "package": null, "version": null}, {"name": "analytics___ugc_stg__image", "package": null, "version": null}, {"name": "analytics___ugc__image", "package": null, "version": null}, {"name": "analytics___ugc__platform_order_to_review_monthly", "package": null, "version": null}, {"name": "analytics___ugc__order_to_review_rate_cohort", "package": null, "version": null}, {"name": "analytics___ugc__store_first_time_activity_metrics", "package": null, "version": null}, {"name": "analytics___ugc__organization_first_time_activity_metrics", "package": null, "version": null}, {"name": "analytics___ugc__store_enablement_to_pixel_event_cohort", "package": null, "version": null}, {"name": "analytics___ugc__owner_first_time_activity_metrics", "package": null, "version": null}, {"name": "analytics___ugc__active_metrics_monthly", "package": null, "version": null}, {"name": "analytics___ugc__owner_order_to_review_monthly", "package": null, "version": null}, {"name": "analytics___ugc__organization_metrics_monthly", "package": null, "version": null}, {"name": "analytics___ugc__store_widget_metrics_monthly", "package": null, "version": null}, {"name": "analytics___ugc__unmigrated_review_request_token", "package": null, "version": null}, {"name": "analytics___ugc__unmigrated_review_request_token_email", "package": null, "version": null}, {"name": "analytics___ugc__postman_feature_email_usage_monthly", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_image", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_video", "package": null, "version": null}, {"name": "analytics___ugc__review_request_token", "package": null, "version": null}, {"name": "analytics___ugc__review_request_token_message", "package": null, "version": null}, {"name": "analytics___ugc__review_request", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_request_email", "package": null, "version": null}, {"name": "analytics___ugc_stg__review_request_sms", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082663.0632591}, "exposure.yoda.analytics___ugc__temp_reminder_snapshot": {"name": "analytics___ugc__temp_reminder_snapshot", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/ugc/exposures/scheduling/analytics___ugc__temp_reminder_snapshot.yml", "original_file_path": "models/analytics/ugc/exposures/scheduling/analytics___ugc__temp_reminder_snapshot.yml", "unique_id": "exposure.yoda.analytics___ugc__temp_reminder_snapshot", "fqn": ["yoda", "analytics", "ugc", "exposures", "scheduling", "analytics___ugc__temp_reminder_snapshot"], "type": "application", "owner": {"email": "sstein@yotpo.com", "name": "shira stein"}, "description": "UGC analytics every 24 hours", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 0 * * *", "start_date": "2023-01-10", "upstream_models_freshness": [{"model_name": "analytics___ugc_stg__reminder", "freshness": "AUTO"}]}}, "tags": ["ugc", "yoda_scheduling", "analytics"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___ugc__temp_reminder_snapshot", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___ugc_stg__reminder_snapshot"]}, "refs": [{"name": "analytics___ugc_stg__reminder_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082663.077181}, "exposure.yoda.analytics___utils__weekly": {"name": "analytics___utils__weekly", "resource_type": "exposure", "package_name": "yoda", "path": "analytics/utils/exposures/scheduling/analytics___utils__weekly.yml", "original_file_path": "models/analytics/utils/exposures/scheduling/analytics___utils__weekly.yml", "unique_id": "exposure.yoda.analytics___utils__weekly", "fqn": ["yoda", "analytics", "utils", "exposures", "scheduling", "analytics___utils__weekly"], "type": "application", "owner": {"email": "lior.shabi@yotpo.com", "name": "bi-dev"}, "description": "analytics utils' models weekly scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@weekly", "start_date": "2023-10-09"}}, "tags": ["analytics", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=analytics___utils__weekly", "depends_on": {"macros": [], "nodes": ["model.yoda.analytics___utils_stg__calendar"]}, "refs": [{"name": "analytics___utils_stg__calendar", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082665.0934625}, "exposure.yoda.communication__At_20_00_only_on_Sunday": {"name": "communication__At_20_00_only_on_Sunday", "resource_type": "exposure", "package_name": "yoda", "path": "communication/exposures/scheduling/communication__At_20_00_only_on_Sunday.yml", "original_file_path": "models/communication/exposures/scheduling/communication__At_20_00_only_on_Sunday.yml", "unique_id": "exposure.yoda.communication__At_20_00_only_on_Sunday", "fqn": ["yoda", "communication", "exposures", "scheduling", "communication__At_20_00_only_on_Sunday"], "type": "application", "owner": {"email": "koalas@yotpo.com", "name": "data group"}, "description": "Communication At 20 00 Only On Sunday DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 20 * * 0", "start_date": "2021-12-13", "upstream_models_freshness": [{"model_name": "communication_stg__shopify_analytics_orders", "freshness": "AUTO"}, {"model_name": "communication_stg__users", "freshness": "AUTO"}, {"model_name": "platform_stg__accounts", "freshness": "2d"}, {"model_name": "platform_stg__apps", "freshness": "AUTO"}]}}, "tags": ["yoda_scheduling", "communication"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=communication__At_20_00_only_on_Sunday", "depends_on": {"macros": [], "nodes": ["model.yoda.communication_stg__automations_count", "model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__measurements_shopify_users", "model.yoda.communication_stg__cs_pages_count", "model.yoda.communication_stg__integrations_count", "model.yoda.communication_stg__shopify_user_integrations", "model.yoda.communication_stg__flows", "model.yoda.communication_stg__shopify_subscription_list_pages", "model.yoda.communication_stg__measurements_users", "model.yoda.communication_stg__forms", "model.yoda.communication_stg__phone_to_list", "model.yoda.communication_stg__shopify_orders", "model.yoda.communication_stg__cs_keywords_count", "model.yoda.communication_stg__sms_campaigns_count", "model.yoda.communication_stg__sms_subscribers_count", "model.yoda.communication_stg__email_campaigns_count", "model.yoda.communication_stg__events", "model.yoda.communication_stg__cs_forms_count", "model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__flows_count", "model.yoda.communication_stg__phones", "model.yoda.communication_stg__shopify_users", "model.yoda.communication_stg__orders", "model.yoda.communication_stg__phones_meta", "model.yoda.communication_stg__list_keywords", "model.yoda.communication_stg__packages", "model.yoda.communication_stg__apicalls", "model.yoda.communication_stg__email_esp_events", "model.yoda.communication_stg__overall_emails_sent_from_campaigns", "model.yoda.communication_stg__email_campaigns_sent_count", "model.yoda.communication_stg__sms_campaigns_sent_count", "model.yoda.communication_stg__campaigns_sent_count", "model.yoda.communication_stg__campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__first_sms_campaign_sent", "model.yoda.communication_stg__first_email_campaign_sent", "model.yoda.communication_stg__last_sms_campaign_sent", "model.yoda.communication_stg__last_email_campaign_sent", "model.yoda.communication_stg__first_email_message_sent", "model.yoda.communication_stg__last_email_message_sent", "model.yoda.communication_stg__send_chat_message", "model.yoda.communication_stg__conversation_messages", "model.yoda.communication_stg__first_sms_message_sent", "model.yoda.communication_stg__last_sms_message_sent", "model.yoda.communication_stg__total_orders_avg_last_three_months", "model.yoda.communication_stg__total_orders_avg_last_thirty_days", "model.yoda.communication_stg__total_subscribers_sms_count", "model.yoda.communication_stg__profiles", "model.yoda.communication_stg__total_subscribers_email_count", "model.yoda.communication_stg__flows_welcome_active", "model.yoda.communication_stg__flows_abandoned_checkout_active", "model.yoda.communication_stg__flows_customer_winback_active", "model.yoda.communication_stg__automations_customer_winback_active", "model.yoda.communication_stg__automations_abandoned_checkout_active", "model.yoda.communication_stg__automations_welcome_active", "model.yoda.communication_stg__klaviyo_users", "model.yoda.communication_stg__klaviyo_integration_enabled", "model.yoda.communication_stg__bigcommerce_users", "model.yoda.communication_stg__measurements_bigcommerce_users", "model.yoda.communication_stg__users_additional_flags", "model.yoda.communication_stg__active_users_flags", "model.yoda.communication_stg__billing_events", "model.yoda.communication_stg__tmp_email_events", "model.yoda.communication_stg__email_intent_popup_status", "model.yoda.communication_stg__email_intent_popup_first_decline_date", "model.yoda.communication_stg__email_intent_popup_first_accept_date", "model.yoda.communication_stg__email_subscribers_count", "model.yoda.communication_stg__total_revenue_all_channels_last_thirty_days", "model.yoda.communication_stg__total_revenue_all_channels_last_three_months", "model.yoda.communication_stg__total_revenue_all_channels_all_time", "model.yoda.communication_stg__total_revenue_sms_last_thirty_days", "model.yoda.communication_stg__total_revenue_sms_last_three_months", "model.yoda.communication_stg__total_revenue_email_last_thirty_days", "model.yoda.communication_stg__total_revenue_email_last_three_months", "model.yoda.communication_stg__email_usage_avg_last_three_months", "model.yoda.communication_stg__sms_usage_avg_last_three_months"]}, "refs": [{"name": "communication_stg__automations_count", "package": null, "version": null}, {"name": "communication_stg__recently_active_users", "package": null, "version": null}, {"name": "communication_stg__measurements_shopify_users", "package": null, "version": null}, {"name": "communication_stg__cs_pages_count", "package": null, "version": null}, {"name": "communication_stg__integrations_count", "package": null, "version": null}, {"name": "communication_stg__shopify_user_integrations", "package": null, "version": null}, {"name": "communication_stg__flows", "package": null, "version": null}, {"name": "communication_stg__shopify_subscription_list_pages", "package": null, "version": null}, {"name": "communication_stg__measurements_users", "package": null, "version": null}, {"name": "communication_stg__forms", "package": null, "version": null}, {"name": "communication_stg__phone_to_list", "package": null, "version": null}, {"name": "communication_stg__shopify_orders", "package": null, "version": null}, {"name": "communication_stg__cs_keywords_count", "package": null, "version": null}, {"name": "communication_stg__sms_campaigns_count", "package": null, "version": null}, {"name": "communication_stg__sms_subscribers_count", "package": null, "version": null}, {"name": "communication_stg__email_campaigns_count", "package": null, "version": null}, {"name": "communication_stg__events", "package": null, "version": null}, {"name": "communication_stg__cs_forms_count", "package": null, "version": null}, {"name": "communication_stg__campaigns", "package": null, "version": null}, {"name": "communication_stg__flows_count", "package": null, "version": null}, {"name": "communication_stg__phones", "package": null, "version": null}, {"name": "communication_stg__shopify_users", "package": null, "version": null}, {"name": "communication_stg__orders", "package": null, "version": null}, {"name": "communication_stg__phones_meta", "package": null, "version": null}, {"name": "communication_stg__list_keywords", "package": null, "version": null}, {"name": "communication_stg__packages", "package": null, "version": null}, {"name": "communication_stg__apicalls", "package": null, "version": null}, {"name": "communication_stg__email_esp_events", "package": null, "version": null}, {"name": "communication_stg__overall_emails_sent_from_campaigns", "package": null, "version": null}, {"name": "communication_stg__email_campaigns_sent_count", "package": null, "version": null}, {"name": "communication_stg__sms_campaigns_sent_count", "package": null, "version": null}, {"name": "communication_stg__campaigns_sent_count", "package": null, "version": null}, {"name": "communication_stg__campaigns_sent_last_thirty_days_count", "package": null, "version": null}, {"name": "communication_stg__sms_campaigns_sent_last_thirty_days_count", "package": null, "version": null}, {"name": "communication_stg__email_campaigns_sent_last_thirty_days_count", "package": null, "version": null}, {"name": "communication_stg__first_sms_campaign_sent", "package": null, "version": null}, {"name": "communication_stg__first_email_campaign_sent", "package": null, "version": null}, {"name": "communication_stg__last_sms_campaign_sent", "package": null, "version": null}, {"name": "communication_stg__last_email_campaign_sent", "package": null, "version": null}, {"name": "communication_stg__first_email_message_sent", "package": null, "version": null}, {"name": "communication_stg__last_email_message_sent", "package": null, "version": null}, {"name": "communication_stg__send_chat_message", "package": null, "version": null}, {"name": "communication_stg__conversation_messages", "package": null, "version": null}, {"name": "communication_stg__first_sms_message_sent", "package": null, "version": null}, {"name": "communication_stg__last_sms_message_sent", "package": null, "version": null}, {"name": "communication_stg__total_orders_avg_last_three_months", "package": null, "version": null}, {"name": "communication_stg__total_orders_avg_last_thirty_days", "package": null, "version": null}, {"name": "communication_stg__total_subscribers_sms_count", "package": null, "version": null}, {"name": "communication_stg__profiles", "package": null, "version": null}, {"name": "communication_stg__total_subscribers_email_count", "package": null, "version": null}, {"name": "communication_stg__flows_welcome_active", "package": null, "version": null}, {"name": "communication_stg__flows_abandoned_checkout_active", "package": null, "version": null}, {"name": "communication_stg__flows_customer_winback_active", "package": null, "version": null}, {"name": "communication_stg__automations_customer_winback_active", "package": null, "version": null}, {"name": "communication_stg__automations_abandoned_checkout_active", "package": null, "version": null}, {"name": "communication_stg__automations_welcome_active", "package": null, "version": null}, {"name": "communication_stg__klaviyo_users", "package": null, "version": null}, {"name": "communication_stg__klaviyo_integration_enabled", "package": null, "version": null}, {"name": "communication_stg__bigcommerce_users", "package": null, "version": null}, {"name": "communication_stg__measurements_bigcommerce_users", "package": null, "version": null}, {"name": "communication_stg__users_additional_flags", "package": null, "version": null}, {"name": "communication_stg__active_users_flags", "package": null, "version": null}, {"name": "communication_stg__billing_events", "package": null, "version": null}, {"name": "communication_stg__tmp_email_events", "package": null, "version": null}, {"name": "communication_stg__email_intent_popup_status", "package": null, "version": null}, {"name": "communication_stg__email_intent_popup_first_decline_date", "package": null, "version": null}, {"name": "communication_stg__email_intent_popup_first_accept_date", "package": null, "version": null}, {"name": "communication_stg__email_subscribers_count", "package": null, "version": null}, {"name": "communication_stg__total_revenue_all_channels_last_thirty_days", "package": null, "version": null}, {"name": "communication_stg__total_revenue_all_channels_last_three_months", "package": null, "version": null}, {"name": "communication_stg__total_revenue_all_channels_all_time", "package": null, "version": null}, {"name": "communication_stg__total_revenue_sms_last_thirty_days", "package": null, "version": null}, {"name": "communication_stg__total_revenue_sms_last_three_months", "package": null, "version": null}, {"name": "communication_stg__total_revenue_email_last_thirty_days", "package": null, "version": null}, {"name": "communication_stg__total_revenue_email_last_three_months", "package": null, "version": null}, {"name": "communication_stg__email_usage_avg_last_three_months", "package": null, "version": null}, {"name": "communication_stg__sms_usage_avg_last_three_months", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082665.1778054}, "exposure.yoda.communication__analytics_daily_at_04_00": {"name": "communication__analytics_daily_at_04_00", "resource_type": "exposure", "package_name": "yoda", "path": "communication/exposures/scheduling/communication__analytics_daily_at_04_00.yml", "original_file_path": "models/communication/exposures/scheduling/communication__analytics_daily_at_04_00.yml", "unique_id": "exposure.yoda.communication__analytics_daily_at_04_00", "fqn": ["yoda", "communication", "exposures", "scheduling", "communication__analytics_daily_at_04_00"], "type": "application", "owner": {"email": "ggeorgiev@yotpo.com", "name": "georgi georgiev"}, "description": "Run daily reports for shopify order analytics", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 4 * * *", "start_date": "2023-02-22"}}, "tags": ["communication", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=communication__analytics_daily_at_04_00", "depends_on": {"macros": [], "nodes": ["model.yoda.communication_stg__users", "model.yoda.communication_stg__shopify_analytics_orders", "model.yoda.communication_stg__sms_shopify_orders_analytics", "model.yoda.communication_stg__email_shopify_orders_analytics", "model.yoda.communication__sms_shopify_orders_analytics_profile", "model.yoda.communication__email_shopify_orders_analytics_profile"]}, "refs": [{"name": "communication_stg__users", "package": null, "version": null}, {"name": "communication_stg__shopify_analytics_orders", "package": null, "version": null}, {"name": "communication_stg__sms_shopify_orders_analytics", "package": null, "version": null}, {"name": "communication_stg__email_shopify_orders_analytics", "package": null, "version": null}, {"name": "communication__sms_shopify_orders_analytics_profile", "package": null, "version": null}, {"name": "communication__email_shopify_orders_analytics_profile", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082665.1988678}, "exposure.yoda.email__daily_total_email_campaigns": {"name": "email__daily_total_email_campaigns", "resource_type": "exposure", "package_name": "yoda", "path": "email/exposures/looker/email__daily_total_email_campaigns.yml", "original_file_path": "models/email/exposures/looker/email__daily_total_email_campaigns.yml", "unique_id": "exposure.yoda.email__daily_total_email_campaigns", "fqn": ["yoda", "email", "exposures", "looker", "email__daily_total_email_campaigns"], "type": "analysis", "owner": {"email": "erohana@yotpo.com", "name": "elia rohana"}, "description": "Email Marketing total campaigns per day in utc time", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('email__daily_total_email_campaigns')", "connection": "yoda"}}, "tags": ["yoda_looker", "email"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/explore/daily_total_email_campaigns/email__daily_total_email_campaigns", "depends_on": {"macros": [], "nodes": ["model.yoda.email__daily_total_email_campaigns"]}, "refs": [{"name": "email__daily_total_email_campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082667.104852}, "exposure.yoda.email__daily_total_emails_by_source_name": {"name": "email__daily_total_emails_by_source_name", "resource_type": "exposure", "package_name": "yoda", "path": "email/exposures/looker/email__daily_total_emails_by_source_name.yml", "original_file_path": "models/email/exposures/looker/email__daily_total_emails_by_source_name.yml", "unique_id": "exposure.yoda.email__daily_total_emails_by_source_name", "fqn": ["yoda", "email", "exposures", "looker", "email__daily_total_emails_by_source_name"], "type": "analysis", "owner": {"email": "erohana@yotpo.com", "name": "elia rohana"}, "description": "dailey delivered email by source name in utc", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('email__daily_delivered_emails_by_source_name')", "connection": "yoda"}}, "tags": ["yoda_looker", "email"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/explore/email__daily_total_emails_by_source_name/email__email__daily_total_emails_by_source_name", "depends_on": {"macros": [], "nodes": ["model.yoda.email__daily_delivered_emails_by_source_name"]}, "refs": [{"name": "email__daily_delivered_emails_by_source_name", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082667.1097538}, "exposure.yoda.email__email_events_by_source_and_isp": {"name": "email__email_events_by_source_and_isp", "resource_type": "exposure", "package_name": "yoda", "path": "email/exposures/looker/email__email_events_by_source_and_isp.yml", "original_file_path": "models/email/exposures/looker/email__email_events_by_source_and_isp.yml", "unique_id": "exposure.yoda.email__email_events_by_source_and_isp", "fqn": ["yoda", "email", "exposures", "looker", "email__email_events_by_source_and_isp"], "type": "analysis", "owner": {"email": "rbasis@yotpo.com", "name": "reema basis"}, "description": "email events per source id and isp", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('email__email_events_per_source_id_and_isp')", "connection": "yoda"}}, "tags": ["yoda_looker", "email"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/explore/email_events_by_source_and_isp/email__email_events_per_source_id_and_isp", "depends_on": {"macros": [], "nodes": ["model.yoda.email__email_events_per_source_id_and_isp"]}, "refs": [{"name": "email__email_events_per_source_id_and_isp", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082667.114703}, "exposure.yoda.email__email_events_by_source_and_pool": {"name": "email__email_events_by_source_and_pool", "resource_type": "exposure", "package_name": "yoda", "path": "email/exposures/looker/email__email_events_by_source_and_pool.yml", "original_file_path": "models/email/exposures/looker/email__email_events_by_source_and_pool.yml", "unique_id": "exposure.yoda.email__email_events_by_source_and_pool", "fqn": ["yoda", "email", "exposures", "looker", "email__email_events_by_source_and_pool"], "type": "analysis", "owner": {"email": "rbasis@yotpo.com", "name": "reema basis"}, "description": "email events per source id and pool id", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('email__email_events_per_source_id_and_ip_pool')", "connection": "yoda"}}, "tags": ["yoda_looker", "email"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/explore/email_events_by_source_and_pool/email__email_events_per_source_id_and_ip_pool", "depends_on": {"macros": [], "nodes": ["model.yoda.email__email_events_per_source_id_and_ip_pool"]}, "refs": [{"name": "email__email_events_per_source_id_and_ip_pool", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082667.1210973}, "exposure.yoda.email__email_events_by_source_pool_isp_eng": {"name": "email__email_events_by_source_pool_isp_eng", "resource_type": "exposure", "package_name": "yoda", "path": "email/exposures/looker/email__email_events_by_source_pool_isp_eng.yml", "original_file_path": "models/email/exposures/looker/email__email_events_by_source_pool_isp_eng.yml", "unique_id": "exposure.yoda.email__email_events_by_source_pool_isp_eng", "fqn": ["yoda", "email", "exposures", "looker", "email__email_events_by_source_pool_isp_eng"], "type": "analysis", "owner": {"email": "iftah.shimoni@yotpo.com", "name": "iftah shimoni"}, "description": "email events per source id and pool id isp and eng level", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('email__email_events_source_id_per_isp_ip_pool_eng_level')", "connection": "yoda"}}, "tags": ["yoda_looker", "email"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/explore/email_events_by_source_pool_isp_eng/email__email_events_source_id_per_isp_ip_pool_eng_level", "depends_on": {"macros": [], "nodes": ["model.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level"]}, "refs": [{"name": "email__email_events_source_id_per_isp_ip_pool_eng_level", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082667.126278}, "exposure.yoda.email__email_failed_rejected_reasons": {"name": "email__email_failed_rejected_reasons", "resource_type": "exposure", "package_name": "yoda", "path": "email/exposures/looker/email__email_failed_rejected_reasons.yml", "original_file_path": "models/email/exposures/looker/email__email_failed_rejected_reasons.yml", "unique_id": "exposure.yoda.email__email_failed_rejected_reasons", "fqn": ["yoda", "email", "exposures", "looker", "email__email_failed_rejected_reasons"], "type": "analysis", "owner": {"email": "rbasis@yotpo.com", "name": "reema basis"}, "description": "email failures and rejexted raeson", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('email__email_failed_rejected_reasons')", "connection": "yoda"}}, "tags": ["yoda_looker", "email"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/explore/email_failed_rejected_reasons/email__email_failed_rejected_reasons", "depends_on": {"macros": [], "nodes": ["model.yoda.email__email_failed_rejected_reasons"]}, "refs": [{"name": "email__email_failed_rejected_reasons", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082667.3215716}, "exposure.yoda.email__daily_usage_scheduler": {"name": "email__daily_usage_scheduler", "resource_type": "exposure", "package_name": "yoda", "path": "email/exposures/scheduling/email__daily_usage_scheduler.yml", "original_file_path": "models/email/exposures/scheduling/email__daily_usage_scheduler.yml", "unique_id": "exposure.yoda.email__daily_usage_scheduler", "fqn": ["yoda", "email", "exposures", "scheduling", "email__daily_usage_scheduler"], "type": "application", "owner": {"email": "erohana@yotpo.com", "name": "Elia Rohana"}, "description": "models : email__daily_usage scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-01-1", "upstream_models_freshness": [{"model_name": "email__email_events_per_source_id_and_ip_pool", "freshness": "AUTO"}, {"model_name": "email__email_events_per_source_id_and_isp", "freshness": "AUTO"}, {"model_name": "email_stg__campaign_events", "freshness": "1d"}, {"model_name": "email_stg__source_engagement_level_dry_run", "freshness": "AUTO"}, {"model_name": "email_stg__system_email_events", "freshness": "1d"}]}}, "tags": ["email", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=email__daily_usage_scheduler", "depends_on": {"macros": [], "nodes": ["model.yoda.email__daily_delivered_emails_by_source_name", "model.yoda.email__daily_total_email_campaigns", "model.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level"]}, "refs": [{"name": "email__daily_delivered_emails_by_source_name", "package": null, "version": null}, {"name": "email__daily_total_email_campaigns", "package": null, "version": null}, {"name": "email__email_events_source_id_per_isp_ip_pool_eng_level", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082667.3300045}, "exposure.yoda.email__delivery_base_model_scheduler": {"name": "email__delivery_base_model_scheduler", "resource_type": "exposure", "package_name": "yoda", "path": "email/exposures/scheduling/email__delivery_base_model_scheduler.yml", "original_file_path": "models/email/exposures/scheduling/email__delivery_base_model_scheduler.yml", "unique_id": "exposure.yoda.email__delivery_base_model_scheduler", "fqn": ["yoda", "email", "exposures", "scheduling", "email__delivery_base_model_scheduler"], "type": "application", "owner": {"email": "rbasis@yotpo.com", "name": "reema basis"}, "description": "emails delivery base model scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-10-18"}}, "tags": ["email", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=email__delivery_base_model_scheduler", "depends_on": {"macros": [], "nodes": ["model.yoda.email_stg__system_email_events", "model.yoda.email_stg__delivered_email", "model.yoda.email_stg__authenticated_domain", "model.yoda.email_stg__source_engagement_level_dry_run"]}, "refs": [{"name": "email_stg__system_email_events", "package": null, "version": null}, {"name": "email_stg__delivered_email", "package": null, "version": null}, {"name": "email_stg__authenticated_domain", "package": null, "version": null}, {"name": "email_stg__source_engagement_level_dry_run", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082667.3359807}, "exposure.yoda.email__email_base_model_scheduling": {"name": "email__email_base_model_scheduling", "resource_type": "exposure", "package_name": "yoda", "path": "email/exposures/scheduling/email__email_base_model_scheduling.yml", "original_file_path": "models/email/exposures/scheduling/email__email_base_model_scheduling.yml", "unique_id": "exposure.yoda.email__email_base_model_scheduling", "fqn": ["yoda", "email", "exposures", "scheduling", "email__email_base_model_scheduling"], "type": "application", "owner": {"email": "erohana@yotpo.com", "name": "elia rohana"}, "description": "emails base model scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-01-01", "upstream_models_freshness": [{"model_name": "loyalty__opted_in_customers", "freshness": "AUTO"}, {"model_name": "loyalty__redeemed_purchases", "freshness": "AUTO"}, {"model_name": "loyalty_stg__point_redemptions", "freshness": "AUTO"}, {"model_name": "sms_stg__email_sms_campaign_orders", "freshness": "AUTO"}]}}, "tags": ["email", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=email__email_base_model_scheduling", "depends_on": {"macros": [], "nodes": ["model.yoda.email_stg__campaign_events", "model.yoda.email_stg__template_instance_events", "model.yoda.email__email_campaign_reviews_block_kpi", "model.yoda.email__email_campaign_reviews_stars_kpi", "model.yoda.email__email_campaign_click_to_redeem_kpi", "model.yoda.email__email_campaign_loyalty_kpi", "model.yoda.email_stg__system_email_events_with_batch_id", "model.yoda.email_stg__emails_with_campaign_and_templates"]}, "refs": [{"name": "email_stg__campaign_events", "package": null, "version": null}, {"name": "email_stg__template_instance_events", "package": null, "version": null}, {"name": "email__email_campaign_reviews_block_kpi", "package": null, "version": null}, {"name": "email__email_campaign_reviews_stars_kpi", "package": null, "version": null}, {"name": "email__email_campaign_click_to_redeem_kpi", "package": null, "version": null}, {"name": "email__email_campaign_loyalty_kpi", "package": null, "version": null}, {"name": "email_stg__system_email_events_with_batch_id", "package": null, "version": null}, {"name": "email_stg__emails_with_campaign_and_templates", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082667.3462849}, "exposure.yoda.email__hourly_scheduler": {"name": "email__hourly_scheduler", "resource_type": "exposure", "package_name": "yoda", "path": "email/exposures/scheduling/email__hourly_scheduler.yml", "original_file_path": "models/email/exposures/scheduling/email__hourly_scheduler.yml", "unique_id": "exposure.yoda.email__hourly_scheduler", "fqn": ["yoda", "email", "exposures", "scheduling", "email__hourly_scheduler"], "type": "application", "owner": {"email": "rbasis@yotpo.com", "name": "reema basis"}, "description": "emails hourly model scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@hourly", "start_date": "2021-01-01", "upstream_models_freshness": [{"model_name": "email_stg__campaign_events", "freshness": "1d"}, {"model_name": "email_stg__system_email_events", "freshness": "1d"}, {"model_name": "sms_stg__users", "freshness": "1d"}, {"model_name": "email_stg__authenticated_domain", "freshness": "1d"}]}}, "tags": ["email", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=email__hourly_scheduler", "depends_on": {"macros": [], "nodes": ["model.yoda.email__email_events_per_source_id_and_ref_id", "model.yoda.email__email_events_per_source_id_and_ip_pool", "model.yoda.email__email_events_per_source_id_and_isp", "model.yoda.email__email_failed_rejected_reasons"]}, "refs": [{"name": "email__email_events_per_source_id_and_ref_id", "package": null, "version": null}, {"name": "email__email_events_per_source_id_and_ip_pool", "package": null, "version": null}, {"name": "email__email_events_per_source_id_and_isp", "package": null, "version": null}, {"name": "email__email_failed_rejected_reasons", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082667.357165}, "exposure.yoda.infra__aws_cost_overview": {"name": "infra__aws_cost_overview", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__aws_cost_overview.yml", "original_file_path": "models/infra/exposures/looker/infra__aws_cost_overview.yml", "unique_id": "exposure.yoda.infra__aws_cost_overview", "fqn": ["yoda", "infra", "exposures", "looker", "infra__aws_cost_overview"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__aws_cost_overview", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__aws_cost_overview')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/aws_cost_overview.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__aws_cost_overview"]}, "refs": [{"name": "infra__aws_cost_overview", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0044286}, "exposure.yoda.infra__contract_estimations": {"name": "infra__contract_estimations", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__contract_estimations.yml", "original_file_path": "models/infra/exposures/looker/infra__contract_estimations.yml", "unique_id": "exposure.yoda.infra__contract_estimations", "fqn": ["yoda", "infra", "exposures", "looker", "infra__contract_estimations"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__contracts_burn_estimations", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__contracts_burn_estimations')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/aws_cost_overview.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__contracts_burn_estimations"]}, "refs": [{"name": "infra__contracts_burn_estimations", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0097508}, "exposure.yoda.infra__contract_info": {"name": "infra__contract_info", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__contract_info.yml", "original_file_path": "models/infra/exposures/looker/infra__contract_info.yml", "unique_id": "exposure.yoda.infra__contract_info", "fqn": ["yoda", "infra", "exposures", "looker", "infra__contract_info"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__vendor_contracts", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__vendor_contracts')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/aws_cost_overview.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__vendor_contracts"]}, "refs": [{"name": "infra__vendor_contracts", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0149124}, "exposure.yoda.infra__contract_status": {"name": "infra__contract_status", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__contract_status.yml", "original_file_path": "models/infra/exposures/looker/infra__contract_status.yml", "unique_id": "exposure.yoda.infra__contract_status", "fqn": ["yoda", "infra", "exposures", "looker", "infra__contract_status"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__contracts_burn_status", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__contracts_burn_status')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/aws_cost_overview.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__contracts_burn_status"]}, "refs": [{"name": "infra__contracts_burn_status", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0200489}, "exposure.yoda.infra__cost_budget": {"name": "infra__cost_budget", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__cost_budget.yml", "original_file_path": "models/infra/exposures/looker/infra__cost_budget.yml", "unique_id": "exposure.yoda.infra__cost_budget", "fqn": ["yoda", "infra", "exposures", "looker", "infra__cost_budget"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__cost_budget", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__cost_budget')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/cost_budget.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__cost_budget"]}, "refs": [{"name": "infra__cost_budget", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0251098}, "exposure.yoda.infra__cost_budget_history": {"name": "infra__cost_budget_history", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__cost_budget_history.yml", "original_file_path": "models/infra/exposures/looker/infra__cost_budget_history.yml", "unique_id": "exposure.yoda.infra__cost_budget_history", "fqn": ["yoda", "infra", "exposures", "looker", "infra__cost_budget_history"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__cost_budget_history", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra_stg__team_budget')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/cost_budget.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__team_budget"]}, "refs": [{"name": "infra_stg__team_budget", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.029814}, "exposure.yoda.infra__databricks_costs": {"name": "infra__databricks_costs", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__databricks_costs.yml", "original_file_path": "models/infra/exposures/looker/infra__databricks_costs.yml", "unique_id": "exposure.yoda.infra__databricks_costs", "fqn": ["yoda", "infra", "exposures", "looker", "infra__databricks_costs"], "type": "analysis", "owner": {"email": "dporat@yotpo.com", "name": "doron porat"}, "description": "Databricks and aws combined costs for analysis", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__databricks_costs')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__databricks_costs"]}, "refs": [{"name": "infra__databricks_costs", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0348792}, "exposure.yoda.infra__ec2_cost": {"name": "infra__ec2_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__ec2_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__ec2_cost.yml", "unique_id": "exposure.yoda.infra__ec2_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__ec2_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__ec2_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__ec2_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/ec2_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__ec2_cost"]}, "refs": [{"name": "infra__ec2_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0398965}, "exposure.yoda.infra__elasticcache_cost": {"name": "infra__elasticcache_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__elasticcache_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__elasticcache_cost.yml", "unique_id": "exposure.yoda.infra__elasticcache_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__elasticcache_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__elasticcache_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__elasticcache_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/rds_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__elasticcache_cost"]}, "refs": [{"name": "infra__elasticcache_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0452366}, "exposure.yoda.infra__elasticsearch_cost": {"name": "infra__elasticsearch_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__elasticsearch_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__elasticsearch_cost.yml", "unique_id": "exposure.yoda.infra__elasticsearch_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__elasticsearch_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__elasticsearch_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__elasticsearch_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/elasticsearch_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__elasticsearch_cost"]}, "refs": [{"name": "infra__elasticsearch_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0518088}, "exposure.yoda.infra__github_workflow_runs": {"name": "infra__github_workflow_runs", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__github_workflow_runs.yml", "original_file_path": "models/infra/exposures/looker/infra__github_workflow_runs.yml", "unique_id": "exposure.yoda.infra__github_workflow_runs", "fqn": ["yoda", "infra", "exposures", "looker", "infra__github_workflow_runs"], "type": "analysis", "owner": {"email": "doron.kruh@yotpo.com", "name": "doron kruh"}, "description": "", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__git_actions_runs')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__git_actions_runs"]}, "refs": [{"name": "infra__git_actions_runs", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0581613}, "exposure.yoda.infra__groups_and_teams": {"name": "infra__groups_and_teams", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__groups_and_teams.yml", "original_file_path": "models/infra/exposures/looker/infra__groups_and_teams.yml", "unique_id": "exposure.yoda.infra__groups_and_teams", "fqn": ["yoda", "infra", "exposures", "looker", "infra__groups_and_teams"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__groups_and_teams", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__groups_and_teams')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/cost_budget.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__groups_and_teams"]}, "refs": [{"name": "infra__groups_and_teams", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0631027}, "exposure.yoda.infra__infra_metrics_model": {"name": "infra__infra_metrics_model", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__infra_metrics_model.yml", "original_file_path": "models/infra/exposures/looker/infra__infra_metrics_model.yml", "unique_id": "exposure.yoda.infra__infra_metrics_model", "fqn": ["yoda", "infra", "exposures", "looker", "infra__infra_metrics_model"], "type": "analysis", "owner": {"email": "doron.kruh@yotpo.com", "name": "doron kruh"}, "description": "a looker expusre over infra metricsw", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__infra_metrics')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__infra_metrics"]}, "refs": [{"name": "infra__infra_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0684404}, "exposure.yoda.infra__kubernetes_cost": {"name": "infra__kubernetes_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__kubernetes_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__kubernetes_cost.yml", "unique_id": "exposure.yoda.infra__kubernetes_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__kubernetes_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__kubernetes_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__kubernetes_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__kubernetes_cost"]}, "refs": [{"name": "infra__kubernetes_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0736127}, "exposure.yoda.infra__msk_cost": {"name": "infra__msk_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__msk_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__msk_cost.yml", "unique_id": "exposure.yoda.infra__msk_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__msk_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__msk_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__msk_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/msk_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__msk_cost"]}, "refs": [{"name": "infra__msk_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.078507}, "exposure.yoda.infra__opensearch_cost": {"name": "infra__opensearch_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__opensearch_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__opensearch_cost.yml", "unique_id": "exposure.yoda.infra__opensearch_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__opensearch_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__opensearch_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__opensearch_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/rds_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__opensearch_cost"]}, "refs": [{"name": "infra__opensearch_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.083534}, "exposure.yoda.infra__opsgenie_alerts": {"name": "infra__opsgenie_alerts", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__opsgenie_alerts.yml", "original_file_path": "models/infra/exposures/looker/infra__opsgenie_alerts.yml", "unique_id": "exposure.yoda.infra__opsgenie_alerts", "fqn": ["yoda", "infra", "exposures", "looker", "infra__opsgenie_alerts"], "type": "analysis", "owner": {"email": "aliebstein@yotpo.com", "name": "assaf liebstein"}, "description": "OpsGenie Alerts", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__opsgenie_alerts')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__opsgenie_alerts"]}, "refs": [{"name": "infra__opsgenie_alerts", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.08865}, "exposure.yoda.infra__opsgenie_incidents": {"name": "infra__opsgenie_incidents", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__opsgenie_incidents.yml", "original_file_path": "models/infra/exposures/looker/infra__opsgenie_incidents.yml", "unique_id": "exposure.yoda.infra__opsgenie_incidents", "fqn": ["yoda", "infra", "exposures", "looker", "infra__opsgenie_incidents"], "type": "analysis", "owner": {"email": "aliebstein@yotpo.com", "name": "assaf liebstein"}, "description": "OpsGenie Incidents", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__opsgenie_incidents')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__opsgenie_incidents"]}, "refs": [{"name": "infra__opsgenie_incidents", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0935369}, "exposure.yoda.infra__rds_cost": {"name": "infra__rds_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__rds_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__rds_cost.yml", "unique_id": "exposure.yoda.infra__rds_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__rds_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__rds_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__rds_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/rds_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__rds_cost"]}, "refs": [{"name": "infra__rds_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.0985675}, "exposure.yoda.infra__rivery_contract_statistics": {"name": "infra__rivery_contract_statistics", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__rivery_contract_statistics.yml", "original_file_path": "models/infra/exposures/looker/infra__rivery_contract_statistics.yml", "unique_id": "exposure.yoda.infra__rivery_contract_statistics", "fqn": ["yoda", "infra", "exposures", "looker", "infra__rivery_contract_statistics"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe derri"}, "description": "Rivery Contract Statistics", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__rivery_contract_statistics')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/rivery_contract_statistics.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__rivery_contract_statistics"]}, "refs": [{"name": "infra__rivery_contract_statistics", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1036887}, "exposure.yoda.infra__rivery_usage_model": {"name": "infra__rivery_usage_model", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__rivery_usage_model.yml", "original_file_path": "models/infra/exposures/looker/infra__rivery_usage_model.yml", "unique_id": "exposure.yoda.infra__rivery_usage_model", "fqn": ["yoda", "infra", "exposures", "looker", "infra__rivery_usage_model"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe derri"}, "description": "Rivery Usage model", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__rivery_daily_usage')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/rivery_usage_model.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__rivery_daily_usage"]}, "refs": [{"name": "infra__rivery_daily_usage", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1087027}, "exposure.yoda.infra__s3_cost": {"name": "infra__s3_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__s3_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__s3_cost.yml", "unique_id": "exposure.yoda.infra__s3_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__s3_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__s3_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__s3_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/s3_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__s3_cost"]}, "refs": [{"name": "infra__s3_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1134534}, "exposure.yoda.infra__s3_prefix_aggregations": {"name": "infra__s3_prefix_aggregations", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__s3_prefix_aggregations.yml", "original_file_path": "models/infra/exposures/looker/infra__s3_prefix_aggregations.yml", "unique_id": "exposure.yoda.infra__s3_prefix_aggregations", "fqn": ["yoda", "infra", "exposures", "looker", "infra__s3_prefix_aggregations"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__s3_prefix_aggregations", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__s3_prefix_aggregations')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/s3_prefix_aggregations.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__s3_prefix_aggregations"]}, "refs": [{"name": "infra__s3_prefix_aggregations", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1185498}, "exposure.yoda.infra__s3_storage_data_summary": {"name": "infra__s3_storage_data_summary", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__s3_storage_data_summary.yml", "original_file_path": "models/infra/exposures/looker/infra__s3_storage_data_summary.yml", "unique_id": "exposure.yoda.infra__s3_storage_data_summary", "fqn": ["yoda", "infra", "exposures", "looker", "infra__s3_storage_data_summary"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__s3_storage_data_summary", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__s3_storage_data_summary')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/s3_storage_data_summary.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__s3_storage_data_summary"]}, "refs": [{"name": "infra__s3_storage_data_summary", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1237383}, "exposure.yoda.infra__snowflake_automatic_clustering_cost": {"name": "infra__snowflake_automatic_clustering_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__snowflake_automatic_clustering_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__snowflake_automatic_clustering_cost.yml", "unique_id": "exposure.yoda.infra__snowflake_automatic_clustering_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__snowflake_automatic_clustering_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__snowflake_automatic_clustering_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__snowflake_automatic_clustering_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/infra__snowflake_automatic_clustering_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__snowflake_automatic_clustering_cost"]}, "refs": [{"name": "infra__snowflake_automatic_clustering_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.129111}, "exposure.yoda.infra__snowflake_cost_summary": {"name": "infra__snowflake_cost_summary", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__snowflake_cost_summary.yml", "original_file_path": "models/infra/exposures/looker/infra__snowflake_cost_summary.yml", "unique_id": "exposure.yoda.infra__snowflake_cost_summary", "fqn": ["yoda", "infra", "exposures", "looker", "infra__snowflake_cost_summary"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__snowflake_cost_summary", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__snowflake_cost_summary')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/infra__snowflake_cost_summary.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__snowflake_cost_summary"]}, "refs": [{"name": "infra__snowflake_cost_summary", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1343846}, "exposure.yoda.infra__snowflake_daily_cost": {"name": "infra__snowflake_daily_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__snowflake_daily_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__snowflake_daily_cost.yml", "unique_id": "exposure.yoda.infra__snowflake_daily_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__snowflake_daily_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__snowflake_daily_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__snowflake_daily_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/infra__snowflake_daily_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__snowflake_daily_cost"]}, "refs": [{"name": "infra__snowflake_daily_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.13953}, "exposure.yoda.infra__snowflake_monthly_cost": {"name": "infra__snowflake_monthly_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__snowflake_monthly_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__snowflake_monthly_cost.yml", "unique_id": "exposure.yoda.infra__snowflake_monthly_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__snowflake_monthly_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__snowflake_monthly_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__snowflake_monthly_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/infra__snowflake_monthly_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__snowflake_monthly_cost"]}, "refs": [{"name": "infra__snowflake_monthly_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1443155}, "exposure.yoda.infra__snowflake_query_statistics": {"name": "infra__snowflake_query_statistics", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__snowflake_query_statistics.yml", "original_file_path": "models/infra/exposures/looker/infra__snowflake_query_statistics.yml", "unique_id": "exposure.yoda.infra__snowflake_query_statistics", "fqn": ["yoda", "infra", "exposures", "looker", "infra__snowflake_query_statistics"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__snowflake_query_statistics", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__snowflake_query_statistics')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/infra__snowflake_query_statistics.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__snowflake_query_statistics"]}, "refs": [{"name": "infra__snowflake_query_statistics", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1496036}, "exposure.yoda.infra__snowflake_storage_cost": {"name": "infra__snowflake_storage_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__snowflake_storage_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__snowflake_storage_cost.yml", "unique_id": "exposure.yoda.infra__snowflake_storage_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__snowflake_storage_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__snowflake_storage_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__snowflake_storage_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/infra__snowflake_storage_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__snowflake_storage_cost"]}, "refs": [{"name": "infra__snowflake_storage_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1556127}, "exposure.yoda.infra__snowflake_views_cost": {"name": "infra__snowflake_views_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__snowflake_views_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__snowflake_views_cost.yml", "unique_id": "exposure.yoda.infra__snowflake_views_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__snowflake_views_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__snowflake_views_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__snowflake_views_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/infra__snowflake_views_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__snowflake_views_cost"]}, "refs": [{"name": "infra__snowflake_views_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.160679}, "exposure.yoda.infra__snowflake_warehouse_cost": {"name": "infra__snowflake_warehouse_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__snowflake_warehouse_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__snowflake_warehouse_cost.yml", "unique_id": "exposure.yoda.infra__snowflake_warehouse_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__snowflake_warehouse_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__snowflake_warehouse_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__snowflake_warehouse_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/infra__snowflake_warehouse_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__snowflake_warehouse_cost"]}, "refs": [{"name": "infra__snowflake_warehouse_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1659489}, "exposure.yoda.infra__snowflake_warehouse_statistics": {"name": "infra__snowflake_warehouse_statistics", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__snowflake_warehouse_statistics.yml", "original_file_path": "models/infra/exposures/looker/infra__snowflake_warehouse_statistics.yml", "unique_id": "exposure.yoda.infra__snowflake_warehouse_statistics", "fqn": ["yoda", "infra", "exposures", "looker", "infra__snowflake_warehouse_statistics"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__snowflake_warehouse_statistics", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__snowflake_warehouse_statistics')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/infra__snowflake_warehouse_statistics.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__snowflake_warehouse_statistics"]}, "refs": [{"name": "infra__snowflake_warehouse_statistics", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1710753}, "exposure.yoda.infra__spark_jobs": {"name": "infra__spark_jobs", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__spark_jobs.yml", "original_file_path": "models/infra/exposures/looker/infra__spark_jobs.yml", "unique_id": "exposure.yoda.infra__spark_jobs", "fqn": ["yoda", "infra", "exposures", "looker", "infra__spark_jobs"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__spark_jobs", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__spark_jobs')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__spark_jobs"]}, "refs": [{"name": "infra__spark_jobs", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.175897}, "exposure.yoda.infra__sqs_cost": {"name": "infra__sqs_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__sqs_cost.yml", "original_file_path": "models/infra/exposures/looker/infra__sqs_cost.yml", "unique_id": "exposure.yoda.infra__sqs_cost", "fqn": ["yoda", "infra", "exposures", "looker", "infra__sqs_cost"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__sqs_cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__sqs_cost')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/rds_cost.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__sqs_cost"]}, "refs": [{"name": "infra__sqs_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1809425}, "exposure.yoda.infra__sub_departments_monthly_budget_cur": {"name": "infra__sub_departments_monthly_budget_cur", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__sub_departments_monthly_budget_cur.yml", "original_file_path": "models/infra/exposures/looker/infra__sub_departments_monthly_budget_cur.yml", "unique_id": "exposure.yoda.infra__sub_departments_monthly_budget_cur", "fqn": ["yoda", "infra", "exposures", "looker", "infra__sub_departments_monthly_budget_cur"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__sub_departments_monthly_budget_cur", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra__sub_departments_monthly_budget_cur')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/infra__sub_departments_monthly_budget_cur.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__sub_departments_monthly_budget_cur"]}, "refs": [{"name": "infra__sub_departments_monthly_budget_cur", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1860912}, "exposure.yoda.infra__sub_departments_monthly_budget_history": {"name": "infra__sub_departments_monthly_budget_history", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/looker/infra__sub_departments_monthly_budget_history.yml", "original_file_path": "models/infra/exposures/looker/infra__sub_departments_monthly_budget_history.yml", "unique_id": "exposure.yoda.infra__sub_departments_monthly_budget_history", "fqn": ["yoda", "infra", "exposures", "looker", "infra__sub_departments_monthly_budget_history"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "infra__sub_departments_monthly_budget_history", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('infra_stg__sub_departments_monthly_budget')", "connection": "yoda"}}, "tags": ["yoda_looker", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/infra/views/infra__sub_departments_monthly_budget.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__sub_departments_monthly_budget"]}, "refs": [{"name": "infra_stg__sub_departments_monthly_budget", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.1912768}, "exposure.yoda.infra__aws_cost": {"name": "infra__aws_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__aws_cost.yml", "original_file_path": "models/infra/exposures/scheduling/infra__aws_cost.yml", "unique_id": "exposure.yoda.infra__aws_cost", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__aws_cost"], "type": "application", "owner": {"email": "moshe.derri@yotpo.com", "name": "data group"}, "description": "AWS Models", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 03,06,09,12 * * *", "start_date": "2022-11-22", "upstream_models_freshness": []}}, "tags": ["yoda_scheduling", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=infra__S3_Cost", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__aws_billing_report_raw", "model.yoda.infra__rds_cost", "model.yoda.infra__aws_cost_overview", "model.yoda.infra__msk_cost", "model.yoda.infra__ec2_cost", "model.yoda.infra_stg__ec2_cost", "model.yoda.infra__ec2_cost_cold", "model.yoda.infra__ec2_cost_hot", "model.yoda.infra_stg__aws_payer_billing_report_raw", "model.yoda.infra_stg__aws_s3_cost", "model.yoda.infra__s3_cost", "model.yoda.infra__s3_cost_hot", "model.yoda.infra__s3_cost_cold", "model.yoda.infra__elasticcache_cost", "model.yoda.infra__sqs_cost", "model.yoda.infra__opensearch_cost"]}, "refs": [{"name": "infra_stg__aws_billing_report_raw", "package": null, "version": null}, {"name": "infra__rds_cost", "package": null, "version": null}, {"name": "infra__aws_cost_overview", "package": null, "version": null}, {"name": "infra__msk_cost", "package": null, "version": null}, {"name": "infra__ec2_cost", "package": null, "version": null}, {"name": "infra_stg__ec2_cost", "package": null, "version": null}, {"name": "infra__ec2_cost_cold", "package": null, "version": null}, {"name": "infra__ec2_cost_hot", "package": null, "version": null}, {"name": "infra_stg__aws_payer_billing_report_raw", "package": null, "version": null}, {"name": "infra_stg__aws_s3_cost", "package": null, "version": null}, {"name": "infra__s3_cost", "package": null, "version": null}, {"name": "infra__s3_cost_hot", "package": null, "version": null}, {"name": "infra__s3_cost_cold", "package": null, "version": null}, {"name": "infra__elasticcache_cost", "package": null, "version": null}, {"name": "infra__sqs_cost", "package": null, "version": null}, {"name": "infra__opensearch_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.2008514}, "exposure.yoda.infra__aws_storage_cost": {"name": "infra__aws_storage_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__aws_storage_cost.yml", "original_file_path": "models/infra/exposures/scheduling/infra__aws_storage_cost.yml", "unique_id": "exposure.yoda.infra__aws_storage_cost", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__aws_storage_cost"], "type": "application", "owner": {"email": "moshe.derri@yotpo.com", "name": "data group"}, "description": "AWS Models", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 06 * * *", "start_date": "2022-11-22", "upstream_models_freshness": []}}, "tags": ["yoda_scheduling", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=infra__S3_Cost", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__s3_inventory_raw", "model.yoda.infra_stg__aws_s3_inventory_data", "model.yoda.infra__s3_storage_data_summary", "model.yoda.infra__s3_prefix_aggregations"]}, "refs": [{"name": "infra_stg__s3_inventory_raw", "package": null, "version": null}, {"name": "infra_stg__aws_s3_inventory_data", "package": null, "version": null}, {"name": "infra__s3_storage_data_summary", "package": null, "version": null}, {"name": "infra__s3_prefix_aggregations", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.210428}, "exposure.yoda.infra__budget": {"name": "infra__budget", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__budget.yml", "original_file_path": "models/infra/exposures/scheduling/infra__budget.yml", "unique_id": "exposure.yoda.infra__budget", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__budget"], "type": "application", "owner": {"email": "moshe.derri@yotpo.com", "name": ""}, "description": "models : infra_stg__sub_departments_monthly_budget scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-07-24", "upstream_models_freshness": [{"model_name": "infra__aws_cost_overview", "freshness": "AUTO"}, {"model_name": "infra__databricks_costs", "freshness": "AUTO"}, {"model_name": "infra__kubernetes_cost", "freshness": "AUTO"}, {"model_name": "infra__rivery_daily_usage", "freshness": "AUTO"}, {"model_name": "infra__snowflake_cost", "freshness": "AUTO"}]}}, "tags": ["infra", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=infra__budget", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__sub_departments_monthly_budget", "model.yoda.infra__sub_departments_monthly_budget_cur", "model.yoda.infra_stg__team_budget", "model.yoda.infra_stg__budget", "model.yoda.infra__cost_budget", "model.yoda.infra__groups_and_teams", "model.yoda.infra__vendor_contracts", "model.yoda.infra__contracts_burn_status", "model.yoda.infra__contracts_burn_estimations"]}, "refs": [{"name": "infra_stg__sub_departments_monthly_budget", "package": null, "version": null}, {"name": "infra__sub_departments_monthly_budget_cur", "package": null, "version": null}, {"name": "infra_stg__team_budget", "package": null, "version": null}, {"name": "infra_stg__budget", "package": null, "version": null}, {"name": "infra__cost_budget", "package": null, "version": null}, {"name": "infra__groups_and_teams", "package": null, "version": null}, {"name": "infra__vendor_contracts", "package": null, "version": null}, {"name": "infra__contracts_burn_status", "package": null, "version": null}, {"name": "infra__contracts_burn_estimations", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.221802}, "exposure.yoda.infra__canary_scheduling": {"name": "infra__canary_scheduling", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__canary_scheduling.yml", "original_file_path": "models/infra/exposures/scheduling/infra__canary_scheduling.yml", "unique_id": "exposure.yoda.infra__canary_scheduling", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__canary_scheduling"], "type": "application", "owner": {"email": "doron.kruh@yotpo.com", "name": "Koalas"}, "description": "models : infra__canary_data_model scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0,30 * * * *", "start_date": "2023-05-01"}}, "tags": ["infra", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=infra__canary_scheduling", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__canary_data_model", "model.yoda.infra__canary_segment_model_profile", "model.yoda.infra__canary_snowflake_model"]}, "refs": [{"name": "infra__canary_data_model", "package": null, "version": null}, {"name": "infra__canary_segment_model_profile", "package": null, "version": null}, {"name": "infra__canary_snowflake_model", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.2291424}, "exposure.yoda.infra__databricks_cost": {"name": "infra__databricks_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__databricks_cost.yml", "original_file_path": "models/infra/exposures/scheduling/infra__databricks_cost.yml", "unique_id": "exposure.yoda.infra__databricks_cost", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__databricks_cost"], "type": "application", "owner": {"email": "moshe.derri@yotpo.com", "name": "data group"}, "description": "Databricks Cost", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "15 4 * * *", "start_date": "2022-11-22", "upstream_models_freshness": [{"model_name": "infra_stg__aws_payer_billing_report_raw", "freshness": "AUTO"}]}}, "tags": ["yoda_scheduling", "infra"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=infra__databricks_cost", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__kubecost_raw", "model.yoda.infra_stg__databricks_cost_raw", "model.yoda.infra__databricks_costs"]}, "refs": [{"name": "infra_stg__kubecost_raw", "package": null, "version": null}, {"name": "infra_stg__databricks_cost_raw", "package": null, "version": null}, {"name": "infra__databricks_costs", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.235937}, "exposure.yoda.infra__github_models_metrics": {"name": "infra__github_models_metrics", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__github_models_metrics.yml", "original_file_path": "models/infra/exposures/scheduling/infra__github_models_metrics.yml", "unique_id": "exposure.yoda.infra__github_models_metrics", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__github_models_metrics"], "type": "application", "owner": {"email": "doron.kruh@yotpo.com", "name": "Koalas"}, "description": "models : infra_stg__repos scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 3 * * *", "start_date": "2023-04-20", "upstream_models_freshness": [{"model_name": "infra__databricks_costs", "freshness": "AUTO"}, {"model_name": "infra__spark_jobs", "freshness": "AUTO"}, {"model_name": "infra_stg__aws_payer_billing_report_raw", "freshness": "AUTO"}]}}, "tags": ["infra", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=infra__github_models_metrics", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__repos", "model.yoda.infra_stg__workflows", "model.yoda.infra_stg__workflow_runs", "model.yoda.infra__git_actions_runs", "model.yoda.infra_stg__infra_metrics", "model.yoda.infra__infra_metrics", "model.yoda.infra_stg__upsolver_outputs"]}, "refs": [{"name": "infra_stg__repos", "package": null, "version": null}, {"name": "infra_stg__workflows", "package": null, "version": null}, {"name": "infra_stg__workflow_runs", "package": null, "version": null}, {"name": "infra__git_actions_runs", "package": null, "version": null}, {"name": "infra_stg__infra_metrics", "package": null, "version": null}, {"name": "infra__infra_metrics", "package": null, "version": null}, {"name": "infra_stg__upsolver_outputs", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.2460961}, "exposure.yoda.infra__infra_uptime_metrics": {"name": "infra__infra_uptime_metrics", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__infra_uptime_metrics.yml", "original_file_path": "models/infra/exposures/scheduling/infra__infra_uptime_metrics.yml", "unique_id": "exposure.yoda.infra__infra_uptime_metrics", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__infra_uptime_metrics"], "type": "application", "owner": {"email": "aliebstein@yotpo.com", "name": ""}, "description": "models : infra_stg__services scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-03-07"}}, "tags": ["infra", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=infra__infra_uptime_metrics", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__services", "model.yoda.infra_stg__incidents", "model.yoda.infra_stg__teams", "model.yoda.infra__opsgenie_incidents", "model.yoda.infra__opsgenie_alerts", "model.yoda.infra_stg__alerts"]}, "refs": [{"name": "infra_stg__services", "package": null, "version": null}, {"name": "infra_stg__incidents", "package": null, "version": null}, {"name": "infra_stg__teams", "package": null, "version": null}, {"name": "infra__opsgenie_incidents", "package": null, "version": null}, {"name": "infra__opsgenie_alerts", "package": null, "version": null}, {"name": "infra_stg__alerts", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.254797}, "exposure.yoda.infra__kuberneters_cost": {"name": "infra__kuberneters_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__kuberneters_cost.yml", "original_file_path": "models/infra/exposures/scheduling/infra__kuberneters_cost.yml", "unique_id": "exposure.yoda.infra__kuberneters_cost", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__kuberneters_cost"], "type": "application", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "Kubernetes Cost", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "15 4 * * *", "start_date": "2022-11-22", "upstream_models_freshness": [{"model_name": "infra_stg__aws_payer_billing_report_raw", "freshness": "AUTO"}]}}, "tags": ["infra", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=infra__kuberneters_cost", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__kubernetes_cost", "model.yoda.infra__kubernetes_cost", "model.yoda.infra__spark_jobs", "model.yoda.infra__elasticsearch_cost", "model.yoda.infra_stg__kubecost_delta", "model.yoda.infra__kubernetes_cost_cold", "model.yoda.infra__kubernetes_cost_hot"]}, "refs": [{"name": "infra_stg__kubernetes_cost", "package": null, "version": null}, {"name": "infra__kubernetes_cost", "package": null, "version": null}, {"name": "infra__spark_jobs", "package": null, "version": null}, {"name": "infra__elasticsearch_cost", "package": null, "version": null}, {"name": "infra_stg__kubecost_delta", "package": null, "version": null}, {"name": "infra__kubernetes_cost_cold", "package": null, "version": null}, {"name": "infra__kubernetes_cost_hot", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.2639723}, "exposure.yoda.infra__products": {"name": "infra__products", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__products.yml", "original_file_path": "models/infra/exposures/scheduling/infra__products.yml", "unique_id": "exposure.yoda.infra__products", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__products"], "type": "application", "owner": {"email": "moshe.derri@yotpo.com", "name": "Moshe Derri"}, "description": "products owned by the data infrastructure team", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-03-27"}}, "tags": ["infra", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=infra__products", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__pixel_enrichment", "model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v3"]}, "refs": [{"name": "infra_stg__pixel_enrichment", "package": null, "version": null}, {"name": "infra__pixel_onsite_v2", "package": null, "version": null}, {"name": "infra__pixel_onsite_v3", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.2710679}, "exposure.yoda.infra__rivery_usage": {"name": "infra__rivery_usage", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__rivery_usage.yml", "original_file_path": "models/infra/exposures/scheduling/infra__rivery_usage.yml", "unique_id": "exposure.yoda.infra__rivery_usage", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__rivery_usage"], "type": "application", "owner": {"email": "moshe.derri@yotpo.com", "name": "Moshe derri"}, "description": "models : infra_stg__rivery_rivers_usage scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-07-03"}}, "tags": ["infra", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=infra__rivery_usage", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__rivery_rivers_usage", "model.yoda.infra_stg__rivery_environments", "model.yoda.infra__rivery_daily_usage", "model.yoda.infra_stg__rivery_groups", "model.yoda.infra__rivery_contract_statistics"]}, "refs": [{"name": "infra_stg__rivery_rivers_usage", "package": null, "version": null}, {"name": "infra_stg__rivery_environments", "package": null, "version": null}, {"name": "infra__rivery_daily_usage", "package": null, "version": null}, {"name": "infra_stg__rivery_groups", "package": null, "version": null}, {"name": "infra__rivery_contract_statistics", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.2777445}, "exposure.yoda.infra__segment": {"name": "infra__segment", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__segment.yml", "original_file_path": "models/infra/exposures/scheduling/infra__segment.yml", "unique_id": "exposure.yoda.infra__segment", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__segment"], "type": "application", "owner": {"email": "moshe.derri@yotpo.com", "name": "Moshe Derri"}, "description": "models : infra_stg__page scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-09-06"}}, "tags": ["infra", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=infra__segment", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__page", "model.yoda.infra_stg__page_track", "model.yoda.infra_stg__identify", "model.yoda.infra_stg__group"]}, "refs": [{"name": "infra_stg__page", "package": null, "version": null}, {"name": "infra_stg__page_track", "package": null, "version": null}, {"name": "infra_stg__identify", "package": null, "version": null}, {"name": "infra_stg__group", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.2845016}, "exposure.yoda.infra__snowflake_cost": {"name": "infra__snowflake_cost", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__snowflake_cost.yml", "original_file_path": "models/infra/exposures/scheduling/infra__snowflake_cost.yml", "unique_id": "exposure.yoda.infra__snowflake_cost", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__snowflake_cost"], "type": "application", "owner": {"email": "moshe.derri@yotpo.com", "name": ""}, "description": "models : infra_stg__snowflake_automatic_clustering_history scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 1 * * *", "start_date": "2023-04-16", "upstream_models_freshness": [{"model_name": "infra__snowflake_contract_details", "freshness": "AUTO"}]}}, "tags": ["infra", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=infra__snowflake_cost", "depends_on": {"macros": [], "nodes": ["model.yoda.infra_stg__snowflake_automatic_clustering_history", "model.yoda.infra_stg__snowflake_database_storage_usage_history", "model.yoda.infra_stg__snowflake_materialized_view_refresh_history", "model.yoda.infra_stg__snowflake_warehouse_metering_history", "model.yoda.infra_stg__snowflake_tag_references", "model.yoda.infra__snowflake_automatic_clustering_cost", "model.yoda.infra__snowflake_warehouse_cost", "model.yoda.infra__snowflake_views_cost", "model.yoda.infra__snowflake_storage_cost", "model.yoda.infra__snowflake_monthly_cost", "model.yoda.infra__snowflake_daily_cost", "model.yoda.infra__snowflake_cost_summary", "model.yoda.infra_stg__snowflake_warehouse_events", "model.yoda.infra__snowflake_query_statistics", "model.yoda.infra__snowflake_warehouse_statistics", "model.yoda.infra_stg__snowflake_queries_statistics", "model.yoda.infra__snowflake_cost"]}, "refs": [{"name": "infra_stg__snowflake_automatic_clustering_history", "package": null, "version": null}, {"name": "infra_stg__snowflake_database_storage_usage_history", "package": null, "version": null}, {"name": "infra_stg__snowflake_materialized_view_refresh_history", "package": null, "version": null}, {"name": "infra_stg__snowflake_warehouse_metering_history", "package": null, "version": null}, {"name": "infra_stg__snowflake_tag_references", "package": null, "version": null}, {"name": "infra__snowflake_automatic_clustering_cost", "package": null, "version": null}, {"name": "infra__snowflake_warehouse_cost", "package": null, "version": null}, {"name": "infra__snowflake_views_cost", "package": null, "version": null}, {"name": "infra__snowflake_storage_cost", "package": null, "version": null}, {"name": "infra__snowflake_monthly_cost", "package": null, "version": null}, {"name": "infra__snowflake_daily_cost", "package": null, "version": null}, {"name": "infra__snowflake_cost_summary", "package": null, "version": null}, {"name": "infra_stg__snowflake_warehouse_events", "package": null, "version": null}, {"name": "infra__snowflake_query_statistics", "package": null, "version": null}, {"name": "infra__snowflake_warehouse_statistics", "package": null, "version": null}, {"name": "infra_stg__snowflake_queries_statistics", "package": null, "version": null}, {"name": "infra__snowflake_cost", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.295757}, "exposure.yoda.infra__static_resources": {"name": "infra__static_resources", "resource_type": "exposure", "package_name": "yoda", "path": "infra/exposures/scheduling/infra__static_resources.yml", "original_file_path": "models/infra/exposures/scheduling/infra__static_resources.yml", "unique_id": "exposure.yoda.infra__static_resources", "fqn": ["yoda", "infra", "exposures", "scheduling", "infra__static_resources"], "type": "application", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "Static resources which will be migrated to seeds once supported", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@once", "start_date": "2023-04-30"}}, "tags": ["infra", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=infra__static_resources", "depends_on": {"macros": [], "nodes": ["model.yoda.infra__snowflake_contract_details"]}, "refs": [{"name": "infra__snowflake_contract_details", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082668.3037238}, "exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot": {"name": "loyalty__At_05_00_yoda_dag_daily_snapshot", "resource_type": "exposure", "package_name": "yoda", "path": "loyalty/exposures/scheduling/loyalty__At_05_00_yoda_dag_daily_snapshot.yml", "original_file_path": "models/loyalty/exposures/scheduling/loyalty__At_05_00_yoda_dag_daily_snapshot.yml", "unique_id": "exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "fqn": ["yoda", "loyalty", "exposures", "scheduling", "loyalty__At_05_00_yoda_dag_daily_snapshot"], "type": "application", "owner": {"email": "koalas@yotpo.com", "name": "data group"}, "description": "Loyalty At 05 00 Yoda Dag Daily Snapshot DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 5 * * *", "start_date": "2022-07-21", "upstream_models_freshness": [{"model_name": "analytics___salesforce__account", "freshness": "AUTO"}, {"model_name": "loyalty_stg__campaigns", "freshness": "AUTO"}, {"model_name": "loyalty_stg__currency_rates", "freshness": "AUTO"}, {"model_name": "loyalty_stg__customer_birthdays", "freshness": "AUTO"}, {"model_name": "loyalty_stg__customers", "freshness": "AUTO"}, {"model_name": "loyalty_stg__customers_opt_in", "freshness": "AUTO"}, {"model_name": "loyalty_stg__customers_platform_accounts", "freshness": "AUTO"}, {"model_name": "loyalty_stg__customers_vip_tiers", "freshness": "AUTO"}, {"model_name": "loyalty_stg__customers_vip_tiers_history", "freshness": "AUTO"}, {"model_name": "loyalty_stg__email_campaign_emails", "freshness": "AUTO"}, {"model_name": "loyalty_stg__group_customers", "freshness": "AUTO"}, {"model_name": "loyalty_stg__known_crawlers", "freshness": "AUTO"}, {"model_name": "loyalty_stg__merchants", "freshness": "AUTO"}, {"model_name": "loyalty_stg__perks", "freshness": "AUTO"}, {"model_name": "loyalty_stg__perks_user_actions", "freshness": "AUTO"}, {"model_name": "loyalty_stg__point_redemptions", "freshness": "AUTO"}, {"model_name": "loyalty_stg__processors", "freshness": "AUTO"}, {"model_name": "loyalty_stg__purchase_items", "freshness": "AUTO"}, {"model_name": "loyalty_stg__purchases", "freshness": "AUTO"}, {"model_name": "loyalty_stg__purchases_redemptions", "freshness": "AUTO"}, {"model_name": "loyalty_stg__purchases_with_currency", "freshness": "AUTO"}, {"model_name": "loyalty_stg__redemption_codes", "freshness": "AUTO"}, {"model_name": "loyalty_stg__redemption_options", "freshness": "AUTO"}, {"model_name": "loyalty_stg__referral_codes", "freshness": "AUTO"}, {"model_name": "loyalty_stg__referral_discount_codes", "freshness": "AUTO"}, {"model_name": "loyalty_stg__referral_receipts", "freshness": "AUTO"}, {"model_name": "loyalty_stg__referral_shares", "freshness": "AUTO"}, {"model_name": "loyalty_stg__referral_snapshots", "freshness": "AUTO"}, {"model_name": "loyalty_stg__referrals", "freshness": "AUTO"}, {"model_name": "loyalty_stg__refund_items", "freshness": "AUTO"}, {"model_name": "loyalty_stg__refunds", "freshness": "AUTO"}, {"model_name": "loyalty_stg__subscriptions", "freshness": "AUTO"}, {"model_name": "loyalty_stg__user_actions", "freshness": "AUTO"}, {"model_name": "loyalty_stg__user_agents", "freshness": "AUTO"}, {"model_name": "loyalty_stg__vip_tiers", "freshness": "AUTO"}, {"model_name": "loyalty_stg__vip_tiers_thresholds", "freshness": "AUTO"}, {"model_name": "loyalty_stg__yotpo_platform_accounts", "freshness": "AUTO"}]}}, "tags": ["yoda_scheduling", "loyalty"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=loyalty__At_05_00_yoda_dag_daily_snapshot", "depends_on": {"macros": [], "nodes": ["model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot", "model.yoda.loyalty__fact_perks_daily_snapshot", "model.yoda.loyalty__dim_subscriptions_daily_snapshot", "model.yoda.loyalty__dim_vip_tiers_history_daily_snapshot", "model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty__dim_referral_codes_daily_snapshot", "model.yoda.loyalty__fact_user_agents_daily_snapshot", "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot", "model.yoda.loyalty__fact_refunds_daily_snapshot", "model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot", "model.yoda.loyalty__fact_user_actions_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__dim_customers_daily_snapshot", "model.yoda.loyalty__dim_merchants_daily_snapshot", "model.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "model.yoda.loyalty__fact_purchase_items_daily_snapshot", "model.yoda.loyalty__fact_referral_snapshots_daily_snapshot", "model.yoda.loyalty__fact_referral_shares_daily_snapshot", "model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot", "model.yoda.loyalty__dim_campaigns_daily_snapshot", "model.yoda.loyalty__dim_customer_birthdays_daily_snapshot", "model.yoda.loyalty__fact_referral_receipts_daily_snapshot", "model.yoda.loyalty__dim_vip_tiers_daily_snapshot", "model.yoda.loyalty__fact_referral_perks_daily_snapshot", "model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot", "model.yoda.loyalty__fact_refund_items_daily_snapshot", "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot", "model.yoda.loyalty_stg__all_redemption_to_purchase"]}, "refs": [{"name": "loyalty__fact_purchases_redemptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_perks_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_subscriptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_vip_tiers_history_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_redemptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_referrals_without_crawlers_daily_snapshot", "package": null, "version": null}, {"name": "loyalty_stg__enriched_customers", "package": null, "version": null}, {"name": "loyalty__dim_referral_codes_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_user_agents_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_refunds_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_dates_for_investment_metric_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_user_actions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_purchases_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_customers_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_merchants_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_purchase_items_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_referral_snapshots_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_referral_shares_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_email_campaigns_emails_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_campaigns_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_customer_birthdays_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_referral_receipts_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_vip_tiers_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_referral_perks_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__dim_referral_discount_codes_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_refund_items_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "package": null, "version": null}, {"name": "loyalty_stg__all_redemption_to_purchase", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082672.2906373}, "exposure.yoda.loyalty__chainperks": {"name": "loyalty__chainperks", "resource_type": "exposure", "package_name": "yoda", "path": "loyalty/exposures/scheduling/loyalty__chainperks.yml", "original_file_path": "models/loyalty/exposures/scheduling/loyalty__chainperks.yml", "unique_id": "exposure.yoda.loyalty__chainperks", "fqn": ["yoda", "loyalty", "exposures", "scheduling", "loyalty__chainperks"], "type": "application", "owner": {"email": "kongs@yotpo.com", "name": "Loyalty"}, "description": "Chainperks CDC views", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 4 * * *", "start_date": "2022-12-15", "upstream_models_freshness": []}}, "tags": ["loyalty", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=loyalty__chainperks", "depends_on": {"macros": [], "nodes": ["model.yoda.loyalty_stg__email_campaigns", "model.yoda.loyalty_stg__plans", "model.yoda.loyalty_stg__vip_tiers", "model.yoda.loyalty_stg__processors", "model.yoda.loyalty_stg__referral_discount_codes", "model.yoda.loyalty_stg__email_campaign_emails", "model.yoda.loyalty_stg__perks_user_actions", "model.yoda.loyalty_stg__referral_codes", "model.yoda.loyalty_stg__referral_snapshots", "model.yoda.loyalty_stg__merchants", "model.yoda.loyalty_stg__user_actions", "model.yoda.loyalty_stg__uninstall_loyalty", "model.yoda.loyalty_stg__redemption_options", "model.yoda.loyalty_stg__referrals", "model.yoda.loyalty_stg__customers_opt_in", "model.yoda.loyalty_stg__perks", "model.yoda.loyalty_stg__point_redemptions", "model.yoda.loyalty_stg__campaigns", "model.yoda.loyalty_stg__customer_birthdays", "model.yoda.loyalty_stg__customers_vip_tiers", "model.yoda.loyalty_stg__vip_tiers_thresholds", "model.yoda.loyalty_stg__subscriptions", "model.yoda.loyalty_stg__referral_receipts", "model.yoda.loyalty_stg__refunds", "model.yoda.loyalty_stg__yotpo_platform_accounts", "model.yoda.loyalty_stg__group_customers", "model.yoda.loyalty_stg__referral_shares", "model.yoda.loyalty_stg__purchase_items", "model.yoda.loyalty_stg__redemption_codes", "model.yoda.loyalty_stg__purchases_with_currency", "model.yoda.loyalty_stg__refund_items", "model.yoda.loyalty_stg__customers_vip_tiers_history", "model.yoda.loyalty_stg__user_agents", "model.yoda.loyalty_stg__purchases_redemptions", "model.yoda.loyalty_stg__purchases", "model.yoda.loyalty_stg__customers", "model.yoda.loyalty_stg__currency_rates", "model.yoda.loyalty_stg__vip_tiers_settings", "model.yoda.loyalty_stg__known_crawlers", "model.yoda.loyalty_stg__install_loyalty", "model.yoda.loyalty_stg__campaign_activation_histories", "model.yoda.loyalty_stg__swell_vip_tiers_settings", "model.yoda.loyalty_stg__customers_platform_accounts"]}, "refs": [{"name": "loyalty_stg__email_campaigns", "package": null, "version": null}, {"name": "loyalty_stg__plans", "package": null, "version": null}, {"name": "loyalty_stg__vip_tiers", "package": null, "version": null}, {"name": "loyalty_stg__processors", "package": null, "version": null}, {"name": "loyalty_stg__referral_discount_codes", "package": null, "version": null}, {"name": "loyalty_stg__email_campaign_emails", "package": null, "version": null}, {"name": "loyalty_stg__perks_user_actions", "package": null, "version": null}, {"name": "loyalty_stg__referral_codes", "package": null, "version": null}, {"name": "loyalty_stg__referral_snapshots", "package": null, "version": null}, {"name": "loyalty_stg__merchants", "package": null, "version": null}, {"name": "loyalty_stg__user_actions", "package": null, "version": null}, {"name": "loyalty_stg__uninstall_loyalty", "package": null, "version": null}, {"name": "loyalty_stg__redemption_options", "package": null, "version": null}, {"name": "loyalty_stg__referrals", "package": null, "version": null}, {"name": "loyalty_stg__customers_opt_in", "package": null, "version": null}, {"name": "loyalty_stg__perks", "package": null, "version": null}, {"name": "loyalty_stg__point_redemptions", "package": null, "version": null}, {"name": "loyalty_stg__campaigns", "package": null, "version": null}, {"name": "loyalty_stg__customer_birthdays", "package": null, "version": null}, {"name": "loyalty_stg__customers_vip_tiers", "package": null, "version": null}, {"name": "loyalty_stg__vip_tiers_thresholds", "package": null, "version": null}, {"name": "loyalty_stg__subscriptions", "package": null, "version": null}, {"name": "loyalty_stg__referral_receipts", "package": null, "version": null}, {"name": "loyalty_stg__refunds", "package": null, "version": null}, {"name": "loyalty_stg__yotpo_platform_accounts", "package": null, "version": null}, {"name": "loyalty_stg__group_customers", "package": null, "version": null}, {"name": "loyalty_stg__referral_shares", "package": null, "version": null}, {"name": "loyalty_stg__purchase_items", "package": null, "version": null}, {"name": "loyalty_stg__redemption_codes", "package": null, "version": null}, {"name": "loyalty_stg__purchases_with_currency", "package": null, "version": null}, {"name": "loyalty_stg__refund_items", "package": null, "version": null}, {"name": "loyalty_stg__customers_vip_tiers_history", "package": null, "version": null}, {"name": "loyalty_stg__user_agents", "package": null, "version": null}, {"name": "loyalty_stg__purchases_redemptions", "package": null, "version": null}, {"name": "loyalty_stg__purchases", "package": null, "version": null}, {"name": "loyalty_stg__customers", "package": null, "version": null}, {"name": "loyalty_stg__currency_rates", "package": null, "version": null}, {"name": "loyalty_stg__vip_tiers_settings", "package": null, "version": null}, {"name": "loyalty_stg__known_crawlers", "package": null, "version": null}, {"name": "loyalty_stg__install_loyalty", "package": null, "version": null}, {"name": "loyalty_stg__campaign_activation_histories", "package": null, "version": null}, {"name": "loyalty_stg__swell_vip_tiers_settings", "package": null, "version": null}, {"name": "loyalty_stg__customers_platform_accounts", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082672.3132951}, "exposure.yoda.loyalty__chainperks_to_snowflake": {"name": "loyalty__chainperks_to_snowflake", "resource_type": "exposure", "package_name": "yoda", "path": "loyalty/exposures/scheduling/loyalty__chainperks_to_snowflake.yml", "original_file_path": "models/loyalty/exposures/scheduling/loyalty__chainperks_to_snowflake.yml", "unique_id": "exposure.yoda.loyalty__chainperks_to_snowflake", "fqn": ["yoda", "loyalty", "exposures", "scheduling", "loyalty__chainperks_to_snowflake"], "type": "application", "owner": {"email": "kongs@yotpo.com", "name": "Loyalty"}, "description": "Loyalty Chainperks to Snowflake", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 6 * * *", "start_date": "2022-12-14", "upstream_models_freshness": [{"model_name": "loyalty_stg__email_campaigns", "freshness": "AUTO"}, {"model_name": "loyalty_stg__plans", "freshness": "AUTO"}, {"model_name": "loyalty_stg__referrals", "freshness": "AUTO"}, {"model_name": "loyalty_stg__subscriptions", "freshness": "AUTO"}]}}, "tags": ["loyalty", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=loyalty__chainperks_to_snowflake", "depends_on": {"macros": [], "nodes": ["model.yoda.loyalty__snowflake_email_campaigns", "model.yoda.loyalty__snowflake_referrals", "model.yoda.loyalty__snowflake_plans", "model.yoda.loyalty__snowflake_subscriptions"]}, "refs": [{"name": "loyalty__snowflake_email_campaigns", "package": null, "version": null}, {"name": "loyalty__snowflake_referrals", "package": null, "version": null}, {"name": "loyalty__snowflake_plans", "package": null, "version": null}, {"name": "loyalty__snowflake_subscriptions", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082672.3296924}, "exposure.yoda.loyalty__daily_snapshots_to_snowflake": {"name": "loyalty__daily_snapshots_to_snowflake", "resource_type": "exposure", "package_name": "yoda", "path": "loyalty/exposures/scheduling/loyalty__daily_snapshots_to_snowflake.yml", "original_file_path": "models/loyalty/exposures/scheduling/loyalty__daily_snapshots_to_snowflake.yml", "unique_id": "exposure.yoda.loyalty__daily_snapshots_to_snowflake", "fqn": ["yoda", "loyalty", "exposures", "scheduling", "loyalty__daily_snapshots_to_snowflake"], "type": "application", "owner": {"email": "kongs@yotpo.com", "name": "Loyalty"}, "description": "Loyalty Daily Snapshot to Snowflake", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 7 * * *", "start_date": "2022-12-14", "upstream_models_freshness": [{"model_name": "loyalty__dim_customer_birthdays_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__dim_customers_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__dim_merchants_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__dim_referral_codes_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__dim_referral_discount_codes_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__dim_subscriptions_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__dim_vip_tiers_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__dim_vip_tiers_history_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_dates_for_investment_metric_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_email_campaigns_emails_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_perks_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_purchase_items_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_purchases_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_purchases_redemptions_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_redemptions_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_redemptions_with_purchases_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_referral_perks_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_referral_receipts_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_referral_shares_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_referral_snapshots_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_referrals_without_crawlers_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_refund_items_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_refunds_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_user_actions_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_user_agents_daily_snapshot", "freshness": "AUTO"}]}}, "tags": ["loyalty", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=loyalty__daily_snapshots_to_snowflake", "depends_on": {"macros": [], "nodes": ["model.yoda.loyalty__snowflake_perks_daily_snapshot", "model.yoda.loyalty__snowflake_customers_daily_snapshot", "model.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot", "model.yoda.loyalty__snowflake_merchants_daily_snapshot", "model.yoda.loyalty__snowflake_purchases_daily_snapshot", "model.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot", "model.yoda.loyalty__snowflake_vip_tiers_daily_snapshot", "model.yoda.loyalty__snowflake_referral_codes_daily_snapshot", "model.yoda.loyalty__snowflake_redemptions_daily_snapshot", "model.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot", "model.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot", "model.yoda.loyalty__snowflake_purchase_items_daily_snapshot", "model.yoda.loyalty__snowflake_refund_items_daily_snapshot", "model.yoda.loyalty__snowflake_refunds_daily_snapshot", "model.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot", "model.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot", "model.yoda.loyalty__snowflake_subscriptions_daily_snapshot", "model.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot", "model.yoda.loyalty__snowflake_dates_for_investment_metric_daily_snapshot", "model.yoda.loyalty__snowflake_referral_shares_daily_snapshot", "model.yoda.loyalty__snowflake_referral_perks_daily_snapshot", "model.yoda.loyalty__snowflake_user_actions_daily_snapshot", "model.yoda.loyalty__snowflake_referral_receipts_daily_snapshot", "model.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot", "model.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot", "model.yoda.loyalty__snowflake_user_agents_daily_snapshot", "model.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot"]}, "refs": [{"name": "loyalty__snowflake_perks_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_customers_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_referral_snapshots_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_merchants_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_purchases_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_customer_birthdays_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_vip_tiers_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_referral_codes_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_redemptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_email_campagins_emails_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_purchases_redemptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_purchase_items_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_refund_items_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_refunds_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_vip_tiers_history_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_subscriptions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_yotpo_platform_accounts_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_dates_for_investment_metric_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_referral_shares_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_referral_perks_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_user_actions_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_referral_receipts_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_referral_discount_codes_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_referrals_without_crawlers_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_user_agents_daily_snapshot", "package": null, "version": null}, {"name": "loyalty__snowflake_redemptions_with_purchases_daily_snapshot", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082672.3595703}, "exposure.yoda.loyalty__pixel_events": {"name": "loyalty__pixel_events", "resource_type": "exposure", "package_name": "yoda", "path": "loyalty/exposures/scheduling/loyalty__pixel_events.yml", "original_file_path": "models/loyalty/exposures/scheduling/loyalty__pixel_events.yml", "unique_id": "exposure.yoda.loyalty__pixel_events", "fqn": ["yoda", "loyalty", "exposures", "scheduling", "loyalty__pixel_events"], "type": "application", "owner": {"email": "tposen@yotpo.com", "name": "tamar posen"}, "description": "loyalty pixel events daily", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2022-12-28", "upstream_models_freshness": [{"model_name": "loyalty_stg__merchants", "freshness": "AUTO"}]}}, "tags": ["loyalty", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=loyalty__pixel_events", "depends_on": {"macros": [], "nodes": ["model.yoda.loyalty_stg__domain_useradmin_to_customer_id", "model.yoda.loyalty_stg__normalized_pixel_events", "model.yoda.loyalty__snowflake_pixel_events", "model.yoda.loyalty__pixel_events", "model.yoda.loyalty_stg__onsite_v3"]}, "refs": [{"name": "loyalty_stg__domain_useradmin_to_customer_id", "package": null, "version": null}, {"name": "loyalty_stg__normalized_pixel_events", "package": null, "version": null}, {"name": "loyalty__snowflake_pixel_events", "package": null, "version": null}, {"name": "loyalty__pixel_events", "package": null, "version": null}, {"name": "loyalty_stg__onsite_v3", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082672.3711596}, "exposure.yoda.loyalty__points": {"name": "loyalty__points", "resource_type": "exposure", "package_name": "yoda", "path": "loyalty/exposures/scheduling/loyalty__points.yml", "original_file_path": "models/loyalty/exposures/scheduling/loyalty__points.yml", "unique_id": "exposure.yoda.loyalty__points", "fqn": ["yoda", "loyalty", "exposures", "scheduling", "loyalty__points"], "type": "application", "owner": {"email": "sarie@yotpo.com", "name": "shiri arie"}, "description": "points CDC views", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 0 * * *", "start_date": "2023-09-18", "upstream_models_freshness": [{"model_name": "loyalty_stg__group_customers", "freshness": "7d"}]}}, "tags": ["loyalty", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=loyalty__points", "depends_on": {"macros": [], "nodes": ["model.yoda.loyalty_stg__config_item", "model.yoda.loyalty_stg__container_balance_usage", "model.yoda.loyalty_stg__points_container_expiration", "model.yoda.loyalty_stg__points_state", "model.yoda.loyalty_stg__points_transaction", "model.yoda.loyalty_stg__point_transaction", "model.yoda.loyalty__customer_group_date_history", "model.yoda.loyalty__customer_point_transaction_metrics_daily", "model.yoda.loyalty__merchant_point_transaction_metrics_daily"]}, "refs": [{"name": "loyalty_stg__config_item", "package": null, "version": null}, {"name": "loyalty_stg__container_balance_usage", "package": null, "version": null}, {"name": "loyalty_stg__points_container_expiration", "package": null, "version": null}, {"name": "loyalty_stg__points_state", "package": null, "version": null}, {"name": "loyalty_stg__points_transaction", "package": null, "version": null}, {"name": "loyalty_stg__point_transaction", "package": null, "version": null}, {"name": "loyalty__customer_group_date_history", "package": null, "version": null}, {"name": "loyalty__customer_point_transaction_metrics_daily", "package": null, "version": null}, {"name": "loyalty__merchant_point_transaction_metrics_daily", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082672.3797913}, "exposure.yoda.loyalty__retention_metric_redeemed_purchases": {"name": "loyalty__retention_metric_redeemed_purchases", "resource_type": "exposure", "package_name": "yoda", "path": "loyalty/exposures/scheduling/loyalty__retention_metric_redeemed_purchases.yml", "original_file_path": "models/loyalty/exposures/scheduling/loyalty__retention_metric_redeemed_purchases.yml", "unique_id": "exposure.yoda.loyalty__retention_metric_redeemed_purchases", "fqn": ["yoda", "loyalty", "exposures", "scheduling", "loyalty__retention_metric_redeemed_purchases"], "type": "application", "owner": {"email": "kongs@yotpo.com", "name": "embers"}, "description": "daily run of redeemed purchases for retention metrics", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 8 * * *", "start_date": "2023-02-08", "upstream_models_freshness": [{"model_name": "loyalty__dim_customers_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_purchases_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_purchases_redemptions_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_redemptions_daily_snapshot", "freshness": "AUTO"}]}}, "tags": ["loyalty", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=loyalty__retention_metric_redeemed_purchases", "depends_on": {"macros": [], "nodes": ["model.yoda.loyalty__redeemed_purchases"]}, "refs": [{"name": "loyalty__redeemed_purchases", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082672.3897069}, "exposure.yoda.loyalty__synergies_kpi": {"name": "loyalty__synergies_kpi", "resource_type": "exposure", "package_name": "yoda", "path": "loyalty/exposures/scheduling/loyalty__synergies_kpi.yml", "original_file_path": "models/loyalty/exposures/scheduling/loyalty__synergies_kpi.yml", "unique_id": "exposure.yoda.loyalty__synergies_kpi", "fqn": ["yoda", "loyalty", "exposures", "scheduling", "loyalty__synergies_kpi"], "type": "application", "owner": {"email": "dgrey@yotpo.com", "name": "dror grey"}, "description": "Loyalty KPI for synergy dashboard", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 9 * * *", "start_date": "2023-03-20", "upstream_models_freshness": [{"model_name": "loyalty__dim_customers_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__dim_yotpo_platform_accounts_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty__fact_redemptions_daily_snapshot", "freshness": "AUTO"}, {"model_name": "loyalty_stg__campaigns", "freshness": "AUTO"}, {"model_name": "loyalty_stg__customers_opt_in", "freshness": "AUTO"}, {"model_name": "loyalty_stg__customers_vip_tiers", "freshness": "AUTO"}, {"model_name": "loyalty_stg__enriched_customers", "freshness": "AUTO"}, {"model_name": "loyalty_stg__perks", "freshness": "AUTO"}, {"model_name": "loyalty_stg__point_redemptions", "freshness": "AUTO"}, {"model_name": "loyalty_stg__purchases", "freshness": "AUTO"}, {"model_name": "loyalty_stg__purchases_redemptions", "freshness": "AUTO"}, {"model_name": "loyalty_stg__redemption_options", "freshness": "AUTO"}, {"model_name": "loyalty_stg__user_actions", "freshness": "AUTO"}, {"model_name": "loyalty_stg__yotpo_platform_accounts", "freshness": "AUTO"}, {"model_name": "sms__api_calls_with_customer", "freshness": "AUTO"}, {"model_name": "ugc__export_reviews", "freshness": "AUTO"}]}}, "tags": ["loyalty", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=loyalty__synergies_kpi", "depends_on": {"macros": [], "nodes": ["model.yoda.loyalty__review_earning_rule_loyalty", "model.yoda.loyalty__sms_earning_rule_loyalty", "model.yoda.loyalty__opted_in_customers", "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option", "model.yoda.loyalty__redemptions", "model.yoda.loyalty__tier_expiring_reminder_kpi"]}, "refs": [{"name": "loyalty__review_earning_rule_loyalty", "package": null, "version": null}, {"name": "loyalty__sms_earning_rule_loyalty", "package": null, "version": null}, {"name": "loyalty__opted_in_customers", "package": null, "version": null}, {"name": "loyalty__redeemed_purchases_with_subs_redemption_option", "package": null, "version": null}, {"name": "loyalty__redemptions", "package": null, "version": null}, {"name": "loyalty__tier_expiring_reminder_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082672.4059665}, "exposure.yoda.loyalty__widgetsrepository_to_snowflake": {"name": "loyalty__widgetsrepository_to_snowflake", "resource_type": "exposure", "package_name": "yoda", "path": "loyalty/exposures/scheduling/loyalty__widgetsrepository_to_snowflake.yml", "original_file_path": "models/loyalty/exposures/scheduling/loyalty__widgetsrepository_to_snowflake.yml", "unique_id": "exposure.yoda.loyalty__widgetsrepository_to_snowflake", "fqn": ["yoda", "loyalty", "exposures", "scheduling", "loyalty__widgetsrepository_to_snowflake"], "type": "application", "owner": {"email": "nmoran@yotpo.com", "name": "meteors"}, "description": "copy widgetsrepository db to snowflake", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 11 * * *", "start_date": "2023-03-06"}}, "tags": ["loyalty", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=loyalty__widgetsrepository_to_snowflake", "depends_on": {"macros": [], "nodes": ["model.yoda.loyalty_stg__instance_versions", "model.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake", "model.yoda.loyalty_stg__instances", "model.yoda.loyalty__widgetrepodb_instances_to_snowflake", "model.yoda.loyalty_stg__customizations", "model.yoda.loyalty_stg__static_contents", "model.yoda.loyalty_stg__templates", "model.yoda.loyalty_stg__widget_types", "model.yoda.loyalty__widgetrepodb_customizations_to_snowflake", "model.yoda.loyalty__widgetrepodb_static_contents_to_snowflake", "model.yoda.loyalty__widgetrepodb_templates_to_snowflake", "model.yoda.loyalty__widgetrepodb_widget_types_to_snowflake"]}, "refs": [{"name": "loyalty_stg__instance_versions", "package": null, "version": null}, {"name": "loyalty__widgetrepodb_instance_versions_to_snowflake", "package": null, "version": null}, {"name": "loyalty_stg__instances", "package": null, "version": null}, {"name": "loyalty__widgetrepodb_instances_to_snowflake", "package": null, "version": null}, {"name": "loyalty_stg__customizations", "package": null, "version": null}, {"name": "loyalty_stg__static_contents", "package": null, "version": null}, {"name": "loyalty_stg__templates", "package": null, "version": null}, {"name": "loyalty_stg__widget_types", "package": null, "version": null}, {"name": "loyalty__widgetrepodb_customizations_to_snowflake", "package": null, "version": null}, {"name": "loyalty__widgetrepodb_static_contents_to_snowflake", "package": null, "version": null}, {"name": "loyalty__widgetrepodb_templates_to_snowflake", "package": null, "version": null}, {"name": "loyalty__widgetrepodb_widget_types_to_snowflake", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082672.4154525}, "exposure.yoda.north_bound__At_21_30_only_on_Sunday": {"name": "north_bound__At_21_30_only_on_Sunday", "resource_type": "exposure", "package_name": "yoda", "path": "north_bound/exposures/scheduling/north_bound__At_21_30_only_on_Sunday.yml", "original_file_path": "models/north_bound/exposures/scheduling/north_bound__At_21_30_only_on_Sunday.yml", "unique_id": "exposure.yoda.north_bound__At_21_30_only_on_Sunday", "fqn": ["yoda", "north_bound", "exposures", "scheduling", "north_bound__At_21_30_only_on_Sunday"], "type": "application", "owner": {"email": "koalas@yotpo.com", "name": "data group"}, "description": "North Bound At 21 30 Only On Sunday DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 21 * * 0", "start_date": "2021-12-13", "upstream_models_freshness": [{"model_name": "communication_stg__active_users_flags", "freshness": "AUTO"}, {"model_name": "communication_stg__automations_abandoned_checkout_active", "freshness": "AUTO"}, {"model_name": "communication_stg__automations_count", "freshness": "AUTO"}, {"model_name": "communication_stg__automations_customer_winback_active", "freshness": "AUTO"}, {"model_name": "communication_stg__automations_welcome_active", "freshness": "AUTO"}, {"model_name": "communication_stg__campaigns_sent_count", "freshness": "AUTO"}, {"model_name": "communication_stg__campaigns_sent_last_thirty_days_count", "freshness": "AUTO"}, {"model_name": "communication_stg__cs_forms_count", "freshness": "AUTO"}, {"model_name": "communication_stg__cs_keywords_count", "freshness": "AUTO"}, {"model_name": "communication_stg__cs_pages_count", "freshness": "AUTO"}, {"model_name": "communication_stg__email_campaigns_count", "freshness": "AUTO"}, {"model_name": "communication_stg__email_campaigns_sent_count", "freshness": "AUTO"}, {"model_name": "communication_stg__email_campaigns_sent_last_thirty_days_count", "freshness": "AUTO"}, {"model_name": "communication_stg__email_intent_popup_first_accept_date", "freshness": "AUTO"}, {"model_name": "communication_stg__email_intent_popup_first_decline_date", "freshness": "AUTO"}, {"model_name": "communication_stg__email_intent_popup_status", "freshness": "AUTO"}, {"model_name": "communication_stg__email_subscribers_count", "freshness": "AUTO"}, {"model_name": "communication_stg__first_email_campaign_sent", "freshness": "AUTO"}, {"model_name": "communication_stg__first_email_message_sent", "freshness": "AUTO"}, {"model_name": "communication_stg__first_sms_campaign_sent", "freshness": "AUTO"}, {"model_name": "communication_stg__first_sms_message_sent", "freshness": "AUTO"}, {"model_name": "communication_stg__flows_abandoned_checkout_active", "freshness": "AUTO"}, {"model_name": "communication_stg__flows_count", "freshness": "AUTO"}, {"model_name": "communication_stg__flows_customer_winback_active", "freshness": "AUTO"}, {"model_name": "communication_stg__flows_welcome_active", "freshness": "AUTO"}, {"model_name": "communication_stg__integrations_count", "freshness": "AUTO"}, {"model_name": "communication_stg__klaviyo_integration_enabled", "freshness": "AUTO"}, {"model_name": "communication_stg__last_email_campaign_sent", "freshness": "AUTO"}, {"model_name": "communication_stg__last_email_message_sent", "freshness": "AUTO"}, {"model_name": "communication_stg__last_sms_campaign_sent", "freshness": "AUTO"}, {"model_name": "communication_stg__last_sms_message_sent", "freshness": "AUTO"}, {"model_name": "communication_stg__measurements_bigcommerce_users", "freshness": "AUTO"}, {"model_name": "communication_stg__measurements_shopify_users", "freshness": "AUTO"}, {"model_name": "communication_stg__measurements_users", "freshness": "AUTO"}, {"model_name": "communication_stg__overall_emails_sent_from_campaigns", "freshness": "AUTO"}, {"model_name": "communication_stg__send_chat_message", "freshness": "AUTO"}, {"model_name": "communication_stg__shopify_orders", "freshness": "AUTO"}, {"model_name": "communication_stg__sms_campaigns_count", "freshness": "AUTO"}, {"model_name": "communication_stg__sms_campaigns_sent_count", "freshness": "AUTO"}, {"model_name": "communication_stg__sms_campaigns_sent_last_thirty_days_count", "freshness": "AUTO"}, {"model_name": "communication_stg__sms_subscribers_count", "freshness": "AUTO"}, {"model_name": "communication_stg__total_orders_avg_last_thirty_days", "freshness": "AUTO"}, {"model_name": "communication_stg__total_orders_avg_last_three_months", "freshness": "AUTO"}, {"model_name": "communication_stg__total_subscribers_email_count", "freshness": "AUTO"}, {"model_name": "communication_stg__total_subscribers_sms_count", "freshness": "AUTO"}, {"model_name": "communication_stg__total_revenue_all_channels_last_thirty_days", "freshness": "AUTO"}, {"model_name": "communication_stg__total_revenue_all_channels_last_three_months", "freshness": "AUTO"}, {"model_name": "communication_stg__total_revenue_all_channels_all_time", "freshness": "AUTO"}, {"model_name": "communication_stg__total_revenue_sms_last_thirty_days", "freshness": "AUTO"}, {"model_name": "communication_stg__total_revenue_sms_last_three_months", "freshness": "AUTO"}, {"model_name": "communication_stg__total_revenue_email_last_thirty_days", "freshness": "AUTO"}, {"model_name": "communication_stg__total_revenue_email_last_three_months", "freshness": "AUTO"}, {"model_name": "communication_stg__email_usage_avg_last_three_months", "freshness": "AUTO"}, {"model_name": "communication_stg__sms_usage_avg_last_three_months", "freshness": "AUTO"}]}}, "tags": ["yoda_scheduling", "north_bound"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=north_bound__At_21_30_only_on_Sunday", "depends_on": {"macros": [], "nodes": ["model.yoda.north_bound__segment_profile"]}, "refs": [{"name": "north_bound__segment_profile", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.8035655}, "exposure.yoda.platform__integrations_adoption_per_application_profile": {"name": "platform__integrations_adoption_per_application_profile", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/looker/platform__integrations_adoption_per_application_profile.yml", "original_file_path": "models/platform/exposures/looker/platform__integrations_adoption_per_application_profile.yml", "unique_id": "exposure.yoda.platform__integrations_adoption_per_application_profile", "fqn": ["yoda", "platform", "exposures", "looker", "platform__integrations_adoption_per_application_profile"], "type": "analysis", "owner": {"email": "orbits@yotpo.com", "name": "orbits"}, "description": "Shows installation statistics per application per week", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('platform__integrations_adoption_per_application')", "connection": "yoda"}}, "tags": ["yoda_looker", "platform", "orbits", "integrations_center"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/dashboards/657", "depends_on": {"macros": [], "nodes": ["model.yoda.platform__integrations_adoption_per_application"]}, "refs": [{"name": "platform__integrations_adoption_per_application", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.8653743}, "exposure.yoda.platform__integrations_adoption_per_store_profile": {"name": "platform__integrations_adoption_per_store_profile", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/looker/platform__integrations_adoption_per_store_profile.yml", "original_file_path": "models/platform/exposures/looker/platform__integrations_adoption_per_store_profile.yml", "unique_id": "exposure.yoda.platform__integrations_adoption_per_store_profile", "fqn": ["yoda", "platform", "exposures", "looker", "platform__integrations_adoption_per_store_profile"], "type": "analysis", "owner": {"email": "orbits@yotpo.com", "name": "orbits"}, "description": "Shows installation statistics per store per week", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('platform__integrations_adoption_per_store')", "connection": "yoda"}}, "tags": ["yoda_looker", "platform", "orbits", "integrations_center"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.platform__integrations_adoption_per_store"]}, "refs": [{"name": "platform__integrations_adoption_per_store", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.8715622}, "exposure.yoda.platform__integrations_adoption_profile": {"name": "platform__integrations_adoption_profile", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/looker/platform__integrations_adoption_profile.yml", "original_file_path": "models/platform/exposures/looker/platform__integrations_adoption_profile.yml", "unique_id": "exposure.yoda.platform__integrations_adoption_profile", "fqn": ["yoda", "platform", "exposures", "looker", "platform__integrations_adoption_profile"], "type": "analysis", "owner": {"email": "orbits@yotpo.com", "name": "orbits"}, "description": "Show integrations statuses for each day", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('platform__integrations_adoption')", "connection": "yoda"}}, "tags": ["yoda_looker", "platform", "orbits", "integrations_center"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.platform__integrations_adoption"]}, "refs": [{"name": "platform__integrations_adoption", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.8785238}, "exposure.yoda.platform__singas_cdp_streaming_aggregated_events": {"name": "platform__singas_cdp_streaming_aggregated_events", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/looker/platform__singas_cdp_streaming_aggregated_events.yml", "original_file_path": "models/platform/exposures/looker/platform__singas_cdp_streaming_aggregated_events.yml", "unique_id": "exposure.yoda.platform__singas_cdp_streaming_aggregated_events", "fqn": ["yoda", "platform", "exposures", "looker", "platform__singas_cdp_streaming_aggregated_events"], "type": "analysis", "owner": {"email": "dcohen@yotpo.com", "name": "daniel cohen"}, "description": "", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('platform__cdp_streaming_aggregated_events')", "connection": "yoda"}}, "tags": ["yoda_looker", "platform", "singas"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.platform__cdp_streaming_aggregated_events"]}, "refs": [{"name": "platform__cdp_streaming_aggregated_events", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.8853197}, "exposure.yoda.platform__At_00_30": {"name": "platform__At_00_30", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__At_00_30.yml", "original_file_path": "models/platform/exposures/scheduling/platform__At_00_30.yml", "unique_id": "exposure.yoda.platform__At_00_30", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__At_00_30"], "type": "application", "owner": {"email": "koalas@yotpo.com", "name": "data group"}, "description": "Platform At 00 30 DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 0 * * *", "start_date": "2022-08-22", "upstream_models_freshness": [{"model_name": "analytics___sms_stg__sms_user", "freshness": "AUTO"}, {"model_name": "platform_stg__products", "freshness": "AUTO"}]}}, "tags": ["yoda_scheduling", "platform"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=platform__At_00_30", "depends_on": {"macros": [], "nodes": ["model.yoda.platform_stg__fulfillments", "model.yoda.platform_stg__currency_rates", "model.yoda.platform_stg__onsite_v2", "model.yoda.platform_stg__onsite_v3", "model.yoda.platform_stg__app_install_completed", "model.yoda.platform_stg__app_uninstalled", "model.yoda.platform_stg__activation_step", "model.yoda.platform_stg__onboarding", "model.yoda.platform_stg__b2b", "model.yoda.platform_stg__uninstalled_yotpo", "model.yoda.platform_stg__account_created", "model.yoda.platform_stg__product_enabled", "model.yoda.platform_stg__popup_displayed", "model.yoda.platform_stg__limit_reached", "model.yoda.platform_stg__synergy_start_date_mapping", "model.yoda.platform_stg__file_exported", "model.yoda.platform__sms_store_verification", "model.yoda.platform__sms_store_verification_to_snowflake"]}, "refs": [{"name": "platform_stg__fulfillments", "package": null, "version": null}, {"name": "platform_stg__currency_rates", "package": null, "version": null}, {"name": "platform_stg__onsite_v2", "package": null, "version": null}, {"name": "platform_stg__onsite_v3", "package": null, "version": null}, {"name": "platform_stg__app_install_completed", "package": null, "version": null}, {"name": "platform_stg__app_uninstalled", "package": null, "version": null}, {"name": "platform_stg__activation_step", "package": null, "version": null}, {"name": "platform_stg__onboarding", "package": null, "version": null}, {"name": "platform_stg__b2b", "package": null, "version": null}, {"name": "platform_stg__uninstalled_yotpo", "package": null, "version": null}, {"name": "platform_stg__account_created", "package": null, "version": null}, {"name": "platform_stg__product_enabled", "package": null, "version": null}, {"name": "platform_stg__popup_displayed", "package": null, "version": null}, {"name": "platform_stg__limit_reached", "package": null, "version": null}, {"name": "platform_stg__synergy_start_date_mapping", "package": null, "version": null}, {"name": "platform_stg__file_exported", "package": null, "version": null}, {"name": "platform__sms_store_verification", "package": null, "version": null}, {"name": "platform__sms_store_verification_to_snowflake", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.9056304}, "exposure.yoda.platform__At_16_00": {"name": "platform__At_16_00", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__At_16_00.yml", "original_file_path": "models/platform/exposures/scheduling/platform__At_16_00.yml", "unique_id": "exposure.yoda.platform__At_16_00", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__At_16_00"], "type": "application", "owner": {"email": "koalas@yotpo.com", "name": "data group"}, "description": "Platform At 16 00 DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 16 * * *", "start_date": "2021-12-13", "upstream_models_freshness": [{"model_name": "analytics___loyalty__merchant", "freshness": "AUTO"}, {"model_name": "platform_stg__accounts", "freshness": "2d"}]}}, "tags": ["yoda_scheduling", "platform"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=platform__At_16_00", "depends_on": {"macros": [], "nodes": ["model.yoda.platform__owners_packages_organization_view", "model.yoda.platform_stg__stores_enrichment", "model.yoda.platform_stg__packages", "model.yoda.platform_stg__organizations", "model.yoda.platform__owners_packages_store_view", "model.yoda.platform_stg__platform_types", "model.yoda.platform_stg__owners_packages", "model.yoda.platform__dim_stores", "model.yoda.platform_stg__stores", "model.yoda.platform_stg__store_platforms", "model.yoda.platform_stg__apps", "model.yoda.platform_stg__categories", "model.yoda.platform_stg__package_tags", "model.yoda.platform_stg__package_tag_types", "model.yoda.platform_stg__owners_package_audits", "model.yoda.platform_stg__owners_packages_history", "model.yoda.platform_stg__package_feature_settings", "model.yoda.platform_stg__package_features", "model.yoda.platform_stg__package_provider_settings", "model.yoda.platform_stg__package_usages_settings", "model.yoda.platform_stg__plan_settings", "model.yoda.platform_stg__platform_package_features", "model.yoda.platform_stg__billing_audits", "model.yoda.platform_stg__subscription_providers", "model.yoda.platform_stg__subscription_cycle_usages", "model.yoda.platform_stg__subscription_pending_usages", "model.yoda.platform_stg__provider_types", "model.yoda.platform_stg__subscription_statuses", "model.yoda.platform_stg__subscription_usages_settings", "model.yoda.platform_stg__usages", "model.yoda.platform_stg__usages_history", "model.yoda.platform_stg__usages_tiers_settings", "model.yoda.platform_stg__account_platforms"]}, "refs": [{"name": "platform__owners_packages_organization_view", "package": null, "version": null}, {"name": "platform_stg__stores_enrichment", "package": null, "version": null}, {"name": "platform_stg__packages", "package": null, "version": null}, {"name": "platform_stg__organizations", "package": null, "version": null}, {"name": "platform__owners_packages_store_view", "package": null, "version": null}, {"name": "platform_stg__platform_types", "package": null, "version": null}, {"name": "platform_stg__owners_packages", "package": null, "version": null}, {"name": "platform__dim_stores", "package": null, "version": null}, {"name": "platform_stg__stores", "package": null, "version": null}, {"name": "platform_stg__store_platforms", "package": null, "version": null}, {"name": "platform_stg__apps", "package": null, "version": null}, {"name": "platform_stg__categories", "package": null, "version": null}, {"name": "platform_stg__package_tags", "package": null, "version": null}, {"name": "platform_stg__package_tag_types", "package": null, "version": null}, {"name": "platform_stg__owners_package_audits", "package": null, "version": null}, {"name": "platform_stg__owners_packages_history", "package": null, "version": null}, {"name": "platform_stg__package_feature_settings", "package": null, "version": null}, {"name": "platform_stg__package_features", "package": null, "version": null}, {"name": "platform_stg__package_provider_settings", "package": null, "version": null}, {"name": "platform_stg__package_usages_settings", "package": null, "version": null}, {"name": "platform_stg__plan_settings", "package": null, "version": null}, {"name": "platform_stg__platform_package_features", "package": null, "version": null}, {"name": "platform_stg__billing_audits", "package": null, "version": null}, {"name": "platform_stg__subscription_providers", "package": null, "version": null}, {"name": "platform_stg__subscription_cycle_usages", "package": null, "version": null}, {"name": "platform_stg__subscription_pending_usages", "package": null, "version": null}, {"name": "platform_stg__provider_types", "package": null, "version": null}, {"name": "platform_stg__subscription_statuses", "package": null, "version": null}, {"name": "platform_stg__subscription_usages_settings", "package": null, "version": null}, {"name": "platform_stg__usages", "package": null, "version": null}, {"name": "platform_stg__usages_history", "package": null, "version": null}, {"name": "platform_stg__usages_tiers_settings", "package": null, "version": null}, {"name": "platform_stg__account_platforms", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.9329507}, "exposure.yoda.platform__At_17_00": {"name": "platform__At_17_00", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__At_17_00.yml", "original_file_path": "models/platform/exposures/scheduling/platform__At_17_00.yml", "unique_id": "exposure.yoda.platform__At_17_00", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__At_17_00"], "type": "application", "owner": {"email": "koalas@yotpo.com", "name": "data group"}, "description": "Platform At 17 00 DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 17 * * *", "start_date": "2021-12-13", "upstream_models_freshness": [{"model_name": "platform_stg__accounts", "freshness": "AUTO"}, {"model_name": "platform_stg__apps", "freshness": "AUTO"}]}}, "tags": ["yoda_scheduling", "platform"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=platform__At_17_00", "depends_on": {"macros": [], "nodes": ["model.yoda.platform_stg__all_accounts", "model.yoda.platform_stg__all_apps"]}, "refs": [{"name": "platform_stg__all_accounts", "package": null, "version": null}, {"name": "platform_stg__all_apps", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.949049}, "exposure.yoda.platform__Orbits": {"name": "platform__Orbits", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__Orbits.yml", "original_file_path": "models/platform/exposures/scheduling/platform__Orbits.yml", "unique_id": "exposure.yoda.platform__Orbits", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__Orbits"], "type": "application", "owner": {"email": "orbits@yotpo.com", "name": "orbits"}, "description": "Platform Orbits team - Integration center - DAG", "label": null, "maturity": "low", "meta": {}, "tags": ["yoda_scheduling", "platform", "orbits", "integrations_center"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/tree?dag_id=platform__Orbits", "depends_on": {"macros": [], "nodes": ["model.yoda.platform__integrations_adoption", "model.yoda.platform__integrations_adoption_per_store", "model.yoda.platform__integrations_adoption_per_application", "model.yoda.platform_stg__ic_store_applications", "model.yoda.platform_stg__store_applications", "model.yoda.platform_stg__integrations_names"]}, "refs": [{"name": "platform__integrations_adoption", "package": null, "version": null}, {"name": "platform__integrations_adoption_per_store", "package": null, "version": null}, {"name": "platform__integrations_adoption_per_application", "package": null, "version": null}, {"name": "platform_stg__ic_store_applications", "package": null, "version": null}, {"name": "platform_stg__store_applications", "package": null, "version": null}, {"name": "platform_stg__integrations_names", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.9610069}, "exposure.yoda.platform__cdp_streaming_aggregated_events": {"name": "platform__cdp_streaming_aggregated_events", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__cdp_streaming_aggregated_events.yml", "original_file_path": "models/platform/exposures/scheduling/platform__cdp_streaming_aggregated_events.yml", "unique_id": "exposure.yoda.platform__cdp_streaming_aggregated_events", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__cdp_streaming_aggregated_events"], "type": "application", "owner": {"email": "dcohen@yotpo.com", "name": ""}, "description": "models : platform_stg__cdp_streaming_aggregated_events scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-11-04"}}, "tags": ["platform", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=platform__cdp_streaming_events", "depends_on": {"macros": [], "nodes": ["model.yoda.platform__cdp_streaming_aggregated_events", "model.yoda.platform_stg__cdp_streaming_events"]}, "refs": [{"name": "platform__cdp_streaming_aggregated_events", "package": null, "version": null}, {"name": "platform_stg__cdp_streaming_events", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.9688926}, "exposure.yoda.platform__corgis": {"name": "platform__corgis", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__corgis.yml", "original_file_path": "models/platform/exposures/scheduling/platform__corgis.yml", "unique_id": "exposure.yoda.platform__corgis", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__corgis"], "type": "application", "owner": {"email": "leon.lantsman@yotpo.com", "name": "corgis"}, "description": "Schedule for corgis models.", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 2 * * *", "start_date": "2023-02-21", "upstream_models_freshness": []}}, "tags": ["platform", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=platform__corgis", "depends_on": {"macros": [], "nodes": ["model.yoda.platform_stg__orders", "model.yoda.platform_stg__order_lines", "model.yoda.platform_stg__gtins", "model.yoda.platform_stg__custom_attributes", "model.yoda.platform_stg__attribute_sets"]}, "refs": [{"name": "platform_stg__orders", "package": null, "version": null}, {"name": "platform_stg__order_lines", "package": null, "version": null}, {"name": "platform_stg__gtins", "package": null, "version": null}, {"name": "platform_stg__custom_attributes", "package": null, "version": null}, {"name": "platform_stg__attribute_sets", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.9756572}, "exposure.yoda.platform__customer_dataset": {"name": "platform__customer_dataset", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__customer_dataset.yml", "original_file_path": "models/platform/exposures/scheduling/platform__customer_dataset.yml", "unique_id": "exposure.yoda.platform__customer_dataset", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__customer_dataset"], "type": "application", "owner": {"email": "ivan.velchev@yotpo.com", "name": "badgers"}, "description": "a scheduling holding all the customer dimensions dashboard models", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 8 * * *", "start_date": "2023-08-17"}}, "tags": ["platform", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=platform__customer_dataset", "depends_on": {"macros": [], "nodes": ["model.yoda.platform_stg__customer_dataset", "model.yoda.platform_stg__customer_dimensions_business_metrics", "model.yoda.platform_stg__customer_dimensions_returning_buyers", "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material", "model.yoda.platform_stg__customer_dimensions_brand_affection", "model.yoda.platform_stg__customer_dimensions_loyalty_program", "model.yoda.platform__customer_dimensions_metrics", "model.yoda.platform__customer_dimensions_metrics_to_snowflake", "model.yoda.platform__customer_dimensions_metrics_analytics"]}, "refs": [{"name": "platform_stg__customer_dataset", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_business_metrics", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_returning_buyers", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_engagement_marketing_material", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_brand_affection", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_loyalty_program", "package": null, "version": null}, {"name": "platform__customer_dimensions_metrics", "package": null, "version": null}, {"name": "platform__customer_dimensions_metrics_to_snowflake", "package": null, "version": null}, {"name": "platform__customer_dimensions_metrics_analytics", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.9845552}, "exposure.yoda.platform__customer_dimensions_metrics": {"name": "platform__customer_dimensions_metrics", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__customer_dimensions_metrics.yml", "original_file_path": "models/platform/exposures/scheduling/platform__customer_dimensions_metrics.yml", "unique_id": "exposure.yoda.platform__customer_dimensions_metrics", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__customer_dimensions_metrics"], "type": "application", "owner": {"email": "kaloyan.terziev@yotpo.com", "name": "kaloyan terziev"}, "description": "A scheduling holding all the new customer dimensions dashboard models that support custom time ranges.", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 10 * * *", "start_date": "2023-10-26"}}, "tags": ["platform", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=platform__customer_dimensions_metrics", "depends_on": {"macros": [], "nodes": ["model.yoda.platform_stg__customer_dimensions_brand_affection_inc", "model.yoda.platform_stg__customer_dimensions_returning_buyers_inc", "model.yoda.platform__customer_dimensions_metrics_inc", "model.yoda.platform_stg__customer_dataset_reduced", "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc", "model.yoda.platform_stg__customer_dimensions_loyalty_program_inc", "model.yoda.platform__customer_dimensions_metrics_inc_to_snowflake"]}, "refs": [{"name": "platform_stg__customer_dimensions_brand_affection_inc", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_returning_buyers_inc", "package": null, "version": null}, {"name": "platform__customer_dimensions_metrics_inc", "package": null, "version": null}, {"name": "platform_stg__customer_dataset_reduced", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_engagement_marketing_material_inc", "package": null, "version": null}, {"name": "platform_stg__customer_dimensions_loyalty_program_inc", "package": null, "version": null}, {"name": "platform__customer_dimensions_metrics_inc_to_snowflake", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082677.9934866}, "exposure.yoda.platform__email_digest_schedule": {"name": "platform__email_digest_schedule", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__email_digest_schedule.yml", "original_file_path": "models/platform/exposures/scheduling/platform__email_digest_schedule.yml", "unique_id": "exposure.yoda.platform__email_digest_schedule", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__email_digest_schedule"], "type": "application", "owner": {"email": "nikodem.wisniewski@yotpo.com", "name": "nikodem wisniewski"}, "description": "temporary run only once schedule", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 7 1-3,25-31 * *", "start_date": "2023-02-15", "upstream_models_freshness": [{"model_name": "analytics___platform_stg__account", "freshness": "AUTO"}, {"model_name": "analytics___platform_stg__owner_feature", "freshness": "AUTO"}, {"model_name": "platform__orders_with_product_lines_attribution", "freshness": "AUTO"}, {"model_name": "platform__retention_metrics_returning_customers", "freshness": "AUTO"}, {"model_name": "platform__retention_metrics_total_sales_and_customers", "freshness": "AUTO"}, {"model_name": "platform_stg__account_platforms", "freshness": "AUTO"}, {"model_name": "platform_stg__accounts", "freshness": "AUTO"}, {"model_name": "platform_stg__merchant_shop_currency", "freshness": "AUTO"}, {"model_name": "platform_stg__organizations", "freshness": "AUTO"}, {"model_name": "platform_stg__owners_packages", "freshness": "AUTO"}, {"model_name": "platform_stg__package_tag_types", "freshness": "AUTO"}, {"model_name": "platform_stg__package_tags", "freshness": "AUTO"}, {"model_name": "platform_stg__packages", "freshness": "AUTO"}, {"model_name": "ugc_stg__users", "freshness": "AUTO"}]}}, "tags": ["platform", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=platform__email_digest_schedule", "depends_on": {"macros": [], "nodes": ["model.yoda.platform_stg__users_organizations", "model.yoda.platform_stg__digest_accounts", "model.yoda.platform_stg__digest", "model.yoda.platform__digest_email_track", "model.yoda.platform_stg__merchant_platform_id"]}, "refs": [{"name": "platform_stg__users_organizations", "package": null, "version": null}, {"name": "platform_stg__digest_accounts", "package": null, "version": null}, {"name": "platform_stg__digest", "package": null, "version": null}, {"name": "platform__digest_email_track", "package": null, "version": null}, {"name": "platform_stg__merchant_platform_id", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082678.0103877}, "exposure.yoda.platform__koalas_intermediate_owned_models": {"name": "platform__koalas_intermediate_owned_models", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__koalas_intermediate_owned_models.yml", "original_file_path": "models/platform/exposures/scheduling/platform__koalas_intermediate_owned_models.yml", "unique_id": "exposure.yoda.platform__koalas_intermediate_owned_models", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__koalas_intermediate_owned_models"], "type": "application", "owner": {"email": "doron.kruh@yotpo.com", "name": "doron kruh"}, "description": "a scheduling that holds models not owned yet by any platform team", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 2 * * *", "start_date": "2022-12-07", "upstream_models_freshness": []}}, "tags": ["platform", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.k8s.yotpo.xyz/graph?dag_id=platform__koalas_intermediate_owned_models", "depends_on": {"macros": [], "nodes": ["model.yoda.platform_stg__features", "model.yoda.platform_stg__owners_features", "model.yoda.platform_stg__owner_feature_settings", "model.yoda.platform_stg__products", "model.yoda.platform_stg__groups", "model.yoda.platform_stg__variants", "model.yoda.platform_stg__accounts"]}, "refs": [{"name": "platform_stg__features", "package": null, "version": null}, {"name": "platform_stg__owners_features", "package": null, "version": null}, {"name": "platform_stg__owner_feature_settings", "package": null, "version": null}, {"name": "platform_stg__products", "package": null, "version": null}, {"name": "platform_stg__groups", "package": null, "version": null}, {"name": "platform_stg__variants", "package": null, "version": null}, {"name": "platform_stg__accounts", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082678.018437}, "exposure.yoda.platform__retention_metrics": {"name": "platform__retention_metrics", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__retention_metrics.yml", "original_file_path": "models/platform/exposures/scheduling/platform__retention_metrics.yml", "unique_id": "exposure.yoda.platform__retention_metrics", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__retention_metrics"], "type": "application", "owner": {"email": "dimo.georgiev@yotpo.com", "name": "badgers"}, "description": "a scheduling holding all the retention metrics dashboard models", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 5 * * *", "start_date": "2023-02-05", "upstream_models_freshness": [{"model_name": "communication__email_shopify_orders_analytics_profile", "freshness": "7d"}, {"model_name": "communication__sms_shopify_orders_analytics_profile", "freshness": "7d"}, {"model_name": "loyalty__redeemed_purchases", "freshness": "7d"}, {"model_name": "platform_stg__account_platforms", "freshness": "AUTO"}, {"model_name": "platform_stg__accounts", "freshness": "AUTO"}, {"model_name": "platform_stg__currency_rates", "freshness": "AUTO"}, {"model_name": "platform_stg__orders", "freshness": "AUTO"}, {"model_name": "subscriptions__subscriptions_attributed_orders", "freshness": "AUTO"}, {"model_name": "ugc__partial_reviewed_orders", "freshness": "7d"}]}}, "tags": ["platform", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=platform__retention_metrics", "depends_on": {"macros": [], "nodes": ["model.yoda.platform_stg__retention_metrics_segmented_customers", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month", "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly", "model.yoda.platform__retention_metrics_average_order_value", "model.yoda.platform__retention_metrics_average_order_value_to_snowflake", "model.yoda.platform__retention_metrics_orders", "model.yoda.platform__retention_metrics_orders_to_snowflake", "model.yoda.platform__retention_metrics_returning_customers", "model.yoda.platform__retention_metrics_returning_customers_to_snowflake", "model.yoda.platform__retention_metrics_bar_chart_total_sales", "model.yoda.platform__retention_metrics_bar_chart_total_sales_to_snowflake", "model.yoda.platform__orders_with_product_lines_attribution", "model.yoda.platform__orders_with_product_lines_attribution_to_snowflake", "model.yoda.platform__orders_with_product_lines_attribution_daily", "model.yoda.platform__orders_with_product_lines_attribution_daily_to_snowflake", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform__retention_metrics_trends_average_sales_per_customer", "model.yoda.platform__retention_metrics_trends_average_order_value", "model.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake", "model.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake", "model.yoda.platform__retention_metrics_customer_segment_ratio", "model.yoda.platform__retention_metrics_customer_segment_ratio_to_snowflake", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform__retention_metrics_total_sales_and_customers", "model.yoda.platform__retention_metrics_total_sales_and_customers_to_snowflake", "model.yoda.platform_stg__merchant_shop_currency", "model.yoda.platform_stg__email_shopify_orders_to_shop_currency", "model.yoda.platform_stg__sms_shopify_orders_to_shop_currency", "model.yoda.platform_stg__retention_metrics_orders", "model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency"]}, "refs": [{"name": "platform_stg__retention_metrics_segmented_customers", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_segmented_customers_monthly", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_bar_chart_total_sales_current_month", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_bar_chart_total_sales_monthly", "package": null, "version": null}, {"name": "platform__retention_metrics_average_order_value", "package": null, "version": null}, {"name": "platform__retention_metrics_average_order_value_to_snowflake", "package": null, "version": null}, {"name": "platform__retention_metrics_orders", "package": null, "version": null}, {"name": "platform__retention_metrics_orders_to_snowflake", "package": null, "version": null}, {"name": "platform__retention_metrics_returning_customers", "package": null, "version": null}, {"name": "platform__retention_metrics_returning_customers_to_snowflake", "package": null, "version": null}, {"name": "platform__retention_metrics_bar_chart_total_sales", "package": null, "version": null}, {"name": "platform__retention_metrics_bar_chart_total_sales_to_snowflake", "package": null, "version": null}, {"name": "platform__orders_with_product_lines_attribution", "package": null, "version": null}, {"name": "platform__orders_with_product_lines_attribution_to_snowflake", "package": null, "version": null}, {"name": "platform__orders_with_product_lines_attribution_daily", "package": null, "version": null}, {"name": "platform__orders_with_product_lines_attribution_daily_to_snowflake", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_trends_orders", "package": null, "version": null}, {"name": "platform__retention_metrics_trends_average_sales_per_customer", "package": null, "version": null}, {"name": "platform__retention_metrics_trends_average_order_value", "package": null, "version": null}, {"name": "platform__retention_metrics_trends_average_order_value_to_snowflake", "package": null, "version": null}, {"name": "platform__retention_metrics_trends_average_sales_per_customer_to_snowflake", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "package": null, "version": null}, {"name": "platform__retention_metrics_total_revenue_trends_by_segments", "package": null, "version": null}, {"name": "platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake", "package": null, "version": null}, {"name": "platform__retention_metrics_customer_segment_ratio", "package": null, "version": null}, {"name": "platform__retention_metrics_customer_segment_ratio_to_snowflake", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_mock_orders", "package": null, "version": null}, {"name": "platform__retention_metrics_total_sales_and_customers", "package": null, "version": null}, {"name": "platform__retention_metrics_total_sales_and_customers_to_snowflake", "package": null, "version": null}, {"name": "platform_stg__merchant_shop_currency", "package": null, "version": null}, {"name": "platform_stg__email_shopify_orders_to_shop_currency", "package": null, "version": null}, {"name": "platform_stg__sms_shopify_orders_to_shop_currency", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_orders", "package": null, "version": null}, {"name": "platform_stg__retention_metrics_orders_in_merchant_currency", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082678.042854}, "exposure.yoda.platform__synergies_at_00_30": {"name": "platform__synergies_at_00_30", "resource_type": "exposure", "package_name": "yoda", "path": "platform/exposures/scheduling/platform__synergies_at_00_30.yml", "original_file_path": "models/platform/exposures/scheduling/platform__synergies_at_00_30.yml", "unique_id": "exposure.yoda.platform__synergies_at_00_30", "fqn": ["yoda", "platform", "exposures", "scheduling", "platform__synergies_at_00_30"], "type": "application", "owner": {"email": "koalas@yotpo.com", "name": "data group"}, "description": "Product Senergies", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 0 * * *", "start_date": "2023-03-30", "upstream_models_freshness": [{"model_name": "email__email_campaign_click_to_redeem_kpi", "freshness": "AUTO"}, {"model_name": "email__email_campaign_loyalty_kpi", "freshness": "AUTO"}, {"model_name": "email__email_campaign_reviews_block_kpi", "freshness": "AUTO"}, {"model_name": "email__email_campaign_reviews_stars_kpi", "freshness": "AUTO"}, {"model_name": "loyalty__review_earning_rule_loyalty", "freshness": "AUTO"}, {"model_name": "loyalty__sms_earning_rule_loyalty", "freshness": "AUTO"}, {"model_name": "sms__loyalty_sms_campaigns_email_kpi", "freshness": "AUTO"}, {"model_name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "freshness": "AUTO"}, {"model_name": "sms__loyalty_sms_campaigns_sms_kpi", "freshness": "AUTO"}, {"model_name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "freshness": "AUTO"}, {"model_name": "sms__loyalty_sms_flows_email_kpi", "freshness": "AUTO"}, {"model_name": "sms__loyalty_sms_flows_sms_kpi", "freshness": "AUTO"}, {"model_name": "sms__reviews_sms_flows_email_kpi", "freshness": "AUTO"}, {"model_name": "sms__reviews_sms_flows_sms_kpi", "freshness": "AUTO"}, {"model_name": "sms__social_proof_flows_email_kpi", "freshness": "AUTO"}, {"model_name": "sms__social_proof_flows_sms_kpi", "freshness": "AUTO"}, {"model_name": "subscriptions__synergy_kpi_one_click_campaign", "freshness": "AUTO"}, {"model_name": "subscriptions__synergy_kpi_redeemed_points", "freshness": "AUTO"}, {"model_name": "subscriptions__synergy_kpi_sms_payment_failure", "freshness": "AUTO"}]}}, "tags": ["platform", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=platform__synergies_at_00_30", "depends_on": {"macros": [], "nodes": ["model.yoda.platform_stg__synergies_crud", "model.yoda.platform_stg__widgets", "model.yoda.platform_stg__sections", "model.yoda.platform__synergies_kpi", "model.yoda.platform_stg__synergy_product_mapping", "model.yoda.platform_stg__widget_configurations"]}, "refs": [{"name": "platform_stg__synergies_crud", "package": null, "version": null}, {"name": "platform_stg__widgets", "package": null, "version": null}, {"name": "platform_stg__sections", "package": null, "version": null}, {"name": "platform__synergies_kpi", "package": null, "version": null}, {"name": "platform_stg__synergy_product_mapping", "package": null, "version": null}, {"name": "platform_stg__widget_configurations", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082678.0683668}, "exposure.yoda.sms__revenue_model": {"name": "sms__revenue_model", "resource_type": "exposure", "package_name": "yoda", "path": "sms/exposures/looker/sms__revenue_model.yml", "original_file_path": "models/sms/exposures/looker/sms__revenue_model.yml", "unique_id": "exposure.yoda.sms__revenue_model", "fqn": ["yoda", "sms", "exposures", "looker", "sms__revenue_model"], "type": "analysis", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "sms daily cost", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('sms__daily_revenue')", "connection": "yoda"}}, "tags": ["yoda_looker", "sms"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://metrics.yotpo.com/projects/data-applications/files/sms/views/sms__revenue.view.lkml", "depends_on": {"macros": [], "nodes": ["model.yoda.sms__daily_revenue"]}, "refs": [{"name": "sms__daily_revenue", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082685.0776389}, "exposure.yoda.sms__24h": {"name": "sms__24h", "resource_type": "exposure", "package_name": "yoda", "path": "sms/exposures/scheduling/sms__24h.yml", "original_file_path": "models/sms/exposures/scheduling/sms__24h.yml", "unique_id": "exposure.yoda.sms__24h", "fqn": ["yoda", "sms", "exposures", "scheduling", "sms__24h"], "type": "application", "owner": {"email": "koalas@yotpo.com", "name": "koalas"}, "description": "models : sms_stg__apicalls scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 22 * * *", "start_date": "2023-01-01", "upstream_models_freshness": []}}, "tags": ["sms", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=sms__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__bigcommerce_users", "model.yoda.sms_stg__shopify_users", "model.yoda.sms_stg__users", "model.yoda.sms_stg__events", "model.yoda.sms_stg__flows", "model.yoda.sms_stg__loyalty_flows_data", "model.yoda.sms_stg__track_flows_adoption", "model.yoda.sms_stg__yotpo_organizations", "model.yoda.sms_stg__sms_campaign_created", "model.yoda.sms_stg__users_events_log", "model.yoda.sms_stg__packages", "model.yoda.sms_stg__orders", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__purchases", "model.yoda.sms_stg__forms", "model.yoda.sms_stg__comm_analytics_data", "model.yoda.sms_stg__campaign_lists", "model.yoda.sms_stg__lists", "model.yoda.sms_stg__shopify_segments", "model.yoda.sms_stg__free_credits_logs", "model.yoda.sms_stg__email_charges", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__email_to_sms_campaigns", "model.yoda.sms_stg__shopify_campaign_discount_codes", "model.yoda.sms_stg__sms_loyalty_redemptions"]}, "refs": [{"name": "sms_stg__apicalls", "package": null, "version": null}, {"name": "sms_stg__bigcommerce_users", "package": null, "version": null}, {"name": "sms_stg__shopify_users", "package": null, "version": null}, {"name": "sms_stg__users", "package": null, "version": null}, {"name": "sms_stg__events", "package": null, "version": null}, {"name": "sms_stg__flows", "package": null, "version": null}, {"name": "sms_stg__loyalty_flows_data", "package": null, "version": null}, {"name": "sms_stg__track_flows_adoption", "package": null, "version": null}, {"name": "sms_stg__yotpo_organizations", "package": null, "version": null}, {"name": "sms_stg__sms_campaign_created", "package": null, "version": null}, {"name": "sms_stg__users_events_log", "package": null, "version": null}, {"name": "sms_stg__packages", "package": null, "version": null}, {"name": "sms_stg__orders", "package": null, "version": null}, {"name": "sms_stg__customers", "package": null, "version": null}, {"name": "sms_stg__campaigns", "package": null, "version": null}, {"name": "sms_stg__purchases", "package": null, "version": null}, {"name": "sms_stg__forms", "package": null, "version": null}, {"name": "sms_stg__comm_analytics_data", "package": null, "version": null}, {"name": "sms_stg__campaign_lists", "package": null, "version": null}, {"name": "sms_stg__lists", "package": null, "version": null}, {"name": "sms_stg__shopify_segments", "package": null, "version": null}, {"name": "sms_stg__free_credits_logs", "package": null, "version": null}, {"name": "sms_stg__email_charges", "package": null, "version": null}, {"name": "sms_stg__shopify_analytics_orders", "package": null, "version": null}, {"name": "sms_stg__email_to_sms_campaigns", "package": null, "version": null}, {"name": "sms_stg__shopify_campaign_discount_codes", "package": null, "version": null}, {"name": "sms_stg__sms_loyalty_redemptions", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082685.0924504}, "exposure.yoda.sms__asen_dag": {"name": "sms__asen_dag", "resource_type": "exposure", "package_name": "yoda", "path": "sms/exposures/scheduling/sms__asen_dag.yml", "original_file_path": "models/sms/exposures/scheduling/sms__asen_dag.yml", "unique_id": "exposure.yoda.sms__asen_dag", "fqn": ["yoda", "sms", "exposures", "scheduling", "sms__asen_dag"], "type": "application", "owner": {"email": "anikolov@yotpo.com", "name": ""}, "description": "models : sms_stg__asen_test scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 9 * * *", "start_date": "2023-06-29", "upstream_models_freshness": [{"model_name": "loyalty__opted_in_customers", "freshness": "AUTO"}, {"model_name": "sms_stg__apicalls", "freshness": "AUTO"}, {"model_name": "sms_stg__campaigns", "freshness": "AUTO"}, {"model_name": "sms_stg__customers", "freshness": "AUTO"}, {"model_name": "sms_stg__customers_addresses", "freshness": "AUTO"}, {"model_name": "sms_stg__link_clicks", "freshness": "AUTO"}, {"model_name": "sms_stg__orders", "freshness": "AUTO"}, {"model_name": "sms_stg__users", "freshness": "AUTO"}]}}, "tags": ["sms", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=sms__asen_dag", "depends_on": {"macros": [], "nodes": ["model.yoda.sms__multipass_login_kpi"]}, "refs": [{"name": "sms__multipass_login_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082685.1108632}, "exposure.yoda.sms__revenue": {"name": "sms__revenue", "resource_type": "exposure", "package_name": "yoda", "path": "sms/exposures/scheduling/sms__revenue.yml", "original_file_path": "models/sms/exposures/scheduling/sms__revenue.yml", "unique_id": "exposure.yoda.sms__revenue", "fqn": ["yoda", "sms", "exposures", "scheduling", "sms__revenue"], "type": "application", "owner": {"email": "moshe.derri@yotpo.com", "name": "moshe.derri"}, "description": "revenue metrics", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-02-27", "upstream_models_freshness": [{"model_name": "sms_stg__apicalls", "freshness": "AUTO"}]}}, "tags": ["sms", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=sms__revenue", "depends_on": {"macros": [], "nodes": ["model.yoda.sms__daily_revenue"]}, "refs": [{"name": "sms__daily_revenue", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082685.117448}, "exposure.yoda.sms__sms_additional_kpi_models": {"name": "sms__sms_additional_kpi_models", "resource_type": "exposure", "package_name": "yoda", "path": "sms/exposures/scheduling/sms__sms_additional_kpi_models.yml", "original_file_path": "models/sms/exposures/scheduling/sms__sms_additional_kpi_models.yml", "unique_id": "exposure.yoda.sms__sms_additional_kpi_models", "fqn": ["yoda", "sms", "exposures", "scheduling", "sms__sms_additional_kpi_models"], "type": "application", "owner": {"email": "evgeni.velikov@yotpo.com", "name": ""}, "description": "models : sms__shit_model scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 2 * * *", "start_date": "2023-09-29", "upstream_models_freshness": [{"model_name": "sms_stg__apicalls", "freshness": "AUTO"}, {"model_name": "sms_stg__campaigns", "freshness": "AUTO"}, {"model_name": "sms_stg__customers", "freshness": "AUTO"}, {"model_name": "sms_stg__email_to_sms_campaigns", "freshness": "AUTO"}, {"model_name": "sms_stg__flows", "freshness": "AUTO"}, {"model_name": "sms_stg__shopify_campaign_discount_codes", "freshness": "AUTO"}, {"model_name": "sms_stg__users", "freshness": "AUTO"}, {"model_name": "sms_stg__yotpo_status_updates", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_request_tokens", "freshness": "AUTO"}, {"model_name": "ugc_stg__reviews", "freshness": "AUTO"}]}}, "tags": ["sms", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=sms__sms_additional_kpi_models", "depends_on": {"macros": [], "nodes": ["model.yoda.sms__api_calls_with_customer", "model.yoda.sms_stg__sms_email_campaign_discount_codes", "model.yoda.sms_stg__sms_flows_reviews", "model.yoda.sms__snowflake_sms_flows_reviews"]}, "refs": [{"name": "sms__api_calls_with_customer", "package": null, "version": null}, {"name": "sms_stg__sms_email_campaign_discount_codes", "package": null, "version": null}, {"name": "sms_stg__sms_flows_reviews", "package": null, "version": null}, {"name": "sms__snowflake_sms_flows_reviews", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082685.1314464}, "exposure.yoda.sms__sms_kpi": {"name": "sms__sms_kpi", "resource_type": "exposure", "package_name": "yoda", "path": "sms/exposures/scheduling/sms__sms_kpi.yml", "original_file_path": "models/sms/exposures/scheduling/sms__sms_kpi.yml", "unique_id": "exposure.yoda.sms__sms_kpi", "fqn": ["yoda", "sms", "exposures", "scheduling", "sms__sms_kpi"], "type": "application", "owner": {"email": "evgeni.velikov@yotpo.com", "name": "evgeni velikov"}, "description": "models : sms_kpis scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 7 * * *", "start_date": "2023-04-24", "upstream_models_freshness": [{"model_name": "email_stg__system_email_events", "freshness": "AUTO"}, {"model_name": "loyalty__opted_in_customers", "freshness": "AUTO"}, {"model_name": "loyalty__redeemed_purchases", "freshness": "AUTO"}, {"model_name": "sms_stg__apicalls", "freshness": "AUTO"}, {"model_name": "sms_stg__campaign_lists", "freshness": "AUTO"}, {"model_name": "sms_stg__campaigns", "freshness": "AUTO"}, {"model_name": "sms_stg__customers", "freshness": "AUTO"}, {"model_name": "sms_stg__email_to_sms_campaigns", "freshness": "AUTO"}, {"model_name": "sms_stg__flows", "freshness": "AUTO"}, {"model_name": "sms_stg__lists", "freshness": "AUTO"}, {"model_name": "sms_stg__orders", "freshness": "AUTO"}, {"model_name": "sms_stg__shopify_analytics_orders", "freshness": "AUTO"}, {"model_name": "sms_stg__shopify_segments", "freshness": "AUTO"}, {"model_name": "sms_stg__users", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_request_tokens", "freshness": "AUTO"}, {"model_name": "ugc_stg__reviews", "freshness": "AUTO"}, {"model_name": "ugc_stg__users", "freshness": "AUTO"}]}}, "tags": ["sms", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=sms__sms_kpi", "depends_on": {"macros": [], "nodes": ["model.yoda.sms_stg__shopify_flows_orders", "model.yoda.sms_stg__customers_addresses", "model.yoda.sms_stg__campaign_relations", "model.yoda.sms_stg__default_predefined_messages", "model.yoda.sms_stg__shopify_campaign_orders", "model.yoda.sms_stg__sms_loyalty_campaigns", "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_kpi", "model.yoda.sms_stg__sms_loyalty_campaigns_kpi", "model.yoda.sms_stg__sms_loyalty_flows_kpi", "model.yoda.sms__loyalty_sms_flows_sms_kpi", "model.yoda.sms__loyalty_sms_flows_email_kpi", "model.yoda.sms__loyalty_sms_campaigns_email_kpi", "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi", "model.yoda.sms_stg__social_proof_flows_kpi", "model.yoda.sms__social_proof_flows_sms_kpi", "model.yoda.sms__social_proof_flows_email_kpi", "model.yoda.sms_stg__yotpo_status_updates", "model.yoda.sms_stg__sms_reviews_flows_kpi", "model.yoda.sms__reviews_sms_flows_sms_kpi", "model.yoda.sms__reviews_sms_flows_email_kpi", "model.yoda.sms_stg__sms_loyalty_custom_campaigns", "model.yoda.sms_stg__email_sms_campaign_orders", "model.yoda.sms__sms_double_points_campaign_kpi"]}, "refs": [{"name": "sms_stg__shopify_flows_orders", "package": null, "version": null}, {"name": "sms_stg__customers_addresses", "package": null, "version": null}, {"name": "sms_stg__campaign_relations", "package": null, "version": null}, {"name": "sms_stg__default_predefined_messages", "package": null, "version": null}, {"name": "sms_stg__shopify_campaign_orders", "package": null, "version": null}, {"name": "sms_stg__sms_loyalty_campaigns", "package": null, "version": null}, {"name": "sms__loyalty_sms_campaigns_sms_reward_program_kpi", "package": null, "version": null}, {"name": "sms__loyalty_sms_campaigns_sms_kpi", "package": null, "version": null}, {"name": "sms_stg__sms_loyalty_campaigns_kpi", "package": null, "version": null}, {"name": "sms_stg__sms_loyalty_flows_kpi", "package": null, "version": null}, {"name": "sms__loyalty_sms_flows_sms_kpi", "package": null, "version": null}, {"name": "sms__loyalty_sms_flows_email_kpi", "package": null, "version": null}, {"name": "sms__loyalty_sms_campaigns_email_kpi", "package": null, "version": null}, {"name": "sms__loyalty_sms_campaigns_email_reward_program_kpi", "package": null, "version": null}, {"name": "sms_stg__social_proof_flows_kpi", "package": null, "version": null}, {"name": "sms__social_proof_flows_sms_kpi", "package": null, "version": null}, {"name": "sms__social_proof_flows_email_kpi", "package": null, "version": null}, {"name": "sms_stg__yotpo_status_updates", "package": null, "version": null}, {"name": "sms_stg__sms_reviews_flows_kpi", "package": null, "version": null}, {"name": "sms__reviews_sms_flows_sms_kpi", "package": null, "version": null}, {"name": "sms__reviews_sms_flows_email_kpi", "package": null, "version": null}, {"name": "sms_stg__sms_loyalty_custom_campaigns", "package": null, "version": null}, {"name": "sms_stg__email_sms_campaign_orders", "package": null, "version": null}, {"name": "sms__sms_double_points_campaign_kpi", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082685.159704}, "exposure.yoda.sms__subscriptions_kpi": {"name": "sms__subscriptions_kpi", "resource_type": "exposure", "package_name": "yoda", "path": "sms/exposures/scheduling/sms__subscriptions_kpi.yml", "original_file_path": "models/sms/exposures/scheduling/sms__subscriptions_kpi.yml", "unique_id": "exposure.yoda.sms__subscriptions_kpi", "fqn": ["yoda", "sms", "exposures", "scheduling", "sms__subscriptions_kpi"], "type": "application", "owner": {"email": "evgeni.velikov@yotpo.com", "name": "evgeni velikov"}, "description": "models : subscriptions kpi scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-04-27", "upstream_models_freshness": [{"model_name": "sms__api_calls_with_customer", "freshness": "AUTO"}, {"model_name": "sms_stg__apicalls", "freshness": "AUTO"}, {"model_name": "sms_stg__campaign_lists", "freshness": "AUTO"}, {"model_name": "sms_stg__campaigns", "freshness": "AUTO"}, {"model_name": "sms_stg__customers", "freshness": "AUTO"}, {"model_name": "sms_stg__flows", "freshness": "AUTO"}, {"model_name": "sms_stg__lists", "freshness": "AUTO"}, {"model_name": "sms_stg__shopify_analytics_orders", "freshness": "AUTO"}, {"model_name": "sms_stg__shopify_flows_orders", "freshness": "AUTO"}, {"model_name": "sms_stg__shopify_segments", "freshness": "AUTO"}, {"model_name": "sms_stg__users", "freshness": "AUTO"}]}}, "tags": ["sms", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=sms__subscriptions_kpi", "depends_on": {"macros": [], "nodes": ["model.yoda.sms_stg__link_clicks", "model.yoda.sms_stg__flow_links", "model.yoda.sms__flows_links_clicks", "model.yoda.sms_stg__flow_link_clicks", "model.yoda.sms_stg__one_click_campaigns_subscriptions", "model.yoda.sms_stg__subscription_segmentation_campaigns", "model.yoda.sms_stg__subscription_sms_campaigns", "model.yoda.sms_stg__subscription_upsell_flow", "model.yoda.sms_stg__subscription_upsell_flow_orders", "model.yoda.sms_stg__subscription_upsell_flow_sms"]}, "refs": [{"name": "sms_stg__link_clicks", "package": null, "version": null}, {"name": "sms_stg__flow_links", "package": null, "version": null}, {"name": "sms__flows_links_clicks", "package": null, "version": null}, {"name": "sms_stg__flow_link_clicks", "package": null, "version": null}, {"name": "sms_stg__one_click_campaigns_subscriptions", "package": null, "version": null}, {"name": "sms_stg__subscription_segmentation_campaigns", "package": null, "version": null}, {"name": "sms_stg__subscription_sms_campaigns", "package": null, "version": null}, {"name": "sms_stg__subscription_upsell_flow", "package": null, "version": null}, {"name": "sms_stg__subscription_upsell_flow_orders", "package": null, "version": null}, {"name": "sms_stg__subscription_upsell_flow_sms", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082685.1807642}, "exposure.yoda.subscriptions__store_customers_exports": {"name": "subscriptions__store_customers_exports", "resource_type": "exposure", "package_name": "yoda", "path": "subscriptions/exposures/looker/subscriptions__store_customers_exports.yml", "original_file_path": "models/subscriptions/exposures/looker/subscriptions__store_customers_exports.yml", "unique_id": "exposure.yoda.subscriptions__store_customers_exports", "fqn": ["yoda", "subscriptions", "exposures", "looker", "subscriptions__store_customers_exports"], "type": "analysis", "owner": {"email": "iwo.hajduk@yotpo.com", "name": "iwo hajduk"}, "description": "Exposure for subscriptions analytics endpoint to be scrapped by whales", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('subscriptions__store_customers_exports')", "connection": "yoda"}}, "tags": ["yoda_looker", "subscriptions"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.subscriptions__store_customers_exports"]}, "refs": [{"name": "subscriptions__store_customers_exports", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082689.163875}, "exposure.yoda.subscriptions__csv_exports_to_table": {"name": "subscriptions__csv_exports_to_table", "resource_type": "exposure", "package_name": "yoda", "path": "subscriptions/exposures/scheduling/subscriptions__csv_exports_to_table.yml", "original_file_path": "models/subscriptions/exposures/scheduling/subscriptions__csv_exports_to_table.yml", "unique_id": "exposure.yoda.subscriptions__csv_exports_to_table", "fqn": ["yoda", "subscriptions", "exposures", "scheduling", "subscriptions__csv_exports_to_table"], "type": "application", "owner": {"email": "iwo.hajduk@yotpo.com", "name": "iwo hajduk"}, "description": "subscriptions exports for analytics endpoint", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@hourly", "start_date": "2023-07-11"}}, "tags": ["subscriptions", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=subscriptions__csv_exports_to_table", "depends_on": {"macros": [], "nodes": ["model.yoda.subscriptions__store_customers_exports", "model.yoda.subscriptions_stg__store_customers_exports"]}, "refs": [{"name": "subscriptions__store_customers_exports", "package": null, "version": null}, {"name": "subscriptions_stg__store_customers_exports", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082689.1699345}, "exposure.yoda.subscriptions__customer_journey_events": {"name": "subscriptions__customer_journey_events", "resource_type": "exposure", "package_name": "yoda", "path": "subscriptions/exposures/scheduling/subscriptions__customer_journey_events.yml", "original_file_path": "models/subscriptions/exposures/scheduling/subscriptions__customer_journey_events.yml", "unique_id": "exposure.yoda.subscriptions__customer_journey_events", "fqn": ["yoda", "subscriptions", "exposures", "scheduling", "subscriptions__customer_journey_events"], "type": "application", "owner": {"email": "emaymon@yotpo.com", "name": "elad maymon"}, "description": "customer journey events daily run", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-03-19"}}, "tags": ["subscriptions", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=subscriptions__customer_journey_events", "depends_on": {"macros": [], "nodes": ["model.yoda.subscriptions__customer_journey_event", "model.yoda.subscriptions_stg__customer_journey_event"]}, "refs": [{"name": "subscriptions__customer_journey_event", "package": null, "version": null}, {"name": "subscriptions_stg__customer_journey_event", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082689.176382}, "exposure.yoda.subscriptions__retention_metrics_subscription_orders": {"name": "subscriptions__retention_metrics_subscription_orders", "resource_type": "exposure", "package_name": "yoda", "path": "subscriptions/exposures/scheduling/subscriptions__retention_metrics_subscription_orders.yml", "original_file_path": "models/subscriptions/exposures/scheduling/subscriptions__retention_metrics_subscription_orders.yml", "unique_id": "exposure.yoda.subscriptions__retention_metrics_subscription_orders", "fqn": ["yoda", "subscriptions", "exposures", "scheduling", "subscriptions__retention_metrics_subscription_orders"], "type": "application", "owner": {"email": "omamiya@yotpo.com", "name": "subscriptions"}, "description": "Subscription attributed orders for the retention dashbaord metrics scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 8 * * *", "start_date": "2023-02-15", "upstream_models_freshness": [{"model_name": "subscriptions__subscription_contract_order", "freshness": "AUTO"}, {"model_name": "subscriptions__subscription_total_orders", "freshness": "AUTO"}]}}, "tags": ["subscriptions", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=subscriptions__retention_metrics_subscription_orders", "depends_on": {"macros": [], "nodes": ["model.yoda.subscriptions__subscriptions_attributed_orders"]}, "refs": [{"name": "subscriptions__subscriptions_attributed_orders", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082689.1852572}, "exposure.yoda.subscriptions__subscriptions_tables_to_snowflake": {"name": "subscriptions__subscriptions_tables_to_snowflake", "resource_type": "exposure", "package_name": "yoda", "path": "subscriptions/exposures/scheduling/subscriptions__subscriptions_tables_to_snowflake.yml", "original_file_path": "models/subscriptions/exposures/scheduling/subscriptions__subscriptions_tables_to_snowflake.yml", "unique_id": "exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "fqn": ["yoda", "subscriptions", "exposures", "scheduling", "subscriptions__subscriptions_tables_to_snowflake"], "type": "application", "owner": {"email": "omamiya@yotpo.com", "name": ""}, "description": "models : subscriptions__subscription_accounts scheduling ", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "0 */4 * * *", "start_date": "2022-12-06", "upstream_models_freshness": [{"model_name": "analytics___platform_stg__store_order", "freshness": "2d"}, {"model_name": "platform_stg__accounts", "freshness": "2d"}, {"model_name": "platform_stg__features", "freshness": "2d"}, {"model_name": "platform_stg__order_lines", "freshness": "2d"}, {"model_name": "platform_stg__orders", "freshness": "2d"}, {"model_name": "platform_stg__owner_feature_settings", "freshness": "2d"}, {"model_name": "platform_stg__owners_features", "freshness": "2d"}, {"model_name": "platform_stg__products", "freshness": "2d"}, {"model_name": "platform_stg__variants", "freshness": "2d"}]}}, "tags": ["subscriptions", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.k8s.yotpo.xyz/graph?dag_id=subscriptions__subscriptions_tables_to_snowflake", "depends_on": {"macros": [], "nodes": ["model.yoda.subscriptions__subscription_accounts", "model.yoda.subscriptions__snowflake_subscriptions_accounts", "model.yoda.subscriptions_stg__subscription_contract", "model.yoda.subscriptions__subscription_contract", "model.yoda.subscriptions__snowflake_subscription_contract", "model.yoda.subscriptions_stg__status", "model.yoda.subscriptions__status", "model.yoda.subscriptions__snowflake_status", "model.yoda.subscriptions_stg__subscription_contract_order", "model.yoda.subscriptions__subscription_contract_order", "model.yoda.subscriptions__snowflake_subscription_contract_order", "model.yoda.subscriptions_stg__recurrent_event_rule", "model.yoda.subscriptions__recurrent_event_rule", "model.yoda.subscriptions__snowflake_recurrent_event_rule", "model.yoda.subscriptions__subscription_total_orders", "model.yoda.subscriptions__snowflake_subscription_total_orders", "model.yoda.subscriptions_stg__subscription_contract_line", "model.yoda.subscriptions__subscription_contract_line_policy", "model.yoda.subscriptions__snowflake_subscription_contract_line_policy", "model.yoda.subscriptions_stg__subscription_creation_request", "model.yoda.subscriptions_stg__product", "model.yoda.subscriptions_stg__selling_plan", "model.yoda.subscriptions_stg__selling_plan_group", "model.yoda.subscriptions_stg__selling_plan_group_product", "model.yoda.subscriptions__subscription_contract_status_changes", "model.yoda.subscriptions__snowflake_subscription_contract_status_changes", "model.yoda.subscriptions_stg__cancelation_intent_event", "model.yoda.subscriptions_stg__cancelation_reason_option", "model.yoda.subscriptions__snowflake_cancelation_intent_event", "model.yoda.subscriptions__snowflake_cancelation_reason_option", "model.yoda.subscriptions__subscription_contract_order_lines", "model.yoda.subscriptions__snowflake_subscription_contract_order_lines", "model.yoda.subscriptions__subscription_contract_line", "model.yoda.subscriptions__subscription_merchant_migration_date", "model.yoda.subscriptions__snowflake_subscription_merchant_migration_date", "model.yoda.subscriptions_stg__subscription_line_action", "model.yoda.subscriptions__snowflake_subscription_line_action", "model.yoda.subscriptions_stg__app_webhooks"]}, "refs": [{"name": "subscriptions__subscription_accounts", "package": null, "version": null}, {"name": "subscriptions__snowflake_subscriptions_accounts", "package": null, "version": null}, {"name": "subscriptions_stg__subscription_contract", "package": null, "version": null}, {"name": "subscriptions__subscription_contract", "package": null, "version": null}, {"name": "subscriptions__snowflake_subscription_contract", "package": null, "version": null}, {"name": "subscriptions_stg__status", "package": null, "version": null}, {"name": "subscriptions__status", "package": null, "version": null}, {"name": "subscriptions__snowflake_status", "package": null, "version": null}, {"name": "subscriptions_stg__subscription_contract_order", "package": null, "version": null}, {"name": "subscriptions__subscription_contract_order", "package": null, "version": null}, {"name": "subscriptions__snowflake_subscription_contract_order", "package": null, "version": null}, {"name": "subscriptions_stg__recurrent_event_rule", "package": null, "version": null}, {"name": "subscriptions__recurrent_event_rule", "package": null, "version": null}, {"name": "subscriptions__snowflake_recurrent_event_rule", "package": null, "version": null}, {"name": "subscriptions__subscription_total_orders", "package": null, "version": null}, {"name": "subscriptions__snowflake_subscription_total_orders", "package": null, "version": null}, {"name": "subscriptions_stg__subscription_contract_line", "package": null, "version": null}, {"name": "subscriptions__subscription_contract_line_policy", "package": null, "version": null}, {"name": "subscriptions__snowflake_subscription_contract_line_policy", "package": null, "version": null}, {"name": "subscriptions_stg__subscription_creation_request", "package": null, "version": null}, {"name": "subscriptions_stg__product", "package": null, "version": null}, {"name": "subscriptions_stg__selling_plan", "package": null, "version": null}, {"name": "subscriptions_stg__selling_plan_group", "package": null, "version": null}, {"name": "subscriptions_stg__selling_plan_group_product", "package": null, "version": null}, {"name": "subscriptions__subscription_contract_status_changes", "package": null, "version": null}, {"name": "subscriptions__snowflake_subscription_contract_status_changes", "package": null, "version": null}, {"name": "subscriptions_stg__cancelation_intent_event", "package": null, "version": null}, {"name": "subscriptions_stg__cancelation_reason_option", "package": null, "version": null}, {"name": "subscriptions__snowflake_cancelation_intent_event", "package": null, "version": null}, {"name": "subscriptions__snowflake_cancelation_reason_option", "package": null, "version": null}, {"name": "subscriptions__subscription_contract_order_lines", "package": null, "version": null}, {"name": "subscriptions__snowflake_subscription_contract_order_lines", "package": null, "version": null}, {"name": "subscriptions__subscription_contract_line", "package": null, "version": null}, {"name": "subscriptions__subscription_merchant_migration_date", "package": null, "version": null}, {"name": "subscriptions__snowflake_subscription_merchant_migration_date", "package": null, "version": null}, {"name": "subscriptions_stg__subscription_line_action", "package": null, "version": null}, {"name": "subscriptions__snowflake_subscription_line_action", "package": null, "version": null}, {"name": "subscriptions_stg__app_webhooks", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082689.2093456}, "exposure.yoda.subscriptions__synergies_kpi": {"name": "subscriptions__synergies_kpi", "resource_type": "exposure", "package_name": "yoda", "path": "subscriptions/exposures/scheduling/subscriptions__synergies_kpi.yml", "original_file_path": "models/subscriptions/exposures/scheduling/subscriptions__synergies_kpi.yml", "unique_id": "exposure.yoda.subscriptions__synergies_kpi", "fqn": ["yoda", "subscriptions", "exposures", "scheduling", "subscriptions__synergies_kpi"], "type": "application", "owner": {"email": "nfarcas@yotpo.com", "name": "subscriptions"}, "description": "models : subscriptions__synergy_kpi_sms_payment_failure scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-04-24", "upstream_models_freshness": [{"model_name": "loyalty__redeemed_purchases_with_subs_redemption_option", "freshness": "AUTO"}, {"model_name": "loyalty_stg__enriched_customers", "freshness": "AUTO"}, {"model_name": "sms__flows_links_clicks", "freshness": "AUTO"}, {"model_name": "sms_stg__one_click_campaigns_subscriptions", "freshness": "AUTO"}, {"model_name": "sms_stg__subscription_upsell_flow", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__billing_attempt_response", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__subscription_contract", "freshness": "AUTO"}, {"model_name": "subscriptions_stg__subscription_contract_order", "freshness": "AUTO"}]}}, "tags": ["subscriptions", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=subscriptions__synergies_kpi", "depends_on": {"macros": [], "nodes": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure", "model.yoda.subscriptions_stg__synergy_sms_payment_failure", "model.yoda.subscriptions_stg__synergy_subs_payment_failure", "model.yoda.subscriptions__synergy_kpi_redeemed_points", "model.yoda.subscriptions__synergy_kpi_one_click_campaign", "model.yoda.subscriptions__synergy_kpi_sms_upsell"]}, "refs": [{"name": "subscriptions__synergy_kpi_sms_payment_failure", "package": null, "version": null}, {"name": "subscriptions_stg__synergy_sms_payment_failure", "package": null, "version": null}, {"name": "subscriptions_stg__synergy_subs_payment_failure", "package": null, "version": null}, {"name": "subscriptions__synergy_kpi_redeemed_points", "package": null, "version": null}, {"name": "subscriptions__synergy_kpi_one_click_campaign", "package": null, "version": null}, {"name": "subscriptions__synergy_kpi_sms_upsell", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082689.2295823}, "exposure.yoda.subscriptions__table_sync": {"name": "subscriptions__table_sync", "resource_type": "exposure", "package_name": "yoda", "path": "subscriptions/exposures/scheduling/subscriptions__table_sync.yml", "original_file_path": "models/subscriptions/exposures/scheduling/subscriptions__table_sync.yml", "unique_id": "exposure.yoda.subscriptions__table_sync", "fqn": ["yoda", "subscriptions", "exposures", "scheduling", "subscriptions__table_sync"], "type": "application", "owner": {"email": "nfarcas@yotpo.com", "name": "subscriptions"}, "description": "models : subscriptions_stg__billing_attempt_response scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-04-19"}}, "tags": ["subscriptions", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=subscriptions__table_sync", "depends_on": {"macros": [], "nodes": ["model.yoda.subscriptions_stg__billing_attempt_response"]}, "refs": [{"name": "subscriptions_stg__billing_attempt_response", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082689.2364275}, "exposure.yoda.support__24h": {"name": "support__24h", "resource_type": "exposure", "package_name": "yoda", "path": "support/exposures/scheduling/support__24h.yml", "original_file_path": "models/support/exposures/scheduling/support__24h.yml", "unique_id": "exposure.yoda.support__24h", "fqn": ["yoda", "support", "exposures", "scheduling", "support__24h"], "type": "application", "owner": {"email": "lior.shabi@yotpo.com", "name": "Lior Shabi"}, "description": "support daily scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "30 2 * * *", "start_date": "2023-11-14", "upstream_models_freshness": [{"model_name": "analytics___ugc__review_request", "freshness": "AUTO"}]}}, "tags": ["support", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=support__24h", "depends_on": {"macros": [], "nodes": ["model.yoda.support__review_request"]}, "refs": [{"name": "support__review_request", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082692.1429415}, "exposure.yoda.ugc__shopper_experience_aggregation": {"name": "ugc__shopper_experience_aggregation", "resource_type": "exposure", "package_name": "yoda", "path": "ugc/exposures/looker/ugc__shopper_experience_aggregation.yml", "original_file_path": "models/ugc/exposures/looker/ugc__shopper_experience_aggregation.yml", "unique_id": "exposure.yoda.ugc__shopper_experience_aggregation", "fqn": ["yoda", "ugc", "exposures", "looker", "ugc__shopper_experience_aggregation"], "type": "analysis", "owner": {"email": "doron.kruh@yotpo.com", "name": "doron kruh"}, "description": "", "label": null, "maturity": "low", "meta": {"looker": {"main_model": "ref('ugc__shopper_experience_store_aggregation')", "connection": "databricks-sql-ugc-reporting", "joins": [{"join": "ref('ugc__shopper_experience_order_aggregation')", "sql_on": "${ref('ugc__shopper_experience_store_aggregation').date} = ${ref('ugc__shopper_experience_order_aggregation').date} AND ${ref('ugc__shopper_experience_store_aggregation').app_key} = ${ref('ugc__shopper_experience_order_aggregation').app_key}", "type": "left_outer", "relationship": "one_to_many"}, {"join": "ref('ugc__shopper_experience_widget_engagement_aggregation')", "sql_on": "${ref('ugc__shopper_experience_store_aggregation).date} = ${ref('ugc__shopper_experience_widget_engagement_aggregation').date} AND ${ref('ugc__shopper_experience_store_aggregation').app_key} = ${ref('ugc__shopper_experience_widget_engagement_aggregation).app_key}", "type": "left_outer", "relationship": "one_to_many"}, {"join": "ref('ugc__shopper_experience_widget_order_aggregation')", "sql_on": "${'ugc__shopper_experience_store_aggregation').date} = ${ref('ugc__shopper_experience_widget_order_aggregation').date} AND ${ref('ugc__shopper_experience_store_aggregation').app_key} = ${ref('ugc__shopper_experience_widget_order_aggregation').app_key}", "type": "left_outer", "relationship": "one_to_many"}], "measures": [{"name": "engagement", "model": "ref('ugc__shopper_experience_store_aggregation')", "type": "number", "sql": "(SUM(${ref('ugc__shopper_experience_store_aggregation').interacted_users}) / SUM(${ref('ugc__shopper_experience_store_aggregation').total_users}))"}]}}, "tags": ["yoda_looker", "ugc"], "config": {"enabled": true}, "unrendered_config": {}, "url": "", "depends_on": {"macros": [], "nodes": ["model.yoda.ugc__shopper_experience_store_aggregation", "model.yoda.ugc__shopper_experience_order_aggregation", "model.yoda.ugc__shopper_experience_widget_engagement_aggregation", "model.yoda.ugc__shopper_experience_widget_order_aggregation"]}, "refs": [{"name": "ugc__shopper_experience_store_aggregation", "package": null, "version": null}, {"name": "ugc__shopper_experience_order_aggregation", "package": null, "version": null}, {"name": "ugc__shopper_experience_widget_engagement_aggregation", "package": null, "version": null}, {"name": "ugc__shopper_experience_widget_order_aggregation", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082692.1909435}, "exposure.yoda.ugc__daily": {"name": "ugc__daily", "resource_type": "exposure", "package_name": "yoda", "path": "ugc/exposures/scheduling/ugc__daily.yml", "original_file_path": "models/ugc/exposures/scheduling/ugc__daily.yml", "unique_id": "exposure.yoda.ugc__daily", "fqn": ["yoda", "ugc", "exposures", "scheduling", "ugc__daily"], "type": "application", "owner": {"email": "nikodem.wisniewski@yotpo.com", "name": "nikodem wisniewski"}, "description": "UGC daily DAG", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-03-02", "upstream_models_freshness": [{"model_name": "platform_stg__order_lines", "freshness": "AUTO"}, {"model_name": "platform_stg__orders", "freshness": "AUTO"}, {"model_name": "platform_stg__products", "freshness": "AUTO"}, {"model_name": "platform_stg__variants", "freshness": "AUTO"}, {"model_name": "ugc_stg__moderation_audits", "freshness": "AUTO"}]}}, "tags": ["ugc", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=ugc__daily", "depends_on": {"macros": [], "nodes": ["model.yoda.ugc_stg__anonymous_users", "model.yoda.ugc_stg__reviews", "model.yoda.ugc_stg__users", "model.yoda.ugc_stg__comments", "model.yoda.ugc_stg__dirty_words", "model.yoda.ugc_stg__review_source_types", "model.yoda.ugc_stg__review_types", "model.yoda.ugc_stg__reviews_subjects", "model.yoda.ugc_stg__metadata_types", "model.yoda.ugc_stg__review_metadatas", "model.yoda.ugc_stg__reminders", "model.yoda.ugc_stg__review_order_line", "model.yoda.ugc_stg__review_tags", "model.yoda.ugc_stg__tags_to_reviews", "model.yoda.ugc_stg__review_request_tokens", "model.yoda.ugc_stg__shopify_shop_reviews_backfill", "model.yoda.ugc_stg__syndicated_accounts", "model.yoda.ugc_stg__retailer", "model.yoda.ugc_stg__email_authentications", "model.yoda.ugc_stg__users_email_controls", "model.yoda.ugc_stg__email_types", "model.yoda.ugc_stg__review_request_sms", "model.yoda.ugc_stg__review_request_emails"]}, "refs": [{"name": "ugc_stg__anonymous_users", "package": null, "version": null}, {"name": "ugc_stg__reviews", "package": null, "version": null}, {"name": "ugc_stg__users", "package": null, "version": null}, {"name": "ugc_stg__comments", "package": null, "version": null}, {"name": "ugc_stg__dirty_words", "package": null, "version": null}, {"name": "ugc_stg__review_source_types", "package": null, "version": null}, {"name": "ugc_stg__review_types", "package": null, "version": null}, {"name": "ugc_stg__reviews_subjects", "package": null, "version": null}, {"name": "ugc_stg__metadata_types", "package": null, "version": null}, {"name": "ugc_stg__review_metadatas", "package": null, "version": null}, {"name": "ugc_stg__reminders", "package": null, "version": null}, {"name": "ugc_stg__review_order_line", "package": null, "version": null}, {"name": "ugc_stg__review_tags", "package": null, "version": null}, {"name": "ugc_stg__tags_to_reviews", "package": null, "version": null}, {"name": "ugc_stg__review_request_tokens", "package": null, "version": null}, {"name": "ugc_stg__shopify_shop_reviews_backfill", "package": null, "version": null}, {"name": "ugc_stg__syndicated_accounts", "package": null, "version": null}, {"name": "ugc_stg__retailer", "package": null, "version": null}, {"name": "ugc_stg__email_authentications", "package": null, "version": null}, {"name": "ugc_stg__users_email_controls", "package": null, "version": null}, {"name": "ugc_stg__email_types", "package": null, "version": null}, {"name": "ugc_stg__review_request_sms", "package": null, "version": null}, {"name": "ugc_stg__review_request_emails", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082692.208175}, "exposure.yoda.ugc__export_reviews_daily": {"name": "ugc__export_reviews_daily", "resource_type": "exposure", "package_name": "yoda", "path": "ugc/exposures/scheduling/ugc__export_reviews_daily.yml", "original_file_path": "models/ugc/exposures/scheduling/ugc__export_reviews_daily.yml", "unique_id": "exposure.yoda.ugc__export_reviews_daily", "fqn": ["yoda", "ugc", "exposures", "scheduling", "ugc__export_reviews_daily"], "type": "application", "owner": {"email": "elad.herzog@yotpo.com", "name": "Elad Herzog"}, "description": "models : ugc__export_reviews scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-03-23", "upstream_models_freshness": [{"model_name": "analytics___ugc_stg__metadata_type", "freshness": "AUTO"}, {"model_name": "analytics___ugc_stg__review_metadata", "freshness": "AUTO"}, {"model_name": "platform_stg__accounts", "freshness": "AUTO"}, {"model_name": "platform_stg__attribute_sets", "freshness": "AUTO"}, {"model_name": "platform_stg__custom_attributes", "freshness": "AUTO"}, {"model_name": "platform_stg__gtins", "freshness": "AUTO"}, {"model_name": "platform_stg__order_lines", "freshness": "AUTO"}, {"model_name": "platform_stg__orders", "freshness": "AUTO"}, {"model_name": "platform_stg__products", "freshness": "AUTO"}, {"model_name": "ugc_stg__anonymous_users", "freshness": "AUTO"}, {"model_name": "ugc_stg__comments", "freshness": "AUTO"}, {"model_name": "ugc_stg__dirty_words", "freshness": "AUTO"}, {"model_name": "ugc_stg__images", "freshness": "AUTO"}, {"model_name": "ugc_stg__moderation_audits", "freshness": "AUTO"}, {"model_name": "ugc_stg__mongo_gallery_media", "freshness": "AUTO"}, {"model_name": "ugc_stg__relevant_reviews_subject", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_order_line", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_tags", "freshness": "AUTO"}, {"model_name": "ugc_stg__reviews_incentivized", "freshness": "AUTO"}, {"model_name": "ugc_stg__tags_to_reviews", "freshness": "AUTO"}, {"model_name": "ugc_stg__users", "freshness": "AUTO"}, {"model_name": "ugc_stg__videos", "freshness": "AUTO"}, {"model_name": "ugc_stg__votes", "freshness": "AUTO"}]}}, "tags": ["ugc", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=ugc__export_reviews_daily", "depends_on": {"macros": [], "nodes": ["model.yoda.ugc__export_reviews"]}, "refs": [{"name": "ugc__export_reviews", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082692.234711}, "exposure.yoda.ugc__parial_reviewed_orders_daily": {"name": "ugc__parial_reviewed_orders_daily", "resource_type": "exposure", "package_name": "yoda", "path": "ugc/exposures/scheduling/ugc__parial_reviewed_orders_daily.yml", "original_file_path": "models/ugc/exposures/scheduling/ugc__parial_reviewed_orders_daily.yml", "unique_id": "exposure.yoda.ugc__parial_reviewed_orders_daily", "fqn": ["yoda", "ugc", "exposures", "scheduling", "ugc__parial_reviewed_orders_daily"], "type": "application", "owner": {"email": "nikodem.wisniewski@yotpo.com", "name": "nikodem wisniewski"}, "description": "", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-02-17", "upstream_models_freshness": [{"model_name": "platform_stg__orders", "freshness": "AUTO"}, {"model_name": "ugc_stg__anonymous_users", "freshness": "AUTO"}, {"model_name": "ugc_stg__reviews", "freshness": "AUTO"}, {"model_name": "ugc_stg__users", "freshness": "AUTO"}]}}, "tags": ["ugc", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=ugc__parial_reviewed_orders_daily", "depends_on": {"macros": [], "nodes": ["model.yoda.ugc__partial_reviewed_orders"]}, "refs": [{"name": "ugc__partial_reviewed_orders", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082692.2433903}, "exposure.yoda.ugc__reporting_reviews_daily": {"name": "ugc__reporting_reviews_daily", "resource_type": "exposure", "package_name": "yoda", "path": "ugc/exposures/scheduling/ugc__reporting_reviews_daily.yml", "original_file_path": "models/ugc/exposures/scheduling/ugc__reporting_reviews_daily.yml", "unique_id": "exposure.yoda.ugc__reporting_reviews_daily", "fqn": ["yoda", "ugc", "exposures", "scheduling", "ugc__reporting_reviews_daily"], "type": "application", "owner": {"email": "tjanik@yotpo.com", "name": "Tomasz Janik"}, "description": "models : ugc_stg__relevant_reporting_reviews_accounts scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-02-02", "upstream_models_freshness": [{"model_name": "platform_stg__accounts", "freshness": "AUTO"}, {"model_name": "platform_stg__groups", "freshness": "AUTO"}, {"model_name": "platform_stg__organizations", "freshness": "AUTO"}, {"model_name": "platform_stg__owners_packages", "freshness": "AUTO"}, {"model_name": "platform_stg__packages", "freshness": "AUTO"}, {"model_name": "platform_stg__products", "freshness": "AUTO"}, {"model_name": "ugc_stg__anonymous_users", "freshness": "AUTO"}, {"model_name": "ugc_stg__comments", "freshness": "AUTO"}, {"model_name": "ugc_stg__dirty_words", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_source_types", "freshness": "AUTO"}, {"model_name": "ugc_stg__review_types", "freshness": "AUTO"}, {"model_name": "ugc_stg__reviews", "freshness": "AUTO"}, {"model_name": "ugc_stg__reviews_subjects", "freshness": "AUTO"}, {"model_name": "ugc_stg__users", "freshness": "AUTO"}]}}, "tags": ["ugc", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=ugc__reporting_reviews_daily", "depends_on": {"macros": [], "nodes": ["model.yoda.ugc_stg__relevant_reporting_reviews_accounts", "model.yoda.ugc_stg__images", "model.yoda.ugc_stg__videos", "model.yoda.ugc_stg__moderation_audits", "model.yoda.ugc_stg__votes", "model.yoda.ugc_stg__review_contents", "model.yoda.ugc_stg__review_form_fields", "model.yoda.ugc_stg__review_form_field_types", "model.yoda.ugc_stg__mongo_gallery_media", "model.yoda.ugc__reporting_reviews", "model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.ugc__reporting_crf", "model.yoda.ugc_stg__shares", "model.yoda.ugc_stg__reviews_incentivized"]}, "refs": [{"name": "ugc_stg__relevant_reporting_reviews_accounts", "package": null, "version": null}, {"name": "ugc_stg__images", "package": null, "version": null}, {"name": "ugc_stg__videos", "package": null, "version": null}, {"name": "ugc_stg__moderation_audits", "package": null, "version": null}, {"name": "ugc_stg__votes", "package": null, "version": null}, {"name": "ugc_stg__review_contents", "package": null, "version": null}, {"name": "ugc_stg__review_form_fields", "package": null, "version": null}, {"name": "ugc_stg__review_form_field_types", "package": null, "version": null}, {"name": "ugc_stg__mongo_gallery_media", "package": null, "version": null}, {"name": "ugc__reporting_reviews", "package": null, "version": null}, {"name": "ugc_stg__relevant_reviews_subject", "package": null, "version": null}, {"name": "ugc__reporting_crf", "package": null, "version": null}, {"name": "ugc_stg__shares", "package": null, "version": null}, {"name": "ugc_stg__reviews_incentivized", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082692.2633717}, "exposure.yoda.ugc__shopper_experience_pixel_aggregation": {"name": "ugc__shopper_experience_pixel_aggregation", "resource_type": "exposure", "package_name": "yoda", "path": "ugc/exposures/scheduling/ugc__shopper_experience_pixel_aggregation.yml", "original_file_path": "models/ugc/exposures/scheduling/ugc__shopper_experience_pixel_aggregation.yml", "unique_id": "exposure.yoda.ugc__shopper_experience_pixel_aggregation", "fqn": ["yoda", "ugc", "exposures", "scheduling", "ugc__shopper_experience_pixel_aggregation"], "type": "application", "owner": {"email": "ckronengold@yotpo.com", "name": "shopper_experience"}, "description": "models : ugc__shopper_experience_pixel_aggregation scheduling", "label": null, "maturity": "low", "meta": {"scheduling": {"schedule": "@daily", "start_date": "2023-07-26", "upstream_models_freshness": [{"model_name": "infra__pixel_onsite_v2", "freshness": "AUTO"}, {"model_name": "infra__pixel_onsite_v3", "freshness": "AUTO"}]}}, "tags": ["ugc", "yoda_scheduling"], "config": {"enabled": true}, "unrendered_config": {}, "url": "https://airflow-data-applications.data-group.yotpo.xyz/graph?dag_id=ugc__shopper_experience_pixel_aggregation", "depends_on": {"macros": [], "nodes": ["model.yoda.ugc__shopper_experience_store_aggregation", "model.yoda.ugc__shopper_experience_order_aggregation", "model.yoda.ugc__shopper_experience_widget_engagement_aggregation", "model.yoda.ugc__shopper_experience_widget_order_aggregation"]}, "refs": [{"name": "ugc__shopper_experience_store_aggregation", "package": null, "version": null}, {"name": "ugc__shopper_experience_order_aggregation", "package": null, "version": null}, {"name": "ugc__shopper_experience_widget_engagement_aggregation", "package": null, "version": null}, {"name": "ugc__shopper_experience_widget_order_aggregation", "package": null, "version": null}], "sources": [], "metrics": [], "created_at": 1700082692.2750444}}, "metrics": {}, "groups": {}, "selectors": {"all_models_selector": {"name": "all_models_selector", "description": "Default all-models selector.", "definition": {"union": [{"method": "fqn", "value": "*"}, {"exclude": [{"union": [{"method": "test_type", "value": "generic"}, {"method": "test_type", "value": "singular"}]}]}]}}, "yoda_segment_selector": {"name": "yoda_segment_selector", "description": "A selector for the yoda_segment tag.", "definition": {"union": [{"method": "tag", "value": "yoda_segment"}, {"exclude": [{"union": [{"method": "test_type", "value": "generic"}, {"method": "test_type", "value": "singular"}]}]}]}}, "yoda_dag_daily_snapshot_selector": {"name": "yoda_dag_daily_snapshot_selector", "description": "A selector for the yoda_dag_daily_snapshot tag.", "definition": {"union": [{"method": "tag", "value": "yoda_dag_daily_snapshot"}, {"exclude": [{"union": [{"method": "test_type", "value": "generic"}, {"method": "test_type", "value": "singular"}]}]}]}}, "yoda_dag_campaign_analysis_selector": {"name": "yoda_dag_campaign_analysis_selector", "description": "A selector for the yoda_dag_campaign_analysis tag.", "definition": {"union": [{"method": "tag", "value": "yoda_dag_campaign_analysis"}, {"exclude": [{"union": [{"method": "test_type", "value": "generic"}, {"method": "test_type", "value": "singular"}]}]}]}}, "loyalty_selector": {"name": "loyalty_selector", "description": "A selector for the loyalty tag.", "definition": {"union": [{"method": "tag", "value": "loyalty"}, {"exclude": [{"union": [{"method": "test_type", "value": "generic"}, {"method": "test_type", "value": "singular"}]}]}]}}, "north_bound_selector": {"name": "north_bound_selector", "description": "A selector for the north_bound tag.", "definition": {"union": [{"method": "tag", "value": "north_bound"}, {"exclude": [{"union": [{"method": "test_type", "value": "generic"}, {"method": "test_type", "value": "singular"}]}]}]}}, "platform_selector": {"name": "platform_selector", "description": "A selector for the platform tag.", "definition": {"union": [{"method": "tag", "value": "platform"}, {"exclude": [{"union": [{"method": "test_type", "value": "generic"}, {"method": "test_type", "value": "singular"}]}]}]}}, "communication_selector": {"name": "communication_selector", "description": "A selector for the communication tag.", "definition": {"union": [{"method": "tag", "value": "communication"}, {"exclude": [{"union": [{"method": "test_type", "value": "generic"}, {"method": "test_type", "value": "singular"}]}]}]}}}, "disabled": {}, "parent_map": {"model.yoda.analytics___cs__account_acv_metrics_daily": ["model.yoda.analytics___cs__opportunity_won_sale_daily"], "model.yoda.analytics___cs__onboarding_project": ["model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_product", "model.yoda.analytics___salesforce__onboarding_project", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__custom_field_history"], "model.yoda.analytics___cs__opportunity_main_product_change": ["model.yoda.analytics___salesforce__deal_summary_product", "model.yoda.analytics___salesforce__opportunity"], "model.yoda.analytics___cs__opportunity_product": ["model.yoda.analytics___cs__opportunity_main_product_change", "model.yoda.analytics___finance__organization_product_revenue_monthly", "model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_product", "model.yoda.analytics___salesforce__account_tracking_daily", "model.yoda.analytics___salesforce__deal_summary_product", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__store_metrics_monthly"], "model.yoda.analytics___cs__opportunity_won_product_start_date": ["model.yoda.analytics___finance__organization_product_revenue_metrics_monthly", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__opportunity_line_item"], "model.yoda.analytics___cs__opportunity_won_sale_daily": ["model.yoda.analytics___cs__opportunity_won_product_start_date", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___cs__organization_first_ht_opportunity": ["model.yoda.analytics___cs__opportunity_won_product_start_date"], "model.yoda.analytics___delivery__organization_customer_care_over_time": ["model.yoda.analytics___finance__organization_product_revenue_metrics_monthly", "model.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "model.yoda.analytics___salesforce__service_case"], "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly", "model.yoda.analytics___platform__organization_plan_monthly"], "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly": ["model.yoda.analytics___sms__free_credit_details", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__email_charge"], "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard": ["model.yoda.analytics___cs__organization_first_ht_opportunity", "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly", "model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__organization_name", "model.yoda.analytics___platform__organization_product_segment_monthly"], "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly", "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"], "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly": ["model.yoda.analytics___finance__organization_product_revenue_monthly"], "model.yoda.analytics___finance__organization_product_revenue_monthly": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly", "model.yoda.analytics___finance__organization_product_usage_revenue_monthly", "model.yoda.analytics___platform_stg__product_plan_name_rank"], "model.yoda.analytics___finance__organization_product_revenue_monthly_lean": ["model.yoda.analytics___finance__organization_product_revenue_monthly"], "model.yoda.analytics___finance__organization_product_usage_revenue_monthly": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly", "model.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___finance__organization_revenue_monthly": ["model.yoda.analytics___finance__organization_product_revenue_monthly"], "model.yoda.analytics___finance__rate_plan_mrr_details": ["model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___finance__zuora_product", "model.yoda.analytics___finance__zuora_rateplan_charge", "model.yoda.analytics___finance__zuora_subscription", "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge", "model.yoda.analytics___finance_stg__zuora_rateplan", "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier", "model.yoda.analytics___salesforce_stg__mc_conversion_rate"], "model.yoda.analytics___finance__sf_opportunity_free_month_over_time": ["model.yoda.analytics___finance__zuora_subscription", "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"], "model.yoda.analytics___finance__shopify_billing_event": ["model.yoda.analytics___finance__shopify_store_mapping", "model.yoda.analytics___finance_stg__shopify_billing_event", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_platform_account"], "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"], "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"], "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"], "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"], "model.yoda.analytics___finance__shopify_billing_store_mapping": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_platform_account"], "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time": ["model.yoda.analytics___finance__shopify_billing_event"], "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time", "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping", "model.yoda.analytics___utils_stg__calendar"], "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"], "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time": ["model.yoda.analytics___finance__shopify_billing_event"], "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge": ["model.yoda.analytics___finance__shopify_billing_event", "model.yoda.analytics___platform__store_plan_daily"], "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"], "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"], "model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time": ["model.yoda.analytics___finance__shopify_billing_event"], "model.yoda.analytics___finance__shopify_store_mapping": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_platform_account"], "model.yoda.analytics___finance__zuora_account": ["model.yoda.analytics___finance_stg__zuora_account", "model.yoda.analytics___platform_stg__organization"], "model.yoda.analytics___finance__zuora_invoice": ["model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___finance_stg__zuora_invoice", "model.yoda.analytics___salesforce_stg__mc_conversion_rate"], "model.yoda.analytics___finance__zuora_invoice_item": ["model.yoda.analytics___finance__zuora_invoice", "model.yoda.analytics___finance_stg__zuora_invoice_item"], "model.yoda.analytics___finance__zuora_order_mrr_details": ["model.yoda.analytics___finance_stg__zuora_order", "model.yoda.analytics___finance_stg__zuora_order_action", "model.yoda.analytics___finance_stg__zuora_order_mrr"], "model.yoda.analytics___finance__zuora_organization_plan_rank_daily": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time", "model.yoda.analytics___platform__plan", "model.yoda.analytics___platform_stg__product_plan_name_rank", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"], "model.yoda.analytics___finance__zuora_organization_product_mrr_daily": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"], "model.yoda.analytics___finance__zuora_organization_product_usage_charge": ["model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___finance__zuora_invoice", "model.yoda.analytics___finance__zuora_invoice_item", "model.yoda.analytics___finance__zuora_product", "model.yoda.analytics___finance__zuora_rateplan_charge", "model.yoda.analytics___finance__zuora_subscription", "model.yoda.analytics___platform_stg__organization"], "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"], "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"], "model.yoda.analytics___finance__zuora_parent_organization": ["model.yoda.analytics___finance__zuora_account"], "model.yoda.analytics___finance__zuora_product": ["model.yoda.analytics___finance_stg__zuora_product"], "model.yoda.analytics___finance__zuora_rateplan_charge": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge", "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"], "model.yoda.analytics___finance__zuora_subscription": ["model.yoda.analytics___finance_stg__zuora_subscription"], "model.yoda.analytics___finance__zuora_subscription_mrr_daily": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time", "model.yoda.analytics___finance__zuora_subscription_mrr_over_time", "model.yoda.analytics___platform__plan", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___finance__zuora_subscription_mrr_monthly": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "model.yoda.analytics___finance__zuora_subscription_mrr_over_time": ["model.yoda.analytics___finance__rate_plan_mrr_details", "model.yoda.analytics___salesforce__opportunity"], "model.yoda.analytics___finance_stg__account": ["source.yoda.analytics__zuora.account"], "model.yoda.analytics___finance_stg__contact": ["source.yoda.analytics__zuora.contact"], "model.yoda.analytics___finance_stg__invoice": ["source.yoda.analytics__zuora.invoice"], "model.yoda.analytics___finance_stg__invoiceitem": ["source.yoda.analytics__zuora.invoiceitem"], "model.yoda.analytics___finance_stg__order": ["source.yoda.analytics__zuora.order"], "model.yoda.analytics___finance_stg__orderaction": ["source.yoda.analytics__zuora.orderaction"], "model.yoda.analytics___finance_stg__ordermrr": ["source.yoda.analytics__zuora.ordermrr"], "model.yoda.analytics___finance_stg__product": ["source.yoda.analytics__zuora.product"], "model.yoda.analytics___finance_stg__productrateplan": ["source.yoda.analytics__zuora.productrateplan"], "model.yoda.analytics___finance_stg__productrateplancharge": ["source.yoda.analytics__zuora.productrateplancharge"], "model.yoda.analytics___finance_stg__rateplan": ["source.yoda.analytics__zuora.rateplan"], "model.yoda.analytics___finance_stg__rateplancharge": ["source.yoda.analytics__zuora.rateplancharge"], "model.yoda.analytics___finance_stg__rateplanchargetier": ["source.yoda.analytics__zuora.rateplanchargetier"], "model.yoda.analytics___finance_stg__shopify_billing_events": ["source.yoda.analytics__billing.shopify_billing_events"], "model.yoda.analytics___finance_stg__subscription": ["source.yoda.analytics__zuora.subscription"], "model.yoda.analytics___finance_stg__shopify_billing_event": ["model.yoda.analytics___finance_stg__shopify_billing_events"], "model.yoda.analytics___finance_stg__zuora_account": ["model.yoda.analytics___finance_stg__account"], "model.yoda.analytics___finance_stg__zuora_contact": ["model.yoda.analytics___finance_stg__contact"], "model.yoda.analytics___finance_stg__zuora_invoice": ["model.yoda.analytics___finance_stg__invoice"], "model.yoda.analytics___finance_stg__zuora_invoice_item": ["model.yoda.analytics___finance_stg__invoiceitem"], "model.yoda.analytics___finance_stg__zuora_order": ["model.yoda.analytics___finance_stg__order"], "model.yoda.analytics___finance_stg__zuora_order_action": ["model.yoda.analytics___finance_stg__orderaction"], "model.yoda.analytics___finance_stg__zuora_order_mrr": ["model.yoda.analytics___finance_stg__ordermrr"], "model.yoda.analytics___finance_stg__zuora_product": ["model.yoda.analytics___finance_stg__product"], "model.yoda.analytics___finance_stg__zuora_product_rateplan": ["model.yoda.analytics___finance_stg__productrateplan"], "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge": ["model.yoda.analytics___finance_stg__productrateplancharge"], "model.yoda.analytics___finance_stg__zuora_rateplan": ["model.yoda.analytics___finance_stg__rateplan"], "model.yoda.analytics___finance_stg__zuora_rateplan_charge": ["model.yoda.analytics___finance_stg__rateplancharge"], "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier": ["model.yoda.analytics___finance_stg__rateplanchargetier"], "model.yoda.analytics___finance_stg__zuora_subscription": ["model.yoda.analytics___finance_stg__subscription"], "model.yoda.analytics___gtm__acv_goal_daily": ["model.yoda.analytics___gtm_stg__acv_goal", "source.yoda.analytics__static.calendar_with_closing_day"], "model.yoda.analytics___gtm__crossell_opportunity_attribution": ["model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__mc_cs_lead"], "model.yoda.analytics___gtm__new_sale_opportunity_attribution": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"], "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action": ["model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__campaign_member_field_history", "model.yoda.analytics___salesforce__lead", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__partner_engagement", "model.yoda.analytics___salesforce__task", "model.yoda.analytics___salesforce__user_overtime", "model.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping", "model.yoda.analytics___salesforce_stg__mc_campaign", "model.yoda.analytics___salesforce_stg__mc_contact", "model.yoda.analytics___salesforce_stg__mc_event"], "model.yoda.analytics___gtm__opportunity_attribution": ["model.yoda.analytics___gtm__crossell_opportunity_attribution", "model.yoda.analytics___gtm__new_sale_opportunity_attribution"], "model.yoda.analytics___gtm__opportunity_goal": ["model.yoda.analytics___gtm_stg__acv_goal", "model.yoda.analytics___gtm_stg__sal_goal", "model.yoda.analytics___new_revenue__deal_product"], "model.yoda.analytics___gtm__opporunity_dg_funnel": ["model.yoda.analytics___gtm__opportunity_goal", "model.yoda.analytics___salesforce__mql", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__partner_engagement"], "model.yoda.analytics___gtm__sal_goal_daily": ["model.yoda.analytics___gtm_stg__sal_goal", "source.yoda.analytics__static.calendar_with_closing_day"], "model.yoda.analytics___gtm_stg__stg_nerd_acv_goals": ["source.yoda.analytics__bi_rivery.stg_nerd_acv_goals"], "model.yoda.analytics___gtm_stg__stg_nerd_sal_goals": ["source.yoda.analytics__bi_rivery.stg_nerd_sal_goals"], "model.yoda.analytics___gtm_stg__acv_goal": ["model.yoda.analytics___gtm_stg__stg_nerd_acv_goals"], "model.yoda.analytics___gtm_stg__sal_goal": ["model.yoda.analytics___gtm_stg__stg_nerd_sal_goals"], "model.yoda.analytics___loyalty__daily_merchant": ["model.yoda.analytics___loyalty__merchant"], "model.yoda.analytics___loyalty__earning_rule_activation_daily": ["model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty_stg__earning_rule", "model.yoda.analytics___loyalty_stg__earning_rule_activation_history", "model.yoda.analytics___loyalty_stg__perk", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats": ["model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.loyalty_stg__currency_rates", "model.yoda.loyalty_stg__customers_vip_tiers", "model.yoda.loyalty_stg__purchases", "model.yoda.loyalty_stg__vip_tiers"], "model.yoda.analytics___loyalty__ht_ss_retention_cohort": ["model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_monthly"], "model.yoda.analytics___loyalty__merchant": ["model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.analytics___loyalty_stg__merchant", "model.yoda.loyalty_stg__swell_vip_tiers_settings"], "model.yoda.analytics___loyalty__merchant_activeness_daily": ["model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___loyalty__merchant_metrics_daily": ["model.yoda.analytics___loyalty__daily_merchant", "model.yoda.analytics___loyalty__merchant_activeness_daily"], "model.yoda.analytics___loyalty__merchant_monthly_element_activation": ["model.yoda.analytics___loyalty__daily_merchant", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time", "model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_product"], "model.yoda.analytics___loyalty__merchant_plan_daily": ["model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty__merchant_activeness_daily", "model.yoda.analytics___loyalty__merchant_metrics_daily", "model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___loyalty_stg__loyalty_plan", "model.yoda.analytics___loyalty_stg__loyalty_subscription", "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.analytics___loyalty_stg__segment_install_event_details", "model.yoda.analytics___loyalty_stg__segment_uninstall", "model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___salesforce_stg__mc_opportunity", "model.yoda.analytics___utils_stg__calendar"], "model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly": ["model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_monthly"], "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort": ["model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty_stg__loyalty_plan", "model.yoda.analytics___loyalty_stg__loyalty_subscription"], "model.yoda.analytics___loyalty__merchant_plan_monthly": ["model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty_stg__merchant", "model.yoda.analytics___loyalty_stg__processor", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_tracking_daily", "model.yoda.loyalty_stg__currency_rates"], "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly": ["model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty_stg__loyalty_plan", "model.yoda.analytics___loyalty_stg__loyalty_subscription"], "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly": ["model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty__merchant_monthly_element_activation", "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___platform__store_metrics_monthly"], "model.yoda.analytics___loyalty__organization_metrics_monthly": ["model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty_stg__processor", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.analytics___platform__store", "model.yoda.loyalty_stg__currency_rates"], "model.yoda.analytics___loyalty__plan_metrics_daily": ["model.yoda.analytics___loyalty__merchant_plan_daily"], "model.yoda.analytics___loyalty__plan_metrics_monthly": ["model.yoda.analytics___loyalty__merchant_plan_monthly"], "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time": ["model.yoda.analytics___loyalty_stg__merchant", "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot"], "model.yoda.analytics___loyalty__redemption_details": ["model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.analytics___loyalty_stg__perk", "model.yoda.analytics___loyalty_stg__point_redemption", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.analytics___loyalty_stg__purchase_redemption", "model.yoda.analytics___loyalty_stg__redemption_option"], "model.yoda.analytics___loyalty_stg__earning_rule": ["model.yoda.loyalty_stg__campaigns"], "model.yoda.analytics___loyalty_stg__earning_rule_activation_history": ["model.yoda.loyalty_stg__campaign_activation_histories"], "model.yoda.analytics___loyalty_stg__loyalty_account": ["model.yoda.loyalty_stg__yotpo_platform_accounts"], "model.yoda.analytics___loyalty_stg__loyalty_plan": ["model.yoda.loyalty_stg__plans"], "model.yoda.analytics___loyalty_stg__loyalty_subscription": ["model.yoda.loyalty_stg__subscriptions"], "model.yoda.analytics___loyalty_stg__merchant": ["model.yoda.loyalty_stg__merchants"], "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time": ["model.yoda.analytics___loyalty_stg__segment_install_event_details", "model.yoda.analytics___loyalty_stg__segment_uninstall"], "model.yoda.analytics___loyalty_stg__perk": ["model.yoda.loyalty_stg__perks"], "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings": ["model.yoda.loyalty_stg__config_item"], "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot": ["model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"], "model.yoda.analytics___loyalty_stg__point_redemption": ["model.yoda.analytics___platform_stg__currency_exchange_rate", "model.yoda.loyalty_stg__point_redemptions"], "model.yoda.analytics___loyalty_stg__processor": ["model.yoda.loyalty_stg__processors"], "model.yoda.analytics___loyalty_stg__purchase": ["model.yoda.loyalty_stg__purchases"], "model.yoda.analytics___loyalty_stg__purchase_redemption": ["model.yoda.loyalty_stg__purchases_redemptions"], "model.yoda.analytics___loyalty_stg__redemption_code": ["model.yoda.loyalty_stg__redemption_codes"], "model.yoda.analytics___loyalty_stg__redemption_option": ["model.yoda.analytics___platform_stg__currency_exchange_rate", "model.yoda.loyalty_stg__redemption_options"], "model.yoda.analytics___loyalty_stg__segment_install_event_details": ["model.yoda.loyalty_stg__install_loyalty"], "model.yoda.analytics___loyalty_stg__segment_uninstall": ["model.yoda.loyalty_stg__uninstall_loyalty"], "model.yoda.analytics___loyalty_stg__swell_referral_codes": ["model.yoda.loyalty_stg__referral_codes"], "model.yoda.analytics___loyalty_stg__swell_referrals": ["model.yoda.loyalty_stg__referrals"], "model.yoda.analytics___marketing__mql_opportunity_goal": ["model.yoda.analytics___gtm__opportunity_goal", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__lead", "model.yoda.analytics___salesforce__mql", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce_stg__mc_contact"], "model.yoda.analytics___new_revenue__deal_product": ["model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__deal_summary_product", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__opportunity_line_item", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd"], "model.yoda.analytics___new_revenue__deal_product_scd": ["model.yoda.analytics___new_revenue__deal_product"], "model.yoda.analytics___new_revenue__operational_performance_daily": ["model.yoda.analytics___gtm__acv_goal_daily", "model.yoda.analytics___gtm__sal_goal_daily", "model.yoda.analytics___new_revenue__deal_product", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___sms__store_metrics_daily"], "model.yoda.analytics___partners__manager_performance_monthly": ["model.yoda.analytics___partners__partner_engagement_opportunity", "model.yoda.analytics___partners_stg__manager_goals", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd"], "model.yoda.analytics___partners__partner_engagement_opportunity": ["model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__partner_engagement"], "model.yoda.analytics___partners_stg__partner_manager_goals": ["source.yoda.analytics__bi_rivery.partner_manager_goals"], "model.yoda.analytics___partners_stg__manager_goals": ["model.yoda.analytics___partners_stg__partner_manager_goals"], "model.yoda.analytics___platform__opportunity_ht_ss_over_time": ["model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__mc_account"], "model.yoda.analytics___platform__order": ["model.yoda.analytics___platform_stg__currency_exchange_rate", "model.yoda.analytics___platform_stg__fulfillment", "model.yoda.analytics___platform_stg__store_order"], "model.yoda.analytics___platform__order_metrics": ["model.yoda.analytics___platform__order", "model.yoda.analytics___platform_stg__order_line"], "model.yoda.analytics___platform__organization": ["model.yoda.analytics___finance__zuora_parent_organization", "model.yoda.analytics___platform__organization_country", "model.yoda.analytics___platform__organization_industry", "model.yoda.analytics___platform__organization_platform", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform_stg__organization", "model.yoda.analytics___platform_stg__store_user_mapping", "model.yoda.analytics___platform_stg__user"], "model.yoda.analytics___platform__organization_country": ["model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___finance_stg__zuora_contact", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___sms__store"], "model.yoda.analytics___platform__organization_industry": ["model.yoda.analytics___platform__store"], "model.yoda.analytics___platform__organization_metrics_monthly": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_metrics_monthly"], "model.yoda.analytics___platform__organization_name": ["model.yoda.analytics___platform_stg__organization", "model.yoda.analytics___salesforce_stg__mc_account"], "model.yoda.analytics___platform__organization_opportunity_monthly": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___platform__organization_plan_daily": ["model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform_stg__product_plan_name_rank"], "model.yoda.analytics___platform__organization_plan_monthly": ["model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___platform_stg__product_plan_name_rank"], "model.yoda.analytics___platform__organization_platform": ["model.yoda.analytics___platform__store"], "model.yoda.analytics___platform__organization_product_activeness_monthly": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_product_activeness_monthly"], "model.yoda.analytics___platform__organization_product_metrics_monthly": ["model.yoda.analytics___loyalty__organization_metrics_monthly", "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation"], "model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot": ["model.yoda.analytics___platform__organization_product_metrics_monthly"], "model.yoda.analytics___platform__organization_product_segment_daily": ["model.yoda.analytics___cs__opportunity_won_product_start_date", "model.yoda.analytics___delivery__organization_customer_care_over_time", "model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__organization_plan_daily", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___platform__organization_product_segment_monthly": ["model.yoda.analytics___finance__organization_product_revenue_monthly", "model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__organization_product_activeness_monthly", "model.yoda.analytics___platform__organization_product_segment_daily"], "model.yoda.analytics___platform__organization_segment_monthly": ["model.yoda.analytics___cs__organization_first_ht_opportunity", "model.yoda.analytics___finance__organization_revenue_monthly", "model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__organization_opportunity_monthly", "model.yoda.analytics___platform__organization_product_segment_monthly", "model.yoda.analytics___synergies__organization_synergy_activeness_monthly"], "model.yoda.analytics___platform__owner_plan_event": ["model.yoda.analytics___platform__plan", "model.yoda.analytics___platform_stg__owner_plan_history", "model.yoda.analytics___platform_stg__owner_plan_snapshot"], "model.yoda.analytics___platform__plan": ["model.yoda.analytics___platform_stg__plan", "model.yoda.analytics___platform_stg__plan_category", "model.yoda.analytics___platform_stg__plan_tag", "model.yoda.analytics___platform_stg__plan_tag_type", "model.yoda.analytics___platform_stg__static_deprecated_package"], "model.yoda.analytics___platform__platform_store_plan_over_time": ["model.yoda.analytics___platform__owner_plan_event", "model.yoda.analytics___platform__store"], "model.yoda.analytics___platform__product_metrics_snapshot_monthly": ["model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot", "model.yoda.analytics___platform__store_product_metrics_monthly_unpivot"], "model.yoda.analytics___platform__question_details": ["model.yoda.analytics___platform_stg__account", "model.yoda.analytics___platform_stg__question"], "model.yoda.analytics___platform__store": ["model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.analytics___platform_stg__account", "model.yoda.analytics___platform_stg__account_platform", "model.yoda.analytics___platform_stg__category", "model.yoda.analytics___platform_stg__organization", "model.yoda.analytics___platform_stg__owner_feature", "model.yoda.analytics___platform_stg__platform_type", "model.yoda.analytics___platform_stg__similar_store", "model.yoda.analytics___sms__store"], "model.yoda.analytics___platform__store_activeness_daily": ["model.yoda.analytics___platform__store", "model.yoda.analytics___sms__store_activeness_daily", "model.yoda.analytics___subscriptions__store_activeness_daily", "model.yoda.analytics___ugc__store_installation_over_time", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation": ["model.yoda.analytics___platform__store", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___platform__store_metrics_daily": ["model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___salesforce__account", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___platform__store_metrics_monthly": ["model.yoda.analytics___platform__store_metrics_daily"], "model.yoda.analytics___platform__store_order_daily": ["model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.analytics___platform_stg__currency_exchange_rate", "model.yoda.analytics___platform_stg__fulfillment", "model.yoda.analytics___platform_stg__store_order", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms_stg__shopify_orders"], "model.yoda.analytics___platform__store_pixel_metrics_daily": ["model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two", "model.yoda.analytics___platform_stg__pixel_duration_mapping", "model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping", "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three", "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two"], "model.yoda.analytics___platform__store_plan_daily": ["model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___finance__zuora_organization_plan_rank_daily", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___platform__plan", "model.yoda.analytics___platform__platform_store_plan_over_time", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform_stg__saas_organization_daily_history", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__opportunity_line_item", "model.yoda.analytics___sms__store_plan_daily", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___platform__store_platform_account": ["model.yoda.analytics___platform_stg__account_platform", "model.yoda.analytics___platform_stg__platform_type"], "model.yoda.analytics___platform__store_product_activeness_monthly": ["model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___sms__store_metrics_monthly", "model.yoda.analytics___ugc__store_product_activeness_monthly"], "model.yoda.analytics___platform__store_product_metrics_daily": ["model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___synergies__activation_level_daily", "model.yoda.analytics___ugc__store_metrics_daily"], "model.yoda.analytics___platform__store_product_metrics_daily_diff": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot", "model.yoda.analytics___platform__store_product_metrics_lifetime_scd"], "model.yoda.analytics___platform__store_product_metrics_daily_snapshot": ["model.yoda.analytics___platform__store_product_metrics_daily"], "model.yoda.analytics___platform__store_product_metrics_lifetime": ["model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "model.yoda.analytics___platform__store", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_product"], "model.yoda.analytics___platform__store_product_metrics_lifetime_scd": ["model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot"], "model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot": ["model.yoda.analytics___platform__store_product_metrics_lifetime"], "model.yoda.analytics___platform__store_product_metrics_monthly": ["model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly", "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___sms__store_metrics_monthly", "model.yoda.analytics___ugc__store_metrics_monthly"], "model.yoda.analytics___platform__store_product_metrics_monthly_unpivot": ["model.yoda.analytics___platform__store_product_metrics_monthly"], "model.yoda.analytics___platform__store_snapshot_daily": ["model.yoda.analytics___platform__store", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily": ["source.yoda.analytics__static.chargify_organization_product_usage_revanue_daily"], "model.yoda.analytics___platform_stg__deprecated_packages": ["source.yoda.platform__static.deprecated_packages"], "model.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27": ["source.yoda.analytics__static.organization_onboarding_call_pre_2023_08_27"], "model.yoda.analytics___platform_stg__phone_code_country_mapping": ["source.yoda.platform__static.phone_code_country_mapping"], "model.yoda.analytics___platform_stg__pixel_action_mapping": ["source.yoda.platform__static.pixel_action_mapping"], "model.yoda.analytics___platform_stg__pixel_category_mapping": ["source.yoda.platform__static.pixel_category_mapping"], "model.yoda.analytics___platform_stg__pixel_duration_mapping": ["source.yoda.platform__static.pixel_duration_mapping"], "model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping": ["source.yoda.platform__static.pixel_os_family_mobile_mapping"], "model.yoda.analytics___platform_stg__product_plan_name_rank": ["source.yoda.analytics__static.product_plan_name_rank"], "model.yoda.analytics___platform_stg__questions": ["source.yoda.platform__yotpoapiprod.questions"], "model.yoda.analytics___platform_stg__saas_organization_daily_history": ["source.yoda.analytics__static.saas_organization_daily_history"], "model.yoda.analytics___platform_stg__saas_store_plan_history": ["source.yoda.platform__static.saas_store_plan_history"], "model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping": ["source.yoda.analytics__static.shopify_billing_charge_plan_mapping"], "model.yoda.analytics___platform_stg__similar_stores": ["source.yoda.platform__data_science.similar_stores"], "model.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping": ["source.yoda.platform__static.sms_loyalty_synergy_mapping"], "model.yoda.analytics___platform_stg__subscriptions_contract_history": ["source.yoda.platform__static.subscriptions_contract_history"], "model.yoda.analytics___platform_stg__account": ["model.yoda.platform_stg__accounts"], "model.yoda.analytics___platform_stg__account_platform": ["model.yoda.platform_stg__account_platforms"], "model.yoda.analytics___platform_stg__category": ["model.yoda.platform_stg__categories"], "model.yoda.analytics___platform_stg__currency_exchange_rate": ["model.yoda.platform_stg__currency_rates"], "model.yoda.analytics___platform_stg__feature": ["model.yoda.platform_stg__features"], "model.yoda.analytics___platform_stg__fulfillment": ["model.yoda.platform_stg__fulfillments"], "model.yoda.analytics___platform_stg__home_screen_section": ["model.yoda.platform_stg__sections"], "model.yoda.analytics___platform_stg__home_screen_widget": ["model.yoda.platform_stg__widgets"], "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three": ["model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.platform_stg__onsite_v3"], "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two": ["model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.platform_stg__onsite_v2"], "model.yoda.analytics___platform_stg__order_line": ["model.yoda.platform_stg__order_lines"], "model.yoda.analytics___platform_stg__organization": ["model.yoda.platform_stg__organizations"], "model.yoda.analytics___platform_stg__owner_feature": ["model.yoda.platform_stg__owners_features"], "model.yoda.analytics___platform_stg__owner_feature_setting": ["model.yoda.platform_stg__owner_feature_settings"], "model.yoda.analytics___platform_stg__owner_plan": ["model.yoda.platform_stg__owners_packages"], "model.yoda.analytics___platform_stg__owner_plan_event_details": ["model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform_stg__owner_plan", "model.yoda.analytics___platform_stg__plan", "model.yoda.analytics___platform_stg__plan_category"], "model.yoda.analytics___platform_stg__owner_plan_history": ["model.yoda.platform_stg__owners_packages_history"], "model.yoda.analytics___platform_stg__owner_plan_snapshot": ["model.yoda.analytics___platform_stg__owner_plan"], "model.yoda.analytics___platform_stg__plan": ["model.yoda.platform_stg__packages"], "model.yoda.analytics___platform_stg__plan_category": ["model.yoda.platform_stg__categories"], "model.yoda.analytics___platform_stg__plan_tag": ["model.yoda.platform_stg__package_tags"], "model.yoda.analytics___platform_stg__plan_tag_type": ["model.yoda.platform_stg__package_tag_types"], "model.yoda.analytics___platform_stg__platform_type": ["model.yoda.platform_stg__platform_types"], "model.yoda.analytics___platform_stg__product": ["model.yoda.platform_stg__products"], "model.yoda.analytics___platform_stg__question": ["model.yoda.analytics___platform_stg__questions"], "model.yoda.analytics___platform_stg__segment_account_created": ["model.yoda.platform_stg__account_created"], "model.yoda.analytics___platform_stg__segment_activation_step": ["model.yoda.platform_stg__activation_step"], "model.yoda.analytics___platform_stg__segment_app_install_completed": ["model.yoda.platform_stg__app_install_completed"], "model.yoda.analytics___platform_stg__segment_app_uninstalled": ["model.yoda.platform_stg__app_uninstalled"], "model.yoda.analytics___platform_stg__segment_b_to_b": ["model.yoda.platform_stg__b2b"], "model.yoda.analytics___platform_stg__segment_file_exported": ["model.yoda.platform_stg__file_exported"], "model.yoda.analytics___platform_stg__segment_limit_reached": ["model.yoda.platform_stg__limit_reached"], "model.yoda.analytics___platform_stg__segment_onboarding": ["model.yoda.platform_stg__onboarding"], "model.yoda.analytics___platform_stg__segment_page_event": ["model.yoda.infra_stg__page"], "model.yoda.analytics___platform_stg__segment_popup_displayed": ["model.yoda.platform_stg__popup_displayed"], "model.yoda.analytics___platform_stg__segment_product_enabled": ["model.yoda.platform_stg__product_enabled"], "model.yoda.analytics___platform_stg__segment_uninstalled_yotpo": ["model.yoda.platform_stg__uninstalled_yotpo"], "model.yoda.analytics___platform_stg__similar_store": ["model.yoda.analytics___platform_stg__similar_stores"], "model.yoda.analytics___platform_stg__static_deprecated_package": ["model.yoda.analytics___platform_stg__deprecated_packages"], "model.yoda.analytics___platform_stg__store_order": ["model.yoda.platform_stg__orders"], "model.yoda.analytics___platform_stg__store_user_mapping": ["model.yoda.platform_stg__apps"], "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three": ["model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.platform_stg__onsite_v3"], "model.yoda.analytics___platform_stg__synergy_enablement_event": ["model.yoda.platform_stg__synergies_crud"], "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three": ["model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.platform_stg__onsite_v3"], "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two": ["model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.platform_stg__onsite_v2"], "model.yoda.analytics___platform_stg__user": ["model.yoda.ugc_stg__users"], "model.yoda.analytics___salesforce__account": ["model.yoda.analytics___platform_stg__organization", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce_stg__mc_account"], "model.yoda.analytics___salesforce__account_enrichment": ["model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___platform__plan", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_product", "model.yoda.analytics___sms__store_metrics_monthly"], "model.yoda.analytics___salesforce__account_enrichment_daily_diff": ["model.yoda.analytics___salesforce__account_enrichment_snapshot_daily"], "model.yoda.analytics___salesforce__account_enrichment_snapshot_daily": ["model.yoda.analytics___salesforce__account_enrichment"], "model.yoda.analytics___salesforce__account_product": ["model.yoda.analytics___salesforce_stg__mc_account_product"], "model.yoda.analytics___salesforce__account_tracking_daily": ["model.yoda.analytics___salesforce_stg__account_full", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce_stg__fact_account_profile_daily", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___salesforce__campaign_member_field_history": ["model.yoda.analytics___salesforce_stg__custom_field_history", "source.yoda.analytics__static.campaign_member_history_creation_records"], "model.yoda.analytics___salesforce__deal_summary": ["model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__opportunity_line_item", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce_stg__mc_deal_summary"], "model.yoda.analytics___salesforce__deal_summary_product": ["model.yoda.analytics___salesforce__deal_summary"], "model.yoda.analytics___salesforce__lead": ["model.yoda.analytics___salesforce_stg__mc_lead"], "model.yoda.analytics___salesforce__live_chat_transcript": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"], "model.yoda.analytics___salesforce__mql": ["model.yoda.analytics___salesforce__lead", "model.yoda.analytics___salesforce_stg__mc_contact", "model.yoda.analytics___salesforce_stg__mc_mql"], "model.yoda.analytics___salesforce__new_organization": ["model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___salesforce_stg__account_full"], "model.yoda.analytics___salesforce__onboarding_project": ["model.yoda.analytics___salesforce_stg__mc_onboarding_project"], "model.yoda.analytics___salesforce__opportunity": ["model.yoda.analytics___salesforce__opportunity_line_item", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___salesforce_stg__mc_opportunity", "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history", "model.yoda.analytics___salesforce_stg__opportunity_prediction"], "model.yoda.analytics___salesforce__opportunity_line_item": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate", "model.yoda.analytics___salesforce_stg__mc_opportunity", "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"], "model.yoda.analytics___salesforce__partner_engagement": ["model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce_stg__mc_partner_referral"], "model.yoda.analytics___salesforce__service_case": ["model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__store", "model.yoda.analytics___salesforce_stg__mc_service_case"], "model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily": ["model.yoda.analytics___platform__store_product_metrics_daily_diff"], "model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly": ["model.yoda.analytics___platform__product_metrics_snapshot_monthly"], "model.yoda.analytics___salesforce__task": ["model.yoda.analytics___salesforce__user_overtime", "model.yoda.analytics___salesforce_stg__mc_task", "source.yoda.analytics__static.salesforce_object_prefix_id"], "model.yoda.analytics___salesforce__user_overtime": ["model.yoda.analytics___salesforce__user_role_scd", "model.yoda.analytics___salesforce_stg__mc_user"], "model.yoda.analytics___salesforce__user_role_scd": ["model.yoda.analytics___salesforce_stg__mc_user"], "model.yoda.analytics___salesforce_stg__account_full": ["source.yoda.analytics__salesforce.account_full"], "model.yoda.analytics___salesforce_stg__account_product_c_full": ["source.yoda.analytics__salesforce.account_product__c_full"], "model.yoda.analytics___salesforce_stg__campaign": ["source.yoda.analytics__salesforce.campaign"], "model.yoda.analytics___salesforce_stg__case_full": ["source.yoda.analytics__salesforce.case_full"], "model.yoda.analytics___salesforce_stg__contact": ["source.yoda.analytics__salesforce.contact"], "model.yoda.analytics___salesforce_stg__cs_lead_c": ["source.yoda.analytics__salesforce_rivery.cs_lead__c"], "model.yoda.analytics___salesforce_stg__cs_lead_c_full": ["source.yoda.analytics__salesforce_rivery.cs_lead__c_full"], "model.yoda.analytics___salesforce_stg__custom_field_history_tracking_c": ["source.yoda.analytics__salesforce.custom_field_history_tracking__c"], "model.yoda.analytics___salesforce_stg__datedconversionrate": ["source.yoda.analytics__salesforce.datedconversionrate"], "model.yoda.analytics___salesforce_stg__deal_summary_new_c": ["source.yoda.analytics__salesforce_rivery.deal_summary_new__c"], "model.yoda.analytics___salesforce_stg__deal_summary_new_c_full": ["source.yoda.analytics__salesforce_rivery.deal_summary_new__c_full"], "model.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping": ["source.yoda.analytics__default.dim_sf_campaign_member_mapping"], "model.yoda.analytics___salesforce_stg__dim_sf_users_scd": ["source.yoda.analytics__default.dim_sf_users_scd"], "model.yoda.analytics___salesforce_stg__event": ["source.yoda.analytics__salesforce_rivery.event"], "model.yoda.analytics___salesforce_stg__fact_account_profile_daily": ["source.yoda.analytics__static.fact_account_profile_daily"], "model.yoda.analytics___salesforce_stg__lead": ["source.yoda.analytics__salesforce.lead"], "model.yoda.analytics___salesforce_stg__livechattranscript_full": ["source.yoda.analytics__salesforce.livechattranscript_full"], "model.yoda.analytics___salesforce_stg__mql_c": ["source.yoda.analytics__salesforce_rivery.mql__c"], "model.yoda.analytics___salesforce_stg__mql_c_full": ["source.yoda.analytics__salesforce_rivery.mql__c_full"], "model.yoda.analytics___salesforce_stg__onboarding_project_c_full": ["source.yoda.analytics__salesforce.onboarding_project__c_full"], "model.yoda.analytics___salesforce_stg__opportunity": ["source.yoda.analytics__salesforce_rivery.opportunity"], "model.yoda.analytics___salesforce_stg__opportunity_full": ["source.yoda.analytics__salesforce_rivery.opportunity_full"], "model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full": ["source.yoda.analytics__salesforce.opportunity_prediction__c_full"], "model.yoda.analytics___salesforce_stg__opportunityfieldhistory": ["source.yoda.analytics__salesforce.opportunityfieldhistory"], "model.yoda.analytics___salesforce_stg__opportunitylineitem_full": ["source.yoda.analytics__salesforce.opportunitylineitem_full"], "model.yoda.analytics___salesforce_stg__partner_referral_c_full": ["source.yoda.analytics__salesforce.partner_referral__c_full"], "model.yoda.analytics___salesforce_stg__task": ["source.yoda.analytics__salesforce.task"], "model.yoda.analytics___salesforce_stg__user": ["source.yoda.analytics__salesforce_rivery.user"], "model.yoda.analytics___salesforce_stg__user_full": ["source.yoda.analytics__salesforce_rivery.user_full"], "model.yoda.analytics___salesforce_stg__custom_field_history": ["model.yoda.analytics___salesforce_stg__custom_field_history_tracking_c"], "model.yoda.analytics___salesforce_stg__mc_account": ["model.yoda.analytics___salesforce_stg__account_full"], "model.yoda.analytics___salesforce_stg__mc_account_product": ["model.yoda.analytics___salesforce_stg__account_product_c_full"], "model.yoda.analytics___salesforce_stg__mc_campaign": ["model.yoda.analytics___salesforce_stg__campaign"], "model.yoda.analytics___salesforce_stg__mc_contact": ["model.yoda.analytics___salesforce_stg__contact"], "model.yoda.analytics___salesforce_stg__mc_conversion_rate": ["model.yoda.analytics___salesforce_stg__datedconversionrate"], "model.yoda.analytics___salesforce_stg__mc_cs_lead": ["model.yoda.analytics___salesforce_stg__cs_lead_c", "model.yoda.analytics___salesforce_stg__cs_lead_c", "model.yoda.analytics___salesforce_stg__cs_lead_c_full", "model.yoda.analytics___salesforce_stg__cs_lead_c_full"], "model.yoda.analytics___salesforce_stg__mc_deal_summary": ["model.yoda.analytics___salesforce_stg__deal_summary_new_c", "model.yoda.analytics___salesforce_stg__deal_summary_new_c", "model.yoda.analytics___salesforce_stg__deal_summary_new_c_full", "model.yoda.analytics___salesforce_stg__deal_summary_new_c_full"], "model.yoda.analytics___salesforce_stg__mc_event": ["model.yoda.analytics___salesforce_stg__event"], "model.yoda.analytics___salesforce_stg__mc_lead": ["model.yoda.analytics___salesforce_stg__lead"], "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript": ["model.yoda.analytics___salesforce_stg__livechattranscript_full"], "model.yoda.analytics___salesforce_stg__mc_mql": ["model.yoda.analytics___salesforce_stg__mql_c", "model.yoda.analytics___salesforce_stg__mql_c", "model.yoda.analytics___salesforce_stg__mql_c_full", "model.yoda.analytics___salesforce_stg__mql_c_full"], "model.yoda.analytics___salesforce_stg__mc_onboarding_project": ["model.yoda.analytics___salesforce_stg__onboarding_project_c_full"], "model.yoda.analytics___salesforce_stg__mc_opportunity": ["model.yoda.analytics___salesforce_stg__opportunity", "model.yoda.analytics___salesforce_stg__opportunity", "model.yoda.analytics___salesforce_stg__opportunity_full", "model.yoda.analytics___salesforce_stg__opportunity_full"], "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history": ["model.yoda.analytics___salesforce_stg__opportunityfieldhistory"], "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item": ["model.yoda.analytics___salesforce_stg__opportunitylineitem_full"], "model.yoda.analytics___salesforce_stg__mc_partner_referral": ["model.yoda.analytics___salesforce_stg__partner_referral_c_full"], "model.yoda.analytics___salesforce_stg__mc_service_case": ["model.yoda.analytics___salesforce_stg__case_full"], "model.yoda.analytics___salesforce_stg__mc_task": ["model.yoda.analytics___salesforce_stg__task"], "model.yoda.analytics___salesforce_stg__mc_user": ["model.yoda.analytics___salesforce_stg__user", "model.yoda.analytics___salesforce_stg__user", "model.yoda.analytics___salesforce_stg__user_full", "model.yoda.analytics___salesforce_stg__user_full"], "model.yoda.analytics___salesforce_stg__opportunity_prediction": ["model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full"], "model.yoda.analytics___sms__automation_message_dates": ["model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__event"], "model.yoda.analytics___sms__campaign_message_dates": ["model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__campaign"], "model.yoda.analytics___sms__deliverability_daily": ["model.yoda.analytics___sms__store", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms_stg__api_calls"], "model.yoda.analytics___sms__flow_message_dates": ["model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__flow"], "model.yoda.analytics___sms__free_credit_details": ["model.yoda.analytics___sms__store", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__free_credit_high_touch_bonus", "model.yoda.analytics___sms_stg__free_credit_log", "model.yoda.analytics___sms_stg__purchase", "model.yoda.analytics___sms_stg__user_event_log"], "model.yoda.analytics___sms__organization_metrics_monthly": ["model.yoda.analytics___sms__store_metrics_monthly"], "model.yoda.analytics___sms__purchase": ["model.yoda.analytics___sms__store", "model.yoda.analytics___sms_stg__purchase"], "model.yoda.analytics___sms__store": ["model.yoda.analytics___platform_stg__phone_code_country_mapping", "model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___sms_stg__bigcommerce_user", "model.yoda.analytics___sms_stg__organization_identifier_conversion", "model.yoda.analytics___sms_stg__plan", "model.yoda.analytics___sms_stg__shopify_user", "model.yoda.analytics___sms_stg__sms_user", "model.yoda.platform_stg__timezone_country_mapping"], "model.yoda.analytics___sms__store_activeness_daily": ["model.yoda.analytics___sms__store", "model.yoda.analytics___sms__user_activeness_daily"], "model.yoda.analytics___sms__store_cohort": ["model.yoda.analytics___salesforce__account", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms__user_dates_history", "model.yoda.analytics___sms__user_store_dates_history", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___utils_stg__calendar"], "model.yoda.analytics___sms__store_metrics": ["model.yoda.analytics___platform__store_metrics_daily", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___sms__automation_message_dates", "model.yoda.analytics___sms__campaign_message_dates", "model.yoda.analytics___sms__flow_message_dates", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms__store_metrics_monthly", "model.yoda.analytics___sms__user_customer", "model.yoda.analytics___sms__user_dates_history", "model.yoda.analytics___sms__user_installation_over_time", "model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___sms__user_open_over_time", "model.yoda.analytics___sms__user_plan_over_time", "model.yoda.analytics___sms__user_pop_up_status", "model.yoda.analytics___sms__user_store_dates_history", "model.yoda.analytics___sms_stg__event", "model.yoda.analytics___sms_stg__flow"], "model.yoda.analytics___sms__store_metrics_daily": ["model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___sms_stg__analytics_data"], "model.yoda.analytics___sms__store_metrics_monthly": ["model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms_stg__api_calls"], "model.yoda.analytics___sms__store_plan_daily": ["model.yoda.analytics___sms__store", "model.yoda.analytics___sms__user_plan_daily"], "model.yoda.analytics___sms__store_plan_over_time": ["model.yoda.analytics___sms_stg__plan", "model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__user_event_log"], "model.yoda.analytics___sms__store_receiving_country_metrics": ["model.yoda.analytics___sms__store", "model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___sms_stg__api_calls"], "model.yoda.analytics___sms__user_activeness_daily": ["model.yoda.analytics___sms__user_installation_over_time", "model.yoda.analytics___sms__user_open_over_time", "model.yoda.analytics___sms_stg__user_date_explode_from_creation"], "model.yoda.analytics___sms__user_customer": ["model.yoda.analytics___sms_stg__shopify_customer"], "model.yoda.analytics___sms__user_dates_history": ["model.yoda.analytics___sms__user_metrics_daily"], "model.yoda.analytics___sms__user_installation_over_time": ["model.yoda.analytics___sms_stg__bigcommerce_user", "model.yoda.analytics___sms_stg__shopify_user", "model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__user_event_log"], "model.yoda.analytics___sms__user_metrics_daily": ["model.yoda.analytics___sms__user_activeness_daily", "model.yoda.analytics___sms__user_plan_daily", "model.yoda.analytics___sms__user_pop_up_status_over_time", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily", "model.yoda.analytics___sms_stg__purchase", "model.yoda.analytics___sms_stg__shopify_customer", "model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__user_date_explode_from_creation"], "model.yoda.analytics___sms__user_open_over_time": ["model.yoda.analytics___sms_stg__bigcommerce_user", "model.yoda.analytics___sms_stg__shopify_user", "model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__user_event_log"], "model.yoda.analytics___sms__user_plan_daily": ["model.yoda.analytics___sms__user_plan_over_time", "model.yoda.analytics___sms_stg__user_date_explode_from_creation"], "model.yoda.analytics___sms__user_plan_monthly": ["model.yoda.analytics___sms__user_plan_daily"], "model.yoda.analytics___sms__user_plan_over_time": ["model.yoda.analytics___sms_stg__plan", "model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__user_event_log"], "model.yoda.analytics___sms__user_pop_up_status": ["model.yoda.analytics___sms_stg__form", "model.yoda.analytics___sms_stg__sms_user"], "model.yoda.analytics___sms__user_pop_up_status_over_time": ["model.yoda.analytics___sms__user_pop_up_status_snapshot"], "model.yoda.analytics___sms__user_pop_up_status_snapshot": ["model.yoda.analytics___sms__user_pop_up_status"], "model.yoda.analytics___sms__user_store_dates_history": ["model.yoda.analytics___salesforce__account", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__user_metrics_daily"], "model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily": ["source.yoda.sms__default.fact_agg_sms_user_profile_daily"], "model.yoda.analytics___sms_stg__free_credit_high_touch_bonus": ["source.yoda.analytics__static.free_credit_high_touch_bonus"], "model.yoda.analytics___sms_stg__analytics_data": ["model.yoda.sms_stg__comm_analytics_data"], "model.yoda.analytics___sms_stg__api_calls": ["model.yoda.analytics___platform_stg__phone_code_country_mapping", "model.yoda.sms_stg__apicalls"], "model.yoda.analytics___sms_stg__bigcommerce_user": ["model.yoda.sms_stg__bigcommerce_users"], "model.yoda.analytics___sms_stg__campaign": ["model.yoda.analytics___sms_stg__campaign_deletion_tracking"], "model.yoda.analytics___sms_stg__campaign_deletion_tracking": ["model.yoda.sms_stg__campaigns"], "model.yoda.analytics___sms_stg__campaign_list": ["model.yoda.sms_stg__campaign_lists"], "model.yoda.analytics___sms_stg__campaign_relation": ["model.yoda.sms_stg__campaign_relations"], "model.yoda.analytics___sms_stg__default_predefined_message": ["model.yoda.sms_stg__default_predefined_messages"], "model.yoda.analytics___sms_stg__email_charge": ["model.yoda.sms_stg__email_charges"], "model.yoda.analytics___sms_stg__event": ["model.yoda.analytics___sms_stg__event_deletion_tracking"], "model.yoda.analytics___sms_stg__event_deletion_tracking": ["model.yoda.sms_stg__events"], "model.yoda.analytics___sms_stg__flow": ["model.yoda.analytics___sms_stg__flow_deletion_tracking"], "model.yoda.analytics___sms_stg__flow_deletion_tracking": ["model.yoda.sms_stg__flows"], "model.yoda.analytics___sms_stg__form": ["model.yoda.sms_stg__forms"], "model.yoda.analytics___sms_stg__free_credit_log": ["model.yoda.sms_stg__free_credits_logs"], "model.yoda.analytics___sms_stg__list": ["model.yoda.sms_stg__lists"], "model.yoda.analytics___sms_stg__loyalty_flow": ["model.yoda.sms_stg__loyalty_flows_data"], "model.yoda.analytics___sms_stg__organization_identifier_conversion": ["model.yoda.sms_stg__yotpo_organizations"], "model.yoda.analytics___sms_stg__plan": ["model.yoda.sms_stg__packages"], "model.yoda.analytics___sms_stg__purchase": ["model.yoda.sms_stg__purchases"], "model.yoda.analytics___sms_stg__segment_sms_campaign": ["model.yoda.sms_stg__sms_campaign_created"], "model.yoda.analytics___sms_stg__shopify_campaign_order": ["model.yoda.sms_stg__shopify_campaign_orders"], "model.yoda.analytics___sms_stg__shopify_customer": ["model.yoda.sms_stg__customers"], "model.yoda.analytics___sms_stg__shopify_flow_order": ["model.yoda.sms_stg__shopify_flows_orders"], "model.yoda.analytics___sms_stg__shopify_orders": ["model.yoda.sms_stg__orders"], "model.yoda.analytics___sms_stg__shopify_segment": ["model.yoda.sms_stg__shopify_segments"], "model.yoda.analytics___sms_stg__shopify_user": ["model.yoda.sms_stg__shopify_users"], "model.yoda.analytics___sms_stg__sms_user": ["model.yoda.sms_stg__users"], "model.yoda.analytics___sms_stg__track_flow_adoption": ["model.yoda.sms_stg__track_flows_adoption"], "model.yoda.analytics___sms_stg__user_date_explode_from_creation": ["model.yoda.analytics___sms_stg__sms_user", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___sms_stg__user_event_log": ["model.yoda.sms_stg__users_events_log"], "model.yoda.analytics___subscriptions__contract_over_time": ["model.yoda.analytics___subscriptions_stg__contract_snapshot", "model.yoda.analytics___subscriptions_stg__mc_status", "model.yoda.analytics___subscriptions_stg__mc_subscription_contract"], "model.yoda.analytics___subscriptions__store": ["model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___platform_stg__owner_feature", "model.yoda.analytics___platform_stg__owner_feature_setting", "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request"], "model.yoda.analytics___subscriptions__store_activeness_daily": ["model.yoda.analytics___subscriptions__store_installation_over_time", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___subscriptions__store_feature_activation": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___platform_stg__segment_page_event", "model.yoda.analytics___subscriptions__store_activeness_daily", "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two", "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two", "model.yoda.analytics___synergies__store_enablement_daily", "model.yoda.subscriptions__subscription_accounts"], "model.yoda.analytics___subscriptions__store_installation_over_time": ["model.yoda.analytics___platform_stg__segment_app_install_completed", "model.yoda.analytics___platform_stg__segment_app_uninstalled", "model.yoda.subscriptions__subscription_accounts"], "model.yoda.analytics___subscriptions__subscription_contract_daily": ["model.yoda.analytics___subscriptions__contract_over_time", "model.yoda.analytics___subscriptions_stg__mc_subscription_contract", "model.yoda.analytics___subscriptions_stg__subscriptions_store", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___subscriptions__subscription_contract_monthly": ["model.yoda.analytics___subscriptions__contract_over_time", "model.yoda.analytics___subscriptions_stg__mc_subscription_contract", "model.yoda.analytics___subscriptions_stg__subscriptions_store", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot": ["source.yoda.analytics__static.subscription_contract_before_snapshot"], "model.yoda.analytics___subscriptions_stg__subscription_ended_v2": ["source.yoda.subscriptions__segment.subscription_ended_v2"], "model.yoda.analytics___subscriptions_stg__subscription_started_v2": ["source.yoda.subscriptions__segment.subscription_started_v2"], "model.yoda.analytics___subscriptions_stg__contract_event_details": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"], "model.yoda.analytics___subscriptions_stg__contract_snapshot": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"], "model.yoda.analytics___subscriptions_stg__customer_journey_event": ["model.yoda.subscriptions_stg__customer_journey_event"], "model.yoda.analytics___subscriptions_stg__mc_app_webhook": ["model.yoda.subscriptions_stg__app_webhooks"], "model.yoda.analytics___subscriptions_stg__mc_product": ["model.yoda.subscriptions_stg__product"], "model.yoda.analytics___subscriptions_stg__mc_selling_plan": ["model.yoda.subscriptions_stg__selling_plan"], "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group": ["model.yoda.subscriptions_stg__selling_plan_group"], "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product": ["model.yoda.subscriptions_stg__selling_plan_group_product"], "model.yoda.analytics___subscriptions_stg__mc_status": ["model.yoda.subscriptions_stg__status"], "model.yoda.analytics___subscriptions_stg__mc_subscription_contract": ["model.yoda.subscriptions_stg__subscription_contract"], "model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order": ["model.yoda.subscriptions_stg__subscription_contract_order"], "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request": ["model.yoda.subscriptions_stg__subscription_creation_request"], "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two": ["model.yoda.analytics___subscriptions_stg__subscription_ended_v2"], "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two": ["model.yoda.analytics___subscriptions_stg__subscription_started_v2"], "model.yoda.analytics___subscriptions_stg__subscriptions_store": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform_stg__segment_product_enabled", "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request", "model.yoda.subscriptions__subscription_accounts"], "model.yoda.analytics___synergies__activation_level_daily": ["model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___salesforce_stg__mc_account_product", "model.yoda.analytics___synergies__store_enablement_daily", "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily", "model.yoda.platform_stg__synergy_product_mapping"], "model.yoda.analytics___synergies__eligible_store_monthly": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___synergies__store_activeness_monthly", "model.yoda.analytics___synergies__store_enablement_monthly"], "model.yoda.analytics___synergies__kpi_ranked_action": ["model.yoda.platform__synergies_kpi"], "model.yoda.analytics___synergies__loyalty_store_metrics_monthly": ["model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty_stg__point_redemption", "model.yoda.analytics___platform__store_product_activeness_monthly", "model.yoda.analytics___synergies__kpi_ranked_action", "model.yoda.platform_stg__dim_calendar", "model.yoda.platform_stg__synergy_product_mapping"], "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly": ["model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.analytics___loyalty_stg__purchase_redemption", "model.yoda.analytics___loyalty_stg__redemption_code", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms_stg__shopify_campaign_order", "model.yoda.analytics___sms_stg__shopify_flow_order", "model.yoda.analytics___synergies__kpi_ranked_action", "model.yoda.platform__orders_with_product_lines_attribution_daily", "model.yoda.platform_stg__currency_rates", "model.yoda.platform_stg__synergy_product_mapping"], "model.yoda.analytics___synergies__organization_synergy_activeness_monthly": ["model.yoda.analytics___platform__store", "model.yoda.analytics___synergies__store_activeness_monthly", "model.yoda.platform_stg__synergy_product_mapping"], "model.yoda.analytics___synergies__store_activeness_daily": ["model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty_stg__earning_rule", "model.yoda.analytics___loyalty_stg__perk", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__campaign", "model.yoda.analytics___sms_stg__campaign_list", "model.yoda.analytics___sms_stg__campaign_relation", "model.yoda.analytics___sms_stg__default_predefined_message", "model.yoda.analytics___sms_stg__flow", "model.yoda.analytics___sms_stg__list", "model.yoda.analytics___sms_stg__shopify_segment", "model.yoda.analytics___subscriptions_stg__customer_journey_event", "model.yoda.analytics___subscriptions_stg__subscriptions_store", "model.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "model.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "model.yoda.analytics___synergies_stg__synergy_widget"], "model.yoda.analytics___synergies__store_activeness_monthly": ["model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty_stg__earning_rule", "model.yoda.analytics___loyalty_stg__perk", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__campaign", "model.yoda.analytics___sms_stg__campaign_list", "model.yoda.analytics___sms_stg__campaign_relation", "model.yoda.analytics___sms_stg__default_predefined_message", "model.yoda.analytics___sms_stg__flow", "model.yoda.analytics___sms_stg__list", "model.yoda.analytics___sms_stg__shopify_segment", "model.yoda.analytics___subscriptions_stg__customer_journey_event", "model.yoda.analytics___subscriptions_stg__subscriptions_store", "model.yoda.analytics___synergies_stg__home_screen_section", "model.yoda.analytics___synergies_stg__home_screen_widget"], "model.yoda.analytics___synergies__store_enablement_daily": ["model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_enablement_over_time", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___synergies__store_enablement_monthly": ["model.yoda.analytics___synergies__store_activeness_monthly", "model.yoda.analytics___synergies__store_enablement_daily"], "model.yoda.analytics___synergies__store_enablement_over_time": ["model.yoda.analytics___synergies_stg__enablement_event", "model.yoda.analytics___synergies_stg__home_screen_section", "model.yoda.analytics___synergies_stg__home_screen_widget"], "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily": ["model.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "model.yoda.analytics___synergies__store_activeness_daily"], "model.yoda.analytics___synergies__store_synergy_metrics_monthly": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"], "model.yoda.analytics___synergies__synergy_metrics_monthly": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly", "model.yoda.platform_stg__synergy_product_mapping"], "model.yoda.analytics___synergies__ugc_store_metrics_monthly": ["model.yoda.analytics___platform__store_product_activeness_monthly", "model.yoda.analytics___synergies__kpi_ranked_action", "model.yoda.analytics___ugc__review", "model.yoda.platform_stg__dim_calendar", "model.yoda.platform_stg__synergy_product_mapping"], "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly": ["model.yoda.analytics___synergies__kpi_ranked_action", "model.yoda.analytics___ugc__review", "model.yoda.analytics___ugc__store_metrics_monthly", "model.yoda.platform_stg__dim_calendar", "model.yoda.platform_stg__synergy_product_mapping"], "model.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness": ["source.yoda.analytics__static.loyalty_earning_rule_types_for_synergy_activeness"], "model.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness": ["source.yoda.analytics__static.sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness"], "model.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness": ["source.yoda.analytics__static.sms_flow_triggers_for_synergy_activeness"], "model.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness": ["source.yoda.analytics__static.sms_flow_triggers_to_filter_for_custom_loyalty_activeness"], "model.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness": ["source.yoda.analytics__static.sms_predefined_message_sub_category_for_synergy_activeness"], "model.yoda.analytics___synergies_stg__enablement_event": ["model.yoda.platform_stg__synergies_crud", "model.yoda.platform_stg__synergy_start_date_mapping"], "model.yoda.analytics___synergies_stg__home_screen_section": ["model.yoda.platform_stg__sections"], "model.yoda.analytics___synergies_stg__home_screen_widget": ["model.yoda.platform_stg__widgets"], "model.yoda.analytics___synergies_stg__home_screen_widget_configuration": ["model.yoda.platform_stg__widget_configurations"], "model.yoda.analytics___synergies_stg__synergy_widget": ["model.yoda.analytics___synergies_stg__home_screen_section", "model.yoda.analytics___synergies_stg__home_screen_widget"], "model.yoda.analytics___ugc__active_metrics_monthly": ["model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__store", "model.yoda.analytics___ugc__store_metrics_daily"], "model.yoda.analytics___ugc__image": ["model.yoda.analytics___platform_stg__account", "model.yoda.analytics___ugc_stg__image", "model.yoda.analytics___ugc_stg__review"], "model.yoda.analytics___ugc__order_to_review_rate_cohort": ["model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_metrics_monthly", "model.yoda.analytics___ugc_stg__email"], "model.yoda.analytics___ugc__organization_first_time_activity_metrics": ["model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___platform__organization_product_segment_daily", "model.yoda.analytics___ugc__store_first_time_activity_metrics"], "model.yoda.analytics___ugc__organization_metrics_monthly": ["model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc_stg__email"], "model.yoda.analytics___ugc__owner_first_time_activity_metrics": ["model.yoda.analytics___ugc__organization_first_time_activity_metrics", "model.yoda.analytics___ugc__store_first_time_activity_metrics"], "model.yoda.analytics___ugc__owner_order_to_review_monthly": ["model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__store", "model.yoda.analytics___ugc_stg__email"], "model.yoda.analytics___ugc__platform_order_to_review_monthly": ["model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__store", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc_stg__email"], "model.yoda.analytics___ugc__postman_feature_email_usage_monthly": ["model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc_stg__email"], "model.yoda.analytics___ugc__review": ["model.yoda.analytics___platform_stg__account", "model.yoda.analytics___platform_stg__product", "model.yoda.analytics___ugc_stg__comment", "model.yoda.analytics___ugc_stg__metadata_type", "model.yoda.analytics___ugc_stg__review", "model.yoda.analytics___ugc_stg__review_image", "model.yoda.analytics___ugc_stg__review_metadata", "model.yoda.analytics___ugc_stg__review_subject", "model.yoda.analytics___ugc_stg__review_video"], "model.yoda.analytics___ugc__review_request": ["model.yoda.analytics___platform__order", "model.yoda.analytics___platform__order_metrics", "model.yoda.analytics___platform_stg__account", "model.yoda.analytics___ugc__review", "model.yoda.analytics___ugc__review_request_token_message", "model.yoda.analytics___ugc__unmigrated_review_request_token_email"], "model.yoda.analytics___ugc__review_request_token": ["model.yoda.analytics___platform_stg__order_line", "model.yoda.ugc_stg__review_request_tokens", "model.yoda.ugc_stg__review_request_tokens", "model.yoda.ugc_stg__review_source_types"], "model.yoda.analytics___ugc__review_request_token_message": ["model.yoda.analytics___ugc__review_request_token", "model.yoda.analytics___ugc_stg__review_request_email", "model.yoda.analytics___ugc_stg__review_request_sms", "model.yoda.ugc_stg__email_types"], "model.yoda.analytics___ugc__store": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___salesforce__account"], "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort": ["model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___ugc__store"], "model.yoda.analytics___ugc__store_feature_over_time": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform_stg__feature", "model.yoda.analytics___platform_stg__owner_feature", "model.yoda.analytics___ugc_stg__owner_feature_enablement_event", "model.yoda.analytics___ugc_stg__reminder_snapshot"], "model.yoda.analytics___ugc__store_first_time_activity_metrics": ["model.yoda.analytics___platform__organization_product_segment_daily", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_metrics_daily"], "model.yoda.analytics___ugc__store_installation_over_time": ["model.yoda.analytics___platform_stg__account", "model.yoda.analytics___platform_stg__segment_activation_step", "model.yoda.analytics___platform_stg__segment_app_uninstalled", "model.yoda.analytics___platform_stg__segment_b_to_b", "model.yoda.analytics___platform_stg__segment_onboarding", "model.yoda.analytics___platform_stg__segment_uninstalled_yotpo", "model.yoda.analytics___ugc_stg__review"], "model.yoda.analytics___ugc__store_metrics_daily": ["model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___platform_stg__segment_file_exported", "model.yoda.analytics___ugc__review", "model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_feature_over_time", "model.yoda.analytics___ugc_stg__email", "model.yoda.platform_stg__dim_calendar"], "model.yoda.analytics___ugc__store_metrics_daily_24m": ["model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_feature_over_time", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"], "model.yoda.analytics___ugc__store_metrics_monthly": ["model.yoda.analytics___ugc__review", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc_stg__email"], "model.yoda.analytics___ugc__store_product_activeness_monthly": ["model.yoda.analytics___ugc__store_metrics_monthly"], "model.yoda.analytics___ugc__store_widget_metrics_monthly": ["model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___platform__store_product_activeness_monthly", "model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_metrics_monthly"], "model.yoda.analytics___ugc__unmigrated_review_request_token": ["model.yoda.ugc_stg__email_authentications", "model.yoda.ugc_stg__review_request_tokens"], "model.yoda.analytics___ugc__unmigrated_review_request_token_email": ["model.yoda.analytics___ugc__unmigrated_review_request_token", "model.yoda.ugc_stg__email_types", "model.yoda.ugc_stg__users_email_controls"], "model.yoda.analytics___ugc_stg__emails": ["source.yoda.analytics__email_analytics.emails"], "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping": ["source.yoda.ugc__static.ugc_plan_group_change_mapping"], "model.yoda.analytics___ugc_stg__comment": ["model.yoda.ugc_stg__comments"], "model.yoda.analytics___ugc_stg__dirty_words_content": ["model.yoda.ugc_stg__dirty_words"], "model.yoda.analytics___ugc_stg__email": ["model.yoda.analytics___ugc_stg__emails"], "model.yoda.analytics___ugc_stg__image": ["model.yoda.ugc_stg__images"], "model.yoda.analytics___ugc_stg__metadata_type": ["model.yoda.ugc_stg__metadata_types"], "model.yoda.analytics___ugc_stg__owner_feature_enablement_event": ["model.yoda.analytics___platform_stg__owner_feature"], "model.yoda.analytics___ugc_stg__owner_feature_setting_change_event": ["model.yoda.analytics___platform_stg__owner_feature", "model.yoda.analytics___platform_stg__owner_feature_setting"], "model.yoda.analytics___ugc_stg__reminder": ["model.yoda.ugc_stg__reminders"], "model.yoda.analytics___ugc_stg__reminder_snapshot": ["model.yoda.analytics___ugc_stg__reminder"], "model.yoda.analytics___ugc_stg__review": ["model.yoda.ugc_stg__reviews"], "model.yoda.analytics___ugc_stg__review_image": ["model.yoda.ugc_stg__images"], "model.yoda.analytics___ugc_stg__review_metadata": ["model.yoda.ugc_stg__review_metadatas"], "model.yoda.analytics___ugc_stg__review_request_email": ["model.yoda.ugc_stg__review_request_emails"], "model.yoda.analytics___ugc_stg__review_request_sms": ["model.yoda.ugc_stg__review_request_sms"], "model.yoda.analytics___ugc_stg__review_source_type": ["model.yoda.ugc_stg__review_source_types"], "model.yoda.analytics___ugc_stg__review_subject": ["model.yoda.ugc_stg__reviews_subjects"], "model.yoda.analytics___ugc_stg__review_type": ["model.yoda.ugc_stg__review_types"], "model.yoda.analytics___ugc_stg__review_video": ["model.yoda.ugc_stg__videos"], "model.yoda.analytics___utils_stg__calendar": ["source.yoda.analytics__static.calendar"], "model.yoda.analytics___utils_stg__unit_test_generic": [], "model.yoda.communication__email_shopify_orders_analytics_profile": ["model.yoda.communication_stg__email_shopify_orders_analytics"], "model.yoda.communication__sms_shopify_orders_analytics_profile": ["model.yoda.communication_stg__sms_shopify_orders_analytics"], "model.yoda.communication_stg__apicalls": ["source.yoda.communication__sms.apicalls"], "model.yoda.communication_stg__bigcommerce_users": ["source.yoda.communication__sms.bigcommerce_users"], "model.yoda.communication_stg__billing_events": ["source.yoda.communication__communication.billing_events"], "model.yoda.communication_stg__campaigns": ["source.yoda.communication__sms.campaigns"], "model.yoda.communication_stg__conversation_messages": ["source.yoda.communication__sms.conversation_messages"], "model.yoda.communication_stg__email_esp_events": ["source.yoda.communication__sms.email_esp_events"], "model.yoda.communication_stg__events": ["source.yoda.communication__sms.events"], "model.yoda.communication_stg__flows": ["source.yoda.communication__sms.flows"], "model.yoda.communication_stg__forms": ["source.yoda.communication__sms.forms"], "model.yoda.communication_stg__klaviyo_users": ["source.yoda.communication__sms.klaviyo_users"], "model.yoda.communication_stg__list_keywords": ["source.yoda.communication__sms.list_keywords"], "model.yoda.communication_stg__orders": ["source.yoda.communication__sms_shopify.orders"], "model.yoda.communication_stg__packages": ["source.yoda.communication__sms.packages"], "model.yoda.communication_stg__phone_to_list": ["source.yoda.communication__sms.phone_to_list"], "model.yoda.communication_stg__phones": ["source.yoda.communication__sms.phones"], "model.yoda.communication_stg__phones_meta": ["source.yoda.communication__sms.phones_meta"], "model.yoda.communication_stg__profiles": ["source.yoda.communication__unomi.profiles"], "model.yoda.communication_stg__shopify_analytics_orders": ["source.yoda.communication__sms.shopify_analytics_orders"], "model.yoda.communication_stg__shopify_subscription_list_pages": ["source.yoda.communication__sms.shopify_subscription_list_pages"], "model.yoda.communication_stg__shopify_user_integrations": ["source.yoda.communication__sms.shopify_user_integrations"], "model.yoda.communication_stg__shopify_users": ["source.yoda.communication__sms.shopify_users"], "model.yoda.communication_stg__tmp_email_events": ["source.yoda.communication__sms.tmp_email_events"], "model.yoda.communication_stg__users": ["source.yoda.communication__sms.users"], "model.yoda.communication_stg__users_additional_flags": ["source.yoda.communication__sms.users_additional_flags"], "model.yoda.communication_stg__active_users_flags": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__users_additional_flags"], "model.yoda.communication_stg__automations_abandoned_checkout_active": ["model.yoda.communication_stg__events", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__automations_count": ["model.yoda.communication_stg__events", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__automations_customer_winback_active": ["model.yoda.communication_stg__events", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__automations_welcome_active": ["model.yoda.communication_stg__events", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__campaigns_sent_count": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__campaigns_sent_last_thirty_days_count": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__cs_forms_count": ["model.yoda.communication_stg__forms", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__cs_keywords_count": ["model.yoda.communication_stg__list_keywords", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__cs_pages_count": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_subscription_list_pages"], "model.yoda.communication_stg__email_campaigns_count": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__email_campaigns_sent_count": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__email_intent_popup_first_accept_date": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__tmp_email_events"], "model.yoda.communication_stg__email_intent_popup_first_decline_date": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__tmp_email_events"], "model.yoda.communication_stg__email_intent_popup_status": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__tmp_email_events"], "model.yoda.communication_stg__email_shopify_orders_analytics": ["model.yoda.communication_stg__shopify_analytics_orders", "model.yoda.communication_stg__users"], "model.yoda.communication_stg__email_subscribers_count": ["model.yoda.communication_stg__profiles", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__email_usage_avg_last_three_months": ["model.yoda.communication_stg__billing_events", "model.yoda.communication_stg__billing_events", "model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__users"], "model.yoda.communication_stg__first_email_campaign_sent": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__first_email_message_sent": ["model.yoda.communication_stg__email_esp_events", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__first_sms_campaign_sent": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__first_sms_message_sent": ["model.yoda.communication_stg__apicalls", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__flows_abandoned_checkout_active": ["model.yoda.communication_stg__flows", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__flows_count": ["model.yoda.communication_stg__flows", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__flows_customer_winback_active": ["model.yoda.communication_stg__flows", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__flows_welcome_active": ["model.yoda.communication_stg__flows", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__integrations_count": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_user_integrations"], "model.yoda.communication_stg__klaviyo_integration_enabled": ["model.yoda.communication_stg__klaviyo_users", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__last_email_campaign_sent": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__last_email_message_sent": ["model.yoda.communication_stg__email_esp_events", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__last_sms_campaign_sent": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__last_sms_message_sent": ["model.yoda.communication_stg__apicalls", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__measurements_bigcommerce_users": ["model.yoda.communication_stg__bigcommerce_users", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__measurements_shopify_users": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_users"], "model.yoda.communication_stg__measurements_users": ["model.yoda.communication_stg__packages", "model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__users"], "model.yoda.communication_stg__overall_emails_sent_from_campaigns": ["model.yoda.communication_stg__email_esp_events", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__recently_active_users": ["model.yoda.communication_stg__apicalls", "model.yoda.communication_stg__users", "model.yoda.platform_stg__accounts", "model.yoda.platform_stg__apps"], "model.yoda.communication_stg__send_chat_message": ["model.yoda.communication_stg__conversation_messages", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__shopify_orders": ["model.yoda.communication_stg__orders", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__sms_campaigns_count": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__sms_campaigns_sent_count": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count": ["model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__sms_shopify_orders_analytics": ["model.yoda.communication_stg__shopify_analytics_orders", "model.yoda.communication_stg__users"], "model.yoda.communication_stg__sms_subscribers_count": ["model.yoda.communication_stg__phone_to_list", "model.yoda.communication_stg__phones", "model.yoda.communication_stg__phones_meta", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__sms_usage_avg_last_three_months": ["model.yoda.communication_stg__apicalls", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__total_orders_avg_last_thirty_days": ["model.yoda.communication_stg__orders", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__total_orders_avg_last_three_months": ["model.yoda.communication_stg__orders", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__total_revenue_all_channels_all_time": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"], "model.yoda.communication_stg__total_revenue_all_channels_last_thirty_days": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"], "model.yoda.communication_stg__total_revenue_all_channels_last_three_months": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"], "model.yoda.communication_stg__total_revenue_email_last_thirty_days": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"], "model.yoda.communication_stg__total_revenue_email_last_three_months": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"], "model.yoda.communication_stg__total_revenue_sms_last_thirty_days": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"], "model.yoda.communication_stg__total_revenue_sms_last_three_months": ["model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__shopify_analytics_orders"], "model.yoda.communication_stg__total_subscribers_email_count": ["model.yoda.communication_stg__profiles", "model.yoda.communication_stg__recently_active_users"], "model.yoda.communication_stg__total_subscribers_sms_count": ["model.yoda.communication_stg__phone_to_list", "model.yoda.communication_stg__phones", "model.yoda.communication_stg__phones_meta", "model.yoda.communication_stg__recently_active_users"], "model.yoda.email__daily_delivered_emails_by_source_name": ["model.yoda.email_stg__system_email_events"], "model.yoda.email__daily_total_email_campaigns": ["model.yoda.email_stg__campaign_events"], "model.yoda.email__email_campaign_click_to_redeem_kpi": ["model.yoda.email_stg__emails_with_campaign_and_templates", "model.yoda.loyalty__redeemed_purchases", "model.yoda.sms_stg__email_sms_campaign_orders"], "model.yoda.email__email_campaign_loyalty_kpi": ["model.yoda.email_stg__emails_with_campaign_and_templates", "model.yoda.loyalty__opted_in_customers", "model.yoda.loyalty__redeemed_purchases", "model.yoda.loyalty_stg__point_redemptions"], "model.yoda.email__email_campaign_reviews_block_kpi": ["model.yoda.email_stg__emails_with_campaign_and_templates", "model.yoda.sms_stg__email_sms_campaign_orders"], "model.yoda.email__email_campaign_reviews_stars_kpi": ["model.yoda.email_stg__emails_with_campaign_and_templates", "model.yoda.sms_stg__email_sms_campaign_orders"], "model.yoda.email__email_events_per_source_id_and_ip_pool": ["model.yoda.email__email_events_per_source_id_and_ref_id", "model.yoda.email_stg__authenticated_domain"], "model.yoda.email__email_events_per_source_id_and_isp": ["model.yoda.email__email_events_per_source_id_and_ref_id", "model.yoda.email_stg__authenticated_domain"], "model.yoda.email__email_events_per_source_id_and_ref_id": ["model.yoda.email_stg__campaign_events", "model.yoda.email_stg__system_email_events", "model.yoda.sms_stg__users"], "model.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level": ["model.yoda.email__email_events_per_source_id_and_ip_pool", "model.yoda.email__email_events_per_source_id_and_isp", "model.yoda.email_stg__source_engagement_level_dry_run"], "model.yoda.email__email_failed_rejected_reasons": ["model.yoda.email_stg__system_email_events"], "model.yoda.email_stg__authenticated_domain": ["source.yoda.email__delivery.authenticated_domain"], "model.yoda.email_stg__campaign_events": ["source.yoda.email__communication.campaign_events"], "model.yoda.email_stg__delivered_email": ["source.yoda.email__communication.delivered_email"], "model.yoda.email_stg__source_engagement_level_dry_run": ["source.yoda.email__communication.source_engagement_level_dry_run"], "model.yoda.email_stg__system_email_events": ["source.yoda.email__communication.system_email_events"], "model.yoda.email_stg__template_instance_events": ["source.yoda.email__communication.template_instance_events"], "model.yoda.email_stg__emails_with_campaign_and_templates": ["model.yoda.email_stg__system_email_events_with_batch_id", "model.yoda.email_stg__template_instance_events", "source.yoda.email__communication.campaign_events"], "model.yoda.email_stg__system_email_events_with_batch_id": ["source.yoda.email__communication.system_email_events"], "model.yoda.infra__aws_cost_overview": ["model.yoda.infra_stg__aws_payer_billing_report_raw"], "model.yoda.infra__canary_data_model": [], "model.yoda.infra__canary_segment_model_profile": ["model.yoda.infra__canary_data_model"], "model.yoda.infra__canary_snowflake_model": ["model.yoda.infra__canary_data_model"], "model.yoda.infra__contracts_burn_estimations": ["model.yoda.infra__contracts_burn_status", "model.yoda.infra__contracts_burn_status", "model.yoda.infra__contracts_burn_status"], "model.yoda.infra__contracts_burn_status": ["model.yoda.infra__databricks_costs", "model.yoda.infra__databricks_costs", "model.yoda.infra__rivery_daily_usage", "model.yoda.infra__rivery_daily_usage", "model.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_cost", "model.yoda.infra__vendor_contracts", "model.yoda.infra__vendor_contracts", "model.yoda.infra__vendor_contracts"], "model.yoda.infra__cost_budget": ["model.yoda.infra_stg__team_budget"], "model.yoda.infra__databricks_costs": ["model.yoda.infra_stg__aws_payer_billing_report_raw", "model.yoda.infra_stg__databricks_cost_raw"], "model.yoda.infra__ec2_cost": ["model.yoda.infra__ec2_cost_cold", "model.yoda.infra__ec2_cost_hot"], "model.yoda.infra__ec2_cost_cold": ["model.yoda.infra_stg__ec2_cost"], "model.yoda.infra__ec2_cost_hot": ["model.yoda.infra_stg__ec2_cost"], "model.yoda.infra__elasticcache_cost": [], "model.yoda.infra__elasticsearch_cost": ["model.yoda.infra_stg__kubecost_delta"], "model.yoda.infra__git_actions_runs": ["model.yoda.infra_stg__workflow_runs"], "model.yoda.infra__groups_and_teams": ["model.yoda.infra__aws_cost_overview", "model.yoda.infra__kubernetes_cost"], "model.yoda.infra__infra_metrics": ["model.yoda.infra__databricks_costs", "model.yoda.infra__spark_jobs", "model.yoda.infra_stg__aws_payer_billing_report_raw", "model.yoda.infra_stg__infra_metrics", "model.yoda.infra_stg__upsolver_outputs"], "model.yoda.infra__kubernetes_cost": ["model.yoda.infra__kubernetes_cost_cold", "model.yoda.infra__kubernetes_cost_hot"], "model.yoda.infra__kubernetes_cost_cold": ["model.yoda.infra_stg__kubernetes_cost"], "model.yoda.infra__kubernetes_cost_hot": ["model.yoda.infra_stg__kubernetes_cost"], "model.yoda.infra__msk_cost": ["model.yoda.infra_stg__aws_payer_billing_report_raw"], "model.yoda.infra__opensearch_cost": [], "model.yoda.infra__opsgenie_alerts": ["model.yoda.infra_stg__alerts"], "model.yoda.infra__opsgenie_incidents": ["model.yoda.infra_stg__incidents", "model.yoda.infra_stg__services", "model.yoda.infra_stg__services", "model.yoda.infra_stg__teams"], "model.yoda.infra__pixel_onsite_v2": ["model.yoda.infra_stg__pixel_enrichment"], "model.yoda.infra__pixel_onsite_v3": ["model.yoda.infra_stg__pixel_enrichment"], "model.yoda.infra__rds_cost": ["model.yoda.infra_stg__aws_payer_billing_report_raw"], "model.yoda.infra__rivery_contract_statistics": ["model.yoda.infra__rivery_daily_usage"], "model.yoda.infra__rivery_daily_usage": ["model.yoda.infra_stg__rivery_environments", "model.yoda.infra_stg__rivery_groups", "model.yoda.infra_stg__rivery_rivers_usage"], "model.yoda.infra__s3_cost": ["model.yoda.infra__s3_cost_cold", "model.yoda.infra__s3_cost_hot"], "model.yoda.infra__s3_cost_cold": ["model.yoda.infra_stg__aws_s3_cost"], "model.yoda.infra__s3_cost_hot": ["model.yoda.infra_stg__aws_s3_cost"], "model.yoda.infra__s3_prefix_aggregations": ["model.yoda.infra_stg__aws_s3_inventory_data"], "model.yoda.infra__s3_storage_data_summary": ["model.yoda.infra_stg__aws_s3_inventory_data"], "model.yoda.infra__snowflake_automatic_clustering_cost": ["model.yoda.infra_stg__snowflake_automatic_clustering_history", "model.yoda.infra_stg__snowflake_tag_references"], "model.yoda.infra__snowflake_contract_details": [], "model.yoda.infra__snowflake_cost": ["model.yoda.infra__snowflake_automatic_clustering_cost", "model.yoda.infra__snowflake_storage_cost", "model.yoda.infra__snowflake_views_cost", "model.yoda.infra__snowflake_warehouse_cost"], "model.yoda.infra__snowflake_cost_summary": ["model.yoda.infra__snowflake_contract_details", "model.yoda.infra__snowflake_monthly_cost"], "model.yoda.infra__snowflake_daily_cost": ["model.yoda.infra__snowflake_automatic_clustering_cost", "model.yoda.infra__snowflake_contract_details", "model.yoda.infra__snowflake_storage_cost", "model.yoda.infra__snowflake_views_cost", "model.yoda.infra__snowflake_warehouse_cost"], "model.yoda.infra__snowflake_monthly_cost": ["model.yoda.infra__snowflake_automatic_clustering_cost", "model.yoda.infra__snowflake_contract_details", "model.yoda.infra__snowflake_storage_cost", "model.yoda.infra__snowflake_views_cost", "model.yoda.infra__snowflake_warehouse_cost"], "model.yoda.infra__snowflake_query_statistics": ["model.yoda.infra_stg__snowflake_queries_statistics"], "model.yoda.infra__snowflake_storage_cost": ["model.yoda.infra_stg__snowflake_database_storage_usage_history"], "model.yoda.infra__snowflake_views_cost": ["model.yoda.infra_stg__snowflake_materialized_view_refresh_history", "model.yoda.infra_stg__snowflake_tag_references"], "model.yoda.infra__snowflake_warehouse_cost": ["model.yoda.infra_stg__snowflake_tag_references", "model.yoda.infra_stg__snowflake_warehouse_metering_history"], "model.yoda.infra__snowflake_warehouse_statistics": ["model.yoda.infra_stg__snowflake_warehouse_events"], "model.yoda.infra__spark_jobs": ["model.yoda.infra__kubernetes_cost"], "model.yoda.infra__sqs_cost": [], "model.yoda.infra__sub_departments_monthly_budget_cur": ["model.yoda.infra_stg__sub_departments_monthly_budget"], "model.yoda.infra__vendor_contracts": [], "model.yoda.infra_stg__alerts": ["source.yoda.infra__opsgenie.alerts"], "model.yoda.infra_stg__aws_billing_report_raw": ["source.yoda.infra__costpo.aws_billing_report_raw", "source.yoda.infra__costpo.aws_billing_report_raw"], "model.yoda.infra_stg__aws_payer_billing_report_raw": ["source.yoda.infra__costpo.aws_payer_billing_report_raw", "source.yoda.infra__costpo.aws_payer_billing_report_raw"], "model.yoda.infra_stg__budget": ["seed.yoda.unit_test__source__infra_stg__budget__infra__costpo_budget", "source.yoda.infra__costpo.budget"], "model.yoda.infra_stg__databricks_cost_raw": ["source.yoda.infra__costpo.databricks_cost_raw"], "model.yoda.infra_stg__group": ["source.yoda.infra__segment.group"], "model.yoda.infra_stg__identify": ["source.yoda.infra__segment.identify"], "model.yoda.infra_stg__incidents": ["source.yoda.infra__opsgenie.incidents"], "model.yoda.infra_stg__infra_metrics": ["source.yoda.infra__infra_metrics.infra_raw_metrics"], "model.yoda.infra_stg__kubecost_delta": ["source.yoda.infra__costpo.kubecost_delta"], "model.yoda.infra_stg__kubecost_raw": ["source.yoda.infra__costpo.kubecost_raw"], "model.yoda.infra_stg__page": ["source.yoda.infra__segment.page"], "model.yoda.infra_stg__page_track": ["source.yoda.infra__segment.page_track"], "model.yoda.infra_stg__pixel_enrichment": ["source.yoda.infra__pixel.pixel_enrichment"], "model.yoda.infra_stg__repos": ["source.yoda.infra__github_info.repos"], "model.yoda.infra_stg__rivery_environments": ["source.yoda.infra__infra.rivery_environments"], "model.yoda.infra_stg__rivery_groups": ["source.yoda.infra__infra.rivery_groups"], "model.yoda.infra_stg__rivery_rivers_usage": ["source.yoda.infra__infra.rivery_rivers_usage"], "model.yoda.infra_stg__s3_inventory_raw": ["source.yoda.infra__default.s3_inventory"], "model.yoda.infra_stg__services": ["source.yoda.infra__opsgenie.services"], "model.yoda.infra_stg__snowflake_automatic_clustering_history": ["source.yoda.infra__costpo.snowflake_automatic_clustering_history"], "model.yoda.infra_stg__snowflake_database_storage_usage_history": ["source.yoda.infra__costpo.snowflake_database_storage_usage_history"], "model.yoda.infra_stg__snowflake_materialized_view_refresh_history": ["source.yoda.infra__costpo.snowflake_materialized_view_refresh_history"], "model.yoda.infra_stg__snowflake_queries_statistics": ["source.yoda.infra__costpo.snowflake_queries_statistics"], "model.yoda.infra_stg__snowflake_tag_references": ["source.yoda.infra__costpo.snowflake_tag_references"], "model.yoda.infra_stg__snowflake_warehouse_events": ["source.yoda.infra__costpo.snowflake_warehouse_events"], "model.yoda.infra_stg__snowflake_warehouse_metering_history": ["source.yoda.infra__costpo.snowflake_warehouse_metering_history"], "model.yoda.infra_stg__sub_departments_monthly_budget": ["source.yoda.infra__costpo.sub_departments_monthly_budget"], "model.yoda.infra_stg__team_budget": ["source.yoda.infra__costpo.team_budget"], "model.yoda.infra_stg__teams": ["source.yoda.infra__opsgenie.teams"], "model.yoda.infra_stg__upsolver_outputs": ["source.yoda.infra__infra_metrics.upsolver_raw_output"], "model.yoda.infra_stg__workflow_runs": ["source.yoda.infra__github_info.workflow_runs"], "model.yoda.infra_stg__workflows": ["source.yoda.infra__github_info.workflows"], "model.yoda.infra_stg__aws_s3_cost": ["model.yoda.infra_stg__aws_payer_billing_report_raw"], "model.yoda.infra_stg__aws_s3_inventory_data": ["model.yoda.infra_stg__s3_inventory_raw"], "model.yoda.infra_stg__ec2_cost": ["model.yoda.infra_stg__aws_payer_billing_report_raw"], "model.yoda.infra_stg__kubernetes_cost": ["model.yoda.infra_stg__aws_payer_billing_report_raw", "model.yoda.infra_stg__kubecost_delta"], "model.yoda.loyalty__dim_consumer_entity_daily_snapshot": ["model.yoda.loyalty__dim_customer_birthdays_daily_snapshot", "model.yoda.loyalty__dim_customers_daily_snapshot", "model.yoda.loyalty__dim_merchants_daily_snapshot", "model.yoda.loyalty__dim_referral_codes_daily_snapshot", "model.yoda.loyalty__dim_vip_tiers_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot", "model.yoda.loyalty__fact_redemptions_daily_snapshot"], "model.yoda.loyalty__customer_group_date_history": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"], "model.yoda.loyalty__customer_point_transaction_metrics_daily": ["model.yoda.loyalty_stg__point_transaction"], "model.yoda.loyalty__dim_campaigns_daily_snapshot": ["model.yoda.loyalty_stg__campaigns"], "model.yoda.loyalty__dim_customer_birthdays_daily_snapshot": ["model.yoda.loyalty_stg__customer_birthdays", "model.yoda.loyalty_stg__customers"], "model.yoda.loyalty__dim_customers_daily_snapshot": ["model.yoda.loyalty_stg__customers_opt_in", "model.yoda.loyalty_stg__customers_platform_accounts", "model.yoda.loyalty_stg__customers_vip_tiers", "model.yoda.loyalty_stg__email_campaign_emails", "model.yoda.loyalty_stg__enriched_customers"], "model.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot": ["model.yoda.loyalty_stg__customers_vip_tiers_history", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__vip_tiers"], "model.yoda.loyalty__dim_merchants_daily_snapshot": ["model.yoda.analytics___salesforce__account", "model.yoda.loyalty_stg__merchants", "model.yoda.loyalty_stg__yotpo_platform_accounts"], "model.yoda.loyalty__dim_referral_codes_daily_snapshot": ["model.yoda.loyalty_stg__currency_rates", "model.yoda.loyalty_stg__referral_codes", "model.yoda.loyalty_stg__referrals"], "model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot": ["model.yoda.loyalty_stg__referral_discount_codes"], "model.yoda.loyalty__dim_subscriptions_daily_snapshot": ["model.yoda.loyalty__dim_merchants_daily_snapshot", "model.yoda.loyalty_stg__currency_rates", "model.yoda.loyalty_stg__subscriptions"], "model.yoda.loyalty__dim_vip_tiers_daily_snapshot": ["model.yoda.loyalty_stg__vip_tiers", "model.yoda.loyalty_stg__vip_tiers_thresholds"], "model.yoda.loyalty__dim_vip_tiers_history_daily_snapshot": ["model.yoda.loyalty_stg__customers_vip_tiers_history", "model.yoda.loyalty_stg__vip_tiers"], "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot": ["model.yoda.loyalty_stg__yotpo_platform_accounts"], "model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot": [], "model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot": ["model.yoda.loyalty_stg__email_campaign_emails"], "model.yoda.loyalty__fact_perks_daily_snapshot": ["model.yoda.loyalty_stg__customers", "model.yoda.loyalty_stg__perks"], "model.yoda.loyalty__fact_purchase_items_daily_snapshot": ["model.yoda.loyalty_stg__currency_rates", "model.yoda.loyalty_stg__purchase_items"], "model.yoda.loyalty__fact_purchases_daily_snapshot": ["model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty__fact_refunds_daily_snapshot", "model.yoda.loyalty__fact_user_agents_daily_snapshot", "model.yoda.loyalty_stg__all_redemption_to_purchase", "model.yoda.loyalty_stg__campaigns", "model.yoda.loyalty_stg__currency_rates", "model.yoda.loyalty_stg__customers_opt_in", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__merchants", "model.yoda.loyalty_stg__processors", "model.yoda.loyalty_stg__purchases", "model.yoda.loyalty_stg__purchases_with_currency"], "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot": ["model.yoda.loyalty_stg__purchases_redemptions"], "model.yoda.loyalty__fact_redemptions_daily_snapshot": ["model.yoda.loyalty_stg__campaigns", "model.yoda.loyalty_stg__currency_rates", "model.yoda.loyalty_stg__point_redemptions", "model.yoda.loyalty_stg__redemption_codes", "model.yoda.loyalty_stg__redemption_options"], "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot": ["model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot", "model.yoda.loyalty__fact_redemptions_daily_snapshot"], "model.yoda.loyalty__fact_referral_perks_daily_snapshot": ["model.yoda.loyalty_stg__perks", "model.yoda.loyalty_stg__perks_user_actions", "model.yoda.loyalty_stg__user_actions"], "model.yoda.loyalty__fact_referral_receipts_daily_snapshot": ["model.yoda.loyalty_stg__referral_receipts"], "model.yoda.loyalty__fact_referral_shares_daily_snapshot": ["model.yoda.loyalty_stg__referral_shares"], "model.yoda.loyalty__fact_referral_snapshots_daily_snapshot": ["model.yoda.loyalty_stg__referral_snapshots"], "model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot": ["model.yoda.loyalty__fact_user_agents_daily_snapshot", "model.yoda.loyalty_stg__known_crawlers", "model.yoda.loyalty_stg__referrals"], "model.yoda.loyalty__fact_refund_items_daily_snapshot": ["model.yoda.loyalty_stg__refund_items"], "model.yoda.loyalty__fact_refunds_daily_snapshot": ["model.yoda.loyalty_stg__currency_rates", "model.yoda.loyalty_stg__purchases_with_currency", "model.yoda.loyalty_stg__refunds"], "model.yoda.loyalty__fact_user_actions_daily_snapshot": ["model.yoda.loyalty_stg__user_actions"], "model.yoda.loyalty__fact_user_agents_daily_snapshot": ["model.yoda.loyalty_stg__user_agents"], "model.yoda.loyalty__merchant_point_transaction_metrics_daily": ["model.yoda.loyalty__customer_group_date_history", "model.yoda.loyalty__customer_point_transaction_metrics_daily", "model.yoda.loyalty_stg__group_customers"], "model.yoda.loyalty__opted_in_customers": ["model.yoda.loyalty_stg__customers_opt_in", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__yotpo_platform_accounts"], "model.yoda.loyalty__pixel_events": ["model.yoda.loyalty_stg__domain_useradmin_to_customer_id", "model.yoda.loyalty_stg__merchants", "model.yoda.loyalty_stg__normalized_pixel_events"], "model.yoda.loyalty__redeemed_purchases": ["model.yoda.loyalty__dim_customers_daily_snapshot", "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot", "model.yoda.loyalty__fact_redemptions_daily_snapshot"], "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option": ["model.yoda.loyalty_stg__point_redemptions", "model.yoda.loyalty_stg__purchases", "model.yoda.loyalty_stg__purchases_redemptions", "model.yoda.loyalty_stg__redemption_options", "model.yoda.loyalty_stg__yotpo_platform_accounts"], "model.yoda.loyalty__redemptions": ["model.yoda.loyalty__dim_customers_daily_snapshot", "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot", "model.yoda.loyalty__fact_redemptions_daily_snapshot"], "model.yoda.loyalty__review_earning_rule_loyalty": ["model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__user_actions", "model.yoda.loyalty_stg__yotpo_platform_accounts", "model.yoda.ugc__export_reviews"], "model.yoda.loyalty__sms_earning_rule_loyalty": ["model.yoda.loyalty_stg__campaigns", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__perks", "model.yoda.loyalty_stg__yotpo_platform_accounts"], "model.yoda.loyalty__snowflake_consumer_entity_daily_snapshot": ["model.yoda.loyalty__dim_consumer_entity_daily_snapshot"], "model.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot": ["model.yoda.loyalty__dim_customer_birthdays_daily_snapshot"], "model.yoda.loyalty__snowflake_customers_daily_snapshot": ["model.yoda.loyalty__dim_customers_daily_snapshot"], "model.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot": ["model.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot"], "model.yoda.loyalty__snowflake_dates_for_investment_metric_daily_snapshot": ["model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot"], "model.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot": ["model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot"], "model.yoda.loyalty__snowflake_email_campaigns": ["model.yoda.loyalty_stg__email_campaigns"], "model.yoda.loyalty__snowflake_merchants_daily_snapshot": ["model.yoda.loyalty__dim_merchants_daily_snapshot"], "model.yoda.loyalty__snowflake_perks_daily_snapshot": ["model.yoda.loyalty__fact_perks_daily_snapshot"], "model.yoda.loyalty__snowflake_pixel_events": ["model.yoda.loyalty__pixel_events"], "model.yoda.loyalty__snowflake_plans": ["model.yoda.loyalty_stg__plans"], "model.yoda.loyalty__snowflake_purchase_items_daily_snapshot": ["model.yoda.loyalty__fact_purchase_items_daily_snapshot"], "model.yoda.loyalty__snowflake_purchases_daily_snapshot": ["model.yoda.loyalty__fact_purchases_daily_snapshot"], "model.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot": ["model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot"], "model.yoda.loyalty__snowflake_redemptions_daily_snapshot": ["model.yoda.loyalty__fact_redemptions_daily_snapshot"], "model.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"], "model.yoda.loyalty__snowflake_referral_codes_daily_snapshot": ["model.yoda.loyalty__dim_referral_codes_daily_snapshot"], "model.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot": ["model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot"], "model.yoda.loyalty__snowflake_referral_perks_daily_snapshot": ["model.yoda.loyalty__fact_referral_perks_daily_snapshot"], "model.yoda.loyalty__snowflake_referral_receipts_daily_snapshot": ["model.yoda.loyalty__fact_referral_receipts_daily_snapshot"], "model.yoda.loyalty__snowflake_referral_shares_daily_snapshot": ["model.yoda.loyalty__fact_referral_shares_daily_snapshot"], "model.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot": ["model.yoda.loyalty__fact_referral_snapshots_daily_snapshot"], "model.yoda.loyalty__snowflake_referrals": ["model.yoda.loyalty_stg__referrals"], "model.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot": ["model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot"], "model.yoda.loyalty__snowflake_refund_items_daily_snapshot": ["model.yoda.loyalty__fact_refund_items_daily_snapshot"], "model.yoda.loyalty__snowflake_refunds_daily_snapshot": ["model.yoda.loyalty__fact_refunds_daily_snapshot"], "model.yoda.loyalty__snowflake_subscriptions": ["model.yoda.loyalty_stg__subscriptions"], "model.yoda.loyalty__snowflake_subscriptions_daily_snapshot": ["model.yoda.loyalty__dim_subscriptions_daily_snapshot"], "model.yoda.loyalty__snowflake_user_actions_daily_snapshot": ["model.yoda.loyalty__fact_user_actions_daily_snapshot"], "model.yoda.loyalty__snowflake_user_agents_daily_snapshot": ["model.yoda.loyalty__fact_user_agents_daily_snapshot"], "model.yoda.loyalty__snowflake_vip_tiers_daily_snapshot": ["model.yoda.loyalty__dim_vip_tiers_daily_snapshot"], "model.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot": ["model.yoda.loyalty__dim_vip_tiers_history_daily_snapshot"], "model.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot": ["model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot"], "model.yoda.loyalty__tier_expiring_reminder_kpi": ["model.yoda.loyalty_stg__customers_vip_tiers", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__yotpo_platform_accounts", "model.yoda.sms__api_calls_with_customer"], "model.yoda.loyalty__widgetrepodb_customizations_to_snowflake": ["model.yoda.loyalty_stg__customizations"], "model.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake": ["model.yoda.loyalty_stg__instance_versions"], "model.yoda.loyalty__widgetrepodb_instances_to_snowflake": ["model.yoda.loyalty_stg__instances"], "model.yoda.loyalty__widgetrepodb_static_contents_to_snowflake": ["model.yoda.loyalty_stg__static_contents"], "model.yoda.loyalty__widgetrepodb_templates_to_snowflake": ["model.yoda.loyalty_stg__templates"], "model.yoda.loyalty__widgetrepodb_widget_types_to_snowflake": ["model.yoda.loyalty_stg__widget_types"], "model.yoda.loyalty_stg__campaign_activation_histories": ["source.yoda.loyalty__chainperks.campaign_activation_histories"], "model.yoda.loyalty_stg__campaigns": ["source.yoda.loyalty__chainperks.campaigns"], "model.yoda.loyalty_stg__config_item": ["source.yoda.loyalty__points.config_item"], "model.yoda.loyalty_stg__container_balance_usage": ["source.yoda.loyalty__points.container_balance_usage"], "model.yoda.loyalty_stg__currency_rates": ["source.yoda.loyalty__default.currency_rates"], "model.yoda.loyalty_stg__customer_birthdays": ["source.yoda.loyalty__chainperks.customer_birthdays"], "model.yoda.loyalty_stg__customers": ["source.yoda.loyalty__chainperks.customers"], "model.yoda.loyalty_stg__customers_opt_in": ["source.yoda.loyalty__chainperks.customers_opt_in"], "model.yoda.loyalty_stg__customers_platform_accounts": ["source.yoda.loyalty__chainperks.customers_platform_accounts"], "model.yoda.loyalty_stg__customers_vip_tiers": ["source.yoda.loyalty__chainperks.customers_vip_tiers"], "model.yoda.loyalty_stg__customers_vip_tiers_history": ["source.yoda.loyalty__chainperks.customers_vip_tiers_history"], "model.yoda.loyalty_stg__customizations": ["source.yoda.loyalty__widgetrepodb.customizations"], "model.yoda.loyalty_stg__email_campaign_emails": ["source.yoda.loyalty__chainperks.email_campaign_emails"], "model.yoda.loyalty_stg__email_campaigns": ["source.yoda.loyalty__chainperks.email_campaigns"], "model.yoda.loyalty_stg__group_customers": ["source.yoda.loyalty__chainperks.group_customers"], "model.yoda.loyalty_stg__install_loyalty": ["source.yoda.loyalty__segment.install_loyalty"], "model.yoda.loyalty_stg__instance_versions": ["source.yoda.loyalty__widgetrepodb.instance_versions"], "model.yoda.loyalty_stg__instances": ["source.yoda.loyalty__widgetrepodb.instances"], "model.yoda.loyalty_stg__known_crawlers": ["source.yoda.loyalty__sources_loyalty.known_crawlers"], "model.yoda.loyalty_stg__merchants": ["source.yoda.loyalty__chainperks.merchants"], "model.yoda.loyalty_stg__onsite_v3": ["source.yoda.loyalty__pixel.onsite_v3"], "model.yoda.loyalty_stg__perks": ["source.yoda.loyalty__chainperks.perks"], "model.yoda.loyalty_stg__perks_user_actions": ["source.yoda.loyalty__chainperks.perks_user_actions"], "model.yoda.loyalty_stg__plans": ["source.yoda.loyalty__chainperks.plans"], "model.yoda.loyalty_stg__point_redemptions": ["source.yoda.loyalty__chainperks.point_redemptions"], "model.yoda.loyalty_stg__points_container_expiration": ["source.yoda.loyalty__points.points_container_expiration"], "model.yoda.loyalty_stg__points_state": ["source.yoda.loyalty__points.points_state"], "model.yoda.loyalty_stg__points_transaction": ["source.yoda.loyalty__points.points_transaction"], "model.yoda.loyalty_stg__processors": ["source.yoda.loyalty__chainperks.processors"], "model.yoda.loyalty_stg__purchase_items": ["source.yoda.loyalty__chainperks.purchase_items"], "model.yoda.loyalty_stg__purchases": ["source.yoda.loyalty__chainperks.purchases"], "model.yoda.loyalty_stg__purchases_redemptions": ["source.yoda.loyalty__chainperks.purchases_redemptions"], "model.yoda.loyalty_stg__purchases_with_currency": ["source.yoda.loyalty__chainperks.purchases_with_currency"], "model.yoda.loyalty_stg__redemption_codes": ["source.yoda.loyalty__chainperks.redemption_codes"], "model.yoda.loyalty_stg__redemption_options": ["source.yoda.loyalty__chainperks.redemption_options"], "model.yoda.loyalty_stg__referral_codes": ["source.yoda.loyalty__chainperks.referral_codes"], "model.yoda.loyalty_stg__referral_discount_codes": ["source.yoda.loyalty__chainperks.referral_discount_codes"], "model.yoda.loyalty_stg__referral_receipts": ["source.yoda.loyalty__chainperks.referral_receipts"], "model.yoda.loyalty_stg__referral_shares": ["source.yoda.loyalty__chainperks.referral_shares"], "model.yoda.loyalty_stg__referral_snapshots": ["source.yoda.loyalty__chainperks.referral_snapshots"], "model.yoda.loyalty_stg__referrals": ["source.yoda.loyalty__chainperks.referrals"], "model.yoda.loyalty_stg__refund_items": ["source.yoda.loyalty__chainperks.refund_items"], "model.yoda.loyalty_stg__refunds": ["source.yoda.loyalty__chainperks.refunds"], "model.yoda.loyalty_stg__static_contents": ["source.yoda.loyalty__widgetrepodb.static_contents"], "model.yoda.loyalty_stg__subscriptions": ["source.yoda.loyalty__chainperks.subscriptions"], "model.yoda.loyalty_stg__swell_vip_tiers_settings": ["source.yoda.loyalty__chainperks.vip_tiers_settings"], "model.yoda.loyalty_stg__templates": ["source.yoda.loyalty__widgetrepodb.templates"], "model.yoda.loyalty_stg__uninstall_loyalty": ["source.yoda.loyalty__segment.uninstall_loyalty"], "model.yoda.loyalty_stg__user_actions": ["source.yoda.loyalty__chainperks.user_actions"], "model.yoda.loyalty_stg__user_agents": ["source.yoda.loyalty__chainperks.user_agents"], "model.yoda.loyalty_stg__vip_tiers": ["source.yoda.loyalty__chainperks.vip_tiers"], "model.yoda.loyalty_stg__vip_tiers_settings": ["source.yoda.loyalty__chainperks.vip_tiers_settings"], "model.yoda.loyalty_stg__vip_tiers_thresholds": ["source.yoda.loyalty__chainperks.vip_tiers_thresholds"], "model.yoda.loyalty_stg__widget_types": ["source.yoda.loyalty__widgetrepodb.widget_types"], "model.yoda.loyalty_stg__yotpo_platform_accounts": ["source.yoda.loyalty__chainperks.yotpo_platform_accounts"], "model.yoda.loyalty_stg__all_redemption_to_purchase": ["model.yoda.loyalty_stg__enriched_customers", "model.yoda.loyalty_stg__point_redemptions", "model.yoda.loyalty_stg__purchases", "model.yoda.loyalty_stg__purchases_redemptions"], "model.yoda.loyalty_stg__domain_useradmin_to_customer_id": ["model.yoda.loyalty_stg__normalized_pixel_events"], "model.yoda.loyalty_stg__enriched_customers": ["model.yoda.loyalty_stg__customers", "model.yoda.loyalty_stg__group_customers"], "model.yoda.loyalty_stg__normalized_pixel_events": ["model.yoda.loyalty_stg__onsite_v3"], "model.yoda.loyalty_stg__point_transaction": ["model.yoda.loyalty_stg__points_transaction"], "model.yoda.north_bound__segment_profile": ["model.yoda.communication_stg__active_users_flags", "model.yoda.communication_stg__automations_abandoned_checkout_active", "model.yoda.communication_stg__automations_count", "model.yoda.communication_stg__automations_customer_winback_active", "model.yoda.communication_stg__automations_welcome_active", "model.yoda.communication_stg__campaigns_sent_count", "model.yoda.communication_stg__campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__cs_forms_count", "model.yoda.communication_stg__cs_keywords_count", "model.yoda.communication_stg__cs_pages_count", "model.yoda.communication_stg__email_campaigns_count", "model.yoda.communication_stg__email_campaigns_sent_count", "model.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__email_intent_popup_first_accept_date", "model.yoda.communication_stg__email_intent_popup_first_decline_date", "model.yoda.communication_stg__email_intent_popup_status", "model.yoda.communication_stg__email_subscribers_count", "model.yoda.communication_stg__email_usage_avg_last_three_months", "model.yoda.communication_stg__first_email_campaign_sent", "model.yoda.communication_stg__first_email_message_sent", "model.yoda.communication_stg__first_sms_campaign_sent", "model.yoda.communication_stg__first_sms_message_sent", "model.yoda.communication_stg__flows_abandoned_checkout_active", "model.yoda.communication_stg__flows_count", "model.yoda.communication_stg__flows_customer_winback_active", "model.yoda.communication_stg__flows_welcome_active", "model.yoda.communication_stg__integrations_count", "model.yoda.communication_stg__klaviyo_integration_enabled", "model.yoda.communication_stg__last_email_campaign_sent", "model.yoda.communication_stg__last_email_message_sent", "model.yoda.communication_stg__last_sms_campaign_sent", "model.yoda.communication_stg__last_sms_message_sent", "model.yoda.communication_stg__measurements_bigcommerce_users", "model.yoda.communication_stg__measurements_shopify_users", "model.yoda.communication_stg__measurements_users", "model.yoda.communication_stg__overall_emails_sent_from_campaigns", "model.yoda.communication_stg__send_chat_message", "model.yoda.communication_stg__shopify_orders", "model.yoda.communication_stg__sms_campaigns_count", "model.yoda.communication_stg__sms_campaigns_sent_count", "model.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__sms_subscribers_count", "model.yoda.communication_stg__sms_usage_avg_last_three_months", "model.yoda.communication_stg__total_orders_avg_last_thirty_days", "model.yoda.communication_stg__total_orders_avg_last_three_months", "model.yoda.communication_stg__total_revenue_all_channels_all_time", "model.yoda.communication_stg__total_revenue_all_channels_last_thirty_days", "model.yoda.communication_stg__total_revenue_all_channels_last_three_months", "model.yoda.communication_stg__total_revenue_email_last_thirty_days", "model.yoda.communication_stg__total_revenue_email_last_three_months", "model.yoda.communication_stg__total_revenue_sms_last_thirty_days", "model.yoda.communication_stg__total_revenue_sms_last_three_months", "model.yoda.communication_stg__total_subscribers_email_count", "model.yoda.communication_stg__total_subscribers_sms_count"], "model.yoda.platform__cdp_streaming_aggregated_events": ["model.yoda.platform_stg__cdp_streaming_events", "source.yoda.platform__singas.cdp_streaming_events"], "model.yoda.platform__customer_dimensions_metrics": ["model.yoda.platform_stg__customer_dataset", "model.yoda.platform_stg__customer_dimensions_brand_affection", "model.yoda.platform_stg__customer_dimensions_business_metrics", "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material", "model.yoda.platform_stg__customer_dimensions_loyalty_program", "model.yoda.platform_stg__customer_dimensions_returning_buyers", "source.yoda.platform__data_science.churn_prediction"], "model.yoda.platform__customer_dimensions_metrics_analytics": ["model.yoda.platform__customer_dimensions_metrics"], "model.yoda.platform__customer_dimensions_metrics_inc": ["model.yoda.platform_stg__customer_dimensions_brand_affection_inc", "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc", "model.yoda.platform_stg__customer_dimensions_loyalty_program_inc", "model.yoda.platform_stg__customer_dimensions_returning_buyers_inc", "source.yoda.platform__data_science.churn_prediction"], "model.yoda.platform__customer_dimensions_metrics_inc_to_snowflake": ["model.yoda.platform__customer_dimensions_metrics_inc"], "model.yoda.platform__customer_dimensions_metrics_to_snowflake": ["model.yoda.platform__customer_dimensions_metrics"], "model.yoda.platform__digest_email_track": ["model.yoda.platform_stg__digest"], "model.yoda.platform__dim_stores": ["model.yoda.analytics___loyalty__merchant", "model.yoda.platform_stg__stores_enrichment"], "model.yoda.platform__integrations_adoption": ["model.yoda.platform_stg__ic_store_applications", "model.yoda.platform_stg__integrations_names"], "model.yoda.platform__integrations_adoption_per_application": ["model.yoda.platform_stg__ic_store_applications", "model.yoda.platform_stg__integrations_names"], "model.yoda.platform__integrations_adoption_per_store": ["model.yoda.platform_stg__ic_store_applications"], "model.yoda.platform__orders_with_product_lines_attribution": ["model.yoda.platform__orders_with_product_lines_attribution_daily"], "model.yoda.platform__orders_with_product_lines_attribution_daily": ["model.yoda.loyalty__redeemed_purchases", "model.yoda.platform_stg__email_shopify_orders_to_shop_currency", "model.yoda.platform_stg__sms_shopify_orders_to_shop_currency", "model.yoda.subscriptions__subscriptions_attributed_orders", "model.yoda.ugc__partial_reviewed_orders"], "model.yoda.platform__orders_with_product_lines_attribution_daily_to_snowflake": ["model.yoda.platform__orders_with_product_lines_attribution_daily"], "model.yoda.platform__orders_with_product_lines_attribution_to_snowflake": ["model.yoda.platform__orders_with_product_lines_attribution"], "model.yoda.platform__owners_packages_organization_view": ["model.yoda.platform_stg__accounts", "model.yoda.platform_stg__organizations", "model.yoda.platform_stg__owners_packages", "model.yoda.platform_stg__packages"], "model.yoda.platform__owners_packages_store_view": ["model.yoda.platform_stg__accounts", "model.yoda.platform_stg__organizations", "model.yoda.platform_stg__owners_packages"], "model.yoda.platform__retention_metrics_average_order_value": ["model.yoda.platform__retention_metrics_orders"], "model.yoda.platform__retention_metrics_average_order_value_to_snowflake": ["model.yoda.platform__retention_metrics_average_order_value"], "model.yoda.platform__retention_metrics_bar_chart_total_sales": ["model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month", "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly"], "model.yoda.platform__retention_metrics_bar_chart_total_sales_to_snowflake": ["model.yoda.platform__retention_metrics_bar_chart_total_sales"], "model.yoda.platform__retention_metrics_customer_segment_ratio": ["model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders"], "model.yoda.platform__retention_metrics_customer_segment_ratio_to_snowflake": ["model.yoda.platform__retention_metrics_customer_segment_ratio"], "model.yoda.platform__retention_metrics_orders": ["model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency", "model.yoda.platform_stg__retention_metrics_segmented_customers"], "model.yoda.platform__retention_metrics_orders_to_snowflake": ["model.yoda.platform__retention_metrics_orders"], "model.yoda.platform__retention_metrics_returning_customers": ["model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency"], "model.yoda.platform__retention_metrics_returning_customers_to_snowflake": ["model.yoda.platform__retention_metrics_returning_customers"], "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments": ["model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders"], "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"], "model.yoda.platform__retention_metrics_total_sales_and_customers": ["model.yoda.platform_stg__retention_metrics_trends_orders"], "model.yoda.platform__retention_metrics_total_sales_and_customers_to_snowflake": ["model.yoda.platform__retention_metrics_total_sales_and_customers"], "model.yoda.platform__retention_metrics_trends_average_order_value": ["model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"], "model.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake": ["model.yoda.platform__retention_metrics_trends_average_order_value"], "model.yoda.platform__retention_metrics_trends_average_sales_per_customer": ["model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"], "model.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake": ["model.yoda.platform__retention_metrics_trends_average_sales_per_customer"], "model.yoda.platform__sms_store_verification": ["model.yoda.analytics___platform__store_metrics_daily", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___sms_stg__sms_user", "model.yoda.communication_stg__shopify_users", "model.yoda.platform_stg__products"], "model.yoda.platform__sms_store_verification_to_snowflake": ["model.yoda.platform__sms_store_verification"], "model.yoda.platform__synergies_kpi": ["model.yoda.email__email_campaign_click_to_redeem_kpi", "model.yoda.email__email_campaign_loyalty_kpi", "model.yoda.email__email_campaign_reviews_block_kpi", "model.yoda.email__email_campaign_reviews_stars_kpi", "model.yoda.loyalty__review_earning_rule_loyalty", "model.yoda.loyalty__sms_earning_rule_loyalty", "model.yoda.sms__loyalty_sms_campaigns_email_kpi", "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "model.yoda.sms__loyalty_sms_flows_email_kpi", "model.yoda.sms__loyalty_sms_flows_sms_kpi", "model.yoda.sms__reviews_sms_flows_email_kpi", "model.yoda.sms__reviews_sms_flows_sms_kpi", "model.yoda.sms__sms_double_points_campaign_kpi", "model.yoda.sms__social_proof_flows_email_kpi", "model.yoda.sms__social_proof_flows_sms_kpi", "model.yoda.subscriptions__synergy_kpi_one_click_campaign", "model.yoda.subscriptions__synergy_kpi_redeemed_points", "model.yoda.subscriptions__synergy_kpi_sms_payment_failure"], "model.yoda.platform_stg__account_created": ["source.yoda.platform__segment.account_created"], "model.yoda.platform_stg__account_platforms": ["source.yoda.platform__yotpoapiprod.account_platforms"], "model.yoda.platform_stg__accounts": ["source.yoda.platform__yotpoapiprod.accounts"], "model.yoda.platform_stg__activation_step": ["source.yoda.platform__segment.activation_step"], "model.yoda.platform_stg__app_install_completed": ["source.yoda.platform__segment.app_install_completed"], "model.yoda.platform_stg__app_uninstalled": ["source.yoda.platform__segment.app_uninstalled"], "model.yoda.platform_stg__apps": ["source.yoda.platform__yotpoapiprod.apps"], "model.yoda.platform_stg__attribute_sets": ["source.yoda.platform__products.attribute_sets"], "model.yoda.platform_stg__b2b": ["source.yoda.platform__segment.b2b"], "model.yoda.platform_stg__billing_audits": ["source.yoda.platform__billing.billing_audits"], "model.yoda.platform_stg__categories": ["source.yoda.platform__packages.categories"], "model.yoda.platform_stg__cdp_streaming_events": ["source.yoda.platform__singas.cdp_streaming_events"], "model.yoda.platform_stg__currency_rates": ["source.yoda.platform__default.currency_rates"], "model.yoda.platform_stg__custom_attributes": ["source.yoda.platform__products.custom_attributes"], "model.yoda.platform_stg__customer_dataset": ["source.yoda.platform__data_science.customer_dataset_reduced"], "model.yoda.platform_stg__customer_dataset_reduced": ["source.yoda.platform__data_science.customer_dataset_reduced"], "model.yoda.platform_stg__dim_calendar": ["source.yoda.platform__default.dim_calendar"], "model.yoda.platform_stg__features": ["source.yoda.platform__yotpoapiprod.features"], "model.yoda.platform_stg__file_exported": ["source.yoda.platform__segment.file_exported"], "model.yoda.platform_stg__fulfillments": ["source.yoda.platform__orders.fulfillments"], "model.yoda.platform_stg__groups": ["source.yoda.platform__products.groups"], "model.yoda.platform_stg__gtins": ["source.yoda.platform__products.gtins"], "model.yoda.platform_stg__limit_reached": ["source.yoda.platform__segment.limit_reached"], "model.yoda.platform_stg__onboarding": ["source.yoda.platform__segment.onboarding"], "model.yoda.platform_stg__onsite_v2": ["source.yoda.platform__pixel.onsite_v2"], "model.yoda.platform_stg__onsite_v3": ["source.yoda.platform__pixel.onsite_v3"], "model.yoda.platform_stg__order_lines": ["source.yoda.platform__orders.order_lines"], "model.yoda.platform_stg__orders": ["source.yoda.platform__orders.orders"], "model.yoda.platform_stg__organizations": ["source.yoda.platform__yotpoapiprod.organizations"], "model.yoda.platform_stg__owner_feature_settings": ["source.yoda.platform__yotpoapiprod.owner_feature_settings"], "model.yoda.platform_stg__owners_features": ["source.yoda.platform__yotpoapiprod.owners_features"], "model.yoda.platform_stg__owners_package_audits": ["source.yoda.platform__packages.owners_package_audits"], "model.yoda.platform_stg__owners_packages": ["source.yoda.platform__packages.owners_packages"], "model.yoda.platform_stg__owners_packages_history": ["source.yoda.platform__packages.owners_packages_history"], "model.yoda.platform_stg__package_feature_settings": ["source.yoda.platform__packages.package_feature_settings"], "model.yoda.platform_stg__package_features": ["source.yoda.platform__packages.package_features"], "model.yoda.platform_stg__package_provider_settings": ["source.yoda.platform__billing.package_provider_settings"], "model.yoda.platform_stg__package_tag_types": ["source.yoda.platform__packages.package_tag_types"], "model.yoda.platform_stg__package_tags": ["source.yoda.platform__packages.package_tags"], "model.yoda.platform_stg__package_usages_settings": ["source.yoda.platform__billing.package_usages_settings"], "model.yoda.platform_stg__packages": ["source.yoda.platform__packages.packages"], "model.yoda.platform_stg__plan_settings": ["source.yoda.platform__billing.plan_settings"], "model.yoda.platform_stg__platform_package_features": ["source.yoda.platform__packages.platform_package_features"], "model.yoda.platform_stg__platform_types": ["source.yoda.platform__yotpoapiprod.platform_types"], "model.yoda.platform_stg__popup_displayed": ["source.yoda.platform__segment.popup_displayed"], "model.yoda.platform_stg__product_enabled": ["source.yoda.platform__segment.product_enabled"], "model.yoda.platform_stg__products": ["source.yoda.platform__products.products"], "model.yoda.platform_stg__provider_types": ["source.yoda.platform__billing.provider_types"], "model.yoda.platform_stg__sections": ["source.yoda.platform__homescreen.sections"], "model.yoda.platform_stg__store_applications": ["source.yoda.platform__integrationscenter.store_applications"], "model.yoda.platform_stg__store_platforms": ["source.yoda.platform__yotpoapiprod.account_platforms"], "model.yoda.platform_stg__stores": ["source.yoda.platform__yotpoapiprod.accounts"], "model.yoda.platform_stg__subscription_cycle_usages": ["source.yoda.platform__billing.subscription_cycle_usages"], "model.yoda.platform_stg__subscription_pending_usages": ["source.yoda.platform__billing.subscription_pending_usages"], "model.yoda.platform_stg__subscription_providers": ["source.yoda.platform__billing.subscription_providers"], "model.yoda.platform_stg__subscription_statuses": ["source.yoda.platform__billing.subscription_statuses"], "model.yoda.platform_stg__subscription_usages_settings": ["source.yoda.platform__billing.subscription_usages_settings"], "model.yoda.platform_stg__synergies_crud": ["source.yoda.platform__homescreen.synergies_crud"], "model.yoda.platform_stg__timezone_country_mapping": ["source.yoda.platform__static.timezone_country_mapping"], "model.yoda.platform_stg__uninstalled_yotpo": ["source.yoda.platform__segment.uninstalled_yotpo"], "model.yoda.platform_stg__usages": ["source.yoda.platform__billing.usages"], "model.yoda.platform_stg__usages_history": ["source.yoda.platform__billing.usages_history"], "model.yoda.platform_stg__usages_tiers_settings": ["source.yoda.platform__billing.usages_tiers_settings"], "model.yoda.platform_stg__users_organizations": ["source.yoda.platform__yotpoapiprod.users_organizations"], "model.yoda.platform_stg__variants": ["source.yoda.platform__products.variants"], "model.yoda.platform_stg__widget_configurations": ["source.yoda.platform__homescreen.widget_configurations"], "model.yoda.platform_stg__widgets": ["source.yoda.platform__homescreen.widgets"], "model.yoda.platform_stg__all_accounts": ["model.yoda.platform_stg__accounts"], "model.yoda.platform_stg__all_apps": ["model.yoda.platform_stg__apps"], "model.yoda.platform_stg__customer_dimensions_brand_affection": ["model.yoda.platform_stg__customer_dataset"], "model.yoda.platform_stg__customer_dimensions_brand_affection_inc": ["model.yoda.platform_stg__customer_dataset_reduced"], "model.yoda.platform_stg__customer_dimensions_business_metrics": ["model.yoda.platform_stg__customer_dataset"], "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material": ["model.yoda.platform_stg__customer_dataset"], "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc": ["model.yoda.platform_stg__customer_dataset_reduced"], "model.yoda.platform_stg__customer_dimensions_loyalty_program": ["model.yoda.platform_stg__customer_dataset"], "model.yoda.platform_stg__customer_dimensions_loyalty_program_inc": ["model.yoda.platform_stg__customer_dataset_reduced"], "model.yoda.platform_stg__customer_dimensions_returning_buyers": ["model.yoda.platform_stg__customer_dimensions_business_metrics"], "model.yoda.platform_stg__customer_dimensions_returning_buyers_inc": ["model.yoda.platform_stg__customer_dataset_reduced"], "model.yoda.platform_stg__digest": ["model.yoda.platform__orders_with_product_lines_attribution", "model.yoda.platform__retention_metrics_returning_customers", "model.yoda.platform__retention_metrics_total_sales_and_customers", "model.yoda.platform_stg__digest_accounts", "model.yoda.platform_stg__merchant_shop_currency"], "model.yoda.platform_stg__digest_accounts": ["model.yoda.analytics___platform_stg__owner_feature", "model.yoda.platform_stg__merchant_platform_id", "model.yoda.platform_stg__organizations", "model.yoda.platform_stg__owners_packages", "model.yoda.platform_stg__package_tag_types", "model.yoda.platform_stg__package_tags", "model.yoda.platform_stg__packages", "model.yoda.platform_stg__users_organizations", "model.yoda.ugc_stg__users"], "model.yoda.platform_stg__email_shopify_orders_to_shop_currency": ["model.yoda.communication__email_shopify_orders_analytics_profile", "model.yoda.platform_stg__currency_rates", "model.yoda.platform_stg__merchant_shop_currency"], "model.yoda.platform_stg__ic_store_applications": ["source.yoda.platform__integrationscenter.store_applications"], "model.yoda.platform_stg__integrations_names": ["source.yoda.platform__integrationscenter.store_applications"], "model.yoda.platform_stg__merchant_platform_id": ["model.yoda.platform_stg__account_platforms", "model.yoda.platform_stg__accounts"], "model.yoda.platform_stg__merchant_shop_currency": ["model.yoda.platform_stg__account_platforms", "model.yoda.platform_stg__accounts"], "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month": ["model.yoda.platform__retention_metrics_orders"], "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly": ["model.yoda.platform__retention_metrics_orders", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly"], "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value": ["model.yoda.platform__retention_metrics_average_order_value", "model.yoda.platform__retention_metrics_average_order_value", "model.yoda.platform__retention_metrics_average_order_value", "model.yoda.platform__retention_metrics_average_order_value"], "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer": ["model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders"], "model.yoda.platform_stg__retention_metrics_mock_orders": [], "model.yoda.platform_stg__retention_metrics_orders": ["model.yoda.platform_stg__orders"], "model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency": ["model.yoda.platform_stg__currency_rates", "model.yoda.platform_stg__merchant_shop_currency", "model.yoda.platform_stg__retention_metrics_mock_orders"], "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value": ["model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders"], "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer": ["model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__retention_metrics_trends_orders"], "model.yoda.platform_stg__retention_metrics_segmented_customers": ["model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders"], "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly": ["model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_mock_orders"], "model.yoda.platform_stg__retention_metrics_trends_orders": ["model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency", "model.yoda.platform_stg__retention_metrics_segmented_customers"], "model.yoda.platform_stg__sms_shopify_orders_to_shop_currency": ["model.yoda.communication__sms_shopify_orders_analytics_profile", "model.yoda.platform_stg__currency_rates", "model.yoda.platform_stg__merchant_shop_currency"], "model.yoda.platform_stg__stores_enrichment": ["model.yoda.platform_stg__platform_types", "model.yoda.platform_stg__store_platforms", "model.yoda.platform_stg__stores"], "model.yoda.platform_stg__synergy_product_mapping": [], "model.yoda.platform_stg__synergy_start_date_mapping": [], "model.yoda.sms__api_calls_with_customer": ["model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__flows", "model.yoda.sms_stg__users"], "model.yoda.sms__daily_revenue": ["model.yoda.sms_stg__apicalls"], "model.yoda.sms__flows_links_clicks": ["model.yoda.sms_stg__flow_link_clicks", "model.yoda.sms_stg__flow_links", "model.yoda.sms_stg__flows"], "model.yoda.sms__loyalty_sms_campaigns_email_kpi": ["model.yoda.email_stg__system_email_events", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi": ["model.yoda.email_stg__system_email_events", "model.yoda.loyalty__opted_in_customers", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__sms_loyalty_campaigns"], "model.yoda.sms__loyalty_sms_campaigns_sms_kpi": ["model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__orders", "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi": ["model.yoda.loyalty__opted_in_customers", "model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__sms_loyalty_campaigns"], "model.yoda.sms__loyalty_sms_flows_email_kpi": ["model.yoda.email_stg__system_email_events", "model.yoda.sms_stg__sms_loyalty_flows_kpi"], "model.yoda.sms__loyalty_sms_flows_sms_kpi": ["model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__sms_loyalty_flows_kpi"], "model.yoda.sms__multipass_login_kpi": ["model.yoda.loyalty__opted_in_customers", "model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__customers_addresses", "model.yoda.sms_stg__link_clicks", "model.yoda.sms_stg__orders", "model.yoda.sms_stg__users"], "model.yoda.sms__reviews_sms_flows_email_kpi": ["model.yoda.email_stg__system_email_events", "model.yoda.sms_stg__sms_reviews_flows_kpi"], "model.yoda.sms__reviews_sms_flows_sms_kpi": ["model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__sms_reviews_flows_kpi"], "model.yoda.sms__sms_double_points_campaign_kpi": ["model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__shopify_campaign_orders", "model.yoda.sms_stg__sms_loyalty_campaigns"], "model.yoda.sms__snowflake_sms_flows_reviews": ["model.yoda.sms_stg__sms_flows_reviews"], "model.yoda.sms__social_proof_flows_email_kpi": ["model.yoda.email_stg__system_email_events", "model.yoda.sms_stg__social_proof_flows_kpi"], "model.yoda.sms__social_proof_flows_sms_kpi": ["model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__social_proof_flows_kpi"], "model.yoda.sms_stg__apicalls": ["source.yoda.sms__sms.apicalls"], "model.yoda.sms_stg__bigcommerce_users": ["source.yoda.sms__sms.bigcommerce_users"], "model.yoda.sms_stg__campaign_lists": ["source.yoda.sms__sms.campaign_lists"], "model.yoda.sms_stg__campaign_relations": ["source.yoda.sms__sms.campaign_relations"], "model.yoda.sms_stg__campaigns": ["source.yoda.sms__sms.campaigns"], "model.yoda.sms_stg__comm_analytics_data": ["source.yoda.sms__communication.comm_analytics_data"], "model.yoda.sms_stg__customers": ["source.yoda.sms__sms_shopify.customers"], "model.yoda.sms_stg__customers_addresses": ["source.yoda.sms__sms_shopify.customers_addresses"], "model.yoda.sms_stg__default_predefined_messages": ["source.yoda.sms__sms.default_predefined_messages"], "model.yoda.sms_stg__email_charges": ["source.yoda.sms__sms.email_charges"], "model.yoda.sms_stg__email_to_sms_campaigns": ["source.yoda.sms__sms.email_to_sms_campaigns"], "model.yoda.sms_stg__events": ["source.yoda.sms__sms.events"], "model.yoda.sms_stg__flow_link_clicks": ["source.yoda.sms__sms.flow_link_clicks"], "model.yoda.sms_stg__flow_links": ["source.yoda.sms__sms.flow_links"], "model.yoda.sms_stg__flows": ["source.yoda.sms__sms.flows"], "model.yoda.sms_stg__forms": ["source.yoda.sms__sms.forms"], "model.yoda.sms_stg__free_credits_logs": ["source.yoda.sms__sms.free_credits_logs"], "model.yoda.sms_stg__link_clicks": ["source.yoda.sms__sms.link_clicks"], "model.yoda.sms_stg__lists": ["source.yoda.sms__sms.lists"], "model.yoda.sms_stg__loyalty_flows_data": ["source.yoda.sms__sms.loyalty_flows_data"], "model.yoda.sms_stg__orders": ["source.yoda.sms__sms_shopify.orders"], "model.yoda.sms_stg__packages": ["source.yoda.sms__sms.packages"], "model.yoda.sms_stg__purchases": ["source.yoda.sms__sms.purchases"], "model.yoda.sms_stg__shopify_analytics_orders": ["source.yoda.sms__sms.shopify_analytics_orders"], "model.yoda.sms_stg__shopify_campaign_discount_codes": ["source.yoda.sms__sms.shopify_campaign_discount_codes"], "model.yoda.sms_stg__shopify_campaign_orders": ["source.yoda.sms__sms.shopify_campaign_orders"], "model.yoda.sms_stg__shopify_flows_orders": ["source.yoda.sms__sms.shopify_flows_orders"], "model.yoda.sms_stg__shopify_segments": ["source.yoda.sms__sms.shopify_segments"], "model.yoda.sms_stg__shopify_users": ["source.yoda.sms__sms.shopify_users"], "model.yoda.sms_stg__sms_campaign_created": ["source.yoda.sms__segment.sms_campaign_created"], "model.yoda.sms_stg__sms_loyalty_redemptions": ["source.yoda.sms__sms.sms_loyalty_redemptions"], "model.yoda.sms_stg__track_flows_adoption": ["source.yoda.sms__sms.track_flows_adoption"], "model.yoda.sms_stg__users": ["source.yoda.sms__sms.users"], "model.yoda.sms_stg__users_events_log": ["source.yoda.sms__sms.users_events_log"], "model.yoda.sms_stg__yotpo_organizations": ["source.yoda.sms__sms.yotpo_organizations"], "model.yoda.sms_stg__yotpo_status_updates": ["source.yoda.sms__sms.yotpo_status_updates"], "model.yoda.sms_stg__email_sms_campaign_orders": ["model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__email_to_sms_campaigns", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__users"], "model.yoda.sms_stg__one_click_campaigns_subscriptions": ["model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__campaign_lists", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__link_clicks", "model.yoda.sms_stg__lists", "model.yoda.sms_stg__shopify_segments", "model.yoda.sms_stg__users"], "model.yoda.sms_stg__sms_email_campaign_discount_codes": ["model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__email_to_sms_campaigns", "model.yoda.sms_stg__shopify_campaign_discount_codes", "model.yoda.sms_stg__users"], "model.yoda.sms_stg__sms_flows_reviews": ["model.yoda.sms_stg__users", "model.yoda.sms_stg__yotpo_status_updates", "model.yoda.ugc_stg__review_request_tokens", "model.yoda.ugc_stg__reviews"], "model.yoda.sms_stg__sms_loyalty_campaigns": ["model.yoda.sms_stg__campaign_relations", "model.yoda.sms_stg__default_predefined_messages", "model.yoda.sms_stg__users"], "model.yoda.sms_stg__sms_loyalty_campaigns_kpi": ["model.yoda.loyalty__redeemed_purchases", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__shopify_campaign_orders", "model.yoda.sms_stg__sms_loyalty_campaigns", "model.yoda.sms_stg__sms_loyalty_custom_campaigns"], "model.yoda.sms_stg__sms_loyalty_custom_campaigns": ["model.yoda.sms_stg__campaign_lists", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__lists", "model.yoda.sms_stg__shopify_segments", "model.yoda.sms_stg__sms_loyalty_campaigns", "model.yoda.sms_stg__users"], "model.yoda.sms_stg__sms_loyalty_flows_kpi": ["model.yoda.loyalty__redeemed_purchases", "model.yoda.sms_stg__flows", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__shopify_flows_orders", "model.yoda.sms_stg__users"], "model.yoda.sms_stg__sms_reviews_flows_kpi": ["model.yoda.sms_stg__customers", "model.yoda.sms_stg__flows", "model.yoda.sms_stg__users", "model.yoda.sms_stg__yotpo_status_updates", "model.yoda.ugc_stg__review_request_tokens", "model.yoda.ugc_stg__reviews", "model.yoda.ugc_stg__users"], "model.yoda.sms_stg__social_proof_flows_kpi": ["model.yoda.sms_stg__customers", "model.yoda.sms_stg__flows", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__shopify_flows_orders", "model.yoda.sms_stg__users"], "model.yoda.sms_stg__subscription_segmentation_campaigns": ["model.yoda.sms_stg__campaign_lists", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__lists", "model.yoda.sms_stg__shopify_segments", "model.yoda.sms_stg__users"], "model.yoda.sms_stg__subscription_sms_campaigns": ["model.yoda.sms__api_calls_with_customer", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__subscription_segmentation_campaigns"], "model.yoda.sms_stg__subscription_upsell_flow": ["model.yoda.sms_stg__customers", "model.yoda.sms_stg__subscription_upsell_flow_orders", "model.yoda.sms_stg__subscription_upsell_flow_sms"], "model.yoda.sms_stg__subscription_upsell_flow_orders": ["model.yoda.sms_stg__flows", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__shopify_flows_orders"], "model.yoda.sms_stg__subscription_upsell_flow_sms": ["model.yoda.sms__api_calls_with_customer"], "model.yoda.subscriptions__customer_journey_event": ["model.yoda.subscriptions_stg__customer_journey_event"], "model.yoda.subscriptions__recurrent_event_rule": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "model.yoda.subscriptions__snowflake_cancelation_intent_event": ["model.yoda.subscriptions_stg__cancelation_intent_event"], "model.yoda.subscriptions__snowflake_cancelation_reason_option": ["model.yoda.subscriptions_stg__cancelation_reason_option"], "model.yoda.subscriptions__snowflake_recurrent_event_rule": ["model.yoda.subscriptions__recurrent_event_rule"], "model.yoda.subscriptions__snowflake_status": ["model.yoda.subscriptions__status"], "model.yoda.subscriptions__snowflake_subscription_contract": ["model.yoda.subscriptions__subscription_contract"], "model.yoda.subscriptions__snowflake_subscription_contract_line_policy": ["model.yoda.subscriptions__subscription_contract_line_policy"], "model.yoda.subscriptions__snowflake_subscription_contract_order": ["model.yoda.subscriptions__subscription_contract_order"], "model.yoda.subscriptions__snowflake_subscription_contract_order_lines": ["model.yoda.subscriptions__subscription_contract_order_lines"], "model.yoda.subscriptions__snowflake_subscription_contract_status_changes": ["model.yoda.subscriptions__subscription_contract_status_changes"], "model.yoda.subscriptions__snowflake_subscription_line_action": ["model.yoda.subscriptions_stg__subscription_line_action"], "model.yoda.subscriptions__snowflake_subscription_merchant_migration_date": ["model.yoda.subscriptions__subscription_merchant_migration_date"], "model.yoda.subscriptions__snowflake_subscription_total_orders": ["model.yoda.subscriptions__subscription_total_orders"], "model.yoda.subscriptions__snowflake_subscriptions_accounts": ["model.yoda.subscriptions__subscription_accounts"], "model.yoda.subscriptions__status": ["model.yoda.subscriptions_stg__status"], "model.yoda.subscriptions__store_customers_exports": ["model.yoda.subscriptions_stg__store_customers_exports"], "model.yoda.subscriptions__subscription_accounts": ["model.yoda.platform_stg__accounts", "model.yoda.platform_stg__features", "model.yoda.platform_stg__owner_feature_settings", "model.yoda.platform_stg__owners_features"], "model.yoda.subscriptions__subscription_contract": ["model.yoda.subscriptions_stg__subscription_contract"], "model.yoda.subscriptions__subscription_contract_line": ["model.yoda.subscriptions_stg__subscription_contract_line"], "model.yoda.subscriptions__subscription_contract_line_policy": ["model.yoda.platform_stg__products", "model.yoda.platform_stg__variants", "model.yoda.subscriptions_stg__subscription_contract", "model.yoda.subscriptions_stg__subscription_contract_line"], "model.yoda.subscriptions__subscription_contract_order": ["model.yoda.subscriptions_stg__subscription_contract_order"], "model.yoda.subscriptions__subscription_contract_order_lines": ["model.yoda.platform_stg__order_lines", "model.yoda.platform_stg__orders", "model.yoda.platform_stg__products", "model.yoda.platform_stg__variants", "model.yoda.subscriptions__subscription_contract_order"], "model.yoda.subscriptions__subscription_contract_status_changes": ["model.yoda.subscriptions_stg__subscription_contract"], "model.yoda.subscriptions__subscription_merchant_migration_date": ["model.yoda.subscriptions_stg__subscription_creation_request"], "model.yoda.subscriptions__subscription_total_orders": ["model.yoda.analytics___platform_stg__store_order", "model.yoda.platform_stg__accounts", "model.yoda.platform_stg__features", "model.yoda.platform_stg__owners_features"], "model.yoda.subscriptions__subscriptions_attributed_orders": ["model.yoda.subscriptions__subscription_contract_order", "model.yoda.subscriptions__subscription_total_orders"], "model.yoda.subscriptions__synergy_kpi_one_click_campaign": ["model.yoda.sms_stg__one_click_campaigns_subscriptions", "model.yoda.subscriptions_stg__subscription_contract"], "model.yoda.subscriptions__synergy_kpi_redeemed_points": ["model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option", "model.yoda.loyalty_stg__enriched_customers", "model.yoda.subscriptions_stg__billing_attempt_response", "model.yoda.subscriptions_stg__subscription_contract"], "model.yoda.subscriptions__synergy_kpi_sms_payment_failure": ["model.yoda.subscriptions_stg__synergy_subs_payment_failure"], "model.yoda.subscriptions__synergy_kpi_sms_upsell": ["model.yoda.sms_stg__subscription_upsell_flow", "model.yoda.subscriptions_stg__subscription_contract_order"], "model.yoda.subscriptions_stg__app_webhooks": ["source.yoda.subscriptions__subscriptions.app_webhooks"], "model.yoda.subscriptions_stg__billing_attempt_response": ["source.yoda.subscriptions__subscriptions.billing_attempt_response"], "model.yoda.subscriptions_stg__cancelation_intent_event": ["source.yoda.subscriptions__subscriptions_retention.cancelation_intent_event"], "model.yoda.subscriptions_stg__cancelation_reason_option": ["source.yoda.subscriptions__subscriptions_retention.cancelation_reason_option"], "model.yoda.subscriptions_stg__customer_journey_event": ["source.yoda.subscriptions__customer_journey.customer_journey_event"], "model.yoda.subscriptions_stg__product": ["source.yoda.subscriptions__subscriptions.product"], "model.yoda.subscriptions_stg__recurrent_event_rule": ["source.yoda.subscriptions__subscriptions.recurrent_event_rule"], "model.yoda.subscriptions_stg__selling_plan": ["source.yoda.subscriptions__subscriptions.selling_plan"], "model.yoda.subscriptions_stg__selling_plan_group": ["source.yoda.subscriptions__subscriptions.selling_plan_group"], "model.yoda.subscriptions_stg__selling_plan_group_product": ["source.yoda.subscriptions__subscriptions.selling_plan_group_product"], "model.yoda.subscriptions_stg__status": ["source.yoda.subscriptions__subscriptions.status"], "model.yoda.subscriptions_stg__store_customers_exports": ["source.yoda.subscriptions__subscriptions.store_customers_exports"], "model.yoda.subscriptions_stg__subscription_contract": ["source.yoda.subscriptions__subscriptions.subscription_contract"], "model.yoda.subscriptions_stg__subscription_contract_line": ["source.yoda.subscriptions__subscriptions.subscription_contract_line"], "model.yoda.subscriptions_stg__subscription_contract_order": ["source.yoda.subscriptions__subscriptions.subscription_contract_order"], "model.yoda.subscriptions_stg__subscription_creation_request": ["source.yoda.subscriptions__subscriptions.subscription_creation_request"], "model.yoda.subscriptions_stg__subscription_line_action": ["source.yoda.subscriptions__subscriptions.subscription_line_action"], "model.yoda.subscriptions_stg__synergy_sms_payment_failure": ["model.yoda.sms__flows_links_clicks"], "model.yoda.subscriptions_stg__synergy_subs_payment_failure": ["model.yoda.subscriptions_stg__billing_attempt_response", "model.yoda.subscriptions_stg__synergy_sms_payment_failure"], "model.yoda.support__review_request": ["model.yoda.analytics___ugc__review_request"], "model.yoda.ugc__export_reviews": ["model.yoda.analytics___ugc_stg__metadata_type", "model.yoda.analytics___ugc_stg__review_metadata", "model.yoda.platform_stg__accounts", "model.yoda.platform_stg__attribute_sets", "model.yoda.platform_stg__custom_attributes", "model.yoda.platform_stg__gtins", "model.yoda.platform_stg__order_lines", "model.yoda.platform_stg__orders", "model.yoda.platform_stg__products", "model.yoda.ugc_stg__anonymous_users", "model.yoda.ugc_stg__comments", "model.yoda.ugc_stg__dirty_words", "model.yoda.ugc_stg__images", "model.yoda.ugc_stg__images", "model.yoda.ugc_stg__moderation_audits", "model.yoda.ugc_stg__mongo_gallery_media", "model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.ugc_stg__review_order_line", "model.yoda.ugc_stg__review_tags", "model.yoda.ugc_stg__reviews_incentivized", "model.yoda.ugc_stg__tags_to_reviews", "model.yoda.ugc_stg__users", "model.yoda.ugc_stg__videos", "model.yoda.ugc_stg__votes"], "model.yoda.ugc__partial_reviewed_orders": ["model.yoda.platform_stg__orders", "model.yoda.ugc_stg__anonymous_users", "model.yoda.ugc_stg__reviews", "model.yoda.ugc_stg__users"], "model.yoda.ugc__reporting_crf": ["model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.ugc_stg__review_contents", "model.yoda.ugc_stg__review_form_field_types", "model.yoda.ugc_stg__review_form_fields"], "model.yoda.ugc__reporting_reviews": ["model.yoda.platform_stg__groups", "model.yoda.platform_stg__products", "model.yoda.ugc_stg__anonymous_users", "model.yoda.ugc_stg__comments", "model.yoda.ugc_stg__dirty_words", "model.yoda.ugc_stg__images", "model.yoda.ugc_stg__moderation_audits", "model.yoda.ugc_stg__mongo_gallery_media", "model.yoda.ugc_stg__relevant_reporting_reviews_accounts", "model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.ugc_stg__review_contents", "model.yoda.ugc_stg__review_form_fields", "model.yoda.ugc_stg__reviews_incentivized", "model.yoda.ugc_stg__users", "model.yoda.ugc_stg__videos", "model.yoda.ugc_stg__votes"], "model.yoda.ugc__shopper_experience_order_aggregation": ["model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v3"], "model.yoda.ugc__shopper_experience_store_aggregation": ["model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v3"], "model.yoda.ugc__shopper_experience_widget_engagement_aggregation": ["model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v3"], "model.yoda.ugc__shopper_experience_widget_order_aggregation": ["model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v3"], "model.yoda.ugc_stg__anonymous_users": ["source.yoda.ugc__yotpoapiprod.anonymous_users"], "model.yoda.ugc_stg__comments": ["source.yoda.ugc__yotpoapiprod.comments"], "model.yoda.ugc_stg__dirty_words": ["source.yoda.ugc__yotpoapiprod.dirty_words"], "model.yoda.ugc_stg__email_authentications": ["source.yoda.ugc__yotpoapiprod.email_authentications"], "model.yoda.ugc_stg__email_types": ["source.yoda.ugc__yotpoapiprod.email_types"], "model.yoda.ugc_stg__images": ["source.yoda.ugc__yotpoapiprod.images"], "model.yoda.ugc_stg__metadata_types": ["source.yoda.ugc__default.metadata_types"], "model.yoda.ugc_stg__moderation_audits": ["source.yoda.ugc__yotpoapiprod.moderation_audits"], "model.yoda.ugc_stg__mongo_gallery_media": ["source.yoda.ugc__default.mongo_gallery_media"], "model.yoda.ugc_stg__reminders": ["source.yoda.ugc__yotpoapiprod.reminders"], "model.yoda.ugc_stg__retailer": ["source.yoda.ugc__retailers_syndication.retailer"], "model.yoda.ugc_stg__review_contents": ["source.yoda.ugc__yotpoapiprod.review_contents"], "model.yoda.ugc_stg__review_form_field_types": ["source.yoda.ugc__yotpoapiprod.review_form_field_types"], "model.yoda.ugc_stg__review_form_fields": ["source.yoda.ugc__yotpoapiprod.review_form_fields"], "model.yoda.ugc_stg__review_metadatas": ["source.yoda.ugc__yotpoapiprod.review_metadatas"], "model.yoda.ugc_stg__review_order_line": ["source.yoda.ugc__yotpoapiprod.review_order_line"], "model.yoda.ugc_stg__review_request_emails": ["source.yoda.ugc__yotpoapiprod.review_request_emails"], "model.yoda.ugc_stg__review_request_sms": ["source.yoda.ugc__yotpoapiprod.review_request_sms"], "model.yoda.ugc_stg__review_request_tokens": ["source.yoda.ugc__yotpoapiprod.review_request_tokens"], "model.yoda.ugc_stg__review_source_types": ["source.yoda.ugc__yotpoapiprod.review_source_types"], "model.yoda.ugc_stg__review_tags": ["source.yoda.ugc__yotpoapiprod.review_tags"], "model.yoda.ugc_stg__review_types": ["source.yoda.ugc__yotpoapiprod.review_types"], "model.yoda.ugc_stg__reviews": ["source.yoda.ugc__yotpoapiprod.reviews"], "model.yoda.ugc_stg__reviews_incentivized": ["source.yoda.ugc__yotpoapiprod.reviews_incentivized"], "model.yoda.ugc_stg__reviews_subjects": ["source.yoda.ugc__yotpoapiprod.reviews_subjects"], "model.yoda.ugc_stg__shares": ["source.yoda.ugc__default.shares"], "model.yoda.ugc_stg__syndicated_accounts": ["source.yoda.ugc__retailers_syndication.syndicated_accounts"], "model.yoda.ugc_stg__tags_to_reviews": ["source.yoda.ugc__yotpoapiprod.tags_to_reviews"], "model.yoda.ugc_stg__users": ["source.yoda.ugc__yotpoapiprod.users"], "model.yoda.ugc_stg__users_email_controls": ["source.yoda.ugc__yotpoapiprod.users_email_controls"], "model.yoda.ugc_stg__videos": ["source.yoda.ugc__yotpoapiprod.videos"], "model.yoda.ugc_stg__votes": ["source.yoda.ugc__yotpoapiprod.votes"], "model.yoda.ugc_stg__relevant_reporting_reviews_accounts": ["model.yoda.platform_stg__accounts", "model.yoda.platform_stg__organizations", "model.yoda.platform_stg__owners_packages", "model.yoda.platform_stg__packages"], "model.yoda.ugc_stg__relevant_reviews_subject": ["model.yoda.ugc_stg__review_source_types", "model.yoda.ugc_stg__review_types", "model.yoda.ugc_stg__reviews", "model.yoda.ugc_stg__reviews_subjects"], "model.yoda.ugc_stg__shopify_shop_reviews_backfill": ["model.yoda.platform_stg__order_lines", "model.yoda.platform_stg__orders", "model.yoda.platform_stg__products", "model.yoda.platform_stg__variants", "model.yoda.ugc_stg__comments", "model.yoda.ugc_stg__moderation_audits", "model.yoda.ugc_stg__retailer", "model.yoda.ugc_stg__review_order_line", "model.yoda.ugc_stg__review_source_types", "model.yoda.ugc_stg__review_types", "model.yoda.ugc_stg__reviews", "model.yoda.ugc_stg__reviews_subjects", "model.yoda.ugc_stg__syndicated_accounts"], "seed.yoda.unit_test__expected__infra_stg__budget__infra_stg__budget": [], "seed.yoda.unit_test__source__infra_stg__budget__infra__costpo_budget": [], "test.yoda.not_null_analytics___cs__account_acv_metrics_daily_date.4418194b48": ["model.yoda.analytics___cs__account_acv_metrics_daily"], "test.yoda.not_null_analytics___cs__account_acv_metrics_daily_account_id.b03e4a2cc0": ["model.yoda.analytics___cs__account_acv_metrics_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__account_acv_metrics_daily_date__account_id.27d3d3f140": ["model.yoda.analytics___cs__account_acv_metrics_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__account_acv_metrics_daily_1.1575f6ea7b": ["model.yoda.analytics___cs__account_acv_metrics_daily"], "test.yoda.unique_analytics___cs__onboarding_project_onboarding_project_id.3f0437a01a": ["model.yoda.analytics___cs__onboarding_project"], "test.yoda.not_null_analytics___cs__onboarding_project_onboarding_project_id.7df9c17a97": ["model.yoda.analytics___cs__onboarding_project"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__onboarding_project_1.54ace170ff": ["model.yoda.analytics___cs__onboarding_project"], "test.yoda.not_null_analytics___cs__opportunity_main_product_change_opportunity_id.bf245743a5": ["model.yoda.analytics___cs__opportunity_main_product_change"], "test.yoda.unique_analytics___cs__opportunity_main_product_change_opportunity_id.6109ea8548": ["model.yoda.analytics___cs__opportunity_main_product_change"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_main_product_change_1.19583c415e": ["model.yoda.analytics___cs__opportunity_main_product_change"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_product_opportunity_id__product_line.f783737ef2": ["model.yoda.analytics___cs__opportunity_product"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_product_1.e4c0f3565c": ["model.yoda.analytics___cs__opportunity_product"], "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_opportunity_id.c634459685": ["model.yoda.analytics___cs__opportunity_won_product_start_date"], "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_product_family_group.917fdcaa6e": ["model.yoda.analytics___cs__opportunity_won_product_start_date"], "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_line_item_start_date.f470b927df": ["model.yoda.analytics___cs__opportunity_won_product_start_date"], "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_line_item_end_date.82eb1f0b82": ["model.yoda.analytics___cs__opportunity_won_product_start_date"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_product_start_date_1.6a0464d835": ["model.yoda.analytics___cs__opportunity_won_product_start_date"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_product_start_date_opportunity_id__product_family_group__line_item_start_date__line_item_end_date.ec93d15186": ["model.yoda.analytics___cs__opportunity_won_product_start_date"], "test.yoda.not_null_analytics___cs__opportunity_won_sale_daily_date.1f35b11114": ["model.yoda.analytics___cs__opportunity_won_sale_daily"], "test.yoda.not_null_analytics___cs__opportunity_won_sale_daily_opportunity_id.b408beca9e": ["model.yoda.analytics___cs__opportunity_won_sale_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_sale_daily_date__opportunity_id__contract_start_date__end_date.7ed338abc0": ["model.yoda.analytics___cs__opportunity_won_sale_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_sale_daily_1.bb22e97a98": ["model.yoda.analytics___cs__opportunity_won_sale_daily"], "test.yoda.not_null_analytics___cs__organization_first_ht_opportunity_organization_key.a242d85366": ["model.yoda.analytics___cs__organization_first_ht_opportunity"], "test.yoda.unique_analytics___cs__organization_first_ht_opportunity_organization_key.5b1b9bcc4f": ["model.yoda.analytics___cs__organization_first_ht_opportunity"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__organization_first_ht_opportunity_1.c8c84488ad": ["model.yoda.analytics___cs__organization_first_ht_opportunity"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___delivery__organization_customer_care_over_time_organization_key__product_family_group__from_date__to_date.6e756fa959": ["model.yoda.analytics___delivery__organization_customer_care_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___delivery__organization_customer_care_over_time_1.4b2077c8c8": ["model.yoda.analytics___delivery__organization_customer_care_over_time"], "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_month.3c1dc7be62": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_organization_key.b821d88829": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_product_family.e4cb8e7b2f": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_organization_product_usage_revenue_monthly_1.ef44731c0c": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__communication_organization_product_usage_revenue_monthly_month__organization_key__product_family.bf6ff694be": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_month.026d89a0b3": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_sms_user_id.b62a4c7ec3": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_app_key.16e9ab87df": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_product_family.ad87a063ce": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_store_product_usage_revenue_monthly_1.5c5f0e646d": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__communication_store_product_usage_revenue_monthly_month__app_key__product_family.0717d818de": ["model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id.3955d66371": ["model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard"], "test.yoda.unique_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id.a8a37c5afd": ["model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_mom_mrr_cycle_dashboard_1.5aa4cbdaf5": ["model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard"], "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id.364e05bcfb": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"], "test.yoda.unique_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id.a36c1e86d3": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_month.a5c93714fe": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_key.089d95d683": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_product_family_group.7c090fccf2": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_recurring_revenue_monthly_1.477f2143f7": ["model.yoda.analytics___finance__organization_product_recurring_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id.0b36519ed9": ["model.yoda.analytics___finance__organization_product_revenue_metrics_monthly"], "test.yoda.unique_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id.7db5b6e5c0": ["model.yoda.analytics___finance__organization_product_revenue_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_metrics_monthly_1.2f90d7ab3e": ["model.yoda.analytics___finance__organization_product_revenue_metrics_monthly"], "test.yoda.not_null_analytics___finance__organization_product_revenue_monthly_organization_product_month_id.47fb0d3e4e": ["model.yoda.analytics___finance__organization_product_revenue_monthly"], "test.yoda.unique_analytics___finance__organization_product_revenue_monthly_organization_product_month_id.0799950b53": ["model.yoda.analytics___finance__organization_product_revenue_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_1.72354ad49e": ["model.yoda.analytics___finance__organization_product_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id.bff94348d9": ["model.yoda.analytics___finance__organization_product_revenue_monthly_lean"], "test.yoda.unique_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id.42b9dc9bbc": ["model.yoda.analytics___finance__organization_product_revenue_monthly_lean"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_lean_1.71eab128e6": ["model.yoda.analytics___finance__organization_product_revenue_monthly_lean"], "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id.a45878ce5f": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"], "test.yoda.unique_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id.aede364eeb": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_revenue_month.8e0a1f5400": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_key.1017b28eef": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_product_family.e052e97e91": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_usage_revenue_monthly_1.2ab4f244bd": ["model.yoda.analytics___finance__organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_revenue_monthly_organization_month_id.25dd95a770": ["model.yoda.analytics___finance__organization_revenue_monthly"], "test.yoda.unique_analytics___finance__organization_revenue_monthly_organization_month_id.abf005df45": ["model.yoda.analytics___finance__organization_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_revenue_monthly_month.b3e06b2960": ["model.yoda.analytics___finance__organization_revenue_monthly"], "test.yoda.not_null_analytics___finance__organization_revenue_monthly_organization_key.711b3b75ec": ["model.yoda.analytics___finance__organization_revenue_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_revenue_monthly_1.02e1d386c2": ["model.yoda.analytics___finance__organization_revenue_monthly"], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_account_id.e257d1cdf9": ["model.yoda.analytics___finance__rate_plan_mrr_details"], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_subscription_id.d7506102fa": ["model.yoda.analytics___finance__rate_plan_mrr_details"], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_product_id.ac6a2d9bbd": ["model.yoda.analytics___finance__rate_plan_mrr_details"], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_rateplan_id.57f6621ea3": ["model.yoda.analytics___finance__rate_plan_mrr_details"], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_product_rateplan_id.500d089fdf": ["model.yoda.analytics___finance__rate_plan_mrr_details"], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_mrr_in_usd.bc18c7651c": ["model.yoda.analytics___finance__rate_plan_mrr_details"], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_termed_to_date.2bd8b5b772": ["model.yoda.analytics___finance__rate_plan_mrr_details"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__rate_plan_mrr_details_1.799c41c71e": ["model.yoda.analytics___finance__rate_plan_mrr_details"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__rate_plan_mrr_details_subscription_name__version__product_id__rateplan_id__effective_start_date.5b4f9162c2": ["model.yoda.analytics___finance__rate_plan_mrr_details"], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id.89c326b2fe": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_field_name.9a5d537a78": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_from_date.5e660ce021": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_to_date.529ba21ca1": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_from_month.bfa7f02d98": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_to_month.f3cd50d029": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_field_value.97fa59eab2": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_csm_free_months.2d375c8372": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sales_free_months.c364397548": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sf_event.f107b697c7": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__sf_opportunity_free_month_over_time_1.801fada325": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id__field_name__from_date.9f53a5d6dd": ["model.yoda.analytics___finance__sf_opportunity_free_month_over_time"], "test.yoda.not_null_analytics___finance__shopify_billing_event_shopify_shop_id.355bde23f8": ["model.yoda.analytics___finance__shopify_billing_event"], "test.yoda.not_null_analytics___finance__shopify_billing_event_charge_id.c4b26f57e1": ["model.yoda.analytics___finance__shopify_billing_event"], "test.yoda.not_null_analytics___finance__shopify_billing_event_is_none_app_key.4cdf1fa1bc": ["model.yoda.analytics___finance__shopify_billing_event"], "test.yoda.not_null_analytics___finance__shopify_billing_event_is_single_app_key.e76ac6b65b": ["model.yoda.analytics___finance__shopify_billing_event"], "test.yoda.not_null_analytics___finance__shopify_billing_event_is_multiple_app_key.4bc8faa3c9": ["model.yoda.analytics___finance__shopify_billing_event"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_event_1.14c9c11acc": ["model.yoda.analytics___finance__shopify_billing_event"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_event_shopify_shop_id__charge_id__event_type__product_family__created_at.14a07667e5": ["model.yoda.analytics___finance__shopify_billing_event"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date.80a4a112b5": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_product_family.cfe1a729d6": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_organization_key.0b8560a10d": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_daily_1.9437b53b81": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date__product_family__organization_key.4c317f1b28": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month.ab0f4e4b9f": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_product_family.68bec4958a": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_key.22b48d6062": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id.7580b2f8c9": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"], "test.yoda.unique_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id.bf3b8cb805": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_monthly_1.760695542b": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month__product_family__organization_key.c7d76a868e": ["model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_date.e65bccf920": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key.5058e9a060": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_product_family.f578430442": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_revenue_in_usd.fceedf0ceb": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_1.982337dfc4": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key__date__product_family.aa222c42f3": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_month.f84eced8d0": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key.583fc74b41": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_product_family.4b9d031a1e": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_revenue_in_usd.8d031b5afd": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_1.55d563e882": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key__month__product_family.63a60622bd": ["model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_app_key.e46adc341d": ["model.yoda.analytics___finance__shopify_billing_store_mapping"], "test.yoda.unique_analytics___finance__shopify_billing_store_mapping_app_key.5a1ab13472": ["model.yoda.analytics___finance__shopify_billing_store_mapping"], "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_organization_key.924d08a96d": ["model.yoda.analytics___finance__shopify_billing_store_mapping"], "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_shopify_shop_id.d92072b862": ["model.yoda.analytics___finance__shopify_billing_store_mapping"], "test.yoda.unique_analytics___finance__shopify_billing_store_mapping_shopify_shop_id.7e95308156": ["model.yoda.analytics___finance__shopify_billing_store_mapping"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_mapping_1.fda37bd0a7": ["model.yoda.analytics___finance__shopify_billing_store_mapping"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id.a4dd5ea379": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_product_family.98753fc505": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_at.cdf62f89f6": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_date.793b14fe6a": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_deactivated_over_time_1.0851439894": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id__product_family__deactivated_at.cab4546bb9": ["model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date.65c7ac4438": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_product_family.a5a4e09a24": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_shopify_shop_id.e09fcdf7df": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_daily_1.05fd7f6636": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date__product_family__shopify_shop_id.3b8d5e706f": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month.212843bfa9": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_product_family.87c5fce17f": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_shopify_shop_id.28e7252926": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_monthly_1.fc96fb0eb4": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month__product_family__shopify_shop_id.3fe2ba6d7a": ["model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id.9fc3c5bab0": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_product_family.a2b27d0007": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_at.6c4680e529": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_date.a853981d04": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_uninstalled_over_time_1.0bc44b77a9": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id__product_family__uninstalled_at.6872d194cb": ["model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_charge_id.e81293333a": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id.80e688b65f": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_product_family.a620b88ace": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_date.6c3494a44d": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_revenue_in_usd.9a1ec3e7a9": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_charge_1.5e505ed523": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id__charge_id.424f41cfad": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_charge"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_date.6f5c8dfb76": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id.150d8c5558": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_product_family.37d7c0675b": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_revenue_in_usd.5473d6c6a4": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_daily_1.6e178a42f2": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id__date__product_family.00b1e023a3": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_month.6c21979a25": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id.d35b15b24b": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_product_family.5839116aa9": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_revenue_in_usd.fd40f220be": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_1.ede3eb3b2d": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id__month__product_family.ef6166cce5": ["model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_subscription_mrr_over_time_1.8d6adb1920": ["model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_subscription_mrr_over_time_shopify_shop_id__charge_id__event_category__event_action__product_family__from_time.cb5d27880a": ["model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time"], "test.yoda.not_null_analytics___finance__shopify_store_mapping_shopify_shop_id.bd2ce1037f": ["model.yoda.analytics___finance__shopify_store_mapping"], "test.yoda.unique_analytics___finance__shopify_store_mapping_shopify_shop_id.69a26f816b": ["model.yoda.analytics___finance__shopify_store_mapping"], "test.yoda.not_null_analytics___finance__shopify_store_mapping_is_single_app_key.d65d95efba": ["model.yoda.analytics___finance__shopify_store_mapping"], "test.yoda.not_null_analytics___finance__shopify_store_mapping_is_multiple_app_key.eab434a117": ["model.yoda.analytics___finance__shopify_store_mapping"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_store_mapping_1.2b664f5779": ["model.yoda.analytics___finance__shopify_store_mapping"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_account_1.d6a6bfb851": ["model.yoda.analytics___finance__zuora_account"], "test.yoda.unique_analytics___finance__zuora_invoice_invoice_id.4a2d31e824": ["model.yoda.analytics___finance__zuora_invoice"], "test.yoda.not_null_analytics___finance__zuora_invoice_invoice_id.7d3f682520": ["model.yoda.analytics___finance__zuora_invoice"], "test.yoda.unique_analytics___finance__zuora_invoice_invoice_number.749c6fd322": ["model.yoda.analytics___finance__zuora_invoice"], "test.yoda.not_null_analytics___finance__zuora_invoice_invoice_number.e5c0b4eb1e": ["model.yoda.analytics___finance__zuora_invoice"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_1.77faa035ea": ["model.yoda.analytics___finance__zuora_invoice"], "test.yoda.unique_analytics___finance__zuora_invoice_item_invoice_item_id.bab2a249bc": ["model.yoda.analytics___finance__zuora_invoice_item"], "test.yoda.not_null_analytics___finance__zuora_invoice_item_invoice_item_id.9f5069fe37": ["model.yoda.analytics___finance__zuora_invoice_item"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_item_1.3dda76729d": ["model.yoda.analytics___finance__zuora_invoice_item"], "test.yoda.unique_analytics___finance__zuora_order_mrr_details_order_mrr_id.d19fb7789d": ["model.yoda.analytics___finance__zuora_order_mrr_details"], "test.yoda.not_null_analytics___finance__zuora_order_mrr_details_order_mrr_id.8d58fc0e52": ["model.yoda.analytics___finance__zuora_order_mrr_details"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_order_mrr_details_1.19db9b2900": ["model.yoda.analytics___finance__zuora_order_mrr_details"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_plan_rank_daily_1.84ed5d3e4a": ["model.yoda.analytics___finance__zuora_organization_plan_rank_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_plan_rank_daily_date__organization_key__product_family__is_core_plan__plan_rank.c1756e927e": ["model.yoda.analytics___finance__zuora_organization_plan_rank_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id.4cbb818989": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"], "test.yoda.unique_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id.66f9a5e39a": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"], "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_month.5774e450d3": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"], "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_key.0056de1a3b": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"], "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_group.42833e7703": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_group_mrr_monthly_1.cc6934cfca": ["model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly"], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_date.dd206d41fe": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_organization_key.df2381b395": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_product_family.26c4e497ab": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_main_plan_name.63bd73d114": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_is_self_service.6b7df5683c": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_is_annual_billing.6f279f4e03": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_original_mrr_in_usd.d32e6c745d": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_effective_mrr_in_usd.d974e9d937": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_daily_1.95defc894a": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_daily_date__organization_key__product_family.6e113a0400": ["model.yoda.analytics___finance__zuora_organization_product_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_month.8cc17141cb": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_organization_key.850681ba82": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_product_family.a5f0067ddf": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_monthly_1.bf82b2f0cb": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_monthly_month__organization_key__product_family.717427adc4": ["model.yoda.analytics___finance__zuora_organization_product_mrr_monthly"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_invoice_number.8835a3cc46": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_product_family.affec2c1f0": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_organization_key.7caa0f4783": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_date.6d42e97561": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_charge_amount_in_usd.095a7296e2": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_charge_1.8c1d714744": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_charge_invoice_number__product_family.1ed5e6a046": ["model.yoda.analytics___finance__zuora_organization_product_usage_charge"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_date.4fbdfebfdd": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_organization_key.f81812a892": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_product_family.72785aeb22": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_charge_amount_in_usd.bc2675dae2": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_daily_1.d1fa023f1c": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_daily_date__organization_key__product_family.8102f75a64": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_month.d4aa6a6008": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_organization_key.331127cc07": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_product_family.4ec26fbdeb": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_charge_amount_in_usd.c10db1799f": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_monthly_1.44bcf8b756": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_monthly_month__organization_key__product_family.d3fa852547": ["model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly"], "test.yoda.unique_analytics___finance__zuora_parent_organization_organization_key.3f1e389552": ["model.yoda.analytics___finance__zuora_parent_organization"], "test.yoda.not_null_analytics___finance__zuora_parent_organization_organization_key.c453b0d5f7": ["model.yoda.analytics___finance__zuora_parent_organization"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_parent_organization_1.1a67048426": ["model.yoda.analytics___finance__zuora_parent_organization"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_product_1.87c20e8458": ["model.yoda.analytics___finance__zuora_product"], "test.yoda.unique_analytics___finance__zuora_rateplan_charge_rateplan_charge_id.79f2e88568": ["model.yoda.analytics___finance__zuora_rateplan_charge"], "test.yoda.not_null_analytics___finance__zuora_rateplan_charge_rateplan_charge_id.59142df7a4": ["model.yoda.analytics___finance__zuora_rateplan_charge"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_rateplan_charge_1.b4c5b9b6f7": ["model.yoda.analytics___finance__zuora_rateplan_charge"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_1.86ae8c4469": ["model.yoda.analytics___finance__zuora_subscription"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_date.0a9a5a82a8": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_subscription_id.f00d617682": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_product_id.94153512f8": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_effective_mrr.639f26f005": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_free_month_mrr_impact.59303b1b08": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_sales_free_month_mrr_impact.dc17f47db9": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_csm_free_month_mrr_impact.596f52759a": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_main_plan_name.682c024eec": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_is_main_plan_self_service.eb41f40585": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_daily_1.1bc0ae99c9": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_daily_date__subscription_id__product_id.b30b14e644": ["model.yoda.analytics___finance__zuora_subscription_mrr_daily"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_month.71fe49dc9b": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_subscription_id.f2bbc77ad1": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_product_id.2048dae403": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_monthly_1.5a085110c7": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_monthly_month__subscription_id__product_id.e0f4250103": ["model.yoda.analytics___finance__zuora_subscription_mrr_monthly"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_account_id.02b85d3d19": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_organization_key.5b1c15d584": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_subscription_name.7cbbdea5ad": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_plan_name.720ed4a12d": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_product_family.d81c469f76": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_from_date.8720ccc234": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_to_date.004ad41083": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_is_self_service.f6cadb6bc4": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_is_annual_billing.b413810428": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_over_time_1.9fa4a4390b": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_over_time_subscription_name__product_id__from_date__to_date.0ac5274855": ["model.yoda.analytics___finance__zuora_subscription_mrr_over_time"], "test.yoda.not_null_analytics___finance_stg__order_deleted.661ba0afad": ["model.yoda.analytics___finance_stg__order"], "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_shop_id.20f441d8b1": ["model.yoda.analytics___finance_stg__shopify_billing_event"], "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_charge_id.f5d526b8d9": ["model.yoda.analytics___finance_stg__shopify_billing_event"], "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_event_category.89f1dfa8ec": ["model.yoda.analytics___finance_stg__shopify_billing_event"], "test.yoda.accepted_values_analytics___finance_stg__shopify_billing_event_event_category__USAGE_CHARGE__SUBSCRIPTION_CHARGE__ONE_TIME_CHARGE__RELATIONSHIP__CREDIT.6158d995df": ["model.yoda.analytics___finance_stg__shopify_billing_event"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__shopify_billing_event_1.0498648224": ["model.yoda.analytics___finance_stg__shopify_billing_event"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance_stg__shopify_billing_event_shop_id__charge_id__event_type__product_family__created_at.8b8cd3e1ec": ["model.yoda.analytics___finance_stg__shopify_billing_event"], "test.yoda.unique_analytics___finance_stg__zuora_account_account_id.74086a400e": ["model.yoda.analytics___finance_stg__zuora_account"], "test.yoda.not_null_analytics___finance_stg__zuora_account_account_id.b8514ccbca": ["model.yoda.analytics___finance_stg__zuora_account"], "test.yoda.accepted_values_analytics___finance_stg__zuora_account_account_status__Active__Canceled.1aa0c6e016": ["model.yoda.analytics___finance_stg__zuora_account"], "test.yoda.not_null_analytics___finance_stg__zuora_account_yotpo_legal_entity.e323f6effe": ["model.yoda.analytics___finance_stg__zuora_account"], "test.yoda.not_null_analytics___finance_stg__zuora_account_payment_terms.b99de5f937": ["model.yoda.analytics___finance_stg__zuora_account"], "test.yoda.unique_analytics___finance_stg__zuora_contact_contact_id.ad234de390": ["model.yoda.analytics___finance_stg__zuora_contact"], "test.yoda.not_null_analytics___finance_stg__zuora_contact_contact_id.fa6c7bf40a": ["model.yoda.analytics___finance_stg__zuora_contact"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_contact_1.b4fd878d84": ["model.yoda.analytics___finance_stg__zuora_contact"], "test.yoda.unique_analytics___finance_stg__zuora_invoice_invoice_id.af69e576b7": ["model.yoda.analytics___finance_stg__zuora_invoice"], "test.yoda.not_null_analytics___finance_stg__zuora_invoice_invoice_id.fa486ec045": ["model.yoda.analytics___finance_stg__zuora_invoice"], "test.yoda.unique_analytics___finance_stg__zuora_invoice_invoice_number.a8d4d18316": ["model.yoda.analytics___finance_stg__zuora_invoice"], "test.yoda.not_null_analytics___finance_stg__zuora_invoice_invoice_number.d0b22978c8": ["model.yoda.analytics___finance_stg__zuora_invoice"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_1.48f72abb55": ["model.yoda.analytics___finance_stg__zuora_invoice"], "test.yoda.unique_analytics___finance_stg__zuora_invoice_item_invoice_item_id.4bb1dce193": ["model.yoda.analytics___finance_stg__zuora_invoice_item"], "test.yoda.not_null_analytics___finance_stg__zuora_invoice_item_invoice_item_id.efddab42e8": ["model.yoda.analytics___finance_stg__zuora_invoice_item"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_item_1.0aa25db95d": ["model.yoda.analytics___finance_stg__zuora_invoice_item"], "test.yoda.unique_analytics___finance_stg__zuora_order_order_id.d60a00781c": ["model.yoda.analytics___finance_stg__zuora_order"], "test.yoda.not_null_analytics___finance_stg__zuora_order_order_id.21f0f9efb1": ["model.yoda.analytics___finance_stg__zuora_order"], "test.yoda.unique_analytics___finance_stg__zuora_order_action_order_action_id.95c330a09f": ["model.yoda.analytics___finance_stg__zuora_order_action"], "test.yoda.not_null_analytics___finance_stg__zuora_order_action_order_action_id.5eade19f0b": ["model.yoda.analytics___finance_stg__zuora_order_action"], "test.yoda.unique_analytics___finance_stg__zuora_order_mrr_order_mrr_id.e6f1cb1b9d": ["model.yoda.analytics___finance_stg__zuora_order_mrr"], "test.yoda.not_null_analytics___finance_stg__zuora_order_mrr_order_mrr_id.da423c9870": ["model.yoda.analytics___finance_stg__zuora_order_mrr"], "test.yoda.unique_analytics___finance_stg__zuora_product_product_id.9ede4941cc": ["model.yoda.analytics___finance_stg__zuora_product"], "test.yoda.not_null_analytics___finance_stg__zuora_product_product_id.b512767e93": ["model.yoda.analytics___finance_stg__zuora_product"], "test.yoda.unique_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id.e0702601de": ["model.yoda.analytics___finance_stg__zuora_product_rateplan"], "test.yoda.not_null_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id.de6faab685": ["model.yoda.analytics___finance_stg__zuora_product_rateplan"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_1.e053e3685d": ["model.yoda.analytics___finance_stg__zuora_product_rateplan"], "test.yoda.unique_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id.e3c779bfac": ["model.yoda.analytics___finance_stg__zuora_product_rateplan_charge"], "test.yoda.not_null_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id.fa146f268c": ["model.yoda.analytics___finance_stg__zuora_product_rateplan_charge"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_charge_1.9166ad1b55": ["model.yoda.analytics___finance_stg__zuora_product_rateplan_charge"], "test.yoda.unique_analytics___finance_stg__zuora_rateplan_rateplan_id.90cc0ea3f6": ["model.yoda.analytics___finance_stg__zuora_rateplan"], "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_rateplan_id.4fafd2bd68": ["model.yoda.analytics___finance_stg__zuora_rateplan"], "test.yoda.unique_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id.c7aec7be38": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"], "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id.b9e1778fcb": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"], "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_charge_model.a0921edb56": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"], "test.yoda.accepted_values_analytics___finance_stg__zuora_rateplan_charge_charge_model__Overage_Pricing__Per_Unit_Pricing__Discount_Percentage__Flat_Fee_Pricing__Tiered_Pricing.2354526248": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"], "test.yoda.accepted_values_analytics___finance_stg__zuora_rateplan_charge_billing_period__Annual__Eighteen_Months__Month__Semi_Annual__Quarter__None.172bea7771": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_1.0807747d55": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge"], "test.yoda.unique_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id.d19630351a": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"], "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id.0d1fcbfddb": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_tier_1.d5bc2f0a76": ["model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"], "test.yoda.unique_analytics___finance_stg__zuora_subscription_subscription_id.8f02b21c73": ["model.yoda.analytics___finance_stg__zuora_subscription"], "test.yoda.not_null_analytics___finance_stg__zuora_subscription_subscription_id.9ae0f2c105": ["model.yoda.analytics___finance_stg__zuora_subscription"], "test.yoda.unique_analytics___gtm__acv_goal_daily_goal_id.9410b2f154": ["model.yoda.analytics___gtm__acv_goal_daily"], "test.yoda.not_null_analytics___gtm__acv_goal_daily_goal_id.e78dc00b51": ["model.yoda.analytics___gtm__acv_goal_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__acv_goal_daily_1.654d6fffed": ["model.yoda.analytics___gtm__acv_goal_daily"], "test.yoda.unique_analytics___gtm__crossell_opportunity_attribution_opportunity_id.40fe8a331a": ["model.yoda.analytics___gtm__crossell_opportunity_attribution"], "test.yoda.not_null_analytics___gtm__crossell_opportunity_attribution_opportunity_id.c168a5b81a": ["model.yoda.analytics___gtm__crossell_opportunity_attribution"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__crossell_opportunity_attribution_1.183d178d52": ["model.yoda.analytics___gtm__crossell_opportunity_attribution"], "test.yoda.not_null_analytics___gtm__new_sale_opportunity_attribution_opportunity_id.01ced5985e": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_1.5bc8f0b388": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_opportunity_id__action_name__action_time.7c1ffde6a7": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution"], "test.yoda.not_null_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id.db68dc0718": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_action_1.79f8329006": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id__action_name__action_time.7faae1e6b4": ["model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"], "test.yoda.unique_analytics___gtm__opportunity_attribution_opportunity_id.cacc74925a": ["model.yoda.analytics___gtm__opportunity_attribution"], "test.yoda.not_null_analytics___gtm__opportunity_attribution_opportunity_id.a6aeee0f9e": ["model.yoda.analytics___gtm__opportunity_attribution"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_attribution_1.d339eb76c5": ["model.yoda.analytics___gtm__opportunity_attribution"], "test.yoda.unique_analytics___gtm__opportunity_goal_opportunity_goal_id.b115ad6ef5": ["model.yoda.analytics___gtm__opportunity_goal"], "test.yoda.not_null_analytics___gtm__opportunity_goal_opportunity_goal_id.899650c727": ["model.yoda.analytics___gtm__opportunity_goal"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_goal_1.81e56d3c53": ["model.yoda.analytics___gtm__opportunity_goal"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opporunity_dg_funnel_1.0bbb908a88": ["model.yoda.analytics___gtm__opporunity_dg_funnel"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__opporunity_dg_funnel_opportunity_id__first_stage_id__product_family_group__attribution_channel.9360208eb9": ["model.yoda.analytics___gtm__opporunity_dg_funnel"], "test.yoda.unique_analytics___gtm__sal_goal_daily_goal_id.b949913273": ["model.yoda.analytics___gtm__sal_goal_daily"], "test.yoda.not_null_analytics___gtm__sal_goal_daily_goal_id.5b28f870f4": ["model.yoda.analytics___gtm__sal_goal_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__sal_goal_daily_1.e70cc10029": ["model.yoda.analytics___gtm__sal_goal_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_acv_goals_1.50f5dd15f1": ["model.yoda.analytics___gtm_stg__stg_nerd_acv_goals"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_sal_goals_1.8f2d9dda30": ["model.yoda.analytics___gtm_stg__stg_nerd_sal_goals"], "test.yoda.unique_analytics___gtm_stg__acv_goal_acv_goal_id.6915bc2185": ["model.yoda.analytics___gtm_stg__acv_goal"], "test.yoda.not_null_analytics___gtm_stg__acv_goal_acv_goal_id.87b0998597": ["model.yoda.analytics___gtm_stg__acv_goal"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__acv_goal_1.64623d27e6": ["model.yoda.analytics___gtm_stg__acv_goal"], "test.yoda.unique_analytics___gtm_stg__sal_goal_sal_goal_id.d38ebcece5": ["model.yoda.analytics___gtm_stg__sal_goal"], "test.yoda.not_null_analytics___gtm_stg__sal_goal_sal_goal_id.14ecb5ebf6": ["model.yoda.analytics___gtm_stg__sal_goal"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__sal_goal_1.aef318a37a": ["model.yoda.analytics___gtm_stg__sal_goal"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__daily_merchant_merchant_id__date.a9d88b814a": ["model.yoda.analytics___loyalty__daily_merchant"], "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_date.eed0931582": ["model.yoda.analytics___loyalty__earning_rule_activation_daily"], "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_earning_rule_id.99ec561ad9": ["model.yoda.analytics___loyalty__earning_rule_activation_daily"], "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_is_active.b98e9fc3ea": ["model.yoda.analytics___loyalty__earning_rule_activation_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__earning_rule_activation_daily_1.84ddeefdea": ["model.yoda.analytics___loyalty__earning_rule_activation_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__earning_rule_activation_daily_earning_rule_id__date.95c46309c3": ["model.yoda.analytics___loyalty__earning_rule_activation_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_customers_vip_tiers_stats_1.b1984b1fea": ["model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__ht_ss_retention_cohort_merchant_id__month__closing_plan_name_in_month.964b284f0a": ["model.yoda.analytics___loyalty__ht_ss_retention_cohort"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_ss_retention_cohort_1.dd0693fc71": ["model.yoda.analytics___loyalty__ht_ss_retention_cohort"], "test.yoda.unique_analytics___loyalty__merchant_merchant_id.6aca172b89": ["model.yoda.analytics___loyalty__merchant"], "test.yoda.not_null_analytics___loyalty__merchant_merchant_id.5dc0ecbed1": ["model.yoda.analytics___loyalty__merchant"], "test.yoda.unique_analytics___loyalty__merchant_app_key.13e19a4d5a": ["model.yoda.analytics___loyalty__merchant"], "test.yoda.not_null_analytics___loyalty__merchant_app_key.f4a09494c5": ["model.yoda.analytics___loyalty__merchant"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_1.5cc4bc28dc": ["model.yoda.analytics___loyalty__merchant"], "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_date.031752251c": ["model.yoda.analytics___loyalty__merchant_activeness_daily"], "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_merchant_id.32921abf4a": ["model.yoda.analytics___loyalty__merchant_activeness_daily"], "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_app_key.f97a434059": ["model.yoda.analytics___loyalty__merchant_activeness_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_activeness_daily_date__merchant_id__app_key.e6677194db": ["model.yoda.analytics___loyalty__merchant_activeness_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_activeness_daily_1.b6d3fd218c": ["model.yoda.analytics___loyalty__merchant_activeness_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_metrics_daily_merchant_id__date.ad08299fa2": ["model.yoda.analytics___loyalty__merchant_metrics_daily"], "test.yoda.not_null_analytics___loyalty__merchant_monthly_element_activation_month.a9a9a39eef": ["model.yoda.analytics___loyalty__merchant_monthly_element_activation"], "test.yoda.not_null_analytics___loyalty__merchant_monthly_element_activation_merchant_id.05167d806a": ["model.yoda.analytics___loyalty__merchant_monthly_element_activation"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_monthly_element_activation_1.6ae24b632d": ["model.yoda.analytics___loyalty__merchant_monthly_element_activation"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_monthly_element_activation_merchant_id__month__redemption_source.9b23889c3d": ["model.yoda.analytics___loyalty__merchant_monthly_element_activation"], "test.yoda.not_null_analytics___loyalty__merchant_plan_daily_date.176dbdaa87": ["model.yoda.analytics___loyalty__merchant_plan_daily"], "test.yoda.not_null_analytics___loyalty__merchant_plan_daily_merchant_id.4689cfe27e": ["model.yoda.analytics___loyalty__merchant_plan_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_daily_merchant_id__date.910e095295": ["model.yoda.analytics___loyalty__merchant_plan_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_daily_1.6645c73023": ["model.yoda.analytics___loyalty__merchant_plan_daily"], "test.yoda.not_null_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id.0ddab5de7a": ["model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id__month__closing_plan_name_in_month.b4d278a957": ["model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_1.f21d5798b2": ["model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly"], "test.yoda.not_null_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id.0de7bae5e7": ["model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"], "test.yoda.not_null_analytics___loyalty__merchant_plan_metrics_cohort_plan_name.80a712c76b": ["model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_metrics_cohort_1.0cd56bd5e4": ["model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id__plan_name.32ba8dcd0e": ["model.yoda.analytics___loyalty__merchant_plan_metrics_cohort"], "test.yoda.not_null_analytics___loyalty__merchant_plan_monthly_month.405e74f036": ["model.yoda.analytics___loyalty__merchant_plan_monthly"], "test.yoda.not_null_analytics___loyalty__merchant_plan_monthly_merchant_id.d4a95f2f42": ["model.yoda.analytics___loyalty__merchant_plan_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_monthly_merchant_id__month.384704e014": ["model.yoda.analytics___loyalty__merchant_plan_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_monthly_1.febd544ad4": ["model.yoda.analytics___loyalty__merchant_plan_monthly"], "test.yoda.not_null_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name.1f55d9d268": ["model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_retention_cohort_monthly_1.8e614976e5": ["model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name__month__merchant_id.a6b68aa897": ["model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly"], "test.yoda.not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id.33677a28c7": ["model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"], "test.yoda.not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_plan_name.afbdee353c": ["model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id__month__plan_name.8c163c6b8d": ["model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_value_cohort_monthly_1.a9b253fd71": ["model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly"], "test.yoda.not_null_analytics___loyalty__organization_metrics_monthly_month.0e1b1f6483": ["model.yoda.analytics___loyalty__organization_metrics_monthly"], "test.yoda.not_null_analytics___loyalty__organization_metrics_monthly_organization_key.810a30761f": ["model.yoda.analytics___loyalty__organization_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__organization_metrics_monthly_organization_key__month.8c4d999668": ["model.yoda.analytics___loyalty__organization_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__organization_metrics_monthly_1.288dc7faac": ["model.yoda.analytics___loyalty__organization_metrics_monthly"], "test.yoda.not_null_analytics___loyalty__plan_metrics_daily_date.65fd4e6c00": ["model.yoda.analytics___loyalty__plan_metrics_daily"], "test.yoda.not_null_analytics___loyalty__plan_metrics_daily_plan_name.0be963a660": ["model.yoda.analytics___loyalty__plan_metrics_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_daily_1.13a87e3ad1": ["model.yoda.analytics___loyalty__plan_metrics_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_daily_date__did_upgrade_first_day__plan_name__plan_prior_to_change__changes__platform__first_plan_ever__is_ht_ss.7aa15dd6bd": ["model.yoda.analytics___loyalty__plan_metrics_daily"], "test.yoda.not_null_analytics___loyalty__plan_metrics_monthly_month.b6e5e44a1f": ["model.yoda.analytics___loyalty__plan_metrics_monthly"], "test.yoda.not_null_analytics___loyalty__plan_metrics_monthly_opening_plan_id_in_month.23d6d6c34e": ["model.yoda.analytics___loyalty__plan_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_monthly_1.3b0ceb962e": ["model.yoda.analytics___loyalty__plan_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_monthly_month__did_upgrade_first_day_in_month__closing_plan_name_in_month__opening_plan_name_in_month__closing_plan_id_in_month__opening_plan_id_in_month__plan_changes__platform__is_ht_ss.88aa8d2f4b": ["model.yoda.analytics___loyalty__plan_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__point_expiration_policy_settings_over_time_1.102e032ee9": ["model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__point_expiration_policy_settings_over_time_merchant_id__from_date.6873ddf781": ["model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time"], "test.yoda.not_null_analytics___loyalty__redemption_details_redemption_option_id.e2bb331bd3": ["model.yoda.analytics___loyalty__redemption_details"], "test.yoda.not_null_analytics___loyalty__redemption_details_point_redemption_id.e14549b0e0": ["model.yoda.analytics___loyalty__redemption_details"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__redemption_details_redemption_option_id__point_redemption_id.3abfe4b96b": ["model.yoda.analytics___loyalty__redemption_details"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__redemption_details_1.e5d3b536f8": ["model.yoda.analytics___loyalty__redemption_details"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_1.fe738f9e2f": ["model.yoda.analytics___loyalty_stg__earning_rule"], "test.yoda.unique_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id.a213594f77": ["model.yoda.analytics___loyalty_stg__earning_rule_activation_history"], "test.yoda.not_null_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id.4a13d15529": ["model.yoda.analytics___loyalty_stg__earning_rule_activation_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_activation_history_1.547fa3e6f0": ["model.yoda.analytics___loyalty_stg__earning_rule_activation_history"], "test.yoda.unique_analytics___loyalty_stg__loyalty_account_app_key.6790b9b328": ["model.yoda.analytics___loyalty_stg__loyalty_account"], "test.yoda.not_null_analytics___loyalty_stg__loyalty_account_app_key.2017eceb76": ["model.yoda.analytics___loyalty_stg__loyalty_account"], "test.yoda.unique_analytics___loyalty_stg__loyalty_account_merchant_id.4f7bd57481": ["model.yoda.analytics___loyalty_stg__loyalty_account"], "test.yoda.not_null_analytics___loyalty_stg__loyalty_account_merchant_id.bf429bd432": ["model.yoda.analytics___loyalty_stg__loyalty_account"], "test.yoda.unique_analytics___loyalty_stg__loyalty_plan_plan_id.d1f8c825e4": ["model.yoda.analytics___loyalty_stg__loyalty_plan"], "test.yoda.not_null_analytics___loyalty_stg__loyalty_plan_plan_id.4557ee26db": ["model.yoda.analytics___loyalty_stg__loyalty_plan"], "test.yoda.unique_analytics___loyalty_stg__loyalty_plan_plan_name.33743011e6": ["model.yoda.analytics___loyalty_stg__loyalty_plan"], "test.yoda.not_null_analytics___loyalty_stg__loyalty_plan_plan_name.2a78efbd09": ["model.yoda.analytics___loyalty_stg__loyalty_plan"], "test.yoda.unique_analytics___loyalty_stg__loyalty_subscription_subscription_id.39fea8d031": ["model.yoda.analytics___loyalty_stg__loyalty_subscription"], "test.yoda.not_null_analytics___loyalty_stg__loyalty_subscription_subscription_id.8bac1650ea": ["model.yoda.analytics___loyalty_stg__loyalty_subscription"], "test.yoda.unique_analytics___loyalty_stg__merchant_merchant_id.ca6c6e422c": ["model.yoda.analytics___loyalty_stg__merchant"], "test.yoda.not_null_analytics___loyalty_stg__merchant_merchant_id.847c98c38a": ["model.yoda.analytics___loyalty_stg__merchant"], "test.yoda.not_null_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id.d0e9261f3f": ["model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"], "test.yoda.not_null_analytics___loyalty_stg__merchant_segment_event_over_time_event_type.bac00dd15b": ["model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id__event_type__from_time.2920e6e030": ["model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__merchant_segment_event_over_time_1.39c77c7047": ["model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"], "test.yoda.unique_analytics___loyalty_stg__perk_perk_id.f463a4e555": ["model.yoda.analytics___loyalty_stg__perk"], "test.yoda.not_null_analytics___loyalty_stg__perk_perk_id.b775b7c303": ["model.yoda.analytics___loyalty_stg__perk"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__perk_1.e6f19d425a": ["model.yoda.analytics___loyalty_stg__perk"], "test.yoda.unique_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id.d90f76110c": ["model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"], "test.yoda.not_null_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id.ab21c772b0": ["model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_1.a080f988c6": ["model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_snapshot_1.ddff4a7995": ["model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot"], "test.yoda.unique_analytics___loyalty_stg__point_redemption_point_redemption_id.bdf901ad55": ["model.yoda.analytics___loyalty_stg__point_redemption"], "test.yoda.not_null_analytics___loyalty_stg__point_redemption_point_redemption_id.eda763cdab": ["model.yoda.analytics___loyalty_stg__point_redemption"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_redemption_1.2614f85a39": ["model.yoda.analytics___loyalty_stg__point_redemption"], "test.yoda.unique_analytics___loyalty_stg__processor_id.2a5131e45e": ["model.yoda.analytics___loyalty_stg__processor"], "test.yoda.not_null_analytics___loyalty_stg__processor_id.06047cae7c": ["model.yoda.analytics___loyalty_stg__processor"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__processor_1.dd1d185365": ["model.yoda.analytics___loyalty_stg__processor"], "test.yoda.unique_analytics___loyalty_stg__purchase_purchase_id.a3f9c98703": ["model.yoda.analytics___loyalty_stg__purchase"], "test.yoda.not_null_analytics___loyalty_stg__purchase_purchase_id.6a5041e1a8": ["model.yoda.analytics___loyalty_stg__purchase"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_1.0fd220304c": ["model.yoda.analytics___loyalty_stg__purchase"], "test.yoda.unique_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id.85fb8827ce": ["model.yoda.analytics___loyalty_stg__purchase_redemption"], "test.yoda.not_null_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id.1afcaefa0e": ["model.yoda.analytics___loyalty_stg__purchase_redemption"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_redemption_1.68e2b4e211": ["model.yoda.analytics___loyalty_stg__purchase_redemption"], "test.yoda.unique_analytics___loyalty_stg__redemption_code_redemption_code_id.292d44be3e": ["model.yoda.analytics___loyalty_stg__redemption_code"], "test.yoda.not_null_analytics___loyalty_stg__redemption_code_redemption_code_id.784dc02c70": ["model.yoda.analytics___loyalty_stg__redemption_code"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_code_1.327480d2f8": ["model.yoda.analytics___loyalty_stg__redemption_code"], "test.yoda.unique_analytics___loyalty_stg__redemption_option_redemption_option_id.99fa9f3731": ["model.yoda.analytics___loyalty_stg__redemption_option"], "test.yoda.not_null_analytics___loyalty_stg__redemption_option_redemption_option_id.536a6add67": ["model.yoda.analytics___loyalty_stg__redemption_option"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_option_1.20a44f86f9": ["model.yoda.analytics___loyalty_stg__redemption_option"], "test.yoda.not_null_analytics___loyalty_stg__segment_install_event_details_merchant_id.2a789cce2b": ["model.yoda.analytics___loyalty_stg__segment_install_event_details"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__segment_install_event_details_1.80a7943263": ["model.yoda.analytics___loyalty_stg__segment_install_event_details"], "test.yoda.unique_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id.4b1fd4bf08": ["model.yoda.analytics___marketing__mql_opportunity_goal"], "test.yoda.not_null_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id.6ec7e2763c": ["model.yoda.analytics___marketing__mql_opportunity_goal"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___marketing__mql_opportunity_goal_1.0bba559cdd": ["model.yoda.analytics___marketing__mql_opportunity_goal"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_1.1479e82305": ["model.yoda.analytics___new_revenue__deal_product"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_opportunity_id__product.785696bc18": ["model.yoda.analytics___new_revenue__deal_product"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_scd_1.a3a194526d": ["model.yoda.analytics___new_revenue__deal_product_scd"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_scd_opportunity_id__product__updated_at.0173d26576": ["model.yoda.analytics___new_revenue__deal_product_scd"], "test.yoda.unique_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id.e7d772063a": ["model.yoda.analytics___new_revenue__operational_performance_daily"], "test.yoda.not_null_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id.a81fac273e": ["model.yoda.analytics___new_revenue__operational_performance_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__operational_performance_daily_1.97d5464f2e": ["model.yoda.analytics___new_revenue__operational_performance_daily"], "test.yoda.not_null_analytics___partners__manager_performance_monthly_partner_manager_id.58d231c1f8": ["model.yoda.analytics___partners__manager_performance_monthly"], "test.yoda.not_null_analytics___partners__manager_performance_monthly_month.48d5c27d55": ["model.yoda.analytics___partners__manager_performance_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___partners__manager_performance_monthly_1.c471df63c7": ["model.yoda.analytics___partners__manager_performance_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners__manager_performance_monthly_month__partner_manager_id.855d7a116e": ["model.yoda.analytics___partners__manager_performance_monthly"], "test.yoda.not_null_analytics___partners__partner_engagement_opportunity_partner_engagement_id.83c54fcf6c": ["model.yoda.analytics___partners__partner_engagement_opportunity"], "test.yoda.unique_analytics___partners__partner_engagement_opportunity_opportunity_id.3cac8dbc58": ["model.yoda.analytics___partners__partner_engagement_opportunity"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners__partner_engagement_opportunity_partner_engagement_id__opportunity_id.98d8b40d49": ["model.yoda.analytics___partners__partner_engagement_opportunity"], "test.yoda.not_null_analytics___partners_stg__manager_goals_quarter.72b1ffc8ce": ["model.yoda.analytics___partners_stg__manager_goals"], "test.yoda.not_null_analytics___partners_stg__manager_goals_partner_manager_id.ada4b04843": ["model.yoda.analytics___partners_stg__manager_goals"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___partners_stg__manager_goals_1.fec6f7aad4": ["model.yoda.analytics___partners_stg__manager_goals"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners_stg__manager_goals_quarter__partner_manager_id.c8819a2f2d": ["model.yoda.analytics___partners_stg__manager_goals"], "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_organization_key.faf0a5ad8a": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"], "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_id.aa29fe5044": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"], "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_product_family.b9a163115c": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"], "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_start_date.2d43fffb8b": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"], "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_end_date.2393f6deaa": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__opportunity_ht_ss_over_time_1.eb89e6175a": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__opportunity_ht_ss_over_time_opportunity_id__product_family.b786361f05": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time"], "test.yoda.unique_analytics___platform__order_metrics_order_id.53c8358938": ["model.yoda.analytics___platform__order_metrics"], "test.yoda.not_null_analytics___platform__order_metrics_order_id.1920d1b13f": ["model.yoda.analytics___platform__order_metrics"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__order_metrics_1.2b3572d58c": ["model.yoda.analytics___platform__order_metrics"], "test.yoda.unique_analytics___platform__organization_organization_id.4e186060ee": ["model.yoda.analytics___platform__organization"], "test.yoda.not_null_analytics___platform__organization_organization_id.f5c97c76e1": ["model.yoda.analytics___platform__organization"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_1.8787bbdc2f": ["model.yoda.analytics___platform__organization"], "test.yoda.not_null_analytics___platform__organization_country_organization_key.559f0069a2": ["model.yoda.analytics___platform__organization_country"], "test.yoda.unique_analytics___platform__organization_country_organization_key.c32db45485": ["model.yoda.analytics___platform__organization_country"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_country_1.b1ffea7fde": ["model.yoda.analytics___platform__organization_country"], "test.yoda.unique_analytics___platform__organization_industry_organization_key.685805ff4b": ["model.yoda.analytics___platform__organization_industry"], "test.yoda.not_null_analytics___platform__organization_industry_organization_key.44d7f30894": ["model.yoda.analytics___platform__organization_industry"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_industry_1.83a20a2990": ["model.yoda.analytics___platform__organization_industry"], "test.yoda.not_null_analytics___platform__organization_metrics_monthly_month.fcb07517f6": ["model.yoda.analytics___platform__organization_metrics_monthly"], "test.yoda.not_null_analytics___platform__organization_metrics_monthly_organization_key.d9e5fa109f": ["model.yoda.analytics___platform__organization_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_metrics_monthly_1.150d021652": ["model.yoda.analytics___platform__organization_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_metrics_monthly_organization_key__month.1e8306f6b3": ["model.yoda.analytics___platform__organization_metrics_monthly"], "test.yoda.not_null_analytics___platform__organization_name_organization_id.f7dc4f9432": ["model.yoda.analytics___platform__organization_name"], "test.yoda.not_null_analytics___platform__organization_name_organization_key.be89c5f1d9": ["model.yoda.analytics___platform__organization_name"], "test.yoda.unique_analytics___platform__organization_name_organization_key.bc3a87fde5": ["model.yoda.analytics___platform__organization_name"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_name_1.f6cd1c104e": ["model.yoda.analytics___platform__organization_name"], "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_month.a3cd2f8902": ["model.yoda.analytics___platform__organization_opportunity_monthly"], "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_organization_key.1124e5483d": ["model.yoda.analytics___platform__organization_opportunity_monthly"], "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_opportunity_id.f1fed9b1fe": ["model.yoda.analytics___platform__organization_opportunity_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_opportunity_monthly_1.4d8deb1a15": ["model.yoda.analytics___platform__organization_opportunity_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_opportunity_monthly_month__opportunity_id.c2f15a4e54": ["model.yoda.analytics___platform__organization_opportunity_monthly"], "test.yoda.not_null_analytics___platform__organization_plan_daily_date.81ce5af337": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_organization_key.ca6b2acd78": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_product_family.974f9664f8": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_plan_name.5f3a79eac3": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_self_service.b6e5e96cd9": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_free.e1bb945993": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_full_service.0347d3eb98": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_reviews.2ea32ee795": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_loyalty.90c454b511": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_vms.97f0766216": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_subscriptions.a70f44e9e7": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_sms.af85f74da7": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_email.99562b090f": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_plan_name_array.8587f40152": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_daily_app_key_array.5ebe8f8d4a": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_daily_1.d3512b01c3": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_daily_date__organization_key__product_family.297910b017": ["model.yoda.analytics___platform__organization_plan_daily"], "test.yoda.not_null_analytics___platform__organization_plan_monthly_month.3aa88f6e20": ["model.yoda.analytics___platform__organization_plan_monthly"], "test.yoda.not_null_analytics___platform__organization_plan_monthly_organization_key.4dae6c489c": ["model.yoda.analytics___platform__organization_plan_monthly"], "test.yoda.not_null_analytics___platform__organization_plan_monthly_product_family.f53bc2be74": ["model.yoda.analytics___platform__organization_plan_monthly"], "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_reviews.0cd536820b": ["model.yoda.analytics___platform__organization_plan_monthly"], "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_loyalty.f6172edfa4": ["model.yoda.analytics___platform__organization_plan_monthly"], "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_vms.d01483b5e8": ["model.yoda.analytics___platform__organization_plan_monthly"], "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_subscriptions.892529494d": ["model.yoda.analytics___platform__organization_plan_monthly"], "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_email.0ead36374d": ["model.yoda.analytics___platform__organization_plan_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_monthly_1.baa716b666": ["model.yoda.analytics___platform__organization_plan_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_monthly_month__organization_key__product_family.b7cf54fb07": ["model.yoda.analytics___platform__organization_plan_monthly"], "test.yoda.unique_analytics___platform__organization_platform_organization_key.35a769f9bc": ["model.yoda.analytics___platform__organization_platform"], "test.yoda.not_null_analytics___platform__organization_platform_organization_key.d4f349d341": ["model.yoda.analytics___platform__organization_platform"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_platform_1.eeb92e7163": ["model.yoda.analytics___platform__organization_platform"], "test.yoda.unique_analytics___platform__organization_product_activeness_monthly_organization_product_month_id.09c2920902": ["model.yoda.analytics___platform__organization_product_activeness_monthly"], "test.yoda.not_null_analytics___platform__organization_product_activeness_monthly_organization_product_month_id.72b432382b": ["model.yoda.analytics___platform__organization_product_activeness_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_activeness_monthly_1.4aaca9ad3e": ["model.yoda.analytics___platform__organization_product_activeness_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_metrics_monthly_organization_key__metric_month.ebe548179e": ["model.yoda.analytics___platform__organization_product_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_1.6d7839a364": ["model.yoda.analytics___platform__organization_product_metrics_monthly"], "test.yoda.unique_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c.d6cb8f2a20": ["model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot"], "test.yoda.not_null_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c.5f3d9028b0": ["model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_unpivot_1.9bf85b96c2": ["model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot"], "test.yoda.not_null_analytics___platform__organization_product_segment_daily_date.f8ffdaabe5": ["model.yoda.analytics___platform__organization_product_segment_daily"], "test.yoda.not_null_analytics___platform__organization_product_segment_daily_organization_key.1358b9f30b": ["model.yoda.analytics___platform__organization_product_segment_daily"], "test.yoda.not_null_analytics___platform__organization_product_segment_daily_product_family.cdea0b033c": ["model.yoda.analytics___platform__organization_product_segment_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_daily_1.57f3987c9e": ["model.yoda.analytics___platform__organization_product_segment_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_segment_daily_date__organization_key__product_family.ef5e4fda4d": ["model.yoda.analytics___platform__organization_product_segment_daily"], "test.yoda.unique_analytics___platform__organization_product_segment_monthly_organization_product_month_id.eae7c2fc23": ["model.yoda.analytics___platform__organization_product_segment_monthly"], "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_organization_product_month_id.57c2687fe2": ["model.yoda.analytics___platform__organization_product_segment_monthly"], "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_month.4fe831a3bc": ["model.yoda.analytics___platform__organization_product_segment_monthly"], "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_organization_key.c96b0a5319": ["model.yoda.analytics___platform__organization_product_segment_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_monthly_1.e949b933b1": ["model.yoda.analytics___platform__organization_product_segment_monthly"], "test.yoda.not_null_analytics___platform__organization_segment_monthly_organization_month_id.c5f722e165": ["model.yoda.analytics___platform__organization_segment_monthly"], "test.yoda.unique_analytics___platform__organization_segment_monthly_organization_month_id.2001427bc3": ["model.yoda.analytics___platform__organization_segment_monthly"], "test.yoda.not_null_analytics___platform__organization_segment_monthly_month.e976964b96": ["model.yoda.analytics___platform__organization_segment_monthly"], "test.yoda.not_null_analytics___platform__organization_segment_monthly_organization_key.bf95891731": ["model.yoda.analytics___platform__organization_segment_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_segment_monthly_1.4b62230dd7": ["model.yoda.analytics___platform__organization_segment_monthly"], "test.yoda.not_null_analytics___platform__owner_plan_event_owner_plan_event_id.01019086db": ["model.yoda.analytics___platform__owner_plan_event"], "test.yoda.unique_analytics___platform__owner_plan_event_owner_plan_event_id.de5b2a3535": ["model.yoda.analytics___platform__owner_plan_event"], "test.yoda.unique_analytics___platform__plan_plan_id.847d92374f": ["model.yoda.analytics___platform__plan"], "test.yoda.not_null_analytics___platform__plan_plan_id.371ae557dc": ["model.yoda.analytics___platform__plan"], "test.yoda.unique_analytics___platform__plan_plan_name.1954801371": ["model.yoda.analytics___platform__plan"], "test.yoda.not_null_analytics___platform__plan_plan_name.8a9e42247d": ["model.yoda.analytics___platform__plan"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__plan_136.151f2294d9": ["model.yoda.analytics___platform__plan"], "test.yoda.not_null_analytics___platform__platform_store_plan_over_time_app_key.177425f8b0": ["model.yoda.analytics___platform__platform_store_plan_over_time"], "test.yoda.not_null_analytics___platform__platform_store_plan_over_time_plan_id.ad833f89ad": ["model.yoda.analytics___platform__platform_store_plan_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__platform_store_plan_over_time_1.23464fb1d5": ["model.yoda.analytics___platform__platform_store_plan_over_time"], "test.yoda.unique_analytics___platform__product_metrics_snapshot_monthly_External_ID__c.a9e63d25dc": ["model.yoda.analytics___platform__product_metrics_snapshot_monthly"], "test.yoda.not_null_analytics___platform__product_metrics_snapshot_monthly_External_ID__c.585116ff41": ["model.yoda.analytics___platform__product_metrics_snapshot_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__product_metrics_snapshot_monthly_1.5eed07b015": ["model.yoda.analytics___platform__product_metrics_snapshot_monthly"], "test.yoda.unique_analytics___platform__question_details_question_id.81f0b8baca": ["model.yoda.analytics___platform__question_details"], "test.yoda.not_null_analytics___platform__question_details_question_id.7eeb34c756": ["model.yoda.analytics___platform__question_details"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__question_details_1.a6b18f602a": ["model.yoda.analytics___platform__question_details"], "test.yoda.unique_analytics___platform__store_store_id.0426a49173": ["model.yoda.analytics___platform__store"], "test.yoda.not_null_analytics___platform__store_store_id.ecc8e3c660": ["model.yoda.analytics___platform__store"], "test.yoda.unique_analytics___platform__store_app_key.b5ba5fcea0": ["model.yoda.analytics___platform__store"], "test.yoda.not_null_analytics___platform__store_app_key.d695626fbb": ["model.yoda.analytics___platform__store"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_1.38d9ed28fd": ["model.yoda.analytics___platform__store"], "test.yoda.not_null_analytics___platform__store_activeness_daily_activeness_date.6e962034a9": ["model.yoda.analytics___platform__store_activeness_daily"], "test.yoda.not_null_analytics___platform__store_activeness_daily_app_key.1dd234b604": ["model.yoda.analytics___platform__store_activeness_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_activeness_daily_1.6a3c8092ee": ["model.yoda.analytics___platform__store_activeness_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_activeness_daily_activeness_date__app_key.1e53577791": ["model.yoda.analytics___platform__store_activeness_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_dynamic_date_explode_from_creation_1.5dcbc7417f": ["model.yoda.analytics___platform__store_dynamic_date_explode_from_creation"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_dynamic_date_explode_from_creation_app_key__date.57c6fdfe71": ["model.yoda.analytics___platform__store_dynamic_date_explode_from_creation"], "test.yoda.not_null_analytics___platform__store_metrics_daily_date.b36227f573": ["model.yoda.analytics___platform__store_metrics_daily"], "test.yoda.not_null_analytics___platform__store_metrics_daily_app_key.afe4bc534c": ["model.yoda.analytics___platform__store_metrics_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_daily_1.ed2941830e": ["model.yoda.analytics___platform__store_metrics_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_daily_app_key__date.c8c9425fd7": ["model.yoda.analytics___platform__store_metrics_daily"], "test.yoda.not_null_analytics___platform__store_metrics_monthly_month.a277f9834d": ["model.yoda.analytics___platform__store_metrics_monthly"], "test.yoda.not_null_analytics___platform__store_metrics_monthly_app_key.df1b910fe3": ["model.yoda.analytics___platform__store_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_monthly_1.6d126cab16": ["model.yoda.analytics___platform__store_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_monthly_app_key__month.62e6c6c869": ["model.yoda.analytics___platform__store_metrics_monthly"], "test.yoda.not_null_analytics___platform__store_order_daily_app_key.ae84f8cb42": ["model.yoda.analytics___platform__store_order_daily"], "test.yoda.not_null_analytics___platform__store_order_daily_order_date.58413ae3f9": ["model.yoda.analytics___platform__store_order_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_order_daily_1.5d34dd0e73": ["model.yoda.analytics___platform__store_order_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_order_daily_app_key__order_date.9e299c0e3f": ["model.yoda.analytics___platform__store_order_daily"], "test.yoda.unique_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id.1546e1b398": ["model.yoda.analytics___platform__store_pixel_metrics_daily"], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id.36a24ed399": ["model.yoda.analytics___platform__store_pixel_metrics_daily"], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_product_name.923005d0f4": ["model.yoda.analytics___platform__store_pixel_metrics_daily"], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_date.3ff71c11db": ["model.yoda.analytics___platform__store_pixel_metrics_daily"], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_widget_version_type.dd3a6bb618": ["model.yoda.analytics___platform__store_pixel_metrics_daily"], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_action.7a5f3e7fa2": ["model.yoda.analytics___platform__store_pixel_metrics_daily"], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_widget_element.32dd729a77": ["model.yoda.analytics___platform__store_pixel_metrics_daily"], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_metric.25c0621826": ["model.yoda.analytics___platform__store_pixel_metrics_daily"], "test.yoda.not_null_analytics___platform__store_plan_daily_date.e6e44353da": ["model.yoda.analytics___platform__store_plan_daily"], "test.yoda.not_null_analytics___platform__store_plan_daily_app_key.28cc4bbaa2": ["model.yoda.analytics___platform__store_plan_daily"], "test.yoda.not_null_analytics___platform__store_plan_daily_product_family.56de4b757b": ["model.yoda.analytics___platform__store_plan_daily"], "test.yoda.not_null_analytics___platform__store_plan_daily_plan_id.ff727864a1": ["model.yoda.analytics___platform__store_plan_daily"], "test.yoda.not_null_analytics___platform__store_plan_daily_plan_name.fa04377d11": ["model.yoda.analytics___platform__store_plan_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_plan_daily_1.66ddbd73c2": ["model.yoda.analytics___platform__store_plan_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_plan_daily_date__app_key__product_family.f5230bd448": ["model.yoda.analytics___platform__store_plan_daily"], "test.yoda.unique_analytics___platform__store_platform_account_account_platform_id.9361df1781": ["model.yoda.analytics___platform__store_platform_account"], "test.yoda.not_null_analytics___platform__store_platform_account_account_platform_id.de81df4132": ["model.yoda.analytics___platform__store_platform_account"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_platform_account_1.34775c1634": ["model.yoda.analytics___platform__store_platform_account"], "test.yoda.not_null_analytics___platform__store_product_activeness_monthly_activeness_month.432728e5db": ["model.yoda.analytics___platform__store_product_activeness_monthly"], "test.yoda.not_null_analytics___platform__store_product_activeness_monthly_app_key.4f4d910d51": ["model.yoda.analytics___platform__store_product_activeness_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_activeness_monthly_1.d62572b5eb": ["model.yoda.analytics___platform__store_product_activeness_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_activeness_monthly_activeness_month__app_key.8b2b7a930f": ["model.yoda.analytics___platform__store_product_activeness_monthly"], "test.yoda.not_null_analytics___platform__store_product_metrics_daily_metric_date.1b0f986097": ["model.yoda.analytics___platform__store_product_metrics_daily"], "test.yoda.not_null_analytics___platform__store_product_metrics_daily_app_key.5872dd8972": ["model.yoda.analytics___platform__store_product_metrics_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_1.3111a6892d": ["model.yoda.analytics___platform__store_product_metrics_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_app_key__metric_date.ab21790649": ["model.yoda.analytics___platform__store_product_metrics_daily"], "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_app_key.2332f17093": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot"], "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_date.0312941480": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot"], "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_name.652628c554": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_snapshot_1.84ce47c37c": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_snapshot_app_key__metric_date__metric_name.4bc8ad9135": ["model.yoda.analytics___platform__store_product_metrics_daily_snapshot"], "test.yoda.unique_analytics___platform__store_product_metrics_lifetime_app_key.b98da12197": ["model.yoda.analytics___platform__store_product_metrics_lifetime"], "test.yoda.not_null_analytics___platform__store_product_metrics_lifetime_app_key.270e3294d8": ["model.yoda.analytics___platform__store_product_metrics_lifetime"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_1.9958f0ba87": ["model.yoda.analytics___platform__store_product_metrics_lifetime"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_scd_1.fb1a85c913": ["model.yoda.analytics___platform__store_product_metrics_lifetime_scd"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_scd_app_key__products__updated_at__metric_name.c3adce83db": ["model.yoda.analytics___platform__store_product_metrics_lifetime_scd"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_unpivot_1.5beceee7bc": ["model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_unpivot_app_key__products__metric_name.f041026f4a": ["model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_snapshot_daily_1.bae3cb5d42": ["model.yoda.analytics___platform__store_snapshot_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_snapshot_daily_date__app_key.40f26252c5": ["model.yoda.analytics___platform__store_snapshot_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__phone_code_country_mapping_1.f151f3acb8": ["model.yoda.analytics___platform_stg__phone_code_country_mapping"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_action_mapping_1.59d86af992": ["model.yoda.analytics___platform_stg__pixel_action_mapping"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_category_mapping_1.bba04362f0": ["model.yoda.analytics___platform_stg__pixel_category_mapping"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_duration_mapping_1.84d5d8fd5b": ["model.yoda.analytics___platform_stg__pixel_duration_mapping"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_os_family_mobile_mapping_1.c2fad38ca0": ["model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping"], "test.yoda.unique_analytics___platform_stg__product_plan_name_rank_plan_name.7680ba0de2": ["model.yoda.analytics___platform_stg__product_plan_name_rank"], "test.yoda.not_null_analytics___platform_stg__product_plan_name_rank_plan_name.5ecb99c159": ["model.yoda.analytics___platform_stg__product_plan_name_rank"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__questions_1.3425e858e7": ["model.yoda.analytics___platform_stg__questions"], "test.yoda.not_null_analytics___platform_stg__saas_organization_daily_history_organization_key.52d8c8ee50": ["model.yoda.analytics___platform_stg__saas_organization_daily_history"], "test.yoda.not_null_analytics___platform_stg__saas_organization_daily_history_dwh_updated_at.55993a8322": ["model.yoda.analytics___platform_stg__saas_organization_daily_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_organization_daily_history_1.213f53c393": ["model.yoda.analytics___platform_stg__saas_organization_daily_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_store_plan_history_1.cbd7f29455": ["model.yoda.analytics___platform_stg__saas_store_plan_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__shopify_billing_charge_plan_mapping_1.80ef31745b": ["model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__shopify_billing_charge_plan_mapping_product_family__charge_name.eac779bf7e": ["model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_stores_1.40cafa6cc1": ["model.yoda.analytics___platform_stg__similar_stores"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__sms_loyalty_synergy_mapping_1.bf37e06b40": ["model.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping"], "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_from_time.30a7fac925": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"], "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_app_key.c19e552c55": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"], "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_contract_id.8f04be378b": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"], "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_status_id.ba2c0f080e": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_contract_history_1.2ae291f521": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_contract_history_app_key__from_time__contract_id__status_id.704750ae8d": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"], "test.yoda.unique_analytics___platform_stg__account_account_id.bf0cffee73": ["model.yoda.analytics___platform_stg__account"], "test.yoda.not_null_analytics___platform_stg__account_account_id.9bc768ec65": ["model.yoda.analytics___platform_stg__account"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_1.4b2484911a": ["model.yoda.analytics___platform_stg__account"], "test.yoda.unique_analytics___platform_stg__account_platform_account_platform_id.c290b8cfd5": ["model.yoda.analytics___platform_stg__account_platform"], "test.yoda.not_null_analytics___platform_stg__account_platform_account_platform_id.b7b5c49fb5": ["model.yoda.analytics___platform_stg__account_platform"], "test.yoda.not_null_analytics___platform_stg__account_platform_account_id.6b520f86d6": ["model.yoda.analytics___platform_stg__account_platform"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_platform_1.1627b7d5ba": ["model.yoda.analytics___platform_stg__account_platform"], "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_currency_exchange_date.0d396a63dc": ["model.yoda.analytics___platform_stg__currency_exchange_rate"], "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_from_currency_symbol.8296ad7a59": ["model.yoda.analytics___platform_stg__currency_exchange_rate"], "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_to_currency_symbol.4b70904cc9": ["model.yoda.analytics___platform_stg__currency_exchange_rate"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__currency_exchange_rate_1.92ad112887": ["model.yoda.analytics___platform_stg__currency_exchange_rate"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__currency_exchange_rate_currency_exchange_date__from_currency_symbol__to_currency_symbol.f4f0825820": ["model.yoda.analytics___platform_stg__currency_exchange_rate"], "test.yoda.unique_analytics___platform_stg__feature_feature_id.ec45ab27b6": ["model.yoda.analytics___platform_stg__feature"], "test.yoda.not_null_analytics___platform_stg__feature_feature_id.c412179c7f": ["model.yoda.analytics___platform_stg__feature"], "test.yoda.accepted_values_analytics___platform_stg__feature_is_default_user_enabled__0__1.ee28dedafe": ["model.yoda.analytics___platform_stg__feature"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__feature_1.45b956b766": ["model.yoda.analytics___platform_stg__feature"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__fulfillment_1.b2e05b1f61": ["model.yoda.analytics___platform_stg__fulfillment"], "test.yoda.unique_analytics___platform_stg__home_screen_section_section_id.981f1edfe1": ["model.yoda.analytics___platform_stg__home_screen_section"], "test.yoda.not_null_analytics___platform_stg__home_screen_section_section_id.c6b5335156": ["model.yoda.analytics___platform_stg__home_screen_section"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_section_1.24494367ea": ["model.yoda.analytics___platform_stg__home_screen_section"], "test.yoda.unique_analytics___platform_stg__home_screen_widget_widget_id.c774dd74ef": ["model.yoda.analytics___platform_stg__home_screen_widget"], "test.yoda.not_null_analytics___platform_stg__home_screen_widget_widget_id.36729b0509": ["model.yoda.analytics___platform_stg__home_screen_widget"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_widget_1.a36d89f91d": ["model.yoda.analytics___platform_stg__home_screen_widget"], "test.yoda.not_null_analytics___platform_stg__loyalty_pixel_widget_v_three_date.1bbd9480fe": ["model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three"], "test.yoda.not_null_analytics___platform_stg__loyalty_pixel_widget_v_two_date.8544c6a31f": ["model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two"], "test.yoda.unique_analytics___platform_stg__order_line_order_line_id.a4c39747a3": ["model.yoda.analytics___platform_stg__order_line"], "test.yoda.not_null_analytics___platform_stg__order_line_order_line_id.7c7a5630b9": ["model.yoda.analytics___platform_stg__order_line"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__order_line_1.091595705b": ["model.yoda.analytics___platform_stg__order_line"], "test.yoda.unique_analytics___platform_stg__organization_organization_id.7b6bc51554": ["model.yoda.analytics___platform_stg__organization"], "test.yoda.not_null_analytics___platform_stg__organization_organization_id.2100e04b4f": ["model.yoda.analytics___platform_stg__organization"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__organization_1.d0e2952f5d": ["model.yoda.analytics___platform_stg__organization"], "test.yoda.unique_analytics___platform_stg__owner_feature_owner_feature_id.587b1de338": ["model.yoda.analytics___platform_stg__owner_feature"], "test.yoda.not_null_analytics___platform_stg__owner_feature_owner_feature_id.4aaf610028": ["model.yoda.analytics___platform_stg__owner_feature"], "test.yoda.not_null_analytics___platform_stg__owner_feature_owner_type.8f38255e97": ["model.yoda.analytics___platform_stg__owner_feature"], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_owner_type__Organization__User__Account.d683ac5172": ["model.yoda.analytics___platform_stg__owner_feature"], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_disabled__0__1.9903df57ab": ["model.yoda.analytics___platform_stg__owner_feature"], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_user_enabled__0__1.4c98ff44f4": ["model.yoda.analytics___platform_stg__owner_feature"], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_floating__0__1.bc7d6927c5": ["model.yoda.analytics___platform_stg__owner_feature"], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_organization_owner__0__1.588123fb4f": ["model.yoda.analytics___platform_stg__owner_feature"], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_user_owner__0__1.3c74cd865b": ["model.yoda.analytics___platform_stg__owner_feature"], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_store_owner__0__1.51b95a4089": ["model.yoda.analytics___platform_stg__owner_feature"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_1.071e4e24d1": ["model.yoda.analytics___platform_stg__owner_feature"], "test.yoda.not_null_analytics___platform_stg__owner_feature_setting_owner_feature_id.a3bb30e58a": ["model.yoda.analytics___platform_stg__owner_feature_setting"], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_setting_is_floating__0__1.e60b90bad0": ["model.yoda.analytics___platform_stg__owner_feature_setting"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_setting_1.eb178ab17e": ["model.yoda.analytics___platform_stg__owner_feature_setting"], "test.yoda.unique_analytics___platform_stg__owner_plan_owner_plan_id.c3b5f11b5c": ["model.yoda.analytics___platform_stg__owner_plan"], "test.yoda.not_null_analytics___platform_stg__owner_plan_owner_plan_id.c86be5da5f": ["model.yoda.analytics___platform_stg__owner_plan"], "test.yoda.not_null_analytics___platform_stg__owner_plan_owner_id.88599e48d0": ["model.yoda.analytics___platform_stg__owner_plan"], "test.yoda.not_null_analytics___platform_stg__owner_plan_plan_id.a2f84269da": ["model.yoda.analytics___platform_stg__owner_plan"], "test.yoda.not_null_analytics___platform_stg__owner_plan_updated_at.ebf8832afc": ["model.yoda.analytics___platform_stg__owner_plan"], "test.yoda.accepted_values_analytics___platform_stg__owner_plan_is_organization_owner__0__1.0c9fe28cce": ["model.yoda.analytics___platform_stg__owner_plan"], "test.yoda.accepted_values_analytics___platform_stg__owner_plan_is_store_owner__0__1.bdc41c1bc5": ["model.yoda.analytics___platform_stg__owner_plan"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_1.0de01ea6a4": ["model.yoda.analytics___platform_stg__owner_plan"], "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_owner_plan_id.9af3cb58e1": ["model.yoda.analytics___platform_stg__owner_plan_event_details"], "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_owner_id.fafd22bead": ["model.yoda.analytics___platform_stg__owner_plan_event_details"], "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_plan_id.75d74c453e": ["model.yoda.analytics___platform_stg__owner_plan_event_details"], "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_category_id.d494305ee7": ["model.yoda.analytics___platform_stg__owner_plan_event_details"], "test.yoda.accepted_values_analytics___platform_stg__owner_plan_event_details_is_organization_owner__0__1.5e2a6959c0": ["model.yoda.analytics___platform_stg__owner_plan_event_details"], "test.yoda.accepted_values_analytics___platform_stg__owner_plan_event_details_is_store_owner__0__1.179a1acd0c": ["model.yoda.analytics___platform_stg__owner_plan_event_details"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_event_details_1.00ff23adb4": ["model.yoda.analytics___platform_stg__owner_plan_event_details"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__owner_plan_event_details_owner_id__plan_id__plan_event_created_at__is_organization_owner.02a5c95dfa": ["model.yoda.analytics___platform_stg__owner_plan_event_details"], "test.yoda.unique_analytics___platform_stg__owner_plan_history_owner_plan_id.bd9ed790ab": ["model.yoda.analytics___platform_stg__owner_plan_history"], "test.yoda.not_null_analytics___platform_stg__owner_plan_history_owner_plan_id.7d7adade79": ["model.yoda.analytics___platform_stg__owner_plan_history"], "test.yoda.not_null_analytics___platform_stg__owner_plan_history_owner_id.d49061c6b6": ["model.yoda.analytics___platform_stg__owner_plan_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_history_1.be59960d3a": ["model.yoda.analytics___platform_stg__owner_plan_history"], "test.yoda.not_null_analytics___platform_stg__owner_plan_snapshot_owner_plan_id.94f131116a": ["model.yoda.analytics___platform_stg__owner_plan_snapshot"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_snapshot_1.682aa911c8": ["model.yoda.analytics___platform_stg__owner_plan_snapshot"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_1.66dd98c5b1": ["model.yoda.analytics___platform_stg__plan"], "test.yoda.unique_analytics___platform_stg__plan_category_category_id.c6d7e9443a": ["model.yoda.analytics___platform_stg__plan_category"], "test.yoda.not_null_analytics___platform_stg__plan_category_category_id.b6dc2b7233": ["model.yoda.analytics___platform_stg__plan_category"], "test.yoda.not_null_analytics___platform_stg__plan_category_category_name.b797e1ead5": ["model.yoda.analytics___platform_stg__plan_category"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_category_1.150111d125": ["model.yoda.analytics___platform_stg__plan_category"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_1.cbb1dbbd68": ["model.yoda.analytics___platform_stg__plan_tag"], "test.yoda.unique_analytics___platform_stg__plan_tag_type_plan_tag_type_id.6fab2c7c03": ["model.yoda.analytics___platform_stg__plan_tag_type"], "test.yoda.not_null_analytics___platform_stg__plan_tag_type_plan_tag_type_id.71a98514ee": ["model.yoda.analytics___platform_stg__plan_tag_type"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_type_1.cf8b2a102f": ["model.yoda.analytics___platform_stg__plan_tag_type"], "test.yoda.unique_analytics___platform_stg__platform_type_platform_id.01dab06a26": ["model.yoda.analytics___platform_stg__platform_type"], "test.yoda.not_null_analytics___platform_stg__platform_type_platform_id.bd273dfebc": ["model.yoda.analytics___platform_stg__platform_type"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__platform_type_1.773fe10dc6": ["model.yoda.analytics___platform_stg__platform_type"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__product_1.54aa67c1e8": ["model.yoda.analytics___platform_stg__product"], "test.yoda.unique_analytics___platform_stg__question_question_id.0b7a776845": ["model.yoda.analytics___platform_stg__question"], "test.yoda.not_null_analytics___platform_stg__question_question_id.a2b90e39a8": ["model.yoda.analytics___platform_stg__question"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__question_1.cd917941be": ["model.yoda.analytics___platform_stg__question"], "test.yoda.unique_analytics___platform_stg__segment_account_created_event_id.1fa7cb0790": ["model.yoda.analytics___platform_stg__segment_account_created"], "test.yoda.not_null_analytics___platform_stg__segment_account_created_event_id.55bbe22a39": ["model.yoda.analytics___platform_stg__segment_account_created"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_account_created_1.9f7d6d550d": ["model.yoda.analytics___platform_stg__segment_account_created"], "test.yoda.unique_analytics___platform_stg__segment_activation_step_event_id.152d3eadc7": ["model.yoda.analytics___platform_stg__segment_activation_step"], "test.yoda.not_null_analytics___platform_stg__segment_activation_step_event_id.22c8d7d6c4": ["model.yoda.analytics___platform_stg__segment_activation_step"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_activation_step_1.bb810fb45e": ["model.yoda.analytics___platform_stg__segment_activation_step"], "test.yoda.unique_analytics___platform_stg__segment_app_install_completed_event_id.3c8f5c9dee": ["model.yoda.analytics___platform_stg__segment_app_install_completed"], "test.yoda.not_null_analytics___platform_stg__segment_app_install_completed_event_id.5f53bf6dc2": ["model.yoda.analytics___platform_stg__segment_app_install_completed"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_install_completed_1.dbe3d598d6": ["model.yoda.analytics___platform_stg__segment_app_install_completed"], "test.yoda.unique_analytics___platform_stg__segment_app_uninstalled_event_id.87acab11bc": ["model.yoda.analytics___platform_stg__segment_app_uninstalled"], "test.yoda.not_null_analytics___platform_stg__segment_app_uninstalled_event_id.e48714f579": ["model.yoda.analytics___platform_stg__segment_app_uninstalled"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_uninstalled_1.f8c67106e7": ["model.yoda.analytics___platform_stg__segment_app_uninstalled"], "test.yoda.unique_analytics___platform_stg__segment_b_to_b_event_id.05b5e96242": ["model.yoda.analytics___platform_stg__segment_b_to_b"], "test.yoda.not_null_analytics___platform_stg__segment_b_to_b_event_id.4e957a82dd": ["model.yoda.analytics___platform_stg__segment_b_to_b"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_b_to_b_1.e6e114ec71": ["model.yoda.analytics___platform_stg__segment_b_to_b"], "test.yoda.unique_analytics___platform_stg__segment_file_exported_event_id.0d046166dd": ["model.yoda.analytics___platform_stg__segment_file_exported"], "test.yoda.not_null_analytics___platform_stg__segment_file_exported_event_id.796820712d": ["model.yoda.analytics___platform_stg__segment_file_exported"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_file_exported_1.ee9e77b56a": ["model.yoda.analytics___platform_stg__segment_file_exported"], "test.yoda.unique_analytics___platform_stg__segment_limit_reached_event_id.a92b0fea75": ["model.yoda.analytics___platform_stg__segment_limit_reached"], "test.yoda.not_null_analytics___platform_stg__segment_limit_reached_event_id.7015799488": ["model.yoda.analytics___platform_stg__segment_limit_reached"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_limit_reached_1.1838915467": ["model.yoda.analytics___platform_stg__segment_limit_reached"], "test.yoda.unique_analytics___platform_stg__segment_onboarding_event_id.2d8e177e57": ["model.yoda.analytics___platform_stg__segment_onboarding"], "test.yoda.not_null_analytics___platform_stg__segment_onboarding_event_id.0ff7b57a94": ["model.yoda.analytics___platform_stg__segment_onboarding"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_onboarding_1.1907a77604": ["model.yoda.analytics___platform_stg__segment_onboarding"], "test.yoda.not_null_analytics___platform_stg__segment_page_event_app_key.6221c88cd5": ["model.yoda.analytics___platform_stg__segment_page_event"], "test.yoda.not_null_analytics___platform_stg__segment_page_event_event_id.29d85cd0ed": ["model.yoda.analytics___platform_stg__segment_page_event"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_page_event_1.36744c29f6": ["model.yoda.analytics___platform_stg__segment_page_event"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__segment_page_event_event_id__app_key.8061a69191": ["model.yoda.analytics___platform_stg__segment_page_event"], "test.yoda.unique_analytics___platform_stg__segment_popup_displayed_event_id.c86d8b9d76": ["model.yoda.analytics___platform_stg__segment_popup_displayed"], "test.yoda.not_null_analytics___platform_stg__segment_popup_displayed_event_id.20dc1aca87": ["model.yoda.analytics___platform_stg__segment_popup_displayed"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_popup_displayed_1.e5fe385095": ["model.yoda.analytics___platform_stg__segment_popup_displayed"], "test.yoda.unique_analytics___platform_stg__segment_product_enabled_event_id.60b0b3a8b6": ["model.yoda.analytics___platform_stg__segment_product_enabled"], "test.yoda.not_null_analytics___platform_stg__segment_product_enabled_event_id.c74bffc27e": ["model.yoda.analytics___platform_stg__segment_product_enabled"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_product_enabled_1.b8b3335a48": ["model.yoda.analytics___platform_stg__segment_product_enabled"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_uninstalled_yotpo_1.9eed93745f": ["model.yoda.analytics___platform_stg__segment_uninstalled_yotpo"], "test.yoda.unique_analytics___platform_stg__similar_store_app_key.9f5cbcfa58": ["model.yoda.analytics___platform_stg__similar_store"], "test.yoda.not_null_analytics___platform_stg__similar_store_app_key.4749d8ee70": ["model.yoda.analytics___platform_stg__similar_store"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_store_1.92cb76df1c": ["model.yoda.analytics___platform_stg__similar_store"], "test.yoda.unique_analytics___platform_stg__static_deprecated_package_plan_id.98ec63a42c": ["model.yoda.analytics___platform_stg__static_deprecated_package"], "test.yoda.not_null_analytics___platform_stg__static_deprecated_package_plan_id.f9d05e69af": ["model.yoda.analytics___platform_stg__static_deprecated_package"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__static_deprecated_package_1.5cdfab0b87": ["model.yoda.analytics___platform_stg__static_deprecated_package"], "test.yoda.unique_analytics___platform_stg__store_order_order_id.863fb84fb5": ["model.yoda.analytics___platform_stg__store_order"], "test.yoda.not_null_analytics___platform_stg__store_order_order_id.61050041d8": ["model.yoda.analytics___platform_stg__store_order"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_order_1.06e9764eb1": ["model.yoda.analytics___platform_stg__store_order"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_user_mapping_1.c53b62e32a": ["model.yoda.analytics___platform_stg__store_user_mapping"], "test.yoda.not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id.12b9d96841": ["model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"], "test.yoda.not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_row_rank.45726fb4c9": ["model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_pixel_widget_v_three_1.a4c7dc7cd1": ["model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id__event_row_rank.b711864588": ["model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three"], "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_app_key.06cf074efd": ["model.yoda.analytics___platform_stg__synergy_enablement_event"], "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_widget_id.f80b5d2200": ["model.yoda.analytics___platform_stg__synergy_enablement_event"], "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_updated_at.ab180863ed": ["model.yoda.analytics___platform_stg__synergy_enablement_event"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__synergy_enablement_event_1.94a38eb172": ["model.yoda.analytics___platform_stg__synergy_enablement_event"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__synergy_enablement_event_app_key__widget_id__updated_at.12d1947a05": ["model.yoda.analytics___platform_stg__synergy_enablement_event"], "test.yoda.not_null_analytics___platform_stg__ugc_pixel_widget_v_three_date.14c303a758": ["model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three"], "test.yoda.not_null_analytics___platform_stg__ugc_pixel_widget_v_two_date.0ae171ab8f": ["model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__user_1.322bb25202": ["model.yoda.analytics___platform_stg__user"], "test.yoda.unique_analytics___salesforce__account_account_id.3f1f984c3a": ["model.yoda.analytics___salesforce__account"], "test.yoda.not_null_analytics___salesforce__account_account_id.b4e829a4f6": ["model.yoda.analytics___salesforce__account"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_1.d3e9ecbc66": ["model.yoda.analytics___salesforce__account"], "test.yoda.unique_analytics___salesforce__account_enrichment_Id.f3c4fb0985": ["model.yoda.analytics___salesforce__account_enrichment"], "test.yoda.not_null_analytics___salesforce__account_enrichment_Id.1622bc72e9": ["model.yoda.analytics___salesforce__account_enrichment"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_1.c6d86004ad": ["model.yoda.analytics___salesforce__account_enrichment"], "test.yoda.unique_analytics___salesforce__account_enrichment_daily_diff_Id.425a20a4f7": ["model.yoda.analytics___salesforce__account_enrichment_daily_diff"], "test.yoda.not_null_analytics___salesforce__account_enrichment_daily_diff_Id.0f8803158d": ["model.yoda.analytics___salesforce__account_enrichment_daily_diff"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_daily_diff_1.88aaabae8d": ["model.yoda.analytics___salesforce__account_enrichment_daily_diff"], "test.yoda.not_null_analytics___salesforce__account_enrichment_snapshot_daily_Id.4cfd395b99": ["model.yoda.analytics___salesforce__account_enrichment_snapshot_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_snapshot_daily_1.8e91bf4823": ["model.yoda.analytics___salesforce__account_enrichment_snapshot_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__account_enrichment_snapshot_daily_Id__updated_at.0ea5f95d46": ["model.yoda.analytics___salesforce__account_enrichment_snapshot_daily"], "test.yoda.not_null_analytics___salesforce__account_product_account_product_id.7103c06f5c": ["model.yoda.analytics___salesforce__account_product"], "test.yoda.unique_analytics___salesforce__account_product_account_product_id.4b119f7184": ["model.yoda.analytics___salesforce__account_product"], "test.yoda.not_null_analytics___salesforce__account_product_account_id.75fbe7a00c": ["model.yoda.analytics___salesforce__account_product"], "test.yoda.not_null_analytics___salesforce__account_product_product_name.e19ce7f0b6": ["model.yoda.analytics___salesforce__account_product"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_product_1.42fa7fc5a3": ["model.yoda.analytics___salesforce__account_product"], "test.yoda.not_null_analytics___salesforce__account_tracking_daily_date.797d2a55bf": ["model.yoda.analytics___salesforce__account_tracking_daily"], "test.yoda.not_null_analytics___salesforce__account_tracking_daily_account_id.10486c705b": ["model.yoda.analytics___salesforce__account_tracking_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__account_tracking_daily_date__account_id.4235272552": ["model.yoda.analytics___salesforce__account_tracking_daily"], "test.yoda.not_null_analytics___salesforce__campaign_member_field_history_campaign_member_id.7be38168d2": ["model.yoda.analytics___salesforce__campaign_member_field_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__campaign_member_field_history_1.c8a449e20f": ["model.yoda.analytics___salesforce__campaign_member_field_history"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__campaign_member_field_history_campaign_member_id__field_name__from_time.344e9966b2": ["model.yoda.analytics___salesforce__campaign_member_field_history"], "test.yoda.unique_analytics___salesforce__deal_summary_deal_summary_id.387a36b275": ["model.yoda.analytics___salesforce__deal_summary"], "test.yoda.not_null_analytics___salesforce__deal_summary_deal_summary_id.ba103f7317": ["model.yoda.analytics___salesforce__deal_summary"], "test.yoda.not_null_analytics___salesforce__deal_summary_opportunity_id.03087133cd": ["model.yoda.analytics___salesforce__deal_summary"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_1.9228eb7d64": ["model.yoda.analytics___salesforce__deal_summary"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_opportunity_id__opportunity_plan_id__plan.d096692b6a": ["model.yoda.analytics___salesforce__deal_summary"], "test.yoda.unique_analytics___salesforce__deal_summary_product_deal_summary_product_id.57b1c94531": ["model.yoda.analytics___salesforce__deal_summary_product"], "test.yoda.not_null_analytics___salesforce__deal_summary_product_deal_summary_product_id.31d4312769": ["model.yoda.analytics___salesforce__deal_summary_product"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_product_1.72e8bd4470": ["model.yoda.analytics___salesforce__deal_summary_product"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_product_opportunity_id__product.606e8c0004": ["model.yoda.analytics___salesforce__deal_summary_product"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__lead_1.6f1f5bb1a0": ["model.yoda.analytics___salesforce__lead"], "test.yoda.unique_analytics___salesforce__live_chat_transcript_chat_id.273b64c735": ["model.yoda.analytics___salesforce__live_chat_transcript"], "test.yoda.not_null_analytics___salesforce__live_chat_transcript_chat_id.aa749713eb": ["model.yoda.analytics___salesforce__live_chat_transcript"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__live_chat_transcript_1.5b1fca726d": ["model.yoda.analytics___salesforce__live_chat_transcript"], "test.yoda.unique_analytics___salesforce__mql_mql_id.d209fbec60": ["model.yoda.analytics___salesforce__mql"], "test.yoda.not_null_analytics___salesforce__mql_mql_id.02bc1b90ba": ["model.yoda.analytics___salesforce__mql"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__mql_1.f074e992f7": ["model.yoda.analytics___salesforce__mql"], "test.yoda.unique_analytics___salesforce__new_organization_Organization_Key__c.47411e9518": ["model.yoda.analytics___salesforce__new_organization"], "test.yoda.not_null_analytics___salesforce__new_organization_Organization_Key__c.7b2bf4e82a": ["model.yoda.analytics___salesforce__new_organization"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__new_organization_1.20953b5d1f": ["model.yoda.analytics___salesforce__new_organization"], "test.yoda.unique_analytics___salesforce__onboarding_project_onboarding_project_id.71a179fe6c": ["model.yoda.analytics___salesforce__onboarding_project"], "test.yoda.not_null_analytics___salesforce__onboarding_project_onboarding_project_id.5dc0a7f0e2": ["model.yoda.analytics___salesforce__onboarding_project"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__onboarding_project_1.3e73956d71": ["model.yoda.analytics___salesforce__onboarding_project"], "test.yoda.unique_analytics___salesforce__opportunity_opportunity_id.d7cc183433": ["model.yoda.analytics___salesforce__opportunity"], "test.yoda.not_null_analytics___salesforce__opportunity_opportunity_id.65909d08bc": ["model.yoda.analytics___salesforce__opportunity"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_1.258691c816": ["model.yoda.analytics___salesforce__opportunity"], "test.yoda.unique_analytics___salesforce__opportunity_line_item_line_item_id.f73276dcba": ["model.yoda.analytics___salesforce__opportunity_line_item"], "test.yoda.not_null_analytics___salesforce__opportunity_line_item_line_item_id.b4ec3e167f": ["model.yoda.analytics___salesforce__opportunity_line_item"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_line_item_1.df821c0795": ["model.yoda.analytics___salesforce__opportunity_line_item"], "test.yoda.unique_analytics___salesforce__partner_engagement_partner_engagement_id.b2ccbbcf95": ["model.yoda.analytics___salesforce__partner_engagement"], "test.yoda.not_null_analytics___salesforce__partner_engagement_partner_engagement_id.629541df50": ["model.yoda.analytics___salesforce__partner_engagement"], "test.yoda.not_null_analytics___salesforce__service_case_case_id.1226a89545": ["model.yoda.analytics___salesforce__service_case"], "test.yoda.unique_analytics___salesforce__service_case_case_id.e02fd95829": ["model.yoda.analytics___salesforce__service_case"], "test.yoda.not_null_analytics___salesforce__service_case_case_number.2b19a4e71c": ["model.yoda.analytics___salesforce__service_case"], "test.yoda.unique_analytics___salesforce__service_case_case_number.3b647293ea": ["model.yoda.analytics___salesforce__service_case"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__service_case_1.54e258537d": ["model.yoda.analytics___salesforce__service_case"], "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c.541c4126d5": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"], "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_daily_Product_Metrics_Name__c.1d4159a1ed": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_daily_1.1a8396a1a0": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c__Product_Metrics_Name__c.d8838388cf": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"], "test.yoda.unique_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c.96c65ab273": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"], "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c.42a91a77a8": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"], "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Metrics_Name__c.26d3e4508a": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_monthly_1.5a5b0be37d": ["model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"], "test.yoda.unique_analytics___salesforce__task_task_id.0f8d2488b9": ["model.yoda.analytics___salesforce__task"], "test.yoda.not_null_analytics___salesforce__task_task_id.d8090db429": ["model.yoda.analytics___salesforce__task"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__task_1.da7010e10f": ["model.yoda.analytics___salesforce__task"], "test.yoda.unique_analytics___salesforce__user_overtime_user_role_id.78768862b4": ["model.yoda.analytics___salesforce__user_overtime"], "test.yoda.not_null_analytics___salesforce__user_overtime_user_role_id.a4cc02bdfd": ["model.yoda.analytics___salesforce__user_overtime"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__user_overtime_1.347df68a4b": ["model.yoda.analytics___salesforce__user_overtime"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_full_1.ac3cbc15d7": ["model.yoda.analytics___salesforce_stg__account_full"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_product_c_full_1.08bbe6d6f3": ["model.yoda.analytics___salesforce_stg__account_product_c_full"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__campaign_1.2498c6bddb": ["model.yoda.analytics___salesforce_stg__campaign"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__contact_1.9b8de16b82": ["model.yoda.analytics___salesforce_stg__contact"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__datedconversionrate_1.1431d985ae": ["model.yoda.analytics___salesforce_stg__datedconversionrate"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__lead_1.1175c9dc01": ["model.yoda.analytics___salesforce_stg__lead"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__livechattranscript_full_1.0b050ad4b7": ["model.yoda.analytics___salesforce_stg__livechattranscript_full"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__onboarding_project_c_full_1.7d63555589": ["model.yoda.analytics___salesforce_stg__onboarding_project_c_full"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_c_full_1.a687f42933": ["model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__partner_referral_c_full_1.14539c8ee1": ["model.yoda.analytics___salesforce_stg__partner_referral_c_full"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__task_1.75c8aed526": ["model.yoda.analytics___salesforce_stg__task"], "test.yoda.unique_analytics___salesforce_stg__custom_field_history_sf_event_id.ab7808b812": ["model.yoda.analytics___salesforce_stg__custom_field_history"], "test.yoda.not_null_analytics___salesforce_stg__custom_field_history_sf_event_id.55074feac4": ["model.yoda.analytics___salesforce_stg__custom_field_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__custom_field_history_1.86ee399ddd": ["model.yoda.analytics___salesforce_stg__custom_field_history"], "test.yoda.unique_analytics___salesforce_stg__mc_account_account_id.6067ebe293": ["model.yoda.analytics___salesforce_stg__mc_account"], "test.yoda.not_null_analytics___salesforce_stg__mc_account_account_id.782ec87d8f": ["model.yoda.analytics___salesforce_stg__mc_account"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_1.32a13ae472": ["model.yoda.analytics___salesforce_stg__mc_account"], "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_account_product_id.8dbd027775": ["model.yoda.analytics___salesforce_stg__mc_account_product"], "test.yoda.unique_analytics___salesforce_stg__mc_account_product_account_product_id.49a3cb427d": ["model.yoda.analytics___salesforce_stg__mc_account_product"], "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_account_id.c2239a1a79": ["model.yoda.analytics___salesforce_stg__mc_account_product"], "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_product_name.e5ece9c4d5": ["model.yoda.analytics___salesforce_stg__mc_account_product"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_product_1.3ade706487": ["model.yoda.analytics___salesforce_stg__mc_account_product"], "test.yoda.unique_analytics___salesforce_stg__mc_campaign_campaign_id.8b1ea5edb4": ["model.yoda.analytics___salesforce_stg__mc_campaign"], "test.yoda.not_null_analytics___salesforce_stg__mc_campaign_campaign_id.2313c1b093": ["model.yoda.analytics___salesforce_stg__mc_campaign"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_campaign_1.3e66a80add": ["model.yoda.analytics___salesforce_stg__mc_campaign"], "test.yoda.unique_analytics___salesforce_stg__mc_contact_contact_id.7a821a5016": ["model.yoda.analytics___salesforce_stg__mc_contact"], "test.yoda.not_null_analytics___salesforce_stg__mc_contact_contact_id.9338361d21": ["model.yoda.analytics___salesforce_stg__mc_contact"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_contact_1.7dcf842d3b": ["model.yoda.analytics___salesforce_stg__mc_contact"], "test.yoda.unique_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id.5c374de83d": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"], "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id.56a6f9db93": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"], "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_currency_symbol.aa0cd24815": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"], "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_from_date.9f5d451a47": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_conversion_rate_1.8ba7b5f4f2": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce_stg__mc_conversion_rate_currency_symbol__from_date.f692cccde0": ["model.yoda.analytics___salesforce_stg__mc_conversion_rate"], "test.yoda.unique_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.ac71be4f72": ["model.yoda.analytics___salesforce_stg__mc_cs_lead"], "test.yoda.not_null_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.2e7c947e0e": ["model.yoda.analytics___salesforce_stg__mc_cs_lead"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_cs_lead_1.c429c91cc1": ["model.yoda.analytics___salesforce_stg__mc_cs_lead"], "test.yoda.unique_analytics___salesforce_stg__mc_deal_summary_deal_summary_id.c1a6fd6217": ["model.yoda.analytics___salesforce_stg__mc_deal_summary"], "test.yoda.not_null_analytics___salesforce_stg__mc_deal_summary_deal_summary_id.f987e65f12": ["model.yoda.analytics___salesforce_stg__mc_deal_summary"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_deal_summary_1.67666745de": ["model.yoda.analytics___salesforce_stg__mc_deal_summary"], "test.yoda.unique_analytics___salesforce_stg__mc_event_event_id.3d0cf71521": ["model.yoda.analytics___salesforce_stg__mc_event"], "test.yoda.not_null_analytics___salesforce_stg__mc_event_event_id.44815ab8c6": ["model.yoda.analytics___salesforce_stg__mc_event"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_event_1.6a312aa568": ["model.yoda.analytics___salesforce_stg__mc_event"], "test.yoda.unique_analytics___salesforce_stg__mc_lead_lead_id.c0041ba96f": ["model.yoda.analytics___salesforce_stg__mc_lead"], "test.yoda.not_null_analytics___salesforce_stg__mc_lead_lead_id.1313d03af5": ["model.yoda.analytics___salesforce_stg__mc_lead"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_lead_1.734b196685": ["model.yoda.analytics___salesforce_stg__mc_lead"], "test.yoda.unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_id.fcda757714": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"], "test.yoda.not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_id.d41b3dca35": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"], "test.yoda.unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name.6ab14b9723": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"], "test.yoda.not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name.5fdab31e8e": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_live_chat_transcript_1.b2da541dc7": ["model.yoda.analytics___salesforce_stg__mc_live_chat_transcript"], "test.yoda.unique_analytics___salesforce_stg__mc_mql_mql_id.a3493225ae": ["model.yoda.analytics___salesforce_stg__mc_mql"], "test.yoda.not_null_analytics___salesforce_stg__mc_mql_mql_id.66109a1a64": ["model.yoda.analytics___salesforce_stg__mc_mql"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_mql_1.2e58293ab3": ["model.yoda.analytics___salesforce_stg__mc_mql"], "test.yoda.unique_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id.6198a515ad": ["model.yoda.analytics___salesforce_stg__mc_onboarding_project"], "test.yoda.not_null_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id.6bce4734a2": ["model.yoda.analytics___salesforce_stg__mc_onboarding_project"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_onboarding_project_1.07a3de4ae7": ["model.yoda.analytics___salesforce_stg__mc_onboarding_project"], "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_opportunity_id.0f619d4a92": ["model.yoda.analytics___salesforce_stg__mc_opportunity"], "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_opportunity_id.1bc80ae2ed": ["model.yoda.analytics___salesforce_stg__mc_opportunity"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_1.86280c097e": ["model.yoda.analytics___salesforce_stg__mc_opportunity"], "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id.abd55de465": ["model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"], "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id.0e99b7bab4": ["model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_field_history_1.d0fb577563": ["model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"], "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id.58b83fd78d": ["model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"], "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id.84b54bbaa8": ["model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_line_item_1.d16e880f1e": ["model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_partner_referral_1.45712a9da3": ["model.yoda.analytics___salesforce_stg__mc_partner_referral"], "test.yoda.not_null_analytics___salesforce_stg__mc_service_case_case_id.ffdf41fb7a": ["model.yoda.analytics___salesforce_stg__mc_service_case"], "test.yoda.unique_analytics___salesforce_stg__mc_service_case_case_id.9f24d80528": ["model.yoda.analytics___salesforce_stg__mc_service_case"], "test.yoda.not_null_analytics___salesforce_stg__mc_service_case_case_number.20104071ae": ["model.yoda.analytics___salesforce_stg__mc_service_case"], "test.yoda.unique_analytics___salesforce_stg__mc_service_case_case_number.89289315b2": ["model.yoda.analytics___salesforce_stg__mc_service_case"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_service_case_1.4f19e3da6a": ["model.yoda.analytics___salesforce_stg__mc_service_case"], "test.yoda.unique_analytics___salesforce_stg__mc_task_task_id.0df533b3d4": ["model.yoda.analytics___salesforce_stg__mc_task"], "test.yoda.not_null_analytics___salesforce_stg__mc_task_task_id.cf03e7f289": ["model.yoda.analytics___salesforce_stg__mc_task"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_task_1.cb12c7d801": ["model.yoda.analytics___salesforce_stg__mc_task"], "test.yoda.unique_analytics___salesforce_stg__mc_user_user_id.e62938aaff": ["model.yoda.analytics___salesforce_stg__mc_user"], "test.yoda.not_null_analytics___salesforce_stg__mc_user_user_id.ba2f4f0e35": ["model.yoda.analytics___salesforce_stg__mc_user"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_user_1.b7a345583f": ["model.yoda.analytics___salesforce_stg__mc_user"], "test.yoda.unique_analytics___salesforce_stg__opportunity_prediction_prediction_id.238d85469e": ["model.yoda.analytics___salesforce_stg__opportunity_prediction"], "test.yoda.not_null_analytics___salesforce_stg__opportunity_prediction_prediction_id.64f233439a": ["model.yoda.analytics___salesforce_stg__opportunity_prediction"], "test.yoda.not_null_analytics___salesforce_stg__opportunity_prediction_opportunity_id.dbc81edaa6": ["model.yoda.analytics___salesforce_stg__opportunity_prediction"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_1.dc9a0132aa": ["model.yoda.analytics___salesforce_stg__opportunity_prediction"], "test.yoda.not_null_analytics___sms__automation_message_dates_automation_id.0825c476ff": ["model.yoda.analytics___sms__automation_message_dates"], "test.yoda.not_null_analytics___sms__automation_message_dates_message_date.1ce8be6560": ["model.yoda.analytics___sms__automation_message_dates"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__automation_message_dates_1.4ec8bc0876": ["model.yoda.analytics___sms__automation_message_dates"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__automation_message_dates_automation_id__message_date.fc259d88d0": ["model.yoda.analytics___sms__automation_message_dates"], "test.yoda.not_null_analytics___sms__campaign_message_dates_campaign_id.0514713006": ["model.yoda.analytics___sms__campaign_message_dates"], "test.yoda.not_null_analytics___sms__campaign_message_dates_message_date.894b1dacb2": ["model.yoda.analytics___sms__campaign_message_dates"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__campaign_message_dates_1.ffbda0bcd9": ["model.yoda.analytics___sms__campaign_message_dates"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__campaign_message_dates_campaign_id__message_date.46ebcecbeb": ["model.yoda.analytics___sms__campaign_message_dates"], "test.yoda.unique_analytics___sms__deliverability_daily_sms_deliverability_id.b877936313": ["model.yoda.analytics___sms__deliverability_daily"], "test.yoda.not_null_analytics___sms__deliverability_daily_sms_deliverability_id.a4af05164d": ["model.yoda.analytics___sms__deliverability_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__deliverability_daily_1.ed5ec677de": ["model.yoda.analytics___sms__deliverability_daily"], "test.yoda.not_null_analytics___sms__flow_message_dates_flow_id.5090ceb246": ["model.yoda.analytics___sms__flow_message_dates"], "test.yoda.not_null_analytics___sms__flow_message_dates_message_date.29be2122c3": ["model.yoda.analytics___sms__flow_message_dates"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__flow_message_dates_1.1ec9cc49fd": ["model.yoda.analytics___sms__flow_message_dates"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__flow_message_dates_flow_id__message_date.f34aa732ba": ["model.yoda.analytics___sms__flow_message_dates"], "test.yoda.unique_analytics___sms__free_credit_details_free_credit_id.b8d6e0a420": ["model.yoda.analytics___sms__free_credit_details"], "test.yoda.not_null_analytics___sms__free_credit_details_free_credit_id.613946642d": ["model.yoda.analytics___sms__free_credit_details"], "test.yoda.not_null_analytics___sms__free_credit_details_sms_user_id.d1db017895": ["model.yoda.analytics___sms__free_credit_details"], "test.yoda.not_null_analytics___sms__free_credit_details_credit_type.78a91a3b84": ["model.yoda.analytics___sms__free_credit_details"], "test.yoda.not_null_analytics___sms__free_credit_details_credit_created_at.7c49b5f5fa": ["model.yoda.analytics___sms__free_credit_details"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__free_credit_details_1.add0fadb53": ["model.yoda.analytics___sms__free_credit_details"], "test.yoda.not_null_analytics___sms__organization_metrics_monthly_month.4c1ae2b791": ["model.yoda.analytics___sms__organization_metrics_monthly"], "test.yoda.not_null_analytics___sms__organization_metrics_monthly_organization_key.e4e223c945": ["model.yoda.analytics___sms__organization_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__organization_metrics_monthly_1.f032af9f64": ["model.yoda.analytics___sms__organization_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__organization_metrics_monthly_month__organization_key.de5cf3249b": ["model.yoda.analytics___sms__organization_metrics_monthly"], "test.yoda.unique_analytics___sms__purchase_purchase_id.b73f9e0cdf": ["model.yoda.analytics___sms__purchase"], "test.yoda.not_null_analytics___sms__purchase_purchase_id.b5ed9e35cb": ["model.yoda.analytics___sms__purchase"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__purchase_1.671a5dc914": ["model.yoda.analytics___sms__purchase"], "test.yoda.unique_analytics___sms__store_app_key.c36e729d05": ["model.yoda.analytics___sms__store"], "test.yoda.not_null_analytics___sms__store_app_key.4ae1b748eb": ["model.yoda.analytics___sms__store"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_1.f4bddc02a7": ["model.yoda.analytics___sms__store"], "test.yoda.not_null_analytics___sms__store_activeness_daily_activeness_date.418c4727f0": ["model.yoda.analytics___sms__store_activeness_daily"], "test.yoda.not_null_analytics___sms__store_activeness_daily_app_key.b3bfec3f09": ["model.yoda.analytics___sms__store_activeness_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_activeness_daily_1.4432762bd7": ["model.yoda.analytics___sms__store_activeness_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_activeness_daily_activeness_date__app_key.e3dae1fbf0": ["model.yoda.analytics___sms__store_activeness_daily"], "test.yoda.not_null_analytics___sms__store_cohort_cohort_type.a81030d6ce": ["model.yoda.analytics___sms__store_cohort"], "test.yoda.not_null_analytics___sms__store_cohort_cohort_number.a60499f07d": ["model.yoda.analytics___sms__store_cohort"], "test.yoda.not_null_analytics___sms__store_cohort_app_key.c9097fd85a": ["model.yoda.analytics___sms__store_cohort"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_cohort_1.731435684c": ["model.yoda.analytics___sms__store_cohort"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_cohort_cohort_type__cohort_number__app_key.4339d9bc4e": ["model.yoda.analytics___sms__store_cohort"], "test.yoda.unique_analytics___sms__store_metrics_app_key.9ba09bfff4": ["model.yoda.analytics___sms__store_metrics"], "test.yoda.not_null_analytics___sms__store_metrics_app_key.66dbe2259f": ["model.yoda.analytics___sms__store_metrics"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_1.2243a2968f": ["model.yoda.analytics___sms__store_metrics"], "test.yoda.not_null_analytics___sms__store_metrics_daily_date.e047c841c8": ["model.yoda.analytics___sms__store_metrics_daily"], "test.yoda.not_null_analytics___sms__store_metrics_daily_sms_user_id.8a38a6c32b": ["model.yoda.analytics___sms__store_metrics_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_daily_1.8628852519": ["model.yoda.analytics___sms__store_metrics_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_daily_date__sms_user_id.12d9c6e5a6": ["model.yoda.analytics___sms__store_metrics_daily"], "test.yoda.not_null_analytics___sms__store_metrics_monthly_month.1d1fbc529c": ["model.yoda.analytics___sms__store_metrics_monthly"], "test.yoda.not_null_analytics___sms__store_metrics_monthly_app_key.f1f27aa275": ["model.yoda.analytics___sms__store_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_monthly_1.503243a18e": ["model.yoda.analytics___sms__store_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_monthly_month__app_key.261ef4f277": ["model.yoda.analytics___sms__store_metrics_monthly"], "test.yoda.not_null_analytics___sms__store_plan_daily_date.5d8a176ccd": ["model.yoda.analytics___sms__store_plan_daily"], "test.yoda.not_null_analytics___sms__store_plan_daily_app_key.33a248140c": ["model.yoda.analytics___sms__store_plan_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_daily_1.639d995f4b": ["model.yoda.analytics___sms__store_plan_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_daily_date__app_key.4f5e35cc06": ["model.yoda.analytics___sms__store_plan_daily"], "test.yoda.not_null_analytics___sms__store_plan_over_time_app_key.915904b3b5": ["model.yoda.analytics___sms__store_plan_over_time"], "test.yoda.not_null_analytics___sms__store_plan_over_time_from_time.2c20a6ca8e": ["model.yoda.analytics___sms__store_plan_over_time"], "test.yoda.not_null_analytics___sms__store_plan_over_time_row_ranking_for_store_and_created_date.a80e2f0af0": ["model.yoda.analytics___sms__store_plan_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_over_time_1.1f72d8ea1d": ["model.yoda.analytics___sms__store_plan_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_over_time_app_key__from_time__row_ranking_for_store_and_created_date.e8a022ecf1": ["model.yoda.analytics___sms__store_plan_over_time"], "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_date.48c8026dcb": ["model.yoda.analytics___sms__store_receiving_country_metrics"], "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_app_key.62baae9185": ["model.yoda.analytics___sms__store_receiving_country_metrics"], "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_sms_user_id.23e8e685a5": ["model.yoda.analytics___sms__store_receiving_country_metrics"], "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_platform_name.736d64c512": ["model.yoda.analytics___sms__store_receiving_country_metrics"], "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_message_type.7c58e62a8d": ["model.yoda.analytics___sms__store_receiving_country_metrics"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_receiving_country_metrics_1.cfb3934611": ["model.yoda.analytics___sms__store_receiving_country_metrics"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_receiving_country_metrics_date__app_key__sms_user_id__plan_name__receiving_country__message_type.c272401986": ["model.yoda.analytics___sms__store_receiving_country_metrics"], "test.yoda.not_null_analytics___sms__user_activeness_daily_activeness_date.ed1699b965": ["model.yoda.analytics___sms__user_activeness_daily"], "test.yoda.not_null_analytics___sms__user_activeness_daily_sms_user_id.19e6a484b5": ["model.yoda.analytics___sms__user_activeness_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_activeness_daily_1.dadc0c9339": ["model.yoda.analytics___sms__user_activeness_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_activeness_daily_activeness_date__sms_user_id.4b9b0451dc": ["model.yoda.analytics___sms__user_activeness_daily"], "test.yoda.not_null_analytics___sms__user_customer_sms_user_id.2d20dc9984": ["model.yoda.analytics___sms__user_customer"], "test.yoda.not_null_analytics___sms__user_customer_customer_email.d9a9b17c31": ["model.yoda.analytics___sms__user_customer"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_customer_1.e8e30e51aa": ["model.yoda.analytics___sms__user_customer"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_customer_sms_user_id__customer_email.726afcd4b9": ["model.yoda.analytics___sms__user_customer"], "test.yoda.not_null_analytics___sms__user_dates_history_sms_user_id.72878c6780": ["model.yoda.analytics___sms__user_dates_history"], "test.yoda.not_null_analytics___sms__user_dates_history_category.84074f68fb": ["model.yoda.analytics___sms__user_dates_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_dates_history_1.51a67f0f66": ["model.yoda.analytics___sms__user_dates_history"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_dates_history_sms_user_id__category.60f0ec5210": ["model.yoda.analytics___sms__user_dates_history"], "test.yoda.not_null_analytics___sms__user_installation_over_time_sms_user_id.8c0aa751e5": ["model.yoda.analytics___sms__user_installation_over_time"], "test.yoda.not_null_analytics___sms__user_installation_over_time_from_time.084809d4ed": ["model.yoda.analytics___sms__user_installation_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_installation_over_time_1.bd685b143b": ["model.yoda.analytics___sms__user_installation_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_installation_over_time_sms_user_id__from_time.35da2ba29c": ["model.yoda.analytics___sms__user_installation_over_time"], "test.yoda.not_null_analytics___sms__user_metrics_daily_date.3aa35ebeae": ["model.yoda.analytics___sms__user_metrics_daily"], "test.yoda.not_null_analytics___sms__user_metrics_daily_sms_user_id.2cf64f25e9": ["model.yoda.analytics___sms__user_metrics_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_metrics_daily_1.c15c39e602": ["model.yoda.analytics___sms__user_metrics_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_metrics_daily_date__sms_user_id.c9e711584a": ["model.yoda.analytics___sms__user_metrics_daily"], "test.yoda.not_null_analytics___sms__user_open_over_time_sms_user_id.648dc00053": ["model.yoda.analytics___sms__user_open_over_time"], "test.yoda.not_null_analytics___sms__user_open_over_time_from_time.c332d22411": ["model.yoda.analytics___sms__user_open_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_open_over_time_1.4d8283ec4f": ["model.yoda.analytics___sms__user_open_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_open_over_time_sms_user_id__from_time.47a1b16228": ["model.yoda.analytics___sms__user_open_over_time"], "test.yoda.not_null_analytics___sms__user_plan_daily_date.33a3073dd2": ["model.yoda.analytics___sms__user_plan_daily"], "test.yoda.not_null_analytics___sms__user_plan_daily_sms_user_id.60835627af": ["model.yoda.analytics___sms__user_plan_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_daily_1.7a999ca752": ["model.yoda.analytics___sms__user_plan_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_daily_date__sms_user_id.7bb4b1abb3": ["model.yoda.analytics___sms__user_plan_daily"], "test.yoda.not_null_analytics___sms__user_plan_monthly_month.0820d3b1d1": ["model.yoda.analytics___sms__user_plan_monthly"], "test.yoda.not_null_analytics___sms__user_plan_monthly_sms_user_id.3928145ca3": ["model.yoda.analytics___sms__user_plan_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_monthly_1.c91b897ee1": ["model.yoda.analytics___sms__user_plan_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_monthly_month__sms_user_id.1b634e671b": ["model.yoda.analytics___sms__user_plan_monthly"], "test.yoda.not_null_analytics___sms__user_plan_over_time_sms_user_id.554ad72120": ["model.yoda.analytics___sms__user_plan_over_time"], "test.yoda.not_null_analytics___sms__user_plan_over_time_from_time.33a87dfaa7": ["model.yoda.analytics___sms__user_plan_over_time"], "test.yoda.not_null_analytics___sms__user_plan_over_time_row_ranking_for_user_and_created_date.2af5c52a25": ["model.yoda.analytics___sms__user_plan_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_over_time_1.82ee3e55ec": ["model.yoda.analytics___sms__user_plan_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_over_time_sms_user_id__from_time__row_ranking_for_user_and_created_date.0bac7aea56": ["model.yoda.analytics___sms__user_plan_over_time"], "test.yoda.unique_analytics___sms__user_pop_up_status_sms_user_id.731b32c4ae": ["model.yoda.analytics___sms__user_pop_up_status"], "test.yoda.not_null_analytics___sms__user_pop_up_status_sms_user_id.9f7cc77c1e": ["model.yoda.analytics___sms__user_pop_up_status"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_1.12a6946cb6": ["model.yoda.analytics___sms__user_pop_up_status"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_over_time_1.ddc3058f11": ["model.yoda.analytics___sms__user_pop_up_status_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_pop_up_status_over_time_sms_user_id__from_date.2dd0ca6d86": ["model.yoda.analytics___sms__user_pop_up_status_over_time"], "test.yoda.not_null_analytics___sms__user_store_dates_history_sms_user_id.7cd1d7d381": ["model.yoda.analytics___sms__user_store_dates_history"], "test.yoda.not_null_analytics___sms__user_store_dates_history_app_key.296cd0882f": ["model.yoda.analytics___sms__user_store_dates_history"], "test.yoda.not_null_analytics___sms__user_store_dates_history_category.bbab7f1a6e": ["model.yoda.analytics___sms__user_store_dates_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_store_dates_history_1.ceb253056b": ["model.yoda.analytics___sms__user_store_dates_history"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_store_dates_history_sms_user_id__app_key__category.494d86c84a": ["model.yoda.analytics___sms__user_store_dates_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__fact_agg_sms_user_profile_daily_1.b874e00d75": ["model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__fact_agg_sms_user_profile_daily_date__user_id.9411d9994c": ["model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_high_touch_bonus_1.cc9e696845": ["model.yoda.analytics___sms_stg__free_credit_high_touch_bonus"], "test.yoda.unique_analytics___sms_stg__analytics_data_analytics_data_id.ea375a255c": ["model.yoda.analytics___sms_stg__analytics_data"], "test.yoda.not_null_analytics___sms_stg__analytics_data_analytics_data_id.9608a2af02": ["model.yoda.analytics___sms_stg__analytics_data"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__analytics_data_1.6bf1de2585": ["model.yoda.analytics___sms_stg__analytics_data"], "test.yoda.unique_analytics___sms_stg__api_calls_api_call_id.a63d25bdda": ["model.yoda.analytics___sms_stg__api_calls"], "test.yoda.not_null_analytics___sms_stg__api_calls_api_call_id.568129cb2a": ["model.yoda.analytics___sms_stg__api_calls"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__api_calls_1.0e35106141": ["model.yoda.analytics___sms_stg__api_calls"], "test.yoda.unique_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id.083d181b08": ["model.yoda.analytics___sms_stg__bigcommerce_user"], "test.yoda.not_null_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id.52ff23780e": ["model.yoda.analytics___sms_stg__bigcommerce_user"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__bigcommerce_user_1.2f8a1193cf": ["model.yoda.analytics___sms_stg__bigcommerce_user"], "test.yoda.unique_analytics___sms_stg__campaign_campaign_id.8cc2699c93": ["model.yoda.analytics___sms_stg__campaign"], "test.yoda.not_null_analytics___sms_stg__campaign_campaign_id.2e4875af1d": ["model.yoda.analytics___sms_stg__campaign"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_1.6e36c0b8c5": ["model.yoda.analytics___sms_stg__campaign"], "test.yoda.not_null_analytics___sms_stg__campaign_deletion_tracking_campaign_id.ad36d4faf6": ["model.yoda.analytics___sms_stg__campaign_deletion_tracking"], "test.yoda.not_null_analytics___sms_stg__campaign_deletion_tracking_is_logical_deleted.8c745647d1": ["model.yoda.analytics___sms_stg__campaign_deletion_tracking"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_deletion_tracking_1.92e95b6a0c": ["model.yoda.analytics___sms_stg__campaign_deletion_tracking"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__campaign_deletion_tracking_campaign_id__is_logical_deleted.830a953547": ["model.yoda.analytics___sms_stg__campaign_deletion_tracking"], "test.yoda.unique_analytics___sms_stg__campaign_list_campaign_list_id.f65a441bf5": ["model.yoda.analytics___sms_stg__campaign_list"], "test.yoda.not_null_analytics___sms_stg__campaign_list_campaign_list_id.0889d20f03": ["model.yoda.analytics___sms_stg__campaign_list"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_list_1.53789ded76": ["model.yoda.analytics___sms_stg__campaign_list"], "test.yoda.unique_analytics___sms_stg__campaign_relation_campaign_relation_id.e0081a0a4f": ["model.yoda.analytics___sms_stg__campaign_relation"], "test.yoda.not_null_analytics___sms_stg__campaign_relation_campaign_relation_id.01984fc04d": ["model.yoda.analytics___sms_stg__campaign_relation"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_relation_1.0709383063": ["model.yoda.analytics___sms_stg__campaign_relation"], "test.yoda.unique_analytics___sms_stg__default_predefined_message_template_id.2870f5f492": ["model.yoda.analytics___sms_stg__default_predefined_message"], "test.yoda.not_null_analytics___sms_stg__default_predefined_message_template_id.2e1f7c861f": ["model.yoda.analytics___sms_stg__default_predefined_message"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__default_predefined_message_1.2179eda3ee": ["model.yoda.analytics___sms_stg__default_predefined_message"], "test.yoda.not_null_analytics___sms_stg__email_charge_email_charge_id.314c08ee94": ["model.yoda.analytics___sms_stg__email_charge"], "test.yoda.unique_analytics___sms_stg__email_charge_email_charge_id.88a79f413b": ["model.yoda.analytics___sms_stg__email_charge"], "test.yoda.not_null_analytics___sms_stg__email_charge_currency.4ecbbe716b": ["model.yoda.analytics___sms_stg__email_charge"], "test.yoda.accepted_values_analytics___sms_stg__email_charge_currency__USD.3088c35bba": ["model.yoda.analytics___sms_stg__email_charge"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__email_charge_1.31aee7432b": ["model.yoda.analytics___sms_stg__email_charge"], "test.yoda.unique_analytics___sms_stg__event_event_id.b1ae672149": ["model.yoda.analytics___sms_stg__event"], "test.yoda.not_null_analytics___sms_stg__event_event_id.7c70674ed4": ["model.yoda.analytics___sms_stg__event"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_1.1481ad6982": ["model.yoda.analytics___sms_stg__event"], "test.yoda.not_null_analytics___sms_stg__event_deletion_tracking_event_id.aad13cd2d0": ["model.yoda.analytics___sms_stg__event_deletion_tracking"], "test.yoda.not_null_analytics___sms_stg__event_deletion_tracking_is_logical_deleted.4bc68e5556": ["model.yoda.analytics___sms_stg__event_deletion_tracking"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_deletion_tracking_1.3fdf147bb9": ["model.yoda.analytics___sms_stg__event_deletion_tracking"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__event_deletion_tracking_event_id__is_logical_deleted.3215c296e6": ["model.yoda.analytics___sms_stg__event_deletion_tracking"], "test.yoda.unique_analytics___sms_stg__flow_flow_id.00e5a420fc": ["model.yoda.analytics___sms_stg__flow"], "test.yoda.not_null_analytics___sms_stg__flow_flow_id.d057f09c87": ["model.yoda.analytics___sms_stg__flow"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_1.ef23600f5b": ["model.yoda.analytics___sms_stg__flow"], "test.yoda.not_null_analytics___sms_stg__flow_deletion_tracking_flow_id.95d3a0af30": ["model.yoda.analytics___sms_stg__flow_deletion_tracking"], "test.yoda.not_null_analytics___sms_stg__flow_deletion_tracking_is_logical_deleted.c90de52b91": ["model.yoda.analytics___sms_stg__flow_deletion_tracking"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_deletion_tracking_1.790497ab87": ["model.yoda.analytics___sms_stg__flow_deletion_tracking"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__flow_deletion_tracking_flow_id__is_logical_deleted.28b27600d8": ["model.yoda.analytics___sms_stg__flow_deletion_tracking"], "test.yoda.accepted_values_analytics___sms_stg__form_is_dynamic_popup__0__1.b6e7c6b4a0": ["model.yoda.analytics___sms_stg__form"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__form_1.451d930639": ["model.yoda.analytics___sms_stg__form"], "test.yoda.unique_analytics___sms_stg__free_credit_log_free_credit_log_id.d89be83a66": ["model.yoda.analytics___sms_stg__free_credit_log"], "test.yoda.not_null_analytics___sms_stg__free_credit_log_free_credit_log_id.92d6397f1e": ["model.yoda.analytics___sms_stg__free_credit_log"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_log_1.140b7330dd": ["model.yoda.analytics___sms_stg__free_credit_log"], "test.yoda.unique_analytics___sms_stg__list_list_id.ea2f670be6": ["model.yoda.analytics___sms_stg__list"], "test.yoda.not_null_analytics___sms_stg__list_list_id.76cfee039f": ["model.yoda.analytics___sms_stg__list"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__list_1.a5ab72d384": ["model.yoda.analytics___sms_stg__list"], "test.yoda.unique_analytics___sms_stg__loyalty_flow_flow_id.7842cb6a45": ["model.yoda.analytics___sms_stg__loyalty_flow"], "test.yoda.not_null_analytics___sms_stg__loyalty_flow_flow_id.edcc8e2992": ["model.yoda.analytics___sms_stg__loyalty_flow"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__loyalty_flow_1.0e978e780f": ["model.yoda.analytics___sms_stg__loyalty_flow"], "test.yoda.unique_analytics___sms_stg__organization_identifier_conversion_organization_id.d2cdc53d89": ["model.yoda.analytics___sms_stg__organization_identifier_conversion"], "test.yoda.not_null_analytics___sms_stg__organization_identifier_conversion_organization_id.8211799e55": ["model.yoda.analytics___sms_stg__organization_identifier_conversion"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__organization_identifier_conversion_1.5f7d34fc26": ["model.yoda.analytics___sms_stg__organization_identifier_conversion"], "test.yoda.unique_analytics___sms_stg__plan_plan_id.1bfc36b301": ["model.yoda.analytics___sms_stg__plan"], "test.yoda.not_null_analytics___sms_stg__plan_plan_id.d2cf504db2": ["model.yoda.analytics___sms_stg__plan"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__plan_1.7829c012c2": ["model.yoda.analytics___sms_stg__plan"], "test.yoda.unique_analytics___sms_stg__purchase_purchase_id.909b5ae18b": ["model.yoda.analytics___sms_stg__purchase"], "test.yoda.not_null_analytics___sms_stg__purchase_purchase_id.94e0e9df49": ["model.yoda.analytics___sms_stg__purchase"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__purchase_1.a1735bbd5c": ["model.yoda.analytics___sms_stg__purchase"], "test.yoda.unique_analytics___sms_stg__segment_sms_campaign_message_id.3ee1be1b40": ["model.yoda.analytics___sms_stg__segment_sms_campaign"], "test.yoda.not_null_analytics___sms_stg__segment_sms_campaign_message_id.92fc44f787": ["model.yoda.analytics___sms_stg__segment_sms_campaign"], "test.yoda.not_null_analytics___sms_stg__segment_sms_campaign_created_at.9496b7b68e": ["model.yoda.analytics___sms_stg__segment_sms_campaign"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__segment_sms_campaign_1.ed1541f2c3": ["model.yoda.analytics___sms_stg__segment_sms_campaign"], "test.yoda.unique_analytics___sms_stg__shopify_campaign_order_order_attribution_id.fa5455b3a8": ["model.yoda.analytics___sms_stg__shopify_campaign_order"], "test.yoda.not_null_analytics___sms_stg__shopify_campaign_order_order_attribution_id.25777d50f3": ["model.yoda.analytics___sms_stg__shopify_campaign_order"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_campaign_order_1.713ed05fab": ["model.yoda.analytics___sms_stg__shopify_campaign_order"], "test.yoda.unique_analytics___sms_stg__shopify_customer_shopify_customer_internal_id.2012ed1458": ["model.yoda.analytics___sms_stg__shopify_customer"], "test.yoda.not_null_analytics___sms_stg__shopify_customer_shopify_customer_internal_id.c97ecf6b69": ["model.yoda.analytics___sms_stg__shopify_customer"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_customer_1.45c5ed49f6": ["model.yoda.analytics___sms_stg__shopify_customer"], "test.yoda.unique_analytics___sms_stg__shopify_flow_order_order_attribution_id.37d90edfd1": ["model.yoda.analytics___sms_stg__shopify_flow_order"], "test.yoda.not_null_analytics___sms_stg__shopify_flow_order_order_attribution_id.c37f548479": ["model.yoda.analytics___sms_stg__shopify_flow_order"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_flow_order_1.de05f701f6": ["model.yoda.analytics___sms_stg__shopify_flow_order"], "test.yoda.unique_analytics___sms_stg__shopify_orders_order_line_id.b7fc40909e": ["model.yoda.analytics___sms_stg__shopify_orders"], "test.yoda.not_null_analytics___sms_stg__shopify_orders_order_line_id.63c7c1c764": ["model.yoda.analytics___sms_stg__shopify_orders"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_orders_1.11db598530": ["model.yoda.analytics___sms_stg__shopify_orders"], "test.yoda.unique_analytics___sms_stg__shopify_segment_segment_id.7b34c480b5": ["model.yoda.analytics___sms_stg__shopify_segment"], "test.yoda.not_null_analytics___sms_stg__shopify_segment_segment_id.b05d38783b": ["model.yoda.analytics___sms_stg__shopify_segment"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_segment_1.9aa58fa3a4": ["model.yoda.analytics___sms_stg__shopify_segment"], "test.yoda.unique_analytics___sms_stg__shopify_user_shopify_user_id.c0bac38cb2": ["model.yoda.analytics___sms_stg__shopify_user"], "test.yoda.not_null_analytics___sms_stg__shopify_user_shopify_user_id.f0336d7360": ["model.yoda.analytics___sms_stg__shopify_user"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_user_1.862a063db4": ["model.yoda.analytics___sms_stg__shopify_user"], "test.yoda.unique_analytics___sms_stg__sms_user_sms_user_id.490873732c": ["model.yoda.analytics___sms_stg__sms_user"], "test.yoda.not_null_analytics___sms_stg__sms_user_sms_user_id.ee715eacd8": ["model.yoda.analytics___sms_stg__sms_user"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__sms_user_1.3707c4d202": ["model.yoda.analytics___sms_stg__sms_user"], "test.yoda.unique_analytics___sms_stg__track_flow_adoption_flow_adoption_id.e1be7f4dd9": ["model.yoda.analytics___sms_stg__track_flow_adoption"], "test.yoda.not_null_analytics___sms_stg__track_flow_adoption_flow_adoption_id.f27cbca06e": ["model.yoda.analytics___sms_stg__track_flow_adoption"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__track_flow_adoption_1.33191f793d": ["model.yoda.analytics___sms_stg__track_flow_adoption"], "test.yoda.not_null_analytics___sms_stg__user_date_explode_from_creation_date.261a50fcfa": ["model.yoda.analytics___sms_stg__user_date_explode_from_creation"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_date_explode_from_creation_1.bde74b930d": ["model.yoda.analytics___sms_stg__user_date_explode_from_creation"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__user_date_explode_from_creation_date__sms_user_id.4be7d2f30b": ["model.yoda.analytics___sms_stg__user_date_explode_from_creation"], "test.yoda.unique_analytics___sms_stg__user_event_log_event_id.d78a562339": ["model.yoda.analytics___sms_stg__user_event_log"], "test.yoda.not_null_analytics___sms_stg__user_event_log_event_id.b453540b82": ["model.yoda.analytics___sms_stg__user_event_log"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_event_log_1.312315ba21": ["model.yoda.analytics___sms_stg__user_event_log"], "test.yoda.not_null_analytics___subscriptions__contract_over_time_subscription_contract_id.afe55a364d": ["model.yoda.analytics___subscriptions__contract_over_time"], "test.yoda.not_null_analytics___subscriptions__contract_over_time_app_key.eb1cc36551": ["model.yoda.analytics___subscriptions__contract_over_time"], "test.yoda.not_null_analytics___subscriptions__contract_over_time_from_time.ea49a1a71e": ["model.yoda.analytics___subscriptions__contract_over_time"], "test.yoda.not_null_analytics___subscriptions__contract_over_time_to_time.a7841aa00e": ["model.yoda.analytics___subscriptions__contract_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__contract_over_time_1.f721df90e4": ["model.yoda.analytics___subscriptions__contract_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__contract_over_time_app_key__from_time__to_time__subscription_contract_id.a4c467bc5b": ["model.yoda.analytics___subscriptions__contract_over_time"], "test.yoda.unique_analytics___subscriptions__store_app_key.9ef591e5eb": ["model.yoda.analytics___subscriptions__store"], "test.yoda.not_null_analytics___subscriptions__store_app_key.08a51eda61": ["model.yoda.analytics___subscriptions__store"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_1.34ac5e53e0": ["model.yoda.analytics___subscriptions__store"], "test.yoda.not_null_analytics___subscriptions__store_activeness_daily_activeness_date.ee63973cf7": ["model.yoda.analytics___subscriptions__store_activeness_daily"], "test.yoda.not_null_analytics___subscriptions__store_activeness_daily_app_key.00b4f16e92": ["model.yoda.analytics___subscriptions__store_activeness_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_activeness_daily_1.094fb6643f": ["model.yoda.analytics___subscriptions__store_activeness_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_activeness_daily_activeness_date__app_key.bb85741a83": ["model.yoda.analytics___subscriptions__store_activeness_daily"], "test.yoda.not_null_analytics___subscriptions__store_feature_activation_app_key.20fc1e9ad2": ["model.yoda.analytics___subscriptions__store_feature_activation"], "test.yoda.not_null_analytics___subscriptions__store_feature_activation_feature_name.7d69d75c9c": ["model.yoda.analytics___subscriptions__store_feature_activation"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_feature_activation_1.8d5d5298a3": ["model.yoda.analytics___subscriptions__store_feature_activation"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_feature_activation_app_key__feature_name.b3a24c2bb2": ["model.yoda.analytics___subscriptions__store_feature_activation"], "test.yoda.not_null_analytics___subscriptions__store_installation_over_time_app_key.5c5e205994": ["model.yoda.analytics___subscriptions__store_installation_over_time"], "test.yoda.not_null_analytics___subscriptions__store_installation_over_time_from_time.9a7d4d93c3": ["model.yoda.analytics___subscriptions__store_installation_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_installation_over_time_1.78f443f9ee": ["model.yoda.analytics___subscriptions__store_installation_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_installation_over_time_app_key__from_time.7622c74e4b": ["model.yoda.analytics___subscriptions__store_installation_over_time"], "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_app_key.43cd3ad301": ["model.yoda.analytics___subscriptions__subscription_contract_daily"], "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_date.d3d90c8094": ["model.yoda.analytics___subscriptions__subscription_contract_daily"], "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status.a93d10ba55": ["model.yoda.analytics___subscriptions__subscription_contract_daily"], "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status_id.c972a8540d": ["model.yoda.analytics___subscriptions__subscription_contract_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_daily_1.c0a7f26b24": ["model.yoda.analytics___subscriptions__subscription_contract_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_daily_app_key__date__subscription_contract_status_id.55e676ee06": ["model.yoda.analytics___subscriptions__subscription_contract_daily"], "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_app_key.3ddafaed5f": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"], "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_month.cfc865b9a1": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"], "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status.3aa7143fde": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"], "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status_id.bebb1bf4ce": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_monthly_1.54db6ef4fc": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_monthly_app_key__month__subscription_contract_status_id.2217450d3a": ["model.yoda.analytics___subscriptions__subscription_contract_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_ended_v2_1.6d6c36a6b0": ["model.yoda.analytics___subscriptions_stg__subscription_ended_v2"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_started_v2_1.548aa7a7be": ["model.yoda.analytics___subscriptions_stg__subscription_started_v2"], "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_event_created_at.0d93935f72": ["model.yoda.analytics___subscriptions_stg__contract_event_details"], "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_app_key.fd876ab8bb": ["model.yoda.analytics___subscriptions_stg__contract_event_details"], "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_contract_id.cb1646dc14": ["model.yoda.analytics___subscriptions_stg__contract_event_details"], "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_status_id.fdfae2edbf": ["model.yoda.analytics___subscriptions_stg__contract_event_details"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_event_details_1.708aff8138": ["model.yoda.analytics___subscriptions_stg__contract_event_details"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_event_details_app_key__event_created_at__contract_id.7776609e85": ["model.yoda.analytics___subscriptions_stg__contract_event_details"], "test.yoda.not_null_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id.c8fafa20ce": ["model.yoda.analytics___subscriptions_stg__contract_snapshot"], "test.yoda.not_null_analytics___subscriptions_stg__contract_snapshot_app_key.effd01aca2": ["model.yoda.analytics___subscriptions_stg__contract_snapshot"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_snapshot_1.b7c50a7e65": ["model.yoda.analytics___subscriptions_stg__contract_snapshot"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id__app_key__updated_at.d0faa80564": ["model.yoda.analytics___subscriptions_stg__contract_snapshot"], "test.yoda.not_null_analytics___subscriptions_stg__customer_journey_event_journey_event_id.9b3eedfd0f": ["model.yoda.analytics___subscriptions_stg__customer_journey_event"], "test.yoda.unique_analytics___subscriptions_stg__customer_journey_event_journey_event_id.c80c9d4ef0": ["model.yoda.analytics___subscriptions_stg__customer_journey_event"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__customer_journey_event_1.e2a10c9828": ["model.yoda.analytics___subscriptions_stg__customer_journey_event"], "test.yoda.not_null_analytics___subscriptions_stg__mc_product_product_id.af3ee8cbb8": ["model.yoda.analytics___subscriptions_stg__mc_product"], "test.yoda.unique_analytics___subscriptions_stg__mc_product_product_id.4c52e4bd15": ["model.yoda.analytics___subscriptions_stg__mc_product"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_product_1.a71b24154f": ["model.yoda.analytics___subscriptions_stg__mc_product"], "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id.d7668b80cb": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan"], "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id.59fd8b105c": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_1.407e580603": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan"], "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id.d2f7df0555": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan_group"], "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id.b9cc1e66c4": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan_group"], "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id.7b725cc447": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product"], "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id.df899a9d29": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_group_product_1.ebc32382de": ["model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product"], "test.yoda.unique_analytics___subscriptions_stg__mc_status_status_id.2b49d6d937": ["model.yoda.analytics___subscriptions_stg__mc_status"], "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_id.a541e7b3ac": ["model.yoda.analytics___subscriptions_stg__mc_status"], "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_number.ad6508ce95": ["model.yoda.analytics___subscriptions_stg__mc_status"], "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_name.254ed69a12": ["model.yoda.analytics___subscriptions_stg__mc_status"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_status_1.854cb7f2ef": ["model.yoda.analytics___subscriptions_stg__mc_status"], "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id.915c60d6c0": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"], "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id.32d06bde10": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"], "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_app_key.f2d2b80d1f": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_1.702fb87f22": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract"], "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id.9359322c5e": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"], "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id.3bf0d39584": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"], "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_order_app_key.a1c6a31e25": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_order_1.b320df335e": ["model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order"], "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id.21230cd84a": ["model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request"], "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id.1abd886432": ["model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_creation_request_1.d94bb1038d": ["model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request"], "test.yoda.unique_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id.66f95d75ca": ["model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two"], "test.yoda.not_null_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id.0ec80372f0": ["model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_ended_v_two_1.bedc844c4a": ["model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two"], "test.yoda.unique_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id.d42993d6a1": ["model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two"], "test.yoda.not_null_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id.6ffdf73ddf": ["model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_started_v_two_1.ecf07b9f7b": ["model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two"], "test.yoda.not_null_analytics___subscriptions_stg__subscriptions_store_app_key.7942022444": ["model.yoda.analytics___subscriptions_stg__subscriptions_store"], "test.yoda.unique_analytics___subscriptions_stg__subscriptions_store_app_key.3886a3df6b": ["model.yoda.analytics___subscriptions_stg__subscriptions_store"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscriptions_store_1.de18534c11": ["model.yoda.analytics___subscriptions_stg__subscriptions_store"], "test.yoda.not_null_analytics___synergies__activation_level_daily_activeness_date.84e6dd6a57": ["model.yoda.analytics___synergies__activation_level_daily"], "test.yoda.not_null_analytics___synergies__activation_level_daily_app_key.72da946758": ["model.yoda.analytics___synergies__activation_level_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__activation_level_daily_1.3140e90624": ["model.yoda.analytics___synergies__activation_level_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__activation_level_daily_activeness_date__app_key.b8424f7b0c": ["model.yoda.analytics___synergies__activation_level_daily"], "test.yoda.not_null_analytics___synergies__eligible_store_monthly_synergy_month.aa5c8d2f0b": ["model.yoda.analytics___synergies__eligible_store_monthly"], "test.yoda.not_null_analytics___synergies__eligible_store_monthly_app_key.1914c2f746": ["model.yoda.analytics___synergies__eligible_store_monthly"], "test.yoda.not_null_analytics___synergies__eligible_store_monthly_synergy_id.63ab4f85a7": ["model.yoda.analytics___synergies__eligible_store_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__eligible_store_monthly_1.3d0937d0fa": ["model.yoda.analytics___synergies__eligible_store_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__eligible_store_monthly_synergy_month__app_key__synergy_id.22e3c9c72a": ["model.yoda.analytics___synergies__eligible_store_monthly"], "test.yoda.not_null_analytics___synergies__kpi_ranked_action_synergy_id.f57d4318b3": ["model.yoda.analytics___synergies__kpi_ranked_action"], "test.yoda.not_null_analytics___synergies__kpi_ranked_action_app_key.e66b331f14": ["model.yoda.analytics___synergies__kpi_ranked_action"], "test.yoda.not_null_analytics___synergies__kpi_ranked_action_source_type.f591a8ea3e": ["model.yoda.analytics___synergies__kpi_ranked_action"], "test.yoda.not_null_analytics___synergies__kpi_ranked_action_source_id.24e8689291": ["model.yoda.analytics___synergies__kpi_ranked_action"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__kpi_ranked_action_1.26b68aef97": ["model.yoda.analytics___synergies__kpi_ranked_action"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__kpi_ranked_action_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id.0f755cad91": ["model.yoda.analytics___synergies__kpi_ranked_action"], "test.yoda.not_null_analytics___synergies__loyalty_store_metrics_monthly_synergy_month.897d6bad2d": ["model.yoda.analytics___synergies__loyalty_store_metrics_monthly"], "test.yoda.not_null_analytics___synergies__loyalty_store_metrics_monthly_app_key.87b4d192d0": ["model.yoda.analytics___synergies__loyalty_store_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_metrics_monthly_1.f5a5480524": ["model.yoda.analytics___synergies__loyalty_store_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_metrics_monthly_synergy_month__app_key.2f59dc6331": ["model.yoda.analytics___synergies__loyalty_store_metrics_monthly"], "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month.1fd7c4260c": ["model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"], "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_app_key.f8ef238f52": ["model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"], "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_id.35170d967c": ["model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_synergy_metrics_monthly_1.d3aa71542d": ["model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id.a72eb611ac": ["model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly"], "test.yoda.unique_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id.61f1af692a": ["model.yoda.analytics___synergies__organization_synergy_activeness_monthly"], "test.yoda.not_null_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id.e4c71acd8a": ["model.yoda.analytics___synergies__organization_synergy_activeness_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__organization_synergy_activeness_monthly_1.833ae826f0": ["model.yoda.analytics___synergies__organization_synergy_activeness_monthly"], "test.yoda.not_null_analytics___synergies__store_activeness_daily_synergy_id.8ed2c45d8f": ["model.yoda.analytics___synergies__store_activeness_daily"], "test.yoda.not_null_analytics___synergies__store_activeness_daily_activeness_date.0c44d56959": ["model.yoda.analytics___synergies__store_activeness_daily"], "test.yoda.not_null_analytics___synergies__store_activeness_daily_app_key.4c62dab59d": ["model.yoda.analytics___synergies__store_activeness_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_daily_1.851284ac04": ["model.yoda.analytics___synergies__store_activeness_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_daily_synergy_id__activeness_date__app_key.491cf6b0a8": ["model.yoda.analytics___synergies__store_activeness_daily"], "test.yoda.not_null_analytics___synergies__store_activeness_monthly_app_key.32980f35f1": ["model.yoda.analytics___synergies__store_activeness_monthly"], "test.yoda.not_null_analytics___synergies__store_activeness_monthly_synergy_month.872f2e9cd2": ["model.yoda.analytics___synergies__store_activeness_monthly"], "test.yoda.not_null_analytics___synergies__store_activeness_monthly_synergy_id.73179feb49": ["model.yoda.analytics___synergies__store_activeness_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_monthly_1.67b317255f": ["model.yoda.analytics___synergies__store_activeness_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_monthly_app_key__synergy_month__synergy_id.5890b97bea": ["model.yoda.analytics___synergies__store_activeness_monthly"], "test.yoda.not_null_analytics___synergies__store_enablement_daily_synergy_date.5f66ebab8e": ["model.yoda.analytics___synergies__store_enablement_daily"], "test.yoda.not_null_analytics___synergies__store_enablement_daily_app_key.dde758627d": ["model.yoda.analytics___synergies__store_enablement_daily"], "test.yoda.not_null_analytics___synergies__store_enablement_daily_synergy_id.cfd7e75be5": ["model.yoda.analytics___synergies__store_enablement_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_daily_1.58b47e9d83": ["model.yoda.analytics___synergies__store_enablement_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_daily_synergy_date__app_key__synergy_id.926cbeb0ff": ["model.yoda.analytics___synergies__store_enablement_daily"], "test.yoda.not_null_analytics___synergies__store_enablement_monthly_synergy_month.f62218a7e0": ["model.yoda.analytics___synergies__store_enablement_monthly"], "test.yoda.not_null_analytics___synergies__store_enablement_monthly_app_key.702d12e3b1": ["model.yoda.analytics___synergies__store_enablement_monthly"], "test.yoda.not_null_analytics___synergies__store_enablement_monthly_synergy_id.3b524edbf2": ["model.yoda.analytics___synergies__store_enablement_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_monthly_1.73bb740d22": ["model.yoda.analytics___synergies__store_enablement_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_monthly_synergy_month__app_key__synergy_id.ac76283542": ["model.yoda.analytics___synergies__store_enablement_monthly"], "test.yoda.not_null_analytics___synergies__store_enablement_over_time_app_key.32ef98e888": ["model.yoda.analytics___synergies__store_enablement_over_time"], "test.yoda.not_null_analytics___synergies__store_enablement_over_time_synergy_id.3305f8662d": ["model.yoda.analytics___synergies__store_enablement_over_time"], "test.yoda.not_null_analytics___synergies__store_enablement_over_time_from_time.02cb597eca": ["model.yoda.analytics___synergies__store_enablement_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_over_time_1.c138651cf5": ["model.yoda.analytics___synergies__store_enablement_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_over_time_app_key__synergy_id__from_time.a0c81c697b": ["model.yoda.analytics___synergies__store_enablement_over_time"], "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id.8f39499aa6": ["model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"], "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_activeness_date.f67191ee40": ["model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"], "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_app_key.6d013dc48c": ["model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_last_thirty_days_activeness_daily_1.9bd60f3d3c": ["model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id__activeness_date__app_key.894f454cd1": ["model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily"], "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_month.0ac49bf360": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"], "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_app_key.02ef3aa81e": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"], "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_id.82cc06f14c": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"], "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_metric_name.da7aaad9b4": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_synergy_metrics_monthly_1.507d6f163f": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_synergy_metrics_monthly_synergy_month__app_key__synergy_id__metric_name.a98223feff": ["model.yoda.analytics___synergies__store_synergy_metrics_monthly"], "test.yoda.unique_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id.0d3a695823": ["model.yoda.analytics___synergies__synergy_metrics_monthly"], "test.yoda.not_null_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id.a13a970968": ["model.yoda.analytics___synergies__synergy_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__synergy_metrics_monthly_1.fd220b4844": ["model.yoda.analytics___synergies__synergy_metrics_monthly"], "test.yoda.not_null_analytics___synergies__ugc_store_metrics_monthly_synergy_month.4f18d8d4d6": ["model.yoda.analytics___synergies__ugc_store_metrics_monthly"], "test.yoda.not_null_analytics___synergies__ugc_store_metrics_monthly_app_key.75603f946d": ["model.yoda.analytics___synergies__ugc_store_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_metrics_monthly_1.52ccee81dc": ["model.yoda.analytics___synergies__ugc_store_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_metrics_monthly_synergy_month__app_key.1344c9d2d5": ["model.yoda.analytics___synergies__ugc_store_metrics_monthly"], "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month.3ae6c80717": ["model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"], "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_app_key.bae999bfe8": ["model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"], "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_id.b10bee05e2": ["model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_synergy_metrics_monthly_1.e7f414d99d": ["model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id.a1faf90280": ["model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly"], "test.yoda.not_null_analytics___synergies_stg__enablement_event_app_key.76fcb32c34": ["model.yoda.analytics___synergies_stg__enablement_event"], "test.yoda.not_null_analytics___synergies_stg__enablement_event_widget_id.4957052cb7": ["model.yoda.analytics___synergies_stg__enablement_event"], "test.yoda.not_null_analytics___synergies_stg__enablement_event_updated_at.21bf468446": ["model.yoda.analytics___synergies_stg__enablement_event"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__enablement_event_1.a8864ee9dc": ["model.yoda.analytics___synergies_stg__enablement_event"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies_stg__enablement_event_app_key__widget_id__updated_at.9b112674ca": ["model.yoda.analytics___synergies_stg__enablement_event"], "test.yoda.unique_analytics___synergies_stg__home_screen_section_section_id.4d0b6fc004": ["model.yoda.analytics___synergies_stg__home_screen_section"], "test.yoda.not_null_analytics___synergies_stg__home_screen_section_section_id.dde5fb0656": ["model.yoda.analytics___synergies_stg__home_screen_section"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_section_1.6bb04a8b5f": ["model.yoda.analytics___synergies_stg__home_screen_section"], "test.yoda.unique_analytics___synergies_stg__home_screen_widget_widget_id.3783cc3799": ["model.yoda.analytics___synergies_stg__home_screen_widget"], "test.yoda.not_null_analytics___synergies_stg__home_screen_widget_widget_id.8689f866f2": ["model.yoda.analytics___synergies_stg__home_screen_widget"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_1.12bcc2f246": ["model.yoda.analytics___synergies_stg__home_screen_widget"], "test.yoda.unique_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id.597f20ed79": ["model.yoda.analytics___synergies_stg__home_screen_widget_configuration"], "test.yoda.not_null_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id.081c36060e": ["model.yoda.analytics___synergies_stg__home_screen_widget_configuration"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_configuration_1.de22ba73a1": ["model.yoda.analytics___synergies_stg__home_screen_widget_configuration"], "test.yoda.not_null_analytics___synergies_stg__synergy_widget_widget_id.3fc9fb7c27": ["model.yoda.analytics___synergies_stg__synergy_widget"], "test.yoda.unique_analytics___synergies_stg__synergy_widget_widget_id.d1ea36462d": ["model.yoda.analytics___synergies_stg__synergy_widget"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__synergy_widget_1.a10bbb825f": ["model.yoda.analytics___synergies_stg__synergy_widget"], "test.yoda.unique_analytics___ugc__active_metrics_monthly_metrics_id.cd059a648d": ["model.yoda.analytics___ugc__active_metrics_monthly"], "test.yoda.not_null_analytics___ugc__active_metrics_monthly_metrics_id.be59d583d1": ["model.yoda.analytics___ugc__active_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__active_metrics_monthly_1.4a122bedee": ["model.yoda.analytics___ugc__active_metrics_monthly"], "test.yoda.unique_analytics___ugc__image_image_id.ba2637444f": ["model.yoda.analytics___ugc__image"], "test.yoda.not_null_analytics___ugc__image_image_id.0162a8e5be": ["model.yoda.analytics___ugc__image"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__image_1.47d3787714": ["model.yoda.analytics___ugc__image"], "test.yoda.unique_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id.a627e345d6": ["model.yoda.analytics___ugc__order_to_review_rate_cohort"], "test.yoda.not_null_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id.f0d74a7394": ["model.yoda.analytics___ugc__order_to_review_rate_cohort"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__order_to_review_rate_cohort_1.24d4a0af4b": ["model.yoda.analytics___ugc__order_to_review_rate_cohort"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_first_time_activity_metrics_1.e770d90630": ["model.yoda.analytics___ugc__organization_first_time_activity_metrics"], "test.yoda.not_null_analytics___ugc__organization_metrics_monthly_metric_month.a27595dbc1": ["model.yoda.analytics___ugc__organization_metrics_monthly"], "test.yoda.not_null_analytics___ugc__organization_metrics_monthly_organization_key.5222d1cf40": ["model.yoda.analytics___ugc__organization_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_metrics_monthly_1.6b4b3f7cbf": ["model.yoda.analytics___ugc__organization_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__organization_metrics_monthly_metric_month__organization_key.d1c5a17e8e": ["model.yoda.analytics___ugc__organization_metrics_monthly"], "test.yoda.not_null_analytics___ugc__owner_first_time_activity_metrics_owner_id.0db71e17e3": ["model.yoda.analytics___ugc__owner_first_time_activity_metrics"], "test.yoda.not_null_analytics___ugc__owner_first_time_activity_metrics_owner_type.000b78d478": ["model.yoda.analytics___ugc__owner_first_time_activity_metrics"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_first_time_activity_metrics_1.a83c5a171a": ["model.yoda.analytics___ugc__owner_first_time_activity_metrics"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__owner_first_time_activity_metrics_owner_id__owner_type.bd345030f9": ["model.yoda.analytics___ugc__owner_first_time_activity_metrics"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_order_to_review_monthly_1.a8f9518409": ["model.yoda.analytics___ugc__owner_order_to_review_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__owner_order_to_review_monthly_owner_id__owner_type__month.78d91128ab": ["model.yoda.analytics___ugc__owner_order_to_review_monthly"], "test.yoda.not_null_analytics___ugc__platform_order_to_review_monthly_month.facc9b995e": ["model.yoda.analytics___ugc__platform_order_to_review_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__platform_order_to_review_monthly_1.344b78f570": ["model.yoda.analytics___ugc__platform_order_to_review_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__platform_order_to_review_monthly_month__closing_plan_group__platform__last_3m_orders_avg_bucket__postman_enabled.9a0f5c1cc0": ["model.yoda.analytics___ugc__platform_order_to_review_monthly"], "test.yoda.unique_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id.6cd0e845b1": ["model.yoda.analytics___ugc__postman_feature_email_usage_monthly"], "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id.db29533c75": ["model.yoda.analytics___ugc__postman_feature_email_usage_monthly"], "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_email_sent_month.92c2bb76ba": ["model.yoda.analytics___ugc__postman_feature_email_usage_monthly"], "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_is_postman_enabled.a9a288b413": ["model.yoda.analytics___ugc__postman_feature_email_usage_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__postman_feature_email_usage_monthly_1.c886495d8c": ["model.yoda.analytics___ugc__postman_feature_email_usage_monthly"], "test.yoda.unique_analytics___ugc__review_review_id.1b6c9b9032": ["model.yoda.analytics___ugc__review"], "test.yoda.not_null_analytics___ugc__review_review_id.a1469a8d82": ["model.yoda.analytics___ugc__review"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_1.324968d72d": ["model.yoda.analytics___ugc__review"], "test.yoda.not_null_analytics___ugc__review_request_channel_name.c8cd833bf6": ["model.yoda.analytics___ugc__review_request"], "test.yoda.not_null_analytics___ugc__review_request_channel_message_id.d1c9073545": ["model.yoda.analytics___ugc__review_request"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_1.d18d50dbe2": ["model.yoda.analytics___ugc__review_request"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_channel_name__channel_message_id.1d214ff05a": ["model.yoda.analytics___ugc__review_request"], "test.yoda.not_null_analytics___ugc__review_request_token_token.d8ef92cf0c": ["model.yoda.analytics___ugc__review_request_token"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_1.a0d5fe504e": ["model.yoda.analytics___ugc__review_request_token"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_channel_name__review_request_token_id.62b29c2b49": ["model.yoda.analytics___ugc__review_request_token"], "test.yoda.not_null_analytics___ugc__review_request_token_message_channel_name.dc729be2e3": ["model.yoda.analytics___ugc__review_request_token_message"], "test.yoda.not_null_analytics___ugc__review_request_token_message_review_request_token_id.161c203dfd": ["model.yoda.analytics___ugc__review_request_token_message"], "test.yoda.not_null_analytics___ugc__review_request_token_message_channel_message_id.b91e2d1d77": ["model.yoda.analytics___ugc__review_request_token_message"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_message_1.a0e41528a1": ["model.yoda.analytics___ugc__review_request_token_message"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_message_channel_name__review_request_token_id__channel_message_id.904160e48d": ["model.yoda.analytics___ugc__review_request_token_message"], "test.yoda.unique_analytics___ugc__store_store_id.b6317d5494": ["model.yoda.analytics___ugc__store"], "test.yoda.not_null_analytics___ugc__store_store_id.a00f663f7d": ["model.yoda.analytics___ugc__store"], "test.yoda.unique_analytics___ugc__store_app_key.34f069379e": ["model.yoda.analytics___ugc__store"], "test.yoda.not_null_analytics___ugc__store_app_key.405614a37b": ["model.yoda.analytics___ugc__store"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_1.5d3063e2a5": ["model.yoda.analytics___ugc__store"], "test.yoda.not_null_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key.f4f2fbdb44": ["model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_enablement_to_pixel_event_cohort_1.b1ff78daf3": ["model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key__widget_element_v3__pixel_event_v3_month.8037deec6c": ["model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort"], "test.yoda.not_null_analytics___ugc__store_feature_over_time_source_id.f2748b048b": ["model.yoda.analytics___ugc__store_feature_over_time"], "test.yoda.not_null_analytics___ugc__store_feature_over_time_store_id.c0ec402331": ["model.yoda.analytics___ugc__store_feature_over_time"], "test.yoda.not_null_analytics___ugc__store_feature_over_time_feature_id.3ca7ae5b7d": ["model.yoda.analytics___ugc__store_feature_over_time"], "test.yoda.not_null_analytics___ugc__store_feature_over_time_from_date.7d669669af": ["model.yoda.analytics___ugc__store_feature_over_time"], "test.yoda.not_null_analytics___ugc__store_feature_over_time_to_date.a32b4c2cef": ["model.yoda.analytics___ugc__store_feature_over_time"], "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_organization_owner__0.eb01fab611": ["model.yoda.analytics___ugc__store_feature_over_time"], "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_user_owner__0.8fc5e0eb2b": ["model.yoda.analytics___ugc__store_feature_over_time"], "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_store_owner__1.955434b684": ["model.yoda.analytics___ugc__store_feature_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_feature_over_time_1.f91a26b0cb": ["model.yoda.analytics___ugc__store_feature_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_feature_over_time_source_id__store_id__feature_id__from_date__to_date.292a9e16a5": ["model.yoda.analytics___ugc__store_feature_over_time"], "test.yoda.unique_analytics___ugc__store_first_time_activity_metrics_app_key.3aa1ca5a92": ["model.yoda.analytics___ugc__store_first_time_activity_metrics"], "test.yoda.not_null_analytics___ugc__store_first_time_activity_metrics_app_key.cc9670afe5": ["model.yoda.analytics___ugc__store_first_time_activity_metrics"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_first_time_activity_metrics_1.0613283fc4": ["model.yoda.analytics___ugc__store_first_time_activity_metrics"], "test.yoda.not_null_analytics___ugc__store_installation_over_time_app_key.19a3e4b522": ["model.yoda.analytics___ugc__store_installation_over_time"], "test.yoda.not_null_analytics___ugc__store_installation_over_time_from_time.76e51caa47": ["model.yoda.analytics___ugc__store_installation_over_time"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_installation_over_time_1.b6666b70ca": ["model.yoda.analytics___ugc__store_installation_over_time"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_installation_over_time_app_key__from_time.a70955b949": ["model.yoda.analytics___ugc__store_installation_over_time"], "test.yoda.not_null_analytics___ugc__store_metrics_daily_metric_date.1f726f3aa4": ["model.yoda.analytics___ugc__store_metrics_daily"], "test.yoda.not_null_analytics___ugc__store_metrics_daily_app_key.e01288e581": ["model.yoda.analytics___ugc__store_metrics_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_1.a539e46a89": ["model.yoda.analytics___ugc__store_metrics_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_metric_date__app_key.112a1b66cf": ["model.yoda.analytics___ugc__store_metrics_daily"], "test.yoda.not_null_analytics___ugc__store_metrics_daily_24m_metric_date.9bf1825ce3": ["model.yoda.analytics___ugc__store_metrics_daily_24m"], "test.yoda.not_null_analytics___ugc__store_metrics_daily_24m_app_key.f9a2090544": ["model.yoda.analytics___ugc__store_metrics_daily_24m"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_24m_1.e51d9b69d8": ["model.yoda.analytics___ugc__store_metrics_daily_24m"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_24m_metric_date__app_key.4970dec896": ["model.yoda.analytics___ugc__store_metrics_daily_24m"], "test.yoda.not_null_analytics___ugc__store_metrics_monthly_metric_month.c3d4f10df5": ["model.yoda.analytics___ugc__store_metrics_monthly"], "test.yoda.not_null_analytics___ugc__store_metrics_monthly_app_key.1073499c24": ["model.yoda.analytics___ugc__store_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_monthly_1.24eea2db84": ["model.yoda.analytics___ugc__store_metrics_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_monthly_metric_month__app_key.517b629212": ["model.yoda.analytics___ugc__store_metrics_monthly"], "test.yoda.not_null_analytics___ugc__store_product_activeness_monthly_activeness_month.9f374e83a9": ["model.yoda.analytics___ugc__store_product_activeness_monthly"], "test.yoda.not_null_analytics___ugc__store_product_activeness_monthly_app_key.6cb5d16c3d": ["model.yoda.analytics___ugc__store_product_activeness_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_product_activeness_monthly_1.50a62efcf1": ["model.yoda.analytics___ugc__store_product_activeness_monthly"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_product_activeness_monthly_activeness_month__app_key.60e55c84b7": ["model.yoda.analytics___ugc__store_product_activeness_monthly"], "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id.b99dcb3c0c": ["model.yoda.analytics___ugc__store_widget_metrics_monthly"], "test.yoda.unique_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id.824457c223": ["model.yoda.analytics___ugc__store_widget_metrics_monthly"], "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_month.769efb0e90": ["model.yoda.analytics___ugc__store_widget_metrics_monthly"], "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_app_key.81856455ca": ["model.yoda.analytics___ugc__store_widget_metrics_monthly"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_widget_metrics_monthly_1.cbe0147ee1": ["model.yoda.analytics___ugc__store_widget_metrics_monthly"], "test.yoda.unique_analytics___ugc__unmigrated_review_request_token_token.fdcd099de4": ["model.yoda.analytics___ugc__unmigrated_review_request_token"], "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_token.5e02c0380e": ["model.yoda.analytics___ugc__unmigrated_review_request_token"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_1.2bffc5d009": ["model.yoda.analytics___ugc__unmigrated_review_request_token"], "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_email_token.4be6598c69": ["model.yoda.analytics___ugc__unmigrated_review_request_token_email"], "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_email_users_email_control_id.b2ddbde755": ["model.yoda.analytics___ugc__unmigrated_review_request_token_email"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_email_1.a654efd0a2": ["model.yoda.analytics___ugc__unmigrated_review_request_token_email"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__unmigrated_review_request_token_email_token__users_email_control_id.e0f980471d": ["model.yoda.analytics___ugc__unmigrated_review_request_token_email"], "test.yoda.not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group.8f84ce0592": ["model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"], "test.yoda.not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_current_day_plan_group.f14c7ed426": ["model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__ugc_plan_group_change_mapping_1.5a38ea7600": ["model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group__current_day_plan_group.8467be1d05": ["model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"], "test.yoda.unique_analytics___ugc_stg__comment_comment_id.176198d33d": ["model.yoda.analytics___ugc_stg__comment"], "test.yoda.not_null_analytics___ugc_stg__comment_comment_id.624b204f24": ["model.yoda.analytics___ugc_stg__comment"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__comment_1.77e489a153": ["model.yoda.analytics___ugc_stg__comment"], "test.yoda.unique_analytics___ugc_stg__dirty_words_content_row_id.4d33cf4736": ["model.yoda.analytics___ugc_stg__dirty_words_content"], "test.yoda.not_null_analytics___ugc_stg__dirty_words_content_row_id.10b8fc8eca": ["model.yoda.analytics___ugc_stg__dirty_words_content"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__dirty_words_content_1.01c4db28a4": ["model.yoda.analytics___ugc_stg__dirty_words_content"], "test.yoda.not_null_analytics___ugc_stg__email_email_analytics_id.be969eaf47": ["model.yoda.analytics___ugc_stg__email"], "test.yoda.unique_analytics___ugc_stg__email_email_analytics_id.3236432e37": ["model.yoda.analytics___ugc_stg__email"], "test.yoda.not_null_analytics___ugc_stg__email_email_id.d06d4e3ea5": ["model.yoda.analytics___ugc_stg__email"], "test.yoda.unique_analytics___ugc_stg__email_email_id.3b8b1114cc": ["model.yoda.analytics___ugc_stg__email"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__email_1.38f0ffaa3d": ["model.yoda.analytics___ugc_stg__email"], "test.yoda.unique_analytics___ugc_stg__image_image_id.8d2a490eb2": ["model.yoda.analytics___ugc_stg__image"], "test.yoda.not_null_analytics___ugc_stg__image_image_id.93c006695c": ["model.yoda.analytics___ugc_stg__image"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__image_1.3bc5f175b6": ["model.yoda.analytics___ugc_stg__image"], "test.yoda.unique_analytics___ugc_stg__metadata_type_metadata_type_id.6ae00d97a8": ["model.yoda.analytics___ugc_stg__metadata_type"], "test.yoda.not_null_analytics___ugc_stg__metadata_type_metadata_type_id.b1ad12f505": ["model.yoda.analytics___ugc_stg__metadata_type"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__metadata_type_1.e965017da7": ["model.yoda.analytics___ugc_stg__metadata_type"], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_feature_id.0d3b7ec8aa": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_id.0434a0f934": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_feature_id.c5fb24a3f1": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_type.f59683da70": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_created_at.c9b79bcd9e": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_updated_at.3ba9ddca81": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_disabled.f99ad1250c": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_user_enabled.1d360123cf": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_floating.2d4d22ef6e": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_enablement_event_1.017f2f4925": ["model.yoda.analytics___ugc_stg__owner_feature_enablement_event"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_setting_change_event_1.722d6279f0": ["model.yoda.analytics___ugc_stg__owner_feature_setting_change_event"], "test.yoda.not_null_analytics___ugc_stg__reminder_reminder_id.0443c861f0": ["model.yoda.analytics___ugc_stg__reminder"], "test.yoda.not_null_analytics___ugc_stg__reminder_store_id.e2fc574452": ["model.yoda.analytics___ugc_stg__reminder"], "test.yoda.accepted_values_analytics___ugc_stg__reminder_is_enabled__0__1.28a0cbe576": ["model.yoda.analytics___ugc_stg__reminder"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_1.904e70f372": ["model.yoda.analytics___ugc_stg__reminder"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_reminder_id__store_id.80e3f0e40c": ["model.yoda.analytics___ugc_stg__reminder"], "test.yoda.not_null_analytics___ugc_stg__reminder_snapshot_store_id.9a36c060c0": ["model.yoda.analytics___ugc_stg__reminder_snapshot"], "test.yoda.not_null_analytics___ugc_stg__reminder_snapshot_reminder_id.eb8468219c": ["model.yoda.analytics___ugc_stg__reminder_snapshot"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_snapshot_1.522406774f": ["model.yoda.analytics___ugc_stg__reminder_snapshot"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_snapshot_reminder_id__store_id__updated_at.455f7570ac": ["model.yoda.analytics___ugc_stg__reminder_snapshot"], "test.yoda.unique_analytics___ugc_stg__review_review_id.340430637c": ["model.yoda.analytics___ugc_stg__review"], "test.yoda.not_null_analytics___ugc_stg__review_review_id.fb39d68d60": ["model.yoda.analytics___ugc_stg__review"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_1.df703fc694": ["model.yoda.analytics___ugc_stg__review"], "test.yoda.not_null_analytics___ugc_stg__review_image_review_id.cb84240bb1": ["model.yoda.analytics___ugc_stg__review_image"], "test.yoda.not_null_analytics___ugc_stg__review_image_image_id.dbd0627e86": ["model.yoda.analytics___ugc_stg__review_image"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_image_1.dc6b7d5d4a": ["model.yoda.analytics___ugc_stg__review_image"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_image_review_id__image_id.a73115c375": ["model.yoda.analytics___ugc_stg__review_image"], "test.yoda.unique_analytics___ugc_stg__review_metadata_review_metadata_id.e1a83f1720": ["model.yoda.analytics___ugc_stg__review_metadata"], "test.yoda.not_null_analytics___ugc_stg__review_metadata_review_metadata_id.50cd8e9406": ["model.yoda.analytics___ugc_stg__review_metadata"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_metadata_1.e414dae9e3": ["model.yoda.analytics___ugc_stg__review_metadata"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_email_1.183696f8fc": ["model.yoda.analytics___ugc_stg__review_request_email"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_sms_1.070a1af629": ["model.yoda.analytics___ugc_stg__review_request_sms"], "test.yoda.unique_analytics___ugc_stg__review_source_type_review_source_type_id.f472340919": ["model.yoda.analytics___ugc_stg__review_source_type"], "test.yoda.not_null_analytics___ugc_stg__review_source_type_review_source_type_id.66e45b81d8": ["model.yoda.analytics___ugc_stg__review_source_type"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_source_type_1.279fc2029a": ["model.yoda.analytics___ugc_stg__review_source_type"], "test.yoda.unique_analytics___ugc_stg__review_subject_review_subject_id.91d2fa6505": ["model.yoda.analytics___ugc_stg__review_subject"], "test.yoda.not_null_analytics___ugc_stg__review_subject_review_subject_id.2e0521c635": ["model.yoda.analytics___ugc_stg__review_subject"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_subject_1.fe38748fe0": ["model.yoda.analytics___ugc_stg__review_subject"], "test.yoda.unique_analytics___ugc_stg__review_type_review_type_id.2fa963d87d": ["model.yoda.analytics___ugc_stg__review_type"], "test.yoda.not_null_analytics___ugc_stg__review_type_review_type_id.3efe93aeee": ["model.yoda.analytics___ugc_stg__review_type"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_type_1.63b9f90919": ["model.yoda.analytics___ugc_stg__review_type"], "test.yoda.not_null_analytics___ugc_stg__review_video_review_id.fb9fc0d7bf": ["model.yoda.analytics___ugc_stg__review_video"], "test.yoda.not_null_analytics___ugc_stg__review_video_video_id.1869d3c00b": ["model.yoda.analytics___ugc_stg__review_video"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_video_1.63c54374fc": ["model.yoda.analytics___ugc_stg__review_video"], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_video_review_id__video_id.cdbdc5d389": ["model.yoda.analytics___ugc_stg__review_video"], "test.yoda.not_null_analytics___utils_stg__calendar_date.7d542d0652": ["model.yoda.analytics___utils_stg__calendar"], "test.yoda.unique_analytics___utils_stg__calendar_date.2f0bc853db": ["model.yoda.analytics___utils_stg__calendar"], "test.yoda.not_null_email__daily_delivered_emails_by_source_name_context_source_name.5b2fd00db3": ["model.yoda.email__daily_delivered_emails_by_source_name"], "test.yoda.not_null_email__daily_delivered_emails_by_source_name_date.67e6ee4752": ["model.yoda.email__daily_delivered_emails_by_source_name"], "test.yoda.not_null_email__daily_delivered_emails_by_source_name_total.739582565f": ["model.yoda.email__daily_delivered_emails_by_source_name"], "test.yoda.not_null_email__daily_total_email_campaigns_total.4ff35bd3bf": ["model.yoda.email__daily_total_email_campaigns"], "test.yoda.not_null_email__daily_total_email_campaigns_date.7042c6c263": ["model.yoda.email__daily_total_email_campaigns"], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_id.01cfbeedb9": ["model.yoda.email__email_campaign_reviews_block_kpi"], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_synergy_id.182a7183c0": ["model.yoda.email__email_campaign_reviews_block_kpi"], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_app_key.7018e17ee4": ["model.yoda.email__email_campaign_reviews_block_kpi"], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_customer_email.e76313a4cb": ["model.yoda.email__email_campaign_reviews_block_kpi"], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_customer_external_id.d649258d9d": ["model.yoda.email__email_campaign_reviews_block_kpi"], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_source_type.53bbbe37cd": ["model.yoda.email__email_campaign_reviews_block_kpi"], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_source_id.1251666079": ["model.yoda.email__email_campaign_reviews_block_kpi"], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_order_id.3a2529f59b": ["model.yoda.email__email_campaign_reviews_block_kpi"], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_id.9eef29ff31": ["model.yoda.email__email_campaign_reviews_stars_kpi"], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_synergy_id.958accfe65": ["model.yoda.email__email_campaign_reviews_stars_kpi"], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_app_key.639c700af5": ["model.yoda.email__email_campaign_reviews_stars_kpi"], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_customer_email.f19549059f": ["model.yoda.email__email_campaign_reviews_stars_kpi"], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_customer_external_id.2ea805cb1d": ["model.yoda.email__email_campaign_reviews_stars_kpi"], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_source_type.9cbbfce071": ["model.yoda.email__email_campaign_reviews_stars_kpi"], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_source_id.08e3c773a8": ["model.yoda.email__email_campaign_reviews_stars_kpi"], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_order_id.1503c1d47e": ["model.yoda.email__email_campaign_reviews_stars_kpi"], "test.yoda.not_null_email_stg__template_instance_events_store_id.7489a266fe": ["model.yoda.email_stg__template_instance_events"], "test.yoda.not_null_email_stg__template_instance_events_template_instance_id.1a63fc900e": ["model.yoda.email_stg__template_instance_events"], "test.yoda.not_null_infra__canary_data_model_app_key.c6db71c81f": ["model.yoda.infra__canary_data_model"], "test.yoda.not_null_infra__canary_data_model_daily_metric.5db67846d8": ["model.yoda.infra__canary_data_model"], "test.yoda.not_null_infra__canary_segment_model_profile_userId.5e72499306": ["model.yoda.infra__canary_segment_model_profile"], "test.yoda.not_null_infra__canary_segment_model_profile_daily_metric.60592337f0": ["model.yoda.infra__canary_segment_model_profile"], "test.yoda.dbt_utils_expression_is_true_infra__contracts_burn_estimations_yearly_budget___0.3a039f37ba": ["model.yoda.infra__contracts_burn_estimations"], "test.yoda.not_null_infra__contracts_burn_estimations_start_date.0b2404158a": ["model.yoda.infra__contracts_burn_estimations"], "test.yoda.not_null_infra__contracts_burn_estimations_end_date.ea1ea1c411": ["model.yoda.infra__contracts_burn_estimations"], "test.yoda.not_null_infra__contracts_burn_estimations_vendor.357a49c299": ["model.yoda.infra__contracts_burn_estimations"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_estimations_1.8a4cf1359e": ["model.yoda.infra__contracts_burn_estimations"], "test.yoda.not_null_infra__contracts_burn_status_start_date.f75328a2f7": ["model.yoda.infra__contracts_burn_status"], "test.yoda.not_null_infra__contracts_burn_status_end_date.9520a11610": ["model.yoda.infra__contracts_burn_status"], "test.yoda.not_null_infra__contracts_burn_status_vendor.1122e674a4": ["model.yoda.infra__contracts_burn_status"], "test.yoda.dbt_utils_expression_is_true_infra__contracts_burn_status_yearly_budget___0.6af0f1b89d": ["model.yoda.infra__contracts_burn_status"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_status_1.24745bba70": ["model.yoda.infra__contracts_burn_status"], "test.yoda.not_null_infra__infra_metrics_ts.d898bb6180": ["model.yoda.infra__infra_metrics"], "test.yoda.not_null_infra__infra_metrics_product_line.9add29efd9": ["model.yoda.infra__infra_metrics"], "test.yoda.not_null_infra__infra_metrics_source.edaf9abc91": ["model.yoda.infra__infra_metrics"], "test.yoda.not_null_infra__infra_metrics_component.d8af3c0fbd": ["model.yoda.infra__infra_metrics"], "test.yoda.not_null_infra__infra_metrics_key.172127b073": ["model.yoda.infra__infra_metrics"], "test.yoda.not_null_infra__infra_metrics_value.2e0033a76e": ["model.yoda.infra__infra_metrics"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__kubernetes_cost_1__billing_day_current_date_1.801b62a34e": ["model.yoda.infra__kubernetes_cost"], "test.yoda.not_null_infra__rivery_contract_statistics_date.fdd99a1917": ["model.yoda.infra__rivery_contract_statistics"], "test.yoda.not_null_infra__rivery_contract_statistics_year.faa8708e47": ["model.yoda.infra__rivery_contract_statistics"], "test.yoda.not_null_infra__rivery_contract_statistics_month.5ac3bd212c": ["model.yoda.infra__rivery_contract_statistics"], "test.yoda.not_null_infra__rivery_daily_usage_account_id.7c3b1f6492": ["model.yoda.infra__rivery_daily_usage"], "test.yoda.not_null_infra__rivery_daily_usage_environment_name.8f90fc6903": ["model.yoda.infra__rivery_daily_usage"], "test.yoda.not_null_infra__rivery_daily_usage_river_name.1274519a44": ["model.yoda.infra__rivery_daily_usage"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__rivery_daily_usage_1__date_current_date_1.167a073d90": ["model.yoda.infra__rivery_daily_usage"], "test.yoda.not_null_infra__s3_storage_data_summary_bucket.61255b41ed": ["model.yoda.infra__s3_storage_data_summary"], "test.yoda.dbt_utils_equality_infra_stg__budget_ref_unit_test__expected__infra_stg__budget__infra_stg__budget_.a1e776df30": ["model.yoda.infra_stg__budget", "seed.yoda.unit_test__expected__infra_stg__budget__infra_stg__budget"], "test.yoda.not_null_infra_stg__infra_metrics_ts.85dad6d1d4": ["model.yoda.infra_stg__infra_metrics"], "test.yoda.not_null_infra_stg__infra_metrics_source.8d98cc3218": ["model.yoda.infra_stg__infra_metrics"], "test.yoda.not_null_infra_stg__infra_metrics_component.b2e07aafab": ["model.yoda.infra_stg__infra_metrics"], "test.yoda.not_null_infra_stg__infra_metrics_key.bcec2067d3": ["model.yoda.infra_stg__infra_metrics"], "test.yoda.not_null_infra_stg__infra_metrics_value.4b3957014e": ["model.yoda.infra_stg__infra_metrics"], "test.yoda.not_null_loyalty__customer_group_date_history_group_customer_id.f20f49abfc": ["model.yoda.loyalty__customer_group_date_history"], "test.yoda.not_null_loyalty__customer_group_date_history_merchant_group_id.722d4bf4f0": ["model.yoda.loyalty__customer_group_date_history"], "test.yoda.not_null_loyalty__customer_group_date_history_category.b5e988372f": ["model.yoda.loyalty__customer_group_date_history"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_group_date_history_1.066a328015": ["model.yoda.loyalty__customer_group_date_history"], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__customer_group_date_history_group_customer_id__merchant_group_id__category.6db34ce124": ["model.yoda.loyalty__customer_group_date_history"], "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_date.dfeffafae1": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"], "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_group_customer_id.586bcf6ede": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"], "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_merchant_group_id.c4bc04af4f": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_point_transaction_metrics_daily_1.d7ff2825fe": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__customer_point_transaction_metrics_daily_group_customer_id__date.10101ccaa4": ["model.yoda.loyalty__customer_point_transaction_metrics_daily"], "test.yoda.unique_loyalty__dim_campaigns_daily_snapshot_id.4bb6aeeae2": ["model.yoda.loyalty__dim_campaigns_daily_snapshot"], "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_id.5e34c99824": ["model.yoda.loyalty__dim_campaigns_daily_snapshot"], "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_type.6d4b50622a": ["model.yoda.loyalty__dim_campaigns_daily_snapshot"], "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_dwh_updated_at.aa17481f82": ["model.yoda.loyalty__dim_campaigns_daily_snapshot"], "test.yoda.not_null_loyalty__dim_customer_birthdays_daily_snapshot_group_customer_id.d1b35ae6fd": ["model.yoda.loyalty__dim_customer_birthdays_daily_snapshot"], "test.yoda.unique_loyalty__dim_customers_daily_snapshot_id.09d33def70": ["model.yoda.loyalty__dim_customers_daily_snapshot"], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_id.2c54f85955": ["model.yoda.loyalty__dim_customers_daily_snapshot"], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_merchant_id.890d8e6cbc": ["model.yoda.loyalty__dim_customers_daily_snapshot"], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_email_sent_count.0d45742168": ["model.yoda.loyalty__dim_customers_daily_snapshot"], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_updated_at.55fcdbd1a8": ["model.yoda.loyalty__dim_customers_daily_snapshot"], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_is_member.7c4c9533ab": ["model.yoda.loyalty__dim_customers_daily_snapshot"], "test.yoda.accepted_values_loyalty__dim_customers_daily_snapshot_is_member__False__True__False.d2aafb2216": ["model.yoda.loyalty__dim_customers_daily_snapshot"], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_dwh_updated_at.32a31ae877": ["model.yoda.loyalty__dim_customers_daily_snapshot"], "test.yoda.unique_loyalty__dim_merchants_daily_snapshot_id.9e1b4d52f2": ["model.yoda.loyalty__dim_merchants_daily_snapshot"], "test.yoda.not_null_loyalty__dim_merchants_daily_snapshot_id.b30eb29a5c": ["model.yoda.loyalty__dim_merchants_daily_snapshot"], "test.yoda.not_null_loyalty__dim_merchants_daily_snapshot_updated_at.87cd836a10": ["model.yoda.loyalty__dim_merchants_daily_snapshot"], "test.yoda.unique_loyalty__dim_referral_discount_codes_daily_snapshot_id.3655facf99": ["model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot"], "test.yoda.not_null_loyalty__dim_referral_discount_codes_daily_snapshot_id.7bd46d84ad": ["model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot"], "test.yoda.unique_loyalty__dim_subscriptions_daily_snapshot_id.c57a1bbf29": ["model.yoda.loyalty__dim_subscriptions_daily_snapshot"], "test.yoda.not_null_loyalty__dim_subscriptions_daily_snapshot_id.6396815751": ["model.yoda.loyalty__dim_subscriptions_daily_snapshot"], "test.yoda.unique_loyalty__dim_vip_tiers_daily_snapshot_id.3db5ece551": ["model.yoda.loyalty__dim_vip_tiers_daily_snapshot"], "test.yoda.not_null_loyalty__dim_vip_tiers_daily_snapshot_id.91a51f5037": ["model.yoda.loyalty__dim_vip_tiers_daily_snapshot"], "test.yoda.unique_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.a8136b53dd": ["model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot"], "test.yoda.not_null_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.8e468345d8": ["model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot"], "test.yoda.unique_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date.415dfb2355": ["model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot"], "test.yoda.not_null_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date.96a2b394d3": ["model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot"], "test.yoda.not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_customer_id.47bf050fa7": ["model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot"], "test.yoda.not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_merchant_id.8f02c9f6d3": ["model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot"], "test.yoda.unique_loyalty__fact_perks_daily_snapshot_id.447c6f759a": ["model.yoda.loyalty__fact_perks_daily_snapshot"], "test.yoda.not_null_loyalty__fact_perks_daily_snapshot_id.d3372857e3": ["model.yoda.loyalty__fact_perks_daily_snapshot"], "test.yoda.unique_loyalty__fact_purchase_items_daily_snapshot_id.a08c3ecb47": ["model.yoda.loyalty__fact_purchase_items_daily_snapshot"], "test.yoda.not_null_loyalty__fact_purchase_items_daily_snapshot_id.96ed057021": ["model.yoda.loyalty__fact_purchase_items_daily_snapshot"], "test.yoda.unique_loyalty__fact_purchases_daily_snapshot_id.49d307d948": ["model.yoda.loyalty__fact_purchases_daily_snapshot"], "test.yoda.not_null_loyalty__fact_purchases_daily_snapshot_id.95de3471a3": ["model.yoda.loyalty__fact_purchases_daily_snapshot"], "test.yoda.unique_loyalty__fact_purchases_redemptions_daily_snapshot_id.8443c10201": ["model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot"], "test.yoda.not_null_loyalty__fact_purchases_redemptions_daily_snapshot_id.a68dde1e9f": ["model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot"], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_redemption_created_at.3a0df4fe84": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referred_redemption.a6ec485fde": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referring_redemption.1df06c91c6": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_point_redemption_id.dc22cb3be8": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_merchant_id.35917319bf": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_purchase_id.410eaccfde": ["model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot"], "test.yoda.unique_loyalty__fact_referral_receipts_daily_snapshot_id.a7e236019d": ["model.yoda.loyalty__fact_referral_receipts_daily_snapshot"], "test.yoda.not_null_loyalty__fact_referral_receipts_daily_snapshot_id.32e3efb79c": ["model.yoda.loyalty__fact_referral_receipts_daily_snapshot"], "test.yoda.unique_loyalty__fact_referral_shares_daily_snapshot_id.765c3266ad": ["model.yoda.loyalty__fact_referral_shares_daily_snapshot"], "test.yoda.not_null_loyalty__fact_referral_shares_daily_snapshot_id.3ccd631bab": ["model.yoda.loyalty__fact_referral_shares_daily_snapshot"], "test.yoda.unique_loyalty__fact_referral_snapshots_daily_snapshot_id.19cf311d69": ["model.yoda.loyalty__fact_referral_snapshots_daily_snapshot"], "test.yoda.not_null_loyalty__fact_referral_snapshots_daily_snapshot_id.3cde9224ff": ["model.yoda.loyalty__fact_referral_snapshots_daily_snapshot"], "test.yoda.unique_loyalty__fact_referrals_without_crawlers_daily_snapshot_id.5afe5a429c": ["model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot"], "test.yoda.not_null_loyalty__fact_referrals_without_crawlers_daily_snapshot_id.188a4f7623": ["model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot"], "test.yoda.unique_loyalty__fact_refund_items_daily_snapshot_id.62033e081f": ["model.yoda.loyalty__fact_refund_items_daily_snapshot"], "test.yoda.not_null_loyalty__fact_refund_items_daily_snapshot_id.ab670fba71": ["model.yoda.loyalty__fact_refund_items_daily_snapshot"], "test.yoda.unique_loyalty__fact_refunds_daily_snapshot_refund_id.d54f16a3a2": ["model.yoda.loyalty__fact_refunds_daily_snapshot"], "test.yoda.not_null_loyalty__fact_refunds_daily_snapshot_refund_id.8b29aa083d": ["model.yoda.loyalty__fact_refunds_daily_snapshot"], "test.yoda.unique_loyalty__fact_user_actions_daily_snapshot_id.bab085d102": ["model.yoda.loyalty__fact_user_actions_daily_snapshot"], "test.yoda.not_null_loyalty__fact_user_actions_daily_snapshot_id.45a03e2bdf": ["model.yoda.loyalty__fact_user_actions_daily_snapshot"], "test.yoda.unique_loyalty__fact_user_agents_daily_snapshot_id.4c7c23bd57": ["model.yoda.loyalty__fact_user_agents_daily_snapshot"], "test.yoda.not_null_loyalty__fact_user_agents_daily_snapshot_id.d41feb0cd1": ["model.yoda.loyalty__fact_user_agents_daily_snapshot"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__merchant_point_transaction_metrics_daily_1.d76ac8b5bf": ["model.yoda.loyalty__merchant_point_transaction_metrics_daily"], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__merchant_point_transaction_metrics_daily_merchant_group_id__date.20ced22582": ["model.yoda.loyalty__merchant_point_transaction_metrics_daily"], "test.yoda.not_null_loyalty__opted_in_customers_customer_id.5eaf19e71e": ["model.yoda.loyalty__opted_in_customers"], "test.yoda.not_null_loyalty__opted_in_customers_app_key.c844344118": ["model.yoda.loyalty__opted_in_customers"], "test.yoda.not_null_loyalty__opted_in_customers_opted_in_at.7861355d0d": ["model.yoda.loyalty__opted_in_customers"], "test.yoda.not_null_loyalty__opted_in_customers_customer_email.ba061c0fa1": ["model.yoda.loyalty__opted_in_customers"], "test.yoda.not_null_loyalty__redeemed_purchases_app_key.43d0e57a64": ["model.yoda.loyalty__redeemed_purchases"], "test.yoda.not_null_loyalty__redeemed_purchases_order_total.1afd9cd992": ["model.yoda.loyalty__redeemed_purchases"], "test.yoda.not_null_loyalty__redeemed_purchases_external_order_id.acfce1b606": ["model.yoda.loyalty__redeemed_purchases"], "test.yoda.not_null_loyalty__redeemed_purchases_order_date.f16d5b66b4": ["model.yoda.loyalty__redeemed_purchases"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__redeemed_purchases_1.bd19437612": ["model.yoda.loyalty__redeemed_purchases"], "test.yoda.unique_loyalty__review_earning_rule_loyalty_id.d82f8ca7f5": ["model.yoda.loyalty__review_earning_rule_loyalty"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__review_earning_rule_loyalty_1.bee3f0ab25": ["model.yoda.loyalty__review_earning_rule_loyalty"], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__review_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.38227a0364": ["model.yoda.loyalty__review_earning_rule_loyalty"], "test.yoda.unique_loyalty__sms_earning_rule_loyalty_id.087d42e8f9": ["model.yoda.loyalty__sms_earning_rule_loyalty"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__sms_earning_rule_loyalty_1.13bc516ed5": ["model.yoda.loyalty__sms_earning_rule_loyalty"], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__sms_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.28b1c71f7d": ["model.yoda.loyalty__sms_earning_rule_loyalty"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__tier_expiring_reminder_kpi_1.2d41c2d9e8": ["model.yoda.loyalty__tier_expiring_reminder_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__tier_expiring_reminder_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.47422e4c3e": ["model.yoda.loyalty__tier_expiring_reminder_kpi"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__campaign_activation_histories_1.da00fb269f": ["model.yoda.loyalty_stg__campaign_activation_histories"], "test.yoda.dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__campaigns_1.79895b6923": ["model.yoda.loyalty_stg__campaigns"], "test.yoda.unique_loyalty_stg__customers_platform_accounts_customer_id.40a87706ce": ["model.yoda.loyalty_stg__customers_platform_accounts"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_updated_at.f35e0ec669": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_created_at.3f23aae44e": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_bounced.5a936b2be4": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_bounced__False__True__False.53b68d6d71": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_clicked.adee51924d": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_clicked__False__True__False.d219dd168d": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_delayed.354349f78e": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_delayed__False__True__False.09b50c8038": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_email_campaign_id.fafdb8a303": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_id.41eb3b382f": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.unique_loyalty_stg__email_campaign_emails_id.bbc907fb95": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_marked_as_spam.5516734a3b": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_marked_as_spam__False__True__False.294df5cbf2": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_opened.a5f55ca146": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_opened__False__True__False.40621c7d0f": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_rejected.6e5ee9ade4": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_rejected__False__True__False.51e5ea9726": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_sent.82b5353261": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_sent__False__True__False.ab58b87404": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_soft_bounced.e1759cf142": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_soft_bounced__False__True__False.29953005b7": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.not_null_loyalty_stg__email_campaign_emails_unsubscribed.cbe049b3b5": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_unsubscribed__False__True__False.c1accaca74": ["model.yoda.loyalty_stg__email_campaign_emails"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__install_loyalty_1.b473ebd87a": ["model.yoda.loyalty_stg__install_loyalty"], "test.yoda.dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__known_crawlers_1.81fcd9848e": ["model.yoda.loyalty_stg__known_crawlers"], "test.yoda.unique_loyalty_stg__swell_vip_tiers_settings_merchant_id.211caa536c": ["model.yoda.loyalty_stg__swell_vip_tiers_settings"], "test.yoda.not_null_loyalty_stg__swell_vip_tiers_settings_merchant_id.e6804f14f2": ["model.yoda.loyalty_stg__swell_vip_tiers_settings"], "test.yoda.not_null_loyalty_stg__uninstall_loyalty_partition_date.f65c8439c9": ["model.yoda.loyalty_stg__uninstall_loyalty"], "test.yoda.not_null_loyalty_stg__uninstall_loyalty_merchant_id.01515316c9": ["model.yoda.loyalty_stg__uninstall_loyalty"], "test.yoda.unique_loyalty_stg__enriched_customers_customer_id.321a122973": ["model.yoda.loyalty_stg__enriched_customers"], "test.yoda.not_null_loyalty_stg__enriched_customers_customer_id.632a3d255f": ["model.yoda.loyalty_stg__enriched_customers"], "test.yoda.not_null_loyalty_stg__enriched_customers_merchant_id.fb9c39e016": ["model.yoda.loyalty_stg__enriched_customers"], "test.yoda.not_null_loyalty_stg__enriched_customers_updated_at.4cff0bd8dd": ["model.yoda.loyalty_stg__enriched_customers"], "test.yoda.not_null_loyalty_stg__enriched_customers_is_member.97b742e2eb": ["model.yoda.loyalty_stg__enriched_customers"], "test.yoda.accepted_values_loyalty_stg__enriched_customers_is_member__False__True__False.a33b7531e0": ["model.yoda.loyalty_stg__enriched_customers"], "test.yoda.unique_loyalty_stg__point_transaction_transaction_id.1c44f00d74": ["model.yoda.loyalty_stg__point_transaction"], "test.yoda.not_null_loyalty_stg__point_transaction_transaction_id.762f30efd1": ["model.yoda.loyalty_stg__point_transaction"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__point_transaction_1.388cc831c9": ["model.yoda.loyalty_stg__point_transaction"], "test.yoda.not_null_platform__integrations_adoption_store_id.5b1b7c55d0": ["model.yoda.platform__integrations_adoption"], "test.yoda.not_null_platform__integrations_adoption_application_id.d50d3f5e03": ["model.yoda.platform__integrations_adoption"], "test.yoda.not_null_platform__integrations_adoption_application_name.9386d798e4": ["model.yoda.platform__integrations_adoption"], "test.yoda.not_null_platform__integrations_adoption_created_at.37b0d90b09": ["model.yoda.platform__integrations_adoption"], "test.yoda.not_null_platform__integrations_adoption_snapshot_date.ccc0700817": ["model.yoda.platform__integrations_adoption"], "test.yoda.not_null_platform__integrations_adoption_per_application_application_id.161ec59cae": ["model.yoda.platform__integrations_adoption_per_application"], "test.yoda.not_null_platform__integrations_adoption_per_application_application_name.40f82b15e1": ["model.yoda.platform__integrations_adoption_per_application"], "test.yoda.not_null_platform__integrations_adoption_per_store_store_id.594717070b": ["model.yoda.platform__integrations_adoption_per_store"], "test.yoda.not_null_platform__retention_metrics_customer_segment_ratio_app_key.08f694e03e": ["model.yoda.platform__retention_metrics_customer_segment_ratio"], "test.yoda.accepted_values_platform__retention_metrics_customer_segment_ratio_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.7c99cc067e": ["model.yoda.platform__retention_metrics_customer_segment_ratio"], "test.yoda.unique_platform__retention_metrics_returning_customers_app_key.03eca0d9cd": ["model.yoda.platform__retention_metrics_returning_customers"], "test.yoda.not_null_platform__retention_metrics_returning_customers_app_key.a5654fb46d": ["model.yoda.platform__retention_metrics_returning_customers"], "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days.f818fbb53d": ["model.yoda.platform__retention_metrics_returning_customers"], "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days__100___100.661859c0d8": ["model.yoda.platform__retention_metrics_returning_customers"], "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days.757eba9f4d": ["model.yoda.platform__retention_metrics_returning_customers"], "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days__100___100.538bc912e0": ["model.yoda.platform__retention_metrics_returning_customers"], "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days.c02255bdfa": ["model.yoda.platform__retention_metrics_returning_customers"], "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days__100___100.18abaa0517": ["model.yoda.platform__retention_metrics_returning_customers"], "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days.beaf53283a": ["model.yoda.platform__retention_metrics_returning_customers"], "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days__100___100.110e77d070": ["model.yoda.platform__retention_metrics_returning_customers"], "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_app_key.138987bbfa": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"], "test.yoda.accepted_values_platform__retention_metrics_total_revenue_trends_by_segments_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.d537ec1279": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"], "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_engaged.c7b89ae0f7": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"], "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_returning.b9186412bd": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"], "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_new.08adaeb3b7": ["model.yoda.platform__retention_metrics_total_revenue_trends_by_segments"], "test.yoda.accepted_values_platform__retention_metrics_trends_average_order_value_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.0228a17bf2": ["model.yoda.platform__retention_metrics_trends_average_order_value"], "test.yoda.accepted_values_platform__retention_metrics_trends_average_sales_per_customer_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.c2853eef65": ["model.yoda.platform__retention_metrics_trends_average_sales_per_customer"], "test.yoda.not_null_platform__synergies_kpi_id.63385699ca": ["model.yoda.platform__synergies_kpi"], "test.yoda.not_null_platform__synergies_kpi_synergy_id.c084deb6ce": ["model.yoda.platform__synergies_kpi"], "test.yoda.not_null_platform__synergies_kpi_app_key.18962ec868": ["model.yoda.platform__synergies_kpi"], "test.yoda.not_null_platform__synergies_kpi_source_type.9b5bc448b1": ["model.yoda.platform__synergies_kpi"], "test.yoda.not_null_platform__synergies_kpi_source_id.76aef20d60": ["model.yoda.platform__synergies_kpi"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform__synergies_kpi_1.778a1da858": ["model.yoda.platform__synergies_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_platform__synergies_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id.f6c94956eb": ["model.yoda.platform__synergies_kpi"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_created_1.36e5090435": ["model.yoda.platform_stg__account_created"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_platforms_1.24a52ed0f0": ["model.yoda.platform_stg__account_platforms"], "test.yoda.unique_platform_stg__accounts_id.fe64c3f0a5": ["model.yoda.platform_stg__accounts"], "test.yoda.not_null_platform_stg__accounts_id.108c0bdbbf": ["model.yoda.platform_stg__accounts"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__activation_step_1.93c0f37cd3": ["model.yoda.platform_stg__activation_step"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_install_completed_1.5d1a24ef06": ["model.yoda.platform_stg__app_install_completed"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_uninstalled_1.8d782dd9e0": ["model.yoda.platform_stg__app_uninstalled"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__b2b_1.e1a5239104": ["model.yoda.platform_stg__b2b"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__currency_rates_1.68f3e1bb6c": ["model.yoda.platform_stg__currency_rates"], "test.yoda.unique_platform_stg__fulfillments_id.bb76db0a7f": ["model.yoda.platform_stg__fulfillments"], "test.yoda.not_null_platform_stg__fulfillments_id.5cdd9a9673": ["model.yoda.platform_stg__fulfillments"], "test.yoda.unique_platform_stg__limit_reached_message_id.c3b289bfa1": ["model.yoda.platform_stg__limit_reached"], "test.yoda.not_null_platform_stg__limit_reached_message_id.33f98204c4": ["model.yoda.platform_stg__limit_reached"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__limit_reached_1.404afcaf21": ["model.yoda.platform_stg__limit_reached"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onboarding_1.a724bde051": ["model.yoda.platform_stg__onboarding"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v2_1.7bed67921a": ["model.yoda.platform_stg__onsite_v2"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v3_1.c3022b0a33": ["model.yoda.platform_stg__onsite_v3"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__order_lines_1.ce3b7be8f2": ["model.yoda.platform_stg__order_lines"], "test.yoda.not_null_platform_stg__orders_app_key.94d6cc8864": ["model.yoda.platform_stg__orders"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__orders_1.39cf73c1b2": ["model.yoda.platform_stg__orders"], "test.yoda.unique_platform_stg__organizations_id.043a3c4fa9": ["model.yoda.platform_stg__organizations"], "test.yoda.not_null_platform_stg__organizations_id.17f56f00ec": ["model.yoda.platform_stg__organizations"], "test.yoda.unique_platform_stg__packages_id.b938e21c3c": ["model.yoda.platform_stg__packages"], "test.yoda.not_null_platform_stg__packages_id.5b80680c17": ["model.yoda.platform_stg__packages"], "test.yoda.unique_platform_stg__platform_types_id.e61a91f579": ["model.yoda.platform_stg__platform_types"], "test.yoda.not_null_platform_stg__platform_types_id.9199155447": ["model.yoda.platform_stg__platform_types"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__popup_displayed_1.7167e005f6": ["model.yoda.platform_stg__popup_displayed"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__product_enabled_1.e4eb4c574d": ["model.yoda.platform_stg__product_enabled"], "test.yoda.unique_platform_stg__store_platforms_id.86a9ff434c": ["model.yoda.platform_stg__store_platforms"], "test.yoda.not_null_platform_stg__store_platforms_id.d38ec1c91c": ["model.yoda.platform_stg__store_platforms"], "test.yoda.unique_platform_stg__stores_store_id.245bf7c8f4": ["model.yoda.platform_stg__stores"], "test.yoda.not_null_platform_stg__stores_store_id.eec556c579": ["model.yoda.platform_stg__stores"], "test.yoda.unique_platform_stg__stores_app_key.b7ccbfec8b": ["model.yoda.platform_stg__stores"], "test.yoda.not_null_platform_stg__stores_app_key.df3929b531": ["model.yoda.platform_stg__stores"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__timezone_country_mapping_1.71a0cfb06f": ["model.yoda.platform_stg__timezone_country_mapping"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__uninstalled_yotpo_1.b2d53f31db": ["model.yoda.platform_stg__uninstalled_yotpo"], "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_customer_id.0500ea4ddb": ["model.yoda.platform_stg__customer_dimensions_brand_affection"], "test.yoda.unique_platform_stg__customer_dimensions_brand_affection_customer_id.d2bc5d9b6f": ["model.yoda.platform_stg__customer_dimensions_brand_affection"], "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_brand_affection.294dc11b1c": ["model.yoda.platform_stg__customer_dimensions_brand_affection"], "test.yoda.accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection__Advocate__Likes__Disappointed__Hater__N_A.6de3a1c638": ["model.yoda.platform_stg__customer_dimensions_brand_affection"], "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_brand_affection_rank.a8fff1d958": ["model.yoda.platform_stg__customer_dimensions_brand_affection"], "test.yoda.accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection_rank__0__1__2__3__4.520afa83f7": ["model.yoda.platform_stg__customer_dimensions_brand_affection"], "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_customer_id.5ee49bfb4a": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"], "test.yoda.unique_platform_stg__customer_dimensions_engagement_marketing_material_customer_id.d9f15debd3": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"], "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material.b8949619fc": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"], "test.yoda.accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material__Not_an_SMS_User__Unsubscribed__Ignores__Newcomer__Engaging__Highly_Engaged.b5b7c56881": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"], "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank.0236e69b6e": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"], "test.yoda.accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank__0__1__2__3__4__5.411d931f2d": ["model.yoda.platform_stg__customer_dimensions_engagement_marketing_material"], "test.yoda.not_null_platform_stg__customer_dimensions_loyalty_program_customer_id.9a4c56f4fd": ["model.yoda.platform_stg__customer_dimensions_loyalty_program"], "test.yoda.unique_platform_stg__customer_dimensions_loyalty_program_customer_id.d5724ded6a": ["model.yoda.platform_stg__customer_dimensions_loyalty_program"], "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_customer_id.c8bbbe4528": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"], "test.yoda.unique_platform_stg__customer_dimensions_returning_buyers_customer_id.8e16ea8dcd": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"], "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers.88abcb6a5a": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"], "test.yoda.accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers__Prospects__Single_Purchase__Repeat_Purchase__Frequent_Shopper.43cf54a015": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"], "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank.736fcf711c": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"], "test.yoda.accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank__0__1__2__3.494420f036": ["model.yoda.platform_stg__customer_dimensions_returning_buyers"], "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_engaged_customer.4817581c98": ["model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer"], "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_returning_customer.e644585ce1": ["model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer"], "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_new_customer.4a8fee0d84": ["model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer"], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_engaged_customers.c606e37c8a": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_returning_customers.cd98bc4e12": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_new_customers.fb8eb7382a": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value"], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_engaged_customer.dfe71027cd": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_returning_customer.361c352a44": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_new_customer.af4e49837b": ["model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"], "test.yoda.not_null_platform_stg__retention_metrics_segmented_customers_app_key.a4a568f4a4": ["model.yoda.platform_stg__retention_metrics_segmented_customers"], "test.yoda.not_null_platform_stg__retention_metrics_segmented_customers_external_customer_id.28244c2486": ["model.yoda.platform_stg__retention_metrics_segmented_customers"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__retention_metrics_segmented_customers_1.a572a0f956": ["model.yoda.platform_stg__retention_metrics_segmented_customers"], "test.yoda.dbt_utils_unique_combination_of_columns_platform_stg__retention_metrics_segmented_customers_external_customer_id__app_key.5c0c405e9f": ["model.yoda.platform_stg__retention_metrics_segmented_customers"], "test.yoda.not_null_platform_stg__synergy_product_mapping_synergy_id.3b7caadd31": ["model.yoda.platform_stg__synergy_product_mapping"], "test.yoda.accepted_values_platform_stg__synergy_product_mapping_product_name__reviews__loyalty__sms__email__subscriptions.97c67a96be": ["model.yoda.platform_stg__synergy_product_mapping"], "test.yoda.dbt_utils_unique_combination_of_columns_platform_stg__synergy_product_mapping_synergy_id__product_name.c1289ab79c": ["model.yoda.platform_stg__synergy_product_mapping"], "test.yoda.unique_platform_stg__synergy_start_date_mapping_synergy_id.c18d65c2a6": ["model.yoda.platform_stg__synergy_start_date_mapping"], "test.yoda.not_null_platform_stg__synergy_start_date_mapping_synergy_id.5212293e31": ["model.yoda.platform_stg__synergy_start_date_mapping"], "test.yoda.not_null_sms__api_calls_with_customer_user_id.f8e8b23d65": ["model.yoda.sms__api_calls_with_customer"], "test.yoda.not_null_sms__flows_links_clicks_sms_id.47edf277e7": ["model.yoda.sms__flows_links_clicks"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_id.876a000616": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.unique_sms__loyalty_sms_campaigns_email_kpi_id.b6adae0854": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_synergy_id.c8ac09f1a3": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_source_type.d7634be10e": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_source_id.5c4747d9c5": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_order_id.7a9802c74e": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_type.fcd941d58b": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_id.624ec53ba1": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_type.d4340dd655": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_value.508891a2d5": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_app_key.a732afb837": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_customer_external_id.a17da066ab": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at.5834ffd156": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.b6016711ef": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.8fcc0c462e": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"], "test.yoda.unique_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.4692fd125d": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id.7792d2184d": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_type.f068a64fc3": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_id.8a8140253f": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_action_type.168d81f897": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_app_key.a6956fba6e": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_email.ab214f3db2": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_external_id.8976e49a9b": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_dwh_updated_at.f8e7467368": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.1dcf47bfa1": ["model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_id.1d52c5a45a": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.unique_sms__loyalty_sms_campaigns_sms_kpi_id.2ea7e0c8d9": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_synergy_id.29588cfb6d": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_source_type.82066434ea": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_source_id.3080489abe": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_order_id.1476d35105": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_type.aa91be5ee0": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_id.624ebb2739": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_type.56ebc598e7": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_value.f689171e11": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_app_key.75f77ce3d9": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_customer_external_id.d15d22c39c": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at.6b390e3d5f": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_kpi_1.3487732497": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.9f08c066bc": ["model.yoda.sms__loyalty_sms_campaigns_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.3396dbb221": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "test.yoda.unique_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.84772316a7": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id.80690303ed": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_type.1b19985470": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_id.10736984ea": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_type.000ee33b9c": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_app_key.0265c2319c": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_external_id.f41a283a9d": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_dwh_updated_at.d964462cac": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_reward_program_kpi_1.bf4c051deb": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e23653fee8": ["model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_id.0622858aaf": ["model.yoda.sms__loyalty_sms_flows_email_kpi"], "test.yoda.unique_sms__loyalty_sms_flows_email_kpi_id.832af8e4ba": ["model.yoda.sms__loyalty_sms_flows_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_synergy_id.7e8701e3dc": ["model.yoda.sms__loyalty_sms_flows_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_source_type.66e1f4a84e": ["model.yoda.sms__loyalty_sms_flows_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_source_id.5a26a49665": ["model.yoda.sms__loyalty_sms_flows_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_order_id.b200957d13": ["model.yoda.sms__loyalty_sms_flows_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_app_key.7cb2925f0f": ["model.yoda.sms__loyalty_sms_flows_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_dwh_updated_at.a3d152550a": ["model.yoda.sms__loyalty_sms_flows_email_kpi"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_email_kpi_1.a1ea11e7f3": ["model.yoda.sms__loyalty_sms_flows_email_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.69b3540440": ["model.yoda.sms__loyalty_sms_flows_email_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_id.a8f20edfd9": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"], "test.yoda.unique_sms__loyalty_sms_flows_sms_kpi_id.bb7a28542f": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_synergy_id.1ff32cef3e": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_source_type.d4341cb5c4": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_source_id.ee0653470d": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_order_id.65559dfaa9": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_app_key.282167a551": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_customer_external_id.8288595aa4": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_dwh_updated_at.b3d1874250": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_sms_kpi_1.90319ceb4d": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.7dd8e8f9ef": ["model.yoda.sms__loyalty_sms_flows_sms_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_id.1acc53b67c": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.unique_sms__reviews_sms_flows_email_kpi_id.9f4bc62f01": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_synergy_id.1110a49fbb": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_source_type.fc04a7df20": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_source_id.56938ccd82": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_type.92b7a71dd1": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_id.f2f03eef4f": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_attribute_type.f84d25c934": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_attribute_value.eae3c36486": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_app_key.d087df8817": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_dwh_updated_at.46a25c2e8a": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.5a0798e63b": ["model.yoda.sms__reviews_sms_flows_email_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_id.88af3e38a5": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.unique_sms__reviews_sms_flows_sms_kpi_id.b5d1077c08": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_synergy_id.5d48cbbab2": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_source_type.6f8ec42a8d": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_source_id.3bc4067038": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_type.1b8d07e3e7": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_id.4e86e8a455": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_type.ea5c4b7e67": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_value.28ac84c4d0": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_app_key.b9848e0e21": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_dwh_updated_at.a406efbd69": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.4fc8c0491a": ["model.yoda.sms__reviews_sms_flows_sms_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_sms__sms_double_points_campaign_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e4e92d81b4": ["model.yoda.sms__sms_double_points_campaign_kpi"], "test.yoda.not_null_sms__social_proof_flows_email_kpi_id.d57c5637e3": ["model.yoda.sms__social_proof_flows_email_kpi"], "test.yoda.unique_sms__social_proof_flows_email_kpi_id.c8c30d52ca": ["model.yoda.sms__social_proof_flows_email_kpi"], "test.yoda.not_null_sms__social_proof_flows_email_kpi_synergy_id.67177f1079": ["model.yoda.sms__social_proof_flows_email_kpi"], "test.yoda.not_null_sms__social_proof_flows_email_kpi_source_type.7b8e28dc19": ["model.yoda.sms__social_proof_flows_email_kpi"], "test.yoda.not_null_sms__social_proof_flows_email_kpi_source_id.4ca7bcd4d6": ["model.yoda.sms__social_proof_flows_email_kpi"], "test.yoda.unique_sms__social_proof_flows_email_kpi_source_id.3db7a2ca48": ["model.yoda.sms__social_proof_flows_email_kpi"], "test.yoda.not_null_sms__social_proof_flows_email_kpi_app_key.c84b86f064": ["model.yoda.sms__social_proof_flows_email_kpi"], "test.yoda.not_null_sms__social_proof_flows_email_kpi_customer_external_id.796d587844": ["model.yoda.sms__social_proof_flows_email_kpi"], "test.yoda.not_null_sms__social_proof_flows_email_kpi_dwh_updated_at.1b00bf3c9d": ["model.yoda.sms__social_proof_flows_email_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_sms__social_proof_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.6203320c8f": ["model.yoda.sms__social_proof_flows_email_kpi"], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_id.cf034d9c8c": ["model.yoda.sms__social_proof_flows_sms_kpi"], "test.yoda.unique_sms__social_proof_flows_sms_kpi_id.c797b4e309": ["model.yoda.sms__social_proof_flows_sms_kpi"], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_synergy_id.7234432245": ["model.yoda.sms__social_proof_flows_sms_kpi"], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_source_type.44cbe3410e": ["model.yoda.sms__social_proof_flows_sms_kpi"], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_source_id.e249f9eb2a": ["model.yoda.sms__social_proof_flows_sms_kpi"], "test.yoda.unique_sms__social_proof_flows_sms_kpi_source_id.49cffddbe2": ["model.yoda.sms__social_proof_flows_sms_kpi"], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_app_key.5176bbd10d": ["model.yoda.sms__social_proof_flows_sms_kpi"], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_customer_external_id.e46837cb39": ["model.yoda.sms__social_proof_flows_sms_kpi"], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_dwh_updated_at.42d9dbd28e": ["model.yoda.sms__social_proof_flows_sms_kpi"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__social_proof_flows_sms_kpi_1.19240c79c4": ["model.yoda.sms__social_proof_flows_sms_kpi"], "test.yoda.dbt_utils_unique_combination_of_columns_sms__social_proof_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.ecabcafbac": ["model.yoda.sms__social_proof_flows_sms_kpi"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__free_credits_logs_1.1cf00e33bb": ["model.yoda.sms_stg__free_credits_logs"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__packages_1.a3e59e8764": ["model.yoda.sms_stg__packages"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__users_events_log_1.a84bfcbfd1": ["model.yoda.sms_stg__users_events_log"], "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_customer_id.372860f3c6": ["model.yoda.sms_stg__one_click_campaigns_subscriptions"], "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_store_id.200b540f58": ["model.yoda.sms_stg__one_click_campaigns_subscriptions"], "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_sms_id.5938202b8f": ["model.yoda.sms_stg__one_click_campaigns_subscriptions"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_user_id.c578348f55": ["model.yoda.sms_stg__sms_loyalty_campaigns"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_store_id.7e676990e4": ["model.yoda.sms_stg__sms_loyalty_campaigns"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_campaign_id.11fe14e496": ["model.yoda.sms_stg__sms_loyalty_campaigns"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_synergy_id.0e972bea98": ["model.yoda.sms_stg__sms_loyalty_campaigns"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_synergy_id.346c782e61": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_campaign_id.87c25f580a": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_order_id.f993119d04": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.unique_sms_stg__sms_loyalty_campaigns_kpi_order_id.dc6d45cf40": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_channel.39b287a4ad": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_user_id.5572a3141f": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_type.7014c4b910": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_id.6159229595": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_type.e917b8a2e4": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_value.28bf6e0da5": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_app_key.8613cbcfe7": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_customer_email.664fc8caa0": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_external_customer_id.5fc501ffcc": ["model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_campaign_id.51faa33045": ["model.yoda.sms_stg__sms_loyalty_custom_campaigns"], "test.yoda.unique_sms_stg__sms_loyalty_custom_campaigns_campaign_id.5d5bbdcc49": ["model.yoda.sms_stg__sms_loyalty_custom_campaigns"], "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_user_id.f5bc9de2d1": ["model.yoda.sms_stg__sms_loyalty_custom_campaigns"], "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_synergy_id.21a61ab99e": ["model.yoda.sms_stg__sms_loyalty_custom_campaigns"], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_order_created.94295e0b38": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_flow_id.d03c6f1299": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_user_id.84f00df3d4": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_synergy_id.e4d948c601": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_order_id.9ac4dff31a": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"], "test.yoda.unique_sms_stg__sms_loyalty_flows_kpi_order_id.1cc255b787": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_app_key.00e7633287": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_customer_external_id.663bb6641c": ["model.yoda.sms_stg__sms_loyalty_flows_kpi"], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_synergy_id.ed2f5118d2": ["model.yoda.sms_stg__sms_reviews_flows_kpi"], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_type.265a0d9485": ["model.yoda.sms_stg__sms_reviews_flows_kpi"], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_id.bbd1debb93": ["model.yoda.sms_stg__sms_reviews_flows_kpi"], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_type.53a6bf6014": ["model.yoda.sms_stg__sms_reviews_flows_kpi"], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_value.a53aaa039b": ["model.yoda.sms_stg__sms_reviews_flows_kpi"], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_app_key.25ddfd9d45": ["model.yoda.sms_stg__sms_reviews_flows_kpi"], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_flow_id.5ca1d76709": ["model.yoda.sms_stg__sms_reviews_flows_kpi"], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_user_id.8b7af4db58": ["model.yoda.sms_stg__sms_reviews_flows_kpi"], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_store_id.9a58077931": ["model.yoda.sms_stg__social_proof_flows_kpi"], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_user_id.616df356af": ["model.yoda.sms_stg__social_proof_flows_kpi"], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_flow_id.0d3291518e": ["model.yoda.sms_stg__social_proof_flows_kpi"], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_customer_external_id.94003d5050": ["model.yoda.sms_stg__social_proof_flows_kpi"], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_order_created.e48858883a": ["model.yoda.sms_stg__social_proof_flows_kpi"], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_synergy_id.76fed0e870": ["model.yoda.sms_stg__social_proof_flows_kpi"], "test.yoda.unique_subscriptions__recurrent_event_rule_id.d124611023": ["model.yoda.subscriptions__recurrent_event_rule"], "test.yoda.not_null_subscriptions__recurrent_event_rule_id.3e6e1ca38f": ["model.yoda.subscriptions__recurrent_event_rule"], "test.yoda.not_null_subscriptions__recurrent_event_rule_created_at.81c34b3f79": ["model.yoda.subscriptions__recurrent_event_rule"], "test.yoda.not_null_subscriptions__recurrent_event_rule_updated_at.fc466f17cb": ["model.yoda.subscriptions__recurrent_event_rule"], "test.yoda.not_null_subscriptions__recurrent_event_rule_obj_id.304c69bd4b": ["model.yoda.subscriptions__recurrent_event_rule"], "test.yoda.not_null_subscriptions__recurrent_event_rule_obj_type.5400d9a9b1": ["model.yoda.subscriptions__recurrent_event_rule"], "test.yoda.not_null_subscriptions__recurrent_event_rule_plan_interval.6ed726d355": ["model.yoda.subscriptions__recurrent_event_rule"], "test.yoda.not_null_subscriptions__recurrent_event_rule_interval_count.00655cb6ff": ["model.yoda.subscriptions__recurrent_event_rule"], "test.yoda.not_null_subscriptions__recurrent_event_rule_is_canceled.324f4c15ee": ["model.yoda.subscriptions__recurrent_event_rule"], "test.yoda.unique_subscriptions__status_id.f32aced663": ["model.yoda.subscriptions__status"], "test.yoda.not_null_subscriptions__status_id.0e1836e3d1": ["model.yoda.subscriptions__status"], "test.yoda.unique_subscriptions__status_num.c4479387d7": ["model.yoda.subscriptions__status"], "test.yoda.not_null_subscriptions__status_num.6bcb27440e": ["model.yoda.subscriptions__status"], "test.yoda.unique_subscriptions__status_text.5ea3decb93": ["model.yoda.subscriptions__status"], "test.yoda.not_null_subscriptions__status_text.7918b594f4": ["model.yoda.subscriptions__status"], "test.yoda.unique_subscriptions__subscription_accounts_app_key.865b094650": ["model.yoda.subscriptions__subscription_accounts"], "test.yoda.not_null_subscriptions__subscription_accounts_app_key.bc18436501": ["model.yoda.subscriptions__subscription_accounts"], "test.yoda.not_null_subscriptions__subscription_accounts_is_test.f9e6d2f52c": ["model.yoda.subscriptions__subscription_accounts"], "test.yoda.unique_subscriptions__subscription_contract_id.ba23444208": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_id.f85b412524": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_store_id.eda0b915fc": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_external_id.d03059b309": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_status.2e53e022b3": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_delivery_policy_interval.a86bca1149": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_delivery_policy_interval_count.4dfa830ddd": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_billing_policy_interval.ef3085ca3c": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_billing_policy_interval_count.19bd743b78": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_external_customer_id.39cc52db95": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_created_at.12896bd08f": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_updated_at.d55f6eac47": ["model.yoda.subscriptions__subscription_contract"], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_subscription_contract_id.31bfd15557": ["model.yoda.subscriptions__subscription_contract_line_policy"], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_subscription_contract_external_id.c9469e7b6c": ["model.yoda.subscriptions__subscription_contract_line_policy"], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_product_external_id.893a27b15a": ["model.yoda.subscriptions__subscription_contract_line_policy"], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_product_title.ba64e462f8": ["model.yoda.subscriptions__subscription_contract_line_policy"], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval.4581d78f9f": ["model.yoda.subscriptions__subscription_contract_line_policy"], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval_count.eeab6707a5": ["model.yoda.subscriptions__subscription_contract_line_policy"], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_store_id.3856262e90": ["model.yoda.subscriptions__subscription_contract_line_policy"], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_variant_external_id.21ca2c3c1d": ["model.yoda.subscriptions__subscription_contract_line_policy"], "test.yoda.unique_subscriptions__subscription_contract_order_id.b60c074d05": ["model.yoda.subscriptions__subscription_contract_order"], "test.yoda.not_null_subscriptions__subscription_contract_order_id.5e48bf7918": ["model.yoda.subscriptions__subscription_contract_order"], "test.yoda.not_null_subscriptions__subscription_contract_order_store_id.7f45cb2d26": ["model.yoda.subscriptions__subscription_contract_order"], "test.yoda.not_null_subscriptions__subscription_contract_order_external_subscription_contract_id.9a19225b7d": ["model.yoda.subscriptions__subscription_contract_order"], "test.yoda.not_null_subscriptions__subscription_contract_order_external_order_id.a4354e8ec7": ["model.yoda.subscriptions__subscription_contract_order"], "test.yoda.not_null_subscriptions__subscription_contract_order_created_at.4f7cc5441a": ["model.yoda.subscriptions__subscription_contract_order"], "test.yoda.not_null_subscriptions__subscription_contract_order_updated_at.623041284e": ["model.yoda.subscriptions__subscription_contract_order"], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_external_order_id.0e27a8bc29": ["model.yoda.subscriptions__subscription_contract_order_lines"], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_external_subscription_contract_id.ed8270a222": ["model.yoda.subscriptions__subscription_contract_order_lines"], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_product_external_id.fd0ed26ff0": ["model.yoda.subscriptions__subscription_contract_order_lines"], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_variant_external_id.6ec01adf5c": ["model.yoda.subscriptions__subscription_contract_order_lines"], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_store_id.f83074f863": ["model.yoda.subscriptions__subscription_contract_order_lines"], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_order_line_total.4af6feff8e": ["model.yoda.subscriptions__subscription_contract_order_lines"], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_order_date.ca8512e5b7": ["model.yoda.subscriptions__subscription_contract_order_lines"], "test.yoda.not_null_subscriptions__subscription_merchant_migration_date_store_id.f16505d236": ["model.yoda.subscriptions__subscription_merchant_migration_date"], "test.yoda.not_null_subscriptions__subscription_merchant_migration_date_migration_date.4336341af9": ["model.yoda.subscriptions__subscription_merchant_migration_date"], "test.yoda.not_null_subscriptions__subscription_total_orders_external_order_id.c114ec599a": ["model.yoda.subscriptions__subscription_total_orders"], "test.yoda.not_null_subscriptions__subscription_total_orders_order_date.3912faf5d4": ["model.yoda.subscriptions__subscription_total_orders"], "test.yoda.not_null_subscriptions__subscription_total_orders_app_key.6e31807f76": ["model.yoda.subscriptions__subscription_total_orders"], "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_external_order_id.e716efbda5": ["model.yoda.subscriptions__subscriptions_attributed_orders"], "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_external_customer_id.91ef01bf80": ["model.yoda.subscriptions__subscriptions_attributed_orders"], "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_order_date.56befe7696": ["model.yoda.subscriptions__subscriptions_attributed_orders"], "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_order_total.f2f64e969d": ["model.yoda.subscriptions__subscriptions_attributed_orders"], "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_app_key.73ce2fbed4": ["model.yoda.subscriptions__subscriptions_attributed_orders"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__subscriptions_attributed_orders_1.696d32fa42": ["model.yoda.subscriptions__subscriptions_attributed_orders"], "test.yoda.unique_subscriptions__synergy_kpi_one_click_campaign_id.bed8484992": ["model.yoda.subscriptions__synergy_kpi_one_click_campaign"], "test.yoda.not_null_subscriptions__synergy_kpi_one_click_campaign_id.6da03f0dd5": ["model.yoda.subscriptions__synergy_kpi_one_click_campaign"], "test.yoda.not_null_subscriptions__synergy_kpi_one_click_campaign_source_id.f418f95b53": ["model.yoda.subscriptions__synergy_kpi_one_click_campaign"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_one_click_campaign_1.37cf6f3498": ["model.yoda.subscriptions__synergy_kpi_one_click_campaign"], "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_one_click_campaign_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.9f3c68965a": ["model.yoda.subscriptions__synergy_kpi_one_click_campaign"], "test.yoda.unique_subscriptions__synergy_kpi_redeemed_points_id.00b5bae0fc": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_id.583334bd1d": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_synergy_id.53cef945f0": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_source_id.f91b17a9b6": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_order_id.98d3a29306": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_type.2e487c08f7": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_id.4383f3c6df": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_type.6f89b29fcd": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_value.819ea5c046": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_app_key.0c83180733": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_customer_external_id.78f16c14d6": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_dwh_updated_at.74f206dbdd": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_redeemed_points_1.0e031d228d": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_redeemed_points_synergy_id__app_key__order_id__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__action_attribute_value.b831857ebb": ["model.yoda.subscriptions__synergy_kpi_redeemed_points"], "test.yoda.unique_subscriptions__synergy_kpi_sms_payment_failure_id.f00540d302": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"], "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_id.d7d8bd0db1": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"], "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_source_id.004bae07b6": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"], "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_order_id.6ddd173b10": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_payment_failure_1.1afa2799e9": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"], "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_payment_failure_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.3e4ce633de": ["model.yoda.subscriptions__synergy_kpi_sms_payment_failure"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_upsell_1.b7262d32d5": ["model.yoda.subscriptions__synergy_kpi_sms_upsell"], "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_upsell_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e72a32d5e0": ["model.yoda.subscriptions__synergy_kpi_sms_upsell"], "test.yoda.unique_subscriptions_stg__customer_journey_event_id.f4133674ad": ["model.yoda.subscriptions_stg__customer_journey_event"], "test.yoda.not_null_subscriptions_stg__customer_journey_event_id.bec0d4731a": ["model.yoda.subscriptions_stg__customer_journey_event"], "test.yoda.not_null_subscriptions_stg__customer_journey_event_store_id.f9cab24c0f": ["model.yoda.subscriptions_stg__customer_journey_event"], "test.yoda.not_null_subscriptions_stg__customer_journey_event_customer_id.e2b55b8d59": ["model.yoda.subscriptions_stg__customer_journey_event"], "test.yoda.not_null_subscriptions_stg__customer_journey_event_source_domain.8bdffa28cf": ["model.yoda.subscriptions_stg__customer_journey_event"], "test.yoda.not_null_subscriptions_stg__customer_journey_event_source_id.027faf7ba9": ["model.yoda.subscriptions_stg__customer_journey_event"], "test.yoda.not_null_subscriptions_stg__customer_journey_event_created_at.a32d0c43fc": ["model.yoda.subscriptions_stg__customer_journey_event"], "test.yoda.not_null_subscriptions_stg__customer_journey_event_updated_at.61004cb8b5": ["model.yoda.subscriptions_stg__customer_journey_event"], "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_type.a26bc346aa": ["model.yoda.subscriptions_stg__customer_journey_event"], "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_origin.e87e6d0502": ["model.yoda.subscriptions_stg__customer_journey_event"], "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_time.ca372e17ea": ["model.yoda.subscriptions_stg__customer_journey_event"], "test.yoda.unique_subscriptions_stg__recurrent_event_rule_id.ab51575389": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_id.27079aee4c": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_created_at.32a32c4032": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_updated_at.fdfbcba8a2": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_obj_id.d716d0142f": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_obj_type.577d0a5dec": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_next_due_date.2aec71eaf0": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_plan_interval.bfbb8f7a79": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_interval_count.c0e601b31d": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_is_canceled.080fc39b12": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "test.yoda.unique_subscriptions_stg__status_id.03bc739540": ["model.yoda.subscriptions_stg__status"], "test.yoda.not_null_subscriptions_stg__status_id.8ffe282590": ["model.yoda.subscriptions_stg__status"], "test.yoda.unique_subscriptions_stg__status_num.67fc6cf8f7": ["model.yoda.subscriptions_stg__status"], "test.yoda.not_null_subscriptions_stg__status_num.95235b8006": ["model.yoda.subscriptions_stg__status"], "test.yoda.unique_subscriptions_stg__status_text.6a5eb937eb": ["model.yoda.subscriptions_stg__status"], "test.yoda.not_null_subscriptions_stg__status_text.0bbdba506f": ["model.yoda.subscriptions_stg__status"], "test.yoda.unique_subscriptions_stg__subscription_contract_id.41f442c867": ["model.yoda.subscriptions_stg__subscription_contract"], "test.yoda.not_null_subscriptions_stg__subscription_contract_id.858c7729db": ["model.yoda.subscriptions_stg__subscription_contract"], "test.yoda.not_null_subscriptions_stg__subscription_contract_store_id.4aa7e8dc1f": ["model.yoda.subscriptions_stg__subscription_contract"], "test.yoda.not_null_subscriptions_stg__subscription_contract_external_id.84ab33c6b0": ["model.yoda.subscriptions_stg__subscription_contract"], "test.yoda.not_null_subscriptions_stg__subscription_contract_delivery_policy_interval.b4e2f92799": ["model.yoda.subscriptions_stg__subscription_contract"], "test.yoda.not_null_subscriptions_stg__subscription_contract_delivery_policy_interval_count.f3950c52af": ["model.yoda.subscriptions_stg__subscription_contract"], "test.yoda.not_null_subscriptions_stg__subscription_contract_billing_policy_interval.c9bde22f45": ["model.yoda.subscriptions_stg__subscription_contract"], "test.yoda.not_null_subscriptions_stg__subscription_contract_billing_policy_interval_count.cd94089a3a": ["model.yoda.subscriptions_stg__subscription_contract"], "test.yoda.not_null_subscriptions_stg__subscription_contract_external_customer_id.796215cb6f": ["model.yoda.subscriptions_stg__subscription_contract"], "test.yoda.not_null_subscriptions_stg__subscription_contract_created_at.abcdb1a87d": ["model.yoda.subscriptions_stg__subscription_contract"], "test.yoda.not_null_subscriptions_stg__subscription_contract_updated_at.a01bf82f91": ["model.yoda.subscriptions_stg__subscription_contract"], "test.yoda.unique_subscriptions_stg__subscription_contract_line_id.a404ce51e5": ["model.yoda.subscriptions_stg__subscription_contract_line"], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_id.59b71253af": ["model.yoda.subscriptions_stg__subscription_contract_line"], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_created_at.3788d0b43d": ["model.yoda.subscriptions_stg__subscription_contract_line"], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_updated_at.7b7870ed57": ["model.yoda.subscriptions_stg__subscription_contract_line"], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_subscription_contract_id.1e9e63855c": ["model.yoda.subscriptions_stg__subscription_contract_line"], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_product_external_id.54272ca55f": ["model.yoda.subscriptions_stg__subscription_contract_line"], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_variant_external_id.1cb6445974": ["model.yoda.subscriptions_stg__subscription_contract_line"], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_quantity.b5141eefc6": ["model.yoda.subscriptions_stg__subscription_contract_line"], "test.yoda.unique_subscriptions_stg__subscription_contract_order_id.6e2ffae470": ["model.yoda.subscriptions_stg__subscription_contract_order"], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_id.ab84ffc005": ["model.yoda.subscriptions_stg__subscription_contract_order"], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_store_id.ea32213fae": ["model.yoda.subscriptions_stg__subscription_contract_order"], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_external_subscription_contract_id.0b2e8cd5f6": ["model.yoda.subscriptions_stg__subscription_contract_order"], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_external_order_id.3be5a3bc9e": ["model.yoda.subscriptions_stg__subscription_contract_order"], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_created_at.51958f6ced": ["model.yoda.subscriptions_stg__subscription_contract_order"], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_updated_at.e9265941b3": ["model.yoda.subscriptions_stg__subscription_contract_order"], "test.yoda.unique_subscriptions_stg__subscription_line_action_id.8bf84a0019": ["model.yoda.subscriptions_stg__subscription_line_action"], "test.yoda.not_null_subscriptions_stg__subscription_line_action_id.36f709ac2f": ["model.yoda.subscriptions_stg__subscription_line_action"], "test.yoda.not_null_subscriptions_stg__subscription_line_action_store_id.8a1fcd46b3": ["model.yoda.subscriptions_stg__subscription_line_action"], "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_subscription_contract_id.46a57f4159": ["model.yoda.subscriptions_stg__subscription_line_action"], "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_line_id.76369fc8e4": ["model.yoda.subscriptions_stg__subscription_line_action"], "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_variant_id.3aa5d75d64": ["model.yoda.subscriptions_stg__subscription_line_action"], "test.yoda.not_null_subscriptions_stg__subscription_line_action_action_type.fdd8968d86": ["model.yoda.subscriptions_stg__subscription_line_action"], "test.yoda.not_null_subscriptions_stg__subscription_line_action_action_status.46b55635d6": ["model.yoda.subscriptions_stg__subscription_line_action"], "test.yoda.not_null_subscriptions_stg__subscription_line_action_quantity.13af32fe78": ["model.yoda.subscriptions_stg__subscription_line_action"], "test.yoda.not_null_subscriptions_stg__subscription_line_action_created_at.acb57fb287": ["model.yoda.subscriptions_stg__subscription_line_action"], "test.yoda.not_null_subscriptions_stg__subscription_line_action_updated_at.cd68e46ce5": ["model.yoda.subscriptions_stg__subscription_line_action"], "test.yoda.unique_subscriptions_stg__synergy_sms_payment_failure_sms_id.d0cbebe707": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"], "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_sms_id.cf24e4eac3": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"], "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_number.4876169148": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"], "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_app_key.64d75a0a7b": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"], "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_customer_id.11dd893009": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"], "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_contract_id.ab96c98b93": ["model.yoda.subscriptions_stg__synergy_sms_payment_failure"], "test.yoda.not_null_subscriptions_stg__synergy_subs_payment_failure_order_id.3f406c467c": ["model.yoda.subscriptions_stg__synergy_subs_payment_failure"], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_ugc_stg__review_order_line_1.aef73dd478": ["model.yoda.ugc_stg__review_order_line"], "test.yoda.source_not_null_loyalty__default_swell_vip_tiers_settings_merchant_id.c901db4741": ["source.yoda.loyalty__default.swell_vip_tiers_settings"], "test.yoda.source_unique_loyalty__default_swell_vip_tiers_settings_merchant_id.5f44e0ed3b": ["source.yoda.loyalty__default.swell_vip_tiers_settings"], "test.yoda.source_not_null_platform__yotpoapiprod_accounts_id.53e221b49f": ["source.yoda.platform__yotpoapiprod.accounts"], "test.yoda.source_unique_platform__yotpoapiprod_accounts_id.1717951440": ["source.yoda.platform__yotpoapiprod.accounts"], "test.yoda.source_not_null_platform__yotpoapiprod_accounts_app_key.82f42cf573": ["source.yoda.platform__yotpoapiprod.accounts"], "test.yoda.source_unique_platform__yotpoapiprod_accounts_app_key.8c15d446df": ["source.yoda.platform__yotpoapiprod.accounts"], "test.yoda.source_not_null_platform__yotpoapiprod_platform_types_id.2364631aa4": ["source.yoda.platform__yotpoapiprod.platform_types"], "test.yoda.source_unique_platform__yotpoapiprod_platform_types_id.e3c5d219fe": ["source.yoda.platform__yotpoapiprod.platform_types"], "test.yoda.source_not_null_platform__yotpoapiprod_account_platforms_id.665cd6e626": ["source.yoda.platform__yotpoapiprod.account_platforms"], "test.yoda.source_unique_platform__yotpoapiprod_account_platforms_id.f7c871edac": ["source.yoda.platform__yotpoapiprod.account_platforms"], "source.yoda.analytics__billing.shopify_billing_events": [], "source.yoda.analytics__zuora.subscription": [], "source.yoda.analytics__zuora.account": [], "source.yoda.analytics__zuora.rateplan": [], "source.yoda.analytics__zuora.order": [], "source.yoda.analytics__zuora.invoice": [], "source.yoda.analytics__zuora.orderaction": [], "source.yoda.analytics__zuora.ordermrr": [], "source.yoda.analytics__zuora.product": [], "source.yoda.analytics__zuora.productrateplan": [], "source.yoda.analytics__zuora.rateplancharge": [], "source.yoda.analytics__zuora.rateplanchargetier": [], "source.yoda.analytics__zuora.productrateplancharge": [], "source.yoda.analytics__zuora.invoiceitem": [], "source.yoda.analytics__zuora.contact": [], "source.yoda.analytics__bi_rivery.stg_nerd_acv_goals": [], "source.yoda.analytics__bi_rivery.stg_nerd_sal_goals": [], "source.yoda.analytics__static.calendar_with_closing_day": [], "source.yoda.analytics__bi_rivery.partner_manager_goals": [], "source.yoda.analytics__static.saas_organization_daily_history": [], "source.yoda.analytics__static.product_plan_name_rank": [], "source.yoda.analytics__static.shopify_billing_charge_plan_mapping": [], "source.yoda.analytics__static.chargify_organization_product_usage_revanue_daily": [], "source.yoda.analytics__static.organization_onboarding_call_pre_2023_08_27": [], "source.yoda.analytics__salesforce.deal_summary_new__c_full": [], "source.yoda.analytics__salesforce.account_full": [], "source.yoda.analytics__salesforce.opportunitylineitem_full": [], "source.yoda.analytics__salesforce.livechattranscript_full": [], "source.yoda.analytics__salesforce.opportunity_prediction__c_full": [], "source.yoda.analytics__salesforce.lead": [], "source.yoda.analytics__salesforce.campaign": [], "source.yoda.analytics__salesforce.contact": [], "source.yoda.analytics__salesforce.partner_referral__c_full": [], "source.yoda.analytics__salesforce.task": [], "source.yoda.analytics__salesforce.datedconversionrate": [], "source.yoda.analytics__salesforce.case_full": [], "source.yoda.analytics__salesforce.account_product__c_full": [], "source.yoda.analytics__salesforce.onboarding_project__c_full": [], "source.yoda.analytics__salesforce.custom_field_history_tracking__c": [], "source.yoda.analytics__salesforce.opportunityfieldhistory": [], "source.yoda.analytics__default.dim_sf_campaign_member_mapping": [], "source.yoda.analytics__default.dim_sf_users_scd": [], "source.yoda.analytics__static.salesforce_object_prefix_id": [], "source.yoda.analytics__static.fact_account_profile_daily": [], "source.yoda.analytics__static.campaign_member_history_creation_records": [], "source.yoda.analytics__salesforce_rivery.event": [], "source.yoda.analytics__salesforce_rivery.mql__c": [], "source.yoda.analytics__salesforce_rivery.mql__c_full": [], "source.yoda.analytics__salesforce_rivery.opportunity_full": [], "source.yoda.analytics__salesforce_rivery.opportunity": [], "source.yoda.analytics__salesforce_rivery.user": [], "source.yoda.analytics__salesforce_rivery.user_full": [], "source.yoda.analytics__salesforce_rivery.deal_summary_new__c_full": [], "source.yoda.analytics__salesforce_rivery.deal_summary_new__c": [], "source.yoda.analytics__salesforce_rivery.cs_lead__c": [], "source.yoda.analytics__salesforce_rivery.cs_lead__c_full": [], "source.yoda.analytics__static.free_credit_high_touch_bonus": [], "source.yoda.analytics__static.subscription_contract_before_snapshot": [], "source.yoda.analytics__static.loyalty_earning_rule_types_for_synergy_activeness": [], "source.yoda.analytics__static.sms_flow_triggers_for_synergy_activeness": [], "source.yoda.analytics__static.sms_flow_triggers_to_filter_for_custom_loyalty_activeness": [], "source.yoda.analytics__static.sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness": [], "source.yoda.analytics__static.sms_predefined_message_sub_category_for_synergy_activeness": [], "source.yoda.analytics__email_analytics.emails": [], "source.yoda.analytics__static.calendar": [], "source.yoda.communication__sms.users": [], "source.yoda.communication__sms.shopify_users": [], "source.yoda.communication__sms.campaigns": [], "source.yoda.communication__sms.events": [], "source.yoda.communication__sms.flows": [], "source.yoda.communication__sms.forms": [], "source.yoda.communication__sms.list_keywords": [], "source.yoda.communication__sms.shopify_subscription_list_pages": [], "source.yoda.communication__sms.shopify_user_integrations": [], "source.yoda.communication__sms.phones_meta": [], "source.yoda.communication__sms.apicalls": [], "source.yoda.communication__sms.phones": [], "source.yoda.communication__sms.phone_to_list": [], "source.yoda.communication__sms.packages": [], "source.yoda.communication__sms.email_esp_events": [], "source.yoda.communication__sms.conversation_messages": [], "source.yoda.communication__sms.klaviyo_users": [], "source.yoda.communication__sms.bigcommerce_users": [], "source.yoda.communication__sms.users_additional_flags": [], "source.yoda.communication__sms.shopify_analytics_orders": [], "source.yoda.communication__sms.tmp_email_events": [], "source.yoda.communication__sms_shopify.orders": [], "source.yoda.communication__communication.billing_events": [], "source.yoda.communication__unomi.profiles": [], "source.yoda.email__communication.campaign_events": [], "source.yoda.email__communication.system_email_events": [], "source.yoda.email__communication.delivered_email": [], "source.yoda.email__communication.template_instance_events": [], "source.yoda.email__communication.source_engagement_level_dry_run": [], "source.yoda.email__delivery.authenticated_domain": [], "source.yoda.infra__costpo.aws_billing_report_raw": [], "source.yoda.infra__costpo.kubecost_raw": [], "source.yoda.infra__costpo.databricks_cost_raw": [], "source.yoda.infra__costpo.aws_payer_billing_report_raw": [], "source.yoda.infra__costpo.budget": [], "source.yoda.infra__costpo.sub_departments_monthyl_budget": [], "source.yoda.infra__costpo.kubecost_delta": [], "source.yoda.infra__costpo.snowflake_automatic_clustering_history": [], "source.yoda.infra__costpo.snowflake_database_storage_usage_history": [], "source.yoda.infra__costpo.snowflake_materialized_view_refresh_history": [], "source.yoda.infra__costpo.snowflake_warehouse_metering_history": [], "source.yoda.infra__costpo.snowflake_tag_references": [], "source.yoda.infra__costpo.snowflake_warehouse_events": [], "source.yoda.infra__costpo.snowflake_queries_statistics": [], "source.yoda.infra__costpo.sub_departments_monthly_budget": [], "source.yoda.infra__costpo.team_budget": [], "source.yoda.infra__default.s3_inventory": [], "source.yoda.infra__pixel.pixel_enrichment": [], "source.yoda.infra__opsgenie.incidents": [], "source.yoda.infra__opsgenie.services": [], "source.yoda.infra__opsgenie.teams": [], "source.yoda.infra__opsgenie.alerts": [], "source.yoda.infra__github_info.repos": [], "source.yoda.infra__github_info.workflows": [], "source.yoda.infra__github_info.workflow_runs": [], "source.yoda.infra__infra_metrics.infra_raw_metrics": [], "source.yoda.infra__infra_metrics.upsolver_raw_output": [], "source.yoda.infra__infra.rivery_rivers_usage": [], "source.yoda.infra__infra.rivery_environments": [], "source.yoda.infra__infra.rivery_groups": [], "source.yoda.infra__segment.page": [], "source.yoda.infra__segment.page_track": [], "source.yoda.infra__segment.identify": [], "source.yoda.infra__segment.group": [], "source.yoda.loyalty__default.swell_vip_tiers_settings": [], "source.yoda.loyalty__default.currency_rates": [], "source.yoda.loyalty__chainperks.yotpo_platform_accounts": [], "source.yoda.loyalty__chainperks.vip_tiers_thresholds": [], "source.yoda.loyalty__chainperks.vip_tiers": [], "source.yoda.loyalty__chainperks.user_agents": [], "source.yoda.loyalty__chainperks.user_actions": [], "source.yoda.loyalty__chainperks.subscriptions": [], "source.yoda.loyalty__chainperks.refunds": [], "source.yoda.loyalty__chainperks.refund_items": [], "source.yoda.loyalty__chainperks.referrals": [], "source.yoda.loyalty__chainperks.referral_snapshots": [], "source.yoda.loyalty__chainperks.referral_shares": [], "source.yoda.loyalty__chainperks.referral_receipts": [], "source.yoda.loyalty__chainperks.referral_discount_codes": [], "source.yoda.loyalty__chainperks.referral_codes": [], "source.yoda.loyalty__chainperks.redemption_options": [], "source.yoda.loyalty__chainperks.redemption_codes": [], "source.yoda.loyalty__chainperks.purchases_with_currency": [], "source.yoda.loyalty__chainperks.purchases_redemptions": [], "source.yoda.loyalty__chainperks.purchases": [], "source.yoda.loyalty__chainperks.purchase_items": [], "source.yoda.loyalty__chainperks.processors": [], "source.yoda.loyalty__chainperks.point_redemptions": [], "source.yoda.loyalty__chainperks.perks_user_actions": [], "source.yoda.loyalty__chainperks.perks": [], "source.yoda.loyalty__chainperks.merchants": [], "source.yoda.loyalty__chainperks.group_customers": [], "source.yoda.loyalty__chainperks.email_campaign_emails": [], "source.yoda.loyalty__chainperks.customers_vip_tiers_history": [], "source.yoda.loyalty__chainperks.customers_vip_tiers": [], "source.yoda.loyalty__chainperks.customers_opt_in": [], "source.yoda.loyalty__chainperks.customers": [], "source.yoda.loyalty__chainperks.customer_birthdays": [], "source.yoda.loyalty__chainperks.campaigns": [], "source.yoda.loyalty__chainperks.email_campaigns": [], "source.yoda.loyalty__chainperks.plans": [], "source.yoda.loyalty__chainperks.vip_tiers_settings": [], "source.yoda.loyalty__chainperks.campaign_activation_histories": [], "source.yoda.loyalty__chainperks.customers_platform_accounts": [], "source.yoda.loyalty__communication.store_email_activity": [], "source.yoda.loyalty__segment.uninstall_loyalty": [], "source.yoda.loyalty__segment.install_loyalty": [], "source.yoda.loyalty__pixel.onsite_v3": [], "source.yoda.loyalty__sources_loyalty.known_crawlers": [], "source.yoda.loyalty__widgetrepodb.instance_versions": [], "source.yoda.loyalty__widgetrepodb.instances": [], "source.yoda.loyalty__widgetrepodb.customizations": [], "source.yoda.loyalty__widgetrepodb.static_contents": [], "source.yoda.loyalty__widgetrepodb.templates": [], "source.yoda.loyalty__widgetrepodb.widget_types": [], "source.yoda.loyalty__points.config_item": [], "source.yoda.loyalty__points.container_balance_usage": [], "source.yoda.loyalty__points.points_container_expiration": [], "source.yoda.loyalty__points.points_state": [], "source.yoda.loyalty__points.points_transaction": [], "source.yoda.platform__yotpoapiprod.accounts": [], "source.yoda.platform__yotpoapiprod.platform_types": [], "source.yoda.platform__yotpoapiprod.account_platforms": [], "source.yoda.platform__yotpoapiprod.organizations": [], "source.yoda.platform__yotpoapiprod.apps": [], "source.yoda.platform__yotpoapiprod.features": [], "source.yoda.platform__yotpoapiprod.owners_features": [], "source.yoda.platform__yotpoapiprod.owner_feature_settings": [], "source.yoda.platform__yotpoapiprod.users_organizations": [], "source.yoda.platform__yotpoapiprod.questions": [], "source.yoda.platform__packages.owners_packages": [], "source.yoda.platform__packages.packages": [], "source.yoda.platform__packages.categories": [], "source.yoda.platform__packages.package_tags": [], "source.yoda.platform__packages.package_tag_types": [], "source.yoda.platform__packages.owners_package_audits": [], "source.yoda.platform__packages.owners_packages_history": [], "source.yoda.platform__packages.package_feature_settings": [], "source.yoda.platform__packages.package_features": [], "source.yoda.platform__packages.platform_package_features": [], "source.yoda.platform__orders.orders": [], "source.yoda.platform__orders.fulfillments": [], "source.yoda.platform__orders.order_lines": [], "source.yoda.platform__default.currency_rates": [], "source.yoda.platform__default.platform__integrationscenter": [], "source.yoda.platform__default.dim_calendar": [], "source.yoda.platform__integrationscenter.store_applications": [], "source.yoda.platform__products.products": [], "source.yoda.platform__products.variants": [], "source.yoda.platform__products.gtins": [], "source.yoda.platform__products.custom_attributes": [], "source.yoda.platform__products.attribute_sets": [], "source.yoda.platform__products.groups": [], "source.yoda.platform__static.timezone_country_mapping": [], "source.yoda.platform__static.pixel_category_mapping": [], "source.yoda.platform__static.pixel_action_mapping": [], "source.yoda.platform__static.pixel_duration_mapping": [], "source.yoda.platform__static.deprecated_packages": [], "source.yoda.platform__static.sms_loyalty_synergy_mapping": [], "source.yoda.platform__static.pixel_os_family_mobile_mapping": [], "source.yoda.platform__static.phone_code_country_mapping": [], "source.yoda.platform__static.saas_store_plan_history": [], "source.yoda.platform__static.subscriptions_contract_history": [], "source.yoda.platform__pixel.onsite_v2": [], "source.yoda.platform__pixel.onsite_v3": [], "source.yoda.platform__billing.subscription_providers": [], "source.yoda.platform__billing.usages": [], "source.yoda.platform__billing.usages_history": [], "source.yoda.platform__billing.usages_tiers_settings": [], "source.yoda.platform__billing.subscription_statuses": [], "source.yoda.platform__billing.subscription_usages_settings": [], "source.yoda.platform__billing.subscription_pending_usages": [], "source.yoda.platform__billing.subscription_cycle_usages": [], "source.yoda.platform__billing.provider_types": [], "source.yoda.platform__billing.plan_settings": [], "source.yoda.platform__billing.package_usages_settings": [], "source.yoda.platform__billing.package_provider_settings": [], "source.yoda.platform__billing.billing_audits": [], "source.yoda.platform__data_science.similar_stores": [], "source.yoda.platform__data_science.customer_dataset_reduced": [], "source.yoda.platform__data_science.churn_prediction": [], "source.yoda.platform__segment.app_install_completed": [], "source.yoda.platform__segment.app_uninstalled": [], "source.yoda.platform__segment.activation_step": [], "source.yoda.platform__segment.onboarding": [], "source.yoda.platform__segment.b2b": [], "source.yoda.platform__segment.uninstalled_yotpo": [], "source.yoda.platform__segment.account_created": [], "source.yoda.platform__segment.product_enabled": [], "source.yoda.platform__segment.popup_displayed": [], "source.yoda.platform__segment.limit_reached": [], "source.yoda.platform__segment.file_exported": [], "source.yoda.platform__homescreen.synergies_crud": [], "source.yoda.platform__homescreen.widgets": [], "source.yoda.platform__homescreen.sections": [], "source.yoda.platform__homescreen.widget_configurations": [], "source.yoda.platform__singas.cdp_streaming_events": [], "source.yoda.sms__sms.apicalls": [], "source.yoda.sms__sms.bigcommerce_users": [], "source.yoda.sms__sms.shopify_users": [], "source.yoda.sms__sms.users": [], "source.yoda.sms__sms.events": [], "source.yoda.sms__sms.flows": [], "source.yoda.sms__sms.loyalty_flows_data": [], "source.yoda.sms__sms.track_flows_adoption": [], "source.yoda.sms__sms.yotpo_organizations": [], "source.yoda.sms__sms.users_events_log": [], "source.yoda.sms__sms.packages": [], "source.yoda.sms__sms.campaigns": [], "source.yoda.sms__sms.purchases": [], "source.yoda.sms__sms.forms": [], "source.yoda.sms__sms.flow_link_clicks": [], "source.yoda.sms__sms.shopify_flows_orders": [], "source.yoda.sms__sms.campaign_lists": [], "source.yoda.sms__sms.lists": [], "source.yoda.sms__sms.shopify_segments": [], "source.yoda.sms__sms.campaign_relations": [], "source.yoda.sms__sms.default_predefined_messages": [], "source.yoda.sms__sms.flow_links": [], "source.yoda.sms__sms.shopify_campaign_orders": [], "source.yoda.sms__sms.link_clicks": [], "source.yoda.sms__sms.yotpo_status_updates": [], "source.yoda.sms__sms.free_credits_logs": [], "source.yoda.sms__sms.email_charges": [], "source.yoda.sms__sms.shopify_analytics_orders": [], "source.yoda.sms__sms.email_to_sms_campaigns": [], "source.yoda.sms__sms.shopify_campaign_discount_codes": [], "source.yoda.sms__sms.sms_loyalty_redemptions": [], "source.yoda.sms__segment.sms_campaign_created": [], "source.yoda.sms__sms_shopify.orders": [], "source.yoda.sms__sms_shopify.customers": [], "source.yoda.sms__sms_shopify.customers_addresses": [], "source.yoda.sms__default.fact_agg_sms_user_profile_daily": [], "source.yoda.sms__communication.comm_analytics_data": [], "source.yoda.subscriptions__subscriptions.subscription_contract": [], "source.yoda.subscriptions__subscriptions.status": [], "source.yoda.subscriptions__subscriptions.subscription_contract_order": [], "source.yoda.subscriptions__subscriptions.recurrent_event_rule": [], "source.yoda.subscriptions__subscriptions.subscription_contract_line": [], "source.yoda.subscriptions__subscriptions.subscription_creation_request": [], "source.yoda.subscriptions__subscriptions.product": [], "source.yoda.subscriptions__subscriptions.selling_plan": [], "source.yoda.subscriptions__subscriptions.selling_plan_group": [], "source.yoda.subscriptions__subscriptions.selling_plan_group_product": [], "source.yoda.subscriptions__subscriptions.billing_attempt_response": [], "source.yoda.subscriptions__subscriptions.store_customers_exports": [], "source.yoda.subscriptions__subscriptions.subscription_line_action": [], "source.yoda.subscriptions__subscriptions.app_webhooks": [], "source.yoda.subscriptions__segment.subscription_started_v2": [], "source.yoda.subscriptions__segment.subscription_ended_v2": [], "source.yoda.subscriptions__customer_journey.customer_journey_event": [], "source.yoda.subscriptions__subscriptions_retention.cancelation_intent_event": [], "source.yoda.subscriptions__subscriptions_retention.cancelation_reason_option": [], "source.yoda.ugc__yotpoapiprod.reviews": [], "source.yoda.ugc__yotpoapiprod.reviews_subjects": [], "source.yoda.ugc__yotpoapiprod.images": [], "source.yoda.ugc__yotpoapiprod.videos": [], "source.yoda.ugc__yotpoapiprod.comments": [], "source.yoda.ugc__yotpoapiprod.moderation_audits": [], "source.yoda.ugc__yotpoapiprod.votes": [], "source.yoda.ugc__yotpoapiprod.dirty_words": [], "source.yoda.ugc__yotpoapiprod.review_contents": [], "source.yoda.ugc__yotpoapiprod.review_form_fields": [], "source.yoda.ugc__yotpoapiprod.review_form_field_types": [], "source.yoda.ugc__yotpoapiprod.review_types": [], "source.yoda.ugc__yotpoapiprod.users": [], "source.yoda.ugc__yotpoapiprod.anonymous_users": [], "source.yoda.ugc__yotpoapiprod.review_source_types": [], "source.yoda.ugc__yotpoapiprod.review_metadatas": [], "source.yoda.ugc__yotpoapiprod.reminders": [], "source.yoda.ugc__yotpoapiprod.review_order_line": [], "source.yoda.ugc__yotpoapiprod.tags_to_reviews": [], "source.yoda.ugc__yotpoapiprod.review_tags": [], "source.yoda.ugc__yotpoapiprod.reviews_incentivized": [], "source.yoda.ugc__yotpoapiprod.review_request_tokens": [], "source.yoda.ugc__yotpoapiprod.email_authentications": [], "source.yoda.ugc__yotpoapiprod.users_email_controls": [], "source.yoda.ugc__yotpoapiprod.email_types": [], "source.yoda.ugc__yotpoapiprod.review_request_sms": [], "source.yoda.ugc__yotpoapiprod.review_request_emails": [], "source.yoda.ugc__default.mongo_gallery_media": [], "source.yoda.ugc__default.metadata_types": [], "source.yoda.ugc__default.shares": [], "source.yoda.ugc__default.fact_reviews_stores_population_daily": [], "source.yoda.ugc__static.ugc_plan_group_change_mapping": [], "source.yoda.ugc__retailers_syndication.syndicated_accounts": [], "source.yoda.ugc__retailers_syndication.retailer": [], "exposure.yoda.analytics___cs__24h": ["model.yoda.analytics___cs__account_acv_metrics_daily", "model.yoda.analytics___cs__onboarding_project", "model.yoda.analytics___cs__opportunity_main_product_change", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___cs__opportunity_won_product_start_date", "model.yoda.analytics___cs__opportunity_won_sale_daily", "model.yoda.analytics___cs__organization_first_ht_opportunity"], "exposure.yoda.analytics___delivery__24h": ["model.yoda.analytics___delivery__organization_customer_care_over_time"], "exposure.yoda.analytics___finance__24h": ["model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly", "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly", "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly", "model.yoda.analytics___finance__organization_product_revenue_monthly", "model.yoda.analytics___finance__organization_product_revenue_monthly_lean", "model.yoda.analytics___finance__organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__organization_revenue_monthly", "model.yoda.analytics___finance__rate_plan_mrr_details", "model.yoda.analytics___finance__sf_opportunity_free_month_over_time", "model.yoda.analytics___finance__shopify_billing_event", "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily", "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly", "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__shopify_billing_store_mapping", "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time", "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily", "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly", "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge", "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time", "model.yoda.analytics___finance__shopify_store_mapping", "model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___finance__zuora_invoice", "model.yoda.analytics___finance__zuora_invoice_item", "model.yoda.analytics___finance__zuora_order_mrr_details", "model.yoda.analytics___finance__zuora_organization_plan_rank_daily", "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly", "model.yoda.analytics___finance__zuora_organization_product_mrr_daily", "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly", "model.yoda.analytics___finance__zuora_organization_product_usage_charge", "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily", "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__zuora_parent_organization", "model.yoda.analytics___finance__zuora_product", "model.yoda.analytics___finance__zuora_rateplan_charge", "model.yoda.analytics___finance__zuora_subscription", "model.yoda.analytics___finance__zuora_subscription_mrr_daily", "model.yoda.analytics___finance__zuora_subscription_mrr_monthly", "model.yoda.analytics___finance__zuora_subscription_mrr_over_time", "model.yoda.analytics___finance_stg__shopify_billing_event", "model.yoda.analytics___finance_stg__zuora_account", "model.yoda.analytics___finance_stg__zuora_contact", "model.yoda.analytics___finance_stg__zuora_invoice", "model.yoda.analytics___finance_stg__zuora_invoice_item", "model.yoda.analytics___finance_stg__zuora_order", "model.yoda.analytics___finance_stg__zuora_order_action", "model.yoda.analytics___finance_stg__zuora_order_mrr", "model.yoda.analytics___finance_stg__zuora_product", "model.yoda.analytics___finance_stg__zuora_product_rateplan", "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge", "model.yoda.analytics___finance_stg__zuora_rateplan", "model.yoda.analytics___finance_stg__zuora_rateplan_charge", "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier", "model.yoda.analytics___finance_stg__zuora_subscription"], "exposure.yoda.analytics___finance__at_01_30": ["model.yoda.analytics___finance_stg__account", "model.yoda.analytics___finance_stg__contact", "model.yoda.analytics___finance_stg__invoice", "model.yoda.analytics___finance_stg__invoiceitem", "model.yoda.analytics___finance_stg__order", "model.yoda.analytics___finance_stg__orderaction", "model.yoda.analytics___finance_stg__ordermrr", "model.yoda.analytics___finance_stg__product", "model.yoda.analytics___finance_stg__productrateplan", "model.yoda.analytics___finance_stg__productrateplancharge", "model.yoda.analytics___finance_stg__rateplan", "model.yoda.analytics___finance_stg__rateplancharge", "model.yoda.analytics___finance_stg__rateplanchargetier", "model.yoda.analytics___finance_stg__shopify_billing_events", "model.yoda.analytics___finance_stg__subscription"], "exposure.yoda.analytics___gtm__24h": ["model.yoda.analytics___gtm__acv_goal_daily", "model.yoda.analytics___gtm__crossell_opportunity_attribution", "model.yoda.analytics___gtm__new_sale_opportunity_attribution", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "model.yoda.analytics___gtm__opportunity_attribution", "model.yoda.analytics___gtm__opportunity_goal", "model.yoda.analytics___gtm__opporunity_dg_funnel", "model.yoda.analytics___gtm__sal_goal_daily", "model.yoda.analytics___gtm_stg__acv_goal", "model.yoda.analytics___gtm_stg__sal_goal"], "exposure.yoda.analytics___gtm__at_01_30": ["model.yoda.analytics___gtm_stg__stg_nerd_acv_goals", "model.yoda.analytics___gtm_stg__stg_nerd_sal_goals"], "exposure.yoda.analytics___loyalty__24h": ["model.yoda.analytics___loyalty__daily_merchant", "model.yoda.analytics___loyalty__earning_rule_activation_daily", "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty__merchant_activeness_daily", "model.yoda.analytics___loyalty__merchant_metrics_daily", "model.yoda.analytics___loyalty__merchant_monthly_element_activation", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly", "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly", "model.yoda.analytics___loyalty__organization_metrics_monthly", "model.yoda.analytics___loyalty__plan_metrics_daily", "model.yoda.analytics___loyalty__plan_metrics_monthly", "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time", "model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___loyalty_stg__earning_rule", "model.yoda.analytics___loyalty_stg__earning_rule_activation_history", "model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.analytics___loyalty_stg__loyalty_plan", "model.yoda.analytics___loyalty_stg__loyalty_subscription", "model.yoda.analytics___loyalty_stg__merchant", "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time", "model.yoda.analytics___loyalty_stg__perk", "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings", "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "model.yoda.analytics___loyalty_stg__point_redemption", "model.yoda.analytics___loyalty_stg__processor", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.analytics___loyalty_stg__purchase_redemption", "model.yoda.analytics___loyalty_stg__redemption_code", "model.yoda.analytics___loyalty_stg__redemption_option", "model.yoda.analytics___loyalty_stg__segment_install_event_details", "model.yoda.analytics___loyalty_stg__segment_uninstall", "model.yoda.analytics___loyalty_stg__swell_referral_codes", "model.yoda.analytics___loyalty_stg__swell_referrals"], "exposure.yoda.analytics___marketing__24h": ["model.yoda.analytics___marketing__mql_opportunity_goal"], "exposure.yoda.analytics___new_revenue__24h": ["model.yoda.analytics___new_revenue__deal_product", "model.yoda.analytics___new_revenue__deal_product_scd", "model.yoda.analytics___new_revenue__operational_performance_daily"], "exposure.yoda.analytics___partners__24h": ["model.yoda.analytics___partners__manager_performance_monthly", "model.yoda.analytics___partners__partner_engagement_opportunity", "model.yoda.analytics___partners_stg__manager_goals"], "exposure.yoda.analytics___partners__at_01_30": ["model.yoda.analytics___partners_stg__partner_manager_goals"], "exposure.yoda.analytics___platform__24h": ["model.yoda.analytics___platform__opportunity_ht_ss_over_time", "model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__organization_country", "model.yoda.analytics___platform__organization_industry", "model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__organization_name", "model.yoda.analytics___platform__organization_opportunity_monthly", "model.yoda.analytics___platform__organization_platform", "model.yoda.analytics___platform__organization_product_activeness_monthly", "model.yoda.analytics___platform__organization_product_segment_daily", "model.yoda.analytics___platform__organization_product_segment_monthly", "model.yoda.analytics___platform__organization_segment_monthly", "model.yoda.analytics___platform__question_details", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_activeness_daily", "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "model.yoda.analytics___platform__store_metrics_daily", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___platform__store_platform_account", "model.yoda.analytics___platform__store_product_activeness_monthly", "model.yoda.analytics___platform__store_snapshot_daily"], "exposure.yoda.analytics___platform__At_00_30": ["model.yoda.analytics___platform_stg__owner_plan_snapshot"], "exposure.yoda.analytics___platform__order_24h": ["model.yoda.analytics___platform__order", "model.yoda.analytics___platform__order_metrics", "model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___platform_stg__fulfillment", "model.yoda.analytics___platform_stg__order_line", "model.yoda.analytics___platform_stg__store_order"], "exposure.yoda.analytics___platform__pixel_24h": ["model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two", "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two"], "exposure.yoda.analytics___platform__plan_24h": ["model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__owner_plan_event", "model.yoda.analytics___platform__plan", "model.yoda.analytics___platform__platform_store_plan_over_time", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform_stg__owner_plan", "model.yoda.analytics___platform_stg__owner_plan_event_details", "model.yoda.analytics___platform_stg__owner_plan_history", "model.yoda.analytics___platform_stg__plan", "model.yoda.analytics___platform_stg__plan_category", "model.yoda.analytics___platform_stg__plan_tag", "model.yoda.analytics___platform_stg__plan_tag_type"], "exposure.yoda.analytics___platform__product_metrics_24h": ["model.yoda.analytics___platform__organization_product_metrics_monthly", "model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot", "model.yoda.analytics___platform__product_metrics_snapshot_monthly", "model.yoda.analytics___platform__store_product_metrics_daily", "model.yoda.analytics___platform__store_product_metrics_daily_diff", "model.yoda.analytics___platform__store_product_metrics_daily_snapshot", "model.yoda.analytics___platform__store_product_metrics_lifetime", "model.yoda.analytics___platform__store_product_metrics_lifetime_scd", "model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot", "model.yoda.analytics___platform__store_product_metrics_monthly", "model.yoda.analytics___platform__store_product_metrics_monthly_unpivot"], "exposure.yoda.analytics___platform__schedule_once_models": ["model.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily", "model.yoda.analytics___platform_stg__deprecated_packages", "model.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27", "model.yoda.analytics___platform_stg__pixel_action_mapping", "model.yoda.analytics___platform_stg__pixel_category_mapping", "model.yoda.analytics___platform_stg__pixel_duration_mapping", "model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping", "model.yoda.analytics___platform_stg__product_plan_name_rank", "model.yoda.analytics___platform_stg__saas_organization_daily_history", "model.yoda.analytics___platform_stg__saas_store_plan_history", "model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping", "model.yoda.analytics___platform_stg__static_deprecated_package", "model.yoda.analytics___platform_stg__subscriptions_contract_history", "model.yoda.platform_stg__dim_calendar", "model.yoda.platform_stg__timezone_country_mapping"], "exposure.yoda.analytics___platform__segment_24h": ["model.yoda.analytics___platform_stg__segment_account_created", "model.yoda.analytics___platform_stg__segment_activation_step", "model.yoda.analytics___platform_stg__segment_app_install_completed", "model.yoda.analytics___platform_stg__segment_app_uninstalled", "model.yoda.analytics___platform_stg__segment_b_to_b", "model.yoda.analytics___platform_stg__segment_file_exported", "model.yoda.analytics___platform_stg__segment_limit_reached", "model.yoda.analytics___platform_stg__segment_onboarding", "model.yoda.analytics___platform_stg__segment_page_event", "model.yoda.analytics___platform_stg__segment_popup_displayed", "model.yoda.analytics___platform_stg__segment_product_enabled", "model.yoda.analytics___platform_stg__segment_uninstalled_yotpo"], "exposure.yoda.analytics___platform__staging_24h": ["model.yoda.analytics___platform_stg__account", "model.yoda.analytics___platform_stg__account_platform", "model.yoda.analytics___platform_stg__category", "model.yoda.analytics___platform_stg__currency_exchange_rate", "model.yoda.analytics___platform_stg__feature", "model.yoda.analytics___platform_stg__organization", "model.yoda.analytics___platform_stg__owner_feature", "model.yoda.analytics___platform_stg__owner_feature_setting", "model.yoda.analytics___platform_stg__phone_code_country_mapping", "model.yoda.analytics___platform_stg__platform_type", "model.yoda.analytics___platform_stg__product", "model.yoda.analytics___platform_stg__question", "model.yoda.analytics___platform_stg__questions", "model.yoda.analytics___platform_stg__similar_store", "model.yoda.analytics___platform_stg__similar_stores", "model.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping", "model.yoda.analytics___platform_stg__store_user_mapping", "model.yoda.analytics___platform_stg__user"], "exposure.yoda.analytics___salesforce__24h": ["model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_product", "model.yoda.analytics___salesforce__account_tracking_daily", "model.yoda.analytics___salesforce__campaign_member_field_history", "model.yoda.analytics___salesforce__deal_summary", "model.yoda.analytics___salesforce__deal_summary_product", "model.yoda.analytics___salesforce__lead", "model.yoda.analytics___salesforce__live_chat_transcript", "model.yoda.analytics___salesforce__mql", "model.yoda.analytics___salesforce__onboarding_project", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__opportunity_line_item", "model.yoda.analytics___salesforce__partner_engagement", "model.yoda.analytics___salesforce__service_case", "model.yoda.analytics___salesforce__task", "model.yoda.analytics___salesforce__user_overtime", "model.yoda.analytics___salesforce__user_role_scd", "model.yoda.analytics___salesforce_stg__custom_field_history", "model.yoda.analytics___salesforce_stg__dim_sf_users_scd", "model.yoda.analytics___salesforce_stg__fact_account_profile_daily", "model.yoda.analytics___salesforce_stg__mc_account", "model.yoda.analytics___salesforce_stg__mc_account_product", "model.yoda.analytics___salesforce_stg__mc_campaign", "model.yoda.analytics___salesforce_stg__mc_contact", "model.yoda.analytics___salesforce_stg__mc_conversion_rate", "model.yoda.analytics___salesforce_stg__mc_cs_lead", "model.yoda.analytics___salesforce_stg__mc_deal_summary", "model.yoda.analytics___salesforce_stg__mc_event", "model.yoda.analytics___salesforce_stg__mc_lead", "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript", "model.yoda.analytics___salesforce_stg__mc_mql", "model.yoda.analytics___salesforce_stg__mc_onboarding_project", "model.yoda.analytics___salesforce_stg__mc_opportunity", "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history", "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item", "model.yoda.analytics___salesforce_stg__mc_partner_referral", "model.yoda.analytics___salesforce_stg__mc_service_case", "model.yoda.analytics___salesforce_stg__mc_task", "model.yoda.analytics___salesforce_stg__mc_user", "model.yoda.analytics___salesforce_stg__opportunity_prediction"], "exposure.yoda.analytics___salesforce__at_01_30": ["model.yoda.analytics___salesforce_stg__account_full", "model.yoda.analytics___salesforce_stg__account_product_c_full", "model.yoda.analytics___salesforce_stg__campaign", "model.yoda.analytics___salesforce_stg__case_full", "model.yoda.analytics___salesforce_stg__contact", "model.yoda.analytics___salesforce_stg__cs_lead_c", "model.yoda.analytics___salesforce_stg__cs_lead_c_full", "model.yoda.analytics___salesforce_stg__custom_field_history_tracking_c", "model.yoda.analytics___salesforce_stg__datedconversionrate", "model.yoda.analytics___salesforce_stg__deal_summary_new_c", "model.yoda.analytics___salesforce_stg__deal_summary_new_c_full", "model.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping", "model.yoda.analytics___salesforce_stg__event", "model.yoda.analytics___salesforce_stg__lead", "model.yoda.analytics___salesforce_stg__livechattranscript_full", "model.yoda.analytics___salesforce_stg__mql_c", "model.yoda.analytics___salesforce_stg__mql_c_full", "model.yoda.analytics___salesforce_stg__onboarding_project_c_full", "model.yoda.analytics___salesforce_stg__opportunity", "model.yoda.analytics___salesforce_stg__opportunity_full", "model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full", "model.yoda.analytics___salesforce_stg__opportunityfieldhistory", "model.yoda.analytics___salesforce_stg__opportunitylineitem_full", "model.yoda.analytics___salesforce_stg__partner_referral_c_full", "model.yoda.analytics___salesforce_stg__task", "model.yoda.analytics___salesforce_stg__user", "model.yoda.analytics___salesforce_stg__user_full"], "exposure.yoda.analytics___salesforce__enrichment_24h": ["model.yoda.analytics___salesforce__account_enrichment", "model.yoda.analytics___salesforce__account_enrichment_daily_diff", "model.yoda.analytics___salesforce__account_enrichment_snapshot_daily", "model.yoda.analytics___salesforce__new_organization", "model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily", "model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly"], "exposure.yoda.analytics___sms__24h": ["model.yoda.analytics___sms__automation_message_dates", "model.yoda.analytics___sms__campaign_message_dates", "model.yoda.analytics___sms__deliverability_daily", "model.yoda.analytics___sms__flow_message_dates", "model.yoda.analytics___sms__free_credit_details", "model.yoda.analytics___sms__organization_metrics_monthly", "model.yoda.analytics___sms__purchase", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__store_activeness_daily", "model.yoda.analytics___sms__store_cohort", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms__store_metrics_monthly", "model.yoda.analytics___sms__store_plan_daily", "model.yoda.analytics___sms__store_plan_over_time", "model.yoda.analytics___sms__store_receiving_country_metrics", "model.yoda.analytics___sms__user_activeness_daily", "model.yoda.analytics___sms__user_customer", "model.yoda.analytics___sms__user_dates_history", "model.yoda.analytics___sms__user_installation_over_time", "model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___sms__user_open_over_time", "model.yoda.analytics___sms__user_plan_daily", "model.yoda.analytics___sms__user_plan_monthly", "model.yoda.analytics___sms__user_plan_over_time", "model.yoda.analytics___sms__user_pop_up_status", "model.yoda.analytics___sms__user_pop_up_status_over_time", "model.yoda.analytics___sms__user_pop_up_status_snapshot", "model.yoda.analytics___sms__user_store_dates_history"], "exposure.yoda.analytics___sms__staging_24h": ["model.yoda.analytics___sms_stg__analytics_data", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.analytics___sms_stg__bigcommerce_user", "model.yoda.analytics___sms_stg__campaign", "model.yoda.analytics___sms_stg__campaign_deletion_tracking", "model.yoda.analytics___sms_stg__campaign_list", "model.yoda.analytics___sms_stg__campaign_relation", "model.yoda.analytics___sms_stg__default_predefined_message", "model.yoda.analytics___sms_stg__email_charge", "model.yoda.analytics___sms_stg__event", "model.yoda.analytics___sms_stg__event_deletion_tracking", "model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily", "model.yoda.analytics___sms_stg__flow", "model.yoda.analytics___sms_stg__flow_deletion_tracking", "model.yoda.analytics___sms_stg__form", "model.yoda.analytics___sms_stg__free_credit_high_touch_bonus", "model.yoda.analytics___sms_stg__free_credit_log", "model.yoda.analytics___sms_stg__list", "model.yoda.analytics___sms_stg__loyalty_flow", "model.yoda.analytics___sms_stg__organization_identifier_conversion", "model.yoda.analytics___sms_stg__plan", "model.yoda.analytics___sms_stg__purchase", "model.yoda.analytics___sms_stg__segment_sms_campaign", "model.yoda.analytics___sms_stg__shopify_campaign_order", "model.yoda.analytics___sms_stg__shopify_customer", "model.yoda.analytics___sms_stg__shopify_flow_order", "model.yoda.analytics___sms_stg__shopify_orders", "model.yoda.analytics___sms_stg__shopify_segment", "model.yoda.analytics___sms_stg__shopify_user", "model.yoda.analytics___sms_stg__sms_user", "model.yoda.analytics___sms_stg__track_flow_adoption", "model.yoda.analytics___sms_stg__user_date_explode_from_creation", "model.yoda.analytics___sms_stg__user_event_log"], "exposure.yoda.analytics___subscriptions__24h": ["model.yoda.analytics___subscriptions__contract_over_time", "model.yoda.analytics___subscriptions__store", "model.yoda.analytics___subscriptions__store_activeness_daily", "model.yoda.analytics___subscriptions__store_feature_activation", "model.yoda.analytics___subscriptions__store_installation_over_time", "model.yoda.analytics___subscriptions__subscription_contract_daily", "model.yoda.analytics___subscriptions__subscription_contract_monthly", "model.yoda.analytics___subscriptions_stg__contract_event_details", "model.yoda.analytics___subscriptions_stg__contract_snapshot", "model.yoda.analytics___subscriptions_stg__customer_journey_event", "model.yoda.analytics___subscriptions_stg__mc_app_webhook", "model.yoda.analytics___subscriptions_stg__mc_product", "model.yoda.analytics___subscriptions_stg__mc_selling_plan", "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group", "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product", "model.yoda.analytics___subscriptions_stg__mc_status", "model.yoda.analytics___subscriptions_stg__mc_subscription_contract", "model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order", "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request", "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two", "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two", "model.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot", "model.yoda.analytics___subscriptions_stg__subscriptions_store"], "exposure.yoda.analytics___subscriptions__subscriptions_tables_to_snowflake": ["model.yoda.analytics___subscriptions_stg__subscription_ended_v2", "model.yoda.analytics___subscriptions_stg__subscription_started_v2"], "exposure.yoda.analytics___synergies__24h": ["model.yoda.analytics___synergies__activation_level_daily", "model.yoda.analytics___synergies__eligible_store_monthly", "model.yoda.analytics___synergies__kpi_ranked_action", "model.yoda.analytics___synergies__loyalty_store_metrics_monthly", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "model.yoda.analytics___synergies__organization_synergy_activeness_monthly", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "model.yoda.analytics___synergies__store_enablement_daily", "model.yoda.analytics___synergies__store_enablement_monthly", "model.yoda.analytics___synergies__store_enablement_over_time", "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily", "model.yoda.analytics___synergies__store_synergy_metrics_monthly", "model.yoda.analytics___synergies__synergy_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly", "model.yoda.analytics___synergies_stg__enablement_event", "model.yoda.analytics___synergies_stg__home_screen_section", "model.yoda.analytics___synergies_stg__home_screen_widget", "model.yoda.analytics___synergies_stg__home_screen_widget_configuration", "model.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness", "model.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness", "model.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness", "model.yoda.analytics___synergies_stg__synergy_widget"], "exposure.yoda.analytics___ugc__24h": ["model.yoda.analytics___ugc__active_metrics_monthly", "model.yoda.analytics___ugc__image", "model.yoda.analytics___ugc__order_to_review_rate_cohort", "model.yoda.analytics___ugc__organization_first_time_activity_metrics", "model.yoda.analytics___ugc__organization_metrics_monthly", "model.yoda.analytics___ugc__owner_first_time_activity_metrics", "model.yoda.analytics___ugc__owner_order_to_review_monthly", "model.yoda.analytics___ugc__platform_order_to_review_monthly", "model.yoda.analytics___ugc__postman_feature_email_usage_monthly", "model.yoda.analytics___ugc__review", "model.yoda.analytics___ugc__review_request", "model.yoda.analytics___ugc__review_request_token", "model.yoda.analytics___ugc__review_request_token_message", "model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort", "model.yoda.analytics___ugc__store_feature_over_time", "model.yoda.analytics___ugc__store_first_time_activity_metrics", "model.yoda.analytics___ugc__store_installation_over_time", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc__store_metrics_daily_24m", "model.yoda.analytics___ugc__store_metrics_monthly", "model.yoda.analytics___ugc__store_product_activeness_monthly", "model.yoda.analytics___ugc__store_widget_metrics_monthly", "model.yoda.analytics___ugc__unmigrated_review_request_token", "model.yoda.analytics___ugc__unmigrated_review_request_token_email", "model.yoda.analytics___ugc_stg__comment", "model.yoda.analytics___ugc_stg__dirty_words_content", "model.yoda.analytics___ugc_stg__email", "model.yoda.analytics___ugc_stg__emails", "model.yoda.analytics___ugc_stg__image", "model.yoda.analytics___ugc_stg__metadata_type", "model.yoda.analytics___ugc_stg__owner_feature_enablement_event", "model.yoda.analytics___ugc_stg__owner_feature_setting_change_event", "model.yoda.analytics___ugc_stg__reminder", "model.yoda.analytics___ugc_stg__review", "model.yoda.analytics___ugc_stg__review_image", "model.yoda.analytics___ugc_stg__review_metadata", "model.yoda.analytics___ugc_stg__review_request_email", "model.yoda.analytics___ugc_stg__review_request_sms", "model.yoda.analytics___ugc_stg__review_source_type", "model.yoda.analytics___ugc_stg__review_subject", "model.yoda.analytics___ugc_stg__review_type", "model.yoda.analytics___ugc_stg__review_video", "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"], "exposure.yoda.analytics___ugc__temp_reminder_snapshot": ["model.yoda.analytics___ugc_stg__reminder_snapshot"], "exposure.yoda.analytics___utils__weekly": ["model.yoda.analytics___utils_stg__calendar"], "exposure.yoda.communication__At_20_00_only_on_Sunday": ["model.yoda.communication_stg__active_users_flags", "model.yoda.communication_stg__apicalls", "model.yoda.communication_stg__automations_abandoned_checkout_active", "model.yoda.communication_stg__automations_count", "model.yoda.communication_stg__automations_customer_winback_active", "model.yoda.communication_stg__automations_welcome_active", "model.yoda.communication_stg__bigcommerce_users", "model.yoda.communication_stg__billing_events", "model.yoda.communication_stg__campaigns", "model.yoda.communication_stg__campaigns_sent_count", "model.yoda.communication_stg__campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__conversation_messages", "model.yoda.communication_stg__cs_forms_count", "model.yoda.communication_stg__cs_keywords_count", "model.yoda.communication_stg__cs_pages_count", "model.yoda.communication_stg__email_campaigns_count", "model.yoda.communication_stg__email_campaigns_sent_count", "model.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__email_esp_events", "model.yoda.communication_stg__email_intent_popup_first_accept_date", "model.yoda.communication_stg__email_intent_popup_first_decline_date", "model.yoda.communication_stg__email_intent_popup_status", "model.yoda.communication_stg__email_subscribers_count", "model.yoda.communication_stg__email_usage_avg_last_three_months", "model.yoda.communication_stg__events", "model.yoda.communication_stg__first_email_campaign_sent", "model.yoda.communication_stg__first_email_message_sent", "model.yoda.communication_stg__first_sms_campaign_sent", "model.yoda.communication_stg__first_sms_message_sent", "model.yoda.communication_stg__flows", "model.yoda.communication_stg__flows_abandoned_checkout_active", "model.yoda.communication_stg__flows_count", "model.yoda.communication_stg__flows_customer_winback_active", "model.yoda.communication_stg__flows_welcome_active", "model.yoda.communication_stg__forms", "model.yoda.communication_stg__integrations_count", "model.yoda.communication_stg__klaviyo_integration_enabled", "model.yoda.communication_stg__klaviyo_users", "model.yoda.communication_stg__last_email_campaign_sent", "model.yoda.communication_stg__last_email_message_sent", "model.yoda.communication_stg__last_sms_campaign_sent", "model.yoda.communication_stg__last_sms_message_sent", "model.yoda.communication_stg__list_keywords", "model.yoda.communication_stg__measurements_bigcommerce_users", "model.yoda.communication_stg__measurements_shopify_users", "model.yoda.communication_stg__measurements_users", "model.yoda.communication_stg__orders", "model.yoda.communication_stg__overall_emails_sent_from_campaigns", "model.yoda.communication_stg__packages", "model.yoda.communication_stg__phone_to_list", "model.yoda.communication_stg__phones", "model.yoda.communication_stg__phones_meta", "model.yoda.communication_stg__profiles", "model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__send_chat_message", "model.yoda.communication_stg__shopify_orders", "model.yoda.communication_stg__shopify_subscription_list_pages", "model.yoda.communication_stg__shopify_user_integrations", "model.yoda.communication_stg__shopify_users", "model.yoda.communication_stg__sms_campaigns_count", "model.yoda.communication_stg__sms_campaigns_sent_count", "model.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__sms_subscribers_count", "model.yoda.communication_stg__sms_usage_avg_last_three_months", "model.yoda.communication_stg__tmp_email_events", "model.yoda.communication_stg__total_orders_avg_last_thirty_days", "model.yoda.communication_stg__total_orders_avg_last_three_months", "model.yoda.communication_stg__total_revenue_all_channels_all_time", "model.yoda.communication_stg__total_revenue_all_channels_last_thirty_days", "model.yoda.communication_stg__total_revenue_all_channels_last_three_months", "model.yoda.communication_stg__total_revenue_email_last_thirty_days", "model.yoda.communication_stg__total_revenue_email_last_three_months", "model.yoda.communication_stg__total_revenue_sms_last_thirty_days", "model.yoda.communication_stg__total_revenue_sms_last_three_months", "model.yoda.communication_stg__total_subscribers_email_count", "model.yoda.communication_stg__total_subscribers_sms_count", "model.yoda.communication_stg__users_additional_flags"], "exposure.yoda.communication__analytics_daily_at_04_00": ["model.yoda.communication__email_shopify_orders_analytics_profile", "model.yoda.communication__sms_shopify_orders_analytics_profile", "model.yoda.communication_stg__email_shopify_orders_analytics", "model.yoda.communication_stg__shopify_analytics_orders", "model.yoda.communication_stg__sms_shopify_orders_analytics", "model.yoda.communication_stg__users"], "exposure.yoda.email__daily_total_email_campaigns": ["model.yoda.email__daily_total_email_campaigns"], "exposure.yoda.email__daily_total_emails_by_source_name": ["model.yoda.email__daily_delivered_emails_by_source_name"], "exposure.yoda.email__email_events_by_source_and_isp": ["model.yoda.email__email_events_per_source_id_and_isp"], "exposure.yoda.email__email_events_by_source_and_pool": ["model.yoda.email__email_events_per_source_id_and_ip_pool"], "exposure.yoda.email__email_events_by_source_pool_isp_eng": ["model.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level"], "exposure.yoda.email__email_failed_rejected_reasons": ["model.yoda.email__email_failed_rejected_reasons"], "exposure.yoda.email__daily_usage_scheduler": ["model.yoda.email__daily_delivered_emails_by_source_name", "model.yoda.email__daily_total_email_campaigns", "model.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level"], "exposure.yoda.email__delivery_base_model_scheduler": ["model.yoda.email_stg__authenticated_domain", "model.yoda.email_stg__delivered_email", "model.yoda.email_stg__source_engagement_level_dry_run", "model.yoda.email_stg__system_email_events"], "exposure.yoda.email__email_base_model_scheduling": ["model.yoda.email__email_campaign_click_to_redeem_kpi", "model.yoda.email__email_campaign_loyalty_kpi", "model.yoda.email__email_campaign_reviews_block_kpi", "model.yoda.email__email_campaign_reviews_stars_kpi", "model.yoda.email_stg__campaign_events", "model.yoda.email_stg__emails_with_campaign_and_templates", "model.yoda.email_stg__system_email_events_with_batch_id", "model.yoda.email_stg__template_instance_events"], "exposure.yoda.email__hourly_scheduler": ["model.yoda.email__email_events_per_source_id_and_ip_pool", "model.yoda.email__email_events_per_source_id_and_isp", "model.yoda.email__email_events_per_source_id_and_ref_id", "model.yoda.email__email_failed_rejected_reasons"], "exposure.yoda.infra__aws_cost_overview": ["model.yoda.infra__aws_cost_overview"], "exposure.yoda.infra__contract_estimations": ["model.yoda.infra__contracts_burn_estimations"], "exposure.yoda.infra__contract_info": ["model.yoda.infra__vendor_contracts"], "exposure.yoda.infra__contract_status": ["model.yoda.infra__contracts_burn_status"], "exposure.yoda.infra__cost_budget": ["model.yoda.infra__cost_budget"], "exposure.yoda.infra__cost_budget_history": ["model.yoda.infra_stg__team_budget"], "exposure.yoda.infra__databricks_costs": ["model.yoda.infra__databricks_costs"], "exposure.yoda.infra__ec2_cost": ["model.yoda.infra__ec2_cost"], "exposure.yoda.infra__elasticcache_cost": ["model.yoda.infra__elasticcache_cost"], "exposure.yoda.infra__elasticsearch_cost": ["model.yoda.infra__elasticsearch_cost"], "exposure.yoda.infra__github_workflow_runs": ["model.yoda.infra__git_actions_runs"], "exposure.yoda.infra__groups_and_teams": ["model.yoda.infra__groups_and_teams"], "exposure.yoda.infra__infra_metrics_model": ["model.yoda.infra__infra_metrics"], "exposure.yoda.infra__kubernetes_cost": ["model.yoda.infra__kubernetes_cost"], "exposure.yoda.infra__msk_cost": ["model.yoda.infra__msk_cost"], "exposure.yoda.infra__opensearch_cost": ["model.yoda.infra__opensearch_cost"], "exposure.yoda.infra__opsgenie_alerts": ["model.yoda.infra__opsgenie_alerts"], "exposure.yoda.infra__opsgenie_incidents": ["model.yoda.infra__opsgenie_incidents"], "exposure.yoda.infra__rds_cost": ["model.yoda.infra__rds_cost"], "exposure.yoda.infra__rivery_contract_statistics": ["model.yoda.infra__rivery_contract_statistics"], "exposure.yoda.infra__rivery_usage_model": ["model.yoda.infra__rivery_daily_usage"], "exposure.yoda.infra__s3_cost": ["model.yoda.infra__s3_cost"], "exposure.yoda.infra__s3_prefix_aggregations": ["model.yoda.infra__s3_prefix_aggregations"], "exposure.yoda.infra__s3_storage_data_summary": ["model.yoda.infra__s3_storage_data_summary"], "exposure.yoda.infra__snowflake_automatic_clustering_cost": ["model.yoda.infra__snowflake_automatic_clustering_cost"], "exposure.yoda.infra__snowflake_cost_summary": ["model.yoda.infra__snowflake_cost_summary"], "exposure.yoda.infra__snowflake_daily_cost": ["model.yoda.infra__snowflake_daily_cost"], "exposure.yoda.infra__snowflake_monthly_cost": ["model.yoda.infra__snowflake_monthly_cost"], "exposure.yoda.infra__snowflake_query_statistics": ["model.yoda.infra__snowflake_query_statistics"], "exposure.yoda.infra__snowflake_storage_cost": ["model.yoda.infra__snowflake_storage_cost"], "exposure.yoda.infra__snowflake_views_cost": ["model.yoda.infra__snowflake_views_cost"], "exposure.yoda.infra__snowflake_warehouse_cost": ["model.yoda.infra__snowflake_warehouse_cost"], "exposure.yoda.infra__snowflake_warehouse_statistics": ["model.yoda.infra__snowflake_warehouse_statistics"], "exposure.yoda.infra__spark_jobs": ["model.yoda.infra__spark_jobs"], "exposure.yoda.infra__sqs_cost": ["model.yoda.infra__sqs_cost"], "exposure.yoda.infra__sub_departments_monthly_budget_cur": ["model.yoda.infra__sub_departments_monthly_budget_cur"], "exposure.yoda.infra__sub_departments_monthly_budget_history": ["model.yoda.infra_stg__sub_departments_monthly_budget"], "exposure.yoda.infra__aws_cost": ["model.yoda.infra__aws_cost_overview", "model.yoda.infra__ec2_cost", "model.yoda.infra__ec2_cost_cold", "model.yoda.infra__ec2_cost_hot", "model.yoda.infra__elasticcache_cost", "model.yoda.infra__msk_cost", "model.yoda.infra__opensearch_cost", "model.yoda.infra__rds_cost", "model.yoda.infra__s3_cost", "model.yoda.infra__s3_cost_cold", "model.yoda.infra__s3_cost_hot", "model.yoda.infra__sqs_cost", "model.yoda.infra_stg__aws_billing_report_raw", "model.yoda.infra_stg__aws_payer_billing_report_raw", "model.yoda.infra_stg__aws_s3_cost", "model.yoda.infra_stg__ec2_cost"], "exposure.yoda.infra__aws_storage_cost": ["model.yoda.infra__s3_prefix_aggregations", "model.yoda.infra__s3_storage_data_summary", "model.yoda.infra_stg__aws_s3_inventory_data", "model.yoda.infra_stg__s3_inventory_raw"], "exposure.yoda.infra__budget": ["model.yoda.infra__contracts_burn_estimations", "model.yoda.infra__contracts_burn_status", "model.yoda.infra__cost_budget", "model.yoda.infra__groups_and_teams", "model.yoda.infra__sub_departments_monthly_budget_cur", "model.yoda.infra__vendor_contracts", "model.yoda.infra_stg__budget", "model.yoda.infra_stg__sub_departments_monthly_budget", "model.yoda.infra_stg__team_budget"], "exposure.yoda.infra__canary_scheduling": ["model.yoda.infra__canary_data_model", "model.yoda.infra__canary_segment_model_profile", "model.yoda.infra__canary_snowflake_model"], "exposure.yoda.infra__databricks_cost": ["model.yoda.infra__databricks_costs", "model.yoda.infra_stg__databricks_cost_raw", "model.yoda.infra_stg__kubecost_raw"], "exposure.yoda.infra__github_models_metrics": ["model.yoda.infra__git_actions_runs", "model.yoda.infra__infra_metrics", "model.yoda.infra_stg__infra_metrics", "model.yoda.infra_stg__repos", "model.yoda.infra_stg__upsolver_outputs", "model.yoda.infra_stg__workflow_runs", "model.yoda.infra_stg__workflows"], "exposure.yoda.infra__infra_uptime_metrics": ["model.yoda.infra__opsgenie_alerts", "model.yoda.infra__opsgenie_incidents", "model.yoda.infra_stg__alerts", "model.yoda.infra_stg__incidents", "model.yoda.infra_stg__services", "model.yoda.infra_stg__teams"], "exposure.yoda.infra__kuberneters_cost": ["model.yoda.infra__elasticsearch_cost", "model.yoda.infra__kubernetes_cost", "model.yoda.infra__kubernetes_cost_cold", "model.yoda.infra__kubernetes_cost_hot", "model.yoda.infra__spark_jobs", "model.yoda.infra_stg__kubecost_delta", "model.yoda.infra_stg__kubernetes_cost"], "exposure.yoda.infra__products": ["model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v3", "model.yoda.infra_stg__pixel_enrichment"], "exposure.yoda.infra__rivery_usage": ["model.yoda.infra__rivery_contract_statistics", "model.yoda.infra__rivery_daily_usage", "model.yoda.infra_stg__rivery_environments", "model.yoda.infra_stg__rivery_groups", "model.yoda.infra_stg__rivery_rivers_usage"], "exposure.yoda.infra__segment": ["model.yoda.infra_stg__group", "model.yoda.infra_stg__identify", "model.yoda.infra_stg__page", "model.yoda.infra_stg__page_track"], "exposure.yoda.infra__snowflake_cost": ["model.yoda.infra__snowflake_automatic_clustering_cost", "model.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_cost_summary", "model.yoda.infra__snowflake_daily_cost", "model.yoda.infra__snowflake_monthly_cost", "model.yoda.infra__snowflake_query_statistics", "model.yoda.infra__snowflake_storage_cost", "model.yoda.infra__snowflake_views_cost", "model.yoda.infra__snowflake_warehouse_cost", "model.yoda.infra__snowflake_warehouse_statistics", "model.yoda.infra_stg__snowflake_automatic_clustering_history", "model.yoda.infra_stg__snowflake_database_storage_usage_history", "model.yoda.infra_stg__snowflake_materialized_view_refresh_history", "model.yoda.infra_stg__snowflake_queries_statistics", "model.yoda.infra_stg__snowflake_tag_references", "model.yoda.infra_stg__snowflake_warehouse_events", "model.yoda.infra_stg__snowflake_warehouse_metering_history"], "exposure.yoda.infra__static_resources": ["model.yoda.infra__snowflake_contract_details"], "exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot": ["model.yoda.loyalty__dim_campaigns_daily_snapshot", "model.yoda.loyalty__dim_customer_birthdays_daily_snapshot", "model.yoda.loyalty__dim_customers_daily_snapshot", "model.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "model.yoda.loyalty__dim_merchants_daily_snapshot", "model.yoda.loyalty__dim_referral_codes_daily_snapshot", "model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot", "model.yoda.loyalty__dim_subscriptions_daily_snapshot", "model.yoda.loyalty__dim_vip_tiers_daily_snapshot", "model.yoda.loyalty__dim_vip_tiers_history_daily_snapshot", "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot", "model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot", "model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot", "model.yoda.loyalty__fact_perks_daily_snapshot", "model.yoda.loyalty__fact_purchase_items_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot", "model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot", "model.yoda.loyalty__fact_referral_perks_daily_snapshot", "model.yoda.loyalty__fact_referral_receipts_daily_snapshot", "model.yoda.loyalty__fact_referral_shares_daily_snapshot", "model.yoda.loyalty__fact_referral_snapshots_daily_snapshot", "model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot", "model.yoda.loyalty__fact_refund_items_daily_snapshot", "model.yoda.loyalty__fact_refunds_daily_snapshot", "model.yoda.loyalty__fact_user_actions_daily_snapshot", "model.yoda.loyalty__fact_user_agents_daily_snapshot", "model.yoda.loyalty_stg__all_redemption_to_purchase", "model.yoda.loyalty_stg__enriched_customers"], "exposure.yoda.loyalty__chainperks": ["model.yoda.loyalty_stg__campaign_activation_histories", "model.yoda.loyalty_stg__campaigns", "model.yoda.loyalty_stg__currency_rates", "model.yoda.loyalty_stg__customer_birthdays", "model.yoda.loyalty_stg__customers", "model.yoda.loyalty_stg__customers_opt_in", "model.yoda.loyalty_stg__customers_platform_accounts", "model.yoda.loyalty_stg__customers_vip_tiers", "model.yoda.loyalty_stg__customers_vip_tiers_history", "model.yoda.loyalty_stg__email_campaign_emails", "model.yoda.loyalty_stg__email_campaigns", "model.yoda.loyalty_stg__group_customers", "model.yoda.loyalty_stg__install_loyalty", "model.yoda.loyalty_stg__known_crawlers", "model.yoda.loyalty_stg__merchants", "model.yoda.loyalty_stg__perks", "model.yoda.loyalty_stg__perks_user_actions", "model.yoda.loyalty_stg__plans", "model.yoda.loyalty_stg__point_redemptions", "model.yoda.loyalty_stg__processors", "model.yoda.loyalty_stg__purchase_items", "model.yoda.loyalty_stg__purchases", "model.yoda.loyalty_stg__purchases_redemptions", "model.yoda.loyalty_stg__purchases_with_currency", "model.yoda.loyalty_stg__redemption_codes", "model.yoda.loyalty_stg__redemption_options", "model.yoda.loyalty_stg__referral_codes", "model.yoda.loyalty_stg__referral_discount_codes", "model.yoda.loyalty_stg__referral_receipts", "model.yoda.loyalty_stg__referral_shares", "model.yoda.loyalty_stg__referral_snapshots", "model.yoda.loyalty_stg__referrals", "model.yoda.loyalty_stg__refund_items", "model.yoda.loyalty_stg__refunds", "model.yoda.loyalty_stg__subscriptions", "model.yoda.loyalty_stg__swell_vip_tiers_settings", "model.yoda.loyalty_stg__uninstall_loyalty", "model.yoda.loyalty_stg__user_actions", "model.yoda.loyalty_stg__user_agents", "model.yoda.loyalty_stg__vip_tiers", "model.yoda.loyalty_stg__vip_tiers_settings", "model.yoda.loyalty_stg__vip_tiers_thresholds", "model.yoda.loyalty_stg__yotpo_platform_accounts"], "exposure.yoda.loyalty__chainperks_to_snowflake": ["model.yoda.loyalty__snowflake_email_campaigns", "model.yoda.loyalty__snowflake_plans", "model.yoda.loyalty__snowflake_referrals", "model.yoda.loyalty__snowflake_subscriptions"], "exposure.yoda.loyalty__daily_snapshots_to_snowflake": ["model.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot", "model.yoda.loyalty__snowflake_customers_daily_snapshot", "model.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot", "model.yoda.loyalty__snowflake_dates_for_investment_metric_daily_snapshot", "model.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot", "model.yoda.loyalty__snowflake_merchants_daily_snapshot", "model.yoda.loyalty__snowflake_perks_daily_snapshot", "model.yoda.loyalty__snowflake_purchase_items_daily_snapshot", "model.yoda.loyalty__snowflake_purchases_daily_snapshot", "model.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot", "model.yoda.loyalty__snowflake_redemptions_daily_snapshot", "model.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot", "model.yoda.loyalty__snowflake_referral_codes_daily_snapshot", "model.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot", "model.yoda.loyalty__snowflake_referral_perks_daily_snapshot", "model.yoda.loyalty__snowflake_referral_receipts_daily_snapshot", "model.yoda.loyalty__snowflake_referral_shares_daily_snapshot", "model.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot", "model.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot", "model.yoda.loyalty__snowflake_refund_items_daily_snapshot", "model.yoda.loyalty__snowflake_refunds_daily_snapshot", "model.yoda.loyalty__snowflake_subscriptions_daily_snapshot", "model.yoda.loyalty__snowflake_user_actions_daily_snapshot", "model.yoda.loyalty__snowflake_user_agents_daily_snapshot", "model.yoda.loyalty__snowflake_vip_tiers_daily_snapshot", "model.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot", "model.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot"], "exposure.yoda.loyalty__pixel_events": ["model.yoda.loyalty__pixel_events", "model.yoda.loyalty__snowflake_pixel_events", "model.yoda.loyalty_stg__domain_useradmin_to_customer_id", "model.yoda.loyalty_stg__normalized_pixel_events", "model.yoda.loyalty_stg__onsite_v3"], "exposure.yoda.loyalty__points": ["model.yoda.loyalty__customer_group_date_history", "model.yoda.loyalty__customer_point_transaction_metrics_daily", "model.yoda.loyalty__merchant_point_transaction_metrics_daily", "model.yoda.loyalty_stg__config_item", "model.yoda.loyalty_stg__container_balance_usage", "model.yoda.loyalty_stg__point_transaction", "model.yoda.loyalty_stg__points_container_expiration", "model.yoda.loyalty_stg__points_state", "model.yoda.loyalty_stg__points_transaction"], "exposure.yoda.loyalty__retention_metric_redeemed_purchases": ["model.yoda.loyalty__redeemed_purchases"], "exposure.yoda.loyalty__synergies_kpi": ["model.yoda.loyalty__opted_in_customers", "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option", "model.yoda.loyalty__redemptions", "model.yoda.loyalty__review_earning_rule_loyalty", "model.yoda.loyalty__sms_earning_rule_loyalty", "model.yoda.loyalty__tier_expiring_reminder_kpi"], "exposure.yoda.loyalty__widgetsrepository_to_snowflake": ["model.yoda.loyalty__widgetrepodb_customizations_to_snowflake", "model.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake", "model.yoda.loyalty__widgetrepodb_instances_to_snowflake", "model.yoda.loyalty__widgetrepodb_static_contents_to_snowflake", "model.yoda.loyalty__widgetrepodb_templates_to_snowflake", "model.yoda.loyalty__widgetrepodb_widget_types_to_snowflake", "model.yoda.loyalty_stg__customizations", "model.yoda.loyalty_stg__instance_versions", "model.yoda.loyalty_stg__instances", "model.yoda.loyalty_stg__static_contents", "model.yoda.loyalty_stg__templates", "model.yoda.loyalty_stg__widget_types"], "exposure.yoda.north_bound__At_21_30_only_on_Sunday": ["model.yoda.north_bound__segment_profile"], "exposure.yoda.platform__integrations_adoption_per_application_profile": ["model.yoda.platform__integrations_adoption_per_application"], "exposure.yoda.platform__integrations_adoption_per_store_profile": ["model.yoda.platform__integrations_adoption_per_store"], "exposure.yoda.platform__integrations_adoption_profile": ["model.yoda.platform__integrations_adoption"], "exposure.yoda.platform__singas_cdp_streaming_aggregated_events": ["model.yoda.platform__cdp_streaming_aggregated_events"], "exposure.yoda.platform__At_00_30": ["model.yoda.platform__sms_store_verification", "model.yoda.platform__sms_store_verification_to_snowflake", "model.yoda.platform_stg__account_created", "model.yoda.platform_stg__activation_step", "model.yoda.platform_stg__app_install_completed", "model.yoda.platform_stg__app_uninstalled", "model.yoda.platform_stg__b2b", "model.yoda.platform_stg__currency_rates", "model.yoda.platform_stg__file_exported", "model.yoda.platform_stg__fulfillments", "model.yoda.platform_stg__limit_reached", "model.yoda.platform_stg__onboarding", "model.yoda.platform_stg__onsite_v2", "model.yoda.platform_stg__onsite_v3", "model.yoda.platform_stg__popup_displayed", "model.yoda.platform_stg__product_enabled", "model.yoda.platform_stg__synergy_start_date_mapping", "model.yoda.platform_stg__uninstalled_yotpo"], "exposure.yoda.platform__At_16_00": ["model.yoda.platform__dim_stores", "model.yoda.platform__owners_packages_organization_view", "model.yoda.platform__owners_packages_store_view", "model.yoda.platform_stg__account_platforms", "model.yoda.platform_stg__apps", "model.yoda.platform_stg__billing_audits", "model.yoda.platform_stg__categories", "model.yoda.platform_stg__organizations", "model.yoda.platform_stg__owners_package_audits", "model.yoda.platform_stg__owners_packages", "model.yoda.platform_stg__owners_packages_history", "model.yoda.platform_stg__package_feature_settings", "model.yoda.platform_stg__package_features", "model.yoda.platform_stg__package_provider_settings", "model.yoda.platform_stg__package_tag_types", "model.yoda.platform_stg__package_tags", "model.yoda.platform_stg__package_usages_settings", "model.yoda.platform_stg__packages", "model.yoda.platform_stg__plan_settings", "model.yoda.platform_stg__platform_package_features", "model.yoda.platform_stg__platform_types", "model.yoda.platform_stg__provider_types", "model.yoda.platform_stg__store_platforms", "model.yoda.platform_stg__stores", "model.yoda.platform_stg__stores_enrichment", "model.yoda.platform_stg__subscription_cycle_usages", "model.yoda.platform_stg__subscription_pending_usages", "model.yoda.platform_stg__subscription_providers", "model.yoda.platform_stg__subscription_statuses", "model.yoda.platform_stg__subscription_usages_settings", "model.yoda.platform_stg__usages", "model.yoda.platform_stg__usages_history", "model.yoda.platform_stg__usages_tiers_settings"], "exposure.yoda.platform__At_17_00": ["model.yoda.platform_stg__all_accounts", "model.yoda.platform_stg__all_apps"], "exposure.yoda.platform__Orbits": ["model.yoda.platform__integrations_adoption", "model.yoda.platform__integrations_adoption_per_application", "model.yoda.platform__integrations_adoption_per_store", "model.yoda.platform_stg__ic_store_applications", "model.yoda.platform_stg__integrations_names", "model.yoda.platform_stg__store_applications"], "exposure.yoda.platform__cdp_streaming_aggregated_events": ["model.yoda.platform__cdp_streaming_aggregated_events", "model.yoda.platform_stg__cdp_streaming_events"], "exposure.yoda.platform__corgis": ["model.yoda.platform_stg__attribute_sets", "model.yoda.platform_stg__custom_attributes", "model.yoda.platform_stg__gtins", "model.yoda.platform_stg__order_lines", "model.yoda.platform_stg__orders"], "exposure.yoda.platform__customer_dataset": ["model.yoda.platform__customer_dimensions_metrics", "model.yoda.platform__customer_dimensions_metrics_analytics", "model.yoda.platform__customer_dimensions_metrics_to_snowflake", "model.yoda.platform_stg__customer_dataset", "model.yoda.platform_stg__customer_dimensions_brand_affection", "model.yoda.platform_stg__customer_dimensions_business_metrics", "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material", "model.yoda.platform_stg__customer_dimensions_loyalty_program", "model.yoda.platform_stg__customer_dimensions_returning_buyers"], "exposure.yoda.platform__customer_dimensions_metrics": ["model.yoda.platform__customer_dimensions_metrics_inc", "model.yoda.platform__customer_dimensions_metrics_inc_to_snowflake", "model.yoda.platform_stg__customer_dataset_reduced", "model.yoda.platform_stg__customer_dimensions_brand_affection_inc", "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc", "model.yoda.platform_stg__customer_dimensions_loyalty_program_inc", "model.yoda.platform_stg__customer_dimensions_returning_buyers_inc"], "exposure.yoda.platform__email_digest_schedule": ["model.yoda.platform__digest_email_track", "model.yoda.platform_stg__digest", "model.yoda.platform_stg__digest_accounts", "model.yoda.platform_stg__merchant_platform_id", "model.yoda.platform_stg__users_organizations"], "exposure.yoda.platform__koalas_intermediate_owned_models": ["model.yoda.platform_stg__accounts", "model.yoda.platform_stg__features", "model.yoda.platform_stg__groups", "model.yoda.platform_stg__owner_feature_settings", "model.yoda.platform_stg__owners_features", "model.yoda.platform_stg__products", "model.yoda.platform_stg__variants"], "exposure.yoda.platform__retention_metrics": ["model.yoda.platform__orders_with_product_lines_attribution", "model.yoda.platform__orders_with_product_lines_attribution_daily", "model.yoda.platform__orders_with_product_lines_attribution_daily_to_snowflake", "model.yoda.platform__orders_with_product_lines_attribution_to_snowflake", "model.yoda.platform__retention_metrics_average_order_value", "model.yoda.platform__retention_metrics_average_order_value_to_snowflake", "model.yoda.platform__retention_metrics_bar_chart_total_sales", "model.yoda.platform__retention_metrics_bar_chart_total_sales_to_snowflake", "model.yoda.platform__retention_metrics_customer_segment_ratio", "model.yoda.platform__retention_metrics_customer_segment_ratio_to_snowflake", "model.yoda.platform__retention_metrics_orders", "model.yoda.platform__retention_metrics_orders_to_snowflake", "model.yoda.platform__retention_metrics_returning_customers", "model.yoda.platform__retention_metrics_returning_customers_to_snowflake", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake", "model.yoda.platform__retention_metrics_total_sales_and_customers", "model.yoda.platform__retention_metrics_total_sales_and_customers_to_snowflake", "model.yoda.platform__retention_metrics_trends_average_order_value", "model.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake", "model.yoda.platform__retention_metrics_trends_average_sales_per_customer", "model.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake", "model.yoda.platform_stg__email_shopify_orders_to_shop_currency", "model.yoda.platform_stg__merchant_shop_currency", "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month", "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_mock_orders", "model.yoda.platform_stg__retention_metrics_orders", "model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_segmented_customers", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_trends_orders", "model.yoda.platform_stg__sms_shopify_orders_to_shop_currency"], "exposure.yoda.platform__synergies_at_00_30": ["model.yoda.platform__synergies_kpi", "model.yoda.platform_stg__sections", "model.yoda.platform_stg__synergies_crud", "model.yoda.platform_stg__synergy_product_mapping", "model.yoda.platform_stg__widget_configurations", "model.yoda.platform_stg__widgets"], "exposure.yoda.sms__revenue_model": ["model.yoda.sms__daily_revenue"], "exposure.yoda.sms__24h": ["model.yoda.sms_stg__apicalls", "model.yoda.sms_stg__bigcommerce_users", "model.yoda.sms_stg__campaign_lists", "model.yoda.sms_stg__campaigns", "model.yoda.sms_stg__comm_analytics_data", "model.yoda.sms_stg__customers", "model.yoda.sms_stg__email_charges", "model.yoda.sms_stg__email_to_sms_campaigns", "model.yoda.sms_stg__events", "model.yoda.sms_stg__flows", "model.yoda.sms_stg__forms", "model.yoda.sms_stg__free_credits_logs", "model.yoda.sms_stg__lists", "model.yoda.sms_stg__loyalty_flows_data", "model.yoda.sms_stg__orders", "model.yoda.sms_stg__packages", "model.yoda.sms_stg__purchases", "model.yoda.sms_stg__shopify_analytics_orders", "model.yoda.sms_stg__shopify_campaign_discount_codes", "model.yoda.sms_stg__shopify_segments", "model.yoda.sms_stg__shopify_users", "model.yoda.sms_stg__sms_campaign_created", "model.yoda.sms_stg__sms_loyalty_redemptions", "model.yoda.sms_stg__track_flows_adoption", "model.yoda.sms_stg__users", "model.yoda.sms_stg__users_events_log", "model.yoda.sms_stg__yotpo_organizations"], "exposure.yoda.sms__asen_dag": ["model.yoda.sms__multipass_login_kpi"], "exposure.yoda.sms__revenue": ["model.yoda.sms__daily_revenue"], "exposure.yoda.sms__sms_additional_kpi_models": ["model.yoda.sms__api_calls_with_customer", "model.yoda.sms__snowflake_sms_flows_reviews", "model.yoda.sms_stg__sms_email_campaign_discount_codes", "model.yoda.sms_stg__sms_flows_reviews"], "exposure.yoda.sms__sms_kpi": ["model.yoda.sms__loyalty_sms_campaigns_email_kpi", "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "model.yoda.sms__loyalty_sms_flows_email_kpi", "model.yoda.sms__loyalty_sms_flows_sms_kpi", "model.yoda.sms__reviews_sms_flows_email_kpi", "model.yoda.sms__reviews_sms_flows_sms_kpi", "model.yoda.sms__sms_double_points_campaign_kpi", "model.yoda.sms__social_proof_flows_email_kpi", "model.yoda.sms__social_proof_flows_sms_kpi", "model.yoda.sms_stg__campaign_relations", "model.yoda.sms_stg__customers_addresses", "model.yoda.sms_stg__default_predefined_messages", "model.yoda.sms_stg__email_sms_campaign_orders", "model.yoda.sms_stg__shopify_campaign_orders", "model.yoda.sms_stg__shopify_flows_orders", "model.yoda.sms_stg__sms_loyalty_campaigns", "model.yoda.sms_stg__sms_loyalty_campaigns_kpi", "model.yoda.sms_stg__sms_loyalty_custom_campaigns", "model.yoda.sms_stg__sms_loyalty_flows_kpi", "model.yoda.sms_stg__sms_reviews_flows_kpi", "model.yoda.sms_stg__social_proof_flows_kpi", "model.yoda.sms_stg__yotpo_status_updates"], "exposure.yoda.sms__subscriptions_kpi": ["model.yoda.sms__flows_links_clicks", "model.yoda.sms_stg__flow_link_clicks", "model.yoda.sms_stg__flow_links", "model.yoda.sms_stg__link_clicks", "model.yoda.sms_stg__one_click_campaigns_subscriptions", "model.yoda.sms_stg__subscription_segmentation_campaigns", "model.yoda.sms_stg__subscription_sms_campaigns", "model.yoda.sms_stg__subscription_upsell_flow", "model.yoda.sms_stg__subscription_upsell_flow_orders", "model.yoda.sms_stg__subscription_upsell_flow_sms"], "exposure.yoda.subscriptions__store_customers_exports": ["model.yoda.subscriptions__store_customers_exports"], "exposure.yoda.subscriptions__csv_exports_to_table": ["model.yoda.subscriptions__store_customers_exports", "model.yoda.subscriptions_stg__store_customers_exports"], "exposure.yoda.subscriptions__customer_journey_events": ["model.yoda.subscriptions__customer_journey_event", "model.yoda.subscriptions_stg__customer_journey_event"], "exposure.yoda.subscriptions__retention_metrics_subscription_orders": ["model.yoda.subscriptions__subscriptions_attributed_orders"], "exposure.yoda.subscriptions__subscriptions_tables_to_snowflake": ["model.yoda.subscriptions__recurrent_event_rule", "model.yoda.subscriptions__snowflake_cancelation_intent_event", "model.yoda.subscriptions__snowflake_cancelation_reason_option", "model.yoda.subscriptions__snowflake_recurrent_event_rule", "model.yoda.subscriptions__snowflake_status", "model.yoda.subscriptions__snowflake_subscription_contract", "model.yoda.subscriptions__snowflake_subscription_contract_line_policy", "model.yoda.subscriptions__snowflake_subscription_contract_order", "model.yoda.subscriptions__snowflake_subscription_contract_order_lines", "model.yoda.subscriptions__snowflake_subscription_contract_status_changes", "model.yoda.subscriptions__snowflake_subscription_line_action", "model.yoda.subscriptions__snowflake_subscription_merchant_migration_date", "model.yoda.subscriptions__snowflake_subscription_total_orders", "model.yoda.subscriptions__snowflake_subscriptions_accounts", "model.yoda.subscriptions__status", "model.yoda.subscriptions__subscription_accounts", "model.yoda.subscriptions__subscription_contract", "model.yoda.subscriptions__subscription_contract_line", "model.yoda.subscriptions__subscription_contract_line_policy", "model.yoda.subscriptions__subscription_contract_order", "model.yoda.subscriptions__subscription_contract_order_lines", "model.yoda.subscriptions__subscription_contract_status_changes", "model.yoda.subscriptions__subscription_merchant_migration_date", "model.yoda.subscriptions__subscription_total_orders", "model.yoda.subscriptions_stg__app_webhooks", "model.yoda.subscriptions_stg__cancelation_intent_event", "model.yoda.subscriptions_stg__cancelation_reason_option", "model.yoda.subscriptions_stg__product", "model.yoda.subscriptions_stg__recurrent_event_rule", "model.yoda.subscriptions_stg__selling_plan", "model.yoda.subscriptions_stg__selling_plan_group", "model.yoda.subscriptions_stg__selling_plan_group_product", "model.yoda.subscriptions_stg__status", "model.yoda.subscriptions_stg__subscription_contract", "model.yoda.subscriptions_stg__subscription_contract_line", "model.yoda.subscriptions_stg__subscription_contract_order", "model.yoda.subscriptions_stg__subscription_creation_request", "model.yoda.subscriptions_stg__subscription_line_action"], "exposure.yoda.subscriptions__synergies_kpi": ["model.yoda.subscriptions__synergy_kpi_one_click_campaign", "model.yoda.subscriptions__synergy_kpi_redeemed_points", "model.yoda.subscriptions__synergy_kpi_sms_payment_failure", "model.yoda.subscriptions__synergy_kpi_sms_upsell", "model.yoda.subscriptions_stg__synergy_sms_payment_failure", "model.yoda.subscriptions_stg__synergy_subs_payment_failure"], "exposure.yoda.subscriptions__table_sync": ["model.yoda.subscriptions_stg__billing_attempt_response"], "exposure.yoda.support__24h": ["model.yoda.support__review_request"], "exposure.yoda.ugc__shopper_experience_aggregation": ["model.yoda.ugc__shopper_experience_order_aggregation", "model.yoda.ugc__shopper_experience_store_aggregation", "model.yoda.ugc__shopper_experience_widget_engagement_aggregation", "model.yoda.ugc__shopper_experience_widget_order_aggregation"], "exposure.yoda.ugc__daily": ["model.yoda.ugc_stg__anonymous_users", "model.yoda.ugc_stg__comments", "model.yoda.ugc_stg__dirty_words", "model.yoda.ugc_stg__email_authentications", "model.yoda.ugc_stg__email_types", "model.yoda.ugc_stg__metadata_types", "model.yoda.ugc_stg__reminders", "model.yoda.ugc_stg__retailer", "model.yoda.ugc_stg__review_metadatas", "model.yoda.ugc_stg__review_order_line", "model.yoda.ugc_stg__review_request_emails", "model.yoda.ugc_stg__review_request_sms", "model.yoda.ugc_stg__review_request_tokens", "model.yoda.ugc_stg__review_source_types", "model.yoda.ugc_stg__review_tags", "model.yoda.ugc_stg__review_types", "model.yoda.ugc_stg__reviews", "model.yoda.ugc_stg__reviews_subjects", "model.yoda.ugc_stg__shopify_shop_reviews_backfill", "model.yoda.ugc_stg__syndicated_accounts", "model.yoda.ugc_stg__tags_to_reviews", "model.yoda.ugc_stg__users", "model.yoda.ugc_stg__users_email_controls"], "exposure.yoda.ugc__export_reviews_daily": ["model.yoda.ugc__export_reviews"], "exposure.yoda.ugc__parial_reviewed_orders_daily": ["model.yoda.ugc__partial_reviewed_orders"], "exposure.yoda.ugc__reporting_reviews_daily": ["model.yoda.ugc__reporting_crf", "model.yoda.ugc__reporting_reviews", "model.yoda.ugc_stg__images", "model.yoda.ugc_stg__moderation_audits", "model.yoda.ugc_stg__mongo_gallery_media", "model.yoda.ugc_stg__relevant_reporting_reviews_accounts", "model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.ugc_stg__review_contents", "model.yoda.ugc_stg__review_form_field_types", "model.yoda.ugc_stg__review_form_fields", "model.yoda.ugc_stg__reviews_incentivized", "model.yoda.ugc_stg__shares", "model.yoda.ugc_stg__videos", "model.yoda.ugc_stg__votes"], "exposure.yoda.ugc__shopper_experience_pixel_aggregation": ["model.yoda.ugc__shopper_experience_order_aggregation", "model.yoda.ugc__shopper_experience_store_aggregation", "model.yoda.ugc__shopper_experience_widget_engagement_aggregation", "model.yoda.ugc__shopper_experience_widget_order_aggregation"]}, "child_map": {"model.yoda.analytics___cs__account_acv_metrics_daily": ["exposure.yoda.analytics___cs__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__account_acv_metrics_daily_1.1575f6ea7b", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__account_acv_metrics_daily_date__account_id.27d3d3f140", "test.yoda.not_null_analytics___cs__account_acv_metrics_daily_account_id.b03e4a2cc0", "test.yoda.not_null_analytics___cs__account_acv_metrics_daily_date.4418194b48"], "model.yoda.analytics___cs__onboarding_project": ["exposure.yoda.analytics___cs__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__onboarding_project_1.54ace170ff", "test.yoda.not_null_analytics___cs__onboarding_project_onboarding_project_id.7df9c17a97", "test.yoda.unique_analytics___cs__onboarding_project_onboarding_project_id.3f0437a01a"], "model.yoda.analytics___cs__opportunity_main_product_change": ["exposure.yoda.analytics___cs__24h", "model.yoda.analytics___cs__opportunity_product", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_main_product_change_1.19583c415e", "test.yoda.not_null_analytics___cs__opportunity_main_product_change_opportunity_id.bf245743a5", "test.yoda.unique_analytics___cs__opportunity_main_product_change_opportunity_id.6109ea8548"], "model.yoda.analytics___cs__opportunity_product": ["exposure.yoda.analytics___cs__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_product_1.e4c0f3565c", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_product_opportunity_id__product_line.f783737ef2"], "model.yoda.analytics___cs__opportunity_won_product_start_date": ["exposure.yoda.analytics___cs__24h", "model.yoda.analytics___cs__opportunity_won_sale_daily", "model.yoda.analytics___cs__organization_first_ht_opportunity", "model.yoda.analytics___platform__organization_product_segment_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_product_start_date_1.6a0464d835", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_product_start_date_opportunity_id__product_family_group__line_item_start_date__line_item_end_date.ec93d15186", "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_line_item_end_date.82eb1f0b82", "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_line_item_start_date.f470b927df", "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_opportunity_id.c634459685", "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_product_family_group.917fdcaa6e"], "model.yoda.analytics___cs__opportunity_won_sale_daily": ["exposure.yoda.analytics___cs__24h", "model.yoda.analytics___cs__account_acv_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_sale_daily_1.bb22e97a98", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_sale_daily_date__opportunity_id__contract_start_date__end_date.7ed338abc0", "test.yoda.not_null_analytics___cs__opportunity_won_sale_daily_date.1f35b11114", "test.yoda.not_null_analytics___cs__opportunity_won_sale_daily_opportunity_id.b408beca9e"], "model.yoda.analytics___cs__organization_first_ht_opportunity": ["exposure.yoda.analytics___cs__24h", "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "model.yoda.analytics___platform__organization_segment_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__organization_first_ht_opportunity_1.c8c84488ad", "test.yoda.not_null_analytics___cs__organization_first_ht_opportunity_organization_key.a242d85366", "test.yoda.unique_analytics___cs__organization_first_ht_opportunity_organization_key.5b1b9bcc4f"], "model.yoda.analytics___delivery__organization_customer_care_over_time": ["exposure.yoda.analytics___delivery__24h", "model.yoda.analytics___platform__organization_product_segment_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___delivery__organization_customer_care_over_time_1.4b2077c8c8", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___delivery__organization_customer_care_over_time_organization_key__product_family_group__from_date__to_date.6e756fa959"], "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__organization_product_usage_revenue_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_organization_product_usage_revenue_monthly_1.ef44731c0c", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__communication_organization_product_usage_revenue_monthly_month__organization_key__product_family.bf6ff694be", "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_month.3c1dc7be62", "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_organization_key.b821d88829", "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_product_family.e4cb8e7b2f"], "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_store_product_usage_revenue_monthly_1.5c5f0e646d", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__communication_store_product_usage_revenue_monthly_month__app_key__product_family.0717d818de", "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_app_key.16e9ab87df", "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_month.026d89a0b3", "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_product_family.ad87a063ce", "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_sms_user_id.b62a4c7ec3"], "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard": ["exposure.yoda.analytics___finance__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_mom_mrr_cycle_dashboard_1.5aa4cbdaf5", "test.yoda.not_null_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id.3955d66371", "test.yoda.unique_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id.a8a37c5afd"], "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__organization_product_revenue_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_recurring_revenue_monthly_1.477f2143f7", "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_month.a5c93714fe", "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_key.089d95d683", "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id.364e05bcfb", "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_product_family_group.7c090fccf2", "test.yoda.unique_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id.a36c1e86d3"], "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___cs__opportunity_won_product_start_date", "model.yoda.analytics___delivery__organization_customer_care_over_time", "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_metrics_monthly_1.2f90d7ab3e", "test.yoda.not_null_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id.0b36519ed9", "test.yoda.unique_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id.7db5b6e5c0"], "model.yoda.analytics___finance__organization_product_revenue_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___finance__organization_product_revenue_metrics_monthly", "model.yoda.analytics___finance__organization_product_revenue_monthly_lean", "model.yoda.analytics___finance__organization_revenue_monthly", "model.yoda.analytics___platform__organization_product_segment_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_1.72354ad49e", "test.yoda.not_null_analytics___finance__organization_product_revenue_monthly_organization_product_month_id.47fb0d3e4e", "test.yoda.unique_analytics___finance__organization_product_revenue_monthly_organization_product_month_id.0799950b53"], "model.yoda.analytics___finance__organization_product_revenue_monthly_lean": ["exposure.yoda.analytics___finance__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_lean_1.71eab128e6", "test.yoda.not_null_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id.bff94348d9", "test.yoda.unique_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id.42b9dc9bbc"], "model.yoda.analytics___finance__organization_product_usage_revenue_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__organization_product_revenue_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_usage_revenue_monthly_1.2ab4f244bd", "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_key.1017b28eef", "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id.a45878ce5f", "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_product_family.e052e97e91", "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_revenue_month.8e0a1f5400", "test.yoda.unique_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id.aede364eeb"], "model.yoda.analytics___finance__organization_revenue_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___platform__organization_segment_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_revenue_monthly_1.02e1d386c2", "test.yoda.not_null_analytics___finance__organization_revenue_monthly_month.b3e06b2960", "test.yoda.not_null_analytics___finance__organization_revenue_monthly_organization_key.711b3b75ec", "test.yoda.not_null_analytics___finance__organization_revenue_monthly_organization_month_id.25dd95a770", "test.yoda.unique_analytics___finance__organization_revenue_monthly_organization_month_id.abf005df45"], "model.yoda.analytics___finance__rate_plan_mrr_details": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_subscription_mrr_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__rate_plan_mrr_details_1.799c41c71e", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__rate_plan_mrr_details_subscription_name__version__product_id__rateplan_id__effective_start_date.5b4f9162c2", "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_account_id.e257d1cdf9", "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_mrr_in_usd.bc18c7651c", "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_product_id.ac6a2d9bbd", "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_product_rateplan_id.500d089fdf", "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_rateplan_id.57f6621ea3", "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_subscription_id.d7506102fa", "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_termed_to_date.2bd8b5b772"], "model.yoda.analytics___finance__sf_opportunity_free_month_over_time": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_subscription_mrr_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__sf_opportunity_free_month_over_time_1.801fada325", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id__field_name__from_date.9f53a5d6dd", "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_field_name.9a5d537a78", "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_field_value.97fa59eab2", "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_from_date.5e660ce021", "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_from_month.bfa7f02d98", "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_csm_free_months.2d375c8372", "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sales_free_months.c364397548", "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sf_event.f107b697c7", "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id.89c326b2fe", "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_to_date.529ba21ca1", "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_to_month.f3cd50d029"], "model.yoda.analytics___finance__shopify_billing_event": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time", "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time", "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge", "model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_event_1.14c9c11acc", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_event_shopify_shop_id__charge_id__event_type__product_family__created_at.14a07667e5", "test.yoda.not_null_analytics___finance__shopify_billing_event_charge_id.c4b26f57e1", "test.yoda.not_null_analytics___finance__shopify_billing_event_is_multiple_app_key.4bc8faa3c9", "test.yoda.not_null_analytics___finance__shopify_billing_event_is_none_app_key.4cdf1fa1bc", "test.yoda.not_null_analytics___finance__shopify_billing_event_is_single_app_key.e76ac6b65b", "test.yoda.not_null_analytics___finance__shopify_billing_event_shopify_shop_id.355bde23f8"], "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily": ["exposure.yoda.analytics___finance__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_daily_1.9437b53b81", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date__product_family__organization_key.4c317f1b28", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date.80a4a112b5", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_organization_key.0b8560a10d", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_product_family.cfe1a729d6"], "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_monthly_1.760695542b", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month__product_family__organization_key.c7d76a868e", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month.ab0f4e4b9f", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_key.22b48d6062", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id.7580b2f8c9", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_product_family.68bec4958a", "test.yoda.unique_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id.bf3b8cb805"], "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily": ["exposure.yoda.analytics___finance__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_1.982337dfc4", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key__date__product_family.aa222c42f3", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_date.e65bccf920", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key.5058e9a060", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_product_family.f578430442", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_revenue_in_usd.fceedf0ceb"], "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__organization_product_usage_revenue_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_1.55d563e882", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key__month__product_family.63a60622bd", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_month.f84eced8d0", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key.583fc74b41", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_product_family.4b9d031a1e", "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_revenue_in_usd.8d031b5afd"], "model.yoda.analytics___finance__shopify_billing_store_mapping": ["exposure.yoda.analytics___finance__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_mapping_1.fda37bd0a7", "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_app_key.e46adc341d", "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_organization_key.924d08a96d", "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_shopify_shop_id.d92072b862", "test.yoda.unique_analytics___finance__shopify_billing_store_mapping_app_key.5a1ab13472", "test.yoda.unique_analytics___finance__shopify_billing_store_mapping_shopify_shop_id.7e95308156"], "model.yoda.analytics___finance__shopify_billing_store_product_deactivated_over_time": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_deactivated_over_time_1.0851439894", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id__product_family__deactivated_at.cab4546bb9", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_at.cdf62f89f6", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_date.793b14fe6a", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_product_family.98753fc505", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id.a4dd5ea379"], "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_daily", "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_daily_1.05fd7f6636", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date__product_family__shopify_shop_id.3b8d5e706f", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date.65c7ac4438", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_product_family.a5a4e09a24", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_shopify_shop_id.e09fcdf7df"], "model.yoda.analytics___finance__shopify_billing_store_product_mrr_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__shopify_billing_organization_product_mrr_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_monthly_1.fc96fb0eb4", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month__product_family__shopify_shop_id.3fe2ba6d7a", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month.212843bfa9", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_product_family.87c5fce17f", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_shopify_shop_id.28e7252926"], "model.yoda.analytics___finance__shopify_billing_store_product_uninstalled_over_time": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_uninstalled_over_time_1.0bc44b77a9", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id__product_family__uninstalled_at.6872d194cb", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_product_family.a2b27d0007", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id.9fc3c5bab0", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_at.6c4680e529", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_date.a853981d04"], "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_daily", "model.yoda.analytics___finance__shopify_billing_organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily", "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_charge_1.5e505ed523", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id__charge_id.424f41cfad", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_charge_id.e81293333a", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_date.6c3494a44d", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_product_family.a620b88ace", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_revenue_in_usd.9a1ec3e7a9", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id.80e688b65f"], "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_daily": ["exposure.yoda.analytics___finance__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_daily_1.6e178a42f2", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id__date__product_family.00b1e023a3", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_date.6f5c8dfb76", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_product_family.37d7c0675b", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_revenue_in_usd.5473d6c6a4", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id.150d8c5558"], "model.yoda.analytics___finance__shopify_billing_store_product_usage_revenue_monthly": ["exposure.yoda.analytics___finance__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_1.ede3eb3b2d", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id__month__product_family.ef6166cce5", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_month.6c21979a25", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_product_family.5839116aa9", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_revenue_in_usd.fd40f220be", "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id.d35b15b24b"], "model.yoda.analytics___finance__shopify_billing_subscription_mrr_over_time": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_subscription_mrr_over_time_1.8d6adb1920", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_subscription_mrr_over_time_shopify_shop_id__charge_id__event_category__event_action__product_family__from_time.cb5d27880a"], "model.yoda.analytics___finance__shopify_store_mapping": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__shopify_billing_event", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_store_mapping_1.2b664f5779", "test.yoda.not_null_analytics___finance__shopify_store_mapping_is_multiple_app_key.eab434a117", "test.yoda.not_null_analytics___finance__shopify_store_mapping_is_single_app_key.d65d95efba", "test.yoda.not_null_analytics___finance__shopify_store_mapping_shopify_shop_id.bd2ce1037f", "test.yoda.unique_analytics___finance__shopify_store_mapping_shopify_shop_id.69a26f816b"], "model.yoda.analytics___finance__zuora_account": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__rate_plan_mrr_details", "model.yoda.analytics___finance__zuora_invoice", "model.yoda.analytics___finance__zuora_organization_product_usage_charge", "model.yoda.analytics___finance__zuora_parent_organization", "model.yoda.analytics___platform__organization_country", "model.yoda.analytics___platform__store_metrics_daily", "model.yoda.analytics___platform__store_plan_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_account_1.d6a6bfb851"], "model.yoda.analytics___finance__zuora_invoice": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_invoice_item", "model.yoda.analytics___finance__zuora_organization_product_usage_charge", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_1.77faa035ea", "test.yoda.not_null_analytics___finance__zuora_invoice_invoice_id.7d3f682520", "test.yoda.not_null_analytics___finance__zuora_invoice_invoice_number.e5c0b4eb1e", "test.yoda.unique_analytics___finance__zuora_invoice_invoice_id.4a2d31e824", "test.yoda.unique_analytics___finance__zuora_invoice_invoice_number.749c6fd322"], "model.yoda.analytics___finance__zuora_invoice_item": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_organization_product_usage_charge", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_item_1.3dda76729d", "test.yoda.not_null_analytics___finance__zuora_invoice_item_invoice_item_id.9f5069fe37", "test.yoda.unique_analytics___finance__zuora_invoice_item_invoice_item_id.bab2a249bc"], "model.yoda.analytics___finance__zuora_order_mrr_details": ["exposure.yoda.analytics___finance__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_order_mrr_details_1.19db9b2900", "test.yoda.not_null_analytics___finance__zuora_order_mrr_details_order_mrr_id.8d58fc0e52", "test.yoda.unique_analytics___finance__zuora_order_mrr_details_order_mrr_id.d19fb7789d"], "model.yoda.analytics___finance__zuora_organization_plan_rank_daily": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___platform__store_plan_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_plan_rank_daily_1.84ed5d3e4a", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_plan_rank_daily_date__organization_key__product_family__is_core_plan__plan_rank.c1756e927e"], "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__organization_product_recurring_revenue_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_group_mrr_monthly_1.cc6934cfca", "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_month.5774e450d3", "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_key.0056de1a3b", "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id.4cbb818989", "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_group.42833e7703", "test.yoda.unique_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id.66f9a5e39a"], "model.yoda.analytics___finance__zuora_organization_product_mrr_daily": ["exposure.yoda.analytics___finance__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_daily_1.95defc894a", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_daily_date__organization_key__product_family.6e113a0400", "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_date.dd206d41fe", "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_effective_mrr_in_usd.d974e9d937", "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_is_annual_billing.6f279f4e03", "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_is_self_service.6b7df5683c", "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_main_plan_name.63bd73d114", "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_organization_key.df2381b395", "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_original_mrr_in_usd.d32e6c745d", "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_product_family.26c4e497ab"], "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_organization_product_group_mrr_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_monthly_1.bf82b2f0cb", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_monthly_month__organization_key__product_family.717427adc4", "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_month.8cc17141cb", "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_organization_key.850681ba82", "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_product_family.a5f0067ddf"], "model.yoda.analytics___finance__zuora_organization_product_usage_charge": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily", "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_charge_1.8c1d714744", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_charge_invoice_number__product_family.1ed5e6a046", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_charge_amount_in_usd.095a7296e2", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_date.6d42e97561", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_invoice_number.8835a3cc46", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_organization_key.7caa0f4783", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_product_family.affec2c1f0"], "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_daily": ["exposure.yoda.analytics___finance__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_daily_1.d1fa023f1c", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_daily_date__organization_key__product_family.8102f75a64", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_charge_amount_in_usd.bc2675dae2", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_date.4fbdfebfdd", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_organization_key.f81812a892", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_product_family.72785aeb22"], "model.yoda.analytics___finance__zuora_organization_product_usage_revenue_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__organization_product_usage_revenue_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_monthly_1.44bcf8b756", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_monthly_month__organization_key__product_family.d3fa852547", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_charge_amount_in_usd.c10db1799f", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_month.d4aa6a6008", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_organization_key.331127cc07", "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_product_family.4ec26fbdeb"], "model.yoda.analytics___finance__zuora_parent_organization": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___platform__organization", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_parent_organization_1.1a67048426", "test.yoda.not_null_analytics___finance__zuora_parent_organization_organization_key.c453b0d5f7", "test.yoda.unique_analytics___finance__zuora_parent_organization_organization_key.3f1e389552"], "model.yoda.analytics___finance__zuora_product": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__rate_plan_mrr_details", "model.yoda.analytics___finance__zuora_organization_product_usage_charge", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_product_1.87c20e8458"], "model.yoda.analytics___finance__zuora_rateplan_charge": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__rate_plan_mrr_details", "model.yoda.analytics___finance__zuora_organization_product_usage_charge", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_rateplan_charge_1.b4c5b9b6f7", "test.yoda.not_null_analytics___finance__zuora_rateplan_charge_rateplan_charge_id.59142df7a4", "test.yoda.unique_analytics___finance__zuora_rateplan_charge_rateplan_charge_id.79f2e88568"], "model.yoda.analytics___finance__zuora_subscription": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__rate_plan_mrr_details", "model.yoda.analytics___finance__sf_opportunity_free_month_over_time", "model.yoda.analytics___finance__zuora_organization_product_usage_charge", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_1.86ae8c4469"], "model.yoda.analytics___finance__zuora_subscription_mrr_daily": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_organization_product_mrr_daily", "model.yoda.analytics___finance__zuora_subscription_mrr_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_daily_1.1bc0ae99c9", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_daily_date__subscription_id__product_id.b30b14e644", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_csm_free_month_mrr_impact.596f52759a", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_date.0a9a5a82a8", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_effective_mrr.639f26f005", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_free_month_mrr_impact.59303b1b08", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_is_main_plan_self_service.eb41f40585", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_main_plan_name.682c024eec", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_product_id.94153512f8", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_sales_free_month_mrr_impact.dc17f47db9", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_subscription_id.f00d617682"], "model.yoda.analytics___finance__zuora_subscription_mrr_monthly": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_organization_product_mrr_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_monthly_1.5a085110c7", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_monthly_month__subscription_id__product_id.e0f4250103", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_month.71fe49dc9b", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_product_id.2048dae403", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_subscription_id.f2bbc77ad1"], "model.yoda.analytics___finance__zuora_subscription_mrr_over_time": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_organization_plan_rank_daily", "model.yoda.analytics___finance__zuora_subscription_mrr_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_over_time_1.9fa4a4390b", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_over_time_subscription_name__product_id__from_date__to_date.0ac5274855", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_account_id.02b85d3d19", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_from_date.8720ccc234", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_is_annual_billing.b413810428", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_is_self_service.f6cadb6bc4", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_organization_key.5b1c15d584", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_plan_name.720ed4a12d", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_product_family.d81c469f76", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_subscription_name.7cbbdea5ad", "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_to_date.004ad41083"], "model.yoda.analytics___finance_stg__account": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_account"], "model.yoda.analytics___finance_stg__contact": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_contact"], "model.yoda.analytics___finance_stg__invoice": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_invoice"], "model.yoda.analytics___finance_stg__invoiceitem": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_invoice_item"], "model.yoda.analytics___finance_stg__order": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_order", "test.yoda.not_null_analytics___finance_stg__order_deleted.661ba0afad"], "model.yoda.analytics___finance_stg__orderaction": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_order_action"], "model.yoda.analytics___finance_stg__ordermrr": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_order_mrr"], "model.yoda.analytics___finance_stg__product": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_product"], "model.yoda.analytics___finance_stg__productrateplan": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_product_rateplan"], "model.yoda.analytics___finance_stg__productrateplancharge": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge"], "model.yoda.analytics___finance_stg__rateplan": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_rateplan"], "model.yoda.analytics___finance_stg__rateplancharge": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_rateplan_charge"], "model.yoda.analytics___finance_stg__rateplanchargetier": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier"], "model.yoda.analytics___finance_stg__shopify_billing_events": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__shopify_billing_event"], "model.yoda.analytics___finance_stg__subscription": ["exposure.yoda.analytics___finance__at_01_30", "model.yoda.analytics___finance_stg__zuora_subscription"], "model.yoda.analytics___finance_stg__shopify_billing_event": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__shopify_billing_event", "test.yoda.accepted_values_analytics___finance_stg__shopify_billing_event_event_category__USAGE_CHARGE__SUBSCRIPTION_CHARGE__ONE_TIME_CHARGE__RELATIONSHIP__CREDIT.6158d995df", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__shopify_billing_event_1.0498648224", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance_stg__shopify_billing_event_shop_id__charge_id__event_type__product_family__created_at.8b8cd3e1ec", "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_charge_id.f5d526b8d9", "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_event_category.89f1dfa8ec", "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_shop_id.20f441d8b1"], "model.yoda.analytics___finance_stg__zuora_account": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_account", "test.yoda.accepted_values_analytics___finance_stg__zuora_account_account_status__Active__Canceled.1aa0c6e016", "test.yoda.not_null_analytics___finance_stg__zuora_account_account_id.b8514ccbca", "test.yoda.not_null_analytics___finance_stg__zuora_account_payment_terms.b99de5f937", "test.yoda.not_null_analytics___finance_stg__zuora_account_yotpo_legal_entity.e323f6effe", "test.yoda.unique_analytics___finance_stg__zuora_account_account_id.74086a400e"], "model.yoda.analytics___finance_stg__zuora_contact": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___platform__organization_country", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_contact_1.b4fd878d84", "test.yoda.not_null_analytics___finance_stg__zuora_contact_contact_id.fa6c7bf40a", "test.yoda.unique_analytics___finance_stg__zuora_contact_contact_id.ad234de390"], "model.yoda.analytics___finance_stg__zuora_invoice": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_invoice", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_1.48f72abb55", "test.yoda.not_null_analytics___finance_stg__zuora_invoice_invoice_id.fa486ec045", "test.yoda.not_null_analytics___finance_stg__zuora_invoice_invoice_number.d0b22978c8", "test.yoda.unique_analytics___finance_stg__zuora_invoice_invoice_id.af69e576b7", "test.yoda.unique_analytics___finance_stg__zuora_invoice_invoice_number.a8d4d18316"], "model.yoda.analytics___finance_stg__zuora_invoice_item": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_invoice_item", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_item_1.0aa25db95d", "test.yoda.not_null_analytics___finance_stg__zuora_invoice_item_invoice_item_id.efddab42e8", "test.yoda.unique_analytics___finance_stg__zuora_invoice_item_invoice_item_id.4bb1dce193"], "model.yoda.analytics___finance_stg__zuora_order": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_order_mrr_details", "test.yoda.not_null_analytics___finance_stg__zuora_order_order_id.21f0f9efb1", "test.yoda.unique_analytics___finance_stg__zuora_order_order_id.d60a00781c"], "model.yoda.analytics___finance_stg__zuora_order_action": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_order_mrr_details", "test.yoda.not_null_analytics___finance_stg__zuora_order_action_order_action_id.5eade19f0b", "test.yoda.unique_analytics___finance_stg__zuora_order_action_order_action_id.95c330a09f"], "model.yoda.analytics___finance_stg__zuora_order_mrr": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_order_mrr_details", "test.yoda.not_null_analytics___finance_stg__zuora_order_mrr_order_mrr_id.da423c9870", "test.yoda.unique_analytics___finance_stg__zuora_order_mrr_order_mrr_id.e6f1cb1b9d"], "model.yoda.analytics___finance_stg__zuora_product": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_product", "test.yoda.not_null_analytics___finance_stg__zuora_product_product_id.b512767e93", "test.yoda.unique_analytics___finance_stg__zuora_product_product_id.9ede4941cc"], "model.yoda.analytics___finance_stg__zuora_product_rateplan": ["exposure.yoda.analytics___finance__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_1.e053e3685d", "test.yoda.not_null_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id.de6faab685", "test.yoda.unique_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id.e0702601de"], "model.yoda.analytics___finance_stg__zuora_product_rateplan_charge": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__rate_plan_mrr_details", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_charge_1.9166ad1b55", "test.yoda.not_null_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id.fa146f268c", "test.yoda.unique_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id.e3c779bfac"], "model.yoda.analytics___finance_stg__zuora_rateplan": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__rate_plan_mrr_details", "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_rateplan_id.4fafd2bd68", "test.yoda.unique_analytics___finance_stg__zuora_rateplan_rateplan_id.90cc0ea3f6"], "model.yoda.analytics___finance_stg__zuora_rateplan_charge": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_rateplan_charge", "test.yoda.accepted_values_analytics___finance_stg__zuora_rateplan_charge_billing_period__Annual__Eighteen_Months__Month__Semi_Annual__Quarter__None.172bea7771", "test.yoda.accepted_values_analytics___finance_stg__zuora_rateplan_charge_charge_model__Overage_Pricing__Per_Unit_Pricing__Discount_Percentage__Flat_Fee_Pricing__Tiered_Pricing.2354526248", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_1.0807747d55", "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_charge_model.a0921edb56", "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id.b9e1778fcb", "test.yoda.unique_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id.c7aec7be38"], "model.yoda.analytics___finance_stg__zuora_rateplan_charge_tier": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__rate_plan_mrr_details", "model.yoda.analytics___finance__zuora_rateplan_charge", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_tier_1.d5bc2f0a76", "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id.0d1fcbfddb", "test.yoda.unique_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id.d19630351a"], "model.yoda.analytics___finance_stg__zuora_subscription": ["exposure.yoda.analytics___finance__24h", "model.yoda.analytics___finance__zuora_subscription", "test.yoda.not_null_analytics___finance_stg__zuora_subscription_subscription_id.9ae0f2c105", "test.yoda.unique_analytics___finance_stg__zuora_subscription_subscription_id.8f02b21c73"], "model.yoda.analytics___gtm__acv_goal_daily": ["exposure.yoda.analytics___gtm__24h", "model.yoda.analytics___new_revenue__operational_performance_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__acv_goal_daily_1.654d6fffed", "test.yoda.not_null_analytics___gtm__acv_goal_daily_goal_id.e78dc00b51", "test.yoda.unique_analytics___gtm__acv_goal_daily_goal_id.9410b2f154"], "model.yoda.analytics___gtm__crossell_opportunity_attribution": ["exposure.yoda.analytics___gtm__24h", "model.yoda.analytics___gtm__opportunity_attribution", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__crossell_opportunity_attribution_1.183d178d52", "test.yoda.not_null_analytics___gtm__crossell_opportunity_attribution_opportunity_id.c168a5b81a", "test.yoda.unique_analytics___gtm__crossell_opportunity_attribution_opportunity_id.40fe8a331a"], "model.yoda.analytics___gtm__new_sale_opportunity_attribution": ["exposure.yoda.analytics___gtm__24h", "model.yoda.analytics___gtm__opportunity_attribution", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_1.5bc8f0b388", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_opportunity_id__action_name__action_time.7c1ffde6a7", "test.yoda.not_null_analytics___gtm__new_sale_opportunity_attribution_opportunity_id.01ced5985e"], "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action": ["exposure.yoda.analytics___gtm__24h", "model.yoda.analytics___gtm__new_sale_opportunity_attribution", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_action_1.79f8329006", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id__action_name__action_time.7faae1e6b4", "test.yoda.not_null_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id.db68dc0718"], "model.yoda.analytics___gtm__opportunity_attribution": ["exposure.yoda.analytics___gtm__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_attribution_1.d339eb76c5", "test.yoda.not_null_analytics___gtm__opportunity_attribution_opportunity_id.a6aeee0f9e", "test.yoda.unique_analytics___gtm__opportunity_attribution_opportunity_id.cacc74925a"], "model.yoda.analytics___gtm__opportunity_goal": ["exposure.yoda.analytics___gtm__24h", "model.yoda.analytics___gtm__opporunity_dg_funnel", "model.yoda.analytics___marketing__mql_opportunity_goal", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_goal_1.81e56d3c53", "test.yoda.not_null_analytics___gtm__opportunity_goal_opportunity_goal_id.899650c727", "test.yoda.unique_analytics___gtm__opportunity_goal_opportunity_goal_id.b115ad6ef5"], "model.yoda.analytics___gtm__opporunity_dg_funnel": ["exposure.yoda.analytics___gtm__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opporunity_dg_funnel_1.0bbb908a88", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__opporunity_dg_funnel_opportunity_id__first_stage_id__product_family_group__attribution_channel.9360208eb9"], "model.yoda.analytics___gtm__sal_goal_daily": ["exposure.yoda.analytics___gtm__24h", "model.yoda.analytics___new_revenue__operational_performance_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__sal_goal_daily_1.e70cc10029", "test.yoda.not_null_analytics___gtm__sal_goal_daily_goal_id.5b28f870f4", "test.yoda.unique_analytics___gtm__sal_goal_daily_goal_id.b949913273"], "model.yoda.analytics___gtm_stg__stg_nerd_acv_goals": ["exposure.yoda.analytics___gtm__at_01_30", "model.yoda.analytics___gtm_stg__acv_goal", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_acv_goals_1.50f5dd15f1"], "model.yoda.analytics___gtm_stg__stg_nerd_sal_goals": ["exposure.yoda.analytics___gtm__at_01_30", "model.yoda.analytics___gtm_stg__sal_goal", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_sal_goals_1.8f2d9dda30"], "model.yoda.analytics___gtm_stg__acv_goal": ["exposure.yoda.analytics___gtm__24h", "model.yoda.analytics___gtm__acv_goal_daily", "model.yoda.analytics___gtm__opportunity_goal", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__acv_goal_1.64623d27e6", "test.yoda.not_null_analytics___gtm_stg__acv_goal_acv_goal_id.87b0998597", "test.yoda.unique_analytics___gtm_stg__acv_goal_acv_goal_id.6915bc2185"], "model.yoda.analytics___gtm_stg__sal_goal": ["exposure.yoda.analytics___gtm__24h", "model.yoda.analytics___gtm__opportunity_goal", "model.yoda.analytics___gtm__sal_goal_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__sal_goal_1.aef318a37a", "test.yoda.not_null_analytics___gtm_stg__sal_goal_sal_goal_id.14ecb5ebf6", "test.yoda.unique_analytics___gtm_stg__sal_goal_sal_goal_id.d38ebcece5"], "model.yoda.analytics___loyalty__daily_merchant": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_metrics_daily", "model.yoda.analytics___loyalty__merchant_monthly_element_activation", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__daily_merchant_merchant_id__date.a9d88b814a"], "model.yoda.analytics___loyalty__earning_rule_activation_daily": ["exposure.yoda.analytics___loyalty__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__earning_rule_activation_daily_1.84ddeefdea", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__earning_rule_activation_daily_earning_rule_id__date.95c46309c3", "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_date.eed0931582", "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_earning_rule_id.99ec561ad9", "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_is_active.b98e9fc3ea"], "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats": ["exposure.yoda.analytics___loyalty__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_customers_vip_tiers_stats_1.b1984b1fea"], "model.yoda.analytics___loyalty__ht_ss_retention_cohort": ["test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_ss_retention_cohort_1.dd0693fc71", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__ht_ss_retention_cohort_merchant_id__month__closing_plan_name_in_month.964b284f0a"], "model.yoda.analytics___loyalty__merchant": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__daily_merchant", "model.yoda.analytics___loyalty__earning_rule_activation_daily", "model.yoda.analytics___loyalty__merchant_activeness_daily", "model.yoda.analytics___loyalty__merchant_monthly_element_activation", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly", "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly", "model.yoda.analytics___loyalty__organization_metrics_monthly", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___synergies__loyalty_store_metrics_monthly", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "model.yoda.platform__dim_stores", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_1.5cc4bc28dc", "test.yoda.not_null_analytics___loyalty__merchant_app_key.f4a09494c5", "test.yoda.not_null_analytics___loyalty__merchant_merchant_id.5dc0ecbed1", "test.yoda.unique_analytics___loyalty__merchant_app_key.13e19a4d5a", "test.yoda.unique_analytics___loyalty__merchant_merchant_id.6aca172b89"], "model.yoda.analytics___loyalty__merchant_activeness_daily": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_metrics_daily", "model.yoda.analytics___loyalty__merchant_plan_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_activeness_daily_1.b6d3fd218c", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_activeness_daily_date__merchant_id__app_key.e6677194db", "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_app_key.f97a434059", "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_date.031752251c", "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_merchant_id.32921abf4a"], "model.yoda.analytics___loyalty__merchant_metrics_daily": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_plan_daily", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_metrics_daily_merchant_id__date.ad08299fa2"], "model.yoda.analytics___loyalty__merchant_monthly_element_activation": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_monthly_element_activation_1.6ae24b632d", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_monthly_element_activation_merchant_id__month__redemption_source.9b23889c3d", "test.yoda.not_null_analytics___loyalty__merchant_monthly_element_activation_merchant_id.05167d806a", "test.yoda.not_null_analytics___loyalty__merchant_monthly_element_activation_month.a9a9a39eef"], "model.yoda.analytics___loyalty__merchant_plan_daily": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__ht_ss_retention_cohort", "model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly", "model.yoda.analytics___loyalty__plan_metrics_daily", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform__store_product_metrics_daily", "model.yoda.analytics___platform__store_product_metrics_lifetime", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_daily_1.6645c73023", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_daily_merchant_id__date.910e095295", "test.yoda.not_null_analytics___loyalty__merchant_plan_daily_date.176dbdaa87", "test.yoda.not_null_analytics___loyalty__merchant_plan_daily_merchant_id.4689cfe27e"], "model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly": ["exposure.yoda.analytics___loyalty__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_1.f21d5798b2", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id__month__closing_plan_name_in_month.b4d278a957", "test.yoda.not_null_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id.0ddab5de7a"], "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly", "model.yoda.analytics___platform__store_product_metrics_lifetime", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_metrics_cohort_1.0cd56bd5e4", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id__plan_name.32ba8dcd0e", "test.yoda.not_null_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id.0de7bae5e7", "test.yoda.not_null_analytics___loyalty__merchant_plan_metrics_cohort_plan_name.80a712c76b"], "model.yoda.analytics___loyalty__merchant_plan_monthly": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats", "model.yoda.analytics___loyalty__ht_ss_retention_cohort", "model.yoda.analytics___loyalty__merchant_monthly_element_activation", "model.yoda.analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly", "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly", "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly", "model.yoda.analytics___loyalty__plan_metrics_monthly", "model.yoda.analytics___platform__store_product_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_monthly_1.febd544ad4", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_monthly_merchant_id__month.384704e014", "test.yoda.not_null_analytics___loyalty__merchant_plan_monthly_merchant_id.d4a95f2f42", "test.yoda.not_null_analytics___loyalty__merchant_plan_monthly_month.405e74f036"], "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly": ["exposure.yoda.analytics___loyalty__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_retention_cohort_monthly_1.8e614976e5", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name__month__merchant_id.a6b68aa897", "test.yoda.not_null_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name.1f55d9d268"], "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___platform__store_product_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_value_cohort_monthly_1.a9b253fd71", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id__month__plan_name.8c163c6b8d", "test.yoda.not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id.33677a28c7", "test.yoda.not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_plan_name.afbdee353c"], "model.yoda.analytics___loyalty__organization_metrics_monthly": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___platform__organization_product_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__organization_metrics_monthly_1.288dc7faac", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__organization_metrics_monthly_organization_key__month.8c4d999668", "test.yoda.not_null_analytics___loyalty__organization_metrics_monthly_month.0e1b1f6483", "test.yoda.not_null_analytics___loyalty__organization_metrics_monthly_organization_key.810a30761f"], "model.yoda.analytics___loyalty__plan_metrics_daily": ["exposure.yoda.analytics___loyalty__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_daily_1.13a87e3ad1", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_daily_date__did_upgrade_first_day__plan_name__plan_prior_to_change__changes__platform__first_plan_ever__is_ht_ss.7aa15dd6bd", "test.yoda.not_null_analytics___loyalty__plan_metrics_daily_date.65fd4e6c00", "test.yoda.not_null_analytics___loyalty__plan_metrics_daily_plan_name.0be963a660"], "model.yoda.analytics___loyalty__plan_metrics_monthly": ["exposure.yoda.analytics___loyalty__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_monthly_1.3b0ceb962e", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_monthly_month__did_upgrade_first_day_in_month__closing_plan_name_in_month__opening_plan_name_in_month__closing_plan_id_in_month__opening_plan_id_in_month__plan_changes__platform__is_ht_ss.88aa8d2f4b", "test.yoda.not_null_analytics___loyalty__plan_metrics_monthly_month.b6e5e44a1f", "test.yoda.not_null_analytics___loyalty__plan_metrics_monthly_opening_plan_id_in_month.23d6d6c34e"], "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_monthly_element_activation", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__point_expiration_policy_settings_over_time_1.102e032ee9", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__point_expiration_policy_settings_over_time_merchant_id__from_date.6873ddf781"], "model.yoda.analytics___loyalty__redemption_details": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_monthly_element_activation", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__redemption_details_1.e5d3b536f8", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__redemption_details_redemption_option_id__point_redemption_id.3abfe4b96b", "test.yoda.not_null_analytics___loyalty__redemption_details_point_redemption_id.e14549b0e0", "test.yoda.not_null_analytics___loyalty__redemption_details_redemption_option_id.e2bb331bd3"], "model.yoda.analytics___loyalty_stg__earning_rule": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__earning_rule_activation_daily", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_1.fe738f9e2f"], "model.yoda.analytics___loyalty_stg__earning_rule_activation_history": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__earning_rule_activation_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_activation_history_1.547fa3e6f0", "test.yoda.not_null_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id.4a13d15529", "test.yoda.unique_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id.a213594f77"], "model.yoda.analytics___loyalty_stg__loyalty_account": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "test.yoda.not_null_analytics___loyalty_stg__loyalty_account_app_key.2017eceb76", "test.yoda.not_null_analytics___loyalty_stg__loyalty_account_merchant_id.bf429bd432", "test.yoda.unique_analytics___loyalty_stg__loyalty_account_app_key.6790b9b328", "test.yoda.unique_analytics___loyalty_stg__loyalty_account_merchant_id.4f7bd57481"], "model.yoda.analytics___loyalty_stg__loyalty_plan": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly", "test.yoda.not_null_analytics___loyalty_stg__loyalty_plan_plan_id.4557ee26db", "test.yoda.not_null_analytics___loyalty_stg__loyalty_plan_plan_name.2a78efbd09", "test.yoda.unique_analytics___loyalty_stg__loyalty_plan_plan_id.d1f8c825e4", "test.yoda.unique_analytics___loyalty_stg__loyalty_plan_plan_name.33743011e6"], "model.yoda.analytics___loyalty_stg__loyalty_subscription": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_metrics_cohort", "model.yoda.analytics___loyalty__merchant_plan_retention_cohort_monthly", "test.yoda.not_null_analytics___loyalty_stg__loyalty_subscription_subscription_id.8bac1650ea", "test.yoda.unique_analytics___loyalty_stg__loyalty_subscription_subscription_id.39fea8d031"], "model.yoda.analytics___loyalty_stg__merchant": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time", "test.yoda.not_null_analytics___loyalty_stg__merchant_merchant_id.847c98c38a", "test.yoda.unique_analytics___loyalty_stg__merchant_merchant_id.ca6c6e422c"], "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_plan_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__merchant_segment_event_over_time_1.39c77c7047", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id__event_type__from_time.2920e6e030", "test.yoda.not_null_analytics___loyalty_stg__merchant_segment_event_over_time_event_type.bac00dd15b", "test.yoda.not_null_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id.d0e9261f3f"], "model.yoda.analytics___loyalty_stg__perk": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__earning_rule_activation_daily", "model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__perk_1.e6f19d425a", "test.yoda.not_null_analytics___loyalty_stg__perk_perk_id.b775b7c303", "test.yoda.unique_analytics___loyalty_stg__perk_perk_id.f463a4e555"], "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_1.a080f988c6", "test.yoda.not_null_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id.ab21c772b0", "test.yoda.unique_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id.d90f76110c"], "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings_snapshot": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__point_expiration_policy_settings_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_snapshot_1.ddff4a7995"], "model.yoda.analytics___loyalty_stg__point_redemption": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___synergies__loyalty_store_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_redemption_1.2614f85a39", "test.yoda.not_null_analytics___loyalty_stg__point_redemption_point_redemption_id.eda763cdab", "test.yoda.unique_analytics___loyalty_stg__point_redemption_point_redemption_id.bdf901ad55"], "model.yoda.analytics___loyalty_stg__processor": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__organization_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__processor_1.dd1d185365", "test.yoda.not_null_analytics___loyalty_stg__processor_id.06047cae7c", "test.yoda.unique_analytics___loyalty_stg__processor_id.2a5131e45e"], "model.yoda.analytics___loyalty_stg__purchase": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__organization_metrics_monthly", "model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_1.0fd220304c", "test.yoda.not_null_analytics___loyalty_stg__purchase_purchase_id.6a5041e1a8", "test.yoda.unique_analytics___loyalty_stg__purchase_purchase_id.a3f9c98703"], "model.yoda.analytics___loyalty_stg__purchase_redemption": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__redemption_details", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_redemption_1.68e2b4e211", "test.yoda.not_null_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id.1afcaefa0e", "test.yoda.unique_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id.85fb8827ce"], "model.yoda.analytics___loyalty_stg__redemption_code": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_code_1.327480d2f8", "test.yoda.not_null_analytics___loyalty_stg__redemption_code_redemption_code_id.784dc02c70", "test.yoda.unique_analytics___loyalty_stg__redemption_code_redemption_code_id.292d44be3e"], "model.yoda.analytics___loyalty_stg__redemption_option": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__redemption_details", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_option_1.20a44f86f9", "test.yoda.not_null_analytics___loyalty_stg__redemption_option_redemption_option_id.536a6add67", "test.yoda.unique_analytics___loyalty_stg__redemption_option_redemption_option_id.99fa9f3731"], "model.yoda.analytics___loyalty_stg__segment_install_event_details": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__segment_install_event_details_1.80a7943263", "test.yoda.not_null_analytics___loyalty_stg__segment_install_event_details_merchant_id.2a789cce2b"], "model.yoda.analytics___loyalty_stg__segment_uninstall": ["exposure.yoda.analytics___loyalty__24h", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___loyalty_stg__merchant_segment_event_over_time"], "model.yoda.analytics___loyalty_stg__swell_referral_codes": ["exposure.yoda.analytics___loyalty__24h"], "model.yoda.analytics___loyalty_stg__swell_referrals": ["exposure.yoda.analytics___loyalty__24h"], "model.yoda.analytics___marketing__mql_opportunity_goal": ["exposure.yoda.analytics___marketing__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___marketing__mql_opportunity_goal_1.0bba559cdd", "test.yoda.not_null_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id.6ec7e2763c", "test.yoda.unique_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id.4b1fd4bf08"], "model.yoda.analytics___new_revenue__deal_product": ["exposure.yoda.analytics___new_revenue__24h", "model.yoda.analytics___gtm__opportunity_goal", "model.yoda.analytics___new_revenue__deal_product_scd", "model.yoda.analytics___new_revenue__operational_performance_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_1.1479e82305", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_opportunity_id__product.785696bc18"], "model.yoda.analytics___new_revenue__deal_product_scd": ["exposure.yoda.analytics___new_revenue__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_scd_1.a3a194526d", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_scd_opportunity_id__product__updated_at.0173d26576"], "model.yoda.analytics___new_revenue__operational_performance_daily": ["exposure.yoda.analytics___new_revenue__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__operational_performance_daily_1.97d5464f2e", "test.yoda.not_null_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id.a81fac273e", "test.yoda.unique_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id.e7d772063a"], "model.yoda.analytics___partners__manager_performance_monthly": ["exposure.yoda.analytics___partners__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___partners__manager_performance_monthly_1.c471df63c7", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners__manager_performance_monthly_month__partner_manager_id.855d7a116e", "test.yoda.not_null_analytics___partners__manager_performance_monthly_month.48d5c27d55", "test.yoda.not_null_analytics___partners__manager_performance_monthly_partner_manager_id.58d231c1f8"], "model.yoda.analytics___partners__partner_engagement_opportunity": ["exposure.yoda.analytics___partners__24h", "model.yoda.analytics___partners__manager_performance_monthly", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners__partner_engagement_opportunity_partner_engagement_id__opportunity_id.98d8b40d49", "test.yoda.not_null_analytics___partners__partner_engagement_opportunity_partner_engagement_id.83c54fcf6c", "test.yoda.unique_analytics___partners__partner_engagement_opportunity_opportunity_id.3cac8dbc58"], "model.yoda.analytics___partners_stg__partner_manager_goals": ["exposure.yoda.analytics___partners__at_01_30", "model.yoda.analytics___partners_stg__manager_goals"], "model.yoda.analytics___partners_stg__manager_goals": ["exposure.yoda.analytics___partners__24h", "model.yoda.analytics___partners__manager_performance_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___partners_stg__manager_goals_1.fec6f7aad4", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners_stg__manager_goals_quarter__partner_manager_id.c8819a2f2d", "test.yoda.not_null_analytics___partners_stg__manager_goals_partner_manager_id.ada4b04843", "test.yoda.not_null_analytics___partners_stg__manager_goals_quarter.72b1ffc8ce"], "model.yoda.analytics___platform__opportunity_ht_ss_over_time": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___platform__organization_opportunity_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__opportunity_ht_ss_over_time_1.eb89e6175a", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__opportunity_ht_ss_over_time_opportunity_id__product_family.b786361f05", "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_end_date.2393f6deaa", "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_start_date.2d43fffb8b", "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_id.aa29fe5044", "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_organization_key.faf0a5ad8a", "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_product_family.b9a163115c"], "model.yoda.analytics___platform__order": ["exposure.yoda.analytics___platform__order_24h", "model.yoda.analytics___platform__order_metrics", "model.yoda.analytics___ugc__review_request"], "model.yoda.analytics___platform__order_metrics": ["exposure.yoda.analytics___platform__order_24h", "model.yoda.analytics___ugc__review_request", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__order_metrics_1.2b3572d58c", "test.yoda.not_null_analytics___platform__order_metrics_order_id.1920d1b13f", "test.yoda.unique_analytics___platform__order_metrics_order_id.53c8358938"], "model.yoda.analytics___platform__organization": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "model.yoda.analytics___platform__organization_product_segment_daily", "model.yoda.analytics___platform__store_metrics_daily", "model.yoda.analytics___platform_stg__owner_plan_event_details", "model.yoda.analytics___salesforce__account_enrichment", "model.yoda.analytics___salesforce__new_organization", "model.yoda.analytics___salesforce__service_case", "model.yoda.analytics___subscriptions__store", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_1.8787bbdc2f", "test.yoda.not_null_analytics___platform__organization_organization_id.f5c97c76e1", "test.yoda.unique_analytics___platform__organization_organization_id.4e186060ee"], "model.yoda.analytics___platform__organization_country": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___platform__organization", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_country_1.b1ffea7fde", "test.yoda.not_null_analytics___platform__organization_country_organization_key.559f0069a2", "test.yoda.unique_analytics___platform__organization_country_organization_key.c32db45485"], "model.yoda.analytics___platform__organization_industry": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___platform__organization", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_industry_1.83a20a2990", "test.yoda.not_null_analytics___platform__organization_industry_organization_key.44d7f30894", "test.yoda.unique_analytics___platform__organization_industry_organization_key.685805ff4b"], "model.yoda.analytics___platform__organization_metrics_monthly": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___platform__organization_segment_monthly", "model.yoda.analytics___ugc__active_metrics_monthly", "model.yoda.analytics___ugc__order_to_review_rate_cohort", "model.yoda.analytics___ugc__organization_first_time_activity_metrics", "model.yoda.analytics___ugc__owner_order_to_review_monthly", "model.yoda.analytics___ugc__platform_order_to_review_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_metrics_monthly_1.150d021652", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_metrics_monthly_organization_key__month.1e8306f6b3", "test.yoda.not_null_analytics___platform__organization_metrics_monthly_month.fcb07517f6", "test.yoda.not_null_analytics___platform__organization_metrics_monthly_organization_key.d9e5fa109f"], "model.yoda.analytics___platform__organization_name": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_name_1.f6cd1c104e", "test.yoda.not_null_analytics___platform__organization_name_organization_id.f7dc4f9432", "test.yoda.not_null_analytics___platform__organization_name_organization_key.be89c5f1d9", "test.yoda.unique_analytics___platform__organization_name_organization_key.bc3a87fde5"], "model.yoda.analytics___platform__organization_opportunity_monthly": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___platform__organization_segment_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_opportunity_monthly_1.4d8deb1a15", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_opportunity_monthly_month__opportunity_id.c2f15a4e54", "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_month.a3cd2f8902", "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_opportunity_id.f1fed9b1fe", "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_organization_key.1124e5483d"], "model.yoda.analytics___platform__organization_plan_daily": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___platform__opportunity_ht_ss_over_time", "model.yoda.analytics___platform__organization_plan_monthly", "model.yoda.analytics___platform__organization_product_segment_daily", "model.yoda.analytics___salesforce__account_enrichment", "model.yoda.analytics___salesforce__new_organization", "model.yoda.analytics___ugc__organization_first_time_activity_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_daily_1.d3512b01c3", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_daily_date__organization_key__product_family.297910b017", "test.yoda.not_null_analytics___platform__organization_plan_daily_app_key_array.5ebe8f8d4a", "test.yoda.not_null_analytics___platform__organization_plan_daily_date.81ce5af337", "test.yoda.not_null_analytics___platform__organization_plan_daily_is_email.99562b090f", "test.yoda.not_null_analytics___platform__organization_plan_daily_is_free.e1bb945993", "test.yoda.not_null_analytics___platform__organization_plan_daily_is_full_service.0347d3eb98", "test.yoda.not_null_analytics___platform__organization_plan_daily_is_loyalty.90c454b511", "test.yoda.not_null_analytics___platform__organization_plan_daily_is_reviews.2ea32ee795", "test.yoda.not_null_analytics___platform__organization_plan_daily_is_self_service.b6e5e96cd9", "test.yoda.not_null_analytics___platform__organization_plan_daily_is_sms.af85f74da7", "test.yoda.not_null_analytics___platform__organization_plan_daily_is_subscriptions.a70f44e9e7", "test.yoda.not_null_analytics___platform__organization_plan_daily_is_vms.97f0766216", "test.yoda.not_null_analytics___platform__organization_plan_daily_organization_key.ca6b2acd78", "test.yoda.not_null_analytics___platform__organization_plan_daily_plan_name.5f3a79eac3", "test.yoda.not_null_analytics___platform__organization_plan_daily_plan_name_array.8587f40152", "test.yoda.not_null_analytics___platform__organization_plan_daily_product_family.974f9664f8"], "model.yoda.analytics___platform__organization_plan_monthly": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___finance__communication_organization_product_usage_revenue_monthly", "model.yoda.analytics___platform__organization_product_segment_monthly", "model.yoda.analytics___ugc__active_metrics_monthly", "model.yoda.analytics___ugc__order_to_review_rate_cohort", "model.yoda.analytics___ugc__owner_order_to_review_monthly", "model.yoda.analytics___ugc__platform_order_to_review_monthly", "model.yoda.analytics___ugc__postman_feature_email_usage_monthly", "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort", "model.yoda.analytics___ugc__store_widget_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_monthly_1.baa716b666", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_monthly_month__organization_key__product_family.b7cf54fb07", "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_email.0ead36374d", "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_loyalty.f6172edfa4", "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_reviews.0cd536820b", "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_subscriptions.892529494d", "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_vms.d01483b5e8", "test.yoda.not_null_analytics___platform__organization_plan_monthly_month.3aa88f6e20", "test.yoda.not_null_analytics___platform__organization_plan_monthly_organization_key.4dae6c489c", "test.yoda.not_null_analytics___platform__organization_plan_monthly_product_family.f53bc2be74"], "model.yoda.analytics___platform__organization_platform": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___platform__organization", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_platform_1.eeb92e7163", "test.yoda.not_null_analytics___platform__organization_platform_organization_key.d4f349d341", "test.yoda.unique_analytics___platform__organization_platform_organization_key.35a769f9bc"], "model.yoda.analytics___platform__organization_product_activeness_monthly": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___platform__organization_product_segment_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_activeness_monthly_1.4aaca9ad3e", "test.yoda.not_null_analytics___platform__organization_product_activeness_monthly_organization_product_month_id.72b432382b", "test.yoda.unique_analytics___platform__organization_product_activeness_monthly_organization_product_month_id.09c2920902"], "model.yoda.analytics___platform__organization_product_metrics_monthly": ["exposure.yoda.analytics___platform__product_metrics_24h", "model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_1.6d7839a364", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_metrics_monthly_organization_key__metric_month.ebe548179e"], "model.yoda.analytics___platform__organization_product_metrics_monthly_unpivot": ["exposure.yoda.analytics___platform__product_metrics_24h", "model.yoda.analytics___platform__product_metrics_snapshot_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_unpivot_1.9bf85b96c2", "test.yoda.not_null_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c.5f3d9028b0", "test.yoda.unique_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c.d6cb8f2a20"], "model.yoda.analytics___platform__organization_product_segment_daily": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___platform__organization_product_segment_monthly", "model.yoda.analytics___ugc__organization_first_time_activity_metrics", "model.yoda.analytics___ugc__store_first_time_activity_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_daily_1.57f3987c9e", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_segment_daily_date__organization_key__product_family.ef5e4fda4d", "test.yoda.not_null_analytics___platform__organization_product_segment_daily_date.f8ffdaabe5", "test.yoda.not_null_analytics___platform__organization_product_segment_daily_organization_key.1358b9f30b", "test.yoda.not_null_analytics___platform__organization_product_segment_daily_product_family.cdea0b033c"], "model.yoda.analytics___platform__organization_product_segment_monthly": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___finance__organization_product_mom_mrr_cycle_dashboard", "model.yoda.analytics___platform__organization_segment_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_monthly_1.e949b933b1", "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_month.4fe831a3bc", "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_organization_key.c96b0a5319", "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_organization_product_month_id.57c2687fe2", "test.yoda.unique_analytics___platform__organization_product_segment_monthly_organization_product_month_id.eae7c2fc23"], "model.yoda.analytics___platform__organization_segment_monthly": ["exposure.yoda.analytics___platform__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_segment_monthly_1.4b62230dd7", "test.yoda.not_null_analytics___platform__organization_segment_monthly_month.e976964b96", "test.yoda.not_null_analytics___platform__organization_segment_monthly_organization_key.bf95891731", "test.yoda.not_null_analytics___platform__organization_segment_monthly_organization_month_id.c5f722e165", "test.yoda.unique_analytics___platform__organization_segment_monthly_organization_month_id.2001427bc3"], "model.yoda.analytics___platform__owner_plan_event": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___platform__platform_store_plan_over_time", "test.yoda.not_null_analytics___platform__owner_plan_event_owner_plan_event_id.01019086db", "test.yoda.unique_analytics___platform__owner_plan_event_owner_plan_event_id.de5b2a3535"], "model.yoda.analytics___platform__plan": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___finance__zuora_organization_plan_rank_daily", "model.yoda.analytics___finance__zuora_subscription_mrr_daily", "model.yoda.analytics___platform__owner_plan_event", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___salesforce__account_enrichment", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__plan_136.151f2294d9", "test.yoda.not_null_analytics___platform__plan_plan_id.371ae557dc", "test.yoda.not_null_analytics___platform__plan_plan_name.8a9e42247d", "test.yoda.unique_analytics___platform__plan_plan_id.847d92374f", "test.yoda.unique_analytics___platform__plan_plan_name.1954801371"], "model.yoda.analytics___platform__platform_store_plan_over_time": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___platform__store_plan_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__platform_store_plan_over_time_1.23464fb1d5", "test.yoda.not_null_analytics___platform__platform_store_plan_over_time_app_key.177425f8b0", "test.yoda.not_null_analytics___platform__platform_store_plan_over_time_plan_id.ad833f89ad"], "model.yoda.analytics___platform__product_metrics_snapshot_monthly": ["exposure.yoda.analytics___platform__product_metrics_24h", "model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__product_metrics_snapshot_monthly_1.5eed07b015", "test.yoda.not_null_analytics___platform__product_metrics_snapshot_monthly_External_ID__c.585116ff41", "test.yoda.unique_analytics___platform__product_metrics_snapshot_monthly_External_ID__c.a9e63d25dc"], "model.yoda.analytics___platform__question_details": ["exposure.yoda.analytics___platform__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__question_details_1.a6b18f602a", "test.yoda.not_null_analytics___platform__question_details_question_id.7eeb34c756", "test.yoda.unique_analytics___platform__question_details_question_id.81f0b8baca"], "model.yoda.analytics___platform__store": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___finance__shopify_billing_event", "model.yoda.analytics___finance__shopify_billing_store_mapping", "model.yoda.analytics___finance__shopify_store_mapping", "model.yoda.analytics___loyalty__organization_metrics_monthly", "model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__organization_industry", "model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__organization_platform", "model.yoda.analytics___platform__organization_product_activeness_monthly", "model.yoda.analytics___platform__platform_store_plan_over_time", "model.yoda.analytics___platform__store_activeness_daily", "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "model.yoda.analytics___platform__store_metrics_daily", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform__store_product_metrics_lifetime", "model.yoda.analytics___platform__store_snapshot_daily", "model.yoda.analytics___platform_stg__owner_plan_event_details", "model.yoda.analytics___salesforce__service_case", "model.yoda.analytics___subscriptions__store", "model.yoda.analytics___subscriptions__store_feature_activation", "model.yoda.analytics___subscriptions_stg__subscriptions_store", "model.yoda.analytics___synergies__eligible_store_monthly", "model.yoda.analytics___synergies__organization_synergy_activeness_monthly", "model.yoda.analytics___synergies__store_synergy_metrics_monthly", "model.yoda.analytics___ugc__active_metrics_monthly", "model.yoda.analytics___ugc__owner_order_to_review_monthly", "model.yoda.analytics___ugc__platform_order_to_review_monthly", "model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_feature_over_time", "model.yoda.analytics___ugc__store_metrics_daily_24m", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_1.38d9ed28fd", "test.yoda.not_null_analytics___platform__store_app_key.d695626fbb", "test.yoda.not_null_analytics___platform__store_store_id.ecc8e3c660", "test.yoda.unique_analytics___platform__store_app_key.b5ba5fcea0", "test.yoda.unique_analytics___platform__store_store_id.0426a49173"], "model.yoda.analytics___platform__store_activeness_daily": ["exposure.yoda.analytics___platform__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_activeness_daily_1.6a3c8092ee", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_activeness_daily_activeness_date__app_key.1e53577791", "test.yoda.not_null_analytics___platform__store_activeness_daily_activeness_date.6e962034a9", "test.yoda.not_null_analytics___platform__store_activeness_daily_app_key.1dd234b604"], "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___platform__organization_product_metrics_monthly", "model.yoda.analytics___platform__store_product_metrics_daily", "model.yoda.analytics___platform__store_product_metrics_monthly", "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_dynamic_date_explode_from_creation_1.5dcbc7417f", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_dynamic_date_explode_from_creation_app_key__date.57c6fdfe71"], "model.yoda.analytics___platform__store_metrics_daily": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___platform__store_metrics_monthly", "model.yoda.analytics___sms__store_metrics", "model.yoda.platform__sms_store_verification", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_daily_1.ed2941830e", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_daily_app_key__date.c8c9425fd7", "test.yoda.not_null_analytics___platform__store_metrics_daily_app_key.afe4bc534c", "test.yoda.not_null_analytics___platform__store_metrics_daily_date.b36227f573"], "model.yoda.analytics___platform__store_metrics_monthly": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__merchant_plan_value_cohort_monthly", "model.yoda.analytics___platform__organization_metrics_monthly", "model.yoda.analytics___platform__store_product_metrics_monthly", "model.yoda.analytics___salesforce__account_enrichment", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___subscriptions__store", "model.yoda.analytics___subscriptions__store_feature_activation", "model.yoda.analytics___synergies__eligible_store_monthly", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "model.yoda.analytics___synergies__store_synergy_metrics_monthly", "model.yoda.analytics___ugc__postman_feature_email_usage_monthly", "model.yoda.analytics___ugc__store_widget_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_monthly_1.6d126cab16", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_monthly_app_key__month.62e6c6c869", "test.yoda.not_null_analytics___platform__store_metrics_monthly_app_key.df1b910fe3", "test.yoda.not_null_analytics___platform__store_metrics_monthly_month.a277f9834d"], "model.yoda.analytics___platform__store_order_daily": ["exposure.yoda.analytics___platform__order_24h", "model.yoda.analytics___platform__store_metrics_daily", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___ugc__store", "model.yoda.analytics___ugc__store_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_order_daily_1.5d34dd0e73", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_order_daily_app_key__order_date.9e299c0e3f", "test.yoda.not_null_analytics___platform__store_order_daily_app_key.ae84f8cb42", "test.yoda.not_null_analytics___platform__store_order_daily_order_date.58413ae3f9"], "model.yoda.analytics___platform__store_pixel_metrics_daily": ["exposure.yoda.analytics___platform__pixel_24h", "model.yoda.analytics___loyalty__merchant_activeness_daily", "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc__store_widget_metrics_monthly", "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_action.7a5f3e7fa2", "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_date.3ff71c11db", "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_metric.25c0621826", "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id.36a24ed399", "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_product_name.923005d0f4", "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_widget_element.32dd729a77", "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_widget_version_type.dd3a6bb618", "test.yoda.unique_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id.1546e1b398"], "model.yoda.analytics___platform__store_plan_daily": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily", "model.yoda.analytics___finance__shopify_billing_store_product_usage_charge", "model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___salesforce__account_enrichment", "model.yoda.analytics___synergies__activation_level_daily", "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort", "model.yoda.analytics___ugc__store_first_time_activity_metrics", "model.yoda.analytics___ugc__store_metrics_daily_24m", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_plan_daily_1.66ddbd73c2", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_plan_daily_date__app_key__product_family.f5230bd448", "test.yoda.not_null_analytics___platform__store_plan_daily_app_key.28cc4bbaa2", "test.yoda.not_null_analytics___platform__store_plan_daily_date.e6e44353da", "test.yoda.not_null_analytics___platform__store_plan_daily_plan_id.ff727864a1", "test.yoda.not_null_analytics___platform__store_plan_daily_plan_name.fa04377d11", "test.yoda.not_null_analytics___platform__store_plan_daily_product_family.56de4b757b"], "model.yoda.analytics___platform__store_platform_account": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___finance__shopify_billing_event", "model.yoda.analytics___finance__shopify_billing_store_mapping", "model.yoda.analytics___finance__shopify_store_mapping", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_platform_account_1.34775c1634", "test.yoda.not_null_analytics___platform__store_platform_account_account_platform_id.de81df4132", "test.yoda.unique_analytics___platform__store_platform_account_account_platform_id.9361df1781"], "model.yoda.analytics___platform__store_product_activeness_monthly": ["exposure.yoda.analytics___platform__24h", "model.yoda.analytics___platform__organization_product_activeness_monthly", "model.yoda.analytics___synergies__loyalty_store_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_metrics_monthly", "model.yoda.analytics___ugc__store_widget_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_activeness_monthly_1.d62572b5eb", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_activeness_monthly_activeness_month__app_key.8b2b7a930f", "test.yoda.not_null_analytics___platform__store_product_activeness_monthly_activeness_month.432728e5db", "test.yoda.not_null_analytics___platform__store_product_activeness_monthly_app_key.4f4d910d51"], "model.yoda.analytics___platform__store_product_metrics_daily": ["exposure.yoda.analytics___platform__product_metrics_24h", "model.yoda.analytics___platform__store_product_metrics_daily_snapshot", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_1.3111a6892d", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_app_key__metric_date.ab21790649", "test.yoda.not_null_analytics___platform__store_product_metrics_daily_app_key.5872dd8972", "test.yoda.not_null_analytics___platform__store_product_metrics_daily_metric_date.1b0f986097"], "model.yoda.analytics___platform__store_product_metrics_daily_diff": ["exposure.yoda.analytics___platform__product_metrics_24h", "model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily"], "model.yoda.analytics___platform__store_product_metrics_daily_snapshot": ["exposure.yoda.analytics___platform__product_metrics_24h", "model.yoda.analytics___platform__store_product_metrics_daily_diff", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_snapshot_1.84ce47c37c", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_snapshot_app_key__metric_date__metric_name.4bc8ad9135", "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_app_key.2332f17093", "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_date.0312941480", "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_name.652628c554"], "model.yoda.analytics___platform__store_product_metrics_lifetime": ["exposure.yoda.analytics___platform__product_metrics_24h", "model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_1.9958f0ba87", "test.yoda.not_null_analytics___platform__store_product_metrics_lifetime_app_key.270e3294d8", "test.yoda.unique_analytics___platform__store_product_metrics_lifetime_app_key.b98da12197"], "model.yoda.analytics___platform__store_product_metrics_lifetime_scd": ["exposure.yoda.analytics___platform__product_metrics_24h", "model.yoda.analytics___platform__store_product_metrics_daily_diff", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_scd_1.fb1a85c913", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_scd_app_key__products__updated_at__metric_name.c3adce83db"], "model.yoda.analytics___platform__store_product_metrics_lifetime_unpivot": ["exposure.yoda.analytics___platform__product_metrics_24h", "model.yoda.analytics___platform__store_product_metrics_lifetime_scd", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_unpivot_1.5beceee7bc", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_unpivot_app_key__products__metric_name.f041026f4a"], "model.yoda.analytics___platform__store_product_metrics_monthly": ["exposure.yoda.analytics___platform__product_metrics_24h", "model.yoda.analytics___platform__store_product_metrics_monthly_unpivot"], "model.yoda.analytics___platform__store_product_metrics_monthly_unpivot": ["exposure.yoda.analytics___platform__product_metrics_24h", "model.yoda.analytics___platform__product_metrics_snapshot_monthly"], "model.yoda.analytics___platform__store_snapshot_daily": ["exposure.yoda.analytics___platform__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_snapshot_daily_1.bae3cb5d42", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_snapshot_daily_date__app_key.40f26252c5"], "model.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___finance__organization_product_usage_revenue_monthly"], "model.yoda.analytics___platform_stg__deprecated_packages": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___platform_stg__static_deprecated_package"], "model.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___delivery__organization_customer_care_over_time"], "model.yoda.analytics___platform_stg__phone_code_country_mapping": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms_stg__api_calls", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__phone_code_country_mapping_1.f151f3acb8"], "model.yoda.analytics___platform_stg__pixel_action_mapping": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two", "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_action_mapping_1.59d86af992"], "model.yoda.analytics___platform_stg__pixel_category_mapping": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two", "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_category_mapping_1.bba04362f0"], "model.yoda.analytics___platform_stg__pixel_duration_mapping": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___platform__store_pixel_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_duration_mapping_1.84d5d8fd5b"], "model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___platform__store_pixel_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_os_family_mobile_mapping_1.c2fad38ca0"], "model.yoda.analytics___platform_stg__product_plan_name_rank": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___finance__organization_product_revenue_monthly", "model.yoda.analytics___finance__zuora_organization_plan_rank_daily", "model.yoda.analytics___platform__organization_plan_daily", "model.yoda.analytics___platform__organization_plan_monthly", "test.yoda.not_null_analytics___platform_stg__product_plan_name_rank_plan_name.5ecb99c159", "test.yoda.unique_analytics___platform_stg__product_plan_name_rank_plan_name.7680ba0de2"], "model.yoda.analytics___platform_stg__questions": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___platform_stg__question", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__questions_1.3425e858e7"], "model.yoda.analytics___platform_stg__saas_organization_daily_history": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___platform__store_plan_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_organization_daily_history_1.213f53c393", "test.yoda.not_null_analytics___platform_stg__saas_organization_daily_history_dwh_updated_at.55993a8322", "test.yoda.not_null_analytics___platform_stg__saas_organization_daily_history_organization_key.52d8c8ee50"], "model.yoda.analytics___platform_stg__saas_store_plan_history": ["exposure.yoda.analytics___platform__schedule_once_models", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_store_plan_history_1.cbd7f29455"], "model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__shopify_billing_charge_plan_mapping_1.80ef31745b", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__shopify_billing_charge_plan_mapping_product_family__charge_name.eac779bf7e"], "model.yoda.analytics___platform_stg__similar_stores": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___platform_stg__similar_store", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_stores_1.40cafa6cc1"], "model.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping": ["exposure.yoda.analytics___platform__staging_24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__sms_loyalty_synergy_mapping_1.bf37e06b40"], "model.yoda.analytics___platform_stg__subscriptions_contract_history": ["exposure.yoda.analytics___platform__schedule_once_models", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_contract_history_1.2ae291f521", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_contract_history_app_key__from_time__contract_id__status_id.704750ae8d", "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_app_key.c19e552c55", "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_contract_id.8f04be378b", "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_from_time.30a7fac925", "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_status_id.ba2c0f080e"], "model.yoda.analytics___platform_stg__account": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___platform__question_details", "model.yoda.analytics___platform__store", "model.yoda.analytics___ugc__image", "model.yoda.analytics___ugc__review", "model.yoda.analytics___ugc__review_request", "model.yoda.analytics___ugc__store_installation_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_1.4b2484911a", "test.yoda.not_null_analytics___platform_stg__account_account_id.9bc768ec65", "test.yoda.unique_analytics___platform_stg__account_account_id.bf0cffee73"], "model.yoda.analytics___platform_stg__account_platform": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_platform_account", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_platform_1.1627b7d5ba", "test.yoda.not_null_analytics___platform_stg__account_platform_account_id.6b520f86d6", "test.yoda.not_null_analytics___platform_stg__account_platform_account_platform_id.b7b5c49fb5", "test.yoda.unique_analytics___platform_stg__account_platform_account_platform_id.c290b8cfd5"], "model.yoda.analytics___platform_stg__category": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___platform__store"], "model.yoda.analytics___platform_stg__currency_exchange_rate": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___loyalty_stg__point_redemption", "model.yoda.analytics___loyalty_stg__redemption_option", "model.yoda.analytics___platform__order", "model.yoda.analytics___platform__store_order_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__currency_exchange_rate_1.92ad112887", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__currency_exchange_rate_currency_exchange_date__from_currency_symbol__to_currency_symbol.f4f0825820", "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_currency_exchange_date.0d396a63dc", "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_from_currency_symbol.8296ad7a59", "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_to_currency_symbol.4b70904cc9"], "model.yoda.analytics___platform_stg__feature": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___ugc__store_feature_over_time", "test.yoda.accepted_values_analytics___platform_stg__feature_is_default_user_enabled__0__1.ee28dedafe", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__feature_1.45b956b766", "test.yoda.not_null_analytics___platform_stg__feature_feature_id.c412179c7f", "test.yoda.unique_analytics___platform_stg__feature_feature_id.ec45ab27b6"], "model.yoda.analytics___platform_stg__fulfillment": ["exposure.yoda.analytics___platform__order_24h", "model.yoda.analytics___platform__order", "model.yoda.analytics___platform__store_order_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__fulfillment_1.b2e05b1f61"], "model.yoda.analytics___platform_stg__home_screen_section": ["test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_section_1.24494367ea", "test.yoda.not_null_analytics___platform_stg__home_screen_section_section_id.c6b5335156", "test.yoda.unique_analytics___platform_stg__home_screen_section_section_id.981f1edfe1"], "model.yoda.analytics___platform_stg__home_screen_widget": ["test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_widget_1.a36d89f91d", "test.yoda.not_null_analytics___platform_stg__home_screen_widget_widget_id.36729b0509", "test.yoda.unique_analytics___platform_stg__home_screen_widget_widget_id.c774dd74ef"], "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three": ["exposure.yoda.analytics___platform__pixel_24h", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___platform__store_pixel_metrics_daily", "test.yoda.not_null_analytics___platform_stg__loyalty_pixel_widget_v_three_date.1bbd9480fe"], "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two": ["exposure.yoda.analytics___platform__pixel_24h", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___platform__store_pixel_metrics_daily", "test.yoda.not_null_analytics___platform_stg__loyalty_pixel_widget_v_two_date.8544c6a31f"], "model.yoda.analytics___platform_stg__order_line": ["exposure.yoda.analytics___platform__order_24h", "model.yoda.analytics___platform__order_metrics", "model.yoda.analytics___ugc__review_request_token", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__order_line_1.091595705b", "test.yoda.not_null_analytics___platform_stg__order_line_order_line_id.7c7a5630b9", "test.yoda.unique_analytics___platform_stg__order_line_order_line_id.a4c39747a3"], "model.yoda.analytics___platform_stg__organization": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___finance__zuora_account", "model.yoda.analytics___finance__zuora_organization_product_usage_charge", "model.yoda.analytics___platform__organization", "model.yoda.analytics___platform__organization_name", "model.yoda.analytics___platform__store", "model.yoda.analytics___salesforce__account", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__organization_1.d0e2952f5d", "test.yoda.not_null_analytics___platform_stg__organization_organization_id.2100e04b4f", "test.yoda.unique_analytics___platform_stg__organization_organization_id.7b6bc51554"], "model.yoda.analytics___platform_stg__owner_feature": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___platform__store", "model.yoda.analytics___subscriptions__store", "model.yoda.analytics___ugc__store_feature_over_time", "model.yoda.analytics___ugc_stg__owner_feature_enablement_event", "model.yoda.analytics___ugc_stg__owner_feature_setting_change_event", "model.yoda.platform_stg__digest_accounts", "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_disabled__0__1.9903df57ab", "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_floating__0__1.bc7d6927c5", "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_organization_owner__0__1.588123fb4f", "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_store_owner__0__1.51b95a4089", "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_user_enabled__0__1.4c98ff44f4", "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_user_owner__0__1.3c74cd865b", "test.yoda.accepted_values_analytics___platform_stg__owner_feature_owner_type__Organization__User__Account.d683ac5172", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_1.071e4e24d1", "test.yoda.not_null_analytics___platform_stg__owner_feature_owner_feature_id.4aaf610028", "test.yoda.not_null_analytics___platform_stg__owner_feature_owner_type.8f38255e97", "test.yoda.unique_analytics___platform_stg__owner_feature_owner_feature_id.587b1de338"], "model.yoda.analytics___platform_stg__owner_feature_setting": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___subscriptions__store", "model.yoda.analytics___ugc_stg__owner_feature_setting_change_event", "test.yoda.accepted_values_analytics___platform_stg__owner_feature_setting_is_floating__0__1.e60b90bad0", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_setting_1.eb178ab17e", "test.yoda.not_null_analytics___platform_stg__owner_feature_setting_owner_feature_id.a3bb30e58a"], "model.yoda.analytics___platform_stg__owner_plan": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___platform_stg__owner_plan_event_details", "model.yoda.analytics___platform_stg__owner_plan_snapshot", "test.yoda.accepted_values_analytics___platform_stg__owner_plan_is_organization_owner__0__1.0c9fe28cce", "test.yoda.accepted_values_analytics___platform_stg__owner_plan_is_store_owner__0__1.bdc41c1bc5", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_1.0de01ea6a4", "test.yoda.not_null_analytics___platform_stg__owner_plan_owner_id.88599e48d0", "test.yoda.not_null_analytics___platform_stg__owner_plan_owner_plan_id.c86be5da5f", "test.yoda.not_null_analytics___platform_stg__owner_plan_plan_id.a2f84269da", "test.yoda.not_null_analytics___platform_stg__owner_plan_updated_at.ebf8832afc", "test.yoda.unique_analytics___platform_stg__owner_plan_owner_plan_id.c3b5f11b5c"], "model.yoda.analytics___platform_stg__owner_plan_event_details": ["exposure.yoda.analytics___platform__plan_24h", "test.yoda.accepted_values_analytics___platform_stg__owner_plan_event_details_is_organization_owner__0__1.5e2a6959c0", "test.yoda.accepted_values_analytics___platform_stg__owner_plan_event_details_is_store_owner__0__1.179a1acd0c", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_event_details_1.00ff23adb4", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__owner_plan_event_details_owner_id__plan_id__plan_event_created_at__is_organization_owner.02a5c95dfa", "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_category_id.d494305ee7", "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_owner_id.fafd22bead", "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_owner_plan_id.9af3cb58e1", "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_plan_id.75d74c453e"], "model.yoda.analytics___platform_stg__owner_plan_history": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___platform__owner_plan_event", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_history_1.be59960d3a", "test.yoda.not_null_analytics___platform_stg__owner_plan_history_owner_id.d49061c6b6", "test.yoda.not_null_analytics___platform_stg__owner_plan_history_owner_plan_id.7d7adade79", "test.yoda.unique_analytics___platform_stg__owner_plan_history_owner_plan_id.bd9ed790ab"], "model.yoda.analytics___platform_stg__owner_plan_snapshot": ["exposure.yoda.analytics___platform__At_00_30", "model.yoda.analytics___platform__owner_plan_event", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_snapshot_1.682aa911c8", "test.yoda.not_null_analytics___platform_stg__owner_plan_snapshot_owner_plan_id.94f131116a"], "model.yoda.analytics___platform_stg__plan": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___platform__plan", "model.yoda.analytics___platform_stg__owner_plan_event_details", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_1.66dd98c5b1"], "model.yoda.analytics___platform_stg__plan_category": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___platform__plan", "model.yoda.analytics___platform_stg__owner_plan_event_details", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_category_1.150111d125", "test.yoda.not_null_analytics___platform_stg__plan_category_category_id.b6dc2b7233", "test.yoda.not_null_analytics___platform_stg__plan_category_category_name.b797e1ead5", "test.yoda.unique_analytics___platform_stg__plan_category_category_id.c6d7e9443a"], "model.yoda.analytics___platform_stg__plan_tag": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___platform__plan", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_1.cbb1dbbd68"], "model.yoda.analytics___platform_stg__plan_tag_type": ["exposure.yoda.analytics___platform__plan_24h", "model.yoda.analytics___platform__plan", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_type_1.cf8b2a102f", "test.yoda.not_null_analytics___platform_stg__plan_tag_type_plan_tag_type_id.71a98514ee", "test.yoda.unique_analytics___platform_stg__plan_tag_type_plan_tag_type_id.6fab2c7c03"], "model.yoda.analytics___platform_stg__platform_type": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_platform_account", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__platform_type_1.773fe10dc6", "test.yoda.not_null_analytics___platform_stg__platform_type_platform_id.bd273dfebc", "test.yoda.unique_analytics___platform_stg__platform_type_platform_id.01dab06a26"], "model.yoda.analytics___platform_stg__product": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___ugc__review", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__product_1.54aa67c1e8"], "model.yoda.analytics___platform_stg__question": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___platform__question_details", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__question_1.cd917941be", "test.yoda.not_null_analytics___platform_stg__question_question_id.a2b90e39a8", "test.yoda.unique_analytics___platform_stg__question_question_id.0b7a776845"], "model.yoda.analytics___platform_stg__segment_account_created": ["exposure.yoda.analytics___platform__segment_24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_account_created_1.9f7d6d550d", "test.yoda.not_null_analytics___platform_stg__segment_account_created_event_id.55bbe22a39", "test.yoda.unique_analytics___platform_stg__segment_account_created_event_id.1fa7cb0790"], "model.yoda.analytics___platform_stg__segment_activation_step": ["exposure.yoda.analytics___platform__segment_24h", "model.yoda.analytics___ugc__store_installation_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_activation_step_1.bb810fb45e", "test.yoda.not_null_analytics___platform_stg__segment_activation_step_event_id.22c8d7d6c4", "test.yoda.unique_analytics___platform_stg__segment_activation_step_event_id.152d3eadc7"], "model.yoda.analytics___platform_stg__segment_app_install_completed": ["exposure.yoda.analytics___platform__segment_24h", "model.yoda.analytics___subscriptions__store_installation_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_install_completed_1.dbe3d598d6", "test.yoda.not_null_analytics___platform_stg__segment_app_install_completed_event_id.5f53bf6dc2", "test.yoda.unique_analytics___platform_stg__segment_app_install_completed_event_id.3c8f5c9dee"], "model.yoda.analytics___platform_stg__segment_app_uninstalled": ["exposure.yoda.analytics___platform__segment_24h", "model.yoda.analytics___subscriptions__store_installation_over_time", "model.yoda.analytics___ugc__store_installation_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_uninstalled_1.f8c67106e7", "test.yoda.not_null_analytics___platform_stg__segment_app_uninstalled_event_id.e48714f579", "test.yoda.unique_analytics___platform_stg__segment_app_uninstalled_event_id.87acab11bc"], "model.yoda.analytics___platform_stg__segment_b_to_b": ["exposure.yoda.analytics___platform__segment_24h", "model.yoda.analytics___ugc__store_installation_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_b_to_b_1.e6e114ec71", "test.yoda.not_null_analytics___platform_stg__segment_b_to_b_event_id.4e957a82dd", "test.yoda.unique_analytics___platform_stg__segment_b_to_b_event_id.05b5e96242"], "model.yoda.analytics___platform_stg__segment_file_exported": ["exposure.yoda.analytics___platform__segment_24h", "model.yoda.analytics___ugc__store_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_file_exported_1.ee9e77b56a", "test.yoda.not_null_analytics___platform_stg__segment_file_exported_event_id.796820712d", "test.yoda.unique_analytics___platform_stg__segment_file_exported_event_id.0d046166dd"], "model.yoda.analytics___platform_stg__segment_limit_reached": ["exposure.yoda.analytics___platform__segment_24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_limit_reached_1.1838915467", "test.yoda.not_null_analytics___platform_stg__segment_limit_reached_event_id.7015799488", "test.yoda.unique_analytics___platform_stg__segment_limit_reached_event_id.a92b0fea75"], "model.yoda.analytics___platform_stg__segment_onboarding": ["exposure.yoda.analytics___platform__segment_24h", "model.yoda.analytics___ugc__store_installation_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_onboarding_1.1907a77604", "test.yoda.not_null_analytics___platform_stg__segment_onboarding_event_id.0ff7b57a94", "test.yoda.unique_analytics___platform_stg__segment_onboarding_event_id.2d8e177e57"], "model.yoda.analytics___platform_stg__segment_page_event": ["exposure.yoda.analytics___platform__segment_24h", "model.yoda.analytics___subscriptions__store_feature_activation", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_page_event_1.36744c29f6", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__segment_page_event_event_id__app_key.8061a69191", "test.yoda.not_null_analytics___platform_stg__segment_page_event_app_key.6221c88cd5", "test.yoda.not_null_analytics___platform_stg__segment_page_event_event_id.29d85cd0ed"], "model.yoda.analytics___platform_stg__segment_popup_displayed": ["exposure.yoda.analytics___platform__segment_24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_popup_displayed_1.e5fe385095", "test.yoda.not_null_analytics___platform_stg__segment_popup_displayed_event_id.20dc1aca87", "test.yoda.unique_analytics___platform_stg__segment_popup_displayed_event_id.c86d8b9d76"], "model.yoda.analytics___platform_stg__segment_product_enabled": ["exposure.yoda.analytics___platform__segment_24h", "model.yoda.analytics___subscriptions_stg__subscriptions_store", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_product_enabled_1.b8b3335a48", "test.yoda.not_null_analytics___platform_stg__segment_product_enabled_event_id.c74bffc27e", "test.yoda.unique_analytics___platform_stg__segment_product_enabled_event_id.60b0b3a8b6"], "model.yoda.analytics___platform_stg__segment_uninstalled_yotpo": ["exposure.yoda.analytics___platform__segment_24h", "model.yoda.analytics___ugc__store_installation_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_uninstalled_yotpo_1.9eed93745f"], "model.yoda.analytics___platform_stg__similar_store": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___platform__store", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_store_1.92cb76df1c", "test.yoda.not_null_analytics___platform_stg__similar_store_app_key.4749d8ee70", "test.yoda.unique_analytics___platform_stg__similar_store_app_key.9f5cbcfa58"], "model.yoda.analytics___platform_stg__static_deprecated_package": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___platform__plan", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__static_deprecated_package_1.5cdfab0b87", "test.yoda.not_null_analytics___platform_stg__static_deprecated_package_plan_id.f9d05e69af", "test.yoda.unique_analytics___platform_stg__static_deprecated_package_plan_id.98ec63a42c"], "model.yoda.analytics___platform_stg__store_order": ["exposure.yoda.analytics___platform__order_24h", "model.yoda.analytics___platform__order", "model.yoda.analytics___platform__store_order_daily", "model.yoda.subscriptions__subscription_total_orders", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_order_1.06e9764eb1", "test.yoda.not_null_analytics___platform_stg__store_order_order_id.61050041d8", "test.yoda.unique_analytics___platform_stg__store_order_order_id.863fb84fb5"], "model.yoda.analytics___platform_stg__store_user_mapping": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___platform__organization", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_user_mapping_1.c53b62e32a"], "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three": ["exposure.yoda.analytics___platform__pixel_24h", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___platform__store_pixel_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_pixel_widget_v_three_1.a4c7dc7cd1", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id__event_row_rank.b711864588", "test.yoda.not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id.12b9d96841", "test.yoda.not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_row_rank.45726fb4c9"], "model.yoda.analytics___platform_stg__synergy_enablement_event": ["test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__synergy_enablement_event_1.94a38eb172", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__synergy_enablement_event_app_key__widget_id__updated_at.12d1947a05", "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_app_key.06cf074efd", "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_updated_at.ab180863ed", "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_widget_id.f80b5d2200"], "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three": ["exposure.yoda.analytics___platform__pixel_24h", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___platform__store_pixel_metrics_daily", "test.yoda.not_null_analytics___platform_stg__ugc_pixel_widget_v_three_date.14c303a758"], "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two": ["exposure.yoda.analytics___platform__pixel_24h", "model.yoda.analytics___platform__store_pixel_metrics_daily", "model.yoda.analytics___platform__store_pixel_metrics_daily", "test.yoda.not_null_analytics___platform_stg__ugc_pixel_widget_v_two_date.0ae171ab8f"], "model.yoda.analytics___platform_stg__user": ["exposure.yoda.analytics___platform__staging_24h", "model.yoda.analytics___platform__organization", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__user_1.322bb25202"], "model.yoda.analytics___salesforce__account": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___cs__onboarding_project", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___cs__opportunity_won_product_start_date", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "model.yoda.analytics___loyalty__merchant_monthly_element_activation", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___marketing__mql_opportunity_goal", "model.yoda.analytics___new_revenue__deal_product", "model.yoda.analytics___new_revenue__operational_performance_daily", "model.yoda.analytics___platform__organization_country", "model.yoda.analytics___platform__store_metrics_daily", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform__store_product_metrics_lifetime", "model.yoda.analytics___salesforce__account_enrichment", "model.yoda.analytics___salesforce__deal_summary", "model.yoda.analytics___salesforce__partner_engagement", "model.yoda.analytics___sms__store_cohort", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___sms__user_store_dates_history", "model.yoda.analytics___ugc__store", "model.yoda.loyalty__dim_merchants_daily_snapshot", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_1.d3e9ecbc66", "test.yoda.not_null_analytics___salesforce__account_account_id.b4e829a4f6", "test.yoda.unique_analytics___salesforce__account_account_id.3f1f984c3a"], "model.yoda.analytics___salesforce__account_enrichment": ["exposure.yoda.analytics___salesforce__enrichment_24h", "model.yoda.analytics___salesforce__account_enrichment_snapshot_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_1.c6d86004ad", "test.yoda.not_null_analytics___salesforce__account_enrichment_Id.1622bc72e9", "test.yoda.unique_analytics___salesforce__account_enrichment_Id.f3c4fb0985"], "model.yoda.analytics___salesforce__account_enrichment_daily_diff": ["exposure.yoda.analytics___salesforce__enrichment_24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_daily_diff_1.88aaabae8d", "test.yoda.not_null_analytics___salesforce__account_enrichment_daily_diff_Id.0f8803158d", "test.yoda.unique_analytics___salesforce__account_enrichment_daily_diff_Id.425a20a4f7"], "model.yoda.analytics___salesforce__account_enrichment_snapshot_daily": ["exposure.yoda.analytics___salesforce__enrichment_24h", "model.yoda.analytics___salesforce__account_enrichment_daily_diff", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_snapshot_daily_1.8e91bf4823", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__account_enrichment_snapshot_daily_Id__updated_at.0ea5f95d46", "test.yoda.not_null_analytics___salesforce__account_enrichment_snapshot_daily_Id.4cfd395b99"], "model.yoda.analytics___salesforce__account_product": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___cs__onboarding_project", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___loyalty__merchant_monthly_element_activation", "model.yoda.analytics___platform__store_product_metrics_lifetime", "model.yoda.analytics___salesforce__account_enrichment", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_product_1.42fa7fc5a3", "test.yoda.not_null_analytics___salesforce__account_product_account_id.75fbe7a00c", "test.yoda.not_null_analytics___salesforce__account_product_account_product_id.7103c06f5c", "test.yoda.not_null_analytics___salesforce__account_product_product_name.e19ce7f0b6", "test.yoda.unique_analytics___salesforce__account_product_account_product_id.4b119f7184"], "model.yoda.analytics___salesforce__account_tracking_daily": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___loyalty__merchant_plan_monthly", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__account_tracking_daily_date__account_id.4235272552", "test.yoda.not_null_analytics___salesforce__account_tracking_daily_account_id.10486c705b", "test.yoda.not_null_analytics___salesforce__account_tracking_daily_date.797d2a55bf"], "model.yoda.analytics___salesforce__campaign_member_field_history": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__campaign_member_field_history_1.c8a449e20f", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__campaign_member_field_history_campaign_member_id__field_name__from_time.344e9966b2", "test.yoda.not_null_analytics___salesforce__campaign_member_field_history_campaign_member_id.7be38168d2"], "model.yoda.analytics___salesforce__deal_summary": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__deal_summary_product", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_1.9228eb7d64", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_opportunity_id__opportunity_plan_id__plan.d096692b6a", "test.yoda.not_null_analytics___salesforce__deal_summary_deal_summary_id.ba103f7317", "test.yoda.not_null_analytics___salesforce__deal_summary_opportunity_id.03087133cd", "test.yoda.unique_analytics___salesforce__deal_summary_deal_summary_id.387a36b275"], "model.yoda.analytics___salesforce__deal_summary_product": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___cs__opportunity_main_product_change", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___new_revenue__deal_product", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_product_1.72e8bd4470", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_product_opportunity_id__product.606e8c0004", "test.yoda.not_null_analytics___salesforce__deal_summary_product_deal_summary_product_id.31d4312769", "test.yoda.unique_analytics___salesforce__deal_summary_product_deal_summary_product_id.57b1c94531"], "model.yoda.analytics___salesforce__lead": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "model.yoda.analytics___marketing__mql_opportunity_goal", "model.yoda.analytics___salesforce__mql", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__lead_1.6f1f5bb1a0"], "model.yoda.analytics___salesforce__live_chat_transcript": ["exposure.yoda.analytics___salesforce__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__live_chat_transcript_1.5b1fca726d", "test.yoda.not_null_analytics___salesforce__live_chat_transcript_chat_id.aa749713eb", "test.yoda.unique_analytics___salesforce__live_chat_transcript_chat_id.273b64c735"], "model.yoda.analytics___salesforce__mql": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___gtm__opporunity_dg_funnel", "model.yoda.analytics___marketing__mql_opportunity_goal", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__mql_1.f074e992f7", "test.yoda.not_null_analytics___salesforce__mql_mql_id.02bc1b90ba", "test.yoda.unique_analytics___salesforce__mql_mql_id.d209fbec60"], "model.yoda.analytics___salesforce__new_organization": ["exposure.yoda.analytics___salesforce__enrichment_24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__new_organization_1.20953b5d1f", "test.yoda.not_null_analytics___salesforce__new_organization_Organization_Key__c.7b2bf4e82a", "test.yoda.unique_analytics___salesforce__new_organization_Organization_Key__c.47411e9518"], "model.yoda.analytics___salesforce__onboarding_project": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___cs__onboarding_project", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__onboarding_project_1.3e73956d71", "test.yoda.not_null_analytics___salesforce__onboarding_project_onboarding_project_id.5dc0a7f0e2", "test.yoda.unique_analytics___salesforce__onboarding_project_onboarding_project_id.71a179fe6c"], "model.yoda.analytics___salesforce__opportunity": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___cs__onboarding_project", "model.yoda.analytics___cs__opportunity_main_product_change", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___cs__opportunity_won_product_start_date", "model.yoda.analytics___finance__zuora_subscription_mrr_over_time", "model.yoda.analytics___gtm__crossell_opportunity_attribution", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "model.yoda.analytics___gtm__opporunity_dg_funnel", "model.yoda.analytics___marketing__mql_opportunity_goal", "model.yoda.analytics___new_revenue__deal_product", "model.yoda.analytics___partners__partner_engagement_opportunity", "model.yoda.analytics___platform__opportunity_ht_ss_over_time", "model.yoda.analytics___platform__organization_opportunity_monthly", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__deal_summary", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_1.258691c816", "test.yoda.not_null_analytics___salesforce__opportunity_opportunity_id.65909d08bc", "test.yoda.unique_analytics___salesforce__opportunity_opportunity_id.d7cc183433"], "model.yoda.analytics___salesforce__opportunity_line_item": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___cs__opportunity_won_product_start_date", "model.yoda.analytics___new_revenue__deal_product", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___salesforce__deal_summary", "model.yoda.analytics___salesforce__opportunity", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_line_item_1.df821c0795", "test.yoda.not_null_analytics___salesforce__opportunity_line_item_line_item_id.b4ec3e167f", "test.yoda.unique_analytics___salesforce__opportunity_line_item_line_item_id.f73276dcba"], "model.yoda.analytics___salesforce__partner_engagement": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "model.yoda.analytics___gtm__opporunity_dg_funnel", "model.yoda.analytics___partners__partner_engagement_opportunity", "test.yoda.not_null_analytics___salesforce__partner_engagement_partner_engagement_id.629541df50", "test.yoda.unique_analytics___salesforce__partner_engagement_partner_engagement_id.b2ccbbcf95"], "model.yoda.analytics___salesforce__service_case": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___delivery__organization_customer_care_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__service_case_1.54e258537d", "test.yoda.not_null_analytics___salesforce__service_case_case_id.1226a89545", "test.yoda.not_null_analytics___salesforce__service_case_case_number.2b19a4e71c", "test.yoda.unique_analytics___salesforce__service_case_case_id.e02fd95829", "test.yoda.unique_analytics___salesforce__service_case_case_number.3b647293ea"], "model.yoda.analytics___salesforce__store_product_metrics_snapshot_daily": ["exposure.yoda.analytics___salesforce__enrichment_24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_daily_1.1a8396a1a0", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c__Product_Metrics_Name__c.d8838388cf", "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c.541c4126d5", "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_daily_Product_Metrics_Name__c.1d4159a1ed"], "model.yoda.analytics___salesforce__store_product_metrics_snapshot_monthly": ["exposure.yoda.analytics___salesforce__enrichment_24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_monthly_1.5a5b0be37d", "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c.42a91a77a8", "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Metrics_Name__c.26d3e4508a", "test.yoda.unique_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c.96c65ab273"], "model.yoda.analytics___salesforce__task": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__task_1.da7010e10f", "test.yoda.not_null_analytics___salesforce__task_task_id.d8090db429", "test.yoda.unique_analytics___salesforce__task_task_id.0f8d2488b9"], "model.yoda.analytics___salesforce__user_overtime": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "model.yoda.analytics___salesforce__task", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__user_overtime_1.347df68a4b", "test.yoda.not_null_analytics___salesforce__user_overtime_user_role_id.a4cc02bdfd", "test.yoda.unique_analytics___salesforce__user_overtime_user_role_id.78768862b4"], "model.yoda.analytics___salesforce__user_role_scd": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__user_overtime"], "model.yoda.analytics___salesforce_stg__account_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce__account_tracking_daily", "model.yoda.analytics___salesforce__new_organization", "model.yoda.analytics___salesforce_stg__mc_account", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_full_1.ac3cbc15d7"], "model.yoda.analytics___salesforce_stg__account_product_c_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_account_product", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_product_c_full_1.08bbe6d6f3"], "model.yoda.analytics___salesforce_stg__campaign": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_campaign", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__campaign_1.2498c6bddb"], "model.yoda.analytics___salesforce_stg__case_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_service_case"], "model.yoda.analytics___salesforce_stg__contact": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_contact", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__contact_1.9b8de16b82"], "model.yoda.analytics___salesforce_stg__cs_lead_c": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_cs_lead", "model.yoda.analytics___salesforce_stg__mc_cs_lead"], "model.yoda.analytics___salesforce_stg__cs_lead_c_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_cs_lead", "model.yoda.analytics___salesforce_stg__mc_cs_lead"], "model.yoda.analytics___salesforce_stg__custom_field_history_tracking_c": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__custom_field_history"], "model.yoda.analytics___salesforce_stg__datedconversionrate": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_conversion_rate", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__datedconversionrate_1.1431d985ae"], "model.yoda.analytics___salesforce_stg__deal_summary_new_c": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_deal_summary", "model.yoda.analytics___salesforce_stg__mc_deal_summary"], "model.yoda.analytics___salesforce_stg__deal_summary_new_c_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_deal_summary", "model.yoda.analytics___salesforce_stg__mc_deal_summary"], "model.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action"], "model.yoda.analytics___salesforce_stg__dim_sf_users_scd": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___marketing__mql_opportunity_goal", "model.yoda.analytics___new_revenue__deal_product", "model.yoda.analytics___partners__manager_performance_monthly", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__account_tracking_daily", "model.yoda.analytics___salesforce__deal_summary", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__partner_engagement"], "model.yoda.analytics___salesforce_stg__event": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_event"], "model.yoda.analytics___salesforce_stg__fact_account_profile_daily": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__account_tracking_daily"], "model.yoda.analytics___salesforce_stg__lead": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_lead", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__lead_1.1175c9dc01"], "model.yoda.analytics___salesforce_stg__livechattranscript_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__livechattranscript_full_1.0b050ad4b7"], "model.yoda.analytics___salesforce_stg__mql_c": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_mql", "model.yoda.analytics___salesforce_stg__mc_mql"], "model.yoda.analytics___salesforce_stg__mql_c_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_mql", "model.yoda.analytics___salesforce_stg__mc_mql"], "model.yoda.analytics___salesforce_stg__onboarding_project_c_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_onboarding_project", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__onboarding_project_c_full_1.7d63555589"], "model.yoda.analytics___salesforce_stg__opportunity": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_opportunity", "model.yoda.analytics___salesforce_stg__mc_opportunity"], "model.yoda.analytics___salesforce_stg__opportunity_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_opportunity", "model.yoda.analytics___salesforce_stg__mc_opportunity"], "model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__opportunity_prediction", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_c_full_1.a687f42933"], "model.yoda.analytics___salesforce_stg__opportunityfieldhistory": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history"], "model.yoda.analytics___salesforce_stg__opportunitylineitem_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item"], "model.yoda.analytics___salesforce_stg__partner_referral_c_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_partner_referral", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__partner_referral_c_full_1.14539c8ee1"], "model.yoda.analytics___salesforce_stg__task": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_task", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__task_1.75c8aed526"], "model.yoda.analytics___salesforce_stg__user": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_user", "model.yoda.analytics___salesforce_stg__mc_user"], "model.yoda.analytics___salesforce_stg__user_full": ["exposure.yoda.analytics___salesforce__at_01_30", "model.yoda.analytics___salesforce_stg__mc_user", "model.yoda.analytics___salesforce_stg__mc_user"], "model.yoda.analytics___salesforce_stg__custom_field_history": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___cs__onboarding_project", "model.yoda.analytics___salesforce__campaign_member_field_history", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__custom_field_history_1.86ee399ddd", "test.yoda.not_null_analytics___salesforce_stg__custom_field_history_sf_event_id.55074feac4", "test.yoda.unique_analytics___salesforce_stg__custom_field_history_sf_event_id.ab7808b812"], "model.yoda.analytics___salesforce_stg__mc_account": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___platform__opportunity_ht_ss_over_time", "model.yoda.analytics___platform__organization_name", "model.yoda.analytics___platform__organization_opportunity_monthly", "model.yoda.analytics___salesforce__account", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___sms__store", "model.yoda.analytics___synergies__activation_level_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_1.32a13ae472", "test.yoda.not_null_analytics___salesforce_stg__mc_account_account_id.782ec87d8f", "test.yoda.unique_analytics___salesforce_stg__mc_account_account_id.6067ebe293"], "model.yoda.analytics___salesforce_stg__mc_account_product": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__account_product", "model.yoda.analytics___synergies__activation_level_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_product_1.3ade706487", "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_account_id.c2239a1a79", "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_account_product_id.8dbd027775", "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_product_name.e5ece9c4d5", "test.yoda.unique_analytics___salesforce_stg__mc_account_product_account_product_id.49a3cb427d"], "model.yoda.analytics___salesforce_stg__mc_campaign": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_campaign_1.3e66a80add", "test.yoda.not_null_analytics___salesforce_stg__mc_campaign_campaign_id.2313c1b093", "test.yoda.unique_analytics___salesforce_stg__mc_campaign_campaign_id.8b1ea5edb4"], "model.yoda.analytics___salesforce_stg__mc_contact": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "model.yoda.analytics___marketing__mql_opportunity_goal", "model.yoda.analytics___salesforce__mql", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_contact_1.7dcf842d3b", "test.yoda.not_null_analytics___salesforce_stg__mc_contact_contact_id.9338361d21", "test.yoda.unique_analytics___salesforce_stg__mc_contact_contact_id.7a821a5016"], "model.yoda.analytics___salesforce_stg__mc_conversion_rate": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___finance__rate_plan_mrr_details", "model.yoda.analytics___finance__zuora_invoice", "model.yoda.analytics___salesforce__opportunity_line_item", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_conversion_rate_1.8ba7b5f4f2", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce_stg__mc_conversion_rate_currency_symbol__from_date.f692cccde0", "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id.56a6f9db93", "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_currency_symbol.aa0cd24815", "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_from_date.9f5d451a47", "test.yoda.unique_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id.5c374de83d"], "model.yoda.analytics___salesforce_stg__mc_cs_lead": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___gtm__crossell_opportunity_attribution", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_cs_lead_1.c429c91cc1", "test.yoda.not_null_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.2e7c947e0e", "test.yoda.unique_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.ac71be4f72"], "model.yoda.analytics___salesforce_stg__mc_deal_summary": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__deal_summary", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_deal_summary_1.67666745de", "test.yoda.not_null_analytics___salesforce_stg__mc_deal_summary_deal_summary_id.f987e65f12", "test.yoda.unique_analytics___salesforce_stg__mc_deal_summary_deal_summary_id.c1a6fd6217"], "model.yoda.analytics___salesforce_stg__mc_event": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___gtm__new_sale_opportunity_attribution_action", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_event_1.6a312aa568", "test.yoda.not_null_analytics___salesforce_stg__mc_event_event_id.44815ab8c6", "test.yoda.unique_analytics___salesforce_stg__mc_event_event_id.3d0cf71521"], "model.yoda.analytics___salesforce_stg__mc_lead": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__lead", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_lead_1.734b196685", "test.yoda.not_null_analytics___salesforce_stg__mc_lead_lead_id.1313d03af5", "test.yoda.unique_analytics___salesforce_stg__mc_lead_lead_id.c0041ba96f"], "model.yoda.analytics___salesforce_stg__mc_live_chat_transcript": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__live_chat_transcript", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_live_chat_transcript_1.b2da541dc7", "test.yoda.not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_id.d41b3dca35", "test.yoda.not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name.5fdab31e8e", "test.yoda.unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_id.fcda757714", "test.yoda.unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name.6ab14b9723"], "model.yoda.analytics___salesforce_stg__mc_mql": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__mql", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_mql_1.2e58293ab3", "test.yoda.not_null_analytics___salesforce_stg__mc_mql_mql_id.66109a1a64", "test.yoda.unique_analytics___salesforce_stg__mc_mql_mql_id.a3493225ae"], "model.yoda.analytics___salesforce_stg__mc_onboarding_project": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__onboarding_project", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_onboarding_project_1.07a3de4ae7", "test.yoda.not_null_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id.6bce4734a2", "test.yoda.unique_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id.6198a515ad"], "model.yoda.analytics___salesforce_stg__mc_opportunity": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___salesforce__opportunity", "model.yoda.analytics___salesforce__opportunity_line_item", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_1.86280c097e", "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_opportunity_id.1bc80ae2ed", "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_opportunity_id.0f619d4a92"], "model.yoda.analytics___salesforce_stg__mc_opportunity_field_history": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___finance__sf_opportunity_free_month_over_time", "model.yoda.analytics___salesforce__opportunity", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_field_history_1.d0fb577563", "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id.0e99b7bab4", "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id.abd55de465"], "model.yoda.analytics___salesforce_stg__mc_opportunity_line_item": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__opportunity_line_item", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_line_item_1.d16e880f1e", "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id.84b54bbaa8", "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id.58b83fd78d"], "model.yoda.analytics___salesforce_stg__mc_partner_referral": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__partner_engagement", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_partner_referral_1.45712a9da3"], "model.yoda.analytics___salesforce_stg__mc_service_case": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__service_case", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_service_case_1.4f19e3da6a", "test.yoda.not_null_analytics___salesforce_stg__mc_service_case_case_id.ffdf41fb7a", "test.yoda.not_null_analytics___salesforce_stg__mc_service_case_case_number.20104071ae", "test.yoda.unique_analytics___salesforce_stg__mc_service_case_case_id.9f24d80528", "test.yoda.unique_analytics___salesforce_stg__mc_service_case_case_number.89289315b2"], "model.yoda.analytics___salesforce_stg__mc_task": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__task", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_task_1.cb12c7d801", "test.yoda.not_null_analytics___salesforce_stg__mc_task_task_id.cf03e7f289", "test.yoda.unique_analytics___salesforce_stg__mc_task_task_id.0df533b3d4"], "model.yoda.analytics___salesforce_stg__mc_user": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__user_overtime", "model.yoda.analytics___salesforce__user_role_scd", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_user_1.b7a345583f", "test.yoda.not_null_analytics___salesforce_stg__mc_user_user_id.ba2f4f0e35", "test.yoda.unique_analytics___salesforce_stg__mc_user_user_id.e62938aaff"], "model.yoda.analytics___salesforce_stg__opportunity_prediction": ["exposure.yoda.analytics___salesforce__24h", "model.yoda.analytics___salesforce__opportunity", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_1.dc9a0132aa", "test.yoda.not_null_analytics___salesforce_stg__opportunity_prediction_opportunity_id.dbc81edaa6", "test.yoda.not_null_analytics___salesforce_stg__opportunity_prediction_prediction_id.64f233439a", "test.yoda.unique_analytics___salesforce_stg__opportunity_prediction_prediction_id.238d85469e"], "model.yoda.analytics___sms__automation_message_dates": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__automation_message_dates_1.4ec8bc0876", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__automation_message_dates_automation_id__message_date.fc259d88d0", "test.yoda.not_null_analytics___sms__automation_message_dates_automation_id.0825c476ff", "test.yoda.not_null_analytics___sms__automation_message_dates_message_date.1ce8be6560"], "model.yoda.analytics___sms__campaign_message_dates": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__campaign_message_dates_1.ffbda0bcd9", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__campaign_message_dates_campaign_id__message_date.46ebcecbeb", "test.yoda.not_null_analytics___sms__campaign_message_dates_campaign_id.0514713006", "test.yoda.not_null_analytics___sms__campaign_message_dates_message_date.894b1dacb2"], "model.yoda.analytics___sms__deliverability_daily": ["exposure.yoda.analytics___sms__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__deliverability_daily_1.ed5ec677de", "test.yoda.not_null_analytics___sms__deliverability_daily_sms_deliverability_id.a4af05164d", "test.yoda.unique_analytics___sms__deliverability_daily_sms_deliverability_id.b877936313"], "model.yoda.analytics___sms__flow_message_dates": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__flow_message_dates_1.1ec9cc49fd", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__flow_message_dates_flow_id__message_date.f34aa732ba", "test.yoda.not_null_analytics___sms__flow_message_dates_flow_id.5090ceb246", "test.yoda.not_null_analytics___sms__flow_message_dates_message_date.29be2122c3"], "model.yoda.analytics___sms__free_credit_details": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__free_credit_details_1.add0fadb53", "test.yoda.not_null_analytics___sms__free_credit_details_credit_created_at.7c49b5f5fa", "test.yoda.not_null_analytics___sms__free_credit_details_credit_type.78a91a3b84", "test.yoda.not_null_analytics___sms__free_credit_details_free_credit_id.613946642d", "test.yoda.not_null_analytics___sms__free_credit_details_sms_user_id.d1db017895", "test.yoda.unique_analytics___sms__free_credit_details_free_credit_id.b8d6e0a420"], "model.yoda.analytics___sms__organization_metrics_monthly": ["exposure.yoda.analytics___sms__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__organization_metrics_monthly_1.f032af9f64", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__organization_metrics_monthly_month__organization_key.de5cf3249b", "test.yoda.not_null_analytics___sms__organization_metrics_monthly_month.4c1ae2b791", "test.yoda.not_null_analytics___sms__organization_metrics_monthly_organization_key.e4e223c945"], "model.yoda.analytics___sms__purchase": ["exposure.yoda.analytics___sms__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__purchase_1.671a5dc914", "test.yoda.not_null_analytics___sms__purchase_purchase_id.b5ed9e35cb", "test.yoda.unique_analytics___sms__purchase_purchase_id.b73f9e0cdf"], "model.yoda.analytics___sms__store": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly", "model.yoda.analytics___platform__organization_country", "model.yoda.analytics___platform__store", "model.yoda.analytics___platform__store_order_daily", "model.yoda.analytics___sms__deliverability_daily", "model.yoda.analytics___sms__free_credit_details", "model.yoda.analytics___sms__purchase", "model.yoda.analytics___sms__store_activeness_daily", "model.yoda.analytics___sms__store_cohort", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms__store_plan_daily", "model.yoda.analytics___sms__store_receiving_country_metrics", "model.yoda.analytics___sms__user_store_dates_history", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_1.f4bddc02a7", "test.yoda.not_null_analytics___sms__store_app_key.4ae1b748eb", "test.yoda.unique_analytics___sms__store_app_key.c36e729d05"], "model.yoda.analytics___sms__store_activeness_daily": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___platform__store_activeness_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_activeness_daily_1.4432762bd7", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_activeness_daily_activeness_date__app_key.e3dae1fbf0", "test.yoda.not_null_analytics___sms__store_activeness_daily_activeness_date.418c4727f0", "test.yoda.not_null_analytics___sms__store_activeness_daily_app_key.b3bfec3f09"], "model.yoda.analytics___sms__store_cohort": ["exposure.yoda.analytics___sms__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_cohort_1.731435684c", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_cohort_cohort_type__cohort_number__app_key.4339d9bc4e", "test.yoda.not_null_analytics___sms__store_cohort_app_key.c9097fd85a", "test.yoda.not_null_analytics___sms__store_cohort_cohort_number.a60499f07d", "test.yoda.not_null_analytics___sms__store_cohort_cohort_type.a81030d6ce"], "model.yoda.analytics___sms__store_metrics": ["exposure.yoda.analytics___sms__24h", "model.yoda.platform__sms_store_verification", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_1.2243a2968f", "test.yoda.not_null_analytics___sms__store_metrics_app_key.66dbe2259f", "test.yoda.unique_analytics___sms__store_metrics_app_key.9ba09bfff4"], "model.yoda.analytics___sms__store_metrics_daily": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___new_revenue__operational_performance_daily", "model.yoda.analytics___platform__store_product_metrics_daily", "model.yoda.analytics___sms__deliverability_daily", "model.yoda.analytics___sms__store_cohort", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___sms__store_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_daily_1.8628852519", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_daily_date__sms_user_id.12d9c6e5a6", "test.yoda.not_null_analytics___sms__store_metrics_daily_date.e047c841c8", "test.yoda.not_null_analytics___sms__store_metrics_daily_sms_user_id.8a38a6c32b"], "model.yoda.analytics___sms__store_metrics_monthly": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___cs__opportunity_product", "model.yoda.analytics___platform__store_product_activeness_monthly", "model.yoda.analytics___platform__store_product_metrics_monthly", "model.yoda.analytics___salesforce__account_enrichment", "model.yoda.analytics___sms__organization_metrics_monthly", "model.yoda.analytics___sms__store_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_monthly_1.503243a18e", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_monthly_month__app_key.261ef4f277", "test.yoda.not_null_analytics___sms__store_metrics_monthly_app_key.f1f27aa275", "test.yoda.not_null_analytics___sms__store_metrics_monthly_month.1d1fbc529c"], "model.yoda.analytics___sms__store_plan_daily": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___platform__store_plan_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_daily_1.639d995f4b", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_daily_date__app_key.4f5e35cc06", "test.yoda.not_null_analytics___sms__store_plan_daily_app_key.33a248140c", "test.yoda.not_null_analytics___sms__store_plan_daily_date.5d8a176ccd"], "model.yoda.analytics___sms__store_plan_over_time": ["exposure.yoda.analytics___sms__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_over_time_1.1f72d8ea1d", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_over_time_app_key__from_time__row_ranking_for_store_and_created_date.e8a022ecf1", "test.yoda.not_null_analytics___sms__store_plan_over_time_app_key.915904b3b5", "test.yoda.not_null_analytics___sms__store_plan_over_time_from_time.2c20a6ca8e", "test.yoda.not_null_analytics___sms__store_plan_over_time_row_ranking_for_store_and_created_date.a80e2f0af0"], "model.yoda.analytics___sms__store_receiving_country_metrics": ["exposure.yoda.analytics___sms__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_receiving_country_metrics_1.cfb3934611", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_receiving_country_metrics_date__app_key__sms_user_id__plan_name__receiving_country__message_type.c272401986", "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_app_key.62baae9185", "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_date.48c8026dcb", "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_message_type.7c58e62a8d", "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_platform_name.736d64c512", "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_sms_user_id.23e8e685a5"], "model.yoda.analytics___sms__user_activeness_daily": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_activeness_daily", "model.yoda.analytics___sms__user_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_activeness_daily_1.dadc0c9339", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_activeness_daily_activeness_date__sms_user_id.4b9b0451dc", "test.yoda.not_null_analytics___sms__user_activeness_daily_activeness_date.ed1699b965", "test.yoda.not_null_analytics___sms__user_activeness_daily_sms_user_id.19e6a484b5"], "model.yoda.analytics___sms__user_customer": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_customer_1.e8e30e51aa", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_customer_sms_user_id__customer_email.726afcd4b9", "test.yoda.not_null_analytics___sms__user_customer_customer_email.d9a9b17c31", "test.yoda.not_null_analytics___sms__user_customer_sms_user_id.2d20dc9984"], "model.yoda.analytics___sms__user_dates_history": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_cohort", "model.yoda.analytics___sms__store_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_dates_history_1.51a67f0f66", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_dates_history_sms_user_id__category.60f0ec5210", "test.yoda.not_null_analytics___sms__user_dates_history_category.84074f68fb", "test.yoda.not_null_analytics___sms__user_dates_history_sms_user_id.72878c6780"], "model.yoda.analytics___sms__user_installation_over_time": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___sms__user_activeness_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_installation_over_time_1.bd685b143b", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_installation_over_time_sms_user_id__from_time.35da2ba29c", "test.yoda.not_null_analytics___sms__user_installation_over_time_from_time.084809d4ed", "test.yoda.not_null_analytics___sms__user_installation_over_time_sms_user_id.8c0aa751e5"], "model.yoda.analytics___sms__user_metrics_daily": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___sms__store_metrics_daily", "model.yoda.analytics___sms__store_receiving_country_metrics", "model.yoda.analytics___sms__user_dates_history", "model.yoda.analytics___sms__user_store_dates_history", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_metrics_daily_1.c15c39e602", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_metrics_daily_date__sms_user_id.c9e711584a", "test.yoda.not_null_analytics___sms__user_metrics_daily_date.3aa35ebeae", "test.yoda.not_null_analytics___sms__user_metrics_daily_sms_user_id.2cf64f25e9"], "model.yoda.analytics___sms__user_open_over_time": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___sms__user_activeness_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_open_over_time_1.4d8283ec4f", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_open_over_time_sms_user_id__from_time.47a1b16228", "test.yoda.not_null_analytics___sms__user_open_over_time_from_time.c332d22411", "test.yoda.not_null_analytics___sms__user_open_over_time_sms_user_id.648dc00053"], "model.yoda.analytics___sms__user_plan_daily": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_plan_daily", "model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___sms__user_plan_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_daily_1.7a999ca752", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_daily_date__sms_user_id.7bb4b1abb3", "test.yoda.not_null_analytics___sms__user_plan_daily_date.33a3073dd2", "test.yoda.not_null_analytics___sms__user_plan_daily_sms_user_id.60835627af"], "model.yoda.analytics___sms__user_plan_monthly": ["exposure.yoda.analytics___sms__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_monthly_1.c91b897ee1", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_monthly_month__sms_user_id.1b634e671b", "test.yoda.not_null_analytics___sms__user_plan_monthly_month.0820d3b1d1", "test.yoda.not_null_analytics___sms__user_plan_monthly_sms_user_id.3928145ca3"], "model.yoda.analytics___sms__user_plan_over_time": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___sms__user_plan_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_over_time_1.82ee3e55ec", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_over_time_sms_user_id__from_time__row_ranking_for_user_and_created_date.0bac7aea56", "test.yoda.not_null_analytics___sms__user_plan_over_time_from_time.33a87dfaa7", "test.yoda.not_null_analytics___sms__user_plan_over_time_row_ranking_for_user_and_created_date.2af5c52a25", "test.yoda.not_null_analytics___sms__user_plan_over_time_sms_user_id.554ad72120"], "model.yoda.analytics___sms__user_pop_up_status": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___sms__user_pop_up_status_snapshot", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_1.12a6946cb6", "test.yoda.not_null_analytics___sms__user_pop_up_status_sms_user_id.9f7cc77c1e", "test.yoda.unique_analytics___sms__user_pop_up_status_sms_user_id.731b32c4ae"], "model.yoda.analytics___sms__user_pop_up_status_over_time": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__user_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_over_time_1.ddc3058f11", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_pop_up_status_over_time_sms_user_id__from_date.2dd0ca6d86"], "model.yoda.analytics___sms__user_pop_up_status_snapshot": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__user_pop_up_status_over_time"], "model.yoda.analytics___sms__user_store_dates_history": ["exposure.yoda.analytics___sms__24h", "model.yoda.analytics___sms__store_cohort", "model.yoda.analytics___sms__store_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_store_dates_history_1.ceb253056b", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_store_dates_history_sms_user_id__app_key__category.494d86c84a", "test.yoda.not_null_analytics___sms__user_store_dates_history_app_key.296cd0882f", "test.yoda.not_null_analytics___sms__user_store_dates_history_category.bbab7f1a6e", "test.yoda.not_null_analytics___sms__user_store_dates_history_sms_user_id.7cd1d7d381"], "model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__user_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__fact_agg_sms_user_profile_daily_1.b874e00d75", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__fact_agg_sms_user_profile_daily_date__user_id.9411d9994c"], "model.yoda.analytics___sms_stg__free_credit_high_touch_bonus": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__free_credit_details", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_high_touch_bonus_1.cc9e696845"], "model.yoda.analytics___sms_stg__analytics_data": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__store_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__analytics_data_1.6bf1de2585", "test.yoda.not_null_analytics___sms_stg__analytics_data_analytics_data_id.9608a2af02", "test.yoda.unique_analytics___sms_stg__analytics_data_analytics_data_id.ea375a255c"], "model.yoda.analytics___sms_stg__api_calls": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly", "model.yoda.analytics___sms__automation_message_dates", "model.yoda.analytics___sms__campaign_message_dates", "model.yoda.analytics___sms__deliverability_daily", "model.yoda.analytics___sms__flow_message_dates", "model.yoda.analytics___sms__free_credit_details", "model.yoda.analytics___sms__store_cohort", "model.yoda.analytics___sms__store_metrics_monthly", "model.yoda.analytics___sms__store_receiving_country_metrics", "model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__api_calls_1.0e35106141", "test.yoda.not_null_analytics___sms_stg__api_calls_api_call_id.568129cb2a", "test.yoda.unique_analytics___sms_stg__api_calls_api_call_id.a63d25bdda"], "model.yoda.analytics___sms_stg__bigcommerce_user": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__user_installation_over_time", "model.yoda.analytics___sms__user_open_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__bigcommerce_user_1.2f8a1193cf", "test.yoda.not_null_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id.52ff23780e", "test.yoda.unique_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id.083d181b08"], "model.yoda.analytics___sms_stg__campaign": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__campaign_message_dates", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_1.6e36c0b8c5", "test.yoda.not_null_analytics___sms_stg__campaign_campaign_id.2e4875af1d", "test.yoda.unique_analytics___sms_stg__campaign_campaign_id.8cc2699c93"], "model.yoda.analytics___sms_stg__campaign_deletion_tracking": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms_stg__campaign", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_deletion_tracking_1.92e95b6a0c", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__campaign_deletion_tracking_campaign_id__is_logical_deleted.830a953547", "test.yoda.not_null_analytics___sms_stg__campaign_deletion_tracking_campaign_id.ad36d4faf6", "test.yoda.not_null_analytics___sms_stg__campaign_deletion_tracking_is_logical_deleted.8c745647d1"], "model.yoda.analytics___sms_stg__campaign_list": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_list_1.53789ded76", "test.yoda.not_null_analytics___sms_stg__campaign_list_campaign_list_id.0889d20f03", "test.yoda.unique_analytics___sms_stg__campaign_list_campaign_list_id.f65a441bf5"], "model.yoda.analytics___sms_stg__campaign_relation": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_relation_1.0709383063", "test.yoda.not_null_analytics___sms_stg__campaign_relation_campaign_relation_id.01984fc04d", "test.yoda.unique_analytics___sms_stg__campaign_relation_campaign_relation_id.e0081a0a4f"], "model.yoda.analytics___sms_stg__default_predefined_message": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__default_predefined_message_1.2179eda3ee", "test.yoda.not_null_analytics___sms_stg__default_predefined_message_template_id.2e1f7c861f", "test.yoda.unique_analytics___sms_stg__default_predefined_message_template_id.2870f5f492"], "model.yoda.analytics___sms_stg__email_charge": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___finance__communication_store_product_usage_revenue_monthly", "test.yoda.accepted_values_analytics___sms_stg__email_charge_currency__USD.3088c35bba", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__email_charge_1.31aee7432b", "test.yoda.not_null_analytics___sms_stg__email_charge_currency.4ecbbe716b", "test.yoda.not_null_analytics___sms_stg__email_charge_email_charge_id.314c08ee94", "test.yoda.unique_analytics___sms_stg__email_charge_email_charge_id.88a79f413b"], "model.yoda.analytics___sms_stg__event": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__automation_message_dates", "model.yoda.analytics___sms__store_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_1.1481ad6982", "test.yoda.not_null_analytics___sms_stg__event_event_id.7c70674ed4", "test.yoda.unique_analytics___sms_stg__event_event_id.b1ae672149"], "model.yoda.analytics___sms_stg__event_deletion_tracking": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms_stg__event", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_deletion_tracking_1.3fdf147bb9", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__event_deletion_tracking_event_id__is_logical_deleted.3215c296e6", "test.yoda.not_null_analytics___sms_stg__event_deletion_tracking_event_id.aad13cd2d0", "test.yoda.not_null_analytics___sms_stg__event_deletion_tracking_is_logical_deleted.4bc68e5556"], "model.yoda.analytics___sms_stg__flow": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__flow_message_dates", "model.yoda.analytics___sms__store_metrics", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_1.ef23600f5b", "test.yoda.not_null_analytics___sms_stg__flow_flow_id.d057f09c87", "test.yoda.unique_analytics___sms_stg__flow_flow_id.00e5a420fc"], "model.yoda.analytics___sms_stg__flow_deletion_tracking": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms_stg__flow", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_deletion_tracking_1.790497ab87", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__flow_deletion_tracking_flow_id__is_logical_deleted.28b27600d8", "test.yoda.not_null_analytics___sms_stg__flow_deletion_tracking_flow_id.95d3a0af30", "test.yoda.not_null_analytics___sms_stg__flow_deletion_tracking_is_logical_deleted.c90de52b91"], "model.yoda.analytics___sms_stg__form": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__user_pop_up_status", "test.yoda.accepted_values_analytics___sms_stg__form_is_dynamic_popup__0__1.b6e7c6b4a0", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__form_1.451d930639"], "model.yoda.analytics___sms_stg__free_credit_log": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__free_credit_details", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_log_1.140b7330dd", "test.yoda.not_null_analytics___sms_stg__free_credit_log_free_credit_log_id.92d6397f1e", "test.yoda.unique_analytics___sms_stg__free_credit_log_free_credit_log_id.d89be83a66"], "model.yoda.analytics___sms_stg__list": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__list_1.a5ab72d384", "test.yoda.not_null_analytics___sms_stg__list_list_id.76cfee039f", "test.yoda.unique_analytics___sms_stg__list_list_id.ea2f670be6"], "model.yoda.analytics___sms_stg__loyalty_flow": ["exposure.yoda.analytics___sms__staging_24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__loyalty_flow_1.0e978e780f", "test.yoda.not_null_analytics___sms_stg__loyalty_flow_flow_id.edcc8e2992", "test.yoda.unique_analytics___sms_stg__loyalty_flow_flow_id.7842cb6a45"], "model.yoda.analytics___sms_stg__organization_identifier_conversion": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__store", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__organization_identifier_conversion_1.5f7d34fc26", "test.yoda.not_null_analytics___sms_stg__organization_identifier_conversion_organization_id.8211799e55", "test.yoda.unique_analytics___sms_stg__organization_identifier_conversion_organization_id.d2cdc53d89"], "model.yoda.analytics___sms_stg__plan": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__store_plan_over_time", "model.yoda.analytics___sms__user_plan_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__plan_1.7829c012c2", "test.yoda.not_null_analytics___sms_stg__plan_plan_id.d2cf504db2", "test.yoda.unique_analytics___sms_stg__plan_plan_id.1bfc36b301"], "model.yoda.analytics___sms_stg__purchase": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__free_credit_details", "model.yoda.analytics___sms__purchase", "model.yoda.analytics___sms__user_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__purchase_1.a1735bbd5c", "test.yoda.not_null_analytics___sms_stg__purchase_purchase_id.94e0e9df49", "test.yoda.unique_analytics___sms_stg__purchase_purchase_id.909b5ae18b"], "model.yoda.analytics___sms_stg__segment_sms_campaign": ["exposure.yoda.analytics___sms__staging_24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__segment_sms_campaign_1.ed1541f2c3", "test.yoda.not_null_analytics___sms_stg__segment_sms_campaign_created_at.9496b7b68e", "test.yoda.not_null_analytics___sms_stg__segment_sms_campaign_message_id.92fc44f787", "test.yoda.unique_analytics___sms_stg__segment_sms_campaign_message_id.3ee1be1b40"], "model.yoda.analytics___sms_stg__shopify_campaign_order": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_campaign_order_1.713ed05fab", "test.yoda.not_null_analytics___sms_stg__shopify_campaign_order_order_attribution_id.25777d50f3", "test.yoda.unique_analytics___sms_stg__shopify_campaign_order_order_attribution_id.fa5455b3a8"], "model.yoda.analytics___sms_stg__shopify_customer": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__user_customer", "model.yoda.analytics___sms__user_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_customer_1.45c5ed49f6", "test.yoda.not_null_analytics___sms_stg__shopify_customer_shopify_customer_internal_id.c97ecf6b69", "test.yoda.unique_analytics___sms_stg__shopify_customer_shopify_customer_internal_id.2012ed1458"], "model.yoda.analytics___sms_stg__shopify_flow_order": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_flow_order_1.de05f701f6", "test.yoda.not_null_analytics___sms_stg__shopify_flow_order_order_attribution_id.c37f548479", "test.yoda.unique_analytics___sms_stg__shopify_flow_order_order_attribution_id.37d90edfd1"], "model.yoda.analytics___sms_stg__shopify_orders": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___platform__store_order_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_orders_1.11db598530", "test.yoda.not_null_analytics___sms_stg__shopify_orders_order_line_id.63c7c1c764", "test.yoda.unique_analytics___sms_stg__shopify_orders_order_line_id.b7fc40909e"], "model.yoda.analytics___sms_stg__shopify_segment": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_segment_1.9aa58fa3a4", "test.yoda.not_null_analytics___sms_stg__shopify_segment_segment_id.b05d38783b", "test.yoda.unique_analytics___sms_stg__shopify_segment_segment_id.7b34c480b5"], "model.yoda.analytics___sms_stg__shopify_user": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__user_installation_over_time", "model.yoda.analytics___sms__user_open_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_user_1.862a063db4", "test.yoda.not_null_analytics___sms_stg__shopify_user_shopify_user_id.f0336d7360", "test.yoda.unique_analytics___sms_stg__shopify_user_shopify_user_id.c0bac38cb2"], "model.yoda.analytics___sms_stg__sms_user": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__store", "model.yoda.analytics___sms__store_plan_over_time", "model.yoda.analytics___sms__user_installation_over_time", "model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___sms__user_open_over_time", "model.yoda.analytics___sms__user_plan_over_time", "model.yoda.analytics___sms__user_pop_up_status", "model.yoda.analytics___sms_stg__user_date_explode_from_creation", "model.yoda.platform__sms_store_verification", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__sms_user_1.3707c4d202", "test.yoda.not_null_analytics___sms_stg__sms_user_sms_user_id.ee715eacd8", "test.yoda.unique_analytics___sms_stg__sms_user_sms_user_id.490873732c"], "model.yoda.analytics___sms_stg__track_flow_adoption": ["exposure.yoda.analytics___sms__staging_24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__track_flow_adoption_1.33191f793d", "test.yoda.not_null_analytics___sms_stg__track_flow_adoption_flow_adoption_id.f27cbca06e", "test.yoda.unique_analytics___sms_stg__track_flow_adoption_flow_adoption_id.e1be7f4dd9"], "model.yoda.analytics___sms_stg__user_date_explode_from_creation": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__user_activeness_daily", "model.yoda.analytics___sms__user_metrics_daily", "model.yoda.analytics___sms__user_plan_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_date_explode_from_creation_1.bde74b930d", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__user_date_explode_from_creation_date__sms_user_id.4be7d2f30b", "test.yoda.not_null_analytics___sms_stg__user_date_explode_from_creation_date.261a50fcfa"], "model.yoda.analytics___sms_stg__user_event_log": ["exposure.yoda.analytics___sms__staging_24h", "model.yoda.analytics___sms__free_credit_details", "model.yoda.analytics___sms__store_plan_over_time", "model.yoda.analytics___sms__user_installation_over_time", "model.yoda.analytics___sms__user_open_over_time", "model.yoda.analytics___sms__user_plan_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_event_log_1.312315ba21", "test.yoda.not_null_analytics___sms_stg__user_event_log_event_id.b453540b82", "test.yoda.unique_analytics___sms_stg__user_event_log_event_id.d78a562339"], "model.yoda.analytics___subscriptions__contract_over_time": ["exposure.yoda.analytics___subscriptions__24h", "model.yoda.analytics___subscriptions__subscription_contract_daily", "model.yoda.analytics___subscriptions__subscription_contract_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__contract_over_time_1.f721df90e4", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__contract_over_time_app_key__from_time__to_time__subscription_contract_id.a4c467bc5b", "test.yoda.not_null_analytics___subscriptions__contract_over_time_app_key.eb1cc36551", "test.yoda.not_null_analytics___subscriptions__contract_over_time_from_time.ea49a1a71e", "test.yoda.not_null_analytics___subscriptions__contract_over_time_subscription_contract_id.afe55a364d", "test.yoda.not_null_analytics___subscriptions__contract_over_time_to_time.a7841aa00e"], "model.yoda.analytics___subscriptions__store": ["exposure.yoda.analytics___subscriptions__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_1.34ac5e53e0", "test.yoda.not_null_analytics___subscriptions__store_app_key.08a51eda61", "test.yoda.unique_analytics___subscriptions__store_app_key.9ef591e5eb"], "model.yoda.analytics___subscriptions__store_activeness_daily": ["exposure.yoda.analytics___subscriptions__24h", "model.yoda.analytics___platform__store_activeness_daily", "model.yoda.analytics___subscriptions__store_feature_activation", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_activeness_daily_1.094fb6643f", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_activeness_daily_activeness_date__app_key.bb85741a83", "test.yoda.not_null_analytics___subscriptions__store_activeness_daily_activeness_date.ee63973cf7", "test.yoda.not_null_analytics___subscriptions__store_activeness_daily_app_key.00b4f16e92"], "model.yoda.analytics___subscriptions__store_feature_activation": ["exposure.yoda.analytics___subscriptions__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_feature_activation_1.8d5d5298a3", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_feature_activation_app_key__feature_name.b3a24c2bb2", "test.yoda.not_null_analytics___subscriptions__store_feature_activation_app_key.20fc1e9ad2", "test.yoda.not_null_analytics___subscriptions__store_feature_activation_feature_name.7d69d75c9c"], "model.yoda.analytics___subscriptions__store_installation_over_time": ["exposure.yoda.analytics___subscriptions__24h", "model.yoda.analytics___subscriptions__store_activeness_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_installation_over_time_1.78f443f9ee", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_installation_over_time_app_key__from_time.7622c74e4b", "test.yoda.not_null_analytics___subscriptions__store_installation_over_time_app_key.5c5e205994", "test.yoda.not_null_analytics___subscriptions__store_installation_over_time_from_time.9a7d4d93c3"], "model.yoda.analytics___subscriptions__subscription_contract_daily": ["exposure.yoda.analytics___subscriptions__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_daily_1.c0a7f26b24", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_daily_app_key__date__subscription_contract_status_id.55e676ee06", "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_app_key.43cd3ad301", "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_date.d3d90c8094", "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status.a93d10ba55", "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status_id.c972a8540d"], "model.yoda.analytics___subscriptions__subscription_contract_monthly": ["exposure.yoda.analytics___subscriptions__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_monthly_1.54db6ef4fc", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_monthly_app_key__month__subscription_contract_status_id.2217450d3a", "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_app_key.3ddafaed5f", "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_month.cfc865b9a1", "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status.3aa7143fde", "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status_id.bebb1bf4ce"], "model.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot": ["exposure.yoda.analytics___subscriptions__24h"], "model.yoda.analytics___subscriptions_stg__subscription_ended_v2": ["exposure.yoda.analytics___subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_ended_v2_1.6d6c36a6b0"], "model.yoda.analytics___subscriptions_stg__subscription_started_v2": ["exposure.yoda.analytics___subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_started_v2_1.548aa7a7be"], "model.yoda.analytics___subscriptions_stg__contract_event_details": ["exposure.yoda.analytics___subscriptions__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_event_details_1.708aff8138", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_event_details_app_key__event_created_at__contract_id.7776609e85", "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_app_key.fd876ab8bb", "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_contract_id.cb1646dc14", "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_event_created_at.0d93935f72", "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_status_id.fdfae2edbf"], "model.yoda.analytics___subscriptions_stg__contract_snapshot": ["exposure.yoda.analytics___subscriptions__24h", "model.yoda.analytics___subscriptions__contract_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_snapshot_1.b7c50a7e65", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id__app_key__updated_at.d0faa80564", "test.yoda.not_null_analytics___subscriptions_stg__contract_snapshot_app_key.effd01aca2", "test.yoda.not_null_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id.c8fafa20ce"], "model.yoda.analytics___subscriptions_stg__customer_journey_event": ["exposure.yoda.analytics___subscriptions__24h", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__customer_journey_event_1.e2a10c9828", "test.yoda.not_null_analytics___subscriptions_stg__customer_journey_event_journey_event_id.9b3eedfd0f", "test.yoda.unique_analytics___subscriptions_stg__customer_journey_event_journey_event_id.c80c9d4ef0"], "model.yoda.analytics___subscriptions_stg__mc_app_webhook": ["exposure.yoda.analytics___subscriptions__24h"], "model.yoda.analytics___subscriptions_stg__mc_product": ["exposure.yoda.analytics___subscriptions__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_product_1.a71b24154f", "test.yoda.not_null_analytics___subscriptions_stg__mc_product_product_id.af3ee8cbb8", "test.yoda.unique_analytics___subscriptions_stg__mc_product_product_id.4c52e4bd15"], "model.yoda.analytics___subscriptions_stg__mc_selling_plan": ["exposure.yoda.analytics___subscriptions__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_1.407e580603", "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id.d7668b80cb", "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id.59fd8b105c"], "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group": ["exposure.yoda.analytics___subscriptions__24h", "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id.d2f7df0555", "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id.b9cc1e66c4"], "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product": ["exposure.yoda.analytics___subscriptions__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_group_product_1.ebc32382de", "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id.7b725cc447", "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id.df899a9d29"], "model.yoda.analytics___subscriptions_stg__mc_status": ["exposure.yoda.analytics___subscriptions__24h", "model.yoda.analytics___subscriptions__contract_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_status_1.854cb7f2ef", "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_id.a541e7b3ac", "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_name.254ed69a12", "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_number.ad6508ce95", "test.yoda.unique_analytics___subscriptions_stg__mc_status_status_id.2b49d6d937"], "model.yoda.analytics___subscriptions_stg__mc_subscription_contract": ["exposure.yoda.analytics___subscriptions__24h", "model.yoda.analytics___subscriptions__contract_over_time", "model.yoda.analytics___subscriptions__subscription_contract_daily", "model.yoda.analytics___subscriptions__subscription_contract_monthly", "model.yoda.analytics___subscriptions_stg__contract_event_details", "model.yoda.analytics___subscriptions_stg__contract_snapshot", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_1.702fb87f22", "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_app_key.f2d2b80d1f", "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id.32d06bde10", "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id.915c60d6c0"], "model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order": ["exposure.yoda.analytics___subscriptions__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_order_1.b320df335e", "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_order_app_key.a1c6a31e25", "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id.3bf0d39584", "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id.9359322c5e"], "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request": ["exposure.yoda.analytics___subscriptions__24h", "model.yoda.analytics___subscriptions__store", "model.yoda.analytics___subscriptions_stg__subscriptions_store", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_creation_request_1.d94bb1038d", "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id.21230cd84a", "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id.1abd886432"], "model.yoda.analytics___subscriptions_stg__segment_subscription_ended_v_two": ["exposure.yoda.analytics___subscriptions__24h", "model.yoda.analytics___subscriptions__store_feature_activation", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_ended_v_two_1.bedc844c4a", "test.yoda.not_null_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id.0ec80372f0", "test.yoda.unique_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id.66f95d75ca"], "model.yoda.analytics___subscriptions_stg__segment_subscription_started_v_two": ["exposure.yoda.analytics___subscriptions__24h", "model.yoda.analytics___subscriptions__store_feature_activation", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_started_v_two_1.ecf07b9f7b", "test.yoda.not_null_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id.6ffdf73ddf", "test.yoda.unique_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id.d42993d6a1"], "model.yoda.analytics___subscriptions_stg__subscriptions_store": ["exposure.yoda.analytics___subscriptions__24h", "model.yoda.analytics___subscriptions__subscription_contract_daily", "model.yoda.analytics___subscriptions__subscription_contract_monthly", "model.yoda.analytics___synergies__store_activeness_daily", "model.yoda.analytics___synergies__store_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscriptions_store_1.de18534c11", "test.yoda.not_null_analytics___subscriptions_stg__subscriptions_store_app_key.7942022444", "test.yoda.unique_analytics___subscriptions_stg__subscriptions_store_app_key.3886a3df6b"], "model.yoda.analytics___synergies__activation_level_daily": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___platform__store_product_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__activation_level_daily_1.3140e90624", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__activation_level_daily_activeness_date__app_key.b8424f7b0c", "test.yoda.not_null_analytics___synergies__activation_level_daily_activeness_date.84e6dd6a57", "test.yoda.not_null_analytics___synergies__activation_level_daily_app_key.72da946758"], "model.yoda.analytics___synergies__eligible_store_monthly": ["exposure.yoda.analytics___synergies__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__eligible_store_monthly_1.3d0937d0fa", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__eligible_store_monthly_synergy_month__app_key__synergy_id.22e3c9c72a", "test.yoda.not_null_analytics___synergies__eligible_store_monthly_app_key.1914c2f746", "test.yoda.not_null_analytics___synergies__eligible_store_monthly_synergy_id.63ab4f85a7", "test.yoda.not_null_analytics___synergies__eligible_store_monthly_synergy_month.aa5c8d2f0b"], "model.yoda.analytics___synergies__kpi_ranked_action": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__loyalty_store_metrics_monthly", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__kpi_ranked_action_1.26b68aef97", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__kpi_ranked_action_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id.0f755cad91", "test.yoda.not_null_analytics___synergies__kpi_ranked_action_app_key.e66b331f14", "test.yoda.not_null_analytics___synergies__kpi_ranked_action_source_id.24e8689291", "test.yoda.not_null_analytics___synergies__kpi_ranked_action_source_type.f591a8ea3e", "test.yoda.not_null_analytics___synergies__kpi_ranked_action_synergy_id.f57d4318b3"], "model.yoda.analytics___synergies__loyalty_store_metrics_monthly": ["exposure.yoda.analytics___synergies__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_metrics_monthly_1.f5a5480524", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_metrics_monthly_synergy_month__app_key.2f59dc6331", "test.yoda.not_null_analytics___synergies__loyalty_store_metrics_monthly_app_key.87b4d192d0", "test.yoda.not_null_analytics___synergies__loyalty_store_metrics_monthly_synergy_month.897d6bad2d"], "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_synergy_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_synergy_metrics_monthly_1.d3aa71542d", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id.a72eb611ac", "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_app_key.f8ef238f52", "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_id.35170d967c", "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month.1fd7c4260c"], "model.yoda.analytics___synergies__organization_synergy_activeness_monthly": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___platform__organization_segment_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__organization_synergy_activeness_monthly_1.833ae826f0", "test.yoda.not_null_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id.e4c71acd8a", "test.yoda.unique_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id.61f1af692a"], "model.yoda.analytics___synergies__store_activeness_daily": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_enablement_daily", "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_daily_1.851284ac04", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_daily_synergy_id__activeness_date__app_key.491cf6b0a8", "test.yoda.not_null_analytics___synergies__store_activeness_daily_activeness_date.0c44d56959", "test.yoda.not_null_analytics___synergies__store_activeness_daily_app_key.4c62dab59d", "test.yoda.not_null_analytics___synergies__store_activeness_daily_synergy_id.8ed2c45d8f"], "model.yoda.analytics___synergies__store_activeness_monthly": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__eligible_store_monthly", "model.yoda.analytics___synergies__organization_synergy_activeness_monthly", "model.yoda.analytics___synergies__store_enablement_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_monthly_1.67b317255f", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_monthly_app_key__synergy_month__synergy_id.5890b97bea", "test.yoda.not_null_analytics___synergies__store_activeness_monthly_app_key.32980f35f1", "test.yoda.not_null_analytics___synergies__store_activeness_monthly_synergy_id.73179feb49", "test.yoda.not_null_analytics___synergies__store_activeness_monthly_synergy_month.872f2e9cd2"], "model.yoda.analytics___synergies__store_enablement_daily": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___subscriptions__store_feature_activation", "model.yoda.analytics___synergies__activation_level_daily", "model.yoda.analytics___synergies__store_enablement_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_daily_1.58b47e9d83", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_daily_synergy_date__app_key__synergy_id.926cbeb0ff", "test.yoda.not_null_analytics___synergies__store_enablement_daily_app_key.dde758627d", "test.yoda.not_null_analytics___synergies__store_enablement_daily_synergy_date.5f66ebab8e", "test.yoda.not_null_analytics___synergies__store_enablement_daily_synergy_id.cfd7e75be5"], "model.yoda.analytics___synergies__store_enablement_monthly": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__eligible_store_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_monthly_1.73bb740d22", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_monthly_synergy_month__app_key__synergy_id.ac76283542", "test.yoda.not_null_analytics___synergies__store_enablement_monthly_app_key.702d12e3b1", "test.yoda.not_null_analytics___synergies__store_enablement_monthly_synergy_id.3b524edbf2", "test.yoda.not_null_analytics___synergies__store_enablement_monthly_synergy_month.f62218a7e0"], "model.yoda.analytics___synergies__store_enablement_over_time": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_enablement_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_over_time_1.c138651cf5", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_over_time_app_key__synergy_id__from_time.a0c81c697b", "test.yoda.not_null_analytics___synergies__store_enablement_over_time_app_key.32ef98e888", "test.yoda.not_null_analytics___synergies__store_enablement_over_time_from_time.02cb597eca", "test.yoda.not_null_analytics___synergies__store_enablement_over_time_synergy_id.3305f8662d"], "model.yoda.analytics___synergies__store_last_thirty_days_activeness_daily": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__activation_level_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_last_thirty_days_activeness_daily_1.9bd60f3d3c", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id__activeness_date__app_key.894f454cd1", "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_activeness_date.f67191ee40", "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_app_key.6d013dc48c", "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id.8f39499aa6"], "model.yoda.analytics___synergies__store_synergy_metrics_monthly": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__synergy_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_synergy_metrics_monthly_1.507d6f163f", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_synergy_metrics_monthly_synergy_month__app_key__synergy_id__metric_name.a98223feff", "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_app_key.02ef3aa81e", "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_metric_name.da7aaad9b4", "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_id.82cc06f14c", "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_month.0ac49bf360"], "model.yoda.analytics___synergies__synergy_metrics_monthly": ["exposure.yoda.analytics___synergies__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__synergy_metrics_monthly_1.fd220b4844", "test.yoda.not_null_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id.a13a970968", "test.yoda.unique_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id.0d3a695823"], "model.yoda.analytics___synergies__ugc_store_metrics_monthly": ["exposure.yoda.analytics___synergies__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_metrics_monthly_1.52ccee81dc", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_metrics_monthly_synergy_month__app_key.1344c9d2d5", "test.yoda.not_null_analytics___synergies__ugc_store_metrics_monthly_app_key.75603f946d", "test.yoda.not_null_analytics___synergies__ugc_store_metrics_monthly_synergy_month.4f18d8d4d6"], "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_synergy_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_synergy_metrics_monthly_1.e7f414d99d", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id.a1faf90280", "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_app_key.bae999bfe8", "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_id.b10bee05e2", "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month.3ae6c80717"], "model.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_activeness_daily"], "model.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_activeness_daily"], "model.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_activeness_daily"], "model.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_activeness_daily"], "model.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_activeness_daily"], "model.yoda.analytics___synergies_stg__enablement_event": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_enablement_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__enablement_event_1.a8864ee9dc", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies_stg__enablement_event_app_key__widget_id__updated_at.9b112674ca", "test.yoda.not_null_analytics___synergies_stg__enablement_event_app_key.76fcb32c34", "test.yoda.not_null_analytics___synergies_stg__enablement_event_updated_at.21bf468446", "test.yoda.not_null_analytics___synergies_stg__enablement_event_widget_id.4957052cb7"], "model.yoda.analytics___synergies_stg__home_screen_section": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_activeness_monthly", "model.yoda.analytics___synergies__store_enablement_over_time", "model.yoda.analytics___synergies_stg__synergy_widget", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_section_1.6bb04a8b5f", "test.yoda.not_null_analytics___synergies_stg__home_screen_section_section_id.dde5fb0656", "test.yoda.unique_analytics___synergies_stg__home_screen_section_section_id.4d0b6fc004"], "model.yoda.analytics___synergies_stg__home_screen_widget": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_activeness_monthly", "model.yoda.analytics___synergies__store_enablement_over_time", "model.yoda.analytics___synergies_stg__synergy_widget", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_1.12bcc2f246", "test.yoda.not_null_analytics___synergies_stg__home_screen_widget_widget_id.8689f866f2", "test.yoda.unique_analytics___synergies_stg__home_screen_widget_widget_id.3783cc3799"], "model.yoda.analytics___synergies_stg__home_screen_widget_configuration": ["exposure.yoda.analytics___synergies__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_configuration_1.de22ba73a1", "test.yoda.not_null_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id.081c36060e", "test.yoda.unique_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id.597f20ed79"], "model.yoda.analytics___synergies_stg__synergy_widget": ["exposure.yoda.analytics___synergies__24h", "model.yoda.analytics___synergies__store_activeness_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__synergy_widget_1.a10bbb825f", "test.yoda.not_null_analytics___synergies_stg__synergy_widget_widget_id.3fc9fb7c27", "test.yoda.unique_analytics___synergies_stg__synergy_widget_widget_id.d1ea36462d"], "model.yoda.analytics___ugc__active_metrics_monthly": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__active_metrics_monthly_1.4a122bedee", "test.yoda.not_null_analytics___ugc__active_metrics_monthly_metrics_id.be59d583d1", "test.yoda.unique_analytics___ugc__active_metrics_monthly_metrics_id.cd059a648d"], "model.yoda.analytics___ugc__image": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__image_1.47d3787714", "test.yoda.not_null_analytics___ugc__image_image_id.0162a8e5be", "test.yoda.unique_analytics___ugc__image_image_id.ba2637444f"], "model.yoda.analytics___ugc__order_to_review_rate_cohort": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__order_to_review_rate_cohort_1.24d4a0af4b", "test.yoda.not_null_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id.f0d74a7394", "test.yoda.unique_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id.a627e345d6"], "model.yoda.analytics___ugc__organization_first_time_activity_metrics": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__owner_first_time_activity_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_first_time_activity_metrics_1.e770d90630"], "model.yoda.analytics___ugc__organization_metrics_monthly": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_metrics_monthly_1.6b4b3f7cbf", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__organization_metrics_monthly_metric_month__organization_key.d1c5a17e8e", "test.yoda.not_null_analytics___ugc__organization_metrics_monthly_metric_month.a27595dbc1", "test.yoda.not_null_analytics___ugc__organization_metrics_monthly_organization_key.5222d1cf40"], "model.yoda.analytics___ugc__owner_first_time_activity_metrics": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_first_time_activity_metrics_1.a83c5a171a", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__owner_first_time_activity_metrics_owner_id__owner_type.bd345030f9", "test.yoda.not_null_analytics___ugc__owner_first_time_activity_metrics_owner_id.0db71e17e3", "test.yoda.not_null_analytics___ugc__owner_first_time_activity_metrics_owner_type.000b78d478"], "model.yoda.analytics___ugc__owner_order_to_review_monthly": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_order_to_review_monthly_1.a8f9518409", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__owner_order_to_review_monthly_owner_id__owner_type__month.78d91128ab"], "model.yoda.analytics___ugc__platform_order_to_review_monthly": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__platform_order_to_review_monthly_1.344b78f570", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__platform_order_to_review_monthly_month__closing_plan_group__platform__last_3m_orders_avg_bucket__postman_enabled.9a0f5c1cc0", "test.yoda.not_null_analytics___ugc__platform_order_to_review_monthly_month.facc9b995e"], "model.yoda.analytics___ugc__postman_feature_email_usage_monthly": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__postman_feature_email_usage_monthly_1.c886495d8c", "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_email_sent_month.92c2bb76ba", "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_is_postman_enabled.a9a288b413", "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id.db29533c75", "test.yoda.unique_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id.6cd0e845b1"], "model.yoda.analytics___ugc__review": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___synergies__ugc_store_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly", "model.yoda.analytics___ugc__review_request", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc__store_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_1.324968d72d", "test.yoda.not_null_analytics___ugc__review_review_id.a1469a8d82", "test.yoda.unique_analytics___ugc__review_review_id.1b6c9b9032"], "model.yoda.analytics___ugc__review_request": ["exposure.yoda.analytics___ugc__24h", "model.yoda.support__review_request", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_1.d18d50dbe2", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_channel_name__channel_message_id.1d214ff05a", "test.yoda.not_null_analytics___ugc__review_request_channel_message_id.d1c9073545", "test.yoda.not_null_analytics___ugc__review_request_channel_name.c8cd833bf6"], "model.yoda.analytics___ugc__review_request_token": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__review_request_token_message", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_1.a0d5fe504e", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_channel_name__review_request_token_id.62b29c2b49", "test.yoda.not_null_analytics___ugc__review_request_token_token.d8ef92cf0c"], "model.yoda.analytics___ugc__review_request_token_message": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__review_request", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_message_1.a0e41528a1", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_message_channel_name__review_request_token_id__channel_message_id.904160e48d", "test.yoda.not_null_analytics___ugc__review_request_token_message_channel_message_id.b91e2d1d77", "test.yoda.not_null_analytics___ugc__review_request_token_message_channel_name.dc729be2e3", "test.yoda.not_null_analytics___ugc__review_request_token_message_review_request_token_id.161c203dfd"], "model.yoda.analytics___ugc__store": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__order_to_review_rate_cohort", "model.yoda.analytics___ugc__organization_metrics_monthly", "model.yoda.analytics___ugc__postman_feature_email_usage_monthly", "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort", "model.yoda.analytics___ugc__store_first_time_activity_metrics", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc__store_metrics_daily_24m", "model.yoda.analytics___ugc__store_widget_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_1.5d3063e2a5", "test.yoda.not_null_analytics___ugc__store_app_key.405614a37b", "test.yoda.not_null_analytics___ugc__store_store_id.a00f663f7d", "test.yoda.unique_analytics___ugc__store_app_key.34f069379e", "test.yoda.unique_analytics___ugc__store_store_id.b6317d5494"], "model.yoda.analytics___ugc__store_enablement_to_pixel_event_cohort": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_enablement_to_pixel_event_cohort_1.b1ff78daf3", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key__widget_element_v3__pixel_event_v3_month.8037deec6c", "test.yoda.not_null_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key.f4f2fbdb44"], "model.yoda.analytics___ugc__store_feature_over_time": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc__store_metrics_daily_24m", "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_organization_owner__0.eb01fab611", "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_store_owner__1.955434b684", "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_user_owner__0.8fc5e0eb2b", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_feature_over_time_1.f91a26b0cb", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_feature_over_time_source_id__store_id__feature_id__from_date__to_date.292a9e16a5", "test.yoda.not_null_analytics___ugc__store_feature_over_time_feature_id.3ca7ae5b7d", "test.yoda.not_null_analytics___ugc__store_feature_over_time_from_date.7d669669af", "test.yoda.not_null_analytics___ugc__store_feature_over_time_source_id.f2748b048b", "test.yoda.not_null_analytics___ugc__store_feature_over_time_store_id.c0ec402331", "test.yoda.not_null_analytics___ugc__store_feature_over_time_to_date.a32b4c2cef"], "model.yoda.analytics___ugc__store_first_time_activity_metrics": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__organization_first_time_activity_metrics", "model.yoda.analytics___ugc__owner_first_time_activity_metrics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_first_time_activity_metrics_1.0613283fc4", "test.yoda.not_null_analytics___ugc__store_first_time_activity_metrics_app_key.cc9670afe5", "test.yoda.unique_analytics___ugc__store_first_time_activity_metrics_app_key.3aa1ca5a92"], "model.yoda.analytics___ugc__store_installation_over_time": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___platform__store_activeness_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_installation_over_time_1.b6666b70ca", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_installation_over_time_app_key__from_time.a70955b949", "test.yoda.not_null_analytics___ugc__store_installation_over_time_app_key.19a3e4b522", "test.yoda.not_null_analytics___ugc__store_installation_over_time_from_time.76e51caa47"], "model.yoda.analytics___ugc__store_metrics_daily": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___platform__store_product_metrics_daily", "model.yoda.analytics___ugc__active_metrics_monthly", "model.yoda.analytics___ugc__organization_metrics_monthly", "model.yoda.analytics___ugc__platform_order_to_review_monthly", "model.yoda.analytics___ugc__postman_feature_email_usage_monthly", "model.yoda.analytics___ugc__store_first_time_activity_metrics", "model.yoda.analytics___ugc__store_metrics_daily_24m", "model.yoda.analytics___ugc__store_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_1.a539e46a89", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_metric_date__app_key.112a1b66cf", "test.yoda.not_null_analytics___ugc__store_metrics_daily_app_key.e01288e581", "test.yoda.not_null_analytics___ugc__store_metrics_daily_metric_date.1f726f3aa4"], "model.yoda.analytics___ugc__store_metrics_daily_24m": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_24m_1.e51d9b69d8", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_24m_metric_date__app_key.4970dec896", "test.yoda.not_null_analytics___ugc__store_metrics_daily_24m_app_key.f9a2090544", "test.yoda.not_null_analytics___ugc__store_metrics_daily_24m_metric_date.9bf1825ce3"], "model.yoda.analytics___ugc__store_metrics_monthly": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___platform__store_product_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly", "model.yoda.analytics___ugc__order_to_review_rate_cohort", "model.yoda.analytics___ugc__store_product_activeness_monthly", "model.yoda.analytics___ugc__store_widget_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_monthly_1.24eea2db84", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_monthly_metric_month__app_key.517b629212", "test.yoda.not_null_analytics___ugc__store_metrics_monthly_app_key.1073499c24", "test.yoda.not_null_analytics___ugc__store_metrics_monthly_metric_month.c3d4f10df5"], "model.yoda.analytics___ugc__store_product_activeness_monthly": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___platform__store_product_activeness_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_product_activeness_monthly_1.50a62efcf1", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_product_activeness_monthly_activeness_month__app_key.60e55c84b7", "test.yoda.not_null_analytics___ugc__store_product_activeness_monthly_activeness_month.9f374e83a9", "test.yoda.not_null_analytics___ugc__store_product_activeness_monthly_app_key.6cb5d16c3d"], "model.yoda.analytics___ugc__store_widget_metrics_monthly": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_widget_metrics_monthly_1.cbe0147ee1", "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_app_key.81856455ca", "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_month.769efb0e90", "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id.b99dcb3c0c", "test.yoda.unique_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id.824457c223"], "model.yoda.analytics___ugc__unmigrated_review_request_token": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__unmigrated_review_request_token_email", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_1.2bffc5d009", "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_token.5e02c0380e", "test.yoda.unique_analytics___ugc__unmigrated_review_request_token_token.fdcd099de4"], "model.yoda.analytics___ugc__unmigrated_review_request_token_email": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__review_request", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_email_1.a654efd0a2", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__unmigrated_review_request_token_email_token__users_email_control_id.e0f980471d", "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_email_token.4be6598c69", "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_email_users_email_control_id.b2ddbde755"], "model.yoda.analytics___ugc_stg__emails": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc_stg__email"], "model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__store_metrics_daily_24m", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__ugc_plan_group_change_mapping_1.5a38ea7600", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group__current_day_plan_group.8467be1d05", "test.yoda.not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_current_day_plan_group.f14c7ed426", "test.yoda.not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group.8f84ce0592"], "model.yoda.analytics___ugc_stg__comment": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__review", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__comment_1.77e489a153", "test.yoda.not_null_analytics___ugc_stg__comment_comment_id.624b204f24", "test.yoda.unique_analytics___ugc_stg__comment_comment_id.176198d33d"], "model.yoda.analytics___ugc_stg__dirty_words_content": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__dirty_words_content_1.01c4db28a4", "test.yoda.not_null_analytics___ugc_stg__dirty_words_content_row_id.10b8fc8eca", "test.yoda.unique_analytics___ugc_stg__dirty_words_content_row_id.4d33cf4736"], "model.yoda.analytics___ugc_stg__email": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__order_to_review_rate_cohort", "model.yoda.analytics___ugc__organization_metrics_monthly", "model.yoda.analytics___ugc__owner_order_to_review_monthly", "model.yoda.analytics___ugc__platform_order_to_review_monthly", "model.yoda.analytics___ugc__postman_feature_email_usage_monthly", "model.yoda.analytics___ugc__store_metrics_daily", "model.yoda.analytics___ugc__store_metrics_monthly", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__email_1.38f0ffaa3d", "test.yoda.not_null_analytics___ugc_stg__email_email_analytics_id.be969eaf47", "test.yoda.not_null_analytics___ugc_stg__email_email_id.d06d4e3ea5", "test.yoda.unique_analytics___ugc_stg__email_email_analytics_id.3236432e37", "test.yoda.unique_analytics___ugc_stg__email_email_id.3b8b1114cc"], "model.yoda.analytics___ugc_stg__image": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__image", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__image_1.3bc5f175b6", "test.yoda.not_null_analytics___ugc_stg__image_image_id.93c006695c", "test.yoda.unique_analytics___ugc_stg__image_image_id.8d2a490eb2"], "model.yoda.analytics___ugc_stg__metadata_type": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__review", "model.yoda.ugc__export_reviews", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__metadata_type_1.e965017da7", "test.yoda.not_null_analytics___ugc_stg__metadata_type_metadata_type_id.b1ad12f505", "test.yoda.unique_analytics___ugc_stg__metadata_type_metadata_type_id.6ae00d97a8"], "model.yoda.analytics___ugc_stg__owner_feature_enablement_event": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__store_feature_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_enablement_event_1.017f2f4925", "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_created_at.c9b79bcd9e", "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_feature_id.c5fb24a3f1", "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_disabled.f99ad1250c", "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_floating.2d4d22ef6e", "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_user_enabled.1d360123cf", "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_feature_id.0d3b7ec8aa", "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_id.0434a0f934", "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_type.f59683da70", "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_updated_at.3ba9ddca81"], "model.yoda.analytics___ugc_stg__owner_feature_setting_change_event": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_setting_change_event_1.722d6279f0"], "model.yoda.analytics___ugc_stg__reminder": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc_stg__reminder_snapshot", "test.yoda.accepted_values_analytics___ugc_stg__reminder_is_enabled__0__1.28a0cbe576", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_1.904e70f372", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_reminder_id__store_id.80e3f0e40c", "test.yoda.not_null_analytics___ugc_stg__reminder_reminder_id.0443c861f0", "test.yoda.not_null_analytics___ugc_stg__reminder_store_id.e2fc574452"], "model.yoda.analytics___ugc_stg__reminder_snapshot": ["exposure.yoda.analytics___ugc__temp_reminder_snapshot", "model.yoda.analytics___ugc__store_feature_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_snapshot_1.522406774f", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_snapshot_reminder_id__store_id__updated_at.455f7570ac", "test.yoda.not_null_analytics___ugc_stg__reminder_snapshot_reminder_id.eb8468219c", "test.yoda.not_null_analytics___ugc_stg__reminder_snapshot_store_id.9a36c060c0"], "model.yoda.analytics___ugc_stg__review": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__image", "model.yoda.analytics___ugc__review", "model.yoda.analytics___ugc__store_installation_over_time", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_1.df703fc694", "test.yoda.not_null_analytics___ugc_stg__review_review_id.fb39d68d60", "test.yoda.unique_analytics___ugc_stg__review_review_id.340430637c"], "model.yoda.analytics___ugc_stg__review_image": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__review", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_image_1.dc6b7d5d4a", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_image_review_id__image_id.a73115c375", "test.yoda.not_null_analytics___ugc_stg__review_image_image_id.dbd0627e86", "test.yoda.not_null_analytics___ugc_stg__review_image_review_id.cb84240bb1"], "model.yoda.analytics___ugc_stg__review_metadata": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__review", "model.yoda.ugc__export_reviews", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_metadata_1.e414dae9e3", "test.yoda.not_null_analytics___ugc_stg__review_metadata_review_metadata_id.50cd8e9406", "test.yoda.unique_analytics___ugc_stg__review_metadata_review_metadata_id.e1a83f1720"], "model.yoda.analytics___ugc_stg__review_request_email": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__review_request_token_message", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_email_1.183696f8fc"], "model.yoda.analytics___ugc_stg__review_request_sms": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__review_request_token_message", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_sms_1.070a1af629"], "model.yoda.analytics___ugc_stg__review_source_type": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_source_type_1.279fc2029a", "test.yoda.not_null_analytics___ugc_stg__review_source_type_review_source_type_id.66e45b81d8", "test.yoda.unique_analytics___ugc_stg__review_source_type_review_source_type_id.f472340919"], "model.yoda.analytics___ugc_stg__review_subject": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__review", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_subject_1.fe38748fe0", "test.yoda.not_null_analytics___ugc_stg__review_subject_review_subject_id.2e0521c635", "test.yoda.unique_analytics___ugc_stg__review_subject_review_subject_id.91d2fa6505"], "model.yoda.analytics___ugc_stg__review_type": ["exposure.yoda.analytics___ugc__24h", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_type_1.63b9f90919", "test.yoda.not_null_analytics___ugc_stg__review_type_review_type_id.3efe93aeee", "test.yoda.unique_analytics___ugc_stg__review_type_review_type_id.2fa963d87d"], "model.yoda.analytics___ugc_stg__review_video": ["exposure.yoda.analytics___ugc__24h", "model.yoda.analytics___ugc__review", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_video_1.63c54374fc", "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_video_review_id__video_id.cdbdc5d389", "test.yoda.not_null_analytics___ugc_stg__review_video_review_id.fb9fc0d7bf", "test.yoda.not_null_analytics___ugc_stg__review_video_video_id.1869d3c00b"], "model.yoda.analytics___utils_stg__calendar": ["exposure.yoda.analytics___utils__weekly", "model.yoda.analytics___finance__shopify_billing_store_product_mrr_daily", "model.yoda.analytics___loyalty__merchant_plan_daily", "model.yoda.analytics___sms__store_cohort", "test.yoda.not_null_analytics___utils_stg__calendar_date.7d542d0652", "test.yoda.unique_analytics___utils_stg__calendar_date.2f0bc853db"], "model.yoda.analytics___utils_stg__unit_test_generic": [], "model.yoda.communication__email_shopify_orders_analytics_profile": ["exposure.yoda.communication__analytics_daily_at_04_00", "model.yoda.platform_stg__email_shopify_orders_to_shop_currency"], "model.yoda.communication__sms_shopify_orders_analytics_profile": ["exposure.yoda.communication__analytics_daily_at_04_00", "model.yoda.platform_stg__sms_shopify_orders_to_shop_currency"], "model.yoda.communication_stg__apicalls": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__first_sms_message_sent", "model.yoda.communication_stg__last_sms_message_sent", "model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__sms_usage_avg_last_three_months"], "model.yoda.communication_stg__bigcommerce_users": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__measurements_bigcommerce_users"], "model.yoda.communication_stg__billing_events": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__email_usage_avg_last_three_months", "model.yoda.communication_stg__email_usage_avg_last_three_months"], "model.yoda.communication_stg__campaigns": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__campaigns_sent_count", "model.yoda.communication_stg__campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__email_campaigns_count", "model.yoda.communication_stg__email_campaigns_sent_count", "model.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__first_email_campaign_sent", "model.yoda.communication_stg__first_sms_campaign_sent", "model.yoda.communication_stg__last_email_campaign_sent", "model.yoda.communication_stg__last_sms_campaign_sent", "model.yoda.communication_stg__sms_campaigns_count", "model.yoda.communication_stg__sms_campaigns_sent_count", "model.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count"], "model.yoda.communication_stg__conversation_messages": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__send_chat_message"], "model.yoda.communication_stg__email_esp_events": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__first_email_message_sent", "model.yoda.communication_stg__last_email_message_sent", "model.yoda.communication_stg__overall_emails_sent_from_campaigns"], "model.yoda.communication_stg__events": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__automations_abandoned_checkout_active", "model.yoda.communication_stg__automations_count", "model.yoda.communication_stg__automations_customer_winback_active", "model.yoda.communication_stg__automations_welcome_active"], "model.yoda.communication_stg__flows": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__flows_abandoned_checkout_active", "model.yoda.communication_stg__flows_count", "model.yoda.communication_stg__flows_customer_winback_active", "model.yoda.communication_stg__flows_welcome_active"], "model.yoda.communication_stg__forms": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__cs_forms_count"], "model.yoda.communication_stg__klaviyo_users": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__klaviyo_integration_enabled"], "model.yoda.communication_stg__list_keywords": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__cs_keywords_count"], "model.yoda.communication_stg__orders": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__shopify_orders", "model.yoda.communication_stg__total_orders_avg_last_thirty_days", "model.yoda.communication_stg__total_orders_avg_last_three_months"], "model.yoda.communication_stg__packages": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__measurements_users"], "model.yoda.communication_stg__phone_to_list": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__sms_subscribers_count", "model.yoda.communication_stg__total_subscribers_sms_count"], "model.yoda.communication_stg__phones": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__sms_subscribers_count", "model.yoda.communication_stg__total_subscribers_sms_count"], "model.yoda.communication_stg__phones_meta": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__sms_subscribers_count", "model.yoda.communication_stg__total_subscribers_sms_count"], "model.yoda.communication_stg__profiles": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__email_subscribers_count", "model.yoda.communication_stg__total_subscribers_email_count"], "model.yoda.communication_stg__shopify_analytics_orders": ["exposure.yoda.communication__analytics_daily_at_04_00", "model.yoda.communication_stg__email_shopify_orders_analytics", "model.yoda.communication_stg__sms_shopify_orders_analytics", "model.yoda.communication_stg__total_revenue_all_channels_all_time", "model.yoda.communication_stg__total_revenue_all_channels_last_thirty_days", "model.yoda.communication_stg__total_revenue_all_channels_last_three_months", "model.yoda.communication_stg__total_revenue_email_last_thirty_days", "model.yoda.communication_stg__total_revenue_email_last_three_months", "model.yoda.communication_stg__total_revenue_sms_last_thirty_days", "model.yoda.communication_stg__total_revenue_sms_last_three_months"], "model.yoda.communication_stg__shopify_subscription_list_pages": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__cs_pages_count"], "model.yoda.communication_stg__shopify_user_integrations": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__integrations_count"], "model.yoda.communication_stg__shopify_users": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__measurements_shopify_users", "model.yoda.platform__sms_store_verification"], "model.yoda.communication_stg__tmp_email_events": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__email_intent_popup_first_accept_date", "model.yoda.communication_stg__email_intent_popup_first_decline_date", "model.yoda.communication_stg__email_intent_popup_status"], "model.yoda.communication_stg__users": ["exposure.yoda.communication__analytics_daily_at_04_00", "model.yoda.communication_stg__email_shopify_orders_analytics", "model.yoda.communication_stg__email_usage_avg_last_three_months", "model.yoda.communication_stg__measurements_users", "model.yoda.communication_stg__recently_active_users", "model.yoda.communication_stg__sms_shopify_orders_analytics"], "model.yoda.communication_stg__users_additional_flags": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__active_users_flags"], "model.yoda.communication_stg__active_users_flags": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__automations_abandoned_checkout_active": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__automations_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__automations_customer_winback_active": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__automations_welcome_active": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__campaigns_sent_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__campaigns_sent_last_thirty_days_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__cs_forms_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__cs_keywords_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__cs_pages_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__email_campaigns_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__email_campaigns_sent_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__email_intent_popup_first_accept_date": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__email_intent_popup_first_decline_date": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__email_intent_popup_status": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__email_shopify_orders_analytics": ["exposure.yoda.communication__analytics_daily_at_04_00", "model.yoda.communication__email_shopify_orders_analytics_profile"], "model.yoda.communication_stg__email_subscribers_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__email_usage_avg_last_three_months": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__first_email_campaign_sent": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__first_email_message_sent": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__first_sms_campaign_sent": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__first_sms_message_sent": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__flows_abandoned_checkout_active": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__flows_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__flows_customer_winback_active": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__flows_welcome_active": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__integrations_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__klaviyo_integration_enabled": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__last_email_campaign_sent": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__last_email_message_sent": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__last_sms_campaign_sent": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__last_sms_message_sent": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__measurements_bigcommerce_users": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__measurements_shopify_users": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__measurements_users": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__overall_emails_sent_from_campaigns": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__recently_active_users": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.communication_stg__active_users_flags", "model.yoda.communication_stg__automations_abandoned_checkout_active", "model.yoda.communication_stg__automations_count", "model.yoda.communication_stg__automations_customer_winback_active", "model.yoda.communication_stg__automations_welcome_active", "model.yoda.communication_stg__campaigns_sent_count", "model.yoda.communication_stg__campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__cs_forms_count", "model.yoda.communication_stg__cs_keywords_count", "model.yoda.communication_stg__cs_pages_count", "model.yoda.communication_stg__email_campaigns_count", "model.yoda.communication_stg__email_campaigns_sent_count", "model.yoda.communication_stg__email_campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__email_intent_popup_first_accept_date", "model.yoda.communication_stg__email_intent_popup_first_decline_date", "model.yoda.communication_stg__email_intent_popup_status", "model.yoda.communication_stg__email_subscribers_count", "model.yoda.communication_stg__email_usage_avg_last_three_months", "model.yoda.communication_stg__first_email_campaign_sent", "model.yoda.communication_stg__first_email_message_sent", "model.yoda.communication_stg__first_sms_campaign_sent", "model.yoda.communication_stg__first_sms_message_sent", "model.yoda.communication_stg__flows_abandoned_checkout_active", "model.yoda.communication_stg__flows_count", "model.yoda.communication_stg__flows_customer_winback_active", "model.yoda.communication_stg__flows_welcome_active", "model.yoda.communication_stg__integrations_count", "model.yoda.communication_stg__klaviyo_integration_enabled", "model.yoda.communication_stg__last_email_campaign_sent", "model.yoda.communication_stg__last_email_message_sent", "model.yoda.communication_stg__last_sms_campaign_sent", "model.yoda.communication_stg__last_sms_message_sent", "model.yoda.communication_stg__measurements_bigcommerce_users", "model.yoda.communication_stg__measurements_shopify_users", "model.yoda.communication_stg__measurements_users", "model.yoda.communication_stg__overall_emails_sent_from_campaigns", "model.yoda.communication_stg__send_chat_message", "model.yoda.communication_stg__shopify_orders", "model.yoda.communication_stg__sms_campaigns_count", "model.yoda.communication_stg__sms_campaigns_sent_count", "model.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count", "model.yoda.communication_stg__sms_subscribers_count", "model.yoda.communication_stg__sms_usage_avg_last_three_months", "model.yoda.communication_stg__total_orders_avg_last_thirty_days", "model.yoda.communication_stg__total_orders_avg_last_three_months", "model.yoda.communication_stg__total_revenue_all_channels_all_time", "model.yoda.communication_stg__total_revenue_all_channels_last_thirty_days", "model.yoda.communication_stg__total_revenue_all_channels_last_three_months", "model.yoda.communication_stg__total_revenue_email_last_thirty_days", "model.yoda.communication_stg__total_revenue_email_last_three_months", "model.yoda.communication_stg__total_revenue_sms_last_thirty_days", "model.yoda.communication_stg__total_revenue_sms_last_three_months", "model.yoda.communication_stg__total_subscribers_email_count", "model.yoda.communication_stg__total_subscribers_sms_count"], "model.yoda.communication_stg__send_chat_message": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__shopify_orders": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__sms_campaigns_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__sms_campaigns_sent_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__sms_campaigns_sent_last_thirty_days_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__sms_shopify_orders_analytics": ["exposure.yoda.communication__analytics_daily_at_04_00", "model.yoda.communication__sms_shopify_orders_analytics_profile"], "model.yoda.communication_stg__sms_subscribers_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__sms_usage_avg_last_three_months": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__total_orders_avg_last_thirty_days": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__total_orders_avg_last_three_months": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__total_revenue_all_channels_all_time": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__total_revenue_all_channels_last_thirty_days": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__total_revenue_all_channels_last_three_months": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__total_revenue_email_last_thirty_days": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__total_revenue_email_last_three_months": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__total_revenue_sms_last_thirty_days": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__total_revenue_sms_last_three_months": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__total_subscribers_email_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.communication_stg__total_subscribers_sms_count": ["exposure.yoda.communication__At_20_00_only_on_Sunday", "model.yoda.north_bound__segment_profile"], "model.yoda.email__daily_delivered_emails_by_source_name": ["exposure.yoda.email__daily_total_emails_by_source_name", "exposure.yoda.email__daily_usage_scheduler", "test.yoda.not_null_email__daily_delivered_emails_by_source_name_context_source_name.5b2fd00db3", "test.yoda.not_null_email__daily_delivered_emails_by_source_name_date.67e6ee4752", "test.yoda.not_null_email__daily_delivered_emails_by_source_name_total.739582565f"], "model.yoda.email__daily_total_email_campaigns": ["exposure.yoda.email__daily_total_email_campaigns", "exposure.yoda.email__daily_usage_scheduler", "test.yoda.not_null_email__daily_total_email_campaigns_date.7042c6c263", "test.yoda.not_null_email__daily_total_email_campaigns_total.4ff35bd3bf"], "model.yoda.email__email_campaign_click_to_redeem_kpi": ["exposure.yoda.email__email_base_model_scheduling", "model.yoda.platform__synergies_kpi"], "model.yoda.email__email_campaign_loyalty_kpi": ["exposure.yoda.email__email_base_model_scheduling", "model.yoda.platform__synergies_kpi"], "model.yoda.email__email_campaign_reviews_block_kpi": ["exposure.yoda.email__email_base_model_scheduling", "model.yoda.platform__synergies_kpi", "test.yoda.not_null_email__email_campaign_reviews_block_kpi_app_key.7018e17ee4", "test.yoda.not_null_email__email_campaign_reviews_block_kpi_customer_email.e76313a4cb", "test.yoda.not_null_email__email_campaign_reviews_block_kpi_customer_external_id.d649258d9d", "test.yoda.not_null_email__email_campaign_reviews_block_kpi_id.01cfbeedb9", "test.yoda.not_null_email__email_campaign_reviews_block_kpi_order_id.3a2529f59b", "test.yoda.not_null_email__email_campaign_reviews_block_kpi_source_id.1251666079", "test.yoda.not_null_email__email_campaign_reviews_block_kpi_source_type.53bbbe37cd", "test.yoda.not_null_email__email_campaign_reviews_block_kpi_synergy_id.182a7183c0"], "model.yoda.email__email_campaign_reviews_stars_kpi": ["exposure.yoda.email__email_base_model_scheduling", "model.yoda.platform__synergies_kpi", "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_app_key.639c700af5", "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_customer_email.f19549059f", "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_customer_external_id.2ea805cb1d", "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_id.9eef29ff31", "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_order_id.1503c1d47e", "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_source_id.08e3c773a8", "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_source_type.9cbbfce071", "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_synergy_id.958accfe65"], "model.yoda.email__email_events_per_source_id_and_ip_pool": ["exposure.yoda.email__email_events_by_source_and_pool", "exposure.yoda.email__hourly_scheduler", "model.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level"], "model.yoda.email__email_events_per_source_id_and_isp": ["exposure.yoda.email__email_events_by_source_and_isp", "exposure.yoda.email__hourly_scheduler", "model.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level"], "model.yoda.email__email_events_per_source_id_and_ref_id": ["exposure.yoda.email__hourly_scheduler", "model.yoda.email__email_events_per_source_id_and_ip_pool", "model.yoda.email__email_events_per_source_id_and_isp"], "model.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level": ["exposure.yoda.email__daily_usage_scheduler", "exposure.yoda.email__email_events_by_source_pool_isp_eng"], "model.yoda.email__email_failed_rejected_reasons": ["exposure.yoda.email__email_failed_rejected_reasons", "exposure.yoda.email__hourly_scheduler"], "model.yoda.email_stg__authenticated_domain": ["exposure.yoda.email__delivery_base_model_scheduler", "model.yoda.email__email_events_per_source_id_and_ip_pool", "model.yoda.email__email_events_per_source_id_and_isp"], "model.yoda.email_stg__campaign_events": ["exposure.yoda.email__email_base_model_scheduling", "model.yoda.email__daily_total_email_campaigns", "model.yoda.email__email_events_per_source_id_and_ref_id"], "model.yoda.email_stg__delivered_email": ["exposure.yoda.email__delivery_base_model_scheduler"], "model.yoda.email_stg__source_engagement_level_dry_run": ["exposure.yoda.email__delivery_base_model_scheduler", "model.yoda.email__email_events_source_id_per_isp_ip_pool_eng_level"], "model.yoda.email_stg__system_email_events": ["exposure.yoda.email__delivery_base_model_scheduler", "model.yoda.email__daily_delivered_emails_by_source_name", "model.yoda.email__email_events_per_source_id_and_ref_id", "model.yoda.email__email_failed_rejected_reasons", "model.yoda.sms__loyalty_sms_campaigns_email_kpi", "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi", "model.yoda.sms__loyalty_sms_flows_email_kpi", "model.yoda.sms__reviews_sms_flows_email_kpi", "model.yoda.sms__social_proof_flows_email_kpi"], "model.yoda.email_stg__template_instance_events": ["exposure.yoda.email__email_base_model_scheduling", "model.yoda.email_stg__emails_with_campaign_and_templates", "test.yoda.not_null_email_stg__template_instance_events_store_id.7489a266fe", "test.yoda.not_null_email_stg__template_instance_events_template_instance_id.1a63fc900e"], "model.yoda.email_stg__emails_with_campaign_and_templates": ["exposure.yoda.email__email_base_model_scheduling", "model.yoda.email__email_campaign_click_to_redeem_kpi", "model.yoda.email__email_campaign_loyalty_kpi", "model.yoda.email__email_campaign_reviews_block_kpi", "model.yoda.email__email_campaign_reviews_stars_kpi"], "model.yoda.email_stg__system_email_events_with_batch_id": ["exposure.yoda.email__email_base_model_scheduling", "model.yoda.email_stg__emails_with_campaign_and_templates"], "model.yoda.infra__aws_cost_overview": ["exposure.yoda.infra__aws_cost", "exposure.yoda.infra__aws_cost_overview", "model.yoda.infra__groups_and_teams"], "model.yoda.infra__canary_data_model": ["exposure.yoda.infra__canary_scheduling", "model.yoda.infra__canary_segment_model_profile", "model.yoda.infra__canary_snowflake_model", "test.yoda.not_null_infra__canary_data_model_app_key.c6db71c81f", "test.yoda.not_null_infra__canary_data_model_daily_metric.5db67846d8"], "model.yoda.infra__canary_segment_model_profile": ["exposure.yoda.infra__canary_scheduling", "test.yoda.not_null_infra__canary_segment_model_profile_daily_metric.60592337f0", "test.yoda.not_null_infra__canary_segment_model_profile_userId.5e72499306"], "model.yoda.infra__canary_snowflake_model": ["exposure.yoda.infra__canary_scheduling"], "model.yoda.infra__contracts_burn_estimations": ["exposure.yoda.infra__budget", "exposure.yoda.infra__contract_estimations", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_estimations_1.8a4cf1359e", "test.yoda.dbt_utils_expression_is_true_infra__contracts_burn_estimations_yearly_budget___0.3a039f37ba", "test.yoda.not_null_infra__contracts_burn_estimations_end_date.ea1ea1c411", "test.yoda.not_null_infra__contracts_burn_estimations_start_date.0b2404158a", "test.yoda.not_null_infra__contracts_burn_estimations_vendor.357a49c299"], "model.yoda.infra__contracts_burn_status": ["exposure.yoda.infra__budget", "exposure.yoda.infra__contract_status", "model.yoda.infra__contracts_burn_estimations", "model.yoda.infra__contracts_burn_estimations", "model.yoda.infra__contracts_burn_estimations", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_status_1.24745bba70", "test.yoda.dbt_utils_expression_is_true_infra__contracts_burn_status_yearly_budget___0.6af0f1b89d", "test.yoda.not_null_infra__contracts_burn_status_end_date.9520a11610", "test.yoda.not_null_infra__contracts_burn_status_start_date.f75328a2f7", "test.yoda.not_null_infra__contracts_burn_status_vendor.1122e674a4"], "model.yoda.infra__cost_budget": ["exposure.yoda.infra__budget", "exposure.yoda.infra__cost_budget"], "model.yoda.infra__databricks_costs": ["exposure.yoda.infra__databricks_cost", "exposure.yoda.infra__databricks_costs", "model.yoda.infra__contracts_burn_status", "model.yoda.infra__contracts_burn_status", "model.yoda.infra__infra_metrics"], "model.yoda.infra__ec2_cost": ["exposure.yoda.infra__aws_cost", "exposure.yoda.infra__ec2_cost"], "model.yoda.infra__ec2_cost_cold": ["exposure.yoda.infra__aws_cost", "model.yoda.infra__ec2_cost"], "model.yoda.infra__ec2_cost_hot": ["exposure.yoda.infra__aws_cost", "model.yoda.infra__ec2_cost"], "model.yoda.infra__elasticcache_cost": ["exposure.yoda.infra__aws_cost", "exposure.yoda.infra__elasticcache_cost"], "model.yoda.infra__elasticsearch_cost": ["exposure.yoda.infra__elasticsearch_cost", "exposure.yoda.infra__kuberneters_cost"], "model.yoda.infra__git_actions_runs": ["exposure.yoda.infra__github_models_metrics", "exposure.yoda.infra__github_workflow_runs"], "model.yoda.infra__groups_and_teams": ["exposure.yoda.infra__budget", "exposure.yoda.infra__groups_and_teams"], "model.yoda.infra__infra_metrics": ["exposure.yoda.infra__github_models_metrics", "exposure.yoda.infra__infra_metrics_model", "test.yoda.not_null_infra__infra_metrics_component.d8af3c0fbd", "test.yoda.not_null_infra__infra_metrics_key.172127b073", "test.yoda.not_null_infra__infra_metrics_product_line.9add29efd9", "test.yoda.not_null_infra__infra_metrics_source.edaf9abc91", "test.yoda.not_null_infra__infra_metrics_ts.d898bb6180", "test.yoda.not_null_infra__infra_metrics_value.2e0033a76e"], "model.yoda.infra__kubernetes_cost": ["exposure.yoda.infra__kuberneters_cost", "exposure.yoda.infra__kubernetes_cost", "model.yoda.infra__groups_and_teams", "model.yoda.infra__spark_jobs", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__kubernetes_cost_1__billing_day_current_date_1.801b62a34e"], "model.yoda.infra__kubernetes_cost_cold": ["exposure.yoda.infra__kuberneters_cost", "model.yoda.infra__kubernetes_cost"], "model.yoda.infra__kubernetes_cost_hot": ["exposure.yoda.infra__kuberneters_cost", "model.yoda.infra__kubernetes_cost"], "model.yoda.infra__msk_cost": ["exposure.yoda.infra__aws_cost", "exposure.yoda.infra__msk_cost"], "model.yoda.infra__opensearch_cost": ["exposure.yoda.infra__aws_cost", "exposure.yoda.infra__opensearch_cost"], "model.yoda.infra__opsgenie_alerts": ["exposure.yoda.infra__infra_uptime_metrics", "exposure.yoda.infra__opsgenie_alerts"], "model.yoda.infra__opsgenie_incidents": ["exposure.yoda.infra__infra_uptime_metrics", "exposure.yoda.infra__opsgenie_incidents"], "model.yoda.infra__pixel_onsite_v2": ["exposure.yoda.infra__products", "model.yoda.ugc__shopper_experience_order_aggregation", "model.yoda.ugc__shopper_experience_order_aggregation", "model.yoda.ugc__shopper_experience_store_aggregation", "model.yoda.ugc__shopper_experience_store_aggregation", "model.yoda.ugc__shopper_experience_widget_engagement_aggregation", "model.yoda.ugc__shopper_experience_widget_engagement_aggregation", "model.yoda.ugc__shopper_experience_widget_order_aggregation", "model.yoda.ugc__shopper_experience_widget_order_aggregation"], "model.yoda.infra__pixel_onsite_v3": ["exposure.yoda.infra__products", "model.yoda.ugc__shopper_experience_order_aggregation", "model.yoda.ugc__shopper_experience_store_aggregation", "model.yoda.ugc__shopper_experience_widget_engagement_aggregation", "model.yoda.ugc__shopper_experience_widget_order_aggregation"], "model.yoda.infra__rds_cost": ["exposure.yoda.infra__aws_cost", "exposure.yoda.infra__rds_cost"], "model.yoda.infra__rivery_contract_statistics": ["exposure.yoda.infra__rivery_contract_statistics", "exposure.yoda.infra__rivery_usage", "test.yoda.not_null_infra__rivery_contract_statistics_date.fdd99a1917", "test.yoda.not_null_infra__rivery_contract_statistics_month.5ac3bd212c", "test.yoda.not_null_infra__rivery_contract_statistics_year.faa8708e47"], "model.yoda.infra__rivery_daily_usage": ["exposure.yoda.infra__rivery_usage", "exposure.yoda.infra__rivery_usage_model", "model.yoda.infra__contracts_burn_status", "model.yoda.infra__contracts_burn_status", "model.yoda.infra__rivery_contract_statistics", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__rivery_daily_usage_1__date_current_date_1.167a073d90", "test.yoda.not_null_infra__rivery_daily_usage_account_id.7c3b1f6492", "test.yoda.not_null_infra__rivery_daily_usage_environment_name.8f90fc6903", "test.yoda.not_null_infra__rivery_daily_usage_river_name.1274519a44"], "model.yoda.infra__s3_cost": ["exposure.yoda.infra__aws_cost", "exposure.yoda.infra__s3_cost"], "model.yoda.infra__s3_cost_cold": ["exposure.yoda.infra__aws_cost", "model.yoda.infra__s3_cost"], "model.yoda.infra__s3_cost_hot": ["exposure.yoda.infra__aws_cost", "model.yoda.infra__s3_cost"], "model.yoda.infra__s3_prefix_aggregations": ["exposure.yoda.infra__aws_storage_cost", "exposure.yoda.infra__s3_prefix_aggregations"], "model.yoda.infra__s3_storage_data_summary": ["exposure.yoda.infra__aws_storage_cost", "exposure.yoda.infra__s3_storage_data_summary", "test.yoda.not_null_infra__s3_storage_data_summary_bucket.61255b41ed"], "model.yoda.infra__snowflake_automatic_clustering_cost": ["exposure.yoda.infra__snowflake_automatic_clustering_cost", "exposure.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_daily_cost", "model.yoda.infra__snowflake_monthly_cost"], "model.yoda.infra__snowflake_contract_details": ["exposure.yoda.infra__static_resources", "model.yoda.infra__snowflake_cost_summary", "model.yoda.infra__snowflake_daily_cost", "model.yoda.infra__snowflake_monthly_cost"], "model.yoda.infra__snowflake_cost": ["exposure.yoda.infra__snowflake_cost", "model.yoda.infra__contracts_burn_status", "model.yoda.infra__contracts_burn_status"], "model.yoda.infra__snowflake_cost_summary": ["exposure.yoda.infra__snowflake_cost", "exposure.yoda.infra__snowflake_cost_summary"], "model.yoda.infra__snowflake_daily_cost": ["exposure.yoda.infra__snowflake_cost", "exposure.yoda.infra__snowflake_daily_cost"], "model.yoda.infra__snowflake_monthly_cost": ["exposure.yoda.infra__snowflake_cost", "exposure.yoda.infra__snowflake_monthly_cost", "model.yoda.infra__snowflake_cost_summary"], "model.yoda.infra__snowflake_query_statistics": ["exposure.yoda.infra__snowflake_cost", "exposure.yoda.infra__snowflake_query_statistics"], "model.yoda.infra__snowflake_storage_cost": ["exposure.yoda.infra__snowflake_cost", "exposure.yoda.infra__snowflake_storage_cost", "model.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_daily_cost", "model.yoda.infra__snowflake_monthly_cost"], "model.yoda.infra__snowflake_views_cost": ["exposure.yoda.infra__snowflake_cost", "exposure.yoda.infra__snowflake_views_cost", "model.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_daily_cost", "model.yoda.infra__snowflake_monthly_cost"], "model.yoda.infra__snowflake_warehouse_cost": ["exposure.yoda.infra__snowflake_cost", "exposure.yoda.infra__snowflake_warehouse_cost", "model.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_daily_cost", "model.yoda.infra__snowflake_monthly_cost"], "model.yoda.infra__snowflake_warehouse_statistics": ["exposure.yoda.infra__snowflake_cost", "exposure.yoda.infra__snowflake_warehouse_statistics"], "model.yoda.infra__spark_jobs": ["exposure.yoda.infra__kuberneters_cost", "exposure.yoda.infra__spark_jobs", "model.yoda.infra__infra_metrics"], "model.yoda.infra__sqs_cost": ["exposure.yoda.infra__aws_cost", "exposure.yoda.infra__sqs_cost"], "model.yoda.infra__sub_departments_monthly_budget_cur": ["exposure.yoda.infra__budget", "exposure.yoda.infra__sub_departments_monthly_budget_cur"], "model.yoda.infra__vendor_contracts": ["exposure.yoda.infra__budget", "exposure.yoda.infra__contract_info", "model.yoda.infra__contracts_burn_status", "model.yoda.infra__contracts_burn_status", "model.yoda.infra__contracts_burn_status"], "model.yoda.infra_stg__alerts": ["exposure.yoda.infra__infra_uptime_metrics", "model.yoda.infra__opsgenie_alerts"], "model.yoda.infra_stg__aws_billing_report_raw": ["exposure.yoda.infra__aws_cost"], "model.yoda.infra_stg__aws_payer_billing_report_raw": ["exposure.yoda.infra__aws_cost", "model.yoda.infra__aws_cost_overview", "model.yoda.infra__databricks_costs", "model.yoda.infra__infra_metrics", "model.yoda.infra__msk_cost", "model.yoda.infra__rds_cost", "model.yoda.infra_stg__aws_s3_cost", "model.yoda.infra_stg__ec2_cost", "model.yoda.infra_stg__kubernetes_cost"], "model.yoda.infra_stg__budget": ["exposure.yoda.infra__budget", "test.yoda.dbt_utils_equality_infra_stg__budget_ref_unit_test__expected__infra_stg__budget__infra_stg__budget_.a1e776df30"], "model.yoda.infra_stg__databricks_cost_raw": ["exposure.yoda.infra__databricks_cost", "model.yoda.infra__databricks_costs"], "model.yoda.infra_stg__group": ["exposure.yoda.infra__segment"], "model.yoda.infra_stg__identify": ["exposure.yoda.infra__segment"], "model.yoda.infra_stg__incidents": ["exposure.yoda.infra__infra_uptime_metrics", "model.yoda.infra__opsgenie_incidents"], "model.yoda.infra_stg__infra_metrics": ["exposure.yoda.infra__github_models_metrics", "model.yoda.infra__infra_metrics", "test.yoda.not_null_infra_stg__infra_metrics_component.b2e07aafab", "test.yoda.not_null_infra_stg__infra_metrics_key.bcec2067d3", "test.yoda.not_null_infra_stg__infra_metrics_source.8d98cc3218", "test.yoda.not_null_infra_stg__infra_metrics_ts.85dad6d1d4", "test.yoda.not_null_infra_stg__infra_metrics_value.4b3957014e"], "model.yoda.infra_stg__kubecost_delta": ["exposure.yoda.infra__kuberneters_cost", "model.yoda.infra__elasticsearch_cost", "model.yoda.infra_stg__kubernetes_cost"], "model.yoda.infra_stg__kubecost_raw": ["exposure.yoda.infra__databricks_cost"], "model.yoda.infra_stg__page": ["exposure.yoda.infra__segment", "model.yoda.analytics___platform_stg__segment_page_event"], "model.yoda.infra_stg__page_track": ["exposure.yoda.infra__segment"], "model.yoda.infra_stg__pixel_enrichment": ["exposure.yoda.infra__products", "model.yoda.infra__pixel_onsite_v2", "model.yoda.infra__pixel_onsite_v3"], "model.yoda.infra_stg__repos": ["exposure.yoda.infra__github_models_metrics"], "model.yoda.infra_stg__rivery_environments": ["exposure.yoda.infra__rivery_usage", "model.yoda.infra__rivery_daily_usage"], "model.yoda.infra_stg__rivery_groups": ["exposure.yoda.infra__rivery_usage", "model.yoda.infra__rivery_daily_usage"], "model.yoda.infra_stg__rivery_rivers_usage": ["exposure.yoda.infra__rivery_usage", "model.yoda.infra__rivery_daily_usage"], "model.yoda.infra_stg__s3_inventory_raw": ["exposure.yoda.infra__aws_storage_cost", "model.yoda.infra_stg__aws_s3_inventory_data"], "model.yoda.infra_stg__services": ["exposure.yoda.infra__infra_uptime_metrics", "model.yoda.infra__opsgenie_incidents", "model.yoda.infra__opsgenie_incidents"], "model.yoda.infra_stg__snowflake_automatic_clustering_history": ["exposure.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_automatic_clustering_cost"], "model.yoda.infra_stg__snowflake_database_storage_usage_history": ["exposure.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_storage_cost"], "model.yoda.infra_stg__snowflake_materialized_view_refresh_history": ["exposure.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_views_cost"], "model.yoda.infra_stg__snowflake_queries_statistics": ["exposure.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_query_statistics"], "model.yoda.infra_stg__snowflake_tag_references": ["exposure.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_automatic_clustering_cost", "model.yoda.infra__snowflake_views_cost", "model.yoda.infra__snowflake_warehouse_cost"], "model.yoda.infra_stg__snowflake_warehouse_events": ["exposure.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_warehouse_statistics"], "model.yoda.infra_stg__snowflake_warehouse_metering_history": ["exposure.yoda.infra__snowflake_cost", "model.yoda.infra__snowflake_warehouse_cost"], "model.yoda.infra_stg__sub_departments_monthly_budget": ["exposure.yoda.infra__budget", "exposure.yoda.infra__sub_departments_monthly_budget_history", "model.yoda.infra__sub_departments_monthly_budget_cur"], "model.yoda.infra_stg__team_budget": ["exposure.yoda.infra__budget", "exposure.yoda.infra__cost_budget_history", "model.yoda.infra__cost_budget"], "model.yoda.infra_stg__teams": ["exposure.yoda.infra__infra_uptime_metrics", "model.yoda.infra__opsgenie_incidents"], "model.yoda.infra_stg__upsolver_outputs": ["exposure.yoda.infra__github_models_metrics", "model.yoda.infra__infra_metrics"], "model.yoda.infra_stg__workflow_runs": ["exposure.yoda.infra__github_models_metrics", "model.yoda.infra__git_actions_runs"], "model.yoda.infra_stg__workflows": ["exposure.yoda.infra__github_models_metrics"], "model.yoda.infra_stg__aws_s3_cost": ["exposure.yoda.infra__aws_cost", "model.yoda.infra__s3_cost_cold", "model.yoda.infra__s3_cost_hot"], "model.yoda.infra_stg__aws_s3_inventory_data": ["exposure.yoda.infra__aws_storage_cost", "model.yoda.infra__s3_prefix_aggregations", "model.yoda.infra__s3_storage_data_summary"], "model.yoda.infra_stg__ec2_cost": ["exposure.yoda.infra__aws_cost", "model.yoda.infra__ec2_cost_cold", "model.yoda.infra__ec2_cost_hot"], "model.yoda.infra_stg__kubernetes_cost": ["exposure.yoda.infra__kuberneters_cost", "model.yoda.infra__kubernetes_cost_cold", "model.yoda.infra__kubernetes_cost_hot"], "model.yoda.loyalty__dim_consumer_entity_daily_snapshot": ["model.yoda.loyalty__snowflake_consumer_entity_daily_snapshot"], "model.yoda.loyalty__customer_group_date_history": ["exposure.yoda.loyalty__points", "model.yoda.loyalty__merchant_point_transaction_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_group_date_history_1.066a328015", "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__customer_group_date_history_group_customer_id__merchant_group_id__category.6db34ce124", "test.yoda.not_null_loyalty__customer_group_date_history_category.b5e988372f", "test.yoda.not_null_loyalty__customer_group_date_history_group_customer_id.f20f49abfc", "test.yoda.not_null_loyalty__customer_group_date_history_merchant_group_id.722d4bf4f0"], "model.yoda.loyalty__customer_point_transaction_metrics_daily": ["exposure.yoda.loyalty__points", "model.yoda.loyalty__customer_group_date_history", "model.yoda.loyalty__merchant_point_transaction_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_point_transaction_metrics_daily_1.d7ff2825fe", "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__customer_point_transaction_metrics_daily_group_customer_id__date.10101ccaa4", "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_date.dfeffafae1", "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_group_customer_id.586bcf6ede", "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_merchant_group_id.c4bc04af4f"], "model.yoda.loyalty__dim_campaigns_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_dwh_updated_at.aa17481f82", "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_id.5e34c99824", "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_type.6d4b50622a", "test.yoda.unique_loyalty__dim_campaigns_daily_snapshot_id.4bb6aeeae2"], "model.yoda.loyalty__dim_customer_birthdays_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__dim_consumer_entity_daily_snapshot", "model.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot", "test.yoda.not_null_loyalty__dim_customer_birthdays_daily_snapshot_group_customer_id.d1b35ae6fd"], "model.yoda.loyalty__dim_customers_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__dim_consumer_entity_daily_snapshot", "model.yoda.loyalty__redeemed_purchases", "model.yoda.loyalty__redemptions", "model.yoda.loyalty__snowflake_customers_daily_snapshot", "test.yoda.accepted_values_loyalty__dim_customers_daily_snapshot_is_member__False__True__False.d2aafb2216", "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_dwh_updated_at.32a31ae877", "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_email_sent_count.0d45742168", "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_id.2c54f85955", "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_is_member.7c4c9533ab", "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_merchant_id.890d8e6cbc", "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_updated_at.55fcdbd1a8", "test.yoda.unique_loyalty__dim_customers_daily_snapshot_id.09d33def70"], "model.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot"], "model.yoda.loyalty__dim_merchants_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__dim_consumer_entity_daily_snapshot", "model.yoda.loyalty__dim_subscriptions_daily_snapshot", "model.yoda.loyalty__snowflake_merchants_daily_snapshot", "test.yoda.not_null_loyalty__dim_merchants_daily_snapshot_id.b30eb29a5c", "test.yoda.not_null_loyalty__dim_merchants_daily_snapshot_updated_at.87cd836a10", "test.yoda.unique_loyalty__dim_merchants_daily_snapshot_id.9e1b4d52f2"], "model.yoda.loyalty__dim_referral_codes_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__dim_consumer_entity_daily_snapshot", "model.yoda.loyalty__snowflake_referral_codes_daily_snapshot"], "model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot", "test.yoda.not_null_loyalty__dim_referral_discount_codes_daily_snapshot_id.7bd46d84ad", "test.yoda.unique_loyalty__dim_referral_discount_codes_daily_snapshot_id.3655facf99"], "model.yoda.loyalty__dim_subscriptions_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_subscriptions_daily_snapshot", "test.yoda.not_null_loyalty__dim_subscriptions_daily_snapshot_id.6396815751", "test.yoda.unique_loyalty__dim_subscriptions_daily_snapshot_id.c57a1bbf29"], "model.yoda.loyalty__dim_vip_tiers_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__dim_consumer_entity_daily_snapshot", "model.yoda.loyalty__snowflake_vip_tiers_daily_snapshot", "test.yoda.not_null_loyalty__dim_vip_tiers_daily_snapshot_id.91a51f5037", "test.yoda.unique_loyalty__dim_vip_tiers_daily_snapshot_id.3db5ece551"], "model.yoda.loyalty__dim_vip_tiers_history_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot"], "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__redeemed_purchases", "model.yoda.loyalty__redemptions", "model.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot", "test.yoda.not_null_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.8e468345d8", "test.yoda.unique_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.a8136b53dd"], "model.yoda.loyalty__fact_dates_for_investment_metric_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_dates_for_investment_metric_daily_snapshot", "test.yoda.not_null_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date.96a2b394d3", "test.yoda.unique_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date.415dfb2355"], "model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot", "test.yoda.not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_customer_id.47bf050fa7", "test.yoda.not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_merchant_id.8f02c9f6d3"], "model.yoda.loyalty__fact_perks_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_perks_daily_snapshot", "test.yoda.not_null_loyalty__fact_perks_daily_snapshot_id.d3372857e3", "test.yoda.unique_loyalty__fact_perks_daily_snapshot_id.447c6f759a"], "model.yoda.loyalty__fact_purchase_items_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_purchase_items_daily_snapshot", "test.yoda.not_null_loyalty__fact_purchase_items_daily_snapshot_id.96ed057021", "test.yoda.unique_loyalty__fact_purchase_items_daily_snapshot_id.a08c3ecb47"], "model.yoda.loyalty__fact_purchases_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__dim_consumer_entity_daily_snapshot", "model.yoda.loyalty__redeemed_purchases", "model.yoda.loyalty__snowflake_purchases_daily_snapshot", "test.yoda.not_null_loyalty__fact_purchases_daily_snapshot_id.95de3471a3", "test.yoda.unique_loyalty__fact_purchases_daily_snapshot_id.49d307d948"], "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__dim_consumer_entity_daily_snapshot", "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot", "model.yoda.loyalty__redeemed_purchases", "model.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot", "test.yoda.not_null_loyalty__fact_purchases_redemptions_daily_snapshot_id.a68dde1e9f", "test.yoda.unique_loyalty__fact_purchases_redemptions_daily_snapshot_id.8443c10201"], "model.yoda.loyalty__fact_redemptions_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__dim_consumer_entity_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot", "model.yoda.loyalty__redeemed_purchases", "model.yoda.loyalty__redemptions", "model.yoda.loyalty__snowflake_redemptions_daily_snapshot"], "model.yoda.loyalty__fact_redemptions_with_purchases_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot", "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referred_redemption.a6ec485fde", "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referring_redemption.1df06c91c6", "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_merchant_id.35917319bf", "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_point_redemption_id.dc22cb3be8", "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_purchase_id.410eaccfde", "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_redemption_created_at.3a0df4fe84"], "model.yoda.loyalty__fact_referral_perks_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_referral_perks_daily_snapshot"], "model.yoda.loyalty__fact_referral_receipts_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_referral_receipts_daily_snapshot", "test.yoda.not_null_loyalty__fact_referral_receipts_daily_snapshot_id.32e3efb79c", "test.yoda.unique_loyalty__fact_referral_receipts_daily_snapshot_id.a7e236019d"], "model.yoda.loyalty__fact_referral_shares_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_referral_shares_daily_snapshot", "test.yoda.not_null_loyalty__fact_referral_shares_daily_snapshot_id.3ccd631bab", "test.yoda.unique_loyalty__fact_referral_shares_daily_snapshot_id.765c3266ad"], "model.yoda.loyalty__fact_referral_snapshots_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot", "test.yoda.not_null_loyalty__fact_referral_snapshots_daily_snapshot_id.3cde9224ff", "test.yoda.unique_loyalty__fact_referral_snapshots_daily_snapshot_id.19cf311d69"], "model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot", "test.yoda.not_null_loyalty__fact_referrals_without_crawlers_daily_snapshot_id.188a4f7623", "test.yoda.unique_loyalty__fact_referrals_without_crawlers_daily_snapshot_id.5afe5a429c"], "model.yoda.loyalty__fact_refund_items_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_refund_items_daily_snapshot", "test.yoda.not_null_loyalty__fact_refund_items_daily_snapshot_id.ab670fba71", "test.yoda.unique_loyalty__fact_refund_items_daily_snapshot_id.62033e081f"], "model.yoda.loyalty__fact_refunds_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__snowflake_refunds_daily_snapshot", "test.yoda.not_null_loyalty__fact_refunds_daily_snapshot_refund_id.8b29aa083d", "test.yoda.unique_loyalty__fact_refunds_daily_snapshot_refund_id.d54f16a3a2"], "model.yoda.loyalty__fact_user_actions_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__snowflake_user_actions_daily_snapshot", "test.yoda.not_null_loyalty__fact_user_actions_daily_snapshot_id.45a03e2bdf", "test.yoda.unique_loyalty__fact_user_actions_daily_snapshot_id.bab085d102"], "model.yoda.loyalty__fact_user_agents_daily_snapshot": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot", "model.yoda.loyalty__snowflake_user_agents_daily_snapshot", "test.yoda.not_null_loyalty__fact_user_agents_daily_snapshot_id.d41feb0cd1", "test.yoda.unique_loyalty__fact_user_agents_daily_snapshot_id.4c7c23bd57"], "model.yoda.loyalty__merchant_point_transaction_metrics_daily": ["exposure.yoda.loyalty__points", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__merchant_point_transaction_metrics_daily_1.d76ac8b5bf", "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__merchant_point_transaction_metrics_daily_merchant_group_id__date.20ced22582"], "model.yoda.loyalty__opted_in_customers": ["exposure.yoda.loyalty__synergies_kpi", "model.yoda.email__email_campaign_loyalty_kpi", "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "model.yoda.sms__multipass_login_kpi", "test.yoda.not_null_loyalty__opted_in_customers_app_key.c844344118", "test.yoda.not_null_loyalty__opted_in_customers_customer_email.ba061c0fa1", "test.yoda.not_null_loyalty__opted_in_customers_customer_id.5eaf19e71e", "test.yoda.not_null_loyalty__opted_in_customers_opted_in_at.7861355d0d"], "model.yoda.loyalty__pixel_events": ["exposure.yoda.loyalty__pixel_events", "model.yoda.loyalty__snowflake_pixel_events"], "model.yoda.loyalty__redeemed_purchases": ["exposure.yoda.loyalty__retention_metric_redeemed_purchases", "model.yoda.email__email_campaign_click_to_redeem_kpi", "model.yoda.email__email_campaign_loyalty_kpi", "model.yoda.platform__orders_with_product_lines_attribution_daily", "model.yoda.sms_stg__sms_loyalty_campaigns_kpi", "model.yoda.sms_stg__sms_loyalty_flows_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__redeemed_purchases_1.bd19437612", "test.yoda.not_null_loyalty__redeemed_purchases_app_key.43d0e57a64", "test.yoda.not_null_loyalty__redeemed_purchases_external_order_id.acfce1b606", "test.yoda.not_null_loyalty__redeemed_purchases_order_date.f16d5b66b4", "test.yoda.not_null_loyalty__redeemed_purchases_order_total.1afd9cd992"], "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option": ["exposure.yoda.loyalty__synergies_kpi", "model.yoda.subscriptions__synergy_kpi_redeemed_points"], "model.yoda.loyalty__redemptions": ["exposure.yoda.loyalty__synergies_kpi"], "model.yoda.loyalty__review_earning_rule_loyalty": ["exposure.yoda.loyalty__synergies_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__review_earning_rule_loyalty_1.bee3f0ab25", "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__review_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.38227a0364", "test.yoda.unique_loyalty__review_earning_rule_loyalty_id.d82f8ca7f5"], "model.yoda.loyalty__sms_earning_rule_loyalty": ["exposure.yoda.loyalty__synergies_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__sms_earning_rule_loyalty_1.13bc516ed5", "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__sms_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.28b1c71f7d", "test.yoda.unique_loyalty__sms_earning_rule_loyalty_id.087d42e8f9"], "model.yoda.loyalty__snowflake_consumer_entity_daily_snapshot": [], "model.yoda.loyalty__snowflake_customer_birthdays_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_customers_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_customers_with_vip_tiers_history_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_dates_for_investment_metric_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_email_campagins_emails_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_email_campaigns": ["exposure.yoda.loyalty__chainperks_to_snowflake"], "model.yoda.loyalty__snowflake_merchants_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_perks_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_pixel_events": ["exposure.yoda.loyalty__pixel_events"], "model.yoda.loyalty__snowflake_plans": ["exposure.yoda.loyalty__chainperks_to_snowflake"], "model.yoda.loyalty__snowflake_purchase_items_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_purchases_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_purchases_redemptions_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_redemptions_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_redemptions_with_purchases_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_referral_codes_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_referral_discount_codes_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_referral_perks_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_referral_receipts_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_referral_shares_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_referral_snapshots_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_referrals": ["exposure.yoda.loyalty__chainperks_to_snowflake"], "model.yoda.loyalty__snowflake_referrals_without_crawlers_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_refund_items_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_refunds_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_subscriptions": ["exposure.yoda.loyalty__chainperks_to_snowflake"], "model.yoda.loyalty__snowflake_subscriptions_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_user_actions_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_user_agents_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_vip_tiers_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_vip_tiers_history_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__snowflake_yotpo_platform_accounts_daily_snapshot": ["exposure.yoda.loyalty__daily_snapshots_to_snowflake"], "model.yoda.loyalty__tier_expiring_reminder_kpi": ["exposure.yoda.loyalty__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__tier_expiring_reminder_kpi_1.2d41c2d9e8", "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__tier_expiring_reminder_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.47422e4c3e"], "model.yoda.loyalty__widgetrepodb_customizations_to_snowflake": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake"], "model.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake"], "model.yoda.loyalty__widgetrepodb_instances_to_snowflake": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake"], "model.yoda.loyalty__widgetrepodb_static_contents_to_snowflake": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake"], "model.yoda.loyalty__widgetrepodb_templates_to_snowflake": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake"], "model.yoda.loyalty__widgetrepodb_widget_types_to_snowflake": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake"], "model.yoda.loyalty_stg__campaign_activation_histories": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__earning_rule_activation_history", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__campaign_activation_histories_1.da00fb269f"], "model.yoda.loyalty_stg__campaigns": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__earning_rule", "model.yoda.loyalty__dim_campaigns_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty__sms_earning_rule_loyalty", "test.yoda.dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__campaigns_1.79895b6923"], "model.yoda.loyalty_stg__config_item": ["exposure.yoda.loyalty__points", "model.yoda.analytics___loyalty_stg__point_expiration_policy_settings"], "model.yoda.loyalty_stg__container_balance_usage": ["exposure.yoda.loyalty__points"], "model.yoda.loyalty_stg__currency_rates": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats", "model.yoda.analytics___loyalty__merchant_plan_monthly", "model.yoda.analytics___loyalty__organization_metrics_monthly", "model.yoda.loyalty__dim_referral_codes_daily_snapshot", "model.yoda.loyalty__dim_subscriptions_daily_snapshot", "model.yoda.loyalty__fact_purchase_items_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty__fact_refunds_daily_snapshot"], "model.yoda.loyalty_stg__customer_birthdays": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__dim_customer_birthdays_daily_snapshot"], "model.yoda.loyalty_stg__customers": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__dim_customer_birthdays_daily_snapshot", "model.yoda.loyalty__fact_perks_daily_snapshot", "model.yoda.loyalty_stg__enriched_customers"], "model.yoda.loyalty_stg__customers_opt_in": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__dim_customers_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__opted_in_customers"], "model.yoda.loyalty_stg__customers_platform_accounts": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__dim_customers_daily_snapshot", "test.yoda.unique_loyalty_stg__customers_platform_accounts_customer_id.40a87706ce"], "model.yoda.loyalty_stg__customers_vip_tiers": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats", "model.yoda.loyalty__dim_customers_daily_snapshot", "model.yoda.loyalty__tier_expiring_reminder_kpi"], "model.yoda.loyalty_stg__customers_vip_tiers_history": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "model.yoda.loyalty__dim_vip_tiers_history_daily_snapshot"], "model.yoda.loyalty_stg__customizations": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake", "model.yoda.loyalty__widgetrepodb_customizations_to_snowflake"], "model.yoda.loyalty_stg__email_campaign_emails": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__dim_customers_daily_snapshot", "model.yoda.loyalty__fact_email_campaigns_emails_daily_snapshot", "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_bounced__False__True__False.53b68d6d71", "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_clicked__False__True__False.d219dd168d", "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_delayed__False__True__False.09b50c8038", "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_marked_as_spam__False__True__False.294df5cbf2", "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_opened__False__True__False.40621c7d0f", "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_rejected__False__True__False.51e5ea9726", "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_sent__False__True__False.ab58b87404", "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_soft_bounced__False__True__False.29953005b7", "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_unsubscribed__False__True__False.c1accaca74", "test.yoda.not_null_loyalty_stg__email_campaign_emails_bounced.5a936b2be4", "test.yoda.not_null_loyalty_stg__email_campaign_emails_clicked.adee51924d", "test.yoda.not_null_loyalty_stg__email_campaign_emails_created_at.3f23aae44e", "test.yoda.not_null_loyalty_stg__email_campaign_emails_delayed.354349f78e", "test.yoda.not_null_loyalty_stg__email_campaign_emails_email_campaign_id.fafdb8a303", "test.yoda.not_null_loyalty_stg__email_campaign_emails_id.41eb3b382f", "test.yoda.not_null_loyalty_stg__email_campaign_emails_marked_as_spam.5516734a3b", "test.yoda.not_null_loyalty_stg__email_campaign_emails_opened.a5f55ca146", "test.yoda.not_null_loyalty_stg__email_campaign_emails_rejected.6e5ee9ade4", "test.yoda.not_null_loyalty_stg__email_campaign_emails_sent.82b5353261", "test.yoda.not_null_loyalty_stg__email_campaign_emails_soft_bounced.e1759cf142", "test.yoda.not_null_loyalty_stg__email_campaign_emails_unsubscribed.cbe049b3b5", "test.yoda.not_null_loyalty_stg__email_campaign_emails_updated_at.f35e0ec669", "test.yoda.unique_loyalty_stg__email_campaign_emails_id.bbc907fb95"], "model.yoda.loyalty_stg__email_campaigns": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__snowflake_email_campaigns"], "model.yoda.loyalty_stg__group_customers": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__merchant_point_transaction_metrics_daily", "model.yoda.loyalty_stg__enriched_customers"], "model.yoda.loyalty_stg__install_loyalty": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__segment_install_event_details", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__install_loyalty_1.b473ebd87a"], "model.yoda.loyalty_stg__instance_versions": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake", "model.yoda.loyalty__widgetrepodb_instance_versions_to_snowflake"], "model.yoda.loyalty_stg__instances": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake", "model.yoda.loyalty__widgetrepodb_instances_to_snowflake"], "model.yoda.loyalty_stg__known_crawlers": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot", "test.yoda.dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__known_crawlers_1.81fcd9848e"], "model.yoda.loyalty_stg__merchants": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__merchant", "model.yoda.loyalty__dim_merchants_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__pixel_events"], "model.yoda.loyalty_stg__onsite_v3": ["exposure.yoda.loyalty__pixel_events", "model.yoda.loyalty_stg__normalized_pixel_events"], "model.yoda.loyalty_stg__perks": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__perk", "model.yoda.loyalty__fact_perks_daily_snapshot", "model.yoda.loyalty__fact_referral_perks_daily_snapshot", "model.yoda.loyalty__sms_earning_rule_loyalty"], "model.yoda.loyalty_stg__perks_user_actions": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__fact_referral_perks_daily_snapshot"], "model.yoda.loyalty_stg__plans": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__loyalty_plan", "model.yoda.loyalty__snowflake_plans"], "model.yoda.loyalty_stg__point_redemptions": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__point_redemption", "model.yoda.email__email_campaign_loyalty_kpi", "model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option", "model.yoda.loyalty_stg__all_redemption_to_purchase"], "model.yoda.loyalty_stg__points_container_expiration": ["exposure.yoda.loyalty__points"], "model.yoda.loyalty_stg__points_state": ["exposure.yoda.loyalty__points"], "model.yoda.loyalty_stg__points_transaction": ["exposure.yoda.loyalty__points", "model.yoda.loyalty_stg__point_transaction"], "model.yoda.loyalty_stg__processors": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__processor", "model.yoda.loyalty__fact_purchases_daily_snapshot"], "model.yoda.loyalty_stg__purchase_items": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__fact_purchase_items_daily_snapshot"], "model.yoda.loyalty_stg__purchases": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats", "model.yoda.analytics___loyalty_stg__purchase", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option", "model.yoda.loyalty_stg__all_redemption_to_purchase"], "model.yoda.loyalty_stg__purchases_redemptions": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__purchase_redemption", "model.yoda.loyalty__fact_purchases_redemptions_daily_snapshot", "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option", "model.yoda.loyalty_stg__all_redemption_to_purchase"], "model.yoda.loyalty_stg__purchases_with_currency": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__fact_refunds_daily_snapshot"], "model.yoda.loyalty_stg__redemption_codes": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__redemption_code", "model.yoda.loyalty__fact_redemptions_daily_snapshot"], "model.yoda.loyalty_stg__redemption_options": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__redemption_option", "model.yoda.loyalty__fact_redemptions_daily_snapshot", "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option"], "model.yoda.loyalty_stg__referral_codes": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__swell_referral_codes", "model.yoda.loyalty__dim_referral_codes_daily_snapshot"], "model.yoda.loyalty_stg__referral_discount_codes": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__dim_referral_discount_codes_daily_snapshot"], "model.yoda.loyalty_stg__referral_receipts": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__fact_referral_receipts_daily_snapshot"], "model.yoda.loyalty_stg__referral_shares": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__fact_referral_shares_daily_snapshot"], "model.yoda.loyalty_stg__referral_snapshots": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__fact_referral_snapshots_daily_snapshot"], "model.yoda.loyalty_stg__referrals": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__swell_referrals", "model.yoda.loyalty__dim_referral_codes_daily_snapshot", "model.yoda.loyalty__fact_referrals_without_crawlers_daily_snapshot", "model.yoda.loyalty__snowflake_referrals"], "model.yoda.loyalty_stg__refund_items": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__fact_refund_items_daily_snapshot"], "model.yoda.loyalty_stg__refunds": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__fact_refunds_daily_snapshot"], "model.yoda.loyalty_stg__static_contents": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake", "model.yoda.loyalty__widgetrepodb_static_contents_to_snowflake"], "model.yoda.loyalty_stg__subscriptions": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__loyalty_subscription", "model.yoda.loyalty__dim_subscriptions_daily_snapshot", "model.yoda.loyalty__snowflake_subscriptions"], "model.yoda.loyalty_stg__swell_vip_tiers_settings": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty__merchant", "test.yoda.not_null_loyalty_stg__swell_vip_tiers_settings_merchant_id.e6804f14f2", "test.yoda.unique_loyalty_stg__swell_vip_tiers_settings_merchant_id.211caa536c"], "model.yoda.loyalty_stg__templates": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake", "model.yoda.loyalty__widgetrepodb_templates_to_snowflake"], "model.yoda.loyalty_stg__uninstall_loyalty": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__segment_uninstall", "test.yoda.not_null_loyalty_stg__uninstall_loyalty_merchant_id.01515316c9", "test.yoda.not_null_loyalty_stg__uninstall_loyalty_partition_date.f65c8439c9"], "model.yoda.loyalty_stg__user_actions": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__fact_referral_perks_daily_snapshot", "model.yoda.loyalty__fact_user_actions_daily_snapshot", "model.yoda.loyalty__review_earning_rule_loyalty"], "model.yoda.loyalty_stg__user_agents": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__fact_user_agents_daily_snapshot"], "model.yoda.loyalty_stg__vip_tiers": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty__ht_customers_vip_tiers_stats", "model.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "model.yoda.loyalty__dim_vip_tiers_daily_snapshot", "model.yoda.loyalty__dim_vip_tiers_history_daily_snapshot"], "model.yoda.loyalty_stg__vip_tiers_settings": ["exposure.yoda.loyalty__chainperks"], "model.yoda.loyalty_stg__vip_tiers_thresholds": ["exposure.yoda.loyalty__chainperks", "model.yoda.loyalty__dim_vip_tiers_daily_snapshot"], "model.yoda.loyalty_stg__widget_types": ["exposure.yoda.loyalty__widgetsrepository_to_snowflake", "model.yoda.loyalty__widgetrepodb_widget_types_to_snowflake"], "model.yoda.loyalty_stg__yotpo_platform_accounts": ["exposure.yoda.loyalty__chainperks", "model.yoda.analytics___loyalty_stg__loyalty_account", "model.yoda.loyalty__dim_merchants_daily_snapshot", "model.yoda.loyalty__dim_yotpo_platform_accounts_daily_snapshot", "model.yoda.loyalty__opted_in_customers", "model.yoda.loyalty__redeemed_purchases_with_subs_redemption_option", "model.yoda.loyalty__review_earning_rule_loyalty", "model.yoda.loyalty__sms_earning_rule_loyalty", "model.yoda.loyalty__tier_expiring_reminder_kpi"], "model.yoda.loyalty_stg__all_redemption_to_purchase": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot"], "model.yoda.loyalty_stg__domain_useradmin_to_customer_id": ["exposure.yoda.loyalty__pixel_events", "model.yoda.loyalty__pixel_events"], "model.yoda.loyalty_stg__enriched_customers": ["exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot", "model.yoda.loyalty__dim_customers_daily_snapshot", "model.yoda.loyalty__dim_customers_with_vip_tiers_history_daily_snapshot", "model.yoda.loyalty__fact_purchases_daily_snapshot", "model.yoda.loyalty__opted_in_customers", "model.yoda.loyalty__review_earning_rule_loyalty", "model.yoda.loyalty__sms_earning_rule_loyalty", "model.yoda.loyalty__tier_expiring_reminder_kpi", "model.yoda.loyalty_stg__all_redemption_to_purchase", "model.yoda.subscriptions__synergy_kpi_redeemed_points", "test.yoda.accepted_values_loyalty_stg__enriched_customers_is_member__False__True__False.a33b7531e0", "test.yoda.not_null_loyalty_stg__enriched_customers_customer_id.632a3d255f", "test.yoda.not_null_loyalty_stg__enriched_customers_is_member.97b742e2eb", "test.yoda.not_null_loyalty_stg__enriched_customers_merchant_id.fb9c39e016", "test.yoda.not_null_loyalty_stg__enriched_customers_updated_at.4cff0bd8dd", "test.yoda.unique_loyalty_stg__enriched_customers_customer_id.321a122973"], "model.yoda.loyalty_stg__normalized_pixel_events": ["exposure.yoda.loyalty__pixel_events", "model.yoda.loyalty__pixel_events", "model.yoda.loyalty_stg__domain_useradmin_to_customer_id"], "model.yoda.loyalty_stg__point_transaction": ["exposure.yoda.loyalty__points", "model.yoda.loyalty__customer_point_transaction_metrics_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__point_transaction_1.388cc831c9", "test.yoda.not_null_loyalty_stg__point_transaction_transaction_id.762f30efd1", "test.yoda.unique_loyalty_stg__point_transaction_transaction_id.1c44f00d74"], "model.yoda.north_bound__segment_profile": ["exposure.yoda.north_bound__At_21_30_only_on_Sunday"], "model.yoda.platform__cdp_streaming_aggregated_events": ["exposure.yoda.platform__cdp_streaming_aggregated_events", "exposure.yoda.platform__singas_cdp_streaming_aggregated_events"], "model.yoda.platform__customer_dimensions_metrics": ["exposure.yoda.platform__customer_dataset", "model.yoda.platform__customer_dimensions_metrics_analytics", "model.yoda.platform__customer_dimensions_metrics_to_snowflake"], "model.yoda.platform__customer_dimensions_metrics_analytics": ["exposure.yoda.platform__customer_dataset"], "model.yoda.platform__customer_dimensions_metrics_inc": ["exposure.yoda.platform__customer_dimensions_metrics", "model.yoda.platform__customer_dimensions_metrics_inc_to_snowflake"], "model.yoda.platform__customer_dimensions_metrics_inc_to_snowflake": ["exposure.yoda.platform__customer_dimensions_metrics"], "model.yoda.platform__customer_dimensions_metrics_to_snowflake": ["exposure.yoda.platform__customer_dataset"], "model.yoda.platform__digest_email_track": ["exposure.yoda.platform__email_digest_schedule"], "model.yoda.platform__dim_stores": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform__integrations_adoption": ["exposure.yoda.platform__Orbits", "exposure.yoda.platform__integrations_adoption_profile", "test.yoda.not_null_platform__integrations_adoption_application_id.d50d3f5e03", "test.yoda.not_null_platform__integrations_adoption_application_name.9386d798e4", "test.yoda.not_null_platform__integrations_adoption_created_at.37b0d90b09", "test.yoda.not_null_platform__integrations_adoption_snapshot_date.ccc0700817", "test.yoda.not_null_platform__integrations_adoption_store_id.5b1b7c55d0"], "model.yoda.platform__integrations_adoption_per_application": ["exposure.yoda.platform__Orbits", "exposure.yoda.platform__integrations_adoption_per_application_profile", "test.yoda.not_null_platform__integrations_adoption_per_application_application_id.161ec59cae", "test.yoda.not_null_platform__integrations_adoption_per_application_application_name.40f82b15e1"], "model.yoda.platform__integrations_adoption_per_store": ["exposure.yoda.platform__Orbits", "exposure.yoda.platform__integrations_adoption_per_store_profile", "test.yoda.not_null_platform__integrations_adoption_per_store_store_id.594717070b"], "model.yoda.platform__orders_with_product_lines_attribution": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__orders_with_product_lines_attribution_to_snowflake", "model.yoda.platform_stg__digest"], "model.yoda.platform__orders_with_product_lines_attribution_daily": ["exposure.yoda.platform__retention_metrics", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "model.yoda.platform__orders_with_product_lines_attribution", "model.yoda.platform__orders_with_product_lines_attribution_daily_to_snowflake"], "model.yoda.platform__orders_with_product_lines_attribution_daily_to_snowflake": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform__orders_with_product_lines_attribution_to_snowflake": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform__owners_packages_organization_view": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform__owners_packages_store_view": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform__retention_metrics_average_order_value": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_average_order_value_to_snowflake", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value"], "model.yoda.platform__retention_metrics_average_order_value_to_snowflake": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform__retention_metrics_bar_chart_total_sales": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_bar_chart_total_sales_to_snowflake"], "model.yoda.platform__retention_metrics_bar_chart_total_sales_to_snowflake": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform__retention_metrics_customer_segment_ratio": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_customer_segment_ratio_to_snowflake", "test.yoda.accepted_values_platform__retention_metrics_customer_segment_ratio_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.7c99cc067e", "test.yoda.not_null_platform__retention_metrics_customer_segment_ratio_app_key.08f694e03e"], "model.yoda.platform__retention_metrics_customer_segment_ratio_to_snowflake": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform__retention_metrics_orders": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_average_order_value", "model.yoda.platform__retention_metrics_orders_to_snowflake", "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month", "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly"], "model.yoda.platform__retention_metrics_orders_to_snowflake": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform__retention_metrics_returning_customers": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_returning_customers_to_snowflake", "model.yoda.platform_stg__digest", "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days__100___100.538bc912e0", "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days__100___100.110e77d070", "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days__100___100.661859c0d8", "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days__100___100.18abaa0517", "test.yoda.not_null_platform__retention_metrics_returning_customers_app_key.a5654fb46d", "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days.757eba9f4d", "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days.beaf53283a", "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days.f818fbb53d", "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days.c02255bdfa", "test.yoda.unique_platform__retention_metrics_returning_customers_app_key.03eca0d9cd"], "model.yoda.platform__retention_metrics_returning_customers_to_snowflake": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake", "test.yoda.accepted_values_platform__retention_metrics_total_revenue_trends_by_segments_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.d537ec1279", "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_app_key.138987bbfa", "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_engaged.c7b89ae0f7", "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_new.08adaeb3b7", "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_returning.b9186412bd"], "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments_to_snowflake": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform__retention_metrics_total_sales_and_customers": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_total_sales_and_customers_to_snowflake", "model.yoda.platform_stg__digest"], "model.yoda.platform__retention_metrics_total_sales_and_customers_to_snowflake": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform__retention_metrics_trends_average_order_value": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake", "test.yoda.accepted_values_platform__retention_metrics_trends_average_order_value_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.0228a17bf2"], "model.yoda.platform__retention_metrics_trends_average_order_value_to_snowflake": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform__retention_metrics_trends_average_sales_per_customer": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake", "test.yoda.accepted_values_platform__retention_metrics_trends_average_sales_per_customer_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.c2853eef65"], "model.yoda.platform__retention_metrics_trends_average_sales_per_customer_to_snowflake": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform__sms_store_verification": ["exposure.yoda.platform__At_00_30", "model.yoda.platform__sms_store_verification_to_snowflake"], "model.yoda.platform__sms_store_verification_to_snowflake": ["exposure.yoda.platform__At_00_30"], "model.yoda.platform__synergies_kpi": ["exposure.yoda.platform__synergies_at_00_30", "model.yoda.analytics___synergies__kpi_ranked_action", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform__synergies_kpi_1.778a1da858", "test.yoda.dbt_utils_unique_combination_of_columns_platform__synergies_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id.f6c94956eb", "test.yoda.not_null_platform__synergies_kpi_app_key.18962ec868", "test.yoda.not_null_platform__synergies_kpi_id.63385699ca", "test.yoda.not_null_platform__synergies_kpi_source_id.76aef20d60", "test.yoda.not_null_platform__synergies_kpi_source_type.9b5bc448b1", "test.yoda.not_null_platform__synergies_kpi_synergy_id.c084deb6ce"], "model.yoda.platform_stg__account_created": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__segment_account_created", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_created_1.36e5090435"], "model.yoda.platform_stg__account_platforms": ["exposure.yoda.platform__At_16_00", "model.yoda.analytics___platform_stg__account_platform", "model.yoda.platform_stg__merchant_platform_id", "model.yoda.platform_stg__merchant_shop_currency", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_platforms_1.24a52ed0f0"], "model.yoda.platform_stg__accounts": ["exposure.yoda.platform__koalas_intermediate_owned_models", "model.yoda.analytics___platform_stg__account", "model.yoda.communication_stg__recently_active_users", "model.yoda.platform__owners_packages_organization_view", "model.yoda.platform__owners_packages_store_view", "model.yoda.platform_stg__all_accounts", "model.yoda.platform_stg__merchant_platform_id", "model.yoda.platform_stg__merchant_shop_currency", "model.yoda.subscriptions__subscription_accounts", "model.yoda.subscriptions__subscription_total_orders", "model.yoda.ugc__export_reviews", "model.yoda.ugc_stg__relevant_reporting_reviews_accounts", "test.yoda.not_null_platform_stg__accounts_id.108c0bdbbf", "test.yoda.unique_platform_stg__accounts_id.fe64c3f0a5"], "model.yoda.platform_stg__activation_step": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__segment_activation_step", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__activation_step_1.93c0f37cd3"], "model.yoda.platform_stg__app_install_completed": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__segment_app_install_completed", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_install_completed_1.5d1a24ef06"], "model.yoda.platform_stg__app_uninstalled": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__segment_app_uninstalled", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_uninstalled_1.8d782dd9e0"], "model.yoda.platform_stg__apps": ["exposure.yoda.platform__At_16_00", "model.yoda.analytics___platform_stg__store_user_mapping", "model.yoda.communication_stg__recently_active_users", "model.yoda.platform_stg__all_apps"], "model.yoda.platform_stg__attribute_sets": ["exposure.yoda.platform__corgis", "model.yoda.ugc__export_reviews"], "model.yoda.platform_stg__b2b": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__segment_b_to_b", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__b2b_1.e1a5239104"], "model.yoda.platform_stg__billing_audits": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__categories": ["exposure.yoda.platform__At_16_00", "model.yoda.analytics___platform_stg__category", "model.yoda.analytics___platform_stg__plan_category"], "model.yoda.platform_stg__cdp_streaming_events": ["exposure.yoda.platform__cdp_streaming_aggregated_events", "model.yoda.platform__cdp_streaming_aggregated_events"], "model.yoda.platform_stg__currency_rates": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__currency_exchange_rate", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "model.yoda.platform_stg__email_shopify_orders_to_shop_currency", "model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency", "model.yoda.platform_stg__sms_shopify_orders_to_shop_currency", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__currency_rates_1.68f3e1bb6c"], "model.yoda.platform_stg__custom_attributes": ["exposure.yoda.platform__corgis", "model.yoda.ugc__export_reviews"], "model.yoda.platform_stg__customer_dataset": ["exposure.yoda.platform__customer_dataset", "model.yoda.platform__customer_dimensions_metrics", "model.yoda.platform_stg__customer_dimensions_brand_affection", "model.yoda.platform_stg__customer_dimensions_business_metrics", "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material", "model.yoda.platform_stg__customer_dimensions_loyalty_program"], "model.yoda.platform_stg__customer_dataset_reduced": ["exposure.yoda.platform__customer_dimensions_metrics", "model.yoda.platform_stg__customer_dimensions_brand_affection_inc", "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc", "model.yoda.platform_stg__customer_dimensions_loyalty_program_inc", "model.yoda.platform_stg__customer_dimensions_returning_buyers_inc"], "model.yoda.platform_stg__dim_calendar": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___cs__opportunity_won_sale_daily", "model.yoda.analytics___finance__organization_product_usage_revenue_monthly", "model.yoda.analytics___finance__zuora_organization_plan_rank_daily", "model.yoda.analytics___finance__zuora_subscription_mrr_daily", "model.yoda.analytics___loyalty__earning_rule_activation_daily", "model.yoda.analytics___loyalty__merchant_activeness_daily", "model.yoda.analytics___platform__organization_opportunity_monthly", "model.yoda.analytics___platform__organization_product_segment_daily", "model.yoda.analytics___platform__store_activeness_daily", "model.yoda.analytics___platform__store_dynamic_date_explode_from_creation", "model.yoda.analytics___platform__store_metrics_daily", "model.yoda.analytics___platform__store_plan_daily", "model.yoda.analytics___platform__store_snapshot_daily", "model.yoda.analytics___salesforce__account_tracking_daily", "model.yoda.analytics___sms_stg__user_date_explode_from_creation", "model.yoda.analytics___subscriptions__store_activeness_daily", "model.yoda.analytics___subscriptions__subscription_contract_daily", "model.yoda.analytics___subscriptions__subscription_contract_monthly", "model.yoda.analytics___synergies__loyalty_store_metrics_monthly", "model.yoda.analytics___synergies__store_enablement_daily", "model.yoda.analytics___synergies__ugc_store_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly", "model.yoda.analytics___ugc__store_metrics_daily"], "model.yoda.platform_stg__features": ["exposure.yoda.platform__koalas_intermediate_owned_models", "model.yoda.analytics___platform_stg__feature", "model.yoda.subscriptions__subscription_accounts", "model.yoda.subscriptions__subscription_total_orders"], "model.yoda.platform_stg__file_exported": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__segment_file_exported"], "model.yoda.platform_stg__fulfillments": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__fulfillment", "test.yoda.not_null_platform_stg__fulfillments_id.5cdd9a9673", "test.yoda.unique_platform_stg__fulfillments_id.bb76db0a7f"], "model.yoda.platform_stg__groups": ["exposure.yoda.platform__koalas_intermediate_owned_models", "model.yoda.ugc__reporting_reviews"], "model.yoda.platform_stg__gtins": ["exposure.yoda.platform__corgis", "model.yoda.ugc__export_reviews"], "model.yoda.platform_stg__limit_reached": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__segment_limit_reached", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__limit_reached_1.404afcaf21", "test.yoda.not_null_platform_stg__limit_reached_message_id.33f98204c4", "test.yoda.unique_platform_stg__limit_reached_message_id.c3b289bfa1"], "model.yoda.platform_stg__onboarding": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__segment_onboarding", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onboarding_1.a724bde051"], "model.yoda.platform_stg__onsite_v2": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_two", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_two", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v2_1.7bed67921a"], "model.yoda.platform_stg__onsite_v3": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__loyalty_pixel_widget_v_three", "model.yoda.analytics___platform_stg__subscriptions_pixel_widget_v_three", "model.yoda.analytics___platform_stg__ugc_pixel_widget_v_three", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v3_1.c3022b0a33"], "model.yoda.platform_stg__order_lines": ["exposure.yoda.platform__corgis", "model.yoda.analytics___platform_stg__order_line", "model.yoda.subscriptions__subscription_contract_order_lines", "model.yoda.ugc__export_reviews", "model.yoda.ugc_stg__shopify_shop_reviews_backfill", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__order_lines_1.ce3b7be8f2"], "model.yoda.platform_stg__orders": ["exposure.yoda.platform__corgis", "model.yoda.analytics___platform_stg__store_order", "model.yoda.platform_stg__retention_metrics_orders", "model.yoda.subscriptions__subscription_contract_order_lines", "model.yoda.ugc__export_reviews", "model.yoda.ugc__partial_reviewed_orders", "model.yoda.ugc_stg__shopify_shop_reviews_backfill", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__orders_1.39cf73c1b2", "test.yoda.not_null_platform_stg__orders_app_key.94d6cc8864"], "model.yoda.platform_stg__organizations": ["exposure.yoda.platform__At_16_00", "model.yoda.analytics___platform_stg__organization", "model.yoda.platform__owners_packages_organization_view", "model.yoda.platform__owners_packages_store_view", "model.yoda.platform_stg__digest_accounts", "model.yoda.ugc_stg__relevant_reporting_reviews_accounts", "test.yoda.not_null_platform_stg__organizations_id.17f56f00ec", "test.yoda.unique_platform_stg__organizations_id.043a3c4fa9"], "model.yoda.platform_stg__owner_feature_settings": ["exposure.yoda.platform__koalas_intermediate_owned_models", "model.yoda.analytics___platform_stg__owner_feature_setting", "model.yoda.subscriptions__subscription_accounts"], "model.yoda.platform_stg__owners_features": ["exposure.yoda.platform__koalas_intermediate_owned_models", "model.yoda.analytics___platform_stg__owner_feature", "model.yoda.subscriptions__subscription_accounts", "model.yoda.subscriptions__subscription_total_orders"], "model.yoda.platform_stg__owners_package_audits": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__owners_packages": ["exposure.yoda.platform__At_16_00", "model.yoda.analytics___platform_stg__owner_plan", "model.yoda.platform__owners_packages_organization_view", "model.yoda.platform__owners_packages_store_view", "model.yoda.platform_stg__digest_accounts", "model.yoda.ugc_stg__relevant_reporting_reviews_accounts"], "model.yoda.platform_stg__owners_packages_history": ["exposure.yoda.platform__At_16_00", "model.yoda.analytics___platform_stg__owner_plan_history"], "model.yoda.platform_stg__package_feature_settings": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__package_features": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__package_provider_settings": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__package_tag_types": ["exposure.yoda.platform__At_16_00", "model.yoda.analytics___platform_stg__plan_tag_type", "model.yoda.platform_stg__digest_accounts"], "model.yoda.platform_stg__package_tags": ["exposure.yoda.platform__At_16_00", "model.yoda.analytics___platform_stg__plan_tag", "model.yoda.platform_stg__digest_accounts"], "model.yoda.platform_stg__package_usages_settings": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__packages": ["exposure.yoda.platform__At_16_00", "model.yoda.analytics___platform_stg__plan", "model.yoda.platform__owners_packages_organization_view", "model.yoda.platform_stg__digest_accounts", "model.yoda.ugc_stg__relevant_reporting_reviews_accounts", "test.yoda.not_null_platform_stg__packages_id.5b80680c17", "test.yoda.unique_platform_stg__packages_id.b938e21c3c"], "model.yoda.platform_stg__plan_settings": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__platform_package_features": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__platform_types": ["exposure.yoda.platform__At_16_00", "model.yoda.analytics___platform_stg__platform_type", "model.yoda.platform_stg__stores_enrichment", "test.yoda.not_null_platform_stg__platform_types_id.9199155447", "test.yoda.unique_platform_stg__platform_types_id.e61a91f579"], "model.yoda.platform_stg__popup_displayed": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__segment_popup_displayed", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__popup_displayed_1.7167e005f6"], "model.yoda.platform_stg__product_enabled": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__segment_product_enabled", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__product_enabled_1.e4eb4c574d"], "model.yoda.platform_stg__products": ["exposure.yoda.platform__koalas_intermediate_owned_models", "model.yoda.analytics___platform_stg__product", "model.yoda.platform__sms_store_verification", "model.yoda.subscriptions__subscription_contract_line_policy", "model.yoda.subscriptions__subscription_contract_order_lines", "model.yoda.ugc__export_reviews", "model.yoda.ugc__reporting_reviews", "model.yoda.ugc_stg__shopify_shop_reviews_backfill"], "model.yoda.platform_stg__provider_types": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__sections": ["exposure.yoda.platform__synergies_at_00_30", "model.yoda.analytics___platform_stg__home_screen_section", "model.yoda.analytics___synergies_stg__home_screen_section"], "model.yoda.platform_stg__store_applications": ["exposure.yoda.platform__Orbits"], "model.yoda.platform_stg__store_platforms": ["exposure.yoda.platform__At_16_00", "model.yoda.platform_stg__stores_enrichment", "test.yoda.not_null_platform_stg__store_platforms_id.d38ec1c91c", "test.yoda.unique_platform_stg__store_platforms_id.86a9ff434c"], "model.yoda.platform_stg__stores": ["exposure.yoda.platform__At_16_00", "model.yoda.platform_stg__stores_enrichment", "test.yoda.not_null_platform_stg__stores_app_key.df3929b531", "test.yoda.not_null_platform_stg__stores_store_id.eec556c579", "test.yoda.unique_platform_stg__stores_app_key.b7ccbfec8b", "test.yoda.unique_platform_stg__stores_store_id.245bf7c8f4"], "model.yoda.platform_stg__subscription_cycle_usages": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__subscription_pending_usages": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__subscription_providers": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__subscription_statuses": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__subscription_usages_settings": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__synergies_crud": ["exposure.yoda.platform__synergies_at_00_30", "model.yoda.analytics___platform_stg__synergy_enablement_event", "model.yoda.analytics___synergies_stg__enablement_event"], "model.yoda.platform_stg__timezone_country_mapping": ["exposure.yoda.analytics___platform__schedule_once_models", "model.yoda.analytics___sms__store", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__timezone_country_mapping_1.71a0cfb06f"], "model.yoda.platform_stg__uninstalled_yotpo": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___platform_stg__segment_uninstalled_yotpo", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__uninstalled_yotpo_1.b2d53f31db"], "model.yoda.platform_stg__usages": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__usages_history": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__usages_tiers_settings": ["exposure.yoda.platform__At_16_00"], "model.yoda.platform_stg__users_organizations": ["exposure.yoda.platform__email_digest_schedule", "model.yoda.platform_stg__digest_accounts"], "model.yoda.platform_stg__variants": ["exposure.yoda.platform__koalas_intermediate_owned_models", "model.yoda.subscriptions__subscription_contract_line_policy", "model.yoda.subscriptions__subscription_contract_order_lines", "model.yoda.ugc_stg__shopify_shop_reviews_backfill"], "model.yoda.platform_stg__widget_configurations": ["exposure.yoda.platform__synergies_at_00_30", "model.yoda.analytics___synergies_stg__home_screen_widget_configuration"], "model.yoda.platform_stg__widgets": ["exposure.yoda.platform__synergies_at_00_30", "model.yoda.analytics___platform_stg__home_screen_widget", "model.yoda.analytics___synergies_stg__home_screen_widget"], "model.yoda.platform_stg__all_accounts": ["exposure.yoda.platform__At_17_00"], "model.yoda.platform_stg__all_apps": ["exposure.yoda.platform__At_17_00"], "model.yoda.platform_stg__customer_dimensions_brand_affection": ["exposure.yoda.platform__customer_dataset", "model.yoda.platform__customer_dimensions_metrics", "test.yoda.accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection__Advocate__Likes__Disappointed__Hater__N_A.6de3a1c638", "test.yoda.accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection_rank__0__1__2__3__4.520afa83f7", "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_brand_affection.294dc11b1c", "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_brand_affection_rank.a8fff1d958", "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_customer_id.0500ea4ddb", "test.yoda.unique_platform_stg__customer_dimensions_brand_affection_customer_id.d2bc5d9b6f"], "model.yoda.platform_stg__customer_dimensions_brand_affection_inc": ["exposure.yoda.platform__customer_dimensions_metrics", "model.yoda.platform__customer_dimensions_metrics_inc"], "model.yoda.platform_stg__customer_dimensions_business_metrics": ["exposure.yoda.platform__customer_dataset", "model.yoda.platform__customer_dimensions_metrics", "model.yoda.platform_stg__customer_dimensions_returning_buyers"], "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material": ["exposure.yoda.platform__customer_dataset", "model.yoda.platform__customer_dimensions_metrics", "test.yoda.accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material__Not_an_SMS_User__Unsubscribed__Ignores__Newcomer__Engaging__Highly_Engaged.b5b7c56881", "test.yoda.accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank__0__1__2__3__4__5.411d931f2d", "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_customer_id.5ee49bfb4a", "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material.b8949619fc", "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank.0236e69b6e", "test.yoda.unique_platform_stg__customer_dimensions_engagement_marketing_material_customer_id.d9f15debd3"], "model.yoda.platform_stg__customer_dimensions_engagement_marketing_material_inc": ["exposure.yoda.platform__customer_dimensions_metrics", "model.yoda.platform__customer_dimensions_metrics_inc"], "model.yoda.platform_stg__customer_dimensions_loyalty_program": ["exposure.yoda.platform__customer_dataset", "model.yoda.platform__customer_dimensions_metrics", "test.yoda.not_null_platform_stg__customer_dimensions_loyalty_program_customer_id.9a4c56f4fd", "test.yoda.unique_platform_stg__customer_dimensions_loyalty_program_customer_id.d5724ded6a"], "model.yoda.platform_stg__customer_dimensions_loyalty_program_inc": ["exposure.yoda.platform__customer_dimensions_metrics", "model.yoda.platform__customer_dimensions_metrics_inc"], "model.yoda.platform_stg__customer_dimensions_returning_buyers": ["exposure.yoda.platform__customer_dataset", "model.yoda.platform__customer_dimensions_metrics", "test.yoda.accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers__Prospects__Single_Purchase__Repeat_Purchase__Frequent_Shopper.43cf54a015", "test.yoda.accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank__0__1__2__3.494420f036", "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_customer_id.c8bbbe4528", "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers.88abcb6a5a", "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank.736fcf711c", "test.yoda.unique_platform_stg__customer_dimensions_returning_buyers_customer_id.8e16ea8dcd"], "model.yoda.platform_stg__customer_dimensions_returning_buyers_inc": ["exposure.yoda.platform__customer_dimensions_metrics", "model.yoda.platform__customer_dimensions_metrics_inc"], "model.yoda.platform_stg__digest": ["exposure.yoda.platform__email_digest_schedule", "model.yoda.platform__digest_email_track"], "model.yoda.platform_stg__digest_accounts": ["exposure.yoda.platform__email_digest_schedule", "model.yoda.platform_stg__digest"], "model.yoda.platform_stg__email_shopify_orders_to_shop_currency": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__orders_with_product_lines_attribution_daily"], "model.yoda.platform_stg__ic_store_applications": ["exposure.yoda.platform__Orbits", "model.yoda.platform__integrations_adoption", "model.yoda.platform__integrations_adoption_per_application", "model.yoda.platform__integrations_adoption_per_store"], "model.yoda.platform_stg__integrations_names": ["exposure.yoda.platform__Orbits", "model.yoda.platform__integrations_adoption", "model.yoda.platform__integrations_adoption_per_application"], "model.yoda.platform_stg__merchant_platform_id": ["exposure.yoda.platform__email_digest_schedule", "model.yoda.platform_stg__digest_accounts"], "model.yoda.platform_stg__merchant_shop_currency": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform_stg__digest", "model.yoda.platform_stg__email_shopify_orders_to_shop_currency", "model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency", "model.yoda.platform_stg__sms_shopify_orders_to_shop_currency"], "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_current_month": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_bar_chart_total_sales"], "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_bar_chart_total_sales"], "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_order_value": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_trends_average_order_value"], "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_trends_average_sales_per_customer", "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_engaged_customer.4817581c98", "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_new_customer.4a8fee0d84", "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_returning_customer.e644585ce1"], "model.yoda.platform_stg__retention_metrics_mock_orders": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency", "model.yoda.platform_stg__retention_metrics_segmented_customers", "model.yoda.platform_stg__retention_metrics_segmented_customers", "model.yoda.platform_stg__retention_metrics_segmented_customers", "model.yoda.platform_stg__retention_metrics_segmented_customers", "model.yoda.platform_stg__retention_metrics_segmented_customers", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly", "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly"], "model.yoda.platform_stg__retention_metrics_orders": ["exposure.yoda.platform__retention_metrics"], "model.yoda.platform_stg__retention_metrics_orders_in_merchant_currency": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_orders", "model.yoda.platform__retention_metrics_returning_customers", "model.yoda.platform_stg__retention_metrics_trends_orders"], "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_trends_average_order_value", "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_engaged_customers.c606e37c8a", "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_new_customers.fb8eb7382a", "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_returning_customers.cd98bc4e12"], "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_trends_average_sales_per_customer", "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_engaged_customer.dfe71027cd", "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_new_customer.af4e49837b", "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_returning_customer.361c352a44"], "model.yoda.platform_stg__retention_metrics_segmented_customers": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_orders", "model.yoda.platform_stg__retention_metrics_trends_orders", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__retention_metrics_segmented_customers_1.a572a0f956", "test.yoda.dbt_utils_unique_combination_of_columns_platform_stg__retention_metrics_segmented_customers_external_customer_id__app_key.5c0c405e9f", "test.yoda.not_null_platform_stg__retention_metrics_segmented_customers_app_key.a4a568f4a4", "test.yoda.not_null_platform_stg__retention_metrics_segmented_customers_external_customer_id.28244c2486"], "model.yoda.platform_stg__retention_metrics_segmented_customers_monthly": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform_stg__retention_metrics_bar_chart_total_sales_monthly"], "model.yoda.platform_stg__retention_metrics_trends_orders": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__retention_metrics_customer_segment_ratio", "model.yoda.platform__retention_metrics_customer_segment_ratio", "model.yoda.platform__retention_metrics_customer_segment_ratio", "model.yoda.platform__retention_metrics_customer_segment_ratio", "model.yoda.platform__retention_metrics_customer_segment_ratio", "model.yoda.platform__retention_metrics_customer_segment_ratio", "model.yoda.platform__retention_metrics_customer_segment_ratio", "model.yoda.platform__retention_metrics_customer_segment_ratio", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "model.yoda.platform__retention_metrics_total_revenue_trends_by_segments", "model.yoda.platform__retention_metrics_total_sales_and_customers", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_average_order_value", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer", "model.yoda.platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer"], "model.yoda.platform_stg__sms_shopify_orders_to_shop_currency": ["exposure.yoda.platform__retention_metrics", "model.yoda.platform__orders_with_product_lines_attribution_daily"], "model.yoda.platform_stg__stores_enrichment": ["exposure.yoda.platform__At_16_00", "model.yoda.platform__dim_stores"], "model.yoda.platform_stg__synergy_product_mapping": ["exposure.yoda.platform__synergies_at_00_30", "model.yoda.analytics___synergies__activation_level_daily", "model.yoda.analytics___synergies__loyalty_store_metrics_monthly", "model.yoda.analytics___synergies__loyalty_store_synergy_metrics_monthly", "model.yoda.analytics___synergies__organization_synergy_activeness_monthly", "model.yoda.analytics___synergies__synergy_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_metrics_monthly", "model.yoda.analytics___synergies__ugc_store_synergy_metrics_monthly", "test.yoda.accepted_values_platform_stg__synergy_product_mapping_product_name__reviews__loyalty__sms__email__subscriptions.97c67a96be", "test.yoda.dbt_utils_unique_combination_of_columns_platform_stg__synergy_product_mapping_synergy_id__product_name.c1289ab79c", "test.yoda.not_null_platform_stg__synergy_product_mapping_synergy_id.3b7caadd31"], "model.yoda.platform_stg__synergy_start_date_mapping": ["exposure.yoda.platform__At_00_30", "model.yoda.analytics___synergies_stg__enablement_event", "test.yoda.not_null_platform_stg__synergy_start_date_mapping_synergy_id.5212293e31", "test.yoda.unique_platform_stg__synergy_start_date_mapping_synergy_id.c18d65c2a6"], "model.yoda.sms__api_calls_with_customer": ["exposure.yoda.sms__sms_additional_kpi_models", "model.yoda.loyalty__tier_expiring_reminder_kpi", "model.yoda.sms_stg__subscription_sms_campaigns", "model.yoda.sms_stg__subscription_upsell_flow_sms", "test.yoda.not_null_sms__api_calls_with_customer_user_id.f8e8b23d65"], "model.yoda.sms__daily_revenue": ["exposure.yoda.sms__revenue", "exposure.yoda.sms__revenue_model"], "model.yoda.sms__flows_links_clicks": ["exposure.yoda.sms__subscriptions_kpi", "model.yoda.subscriptions_stg__synergy_sms_payment_failure", "test.yoda.not_null_sms__flows_links_clicks_sms_id.47edf277e7"], "model.yoda.sms__loyalty_sms_campaigns_email_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.b6016711ef", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_type.d4340dd655", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_value.508891a2d5", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_id.624ec53ba1", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_type.fcd941d58b", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_app_key.a732afb837", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_customer_external_id.a17da066ab", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at.5834ffd156", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_id.876a000616", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_order_id.7a9802c74e", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_source_id.5c4747d9c5", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_source_type.d7634be10e", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_synergy_id.c8ac09f1a3", "test.yoda.unique_sms__loyalty_sms_campaigns_email_kpi_id.b6adae0854"], "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.1dcf47bfa1", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_action_type.168d81f897", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_app_key.a6956fba6e", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_email.ab214f3db2", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_external_id.8976e49a9b", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_dwh_updated_at.f8e7467368", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.8fcc0c462e", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_id.8a8140253f", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_type.f068a64fc3", "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id.7792d2184d", "test.yoda.unique_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.4692fd125d"], "model.yoda.sms__loyalty_sms_campaigns_sms_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_kpi_1.3487732497", "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.9f08c066bc", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_type.56ebc598e7", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_value.f689171e11", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_id.624ebb2739", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_type.aa91be5ee0", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_app_key.75f77ce3d9", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_customer_external_id.d15d22c39c", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at.6b390e3d5f", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_id.1d52c5a45a", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_order_id.1476d35105", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_source_id.3080489abe", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_source_type.82066434ea", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_synergy_id.29588cfb6d", "test.yoda.unique_sms__loyalty_sms_campaigns_sms_kpi_id.2ea7e0c8d9"], "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_reward_program_kpi_1.bf4c051deb", "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e23653fee8", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_type.000ee33b9c", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_app_key.0265c2319c", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_external_id.f41a283a9d", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_dwh_updated_at.d964462cac", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.3396dbb221", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_id.10736984ea", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_type.1b19985470", "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id.80690303ed", "test.yoda.unique_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.84772316a7"], "model.yoda.sms__loyalty_sms_flows_email_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_email_kpi_1.a1ea11e7f3", "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.69b3540440", "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_app_key.7cb2925f0f", "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_dwh_updated_at.a3d152550a", "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_id.0622858aaf", "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_order_id.b200957d13", "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_source_id.5a26a49665", "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_source_type.66e1f4a84e", "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_synergy_id.7e8701e3dc", "test.yoda.unique_sms__loyalty_sms_flows_email_kpi_id.832af8e4ba"], "model.yoda.sms__loyalty_sms_flows_sms_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_sms_kpi_1.90319ceb4d", "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.7dd8e8f9ef", "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_app_key.282167a551", "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_customer_external_id.8288595aa4", "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_dwh_updated_at.b3d1874250", "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_id.a8f20edfd9", "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_order_id.65559dfaa9", "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_source_id.ee0653470d", "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_source_type.d4341cb5c4", "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_synergy_id.1ff32cef3e", "test.yoda.unique_sms__loyalty_sms_flows_sms_kpi_id.bb7a28542f"], "model.yoda.sms__multipass_login_kpi": ["exposure.yoda.sms__asen_dag"], "model.yoda.sms__reviews_sms_flows_email_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.5a0798e63b", "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_attribute_type.f84d25c934", "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_attribute_value.eae3c36486", "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_id.f2f03eef4f", "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_type.92b7a71dd1", "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_app_key.d087df8817", "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_dwh_updated_at.46a25c2e8a", "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_id.1acc53b67c", "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_source_id.56938ccd82", "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_source_type.fc04a7df20", "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_synergy_id.1110a49fbb", "test.yoda.unique_sms__reviews_sms_flows_email_kpi_id.9f4bc62f01"], "model.yoda.sms__reviews_sms_flows_sms_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.4fc8c0491a", "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_type.ea5c4b7e67", "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_value.28ac84c4d0", "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_id.4e86e8a455", "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_type.1b8d07e3e7", "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_app_key.b9848e0e21", "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_dwh_updated_at.a406efbd69", "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_id.88af3e38a5", "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_source_id.3bc4067038", "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_source_type.6f8ec42a8d", "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_synergy_id.5d48cbbab2", "test.yoda.unique_sms__reviews_sms_flows_sms_kpi_id.b5d1077c08"], "model.yoda.sms__sms_double_points_campaign_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_utils_unique_combination_of_columns_sms__sms_double_points_campaign_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e4e92d81b4"], "model.yoda.sms__snowflake_sms_flows_reviews": ["exposure.yoda.sms__sms_additional_kpi_models"], "model.yoda.sms__social_proof_flows_email_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_utils_unique_combination_of_columns_sms__social_proof_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.6203320c8f", "test.yoda.not_null_sms__social_proof_flows_email_kpi_app_key.c84b86f064", "test.yoda.not_null_sms__social_proof_flows_email_kpi_customer_external_id.796d587844", "test.yoda.not_null_sms__social_proof_flows_email_kpi_dwh_updated_at.1b00bf3c9d", "test.yoda.not_null_sms__social_proof_flows_email_kpi_id.d57c5637e3", "test.yoda.not_null_sms__social_proof_flows_email_kpi_source_id.4ca7bcd4d6", "test.yoda.not_null_sms__social_proof_flows_email_kpi_source_type.7b8e28dc19", "test.yoda.not_null_sms__social_proof_flows_email_kpi_synergy_id.67177f1079", "test.yoda.unique_sms__social_proof_flows_email_kpi_id.c8c30d52ca", "test.yoda.unique_sms__social_proof_flows_email_kpi_source_id.3db7a2ca48"], "model.yoda.sms__social_proof_flows_sms_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__social_proof_flows_sms_kpi_1.19240c79c4", "test.yoda.dbt_utils_unique_combination_of_columns_sms__social_proof_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.ecabcafbac", "test.yoda.not_null_sms__social_proof_flows_sms_kpi_app_key.5176bbd10d", "test.yoda.not_null_sms__social_proof_flows_sms_kpi_customer_external_id.e46837cb39", "test.yoda.not_null_sms__social_proof_flows_sms_kpi_dwh_updated_at.42d9dbd28e", "test.yoda.not_null_sms__social_proof_flows_sms_kpi_id.cf034d9c8c", "test.yoda.not_null_sms__social_proof_flows_sms_kpi_source_id.e249f9eb2a", "test.yoda.not_null_sms__social_proof_flows_sms_kpi_source_type.44cbe3410e", "test.yoda.not_null_sms__social_proof_flows_sms_kpi_synergy_id.7234432245", "test.yoda.unique_sms__social_proof_flows_sms_kpi_id.c797b4e309", "test.yoda.unique_sms__social_proof_flows_sms_kpi_source_id.49cffddbe2"], "model.yoda.sms_stg__apicalls": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__api_calls", "model.yoda.sms__api_calls_with_customer", "model.yoda.sms__daily_revenue", "model.yoda.sms__loyalty_sms_campaigns_sms_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "model.yoda.sms__loyalty_sms_flows_sms_kpi", "model.yoda.sms__multipass_login_kpi", "model.yoda.sms__reviews_sms_flows_sms_kpi", "model.yoda.sms__sms_double_points_campaign_kpi", "model.yoda.sms__social_proof_flows_sms_kpi", "model.yoda.sms_stg__one_click_campaigns_subscriptions"], "model.yoda.sms_stg__bigcommerce_users": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__bigcommerce_user"], "model.yoda.sms_stg__campaign_lists": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__campaign_list", "model.yoda.sms_stg__one_click_campaigns_subscriptions", "model.yoda.sms_stg__sms_loyalty_custom_campaigns", "model.yoda.sms_stg__subscription_segmentation_campaigns"], "model.yoda.sms_stg__campaign_relations": ["exposure.yoda.sms__sms_kpi", "model.yoda.analytics___sms_stg__campaign_relation", "model.yoda.sms_stg__sms_loyalty_campaigns"], "model.yoda.sms_stg__campaigns": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__campaign_deletion_tracking", "model.yoda.sms__multipass_login_kpi", "model.yoda.sms_stg__email_sms_campaign_orders", "model.yoda.sms_stg__one_click_campaigns_subscriptions", "model.yoda.sms_stg__sms_email_campaign_discount_codes", "model.yoda.sms_stg__sms_loyalty_custom_campaigns", "model.yoda.sms_stg__subscription_segmentation_campaigns"], "model.yoda.sms_stg__comm_analytics_data": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__analytics_data"], "model.yoda.sms_stg__customers": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__shopify_customer", "model.yoda.sms__api_calls_with_customer", "model.yoda.sms__loyalty_sms_campaigns_email_kpi", "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "model.yoda.sms__multipass_login_kpi", "model.yoda.sms__sms_double_points_campaign_kpi", "model.yoda.sms_stg__email_sms_campaign_orders", "model.yoda.sms_stg__one_click_campaigns_subscriptions", "model.yoda.sms_stg__sms_reviews_flows_kpi", "model.yoda.sms_stg__social_proof_flows_kpi", "model.yoda.sms_stg__subscription_upsell_flow"], "model.yoda.sms_stg__customers_addresses": ["exposure.yoda.sms__sms_kpi", "model.yoda.sms__multipass_login_kpi"], "model.yoda.sms_stg__default_predefined_messages": ["exposure.yoda.sms__sms_kpi", "model.yoda.analytics___sms_stg__default_predefined_message", "model.yoda.sms_stg__sms_loyalty_campaigns"], "model.yoda.sms_stg__email_charges": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__email_charge"], "model.yoda.sms_stg__email_to_sms_campaigns": ["exposure.yoda.sms__24h", "model.yoda.sms_stg__email_sms_campaign_orders", "model.yoda.sms_stg__sms_email_campaign_discount_codes"], "model.yoda.sms_stg__events": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__event_deletion_tracking"], "model.yoda.sms_stg__flow_link_clicks": ["exposure.yoda.sms__subscriptions_kpi", "model.yoda.sms__flows_links_clicks"], "model.yoda.sms_stg__flow_links": ["exposure.yoda.sms__subscriptions_kpi", "model.yoda.sms__flows_links_clicks"], "model.yoda.sms_stg__flows": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__flow_deletion_tracking", "model.yoda.sms__api_calls_with_customer", "model.yoda.sms__flows_links_clicks", "model.yoda.sms_stg__sms_loyalty_flows_kpi", "model.yoda.sms_stg__sms_reviews_flows_kpi", "model.yoda.sms_stg__social_proof_flows_kpi", "model.yoda.sms_stg__subscription_upsell_flow_orders"], "model.yoda.sms_stg__forms": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__form"], "model.yoda.sms_stg__free_credits_logs": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__free_credit_log", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__free_credits_logs_1.1cf00e33bb"], "model.yoda.sms_stg__link_clicks": ["exposure.yoda.sms__subscriptions_kpi", "model.yoda.sms__multipass_login_kpi", "model.yoda.sms_stg__one_click_campaigns_subscriptions"], "model.yoda.sms_stg__lists": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__list", "model.yoda.sms_stg__one_click_campaigns_subscriptions", "model.yoda.sms_stg__sms_loyalty_custom_campaigns", "model.yoda.sms_stg__subscription_segmentation_campaigns"], "model.yoda.sms_stg__loyalty_flows_data": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__loyalty_flow"], "model.yoda.sms_stg__orders": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__shopify_orders", "model.yoda.sms__loyalty_sms_campaigns_sms_kpi", "model.yoda.sms__multipass_login_kpi"], "model.yoda.sms_stg__packages": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__plan", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__packages_1.a3e59e8764"], "model.yoda.sms_stg__purchases": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__purchase"], "model.yoda.sms_stg__shopify_analytics_orders": ["exposure.yoda.sms__24h", "model.yoda.sms__sms_double_points_campaign_kpi", "model.yoda.sms_stg__email_sms_campaign_orders", "model.yoda.sms_stg__sms_loyalty_campaigns_kpi", "model.yoda.sms_stg__sms_loyalty_flows_kpi", "model.yoda.sms_stg__social_proof_flows_kpi", "model.yoda.sms_stg__subscription_sms_campaigns", "model.yoda.sms_stg__subscription_upsell_flow_orders"], "model.yoda.sms_stg__shopify_campaign_discount_codes": ["exposure.yoda.sms__24h", "model.yoda.sms_stg__sms_email_campaign_discount_codes"], "model.yoda.sms_stg__shopify_campaign_orders": ["exposure.yoda.sms__sms_kpi", "model.yoda.analytics___sms_stg__shopify_campaign_order", "model.yoda.sms__sms_double_points_campaign_kpi", "model.yoda.sms_stg__sms_loyalty_campaigns_kpi"], "model.yoda.sms_stg__shopify_flows_orders": ["exposure.yoda.sms__sms_kpi", "model.yoda.analytics___sms_stg__shopify_flow_order", "model.yoda.sms_stg__sms_loyalty_flows_kpi", "model.yoda.sms_stg__social_proof_flows_kpi", "model.yoda.sms_stg__subscription_upsell_flow_orders"], "model.yoda.sms_stg__shopify_segments": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__shopify_segment", "model.yoda.sms_stg__one_click_campaigns_subscriptions", "model.yoda.sms_stg__sms_loyalty_custom_campaigns", "model.yoda.sms_stg__subscription_segmentation_campaigns"], "model.yoda.sms_stg__shopify_users": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__shopify_user"], "model.yoda.sms_stg__sms_campaign_created": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__segment_sms_campaign"], "model.yoda.sms_stg__sms_loyalty_redemptions": ["exposure.yoda.sms__24h"], "model.yoda.sms_stg__track_flows_adoption": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__track_flow_adoption"], "model.yoda.sms_stg__users": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__sms_user", "model.yoda.email__email_events_per_source_id_and_ref_id", "model.yoda.sms__api_calls_with_customer", "model.yoda.sms__multipass_login_kpi", "model.yoda.sms_stg__email_sms_campaign_orders", "model.yoda.sms_stg__one_click_campaigns_subscriptions", "model.yoda.sms_stg__sms_email_campaign_discount_codes", "model.yoda.sms_stg__sms_flows_reviews", "model.yoda.sms_stg__sms_loyalty_campaigns", "model.yoda.sms_stg__sms_loyalty_custom_campaigns", "model.yoda.sms_stg__sms_loyalty_flows_kpi", "model.yoda.sms_stg__sms_reviews_flows_kpi", "model.yoda.sms_stg__social_proof_flows_kpi", "model.yoda.sms_stg__subscription_segmentation_campaigns"], "model.yoda.sms_stg__users_events_log": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__user_event_log", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__users_events_log_1.a84bfcbfd1"], "model.yoda.sms_stg__yotpo_organizations": ["exposure.yoda.sms__24h", "model.yoda.analytics___sms_stg__organization_identifier_conversion"], "model.yoda.sms_stg__yotpo_status_updates": ["exposure.yoda.sms__sms_kpi", "model.yoda.sms_stg__sms_flows_reviews", "model.yoda.sms_stg__sms_reviews_flows_kpi"], "model.yoda.sms_stg__email_sms_campaign_orders": ["exposure.yoda.sms__sms_kpi", "model.yoda.email__email_campaign_click_to_redeem_kpi", "model.yoda.email__email_campaign_reviews_block_kpi", "model.yoda.email__email_campaign_reviews_stars_kpi"], "model.yoda.sms_stg__one_click_campaigns_subscriptions": ["exposure.yoda.sms__subscriptions_kpi", "model.yoda.subscriptions__synergy_kpi_one_click_campaign", "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_customer_id.372860f3c6", "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_sms_id.5938202b8f", "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_store_id.200b540f58"], "model.yoda.sms_stg__sms_email_campaign_discount_codes": ["exposure.yoda.sms__sms_additional_kpi_models"], "model.yoda.sms_stg__sms_flows_reviews": ["exposure.yoda.sms__sms_additional_kpi_models", "model.yoda.sms__snowflake_sms_flows_reviews"], "model.yoda.sms_stg__sms_loyalty_campaigns": ["exposure.yoda.sms__sms_kpi", "model.yoda.sms__loyalty_sms_campaigns_email_reward_program_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_reward_program_kpi", "model.yoda.sms__sms_double_points_campaign_kpi", "model.yoda.sms_stg__sms_loyalty_campaigns_kpi", "model.yoda.sms_stg__sms_loyalty_custom_campaigns", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_campaign_id.11fe14e496", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_store_id.7e676990e4", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_synergy_id.0e972bea98", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_user_id.c578348f55"], "model.yoda.sms_stg__sms_loyalty_campaigns_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.sms__loyalty_sms_campaigns_email_kpi", "model.yoda.sms__loyalty_sms_campaigns_sms_kpi", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_type.e917b8a2e4", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_value.28bf6e0da5", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_id.6159229595", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_type.7014c4b910", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_app_key.8613cbcfe7", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_campaign_id.87c25f580a", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_channel.39b287a4ad", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_customer_email.664fc8caa0", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_external_customer_id.5fc501ffcc", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_order_id.f993119d04", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_synergy_id.346c782e61", "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_user_id.5572a3141f", "test.yoda.unique_sms_stg__sms_loyalty_campaigns_kpi_order_id.dc6d45cf40"], "model.yoda.sms_stg__sms_loyalty_custom_campaigns": ["exposure.yoda.sms__sms_kpi", "model.yoda.sms_stg__sms_loyalty_campaigns_kpi", "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_campaign_id.51faa33045", "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_synergy_id.21a61ab99e", "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_user_id.f5bc9de2d1", "test.yoda.unique_sms_stg__sms_loyalty_custom_campaigns_campaign_id.5d5bbdcc49"], "model.yoda.sms_stg__sms_loyalty_flows_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.sms__loyalty_sms_flows_email_kpi", "model.yoda.sms__loyalty_sms_flows_sms_kpi", "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_app_key.00e7633287", "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_customer_external_id.663bb6641c", "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_flow_id.d03c6f1299", "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_order_created.94295e0b38", "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_order_id.9ac4dff31a", "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_synergy_id.e4d948c601", "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_user_id.84f00df3d4", "test.yoda.unique_sms_stg__sms_loyalty_flows_kpi_order_id.1cc255b787"], "model.yoda.sms_stg__sms_reviews_flows_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.sms__reviews_sms_flows_email_kpi", "model.yoda.sms__reviews_sms_flows_sms_kpi", "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_type.53a6bf6014", "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_value.a53aaa039b", "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_id.bbd1debb93", "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_type.265a0d9485", "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_app_key.25ddfd9d45", "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_flow_id.5ca1d76709", "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_synergy_id.ed2f5118d2", "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_user_id.8b7af4db58"], "model.yoda.sms_stg__social_proof_flows_kpi": ["exposure.yoda.sms__sms_kpi", "model.yoda.sms__social_proof_flows_email_kpi", "model.yoda.sms__social_proof_flows_sms_kpi", "test.yoda.not_null_sms_stg__social_proof_flows_kpi_customer_external_id.94003d5050", "test.yoda.not_null_sms_stg__social_proof_flows_kpi_flow_id.0d3291518e", "test.yoda.not_null_sms_stg__social_proof_flows_kpi_order_created.e48858883a", "test.yoda.not_null_sms_stg__social_proof_flows_kpi_store_id.9a58077931", "test.yoda.not_null_sms_stg__social_proof_flows_kpi_synergy_id.76fed0e870", "test.yoda.not_null_sms_stg__social_proof_flows_kpi_user_id.616df356af"], "model.yoda.sms_stg__subscription_segmentation_campaigns": ["exposure.yoda.sms__subscriptions_kpi", "model.yoda.sms_stg__subscription_sms_campaigns"], "model.yoda.sms_stg__subscription_sms_campaigns": ["exposure.yoda.sms__subscriptions_kpi"], "model.yoda.sms_stg__subscription_upsell_flow": ["exposure.yoda.sms__subscriptions_kpi", "model.yoda.subscriptions__synergy_kpi_sms_upsell"], "model.yoda.sms_stg__subscription_upsell_flow_orders": ["exposure.yoda.sms__subscriptions_kpi", "model.yoda.sms_stg__subscription_upsell_flow"], "model.yoda.sms_stg__subscription_upsell_flow_sms": ["exposure.yoda.sms__subscriptions_kpi", "model.yoda.sms_stg__subscription_upsell_flow"], "model.yoda.subscriptions__customer_journey_event": ["exposure.yoda.subscriptions__customer_journey_events"], "model.yoda.subscriptions__recurrent_event_rule": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_recurrent_event_rule", "test.yoda.not_null_subscriptions__recurrent_event_rule_created_at.81c34b3f79", "test.yoda.not_null_subscriptions__recurrent_event_rule_id.3e6e1ca38f", "test.yoda.not_null_subscriptions__recurrent_event_rule_interval_count.00655cb6ff", "test.yoda.not_null_subscriptions__recurrent_event_rule_is_canceled.324f4c15ee", "test.yoda.not_null_subscriptions__recurrent_event_rule_obj_id.304c69bd4b", "test.yoda.not_null_subscriptions__recurrent_event_rule_obj_type.5400d9a9b1", "test.yoda.not_null_subscriptions__recurrent_event_rule_plan_interval.6ed726d355", "test.yoda.not_null_subscriptions__recurrent_event_rule_updated_at.fc466f17cb", "test.yoda.unique_subscriptions__recurrent_event_rule_id.d124611023"], "model.yoda.subscriptions__snowflake_cancelation_intent_event": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_cancelation_reason_option": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_recurrent_event_rule": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_status": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_subscription_contract": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_subscription_contract_line_policy": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_subscription_contract_order": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_subscription_contract_order_lines": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_subscription_contract_status_changes": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_subscription_line_action": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_subscription_merchant_migration_date": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_subscription_total_orders": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__snowflake_subscriptions_accounts": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__status": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_status", "test.yoda.not_null_subscriptions__status_id.0e1836e3d1", "test.yoda.not_null_subscriptions__status_num.6bcb27440e", "test.yoda.not_null_subscriptions__status_text.7918b594f4", "test.yoda.unique_subscriptions__status_id.f32aced663", "test.yoda.unique_subscriptions__status_num.c4479387d7", "test.yoda.unique_subscriptions__status_text.5ea3decb93"], "model.yoda.subscriptions__store_customers_exports": ["exposure.yoda.subscriptions__csv_exports_to_table", "exposure.yoda.subscriptions__store_customers_exports"], "model.yoda.subscriptions__subscription_accounts": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions__store_feature_activation", "model.yoda.analytics___subscriptions__store_installation_over_time", "model.yoda.analytics___subscriptions_stg__subscriptions_store", "model.yoda.subscriptions__snowflake_subscriptions_accounts", "test.yoda.not_null_subscriptions__subscription_accounts_app_key.bc18436501", "test.yoda.not_null_subscriptions__subscription_accounts_is_test.f9e6d2f52c", "test.yoda.unique_subscriptions__subscription_accounts_app_key.865b094650"], "model.yoda.subscriptions__subscription_contract": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_subscription_contract", "test.yoda.not_null_subscriptions__subscription_contract_billing_policy_interval.ef3085ca3c", "test.yoda.not_null_subscriptions__subscription_contract_billing_policy_interval_count.19bd743b78", "test.yoda.not_null_subscriptions__subscription_contract_created_at.12896bd08f", "test.yoda.not_null_subscriptions__subscription_contract_delivery_policy_interval.a86bca1149", "test.yoda.not_null_subscriptions__subscription_contract_delivery_policy_interval_count.4dfa830ddd", "test.yoda.not_null_subscriptions__subscription_contract_external_customer_id.39cc52db95", "test.yoda.not_null_subscriptions__subscription_contract_external_id.d03059b309", "test.yoda.not_null_subscriptions__subscription_contract_id.f85b412524", "test.yoda.not_null_subscriptions__subscription_contract_status.2e53e022b3", "test.yoda.not_null_subscriptions__subscription_contract_store_id.eda0b915fc", "test.yoda.not_null_subscriptions__subscription_contract_updated_at.d55f6eac47", "test.yoda.unique_subscriptions__subscription_contract_id.ba23444208"], "model.yoda.subscriptions__subscription_contract_line": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake"], "model.yoda.subscriptions__subscription_contract_line_policy": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_subscription_contract_line_policy", "test.yoda.not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval.4581d78f9f", "test.yoda.not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval_count.eeab6707a5", "test.yoda.not_null_subscriptions__subscription_contract_line_policy_product_external_id.893a27b15a", "test.yoda.not_null_subscriptions__subscription_contract_line_policy_product_title.ba64e462f8", "test.yoda.not_null_subscriptions__subscription_contract_line_policy_store_id.3856262e90", "test.yoda.not_null_subscriptions__subscription_contract_line_policy_subscription_contract_external_id.c9469e7b6c", "test.yoda.not_null_subscriptions__subscription_contract_line_policy_subscription_contract_id.31bfd15557", "test.yoda.not_null_subscriptions__subscription_contract_line_policy_variant_external_id.21ca2c3c1d"], "model.yoda.subscriptions__subscription_contract_order": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_subscription_contract_order", "model.yoda.subscriptions__subscription_contract_order_lines", "model.yoda.subscriptions__subscriptions_attributed_orders", "test.yoda.not_null_subscriptions__subscription_contract_order_created_at.4f7cc5441a", "test.yoda.not_null_subscriptions__subscription_contract_order_external_order_id.a4354e8ec7", "test.yoda.not_null_subscriptions__subscription_contract_order_external_subscription_contract_id.9a19225b7d", "test.yoda.not_null_subscriptions__subscription_contract_order_id.5e48bf7918", "test.yoda.not_null_subscriptions__subscription_contract_order_store_id.7f45cb2d26", "test.yoda.not_null_subscriptions__subscription_contract_order_updated_at.623041284e", "test.yoda.unique_subscriptions__subscription_contract_order_id.b60c074d05"], "model.yoda.subscriptions__subscription_contract_order_lines": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_subscription_contract_order_lines", "test.yoda.not_null_subscriptions__subscription_contract_order_lines_external_order_id.0e27a8bc29", "test.yoda.not_null_subscriptions__subscription_contract_order_lines_external_subscription_contract_id.ed8270a222", "test.yoda.not_null_subscriptions__subscription_contract_order_lines_order_date.ca8512e5b7", "test.yoda.not_null_subscriptions__subscription_contract_order_lines_order_line_total.4af6feff8e", "test.yoda.not_null_subscriptions__subscription_contract_order_lines_product_external_id.fd0ed26ff0", "test.yoda.not_null_subscriptions__subscription_contract_order_lines_store_id.f83074f863", "test.yoda.not_null_subscriptions__subscription_contract_order_lines_variant_external_id.6ec01adf5c"], "model.yoda.subscriptions__subscription_contract_status_changes": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_subscription_contract_status_changes"], "model.yoda.subscriptions__subscription_merchant_migration_date": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_subscription_merchant_migration_date", "test.yoda.not_null_subscriptions__subscription_merchant_migration_date_migration_date.4336341af9", "test.yoda.not_null_subscriptions__subscription_merchant_migration_date_store_id.f16505d236"], "model.yoda.subscriptions__subscription_total_orders": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_subscription_total_orders", "model.yoda.subscriptions__subscriptions_attributed_orders", "test.yoda.not_null_subscriptions__subscription_total_orders_app_key.6e31807f76", "test.yoda.not_null_subscriptions__subscription_total_orders_external_order_id.c114ec599a", "test.yoda.not_null_subscriptions__subscription_total_orders_order_date.3912faf5d4"], "model.yoda.subscriptions__subscriptions_attributed_orders": ["exposure.yoda.subscriptions__retention_metrics_subscription_orders", "model.yoda.platform__orders_with_product_lines_attribution_daily", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__subscriptions_attributed_orders_1.696d32fa42", "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_app_key.73ce2fbed4", "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_external_customer_id.91ef01bf80", "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_external_order_id.e716efbda5", "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_order_date.56befe7696", "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_order_total.f2f64e969d"], "model.yoda.subscriptions__synergy_kpi_one_click_campaign": ["exposure.yoda.subscriptions__synergies_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_one_click_campaign_1.37cf6f3498", "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_one_click_campaign_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.9f3c68965a", "test.yoda.not_null_subscriptions__synergy_kpi_one_click_campaign_id.6da03f0dd5", "test.yoda.not_null_subscriptions__synergy_kpi_one_click_campaign_source_id.f418f95b53", "test.yoda.unique_subscriptions__synergy_kpi_one_click_campaign_id.bed8484992"], "model.yoda.subscriptions__synergy_kpi_redeemed_points": ["exposure.yoda.subscriptions__synergies_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_redeemed_points_1.0e031d228d", "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_redeemed_points_synergy_id__app_key__order_id__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__action_attribute_value.b831857ebb", "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_type.6f89b29fcd", "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_value.819ea5c046", "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_id.4383f3c6df", "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_type.2e487c08f7", "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_app_key.0c83180733", "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_customer_external_id.78f16c14d6", "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_dwh_updated_at.74f206dbdd", "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_id.583334bd1d", "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_order_id.98d3a29306", "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_source_id.f91b17a9b6", "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_synergy_id.53cef945f0", "test.yoda.unique_subscriptions__synergy_kpi_redeemed_points_id.00b5bae0fc"], "model.yoda.subscriptions__synergy_kpi_sms_payment_failure": ["exposure.yoda.subscriptions__synergies_kpi", "model.yoda.platform__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_payment_failure_1.1afa2799e9", "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_payment_failure_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.3e4ce633de", "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_id.d7d8bd0db1", "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_order_id.6ddd173b10", "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_source_id.004bae07b6", "test.yoda.unique_subscriptions__synergy_kpi_sms_payment_failure_id.f00540d302"], "model.yoda.subscriptions__synergy_kpi_sms_upsell": ["exposure.yoda.subscriptions__synergies_kpi", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_upsell_1.b7262d32d5", "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_upsell_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e72a32d5e0"], "model.yoda.subscriptions_stg__app_webhooks": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions_stg__mc_app_webhook"], "model.yoda.subscriptions_stg__billing_attempt_response": ["exposure.yoda.subscriptions__table_sync", "model.yoda.subscriptions__synergy_kpi_redeemed_points", "model.yoda.subscriptions_stg__synergy_subs_payment_failure"], "model.yoda.subscriptions_stg__cancelation_intent_event": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_cancelation_intent_event"], "model.yoda.subscriptions_stg__cancelation_reason_option": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_cancelation_reason_option"], "model.yoda.subscriptions_stg__customer_journey_event": ["exposure.yoda.subscriptions__customer_journey_events", "model.yoda.analytics___subscriptions_stg__customer_journey_event", "model.yoda.subscriptions__customer_journey_event", "test.yoda.not_null_subscriptions_stg__customer_journey_event_created_at.a32d0c43fc", "test.yoda.not_null_subscriptions_stg__customer_journey_event_customer_id.e2b55b8d59", "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_origin.e87e6d0502", "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_time.ca372e17ea", "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_type.a26bc346aa", "test.yoda.not_null_subscriptions_stg__customer_journey_event_id.bec0d4731a", "test.yoda.not_null_subscriptions_stg__customer_journey_event_source_domain.8bdffa28cf", "test.yoda.not_null_subscriptions_stg__customer_journey_event_source_id.027faf7ba9", "test.yoda.not_null_subscriptions_stg__customer_journey_event_store_id.f9cab24c0f", "test.yoda.not_null_subscriptions_stg__customer_journey_event_updated_at.61004cb8b5", "test.yoda.unique_subscriptions_stg__customer_journey_event_id.f4133674ad"], "model.yoda.subscriptions_stg__product": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions_stg__mc_product"], "model.yoda.subscriptions_stg__recurrent_event_rule": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__recurrent_event_rule", "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_created_at.32a32c4032", "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_id.27079aee4c", "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_interval_count.c0e601b31d", "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_is_canceled.080fc39b12", "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_next_due_date.2aec71eaf0", "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_obj_id.d716d0142f", "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_obj_type.577d0a5dec", "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_plan_interval.bfbb8f7a79", "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_updated_at.fdfbcba8a2", "test.yoda.unique_subscriptions_stg__recurrent_event_rule_id.ab51575389"], "model.yoda.subscriptions_stg__selling_plan": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions_stg__mc_selling_plan"], "model.yoda.subscriptions_stg__selling_plan_group": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group"], "model.yoda.subscriptions_stg__selling_plan_group_product": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions_stg__mc_selling_plan_group_product"], "model.yoda.subscriptions_stg__status": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions_stg__mc_status", "model.yoda.subscriptions__status", "test.yoda.not_null_subscriptions_stg__status_id.8ffe282590", "test.yoda.not_null_subscriptions_stg__status_num.95235b8006", "test.yoda.not_null_subscriptions_stg__status_text.0bbdba506f", "test.yoda.unique_subscriptions_stg__status_id.03bc739540", "test.yoda.unique_subscriptions_stg__status_num.67fc6cf8f7", "test.yoda.unique_subscriptions_stg__status_text.6a5eb937eb"], "model.yoda.subscriptions_stg__store_customers_exports": ["exposure.yoda.subscriptions__csv_exports_to_table", "model.yoda.subscriptions__store_customers_exports"], "model.yoda.subscriptions_stg__subscription_contract": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions_stg__mc_subscription_contract", "model.yoda.subscriptions__subscription_contract", "model.yoda.subscriptions__subscription_contract_line_policy", "model.yoda.subscriptions__subscription_contract_status_changes", "model.yoda.subscriptions__synergy_kpi_one_click_campaign", "model.yoda.subscriptions__synergy_kpi_redeemed_points", "test.yoda.not_null_subscriptions_stg__subscription_contract_billing_policy_interval.c9bde22f45", "test.yoda.not_null_subscriptions_stg__subscription_contract_billing_policy_interval_count.cd94089a3a", "test.yoda.not_null_subscriptions_stg__subscription_contract_created_at.abcdb1a87d", "test.yoda.not_null_subscriptions_stg__subscription_contract_delivery_policy_interval.b4e2f92799", "test.yoda.not_null_subscriptions_stg__subscription_contract_delivery_policy_interval_count.f3950c52af", "test.yoda.not_null_subscriptions_stg__subscription_contract_external_customer_id.796215cb6f", "test.yoda.not_null_subscriptions_stg__subscription_contract_external_id.84ab33c6b0", "test.yoda.not_null_subscriptions_stg__subscription_contract_id.858c7729db", "test.yoda.not_null_subscriptions_stg__subscription_contract_store_id.4aa7e8dc1f", "test.yoda.not_null_subscriptions_stg__subscription_contract_updated_at.a01bf82f91", "test.yoda.unique_subscriptions_stg__subscription_contract_id.41f442c867"], "model.yoda.subscriptions_stg__subscription_contract_line": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__subscription_contract_line", "model.yoda.subscriptions__subscription_contract_line_policy", "test.yoda.not_null_subscriptions_stg__subscription_contract_line_created_at.3788d0b43d", "test.yoda.not_null_subscriptions_stg__subscription_contract_line_id.59b71253af", "test.yoda.not_null_subscriptions_stg__subscription_contract_line_product_external_id.54272ca55f", "test.yoda.not_null_subscriptions_stg__subscription_contract_line_quantity.b5141eefc6", "test.yoda.not_null_subscriptions_stg__subscription_contract_line_subscription_contract_id.1e9e63855c", "test.yoda.not_null_subscriptions_stg__subscription_contract_line_updated_at.7b7870ed57", "test.yoda.not_null_subscriptions_stg__subscription_contract_line_variant_external_id.1cb6445974", "test.yoda.unique_subscriptions_stg__subscription_contract_line_id.a404ce51e5"], "model.yoda.subscriptions_stg__subscription_contract_order": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions_stg__mc_subscription_contract_order", "model.yoda.subscriptions__subscription_contract_order", "model.yoda.subscriptions__synergy_kpi_sms_upsell", "test.yoda.not_null_subscriptions_stg__subscription_contract_order_created_at.51958f6ced", "test.yoda.not_null_subscriptions_stg__subscription_contract_order_external_order_id.3be5a3bc9e", "test.yoda.not_null_subscriptions_stg__subscription_contract_order_external_subscription_contract_id.0b2e8cd5f6", "test.yoda.not_null_subscriptions_stg__subscription_contract_order_id.ab84ffc005", "test.yoda.not_null_subscriptions_stg__subscription_contract_order_store_id.ea32213fae", "test.yoda.not_null_subscriptions_stg__subscription_contract_order_updated_at.e9265941b3", "test.yoda.unique_subscriptions_stg__subscription_contract_order_id.6e2ffae470"], "model.yoda.subscriptions_stg__subscription_creation_request": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.analytics___subscriptions_stg__mc_subscription_creation_request", "model.yoda.subscriptions__subscription_merchant_migration_date"], "model.yoda.subscriptions_stg__subscription_line_action": ["exposure.yoda.subscriptions__subscriptions_tables_to_snowflake", "model.yoda.subscriptions__snowflake_subscription_line_action", "test.yoda.not_null_subscriptions_stg__subscription_line_action_action_status.46b55635d6", "test.yoda.not_null_subscriptions_stg__subscription_line_action_action_type.fdd8968d86", "test.yoda.not_null_subscriptions_stg__subscription_line_action_created_at.acb57fb287", "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_line_id.76369fc8e4", "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_subscription_contract_id.46a57f4159", "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_variant_id.3aa5d75d64", "test.yoda.not_null_subscriptions_stg__subscription_line_action_id.36f709ac2f", "test.yoda.not_null_subscriptions_stg__subscription_line_action_quantity.13af32fe78", "test.yoda.not_null_subscriptions_stg__subscription_line_action_store_id.8a1fcd46b3", "test.yoda.not_null_subscriptions_stg__subscription_line_action_updated_at.cd68e46ce5", "test.yoda.unique_subscriptions_stg__subscription_line_action_id.8bf84a0019"], "model.yoda.subscriptions_stg__synergy_sms_payment_failure": ["exposure.yoda.subscriptions__synergies_kpi", "model.yoda.subscriptions_stg__synergy_subs_payment_failure", "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_app_key.64d75a0a7b", "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_contract_id.ab96c98b93", "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_customer_id.11dd893009", "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_number.4876169148", "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_sms_id.cf24e4eac3", "test.yoda.unique_subscriptions_stg__synergy_sms_payment_failure_sms_id.d0cbebe707"], "model.yoda.subscriptions_stg__synergy_subs_payment_failure": ["exposure.yoda.subscriptions__synergies_kpi", "model.yoda.subscriptions__synergy_kpi_sms_payment_failure", "test.yoda.not_null_subscriptions_stg__synergy_subs_payment_failure_order_id.3f406c467c"], "model.yoda.support__review_request": ["exposure.yoda.support__24h"], "model.yoda.ugc__export_reviews": ["exposure.yoda.ugc__export_reviews_daily", "model.yoda.loyalty__review_earning_rule_loyalty"], "model.yoda.ugc__partial_reviewed_orders": ["exposure.yoda.ugc__parial_reviewed_orders_daily", "model.yoda.platform__orders_with_product_lines_attribution_daily"], "model.yoda.ugc__reporting_crf": ["exposure.yoda.ugc__reporting_reviews_daily"], "model.yoda.ugc__reporting_reviews": ["exposure.yoda.ugc__reporting_reviews_daily"], "model.yoda.ugc__shopper_experience_order_aggregation": ["exposure.yoda.ugc__shopper_experience_aggregation", "exposure.yoda.ugc__shopper_experience_pixel_aggregation"], "model.yoda.ugc__shopper_experience_store_aggregation": ["exposure.yoda.ugc__shopper_experience_aggregation", "exposure.yoda.ugc__shopper_experience_pixel_aggregation"], "model.yoda.ugc__shopper_experience_widget_engagement_aggregation": ["exposure.yoda.ugc__shopper_experience_aggregation", "exposure.yoda.ugc__shopper_experience_pixel_aggregation"], "model.yoda.ugc__shopper_experience_widget_order_aggregation": ["exposure.yoda.ugc__shopper_experience_aggregation", "exposure.yoda.ugc__shopper_experience_pixel_aggregation"], "model.yoda.ugc_stg__anonymous_users": ["exposure.yoda.ugc__daily", "model.yoda.ugc__export_reviews", "model.yoda.ugc__partial_reviewed_orders", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__comments": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc_stg__comment", "model.yoda.ugc__export_reviews", "model.yoda.ugc__reporting_reviews", "model.yoda.ugc_stg__shopify_shop_reviews_backfill"], "model.yoda.ugc_stg__dirty_words": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc_stg__dirty_words_content", "model.yoda.ugc__export_reviews", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__email_authentications": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc__unmigrated_review_request_token"], "model.yoda.ugc_stg__email_types": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc__review_request_token_message", "model.yoda.analytics___ugc__unmigrated_review_request_token_email"], "model.yoda.ugc_stg__images": ["exposure.yoda.ugc__reporting_reviews_daily", "model.yoda.analytics___ugc_stg__image", "model.yoda.analytics___ugc_stg__review_image", "model.yoda.ugc__export_reviews", "model.yoda.ugc__export_reviews", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__metadata_types": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc_stg__metadata_type"], "model.yoda.ugc_stg__moderation_audits": ["exposure.yoda.ugc__reporting_reviews_daily", "model.yoda.ugc__export_reviews", "model.yoda.ugc__reporting_reviews", "model.yoda.ugc_stg__shopify_shop_reviews_backfill"], "model.yoda.ugc_stg__mongo_gallery_media": ["exposure.yoda.ugc__reporting_reviews_daily", "model.yoda.ugc__export_reviews", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__reminders": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc_stg__reminder"], "model.yoda.ugc_stg__retailer": ["exposure.yoda.ugc__daily", "model.yoda.ugc_stg__shopify_shop_reviews_backfill"], "model.yoda.ugc_stg__review_contents": ["exposure.yoda.ugc__reporting_reviews_daily", "model.yoda.ugc__reporting_crf", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__review_form_field_types": ["exposure.yoda.ugc__reporting_reviews_daily", "model.yoda.ugc__reporting_crf"], "model.yoda.ugc_stg__review_form_fields": ["exposure.yoda.ugc__reporting_reviews_daily", "model.yoda.ugc__reporting_crf", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__review_metadatas": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc_stg__review_metadata"], "model.yoda.ugc_stg__review_order_line": ["exposure.yoda.ugc__daily", "model.yoda.ugc__export_reviews", "model.yoda.ugc_stg__shopify_shop_reviews_backfill", "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_ugc_stg__review_order_line_1.aef73dd478"], "model.yoda.ugc_stg__review_request_emails": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc_stg__review_request_email"], "model.yoda.ugc_stg__review_request_sms": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc_stg__review_request_sms"], "model.yoda.ugc_stg__review_request_tokens": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc__review_request_token", "model.yoda.analytics___ugc__review_request_token", "model.yoda.analytics___ugc__unmigrated_review_request_token", "model.yoda.sms_stg__sms_flows_reviews", "model.yoda.sms_stg__sms_reviews_flows_kpi"], "model.yoda.ugc_stg__review_source_types": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc__review_request_token", "model.yoda.analytics___ugc_stg__review_source_type", "model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.ugc_stg__shopify_shop_reviews_backfill"], "model.yoda.ugc_stg__review_tags": ["exposure.yoda.ugc__daily", "model.yoda.ugc__export_reviews"], "model.yoda.ugc_stg__review_types": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc_stg__review_type", "model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.ugc_stg__shopify_shop_reviews_backfill"], "model.yoda.ugc_stg__reviews": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc_stg__review", "model.yoda.sms_stg__sms_flows_reviews", "model.yoda.sms_stg__sms_reviews_flows_kpi", "model.yoda.ugc__partial_reviewed_orders", "model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.ugc_stg__shopify_shop_reviews_backfill"], "model.yoda.ugc_stg__reviews_incentivized": ["exposure.yoda.ugc__reporting_reviews_daily", "model.yoda.ugc__export_reviews", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__reviews_subjects": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc_stg__review_subject", "model.yoda.ugc_stg__relevant_reviews_subject", "model.yoda.ugc_stg__shopify_shop_reviews_backfill"], "model.yoda.ugc_stg__shares": ["exposure.yoda.ugc__reporting_reviews_daily"], "model.yoda.ugc_stg__syndicated_accounts": ["exposure.yoda.ugc__daily", "model.yoda.ugc_stg__shopify_shop_reviews_backfill"], "model.yoda.ugc_stg__tags_to_reviews": ["exposure.yoda.ugc__daily", "model.yoda.ugc__export_reviews"], "model.yoda.ugc_stg__users": ["exposure.yoda.ugc__daily", "model.yoda.analytics___platform_stg__user", "model.yoda.platform_stg__digest_accounts", "model.yoda.sms_stg__sms_reviews_flows_kpi", "model.yoda.ugc__export_reviews", "model.yoda.ugc__partial_reviewed_orders", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__users_email_controls": ["exposure.yoda.ugc__daily", "model.yoda.analytics___ugc__unmigrated_review_request_token_email"], "model.yoda.ugc_stg__videos": ["exposure.yoda.ugc__reporting_reviews_daily", "model.yoda.analytics___ugc_stg__review_video", "model.yoda.ugc__export_reviews", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__votes": ["exposure.yoda.ugc__reporting_reviews_daily", "model.yoda.ugc__export_reviews", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__relevant_reporting_reviews_accounts": ["exposure.yoda.ugc__reporting_reviews_daily", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__relevant_reviews_subject": ["exposure.yoda.ugc__reporting_reviews_daily", "model.yoda.ugc__export_reviews", "model.yoda.ugc__reporting_crf", "model.yoda.ugc__reporting_reviews"], "model.yoda.ugc_stg__shopify_shop_reviews_backfill": ["exposure.yoda.ugc__daily"], "seed.yoda.unit_test__expected__infra_stg__budget__infra_stg__budget": ["test.yoda.dbt_utils_equality_infra_stg__budget_ref_unit_test__expected__infra_stg__budget__infra_stg__budget_.a1e776df30"], "seed.yoda.unit_test__source__infra_stg__budget__infra__costpo_budget": ["model.yoda.infra_stg__budget"], "test.yoda.not_null_analytics___cs__account_acv_metrics_daily_date.4418194b48": [], "test.yoda.not_null_analytics___cs__account_acv_metrics_daily_account_id.b03e4a2cc0": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__account_acv_metrics_daily_date__account_id.27d3d3f140": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__account_acv_metrics_daily_1.1575f6ea7b": [], "test.yoda.unique_analytics___cs__onboarding_project_onboarding_project_id.3f0437a01a": [], "test.yoda.not_null_analytics___cs__onboarding_project_onboarding_project_id.7df9c17a97": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__onboarding_project_1.54ace170ff": [], "test.yoda.not_null_analytics___cs__opportunity_main_product_change_opportunity_id.bf245743a5": [], "test.yoda.unique_analytics___cs__opportunity_main_product_change_opportunity_id.6109ea8548": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_main_product_change_1.19583c415e": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_product_opportunity_id__product_line.f783737ef2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_product_1.e4c0f3565c": [], "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_opportunity_id.c634459685": [], "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_product_family_group.917fdcaa6e": [], "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_line_item_start_date.f470b927df": [], "test.yoda.not_null_analytics___cs__opportunity_won_product_start_date_line_item_end_date.82eb1f0b82": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_product_start_date_1.6a0464d835": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_product_start_date_opportunity_id__product_family_group__line_item_start_date__line_item_end_date.ec93d15186": [], "test.yoda.not_null_analytics___cs__opportunity_won_sale_daily_date.1f35b11114": [], "test.yoda.not_null_analytics___cs__opportunity_won_sale_daily_opportunity_id.b408beca9e": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___cs__opportunity_won_sale_daily_date__opportunity_id__contract_start_date__end_date.7ed338abc0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__opportunity_won_sale_daily_1.bb22e97a98": [], "test.yoda.not_null_analytics___cs__organization_first_ht_opportunity_organization_key.a242d85366": [], "test.yoda.unique_analytics___cs__organization_first_ht_opportunity_organization_key.5b1b9bcc4f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___cs__organization_first_ht_opportunity_1.c8c84488ad": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___delivery__organization_customer_care_over_time_organization_key__product_family_group__from_date__to_date.6e756fa959": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___delivery__organization_customer_care_over_time_1.4b2077c8c8": [], "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_month.3c1dc7be62": [], "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_organization_key.b821d88829": [], "test.yoda.not_null_analytics___finance__communication_organization_product_usage_revenue_monthly_product_family.e4cb8e7b2f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_organization_product_usage_revenue_monthly_1.ef44731c0c": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__communication_organization_product_usage_revenue_monthly_month__organization_key__product_family.bf6ff694be": [], "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_month.026d89a0b3": [], "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_sms_user_id.b62a4c7ec3": [], "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_app_key.16e9ab87df": [], "test.yoda.not_null_analytics___finance__communication_store_product_usage_revenue_monthly_product_family.ad87a063ce": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__communication_store_product_usage_revenue_monthly_1.5c5f0e646d": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__communication_store_product_usage_revenue_monthly_month__app_key__product_family.0717d818de": [], "test.yoda.not_null_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id.3955d66371": [], "test.yoda.unique_analytics___finance__organization_product_mom_mrr_cycle_dashboard_organization_product_month_id.a8a37c5afd": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_mom_mrr_cycle_dashboard_1.5aa4cbdaf5": [], "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id.364e05bcfb": [], "test.yoda.unique_analytics___finance__organization_product_recurring_revenue_monthly_organization_product_month_id.a36c1e86d3": [], "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_month.a5c93714fe": [], "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_organization_key.089d95d683": [], "test.yoda.not_null_analytics___finance__organization_product_recurring_revenue_monthly_product_family_group.7c090fccf2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_recurring_revenue_monthly_1.477f2143f7": [], "test.yoda.not_null_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id.0b36519ed9": [], "test.yoda.unique_analytics___finance__organization_product_revenue_metrics_monthly_organization_product_month_id.7db5b6e5c0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_metrics_monthly_1.2f90d7ab3e": [], "test.yoda.not_null_analytics___finance__organization_product_revenue_monthly_organization_product_month_id.47fb0d3e4e": [], "test.yoda.unique_analytics___finance__organization_product_revenue_monthly_organization_product_month_id.0799950b53": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_1.72354ad49e": [], "test.yoda.not_null_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id.bff94348d9": [], "test.yoda.unique_analytics___finance__organization_product_revenue_monthly_lean_organization_product_month_id.42b9dc9bbc": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_revenue_monthly_lean_1.71eab128e6": [], "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id.a45878ce5f": [], "test.yoda.unique_analytics___finance__organization_product_usage_revenue_monthly_organization_product_month_id.aede364eeb": [], "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_revenue_month.8e0a1f5400": [], "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_organization_key.1017b28eef": [], "test.yoda.not_null_analytics___finance__organization_product_usage_revenue_monthly_product_family.e052e97e91": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_product_usage_revenue_monthly_1.2ab4f244bd": [], "test.yoda.not_null_analytics___finance__organization_revenue_monthly_organization_month_id.25dd95a770": [], "test.yoda.unique_analytics___finance__organization_revenue_monthly_organization_month_id.abf005df45": [], "test.yoda.not_null_analytics___finance__organization_revenue_monthly_month.b3e06b2960": [], "test.yoda.not_null_analytics___finance__organization_revenue_monthly_organization_key.711b3b75ec": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__organization_revenue_monthly_1.02e1d386c2": [], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_account_id.e257d1cdf9": [], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_subscription_id.d7506102fa": [], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_product_id.ac6a2d9bbd": [], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_rateplan_id.57f6621ea3": [], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_product_rateplan_id.500d089fdf": [], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_mrr_in_usd.bc18c7651c": [], "test.yoda.not_null_analytics___finance__rate_plan_mrr_details_termed_to_date.2bd8b5b772": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__rate_plan_mrr_details_1.799c41c71e": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__rate_plan_mrr_details_subscription_name__version__product_id__rateplan_id__effective_start_date.5b4f9162c2": [], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id.89c326b2fe": [], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_field_name.9a5d537a78": [], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_from_date.5e660ce021": [], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_to_date.529ba21ca1": [], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_from_month.bfa7f02d98": [], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_to_month.f3cd50d029": [], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_field_value.97fa59eab2": [], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_csm_free_months.2d375c8372": [], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sales_free_months.c364397548": [], "test.yoda.not_null_analytics___finance__sf_opportunity_free_month_over_time_is_sf_event.f107b697c7": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__sf_opportunity_free_month_over_time_1.801fada325": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__sf_opportunity_free_month_over_time_opportunity_id__field_name__from_date.9f53a5d6dd": [], "test.yoda.not_null_analytics___finance__shopify_billing_event_shopify_shop_id.355bde23f8": [], "test.yoda.not_null_analytics___finance__shopify_billing_event_charge_id.c4b26f57e1": [], "test.yoda.not_null_analytics___finance__shopify_billing_event_is_none_app_key.4cdf1fa1bc": [], "test.yoda.not_null_analytics___finance__shopify_billing_event_is_single_app_key.e76ac6b65b": [], "test.yoda.not_null_analytics___finance__shopify_billing_event_is_multiple_app_key.4bc8faa3c9": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_event_1.14c9c11acc": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_event_shopify_shop_id__charge_id__event_type__product_family__created_at.14a07667e5": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date.80a4a112b5": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_product_family.cfe1a729d6": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_daily_organization_key.0b8560a10d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_daily_1.9437b53b81": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_daily_mrr_date__product_family__organization_key.4c317f1b28": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month.ab0f4e4b9f": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_product_family.68bec4958a": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_key.22b48d6062": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id.7580b2f8c9": [], "test.yoda.unique_analytics___finance__shopify_billing_organization_product_mrr_monthly_organization_product_month_id.bf3b8cb805": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_mrr_monthly_1.760695542b": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_mrr_monthly_mrr_month__product_family__organization_key.c7d76a868e": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_date.e65bccf920": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key.5058e9a060": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_product_family.f578430442": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_revenue_in_usd.fceedf0ceb": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_1.982337dfc4": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_daily_organization_key__date__product_family.aa222c42f3": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_month.f84eced8d0": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key.583fc74b41": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_product_family.4b9d031a1e": [], "test.yoda.not_null_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_revenue_in_usd.8d031b5afd": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_1.55d563e882": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_organization_product_usage_revenue_monthly_organization_key__month__product_family.63a60622bd": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_app_key.e46adc341d": [], "test.yoda.unique_analytics___finance__shopify_billing_store_mapping_app_key.5a1ab13472": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_organization_key.924d08a96d": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_mapping_shopify_shop_id.d92072b862": [], "test.yoda.unique_analytics___finance__shopify_billing_store_mapping_shopify_shop_id.7e95308156": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_mapping_1.fda37bd0a7": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id.a4dd5ea379": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_product_family.98753fc505": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_at.cdf62f89f6": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_deactivated_over_time_deactivated_date.793b14fe6a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_deactivated_over_time_1.0851439894": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_deactivated_over_time_shopify_shop_id__product_family__deactivated_at.cab4546bb9": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date.65c7ac4438": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_product_family.a5a4e09a24": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_daily_shopify_shop_id.e09fcdf7df": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_daily_1.05fd7f6636": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_daily_mrr_date__product_family__shopify_shop_id.3b8d5e706f": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month.212843bfa9": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_product_family.87c5fce17f": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_mrr_monthly_shopify_shop_id.28e7252926": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_mrr_monthly_1.fc96fb0eb4": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_mrr_monthly_mrr_month__product_family__shopify_shop_id.3fe2ba6d7a": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id.9fc3c5bab0": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_product_family.a2b27d0007": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_at.6c4680e529": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_uninstalled_over_time_uninstalled_date.a853981d04": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_uninstalled_over_time_1.0bc44b77a9": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_uninstalled_over_time_shopify_shop_id__product_family__uninstalled_at.6872d194cb": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_charge_id.e81293333a": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id.80e688b65f": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_product_family.a620b88ace": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_date.6c3494a44d": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_charge_revenue_in_usd.9a1ec3e7a9": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_charge_1.5e505ed523": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_charge_shopify_shop_id__charge_id.424f41cfad": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_date.6f5c8dfb76": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id.150d8c5558": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_product_family.37d7c0675b": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_daily_revenue_in_usd.5473d6c6a4": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_daily_1.6e178a42f2": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_daily_shopify_shop_id__date__product_family.00b1e023a3": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_month.6c21979a25": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id.d35b15b24b": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_product_family.5839116aa9": [], "test.yoda.not_null_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_revenue_in_usd.fd40f220be": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_1.ede3eb3b2d": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_store_product_usage_revenue_monthly_shopify_shop_id__month__product_family.ef6166cce5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_billing_subscription_mrr_over_time_1.8d6adb1920": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__shopify_billing_subscription_mrr_over_time_shopify_shop_id__charge_id__event_category__event_action__product_family__from_time.cb5d27880a": [], "test.yoda.not_null_analytics___finance__shopify_store_mapping_shopify_shop_id.bd2ce1037f": [], "test.yoda.unique_analytics___finance__shopify_store_mapping_shopify_shop_id.69a26f816b": [], "test.yoda.not_null_analytics___finance__shopify_store_mapping_is_single_app_key.d65d95efba": [], "test.yoda.not_null_analytics___finance__shopify_store_mapping_is_multiple_app_key.eab434a117": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__shopify_store_mapping_1.2b664f5779": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_account_1.d6a6bfb851": [], "test.yoda.unique_analytics___finance__zuora_invoice_invoice_id.4a2d31e824": [], "test.yoda.not_null_analytics___finance__zuora_invoice_invoice_id.7d3f682520": [], "test.yoda.unique_analytics___finance__zuora_invoice_invoice_number.749c6fd322": [], "test.yoda.not_null_analytics___finance__zuora_invoice_invoice_number.e5c0b4eb1e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_1.77faa035ea": [], "test.yoda.unique_analytics___finance__zuora_invoice_item_invoice_item_id.bab2a249bc": [], "test.yoda.not_null_analytics___finance__zuora_invoice_item_invoice_item_id.9f5069fe37": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_invoice_item_1.3dda76729d": [], "test.yoda.unique_analytics___finance__zuora_order_mrr_details_order_mrr_id.d19fb7789d": [], "test.yoda.not_null_analytics___finance__zuora_order_mrr_details_order_mrr_id.8d58fc0e52": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_order_mrr_details_1.19db9b2900": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_plan_rank_daily_1.84ed5d3e4a": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_plan_rank_daily_date__organization_key__product_family__is_core_plan__plan_rank.c1756e927e": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id.4cbb818989": [], "test.yoda.unique_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_product_month_id.66f9a5e39a": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_month.5774e450d3": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_organization_key.0056de1a3b": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_group_mrr_monthly_product_family_group.42833e7703": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_group_mrr_monthly_1.cc6934cfca": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_date.dd206d41fe": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_organization_key.df2381b395": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_product_family.26c4e497ab": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_main_plan_name.63bd73d114": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_is_self_service.6b7df5683c": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_is_annual_billing.6f279f4e03": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_original_mrr_in_usd.d32e6c745d": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_daily_effective_mrr_in_usd.d974e9d937": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_daily_1.95defc894a": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_daily_date__organization_key__product_family.6e113a0400": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_month.8cc17141cb": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_organization_key.850681ba82": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_mrr_monthly_product_family.a5f0067ddf": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_mrr_monthly_1.bf82b2f0cb": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_mrr_monthly_month__organization_key__product_family.717427adc4": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_invoice_number.8835a3cc46": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_product_family.affec2c1f0": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_organization_key.7caa0f4783": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_date.6d42e97561": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_charge_charge_amount_in_usd.095a7296e2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_charge_1.8c1d714744": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_charge_invoice_number__product_family.1ed5e6a046": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_date.4fbdfebfdd": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_organization_key.f81812a892": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_product_family.72785aeb22": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_daily_charge_amount_in_usd.bc2675dae2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_daily_1.d1fa023f1c": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_daily_date__organization_key__product_family.8102f75a64": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_month.d4aa6a6008": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_organization_key.331127cc07": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_product_family.4ec26fbdeb": [], "test.yoda.not_null_analytics___finance__zuora_organization_product_usage_revenue_monthly_charge_amount_in_usd.c10db1799f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_organization_product_usage_revenue_monthly_1.44bcf8b756": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_organization_product_usage_revenue_monthly_month__organization_key__product_family.d3fa852547": [], "test.yoda.unique_analytics___finance__zuora_parent_organization_organization_key.3f1e389552": [], "test.yoda.not_null_analytics___finance__zuora_parent_organization_organization_key.c453b0d5f7": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_parent_organization_1.1a67048426": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_product_1.87c20e8458": [], "test.yoda.unique_analytics___finance__zuora_rateplan_charge_rateplan_charge_id.79f2e88568": [], "test.yoda.not_null_analytics___finance__zuora_rateplan_charge_rateplan_charge_id.59142df7a4": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_rateplan_charge_1.b4c5b9b6f7": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_1.86ae8c4469": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_date.0a9a5a82a8": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_subscription_id.f00d617682": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_product_id.94153512f8": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_effective_mrr.639f26f005": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_free_month_mrr_impact.59303b1b08": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_sales_free_month_mrr_impact.dc17f47db9": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_csm_free_month_mrr_impact.596f52759a": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_main_plan_name.682c024eec": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_daily_is_main_plan_self_service.eb41f40585": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_daily_1.1bc0ae99c9": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_daily_date__subscription_id__product_id.b30b14e644": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_month.71fe49dc9b": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_subscription_id.f2bbc77ad1": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_monthly_product_id.2048dae403": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_monthly_1.5a085110c7": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_monthly_month__subscription_id__product_id.e0f4250103": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_account_id.02b85d3d19": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_organization_key.5b1c15d584": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_subscription_name.7cbbdea5ad": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_plan_name.720ed4a12d": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_product_family.d81c469f76": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_from_date.8720ccc234": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_to_date.004ad41083": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_is_self_service.f6cadb6bc4": [], "test.yoda.not_null_analytics___finance__zuora_subscription_mrr_over_time_is_annual_billing.b413810428": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance__zuora_subscription_mrr_over_time_1.9fa4a4390b": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance__zuora_subscription_mrr_over_time_subscription_name__product_id__from_date__to_date.0ac5274855": [], "test.yoda.not_null_analytics___finance_stg__order_deleted.661ba0afad": [], "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_shop_id.20f441d8b1": [], "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_charge_id.f5d526b8d9": [], "test.yoda.not_null_analytics___finance_stg__shopify_billing_event_event_category.89f1dfa8ec": [], "test.yoda.accepted_values_analytics___finance_stg__shopify_billing_event_event_category__USAGE_CHARGE__SUBSCRIPTION_CHARGE__ONE_TIME_CHARGE__RELATIONSHIP__CREDIT.6158d995df": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__shopify_billing_event_1.0498648224": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___finance_stg__shopify_billing_event_shop_id__charge_id__event_type__product_family__created_at.8b8cd3e1ec": [], "test.yoda.unique_analytics___finance_stg__zuora_account_account_id.74086a400e": [], "test.yoda.not_null_analytics___finance_stg__zuora_account_account_id.b8514ccbca": [], "test.yoda.accepted_values_analytics___finance_stg__zuora_account_account_status__Active__Canceled.1aa0c6e016": [], "test.yoda.not_null_analytics___finance_stg__zuora_account_yotpo_legal_entity.e323f6effe": [], "test.yoda.not_null_analytics___finance_stg__zuora_account_payment_terms.b99de5f937": [], "test.yoda.unique_analytics___finance_stg__zuora_contact_contact_id.ad234de390": [], "test.yoda.not_null_analytics___finance_stg__zuora_contact_contact_id.fa6c7bf40a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_contact_1.b4fd878d84": [], "test.yoda.unique_analytics___finance_stg__zuora_invoice_invoice_id.af69e576b7": [], "test.yoda.not_null_analytics___finance_stg__zuora_invoice_invoice_id.fa486ec045": [], "test.yoda.unique_analytics___finance_stg__zuora_invoice_invoice_number.a8d4d18316": [], "test.yoda.not_null_analytics___finance_stg__zuora_invoice_invoice_number.d0b22978c8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_1.48f72abb55": [], "test.yoda.unique_analytics___finance_stg__zuora_invoice_item_invoice_item_id.4bb1dce193": [], "test.yoda.not_null_analytics___finance_stg__zuora_invoice_item_invoice_item_id.efddab42e8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_invoice_item_1.0aa25db95d": [], "test.yoda.unique_analytics___finance_stg__zuora_order_order_id.d60a00781c": [], "test.yoda.not_null_analytics___finance_stg__zuora_order_order_id.21f0f9efb1": [], "test.yoda.unique_analytics___finance_stg__zuora_order_action_order_action_id.95c330a09f": [], "test.yoda.not_null_analytics___finance_stg__zuora_order_action_order_action_id.5eade19f0b": [], "test.yoda.unique_analytics___finance_stg__zuora_order_mrr_order_mrr_id.e6f1cb1b9d": [], "test.yoda.not_null_analytics___finance_stg__zuora_order_mrr_order_mrr_id.da423c9870": [], "test.yoda.unique_analytics___finance_stg__zuora_product_product_id.9ede4941cc": [], "test.yoda.not_null_analytics___finance_stg__zuora_product_product_id.b512767e93": [], "test.yoda.unique_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id.e0702601de": [], "test.yoda.not_null_analytics___finance_stg__zuora_product_rateplan_product_rateplan_id.de6faab685": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_1.e053e3685d": [], "test.yoda.unique_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id.e3c779bfac": [], "test.yoda.not_null_analytics___finance_stg__zuora_product_rateplan_charge_product_rateplan_charge_id.fa146f268c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_product_rateplan_charge_1.9166ad1b55": [], "test.yoda.unique_analytics___finance_stg__zuora_rateplan_rateplan_id.90cc0ea3f6": [], "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_rateplan_id.4fafd2bd68": [], "test.yoda.unique_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id.c7aec7be38": [], "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_rateplan_charge_id.b9e1778fcb": [], "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_charge_model.a0921edb56": [], "test.yoda.accepted_values_analytics___finance_stg__zuora_rateplan_charge_charge_model__Overage_Pricing__Per_Unit_Pricing__Discount_Percentage__Flat_Fee_Pricing__Tiered_Pricing.2354526248": [], "test.yoda.accepted_values_analytics___finance_stg__zuora_rateplan_charge_billing_period__Annual__Eighteen_Months__Month__Semi_Annual__Quarter__None.172bea7771": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_1.0807747d55": [], "test.yoda.unique_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id.d19630351a": [], "test.yoda.not_null_analytics___finance_stg__zuora_rateplan_charge_tier_rateplan_charge_tier_id.0d1fcbfddb": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___finance_stg__zuora_rateplan_charge_tier_1.d5bc2f0a76": [], "test.yoda.unique_analytics___finance_stg__zuora_subscription_subscription_id.8f02b21c73": [], "test.yoda.not_null_analytics___finance_stg__zuora_subscription_subscription_id.9ae0f2c105": [], "test.yoda.unique_analytics___gtm__acv_goal_daily_goal_id.9410b2f154": [], "test.yoda.not_null_analytics___gtm__acv_goal_daily_goal_id.e78dc00b51": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__acv_goal_daily_1.654d6fffed": [], "test.yoda.unique_analytics___gtm__crossell_opportunity_attribution_opportunity_id.40fe8a331a": [], "test.yoda.not_null_analytics___gtm__crossell_opportunity_attribution_opportunity_id.c168a5b81a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__crossell_opportunity_attribution_1.183d178d52": [], "test.yoda.not_null_analytics___gtm__new_sale_opportunity_attribution_opportunity_id.01ced5985e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_1.5bc8f0b388": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_opportunity_id__action_name__action_time.7c1ffde6a7": [], "test.yoda.not_null_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id.db68dc0718": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__new_sale_opportunity_attribution_action_1.79f8329006": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__new_sale_opportunity_attribution_action_opportunity_id__action_name__action_time.7faae1e6b4": [], "test.yoda.unique_analytics___gtm__opportunity_attribution_opportunity_id.cacc74925a": [], "test.yoda.not_null_analytics___gtm__opportunity_attribution_opportunity_id.a6aeee0f9e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_attribution_1.d339eb76c5": [], "test.yoda.unique_analytics___gtm__opportunity_goal_opportunity_goal_id.b115ad6ef5": [], "test.yoda.not_null_analytics___gtm__opportunity_goal_opportunity_goal_id.899650c727": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opportunity_goal_1.81e56d3c53": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__opporunity_dg_funnel_1.0bbb908a88": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___gtm__opporunity_dg_funnel_opportunity_id__first_stage_id__product_family_group__attribution_channel.9360208eb9": [], "test.yoda.unique_analytics___gtm__sal_goal_daily_goal_id.b949913273": [], "test.yoda.not_null_analytics___gtm__sal_goal_daily_goal_id.5b28f870f4": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm__sal_goal_daily_1.e70cc10029": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_acv_goals_1.50f5dd15f1": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__stg_nerd_sal_goals_1.8f2d9dda30": [], "test.yoda.unique_analytics___gtm_stg__acv_goal_acv_goal_id.6915bc2185": [], "test.yoda.not_null_analytics___gtm_stg__acv_goal_acv_goal_id.87b0998597": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__acv_goal_1.64623d27e6": [], "test.yoda.unique_analytics___gtm_stg__sal_goal_sal_goal_id.d38ebcece5": [], "test.yoda.not_null_analytics___gtm_stg__sal_goal_sal_goal_id.14ecb5ebf6": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___gtm_stg__sal_goal_1.aef318a37a": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__daily_merchant_merchant_id__date.a9d88b814a": [], "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_date.eed0931582": [], "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_earning_rule_id.99ec561ad9": [], "test.yoda.not_null_analytics___loyalty__earning_rule_activation_daily_is_active.b98e9fc3ea": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__earning_rule_activation_daily_1.84ddeefdea": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__earning_rule_activation_daily_earning_rule_id__date.95c46309c3": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_customers_vip_tiers_stats_1.b1984b1fea": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__ht_ss_retention_cohort_merchant_id__month__closing_plan_name_in_month.964b284f0a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__ht_ss_retention_cohort_1.dd0693fc71": [], "test.yoda.unique_analytics___loyalty__merchant_merchant_id.6aca172b89": [], "test.yoda.not_null_analytics___loyalty__merchant_merchant_id.5dc0ecbed1": [], "test.yoda.unique_analytics___loyalty__merchant_app_key.13e19a4d5a": [], "test.yoda.not_null_analytics___loyalty__merchant_app_key.f4a09494c5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_1.5cc4bc28dc": [], "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_date.031752251c": [], "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_merchant_id.32921abf4a": [], "test.yoda.not_null_analytics___loyalty__merchant_activeness_daily_app_key.f97a434059": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_activeness_daily_date__merchant_id__app_key.e6677194db": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_activeness_daily_1.b6d3fd218c": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_metrics_daily_merchant_id__date.ad08299fa2": [], "test.yoda.not_null_analytics___loyalty__merchant_monthly_element_activation_month.a9a9a39eef": [], "test.yoda.not_null_analytics___loyalty__merchant_monthly_element_activation_merchant_id.05167d806a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_monthly_element_activation_1.6ae24b632d": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_monthly_element_activation_merchant_id__month__redemption_source.9b23889c3d": [], "test.yoda.not_null_analytics___loyalty__merchant_plan_daily_date.176dbdaa87": [], "test.yoda.not_null_analytics___loyalty__merchant_plan_daily_merchant_id.4689cfe27e": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_daily_merchant_id__date.910e095295": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_daily_1.6645c73023": [], "test.yoda.not_null_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id.0ddab5de7a": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_merchant_id__month__closing_plan_name_in_month.b4d278a957": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_ht_ss_retention_cohort_monthly_1.f21d5798b2": [], "test.yoda.not_null_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id.0de7bae5e7": [], "test.yoda.not_null_analytics___loyalty__merchant_plan_metrics_cohort_plan_name.80a712c76b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_metrics_cohort_1.0cd56bd5e4": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_metrics_cohort_merchant_id__plan_name.32ba8dcd0e": [], "test.yoda.not_null_analytics___loyalty__merchant_plan_monthly_month.405e74f036": [], "test.yoda.not_null_analytics___loyalty__merchant_plan_monthly_merchant_id.d4a95f2f42": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_monthly_merchant_id__month.384704e014": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_monthly_1.febd544ad4": [], "test.yoda.not_null_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name.1f55d9d268": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_retention_cohort_monthly_1.8e614976e5": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_retention_cohort_monthly_plan_name__month__merchant_id.a6b68aa897": [], "test.yoda.not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id.33677a28c7": [], "test.yoda.not_null_analytics___loyalty__merchant_plan_value_cohort_monthly_plan_name.afbdee353c": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__merchant_plan_value_cohort_monthly_merchant_id__month__plan_name.8c163c6b8d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__merchant_plan_value_cohort_monthly_1.a9b253fd71": [], "test.yoda.not_null_analytics___loyalty__organization_metrics_monthly_month.0e1b1f6483": [], "test.yoda.not_null_analytics___loyalty__organization_metrics_monthly_organization_key.810a30761f": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__organization_metrics_monthly_organization_key__month.8c4d999668": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__organization_metrics_monthly_1.288dc7faac": [], "test.yoda.not_null_analytics___loyalty__plan_metrics_daily_date.65fd4e6c00": [], "test.yoda.not_null_analytics___loyalty__plan_metrics_daily_plan_name.0be963a660": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_daily_1.13a87e3ad1": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_daily_date__did_upgrade_first_day__plan_name__plan_prior_to_change__changes__platform__first_plan_ever__is_ht_ss.7aa15dd6bd": [], "test.yoda.not_null_analytics___loyalty__plan_metrics_monthly_month.b6e5e44a1f": [], "test.yoda.not_null_analytics___loyalty__plan_metrics_monthly_opening_plan_id_in_month.23d6d6c34e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__plan_metrics_monthly_1.3b0ceb962e": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__plan_metrics_monthly_month__did_upgrade_first_day_in_month__closing_plan_name_in_month__opening_plan_name_in_month__closing_plan_id_in_month__opening_plan_id_in_month__plan_changes__platform__is_ht_ss.88aa8d2f4b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__point_expiration_policy_settings_over_time_1.102e032ee9": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__point_expiration_policy_settings_over_time_merchant_id__from_date.6873ddf781": [], "test.yoda.not_null_analytics___loyalty__redemption_details_redemption_option_id.e2bb331bd3": [], "test.yoda.not_null_analytics___loyalty__redemption_details_point_redemption_id.e14549b0e0": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty__redemption_details_redemption_option_id__point_redemption_id.3abfe4b96b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty__redemption_details_1.e5d3b536f8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_1.fe738f9e2f": [], "test.yoda.unique_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id.a213594f77": [], "test.yoda.not_null_analytics___loyalty_stg__earning_rule_activation_history_earning_rule_activation_history_id.4a13d15529": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__earning_rule_activation_history_1.547fa3e6f0": [], "test.yoda.unique_analytics___loyalty_stg__loyalty_account_app_key.6790b9b328": [], "test.yoda.not_null_analytics___loyalty_stg__loyalty_account_app_key.2017eceb76": [], "test.yoda.unique_analytics___loyalty_stg__loyalty_account_merchant_id.4f7bd57481": [], "test.yoda.not_null_analytics___loyalty_stg__loyalty_account_merchant_id.bf429bd432": [], "test.yoda.unique_analytics___loyalty_stg__loyalty_plan_plan_id.d1f8c825e4": [], "test.yoda.not_null_analytics___loyalty_stg__loyalty_plan_plan_id.4557ee26db": [], "test.yoda.unique_analytics___loyalty_stg__loyalty_plan_plan_name.33743011e6": [], "test.yoda.not_null_analytics___loyalty_stg__loyalty_plan_plan_name.2a78efbd09": [], "test.yoda.unique_analytics___loyalty_stg__loyalty_subscription_subscription_id.39fea8d031": [], "test.yoda.not_null_analytics___loyalty_stg__loyalty_subscription_subscription_id.8bac1650ea": [], "test.yoda.unique_analytics___loyalty_stg__merchant_merchant_id.ca6c6e422c": [], "test.yoda.not_null_analytics___loyalty_stg__merchant_merchant_id.847c98c38a": [], "test.yoda.not_null_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id.d0e9261f3f": [], "test.yoda.not_null_analytics___loyalty_stg__merchant_segment_event_over_time_event_type.bac00dd15b": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___loyalty_stg__merchant_segment_event_over_time_merchant_id__event_type__from_time.2920e6e030": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__merchant_segment_event_over_time_1.39c77c7047": [], "test.yoda.unique_analytics___loyalty_stg__perk_perk_id.f463a4e555": [], "test.yoda.not_null_analytics___loyalty_stg__perk_perk_id.b775b7c303": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__perk_1.e6f19d425a": [], "test.yoda.unique_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id.d90f76110c": [], "test.yoda.not_null_analytics___loyalty_stg__point_expiration_policy_settings_merchant_group_id.ab21c772b0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_1.a080f988c6": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_expiration_policy_settings_snapshot_1.ddff4a7995": [], "test.yoda.unique_analytics___loyalty_stg__point_redemption_point_redemption_id.bdf901ad55": [], "test.yoda.not_null_analytics___loyalty_stg__point_redemption_point_redemption_id.eda763cdab": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__point_redemption_1.2614f85a39": [], "test.yoda.unique_analytics___loyalty_stg__processor_id.2a5131e45e": [], "test.yoda.not_null_analytics___loyalty_stg__processor_id.06047cae7c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__processor_1.dd1d185365": [], "test.yoda.unique_analytics___loyalty_stg__purchase_purchase_id.a3f9c98703": [], "test.yoda.not_null_analytics___loyalty_stg__purchase_purchase_id.6a5041e1a8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_1.0fd220304c": [], "test.yoda.unique_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id.85fb8827ce": [], "test.yoda.not_null_analytics___loyalty_stg__purchase_redemption_purchase_redemption_id.1afcaefa0e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__purchase_redemption_1.68e2b4e211": [], "test.yoda.unique_analytics___loyalty_stg__redemption_code_redemption_code_id.292d44be3e": [], "test.yoda.not_null_analytics___loyalty_stg__redemption_code_redemption_code_id.784dc02c70": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_code_1.327480d2f8": [], "test.yoda.unique_analytics___loyalty_stg__redemption_option_redemption_option_id.99fa9f3731": [], "test.yoda.not_null_analytics___loyalty_stg__redemption_option_redemption_option_id.536a6add67": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__redemption_option_1.20a44f86f9": [], "test.yoda.not_null_analytics___loyalty_stg__segment_install_event_details_merchant_id.2a789cce2b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___loyalty_stg__segment_install_event_details_1.80a7943263": [], "test.yoda.unique_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id.4b1fd4bf08": [], "test.yoda.not_null_analytics___marketing__mql_opportunity_goal_mql_opportunity_goal_id.6ec7e2763c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___marketing__mql_opportunity_goal_1.0bba559cdd": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_1.1479e82305": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_opportunity_id__product.785696bc18": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__deal_product_scd_1.a3a194526d": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___new_revenue__deal_product_scd_opportunity_id__product__updated_at.0173d26576": [], "test.yoda.unique_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id.e7d772063a": [], "test.yoda.not_null_analytics___new_revenue__operational_performance_daily_operational_performance_daily_id.a81fac273e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___new_revenue__operational_performance_daily_1.97d5464f2e": [], "test.yoda.not_null_analytics___partners__manager_performance_monthly_partner_manager_id.58d231c1f8": [], "test.yoda.not_null_analytics___partners__manager_performance_monthly_month.48d5c27d55": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___partners__manager_performance_monthly_1.c471df63c7": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners__manager_performance_monthly_month__partner_manager_id.855d7a116e": [], "test.yoda.not_null_analytics___partners__partner_engagement_opportunity_partner_engagement_id.83c54fcf6c": [], "test.yoda.unique_analytics___partners__partner_engagement_opportunity_opportunity_id.3cac8dbc58": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners__partner_engagement_opportunity_partner_engagement_id__opportunity_id.98d8b40d49": [], "test.yoda.not_null_analytics___partners_stg__manager_goals_quarter.72b1ffc8ce": [], "test.yoda.not_null_analytics___partners_stg__manager_goals_partner_manager_id.ada4b04843": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___partners_stg__manager_goals_1.fec6f7aad4": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___partners_stg__manager_goals_quarter__partner_manager_id.c8819a2f2d": [], "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_organization_key.faf0a5ad8a": [], "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_id.aa29fe5044": [], "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_product_family.b9a163115c": [], "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_start_date.2d43fffb8b": [], "test.yoda.not_null_analytics___platform__opportunity_ht_ss_over_time_opportunity_ht_ss_end_date.2393f6deaa": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__opportunity_ht_ss_over_time_1.eb89e6175a": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__opportunity_ht_ss_over_time_opportunity_id__product_family.b786361f05": [], "test.yoda.unique_analytics___platform__order_metrics_order_id.53c8358938": [], "test.yoda.not_null_analytics___platform__order_metrics_order_id.1920d1b13f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__order_metrics_1.2b3572d58c": [], "test.yoda.unique_analytics___platform__organization_organization_id.4e186060ee": [], "test.yoda.not_null_analytics___platform__organization_organization_id.f5c97c76e1": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_1.8787bbdc2f": [], "test.yoda.not_null_analytics___platform__organization_country_organization_key.559f0069a2": [], "test.yoda.unique_analytics___platform__organization_country_organization_key.c32db45485": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_country_1.b1ffea7fde": [], "test.yoda.unique_analytics___platform__organization_industry_organization_key.685805ff4b": [], "test.yoda.not_null_analytics___platform__organization_industry_organization_key.44d7f30894": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_industry_1.83a20a2990": [], "test.yoda.not_null_analytics___platform__organization_metrics_monthly_month.fcb07517f6": [], "test.yoda.not_null_analytics___platform__organization_metrics_monthly_organization_key.d9e5fa109f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_metrics_monthly_1.150d021652": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_metrics_monthly_organization_key__month.1e8306f6b3": [], "test.yoda.not_null_analytics___platform__organization_name_organization_id.f7dc4f9432": [], "test.yoda.not_null_analytics___platform__organization_name_organization_key.be89c5f1d9": [], "test.yoda.unique_analytics___platform__organization_name_organization_key.bc3a87fde5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_name_1.f6cd1c104e": [], "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_month.a3cd2f8902": [], "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_organization_key.1124e5483d": [], "test.yoda.not_null_analytics___platform__organization_opportunity_monthly_opportunity_id.f1fed9b1fe": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_opportunity_monthly_1.4d8deb1a15": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_opportunity_monthly_month__opportunity_id.c2f15a4e54": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_date.81ce5af337": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_organization_key.ca6b2acd78": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_product_family.974f9664f8": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_plan_name.5f3a79eac3": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_self_service.b6e5e96cd9": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_free.e1bb945993": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_full_service.0347d3eb98": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_reviews.2ea32ee795": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_loyalty.90c454b511": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_vms.97f0766216": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_subscriptions.a70f44e9e7": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_sms.af85f74da7": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_is_email.99562b090f": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_plan_name_array.8587f40152": [], "test.yoda.not_null_analytics___platform__organization_plan_daily_app_key_array.5ebe8f8d4a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_daily_1.d3512b01c3": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_daily_date__organization_key__product_family.297910b017": [], "test.yoda.not_null_analytics___platform__organization_plan_monthly_month.3aa88f6e20": [], "test.yoda.not_null_analytics___platform__organization_plan_monthly_organization_key.4dae6c489c": [], "test.yoda.not_null_analytics___platform__organization_plan_monthly_product_family.f53bc2be74": [], "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_reviews.0cd536820b": [], "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_loyalty.f6172edfa4": [], "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_vms.d01483b5e8": [], "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_subscriptions.892529494d": [], "test.yoda.not_null_analytics___platform__organization_plan_monthly_is_email.0ead36374d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_plan_monthly_1.baa716b666": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_plan_monthly_month__organization_key__product_family.b7cf54fb07": [], "test.yoda.unique_analytics___platform__organization_platform_organization_key.35a769f9bc": [], "test.yoda.not_null_analytics___platform__organization_platform_organization_key.d4f349d341": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_platform_1.eeb92e7163": [], "test.yoda.unique_analytics___platform__organization_product_activeness_monthly_organization_product_month_id.09c2920902": [], "test.yoda.not_null_analytics___platform__organization_product_activeness_monthly_organization_product_month_id.72b432382b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_activeness_monthly_1.4aaca9ad3e": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_metrics_monthly_organization_key__metric_month.ebe548179e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_1.6d7839a364": [], "test.yoda.unique_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c.d6cb8f2a20": [], "test.yoda.not_null_analytics___platform__organization_product_metrics_monthly_unpivot_External_ID__c.5f3d9028b0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_metrics_monthly_unpivot_1.9bf85b96c2": [], "test.yoda.not_null_analytics___platform__organization_product_segment_daily_date.f8ffdaabe5": [], "test.yoda.not_null_analytics___platform__organization_product_segment_daily_organization_key.1358b9f30b": [], "test.yoda.not_null_analytics___platform__organization_product_segment_daily_product_family.cdea0b033c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_daily_1.57f3987c9e": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__organization_product_segment_daily_date__organization_key__product_family.ef5e4fda4d": [], "test.yoda.unique_analytics___platform__organization_product_segment_monthly_organization_product_month_id.eae7c2fc23": [], "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_organization_product_month_id.57c2687fe2": [], "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_month.4fe831a3bc": [], "test.yoda.not_null_analytics___platform__organization_product_segment_monthly_organization_key.c96b0a5319": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_product_segment_monthly_1.e949b933b1": [], "test.yoda.not_null_analytics___platform__organization_segment_monthly_organization_month_id.c5f722e165": [], "test.yoda.unique_analytics___platform__organization_segment_monthly_organization_month_id.2001427bc3": [], "test.yoda.not_null_analytics___platform__organization_segment_monthly_month.e976964b96": [], "test.yoda.not_null_analytics___platform__organization_segment_monthly_organization_key.bf95891731": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__organization_segment_monthly_1.4b62230dd7": [], "test.yoda.not_null_analytics___platform__owner_plan_event_owner_plan_event_id.01019086db": [], "test.yoda.unique_analytics___platform__owner_plan_event_owner_plan_event_id.de5b2a3535": [], "test.yoda.unique_analytics___platform__plan_plan_id.847d92374f": [], "test.yoda.not_null_analytics___platform__plan_plan_id.371ae557dc": [], "test.yoda.unique_analytics___platform__plan_plan_name.1954801371": [], "test.yoda.not_null_analytics___platform__plan_plan_name.8a9e42247d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__plan_136.151f2294d9": [], "test.yoda.not_null_analytics___platform__platform_store_plan_over_time_app_key.177425f8b0": [], "test.yoda.not_null_analytics___platform__platform_store_plan_over_time_plan_id.ad833f89ad": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__platform_store_plan_over_time_1.23464fb1d5": [], "test.yoda.unique_analytics___platform__product_metrics_snapshot_monthly_External_ID__c.a9e63d25dc": [], "test.yoda.not_null_analytics___platform__product_metrics_snapshot_monthly_External_ID__c.585116ff41": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__product_metrics_snapshot_monthly_1.5eed07b015": [], "test.yoda.unique_analytics___platform__question_details_question_id.81f0b8baca": [], "test.yoda.not_null_analytics___platform__question_details_question_id.7eeb34c756": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__question_details_1.a6b18f602a": [], "test.yoda.unique_analytics___platform__store_store_id.0426a49173": [], "test.yoda.not_null_analytics___platform__store_store_id.ecc8e3c660": [], "test.yoda.unique_analytics___platform__store_app_key.b5ba5fcea0": [], "test.yoda.not_null_analytics___platform__store_app_key.d695626fbb": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_1.38d9ed28fd": [], "test.yoda.not_null_analytics___platform__store_activeness_daily_activeness_date.6e962034a9": [], "test.yoda.not_null_analytics___platform__store_activeness_daily_app_key.1dd234b604": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_activeness_daily_1.6a3c8092ee": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_activeness_daily_activeness_date__app_key.1e53577791": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_dynamic_date_explode_from_creation_1.5dcbc7417f": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_dynamic_date_explode_from_creation_app_key__date.57c6fdfe71": [], "test.yoda.not_null_analytics___platform__store_metrics_daily_date.b36227f573": [], "test.yoda.not_null_analytics___platform__store_metrics_daily_app_key.afe4bc534c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_daily_1.ed2941830e": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_daily_app_key__date.c8c9425fd7": [], "test.yoda.not_null_analytics___platform__store_metrics_monthly_month.a277f9834d": [], "test.yoda.not_null_analytics___platform__store_metrics_monthly_app_key.df1b910fe3": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_metrics_monthly_1.6d126cab16": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_metrics_monthly_app_key__month.62e6c6c869": [], "test.yoda.not_null_analytics___platform__store_order_daily_app_key.ae84f8cb42": [], "test.yoda.not_null_analytics___platform__store_order_daily_order_date.58413ae3f9": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_order_daily_1.5d34dd0e73": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_order_daily_app_key__order_date.9e299c0e3f": [], "test.yoda.unique_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id.1546e1b398": [], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_pixel_metrics_id.36a24ed399": [], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_product_name.923005d0f4": [], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_date.3ff71c11db": [], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_widget_version_type.dd3a6bb618": [], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_action.7a5f3e7fa2": [], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_widget_element.32dd729a77": [], "test.yoda.not_null_analytics___platform__store_pixel_metrics_daily_metric.25c0621826": [], "test.yoda.not_null_analytics___platform__store_plan_daily_date.e6e44353da": [], "test.yoda.not_null_analytics___platform__store_plan_daily_app_key.28cc4bbaa2": [], "test.yoda.not_null_analytics___platform__store_plan_daily_product_family.56de4b757b": [], "test.yoda.not_null_analytics___platform__store_plan_daily_plan_id.ff727864a1": [], "test.yoda.not_null_analytics___platform__store_plan_daily_plan_name.fa04377d11": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_plan_daily_1.66ddbd73c2": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_plan_daily_date__app_key__product_family.f5230bd448": [], "test.yoda.unique_analytics___platform__store_platform_account_account_platform_id.9361df1781": [], "test.yoda.not_null_analytics___platform__store_platform_account_account_platform_id.de81df4132": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_platform_account_1.34775c1634": [], "test.yoda.not_null_analytics___platform__store_product_activeness_monthly_activeness_month.432728e5db": [], "test.yoda.not_null_analytics___platform__store_product_activeness_monthly_app_key.4f4d910d51": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_activeness_monthly_1.d62572b5eb": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_activeness_monthly_activeness_month__app_key.8b2b7a930f": [], "test.yoda.not_null_analytics___platform__store_product_metrics_daily_metric_date.1b0f986097": [], "test.yoda.not_null_analytics___platform__store_product_metrics_daily_app_key.5872dd8972": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_1.3111a6892d": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_app_key__metric_date.ab21790649": [], "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_app_key.2332f17093": [], "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_date.0312941480": [], "test.yoda.not_null_analytics___platform__store_product_metrics_daily_snapshot_metric_name.652628c554": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_daily_snapshot_1.84ce47c37c": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_daily_snapshot_app_key__metric_date__metric_name.4bc8ad9135": [], "test.yoda.unique_analytics___platform__store_product_metrics_lifetime_app_key.b98da12197": [], "test.yoda.not_null_analytics___platform__store_product_metrics_lifetime_app_key.270e3294d8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_1.9958f0ba87": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_scd_1.fb1a85c913": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_scd_app_key__products__updated_at__metric_name.c3adce83db": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_product_metrics_lifetime_unpivot_1.5beceee7bc": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_product_metrics_lifetime_unpivot_app_key__products__metric_name.f041026f4a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform__store_snapshot_daily_1.bae3cb5d42": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform__store_snapshot_daily_date__app_key.40f26252c5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__phone_code_country_mapping_1.f151f3acb8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_action_mapping_1.59d86af992": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_category_mapping_1.bba04362f0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_duration_mapping_1.84d5d8fd5b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__pixel_os_family_mobile_mapping_1.c2fad38ca0": [], "test.yoda.unique_analytics___platform_stg__product_plan_name_rank_plan_name.7680ba0de2": [], "test.yoda.not_null_analytics___platform_stg__product_plan_name_rank_plan_name.5ecb99c159": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__questions_1.3425e858e7": [], "test.yoda.not_null_analytics___platform_stg__saas_organization_daily_history_organization_key.52d8c8ee50": [], "test.yoda.not_null_analytics___platform_stg__saas_organization_daily_history_dwh_updated_at.55993a8322": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_organization_daily_history_1.213f53c393": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__saas_store_plan_history_1.cbd7f29455": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__shopify_billing_charge_plan_mapping_1.80ef31745b": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__shopify_billing_charge_plan_mapping_product_family__charge_name.eac779bf7e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_stores_1.40cafa6cc1": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__sms_loyalty_synergy_mapping_1.bf37e06b40": [], "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_from_time.30a7fac925": [], "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_app_key.c19e552c55": [], "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_contract_id.8f04be378b": [], "test.yoda.not_null_analytics___platform_stg__subscriptions_contract_history_status_id.ba2c0f080e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_contract_history_1.2ae291f521": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_contract_history_app_key__from_time__contract_id__status_id.704750ae8d": [], "test.yoda.unique_analytics___platform_stg__account_account_id.bf0cffee73": [], "test.yoda.not_null_analytics___platform_stg__account_account_id.9bc768ec65": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_1.4b2484911a": [], "test.yoda.unique_analytics___platform_stg__account_platform_account_platform_id.c290b8cfd5": [], "test.yoda.not_null_analytics___platform_stg__account_platform_account_platform_id.b7b5c49fb5": [], "test.yoda.not_null_analytics___platform_stg__account_platform_account_id.6b520f86d6": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__account_platform_1.1627b7d5ba": [], "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_currency_exchange_date.0d396a63dc": [], "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_from_currency_symbol.8296ad7a59": [], "test.yoda.not_null_analytics___platform_stg__currency_exchange_rate_to_currency_symbol.4b70904cc9": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__currency_exchange_rate_1.92ad112887": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__currency_exchange_rate_currency_exchange_date__from_currency_symbol__to_currency_symbol.f4f0825820": [], "test.yoda.unique_analytics___platform_stg__feature_feature_id.ec45ab27b6": [], "test.yoda.not_null_analytics___platform_stg__feature_feature_id.c412179c7f": [], "test.yoda.accepted_values_analytics___platform_stg__feature_is_default_user_enabled__0__1.ee28dedafe": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__feature_1.45b956b766": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__fulfillment_1.b2e05b1f61": [], "test.yoda.unique_analytics___platform_stg__home_screen_section_section_id.981f1edfe1": [], "test.yoda.not_null_analytics___platform_stg__home_screen_section_section_id.c6b5335156": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_section_1.24494367ea": [], "test.yoda.unique_analytics___platform_stg__home_screen_widget_widget_id.c774dd74ef": [], "test.yoda.not_null_analytics___platform_stg__home_screen_widget_widget_id.36729b0509": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__home_screen_widget_1.a36d89f91d": [], "test.yoda.not_null_analytics___platform_stg__loyalty_pixel_widget_v_three_date.1bbd9480fe": [], "test.yoda.not_null_analytics___platform_stg__loyalty_pixel_widget_v_two_date.8544c6a31f": [], "test.yoda.unique_analytics___platform_stg__order_line_order_line_id.a4c39747a3": [], "test.yoda.not_null_analytics___platform_stg__order_line_order_line_id.7c7a5630b9": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__order_line_1.091595705b": [], "test.yoda.unique_analytics___platform_stg__organization_organization_id.7b6bc51554": [], "test.yoda.not_null_analytics___platform_stg__organization_organization_id.2100e04b4f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__organization_1.d0e2952f5d": [], "test.yoda.unique_analytics___platform_stg__owner_feature_owner_feature_id.587b1de338": [], "test.yoda.not_null_analytics___platform_stg__owner_feature_owner_feature_id.4aaf610028": [], "test.yoda.not_null_analytics___platform_stg__owner_feature_owner_type.8f38255e97": [], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_owner_type__Organization__User__Account.d683ac5172": [], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_disabled__0__1.9903df57ab": [], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_user_enabled__0__1.4c98ff44f4": [], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_floating__0__1.bc7d6927c5": [], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_organization_owner__0__1.588123fb4f": [], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_user_owner__0__1.3c74cd865b": [], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_is_store_owner__0__1.51b95a4089": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_1.071e4e24d1": [], "test.yoda.not_null_analytics___platform_stg__owner_feature_setting_owner_feature_id.a3bb30e58a": [], "test.yoda.accepted_values_analytics___platform_stg__owner_feature_setting_is_floating__0__1.e60b90bad0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_feature_setting_1.eb178ab17e": [], "test.yoda.unique_analytics___platform_stg__owner_plan_owner_plan_id.c3b5f11b5c": [], "test.yoda.not_null_analytics___platform_stg__owner_plan_owner_plan_id.c86be5da5f": [], "test.yoda.not_null_analytics___platform_stg__owner_plan_owner_id.88599e48d0": [], "test.yoda.not_null_analytics___platform_stg__owner_plan_plan_id.a2f84269da": [], "test.yoda.not_null_analytics___platform_stg__owner_plan_updated_at.ebf8832afc": [], "test.yoda.accepted_values_analytics___platform_stg__owner_plan_is_organization_owner__0__1.0c9fe28cce": [], "test.yoda.accepted_values_analytics___platform_stg__owner_plan_is_store_owner__0__1.bdc41c1bc5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_1.0de01ea6a4": [], "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_owner_plan_id.9af3cb58e1": [], "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_owner_id.fafd22bead": [], "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_plan_id.75d74c453e": [], "test.yoda.not_null_analytics___platform_stg__owner_plan_event_details_category_id.d494305ee7": [], "test.yoda.accepted_values_analytics___platform_stg__owner_plan_event_details_is_organization_owner__0__1.5e2a6959c0": [], "test.yoda.accepted_values_analytics___platform_stg__owner_plan_event_details_is_store_owner__0__1.179a1acd0c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_event_details_1.00ff23adb4": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__owner_plan_event_details_owner_id__plan_id__plan_event_created_at__is_organization_owner.02a5c95dfa": [], "test.yoda.unique_analytics___platform_stg__owner_plan_history_owner_plan_id.bd9ed790ab": [], "test.yoda.not_null_analytics___platform_stg__owner_plan_history_owner_plan_id.7d7adade79": [], "test.yoda.not_null_analytics___platform_stg__owner_plan_history_owner_id.d49061c6b6": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_history_1.be59960d3a": [], "test.yoda.not_null_analytics___platform_stg__owner_plan_snapshot_owner_plan_id.94f131116a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__owner_plan_snapshot_1.682aa911c8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_1.66dd98c5b1": [], "test.yoda.unique_analytics___platform_stg__plan_category_category_id.c6d7e9443a": [], "test.yoda.not_null_analytics___platform_stg__plan_category_category_id.b6dc2b7233": [], "test.yoda.not_null_analytics___platform_stg__plan_category_category_name.b797e1ead5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_category_1.150111d125": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_1.cbb1dbbd68": [], "test.yoda.unique_analytics___platform_stg__plan_tag_type_plan_tag_type_id.6fab2c7c03": [], "test.yoda.not_null_analytics___platform_stg__plan_tag_type_plan_tag_type_id.71a98514ee": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__plan_tag_type_1.cf8b2a102f": [], "test.yoda.unique_analytics___platform_stg__platform_type_platform_id.01dab06a26": [], "test.yoda.not_null_analytics___platform_stg__platform_type_platform_id.bd273dfebc": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__platform_type_1.773fe10dc6": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__product_1.54aa67c1e8": [], "test.yoda.unique_analytics___platform_stg__question_question_id.0b7a776845": [], "test.yoda.not_null_analytics___platform_stg__question_question_id.a2b90e39a8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__question_1.cd917941be": [], "test.yoda.unique_analytics___platform_stg__segment_account_created_event_id.1fa7cb0790": [], "test.yoda.not_null_analytics___platform_stg__segment_account_created_event_id.55bbe22a39": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_account_created_1.9f7d6d550d": [], "test.yoda.unique_analytics___platform_stg__segment_activation_step_event_id.152d3eadc7": [], "test.yoda.not_null_analytics___platform_stg__segment_activation_step_event_id.22c8d7d6c4": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_activation_step_1.bb810fb45e": [], "test.yoda.unique_analytics___platform_stg__segment_app_install_completed_event_id.3c8f5c9dee": [], "test.yoda.not_null_analytics___platform_stg__segment_app_install_completed_event_id.5f53bf6dc2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_install_completed_1.dbe3d598d6": [], "test.yoda.unique_analytics___platform_stg__segment_app_uninstalled_event_id.87acab11bc": [], "test.yoda.not_null_analytics___platform_stg__segment_app_uninstalled_event_id.e48714f579": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_app_uninstalled_1.f8c67106e7": [], "test.yoda.unique_analytics___platform_stg__segment_b_to_b_event_id.05b5e96242": [], "test.yoda.not_null_analytics___platform_stg__segment_b_to_b_event_id.4e957a82dd": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_b_to_b_1.e6e114ec71": [], "test.yoda.unique_analytics___platform_stg__segment_file_exported_event_id.0d046166dd": [], "test.yoda.not_null_analytics___platform_stg__segment_file_exported_event_id.796820712d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_file_exported_1.ee9e77b56a": [], "test.yoda.unique_analytics___platform_stg__segment_limit_reached_event_id.a92b0fea75": [], "test.yoda.not_null_analytics___platform_stg__segment_limit_reached_event_id.7015799488": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_limit_reached_1.1838915467": [], "test.yoda.unique_analytics___platform_stg__segment_onboarding_event_id.2d8e177e57": [], "test.yoda.not_null_analytics___platform_stg__segment_onboarding_event_id.0ff7b57a94": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_onboarding_1.1907a77604": [], "test.yoda.not_null_analytics___platform_stg__segment_page_event_app_key.6221c88cd5": [], "test.yoda.not_null_analytics___platform_stg__segment_page_event_event_id.29d85cd0ed": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_page_event_1.36744c29f6": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__segment_page_event_event_id__app_key.8061a69191": [], "test.yoda.unique_analytics___platform_stg__segment_popup_displayed_event_id.c86d8b9d76": [], "test.yoda.not_null_analytics___platform_stg__segment_popup_displayed_event_id.20dc1aca87": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_popup_displayed_1.e5fe385095": [], "test.yoda.unique_analytics___platform_stg__segment_product_enabled_event_id.60b0b3a8b6": [], "test.yoda.not_null_analytics___platform_stg__segment_product_enabled_event_id.c74bffc27e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_product_enabled_1.b8b3335a48": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__segment_uninstalled_yotpo_1.9eed93745f": [], "test.yoda.unique_analytics___platform_stg__similar_store_app_key.9f5cbcfa58": [], "test.yoda.not_null_analytics___platform_stg__similar_store_app_key.4749d8ee70": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__similar_store_1.92cb76df1c": [], "test.yoda.unique_analytics___platform_stg__static_deprecated_package_plan_id.98ec63a42c": [], "test.yoda.not_null_analytics___platform_stg__static_deprecated_package_plan_id.f9d05e69af": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__static_deprecated_package_1.5cdfab0b87": [], "test.yoda.unique_analytics___platform_stg__store_order_order_id.863fb84fb5": [], "test.yoda.not_null_analytics___platform_stg__store_order_order_id.61050041d8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_order_1.06e9764eb1": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__store_user_mapping_1.c53b62e32a": [], "test.yoda.not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id.12b9d96841": [], "test.yoda.not_null_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_row_rank.45726fb4c9": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__subscriptions_pixel_widget_v_three_1.a4c7dc7cd1": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__subscriptions_pixel_widget_v_three_event_id__event_row_rank.b711864588": [], "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_app_key.06cf074efd": [], "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_widget_id.f80b5d2200": [], "test.yoda.not_null_analytics___platform_stg__synergy_enablement_event_updated_at.ab180863ed": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__synergy_enablement_event_1.94a38eb172": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___platform_stg__synergy_enablement_event_app_key__widget_id__updated_at.12d1947a05": [], "test.yoda.not_null_analytics___platform_stg__ugc_pixel_widget_v_three_date.14c303a758": [], "test.yoda.not_null_analytics___platform_stg__ugc_pixel_widget_v_two_date.0ae171ab8f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___platform_stg__user_1.322bb25202": [], "test.yoda.unique_analytics___salesforce__account_account_id.3f1f984c3a": [], "test.yoda.not_null_analytics___salesforce__account_account_id.b4e829a4f6": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_1.d3e9ecbc66": [], "test.yoda.unique_analytics___salesforce__account_enrichment_Id.f3c4fb0985": [], "test.yoda.not_null_analytics___salesforce__account_enrichment_Id.1622bc72e9": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_1.c6d86004ad": [], "test.yoda.unique_analytics___salesforce__account_enrichment_daily_diff_Id.425a20a4f7": [], "test.yoda.not_null_analytics___salesforce__account_enrichment_daily_diff_Id.0f8803158d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_daily_diff_1.88aaabae8d": [], "test.yoda.not_null_analytics___salesforce__account_enrichment_snapshot_daily_Id.4cfd395b99": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_enrichment_snapshot_daily_1.8e91bf4823": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__account_enrichment_snapshot_daily_Id__updated_at.0ea5f95d46": [], "test.yoda.not_null_analytics___salesforce__account_product_account_product_id.7103c06f5c": [], "test.yoda.unique_analytics___salesforce__account_product_account_product_id.4b119f7184": [], "test.yoda.not_null_analytics___salesforce__account_product_account_id.75fbe7a00c": [], "test.yoda.not_null_analytics___salesforce__account_product_product_name.e19ce7f0b6": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__account_product_1.42fa7fc5a3": [], "test.yoda.not_null_analytics___salesforce__account_tracking_daily_date.797d2a55bf": [], "test.yoda.not_null_analytics___salesforce__account_tracking_daily_account_id.10486c705b": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__account_tracking_daily_date__account_id.4235272552": [], "test.yoda.not_null_analytics___salesforce__campaign_member_field_history_campaign_member_id.7be38168d2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__campaign_member_field_history_1.c8a449e20f": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__campaign_member_field_history_campaign_member_id__field_name__from_time.344e9966b2": [], "test.yoda.unique_analytics___salesforce__deal_summary_deal_summary_id.387a36b275": [], "test.yoda.not_null_analytics___salesforce__deal_summary_deal_summary_id.ba103f7317": [], "test.yoda.not_null_analytics___salesforce__deal_summary_opportunity_id.03087133cd": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_1.9228eb7d64": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_opportunity_id__opportunity_plan_id__plan.d096692b6a": [], "test.yoda.unique_analytics___salesforce__deal_summary_product_deal_summary_product_id.57b1c94531": [], "test.yoda.not_null_analytics___salesforce__deal_summary_product_deal_summary_product_id.31d4312769": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__deal_summary_product_1.72e8bd4470": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__deal_summary_product_opportunity_id__product.606e8c0004": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__lead_1.6f1f5bb1a0": [], "test.yoda.unique_analytics___salesforce__live_chat_transcript_chat_id.273b64c735": [], "test.yoda.not_null_analytics___salesforce__live_chat_transcript_chat_id.aa749713eb": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__live_chat_transcript_1.5b1fca726d": [], "test.yoda.unique_analytics___salesforce__mql_mql_id.d209fbec60": [], "test.yoda.not_null_analytics___salesforce__mql_mql_id.02bc1b90ba": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__mql_1.f074e992f7": [], "test.yoda.unique_analytics___salesforce__new_organization_Organization_Key__c.47411e9518": [], "test.yoda.not_null_analytics___salesforce__new_organization_Organization_Key__c.7b2bf4e82a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__new_organization_1.20953b5d1f": [], "test.yoda.unique_analytics___salesforce__onboarding_project_onboarding_project_id.71a179fe6c": [], "test.yoda.not_null_analytics___salesforce__onboarding_project_onboarding_project_id.5dc0a7f0e2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__onboarding_project_1.3e73956d71": [], "test.yoda.unique_analytics___salesforce__opportunity_opportunity_id.d7cc183433": [], "test.yoda.not_null_analytics___salesforce__opportunity_opportunity_id.65909d08bc": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_1.258691c816": [], "test.yoda.unique_analytics___salesforce__opportunity_line_item_line_item_id.f73276dcba": [], "test.yoda.not_null_analytics___salesforce__opportunity_line_item_line_item_id.b4ec3e167f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__opportunity_line_item_1.df821c0795": [], "test.yoda.unique_analytics___salesforce__partner_engagement_partner_engagement_id.b2ccbbcf95": [], "test.yoda.not_null_analytics___salesforce__partner_engagement_partner_engagement_id.629541df50": [], "test.yoda.not_null_analytics___salesforce__service_case_case_id.1226a89545": [], "test.yoda.unique_analytics___salesforce__service_case_case_id.e02fd95829": [], "test.yoda.not_null_analytics___salesforce__service_case_case_number.2b19a4e71c": [], "test.yoda.unique_analytics___salesforce__service_case_case_number.3b647293ea": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__service_case_1.54e258537d": [], "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c.541c4126d5": [], "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_daily_Product_Metrics_Name__c.1d4159a1ed": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_daily_1.1a8396a1a0": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce__store_product_metrics_snapshot_daily_App_Key__c__Product_Metrics_Name__c.d8838388cf": [], "test.yoda.unique_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c.96c65ab273": [], "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_External_ID__c.42a91a77a8": [], "test.yoda.not_null_analytics___salesforce__store_product_metrics_snapshot_monthly_Product_Metrics_Name__c.26d3e4508a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__store_product_metrics_snapshot_monthly_1.5a5b0be37d": [], "test.yoda.unique_analytics___salesforce__task_task_id.0f8d2488b9": [], "test.yoda.not_null_analytics___salesforce__task_task_id.d8090db429": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__task_1.da7010e10f": [], "test.yoda.unique_analytics___salesforce__user_overtime_user_role_id.78768862b4": [], "test.yoda.not_null_analytics___salesforce__user_overtime_user_role_id.a4cc02bdfd": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce__user_overtime_1.347df68a4b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_full_1.ac3cbc15d7": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__account_product_c_full_1.08bbe6d6f3": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__campaign_1.2498c6bddb": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__contact_1.9b8de16b82": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__datedconversionrate_1.1431d985ae": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__lead_1.1175c9dc01": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__livechattranscript_full_1.0b050ad4b7": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__onboarding_project_c_full_1.7d63555589": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_c_full_1.a687f42933": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__partner_referral_c_full_1.14539c8ee1": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__task_1.75c8aed526": [], "test.yoda.unique_analytics___salesforce_stg__custom_field_history_sf_event_id.ab7808b812": [], "test.yoda.not_null_analytics___salesforce_stg__custom_field_history_sf_event_id.55074feac4": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__custom_field_history_1.86ee399ddd": [], "test.yoda.unique_analytics___salesforce_stg__mc_account_account_id.6067ebe293": [], "test.yoda.not_null_analytics___salesforce_stg__mc_account_account_id.782ec87d8f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_1.32a13ae472": [], "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_account_product_id.8dbd027775": [], "test.yoda.unique_analytics___salesforce_stg__mc_account_product_account_product_id.49a3cb427d": [], "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_account_id.c2239a1a79": [], "test.yoda.not_null_analytics___salesforce_stg__mc_account_product_product_name.e5ece9c4d5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_account_product_1.3ade706487": [], "test.yoda.unique_analytics___salesforce_stg__mc_campaign_campaign_id.8b1ea5edb4": [], "test.yoda.not_null_analytics___salesforce_stg__mc_campaign_campaign_id.2313c1b093": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_campaign_1.3e66a80add": [], "test.yoda.unique_analytics___salesforce_stg__mc_contact_contact_id.7a821a5016": [], "test.yoda.not_null_analytics___salesforce_stg__mc_contact_contact_id.9338361d21": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_contact_1.7dcf842d3b": [], "test.yoda.unique_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id.5c374de83d": [], "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_conversion_rate_id.56a6f9db93": [], "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_currency_symbol.aa0cd24815": [], "test.yoda.not_null_analytics___salesforce_stg__mc_conversion_rate_from_date.9f5d451a47": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_conversion_rate_1.8ba7b5f4f2": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___salesforce_stg__mc_conversion_rate_currency_symbol__from_date.f692cccde0": [], "test.yoda.unique_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.ac71be4f72": [], "test.yoda.not_null_analytics___salesforce_stg__mc_cs_lead_cs_lead_id.2e7c947e0e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_cs_lead_1.c429c91cc1": [], "test.yoda.unique_analytics___salesforce_stg__mc_deal_summary_deal_summary_id.c1a6fd6217": [], "test.yoda.not_null_analytics___salesforce_stg__mc_deal_summary_deal_summary_id.f987e65f12": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_deal_summary_1.67666745de": [], "test.yoda.unique_analytics___salesforce_stg__mc_event_event_id.3d0cf71521": [], "test.yoda.not_null_analytics___salesforce_stg__mc_event_event_id.44815ab8c6": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_event_1.6a312aa568": [], "test.yoda.unique_analytics___salesforce_stg__mc_lead_lead_id.c0041ba96f": [], "test.yoda.not_null_analytics___salesforce_stg__mc_lead_lead_id.1313d03af5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_lead_1.734b196685": [], "test.yoda.unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_id.fcda757714": [], "test.yoda.not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_id.d41b3dca35": [], "test.yoda.unique_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name.6ab14b9723": [], "test.yoda.not_null_analytics___salesforce_stg__mc_live_chat_transcript_chat_transcript_name.5fdab31e8e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_live_chat_transcript_1.b2da541dc7": [], "test.yoda.unique_analytics___salesforce_stg__mc_mql_mql_id.a3493225ae": [], "test.yoda.not_null_analytics___salesforce_stg__mc_mql_mql_id.66109a1a64": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_mql_1.2e58293ab3": [], "test.yoda.unique_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id.6198a515ad": [], "test.yoda.not_null_analytics___salesforce_stg__mc_onboarding_project_onboarding_project_id.6bce4734a2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_onboarding_project_1.07a3de4ae7": [], "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_opportunity_id.0f619d4a92": [], "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_opportunity_id.1bc80ae2ed": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_1.86280c097e": [], "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id.abd55de465": [], "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_field_history_sf_event_id.0e99b7bab4": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_field_history_1.d0fb577563": [], "test.yoda.unique_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id.58b83fd78d": [], "test.yoda.not_null_analytics___salesforce_stg__mc_opportunity_line_item_line_item_id.84b54bbaa8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_opportunity_line_item_1.d16e880f1e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_partner_referral_1.45712a9da3": [], "test.yoda.not_null_analytics___salesforce_stg__mc_service_case_case_id.ffdf41fb7a": [], "test.yoda.unique_analytics___salesforce_stg__mc_service_case_case_id.9f24d80528": [], "test.yoda.not_null_analytics___salesforce_stg__mc_service_case_case_number.20104071ae": [], "test.yoda.unique_analytics___salesforce_stg__mc_service_case_case_number.89289315b2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_service_case_1.4f19e3da6a": [], "test.yoda.unique_analytics___salesforce_stg__mc_task_task_id.0df533b3d4": [], "test.yoda.not_null_analytics___salesforce_stg__mc_task_task_id.cf03e7f289": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_task_1.cb12c7d801": [], "test.yoda.unique_analytics___salesforce_stg__mc_user_user_id.e62938aaff": [], "test.yoda.not_null_analytics___salesforce_stg__mc_user_user_id.ba2f4f0e35": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__mc_user_1.b7a345583f": [], "test.yoda.unique_analytics___salesforce_stg__opportunity_prediction_prediction_id.238d85469e": [], "test.yoda.not_null_analytics___salesforce_stg__opportunity_prediction_prediction_id.64f233439a": [], "test.yoda.not_null_analytics___salesforce_stg__opportunity_prediction_opportunity_id.dbc81edaa6": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___salesforce_stg__opportunity_prediction_1.dc9a0132aa": [], "test.yoda.not_null_analytics___sms__automation_message_dates_automation_id.0825c476ff": [], "test.yoda.not_null_analytics___sms__automation_message_dates_message_date.1ce8be6560": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__automation_message_dates_1.4ec8bc0876": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__automation_message_dates_automation_id__message_date.fc259d88d0": [], "test.yoda.not_null_analytics___sms__campaign_message_dates_campaign_id.0514713006": [], "test.yoda.not_null_analytics___sms__campaign_message_dates_message_date.894b1dacb2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__campaign_message_dates_1.ffbda0bcd9": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__campaign_message_dates_campaign_id__message_date.46ebcecbeb": [], "test.yoda.unique_analytics___sms__deliverability_daily_sms_deliverability_id.b877936313": [], "test.yoda.not_null_analytics___sms__deliverability_daily_sms_deliverability_id.a4af05164d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__deliverability_daily_1.ed5ec677de": [], "test.yoda.not_null_analytics___sms__flow_message_dates_flow_id.5090ceb246": [], "test.yoda.not_null_analytics___sms__flow_message_dates_message_date.29be2122c3": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__flow_message_dates_1.1ec9cc49fd": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__flow_message_dates_flow_id__message_date.f34aa732ba": [], "test.yoda.unique_analytics___sms__free_credit_details_free_credit_id.b8d6e0a420": [], "test.yoda.not_null_analytics___sms__free_credit_details_free_credit_id.613946642d": [], "test.yoda.not_null_analytics___sms__free_credit_details_sms_user_id.d1db017895": [], "test.yoda.not_null_analytics___sms__free_credit_details_credit_type.78a91a3b84": [], "test.yoda.not_null_analytics___sms__free_credit_details_credit_created_at.7c49b5f5fa": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__free_credit_details_1.add0fadb53": [], "test.yoda.not_null_analytics___sms__organization_metrics_monthly_month.4c1ae2b791": [], "test.yoda.not_null_analytics___sms__organization_metrics_monthly_organization_key.e4e223c945": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__organization_metrics_monthly_1.f032af9f64": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__organization_metrics_monthly_month__organization_key.de5cf3249b": [], "test.yoda.unique_analytics___sms__purchase_purchase_id.b73f9e0cdf": [], "test.yoda.not_null_analytics___sms__purchase_purchase_id.b5ed9e35cb": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__purchase_1.671a5dc914": [], "test.yoda.unique_analytics___sms__store_app_key.c36e729d05": [], "test.yoda.not_null_analytics___sms__store_app_key.4ae1b748eb": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_1.f4bddc02a7": [], "test.yoda.not_null_analytics___sms__store_activeness_daily_activeness_date.418c4727f0": [], "test.yoda.not_null_analytics___sms__store_activeness_daily_app_key.b3bfec3f09": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_activeness_daily_1.4432762bd7": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_activeness_daily_activeness_date__app_key.e3dae1fbf0": [], "test.yoda.not_null_analytics___sms__store_cohort_cohort_type.a81030d6ce": [], "test.yoda.not_null_analytics___sms__store_cohort_cohort_number.a60499f07d": [], "test.yoda.not_null_analytics___sms__store_cohort_app_key.c9097fd85a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_cohort_1.731435684c": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_cohort_cohort_type__cohort_number__app_key.4339d9bc4e": [], "test.yoda.unique_analytics___sms__store_metrics_app_key.9ba09bfff4": [], "test.yoda.not_null_analytics___sms__store_metrics_app_key.66dbe2259f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_1.2243a2968f": [], "test.yoda.not_null_analytics___sms__store_metrics_daily_date.e047c841c8": [], "test.yoda.not_null_analytics___sms__store_metrics_daily_sms_user_id.8a38a6c32b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_daily_1.8628852519": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_daily_date__sms_user_id.12d9c6e5a6": [], "test.yoda.not_null_analytics___sms__store_metrics_monthly_month.1d1fbc529c": [], "test.yoda.not_null_analytics___sms__store_metrics_monthly_app_key.f1f27aa275": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_metrics_monthly_1.503243a18e": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_metrics_monthly_month__app_key.261ef4f277": [], "test.yoda.not_null_analytics___sms__store_plan_daily_date.5d8a176ccd": [], "test.yoda.not_null_analytics___sms__store_plan_daily_app_key.33a248140c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_daily_1.639d995f4b": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_daily_date__app_key.4f5e35cc06": [], "test.yoda.not_null_analytics___sms__store_plan_over_time_app_key.915904b3b5": [], "test.yoda.not_null_analytics___sms__store_plan_over_time_from_time.2c20a6ca8e": [], "test.yoda.not_null_analytics___sms__store_plan_over_time_row_ranking_for_store_and_created_date.a80e2f0af0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_plan_over_time_1.1f72d8ea1d": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_plan_over_time_app_key__from_time__row_ranking_for_store_and_created_date.e8a022ecf1": [], "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_date.48c8026dcb": [], "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_app_key.62baae9185": [], "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_sms_user_id.23e8e685a5": [], "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_platform_name.736d64c512": [], "test.yoda.not_null_analytics___sms__store_receiving_country_metrics_message_type.7c58e62a8d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__store_receiving_country_metrics_1.cfb3934611": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__store_receiving_country_metrics_date__app_key__sms_user_id__plan_name__receiving_country__message_type.c272401986": [], "test.yoda.not_null_analytics___sms__user_activeness_daily_activeness_date.ed1699b965": [], "test.yoda.not_null_analytics___sms__user_activeness_daily_sms_user_id.19e6a484b5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_activeness_daily_1.dadc0c9339": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_activeness_daily_activeness_date__sms_user_id.4b9b0451dc": [], "test.yoda.not_null_analytics___sms__user_customer_sms_user_id.2d20dc9984": [], "test.yoda.not_null_analytics___sms__user_customer_customer_email.d9a9b17c31": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_customer_1.e8e30e51aa": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_customer_sms_user_id__customer_email.726afcd4b9": [], "test.yoda.not_null_analytics___sms__user_dates_history_sms_user_id.72878c6780": [], "test.yoda.not_null_analytics___sms__user_dates_history_category.84074f68fb": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_dates_history_1.51a67f0f66": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_dates_history_sms_user_id__category.60f0ec5210": [], "test.yoda.not_null_analytics___sms__user_installation_over_time_sms_user_id.8c0aa751e5": [], "test.yoda.not_null_analytics___sms__user_installation_over_time_from_time.084809d4ed": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_installation_over_time_1.bd685b143b": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_installation_over_time_sms_user_id__from_time.35da2ba29c": [], "test.yoda.not_null_analytics___sms__user_metrics_daily_date.3aa35ebeae": [], "test.yoda.not_null_analytics___sms__user_metrics_daily_sms_user_id.2cf64f25e9": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_metrics_daily_1.c15c39e602": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_metrics_daily_date__sms_user_id.c9e711584a": [], "test.yoda.not_null_analytics___sms__user_open_over_time_sms_user_id.648dc00053": [], "test.yoda.not_null_analytics___sms__user_open_over_time_from_time.c332d22411": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_open_over_time_1.4d8283ec4f": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_open_over_time_sms_user_id__from_time.47a1b16228": [], "test.yoda.not_null_analytics___sms__user_plan_daily_date.33a3073dd2": [], "test.yoda.not_null_analytics___sms__user_plan_daily_sms_user_id.60835627af": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_daily_1.7a999ca752": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_daily_date__sms_user_id.7bb4b1abb3": [], "test.yoda.not_null_analytics___sms__user_plan_monthly_month.0820d3b1d1": [], "test.yoda.not_null_analytics___sms__user_plan_monthly_sms_user_id.3928145ca3": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_monthly_1.c91b897ee1": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_monthly_month__sms_user_id.1b634e671b": [], "test.yoda.not_null_analytics___sms__user_plan_over_time_sms_user_id.554ad72120": [], "test.yoda.not_null_analytics___sms__user_plan_over_time_from_time.33a87dfaa7": [], "test.yoda.not_null_analytics___sms__user_plan_over_time_row_ranking_for_user_and_created_date.2af5c52a25": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_plan_over_time_1.82ee3e55ec": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_plan_over_time_sms_user_id__from_time__row_ranking_for_user_and_created_date.0bac7aea56": [], "test.yoda.unique_analytics___sms__user_pop_up_status_sms_user_id.731b32c4ae": [], "test.yoda.not_null_analytics___sms__user_pop_up_status_sms_user_id.9f7cc77c1e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_1.12a6946cb6": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_pop_up_status_over_time_1.ddc3058f11": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_pop_up_status_over_time_sms_user_id__from_date.2dd0ca6d86": [], "test.yoda.not_null_analytics___sms__user_store_dates_history_sms_user_id.7cd1d7d381": [], "test.yoda.not_null_analytics___sms__user_store_dates_history_app_key.296cd0882f": [], "test.yoda.not_null_analytics___sms__user_store_dates_history_category.bbab7f1a6e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms__user_store_dates_history_1.ceb253056b": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms__user_store_dates_history_sms_user_id__app_key__category.494d86c84a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__fact_agg_sms_user_profile_daily_1.b874e00d75": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__fact_agg_sms_user_profile_daily_date__user_id.9411d9994c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_high_touch_bonus_1.cc9e696845": [], "test.yoda.unique_analytics___sms_stg__analytics_data_analytics_data_id.ea375a255c": [], "test.yoda.not_null_analytics___sms_stg__analytics_data_analytics_data_id.9608a2af02": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__analytics_data_1.6bf1de2585": [], "test.yoda.unique_analytics___sms_stg__api_calls_api_call_id.a63d25bdda": [], "test.yoda.not_null_analytics___sms_stg__api_calls_api_call_id.568129cb2a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__api_calls_1.0e35106141": [], "test.yoda.unique_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id.083d181b08": [], "test.yoda.not_null_analytics___sms_stg__bigcommerce_user_bigcommerce_user_id.52ff23780e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__bigcommerce_user_1.2f8a1193cf": [], "test.yoda.unique_analytics___sms_stg__campaign_campaign_id.8cc2699c93": [], "test.yoda.not_null_analytics___sms_stg__campaign_campaign_id.2e4875af1d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_1.6e36c0b8c5": [], "test.yoda.not_null_analytics___sms_stg__campaign_deletion_tracking_campaign_id.ad36d4faf6": [], "test.yoda.not_null_analytics___sms_stg__campaign_deletion_tracking_is_logical_deleted.8c745647d1": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_deletion_tracking_1.92e95b6a0c": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__campaign_deletion_tracking_campaign_id__is_logical_deleted.830a953547": [], "test.yoda.unique_analytics___sms_stg__campaign_list_campaign_list_id.f65a441bf5": [], "test.yoda.not_null_analytics___sms_stg__campaign_list_campaign_list_id.0889d20f03": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_list_1.53789ded76": [], "test.yoda.unique_analytics___sms_stg__campaign_relation_campaign_relation_id.e0081a0a4f": [], "test.yoda.not_null_analytics___sms_stg__campaign_relation_campaign_relation_id.01984fc04d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__campaign_relation_1.0709383063": [], "test.yoda.unique_analytics___sms_stg__default_predefined_message_template_id.2870f5f492": [], "test.yoda.not_null_analytics___sms_stg__default_predefined_message_template_id.2e1f7c861f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__default_predefined_message_1.2179eda3ee": [], "test.yoda.not_null_analytics___sms_stg__email_charge_email_charge_id.314c08ee94": [], "test.yoda.unique_analytics___sms_stg__email_charge_email_charge_id.88a79f413b": [], "test.yoda.not_null_analytics___sms_stg__email_charge_currency.4ecbbe716b": [], "test.yoda.accepted_values_analytics___sms_stg__email_charge_currency__USD.3088c35bba": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__email_charge_1.31aee7432b": [], "test.yoda.unique_analytics___sms_stg__event_event_id.b1ae672149": [], "test.yoda.not_null_analytics___sms_stg__event_event_id.7c70674ed4": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_1.1481ad6982": [], "test.yoda.not_null_analytics___sms_stg__event_deletion_tracking_event_id.aad13cd2d0": [], "test.yoda.not_null_analytics___sms_stg__event_deletion_tracking_is_logical_deleted.4bc68e5556": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__event_deletion_tracking_1.3fdf147bb9": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__event_deletion_tracking_event_id__is_logical_deleted.3215c296e6": [], "test.yoda.unique_analytics___sms_stg__flow_flow_id.00e5a420fc": [], "test.yoda.not_null_analytics___sms_stg__flow_flow_id.d057f09c87": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_1.ef23600f5b": [], "test.yoda.not_null_analytics___sms_stg__flow_deletion_tracking_flow_id.95d3a0af30": [], "test.yoda.not_null_analytics___sms_stg__flow_deletion_tracking_is_logical_deleted.c90de52b91": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__flow_deletion_tracking_1.790497ab87": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__flow_deletion_tracking_flow_id__is_logical_deleted.28b27600d8": [], "test.yoda.accepted_values_analytics___sms_stg__form_is_dynamic_popup__0__1.b6e7c6b4a0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__form_1.451d930639": [], "test.yoda.unique_analytics___sms_stg__free_credit_log_free_credit_log_id.d89be83a66": [], "test.yoda.not_null_analytics___sms_stg__free_credit_log_free_credit_log_id.92d6397f1e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__free_credit_log_1.140b7330dd": [], "test.yoda.unique_analytics___sms_stg__list_list_id.ea2f670be6": [], "test.yoda.not_null_analytics___sms_stg__list_list_id.76cfee039f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__list_1.a5ab72d384": [], "test.yoda.unique_analytics___sms_stg__loyalty_flow_flow_id.7842cb6a45": [], "test.yoda.not_null_analytics___sms_stg__loyalty_flow_flow_id.edcc8e2992": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__loyalty_flow_1.0e978e780f": [], "test.yoda.unique_analytics___sms_stg__organization_identifier_conversion_organization_id.d2cdc53d89": [], "test.yoda.not_null_analytics___sms_stg__organization_identifier_conversion_organization_id.8211799e55": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__organization_identifier_conversion_1.5f7d34fc26": [], "test.yoda.unique_analytics___sms_stg__plan_plan_id.1bfc36b301": [], "test.yoda.not_null_analytics___sms_stg__plan_plan_id.d2cf504db2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__plan_1.7829c012c2": [], "test.yoda.unique_analytics___sms_stg__purchase_purchase_id.909b5ae18b": [], "test.yoda.not_null_analytics___sms_stg__purchase_purchase_id.94e0e9df49": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__purchase_1.a1735bbd5c": [], "test.yoda.unique_analytics___sms_stg__segment_sms_campaign_message_id.3ee1be1b40": [], "test.yoda.not_null_analytics___sms_stg__segment_sms_campaign_message_id.92fc44f787": [], "test.yoda.not_null_analytics___sms_stg__segment_sms_campaign_created_at.9496b7b68e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__segment_sms_campaign_1.ed1541f2c3": [], "test.yoda.unique_analytics___sms_stg__shopify_campaign_order_order_attribution_id.fa5455b3a8": [], "test.yoda.not_null_analytics___sms_stg__shopify_campaign_order_order_attribution_id.25777d50f3": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_campaign_order_1.713ed05fab": [], "test.yoda.unique_analytics___sms_stg__shopify_customer_shopify_customer_internal_id.2012ed1458": [], "test.yoda.not_null_analytics___sms_stg__shopify_customer_shopify_customer_internal_id.c97ecf6b69": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_customer_1.45c5ed49f6": [], "test.yoda.unique_analytics___sms_stg__shopify_flow_order_order_attribution_id.37d90edfd1": [], "test.yoda.not_null_analytics___sms_stg__shopify_flow_order_order_attribution_id.c37f548479": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_flow_order_1.de05f701f6": [], "test.yoda.unique_analytics___sms_stg__shopify_orders_order_line_id.b7fc40909e": [], "test.yoda.not_null_analytics___sms_stg__shopify_orders_order_line_id.63c7c1c764": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_orders_1.11db598530": [], "test.yoda.unique_analytics___sms_stg__shopify_segment_segment_id.7b34c480b5": [], "test.yoda.not_null_analytics___sms_stg__shopify_segment_segment_id.b05d38783b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_segment_1.9aa58fa3a4": [], "test.yoda.unique_analytics___sms_stg__shopify_user_shopify_user_id.c0bac38cb2": [], "test.yoda.not_null_analytics___sms_stg__shopify_user_shopify_user_id.f0336d7360": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__shopify_user_1.862a063db4": [], "test.yoda.unique_analytics___sms_stg__sms_user_sms_user_id.490873732c": [], "test.yoda.not_null_analytics___sms_stg__sms_user_sms_user_id.ee715eacd8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__sms_user_1.3707c4d202": [], "test.yoda.unique_analytics___sms_stg__track_flow_adoption_flow_adoption_id.e1be7f4dd9": [], "test.yoda.not_null_analytics___sms_stg__track_flow_adoption_flow_adoption_id.f27cbca06e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__track_flow_adoption_1.33191f793d": [], "test.yoda.not_null_analytics___sms_stg__user_date_explode_from_creation_date.261a50fcfa": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_date_explode_from_creation_1.bde74b930d": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___sms_stg__user_date_explode_from_creation_date__sms_user_id.4be7d2f30b": [], "test.yoda.unique_analytics___sms_stg__user_event_log_event_id.d78a562339": [], "test.yoda.not_null_analytics___sms_stg__user_event_log_event_id.b453540b82": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___sms_stg__user_event_log_1.312315ba21": [], "test.yoda.not_null_analytics___subscriptions__contract_over_time_subscription_contract_id.afe55a364d": [], "test.yoda.not_null_analytics___subscriptions__contract_over_time_app_key.eb1cc36551": [], "test.yoda.not_null_analytics___subscriptions__contract_over_time_from_time.ea49a1a71e": [], "test.yoda.not_null_analytics___subscriptions__contract_over_time_to_time.a7841aa00e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__contract_over_time_1.f721df90e4": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__contract_over_time_app_key__from_time__to_time__subscription_contract_id.a4c467bc5b": [], "test.yoda.unique_analytics___subscriptions__store_app_key.9ef591e5eb": [], "test.yoda.not_null_analytics___subscriptions__store_app_key.08a51eda61": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_1.34ac5e53e0": [], "test.yoda.not_null_analytics___subscriptions__store_activeness_daily_activeness_date.ee63973cf7": [], "test.yoda.not_null_analytics___subscriptions__store_activeness_daily_app_key.00b4f16e92": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_activeness_daily_1.094fb6643f": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_activeness_daily_activeness_date__app_key.bb85741a83": [], "test.yoda.not_null_analytics___subscriptions__store_feature_activation_app_key.20fc1e9ad2": [], "test.yoda.not_null_analytics___subscriptions__store_feature_activation_feature_name.7d69d75c9c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_feature_activation_1.8d5d5298a3": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_feature_activation_app_key__feature_name.b3a24c2bb2": [], "test.yoda.not_null_analytics___subscriptions__store_installation_over_time_app_key.5c5e205994": [], "test.yoda.not_null_analytics___subscriptions__store_installation_over_time_from_time.9a7d4d93c3": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__store_installation_over_time_1.78f443f9ee": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__store_installation_over_time_app_key__from_time.7622c74e4b": [], "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_app_key.43cd3ad301": [], "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_date.d3d90c8094": [], "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status.a93d10ba55": [], "test.yoda.not_null_analytics___subscriptions__subscription_contract_daily_subscription_contract_status_id.c972a8540d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_daily_1.c0a7f26b24": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_daily_app_key__date__subscription_contract_status_id.55e676ee06": [], "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_app_key.3ddafaed5f": [], "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_month.cfc865b9a1": [], "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status.3aa7143fde": [], "test.yoda.not_null_analytics___subscriptions__subscription_contract_monthly_subscription_contract_status_id.bebb1bf4ce": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions__subscription_contract_monthly_1.54db6ef4fc": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions__subscription_contract_monthly_app_key__month__subscription_contract_status_id.2217450d3a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_ended_v2_1.6d6c36a6b0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscription_started_v2_1.548aa7a7be": [], "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_event_created_at.0d93935f72": [], "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_app_key.fd876ab8bb": [], "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_contract_id.cb1646dc14": [], "test.yoda.not_null_analytics___subscriptions_stg__contract_event_details_status_id.fdfae2edbf": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_event_details_1.708aff8138": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_event_details_app_key__event_created_at__contract_id.7776609e85": [], "test.yoda.not_null_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id.c8fafa20ce": [], "test.yoda.not_null_analytics___subscriptions_stg__contract_snapshot_app_key.effd01aca2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__contract_snapshot_1.b7c50a7e65": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___subscriptions_stg__contract_snapshot_subscription_contract_id__app_key__updated_at.d0faa80564": [], "test.yoda.not_null_analytics___subscriptions_stg__customer_journey_event_journey_event_id.9b3eedfd0f": [], "test.yoda.unique_analytics___subscriptions_stg__customer_journey_event_journey_event_id.c80c9d4ef0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__customer_journey_event_1.e2a10c9828": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_product_product_id.af3ee8cbb8": [], "test.yoda.unique_analytics___subscriptions_stg__mc_product_product_id.4c52e4bd15": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_product_1.a71b24154f": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id.d7668b80cb": [], "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_selling_plan_id.59fd8b105c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_1.407e580603": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id.d2f7df0555": [], "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_group_selling_plan_group_id.b9cc1e66c4": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id.7b725cc447": [], "test.yoda.unique_analytics___subscriptions_stg__mc_selling_plan_group_product_selling_plan_group_product_id.df899a9d29": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_selling_plan_group_product_1.ebc32382de": [], "test.yoda.unique_analytics___subscriptions_stg__mc_status_status_id.2b49d6d937": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_id.a541e7b3ac": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_number.ad6508ce95": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_status_status_name.254ed69a12": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_status_1.854cb7f2ef": [], "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id.915c60d6c0": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_subscription_contract_id.32d06bde10": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_app_key.f2d2b80d1f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_1.702fb87f22": [], "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id.9359322c5e": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_order_subscription_contract_order_id.3bf0d39584": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_contract_order_app_key.a1c6a31e25": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_contract_order_1.b320df335e": [], "test.yoda.not_null_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id.21230cd84a": [], "test.yoda.unique_analytics___subscriptions_stg__mc_subscription_creation_request_creation_request_id.1abd886432": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__mc_subscription_creation_request_1.d94bb1038d": [], "test.yoda.unique_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id.66f95d75ca": [], "test.yoda.not_null_analytics___subscriptions_stg__segment_subscription_ended_v_two_event_id.0ec80372f0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_ended_v_two_1.bedc844c4a": [], "test.yoda.unique_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id.d42993d6a1": [], "test.yoda.not_null_analytics___subscriptions_stg__segment_subscription_started_v_two_event_id.6ffdf73ddf": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__segment_subscription_started_v_two_1.ecf07b9f7b": [], "test.yoda.not_null_analytics___subscriptions_stg__subscriptions_store_app_key.7942022444": [], "test.yoda.unique_analytics___subscriptions_stg__subscriptions_store_app_key.3886a3df6b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___subscriptions_stg__subscriptions_store_1.de18534c11": [], "test.yoda.not_null_analytics___synergies__activation_level_daily_activeness_date.84e6dd6a57": [], "test.yoda.not_null_analytics___synergies__activation_level_daily_app_key.72da946758": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__activation_level_daily_1.3140e90624": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__activation_level_daily_activeness_date__app_key.b8424f7b0c": [], "test.yoda.not_null_analytics___synergies__eligible_store_monthly_synergy_month.aa5c8d2f0b": [], "test.yoda.not_null_analytics___synergies__eligible_store_monthly_app_key.1914c2f746": [], "test.yoda.not_null_analytics___synergies__eligible_store_monthly_synergy_id.63ab4f85a7": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__eligible_store_monthly_1.3d0937d0fa": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__eligible_store_monthly_synergy_month__app_key__synergy_id.22e3c9c72a": [], "test.yoda.not_null_analytics___synergies__kpi_ranked_action_synergy_id.f57d4318b3": [], "test.yoda.not_null_analytics___synergies__kpi_ranked_action_app_key.e66b331f14": [], "test.yoda.not_null_analytics___synergies__kpi_ranked_action_source_type.f591a8ea3e": [], "test.yoda.not_null_analytics___synergies__kpi_ranked_action_source_id.24e8689291": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__kpi_ranked_action_1.26b68aef97": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__kpi_ranked_action_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id.0f755cad91": [], "test.yoda.not_null_analytics___synergies__loyalty_store_metrics_monthly_synergy_month.897d6bad2d": [], "test.yoda.not_null_analytics___synergies__loyalty_store_metrics_monthly_app_key.87b4d192d0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_metrics_monthly_1.f5a5480524": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_metrics_monthly_synergy_month__app_key.2f59dc6331": [], "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month.1fd7c4260c": [], "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_app_key.f8ef238f52": [], "test.yoda.not_null_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_id.35170d967c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__loyalty_store_synergy_metrics_monthly_1.d3aa71542d": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__loyalty_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id.a72eb611ac": [], "test.yoda.unique_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id.61f1af692a": [], "test.yoda.not_null_analytics___synergies__organization_synergy_activeness_monthly_organization_month_id.e4c71acd8a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__organization_synergy_activeness_monthly_1.833ae826f0": [], "test.yoda.not_null_analytics___synergies__store_activeness_daily_synergy_id.8ed2c45d8f": [], "test.yoda.not_null_analytics___synergies__store_activeness_daily_activeness_date.0c44d56959": [], "test.yoda.not_null_analytics___synergies__store_activeness_daily_app_key.4c62dab59d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_daily_1.851284ac04": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_daily_synergy_id__activeness_date__app_key.491cf6b0a8": [], "test.yoda.not_null_analytics___synergies__store_activeness_monthly_app_key.32980f35f1": [], "test.yoda.not_null_analytics___synergies__store_activeness_monthly_synergy_month.872f2e9cd2": [], "test.yoda.not_null_analytics___synergies__store_activeness_monthly_synergy_id.73179feb49": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_activeness_monthly_1.67b317255f": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_activeness_monthly_app_key__synergy_month__synergy_id.5890b97bea": [], "test.yoda.not_null_analytics___synergies__store_enablement_daily_synergy_date.5f66ebab8e": [], "test.yoda.not_null_analytics___synergies__store_enablement_daily_app_key.dde758627d": [], "test.yoda.not_null_analytics___synergies__store_enablement_daily_synergy_id.cfd7e75be5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_daily_1.58b47e9d83": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_daily_synergy_date__app_key__synergy_id.926cbeb0ff": [], "test.yoda.not_null_analytics___synergies__store_enablement_monthly_synergy_month.f62218a7e0": [], "test.yoda.not_null_analytics___synergies__store_enablement_monthly_app_key.702d12e3b1": [], "test.yoda.not_null_analytics___synergies__store_enablement_monthly_synergy_id.3b524edbf2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_monthly_1.73bb740d22": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_monthly_synergy_month__app_key__synergy_id.ac76283542": [], "test.yoda.not_null_analytics___synergies__store_enablement_over_time_app_key.32ef98e888": [], "test.yoda.not_null_analytics___synergies__store_enablement_over_time_synergy_id.3305f8662d": [], "test.yoda.not_null_analytics___synergies__store_enablement_over_time_from_time.02cb597eca": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_enablement_over_time_1.c138651cf5": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_enablement_over_time_app_key__synergy_id__from_time.a0c81c697b": [], "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id.8f39499aa6": [], "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_activeness_date.f67191ee40": [], "test.yoda.not_null_analytics___synergies__store_last_thirty_days_activeness_daily_app_key.6d013dc48c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_last_thirty_days_activeness_daily_1.9bd60f3d3c": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_last_thirty_days_activeness_daily_synergy_id__activeness_date__app_key.894f454cd1": [], "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_month.0ac49bf360": [], "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_app_key.02ef3aa81e": [], "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_synergy_id.82cc06f14c": [], "test.yoda.not_null_analytics___synergies__store_synergy_metrics_monthly_metric_name.da7aaad9b4": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__store_synergy_metrics_monthly_1.507d6f163f": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__store_synergy_metrics_monthly_synergy_month__app_key__synergy_id__metric_name.a98223feff": [], "test.yoda.unique_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id.0d3a695823": [], "test.yoda.not_null_analytics___synergies__synergy_metrics_monthly_synergy_metrics_id.a13a970968": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__synergy_metrics_monthly_1.fd220b4844": [], "test.yoda.not_null_analytics___synergies__ugc_store_metrics_monthly_synergy_month.4f18d8d4d6": [], "test.yoda.not_null_analytics___synergies__ugc_store_metrics_monthly_app_key.75603f946d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_metrics_monthly_1.52ccee81dc": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_metrics_monthly_synergy_month__app_key.1344c9d2d5": [], "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month.3ae6c80717": [], "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_app_key.bae999bfe8": [], "test.yoda.not_null_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_id.b10bee05e2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies__ugc_store_synergy_metrics_monthly_1.e7f414d99d": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies__ugc_store_synergy_metrics_monthly_synergy_month__app_key__synergy_id.a1faf90280": [], "test.yoda.not_null_analytics___synergies_stg__enablement_event_app_key.76fcb32c34": [], "test.yoda.not_null_analytics___synergies_stg__enablement_event_widget_id.4957052cb7": [], "test.yoda.not_null_analytics___synergies_stg__enablement_event_updated_at.21bf468446": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__enablement_event_1.a8864ee9dc": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___synergies_stg__enablement_event_app_key__widget_id__updated_at.9b112674ca": [], "test.yoda.unique_analytics___synergies_stg__home_screen_section_section_id.4d0b6fc004": [], "test.yoda.not_null_analytics___synergies_stg__home_screen_section_section_id.dde5fb0656": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_section_1.6bb04a8b5f": [], "test.yoda.unique_analytics___synergies_stg__home_screen_widget_widget_id.3783cc3799": [], "test.yoda.not_null_analytics___synergies_stg__home_screen_widget_widget_id.8689f866f2": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_1.12bcc2f246": [], "test.yoda.unique_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id.597f20ed79": [], "test.yoda.not_null_analytics___synergies_stg__home_screen_widget_configuration_widget_configuration_id.081c36060e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__home_screen_widget_configuration_1.de22ba73a1": [], "test.yoda.not_null_analytics___synergies_stg__synergy_widget_widget_id.3fc9fb7c27": [], "test.yoda.unique_analytics___synergies_stg__synergy_widget_widget_id.d1ea36462d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___synergies_stg__synergy_widget_1.a10bbb825f": [], "test.yoda.unique_analytics___ugc__active_metrics_monthly_metrics_id.cd059a648d": [], "test.yoda.not_null_analytics___ugc__active_metrics_monthly_metrics_id.be59d583d1": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__active_metrics_monthly_1.4a122bedee": [], "test.yoda.unique_analytics___ugc__image_image_id.ba2637444f": [], "test.yoda.not_null_analytics___ugc__image_image_id.0162a8e5be": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__image_1.47d3787714": [], "test.yoda.unique_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id.a627e345d6": [], "test.yoda.not_null_analytics___ugc__order_to_review_rate_cohort_order_to_review_cohort_id.f0d74a7394": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__order_to_review_rate_cohort_1.24d4a0af4b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_first_time_activity_metrics_1.e770d90630": [], "test.yoda.not_null_analytics___ugc__organization_metrics_monthly_metric_month.a27595dbc1": [], "test.yoda.not_null_analytics___ugc__organization_metrics_monthly_organization_key.5222d1cf40": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__organization_metrics_monthly_1.6b4b3f7cbf": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__organization_metrics_monthly_metric_month__organization_key.d1c5a17e8e": [], "test.yoda.not_null_analytics___ugc__owner_first_time_activity_metrics_owner_id.0db71e17e3": [], "test.yoda.not_null_analytics___ugc__owner_first_time_activity_metrics_owner_type.000b78d478": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_first_time_activity_metrics_1.a83c5a171a": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__owner_first_time_activity_metrics_owner_id__owner_type.bd345030f9": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__owner_order_to_review_monthly_1.a8f9518409": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__owner_order_to_review_monthly_owner_id__owner_type__month.78d91128ab": [], "test.yoda.not_null_analytics___ugc__platform_order_to_review_monthly_month.facc9b995e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__platform_order_to_review_monthly_1.344b78f570": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__platform_order_to_review_monthly_month__closing_plan_group__platform__last_3m_orders_avg_bucket__postman_enabled.9a0f5c1cc0": [], "test.yoda.unique_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id.6cd0e845b1": [], "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_postman_feature_email_usage_id.db29533c75": [], "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_email_sent_month.92c2bb76ba": [], "test.yoda.not_null_analytics___ugc__postman_feature_email_usage_monthly_is_postman_enabled.a9a288b413": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__postman_feature_email_usage_monthly_1.c886495d8c": [], "test.yoda.unique_analytics___ugc__review_review_id.1b6c9b9032": [], "test.yoda.not_null_analytics___ugc__review_review_id.a1469a8d82": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_1.324968d72d": [], "test.yoda.not_null_analytics___ugc__review_request_channel_name.c8cd833bf6": [], "test.yoda.not_null_analytics___ugc__review_request_channel_message_id.d1c9073545": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_1.d18d50dbe2": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_channel_name__channel_message_id.1d214ff05a": [], "test.yoda.not_null_analytics___ugc__review_request_token_token.d8ef92cf0c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_1.a0d5fe504e": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_channel_name__review_request_token_id.62b29c2b49": [], "test.yoda.not_null_analytics___ugc__review_request_token_message_channel_name.dc729be2e3": [], "test.yoda.not_null_analytics___ugc__review_request_token_message_review_request_token_id.161c203dfd": [], "test.yoda.not_null_analytics___ugc__review_request_token_message_channel_message_id.b91e2d1d77": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__review_request_token_message_1.a0e41528a1": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__review_request_token_message_channel_name__review_request_token_id__channel_message_id.904160e48d": [], "test.yoda.unique_analytics___ugc__store_store_id.b6317d5494": [], "test.yoda.not_null_analytics___ugc__store_store_id.a00f663f7d": [], "test.yoda.unique_analytics___ugc__store_app_key.34f069379e": [], "test.yoda.not_null_analytics___ugc__store_app_key.405614a37b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_1.5d3063e2a5": [], "test.yoda.not_null_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key.f4f2fbdb44": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_enablement_to_pixel_event_cohort_1.b1ff78daf3": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_enablement_to_pixel_event_cohort_app_key__widget_element_v3__pixel_event_v3_month.8037deec6c": [], "test.yoda.not_null_analytics___ugc__store_feature_over_time_source_id.f2748b048b": [], "test.yoda.not_null_analytics___ugc__store_feature_over_time_store_id.c0ec402331": [], "test.yoda.not_null_analytics___ugc__store_feature_over_time_feature_id.3ca7ae5b7d": [], "test.yoda.not_null_analytics___ugc__store_feature_over_time_from_date.7d669669af": [], "test.yoda.not_null_analytics___ugc__store_feature_over_time_to_date.a32b4c2cef": [], "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_organization_owner__0.eb01fab611": [], "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_user_owner__0.8fc5e0eb2b": [], "test.yoda.accepted_values_analytics___ugc__store_feature_over_time_is_store_owner__1.955434b684": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_feature_over_time_1.f91a26b0cb": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_feature_over_time_source_id__store_id__feature_id__from_date__to_date.292a9e16a5": [], "test.yoda.unique_analytics___ugc__store_first_time_activity_metrics_app_key.3aa1ca5a92": [], "test.yoda.not_null_analytics___ugc__store_first_time_activity_metrics_app_key.cc9670afe5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_first_time_activity_metrics_1.0613283fc4": [], "test.yoda.not_null_analytics___ugc__store_installation_over_time_app_key.19a3e4b522": [], "test.yoda.not_null_analytics___ugc__store_installation_over_time_from_time.76e51caa47": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_installation_over_time_1.b6666b70ca": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_installation_over_time_app_key__from_time.a70955b949": [], "test.yoda.not_null_analytics___ugc__store_metrics_daily_metric_date.1f726f3aa4": [], "test.yoda.not_null_analytics___ugc__store_metrics_daily_app_key.e01288e581": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_1.a539e46a89": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_metric_date__app_key.112a1b66cf": [], "test.yoda.not_null_analytics___ugc__store_metrics_daily_24m_metric_date.9bf1825ce3": [], "test.yoda.not_null_analytics___ugc__store_metrics_daily_24m_app_key.f9a2090544": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_daily_24m_1.e51d9b69d8": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_daily_24m_metric_date__app_key.4970dec896": [], "test.yoda.not_null_analytics___ugc__store_metrics_monthly_metric_month.c3d4f10df5": [], "test.yoda.not_null_analytics___ugc__store_metrics_monthly_app_key.1073499c24": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_metrics_monthly_1.24eea2db84": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_metrics_monthly_metric_month__app_key.517b629212": [], "test.yoda.not_null_analytics___ugc__store_product_activeness_monthly_activeness_month.9f374e83a9": [], "test.yoda.not_null_analytics___ugc__store_product_activeness_monthly_app_key.6cb5d16c3d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_product_activeness_monthly_1.50a62efcf1": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__store_product_activeness_monthly_activeness_month__app_key.60e55c84b7": [], "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id.b99dcb3c0c": [], "test.yoda.unique_analytics___ugc__store_widget_metrics_monthly_store_widget_month_id.824457c223": [], "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_month.769efb0e90": [], "test.yoda.not_null_analytics___ugc__store_widget_metrics_monthly_app_key.81856455ca": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__store_widget_metrics_monthly_1.cbe0147ee1": [], "test.yoda.unique_analytics___ugc__unmigrated_review_request_token_token.fdcd099de4": [], "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_token.5e02c0380e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_1.2bffc5d009": [], "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_email_token.4be6598c69": [], "test.yoda.not_null_analytics___ugc__unmigrated_review_request_token_email_users_email_control_id.b2ddbde755": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc__unmigrated_review_request_token_email_1.a654efd0a2": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc__unmigrated_review_request_token_email_token__users_email_control_id.e0f980471d": [], "test.yoda.not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group.8f84ce0592": [], "test.yoda.not_null_analytics___ugc_stg__ugc_plan_group_change_mapping_current_day_plan_group.f14c7ed426": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__ugc_plan_group_change_mapping_1.5a38ea7600": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__ugc_plan_group_change_mapping_previous_day_plan_group__current_day_plan_group.8467be1d05": [], "test.yoda.unique_analytics___ugc_stg__comment_comment_id.176198d33d": [], "test.yoda.not_null_analytics___ugc_stg__comment_comment_id.624b204f24": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__comment_1.77e489a153": [], "test.yoda.unique_analytics___ugc_stg__dirty_words_content_row_id.4d33cf4736": [], "test.yoda.not_null_analytics___ugc_stg__dirty_words_content_row_id.10b8fc8eca": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__dirty_words_content_1.01c4db28a4": [], "test.yoda.not_null_analytics___ugc_stg__email_email_analytics_id.be969eaf47": [], "test.yoda.unique_analytics___ugc_stg__email_email_analytics_id.3236432e37": [], "test.yoda.not_null_analytics___ugc_stg__email_email_id.d06d4e3ea5": [], "test.yoda.unique_analytics___ugc_stg__email_email_id.3b8b1114cc": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__email_1.38f0ffaa3d": [], "test.yoda.unique_analytics___ugc_stg__image_image_id.8d2a490eb2": [], "test.yoda.not_null_analytics___ugc_stg__image_image_id.93c006695c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__image_1.3bc5f175b6": [], "test.yoda.unique_analytics___ugc_stg__metadata_type_metadata_type_id.6ae00d97a8": [], "test.yoda.not_null_analytics___ugc_stg__metadata_type_metadata_type_id.b1ad12f505": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__metadata_type_1.e965017da7": [], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_feature_id.0d3b7ec8aa": [], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_id.0434a0f934": [], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_feature_id.c5fb24a3f1": [], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_owner_type.f59683da70": [], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_created_at.c9b79bcd9e": [], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_updated_at.3ba9ddca81": [], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_disabled.f99ad1250c": [], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_user_enabled.1d360123cf": [], "test.yoda.not_null_analytics___ugc_stg__owner_feature_enablement_event_is_floating.2d4d22ef6e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_enablement_event_1.017f2f4925": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__owner_feature_setting_change_event_1.722d6279f0": [], "test.yoda.not_null_analytics___ugc_stg__reminder_reminder_id.0443c861f0": [], "test.yoda.not_null_analytics___ugc_stg__reminder_store_id.e2fc574452": [], "test.yoda.accepted_values_analytics___ugc_stg__reminder_is_enabled__0__1.28a0cbe576": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_1.904e70f372": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_reminder_id__store_id.80e3f0e40c": [], "test.yoda.not_null_analytics___ugc_stg__reminder_snapshot_store_id.9a36c060c0": [], "test.yoda.not_null_analytics___ugc_stg__reminder_snapshot_reminder_id.eb8468219c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__reminder_snapshot_1.522406774f": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__reminder_snapshot_reminder_id__store_id__updated_at.455f7570ac": [], "test.yoda.unique_analytics___ugc_stg__review_review_id.340430637c": [], "test.yoda.not_null_analytics___ugc_stg__review_review_id.fb39d68d60": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_1.df703fc694": [], "test.yoda.not_null_analytics___ugc_stg__review_image_review_id.cb84240bb1": [], "test.yoda.not_null_analytics___ugc_stg__review_image_image_id.dbd0627e86": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_image_1.dc6b7d5d4a": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_image_review_id__image_id.a73115c375": [], "test.yoda.unique_analytics___ugc_stg__review_metadata_review_metadata_id.e1a83f1720": [], "test.yoda.not_null_analytics___ugc_stg__review_metadata_review_metadata_id.50cd8e9406": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_metadata_1.e414dae9e3": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_email_1.183696f8fc": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_request_sms_1.070a1af629": [], "test.yoda.unique_analytics___ugc_stg__review_source_type_review_source_type_id.f472340919": [], "test.yoda.not_null_analytics___ugc_stg__review_source_type_review_source_type_id.66e45b81d8": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_source_type_1.279fc2029a": [], "test.yoda.unique_analytics___ugc_stg__review_subject_review_subject_id.91d2fa6505": [], "test.yoda.not_null_analytics___ugc_stg__review_subject_review_subject_id.2e0521c635": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_subject_1.fe38748fe0": [], "test.yoda.unique_analytics___ugc_stg__review_type_review_type_id.2fa963d87d": [], "test.yoda.not_null_analytics___ugc_stg__review_type_review_type_id.3efe93aeee": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_type_1.63b9f90919": [], "test.yoda.not_null_analytics___ugc_stg__review_video_review_id.fb9fc0d7bf": [], "test.yoda.not_null_analytics___ugc_stg__review_video_video_id.1869d3c00b": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_analytics___ugc_stg__review_video_1.63c54374fc": [], "test.yoda.dbt_utils_unique_combination_of_columns_analytics___ugc_stg__review_video_review_id__video_id.cdbdc5d389": [], "test.yoda.not_null_analytics___utils_stg__calendar_date.7d542d0652": [], "test.yoda.unique_analytics___utils_stg__calendar_date.2f0bc853db": [], "test.yoda.not_null_email__daily_delivered_emails_by_source_name_context_source_name.5b2fd00db3": [], "test.yoda.not_null_email__daily_delivered_emails_by_source_name_date.67e6ee4752": [], "test.yoda.not_null_email__daily_delivered_emails_by_source_name_total.739582565f": [], "test.yoda.not_null_email__daily_total_email_campaigns_total.4ff35bd3bf": [], "test.yoda.not_null_email__daily_total_email_campaigns_date.7042c6c263": [], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_id.01cfbeedb9": [], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_synergy_id.182a7183c0": [], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_app_key.7018e17ee4": [], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_customer_email.e76313a4cb": [], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_customer_external_id.d649258d9d": [], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_source_type.53bbbe37cd": [], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_source_id.1251666079": [], "test.yoda.not_null_email__email_campaign_reviews_block_kpi_order_id.3a2529f59b": [], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_id.9eef29ff31": [], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_synergy_id.958accfe65": [], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_app_key.639c700af5": [], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_customer_email.f19549059f": [], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_customer_external_id.2ea805cb1d": [], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_source_type.9cbbfce071": [], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_source_id.08e3c773a8": [], "test.yoda.not_null_email__email_campaign_reviews_stars_kpi_order_id.1503c1d47e": [], "test.yoda.not_null_email_stg__template_instance_events_store_id.7489a266fe": [], "test.yoda.not_null_email_stg__template_instance_events_template_instance_id.1a63fc900e": [], "test.yoda.not_null_infra__canary_data_model_app_key.c6db71c81f": [], "test.yoda.not_null_infra__canary_data_model_daily_metric.5db67846d8": [], "test.yoda.not_null_infra__canary_segment_model_profile_userId.5e72499306": [], "test.yoda.not_null_infra__canary_segment_model_profile_daily_metric.60592337f0": [], "test.yoda.dbt_utils_expression_is_true_infra__contracts_burn_estimations_yearly_budget___0.3a039f37ba": [], "test.yoda.not_null_infra__contracts_burn_estimations_start_date.0b2404158a": [], "test.yoda.not_null_infra__contracts_burn_estimations_end_date.ea1ea1c411": [], "test.yoda.not_null_infra__contracts_burn_estimations_vendor.357a49c299": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_estimations_1.8a4cf1359e": [], "test.yoda.not_null_infra__contracts_burn_status_start_date.f75328a2f7": [], "test.yoda.not_null_infra__contracts_burn_status_end_date.9520a11610": [], "test.yoda.not_null_infra__contracts_burn_status_vendor.1122e674a4": [], "test.yoda.dbt_utils_expression_is_true_infra__contracts_burn_status_yearly_budget___0.6af0f1b89d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__contracts_burn_status_1.24745bba70": [], "test.yoda.not_null_infra__infra_metrics_ts.d898bb6180": [], "test.yoda.not_null_infra__infra_metrics_product_line.9add29efd9": [], "test.yoda.not_null_infra__infra_metrics_source.edaf9abc91": [], "test.yoda.not_null_infra__infra_metrics_component.d8af3c0fbd": [], "test.yoda.not_null_infra__infra_metrics_key.172127b073": [], "test.yoda.not_null_infra__infra_metrics_value.2e0033a76e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__kubernetes_cost_1__billing_day_current_date_1.801b62a34e": [], "test.yoda.not_null_infra__rivery_contract_statistics_date.fdd99a1917": [], "test.yoda.not_null_infra__rivery_contract_statistics_year.faa8708e47": [], "test.yoda.not_null_infra__rivery_contract_statistics_month.5ac3bd212c": [], "test.yoda.not_null_infra__rivery_daily_usage_account_id.7c3b1f6492": [], "test.yoda.not_null_infra__rivery_daily_usage_environment_name.8f90fc6903": [], "test.yoda.not_null_infra__rivery_daily_usage_river_name.1274519a44": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_infra__rivery_daily_usage_1__date_current_date_1.167a073d90": [], "test.yoda.not_null_infra__s3_storage_data_summary_bucket.61255b41ed": [], "test.yoda.dbt_utils_equality_infra_stg__budget_ref_unit_test__expected__infra_stg__budget__infra_stg__budget_.a1e776df30": [], "test.yoda.not_null_infra_stg__infra_metrics_ts.85dad6d1d4": [], "test.yoda.not_null_infra_stg__infra_metrics_source.8d98cc3218": [], "test.yoda.not_null_infra_stg__infra_metrics_component.b2e07aafab": [], "test.yoda.not_null_infra_stg__infra_metrics_key.bcec2067d3": [], "test.yoda.not_null_infra_stg__infra_metrics_value.4b3957014e": [], "test.yoda.not_null_loyalty__customer_group_date_history_group_customer_id.f20f49abfc": [], "test.yoda.not_null_loyalty__customer_group_date_history_merchant_group_id.722d4bf4f0": [], "test.yoda.not_null_loyalty__customer_group_date_history_category.b5e988372f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_group_date_history_1.066a328015": [], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__customer_group_date_history_group_customer_id__merchant_group_id__category.6db34ce124": [], "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_date.dfeffafae1": [], "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_group_customer_id.586bcf6ede": [], "test.yoda.not_null_loyalty__customer_point_transaction_metrics_daily_merchant_group_id.c4bc04af4f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__customer_point_transaction_metrics_daily_1.d7ff2825fe": [], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__customer_point_transaction_metrics_daily_group_customer_id__date.10101ccaa4": [], "test.yoda.unique_loyalty__dim_campaigns_daily_snapshot_id.4bb6aeeae2": [], "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_id.5e34c99824": [], "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_type.6d4b50622a": [], "test.yoda.not_null_loyalty__dim_campaigns_daily_snapshot_dwh_updated_at.aa17481f82": [], "test.yoda.not_null_loyalty__dim_customer_birthdays_daily_snapshot_group_customer_id.d1b35ae6fd": [], "test.yoda.unique_loyalty__dim_customers_daily_snapshot_id.09d33def70": [], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_id.2c54f85955": [], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_merchant_id.890d8e6cbc": [], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_email_sent_count.0d45742168": [], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_updated_at.55fcdbd1a8": [], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_is_member.7c4c9533ab": [], "test.yoda.accepted_values_loyalty__dim_customers_daily_snapshot_is_member__False__True__False.d2aafb2216": [], "test.yoda.not_null_loyalty__dim_customers_daily_snapshot_dwh_updated_at.32a31ae877": [], "test.yoda.unique_loyalty__dim_merchants_daily_snapshot_id.9e1b4d52f2": [], "test.yoda.not_null_loyalty__dim_merchants_daily_snapshot_id.b30eb29a5c": [], "test.yoda.not_null_loyalty__dim_merchants_daily_snapshot_updated_at.87cd836a10": [], "test.yoda.unique_loyalty__dim_referral_discount_codes_daily_snapshot_id.3655facf99": [], "test.yoda.not_null_loyalty__dim_referral_discount_codes_daily_snapshot_id.7bd46d84ad": [], "test.yoda.unique_loyalty__dim_subscriptions_daily_snapshot_id.c57a1bbf29": [], "test.yoda.not_null_loyalty__dim_subscriptions_daily_snapshot_id.6396815751": [], "test.yoda.unique_loyalty__dim_vip_tiers_daily_snapshot_id.3db5ece551": [], "test.yoda.not_null_loyalty__dim_vip_tiers_daily_snapshot_id.91a51f5037": [], "test.yoda.unique_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.a8136b53dd": [], "test.yoda.not_null_loyalty__dim_yotpo_platform_accounts_daily_snapshot_id.8e468345d8": [], "test.yoda.unique_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date.415dfb2355": [], "test.yoda.not_null_loyalty__fact_dates_for_investment_metric_daily_snapshot_investment_date.96a2b394d3": [], "test.yoda.not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_customer_id.47bf050fa7": [], "test.yoda.not_null_loyalty__fact_email_campaigns_emails_daily_snapshot_merchant_id.8f02c9f6d3": [], "test.yoda.unique_loyalty__fact_perks_daily_snapshot_id.447c6f759a": [], "test.yoda.not_null_loyalty__fact_perks_daily_snapshot_id.d3372857e3": [], "test.yoda.unique_loyalty__fact_purchase_items_daily_snapshot_id.a08c3ecb47": [], "test.yoda.not_null_loyalty__fact_purchase_items_daily_snapshot_id.96ed057021": [], "test.yoda.unique_loyalty__fact_purchases_daily_snapshot_id.49d307d948": [], "test.yoda.not_null_loyalty__fact_purchases_daily_snapshot_id.95de3471a3": [], "test.yoda.unique_loyalty__fact_purchases_redemptions_daily_snapshot_id.8443c10201": [], "test.yoda.not_null_loyalty__fact_purchases_redemptions_daily_snapshot_id.a68dde1e9f": [], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_redemption_created_at.3a0df4fe84": [], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referred_redemption.a6ec485fde": [], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_is_referring_redemption.1df06c91c6": [], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_point_redemption_id.dc22cb3be8": [], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_merchant_id.35917319bf": [], "test.yoda.not_null_loyalty__fact_redemptions_with_purchases_daily_snapshot_purchase_id.410eaccfde": [], "test.yoda.unique_loyalty__fact_referral_receipts_daily_snapshot_id.a7e236019d": [], "test.yoda.not_null_loyalty__fact_referral_receipts_daily_snapshot_id.32e3efb79c": [], "test.yoda.unique_loyalty__fact_referral_shares_daily_snapshot_id.765c3266ad": [], "test.yoda.not_null_loyalty__fact_referral_shares_daily_snapshot_id.3ccd631bab": [], "test.yoda.unique_loyalty__fact_referral_snapshots_daily_snapshot_id.19cf311d69": [], "test.yoda.not_null_loyalty__fact_referral_snapshots_daily_snapshot_id.3cde9224ff": [], "test.yoda.unique_loyalty__fact_referrals_without_crawlers_daily_snapshot_id.5afe5a429c": [], "test.yoda.not_null_loyalty__fact_referrals_without_crawlers_daily_snapshot_id.188a4f7623": [], "test.yoda.unique_loyalty__fact_refund_items_daily_snapshot_id.62033e081f": [], "test.yoda.not_null_loyalty__fact_refund_items_daily_snapshot_id.ab670fba71": [], "test.yoda.unique_loyalty__fact_refunds_daily_snapshot_refund_id.d54f16a3a2": [], "test.yoda.not_null_loyalty__fact_refunds_daily_snapshot_refund_id.8b29aa083d": [], "test.yoda.unique_loyalty__fact_user_actions_daily_snapshot_id.bab085d102": [], "test.yoda.not_null_loyalty__fact_user_actions_daily_snapshot_id.45a03e2bdf": [], "test.yoda.unique_loyalty__fact_user_agents_daily_snapshot_id.4c7c23bd57": [], "test.yoda.not_null_loyalty__fact_user_agents_daily_snapshot_id.d41feb0cd1": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__merchant_point_transaction_metrics_daily_1.d76ac8b5bf": [], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__merchant_point_transaction_metrics_daily_merchant_group_id__date.20ced22582": [], "test.yoda.not_null_loyalty__opted_in_customers_customer_id.5eaf19e71e": [], "test.yoda.not_null_loyalty__opted_in_customers_app_key.c844344118": [], "test.yoda.not_null_loyalty__opted_in_customers_opted_in_at.7861355d0d": [], "test.yoda.not_null_loyalty__opted_in_customers_customer_email.ba061c0fa1": [], "test.yoda.not_null_loyalty__redeemed_purchases_app_key.43d0e57a64": [], "test.yoda.not_null_loyalty__redeemed_purchases_order_total.1afd9cd992": [], "test.yoda.not_null_loyalty__redeemed_purchases_external_order_id.acfce1b606": [], "test.yoda.not_null_loyalty__redeemed_purchases_order_date.f16d5b66b4": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__redeemed_purchases_1.bd19437612": [], "test.yoda.unique_loyalty__review_earning_rule_loyalty_id.d82f8ca7f5": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__review_earning_rule_loyalty_1.bee3f0ab25": [], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__review_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.38227a0364": [], "test.yoda.unique_loyalty__sms_earning_rule_loyalty_id.087d42e8f9": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__sms_earning_rule_loyalty_1.13bc516ed5": [], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__sms_earning_rule_loyalty_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.28b1c71f7d": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty__tier_expiring_reminder_kpi_1.2d41c2d9e8": [], "test.yoda.dbt_utils_unique_combination_of_columns_loyalty__tier_expiring_reminder_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.47422e4c3e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__campaign_activation_histories_1.da00fb269f": [], "test.yoda.dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__campaigns_1.79895b6923": [], "test.yoda.unique_loyalty_stg__customers_platform_accounts_customer_id.40a87706ce": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_updated_at.f35e0ec669": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_created_at.3f23aae44e": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_bounced.5a936b2be4": [], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_bounced__False__True__False.53b68d6d71": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_clicked.adee51924d": [], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_clicked__False__True__False.d219dd168d": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_delayed.354349f78e": [], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_delayed__False__True__False.09b50c8038": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_email_campaign_id.fafdb8a303": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_id.41eb3b382f": [], "test.yoda.unique_loyalty_stg__email_campaign_emails_id.bbc907fb95": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_marked_as_spam.5516734a3b": [], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_marked_as_spam__False__True__False.294df5cbf2": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_opened.a5f55ca146": [], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_opened__False__True__False.40621c7d0f": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_rejected.6e5ee9ade4": [], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_rejected__False__True__False.51e5ea9726": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_sent.82b5353261": [], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_sent__False__True__False.ab58b87404": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_soft_bounced.e1759cf142": [], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_soft_bounced__False__True__False.29953005b7": [], "test.yoda.not_null_loyalty_stg__email_campaign_emails_unsubscribed.cbe049b3b5": [], "test.yoda.accepted_values_loyalty_stg__email_campaign_emails_unsubscribed__False__True__False.c1accaca74": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__install_loyalty_1.b473ebd87a": [], "test.yoda.dbt_expectations_expect_table_column_count_to_be_between_loyalty_stg__known_crawlers_1.81fcd9848e": [], "test.yoda.unique_loyalty_stg__swell_vip_tiers_settings_merchant_id.211caa536c": [], "test.yoda.not_null_loyalty_stg__swell_vip_tiers_settings_merchant_id.e6804f14f2": [], "test.yoda.not_null_loyalty_stg__uninstall_loyalty_partition_date.f65c8439c9": [], "test.yoda.not_null_loyalty_stg__uninstall_loyalty_merchant_id.01515316c9": [], "test.yoda.unique_loyalty_stg__enriched_customers_customer_id.321a122973": [], "test.yoda.not_null_loyalty_stg__enriched_customers_customer_id.632a3d255f": [], "test.yoda.not_null_loyalty_stg__enriched_customers_merchant_id.fb9c39e016": [], "test.yoda.not_null_loyalty_stg__enriched_customers_updated_at.4cff0bd8dd": [], "test.yoda.not_null_loyalty_stg__enriched_customers_is_member.97b742e2eb": [], "test.yoda.accepted_values_loyalty_stg__enriched_customers_is_member__False__True__False.a33b7531e0": [], "test.yoda.unique_loyalty_stg__point_transaction_transaction_id.1c44f00d74": [], "test.yoda.not_null_loyalty_stg__point_transaction_transaction_id.762f30efd1": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_loyalty_stg__point_transaction_1.388cc831c9": [], "test.yoda.not_null_platform__integrations_adoption_store_id.5b1b7c55d0": [], "test.yoda.not_null_platform__integrations_adoption_application_id.d50d3f5e03": [], "test.yoda.not_null_platform__integrations_adoption_application_name.9386d798e4": [], "test.yoda.not_null_platform__integrations_adoption_created_at.37b0d90b09": [], "test.yoda.not_null_platform__integrations_adoption_snapshot_date.ccc0700817": [], "test.yoda.not_null_platform__integrations_adoption_per_application_application_id.161ec59cae": [], "test.yoda.not_null_platform__integrations_adoption_per_application_application_name.40f82b15e1": [], "test.yoda.not_null_platform__integrations_adoption_per_store_store_id.594717070b": [], "test.yoda.not_null_platform__retention_metrics_customer_segment_ratio_app_key.08f694e03e": [], "test.yoda.accepted_values_platform__retention_metrics_customer_segment_ratio_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.7c99cc067e": [], "test.yoda.unique_platform__retention_metrics_returning_customers_app_key.03eca0d9cd": [], "test.yoda.not_null_platform__retention_metrics_returning_customers_app_key.a5654fb46d": [], "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days.f818fbb53d": [], "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_7_days__100___100.661859c0d8": [], "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days.757eba9f4d": [], "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_30_days__100___100.538bc912e0": [], "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days.c02255bdfa": [], "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_90_days__100___100.18abaa0517": [], "test.yoda.not_null_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days.beaf53283a": [], "test.yoda.dbt_utils_accepted_range_platform__retention_metrics_returning_customers_returning_customers_value_last_365_days__100___100.110e77d070": [], "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_app_key.138987bbfa": [], "test.yoda.accepted_values_platform__retention_metrics_total_revenue_trends_by_segments_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.d537ec1279": [], "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_engaged.c7b89ae0f7": [], "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_returning.b9186412bd": [], "test.yoda.not_null_platform__retention_metrics_total_revenue_trends_by_segments_total_revenue_new.08adaeb3b7": [], "test.yoda.accepted_values_platform__retention_metrics_trends_average_order_value_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.0228a17bf2": [], "test.yoda.accepted_values_platform__retention_metrics_trends_average_sales_per_customer_trend__Last_7_days__Last_30_days__Last_90_days__Last_365_days__Previous_7_days__Previous_30_days__Previous_90_days__Previous_365_days.c2853eef65": [], "test.yoda.not_null_platform__synergies_kpi_id.63385699ca": [], "test.yoda.not_null_platform__synergies_kpi_synergy_id.c084deb6ce": [], "test.yoda.not_null_platform__synergies_kpi_app_key.18962ec868": [], "test.yoda.not_null_platform__synergies_kpi_source_type.9b5bc448b1": [], "test.yoda.not_null_platform__synergies_kpi_source_id.76aef20d60": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform__synergies_kpi_1.778a1da858": [], "test.yoda.dbt_utils_unique_combination_of_columns_platform__synergies_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__order_id.f6c94956eb": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_created_1.36e5090435": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__account_platforms_1.24a52ed0f0": [], "test.yoda.unique_platform_stg__accounts_id.fe64c3f0a5": [], "test.yoda.not_null_platform_stg__accounts_id.108c0bdbbf": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__activation_step_1.93c0f37cd3": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_install_completed_1.5d1a24ef06": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__app_uninstalled_1.8d782dd9e0": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__b2b_1.e1a5239104": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__currency_rates_1.68f3e1bb6c": [], "test.yoda.unique_platform_stg__fulfillments_id.bb76db0a7f": [], "test.yoda.not_null_platform_stg__fulfillments_id.5cdd9a9673": [], "test.yoda.unique_platform_stg__limit_reached_message_id.c3b289bfa1": [], "test.yoda.not_null_platform_stg__limit_reached_message_id.33f98204c4": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__limit_reached_1.404afcaf21": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onboarding_1.a724bde051": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v2_1.7bed67921a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__onsite_v3_1.c3022b0a33": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__order_lines_1.ce3b7be8f2": [], "test.yoda.not_null_platform_stg__orders_app_key.94d6cc8864": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__orders_1.39cf73c1b2": [], "test.yoda.unique_platform_stg__organizations_id.043a3c4fa9": [], "test.yoda.not_null_platform_stg__organizations_id.17f56f00ec": [], "test.yoda.unique_platform_stg__packages_id.b938e21c3c": [], "test.yoda.not_null_platform_stg__packages_id.5b80680c17": [], "test.yoda.unique_platform_stg__platform_types_id.e61a91f579": [], "test.yoda.not_null_platform_stg__platform_types_id.9199155447": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__popup_displayed_1.7167e005f6": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__product_enabled_1.e4eb4c574d": [], "test.yoda.unique_platform_stg__store_platforms_id.86a9ff434c": [], "test.yoda.not_null_platform_stg__store_platforms_id.d38ec1c91c": [], "test.yoda.unique_platform_stg__stores_store_id.245bf7c8f4": [], "test.yoda.not_null_platform_stg__stores_store_id.eec556c579": [], "test.yoda.unique_platform_stg__stores_app_key.b7ccbfec8b": [], "test.yoda.not_null_platform_stg__stores_app_key.df3929b531": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__timezone_country_mapping_1.71a0cfb06f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__uninstalled_yotpo_1.b2d53f31db": [], "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_customer_id.0500ea4ddb": [], "test.yoda.unique_platform_stg__customer_dimensions_brand_affection_customer_id.d2bc5d9b6f": [], "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_brand_affection.294dc11b1c": [], "test.yoda.accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection__Advocate__Likes__Disappointed__Hater__N_A.6de3a1c638": [], "test.yoda.not_null_platform_stg__customer_dimensions_brand_affection_brand_affection_rank.a8fff1d958": [], "test.yoda.accepted_values_platform_stg__customer_dimensions_brand_affection_brand_affection_rank__0__1__2__3__4.520afa83f7": [], "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_customer_id.5ee49bfb4a": [], "test.yoda.unique_platform_stg__customer_dimensions_engagement_marketing_material_customer_id.d9f15debd3": [], "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material.b8949619fc": [], "test.yoda.accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material__Not_an_SMS_User__Unsubscribed__Ignores__Newcomer__Engaging__Highly_Engaged.b5b7c56881": [], "test.yoda.not_null_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank.0236e69b6e": [], "test.yoda.accepted_values_platform_stg__customer_dimensions_engagement_marketing_material_engagement_with_marketing_material_rank__0__1__2__3__4__5.411d931f2d": [], "test.yoda.not_null_platform_stg__customer_dimensions_loyalty_program_customer_id.9a4c56f4fd": [], "test.yoda.unique_platform_stg__customer_dimensions_loyalty_program_customer_id.d5724ded6a": [], "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_customer_id.c8bbbe4528": [], "test.yoda.unique_platform_stg__customer_dimensions_returning_buyers_customer_id.8e16ea8dcd": [], "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers.88abcb6a5a": [], "test.yoda.accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers__Prospects__Single_Purchase__Repeat_Purchase__Frequent_Shopper.43cf54a015": [], "test.yoda.not_null_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank.736fcf711c": [], "test.yoda.accepted_values_platform_stg__customer_dimensions_returning_buyers_returning_buyers_rank__0__1__2__3.494420f036": [], "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_engaged_customer.4817581c98": [], "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_returning_customer.e644585ce1": [], "test.yoda.not_null_platform_stg__retention_metrics_current_segment_for_trend_average_sales_per_customer_avg_per_new_customer.4a8fee0d84": [], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_engaged_customers.c606e37c8a": [], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_returning_customers.cd98bc4e12": [], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_average_order_value_aov_for_new_customers.fb8eb7382a": [], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_engaged_customer.dfe71027cd": [], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_returning_customer.361c352a44": [], "test.yoda.not_null_platform_stg__retention_metrics_previous_segment_for_trend_trend_average_sales_per_customer_avg_per_new_customer.af4e49837b": [], "test.yoda.not_null_platform_stg__retention_metrics_segmented_customers_app_key.a4a568f4a4": [], "test.yoda.not_null_platform_stg__retention_metrics_segmented_customers_external_customer_id.28244c2486": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_platform_stg__retention_metrics_segmented_customers_1.a572a0f956": [], "test.yoda.dbt_utils_unique_combination_of_columns_platform_stg__retention_metrics_segmented_customers_external_customer_id__app_key.5c0c405e9f": [], "test.yoda.not_null_platform_stg__synergy_product_mapping_synergy_id.3b7caadd31": [], "test.yoda.accepted_values_platform_stg__synergy_product_mapping_product_name__reviews__loyalty__sms__email__subscriptions.97c67a96be": [], "test.yoda.dbt_utils_unique_combination_of_columns_platform_stg__synergy_product_mapping_synergy_id__product_name.c1289ab79c": [], "test.yoda.unique_platform_stg__synergy_start_date_mapping_synergy_id.c18d65c2a6": [], "test.yoda.not_null_platform_stg__synergy_start_date_mapping_synergy_id.5212293e31": [], "test.yoda.not_null_sms__api_calls_with_customer_user_id.f8e8b23d65": [], "test.yoda.not_null_sms__flows_links_clicks_sms_id.47edf277e7": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_id.876a000616": [], "test.yoda.unique_sms__loyalty_sms_campaigns_email_kpi_id.b6adae0854": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_synergy_id.c8ac09f1a3": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_source_type.d7634be10e": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_source_id.5c4747d9c5": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_order_id.7a9802c74e": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_type.fcd941d58b": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_id.624ec53ba1": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_type.d4340dd655": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_action_attribute_value.508891a2d5": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_app_key.a732afb837": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_customer_external_id.a17da066ab": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_kpi_dwh_updated_at.5834ffd156": [], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.b6016711ef": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.8fcc0c462e": [], "test.yoda.unique_sms__loyalty_sms_campaigns_email_reward_program_kpi_id.4692fd125d": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id.7792d2184d": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_type.f068a64fc3": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_source_id.8a8140253f": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_action_type.168d81f897": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_app_key.a6956fba6e": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_email.ab214f3db2": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_customer_external_id.8976e49a9b": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_email_reward_program_kpi_dwh_updated_at.f8e7467368": [], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_email_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.1dcf47bfa1": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_id.1d52c5a45a": [], "test.yoda.unique_sms__loyalty_sms_campaigns_sms_kpi_id.2ea7e0c8d9": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_synergy_id.29588cfb6d": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_source_type.82066434ea": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_source_id.3080489abe": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_order_id.1476d35105": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_type.aa91be5ee0": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_id.624ebb2739": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_type.56ebc598e7": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_action_attribute_value.f689171e11": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_app_key.75f77ce3d9": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_customer_external_id.d15d22c39c": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_kpi_dwh_updated_at.6b390e3d5f": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_kpi_1.3487732497": [], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.9f08c066bc": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.3396dbb221": [], "test.yoda.unique_sms__loyalty_sms_campaigns_sms_reward_program_kpi_id.84772316a7": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id.80690303ed": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_type.1b19985470": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_source_id.10736984ea": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_action_type.000ee33b9c": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_app_key.0265c2319c": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_customer_external_id.f41a283a9d": [], "test.yoda.not_null_sms__loyalty_sms_campaigns_sms_reward_program_kpi_dwh_updated_at.d964462cac": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_campaigns_sms_reward_program_kpi_1.bf4c051deb": [], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_campaigns_sms_reward_program_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e23653fee8": [], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_id.0622858aaf": [], "test.yoda.unique_sms__loyalty_sms_flows_email_kpi_id.832af8e4ba": [], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_synergy_id.7e8701e3dc": [], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_source_type.66e1f4a84e": [], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_source_id.5a26a49665": [], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_order_id.b200957d13": [], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_app_key.7cb2925f0f": [], "test.yoda.not_null_sms__loyalty_sms_flows_email_kpi_dwh_updated_at.a3d152550a": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_email_kpi_1.a1ea11e7f3": [], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.69b3540440": [], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_id.a8f20edfd9": [], "test.yoda.unique_sms__loyalty_sms_flows_sms_kpi_id.bb7a28542f": [], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_synergy_id.1ff32cef3e": [], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_source_type.d4341cb5c4": [], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_source_id.ee0653470d": [], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_order_id.65559dfaa9": [], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_app_key.282167a551": [], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_customer_external_id.8288595aa4": [], "test.yoda.not_null_sms__loyalty_sms_flows_sms_kpi_dwh_updated_at.b3d1874250": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__loyalty_sms_flows_sms_kpi_1.90319ceb4d": [], "test.yoda.dbt_utils_unique_combination_of_columns_sms__loyalty_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.7dd8e8f9ef": [], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_id.1acc53b67c": [], "test.yoda.unique_sms__reviews_sms_flows_email_kpi_id.9f4bc62f01": [], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_synergy_id.1110a49fbb": [], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_source_type.fc04a7df20": [], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_source_id.56938ccd82": [], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_type.92b7a71dd1": [], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_id.f2f03eef4f": [], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_attribute_type.f84d25c934": [], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_action_attribute_value.eae3c36486": [], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_app_key.d087df8817": [], "test.yoda.not_null_sms__reviews_sms_flows_email_kpi_dwh_updated_at.46a25c2e8a": [], "test.yoda.dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.5a0798e63b": [], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_id.88af3e38a5": [], "test.yoda.unique_sms__reviews_sms_flows_sms_kpi_id.b5d1077c08": [], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_synergy_id.5d48cbbab2": [], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_source_type.6f8ec42a8d": [], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_source_id.3bc4067038": [], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_type.1b8d07e3e7": [], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_id.4e86e8a455": [], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_type.ea5c4b7e67": [], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_action_attribute_value.28ac84c4d0": [], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_app_key.b9848e0e21": [], "test.yoda.not_null_sms__reviews_sms_flows_sms_kpi_dwh_updated_at.a406efbd69": [], "test.yoda.dbt_utils_unique_combination_of_columns_sms__reviews_sms_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.4fc8c0491a": [], "test.yoda.dbt_utils_unique_combination_of_columns_sms__sms_double_points_campaign_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e4e92d81b4": [], "test.yoda.not_null_sms__social_proof_flows_email_kpi_id.d57c5637e3": [], "test.yoda.unique_sms__social_proof_flows_email_kpi_id.c8c30d52ca": [], "test.yoda.not_null_sms__social_proof_flows_email_kpi_synergy_id.67177f1079": [], "test.yoda.not_null_sms__social_proof_flows_email_kpi_source_type.7b8e28dc19": [], "test.yoda.not_null_sms__social_proof_flows_email_kpi_source_id.4ca7bcd4d6": [], "test.yoda.unique_sms__social_proof_flows_email_kpi_source_id.3db7a2ca48": [], "test.yoda.not_null_sms__social_proof_flows_email_kpi_app_key.c84b86f064": [], "test.yoda.not_null_sms__social_proof_flows_email_kpi_customer_external_id.796d587844": [], "test.yoda.not_null_sms__social_proof_flows_email_kpi_dwh_updated_at.1b00bf3c9d": [], "test.yoda.dbt_utils_unique_combination_of_columns_sms__social_proof_flows_email_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.6203320c8f": [], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_id.cf034d9c8c": [], "test.yoda.unique_sms__social_proof_flows_sms_kpi_id.c797b4e309": [], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_synergy_id.7234432245": [], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_source_type.44cbe3410e": [], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_source_id.e249f9eb2a": [], "test.yoda.unique_sms__social_proof_flows_sms_kpi_source_id.49cffddbe2": [], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_app_key.5176bbd10d": [], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_customer_external_id.e46837cb39": [], "test.yoda.not_null_sms__social_proof_flows_sms_kpi_dwh_updated_at.42d9dbd28e": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms__social_proof_flows_sms_kpi_1.19240c79c4": [], "test.yoda.dbt_utils_unique_combination_of_columns_sms__social_proof_flows_sms_kpi_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.ecabcafbac": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__free_credits_logs_1.1cf00e33bb": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__packages_1.a3e59e8764": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_sms_stg__users_events_log_1.a84bfcbfd1": [], "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_customer_id.372860f3c6": [], "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_store_id.200b540f58": [], "test.yoda.not_null_sms_stg__one_click_campaigns_subscriptions_sms_id.5938202b8f": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_user_id.c578348f55": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_store_id.7e676990e4": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_campaign_id.11fe14e496": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_synergy_id.0e972bea98": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_synergy_id.346c782e61": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_campaign_id.87c25f580a": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_order_id.f993119d04": [], "test.yoda.unique_sms_stg__sms_loyalty_campaigns_kpi_order_id.dc6d45cf40": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_channel.39b287a4ad": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_user_id.5572a3141f": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_type.7014c4b910": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_id.6159229595": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_type.e917b8a2e4": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_action_attribute_value.28bf6e0da5": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_app_key.8613cbcfe7": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_customer_email.664fc8caa0": [], "test.yoda.not_null_sms_stg__sms_loyalty_campaigns_kpi_external_customer_id.5fc501ffcc": [], "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_campaign_id.51faa33045": [], "test.yoda.unique_sms_stg__sms_loyalty_custom_campaigns_campaign_id.5d5bbdcc49": [], "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_user_id.f5bc9de2d1": [], "test.yoda.not_null_sms_stg__sms_loyalty_custom_campaigns_synergy_id.21a61ab99e": [], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_order_created.94295e0b38": [], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_flow_id.d03c6f1299": [], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_user_id.84f00df3d4": [], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_synergy_id.e4d948c601": [], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_order_id.9ac4dff31a": [], "test.yoda.unique_sms_stg__sms_loyalty_flows_kpi_order_id.1cc255b787": [], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_app_key.00e7633287": [], "test.yoda.not_null_sms_stg__sms_loyalty_flows_kpi_customer_external_id.663bb6641c": [], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_synergy_id.ed2f5118d2": [], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_type.265a0d9485": [], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_id.bbd1debb93": [], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_type.53a6bf6014": [], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_action_attribute_value.a53aaa039b": [], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_app_key.25ddfd9d45": [], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_flow_id.5ca1d76709": [], "test.yoda.not_null_sms_stg__sms_reviews_flows_kpi_user_id.8b7af4db58": [], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_store_id.9a58077931": [], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_user_id.616df356af": [], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_flow_id.0d3291518e": [], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_customer_external_id.94003d5050": [], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_order_created.e48858883a": [], "test.yoda.not_null_sms_stg__social_proof_flows_kpi_synergy_id.76fed0e870": [], "test.yoda.unique_subscriptions__recurrent_event_rule_id.d124611023": [], "test.yoda.not_null_subscriptions__recurrent_event_rule_id.3e6e1ca38f": [], "test.yoda.not_null_subscriptions__recurrent_event_rule_created_at.81c34b3f79": [], "test.yoda.not_null_subscriptions__recurrent_event_rule_updated_at.fc466f17cb": [], "test.yoda.not_null_subscriptions__recurrent_event_rule_obj_id.304c69bd4b": [], "test.yoda.not_null_subscriptions__recurrent_event_rule_obj_type.5400d9a9b1": [], "test.yoda.not_null_subscriptions__recurrent_event_rule_plan_interval.6ed726d355": [], "test.yoda.not_null_subscriptions__recurrent_event_rule_interval_count.00655cb6ff": [], "test.yoda.not_null_subscriptions__recurrent_event_rule_is_canceled.324f4c15ee": [], "test.yoda.unique_subscriptions__status_id.f32aced663": [], "test.yoda.not_null_subscriptions__status_id.0e1836e3d1": [], "test.yoda.unique_subscriptions__status_num.c4479387d7": [], "test.yoda.not_null_subscriptions__status_num.6bcb27440e": [], "test.yoda.unique_subscriptions__status_text.5ea3decb93": [], "test.yoda.not_null_subscriptions__status_text.7918b594f4": [], "test.yoda.unique_subscriptions__subscription_accounts_app_key.865b094650": [], "test.yoda.not_null_subscriptions__subscription_accounts_app_key.bc18436501": [], "test.yoda.not_null_subscriptions__subscription_accounts_is_test.f9e6d2f52c": [], "test.yoda.unique_subscriptions__subscription_contract_id.ba23444208": [], "test.yoda.not_null_subscriptions__subscription_contract_id.f85b412524": [], "test.yoda.not_null_subscriptions__subscription_contract_store_id.eda0b915fc": [], "test.yoda.not_null_subscriptions__subscription_contract_external_id.d03059b309": [], "test.yoda.not_null_subscriptions__subscription_contract_status.2e53e022b3": [], "test.yoda.not_null_subscriptions__subscription_contract_delivery_policy_interval.a86bca1149": [], "test.yoda.not_null_subscriptions__subscription_contract_delivery_policy_interval_count.4dfa830ddd": [], "test.yoda.not_null_subscriptions__subscription_contract_billing_policy_interval.ef3085ca3c": [], "test.yoda.not_null_subscriptions__subscription_contract_billing_policy_interval_count.19bd743b78": [], "test.yoda.not_null_subscriptions__subscription_contract_external_customer_id.39cc52db95": [], "test.yoda.not_null_subscriptions__subscription_contract_created_at.12896bd08f": [], "test.yoda.not_null_subscriptions__subscription_contract_updated_at.d55f6eac47": [], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_subscription_contract_id.31bfd15557": [], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_subscription_contract_external_id.c9469e7b6c": [], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_product_external_id.893a27b15a": [], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_product_title.ba64e462f8": [], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval.4581d78f9f": [], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_delivery_policy_interval_count.eeab6707a5": [], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_store_id.3856262e90": [], "test.yoda.not_null_subscriptions__subscription_contract_line_policy_variant_external_id.21ca2c3c1d": [], "test.yoda.unique_subscriptions__subscription_contract_order_id.b60c074d05": [], "test.yoda.not_null_subscriptions__subscription_contract_order_id.5e48bf7918": [], "test.yoda.not_null_subscriptions__subscription_contract_order_store_id.7f45cb2d26": [], "test.yoda.not_null_subscriptions__subscription_contract_order_external_subscription_contract_id.9a19225b7d": [], "test.yoda.not_null_subscriptions__subscription_contract_order_external_order_id.a4354e8ec7": [], "test.yoda.not_null_subscriptions__subscription_contract_order_created_at.4f7cc5441a": [], "test.yoda.not_null_subscriptions__subscription_contract_order_updated_at.623041284e": [], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_external_order_id.0e27a8bc29": [], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_external_subscription_contract_id.ed8270a222": [], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_product_external_id.fd0ed26ff0": [], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_variant_external_id.6ec01adf5c": [], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_store_id.f83074f863": [], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_order_line_total.4af6feff8e": [], "test.yoda.not_null_subscriptions__subscription_contract_order_lines_order_date.ca8512e5b7": [], "test.yoda.not_null_subscriptions__subscription_merchant_migration_date_store_id.f16505d236": [], "test.yoda.not_null_subscriptions__subscription_merchant_migration_date_migration_date.4336341af9": [], "test.yoda.not_null_subscriptions__subscription_total_orders_external_order_id.c114ec599a": [], "test.yoda.not_null_subscriptions__subscription_total_orders_order_date.3912faf5d4": [], "test.yoda.not_null_subscriptions__subscription_total_orders_app_key.6e31807f76": [], "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_external_order_id.e716efbda5": [], "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_external_customer_id.91ef01bf80": [], "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_order_date.56befe7696": [], "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_order_total.f2f64e969d": [], "test.yoda.not_null_subscriptions__subscriptions_attributed_orders_app_key.73ce2fbed4": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__subscriptions_attributed_orders_1.696d32fa42": [], "test.yoda.unique_subscriptions__synergy_kpi_one_click_campaign_id.bed8484992": [], "test.yoda.not_null_subscriptions__synergy_kpi_one_click_campaign_id.6da03f0dd5": [], "test.yoda.not_null_subscriptions__synergy_kpi_one_click_campaign_source_id.f418f95b53": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_one_click_campaign_1.37cf6f3498": [], "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_one_click_campaign_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.9f3c68965a": [], "test.yoda.unique_subscriptions__synergy_kpi_redeemed_points_id.00b5bae0fc": [], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_id.583334bd1d": [], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_synergy_id.53cef945f0": [], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_source_id.f91b17a9b6": [], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_order_id.98d3a29306": [], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_type.2e487c08f7": [], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_id.4383f3c6df": [], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_type.6f89b29fcd": [], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_action_attribute_value.819ea5c046": [], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_app_key.0c83180733": [], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_customer_external_id.78f16c14d6": [], "test.yoda.not_null_subscriptions__synergy_kpi_redeemed_points_dwh_updated_at.74f206dbdd": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_redeemed_points_1.0e031d228d": [], "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_redeemed_points_synergy_id__app_key__order_id__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id__action_attribute_value.b831857ebb": [], "test.yoda.unique_subscriptions__synergy_kpi_sms_payment_failure_id.f00540d302": [], "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_id.d7d8bd0db1": [], "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_source_id.004bae07b6": [], "test.yoda.not_null_subscriptions__synergy_kpi_sms_payment_failure_order_id.6ddd173b10": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_payment_failure_1.1afa2799e9": [], "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_payment_failure_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.3e4ce633de": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_subscriptions__synergy_kpi_sms_upsell_1.b7262d32d5": [], "test.yoda.dbt_utils_unique_combination_of_columns_subscriptions__synergy_kpi_sms_upsell_synergy_id__app_key__customer_email__customer_phone_number__customer_external_id__source_type__source_id__action_type__action_id.e72a32d5e0": [], "test.yoda.unique_subscriptions_stg__customer_journey_event_id.f4133674ad": [], "test.yoda.not_null_subscriptions_stg__customer_journey_event_id.bec0d4731a": [], "test.yoda.not_null_subscriptions_stg__customer_journey_event_store_id.f9cab24c0f": [], "test.yoda.not_null_subscriptions_stg__customer_journey_event_customer_id.e2b55b8d59": [], "test.yoda.not_null_subscriptions_stg__customer_journey_event_source_domain.8bdffa28cf": [], "test.yoda.not_null_subscriptions_stg__customer_journey_event_source_id.027faf7ba9": [], "test.yoda.not_null_subscriptions_stg__customer_journey_event_created_at.a32d0c43fc": [], "test.yoda.not_null_subscriptions_stg__customer_journey_event_updated_at.61004cb8b5": [], "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_type.a26bc346aa": [], "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_origin.e87e6d0502": [], "test.yoda.not_null_subscriptions_stg__customer_journey_event_event_time.ca372e17ea": [], "test.yoda.unique_subscriptions_stg__recurrent_event_rule_id.ab51575389": [], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_id.27079aee4c": [], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_created_at.32a32c4032": [], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_updated_at.fdfbcba8a2": [], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_obj_id.d716d0142f": [], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_obj_type.577d0a5dec": [], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_next_due_date.2aec71eaf0": [], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_plan_interval.bfbb8f7a79": [], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_interval_count.c0e601b31d": [], "test.yoda.not_null_subscriptions_stg__recurrent_event_rule_is_canceled.080fc39b12": [], "test.yoda.unique_subscriptions_stg__status_id.03bc739540": [], "test.yoda.not_null_subscriptions_stg__status_id.8ffe282590": [], "test.yoda.unique_subscriptions_stg__status_num.67fc6cf8f7": [], "test.yoda.not_null_subscriptions_stg__status_num.95235b8006": [], "test.yoda.unique_subscriptions_stg__status_text.6a5eb937eb": [], "test.yoda.not_null_subscriptions_stg__status_text.0bbdba506f": [], "test.yoda.unique_subscriptions_stg__subscription_contract_id.41f442c867": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_id.858c7729db": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_store_id.4aa7e8dc1f": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_external_id.84ab33c6b0": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_delivery_policy_interval.b4e2f92799": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_delivery_policy_interval_count.f3950c52af": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_billing_policy_interval.c9bde22f45": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_billing_policy_interval_count.cd94089a3a": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_external_customer_id.796215cb6f": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_created_at.abcdb1a87d": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_updated_at.a01bf82f91": [], "test.yoda.unique_subscriptions_stg__subscription_contract_line_id.a404ce51e5": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_id.59b71253af": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_created_at.3788d0b43d": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_updated_at.7b7870ed57": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_subscription_contract_id.1e9e63855c": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_product_external_id.54272ca55f": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_variant_external_id.1cb6445974": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_line_quantity.b5141eefc6": [], "test.yoda.unique_subscriptions_stg__subscription_contract_order_id.6e2ffae470": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_id.ab84ffc005": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_store_id.ea32213fae": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_external_subscription_contract_id.0b2e8cd5f6": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_external_order_id.3be5a3bc9e": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_created_at.51958f6ced": [], "test.yoda.not_null_subscriptions_stg__subscription_contract_order_updated_at.e9265941b3": [], "test.yoda.unique_subscriptions_stg__subscription_line_action_id.8bf84a0019": [], "test.yoda.not_null_subscriptions_stg__subscription_line_action_id.36f709ac2f": [], "test.yoda.not_null_subscriptions_stg__subscription_line_action_store_id.8a1fcd46b3": [], "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_subscription_contract_id.46a57f4159": [], "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_line_id.76369fc8e4": [], "test.yoda.not_null_subscriptions_stg__subscription_line_action_external_variant_id.3aa5d75d64": [], "test.yoda.not_null_subscriptions_stg__subscription_line_action_action_type.fdd8968d86": [], "test.yoda.not_null_subscriptions_stg__subscription_line_action_action_status.46b55635d6": [], "test.yoda.not_null_subscriptions_stg__subscription_line_action_quantity.13af32fe78": [], "test.yoda.not_null_subscriptions_stg__subscription_line_action_created_at.acb57fb287": [], "test.yoda.not_null_subscriptions_stg__subscription_line_action_updated_at.cd68e46ce5": [], "test.yoda.unique_subscriptions_stg__synergy_sms_payment_failure_sms_id.d0cbebe707": [], "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_sms_id.cf24e4eac3": [], "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_number.4876169148": [], "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_app_key.64d75a0a7b": [], "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_customer_id.11dd893009": [], "test.yoda.not_null_subscriptions_stg__synergy_sms_payment_failure_contract_id.ab96c98b93": [], "test.yoda.not_null_subscriptions_stg__synergy_subs_payment_failure_order_id.3f406c467c": [], "test.yoda.dbt_expectations_expect_table_row_count_to_be_between_ugc_stg__review_order_line_1.aef73dd478": [], "test.yoda.source_not_null_loyalty__default_swell_vip_tiers_settings_merchant_id.c901db4741": [], "test.yoda.source_unique_loyalty__default_swell_vip_tiers_settings_merchant_id.5f44e0ed3b": [], "test.yoda.source_not_null_platform__yotpoapiprod_accounts_id.53e221b49f": [], "test.yoda.source_unique_platform__yotpoapiprod_accounts_id.1717951440": [], "test.yoda.source_not_null_platform__yotpoapiprod_accounts_app_key.82f42cf573": [], "test.yoda.source_unique_platform__yotpoapiprod_accounts_app_key.8c15d446df": [], "test.yoda.source_not_null_platform__yotpoapiprod_platform_types_id.2364631aa4": [], "test.yoda.source_unique_platform__yotpoapiprod_platform_types_id.e3c5d219fe": [], "test.yoda.source_not_null_platform__yotpoapiprod_account_platforms_id.665cd6e626": [], "test.yoda.source_unique_platform__yotpoapiprod_account_platforms_id.f7c871edac": [], "source.yoda.analytics__billing.shopify_billing_events": ["model.yoda.analytics___finance_stg__shopify_billing_events"], "source.yoda.analytics__zuora.subscription": ["model.yoda.analytics___finance_stg__subscription"], "source.yoda.analytics__zuora.account": ["model.yoda.analytics___finance_stg__account"], "source.yoda.analytics__zuora.rateplan": ["model.yoda.analytics___finance_stg__rateplan"], "source.yoda.analytics__zuora.order": ["model.yoda.analytics___finance_stg__order"], "source.yoda.analytics__zuora.invoice": ["model.yoda.analytics___finance_stg__invoice"], "source.yoda.analytics__zuora.orderaction": ["model.yoda.analytics___finance_stg__orderaction"], "source.yoda.analytics__zuora.ordermrr": ["model.yoda.analytics___finance_stg__ordermrr"], "source.yoda.analytics__zuora.product": ["model.yoda.analytics___finance_stg__product"], "source.yoda.analytics__zuora.productrateplan": ["model.yoda.analytics___finance_stg__productrateplan"], "source.yoda.analytics__zuora.rateplancharge": ["model.yoda.analytics___finance_stg__rateplancharge"], "source.yoda.analytics__zuora.rateplanchargetier": ["model.yoda.analytics___finance_stg__rateplanchargetier"], "source.yoda.analytics__zuora.productrateplancharge": ["model.yoda.analytics___finance_stg__productrateplancharge"], "source.yoda.analytics__zuora.invoiceitem": ["model.yoda.analytics___finance_stg__invoiceitem"], "source.yoda.analytics__zuora.contact": ["model.yoda.analytics___finance_stg__contact"], "source.yoda.analytics__bi_rivery.stg_nerd_acv_goals": ["model.yoda.analytics___gtm_stg__stg_nerd_acv_goals"], "source.yoda.analytics__bi_rivery.stg_nerd_sal_goals": ["model.yoda.analytics___gtm_stg__stg_nerd_sal_goals"], "source.yoda.analytics__static.calendar_with_closing_day": ["model.yoda.analytics___gtm__acv_goal_daily", "model.yoda.analytics___gtm__sal_goal_daily"], "source.yoda.analytics__bi_rivery.partner_manager_goals": ["model.yoda.analytics___partners_stg__partner_manager_goals"], "source.yoda.analytics__static.saas_organization_daily_history": ["model.yoda.analytics___platform_stg__saas_organization_daily_history"], "source.yoda.analytics__static.product_plan_name_rank": ["model.yoda.analytics___platform_stg__product_plan_name_rank"], "source.yoda.analytics__static.shopify_billing_charge_plan_mapping": ["model.yoda.analytics___platform_stg__shopify_billing_charge_plan_mapping"], "source.yoda.analytics__static.chargify_organization_product_usage_revanue_daily": ["model.yoda.analytics___platform_stg__chargify_organization_product_usage_revanue_daily"], "source.yoda.analytics__static.organization_onboarding_call_pre_2023_08_27": ["model.yoda.analytics___platform_stg__organization_onboarding_call_pre_2023_08_27"], "source.yoda.analytics__salesforce.deal_summary_new__c_full": [], "source.yoda.analytics__salesforce.account_full": ["model.yoda.analytics___salesforce_stg__account_full"], "source.yoda.analytics__salesforce.opportunitylineitem_full": ["model.yoda.analytics___salesforce_stg__opportunitylineitem_full"], "source.yoda.analytics__salesforce.livechattranscript_full": ["model.yoda.analytics___salesforce_stg__livechattranscript_full"], "source.yoda.analytics__salesforce.opportunity_prediction__c_full": ["model.yoda.analytics___salesforce_stg__opportunity_prediction_c_full"], "source.yoda.analytics__salesforce.lead": ["model.yoda.analytics___salesforce_stg__lead"], "source.yoda.analytics__salesforce.campaign": ["model.yoda.analytics___salesforce_stg__campaign"], "source.yoda.analytics__salesforce.contact": ["model.yoda.analytics___salesforce_stg__contact"], "source.yoda.analytics__salesforce.partner_referral__c_full": ["model.yoda.analytics___salesforce_stg__partner_referral_c_full"], "source.yoda.analytics__salesforce.task": ["model.yoda.analytics___salesforce_stg__task"], "source.yoda.analytics__salesforce.datedconversionrate": ["model.yoda.analytics___salesforce_stg__datedconversionrate"], "source.yoda.analytics__salesforce.case_full": ["model.yoda.analytics___salesforce_stg__case_full"], "source.yoda.analytics__salesforce.account_product__c_full": ["model.yoda.analytics___salesforce_stg__account_product_c_full"], "source.yoda.analytics__salesforce.onboarding_project__c_full": ["model.yoda.analytics___salesforce_stg__onboarding_project_c_full"], "source.yoda.analytics__salesforce.custom_field_history_tracking__c": ["model.yoda.analytics___salesforce_stg__custom_field_history_tracking_c"], "source.yoda.analytics__salesforce.opportunityfieldhistory": ["model.yoda.analytics___salesforce_stg__opportunityfieldhistory"], "source.yoda.analytics__default.dim_sf_campaign_member_mapping": ["model.yoda.analytics___salesforce_stg__dim_sf_campaign_member_mapping"], "source.yoda.analytics__default.dim_sf_users_scd": ["model.yoda.analytics___salesforce_stg__dim_sf_users_scd"], "source.yoda.analytics__static.salesforce_object_prefix_id": ["model.yoda.analytics___salesforce__task"], "source.yoda.analytics__static.fact_account_profile_daily": ["model.yoda.analytics___salesforce_stg__fact_account_profile_daily"], "source.yoda.analytics__static.campaign_member_history_creation_records": ["model.yoda.analytics___salesforce__campaign_member_field_history"], "source.yoda.analytics__salesforce_rivery.event": ["model.yoda.analytics___salesforce_stg__event"], "source.yoda.analytics__salesforce_rivery.mql__c": ["model.yoda.analytics___salesforce_stg__mql_c"], "source.yoda.analytics__salesforce_rivery.mql__c_full": ["model.yoda.analytics___salesforce_stg__mql_c_full"], "source.yoda.analytics__salesforce_rivery.opportunity_full": ["model.yoda.analytics___salesforce_stg__opportunity_full"], "source.yoda.analytics__salesforce_rivery.opportunity": ["model.yoda.analytics___salesforce_stg__opportunity"], "source.yoda.analytics__salesforce_rivery.user": ["model.yoda.analytics___salesforce_stg__user"], "source.yoda.analytics__salesforce_rivery.user_full": ["model.yoda.analytics___salesforce_stg__user_full"], "source.yoda.analytics__salesforce_rivery.deal_summary_new__c_full": ["model.yoda.analytics___salesforce_stg__deal_summary_new_c_full"], "source.yoda.analytics__salesforce_rivery.deal_summary_new__c": ["model.yoda.analytics___salesforce_stg__deal_summary_new_c"], "source.yoda.analytics__salesforce_rivery.cs_lead__c": ["model.yoda.analytics___salesforce_stg__cs_lead_c"], "source.yoda.analytics__salesforce_rivery.cs_lead__c_full": ["model.yoda.analytics___salesforce_stg__cs_lead_c_full"], "source.yoda.analytics__static.free_credit_high_touch_bonus": ["model.yoda.analytics___sms_stg__free_credit_high_touch_bonus"], "source.yoda.analytics__static.subscription_contract_before_snapshot": ["model.yoda.analytics___subscriptions_stg__subscription_contract_before_snapshot"], "source.yoda.analytics__static.loyalty_earning_rule_types_for_synergy_activeness": ["model.yoda.analytics___synergies_stg__loyalty_earning_rule_types_for_synergy_activeness"], "source.yoda.analytics__static.sms_flow_triggers_for_synergy_activeness": ["model.yoda.analytics___synergies_stg__sms_flow_triggers_for_synergy_activeness"], "source.yoda.analytics__static.sms_flow_triggers_to_filter_for_custom_loyalty_activeness": ["model.yoda.analytics___synergies_stg__sms_flow_triggers_to_filter_for_custom_loyalty_activeness"], "source.yoda.analytics__static.sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness": ["model.yoda.analytics___synergies_stg__sms_flow_settings_pattern_for_custom_loyalty_synergy_activeness"], "source.yoda.analytics__static.sms_predefined_message_sub_category_for_synergy_activeness": ["model.yoda.analytics___synergies_stg__sms_predefined_message_sub_category_for_synergy_activeness"], "source.yoda.analytics__email_analytics.emails": ["model.yoda.analytics___ugc_stg__emails"], "source.yoda.analytics__static.calendar": ["model.yoda.analytics___utils_stg__calendar"], "source.yoda.communication__sms.users": ["model.yoda.communication_stg__users"], "source.yoda.communication__sms.shopify_users": ["model.yoda.communication_stg__shopify_users"], "source.yoda.communication__sms.campaigns": ["model.yoda.communication_stg__campaigns"], "source.yoda.communication__sms.events": ["model.yoda.communication_stg__events"], "source.yoda.communication__sms.flows": ["model.yoda.communication_stg__flows"], "source.yoda.communication__sms.forms": ["model.yoda.communication_stg__forms"], "source.yoda.communication__sms.list_keywords": ["model.yoda.communication_stg__list_keywords"], "source.yoda.communication__sms.shopify_subscription_list_pages": ["model.yoda.communication_stg__shopify_subscription_list_pages"], "source.yoda.communication__sms.shopify_user_integrations": ["model.yoda.communication_stg__shopify_user_integrations"], "source.yoda.communication__sms.phones_meta": ["model.yoda.communication_stg__phones_meta"], "source.yoda.communication__sms.apicalls": ["model.yoda.communication_stg__apicalls"], "source.yoda.communication__sms.phones": ["model.yoda.communication_stg__phones"], "source.yoda.communication__sms.phone_to_list": ["model.yoda.communication_stg__phone_to_list"], "source.yoda.communication__sms.packages": ["model.yoda.communication_stg__packages"], "source.yoda.communication__sms.email_esp_events": ["model.yoda.communication_stg__email_esp_events"], "source.yoda.communication__sms.conversation_messages": ["model.yoda.communication_stg__conversation_messages"], "source.yoda.communication__sms.klaviyo_users": ["model.yoda.communication_stg__klaviyo_users"], "source.yoda.communication__sms.bigcommerce_users": ["model.yoda.communication_stg__bigcommerce_users"], "source.yoda.communication__sms.users_additional_flags": ["model.yoda.communication_stg__users_additional_flags"], "source.yoda.communication__sms.shopify_analytics_orders": ["model.yoda.communication_stg__shopify_analytics_orders"], "source.yoda.communication__sms.tmp_email_events": ["model.yoda.communication_stg__tmp_email_events"], "source.yoda.communication__sms_shopify.orders": ["model.yoda.communication_stg__orders"], "source.yoda.communication__communication.billing_events": ["model.yoda.communication_stg__billing_events"], "source.yoda.communication__unomi.profiles": ["model.yoda.communication_stg__profiles"], "source.yoda.email__communication.campaign_events": ["model.yoda.email_stg__campaign_events", "model.yoda.email_stg__emails_with_campaign_and_templates"], "source.yoda.email__communication.system_email_events": ["model.yoda.email_stg__system_email_events", "model.yoda.email_stg__system_email_events_with_batch_id"], "source.yoda.email__communication.delivered_email": ["model.yoda.email_stg__delivered_email"], "source.yoda.email__communication.template_instance_events": ["model.yoda.email_stg__template_instance_events"], "source.yoda.email__communication.source_engagement_level_dry_run": ["model.yoda.email_stg__source_engagement_level_dry_run"], "source.yoda.email__delivery.authenticated_domain": ["model.yoda.email_stg__authenticated_domain"], "source.yoda.infra__costpo.aws_billing_report_raw": ["model.yoda.infra_stg__aws_billing_report_raw", "model.yoda.infra_stg__aws_billing_report_raw"], "source.yoda.infra__costpo.kubecost_raw": ["model.yoda.infra_stg__kubecost_raw"], "source.yoda.infra__costpo.databricks_cost_raw": ["model.yoda.infra_stg__databricks_cost_raw"], "source.yoda.infra__costpo.aws_payer_billing_report_raw": ["model.yoda.infra_stg__aws_payer_billing_report_raw", "model.yoda.infra_stg__aws_payer_billing_report_raw"], "source.yoda.infra__costpo.budget": ["model.yoda.infra_stg__budget"], "source.yoda.infra__costpo.sub_departments_monthyl_budget": [], "source.yoda.infra__costpo.kubecost_delta": ["model.yoda.infra_stg__kubecost_delta"], "source.yoda.infra__costpo.snowflake_automatic_clustering_history": ["model.yoda.infra_stg__snowflake_automatic_clustering_history"], "source.yoda.infra__costpo.snowflake_database_storage_usage_history": ["model.yoda.infra_stg__snowflake_database_storage_usage_history"], "source.yoda.infra__costpo.snowflake_materialized_view_refresh_history": ["model.yoda.infra_stg__snowflake_materialized_view_refresh_history"], "source.yoda.infra__costpo.snowflake_warehouse_metering_history": ["model.yoda.infra_stg__snowflake_warehouse_metering_history"], "source.yoda.infra__costpo.snowflake_tag_references": ["model.yoda.infra_stg__snowflake_tag_references"], "source.yoda.infra__costpo.snowflake_warehouse_events": ["model.yoda.infra_stg__snowflake_warehouse_events"], "source.yoda.infra__costpo.snowflake_queries_statistics": ["model.yoda.infra_stg__snowflake_queries_statistics"], "source.yoda.infra__costpo.sub_departments_monthly_budget": ["model.yoda.infra_stg__sub_departments_monthly_budget"], "source.yoda.infra__costpo.team_budget": ["model.yoda.infra_stg__team_budget"], "source.yoda.infra__default.s3_inventory": ["model.yoda.infra_stg__s3_inventory_raw"], "source.yoda.infra__pixel.pixel_enrichment": ["model.yoda.infra_stg__pixel_enrichment"], "source.yoda.infra__opsgenie.incidents": ["model.yoda.infra_stg__incidents"], "source.yoda.infra__opsgenie.services": ["model.yoda.infra_stg__services"], "source.yoda.infra__opsgenie.teams": ["model.yoda.infra_stg__teams"], "source.yoda.infra__opsgenie.alerts": ["model.yoda.infra_stg__alerts"], "source.yoda.infra__github_info.repos": ["model.yoda.infra_stg__repos"], "source.yoda.infra__github_info.workflows": ["model.yoda.infra_stg__workflows"], "source.yoda.infra__github_info.workflow_runs": ["model.yoda.infra_stg__workflow_runs"], "source.yoda.infra__infra_metrics.infra_raw_metrics": ["model.yoda.infra_stg__infra_metrics"], "source.yoda.infra__infra_metrics.upsolver_raw_output": ["model.yoda.infra_stg__upsolver_outputs"], "source.yoda.infra__infra.rivery_rivers_usage": ["model.yoda.infra_stg__rivery_rivers_usage"], "source.yoda.infra__infra.rivery_environments": ["model.yoda.infra_stg__rivery_environments"], "source.yoda.infra__infra.rivery_groups": ["model.yoda.infra_stg__rivery_groups"], "source.yoda.infra__segment.page": ["model.yoda.infra_stg__page"], "source.yoda.infra__segment.page_track": ["model.yoda.infra_stg__page_track"], "source.yoda.infra__segment.identify": ["model.yoda.infra_stg__identify"], "source.yoda.infra__segment.group": ["model.yoda.infra_stg__group"], "source.yoda.loyalty__default.swell_vip_tiers_settings": ["test.yoda.source_not_null_loyalty__default_swell_vip_tiers_settings_merchant_id.c901db4741", "test.yoda.source_unique_loyalty__default_swell_vip_tiers_settings_merchant_id.5f44e0ed3b"], "source.yoda.loyalty__default.currency_rates": ["model.yoda.loyalty_stg__currency_rates"], "source.yoda.loyalty__chainperks.yotpo_platform_accounts": ["model.yoda.loyalty_stg__yotpo_platform_accounts"], "source.yoda.loyalty__chainperks.vip_tiers_thresholds": ["model.yoda.loyalty_stg__vip_tiers_thresholds"], "source.yoda.loyalty__chainperks.vip_tiers": ["model.yoda.loyalty_stg__vip_tiers"], "source.yoda.loyalty__chainperks.user_agents": ["model.yoda.loyalty_stg__user_agents"], "source.yoda.loyalty__chainperks.user_actions": ["model.yoda.loyalty_stg__user_actions"], "source.yoda.loyalty__chainperks.subscriptions": ["model.yoda.loyalty_stg__subscriptions"], "source.yoda.loyalty__chainperks.refunds": ["model.yoda.loyalty_stg__refunds"], "source.yoda.loyalty__chainperks.refund_items": ["model.yoda.loyalty_stg__refund_items"], "source.yoda.loyalty__chainperks.referrals": ["model.yoda.loyalty_stg__referrals"], "source.yoda.loyalty__chainperks.referral_snapshots": ["model.yoda.loyalty_stg__referral_snapshots"], "source.yoda.loyalty__chainperks.referral_shares": ["model.yoda.loyalty_stg__referral_shares"], "source.yoda.loyalty__chainperks.referral_receipts": ["model.yoda.loyalty_stg__referral_receipts"], "source.yoda.loyalty__chainperks.referral_discount_codes": ["model.yoda.loyalty_stg__referral_discount_codes"], "source.yoda.loyalty__chainperks.referral_codes": ["model.yoda.loyalty_stg__referral_codes"], "source.yoda.loyalty__chainperks.redemption_options": ["model.yoda.loyalty_stg__redemption_options"], "source.yoda.loyalty__chainperks.redemption_codes": ["model.yoda.loyalty_stg__redemption_codes"], "source.yoda.loyalty__chainperks.purchases_with_currency": ["model.yoda.loyalty_stg__purchases_with_currency"], "source.yoda.loyalty__chainperks.purchases_redemptions": ["model.yoda.loyalty_stg__purchases_redemptions"], "source.yoda.loyalty__chainperks.purchases": ["model.yoda.loyalty_stg__purchases"], "source.yoda.loyalty__chainperks.purchase_items": ["model.yoda.loyalty_stg__purchase_items"], "source.yoda.loyalty__chainperks.processors": ["model.yoda.loyalty_stg__processors"], "source.yoda.loyalty__chainperks.point_redemptions": ["model.yoda.loyalty_stg__point_redemptions"], "source.yoda.loyalty__chainperks.perks_user_actions": ["model.yoda.loyalty_stg__perks_user_actions"], "source.yoda.loyalty__chainperks.perks": ["model.yoda.loyalty_stg__perks"], "source.yoda.loyalty__chainperks.merchants": ["model.yoda.loyalty_stg__merchants"], "source.yoda.loyalty__chainperks.group_customers": ["model.yoda.loyalty_stg__group_customers"], "source.yoda.loyalty__chainperks.email_campaign_emails": ["model.yoda.loyalty_stg__email_campaign_emails"], "source.yoda.loyalty__chainperks.customers_vip_tiers_history": ["model.yoda.loyalty_stg__customers_vip_tiers_history"], "source.yoda.loyalty__chainperks.customers_vip_tiers": ["model.yoda.loyalty_stg__customers_vip_tiers"], "source.yoda.loyalty__chainperks.customers_opt_in": ["model.yoda.loyalty_stg__customers_opt_in"], "source.yoda.loyalty__chainperks.customers": ["model.yoda.loyalty_stg__customers"], "source.yoda.loyalty__chainperks.customer_birthdays": ["model.yoda.loyalty_stg__customer_birthdays"], "source.yoda.loyalty__chainperks.campaigns": ["model.yoda.loyalty_stg__campaigns"], "source.yoda.loyalty__chainperks.email_campaigns": ["model.yoda.loyalty_stg__email_campaigns"], "source.yoda.loyalty__chainperks.plans": ["model.yoda.loyalty_stg__plans"], "source.yoda.loyalty__chainperks.vip_tiers_settings": ["model.yoda.loyalty_stg__swell_vip_tiers_settings", "model.yoda.loyalty_stg__vip_tiers_settings"], "source.yoda.loyalty__chainperks.campaign_activation_histories": ["model.yoda.loyalty_stg__campaign_activation_histories"], "source.yoda.loyalty__chainperks.customers_platform_accounts": ["model.yoda.loyalty_stg__customers_platform_accounts"], "source.yoda.loyalty__communication.store_email_activity": [], "source.yoda.loyalty__segment.uninstall_loyalty": ["model.yoda.loyalty_stg__uninstall_loyalty"], "source.yoda.loyalty__segment.install_loyalty": ["model.yoda.loyalty_stg__install_loyalty"], "source.yoda.loyalty__pixel.onsite_v3": ["model.yoda.loyalty_stg__onsite_v3"], "source.yoda.loyalty__sources_loyalty.known_crawlers": ["model.yoda.loyalty_stg__known_crawlers"], "source.yoda.loyalty__widgetrepodb.instance_versions": ["model.yoda.loyalty_stg__instance_versions"], "source.yoda.loyalty__widgetrepodb.instances": ["model.yoda.loyalty_stg__instances"], "source.yoda.loyalty__widgetrepodb.customizations": ["model.yoda.loyalty_stg__customizations"], "source.yoda.loyalty__widgetrepodb.static_contents": ["model.yoda.loyalty_stg__static_contents"], "source.yoda.loyalty__widgetrepodb.templates": ["model.yoda.loyalty_stg__templates"], "source.yoda.loyalty__widgetrepodb.widget_types": ["model.yoda.loyalty_stg__widget_types"], "source.yoda.loyalty__points.config_item": ["model.yoda.loyalty_stg__config_item"], "source.yoda.loyalty__points.container_balance_usage": ["model.yoda.loyalty_stg__container_balance_usage"], "source.yoda.loyalty__points.points_container_expiration": ["model.yoda.loyalty_stg__points_container_expiration"], "source.yoda.loyalty__points.points_state": ["model.yoda.loyalty_stg__points_state"], "source.yoda.loyalty__points.points_transaction": ["model.yoda.loyalty_stg__points_transaction"], "source.yoda.platform__yotpoapiprod.accounts": ["model.yoda.platform_stg__accounts", "model.yoda.platform_stg__stores", "test.yoda.source_not_null_platform__yotpoapiprod_accounts_app_key.82f42cf573", "test.yoda.source_not_null_platform__yotpoapiprod_accounts_id.53e221b49f", "test.yoda.source_unique_platform__yotpoapiprod_accounts_app_key.8c15d446df", "test.yoda.source_unique_platform__yotpoapiprod_accounts_id.1717951440"], "source.yoda.platform__yotpoapiprod.platform_types": ["model.yoda.platform_stg__platform_types", "test.yoda.source_not_null_platform__yotpoapiprod_platform_types_id.2364631aa4", "test.yoda.source_unique_platform__yotpoapiprod_platform_types_id.e3c5d219fe"], "source.yoda.platform__yotpoapiprod.account_platforms": ["model.yoda.platform_stg__account_platforms", "model.yoda.platform_stg__store_platforms", "test.yoda.source_not_null_platform__yotpoapiprod_account_platforms_id.665cd6e626", "test.yoda.source_unique_platform__yotpoapiprod_account_platforms_id.f7c871edac"], "source.yoda.platform__yotpoapiprod.organizations": ["model.yoda.platform_stg__organizations"], "source.yoda.platform__yotpoapiprod.apps": ["model.yoda.platform_stg__apps"], "source.yoda.platform__yotpoapiprod.features": ["model.yoda.platform_stg__features"], "source.yoda.platform__yotpoapiprod.owners_features": ["model.yoda.platform_stg__owners_features"], "source.yoda.platform__yotpoapiprod.owner_feature_settings": ["model.yoda.platform_stg__owner_feature_settings"], "source.yoda.platform__yotpoapiprod.users_organizations": ["model.yoda.platform_stg__users_organizations"], "source.yoda.platform__yotpoapiprod.questions": ["model.yoda.analytics___platform_stg__questions"], "source.yoda.platform__packages.owners_packages": ["model.yoda.platform_stg__owners_packages"], "source.yoda.platform__packages.packages": ["model.yoda.platform_stg__packages"], "source.yoda.platform__packages.categories": ["model.yoda.platform_stg__categories"], "source.yoda.platform__packages.package_tags": ["model.yoda.platform_stg__package_tags"], "source.yoda.platform__packages.package_tag_types": ["model.yoda.platform_stg__package_tag_types"], "source.yoda.platform__packages.owners_package_audits": ["model.yoda.platform_stg__owners_package_audits"], "source.yoda.platform__packages.owners_packages_history": ["model.yoda.platform_stg__owners_packages_history"], "source.yoda.platform__packages.package_feature_settings": ["model.yoda.platform_stg__package_feature_settings"], "source.yoda.platform__packages.package_features": ["model.yoda.platform_stg__package_features"], "source.yoda.platform__packages.platform_package_features": ["model.yoda.platform_stg__platform_package_features"], "source.yoda.platform__orders.orders": ["model.yoda.platform_stg__orders"], "source.yoda.platform__orders.fulfillments": ["model.yoda.platform_stg__fulfillments"], "source.yoda.platform__orders.order_lines": ["model.yoda.platform_stg__order_lines"], "source.yoda.platform__default.currency_rates": ["model.yoda.platform_stg__currency_rates"], "source.yoda.platform__default.platform__integrationscenter": [], "source.yoda.platform__default.dim_calendar": ["model.yoda.platform_stg__dim_calendar"], "source.yoda.platform__integrationscenter.store_applications": ["model.yoda.platform_stg__ic_store_applications", "model.yoda.platform_stg__integrations_names", "model.yoda.platform_stg__store_applications"], "source.yoda.platform__products.products": ["model.yoda.platform_stg__products"], "source.yoda.platform__products.variants": ["model.yoda.platform_stg__variants"], "source.yoda.platform__products.gtins": ["model.yoda.platform_stg__gtins"], "source.yoda.platform__products.custom_attributes": ["model.yoda.platform_stg__custom_attributes"], "source.yoda.platform__products.attribute_sets": ["model.yoda.platform_stg__attribute_sets"], "source.yoda.platform__products.groups": ["model.yoda.platform_stg__groups"], "source.yoda.platform__static.timezone_country_mapping": ["model.yoda.platform_stg__timezone_country_mapping"], "source.yoda.platform__static.pixel_category_mapping": ["model.yoda.analytics___platform_stg__pixel_category_mapping"], "source.yoda.platform__static.pixel_action_mapping": ["model.yoda.analytics___platform_stg__pixel_action_mapping"], "source.yoda.platform__static.pixel_duration_mapping": ["model.yoda.analytics___platform_stg__pixel_duration_mapping"], "source.yoda.platform__static.deprecated_packages": ["model.yoda.analytics___platform_stg__deprecated_packages"], "source.yoda.platform__static.sms_loyalty_synergy_mapping": ["model.yoda.analytics___platform_stg__sms_loyalty_synergy_mapping"], "source.yoda.platform__static.pixel_os_family_mobile_mapping": ["model.yoda.analytics___platform_stg__pixel_os_family_mobile_mapping"], "source.yoda.platform__static.phone_code_country_mapping": ["model.yoda.analytics___platform_stg__phone_code_country_mapping"], "source.yoda.platform__static.saas_store_plan_history": ["model.yoda.analytics___platform_stg__saas_store_plan_history"], "source.yoda.platform__static.subscriptions_contract_history": ["model.yoda.analytics___platform_stg__subscriptions_contract_history"], "source.yoda.platform__pixel.onsite_v2": ["model.yoda.platform_stg__onsite_v2"], "source.yoda.platform__pixel.onsite_v3": ["model.yoda.platform_stg__onsite_v3"], "source.yoda.platform__billing.subscription_providers": ["model.yoda.platform_stg__subscription_providers"], "source.yoda.platform__billing.usages": ["model.yoda.platform_stg__usages"], "source.yoda.platform__billing.usages_history": ["model.yoda.platform_stg__usages_history"], "source.yoda.platform__billing.usages_tiers_settings": ["model.yoda.platform_stg__usages_tiers_settings"], "source.yoda.platform__billing.subscription_statuses": ["model.yoda.platform_stg__subscription_statuses"], "source.yoda.platform__billing.subscription_usages_settings": ["model.yoda.platform_stg__subscription_usages_settings"], "source.yoda.platform__billing.subscription_pending_usages": ["model.yoda.platform_stg__subscription_pending_usages"], "source.yoda.platform__billing.subscription_cycle_usages": ["model.yoda.platform_stg__subscription_cycle_usages"], "source.yoda.platform__billing.provider_types": ["model.yoda.platform_stg__provider_types"], "source.yoda.platform__billing.plan_settings": ["model.yoda.platform_stg__plan_settings"], "source.yoda.platform__billing.package_usages_settings": ["model.yoda.platform_stg__package_usages_settings"], "source.yoda.platform__billing.package_provider_settings": ["model.yoda.platform_stg__package_provider_settings"], "source.yoda.platform__billing.billing_audits": ["model.yoda.platform_stg__billing_audits"], "source.yoda.platform__data_science.similar_stores": ["model.yoda.analytics___platform_stg__similar_stores"], "source.yoda.platform__data_science.customer_dataset_reduced": ["model.yoda.platform_stg__customer_dataset", "model.yoda.platform_stg__customer_dataset_reduced"], "source.yoda.platform__data_science.churn_prediction": ["model.yoda.platform__customer_dimensions_metrics", "model.yoda.platform__customer_dimensions_metrics_inc"], "source.yoda.platform__segment.app_install_completed": ["model.yoda.platform_stg__app_install_completed"], "source.yoda.platform__segment.app_uninstalled": ["model.yoda.platform_stg__app_uninstalled"], "source.yoda.platform__segment.activation_step": ["model.yoda.platform_stg__activation_step"], "source.yoda.platform__segment.onboarding": ["model.yoda.platform_stg__onboarding"], "source.yoda.platform__segment.b2b": ["model.yoda.platform_stg__b2b"], "source.yoda.platform__segment.uninstalled_yotpo": ["model.yoda.platform_stg__uninstalled_yotpo"], "source.yoda.platform__segment.account_created": ["model.yoda.platform_stg__account_created"], "source.yoda.platform__segment.product_enabled": ["model.yoda.platform_stg__product_enabled"], "source.yoda.platform__segment.popup_displayed": ["model.yoda.platform_stg__popup_displayed"], "source.yoda.platform__segment.limit_reached": ["model.yoda.platform_stg__limit_reached"], "source.yoda.platform__segment.file_exported": ["model.yoda.platform_stg__file_exported"], "source.yoda.platform__homescreen.synergies_crud": ["model.yoda.platform_stg__synergies_crud"], "source.yoda.platform__homescreen.widgets": ["model.yoda.platform_stg__widgets"], "source.yoda.platform__homescreen.sections": ["model.yoda.platform_stg__sections"], "source.yoda.platform__homescreen.widget_configurations": ["model.yoda.platform_stg__widget_configurations"], "source.yoda.platform__singas.cdp_streaming_events": ["model.yoda.platform__cdp_streaming_aggregated_events", "model.yoda.platform_stg__cdp_streaming_events"], "source.yoda.sms__sms.apicalls": ["model.yoda.sms_stg__apicalls"], "source.yoda.sms__sms.bigcommerce_users": ["model.yoda.sms_stg__bigcommerce_users"], "source.yoda.sms__sms.shopify_users": ["model.yoda.sms_stg__shopify_users"], "source.yoda.sms__sms.users": ["model.yoda.sms_stg__users"], "source.yoda.sms__sms.events": ["model.yoda.sms_stg__events"], "source.yoda.sms__sms.flows": ["model.yoda.sms_stg__flows"], "source.yoda.sms__sms.loyalty_flows_data": ["model.yoda.sms_stg__loyalty_flows_data"], "source.yoda.sms__sms.track_flows_adoption": ["model.yoda.sms_stg__track_flows_adoption"], "source.yoda.sms__sms.yotpo_organizations": ["model.yoda.sms_stg__yotpo_organizations"], "source.yoda.sms__sms.users_events_log": ["model.yoda.sms_stg__users_events_log"], "source.yoda.sms__sms.packages": ["model.yoda.sms_stg__packages"], "source.yoda.sms__sms.campaigns": ["model.yoda.sms_stg__campaigns"], "source.yoda.sms__sms.purchases": ["model.yoda.sms_stg__purchases"], "source.yoda.sms__sms.forms": ["model.yoda.sms_stg__forms"], "source.yoda.sms__sms.flow_link_clicks": ["model.yoda.sms_stg__flow_link_clicks"], "source.yoda.sms__sms.shopify_flows_orders": ["model.yoda.sms_stg__shopify_flows_orders"], "source.yoda.sms__sms.campaign_lists": ["model.yoda.sms_stg__campaign_lists"], "source.yoda.sms__sms.lists": ["model.yoda.sms_stg__lists"], "source.yoda.sms__sms.shopify_segments": ["model.yoda.sms_stg__shopify_segments"], "source.yoda.sms__sms.campaign_relations": ["model.yoda.sms_stg__campaign_relations"], "source.yoda.sms__sms.default_predefined_messages": ["model.yoda.sms_stg__default_predefined_messages"], "source.yoda.sms__sms.flow_links": ["model.yoda.sms_stg__flow_links"], "source.yoda.sms__sms.shopify_campaign_orders": ["model.yoda.sms_stg__shopify_campaign_orders"], "source.yoda.sms__sms.link_clicks": ["model.yoda.sms_stg__link_clicks"], "source.yoda.sms__sms.yotpo_status_updates": ["model.yoda.sms_stg__yotpo_status_updates"], "source.yoda.sms__sms.free_credits_logs": ["model.yoda.sms_stg__free_credits_logs"], "source.yoda.sms__sms.email_charges": ["model.yoda.sms_stg__email_charges"], "source.yoda.sms__sms.shopify_analytics_orders": ["model.yoda.sms_stg__shopify_analytics_orders"], "source.yoda.sms__sms.email_to_sms_campaigns": ["model.yoda.sms_stg__email_to_sms_campaigns"], "source.yoda.sms__sms.shopify_campaign_discount_codes": ["model.yoda.sms_stg__shopify_campaign_discount_codes"], "source.yoda.sms__sms.sms_loyalty_redemptions": ["model.yoda.sms_stg__sms_loyalty_redemptions"], "source.yoda.sms__segment.sms_campaign_created": ["model.yoda.sms_stg__sms_campaign_created"], "source.yoda.sms__sms_shopify.orders": ["model.yoda.sms_stg__orders"], "source.yoda.sms__sms_shopify.customers": ["model.yoda.sms_stg__customers"], "source.yoda.sms__sms_shopify.customers_addresses": ["model.yoda.sms_stg__customers_addresses"], "source.yoda.sms__default.fact_agg_sms_user_profile_daily": ["model.yoda.analytics___sms_stg__fact_agg_sms_user_profile_daily"], "source.yoda.sms__communication.comm_analytics_data": ["model.yoda.sms_stg__comm_analytics_data"], "source.yoda.subscriptions__subscriptions.subscription_contract": ["model.yoda.subscriptions_stg__subscription_contract"], "source.yoda.subscriptions__subscriptions.status": ["model.yoda.subscriptions_stg__status"], "source.yoda.subscriptions__subscriptions.subscription_contract_order": ["model.yoda.subscriptions_stg__subscription_contract_order"], "source.yoda.subscriptions__subscriptions.recurrent_event_rule": ["model.yoda.subscriptions_stg__recurrent_event_rule"], "source.yoda.subscriptions__subscriptions.subscription_contract_line": ["model.yoda.subscriptions_stg__subscription_contract_line"], "source.yoda.subscriptions__subscriptions.subscription_creation_request": ["model.yoda.subscriptions_stg__subscription_creation_request"], "source.yoda.subscriptions__subscriptions.product": ["model.yoda.subscriptions_stg__product"], "source.yoda.subscriptions__subscriptions.selling_plan": ["model.yoda.subscriptions_stg__selling_plan"], "source.yoda.subscriptions__subscriptions.selling_plan_group": ["model.yoda.subscriptions_stg__selling_plan_group"], "source.yoda.subscriptions__subscriptions.selling_plan_group_product": ["model.yoda.subscriptions_stg__selling_plan_group_product"], "source.yoda.subscriptions__subscriptions.billing_attempt_response": ["model.yoda.subscriptions_stg__billing_attempt_response"], "source.yoda.subscriptions__subscriptions.store_customers_exports": ["model.yoda.subscriptions_stg__store_customers_exports"], "source.yoda.subscriptions__subscriptions.subscription_line_action": ["model.yoda.subscriptions_stg__subscription_line_action"], "source.yoda.subscriptions__subscriptions.app_webhooks": ["model.yoda.subscriptions_stg__app_webhooks"], "source.yoda.subscriptions__segment.subscription_started_v2": ["model.yoda.analytics___subscriptions_stg__subscription_started_v2"], "source.yoda.subscriptions__segment.subscription_ended_v2": ["model.yoda.analytics___subscriptions_stg__subscription_ended_v2"], "source.yoda.subscriptions__customer_journey.customer_journey_event": ["model.yoda.subscriptions_stg__customer_journey_event"], "source.yoda.subscriptions__subscriptions_retention.cancelation_intent_event": ["model.yoda.subscriptions_stg__cancelation_intent_event"], "source.yoda.subscriptions__subscriptions_retention.cancelation_reason_option": ["model.yoda.subscriptions_stg__cancelation_reason_option"], "source.yoda.ugc__yotpoapiprod.reviews": ["model.yoda.ugc_stg__reviews"], "source.yoda.ugc__yotpoapiprod.reviews_subjects": ["model.yoda.ugc_stg__reviews_subjects"], "source.yoda.ugc__yotpoapiprod.images": ["model.yoda.ugc_stg__images"], "source.yoda.ugc__yotpoapiprod.videos": ["model.yoda.ugc_stg__videos"], "source.yoda.ugc__yotpoapiprod.comments": ["model.yoda.ugc_stg__comments"], "source.yoda.ugc__yotpoapiprod.moderation_audits": ["model.yoda.ugc_stg__moderation_audits"], "source.yoda.ugc__yotpoapiprod.votes": ["model.yoda.ugc_stg__votes"], "source.yoda.ugc__yotpoapiprod.dirty_words": ["model.yoda.ugc_stg__dirty_words"], "source.yoda.ugc__yotpoapiprod.review_contents": ["model.yoda.ugc_stg__review_contents"], "source.yoda.ugc__yotpoapiprod.review_form_fields": ["model.yoda.ugc_stg__review_form_fields"], "source.yoda.ugc__yotpoapiprod.review_form_field_types": ["model.yoda.ugc_stg__review_form_field_types"], "source.yoda.ugc__yotpoapiprod.review_types": ["model.yoda.ugc_stg__review_types"], "source.yoda.ugc__yotpoapiprod.users": ["model.yoda.ugc_stg__users"], "source.yoda.ugc__yotpoapiprod.anonymous_users": ["model.yoda.ugc_stg__anonymous_users"], "source.yoda.ugc__yotpoapiprod.review_source_types": ["model.yoda.ugc_stg__review_source_types"], "source.yoda.ugc__yotpoapiprod.review_metadatas": ["model.yoda.ugc_stg__review_metadatas"], "source.yoda.ugc__yotpoapiprod.reminders": ["model.yoda.ugc_stg__reminders"], "source.yoda.ugc__yotpoapiprod.review_order_line": ["model.yoda.ugc_stg__review_order_line"], "source.yoda.ugc__yotpoapiprod.tags_to_reviews": ["model.yoda.ugc_stg__tags_to_reviews"], "source.yoda.ugc__yotpoapiprod.review_tags": ["model.yoda.ugc_stg__review_tags"], "source.yoda.ugc__yotpoapiprod.reviews_incentivized": ["model.yoda.ugc_stg__reviews_incentivized"], "source.yoda.ugc__yotpoapiprod.review_request_tokens": ["model.yoda.ugc_stg__review_request_tokens"], "source.yoda.ugc__yotpoapiprod.email_authentications": ["model.yoda.ugc_stg__email_authentications"], "source.yoda.ugc__yotpoapiprod.users_email_controls": ["model.yoda.ugc_stg__users_email_controls"], "source.yoda.ugc__yotpoapiprod.email_types": ["model.yoda.ugc_stg__email_types"], "source.yoda.ugc__yotpoapiprod.review_request_sms": ["model.yoda.ugc_stg__review_request_sms"], "source.yoda.ugc__yotpoapiprod.review_request_emails": ["model.yoda.ugc_stg__review_request_emails"], "source.yoda.ugc__default.mongo_gallery_media": ["model.yoda.ugc_stg__mongo_gallery_media"], "source.yoda.ugc__default.metadata_types": ["model.yoda.ugc_stg__metadata_types"], "source.yoda.ugc__default.shares": ["model.yoda.ugc_stg__shares"], "source.yoda.ugc__default.fact_reviews_stores_population_daily": [], "source.yoda.ugc__static.ugc_plan_group_change_mapping": ["model.yoda.analytics___ugc_stg__ugc_plan_group_change_mapping"], "source.yoda.ugc__retailers_syndication.syndicated_accounts": ["model.yoda.ugc_stg__syndicated_accounts"], "source.yoda.ugc__retailers_syndication.retailer": ["model.yoda.ugc_stg__retailer"], "exposure.yoda.analytics___cs__24h": [], "exposure.yoda.analytics___delivery__24h": [], "exposure.yoda.analytics___finance__24h": [], "exposure.yoda.analytics___finance__at_01_30": [], "exposure.yoda.analytics___gtm__24h": [], "exposure.yoda.analytics___gtm__at_01_30": [], "exposure.yoda.analytics___loyalty__24h": [], "exposure.yoda.analytics___marketing__24h": [], "exposure.yoda.analytics___new_revenue__24h": [], "exposure.yoda.analytics___partners__24h": [], "exposure.yoda.analytics___partners__at_01_30": [], "exposure.yoda.analytics___platform__24h": [], "exposure.yoda.analytics___platform__At_00_30": [], "exposure.yoda.analytics___platform__order_24h": [], "exposure.yoda.analytics___platform__pixel_24h": [], "exposure.yoda.analytics___platform__plan_24h": [], "exposure.yoda.analytics___platform__product_metrics_24h": [], "exposure.yoda.analytics___platform__schedule_once_models": [], "exposure.yoda.analytics___platform__segment_24h": [], "exposure.yoda.analytics___platform__staging_24h": [], "exposure.yoda.analytics___salesforce__24h": [], "exposure.yoda.analytics___salesforce__at_01_30": [], "exposure.yoda.analytics___salesforce__enrichment_24h": [], "exposure.yoda.analytics___sms__24h": [], "exposure.yoda.analytics___sms__staging_24h": [], "exposure.yoda.analytics___subscriptions__24h": [], "exposure.yoda.analytics___subscriptions__subscriptions_tables_to_snowflake": [], "exposure.yoda.analytics___synergies__24h": [], "exposure.yoda.analytics___ugc__24h": [], "exposure.yoda.analytics___ugc__temp_reminder_snapshot": [], "exposure.yoda.analytics___utils__weekly": [], "exposure.yoda.communication__At_20_00_only_on_Sunday": [], "exposure.yoda.communication__analytics_daily_at_04_00": [], "exposure.yoda.email__daily_total_email_campaigns": [], "exposure.yoda.email__daily_total_emails_by_source_name": [], "exposure.yoda.email__email_events_by_source_and_isp": [], "exposure.yoda.email__email_events_by_source_and_pool": [], "exposure.yoda.email__email_events_by_source_pool_isp_eng": [], "exposure.yoda.email__email_failed_rejected_reasons": [], "exposure.yoda.email__daily_usage_scheduler": [], "exposure.yoda.email__delivery_base_model_scheduler": [], "exposure.yoda.email__email_base_model_scheduling": [], "exposure.yoda.email__hourly_scheduler": [], "exposure.yoda.infra__aws_cost_overview": [], "exposure.yoda.infra__contract_estimations": [], "exposure.yoda.infra__contract_info": [], "exposure.yoda.infra__contract_status": [], "exposure.yoda.infra__cost_budget": [], "exposure.yoda.infra__cost_budget_history": [], "exposure.yoda.infra__databricks_costs": [], "exposure.yoda.infra__ec2_cost": [], "exposure.yoda.infra__elasticcache_cost": [], "exposure.yoda.infra__elasticsearch_cost": [], "exposure.yoda.infra__github_workflow_runs": [], "exposure.yoda.infra__groups_and_teams": [], "exposure.yoda.infra__infra_metrics_model": [], "exposure.yoda.infra__kubernetes_cost": [], "exposure.yoda.infra__msk_cost": [], "exposure.yoda.infra__opensearch_cost": [], "exposure.yoda.infra__opsgenie_alerts": [], "exposure.yoda.infra__opsgenie_incidents": [], "exposure.yoda.infra__rds_cost": [], "exposure.yoda.infra__rivery_contract_statistics": [], "exposure.yoda.infra__rivery_usage_model": [], "exposure.yoda.infra__s3_cost": [], "exposure.yoda.infra__s3_prefix_aggregations": [], "exposure.yoda.infra__s3_storage_data_summary": [], "exposure.yoda.infra__snowflake_automatic_clustering_cost": [], "exposure.yoda.infra__snowflake_cost_summary": [], "exposure.yoda.infra__snowflake_daily_cost": [], "exposure.yoda.infra__snowflake_monthly_cost": [], "exposure.yoda.infra__snowflake_query_statistics": [], "exposure.yoda.infra__snowflake_storage_cost": [], "exposure.yoda.infra__snowflake_views_cost": [], "exposure.yoda.infra__snowflake_warehouse_cost": [], "exposure.yoda.infra__snowflake_warehouse_statistics": [], "exposure.yoda.infra__spark_jobs": [], "exposure.yoda.infra__sqs_cost": [], "exposure.yoda.infra__sub_departments_monthly_budget_cur": [], "exposure.yoda.infra__sub_departments_monthly_budget_history": [], "exposure.yoda.infra__aws_cost": [], "exposure.yoda.infra__aws_storage_cost": [], "exposure.yoda.infra__budget": [], "exposure.yoda.infra__canary_scheduling": [], "exposure.yoda.infra__databricks_cost": [], "exposure.yoda.infra__github_models_metrics": [], "exposure.yoda.infra__infra_uptime_metrics": [], "exposure.yoda.infra__kuberneters_cost": [], "exposure.yoda.infra__products": [], "exposure.yoda.infra__rivery_usage": [], "exposure.yoda.infra__segment": [], "exposure.yoda.infra__snowflake_cost": [], "exposure.yoda.infra__static_resources": [], "exposure.yoda.loyalty__At_05_00_yoda_dag_daily_snapshot": [], "exposure.yoda.loyalty__chainperks": [], "exposure.yoda.loyalty__chainperks_to_snowflake": [], "exposure.yoda.loyalty__daily_snapshots_to_snowflake": [], "exposure.yoda.loyalty__pixel_events": [], "exposure.yoda.loyalty__points": [], "exposure.yoda.loyalty__retention_metric_redeemed_purchases": [], "exposure.yoda.loyalty__synergies_kpi": [], "exposure.yoda.loyalty__widgetsrepository_to_snowflake": [], "exposure.yoda.north_bound__At_21_30_only_on_Sunday": [], "exposure.yoda.platform__integrations_adoption_per_application_profile": [], "exposure.yoda.platform__integrations_adoption_per_store_profile": [], "exposure.yoda.platform__integrations_adoption_profile": [], "exposure.yoda.platform__singas_cdp_streaming_aggregated_events": [], "exposure.yoda.platform__At_00_30": [], "exposure.yoda.platform__At_16_00": [], "exposure.yoda.platform__At_17_00": [], "exposure.yoda.platform__Orbits": [], "exposure.yoda.platform__cdp_streaming_aggregated_events": [], "exposure.yoda.platform__corgis": [], "exposure.yoda.platform__customer_dataset": [], "exposure.yoda.platform__customer_dimensions_metrics": [], "exposure.yoda.platform__email_digest_schedule": [], "exposure.yoda.platform__koalas_intermediate_owned_models": [], "exposure.yoda.platform__retention_metrics": [], "exposure.yoda.platform__synergies_at_00_30": [], "exposure.yoda.sms__revenue_model": [], "exposure.yoda.sms__24h": [], "exposure.yoda.sms__asen_dag": [], "exposure.yoda.sms__revenue": [], "exposure.yoda.sms__sms_additional_kpi_models": [], "exposure.yoda.sms__sms_kpi": [], "exposure.yoda.sms__subscriptions_kpi": [], "exposure.yoda.subscriptions__store_customers_exports": [], "exposure.yoda.subscriptions__csv_exports_to_table": [], "exposure.yoda.subscriptions__customer_journey_events": [], "exposure.yoda.subscriptions__retention_metrics_subscription_orders": [], "exposure.yoda.subscriptions__subscriptions_tables_to_snowflake": [], "exposure.yoda.subscriptions__synergies_kpi": [], "exposure.yoda.subscriptions__table_sync": [], "exposure.yoda.support__24h": [], "exposure.yoda.ugc__shopper_experience_aggregation": [], "exposure.yoda.ugc__daily": [], "exposure.yoda.ugc__export_reviews_daily": [], "exposure.yoda.ugc__parial_reviewed_orders_daily": [], "exposure.yoda.ugc__reporting_reviews_daily": [], "exposure.yoda.ugc__shopper_experience_pixel_aggregation": []}, "group_map": {}} \ No newline at end of file diff --git a/tests/yoda_dbt2looker/test_cli.py b/tests/yoda_dbt2looker/test_cli.py new file mode 100644 index 0000000..cacca10 --- /dev/null +++ b/tests/yoda_dbt2looker/test_cli.py @@ -0,0 +1,52 @@ +from yoda_dbt2looker.cli import run_convert +import filecmp +import os +import shutil + + +def test__run_convert(): + remove_folder_contents("lookml") + run_convert( + target_dir="tests/resources/test_target", + project_dir="tests/resources", + output_dir="lookml", + tag="yoda_looker", + log_level="INFO", + ) + assert_folders_equal("tests/resources/expected_lookml", "lookml") + + +def remove_folder_contents(folder_path): + # Remove the contents of the folder, but keep the folder itself + if os.path.exists(folder_path): + for filename in os.listdir(folder_path): + file_path = os.path.join(folder_path, filename) + try: + if os.path.isfile(file_path) or os.path.islink(file_path): + os.unlink(file_path) + elif os.path.isdir(file_path): + shutil.rmtree(file_path) + except Exception as e: + print(f"Failed to delete {file_path}. Reason: {e}") + + +def assert_folders_equal(folder1, folder2): + comparison = filecmp.dircmp(folder1, folder2) + + # Check for common files + common_files = comparison.common_files + for file in common_files: + file1_path = os.path.join(folder1, file) + file2_path = os.path.join(folder2, file) + + with open(file1_path, "r") as file1, open(file2_path, "r") as file2: + content1 = file1.read() + content2 = file2.read() + + assert content1 == content2, f"Content of file {file} is different." + + # Check for common subdirectories + for subdirectory in comparison.common_dirs: + subfolder1 = os.path.join(folder1, subdirectory) + subfolder2 = os.path.join(folder2, subdirectory) + assert_folders_equal(subfolder1, subfolder2) diff --git a/tests/yoda_dbt2looker/test_generator.py b/tests/yoda_dbt2looker/test_generator.py index fa21728..d366ecd 100644 --- a/tests/yoda_dbt2looker/test_generator.py +++ b/tests/yoda_dbt2looker/test_generator.py @@ -209,77 +209,163 @@ def test__generate_dimensions_column_enabled_col_has_value_format_name( call(adapter_type, data_type), ] + def test__generate_compound_no_primary_key_returns_none(): - model = MagicMock() - model.meta.primary_key = None - assert generator._generate_compound_primary_key_if_needed(model) is None + model = MagicMock() + model.meta.primary_key = None + assert generator._generate_compound_primary_key_if_needed(model) is None + def test__generate_compound_primary_key_not_compound_return_none(): - model = MagicMock() - model.meta.primary_key = "col1" - assert generator._generate_compound_primary_key_if_needed(model) is None + model = MagicMock() + model.meta.primary_key = "col1" + assert generator._generate_compound_primary_key_if_needed(model) is None + def test__generate_compound_primary_key_compound_return_dict(): - model = MagicMock() - model.meta.primary_key = "col1 , col2" - assert generator._generate_compound_primary_key_if_needed(model) == { - "name": "primary_key", - "primary_key": "yes", - "sql": 'CONCAT(${TABLE}.col1,${TABLE}.col2) ', - "description": f"auto generated compound key from the columns:col1 , col2", - } + model = MagicMock() + model.meta.primary_key = "col1 , col2" + assert generator._generate_compound_primary_key_if_needed(model) == { + "name": "primary_key", + "primary_key": "yes", + "sql": "CONCAT(${TABLE}.col1,${TABLE}.col2) ", + "description": f"auto generated compound key from the columns:col1 , col2", + } + @patch("yoda_dbt2looker.generator._generate_compound_primary_key_if_needed") @patch("yoda_dbt2looker.generator._generate_dimensions") -def test_lookml_dimensions_from_model_no_compound_key_return_only_dimensions(generate_dimensions_mock , generate_compound_primary_key_if_needed_mock): - dimension1 = MagicMock() - generate_dimensions_mock.return_value = [dimension1] - generate_compound_primary_key_if_needed_mock.return_value = None - model = MagicMock() - adapter_type = MagicMock() - assert generator.lookml_dimensions_from_model(model , adapter_type) == [dimension1] - assert generate_dimensions_mock.mock_calls == [call(model , adapter_type)] - assert generate_compound_primary_key_if_needed_mock.mock_calls == [call(model)] +def test_lookml_dimensions_from_model_no_compound_key_return_only_dimensions( + generate_dimensions_mock, generate_compound_primary_key_if_needed_mock +): + dimension1 = MagicMock() + generate_dimensions_mock.return_value = [dimension1] + generate_compound_primary_key_if_needed_mock.return_value = None + model = MagicMock() + adapter_type = MagicMock() + assert generator.lookml_dimensions_from_model(model, adapter_type) == [dimension1] + assert generate_dimensions_mock.mock_calls == [call(model, adapter_type)] + assert generate_compound_primary_key_if_needed_mock.mock_calls == [call(model)] + @patch("yoda_dbt2looker.generator._generate_compound_primary_key_if_needed") @patch("yoda_dbt2looker.generator._generate_dimensions") -def test_lookml_dimensions_from_model_has_compound_key_return_joined_list(generate_dimensions_mock , generate_compound_primary_key_if_needed_mock): - dimension1 = MagicMock() - dimension2 = MagicMock() - generate_dimensions_mock.return_value = [dimension1] - generate_compound_primary_key_if_needed_mock.return_value = dimension2 - model = MagicMock() - adapter_type = MagicMock() - assert generator.lookml_dimensions_from_model(model , adapter_type) == [dimension1 , dimension2] - assert generate_dimensions_mock.mock_calls == [call(model , adapter_type)] - assert generate_compound_primary_key_if_needed_mock.mock_calls[0] == call(model) - -def test_looker_inner_on_column_meta(): +def test_lookml_dimensions_from_model_has_compound_key_return_joined_list( + generate_dimensions_mock, generate_compound_primary_key_if_needed_mock +): + dimension1 = MagicMock() + dimension2 = MagicMock() + generate_dimensions_mock.return_value = [dimension1] + generate_compound_primary_key_if_needed_mock.return_value = dimension2 + model = MagicMock() + adapter_type = MagicMock() + assert generator.lookml_dimensions_from_model(model, adapter_type) == [ + dimension1, + dimension2, + ] + assert generate_dimensions_mock.mock_calls == [call(model, adapter_type)] + assert generate_compound_primary_key_if_needed_mock.mock_calls[0] == call(model) + + +@patch("yoda_dbt2looker.generator.lookml_non_aggregative_measure") +def test_looker_inner_on_column_meta(lookml_non_aggregative_measure_mock): + lookml_non_aggregative_measure_mock.return_value = {"name": "measure_1"} columns = dict() - columns["col_name"] = models.DbtModelColumn(name="test", description="", meta=models.DbtModelColumnMeta()) + columns["col_name"] = models.DbtModelColumn( + name="test", description="", meta=models.DbtModelColumnMeta() + ) columns["col_name"].meta.looker = models.Dbt2InnerLookerMeta() - + columns["col_name"].meta.looker.measures = {} - columns["col_name"].meta.looker.measures["one"] = models.Dbt2LookerMeasure(type = models.LookerAggregateMeasures.average, description="test measure", sql="a=b") - + columns["col_name"].meta.looker.measures["one"] = models.Dbt2LookerMeasure( + type=models.LookerAggregateMeasures.average, + description="test measure", + sql="a=b", + ) + measure1 = models.Dbt2LookerExploreMeasure( + name="measure_1", + model="ref('a')", + sql="(SUM(${ref('model_2').interacted_users}) / SUM(${ref('a').total_users})", + description="measure_description", + type=models.LookerNoneAggregateMeasures.number.value, + ) model_meta = models.DbtModelMeta() - model: models.DbtModel = models.DbtModel(unique_id="a", resource_type="model", relation_name="", schema="", name="test", description="", tags=[], columns=columns, meta= model_meta) - model.name = "test" + model: models.DbtModel = models.DbtModel( + unique_id="a", + resource_type="model", + relation_name="", + schema="", + name="test", + description="", + tags=[], + columns=columns, + meta=model_meta, + none_aggregative_exposure=[measure1], + ) + model.name = "test" value = generator.lookml_measures_from_model(model) - assert value == [{'name': 'one', 'type': 'average', 'description': 'test measure', 'sql': 'a=b'}, {'name': 'count', 'type': 'count', 'description': 'Default count measure'}] + assert value == [ + {"name": "one", "type": "average", "description": "test measure", "sql": "a=b"}, + {"name": "measure_1"}, + {"name": "count", "type": "count", "description": "Default count measure"}, + ] + assert lookml_non_aggregative_measure_mock.mock_calls == [call(measure1)] + def test_main_explorer(): columns = dict() - columns["col_name"] = models.DbtModelColumn(name="test", description="", meta=models.DbtModelColumnMeta()) + columns["col_name"] = models.DbtModelColumn( + name="test", description="", meta=models.DbtModelColumnMeta() + ) columns["col_name"].meta.looker = models.Dbt2InnerLookerMeta() - - columns["col_name"].meta.looker.measures = {"one": models.Dbt2LookerMeasure(type = models.LookerAggregateMeasures.average, description="test measure", sql="a=b")} - + + columns["col_name"].meta.looker.measures = { + "one": models.Dbt2LookerMeasure( + type=models.LookerAggregateMeasures.average, + description="test measure", + sql="a=b", + ) + } + model_meta = models.DbtModelMeta() - model_meta.looker = models.Dbt2MetaLookerModelMeta(main_model = "ref('main_abc')" , connection="connection1") - model_meta.looker.joins = [models.Dbt2LookerExploreJoin(join = "test_join", sql_on="field")] - model: models.DbtModel = models.DbtModel(unique_id="a", resource_type="model", relation_name="", schema="", name="test", description="", tags=[], columns=columns, meta= model_meta) - model.name = "test" + model_meta.looker = models.Dbt2MetaLookerModelMeta( + main_model="ref('main_abc')", connection="connection1" + ) + model_meta.looker.joins = [ + models.Dbt2LookerExploreJoin(join="test_join", sql_on="field") + ] + model: models.DbtModel = models.DbtModel( + unique_id="a", + resource_type="model", + relation_name="", + schema="", + name="test", + description="", + tags=[], + columns=columns, + meta=model_meta, + ) + model.name = "test" value = generator.lookml_model_data_from_dbt_model(model, "project") - assert value == 'connection: "connection1"\ninclude: "views/*"\n\nexplore: main_abc {\n description: ""\n\n join: test_join {\n type: left_outer\n relationship: many_to_one\n sql_on: field ;;\n }\n}' \ No newline at end of file + assert ( + value + == 'connection: "connection1"\ninclude: "views/*"\n\nexplore: main_abc {\n description: ""\n\n join: test_join {\n type: left_outer\n relationship: many_to_one\n sql_on: field ;;\n }\n}' + ) + + +def test_lookml_non_aggregative_measure(): + measure1 = models.Dbt2LookerExploreMeasure( + name="measure_1", + model="ref('model_1')", + sql="(SUM(${ref('model_2').interacted_users}) / SUM(${ref('model_1').total_users})", + description="measure_description", + type=models.LookerNoneAggregateMeasures.number.value, + ) + value = generator.lookml_non_aggregative_measure(measure1) + assert value == { + "name": "measure_1", + "type": "number", + "sql": "(SUM(${model_2.interacted_users} )/SUM( ${model_1.total_users})", + "description": "measure_description", + } diff --git a/tests/yoda_dbt2looker/test_parser.py b/tests/yoda_dbt2looker/test_parser.py new file mode 100644 index 0000000..dcceb65 --- /dev/null +++ b/tests/yoda_dbt2looker/test_parser.py @@ -0,0 +1,31 @@ +from unittest.mock import MagicMock +from yoda_dbt2looker import models +from yoda_dbt2looker.parser import _extract_measures_models + + +def test__extract_measures_models(): + exposure_model_views = set() + exposure1 = MagicMock() + model_to_measure = {} + exposure1.meta.looker.measures = [ + models.Dbt2LookerExploreMeasure( + name="measure_1", + model="ref('model_1')", + sql="(SUM(${ref('model_1').interacted_users}) / SUM(${ref('model_1').total_users})", + description="", + type=models.LookerNoneAggregateMeasures.number.value, + ), + models.Dbt2LookerExploreMeasure( + name="measure_2", + model="ref('model_2')", + sql="(SUM(${ref('model_2').interacted_users}) / SUM(${ref('model_1').total_users})", + description="", + type=models.LookerNoneAggregateMeasures.number.value, + ), + ] + _extract_measures_models(exposure_model_views, model_to_measure, exposure1) + assert exposure_model_views == {"model_1", "model_2"} + assert model_to_measure == { + "model_1": [exposure1.meta.looker.measures[0]], + "model_2": [exposure1.meta.looker.measures[1]], + } diff --git a/yoda_dbt2looker/generator.py b/yoda_dbt2looker/generator.py index b7bd80b..01d00a2 100644 --- a/yoda_dbt2looker/generator.py +++ b/yoda_dbt2looker/generator.py @@ -347,6 +347,10 @@ def lookml_measures_from_model(model: models.DbtModel): **column.meta.metric, }.items() ] + for measure in model.none_aggregative_exposure: + measures.append( + lookml_non_aggregative_measure(measure) + ) measures.append( lookml_measure( measure_name="count", @@ -384,6 +388,17 @@ def lookml_measure( return m +def lookml_non_aggregative_measure( + measure: models.Dbt2LookerExploreMeasure +): + return { + "name": measure.name, + "description": measure.description, + "type": measure.type.value, + "sql": _convert_all_refs_to_relation_name(measure.sql), + } + + def lookml_view_from_dbt_model( model: models.DbtModel, adapter_type: models.SupportedDbtAdapters ): @@ -402,7 +417,11 @@ def lookml_view_from_dbt_model( len(lookml["view"]["measures"]), len(lookml["view"]["dimensions"]), ) - contents = lkml.dump(lookml) + try: + contents = lkml.dump(lookml) + except Exception as e: + logging.error(f"Error dumping lookml for model {model.name}") + raise e filename = f"{model.name}.view.lkml" return models.LookViewFile(filename=filename, contents=contents) @@ -456,9 +475,7 @@ def _extract_all_refs(ref_str: str) -> list[str]: return refs -def lookml_model_data_from_dbt_model( - model: models.DbtModel, dbt_project_name: str -): +def lookml_model_data_from_dbt_model(model: models.DbtModel, dbt_project_name: str): # Note: assumes view names = model names # and models are unique across dbt packages in project lookml = { @@ -479,9 +496,7 @@ def lookml_model_data_from_dbt_model( }, } if model.meta.looker: - relation_name = _convert_all_refs_to_relation_name( - model.meta.looker.main_model - ) + relation_name = _convert_all_refs_to_relation_name(model.meta.looker.main_model) if not relation_name: logging.error(f"Invalid ref {model.meta.looker.main_model}") @@ -503,7 +518,8 @@ def lookml_model_data_from_dbt_model( }, } return lkml.dump(lookml) - + + def lookml_model_from_dbt_model( manifest: models.DbtManifest, model: models.DbtModel, dbt_project_name: str ): @@ -511,5 +527,5 @@ def lookml_model_from_dbt_model( model_loopup = f"exposure.{dbt_project_name}.{model.name}" exposure_node = manifest.exposures.get(model_loopup) file_name = Path(exposure_node.original_file_path).stem - filename = f"{file_name}.model.lkml" + filename = f"{file_name}.model.lkml" return models.LookModelFile(filename=filename, contents=contents) diff --git a/yoda_dbt2looker/models.py b/yoda_dbt2looker/models.py index 68f5ee5..9289af9 100644 --- a/yoda_dbt2looker/models.py +++ b/yoda_dbt2looker/models.py @@ -39,6 +39,13 @@ class LookerAggregateMeasures(str, Enum): sum_distinct = "sum_distinct" +class LookerNoneAggregateMeasures(str, Enum): + number = "number" + date = "date" + yesno = "yesno" + string = "string" + + class LookerJoinType(str, Enum): left_outer = "left_outer" full_outer = "full_outer" @@ -155,10 +162,19 @@ class Dbt2LookerExploreJoin(BaseModel): sql_on: str +class Dbt2LookerExploreMeasure(BaseModel): + name: str + model: str + type: LookerNoneAggregateMeasures + sql: str + description: Optional[str] = "" + + class Dbt2MetaLookerModelMeta(BaseModel): joins: Optional[List[Dbt2LookerExploreJoin]] = [] main_model: str connection: str + measures: Optional[List[Dbt2LookerExploreMeasure]] = [] class Dbt2LookerModelMeta(BaseModel): @@ -180,6 +196,7 @@ class DbtModel(DbtNode): tags: List[str] meta: DbtModelMeta create_explorer: bool = True + none_aggregative_exposure: Optional[List[Dbt2LookerExploreMeasure]] = [] @validator("columns") def case_insensitive_column_names(cls, v: Dict[str, DbtModelColumn]): diff --git a/yoda_dbt2looker/parser.py b/yoda_dbt2looker/parser.py index 306bbf4..fc14926 100644 --- a/yoda_dbt2looker/parser.py +++ b/yoda_dbt2looker/parser.py @@ -10,7 +10,9 @@ def validate_manifest(raw_manifest: dict): - with importlib.resources.open_text("yoda_dbt2looker.dbt_json_schemas", "manifest_dbt2looker.json") as f: + with importlib.resources.open_text( + "yoda_dbt2looker.dbt_json_schemas", "manifest_dbt2looker.json" + ) as f: schema = json.load(f) v = jsonschema.Draft7Validator(schema) hasError = False @@ -22,11 +24,11 @@ def validate_manifest(raw_manifest: dict): return True -def raise_error_context(error: jsonschema.ValidationError, offset=''): +def raise_error_context(error: jsonschema.ValidationError, offset=""): for error in sorted(error.context, key=lambda e: e.schema_path): - raise_error_context(error, offset=offset + ' ') - path = '.'.join([str(p) for p in error.absolute_path]) - logging.error(f'{offset}Error in manifest at {path}: {error.message}') + raise_error_context(error, offset=offset + " ") + path = ".".join([str(p) for p in error.absolute_path]) + logging.error(f"{offset}Error in manifest at {path}: {error.message}") def validate_catalog(raw_catalog: dict): @@ -60,16 +62,17 @@ def tags_match(query_tag: str, model: models.DbtModel) -> bool: def parse_models(raw_manifest: dict, tag=None) -> List[models.DbtModel]: manifest = models.DbtManifest(**raw_manifest) all_models: List[models.DbtModel] = [ - node - for node in manifest.nodes.values() - if node.resource_type == 'model' + node for node in manifest.nodes.values() if node.resource_type == "model" ] # Empty model files have many missing parameters for model in all_models: - if not hasattr(model, 'name'): - logging.error('Cannot parse model with id: "%s" - is the model file empty?', model.unique_id) - raise SystemExit('Failed') + if not hasattr(model, "name"): + logging.error( + 'Cannot parse model with id: "%s" - is the model file empty?', + model.unique_id, + ) + raise SystemExit("Failed") if tag is None: return all_models @@ -81,90 +84,171 @@ def parse_exposures(raw_manifest: dict, tag=None) -> List[models.DbtExposure]: # Empty model files have many missing parameters all_exposures = manifest.exposures.values() for exposure in all_exposures: - if not hasattr(exposure, 'name'): - logging.error('Cannot parse exposure with id: "%s" - is the exposure file empty?', exposure.unique_id) - raise SystemExit('Failed') + if not hasattr(exposure, "name"): + logging.error( + 'Cannot parse exposure with id: "%s" - is the exposure file empty?', + exposure.unique_id, + ) + raise SystemExit("Failed") if tag is None: return all_exposures return [exposure for exposure in all_exposures if tags_match(tag, exposure)] + def check_models_for_missing_column_types(dbt_typed_models: List[models.DbtModel]): for model in dbt_typed_models: if all([col.data_type is None for col in model.columns.values()]): - logging.debug('Model %s has no typed columns, no dimensions will be generated. %s', model.unique_id, model) - - -def parse_typed_models(raw_manifest: dict, raw_catalog: dict, dbt_project_name: str, tag: Optional[str] = None): + logging.debug( + "Model %s has no typed columns, no dimensions will be generated. %s", + model.unique_id, + model, + ) + + +def parse_typed_models( + raw_manifest: dict, + raw_catalog: dict, + dbt_project_name: str, + tag: Optional[str] = None, +): catalog_nodes = parse_catalog_nodes(raw_catalog) dbt_models = parse_models(raw_manifest, tag=tag) manifest = models.DbtManifest(**raw_manifest) - typed_dbt_exposures: List[models.DbtExposure] = parse_exposures(raw_manifest, tag=tag) - exposure_nodes = []# [manifest.nodes.get(mode_name) for exposure in typed_dbt_exposures for mode_name in exposure.depends_on.nodes] - - exposure_model_views = set() - for exposure in typed_dbt_exposures: + typed_dbt_exposures: List[models.DbtExposure] = parse_exposures( + raw_manifest, tag=tag + ) + exposure_nodes = ( + [] + ) + + exposure_model_views = set() + model_to_measure = {} + for exposure in typed_dbt_exposures: ref_model = _extract_all_refs(exposure.meta.looker.main_model) if not ref_model: - logging.error(f"Exposure main_model {exposure.meta.looker.main_model} should be ref('model_name')") - raise Exception(f"Exposure main_model {exposure.meta.looker.main_model} should be ref('model_name')") + logging.error( + f"Exposure main_model {exposure.meta.looker.main_model} should be ref('model_name')" + ) + raise Exception( + f"Exposure main_model {exposure.meta.looker.main_model} should be ref('model_name')" + ) exposure_model_views.add(ref_model[0]) - + if exposure.meta.looker.joins: for join in exposure.meta.looker.joins: if _extract_all_refs(join.sql_on) == None: - logging.error(f"Exposure join.sql_on {join.sql_on} should be ref('model_name')") - raise Exception(f"Exposure join.sql_on {join.sql_on} should be ref('model_name')") - - for item in reduce(list.__add__, [ _extract_all_refs(join.sql_on) for join in exposure.meta.looker.joins]): + logging.error( + f"Exposure join.sql_on {join.sql_on} should be ref('model_name')" + ) + raise Exception( + f"Exposure join.sql_on {join.sql_on} should be ref('model_name')" + ) + + for item in reduce( + list.__add__, + [_extract_all_refs(join.sql_on) for join in exposure.meta.looker.joins], + ): exposure_model_views.add(item) - + _extract_measures_models(exposure_model_views, model_to_measure, exposure) + for model in exposure_model_views: model_loopup = f"model.{dbt_project_name}.{model}" model_node = manifest.nodes.get(model_loopup) if not model_node: logging.error(f"Exposure join.sql_on model {model_loopup} missing") raise Exception(f"Exposure join.sql_on model {model_loopup} missing") - model_node.create_explorer = False + model_node.create_explorer = False + if model in model_to_measure: + model_node.none_aggregative_exposure = model_to_measure[model] exposure_nodes.append(model_node) - + adapter_type = parse_adapter_type(raw_manifest) dbt_models = dbt_models + exposure_nodes - logging.debug('Parsed %d models from manifest.json', len(dbt_models)) + logging.debug("Parsed %d models from manifest.json", len(dbt_models)) for model in dbt_models: logging.debug( - 'Model %s has %d columns with %d measures', + "Model %s has %d columns with %d measures", model.name, len(model.columns), - reduce(lambda acc, col: acc + len(col.meta.measures) + len(col.meta.measure) + len(col.meta.metrics) + len(col.meta.metric), model.columns.values(), 0) + reduce( + lambda acc, col: acc + + len(col.meta.measures) + + len(col.meta.measure) + + len(col.meta.metrics) + + len(col.meta.metric), + model.columns.values(), + 0, + ), ) # Check catalog for models for model in dbt_models: if model.unique_id not in catalog_nodes: logging.warning( - f'Model {model.unique_id} not found in catalog. No looker view will be generated. ' - f'Check if model has materialized in {adapter_type} at {model.relation_name}') + f"Model {model.unique_id} not found in catalog. No looker view will be generated. " + f"Check if model has materialized in {adapter_type} at {model.relation_name}" + ) # Update dbt models with data types from catalog dbt_typed_models = [ - model.copy(update={'columns': { - column.name: column.copy(update={ - 'data_type': get_column_type_from_catalog(catalog_nodes, model.unique_id, column.name) - }) - for column in model.columns.values() - }}) + model.copy( + update={ + "columns": { + column.name: column.copy( + update={ + "data_type": get_column_type_from_catalog( + catalog_nodes, model.unique_id, column.name + ) + } + ) + for column in model.columns.values() + } + } + ) for model in dbt_models if model.unique_id in catalog_nodes ] - logging.debug('Found catalog entries for %d models', len(dbt_typed_models)) - logging.debug('Catalog entries missing for %d models', len(dbt_models) - len(dbt_typed_models)) + logging.debug("Found catalog entries for %d models", len(dbt_typed_models)) + logging.debug( + "Catalog entries missing for %d models", len(dbt_models) - len(dbt_typed_models) + ) check_models_for_missing_column_types(dbt_typed_models) return dbt_typed_models -def get_column_type_from_catalog(catalog_nodes: Dict[str, models.DbtCatalogNode], model_id: str, column_name: str): +def _extract_measures_models( + exposure_model_views: set[str], + model_to_measure: dict[str, list[models.Dbt2LookerExploreMeasure]], + exposure: models.DbtExposure, +): + if exposure.meta.looker.measures: + for measure in exposure.meta.looker.measures: + if not _extract_all_refs(measure.model): + logging.error( + f"Exposure measure.model {measure.model} should be ref('model_name')" + ) + raise Exception( + f"Exposure measure.model {measure.model} should be ref('model_name')" + ) + if not _extract_all_refs(measure.sql): + logging.error( + f"Exposure measure.sql {measure.sql} should be ref('model_name')" + ) + raise Exception( + f"Exposure measure.sql {measure.sql} should be ref('model_name')" + ) + main_measure_model = _extract_all_refs(measure.model)[0] + exposure_model_views.add(main_measure_model) + if not model_to_measure.get(main_measure_model): + model_to_measure[main_measure_model] = [] + model_to_measure[main_measure_model].append(measure) + exposure_model_views.update(_extract_all_refs(measure.sql)) + + +def get_column_type_from_catalog( + catalog_nodes: Dict[str, models.DbtCatalogNode], model_id: str, column_name: str +): node = catalog_nodes.get(model_id) column = None if node is None else node.columns.get(column_name) return None if column is None else column.type -